diff options
author | alzobnin <alzobnin@yandex-team.ru> | 2022-02-10 16:46:50 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:50 +0300 |
commit | c9317148cc3e9f1b0bc0ce95172f47e099f2c554 (patch) | |
tree | 1e426d905ba97d8c281c5cc53389faaced3832c7 /library/cpp/charset | |
parent | 6170310e8721e225f64ddabf7a7358253d7a1249 (diff) | |
download | ydb-c9317148cc3e9f1b0bc0ce95172f47e099f2c554.tar.gz |
Restoring authorship annotation for <alzobnin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/charset')
-rw-r--r-- | library/cpp/charset/README.md | 20 | ||||
-rw-r--r-- | library/cpp/charset/codepage.cpp | 4 | ||||
-rw-r--r-- | library/cpp/charset/codepage.h | 46 | ||||
-rw-r--r-- | library/cpp/charset/codepage_ut.cpp | 26 | ||||
-rw-r--r-- | library/cpp/charset/generated/cp_data.cpp | 56 | ||||
-rw-r--r-- | library/cpp/charset/generated/encrec_data.cpp | 1548 | ||||
-rw-r--r-- | library/cpp/charset/recyr.hh | 2 | ||||
-rw-r--r-- | library/cpp/charset/recyr_int.hh | 16 | ||||
-rw-r--r-- | library/cpp/charset/ut/ya.make | 2 | ||||
-rw-r--r-- | library/cpp/charset/wide.h | 28 | ||||
-rw-r--r-- | library/cpp/charset/wide_ut.cpp | 14 | ||||
-rw-r--r-- | library/cpp/charset/ya.make | 6 |
12 files changed, 884 insertions, 884 deletions
diff --git a/library/cpp/charset/README.md b/library/cpp/charset/README.md index 9a257e3b4d..b7c8128f51 100644 --- a/library/cpp/charset/README.md +++ b/library/cpp/charset/README.md @@ -1,10 +1,10 @@ -Здесь представлены функции и enum'ы для работы с кодировками. - -Наиболее полезные конструкции этой библиотеки: -1. [`enum ECharset`](https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/charset/doccodes.h) - перечень кодировок, которые умеет определять [детектор кодировок](https://a.yandex-team.ru/arc/trunk/arcadia/kernel/recshell/recshell.h?rev=8268697#L56). -2. [Функция](https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/charset/recyr.hh?rev=r6888372#L137) `inline TString Recode(ECharset from, ECharset to, const TString& in)` для преобразования кодировок. -3. [Функция](https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/charset/wide.h?rev=r6888372#L277) `inline TUtf16String UTF8ToWide(const char* text, size_t len, const CodePage& cp)`, пытающаяся построить широкую строку из UTF-8, а если не получается - с помощью кодировки `cp`. - -3. [Класс `TCiString`](https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/charset/ci_string.h) - аналог `TString`, но использующий case-insensitive-компаратор и хеш и поддерживающий разные кодировки. - -В комплекте есть ещё много функций для работы со старой однобайтной Yandex-кодировкой. Не рекомендуется к использованию. Для преобразования из UTF-8 в `TUtf16String` и для работы с Unicode используйте функции из [arcadia/util/charset](https://a.yandex-team.ru/arc/trunk/arcadia/util/charset). +Здесь представлены функции и enum'ы для работы с кодировками. + +Наиболее полезные конструкции этой библиотеки: +1. [`enum ECharset`](https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/charset/doccodes.h) - перечень кодировок, которые умеет определять [детектор кодировок](https://a.yandex-team.ru/arc/trunk/arcadia/kernel/recshell/recshell.h?rev=8268697#L56). +2. [Функция](https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/charset/recyr.hh?rev=r6888372#L137) `inline TString Recode(ECharset from, ECharset to, const TString& in)` для преобразования кодировок. +3. [Функция](https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/charset/wide.h?rev=r6888372#L277) `inline TUtf16String UTF8ToWide(const char* text, size_t len, const CodePage& cp)`, пытающаяся построить широкую строку из UTF-8, а если не получается - с помощью кодировки `cp`. + +3. [Класс `TCiString`](https://a.yandex-team.ru/arc/trunk/arcadia/library/cpp/charset/ci_string.h) - аналог `TString`, но использующий case-insensitive-компаратор и хеш и поддерживающий разные кодировки. + +В комплекте есть ещё много функций для работы со старой однобайтной Yandex-кодировкой. Не рекомендуется к использованию. Для преобразования из UTF-8 в `TUtf16String` и для работы с Unicode используйте функции из [arcadia/util/charset](https://a.yandex-team.ru/arc/trunk/arcadia/util/charset). diff --git a/library/cpp/charset/codepage.cpp b/library/cpp/charset/codepage.cpp index 0431bef31b..e3ba5ad234 100644 --- a/library/cpp/charset/codepage.cpp +++ b/library/cpp/charset/codepage.cpp @@ -213,7 +213,7 @@ static inline RECODE_RESULT utf8_read_rune_from_unknown_plane(TxChar& rune, size rune_len = 0; - size_t _len = UTF8RuneLen((unsigned char)(*s)); + size_t _len = UTF8RuneLen((unsigned char)(*s)); if (s + _len > end) return RECODE_EOINPUT; //[EOINPUT] if (_len == 0) @@ -221,7 +221,7 @@ static inline RECODE_RESULT utf8_read_rune_from_unknown_plane(TxChar& rune, size wchar32 _rune = (ui8)(*s++); //[00000000 0XXXXXXX] if (_len > 1) { - _rune &= UTF8LeadByteMask(_len); + _rune &= UTF8LeadByteMask(_len); wchar32 ch = *s++; if ((ch & 0xFFC0) != 0xF080) return RECODE_BROKENSYMBOL; //[BROKENSYMBOL] in second byte diff --git a/library/cpp/charset/codepage.h b/library/cpp/charset/codepage.h index 30a02a4610..ad9d62cb69 100644 --- a/library/cpp/charset/codepage.h +++ b/library/cpp/charset/codepage.h @@ -2,12 +2,12 @@ #include "doccodes.h" -#include <util/charset/recode_result.h> -#include <util/charset/unidata.h> // all wchar32 functions -#include <util/charset/utf8.h> +#include <util/charset/recode_result.h> +#include <util/charset/unidata.h> // all wchar32 functions +#include <util/charset/utf8.h> #include <util/generic/string.h> -#include <util/generic/ylimits.h> -#include <util/generic/yexception.h> +#include <util/generic/ylimits.h> +#include <util/generic/yexception.h> #include <util/system/yassert.h> #include <util/system/defaults.h> @@ -248,7 +248,7 @@ const Encoder& EncoderByCharset(ECharset enc); namespace NCodepagePrivate { class TCodePageData { private: - static const CodePage* const AllCodePages[]; + static const CodePage* const AllCodePages[]; static const Recoder rcdr_to_yandex[]; static const Recoder rcdr_from_yandex[]; @@ -256,7 +256,7 @@ namespace NCodepagePrivate { static const Recoder rcdr_to_upper[]; static const Recoder rcdr_to_title[]; - static const Encoder* const EncodeTo[]; + static const Encoder* const EncodeTo[]; friend struct ::CodePage; friend class TCodepagesMap; @@ -302,23 +302,23 @@ inline void ToUpper(char* s, size_t n, const CodePage& cp = csYandex) { for (; s != e; ++s) *s = cp.ToUpper(*s); } - + inline TString ToLower(TString s, const CodePage& cp, size_t pos = 0, size_t n = TString::npos) { - s.Transform([&cp](size_t, char c) { return cp.ToLower(c); }, pos, n); - return s; -} - + s.Transform([&cp](size_t, char c) { return cp.ToLower(c); }, pos, n); + return s; +} + inline TString ToUpper(TString s, const CodePage& cp, size_t pos = 0, size_t n = TString::npos) { - s.Transform([&cp](size_t, char c) { return cp.ToUpper(c); }, pos, n); - return s; -} - + s.Transform([&cp](size_t, char c) { return cp.ToUpper(c); }, pos, n); + return s; +} + inline TString ToTitle(TString s, const CodePage& cp, size_t pos = 0, size_t n = TString::npos) { - s.Transform( - [pos, &cp](size_t i, char c) { - return i == pos ? cp.ToTitle(c) : cp.ToLower(c); - }, - pos, + s.Transform( + [pos, &cp](size_t i, char c) { + return i == pos ? cp.ToTitle(c) : cp.ToLower(c); + }, + pos, n); - return s; -} + return s; +} diff --git a/library/cpp/charset/codepage_ut.cpp b/library/cpp/charset/codepage_ut.cpp index c3ac3ac478..7a16499996 100644 --- a/library/cpp/charset/codepage_ut.cpp +++ b/library/cpp/charset/codepage_ut.cpp @@ -1,10 +1,10 @@ -#include "codepage.h" -#include "recyr.hh" +#include "codepage.h" +#include "recyr.hh" #include "wide.h" #include <library/cpp/testing/unittest/registar.h> -#include <util/charset/utf8.h> +#include <util/charset/utf8.h> #include <util/system/yassert.h> #if defined(_MSC_VER) @@ -76,7 +76,7 @@ public: UNIT_TEST_SUITE_REGISTRATION(TCodepageTest); void TCodepageTest::TestUTF() { - for (wchar32 i = 0; i <= 0x10FFFF; i++) { + for (wchar32 i = 0; i <= 0x10FFFF; i++) { unsigned char buffer[32]; Zero(buffer); size_t rune_len; @@ -91,32 +91,32 @@ void TCodepageTest::TestUTF() { else ref_len = 4; - RECODE_RESULT res = SafeWriteUTF8Char(i, rune_len, buffer, buffer + 32); + RECODE_RESULT res = SafeWriteUTF8Char(i, rune_len, buffer, buffer + 32); UNIT_ASSERT(res == RECODE_OK); UNIT_ASSERT(rune_len == ref_len); - res = SafeWriteUTF8Char(i, rune_len, buffer, buffer + ref_len - 1); + res = SafeWriteUTF8Char(i, rune_len, buffer, buffer + ref_len - 1); UNIT_ASSERT(res == RECODE_EOOUTPUT); wchar32 rune; - res = SafeReadUTF8Char(rune, rune_len, buffer, buffer + 32); + res = SafeReadUTF8Char(rune, rune_len, buffer, buffer + 32); UNIT_ASSERT(res == RECODE_OK); UNIT_ASSERT(rune == i); UNIT_ASSERT(rune_len == ref_len); - res = SafeReadUTF8Char(rune, rune_len, buffer, buffer + ref_len - 1); + res = SafeReadUTF8Char(rune, rune_len, buffer, buffer + ref_len - 1); UNIT_ASSERT(res == RECODE_EOINPUT); if (ref_len > 1) { - res = SafeReadUTF8Char(rune, rune_len, buffer + 1, buffer + ref_len); + res = SafeReadUTF8Char(rune, rune_len, buffer + 1, buffer + ref_len); UNIT_ASSERT(res == RECODE_BROKENSYMBOL); buffer[1] |= 0xC0; - res = SafeReadUTF8Char(rune, rune_len, buffer, buffer + ref_len); + res = SafeReadUTF8Char(rune, rune_len, buffer, buffer + ref_len); UNIT_ASSERT(res == RECODE_BROKENSYMBOL); buffer[1] &= 0x3F; - res = SafeReadUTF8Char(rune, rune_len, buffer, buffer + ref_len); + res = SafeReadUTF8Char(rune, rune_len, buffer, buffer + ref_len); UNIT_ASSERT(res == RECODE_BROKENSYMBOL); } } @@ -124,7 +124,7 @@ void TCodepageTest::TestUTF() { "\xfe", "\xff", "\xcc\xc0", - "\xf4\x90\x80\x80", + "\xf4\x90\x80\x80", //overlong: "\xfe\xfe\xff\xff", "\xc0\xaf", @@ -155,7 +155,7 @@ void TCodepageTest::TestUTF() { wchar32 rune; const ui8* p = (const ui8*)badStrings[i]; size_t len; - RECODE_RESULT res = SafeReadUTF8Char(rune, len, p, p + strlen(badStrings[i])); + RECODE_RESULT res = SafeReadUTF8Char(rune, len, p, p + strlen(badStrings[i])); UNIT_ASSERT(res == RECODE_BROKENSYMBOL); } } diff --git a/library/cpp/charset/generated/cp_data.cpp b/library/cpp/charset/generated/cp_data.cpp index 202362c596..597d9ad4ff 100644 --- a/library/cpp/charset/generated/cp_data.cpp +++ b/library/cpp/charset/generated/cp_data.cpp @@ -124,14 +124,14 @@ static const CodePage CODES_ASCII_CODE_PAGE = { static const CodePage CODES_BIG5_CODE_PAGE = { CODES_BIG5, - {"BIG5", "BIGFIVE", "CN-BIG5", "CSBIG5",}, + {"BIG5", "BIGFIVE", "CN-BIG5", "CSBIG5",}, {}, nullptr, }; // generated from multibyte.txt static const CodePage CODES_BIG5_HKSCS_CODE_PAGE = { CODES_BIG5_HKSCS, - {"BIG5-HKSCS", "BIG5-HKSCS:2004",}, + {"BIG5-HKSCS", "BIG5-HKSCS:2004",}, {}, nullptr, }; // generated from multibyte.txt @@ -1286,7 +1286,7 @@ static const CodePage CODES_CP936_CODE_PAGE = { static const CodePage CODES_CP949_CODE_PAGE = { CODES_CP949, - {"CP949", "UHC",}, + {"CP949", "UHC",}, {}, nullptr, }; // generated from multibyte.txt @@ -1300,28 +1300,28 @@ static const CodePage CODES_CP950_CODE_PAGE = { static const CodePage CODES_EUC_CN_CODE_PAGE = { CODES_EUC_CN, - {"EUC-CN", "CN-GB", "GB2312", "CSGB2312",}, + {"EUC-CN", "CN-GB", "GB2312", "CSGB2312",}, {}, nullptr, }; // generated from multibyte.txt static const CodePage CODES_EUC_JP_CODE_PAGE = { CODES_EUC_JP, - {"EUC-JP", "EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE", "CSEUCPKDFMTJAPANESE",}, + {"EUC-JP", "EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE", "CSEUCPKDFMTJAPANESE",}, {}, nullptr, }; // generated from multibyte.txt static const CodePage CODES_EUC_KR_CODE_PAGE = { CODES_EUC_KR, - {"EUC-KR", "ISO-IR-149", "KOREAN", "KSC_5601", "KS_C_5601-1987", "KS_C_5601-1989", "CSEUCKR", "CSKSC56011987",}, + {"EUC-KR", "ISO-IR-149", "KOREAN", "KSC_5601", "KS_C_5601-1987", "KS_C_5601-1989", "CSEUCKR", "CSKSC56011987",}, {}, nullptr, }; // generated from multibyte.txt static const CodePage CODES_EUC_TW_CODE_PAGE = { CODES_EUC_TW, - {"EUC-TW", "CSEUCTW",}, + {"EUC-TW", "CSEUCTW",}, {}, nullptr, }; // generated from multibyte.txt @@ -1335,7 +1335,7 @@ static const CodePage CODES_GB18030_CODE_PAGE = { static const CodePage CODES_GBK_CODE_PAGE = { CODES_GBK, - {"GBK",}, + {"GBK",}, {}, nullptr, }; // generated from multibyte.txt @@ -1462,7 +1462,7 @@ static const CodePage CODES_HP_ROMAN8_CODE_PAGE = { static const CodePage CODES_HZ_CODE_PAGE = { CODES_HZ, - {"HZ", "HZ-GB-2312",}, + {"HZ", "HZ-GB-2312",}, {}, nullptr, }; // generated from multibyte.txt @@ -1709,7 +1709,7 @@ static const CodePage CODES_ISO8859_14_CODE_PAGE = { static const CodePage CODES_ISO_2022_CN_CODE_PAGE = { CODES_ISO_2022_CN, - {"ISO-2022-CN", "CSISO2022CN",}, + {"ISO-2022-CN", "CSISO2022CN",}, {}, nullptr, }; // generated from multibyte.txt @@ -1723,7 +1723,7 @@ static const CodePage CODES_ISO_2022_CN_EXT_CODE_PAGE = { static const CodePage CODES_ISO_2022_JP_CODE_PAGE = { CODES_ISO_2022_JP, - {"ISO-2022-JP", "CPISO2022JP",}, + {"ISO-2022-JP", "CPISO2022JP",}, {}, nullptr, }; // generated from multibyte.txt @@ -1737,14 +1737,14 @@ static const CodePage CODES_ISO_2022_JP_1_CODE_PAGE = { static const CodePage CODES_ISO_2022_JP_2_CODE_PAGE = { CODES_ISO_2022_JP_2, - {"ISO-2022-JP-2", "CPISO2022JP2",}, + {"ISO-2022-JP-2", "CPISO2022JP2",}, {}, nullptr, }; // generated from multibyte.txt static const CodePage CODES_ISO_2022_KR_CODE_PAGE = { CODES_ISO_2022_KR, - {"ISO-2022-KR", "CSISO2022KR",}, + {"ISO-2022-KR", "CSISO2022KR",}, {}, nullptr, }; // generated from multibyte.txt @@ -1951,7 +1951,7 @@ static const CodePage CODES_ISO_8859_4_CODE_PAGE = { static const CodePage CODES_ISO_8859_6_CODE_PAGE = { CODES_ISO_8859_6, - {"iso-8859-6", "cp708",}, + {"iso-8859-6", "cp708",}, { 0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x000E, 0x000F, @@ -1969,22 +1969,22 @@ static const CodePage CODES_ISO_8859_6_CODE_PAGE = { 0x0068, 0x0069, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F, 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 0x0078, 0x0079, 0x007A, 0x007B, 0x007C, 0x007D, 0x007E, 0x007F, - 0x2502, 0x2524, 0x00E9, 0x00E2, 0x2561, 0x00E0, 0x2562, 0x00E7, - 0x00EA, 0x00EB, 0x00E8, 0x00EF, 0x00EE, 0x2556, 0x2555, 0x2563, - 0x2551, 0x2557, 0x255D, 0x00F4, 0x255C, 0x255B, 0x00FB, 0x00F9, - 0x2510, 0x2514, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, - 0x00A0, 0x2534, 0x252C, 0x251C, 0x00A4, 0x2500, 0x253C, 0x255E, - 0x255F, 0x255A, 0x2554, 0x2569, 0x060C, 0x2566, 0x00AB, 0x00BB, - 0x2591, 0x2592, 0x2593, 0x2560, 0x2550, 0x256C, 0x2567, 0x2568, - 0x2564, 0x2565, 0x2559, 0x061B, 0x2558, 0x2552, 0x2553, 0x061F, - 0x256B, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627, + 0x2502, 0x2524, 0x00E9, 0x00E2, 0x2561, 0x00E0, 0x2562, 0x00E7, + 0x00EA, 0x00EB, 0x00E8, 0x00EF, 0x00EE, 0x2556, 0x2555, 0x2563, + 0x2551, 0x2557, 0x255D, 0x00F4, 0x255C, 0x255B, 0x00FB, 0x00F9, + 0x2510, 0x2514, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, + 0x00A0, 0x2534, 0x252C, 0x251C, 0x00A4, 0x2500, 0x253C, 0x255E, + 0x255F, 0x255A, 0x2554, 0x2569, 0x060C, 0x2566, 0x00AB, 0x00BB, + 0x2591, 0x2592, 0x2593, 0x2560, 0x2550, 0x256C, 0x2567, 0x2568, + 0x2564, 0x2565, 0x2559, 0x061B, 0x2558, 0x2552, 0x2553, 0x061F, + 0x256B, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627, 0x0628, 0x0629, 0x062A, 0x062B, 0x062C, 0x062D, 0x062E, 0x062F, 0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x0637, - 0x0638, 0x0639, 0x063A, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580, + 0x0638, 0x0639, 0x063A, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580, 0x0640, 0x0641, 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647, 0x0648, 0x0649, 0x064A, 0x064B, 0x064C, 0x064D, 0x064E, 0x064F, 0x0650, 0x0651, 0x0652, 0xFFFD, 0xFFFD, 0xFFFD, 0xFFFD, 0xFFFD, - 0xFFFD, 0x256A, 0x2518, 0x250C, 0x00B5, 0x00A3, 0x25A0, 0x00A0, + 0xFFFD, 0x256A, 0x2518, 0x250C, 0x00B5, 0x00A3, 0x25A0, 0x00A0, }, defchars[0], }; // generated from listing.txt @@ -2191,7 +2191,7 @@ static const CodePage CODES_JISX0201_CODE_PAGE = { static const CodePage CODES_JOHAB_CODE_PAGE = { CODES_JOHAB, - {"JOHAB", "CP1361",}, + {"JOHAB", "CP1361",}, {}, nullptr, }; // generated from multibyte.txt @@ -3078,7 +3078,7 @@ static const CodePage CODES_RK1048_CODE_PAGE = { static const CodePage CODES_SHIFT_JIS_CODE_PAGE = { CODES_SHIFT_JIS, - {"SHIFT_JIS", "MS_KANJI", "SJIS", "CSSHIFTJIS",}, + {"SHIFT_JIS", "MS_KANJI", "SJIS", "CSSHIFTJIS",}, {}, nullptr, }; // generated from multibyte.txt @@ -3669,7 +3669,7 @@ const char defchars[][DEFCHAR_BUF] = { {"\077\xA6\xB6\xA6\055\xB6\x9F\x9F\x9F\x9F\x9F\x9F\x9F\200\200\200\071\130\077\071\040\040\n\n\x1A\x1A\x1A\x1A\x1A\x1A\x1A\077\077\055\055\050\042\051\042\042\042\137\052\042\056\055\055\075\055\044\140\xB0\047\047\047\047\047"}, // generated from yandex_dc.txt }; -const CodePage* const NCodepagePrivate::TCodePageData::AllCodePages[] = { +const CodePage* const NCodepagePrivate::TCodePageData::AllCodePages[] = { &CODES_ALT_CODE_PAGE, &CODES_ARMSCII_CODE_PAGE, &CODES_ASCII_CODE_PAGE, diff --git a/library/cpp/charset/generated/encrec_data.cpp b/library/cpp/charset/generated/encrec_data.cpp index ca59f8ddef..ffba23c48e 100644 --- a/library/cpp/charset/generated/encrec_data.cpp +++ b/library/cpp/charset/generated/encrec_data.cpp @@ -843,7 +843,7 @@ static const char PP_49[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\372\374\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\372\374\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -852,23 +852,23 @@ static const char PP_49[257] = "\000\000\000\000"; #define P49 (char*)PP_49 static const char PP_50[257] = - "\146\146\146\146\146\163\163\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000"; -#define P50 (char*)PP_50 -static const char PP_51[257] = + "\146\146\146\146\146\163\163\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000"; +#define P50 (char*)PP_50 +static const char PP_51[257] = "\000\000\042\000\000\000\000\047\000\000\000\000\000\000\000\000\060\061" "\062\063\064\065\066\067\070\071\000\000\000\000\000\000\000\101\102\103" "\104\105\106\107\110\111\112\113\114\115\116\117\120\121\122\123\124\125" @@ -884,8 +884,8 @@ static const char PP_51[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P51 (char*)PP_51 -static const char PP_52[257] = +#define P51 (char*)PP_51 +static const char PP_52[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -901,8 +901,8 @@ static const char PP_52[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P52 (char*)PP_52 -static const char PP_53[257] = +#define P52 (char*)PP_52 +static const char PP_53[257] = "\000\205\201\203\207\211\213\215\217\221\223\225\227\000\231\233\241\243" "\354\255\247\251\352\364\270\276\307\321\323\325\327\335\342\344\346\350" "\253\266\245\374\366\372\237\362\356\370\235\340\240\242\353\254\246\250" @@ -918,8 +918,8 @@ static const char PP_53[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P53 (char*)PP_53 -static const char PP_54[257] = +#define P53 (char*)PP_53 +static const char PP_54[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\357\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -935,8 +935,8 @@ static const char PP_54[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P54 (char*)PP_54 -static const char PP_55[257] = +#define P54 (char*)PP_54 +static const char PP_55[257] = "\304\000\263\000\000\000\000\000\000\000\000\000\332\000\000\000\277\000" "\000\000\300\000\000\000\331\000\000\000\303\000\000\000\000\000\000\000" "\264\000\000\000\000\000\000\000\302\000\000\000\000\000\000\000\301\000" @@ -952,8 +952,8 @@ static const char PP_55[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P55 (char*)PP_55 -static const char PP_56[257] = +#define P55 (char*)PP_55 +static const char PP_56[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -969,8 +969,8 @@ static const char PP_56[257] = "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" "\374\375\376\377"; -#define P56 (char*)PP_56 -static const char PP_57[257] = +#define P56 (char*)PP_56 +static const char PP_57[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -986,8 +986,8 @@ static const char PP_57[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P57 (char*)PP_57 -static const char PP_58[257] = +#define P57 (char*)PP_57 +static const char PP_58[257] = "\000\250\000\000\252\000\262\257\000\000\000\000\000\000\241\000\300\301" "\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323" "\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345" @@ -1003,8 +1003,8 @@ static const char PP_58[257] = "\275\276\000\000\000\000\000\000\000\000\000\000\000\000\000\000\212\232" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P58 (char*)PP_58 -static const char PP_59[257] = +#define P58 (char*)PP_58 +static const char PP_59[257] = "\000\250\000\201\252\275\262\257\243\000\000\000\000\000\241\000\300\301" "\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323" "\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345" @@ -1020,8 +1020,8 @@ static const char PP_59[257] = "\200\220\000\000\000\000\000\000\000\000\000\000\000\000\000\000\212\232" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P59 (char*)PP_59 -static const char PP_60[257] = +#define P59 (char*)PP_59 +static const char PP_60[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1037,8 +1037,8 @@ static const char PP_60[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P60 (char*)PP_60 -static const char PP_61[257] = +#define P60 (char*)PP_60 +static const char PP_61[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\241\262\264\266\270\272" @@ -1054,8 +1054,8 @@ static const char PP_61[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P61 (char*)PP_61 -static const char PP_62[257] = +#define P61 (char*)PP_61 +static const char PP_62[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\256\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1071,8 +1071,8 @@ static const char PP_62[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P62 (char*)PP_62 -static const char PP_63[257] = +#define P62 (char*)PP_62 +static const char PP_63[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1088,8 +1088,8 @@ static const char PP_63[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" "\374\375\376\377"; -#define P63 (char*)PP_63 -static const char PP_64[257] = +#define P63 (char*)PP_63 +static const char PP_64[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1105,8 +1105,8 @@ static const char PP_64[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P64 (char*)PP_64 -static const char PP_65[257] = +#define P64 (char*)PP_64 +static const char PP_65[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1122,8 +1122,8 @@ static const char PP_65[257] = "\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331" "\332\333\334\335\336\337\340\341\342\343\344\345\346\000\000\000\000\000" "\000\000\000\000"; -#define P65 (char*)PP_65 -static const char PP_66[257] = +#define P65 (char*)PP_65 +static const char PP_66[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\226\227\000\000\000\221\222\202\000\223\224\204\000\206\207\225\000" "\000\000\205\000\000\000\000\000\000\000\000\000\211\000\000\000\000\000" @@ -1139,8 +1139,8 @@ static const char PP_66[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P66 (char*)PP_66 -static const char PP_67[257] = +#define P66 (char*)PP_66 +static const char PP_67[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1156,8 +1156,8 @@ static const char PP_67[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" "\374\375\376\377"; -#define P67 (char*)PP_67 -static const char PP_68[257] = +#define P67 (char*)PP_67 +static const char PP_68[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1173,8 +1173,8 @@ static const char PP_68[257] = "\311\312\313\314\315\317\320\321\322\323\324\326\327\330\331\332\333\334" "\335\336\337\340\341\343\344\307\316\325\342\345\000\000\000\000\000\000" "\000\000\000\000"; -#define P68 (char*)PP_68 -static const char PP_69[257] = +#define P68 (char*)PP_68 +static const char PP_69[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1190,8 +1190,8 @@ static const char PP_69[257] = "\000\331\332\333\334\000\000\337\340\341\342\000\344\000\000\347\350\351" "\352\353\354\355\356\357\000\361\362\363\364\000\366\367\000\371\372\373" "\374\000\000\000"; -#define P69 (char*)PP_69 -static const char PP_70[257] = +#define P69 (char*)PP_69 +static const char PP_70[257] = "\000\000\000\000\000\000\000\000\306\346\305\345\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\330\370\253\273\325\365\000\000" "\246\266\241\261\000\000\000\000\000\000\000\000\251\271\000\000\254\274" @@ -1207,8 +1207,8 @@ static const char PP_70[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P70 (char*)PP_70 -static const char PP_71[257] = +#define P70 (char*)PP_70 +static const char PP_71[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1224,8 +1224,8 @@ static const char PP_71[257] = "\242\377\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P71 (char*)PP_71 -static const char PP_72[257] = +#define P71 (char*)PP_71 +static const char PP_72[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1241,8 +1241,8 @@ static const char PP_72[257] = "\330\000\332\333\334\000\000\337\000\341\342\343\344\345\346\000\000\351" "\000\353\000\355\356\000\000\000\000\000\364\365\366\367\370\000\372\373" "\374\000\000\000"; -#define P72 (char*)PP_72 -static const char PP_73[257] = +#define P72 (char*)PP_72 +static const char PP_73[257] = "\300\340\000\000\241\261\000\000\000\000\000\000\310\350\000\000\320\360" "\252\272\000\000\314\354\312\352\000\000\000\000\000\000\000\000\253\273" "\000\000\000\000\245\265\317\357\000\000\307\347\000\000\000\000\000\000" @@ -1258,8 +1258,8 @@ static const char PP_73[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P73 (char*)PP_73 -static const char PP_74[257] = +#define P73 (char*)PP_73 +static const char PP_74[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1275,8 +1275,8 @@ static const char PP_74[257] = "\000\377\000\262\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P74 (char*)PP_74 -static const char PP_75[257] = +#define P74 (char*)PP_74 +static const char PP_75[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1284,16 +1284,16 @@ static const char PP_75[257] = "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\232\233\234\235\236\237\240\000" - "\000\375\244\000\000\000\000\000\000\256\000\000\000\000\000\000\000\000" - "\000\374\000\000\000\000\000\257\000\000\000\000\000\000\000\000\000\000" + "\176\177\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\232\233\234\235\236\237\240\000" + "\000\375\244\000\000\000\000\000\000\256\000\000\000\000\000\000\000\000" + "\000\374\000\000\000\000\000\257\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\205\000\203\000\000\000\000\207\212\202" - "\210\211\000\000\214\213\000\000\000\000\223\000\000\000\000\227\000\226" + "\000\000\000\000\000\000\000\000\205\000\203\000\000\000\000\207\212\202" + "\210\211\000\000\214\213\000\000\000\000\223\000\000\000\000\227\000\226" "\000\000\000\000"; -#define P75 (char*)PP_75 -static const char PP_76[257] = +#define P75 (char*)PP_75 +static const char PP_76[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\254\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\273\000\000\000\277\000\301\302\303" "\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325" @@ -1309,25 +1309,25 @@ static const char PP_76[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P76 (char*)PP_76 -static const char PP_77[257] = - "\245\000\200\000\000\000\000\000\000\000\000\000\373\000\000\000\230\000" - "\000\000\231\000\000\000\372\000\000\000\243\000\000\000\000\000\000\000" - "\201\000\000\000\000\000\000\000\242\000\000\000\000\000\000\000\241\000" - "\000\000\000\000\000\000\246\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\264\220\275\276\252\216\215\221\274\272" - "\251\225\224\222\247\250\263\204\206\217\270\271\255\266\267\253\371\300" - "\265\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\337\000\000\000\334\000\000\000\333\000\000\000\335\000\000\000" - "\336\260\261\262\000\000\000\000\000\000\000\000\000\000\000\000\376\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" - "\000\000\000\000"; -#define P77 (char*)PP_77 -static const char PP_78[257] = +#define P76 (char*)PP_76 +static const char PP_77[257] = + "\245\000\200\000\000\000\000\000\000\000\000\000\373\000\000\000\230\000" + "\000\000\231\000\000\000\372\000\000\000\243\000\000\000\000\000\000\000" + "\201\000\000\000\000\000\000\000\242\000\000\000\000\000\000\000\241\000" + "\000\000\000\000\000\000\246\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\264\220\275\276\252\216\215\221\274\272" + "\251\225\224\222\247\250\263\204\206\217\270\271\255\266\267\253\371\300" + "\265\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\337\000\000\000\334\000\000\000\333\000\000\000\335\000\000\000" + "\336\260\261\262\000\000\000\000\000\000\000\000\000\000\000\000\376\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + "\000\000\000\000"; +#define P77 (char*)PP_77 +static const char PP_78[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1343,8 +1343,8 @@ static const char PP_78[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P78 (char*)PP_78 -static const char PP_79[257] = +#define P78 (char*)PP_78 +static const char PP_79[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1360,8 +1360,8 @@ static const char PP_79[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P79 (char*)PP_79 -static const char PP_80[257] = +#define P79 (char*)PP_79 +static const char PP_80[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\257\000\000\241\242\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1377,8 +1377,8 @@ static const char PP_80[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P80 (char*)PP_80 -static const char PP_81[257] = +#define P80 (char*)PP_80 +static const char PP_81[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1394,8 +1394,8 @@ static const char PP_81[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\272\000\000\000\000" "\000\000\000\000"; -#define P81 (char*)PP_81 -static const char PP_82[257] = +#define P81 (char*)PP_81 +static const char PP_82[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1411,8 +1411,8 @@ static const char PP_82[257] = "\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371" "\372\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P82 (char*)PP_82 -static const char PP_83[257] = +#define P82 (char*)PP_82 +static const char PP_83[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\375\376\000\000" "\000\000\000\000\000\337\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1428,8 +1428,8 @@ static const char PP_83[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P83 (char*)PP_83 -static const char PP_84[257] = +#define P83 (char*)PP_83 +static const char PP_84[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1445,8 +1445,8 @@ static const char PP_84[257] = "\330\331\332\333\334\000\000\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\000\361\362\363\364\365\366\367\370\371\372\373" "\374\000\000\377"; -#define P84 (char*)PP_84 -static const char PP_85[257] = +#define P84 (char*)PP_84 +static const char PP_85[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\320\360\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\335\375\000\000\000\000" @@ -1462,8 +1462,8 @@ static const char PP_85[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P85 (char*)PP_85 -static const char PP_86[257] = +#define P85 (char*)PP_85 +static const char PP_86[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1479,8 +1479,8 @@ static const char PP_86[257] = "\250\000\000\000\334\000\000\337\000\000\000\000\344\345\277\000\000\351" "\000\000\000\000\000\000\000\000\000\363\000\365\366\367\270\000\000\000" "\374\000\000\000"; -#define P86 (char*)PP_86 -static const char PP_87[257] = +#define P86 (char*)PP_86 +static const char PP_87[257] = "\302\342\000\000\300\340\303\343\000\000\000\000\310\350\000\000\000\000" "\307\347\000\000\313\353\306\346\000\000\000\000\000\000\000\000\314\354" "\000\000\000\000\000\000\316\356\000\000\301\341\000\000\000\000\000\000" @@ -1496,8 +1496,8 @@ static const char PP_87[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P87 (char*)PP_87 -static const char PP_88[257] = +#define P87 (char*)PP_87 +static const char PP_88[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\377\000\000\264\241\245\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1513,8 +1513,8 @@ static const char PP_88[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P88 (char*)PP_88 -static const char PP_89[257] = +#define P88 (char*)PP_88 +static const char PP_89[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1530,8 +1530,8 @@ static const char PP_89[257] = "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" "\374\375\376\377"; -#define P89 (char*)PP_89 -static const char PP_90[257] = +#define P89 (char*)PP_89 +static const char PP_90[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1547,8 +1547,8 @@ static const char PP_90[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P90 (char*)PP_90 -static const char PP_91[257] = +#define P90 (char*)PP_90 +static const char PP_91[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1564,8 +1564,8 @@ static const char PP_91[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P91 (char*)PP_91 -static const char PP_92[257] = +#define P91 (char*)PP_91 +static const char PP_92[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1581,8 +1581,8 @@ static const char PP_92[257] = "\000\331\332\333\334\000\000\337\340\341\342\000\344\000\346\347\350\351" "\352\353\354\355\356\357\000\000\362\363\364\000\366\000\000\371\372\373" "\374\000\000\377"; -#define P92 (char*)PP_92 -static const char PP_93[257] = +#define P92 (char*)PP_92 +static const char PP_93[257] = "\000\000\303\343\241\242\305\345\000\000\000\000\262\271\000\000\320\360" "\000\000\000\000\000\000\335\375\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1598,8 +1598,8 @@ static const char PP_93[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P93 (char*)PP_93 -static const char PP_94[257] = +#define P93 (char*)PP_93 +static const char PP_94[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\252\272\336\376\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1615,8 +1615,8 @@ static const char PP_94[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P94 (char*)PP_94 -static const char PP_95[257] = +#define P94 (char*)PP_94 +static const char PP_95[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\265\245\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1632,8 +1632,8 @@ static const char PP_95[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P95 (char*)PP_95 -static const char PP_96[257] = +#define P95 (char*)PP_95 +static const char PP_96[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1649,8 +1649,8 @@ static const char PP_96[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P96 (char*)PP_96 -static const char PP_97[257] = +#define P96 (char*)PP_96 +static const char PP_97[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1666,8 +1666,8 @@ static const char PP_97[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P97 (char*)PP_97 -static const char PP_98[257] = +#define P97 (char*)PP_97 +static const char PP_98[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1683,8 +1683,8 @@ static const char PP_98[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P98 (char*)PP_98 -static const char PP_99[257] = +#define P98 (char*)PP_98 +static const char PP_99[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\226\227\257\000\000\221\222\202\000\223\224\204\000\206\207\225\000" "\000\000\205\000\000\000\000\000\000\000\000\000\211\000\000\000\000\000" @@ -1700,8 +1700,8 @@ static const char PP_99[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P99 (char*)PP_99 -static const char PP_100[257] = +#define P99 (char*)PP_99 +static const char PP_100[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1717,8 +1717,8 @@ static const char PP_100[257] = "\330\331\332\333\334\000\000\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\000\361\362\363\364\365\366\367\370\371\372\373" "\374\000\000\377"; -#define P100 (char*)PP_100 -static const char PP_101[257] = +#define P100 (char*)PP_100 +static const char PP_101[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\320\360\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\335\375\000\000\000\000" @@ -1734,8 +1734,8 @@ static const char PP_101[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P101 (char*)PP_101 -static const char PP_102[257] = +#define P101 (char*)PP_101 +static const char PP_102[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1751,8 +1751,8 @@ static const char PP_102[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\272\000\000\000\000" "\000\000\000\000"; -#define P102 (char*)PP_102 -static const char PP_103[257] = +#define P102 (char*)PP_102 +static const char PP_103[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1768,8 +1768,8 @@ static const char PP_103[257] = "\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371" "\372\000\000\000\000\000\324\325\326\327\330\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P103 (char*)PP_103 -static const char PP_104[257] = +#define P103 (char*)PP_103 +static const char PP_104[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\375\376\000\000" "\000\226\227\000\000\000\221\222\202\000\223\224\204\000\206\207\225\000" "\000\000\205\000\000\000\000\000\000\000\000\000\211\000\000\000\000\000" @@ -1785,8 +1785,8 @@ static const char PP_104[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P104 (char*)PP_104 -static const char PP_105[257] = +#define P104 (char*)PP_104 +static const char PP_105[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1802,8 +1802,8 @@ static const char PP_105[257] = "\000\000\000\000\000\000\000\000\340\000\342\000\000\000\000\347\350\351" "\352\353\000\000\356\357\000\000\000\000\364\000\000\367\000\371\000\373" "\374\000\000\000"; -#define P105 (char*)PP_105 -static const char PP_106[257] = +#define P105 (char*)PP_105 +static const char PP_106[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1819,8 +1819,8 @@ static const char PP_106[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P106 (char*)PP_106 -static const char PP_107[257] = +#define P106 (char*)PP_106 +static const char PP_107[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1836,8 +1836,8 @@ static const char PP_107[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P107 (char*)PP_107 -static const char PP_108[257] = +#define P107 (char*)PP_107 +static const char PP_108[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\241\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\272\000\000\000\277\000\301\302\303" "\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325" @@ -1853,8 +1853,8 @@ static const char PP_108[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P108 (char*)PP_108 -static const char PP_109[257] = +#define P108 (char*)PP_108 +static const char PP_109[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\235\236\375\376\000\000" "\000\226\227\000\000\000\221\222\202\000\223\224\204\000\206\207\225\000" "\000\000\205\000\000\000\000\000\000\000\000\000\211\000\000\000\000\000" @@ -1870,8 +1870,8 @@ static const char PP_109[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P109 (char*)PP_109 -static const char PP_110[257] = +#define P109 (char*)PP_109 +static const char PP_110[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1887,8 +1887,8 @@ static const char PP_110[257] = "\250\000\000\000\334\000\000\337\000\000\000\000\344\345\277\000\000\351" "\000\000\000\000\000\000\000\000\000\363\000\365\366\367\270\000\000\000" "\374\000\000\000"; -#define P110 (char*)PP_110 -static const char PP_111[257] = +#define P110 (char*)PP_110 +static const char PP_111[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1904,8 +1904,8 @@ static const char PP_111[257] = "\000\377\000\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P111 (char*)PP_111 -static const char PP_112[257] = +#define P111 (char*)PP_111 +static const char PP_112[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -1921,8 +1921,8 @@ static const char PP_112[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\202\000\000\000\000" "\000\000\000\000"; -#define P112 (char*)PP_112 -static const char PP_113[257] = +#define P112 (char*)PP_112 +static const char PP_113[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\254\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\273\000\000\000\277\000\301\302\303" "\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325" @@ -1938,8 +1938,8 @@ static const char PP_113[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P113 (char*)PP_113 -static const char PP_114[257] = +#define P113 (char*)PP_113 +static const char PP_114[257] = "\213\000\212\000\000\000\000\000\000\000\000\000\215\000\000\000\214\000" "\000\000\216\000\000\000\217\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1955,8 +1955,8 @@ static const char PP_114[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P114 (char*)PP_114 -static const char PP_115[257] = +#define P114 (char*)PP_114 +static const char PP_115[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1972,8 +1972,8 @@ static const char PP_115[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\205\204\203\206\243\242\241\245" "\366\000\000\000"; -#define P115 (char*)PP_115 -static const char PP_116[257] = +#define P115 (char*)PP_115 +static const char PP_116[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -1989,8 +1989,8 @@ static const char PP_116[257] = "\000\000\000\364\000\000\000\365\000\000\000\373\000\000\000\374\000\376" "\000\000\375\000\000\000\226\000\230\227\000\367\234\370\235\371\236\372" "\237\000\000\000"; -#define P116 (char*)PP_116 -static const char PP_117[257] = +#define P116 (char*)PP_116 +static const char PP_117[257] = "\000\241\242\000\244\245\246\247\250\251\252\253\254\000\256\257\260\261" "\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303" "\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325" @@ -2006,8 +2006,8 @@ static const char PP_117[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P117 (char*)PP_117 -static const char PP_118[257] = +#define P117 (char*)PP_117 +static const char PP_118[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2023,8 +2023,8 @@ static const char PP_118[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P118 (char*)PP_118 -static const char PP_119[257] = +#define P118 (char*)PP_118 +static const char PP_119[257] = "\000\360\000\000\364\000\366\370\000\000\000\000\000\000\000\000\200\201" "\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223" "\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245" @@ -2040,8 +2040,8 @@ static const char PP_119[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P119 (char*)PP_119 -static const char PP_120[257] = +#define P119 (char*)PP_119 +static const char PP_120[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\373\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2057,8 +2057,8 @@ static const char PP_120[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P120 (char*)PP_120 -static const char PP_121[257] = +#define P120 (char*)PP_120 +static const char PP_121[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2074,8 +2074,8 @@ static const char PP_121[257] = "\330\331\332\333\334\000\000\337\340\341\342\000\344\345\346\347\350\351" "\352\353\000\355\356\357\000\361\000\363\364\000\366\367\370\371\372\373" "\374\000\000\377"; -#define P121 (char*)PP_121 -static const char PP_122[257] = +#define P121 (char*)PP_121 +static const char PP_122[257] = "\000\000\303\343\000\000\000\000\000\000\000\000\000\000\000\000\320\360" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2091,8 +2091,8 @@ static const char PP_122[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P122 (char*)PP_122 -static const char PP_123[257] = +#define P122 (char*)PP_122 +static const char PP_123[257] = "\314\354\000\336\000\000\000\000\000\322\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\362" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2108,8 +2108,8 @@ static const char PP_123[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P123 (char*)PP_123 -static const char PP_124[257] = +#define P123 (char*)PP_123 +static const char PP_124[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2125,8 +2125,8 @@ static const char PP_124[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P124 (char*)PP_124 -static const char PP_125[257] = +#define P124 (char*)PP_124 +static const char PP_125[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2142,8 +2142,8 @@ static const char PP_125[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P125 (char*)PP_125 -static const char PP_126[257] = +#define P125 (char*)PP_125 +static const char PP_126[257] = "\000\360\000\000\362\000\370\364\000\000\000\000\000\000\366\000\200\201" "\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223" "\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245" @@ -2159,8 +2159,8 @@ static const char PP_126[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P126 (char*)PP_126 -static const char PP_127[257] = +#define P126 (char*)PP_126 +static const char PP_127[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\376\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2176,8 +2176,8 @@ static const char PP_127[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P127 (char*)PP_127 -static const char PP_128[257] = +#define P127 (char*)PP_127 +static const char PP_128[257] = "\304\000\263\000\000\000\000\000\000\000\000\000\332\000\000\000\277\000" "\000\000\300\000\000\000\331\000\000\000\303\000\000\000\000\000\000\000" "\264\000\000\000\000\000\000\000\302\000\000\000\000\000\000\000\301\000" @@ -2193,8 +2193,8 @@ static const char PP_128[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P128 (char*)PP_128 -static const char PP_129[257] = +#define P128 (char*)PP_128 +static const char PP_129[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2210,8 +2210,8 @@ static const char PP_129[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P129 (char*)PP_129 -static const char PP_130[257] = +#define P129 (char*)PP_129 +static const char PP_130[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2227,8 +2227,8 @@ static const char PP_130[257] = "\370\371\000\000\335\336\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P130 (char*)PP_130 -static const char PP_131[257] = +#define P130 (char*)PP_130 +static const char PP_131[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2244,8 +2244,8 @@ static const char PP_131[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P131 (char*)PP_131 -static const char PP_132[257] = +#define P131 (char*)PP_131 +static const char PP_132[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2261,8 +2261,8 @@ static const char PP_132[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P132 (char*)PP_132 -static const char PP_133[257] = +#define P132 (char*)PP_132 +static const char PP_133[257] = "\000\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261" "\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303" "\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325" @@ -2278,8 +2278,8 @@ static const char PP_133[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P133 (char*)PP_133 -static const char PP_134[257] = +#define P133 (char*)PP_133 +static const char PP_134[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2295,8 +2295,8 @@ static const char PP_134[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P134 (char*)PP_134 -static const char PP_135[257] = +#define P134 (char*)PP_134 +static const char PP_135[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2312,8 +2312,8 @@ static const char PP_135[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P135 (char*)PP_135 -static const char PP_136[257] = +#define P135 (char*)PP_135 +static const char PP_136[257] = "\000\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261" "\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303" "\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325" @@ -2329,8 +2329,8 @@ static const char PP_136[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P136 (char*)PP_136 -static const char PP_137[257] = +#define P136 (char*)PP_136 +static const char PP_137[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\226\227\000\000\000\221\222\000\000\223\224\000\000\000\000\225\000" "\000\000\205\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2346,8 +2346,8 @@ static const char PP_137[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P137 (char*)PP_137 -static const char PP_138[257] = +#define P137 (char*)PP_137 +static const char PP_138[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2363,8 +2363,8 @@ static const char PP_138[257] = "\330\331\332\333\334\000\000\337\340\341\342\000\344\345\346\347\350\351" "\352\353\000\355\356\357\000\361\000\363\364\000\366\367\370\371\372\373" "\374\000\000\377"; -#define P138 (char*)PP_138 -static const char PP_139[257] = +#define P138 (char*)PP_138 +static const char PP_139[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2380,8 +2380,8 @@ static const char PP_139[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P139 (char*)PP_139 -static const char PP_140[257] = +#define P139 (char*)PP_139 +static const char PP_140[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2397,8 +2397,8 @@ static const char PP_140[257] = "\330\331\332\333\334\000\000\337\340\341\342\000\344\345\346\347\350\351" "\352\353\000\355\356\357\000\361\000\363\364\000\366\367\370\371\372\373" "\374\000\000\377"; -#define P140 (char*)PP_140 -static const char PP_141[257] = +#define P140 (char*)PP_140 +static const char PP_141[257] = "\000\000\303\343\000\000\000\000\000\000\000\000\000\000\000\000\320\360" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2414,8 +2414,8 @@ static const char PP_141[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P141 (char*)PP_141 -static const char PP_142[257] = +#define P141 (char*)PP_141 +static const char PP_142[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\226\227\000\000\000\221\222\202\000\223\224\204\000\206\207\225\000" "\000\000\205\000\000\000\000\000\000\000\000\000\211\000\000\000\000\000" @@ -2431,8 +2431,8 @@ static const char PP_142[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P142 (char*)PP_142 -static const char PP_143[257] = +#define P142 (char*)PP_142 +static const char PP_143[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2448,8 +2448,8 @@ static const char PP_143[257] = "\000\000\000\000\232\000\000\341\205\240\203\000\204\206\221\207\212\202" "\210\211\215\241\214\213\000\244\225\242\223\000\224\366\000\227\243\226" "\201\000\000\230"; -#define P143 (char*)PP_143 -static const char PP_144[257] = +#define P143 (char*)PP_143 +static const char PP_144[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2465,8 +2465,8 @@ static const char PP_144[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P144 (char*)PP_144 -static const char PP_145[257] = +#define P144 (char*)PP_144 +static const char PP_145[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2482,8 +2482,8 @@ static const char PP_145[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P145 (char*)PP_145 -static const char PP_146[257] = +#define P145 (char*)PP_145 +static const char PP_146[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2499,8 +2499,8 @@ static const char PP_146[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P146 (char*)PP_146 -static const char PP_147[257] = +#define P146 (char*)PP_146 +static const char PP_147[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\371\373\000\000\000\354\000\000\000\000\000" "\000\000\000\000\000\357\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2516,8 +2516,8 @@ static const char PP_147[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P147 (char*)PP_147 -static const char PP_148[257] = +#define P147 (char*)PP_147 +static const char PP_148[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\251\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\364\365\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2533,8 +2533,8 @@ static const char PP_148[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P148 (char*)PP_148 -static const char PP_149[257] = +#define P148 (char*)PP_148 +static const char PP_149[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2550,8 +2550,8 @@ static const char PP_149[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\366\000\000\000\000" "\000\000\000\000"; -#define P149 (char*)PP_149 -static const char PP_150[257] = +#define P149 (char*)PP_149 +static const char PP_150[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2567,8 +2567,8 @@ static const char PP_150[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P150 (char*)PP_150 -static const char PP_151[257] = +#define P150 (char*)PP_150 +static const char PP_151[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2584,8 +2584,8 @@ static const char PP_151[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P151 (char*)PP_151 -static const char PP_152[257] = +#define P151 (char*)PP_151 +static const char PP_152[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\371\373\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2601,8 +2601,8 @@ static const char PP_152[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P152 (char*)PP_152 -static const char PP_153[257] = +#define P152 (char*)PP_152 +static const char PP_153[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2618,8 +2618,8 @@ static const char PP_153[257] = "\235\000\000\000\232\000\000\341\000\000\000\000\204\206\221\000\000\202" "\000\000\000\000\000\000\000\000\000\242\000\344\224\366\233\000\000\000" "\201\000\000\000"; -#define P153 (char*)PP_153 -static const char PP_154[257] = +#define P153 (char*)PP_153 +static const char PP_154[257] = "\240\203\000\000\265\320\200\207\000\000\000\000\266\321\000\000\000\000" "\355\211\000\000\270\323\267\322\000\000\000\000\000\000\000\000\225\205" "\000\000\000\000\000\000\241\214\000\000\275\324\000\000\000\000\000\000" @@ -2635,8 +2635,8 @@ static const char PP_154[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P154 (char*)PP_154 -static const char PP_155[257] = +#define P154 (char*)PP_154 +static const char PP_155[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\357\000\000\362\246\367\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2652,8 +2652,8 @@ static const char PP_155[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P155 (char*)PP_155 -static const char PP_156[257] = +#define P155 (char*)PP_155 +static const char PP_156[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\371\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2669,8 +2669,8 @@ static const char PP_156[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P156 (char*)PP_156 -static const char PP_157[257] = +#define P156 (char*)PP_156 +static const char PP_157[257] = "\304\000\263\000\000\000\000\000\000\000\000\000\332\000\000\000\277\000" "\000\000\300\000\000\000\331\000\000\000\303\000\000\000\000\000\000\000" "\264\000\000\000\000\000\000\000\302\000\000\000\000\000\000\000\301\000" @@ -2686,8 +2686,8 @@ static const char PP_157[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P157 (char*)PP_157 -static const char PP_158[257] = +#define P157 (char*)PP_157 +static const char PP_158[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2703,8 +2703,8 @@ static const char PP_158[257] = "\235\353\351\352\232\355\350\341\205\240\203\306\204\206\221\207\212\202" "\210\211\215\241\214\213\320\244\225\242\223\344\224\366\233\227\243\226" "\201\354\347\230"; -#define P158 (char*)PP_158 -static const char PP_159[257] = +#define P158 (char*)PP_158 +static const char PP_159[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\325\000\000\000\000" @@ -2720,8 +2720,8 @@ static const char PP_159[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P159 (char*)PP_159 -static const char PP_160[257] = +#define P159 (char*)PP_159 +static const char PP_160[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\362\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2737,8 +2737,8 @@ static const char PP_160[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P160 (char*)PP_160 -static const char PP_161[257] = +#define P160 (char*)PP_160 +static const char PP_161[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2754,8 +2754,8 @@ static const char PP_161[257] = "\000\000\351\000\232\355\000\341\000\240\203\000\204\000\000\207\000\202" "\000\211\000\241\214\000\000\000\000\242\223\000\224\366\000\000\243\000" "\201\354\000\000"; -#define P161 (char*)PP_161 -static const char PP_162[257] = +#define P161 (char*)PP_161 +static const char PP_162[257] = "\000\000\306\307\244\245\217\206\000\000\000\000\254\237\322\324\321\320" "\000\000\000\000\000\000\250\251\267\330\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2771,8 +2771,8 @@ static const char PP_162[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P162 (char*)PP_162 -static const char PP_163[257] = +#define P162 (char*)PP_162 +static const char PP_163[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2788,8 +2788,8 @@ static const char PP_163[257] = "\364\372\000\362\000\361\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P163 (char*)PP_163 -static const char PP_164[257] = +#define P163 (char*)PP_163 +static const char PP_164[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2805,8 +2805,8 @@ static const char PP_164[257] = "\000\353\351\352\232\000\000\341\205\240\203\000\204\000\000\207\212\202" "\210\211\215\241\214\213\000\244\225\242\223\000\224\366\000\227\243\226" "\201\000\000\000"; -#define P164 (char*)PP_164 -static const char PP_165[257] = +#define P164 (char*)PP_164 +static const char PP_165[257] = "\000\000\000\000\000\000\000\000\217\206\222\221\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\235\233\246\247\344\345\000\000" "\250\251\347\350\000\000\000\000\000\000\000\000\230\325\000\000\254\237" @@ -2822,8 +2822,8 @@ static const char PP_165[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P165 (char*)PP_165 -static const char PP_166[257] = +#define P165 (char*)PP_165 +static const char PP_166[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2839,8 +2839,8 @@ static const char PP_166[257] = "\364\372\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P166 (char*)PP_166 -static const char PP_167[257] = +#define P166 (char*)PP_166 +static const char PP_167[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\362\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2856,8 +2856,8 @@ static const char PP_167[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P167 (char*)PP_167 -static const char PP_168[257] = +#define P167 (char*)PP_167 +static const char PP_168[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2873,8 +2873,8 @@ static const char PP_168[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\366\000\000\000\000" "\000\000\000\000"; -#define P168 (char*)PP_168 -static const char PP_169[257] = +#define P168 (char*)PP_168 +static const char PP_169[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2890,8 +2890,8 @@ static const char PP_169[257] = "\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231" "\232\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P169 (char*)PP_169 -static const char PP_170[257] = +#define P169 (char*)PP_169 +static const char PP_170[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2907,8 +2907,8 @@ static const char PP_170[257] = "\235\353\351\352\232\000\000\341\205\240\203\306\204\206\221\207\212\202" "\210\211\354\241\214\213\000\244\225\242\223\344\224\366\233\227\243\226" "\201\000\000\355"; -#define P170 (char*)PP_170 -static const char PP_171[257] = +#define P170 (char*)PP_170 +static const char PP_171[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\246\247\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\230\215\000\000\000\000" @@ -2924,8 +2924,8 @@ static const char PP_171[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P171 (char*)PP_171 -static const char PP_172[257] = +#define P171 (char*)PP_171 +static const char PP_172[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\362\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2941,8 +2941,8 @@ static const char PP_172[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P172 (char*)PP_172 -static const char PP_173[257] = +#define P172 (char*)PP_172 +static const char PP_173[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2958,8 +2958,8 @@ static const char PP_173[257] = "\000\235\226\000\232\000\000\341\205\240\203\204\000\000\000\207\212\202" "\210\000\215\241\000\000\000\244\225\242\223\224\000\366\000\227\243\000" "\201\000\000\000"; -#define P173 (char*)PP_173 -static const char PP_174[257] = +#define P173 (char*)PP_173 +static const char PP_174[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\364\365\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -2975,8 +2975,8 @@ static const char PP_174[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P174 (char*)PP_174 -static const char PP_175[257] = +#define P174 (char*)PP_174 +static const char PP_175[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -2992,8 +2992,8 @@ static const char PP_175[257] = "\235\000\247\000\232\227\215\341\205\240\203\000\204\206\221\207\212\202" "\210\211\000\241\000\000\214\000\000\242\223\000\224\366\233\000\243\226" "\201\230\225\000"; -#define P175 (char*)PP_175 -static const char PP_176[257] = +#define P175 (char*)PP_175 +static const char PP_176[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3009,8 +3009,8 @@ static const char PP_176[257] = "\000\000\000\000\000\000\000\341\000\240\000\000\000\000\000\000\000\000" "\000\000\000\241\000\000\000\244\000\242\000\000\000\366\000\000\243\000" "\000\000\000\000"; -#define P176 (char*)PP_176 -static const char PP_177[257] = +#define P176 (char*)PP_176 +static const char PP_177[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3026,8 +3026,8 @@ static const char PP_177[257] = "\000\235\000\236\232\000\000\341\205\000\203\000\000\000\000\207\212\202" "\210\211\000\000\214\213\000\000\000\242\223\000\000\366\000\227\243\226" "\201\000\000\000"; -#define P177 (char*)PP_177 -static const char PP_178[257] = +#define P177 (char*)PP_177 +static const char PP_178[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\215\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3043,8 +3043,8 @@ static const char PP_178[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P178 (char*)PP_178 -static const char PP_179[257] = +#define P178 (char*)PP_178 +static const char PP_179[257] = "\000\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\040\041\042\043" "\044\000\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3060,8 +3060,8 @@ static const char PP_179[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\335\000\000\000\000" "\000\000\000\000"; -#define P179 (char*)PP_179 -static const char PP_180[257] = +#define P179 (char*)PP_179 +static const char PP_180[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3077,8 +3077,8 @@ static const char PP_180[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P180 (char*)PP_180 -static const char PP_181[257] = +#define P180 (char*)PP_180 +static const char PP_181[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\254\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\273\000\000\000\277\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3094,8 +3094,8 @@ static const char PP_181[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P181 (char*)PP_181 -static const char PP_182[257] = +#define P181 (char*)PP_181 +static const char PP_182[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\202\203\000\000\000\221\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3111,8 +3111,8 @@ static const char PP_182[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P182 (char*)PP_182 -static const char PP_183[257] = +#define P182 (char*)PP_182 +static const char PP_183[257] = "\205\000\206\000\000\000\000\000\000\000\000\000\215\000\000\000\214\000" "\000\000\216\000\000\000\217\000\000\000\212\000\000\000\000\000\000\000" "\210\000\000\000\000\000\000\000\211\000\000\000\000\000\000\000\213\000" @@ -3128,8 +3128,8 @@ static const char PP_183[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P183 (char*)PP_183 -static const char PP_184[257] = +#define P183 (char*)PP_183 +static const char PP_184[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3145,8 +3145,8 @@ static const char PP_184[257] = "\000\374\000\343\000\373\000\344\000\357\000\345\000\362\000\346\000\363" "\000\347\364\350\000\351\365\375\366\352\000\371\372\231\232\000\000\235" "\236\000\000\000"; -#define P184 (char*)PP_184 -static const char PP_185[257] = +#define P184 (char*)PP_184 +static const char PP_185[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3162,8 +3162,8 @@ static const char PP_185[257] = "\235\000\000\000\232\000\000\341\205\240\203\000\204\206\221\207\212\202" "\210\211\215\241\214\213\000\244\225\242\223\000\224\366\233\227\243\226" "\201\000\000\230"; -#define P185 (char*)PP_185 -static const char PP_186[257] = +#define P185 (char*)PP_185 +static const char PP_186[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3179,8 +3179,8 @@ static const char PP_186[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P186 (char*)PP_186 -static const char PP_187[257] = +#define P186 (char*)PP_186 +static const char PP_187[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3196,8 +3196,8 @@ static const char PP_187[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P187 (char*)PP_187 -static const char PP_188[257] = +#define P187 (char*)PP_187 +static const char PP_188[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\216\000\000\213\214\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3213,8 +3213,8 @@ static const char PP_188[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P188 (char*)PP_188 -static const char PP_189[257] = +#define P188 (char*)PP_188 +static const char PP_189[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3230,8 +3230,8 @@ static const char PP_189[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P189 (char*)PP_189 -static const char PP_190[257] = +#define P189 (char*)PP_189 +static const char PP_190[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3247,8 +3247,8 @@ static const char PP_190[257] = "\330\331\332\333\334\335\000\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\000\361\362\363\364\365\366\367\370\371\372\373" "\374\375\000\377"; -#define P190 (char*)PP_190 -static const char PP_191[257] = +#define P190 (char*)PP_190 +static const char PP_191[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3264,8 +3264,8 @@ static const char PP_191[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P191 (char*)PP_191 -static const char PP_192[257] = +#define P191 (char*)PP_191 +static const char PP_192[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3281,8 +3281,8 @@ static const char PP_192[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P192 (char*)PP_192 -static const char PP_193[257] = +#define P192 (char*)PP_192 +static const char PP_193[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3298,8 +3298,8 @@ static const char PP_193[257] = "\322\255\355\256\333\261\360\336\310\304\300\342\314\324\327\265\311\305" "\301\315\331\325\321\335\344\267\312\306\302\352\316\000\326\313\307\303" "\317\262\361\357"; -#define P193 (char*)PP_193 -static const char PP_194[257] = +#define P193 (char*)PP_193 +static const char PP_194[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3315,8 +3315,8 @@ static const char PP_194[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P194 (char*)PP_194 -static const char PP_195[257] = +#define P194 (char*)PP_194 +static const char PP_195[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3332,8 +3332,8 @@ static const char PP_195[257] = "\000\000\000\000\254\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P195 (char*)PP_195 -static const char PP_196[257] = +#define P195 (char*)PP_195 +static const char PP_196[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\366\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3349,8 +3349,8 @@ static const char PP_196[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P196 (char*)PP_196 -static const char PP_197[257] = +#define P196 (char*)PP_196 +static const char PP_197[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3366,8 +3366,8 @@ static const char PP_197[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P197 (char*)PP_197 -static const char PP_198[257] = +#define P197 (char*)PP_197 +static const char PP_198[257] = "\000\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\040\041\042\043" "\000\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3383,8 +3383,8 @@ static const char PP_198[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P198 (char*)PP_198 -static const char PP_199[257] = +#define P198 (char*)PP_198 +static const char PP_199[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3400,8 +3400,8 @@ static const char PP_199[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P199 (char*)PP_199 -static const char PP_200[257] = +#define P199 (char*)PP_199 +static const char PP_200[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3417,8 +3417,8 @@ static const char PP_200[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P200 (char*)PP_200 -static const char PP_201[257] = +#define P200 (char*)PP_200 +static const char PP_201[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3434,8 +3434,8 @@ static const char PP_201[257] = "\330\000\332\333\334\335\336\337\000\341\342\343\344\345\346\000\000\351" "\000\353\000\355\356\357\360\000\000\363\364\365\366\000\370\000\372\373" "\374\375\376\000"; -#define P201 (char*)PP_201 -static const char PP_202[257] = +#define P201 (char*)PP_201 +static const char PP_202[257] = "\300\340\000\000\241\261\000\000\000\000\000\000\310\350\000\000\251\271" "\242\262\000\000\314\354\312\352\000\000\000\000\000\000\000\000\243\263" "\000\000\000\000\245\265\244\264\000\000\307\347\000\000\000\000\000\000" @@ -3451,8 +3451,8 @@ static const char PP_202[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P202 (char*)PP_202 -static const char PP_203[257] = +#define P202 (char*)PP_202 +static const char PP_203[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3468,8 +3468,8 @@ static const char PP_203[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P203 (char*)PP_203 -static const char PP_204[257] = +#define P203 (char*)PP_203 +static const char PP_204[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3485,8 +3485,8 @@ static const char PP_204[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P204 (char*)PP_204 -static const char PP_205[257] = +#define P204 (char*)PP_204 +static const char PP_205[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3502,8 +3502,8 @@ static const char PP_205[257] = "\330\331\332\333\334\335\000\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\000\361\362\363\364\365\366\000\370\371\372\373" "\374\375\000\377"; -#define P205 (char*)PP_205 -static const char PP_206[257] = +#define P205 (char*)PP_205 +static const char PP_206[257] = "\000\000\000\000\000\000\000\000\000\000\244\245\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\262\263\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3519,8 +3519,8 @@ static const char PP_206[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P206 (char*)PP_206 -static const char PP_207[257] = +#define P206 (char*)PP_206 +static const char PP_207[257] = "\000\000\241\242\000\000\000\000\000\000\246\253\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\260\261\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3536,8 +3536,8 @@ static const char PP_207[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\254\274\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P207 (char*)PP_207 -static const char PP_208[257] = +#define P207 (char*)PP_207 +static const char PP_208[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3553,8 +3553,8 @@ static const char PP_208[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P208 (char*)PP_208 -static const char PP_209[257] = +#define P208 (char*)PP_208 +static const char PP_209[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3570,8 +3570,8 @@ static const char PP_209[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P209 (char*)PP_209 -static const char PP_210[257] = +#define P209 (char*)PP_209 +static const char PP_210[257] = "\000\263\000\000\000\000\000\000\000\000\000\000\000\000\000\000\341\342" "\367\347\344\345\366\372\351\352\353\354\355\356\357\360\362\363\364\365" "\346\350\343\376\373\375\377\371\370\374\340\361\301\302\327\307\304\305" @@ -3587,8 +3587,8 @@ static const char PP_210[257] = "\000\000\000\000\000\000\000\000\000\000\265\245\000\000\000\000\000\000" "\000\000\000\000\242\241\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P210 (char*)PP_210 -static const char PP_211[257] = +#define P210 (char*)PP_210 +static const char PP_211[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3604,8 +3604,8 @@ static const char PP_211[257] = "\000\000\000\000\206\000\000\000\210\207\211\000\212\000\000\215\217\216" "\220\221\000\222\224\225\000\226\000\227\231\000\232\233\000\235\234\236" "\237\000\000\000"; -#define P211 (char*)PP_211 -static const char PP_212[257] = +#define P211 (char*)PP_211 +static const char PP_212[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\254\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\273\000\000\000\277\000\301\302\303" "\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325" @@ -3621,8 +3621,8 @@ static const char PP_212[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P212 (char*)PP_212 -static const char PP_213[257] = +#define P212 (char*)PP_212 +static const char PP_213[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\223\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3638,8 +3638,8 @@ static const char PP_213[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P213 (char*)PP_213 -static const char PP_214[257] = +#define P213 (char*)PP_213 +static const char PP_214[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3655,8 +3655,8 @@ static const char PP_214[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P214 (char*)PP_214 -static const char PP_215[257] = +#define P214 (char*)PP_214 +static const char PP_215[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3672,8 +3672,8 @@ static const char PP_215[257] = "\000\000\362\000\206\370\000\247\000\207\000\000\212\000\000\000\000\216" "\000\000\000\222\000\000\000\000\000\227\231\233\232\326\000\000\234\000" "\237\371\000\000"; -#define P215 (char*)PP_215 -static const char PP_216[257] = +#define P215 (char*)PP_215 +static const char PP_216[257] = "\201\202\000\000\204\210\214\215\000\000\000\000\211\213\221\223\000\000" "\224\225\000\000\226\230\242\253\235\236\000\000\000\000\000\000\376\256" "\000\000\000\000\000\000\261\264\000\000\257\260\000\000\000\000\000\000" @@ -3689,8 +3689,8 @@ static const char PP_216[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P216 (char*)PP_216 -static const char PP_217[257] = +#define P216 (char*)PP_216 +static const char PP_217[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3706,8 +3706,8 @@ static const char PP_217[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P217 (char*)PP_217 -static const char PP_218[257] = +#define P217 (char*)PP_217 +static const char PP_218[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\320\321\000\000\000\324\325\342\000\322\323\343\000\240\000\245\000" "\000\000\311\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3723,8 +3723,8 @@ static const char PP_218[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P218 (char*)PP_218 -static const char PP_219[257] = +#define P218 (char*)PP_218 +static const char PP_219[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3740,8 +3740,8 @@ static const char PP_219[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P219 (char*)PP_219 -static const char PP_220[257] = +#define P219 (char*)PP_219 +static const char PP_220[257] = "\000\000\266\000\000\000\306\000\000\000\000\000\000\000\000\000\000\267" "\000\000\000\000\000\000\000\000\303\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3757,8 +3757,8 @@ static const char PP_220[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P220 (char*)PP_220 -static const char PP_221[257] = +#define P220 (char*)PP_220 +static const char PP_221[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3774,8 +3774,8 @@ static const char PP_221[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P221 (char*)PP_221 -static const char PP_222[257] = +#define P221 (char*)PP_221 +static const char PP_222[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3791,8 +3791,8 @@ static const char PP_222[257] = "\257\364\362\363\206\000\000\247\210\207\211\213\212\214\376\215\217\216" "\220\221\223\222\224\225\000\226\230\227\231\233\232\326\277\235\234\236" "\237\000\000\000"; -#define P222 (char*)PP_222 -static const char PP_223[257] = +#define P222 (char*)PP_222 +static const char PP_223[257] = "\000\000\000\000\000\000\306\346\000\000\000\000\310\350\000\000\320\360" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\365\000\000\000\000" @@ -3808,8 +3808,8 @@ static const char PP_223[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P223 (char*)PP_223 -static const char PP_224[257] = +#define P223 (char*)PP_223 +static const char PP_224[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3825,8 +3825,8 @@ static const char PP_224[257] = "\000\000\373\000\367\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P224 (char*)PP_224 -static const char PP_225[257] = +#define P224 (char*)PP_224 +static const char PP_225[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3842,8 +3842,8 @@ static const char PP_225[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P225 (char*)PP_225 -static const char PP_226[257] = +#define P225 (char*)PP_225 +static const char PP_226[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\340\321\000\000\000\324\325\342\000\322\323\343\000\240\000\245\000" "\000\000\311\000\000\000\000\000\000\000\000\000\344\000\000\000\000\000" @@ -3859,8 +3859,8 @@ static const char PP_226[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P226 (char*)PP_226 -static const char PP_227[257] = +#define P226 (char*)PP_226 +static const char PP_227[257] = "\000\000\266\000\000\000\264\000\000\000\000\000\000\000\000\270\000\267" "\000\000\000\000\000\000\000\000\303\000\000\000\260\000\000\000\000\000" "\000\000\000\000\000\000\000\272\000\000\000\000\000\000\000\000\000\000" @@ -3876,8 +3876,8 @@ static const char PP_227[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P227 (char*)PP_227 -static const char PP_228[257] = +#define P227 (char*)PP_227 +static const char PP_228[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3893,8 +3893,8 @@ static const char PP_228[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\330"; -#define P228 (char*)PP_228 -static const char PP_229[257] = +#define P228 (char*)PP_228 +static const char PP_229[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -3910,8 +3910,8 @@ static const char PP_229[257] = "\000\000\000\000\206\000\000\247\210\000\211\000\212\000\000\215\217\216" "\220\221\000\000\224\225\000\000\000\000\231\000\232\326\000\235\000\236" "\237\000\000\000"; -#define P229 (char*)PP_229 -static const char PP_230[257] = +#define P229 (char*)PP_229 +static const char PP_230[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3927,8 +3927,8 @@ static const char PP_230[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P230 (char*)PP_230 -static const char PP_231[257] = +#define P230 (char*)PP_230 +static const char PP_231[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3944,8 +3944,8 @@ static const char PP_231[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P231 (char*)PP_231 -static const char PP_232[257] = +#define P231 (char*)PP_231 +static const char PP_232[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\320\000\321\000\000\324\325\000\000\322\323\000\000\240\000\226\000" "\000\000\311\000\000\000\000\000\000\000\000\000\230\000\000\000\000\000" @@ -3961,8 +3961,8 @@ static const char PP_232[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P232 (char*)PP_232 -static const char PP_233[257] = +#define P232 (char*)PP_232 +static const char PP_233[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\223\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3978,8 +3978,8 @@ static const char PP_233[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P233 (char*)PP_233 -static const char PP_234[257] = +#define P233 (char*)PP_233 +static const char PP_234[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -3995,8 +3995,8 @@ static const char PP_234[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P234 (char*)PP_234 -static const char PP_235[257] = +#define P234 (char*)PP_234 +static const char PP_235[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4012,8 +4012,8 @@ static const char PP_235[257] = "\000\000\000\000\206\000\000\000\210\207\211\213\212\214\000\215\217\216" "\220\221\223\222\224\225\000\226\230\227\231\233\232\000\000\235\234\236" "\237\000\000\000"; -#define P235 (char*)PP_235 -static const char PP_236[257] = +#define P235 (char*)PP_235 +static const char PP_236[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4029,8 +4029,8 @@ static const char PP_236[257] = "\350\351\352\353\300\355\356\357\360\361\362\363\364\365\366\367\370\371" "\372\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P236 (char*)PP_236 -static const char PP_237[257] = +#define P236 (char*)PP_236 +static const char PP_237[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\320\321\000\000\000\324\325\000\000\322\323\301\000\000\000\000\000" "\000\000\311\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4046,8 +4046,8 @@ static const char PP_237[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P237 (char*)PP_237 -static const char PP_238[257] = +#define P237 (char*)PP_237 +static const char PP_238[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4063,8 +4063,8 @@ static const char PP_238[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P238 (char*)PP_238 -static const char PP_239[257] = +#define P238 (char*)PP_238 +static const char PP_239[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\201\000\000\000\000" "\000\000\000\000\000\000\326\327\000\000\000\000\000\000\000\000\000\310" @@ -4080,8 +4080,8 @@ static const char PP_239[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P239 (char*)PP_239 -static const char PP_240[257] = +#define P239 (char*)PP_239 +static const char PP_240[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4097,8 +4097,8 @@ static const char PP_240[257] = "\257\364\362\363\206\240\336\247\210\207\211\213\212\214\276\215\217\216" "\220\221\223\222\224\225\335\226\230\227\231\233\232\326\277\235\234\236" "\237\340\337\330"; -#define P240 (char*)PP_240 -static const char PP_241[257] = +#define P240 (char*)PP_240 +static const char PP_241[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\365\000\000\000\000" @@ -4114,8 +4114,8 @@ static const char PP_241[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P241 (char*)PP_241 -static const char PP_242[257] = +#define P241 (char*)PP_241 +static const char PP_242[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4131,8 +4131,8 @@ static const char PP_242[257] = "\371\372\373\376\367\375\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P242 (char*)PP_242 -static const char PP_243[257] = +#define P242 (char*)PP_242 +static const char PP_243[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4148,8 +4148,8 @@ static const char PP_243[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P243 (char*)PP_243 -static const char PP_244[257] = +#define P243 (char*)PP_243 +static const char PP_244[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\320\321\000\000\000\324\325\342\000\322\323\343\000\000\000\245\000" "\000\000\311\000\000\000\000\000\000\000\000\000\344\000\000\000\000\000" @@ -4165,8 +4165,8 @@ static const char PP_244[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P244 (char*)PP_244 -static const char PP_245[257] = +#define P244 (char*)PP_244 +static const char PP_245[257] = "\000\000\266\000\000\000\306\000\000\000\000\000\000\000\000\270\000\267" "\000\000\000\000\000\000\000\000\303\000\000\000\260\000\000\000\000\000" "\000\000\000\000\000\000\000\272\000\000\000\000\000\000\000\000\000\000" @@ -4182,8 +4182,8 @@ static const char PP_245[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P245 (char*)PP_245 -static const char PP_246[257] = +#define P245 (char*)PP_245 +static const char PP_246[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4199,8 +4199,8 @@ static const char PP_246[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\360"; -#define P246 (char*)PP_246 -static const char PP_247[257] = +#define P246 (char*)PP_246 +static const char PP_247[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4216,8 +4216,8 @@ static const char PP_247[257] = "\000\364\362\363\206\000\000\247\210\207\211\213\212\214\000\215\217\216" "\220\221\223\222\224\225\000\226\230\227\231\233\232\326\000\235\234\236" "\237\000\000\330"; -#define P247 (char*)PP_247 -static const char PP_248[257] = +#define P247 (char*)PP_247 +static const char PP_248[257] = "\000\000\256\276\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\365\000\000\000\000" @@ -4233,8 +4233,8 @@ static const char PP_248[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P248 (char*)PP_248 -static const char PP_249[257] = +#define P248 (char*)PP_248 +static const char PP_249[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\257\277\336\337\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4250,8 +4250,8 @@ static const char PP_249[257] = "\371\372\373\376\367\375\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P249 (char*)PP_249 -static const char PP_250[257] = +#define P249 (char*)PP_249 +static const char PP_250[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\320\321\000\000\000\324\325\342\000\322\323\343\000\240\340\245\000" "\000\000\311\000\000\000\000\000\000\000\000\000\344\000\000\000\000\000" @@ -4267,8 +4267,8 @@ static const char PP_250[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P250 (char*)PP_250 -static const char PP_251[257] = +#define P250 (char*)PP_250 +static const char PP_251[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4284,8 +4284,8 @@ static const char PP_251[257] = "\257\364\362\363\206\000\000\247\210\207\211\213\212\214\276\215\217\216" "\220\221\223\222\224\225\000\226\230\227\231\233\232\326\277\235\234\236" "\237\000\000\330"; -#define P251 (char*)PP_251 -static const char PP_252[257] = +#define P251 (char*)PP_251 +static const char PP_252[257] = "\000\336\337\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4301,8 +4301,8 @@ static const char PP_252[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P252 (char*)PP_252 -static const char PP_253[257] = +#define P252 (char*)PP_252 +static const char PP_253[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4318,8 +4318,8 @@ static const char PP_253[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P253 (char*)PP_253 -static const char PP_254[257] = +#define P253 (char*)PP_253 +static const char PP_254[257] = "\000\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261" "\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303" "\304\305\306\307\310\311\312\313\314\315\316\317\320\222\322\323\224\225" @@ -4335,8 +4335,8 @@ static const char PP_254[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P254 (char*)PP_254 -static const char PP_255[257] = +#define P254 (char*)PP_254 +static const char PP_255[257] = "\000\000\000\000\000\000\000\000\000\000\000\334\000\000\000\000\000\000" "\000\335\336\000\000\000\235\236\000\000\215\216\000\000\000\000\221\000" "\000\000\202\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4352,8 +4352,8 @@ static const char PP_255[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P255 (char*)PP_255 -static const char PP_256[257] = +#define P255 (char*)PP_255 +static const char PP_256[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\356\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4369,8 +4369,8 @@ static const char PP_256[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P256 (char*)PP_256 -static const char PP_257[257] = +#define P256 (char*)PP_256 +static const char PP_257[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\332\333\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\334\335\000\000\000\000" @@ -4386,8 +4386,8 @@ static const char PP_257[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P257 (char*)PP_257 -static const char PP_258[257] = +#define P257 (char*)PP_257 +static const char PP_258[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\320\321\000\000\000\324\325\342\000\322\323\343\000\240\340\245\000" "\000\000\311\000\000\000\000\000\000\000\000\000\344\000\000\000\000\000" @@ -4403,8 +4403,8 @@ static const char PP_258[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P258 (char*)PP_258 -static const char PP_259[257] = +#define P258 (char*)PP_258 +static const char PP_259[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4420,8 +4420,8 @@ static const char PP_259[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\360"; -#define P259 (char*)PP_259 -static const char PP_260[257] = +#define P259 (char*)PP_259 +static const char PP_260[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4437,8 +4437,8 @@ static const char PP_260[257] = "\370\371\000\000\374\375\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P260 (char*)PP_260 -static const char PP_261[257] = +#define P260 (char*)PP_260 +static const char PP_261[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4454,8 +4454,8 @@ static const char PP_261[257] = "\351\227\230\231\232\233\234\373\325\326\327\330\331\332\361\333\334\335" "\336\337\340\342\344\345\346\347\354\355\356\357\360\237\371\362\363\364" "\366\367\374\375"; -#define P261 (char*)PP_261 -static const char PP_262[257] = +#define P261 (char*)PP_261 +static const char PP_262[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\365\000\000\000\000" @@ -4471,8 +4471,8 @@ static const char PP_262[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P262 (char*)PP_262 -static const char PP_263[257] = +#define P262 (char*)PP_262 +static const char PP_263[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4488,8 +4488,8 @@ static const char PP_263[257] = "\306\307\312\316\304\315\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P263 (char*)PP_263 -static const char PP_264[257] = +#define P263 (char*)PP_263 +static const char PP_264[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\261\320\000\000\000\000\251\270\000\252\272\271\000\262\263\267\000" "\000\000\274\000\000\000\000\000\000\000\000\000\275\000\000\000\000\000" @@ -4505,8 +4505,8 @@ static const char PP_264[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P264 (char*)PP_264 -static const char PP_265[257] = +#define P264 (char*)PP_264 +static const char PP_265[257] = "\000\256\257\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4522,8 +4522,8 @@ static const char PP_265[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P265 (char*)PP_265 -static const char PP_266[257] = +#define P265 (char*)PP_265 +static const char PP_266[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4539,8 +4539,8 @@ static const char PP_266[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P266 (char*)PP_266 -static const char PP_267[257] = +#define P266 (char*)PP_266 +static const char PP_267[257] = "\000\250\000\000\000\000\262\000\243\000\000\000\000\000\241\000\300\301" "\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323" "\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345" @@ -4556,8 +4556,8 @@ static const char PP_267[257] = "\252\272\000\000\000\000\000\000\000\000\213\233\000\000\000\000\244\265" "\000\000\000\000\202\255\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P267 (char*)PP_267 -static const char PP_268[257] = +#define P267 (char*)PP_267 +static const char PP_268[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\226\227\000\000\000\221\222\000\000\223\224\204\000\000\000\225\000" "\000\000\205\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4573,8 +4573,8 @@ static const char PP_268[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P268 (char*)PP_268 -static const char PP_269[257] = +#define P268 (char*)PP_268 +static const char PP_269[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\271\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4590,8 +4590,8 @@ static const char PP_269[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P269 (char*)PP_269 -static const char PP_270[257] = +#define P269 (char*)PP_269 +static const char PP_270[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4607,8 +4607,8 @@ static const char PP_270[257] = "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" "\374\375\376\377"; -#define P270 (char*)PP_270 -static const char PP_271[257] = +#define P270 (char*)PP_270 +static const char PP_271[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4624,8 +4624,8 @@ static const char PP_271[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P271 (char*)PP_271 -static const char PP_272[257] = +#define P271 (char*)PP_271 +static const char PP_272[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\227\230\000\000\000\220\221\000\000\224\225\226\000\234\235\217\000" "\000\000\214\000\000\000\000\000\000\000\000\000\216\000\000\000\000\000" @@ -4641,8 +4641,8 @@ static const char PP_272[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P272 (char*)PP_272 -static const char PP_273[257] = +#define P272 (char*)PP_272 +static const char PP_273[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\215\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4658,8 +4658,8 @@ static const char PP_273[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\210\213\211\212" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P273 (char*)PP_273 -static const char PP_274[257] = +#define P273 (char*)PP_273 +static const char PP_274[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\231\000\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4675,8 +4675,8 @@ static const char PP_274[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P274 (char*)PP_274 -static const char PP_275[257] = +#define P274 (char*)PP_274 +static const char PP_275[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4692,8 +4692,8 @@ static const char PP_275[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P275 (char*)PP_275 -static const char PP_276[257] = +#define P275 (char*)PP_275 +static const char PP_276[257] = "\000\236\237\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4709,8 +4709,8 @@ static const char PP_276[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P276 (char*)PP_276 -static const char PP_277[257] = +#define P276 (char*)PP_276 +static const char PP_277[257] = "\000\250\200\201\000\000\262\000\000\212\214\000\000\000\000\217\300\301" "\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323" "\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345" @@ -4726,8 +4726,8 @@ static const char PP_277[257] = "\243\274\000\000\000\000\000\000\000\000\000\000\000\000\000\000\245\264" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P277 (char*)PP_277 -static const char PP_278[257] = +#define P277 (char*)PP_277 +static const char PP_278[257] = "\000\000\000\003\000\000\000\007\010\011\012\013\014\015\016\017\020\000" "\000\000\000\000\000\000\030\031\032\033\034\035\036\037\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4743,8 +4743,8 @@ static const char PP_278[257] = "\000\235\001\000\000\026\000\000\265\270\251\267\000\000\000\000\314\320" "\252\000\327\335\000\000\000\000\337\343\253\342\000\000\000\357\363\000" "\000\375\000\000"; -#define P278 (char*)PP_278 -static const char PP_279[257] = +#define P278 (char*)PP_278 +static const char PP_279[257] = "\000\000\241\250\000\000\000\000\000\000\000\000\000\000\000\000\247\256" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\217\334\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4760,8 +4760,8 @@ static const char PP_279[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P279 (char*)PP_279 -static const char PP_280[257] = +#define P279 (char*)PP_279 +static const char PP_280[257] = "\260\263\000\262\000\000\000\000\000\261\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\264" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4777,8 +4777,8 @@ static const char PP_280[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P280 (char*)PP_280 -static const char PP_281[257] = +#define P280 (char*)PP_280 +static const char PP_281[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4794,8 +4794,8 @@ static const char PP_281[257] = "\227\351\233\355\230\352\231\353\232\354\234\356\002\364\236\361\021\370" "\004\365\005\366\006\367\022\371\023\372\027\376\024\373\025\374\000\000" "\000\000\000\000"; -#define P281 (char*)PP_281 -static const char PP_282[257] = +#define P281 (char*)PP_281 +static const char PP_282[257] = "\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4811,8 +4811,8 @@ static const char PP_282[257] = "\000\000\000\000\132\135\000\000\000\000\000\000\146\000\000\143\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\163\000\000\000\000\000" "\172\175\000\000"; -#define P282 (char*)PP_282 -static const char PP_283[257] = +#define P282 (char*)PP_282 +static const char PP_283[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4828,8 +4828,8 @@ static const char PP_283[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P283 (char*)PP_283 -static const char PP_284[257] = +#define P283 (char*)PP_283 +static const char PP_284[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\140\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4845,8 +4845,8 @@ static const char PP_284[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P284 (char*)PP_284 -static const char PP_285[257] = +#define P284 (char*)PP_284 +static const char PP_285[257] = "\000\001\000\003\004\000\000\007\010\011\012\013\014\015\016\017\020\021" "\022\023\000\025\026\027\030\000\032\033\034\035\000\037\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -4862,8 +4862,8 @@ static const char PP_285[257] = "\000\331\332\000\000\335\000\000\340\341\342\343\000\000\000\000\350\351" "\352\000\354\355\000\000\000\000\362\363\364\365\000\000\000\371\372\000" "\000\375\000\000"; -#define P285 (char*)PP_285 -static const char PP_286[257] = +#define P285 (char*)PP_285 +static const char PP_286[257] = "\000\000\305\345\000\000\000\000\000\000\000\000\000\000\000\000\320\360" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\316\356\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4879,8 +4879,8 @@ static const char PP_286[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000"; -#define P286 (char*)PP_286 -static const char PP_287[257] = +#define P286 (char*)PP_286 +static const char PP_287[257] = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" @@ -4896,7 +4896,7 @@ static const char PP_287[257] = "\223\265\225\276\226\266\227\267\263\336\224\376\236\370\234\374\272\321" "\273\327\274\330\377\346\271\361\237\317\036\334\024\326\031\333\000\000" "\000\000\000\000"; -#define P287 (char*)PP_287 +#define P287 (char*)PP_287 static const Encoder encoder_00 = { //windows-1251 { @@ -5271,7 +5271,7 @@ static const Encoder encoder_09 = { //yandex P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P48, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P49, P00, + P00, P00, P00, P00, P00, P00, P49, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5282,7 +5282,7 @@ static const Encoder encoder_09 = { //yandex P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P50, P00, P00, P00, P51, + P00, P00, P00, P50, P00, P00, P00, P51, }, defchars[1], P00, @@ -5290,11 +5290,11 @@ static const Encoder encoder_09 = { //yandex static const Encoder encoder_12 = { //IBM855 { - P52, P00, P00, P00, P53, P00, P00, P00, + P52, P00, P00, P00, P53, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P54, P00, P00, P00, P55, P00, P00, + P00, P54, P00, P00, P00, P55, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5359,7 +5359,7 @@ static const Encoder encoder_14 = { //unknownplane P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P56, P00, P00, P00, P00, P00, P00, P00, + P56, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, }, defchars[0], @@ -5368,7 +5368,7 @@ static const Encoder encoder_14 = { //unknownplane static const Encoder encoder_15 = { //windows-1251-k { - P57, P00, P00, P00, P58, P00, P00, P00, + P57, P00, P00, P00, P58, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5407,7 +5407,7 @@ static const Encoder encoder_15 = { //windows-1251-k static const Encoder encoder_16 = { //windows-1251-t { - P57, P00, P00, P00, P59, P00, P00, P00, + P57, P00, P00, P00, P59, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5446,11 +5446,11 @@ static const Encoder encoder_16 = { //windows-1251-t static const Encoder encoder_17 = { //armscii { - P60, P00, P00, P00, P00, P61, P00, P00, + P60, P00, P00, P00, P00, P61, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P62, P00, P00, P00, P00, P00, P00, P00, + P62, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5485,11 +5485,11 @@ static const Encoder encoder_17 = { //armscii static const Encoder encoder_18 = { //geo-ita { - P63, P64, P26, P00, P00, P00, P00, P00, + P63, P64, P26, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P65, P00, P00, P00, P00, P00, P00, P00, + P65, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P66, P28, P00, P00, P00, P00, P00, P00, + P66, P28, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5524,11 +5524,11 @@ static const Encoder encoder_18 = { //geo-ita static const Encoder encoder_19 = { //geo-ps { - P67, P64, P26, P00, P00, P00, P00, P00, + P67, P64, P26, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P68, P00, P00, P00, P00, P00, P00, P00, + P68, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P66, P28, P00, P00, P00, P00, P00, P00, + P66, P28, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5563,7 +5563,7 @@ static const Encoder encoder_19 = { //geo-ps static const Encoder encoder_20 = { //iso-8859-3 { - P69, P70, P71, P00, P00, P00, P00, P00, + P69, P70, P71, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5602,7 +5602,7 @@ static const Encoder encoder_20 = { //iso-8859-3 static const Encoder encoder_21 = { //iso-8859-4 { - P72, P73, P74, P00, P00, P00, P00, P00, + P72, P73, P74, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5641,11 +5641,11 @@ static const Encoder encoder_21 = { //iso-8859-4 static const Encoder encoder_22 = { //iso-8859-6 { - P75, P00, P00, P00, P00, P00, P76, P00, + P75, P00, P00, P00, P00, P00, P76, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P77, P00, P00, + P00, P00, P00, P00, P00, P77, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5680,11 +5680,11 @@ static const Encoder encoder_22 = { //iso-8859-6 static const Encoder encoder_23 = { //iso-8859-7 { - P78, P00, P00, P79, P00, P00, P00, P00, + P78, P00, P00, P79, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P80, P00, P00, P00, P00, P00, P00, P00, + P80, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5719,11 +5719,11 @@ static const Encoder encoder_23 = { //iso-8859-7 static const Encoder encoder_24 = { //iso-8859-8 { - P81, P00, P00, P00, P00, P82, P00, P00, + P81, P00, P00, P00, P00, P82, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P83, P00, P00, P00, P00, P00, P00, P00, + P83, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5758,7 +5758,7 @@ static const Encoder encoder_24 = { //iso-8859-8 static const Encoder encoder_25 = { //iso-8859-9 { - P84, P85, P00, P00, P00, P00, P00, P00, + P84, P85, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5797,11 +5797,11 @@ static const Encoder encoder_25 = { //iso-8859-9 static const Encoder encoder_26 = { //iso-8859-13 { - P86, P87, P00, P00, P00, P00, P00, P00, + P86, P87, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P88, P00, P00, P00, P00, P00, P00, P00, + P88, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5836,11 +5836,11 @@ static const Encoder encoder_26 = { //iso-8859-13 static const Encoder encoder_27 = { //iso-8859-15 { - P89, P90, P00, P00, P00, P00, P00, P00, + P89, P90, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P91, P00, P00, P00, P00, P00, P00, P00, + P91, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5875,11 +5875,11 @@ static const Encoder encoder_27 = { //iso-8859-15 static const Encoder encoder_28 = { //iso-8859-16 { - P92, P93, P94, P00, P00, P00, P00, P00, + P92, P93, P94, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P95, P00, P00, P00, P00, P00, P00, P00, + P95, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5914,11 +5914,11 @@ static const Encoder encoder_28 = { //iso-8859-16 static const Encoder encoder_29 = { //windows-1253 { - P96, P97, P00, P98, P00, P00, P00, P00, + P96, P97, P00, P98, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P99, P28, P00, P00, P00, P00, P00, P00, + P99, P28, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5953,7 +5953,7 @@ static const Encoder encoder_29 = { //windows-1253 static const Encoder encoder_30 = { //windows-1254 { - P100, P101, P26, P00, P00, P00, P00, P00, + P100, P101, P26, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -5992,11 +5992,11 @@ static const Encoder encoder_30 = { //windows-1254 static const Encoder encoder_31 = { //windows-1255 { - P102, P97, P26, P00, P00, P103, P00, P00, + P102, P97, P26, P00, P00, P103, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P104, P28, P00, P00, P00, P00, P00, P00, + P104, P28, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6031,11 +6031,11 @@ static const Encoder encoder_31 = { //windows-1255 static const Encoder encoder_32 = { //windows-1256 { - P105, P106, P107, P00, P00, P00, P108, P00, + P105, P106, P107, P00, P00, P00, P108, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P109, P28, P00, P00, P00, P00, P00, P00, + P109, P28, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6070,7 +6070,7 @@ static const Encoder encoder_32 = { //windows-1256 static const Encoder encoder_33 = { //windows-1257 { - P110, P87, P111, P00, P00, P00, P00, P00, + P110, P87, P111, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6109,11 +6109,11 @@ static const Encoder encoder_33 = { //windows-1257 static const Encoder encoder_34 = { //CP1046 { - P112, P00, P00, P00, P00, P00, P113, P00, + P112, P00, P00, P00, P00, P00, P113, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P114, P00, P00, + P00, P00, P00, P00, P00, P114, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6140,7 +6140,7 @@ static const Encoder encoder_34 = { //CP1046 P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P115, P00, P00, P00, P00, P00, P116, P00, + P115, P00, P00, P00, P00, P00, P116, P00, }, defchars[0], P00, @@ -6148,7 +6148,7 @@ static const Encoder encoder_34 = { //CP1046 static const Encoder encoder_35 = { //CP1124 { - P21, P00, P00, P00, P117, P00, P00, P00, + P21, P00, P00, P00, P117, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6187,11 +6187,11 @@ static const Encoder encoder_35 = { //CP1124 static const Encoder encoder_36 = { //CP1125 { - P118, P00, P00, P00, P119, P00, P00, P00, + P118, P00, P00, P00, P119, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P12, P120, P00, P00, P14, P00, P00, + P00, P12, P120, P00, P00, P14, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6226,11 +6226,11 @@ static const Encoder encoder_36 = { //CP1125 static const Encoder encoder_37 = { //CP1129 { - P121, P122, P00, P123, P00, P00, P00, P00, + P121, P122, P00, P123, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P124, P00, P00, P00, P00, P00, P00, P00, + P124, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6265,11 +6265,11 @@ static const Encoder encoder_37 = { //CP1129 static const Encoder encoder_38 = { //CP1131 { - P125, P00, P00, P00, P126, P00, P00, P00, + P125, P00, P00, P00, P126, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P127, P00, P00, P128, P00, P00, + P00, P00, P127, P00, P00, P128, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6304,11 +6304,11 @@ static const Encoder encoder_38 = { //CP1131 static const Encoder encoder_39 = { //CP1133 { - P129, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P130, P00, + P129, P00, P00, P00, P00, P00, P00, P00, + P00, P00, P00, P00, P00, P00, P130, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P131, P00, P00, P00, P00, P00, P00, P00, + P131, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6343,11 +6343,11 @@ static const Encoder encoder_39 = { //CP1133 static const Encoder encoder_40 = { //CP1161 { - P132, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P133, P00, + P132, P00, P00, P00, P00, P00, P00, P00, + P00, P00, P00, P00, P00, P00, P133, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P134, P00, P00, P00, P00, P00, P00, P00, + P134, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6382,11 +6382,11 @@ static const Encoder encoder_40 = { //CP1161 static const Encoder encoder_41 = { //CP1162 { - P135, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P136, P00, + P135, P00, P00, P00, P00, P00, P00, P00, + P00, P00, P00, P00, P00, P00, P136, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P137, P00, P00, P00, P00, P00, P00, P00, + P137, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6421,11 +6421,11 @@ static const Encoder encoder_41 = { //CP1162 static const Encoder encoder_42 = { //CP1163 { - P138, P122, P00, P123, P00, P00, P00, P00, + P138, P122, P00, P123, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P139, P00, P00, P00, P00, P00, P00, P00, + P139, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6460,11 +6460,11 @@ static const Encoder encoder_42 = { //CP1163 static const Encoder encoder_43 = { //CP1258 { - P140, P141, P26, P123, P00, P00, P00, P00, + P140, P141, P26, P123, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P142, P28, P00, P00, P00, P00, P00, P00, + P142, P28, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6499,11 +6499,11 @@ static const Encoder encoder_43 = { //CP1258 static const Encoder encoder_44 = { //CP437 { - P143, P144, P00, P145, P00, P00, P00, P00, + P143, P144, P00, P145, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P146, P00, P147, P148, P00, P14, P00, P00, + P146, P00, P147, P148, P00, P14, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6538,11 +6538,11 @@ static const Encoder encoder_44 = { //CP437 static const Encoder encoder_45 = { //CP737 { - P149, P00, P00, P150, P00, P00, P00, P00, + P149, P00, P00, P150, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P151, P00, P152, P00, P00, P14, P00, P00, + P151, P00, P152, P00, P00, P14, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6577,11 +6577,11 @@ static const Encoder encoder_45 = { //CP737 static const Encoder encoder_46 = { //CP775 { - P153, P154, P00, P00, P00, P00, P00, P00, + P153, P154, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P155, P00, P156, P00, P00, P157, P00, P00, + P155, P00, P156, P00, P00, P157, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6616,11 +6616,11 @@ static const Encoder encoder_46 = { //CP775 static const Encoder encoder_47 = { //CP850 { - P158, P159, P00, P00, P00, P00, P00, P00, + P158, P159, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P160, P00, P00, P00, P00, P55, P00, P00, + P160, P00, P00, P00, P00, P55, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6655,11 +6655,11 @@ static const Encoder encoder_47 = { //CP850 static const Encoder encoder_48 = { //CP852 { - P161, P162, P163, P00, P00, P00, P00, P00, + P161, P162, P163, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P55, P00, P00, + P00, P00, P00, P00, P00, P55, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6694,11 +6694,11 @@ static const Encoder encoder_48 = { //CP852 static const Encoder encoder_49 = { //CP853 { - P164, P165, P166, P00, P00, P00, P00, P00, + P164, P165, P166, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P167, P00, P00, P00, P55, P00, P00, + P00, P167, P00, P00, P00, P55, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6733,11 +6733,11 @@ static const Encoder encoder_49 = { //CP853 static const Encoder encoder_50 = { //CP856 { - P168, P00, P00, P00, P00, P169, P00, P00, + P168, P00, P00, P00, P00, P169, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P160, P00, P00, P00, P00, P55, P00, P00, + P160, P00, P00, P00, P00, P55, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6772,11 +6772,11 @@ static const Encoder encoder_50 = { //CP856 static const Encoder encoder_51 = { //CP857 { - P170, P171, P00, P00, P00, P00, P00, P00, + P170, P171, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P55, P00, P00, + P00, P00, P00, P00, P00, P55, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6811,11 +6811,11 @@ static const Encoder encoder_51 = { //CP857 static const Encoder encoder_52 = { //CP858 { - P158, P144, P00, P00, P00, P00, P00, P00, + P158, P144, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P172, P00, P00, P00, P00, P55, P00, P00, + P172, P00, P00, P00, P00, P55, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6850,11 +6850,11 @@ static const Encoder encoder_52 = { //CP858 static const Encoder encoder_53 = { //CP860 { - P173, P00, P00, P145, P00, P00, P00, P00, + P173, P00, P00, P145, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P146, P00, P147, P174, P00, P14, P00, P00, + P146, P00, P147, P174, P00, P14, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6889,11 +6889,11 @@ static const Encoder encoder_53 = { //CP860 static const Encoder encoder_54 = { //CP861 { - P175, P144, P00, P145, P00, P00, P00, P00, + P175, P144, P00, P145, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P146, P00, P147, P148, P00, P14, P00, P00, + P146, P00, P147, P148, P00, P14, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6928,11 +6928,11 @@ static const Encoder encoder_54 = { //CP861 static const Encoder encoder_55 = { //CP862 { - P176, P144, P00, P145, P00, P169, P00, P00, + P176, P144, P00, P145, P00, P169, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P146, P00, P147, P148, P00, P14, P00, P00, + P146, P00, P147, P148, P00, P14, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -6967,11 +6967,11 @@ static const Encoder encoder_55 = { //CP862 static const Encoder encoder_56 = { //CP863 { - P177, P144, P00, P145, P00, P00, P00, P00, + P177, P144, P00, P145, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P178, P00, P147, P148, P00, P14, P00, P00, + P178, P00, P147, P148, P00, P14, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7006,11 +7006,11 @@ static const Encoder encoder_56 = { //CP863 static const Encoder encoder_57 = { //CP864 { - P179, P00, P00, P180, P00, P00, P181, P00, + P179, P00, P00, P180, P00, P00, P181, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P182, P00, P00, P183, P00, P00, + P00, P00, P182, P00, P00, P183, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7037,7 +7037,7 @@ static const Encoder encoder_57 = { //CP864 P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P184, P00, + P00, P00, P00, P00, P00, P00, P184, P00, }, defchars[0], P00, @@ -7045,11 +7045,11 @@ static const Encoder encoder_57 = { //CP864 static const Encoder encoder_58 = { //CP865 { - P185, P144, P00, P145, P00, P00, P00, P00, + P185, P144, P00, P145, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P146, P00, P147, P148, P00, P14, P00, P00, + P146, P00, P147, P148, P00, P14, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7084,11 +7084,11 @@ static const Encoder encoder_58 = { //CP865 static const Encoder encoder_59 = { //CP869 { - P186, P00, P00, P187, P00, P00, P00, P00, + P186, P00, P00, P187, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P188, P00, P00, P00, P00, P55, P00, P00, + P188, P00, P00, P00, P00, P55, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7123,11 +7123,11 @@ static const Encoder encoder_59 = { //CP869 static const Encoder encoder_60 = { //CP874 { - P189, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P136, P00, + P189, P00, P00, P00, P00, P00, P00, P00, + P00, P00, P00, P00, P00, P00, P136, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P137, P00, P00, P00, P00, P00, P00, P00, + P137, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7162,11 +7162,11 @@ static const Encoder encoder_60 = { //CP874 static const Encoder encoder_61 = { //CP922 { - P190, P191, P00, P00, P00, P00, P00, P00, + P190, P191, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P192, P00, P00, P00, P00, P00, P00, P00, + P192, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7201,11 +7201,11 @@ static const Encoder encoder_61 = { //CP922 static const Encoder encoder_62 = { //HP_ROMAN8 { - P193, P194, P195, P00, P00, P00, P00, P00, + P193, P194, P195, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P196, P00, P00, P00, P00, P197, P00, P00, + P196, P00, P00, P00, P00, P197, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7240,11 +7240,11 @@ static const Encoder encoder_62 = { //HP_ROMAN8 static const Encoder encoder_63 = { //ISO646_CN { - P198, P00, P00, P00, P00, P00, P00, P00, + P198, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P199, P00, P00, P00, P00, P00, P00, P00, + P199, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7279,11 +7279,11 @@ static const Encoder encoder_63 = { //ISO646_CN static const Encoder encoder_64 = { //ISO646_JP { - P200, P00, P00, P00, P00, P00, P00, P00, + P200, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P199, P00, P00, P00, P00, P00, P00, P00, + P199, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7318,11 +7318,11 @@ static const Encoder encoder_64 = { //ISO646_JP static const Encoder encoder_65 = { //ISO8859_10 { - P201, P202, P00, P00, P00, P00, P00, P00, + P201, P202, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P203, P00, P00, P00, P00, P00, P00, P00, + P203, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7357,8 +7357,8 @@ static const Encoder encoder_65 = { //ISO8859_10 static const Encoder encoder_66 = { //ISO8859_11 { - P204, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P136, P00, + P204, P00, P00, P00, P00, P00, P00, P00, + P00, P00, P00, P00, P00, P00, P136, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7396,10 +7396,10 @@ static const Encoder encoder_66 = { //ISO8859_11 static const Encoder encoder_67 = { //ISO8859_14 { - P205, P206, P00, P00, P00, P00, P00, P00, + P205, P206, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P207, P00, + P00, P00, P00, P00, P00, P00, P207, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7435,11 +7435,11 @@ static const Encoder encoder_67 = { //ISO8859_14 static const Encoder encoder_68 = { //JISX0201 { - P200, P00, P00, P00, P00, P00, P00, P00, + P200, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P199, P00, P00, P00, P00, P00, P00, P00, + P199, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7466,7 +7466,7 @@ static const Encoder encoder_68 = { //JISX0201 P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P00, P208, + P00, P00, P00, P00, P00, P00, P00, P208, }, defchars[0], P00, @@ -7474,11 +7474,11 @@ static const Encoder encoder_68 = { //JISX0201 static const Encoder encoder_69 = { //KOI8_T { - P209, P00, P00, P00, P210, P00, P00, P00, + P209, P00, P00, P00, P210, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P66, P04, P00, P00, P00, P00, P00, P00, + P66, P04, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7513,11 +7513,11 @@ static const Encoder encoder_69 = { //KOI8_T static const Encoder encoder_70 = { //MAC_ARABIC { - P211, P00, P00, P00, P00, P00, P212, P00, + P211, P00, P00, P00, P00, P00, P212, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P213, P00, P00, P00, P00, P00, P00, P214, + P213, P00, P00, P00, P00, P00, P00, P214, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7552,11 +7552,11 @@ static const Encoder encoder_70 = { //MAC_ARABIC static const Encoder encoder_71 = { //MAC_CENTRALEUROPE { - P215, P216, P217, P00, P00, P00, P00, P00, + P215, P216, P217, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P218, P219, P220, P00, P00, P221, P00, P00, + P218, P219, P220, P00, P00, P221, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7591,11 +7591,11 @@ static const Encoder encoder_71 = { //MAC_CENTRALEUROPE static const Encoder encoder_72 = { //MAC_CROATIAN { - P222, P223, P224, P225, P00, P00, P00, P00, + P222, P223, P224, P225, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P226, P219, P227, P00, P00, P221, P00, P00, + P226, P219, P227, P00, P00, P221, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7622,7 +7622,7 @@ static const Encoder encoder_72 = { //MAC_CROATIAN P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P228, P00, P00, P00, P00, P00, P00, P00, + P228, P00, P00, P00, P00, P00, P00, P00, }, defchars[0], P00, @@ -7630,11 +7630,11 @@ static const Encoder encoder_72 = { //MAC_CROATIAN static const Encoder encoder_73 = { //MAC_GREEK { - P229, P230, P00, P231, P00, P00, P00, P00, + P229, P230, P00, P231, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P232, P233, P234, P00, P00, P00, P00, P00, + P232, P233, P234, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7669,11 +7669,11 @@ static const Encoder encoder_73 = { //MAC_GREEK static const Encoder encoder_74 = { //MAC_HEBREW { - P235, P00, P00, P00, P00, P236, P00, P00, + P235, P00, P00, P00, P00, P236, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P237, P00, P00, P00, P00, P00, P00, P00, + P237, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7700,7 +7700,7 @@ static const Encoder encoder_74 = { //MAC_HEBREW P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P238, P00, P00, P239, P00, P00, P00, P00, + P238, P00, P00, P239, P00, P00, P00, P00, }, defchars[0], P00, @@ -7708,11 +7708,11 @@ static const Encoder encoder_74 = { //MAC_HEBREW static const Encoder encoder_75 = { //MAC_ICELAND { - P240, P241, P242, P243, P00, P00, P00, P00, + P240, P241, P242, P243, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P244, P219, P245, P00, P00, P221, P00, P00, + P244, P219, P245, P00, P00, P221, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7739,7 +7739,7 @@ static const Encoder encoder_75 = { //MAC_ICELAND P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P246, P00, P00, P00, P00, P00, P00, P00, + P246, P00, P00, P00, P00, P00, P00, P00, }, defchars[0], P00, @@ -7747,11 +7747,11 @@ static const Encoder encoder_75 = { //MAC_ICELAND static const Encoder encoder_76 = { //MAC_ROMANIA { - P247, P248, P249, P243, P00, P00, P00, P00, + P247, P248, P249, P243, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P250, P219, P245, P00, P00, P221, P00, P00, + P250, P219, P245, P00, P00, P221, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7778,7 +7778,7 @@ static const Encoder encoder_76 = { //MAC_ROMANIA P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P246, P00, P00, P00, P00, P00, P00, P00, + P246, P00, P00, P00, P00, P00, P00, P00, }, defchars[0], P00, @@ -7786,11 +7786,11 @@ static const Encoder encoder_76 = { //MAC_ROMANIA static const Encoder encoder_77 = { //MAC_ROMAN { - P251, P241, P242, P243, P00, P00, P00, P00, + P251, P241, P242, P243, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P250, P219, P245, P00, P00, P221, P00, P00, + P250, P219, P245, P00, P00, P221, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7817,7 +7817,7 @@ static const Encoder encoder_77 = { //MAC_ROMAN P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P246, P00, P00, P252, P00, P00, P00, P00, + P246, P00, P00, P252, P00, P00, P00, P00, }, defchars[0], P00, @@ -7825,11 +7825,11 @@ static const Encoder encoder_77 = { //MAC_ROMAN static const Encoder encoder_78 = { //MAC_THAI { - P253, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P254, P00, + P253, P00, P00, P00, P00, P00, P00, P00, + P00, P00, P00, P00, P00, P00, P254, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P255, P256, P00, P00, P00, P00, P00, P00, + P255, P256, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7864,11 +7864,11 @@ static const Encoder encoder_78 = { //MAC_THAI static const Encoder encoder_79 = { //MAC_TURKISH { - P251, P257, P242, P243, P00, P00, P00, P00, + P251, P257, P242, P243, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P258, P219, P245, P00, P00, P221, P00, P00, + P258, P219, P245, P00, P00, P221, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7895,7 +7895,7 @@ static const Encoder encoder_79 = { //MAC_TURKISH P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P259, P00, P00, P00, P00, P00, P00, P00, + P259, P00, P00, P00, P00, P00, P00, P00, }, defchars[0], P00, @@ -7942,8 +7942,8 @@ static const Encoder encoder_80 = { //reserved2 static const Encoder encoder_81 = { //MULELAO { - P204, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P260, P00, + P204, P00, P00, P00, P00, P00, P00, P00, + P00, P00, P00, P00, P00, P00, P260, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -7981,11 +7981,11 @@ static const Encoder encoder_81 = { //MULELAO static const Encoder encoder_82 = { //NEXTSTEP { - P261, P262, P263, P00, P00, P00, P00, P00, + P261, P262, P263, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P264, P00, P00, P00, P00, P00, P00, P00, + P264, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -8012,7 +8012,7 @@ static const Encoder encoder_82 = { //NEXTSTEP P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P265, P00, P00, P00, P00, + P00, P00, P00, P265, P00, P00, P00, P00, }, defchars[0], P00, @@ -8020,11 +8020,11 @@ static const Encoder encoder_82 = { //NEXTSTEP static const Encoder encoder_83 = { //PT154 { - P266, P00, P00, P00, P267, P00, P00, P00, + P266, P00, P00, P00, P267, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P268, P269, P00, P00, P00, P00, P00, P00, + P268, P269, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -8059,11 +8059,11 @@ static const Encoder encoder_83 = { //PT154 static const Encoder encoder_84 = { //RISCOS-LATIN1 { - P270, P271, P00, P00, P00, P00, P00, P00, + P270, P271, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P272, P273, P274, P00, P00, P275, P00, P00, + P272, P273, P274, P00, P00, P275, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -8090,7 +8090,7 @@ static const Encoder encoder_84 = { //RISCOS-LATIN1 P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P276, P00, P00, P00, P00, + P00, P00, P00, P276, P00, P00, P00, P00, }, defchars[0], P00, @@ -8098,7 +8098,7 @@ static const Encoder encoder_84 = { //RISCOS-LATIN1 static const Encoder encoder_85 = { //RK1048 { - P01, P00, P00, P00, P277, P00, P00, P00, + P01, P00, P00, P00, P277, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -8137,10 +8137,10 @@ static const Encoder encoder_85 = { //RK1048 static const Encoder encoder_86 = { //TCVN { - P278, P279, P00, P280, P00, P00, P00, P00, + P278, P279, P00, P280, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P281, P00, + P00, P00, P00, P00, P00, P00, P281, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -8176,11 +8176,11 @@ static const Encoder encoder_86 = { //TCVN static const Encoder encoder_87 = { //TDS565 { - P282, P283, P00, P00, P00, P00, P00, P00, + P282, P283, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P284, P00, P00, P00, P00, P00, P00, + P00, P284, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -8216,7 +8216,7 @@ static const Encoder encoder_87 = { //TDS565 static const Encoder encoder_88 = { //TIS620 { P29, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P136, P00, + P00, P00, P00, P00, P00, P00, P136, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -8254,10 +8254,10 @@ static const Encoder encoder_88 = { //TIS620 static const Encoder encoder_89 = { //VISCII { - P285, P286, P00, P00, P00, P00, P00, P00, + P285, P286, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, - P00, P00, P00, P00, P00, P00, P287, P00, + P00, P00, P00, P00, P00, P00, P287, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, P00, @@ -8291,7 +8291,7 @@ static const Encoder encoder_89 = { //VISCII P00, }; -const Encoder* const NCodepagePrivate::TCodePageData::EncodeTo[] = { +const Encoder* const NCodepagePrivate::TCodePageData::EncodeTo[] = { &encoder_00, &encoder_01, &encoder_02, @@ -8420,7 +8420,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\246\303\047\343\042\056\052\052\044\052\246\042\246\312\246\246" "\266\047\047\042\042\052\055\055\260\260\266\042\266\352\266\266\240\254" "\274\246\044\216\260\247\250\260\256\042\075\217\260\257\260\075\255\275" - "\236\266\052\055\270\267\276\042\266\246\266\277\300\301\302\303\304\305" + "\236\266\052\055\270\267\276\042\266\246\266\277\300\301\302\303\304\305" "\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327" "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" @@ -8464,7 +8464,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317" "\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\052\260" - "\216\044\247\052\052\255\260\260\260\246\266\075\303\343\075\075\075\075" + "\216\044\247\052\052\255\260\260\260\246\266\075\303\343\075\075\075\075" "\275\266\236\246\256\276\257\277\246\266\246\266\266\246\075\075\266\075" "\075\042\042\056\240\246\266\312\352\266\055\055\042\042\047\047\075\042" "\254\274\246\266\267\250\270\377\340\341\342\343\344\345\346\347\350\351" @@ -8495,7 +8495,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\044\260\047\266\042\056\052\052\266\052\123\042\246\260\132\260" "\260\047\047\042\042\052\055\055\140\260\163\042\266\260\172\131\240\052" "\044\044\044\044\260\247\140\260\141\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" + "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" "\246\103\105\105\105\105\111\111\111\111\246\116\117\242\117\117\202\075" "\246\125\125\125\203\131\246\220\210\141\211\141\221\141\266\212\213\214" "\215\230\151\151\231\232\266\156\157\262\233\157\222\075\266\234\165\235" @@ -8525,7 +8525,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\044\260\047\260\042\056\052\052\260\052\123\042\243\124\132\245" "\260\047\047\042\042\052\055\055\260\260\163\042\263\164\172\265\240\055" "\140\207\044\204\260\247\140\260\123\042\075\217\260\244\260\075\140\227" - "\140\266\052\055\140\224\163\042\114\140\154\264\122\101\101\101\201\114" + "\140\266\052\055\140\224\163\042\114\140\154\264\122\101\101\101\201\114" "\205\103\103\105\206\105\105\111\111\104\246\241\116\242\117\117\202\075" "\122\125\125\125\203\131\124\220\162\141\211\141\221\154\225\212\143\214" "\226\230\145\151\231\144\266\261\156\262\233\157\222\075\162\165\165\165" @@ -8603,7 +8603,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\246\246\047\266\042\056\052\052\044\052\246\042\246\246\246\246" "\266\047\047\042\042\052\055\055\032\260\266\042\266\266\266\266\240\254" "\274\246\044\246\260\247\250\260\256\042\075\217\260\257\260\075\255\275" - "\266\266\052\055\270\267\276\042\266\246\266\277\300\301\302\303\304\305" + "\266\266\052\055\270\267\276\042\266\246\266\277\300\301\302\303\304\305" "\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327" "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" @@ -8618,7 +8618,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\246\303\047\343\042\056\052\052\044\052\246\042\246\246\246\246" "\266\047\047\042\042\052\055\055\032\260\266\042\266\266\266\266\240\254" "\274\246\044\216\260\247\250\260\256\042\075\217\260\257\260\075\255\275" - "\236\266\052\055\270\267\276\042\266\246\266\277\300\301\302\303\304\305" + "\236\266\052\055\270\267\276\042\266\246\266\277\300\301\302\303\304\305" "\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327" "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" @@ -8648,9 +8648,9 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\047\266\042\056\052\052\266\052\123\042\246\032\032\032" "\032\047\047\042\042\052\055\055\140\260\163\042\266\032\032\131\240\052" "\044\044\044\044\260\247\140\260\141\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\157\042\061\061\063\052\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\212\213\214" + "\140\266\052\055\140\061\157\042\061\061\063\052\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\212\213\214" "\215\230\151\151\231\232\266\156\157\262\233\157\222\075\266\234\165\235" "\223\171\266\171"},}, {{"\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021" @@ -8663,9 +8663,9 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\047\266\042\056\052\052\266\052\123\042\246\032\032\032" "\032\047\047\042\042\052\055\055\140\260\163\042\266\032\032\131\240\052" "\044\044\044\044\260\247\140\260\141\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\157\042\061\061\063\052\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\266\212\213\214" + "\140\266\052\055\140\061\157\042\061\061\063\052\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\266\212\213\214" "\215\230\151\151\231\232\266\156\157\262\233\157\222\075\266\234\165\235" "\223\171\266\171"},}, {{"\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021" @@ -8705,14 +8705,14 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\260\260\214\211\260\210\260\212\215\230\213\232\231\260\260\260" - "\260\260\260\233\260\260\235\234\260\260\032\032\032\032\032\032\240\260" - "\260\260\044\260\260\260\260\260\260\260\056\260\042\042\260\260\260\260" - "\260\260\260\260\260\260\260\056\260\260\260\056\260\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\260\260\260\260\260\055\237\237\237\237\237\237\237\237\237" - "\237\200\200\200\200\200\200\200\200\260\260\260\260\260\260\260\260\260" - "\266\044\260\240"},}, + "\176\177\260\260\214\211\260\210\260\212\215\230\213\232\231\260\260\260" + "\260\260\260\233\260\260\235\234\260\260\032\032\032\032\032\032\240\260" + "\260\260\044\260\260\260\260\260\260\260\056\260\042\042\260\260\260\260" + "\260\260\260\260\260\260\260\056\260\260\260\056\260\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\260\260\260\260\260\055\237\237\237\237\237\237\237\237\237" + "\237\200\200\200\200\200\200\200\200\260\260\260\260\260\260\260\260\260" + "\266\044\260\240"},}, {{"\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -8738,10 +8738,10 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\260" "\044\044\044\044\260\247\140\260\075\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\075\042\061\061\063\260\260\260\260\260\260\260" + "\140\266\052\055\140\061\075\042\061\061\063\260\260\260\260\260\260\260" "\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260" - "\260\260\260\260\260\260\260\052\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\260" + "\260\260\260\260\260\260\260\052\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\260" "\260\032\032\260"},}, {{"\000\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\040\041\042\043" @@ -8753,7 +8753,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\052" "\044\044\044\044\260\247\140\260\141\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" + "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" "\246\103\105\105\105\105\111\111\111\111\107\116\117\242\117\117\202\075" "\246\125\125\125\203\111\123\220\210\141\211\141\221\141\266\212\213\214" "\215\230\151\151\231\232\147\156\157\262\233\157\222\075\266\234\165\235" @@ -8768,7 +8768,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\042" "\044\044\044\042\260\247\246\260\122\042\075\217\260\246\260\075\062\063" - "\042\266\052\055\266\061\162\042\061\061\063\266\204\111\101\205\201\101" + "\042\266\052\055\266\061\162\042\061\061\063\266\204\111\101\205\201\101" "\206\105\103\105\245\105\107\113\111\114\123\241\116\242\117\117\202\075" "\125\207\243\125\203\244\132\220\224\151\141\225\221\141\226\145\143\214" "\265\145\147\153\151\154\163\261\156\262\157\157\222\075\165\227\263\165" @@ -8783,7 +8783,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\052" "\044\044\044\044\123\247\163\260\141\042\075\217\260\140\260\075\062\063" - "\132\266\052\055\172\061\157\042\246\266\131\052\101\101\101\101\201\101" + "\132\266\052\055\172\061\157\042\246\266\131\052\101\101\101\101\201\101" "\246\103\105\105\105\105\111\111\111\111\246\116\117\242\117\117\202\075" "\246\125\125\125\203\131\246\220\210\141\211\141\221\141\266\212\213\214" "\215\230\151\151\231\232\266\156\157\262\233\157\222\075\266\234\165\235" @@ -8798,7 +8798,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\204" "\224\207\044\042\123\247\163\260\123\042\245\217\265\244\260\075\103\227" - "\132\042\052\055\172\143\163\042\246\266\131\264\101\101\101\101\201\205" + "\132\042\052\055\172\143\163\042\246\266\131\264\101\101\101\101\201\205" "\246\103\105\105\105\105\111\111\111\111\246\241\117\242\117\117\202\243" "\125\125\125\125\203\206\124\220\210\141\211\141\221\225\266\212\213\214" "\215\230\151\151\231\232\266\261\157\262\233\157\222\263\165\234\165\235" @@ -8813,7 +8813,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\044\260\047\266\042\056\052\052\260\052\260\042\260\260\260\260" "\260\047\047\042\042\052\055\055\260\260\260\042\260\260\260\260\240\140" "\246\044\044\044\260\247\140\260\260\042\075\217\260\055\260\075\062\063" - "\140\266\052\055\246\246\246\042\246\061\246\246\266\246\246\246\246\246" + "\140\266\052\055\246\246\246\042\246\061\246\246\266\246\246\246\246\246" "\246\246\246\246\246\246\246\246\246\246\246\246\260\246\246\246\246\246" "\246\246\246\246\266\266\266\266\266\266\266\266\266\266\266\266\266\266" "\266\266\266\266\266\266\266\266\266\266\266\266\266\266\266\266\266\266" @@ -8828,7 +8828,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\044\260\047\266\042\056\052\052\266\052\123\042\246\260\260\260" "\260\047\047\042\042\052\055\055\140\260\163\042\266\260\260\131\240\052" "\044\044\044\044\260\247\140\260\141\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" + "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" "\246\103\105\105\105\105\111\111\111\111\107\116\117\242\117\117\202\075" "\246\125\125\125\203\111\123\220\210\141\211\141\221\141\266\212\213\214" "\215\230\151\151\231\232\147\156\157\262\233\157\222\075\266\234\165\235" @@ -8843,10 +8843,10 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\044\260\047\266\042\056\052\052\266\052\260\042\260\260\260\260" "\260\047\047\042\042\052\055\055\140\260\260\042\260\260\260\260\240\052" "\044\044\044\044\260\247\140\260\075\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\075\042\061\061\063\052\200\200\200\200\200\200" - "\200\200\200\200\260\200\200\200\055\200\052\200\200\052\237\237\237\052" - "\052\260\260\260\260\260\260\260\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\260" + "\140\266\052\055\140\061\075\042\061\061\063\052\200\200\200\200\200\200" + "\200\200\200\200\260\200\200\200\055\200\052\200\200\052\237\237\237\052" + "\052\260\260\260\260\260\260\260\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\260" "\260\032\032\260"},}, {{"\000\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\040\041\042\043" @@ -8855,14 +8855,14 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\044\237\047\266\042\056\052\052\266\052\237\042\246\237\237\237" - "\237\047\047\042\042\052\055\055\237\260\237\042\266\032\032\237\240\056" - "\044\044\044\044\260\247\140\260\237\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\056\042\061\061\063\056\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\075" - "\237\237\237\237\055\237\237\237\210\237\211\237\237\237\237\212\213\214" - "\215\230\237\237\231\232\200\200\200\200\233\200\200\075\200\234\200\235" - "\223\032\032\237"},}, + "\176\177\044\237\047\266\042\056\052\052\266\052\237\042\246\237\237\237" + "\237\047\047\042\042\052\055\055\237\260\237\042\266\032\032\237\240\056" + "\044\044\044\044\260\247\140\260\237\042\075\217\260\140\260\075\062\063" + "\140\266\052\055\140\061\056\042\061\061\063\056\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\075" + "\237\237\237\237\055\237\237\237\210\237\211\237\237\237\237\212\213\214" + "\215\230\237\237\231\232\200\200\200\200\233\200\200\075\200\234\200\235" + "\223\032\032\237"},}, {{"\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -8873,7 +8873,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\044\260\047\260\042\056\052\052\260\052\260\042\260\140\055\140" "\260\047\047\042\042\052\055\055\260\260\260\042\260\140\140\260\240\260" "\044\044\044\260\260\247\246\260\122\042\075\217\260\246\260\075\062\063" - "\140\266\052\055\266\061\162\042\061\061\063\266\204\111\101\205\201\101" + "\140\266\052\055\266\061\162\042\061\061\063\266\204\111\101\205\201\101" "\206\105\103\105\245\105\107\113\111\114\123\241\116\242\117\117\202\075" "\125\207\243\125\203\244\132\220\224\151\141\225\221\141\226\145\143\214" "\265\145\147\153\151\154\163\261\156\262\157\157\222\075\165\227\263\165" @@ -8885,14 +8885,14 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\237\075\075\077\077\077\077\237\032\260\260\260\260\260\260\260" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\240\077" - "\077\077\044\077\237\237\237\237\237\237\056\217\237\237\071\071\071\071" - "\071\071\071\071\071\071\237\056\237\237\237\056\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\055\237\237\237\237\237\237\237\237\237" - "\237\200\200\200\200\200\200\200\200\237\237\237\077\237\237\237\237\237" - "\237\237\237\260"},}, + "\176\177\237\075\075\077\077\077\077\237\032\260\260\260\260\260\260\260" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\240\077" + "\077\077\044\077\237\237\237\237\237\237\056\217\237\237\071\071\071\071" + "\071\071\071\071\071\071\237\056\237\237\237\056\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\055\237\237\237\237\237\237\237\237\237" + "\237\200\200\200\200\200\200\200\200\237\237\237\077\237\237\237\237\237" + "\237\237\237\260"},}, {{"\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -8933,7 +8933,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\052" "\044\044\044\044\260\247\266\260\141\042\075\217\260\140\260\075\062\063" - "\131\266\052\055\246\061\157\042\061\061\063\052\101\101\101\101\201\101" + "\131\266\052\055\246\061\157\042\061\061\063\052\101\101\101\101\201\101" "\246\103\105\105\105\105\200\111\111\111\246\116\200\242\117\117\202\075" "\246\125\125\125\203\125\200\220\210\141\211\141\221\141\266\212\213\214" "\215\230\200\151\231\232\266\156\200\262\233\157\222\075\266\234\165\235" @@ -9008,7 +9008,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\052" "\044\044\044\044\260\247\266\260\141\042\075\217\260\140\260\075\062\063" - "\131\266\052\055\246\061\157\042\061\061\063\052\101\101\101\101\201\101" + "\131\266\052\055\246\061\157\042\061\061\063\052\101\101\101\101\201\101" "\246\103\105\105\105\105\200\111\111\111\246\116\200\242\117\117\202\075" "\246\125\125\125\203\125\200\220\210\141\211\141\221\141\266\212\213\214" "\215\230\200\151\231\232\266\156\200\262\233\157\222\075\266\234\165\235" @@ -9023,7 +9023,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\044\260\047\266\042\056\052\052\266\052\260\042\246\260\260\260" "\260\047\047\042\042\052\055\055\140\260\260\042\266\260\260\131\240\052" "\044\044\044\044\260\247\140\260\141\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" + "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" "\246\103\105\105\105\105\200\111\111\111\246\116\200\242\117\117\202\075" "\246\125\125\125\203\125\200\220\210\141\211\141\221\141\266\212\213\214" "\215\230\200\151\231\232\266\156\200\262\233\157\222\075\266\234\165\235" @@ -9071,7 +9071,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\260\204\103\206\105\260\260\260\260\111\123\260\260\260\260\260\260\260" "\125\125\260\260\260\260\260\260\260\132\224\143\226\145\151\163\165\165" "\172\260\260\260\260\260\260\260\242\220\117\241\157\117\266\261\113\153" - "\114\154\156\105\116\047\217\075\042\063\052\247\075\042\260\075\055\061" + "\114\154\156\105\116\047\217\075\042\063\052\247\075\042\260\075\055\061" "\063\062\260\240"},}, {{"\000\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\040\041\042\043" @@ -9086,7 +9086,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\260\101\101\101\260\260\260\260\260\044\044\260\260\260\260\260\260\260" "\141\101\260\260\260\260\260\260\260\044\266\246\105\105\105\266\111\111" "\111\260\260\260\260\260\111\260\242\220\117\117\157\117\266\266\246\125" - "\125\125\171\131\140\140\217\075\052\063\052\247\075\140\260\140\055\061" + "\125\125\171\131\140\140\217\075\052\063\052\247\075\140\260\140\055\061" "\063\062\260\240"},}, {{"\000\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\040\041\042\043" @@ -9125,13 +9125,13 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\260\044\260\075\260\260\260" + "\176\177\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\260\044\260\075\260\260\260" "\260\260\260\260\260\260\260\260\075\061\061\260\042\042\260\260\260\260" "\260\260\260\260\260\260\260\260\260\044\044\260\260\260\260\260\260\260" "\260\260\260\260\260\260\260\260\260\044\260\260\260\260\260\260\260\260" "\260\260\260\260\260\260\260\260\260\260\260\260\260\260\266\260\260\260" - "\260\260\260\260\140\140\217\075\052\063\052\247\075\140\260\140\055\061" + "\260\260\260\260\140\140\217\075\052\063\052\247\075\140\260\140\055\061" "\063\062\260\240"},}, {{"\000\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\040\041\042\043" @@ -9146,7 +9146,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\260\101\101\101\260\260\260\260\260\044\044\260\260\260\260\260\260\260" "\141\101\260\260\260\260\260\260\260\044\157\141\105\105\105\260\111\111" "\111\260\260\260\260\260\111\260\242\220\117\117\157\117\266\260\075\125" - "\125\125\151\171\140\140\217\075\260\063\052\247\075\140\260\140\055\061" + "\125\125\151\171\140\140\217\075\260\063\052\247\075\140\260\140\055\061" "\063\062\260\240"},}, {{"\000\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\040\041\042\043" @@ -9161,7 +9161,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\260\101\101\101\260\260\260\260\260\044\044\260\260\260\260\260\260\260" "\141\101\260\260\260\260\260\260\260\044\266\246\105\105\105\044\111\111" "\111\260\260\260\260\260\111\260\242\220\117\117\157\117\266\266\246\125" - "\125\125\171\131\140\140\217\075\052\063\052\247\075\140\260\140\055\061" + "\125\125\171\131\140\140\217\075\052\063\052\247\075\140\260\140\055\061" "\063\062\260\240"},}, {{"\000\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\040\041\042\043" @@ -9200,8 +9200,8 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\044\044\044\044\266\141\151" + "\176\177\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\044\044\044\044\266\141\151" "\262\165\156\116\141\157\052\260\075\061\061\052\042\042\260\260\260\260" "\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260" "\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260" @@ -9215,7 +9215,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\103\223\214\211\101\210\052\212\215\230\213\232\231\052\101\247" + "\176\177\103\223\214\211\101\210\052\212\215\230\213\232\231\052\101\247" "\105\105\105\233\105\111\235\234\044\117\203\044\044\125\125\266\260\140" "\262\165\140\140\063\140\111\260\075\061\061\063\042\042\260\260\260\260" "\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260\260" @@ -9232,12 +9232,12 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\260\055\075\075\260\260\260\260\260\260\260\260\260\260\260\260" "\266\075\266\075\061\061\075\042\042\237\237\260\260\237\237\260\240\217" - "\237\044\044\237\260\260\237\237\237\237\056\237\237\237\071\071\071\071" - "\071\071\071\071\071\071\237\056\237\237\237\056\044\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\260\075\075\075\237\055\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\200\237\237\237\237\237\237\237\237\237\237" - "\237\237\260\260"},}, + "\237\044\044\237\260\260\237\237\237\237\056\237\237\237\071\071\071\071" + "\071\071\071\071\071\071\237\056\237\237\237\056\044\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\260\075\075\075\237\055\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\200\237\237\237\237\237\237\237\237\237\237" + "\237\237\260\260"},}, {{"\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -9293,7 +9293,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\052" "\044\044\044\044\260\247\140\260\141\042\075\217\260\052\260\075\062\063" - "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" + "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" "\246\103\105\105\105\105\111\111\111\111\123\116\117\242\117\117\202\075" "\246\125\125\125\203\131\132\220\210\141\211\141\221\141\266\212\213\214" "\215\230\151\151\231\232\163\156\157\262\233\157\222\075\266\234\165\235" @@ -9311,7 +9311,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\103\212\116\156\052\052\044\044\044\247\266\044\211\215\233\235\141\214" "\262\165\210\213\157\234\221\230\222\223\101\231\246\246\141\151\266\266" "\201\151\202\203\105\232\220\117\101\101\141\246\266\111\111\242\117\117" - "\157\123\163\125\131\171\246\266\055\266\052\063\055\061\061\141\157\042" + "\157\123\163\125\131\171\246\266\055\266\052\063\055\061\061\141\157\042" "\260\042\075\260"},}, {{"\000\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\040\041\042\043" @@ -9383,7 +9383,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032" "\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\240\102" "\142\044\103\143\104\247\127\260\127\144\131\217\260\131\106\146\107\147" - "\115\155\052\120\167\160\167\123\171\127\167\163\101\101\101\101\201\101" + "\115\155\052\120\167\160\167\123\171\127\167\163\101\101\101\101\201\101" "\246\103\105\105\105\105\111\111\111\111\127\116\117\242\117\117\202\124" "\246\125\125\125\203\131\131\220\210\141\211\141\221\141\266\212\213\214" "\215\230\151\151\231\232\167\156\157\262\233\157\222\164\266\234\165\235" @@ -9413,7 +9413,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\266\266\047\246\042\056\052\052\260\052\266\042\246\266\246\260" "\246\047\047\042\042\052\055\055\260\260\260\042\260\260\260\260\260\363" "\323\270\044\350\260\247\260\260\260\042\075\217\260\260\260\075\062\250" - "\260\310\052\055\260\267\260\042\260\260\260\260\376\340\341\366\344\345" + "\260\310\052\055\260\267\260\042\260\260\260\260\376\340\341\366\344\345" "\364\343\365\350\351\352\353\354\355\356\357\377\360\361\362\363\346\342" "\374\373\347\370\375\371\367\372\336\300\301\326\304\305\324\303\325\310" "\311\312\313\314\315\316\317\337\320\321\322\323\306\302\334\333\307\330" @@ -9425,14 +9425,14 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\201\240\103\105\116\202\203\141\210\211\221\237\042\212\214\213" + "\176\177\201\240\103\105\116\202\203\141\210\211\221\237\042\212\214\213" "\215\230\151\056\231\232\156\262\042\233\222\075\165\234\235\223\040\041" "\042\043\044\052\046\047\050\051\052\053\056\055\056\057\071\071\071\071" - "\071\071\071\071\071\071\072\056\074\075\076\056\260\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\133\134\135\136\137\055\237\237\237\237\237\237\237\237\237" - "\237\200\200\200\200\200\200\200\200\237\237\237\237\237\237\237\237\173" - "\174\175\237\237"},}, + "\071\071\071\071\071\071\072\056\074\075\076\056\260\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\133\134\135\136\137\055\237\237\237\237\237\237\237\237\237" + "\237\200\200\200\200\200\200\200\200\237\237\237\237\237\237\237\237\173" + "\174\175\237\237"},}, {{"\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -9442,7 +9442,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\201\101\141\105\204\202\203\141\224\103\221\143\205\225\214\245" "\265\104\151\144\105\145\105\262\145\233\222\157\165\105\145\223\052\260" - "\206\044\247\052\052\220\260\260\260\226\140\075\147\111\151\111\075\075" + "\206\044\247\052\052\220\260\260\260\226\140\075\147\111\151\111\075\075" "\151\113\075\075\227\114\154\114\154\114\154\116\156\241\075\075\261\116" "\075\042\042\056\240\156\117\117\157\117\055\055\042\042\047\047\075\260" "\157\122\162\122\042\042\162\122\162\123\047\042\163\243\263\101\124\164" @@ -9457,7 +9457,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\201\101\103\105\116\202\203\141\210\211\221\141\141\212\214\213" "\215\230\151\151\231\232\156\262\157\233\222\157\165\234\235\223\052\260" - "\044\044\247\052\052\220\260\123\260\140\140\075\132\246\075\075\075\075" + "\044\044\247\052\052\220\260\123\260\140\140\075\132\246\075\075\075\075" "\075\266\075\075\075\163\075\141\157\246\172\266\052\052\075\075\266\075" "\205\042\103\056\240\101\101\117\246\266\246\055\042\042\047\047\075\260" "\077\260\075\044\042\042\246\042\055\055\047\042\052\101\225\101\143\105" @@ -9485,13 +9485,13 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\201\237\103\105\116\202\203\141\210\211\221\141\141\212\214\213" + "\176\177\201\237\103\105\116\202\203\141\210\211\221\141\141\212\214\213" "\215\230\151\151\231\232\156\262\157\233\222\157\165\234\235\223\040\041" "\042\043\044\045\044\047\051\050\052\053\054\055\056\057\060\061\062\063" - "\064\065\066\067\070\071\072\073\074\075\076\077\237\042\077\077\077\077" - "\200\237\237\056\240\200\200\200\200\200\055\055\042\042\047\047\237\237" - "\200\200\200\200\200\200\200\200\237\237\237\237\237\237\237\237\237\237" - "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\175" + "\064\065\066\067\070\071\072\073\074\075\076\077\237\042\077\077\077\077" + "\200\237\237\056\240\200\200\200\200\200\055\055\042\042\047\047\237\237" + "\200\200\200\200\200\200\200\200\237\237\237\237\237\237\237\237\237\237" + "\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\237\175" "\135\173\133\174"},}, {{"\000\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\040\041\042\043" @@ -9502,7 +9502,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\201\101\103\105\116\202\203\141\210\211\221\141\141\212\214\213" "\215\230\151\151\231\232\156\262\157\233\222\157\165\234\235\223\131\260" - "\044\044\247\052\052\220\260\260\260\140\140\075\246\246\075\075\075\075" + "\044\044\247\052\052\220\260\260\260\140\140\075\246\246\075\075\075\075" "\044\266\075\075\075\266\075\141\157\246\266\266\052\052\075\075\266\075" "\075\042\042\056\240\101\101\117\246\266\055\055\042\042\047\047\075\260" "\171\131\075\044\246\266\246\266\171\055\047\042\052\101\105\101\105\105" @@ -9517,7 +9517,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\201\101\103\105\116\202\203\141\210\211\221\141\141\212\214\213" "\215\230\151\151\231\232\156\262\157\233\222\157\165\234\235\223\052\260" - "\044\044\247\052\052\220\260\260\260\140\140\075\101\123\075\075\075\075" + "\044\044\247\052\052\220\260\260\260\140\140\075\101\123\075\075\075\075" "\044\266\075\075\075\266\075\141\157\246\141\163\052\052\075\075\266\075" "\075\042\042\056\240\101\101\117\246\266\055\055\042\042\047\047\075\260" "\171\131\075\044\042\042\124\164\052\055\047\042\052\101\105\101\105\105" @@ -9532,7 +9532,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\201\101\103\105\116\202\203\141\210\211\221\141\141\212\214\213" "\215\230\151\151\231\232\156\262\157\233\222\157\165\234\235\223\052\260" - "\044\044\247\052\052\220\260\260\260\140\140\075\246\246\075\075\075\075" + "\044\044\247\052\052\220\260\260\260\140\140\075\246\246\075\075\075\075" "\044\266\075\075\075\266\075\141\157\246\266\266\052\052\075\075\266\075" "\075\042\042\056\240\101\101\117\246\266\055\055\042\042\047\047\075\260" "\171\131\075\044\042\042\146\146\052\055\047\042\052\101\105\101\105\105" @@ -9562,7 +9562,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\201\101\103\105\116\202\203\141\210\211\221\141\141\212\214\213" "\215\230\151\151\231\232\156\262\157\233\222\157\165\234\235\223\052\260" - "\044\044\247\052\052\220\260\260\260\140\140\075\246\246\075\075\075\075" + "\044\044\247\052\052\220\260\260\260\140\140\075\246\246\075\075\075\075" "\044\266\075\075\075\266\075\141\157\246\266\266\052\052\075\075\266\075" "\075\042\042\056\240\101\101\117\246\266\055\055\042\042\047\047\075\260" "\171\131\107\147\111\266\123\163\052\055\047\042\052\101\105\101\105\105" @@ -9577,7 +9577,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" "\176\177\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317" "\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\052\260" - "\216\044\247\052\052\255\260\260\260\246\266\075\303\343\075\075\075\075" + "\216\044\247\052\052\255\260\260\260\246\266\075\303\343\075\075\075\075" "\275\266\236\246\256\276\257\277\246\266\246\266\266\246\075\075\266\075" "\075\042\042\056\240\246\266\312\352\266\055\055\042\042\047\047\075\042" "\254\274\246\266\267\250\270\377\340\341\342\343\344\345\346\347\350\351" @@ -9608,7 +9608,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\240\101\101\101\101\201\101\103\105\105\105\105\111\111\111\111" "\246\116\117\242\117\117\202\125\125\125\203\131\246\266\075\075\260\052" "\044\044\075\044\266\247\044\047\042\042\042\042\146\146\260\055\052\052" - "\055\260\052\052\047\042\042\042\056\052\075\052\061\266\140\266\140\140" + "\055\260\052\052\047\042\042\042\056\052\075\052\061\266\140\266\140\140" "\140\140\140\062\140\140\063\140\140\055\055\075\061\061\063\210\141\211" "\141\221\141\212\213\214\215\230\151\246\151\141\231\232\266\156\207\246" "\246\157\157\262\233\157\222\266\234\165\235\266\223\171\227\266\266\220" @@ -9623,7 +9623,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\246\246\323\266\042\056\246\246\246\266\246\310\246\246\246\246" "\266\047\047\042\042\052\055\055\266\266\266\350\266\266\266\266\240\254" "\274\246\246\246\246\247\250\260\246\042\075\363\260\246\260\266\255\275" - "\266\266\052\055\270\267\266\042\266\246\266\266\300\301\302\303\304\305" + "\266\266\052\055\270\267\266\042\266\246\266\266\300\301\302\303\304\305" "\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327" "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" @@ -9638,7 +9638,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\075\127\167\032\260\131\171\032\260\260\260\260\056\260\052\052" "\047\047\042\042\042\042\042\055\055\055\246\266\052\052\146\146\240\052" "\044\044\044\044\260\247\140\260\141\042\075\217\260\140\260\075\062\063" - "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" + "\140\266\052\055\140\061\157\042\061\061\063\052\101\101\101\101\201\101" "\246\103\105\105\105\105\111\111\111\111\246\116\117\242\117\117\202\075" "\246\125\125\125\203\131\246\220\210\141\211\141\221\141\266\212\213\214" "\215\230\151\151\231\232\266\156\157\262\233\157\222\075\266\234\165\235" @@ -9653,7 +9653,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_yandex[] = { "\176\177\246\303\047\343\042\056\052\052\044\052\246\042\246\246\246\246" "\266\047\047\042\042\052\055\055\260\260\266\042\266\266\266\266\240\246" "\266\246\044\246\260\247\250\260\246\042\075\217\260\246\260\075\255\275" - "\266\266\052\055\270\267\266\042\266\246\266\266\300\301\302\303\304\305" + "\266\266\052\055\270\267\266\042\266\246\266\266\300\301\302\303\304\305" "\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327" "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" @@ -10039,8 +10039,8 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_from_yandex[] = { "\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131" "\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153" "\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175" - "\176\177\077\077\077\077\077\077\077\077\205\203\207\212\202\210\077\077" - "\077\077\077\077\077\077\077\077\211\214\213\223\227\226\077\077\240\077" + "\176\177\077\077\077\077\077\077\077\077\205\203\207\212\202\210\077\077" + "\077\077\077\077\077\077\077\077\211\214\213\223\227\226\077\077\240\077" "\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077" "\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077" "\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077\077" @@ -11380,7 +11380,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_lower[] = { "\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327" "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" - "\374\375\376\240"},}, + "\374\375\376\240"},}, {{"\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -12714,7 +12714,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_upper[] = { "\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327" "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" - "\374\375\376\240"},}, + "\374\375\376\240"},}, {{"\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" @@ -14048,7 +14048,7 @@ const Recoder NCodepagePrivate::TCodePageData::rcdr_to_title[] = { "\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327" "\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351" "\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373" - "\374\375\376\240"},}, + "\374\375\376\240"},}, {{"\000\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\040\041\042\043" "\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065" diff --git a/library/cpp/charset/recyr.hh b/library/cpp/charset/recyr.hh index 5ec8734bcf..be494f006f 100644 --- a/library/cpp/charset/recyr.hh +++ b/library/cpp/charset/recyr.hh @@ -2,7 +2,7 @@ #include <cstdlib> -#include <util/charset/recode_result.h> +#include <util/charset/recode_result.h> #include <util/generic/ptr.h> #include <util/generic/yexception.h> diff --git a/library/cpp/charset/recyr_int.hh b/library/cpp/charset/recyr_int.hh index 353af53305..5900065ebe 100644 --- a/library/cpp/charset/recyr_int.hh +++ b/library/cpp/charset/recyr_int.hh @@ -1,10 +1,10 @@ #pragma once -#include <util/charset/recode_result.h> -#include <util/charset/utf8.h> +#include <util/charset/recode_result.h> +#include <util/charset/utf8.h> #include <util/generic/ptr.h> #include <util/generic/string.h> -#include <util/system/defaults.h> +#include <util/system/defaults.h> #include "codepage.h" #include "doccodes.h" @@ -38,7 +38,7 @@ namespace NCodepagePrivate { size_t rune_len; RECODE_RESULT res = RECODE_OK; while ((unsigned char*)in < in_end && res == RECODE_OK) { - res = SafeWriteUTF8Char(cp->unicode[(unsigned char)(*in++)], rune_len, (unsigned char*)out, out_end); + res = SafeWriteUTF8Char(cp->unicode[(unsigned char)(*in++)], rune_len, (unsigned char*)out, out_end); out += rune_len; } in_readed = (unsigned char*)in - in_start; @@ -61,7 +61,7 @@ namespace NCodepagePrivate { size_t rune_len; RECODE_RESULT res = RECODE_OK; while ((const unsigned char*)in < in_end && (res == RECODE_OK || res == RECODE_BROKENSYMBOL)) { - res = SafeReadUTF8Char(rune, rune_len, (const unsigned char*)in, in_end); + res = SafeReadUTF8Char(rune, rune_len, (const unsigned char*)in, in_end); if (res == RECODE_BROKENSYMBOL) rune_len = 1; if (res != RECODE_EOINPUT) @@ -112,7 +112,7 @@ namespace NCodepagePrivate { wchar32 rune; RECODE_RESULT res = RECODE_OK; while ((res == RECODE_OK || res == RECODE_BROKENSYMBOL) && inp < in_end && outp < out_end) { - res = SafeReadUTF8Char(rune, rune_len, inp, in_end); + res = SafeReadUTF8Char(rune, rune_len, inp, in_end); if (res == RECODE_BROKENSYMBOL) rune_len = 1; if (res == RECODE_OK || res == RECODE_BROKENSYMBOL) { @@ -159,7 +159,7 @@ namespace NCodepagePrivate { while ((res == RECODE_OK || res == RECODE_BROKENSYMBOL) && inp != in_end) { rune = ReadSymbolAndAdvance(inp, in_end); - res = SafeWriteUTF8Char(rune, rune_len, outp, out_end); + res = SafeWriteUTF8Char(rune, rune_len, outp, out_end); if (outp >= out_end && (res == RECODE_OK || res == RECODE_BROKENSYMBOL)) res = RECODE_EOOUTPUT; outp += rune_len; @@ -170,7 +170,7 @@ namespace NCodepagePrivate { } inline RECODE_RESULT _recodeUnicodeToUTF8(wchar32 rune, char* out, size_t out_size, size_t& nwritten) { - return SafeWriteUTF8Char(rune, nwritten, (unsigned char*)out, out_size); + return SafeWriteUTF8Char(rune, nwritten, (unsigned char*)out, out_size); } template <class TCharType, int Size = sizeof(TCharType)> diff --git a/library/cpp/charset/ut/ya.make b/library/cpp/charset/ut/ya.make index 1f9934c712..18d0de4c3c 100644 --- a/library/cpp/charset/ut/ya.make +++ b/library/cpp/charset/ut/ya.make @@ -1,6 +1,6 @@ UNITTEST_FOR(library/cpp/charset) -OWNER(alzobnin) +OWNER(alzobnin) SRCS( ci_string_ut.cpp diff --git a/library/cpp/charset/wide.h b/library/cpp/charset/wide.h index 32d30e849e..3b479a7738 100644 --- a/library/cpp/charset/wide.h +++ b/library/cpp/charset/wide.h @@ -1,23 +1,23 @@ #pragma once -#include "codepage.h" +#include "codepage.h" #include "iconv.h" -#include <util/charset/recode_result.h> -#include <util/charset/unidata.h> -#include <util/charset/utf8.h> -#include <util/charset/wide.h> +#include <util/charset/recode_result.h> +#include <util/charset/unidata.h> +#include <util/charset/utf8.h> +#include <util/charset/wide.h> #include <util/generic/string.h> #include <util/generic/algorithm.h> #include <util/generic/yexception.h> -#include <util/memory/tempbuf.h> -#include <util/system/yassert.h> +#include <util/memory/tempbuf.h> +#include <util/system/yassert.h> //! converts text from unicode to yandex codepage //! @attention destination buffer must be long enough to fit all characters of the text //! @note @c dest buffer must fit at least @c len number of characters template <typename TCharType> -inline size_t WideToChar(const TCharType* text, size_t len, char* dest, ECharset enc) { +inline size_t WideToChar(const TCharType* text, size_t len, char* dest, ECharset enc) { Y_ASSERT(SingleByteCodepage(enc)); const char* start = dest; @@ -39,7 +39,7 @@ inline size_t WideToChar(const TCharType* text, size_t len, char* dest, ECharset //! it does not make sense to create an additional version of this function because //! it will call to @c strlen anyway in order to allocate destination buffer template <typename TCharType> -inline void CharToWide(const char* text, size_t len, TCharType* dest, const CodePage& cp) { +inline void CharToWide(const char* text, size_t len, TCharType* dest, const CodePage& cp) { const unsigned char* cur = reinterpret_cast<const unsigned char*>(text); const unsigned char* const last = cur + len; for (; cur != last; ++cur, ++dest) { @@ -285,20 +285,20 @@ inline TUtf16String UTF8ToWide(const char* text, size_t len, const CodePage& cp) } inline TString WideToChar(const TWtringBuf w, ECharset enc) { - return WideToChar(w.data(), w.size(), enc); + return WideToChar(w.data(), w.size(), enc); } inline TUtf16String CharToWide(const TStringBuf s, ECharset enc) { - return CharToWide<false>(s.data(), s.size(), enc); + return CharToWide<false>(s.data(), s.size(), enc); } -template <bool robust> +template <bool robust> inline TUtf16String CharToWide(const TStringBuf s, ECharset enc) { - return CharToWide<robust>(s.data(), s.size(), enc); + return CharToWide<robust>(s.data(), s.size(), enc); } inline TUtf16String CharToWide(const TStringBuf s, const CodePage& cp) { - return CharToWide(s.data(), s.size(), cp); + return CharToWide(s.data(), s.size(), cp); } // true if @text can be fully encoded to specified @encoding, diff --git a/library/cpp/charset/wide_ut.cpp b/library/cpp/charset/wide_ut.cpp index 78947d51ba..d8cf863784 100644 --- a/library/cpp/charset/wide_ut.cpp +++ b/library/cpp/charset/wide_ut.cpp @@ -4,7 +4,7 @@ #include <library/cpp/testing/unittest/registar.h> -#include <util/charset/utf8.h> +#include <util/charset/utf8.h> #include <util/digest/numeric.h> #include <util/generic/hash_set.h> @@ -125,7 +125,7 @@ private: UNIT_TEST_SUITE(TConversionTest); UNIT_TEST(TestCharToWide); UNIT_TEST(TestWideToChar); - UNIT_TEST(TestYandexEncoding); + UNIT_TEST(TestYandexEncoding); UNIT_TEST(TestRecodeIntoString); UNIT_TEST(TestRecodeAppend); UNIT_TEST(TestRecode); @@ -142,7 +142,7 @@ public: void TestCharToWide(); void TestWideToChar(); - void TestYandexEncoding(); + void TestYandexEncoding(); void TestRecodeIntoString(); void TestRecodeAppend(); void TestRecode(); @@ -203,7 +203,7 @@ static void TestSurrogates(const char* str, const wchar16* wide, size_t wideSize UNIT_ASSERT(s == str); } -void TConversionTest::TestYandexEncoding() { +void TConversionTest::TestYandexEncoding() { TUtf16String w = UTF8ToWide(utf8CyrillicAlphabet, strlen(utf8CyrillicAlphabet), csYandex); UNIT_ASSERT(w == wideCyrillicAlphabet); w = UTF8ToWide(yandexCyrillicAlphabet, strlen(yandexCyrillicAlphabet), csYandex); @@ -296,13 +296,13 @@ void TConversionTest::TestRecodeAppend() { UNIT_ASSERT_EQUAL(s1, s2); NDetail::RecodeAppend<wchar16>(UnicodeText, s1, CODES_UTF8); - s2 += WideToUTF8(UnicodeText); + s2 += WideToUTF8(UnicodeText); UNIT_ASSERT_EQUAL(s1, s2); for (size_t i = 0; i < 100; ++i) { TUtf16String junk = CharToWide(GenerateJunk(i), CODES_YANDEX); NDetail::RecodeAppend<wchar16>(junk, s1, CODES_UTF8); - s2 += WideToUTF8(junk); + s2 += WideToUTF8(junk); UNIT_ASSERT_EQUAL(s1, s2); } } @@ -324,7 +324,7 @@ void TConversionTest::TestRecodeAppend() { UNIT_ASSERT_EQUAL(s1, s2); NDetail::RecodeAppend<char>(UTF8Text, s1, CODES_UTF8); - s2 += UTF8ToWide(UTF8Text); + s2 += UTF8ToWide(UTF8Text); UNIT_ASSERT_EQUAL(s1, s2); for (size_t i = 0; i < 100; ++i) { diff --git a/library/cpp/charset/ya.make b/library/cpp/charset/ya.make index 7565566bf0..73d4705b96 100644 --- a/library/cpp/charset/ya.make +++ b/library/cpp/charset/ya.make @@ -1,6 +1,6 @@ LIBRARY() -OWNER(alzobnin) +OWNER(alzobnin) SRCS( generated/cp_data.cpp @@ -8,11 +8,11 @@ SRCS( codepage.cpp cp_encrec.cpp doccodes.cpp - iconv.cpp + iconv.cpp recyr.hh recyr_int.hh ci_string.cpp - wide.cpp + wide.cpp ) PEERDIR( |