From 12e51f16857feeae87327b5ccf0e519373f6ae59 Mon Sep 17 00:00:00 2001 From: David Turner Date: Wed, 9 Mar 2005 17:33:03 +0000 Subject: [PATCH] * src/tools/glnames.py: rewrote the generator for the 'pstables.h' header, which contains various constant tables related to glyph names. It now uses a different storage scheme that saves about 20 Kb and closes bug #12262 * src/psnames/pstables.h: re-generated header file * src/psnames/psmodule.c: rewrote some parts to comply with recent changes in 'pstables.h' --- ChangeLog | 12 + src/psnames/psmodule.c | 51 +- src/psnames/pstables.h | 13326 ++++++++++++--------------------------- src/tools/glnames.py | 536 +- 4 files changed, 4314 insertions(+), 9611 deletions(-) diff --git a/ChangeLog b/ChangeLog index c5e793f3d..26f05782a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2005-03-09 David Turner + + * src/tools/glnames.py: rewrote the generator for the 'pstables.h' + header, which contains various constant tables related to glyph + names. It now uses a different storage scheme that saves about 20 + Kb and closes bug #12262 + + * src/psnames/pstables.h: re-generated header file + + * src/psnames/psmodule.c: rewrote some parts to comply with recent + changes in 'pstables.h' + 2005-03-06 David Turner * src/otvalid/otvgsub.c, src/otvalid/otvgpos.c: Make static tables diff --git a/src/psnames/psmodule.c b/src/psnames/psmodule.c index f6d6ae328..862ea63ac 100644 --- a/src/psnames/psmodule.c +++ b/src/psnames/psmodule.c @@ -39,11 +39,6 @@ static FT_UInt32 ps_unicode_value( const char* glyph_name ) { - FT_Int n; - char first = glyph_name[0]; - char temp[64]; - - /* If the name begins with `uni', then the glyph name may be a */ /* hard-coded unicode character code. */ if ( glyph_name[0] == 'u' && @@ -127,37 +122,22 @@ /* look for a non-initial dot in the glyph name in order to */ /* sort-out variants like `A.swash', `e.final', etc. */ { - const char* p; - int len; + const char* p = glyph_name; + const char* dot = NULL; - p = glyph_name; - - while ( *p && *p != '.' ) - p++; - - len = (int)( p - glyph_name ); - - if ( *p && len < 64 ) + for ( ; *p; p++ ) { - ft_strncpy( temp, glyph_name, len ); - temp[len] = 0; - glyph_name = temp; + if ( *p == '.' && p > glyph_name && !dot ) + dot = p; } + + if ( !dot ) + dot = p; + + /* now, look up the glyph in the Adobe Glyph List */ + return ft_get_adobe_glyph_index( glyph_name, dot ); } - - /* now, look up the glyph in the Adobe Glyph List */ - for ( n = 0; n < NUM_ADOBE_GLYPHS; n++ ) - { - const char* name = sid_standard_names[n]; - - - if ( first == name[0] && ft_strcmp( glyph_name, name ) == 0 ) - return ps_names_to_unicode[n]; - } - - /* not found, there is probably no Unicode value for this glyph name */ - return 0; } @@ -320,17 +300,20 @@ static const char* ps_get_macintosh_name( FT_UInt name_index ) { - if ( name_index >= 258 ) + if ( name_index >= FT_NUM_MAC_NAMES ) name_index = 0; - return ps_glyph_names[mac_standard_names[name_index]]; + return ft_standard_glyph_names + ft_mac_names[name_index]; } static const char* ps_get_standard_strings( FT_UInt sid ) { - return ( sid < NUM_SID_GLYPHS ? sid_standard_names[sid] : 0 ); + if ( sid >= FT_NUM_SID_NAMES ) + return 0; + + return ft_standard_glyph_names + ft_sid_names[sid]; } diff --git a/src/psnames/pstables.h b/src/psnames/pstables.h index 7c0739375..5b7475e5c 100644 --- a/src/psnames/pstables.h +++ b/src/psnames/pstables.h @@ -1,9437 +1,3889 @@ -/***************************************************************************/ -/* */ -/* pstables.h.new */ -/* */ -/* PostScript glyph names (specification only). */ -/* */ -/* Copyright 2000-2001, 2003 by */ -/* David Turner, Robert Wilhelm, and Werner Lemberg. */ -/* */ -/* This file is part of the FreeType project, and may only be used, */ -/* modified, and distributed under the terms of the FreeType project */ -/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ -/* this file you indicate that you have read the license and */ -/* understand and accept it fully. */ -/* */ -/***************************************************************************/ - - - /* this file has been generated automatically -- do not edit! */ - - - static const char* const ps_glyph_names[] = - { - ".null", - "nonmarkingreturn", - ".notdef", - "space", - "exclam", - "quotedbl", - "numbersign", - "dollar", - "percent", - "ampersand", - "quoteright", - "parenleft", - "parenright", - "asterisk", - "plus", - "comma", - "hyphen", - "period", - "slash", - "zero", - "one", - "two", - "three", - "four", - "five", - "six", - "seven", - "eight", - "nine", - "colon", - "semicolon", - "less", - "equal", - "greater", - "question", - "at", - "A", - "B", - "C", - "D", - "E", - "F", - "G", - "H", - "I", - "J", - "K", - "L", - "M", - "N", - "O", - "P", - "Q", - "R", - "S", - "T", - "U", - "V", - "W", - "X", - "Y", - "Z", - "bracketleft", - "backslash", - "bracketright", - "asciicircum", - "underscore", - "quoteleft", - "a", - "b", - "c", - "d", - "e", - "f", - "g", - "h", - "i", - "j", - "k", - "l", - "m", - "n", - "o", - "p", - "q", - "r", - "s", - "t", - "u", - "v", - "w", - "x", - "y", - "z", - "braceleft", - "bar", - "braceright", - "asciitilde", - "exclamdown", - "cent", - "sterling", - "fraction", - "yen", - "florin", - "section", - "currency", - "quotesingle", - "quotedblleft", - "guillemotleft", - "guilsinglleft", - "guilsinglright", - "fi", - "fl", - "endash", - "dagger", - "daggerdbl", - "periodcentered", - "paragraph", - "bullet", - "quotesinglbase", - "quotedblbase", - "quotedblright", - "guillemotright", - "ellipsis", - "perthousand", - "questiondown", - "grave", - "acute", - "circumflex", - "tilde", - "macron", - "breve", - "dotaccent", - "dieresis", - "ring", - "cedilla", - "hungarumlaut", - "ogonek", - "caron", - "emdash", - "AE", - "ordfeminine", - "Lslash", - "Oslash", - "OE", - "ordmasculine", - "ae", - "dotlessi", - "lslash", - "oslash", - "oe", - "germandbls", - "onesuperior", - "logicalnot", - "mu", - "trademark", - "Eth", - "onehalf", - "plusminus", - "Thorn", - "onequarter", - "divide", - "brokenbar", - "degree", - "thorn", - "threequarters", - "twosuperior", - "registered", - "minus", - "eth", - "multiply", - "threesuperior", - "copyright", - "Aacute", - "Acircumflex", - "Adieresis", - "Agrave", - "Aring", - "Atilde", - "Ccedilla", - "Eacute", - "Ecircumflex", - "Edieresis", - "Egrave", - "Iacute", - "Icircumflex", - "Idieresis", - "Igrave", - "Ntilde", - "Oacute", - "Ocircumflex", - "Odieresis", - "Ograve", - "Otilde", - "Scaron", - "Uacute", - "Ucircumflex", - "Udieresis", - "Ugrave", - "Yacute", - "Ydieresis", - "Zcaron", - "aacute", - "acircumflex", - "adieresis", - "agrave", - "aring", - "atilde", - "ccedilla", - "eacute", - "ecircumflex", - "edieresis", - "egrave", - "iacute", - "icircumflex", - "idieresis", - "igrave", - "ntilde", - "oacute", - "ocircumflex", - "odieresis", - "ograve", - "otilde", - "scaron", - "uacute", - "ucircumflex", - "udieresis", - "ugrave", - "yacute", - "ydieresis", - "zcaron", - "exclamsmall", - "Hungarumlautsmall", - "dollaroldstyle", - "dollarsuperior", - "ampersandsmall", - "Acutesmall", - "parenleftsuperior", - "parenrightsuperior", - "twodotenleader", - "onedotenleader", - "zerooldstyle", - "oneoldstyle", - "twooldstyle", - "threeoldstyle", - "fouroldstyle", - "fiveoldstyle", - "sixoldstyle", - "sevenoldstyle", - "eightoldstyle", - "nineoldstyle", - "commasuperior", - "threequartersemdash", - "periodsuperior", - "questionsmall", - "asuperior", - "bsuperior", - "centsuperior", - "dsuperior", - "esuperior", - "isuperior", - "lsuperior", - "msuperior", - "nsuperior", - "osuperior", - "rsuperior", - "ssuperior", - "tsuperior", - "ff", - "ffi", - "ffl", - "parenleftinferior", - "parenrightinferior", - "Circumflexsmall", - "hyphensuperior", - "Gravesmall", - "Asmall", - "Bsmall", - "Csmall", - "Dsmall", - "Esmall", - "Fsmall", - "Gsmall", - "Hsmall", - "Ismall", - "Jsmall", - "Ksmall", - "Lsmall", - "Msmall", - "Nsmall", - "Osmall", - "Psmall", - "Qsmall", - "Rsmall", - "Ssmall", - "Tsmall", - "Usmall", - "Vsmall", - "Wsmall", - "Xsmall", - "Ysmall", - "Zsmall", - "colonmonetary", - "onefitted", - "rupiah", - "Tildesmall", - "exclamdownsmall", - "centoldstyle", - "Lslashsmall", - "Scaronsmall", - "Zcaronsmall", - "Dieresissmall", - "Brevesmall", - "Caronsmall", - "Dotaccentsmall", - "Macronsmall", - "figuredash", - "hypheninferior", - "Ogoneksmall", - "Ringsmall", - "Cedillasmall", - "questiondownsmall", - "oneeighth", - "threeeighths", - "fiveeighths", - "seveneighths", - "onethird", - "twothirds", - "zerosuperior", - "foursuperior", - "fivesuperior", - "sixsuperior", - "sevensuperior", - "eightsuperior", - "ninesuperior", - "zeroinferior", - "oneinferior", - "twoinferior", - "threeinferior", - "fourinferior", - "fiveinferior", - "sixinferior", - "seveninferior", - "eightinferior", - "nineinferior", - "centinferior", - "dollarinferior", - "periodinferior", - "commainferior", - "Agravesmall", - "Aacutesmall", - "Acircumflexsmall", - "Atildesmall", - "Adieresissmall", - "Aringsmall", - "AEsmall", - "Ccedillasmall", - "Egravesmall", - "Eacutesmall", - "Ecircumflexsmall", - "Edieresissmall", - "Igravesmall", - "Iacutesmall", - "Icircumflexsmall", - "Idieresissmall", - "Ethsmall", - "Ntildesmall", - "Ogravesmall", - "Oacutesmall", - "Ocircumflexsmall", - "Otildesmall", - "Odieresissmall", - "OEsmall", - "Oslashsmall", - "Ugravesmall", - "Uacutesmall", - "Ucircumflexsmall", - "Udieresissmall", - "Yacutesmall", - "Thornsmall", - "Ydieresissmall", - "001.000", - "001.001", - "001.002", - "001.003", - "Black", - "Bold", - "Book", - "Light", - "Medium", - "Regular", - "Roman", - "Semibold", - -#ifdef FT_CONFIG_OPTION_ADOBE_GLYPH_LIST - - "AEacute", - "AEmacron", - "Abreve", - "Abreveacute", - "Abrevecyrillic", - "Abrevedotbelow", - "Abrevegrave", - "Abrevehookabove", - "Abrevetilde", - "Acaron", - "Acircle", - "Acircumflexacute", - "Acircumflexdotbelow", - "Acircumflexgrave", - "Acircumflexhookabove", - "Acircumflextilde", - "Acute", - "Acyrillic", - "Adblgrave", - "Adieresiscyrillic", - "Adieresismacron", - "Adotbelow", - "Adotmacron", - "Ahookabove", - "Aiecyrillic", - "Ainvertedbreve", - "Alpha", - "Alphatonos", - "Amacron", - "Amonospace", - "Aogonek", - "Aringacute", - "Aringbelow", - "Aybarmenian", - "Bcircle", - "Bdotaccent", - "Bdotbelow", - "Becyrillic", - "Benarmenian", - "Beta", - "Bhook", - "Blinebelow", - "Bmonospace", - "Btopbar", - "Caarmenian", - "Cacute", - "Caron", - "Ccaron", - "Ccedillaacute", - "Ccircle", - "Ccircumflex", - "Cdot", - "Cdotaccent", - "Chaarmenian", - "Cheabkhasiancyrillic", - "Checyrillic", - "Chedescenderabkhasiancyrillic", - "Chedescendercyrillic", - "Chedieresiscyrillic", - "Cheharmenian", - "Chekhakassiancyrillic", - "Cheverticalstrokecyrillic", - "Chi", - "Chook", - "Cmonospace", - "Coarmenian", - "DZ", - "DZcaron", - "Daarmenian", - "Dafrican", - "Dcaron", - "Dcedilla", - "Dcircle", - "Dcircumflexbelow", - "Dcroat", - "Ddotaccent", - "Ddotbelow", - "Decyrillic", - "Deicoptic", - "Delta", - "Deltagreek", - "Dhook", - "Dieresis", - "DieresisAcute", - "DieresisGrave", - "Digammagreek", - "Djecyrillic", - "Dlinebelow", - "Dmonospace", - "Dslash", - "Dtopbar", - "Dz", - "Dzcaron", - "Dzeabkhasiancyrillic", - "Dzecyrillic", - "Dzhecyrillic", - "Ebreve", - "Ecaron", - "Ecedillabreve", - "Echarmenian", - "Ecircle", - "Ecircumflexacute", - "Ecircumflexbelow", - "Ecircumflexdotbelow", - "Ecircumflexgrave", - "Ecircumflexhookabove", - "Ecircumflextilde", - "Ecyrillic", - "Edblgrave", - "Edot", - "Edotaccent", - "Edotbelow", - "Efcyrillic", - "Eharmenian", - "Ehookabove", - "Eightroman", - "Einvertedbreve", - "Eiotifiedcyrillic", - "Elcyrillic", - "Elevenroman", - "Emacron", - "Emacronacute", - "Emacrongrave", - "Emcyrillic", - "Emonospace", - "Encyrillic", - "Endescendercyrillic", - "Eng", - "Enghecyrillic", - "Enhookcyrillic", - "Eogonek", - "Eopen", - "Epsilon", - "Epsilontonos", - "Ercyrillic", - "Ereversed", - "Ereversedcyrillic", - "Escyrillic", - "Esdescendercyrillic", - "Esh", - "Eta", - "Etarmenian", - "Etatonos", - "Etilde", - "Etildebelow", - "Euro", - "Ezh", - "Ezhcaron", - "Ezhreversed", - "Fcircle", - "Fdotaccent", - "Feharmenian", - "Feicoptic", - "Fhook", - "Fitacyrillic", - "Fiveroman", - "Fmonospace", - "Fourroman", - "GBsquare", - "Gacute", - "Gamma", - "Gammaafrican", - "Gangiacoptic", - "Gbreve", - "Gcaron", - "Gcedilla", - "Gcircle", - "Gcircumflex", - "Gcommaaccent", - "Gdot", - "Gdotaccent", - "Gecyrillic", - "Ghadarmenian", - "Ghemiddlehookcyrillic", - "Ghestrokecyrillic", - "Gheupturncyrillic", - "Ghook", - "Gimarmenian", - "Gjecyrillic", - "Gmacron", - "Gmonospace", - "Grave", - "Gsmallhook", - "Gstroke", - "H18533", - "H18543", - "H18551", - "H22073", - "HPsquare", - "Haabkhasiancyrillic", - "Hadescendercyrillic", - "Hardsigncyrillic", - "Hbar", - "Hbrevebelow", - "Hcedilla", - "Hcircle", - "Hcircumflex", - "Hdieresis", - "Hdotaccent", - "Hdotbelow", - "Hmonospace", - "Hoarmenian", - "Horicoptic", - "Hungarumlaut", - "Hzsquare", - "IAcyrillic", - "IJ", - "IUcyrillic", - "Ibreve", - "Icaron", - "Icircle", - "Icyrillic", - "Idblgrave", - "Idieresisacute", - "Idieresiscyrillic", - "Idot", - "Idotaccent", - "Idotbelow", - "Iebrevecyrillic", - "Iecyrillic", - "Ifraktur", - "Ihookabove", - "Iicyrillic", - "Iinvertedbreve", - "Iishortcyrillic", - "Imacron", - "Imacroncyrillic", - "Imonospace", - "Iniarmenian", - "Iocyrillic", - "Iogonek", - "Iota", - "Iotaafrican", - "Iotadieresis", - "Iotatonos", - "Istroke", - "Itilde", - "Itildebelow", - "Izhitsacyrillic", - "Izhitsadblgravecyrillic", - "Jaarmenian", - "Jcircle", - "Jcircumflex", - "Jecyrillic", - "Jheharmenian", - "Jmonospace", - "KBsquare", - "KKsquare", - "Kabashkircyrillic", - "Kacute", - "Kacyrillic", - "Kadescendercyrillic", - "Kahookcyrillic", - "Kappa", - "Kastrokecyrillic", - "Kaverticalstrokecyrillic", - "Kcaron", - "Kcedilla", - "Kcircle", - "Kcommaaccent", - "Kdotbelow", - "Keharmenian", - "Kenarmenian", - "Khacyrillic", - "Kheicoptic", - "Khook", - "Kjecyrillic", - "Klinebelow", - "Kmonospace", - "Koppacyrillic", - "Koppagreek", - "Ksicyrillic", - "LJ", - "LL", - "Lacute", - "Lambda", - "Lcaron", - "Lcedilla", - "Lcircle", - "Lcircumflexbelow", - "Lcommaaccent", - "Ldot", - "Ldotaccent", - "Ldotbelow", - "Ldotbelowmacron", - "Liwnarmenian", - "Lj", - "Ljecyrillic", - "Llinebelow", - "Lmonospace", - "MBsquare", - "Macron", - "Macute", - "Mcircle", - "Mdotaccent", - "Mdotbelow", - "Menarmenian", - "Mmonospace", - "Mturned", - "Mu", - "NJ", - "Nacute", - "Ncaron", - "Ncedilla", - "Ncircle", - "Ncircumflexbelow", - "Ncommaaccent", - "Ndotaccent", - "Ndotbelow", - "Nhookleft", - "Nineroman", - "Nj", - "Njecyrillic", - "Nlinebelow", - "Nmonospace", - "Nowarmenian", - "Nu", - "Obarredcyrillic", - "Obarreddieresiscyrillic", - "Obreve", - "Ocaron", - "Ocenteredtilde", - "Ocircle", - "Ocircumflexacute", - "Ocircumflexdotbelow", - "Ocircumflexgrave", - "Ocircumflexhookabove", - "Ocircumflextilde", - "Ocyrillic", - "Odblacute", - "Odblgrave", - "Odieresiscyrillic", - "Odotbelow", - "Oharmenian", - "Ohm", - "Ohookabove", - "Ohorn", - "Ohornacute", - "Ohorndotbelow", - "Ohorngrave", - "Ohornhookabove", - "Ohorntilde", - "Ohungarumlaut", - "Oi", - "Oinvertedbreve", - "Omacron", - "Omacronacute", - "Omacrongrave", - "Omega", - "Omegacyrillic", - "Omegagreek", - "Omegaroundcyrillic", - "Omegatitlocyrillic", - "Omegatonos", - "Omicron", - "Omicrontonos", - "Omonospace", - "Oneroman", - "Oogonek", - "Oogonekmacron", - "Oopen", - "Oslashacute", - "Ostrokeacute", - "Otcyrillic", - "Otildeacute", - "Otildedieresis", - "Pacute", - "Pcircle", - "Pdotaccent", - "Pecyrillic", - "Peharmenian", - "Pemiddlehookcyrillic", - "Phi", - "Phook", - "Pi", - "Piwrarmenian", - "Pmonospace", - "Psi", - "Psicyrillic", - "Qcircle", - "Qmonospace", - "Raarmenian", - "Racute", - "Rcaron", - "Rcedilla", - "Rcircle", - "Rcommaaccent", - "Rdblgrave", - "Rdotaccent", - "Rdotbelow", - "Rdotbelowmacron", - "Reharmenian", - "Rfraktur", - "Rho", - "Rinvertedbreve", - "Rlinebelow", - "Rmonospace", - "Rsmallinverted", - "Rsmallinvertedsuperior", - "SF010000", - "SF020000", - "SF030000", - "SF040000", - "SF050000", - "SF060000", - "SF070000", - "SF080000", - "SF090000", - "SF100000", - "SF110000", - "SF190000", - "SF200000", - "SF210000", - "SF220000", - "SF230000", - "SF240000", - "SF250000", - "SF260000", - "SF270000", - "SF280000", - "SF360000", - "SF370000", - "SF380000", - "SF390000", - "SF400000", - "SF410000", - "SF420000", - "SF430000", - "SF440000", - "SF450000", - "SF460000", - "SF470000", - "SF480000", - "SF490000", - "SF500000", - "SF510000", - "SF520000", - "SF530000", - "SF540000", - "Sacute", - "Sacutedotaccent", - "Sampigreek", - "Scarondotaccent", - "Scedilla", - "Schwa", - "Schwacyrillic", - "Schwadieresiscyrillic", - "Scircle", - "Scircumflex", - "Scommaaccent", - "Sdotaccent", - "Sdotbelow", - "Sdotbelowdotaccent", - "Seharmenian", - "Sevenroman", - "Shaarmenian", - "Shacyrillic", - "Shchacyrillic", - "Sheicoptic", - "Shhacyrillic", - "Shimacoptic", - "Sigma", - "Sixroman", - "Smonospace", - "Softsigncyrillic", - "Stigmagreek", - "Tau", - "Tbar", - "Tcaron", - "Tcedilla", - "Tcircle", - "Tcircumflexbelow", - "Tcommaaccent", - "Tdotaccent", - "Tdotbelow", - "Tecyrillic", - "Tedescendercyrillic", - "Tenroman", - "Tetsecyrillic", - "Theta", - "Thook", - "Threeroman", - "Tiwnarmenian", - "Tlinebelow", - "Tmonospace", - "Toarmenian", - "Tonefive", - "Tonesix", - "Tonetwo", - "Tretroflexhook", - "Tsecyrillic", - "Tshecyrillic", - "Twelveroman", - "Tworoman", - "Ubreve", - "Ucaron", - "Ucircle", - "Ucircumflexbelow", - "Ucyrillic", - "Udblacute", - "Udblgrave", - "Udieresisacute", - "Udieresisbelow", - "Udieresiscaron", - "Udieresiscyrillic", - "Udieresisgrave", - "Udieresismacron", - "Udotbelow", - "Uhookabove", - "Uhorn", - "Uhornacute", - "Uhorndotbelow", - "Uhorngrave", - "Uhornhookabove", - "Uhorntilde", - "Uhungarumlaut", - "Uhungarumlautcyrillic", - "Uinvertedbreve", - "Ukcyrillic", - "Umacron", - "Umacroncyrillic", - "Umacrondieresis", - "Umonospace", - "Uogonek", - "Upsilon", - "Upsilon1", - "Upsilonacutehooksymbolgreek", - "Upsilonafrican", - "Upsilondieresis", - "Upsilondieresishooksymbolgreek", - "Upsilonhooksymbol", - "Upsilontonos", - "Uring", - "Ushortcyrillic", - "Ustraightcyrillic", - "Ustraightstrokecyrillic", - "Utilde", - "Utildeacute", - "Utildebelow", - "Vcircle", - "Vdotbelow", - "Vecyrillic", - "Vewarmenian", - "Vhook", - "Vmonospace", - "Voarmenian", - "Vtilde", - "Wacute", - "Wcircle", - "Wcircumflex", - "Wdieresis", - "Wdotaccent", - "Wdotbelow", - "Wgrave", - "Wmonospace", - "Xcircle", - "Xdieresis", - "Xdotaccent", - "Xeharmenian", - "Xi", - "Xmonospace", - "Yatcyrillic", - "Ycircle", - "Ycircumflex", - "Ydotaccent", - "Ydotbelow", - "Yericyrillic", - "Yerudieresiscyrillic", - "Ygrave", - "Yhook", - "Yhookabove", - "Yiarmenian", - "Yicyrillic", - "Yiwnarmenian", - "Ymonospace", - "Ytilde", - "Yusbigcyrillic", - "Yusbigiotifiedcyrillic", - "Yuslittlecyrillic", - "Yuslittleiotifiedcyrillic", - "Zaarmenian", - "Zacute", - "Zcircle", - "Zcircumflex", - "Zdot", - "Zdotaccent", - "Zdotbelow", - "Zecyrillic", - "Zedescendercyrillic", - "Zedieresiscyrillic", - "Zeta", - "Zhearmenian", - "Zhebrevecyrillic", - "Zhecyrillic", - "Zhedescendercyrillic", - "Zhedieresiscyrillic", - "Zlinebelow", - "Zmonospace", - "Zstroke", - "aabengali", - "aadeva", - "aagujarati", - "aagurmukhi", - "aamatragurmukhi", - "aarusquare", - "aavowelsignbengali", - "aavowelsigndeva", - "aavowelsigngujarati", - "abbreviationmarkarmenian", - "abbreviationsigndeva", - "abengali", - "abopomofo", - "abreve", - "abreveacute", - "abrevecyrillic", - "abrevedotbelow", - "abrevegrave", - "abrevehookabove", - "abrevetilde", - "acaron", - "acircle", - "acircumflexacute", - "acircumflexdotbelow", - "acircumflexgrave", - "acircumflexhookabove", - "acircumflextilde", - "acutebelowcmb", - "acutecmb", - "acutecomb", - "acutedeva", - "acutelowmod", - "acutetonecmb", - "acyrillic", - "adblgrave", - "addakgurmukhi", - "adeva", - "adieresiscyrillic", - "adieresismacron", - "adotbelow", - "adotmacron", - "aeacute", - "aekorean", - "aemacron", - "afii00208", - "afii08941", - "afii10017", - "afii10018", - "afii10019", - "afii10020", - "afii10021", - "afii10022", - "afii10023", - "afii10024", - "afii10025", - "afii10026", - "afii10027", - "afii10028", - "afii10029", - "afii10030", - "afii10031", - "afii10032", - "afii10033", - "afii10034", - "afii10035", - "afii10036", - "afii10037", - "afii10038", - "afii10039", - "afii10040", - "afii10041", - "afii10042", - "afii10043", - "afii10044", - "afii10045", - "afii10046", - "afii10047", - "afii10048", - "afii10049", - "afii10050", - "afii10051", - "afii10052", - "afii10053", - "afii10054", - "afii10055", - "afii10056", - "afii10057", - "afii10058", - "afii10059", - "afii10060", - "afii10061", - "afii10062", - "afii10063", - "afii10064", - "afii10065", - "afii10066", - "afii10067", - "afii10068", - "afii10069", - "afii10070", - "afii10071", - "afii10072", - "afii10073", - "afii10074", - "afii10075", - "afii10076", - "afii10077", - "afii10078", - "afii10079", - "afii10080", - "afii10081", - "afii10082", - "afii10083", - "afii10084", - "afii10085", - "afii10086", - "afii10087", - "afii10088", - "afii10089", - "afii10090", - "afii10091", - "afii10092", - "afii10093", - "afii10094", - "afii10095", - "afii10096", - "afii10097", - "afii10098", - "afii10099", - "afii10100", - "afii10101", - "afii10102", - "afii10103", - "afii10104", - "afii10105", - "afii10106", - "afii10107", - "afii10108", - "afii10109", - "afii10110", - "afii10145", - "afii10146", - "afii10147", - "afii10148", - "afii10192", - "afii10193", - "afii10194", - "afii10195", - "afii10196", - "afii10831", - "afii10832", - "afii10846", - "afii299", - "afii300", - "afii301", - "afii57381", - "afii57388", - "afii57392", - "afii57393", - "afii57394", - "afii57395", - "afii57396", - "afii57397", - "afii57398", - "afii57399", - "afii57400", - "afii57401", - "afii57403", - "afii57407", - "afii57409", - "afii57410", - "afii57411", - "afii57412", - "afii57413", - "afii57414", - "afii57415", - "afii57416", - "afii57417", - "afii57418", - "afii57419", - "afii57420", - "afii57421", - "afii57422", - "afii57423", - "afii57424", - "afii57425", - "afii57426", - "afii57427", - "afii57428", - "afii57429", - "afii57430", - "afii57431", - "afii57432", - "afii57433", - "afii57434", - "afii57440", - "afii57441", - "afii57442", - "afii57443", - "afii57444", - "afii57445", - "afii57446", - "afii57448", - "afii57449", - "afii57450", - "afii57451", - "afii57452", - "afii57453", - "afii57454", - "afii57455", - "afii57456", - "afii57457", - "afii57458", - "afii57470", - "afii57505", - "afii57506", - "afii57507", - "afii57508", - "afii57509", - "afii57511", - "afii57512", - "afii57513", - "afii57514", - "afii57519", - "afii57534", - "afii57636", - "afii57645", - "afii57658", - "afii57664", - "afii57665", - "afii57666", - "afii57667", - "afii57668", - "afii57669", - "afii57670", - "afii57671", - "afii57672", - "afii57673", - "afii57674", - "afii57675", - "afii57676", - "afii57677", - "afii57678", - "afii57679", - "afii57680", - "afii57681", - "afii57682", - "afii57683", - "afii57684", - "afii57685", - "afii57686", - "afii57687", - "afii57688", - "afii57689", - "afii57690", - "afii57694", - "afii57695", - "afii57700", - "afii57705", - "afii57716", - "afii57717", - "afii57718", - "afii57723", - "afii57793", - "afii57794", - "afii57795", - "afii57796", - "afii57797", - "afii57798", - "afii57799", - "afii57800", - "afii57801", - "afii57802", - "afii57803", - "afii57804", - "afii57806", - "afii57807", - "afii57839", - "afii57841", - "afii57842", - "afii57929", - "afii61248", - "afii61289", - "afii61352", - "afii61573", - "afii61574", - "afii61575", - "afii61664", - "afii63167", - "afii64937", - "agujarati", - "agurmukhi", - "ahiragana", - "ahookabove", - "aibengali", - "aibopomofo", - "aideva", - "aiecyrillic", - "aigujarati", - "aigurmukhi", - "aimatragurmukhi", - "ainarabic", - "ainfinalarabic", - "aininitialarabic", - "ainmedialarabic", - "ainvertedbreve", - "aivowelsignbengali", - "aivowelsigndeva", - "aivowelsigngujarati", - "akatakana", - "akatakanahalfwidth", - "akorean", - "alef", - "alefarabic", - "alefdageshhebrew", - "aleffinalarabic", - "alefhamzaabovearabic", - "alefhamzaabovefinalarabic", - "alefhamzabelowarabic", - "alefhamzabelowfinalarabic", - "alefhebrew", - "aleflamedhebrew", - "alefmaddaabovearabic", - "alefmaddaabovefinalarabic", - "alefmaksuraarabic", - "alefmaksurafinalarabic", - "alefmaksurainitialarabic", - "alefmaksuramedialarabic", - "alefpatahhebrew", - "alefqamatshebrew", - "aleph", - "allequal", - "alpha", - "alphatonos", - "amacron", - "amonospace", - "ampersandmonospace", - "amsquare", - "anbopomofo", - "angbopomofo", - "angkhankhuthai", - "angle", - "anglebracketleft", - "anglebracketleftvertical", - "anglebracketright", - "anglebracketrightvertical", - "angleleft", - "angleright", - "angstrom", - "anoteleia", - "anudattadeva", - "anusvarabengali", - "anusvaradeva", - "anusvaragujarati", - "aogonek", - "apaatosquare", - "aparen", - "apostrophearmenian", - "apostrophemod", - "apple", - "approaches", - "approxequal", - "approxequalorimage", - "approximatelyequal", - "araeaekorean", - "araeakorean", - "arc", - "arighthalfring", - "aringacute", - "aringbelow", - "arrowboth", - "arrowdashdown", - "arrowdashleft", - "arrowdashright", - "arrowdashup", - "arrowdblboth", - "arrowdbldown", - "arrowdblleft", - "arrowdblright", - "arrowdblup", - "arrowdown", - "arrowdownleft", - "arrowdownright", - "arrowdownwhite", - "arrowheaddownmod", - "arrowheadleftmod", - "arrowheadrightmod", - "arrowheadupmod", - "arrowhorizex", - "arrowleft", - "arrowleftdbl", - "arrowleftdblstroke", - "arrowleftoverright", - "arrowleftwhite", - "arrowright", - "arrowrightdblstroke", - "arrowrightheavy", - "arrowrightoverleft", - "arrowrightwhite", - "arrowtableft", - "arrowtabright", - "arrowup", - "arrowupdn", - "arrowupdnbse", - "arrowupdownbase", - "arrowupleft", - "arrowupleftofdown", - "arrowupright", - "arrowupwhite", - "arrowvertex", - "asciicircummonospace", - "asciitildemonospace", - "ascript", - "ascriptturned", - "asmallhiragana", - "asmallkatakana", - "asmallkatakanahalfwidth", - "asteriskaltonearabic", - "asteriskarabic", - "asteriskmath", - "asteriskmonospace", - "asterisksmall", - "asterism", - "asymptoticallyequal", - "atmonospace", - "atsmall", - "aturned", - "aubengali", - "aubopomofo", - "audeva", - "augujarati", - "augurmukhi", - "aulengthmarkbengali", - "aumatragurmukhi", - "auvowelsignbengali", - "auvowelsigndeva", - "auvowelsigngujarati", - "avagrahadeva", - "aybarmenian", - "ayin", - "ayinaltonehebrew", - "ayinhebrew", - "babengali", - "backslashmonospace", - "badeva", - "bagujarati", - "bagurmukhi", - "bahiragana", - "bahtthai", - "bakatakana", - "barmonospace", - "bbopomofo", - "bcircle", - "bdotaccent", - "bdotbelow", - "beamedsixteenthnotes", - "because", - "becyrillic", - "beharabic", - "behfinalarabic", - "behinitialarabic", - "behiragana", - "behmedialarabic", - "behmeeminitialarabic", - "behmeemisolatedarabic", - "behnoonfinalarabic", - "bekatakana", - "benarmenian", - "bet", - "beta", - "betasymbolgreek", - "betdagesh", - "betdageshhebrew", - "bethebrew", - "betrafehebrew", - "bhabengali", - "bhadeva", - "bhagujarati", - "bhagurmukhi", - "bhook", - "bihiragana", - "bikatakana", - "bilabialclick", - "bindigurmukhi", - "birusquare", - "blackcircle", - "blackdiamond", - "blackdownpointingtriangle", - "blackleftpointingpointer", - "blackleftpointingtriangle", - "blacklenticularbracketleft", - "blacklenticularbracketleftvertical", - "blacklenticularbracketright", - "blacklenticularbracketrightvertical", - "blacklowerlefttriangle", - "blacklowerrighttriangle", - "blackrectangle", - "blackrightpointingpointer", - "blackrightpointingtriangle", - "blacksmallsquare", - "blacksmilingface", - "blacksquare", - "blackstar", - "blackupperlefttriangle", - "blackupperrighttriangle", - "blackuppointingsmalltriangle", - "blackuppointingtriangle", - "blank", - "blinebelow", - "block", - "bmonospace", - "bobaimaithai", - "bohiragana", - "bokatakana", - "bparen", - "bqsquare", - "braceex", - "braceleftbt", - "braceleftmid", - "braceleftmonospace", - "braceleftsmall", - "bracelefttp", - "braceleftvertical", - "bracerightbt", - "bracerightmid", - "bracerightmonospace", - "bracerightsmall", - "bracerighttp", - "bracerightvertical", - "bracketleftbt", - "bracketleftex", - "bracketleftmonospace", - "bracketlefttp", - "bracketrightbt", - "bracketrightex", - "bracketrightmonospace", - "bracketrighttp", - "brevebelowcmb", - "brevecmb", - "breveinvertedbelowcmb", - "breveinvertedcmb", - "breveinverteddoublecmb", - "bridgebelowcmb", - "bridgeinvertedbelowcmb", - "bstroke", - "btopbar", - "buhiragana", - "bukatakana", - "bulletinverse", - "bulletoperator", - "bullseye", - "caarmenian", - "cabengali", - "cacute", - "cadeva", - "cagujarati", - "cagurmukhi", - "calsquare", - "candrabindubengali", - "candrabinducmb", - "candrabindudeva", - "candrabindugujarati", - "capslock", - "careof", - "caronbelowcmb", - "caroncmb", - "carriagereturn", - "cbopomofo", - "ccaron", - "ccedillaacute", - "ccircle", - "ccircumflex", - "ccurl", - "cdot", - "cdotaccent", - "cdsquare", - "cedillacmb", - "centigrade", - "centmonospace", - "chaarmenian", - "chabengali", - "chadeva", - "chagujarati", - "chagurmukhi", - "chbopomofo", - "cheabkhasiancyrillic", - "checkmark", - "checyrillic", - "chedescenderabkhasiancyrillic", - "chedescendercyrillic", - "chedieresiscyrillic", - "cheharmenian", - "chekhakassiancyrillic", - "cheverticalstrokecyrillic", - "chi", - "chieuchacirclekorean", - "chieuchaparenkorean", - "chieuchcirclekorean", - "chieuchkorean", - "chieuchparenkorean", - "chochangthai", - "chochanthai", - "chochingthai", - "chochoethai", - "chook", - "cieucacirclekorean", - "cieucaparenkorean", - "cieuccirclekorean", - "cieuckorean", - "cieucparenkorean", - "cieucuparenkorean", - "circle", - "circlemultiply", - "circleot", - "circleplus", - "circlepostalmark", - "circlewithlefthalfblack", - "circlewithrighthalfblack", - "circumflexbelowcmb", - "circumflexcmb", - "clear", - "clickalveolar", - "clickdental", - "clicklateral", - "clickretroflex", - "club", - "clubsuitblack", - "clubsuitwhite", - "cmcubedsquare", - "cmonospace", - "cmsquaredsquare", - "coarmenian", - "colonmonospace", - "colonsign", - "colonsmall", - "colontriangularhalfmod", - "colontriangularmod", - "commaabovecmb", - "commaaboverightcmb", - "commaaccent", - "commaarabic", - "commaarmenian", - "commamonospace", - "commareversedabovecmb", - "commareversedmod", - "commasmall", - "commaturnedabovecmb", - "commaturnedmod", - "compass", - "congruent", - "contourintegral", - "control", - "controlACK", - "controlBEL", - "controlBS", - "controlCAN", - "controlCR", - "controlDC1", - "controlDC2", - "controlDC3", - "controlDC4", - "controlDEL", - "controlDLE", - "controlEM", - "controlENQ", - "controlEOT", - "controlESC", - "controlETB", - "controlETX", - "controlFF", - "controlFS", - "controlGS", - "controlHT", - "controlLF", - "controlNAK", - "controlRS", - "controlSI", - "controlSO", - "controlSOT", - "controlSTX", - "controlSUB", - "controlSYN", - "controlUS", - "controlVT", - "copyrightsans", - "copyrightserif", - "cornerbracketleft", - "cornerbracketlefthalfwidth", - "cornerbracketleftvertical", - "cornerbracketright", - "cornerbracketrighthalfwidth", - "cornerbracketrightvertical", - "corporationsquare", - "cosquare", - "coverkgsquare", - "cparen", - "cruzeiro", - "cstretched", - "curlyand", - "curlyor", - "cyrBreve", - "cyrFlex", - "cyrbreve", - "cyrflex", - "daarmenian", - "dabengali", - "dadarabic", - "dadeva", - "dadfinalarabic", - "dadinitialarabic", - "dadmedialarabic", - "dagesh", - "dageshhebrew", - "dagujarati", - "dagurmukhi", - "dahiragana", - "dakatakana", - "dalarabic", - "dalet", - "daletdagesh", - "daletdageshhebrew", - "dalethatafpatah", - "dalethatafpatahhebrew", - "dalethatafsegol", - "dalethatafsegolhebrew", - "dalethebrew", - "dalethiriq", - "dalethiriqhebrew", - "daletholam", - "daletholamhebrew", - "daletpatah", - "daletpatahhebrew", - "daletqamats", - "daletqamatshebrew", - "daletqubuts", - "daletqubutshebrew", - "daletsegol", - "daletsegolhebrew", - "daletsheva", - "daletshevahebrew", - "dalettsere", - "dalettserehebrew", - "dalfinalarabic", - "dammaarabic", - "dammalowarabic", - "dammatanaltonearabic", - "dammatanarabic", - "danda", - "dargahebrew", - "dargalefthebrew", - "dasiapneumatacyrilliccmb", - "dblGrave", - "dblanglebracketleft", - "dblanglebracketleftvertical", - "dblanglebracketright", - "dblanglebracketrightvertical", - "dblarchinvertedbelowcmb", - "dblarrowleft", - "dblarrowright", - "dbldanda", - "dblgrave", - "dblgravecmb", - "dblintegral", - "dbllowline", - "dbllowlinecmb", - "dbloverlinecmb", - "dblprimemod", - "dblverticalbar", - "dblverticallineabovecmb", - "dbopomofo", - "dbsquare", - "dcaron", - "dcedilla", - "dcircle", - "dcircumflexbelow", - "dcroat", - "ddabengali", - "ddadeva", - "ddagujarati", - "ddagurmukhi", - "ddalarabic", - "ddalfinalarabic", - "dddhadeva", - "ddhabengali", - "ddhadeva", - "ddhagujarati", - "ddhagurmukhi", - "ddotaccent", - "ddotbelow", - "decimalseparatorarabic", - "decimalseparatorpersian", - "decyrillic", - "dehihebrew", - "dehiragana", - "deicoptic", - "dekatakana", - "deleteleft", - "deleteright", - "delta", - "deltaturned", - "denominatorminusonenumeratorbengali", - "dezh", - "dhabengali", - "dhadeva", - "dhagujarati", - "dhagurmukhi", - "dhook", - "dialytikatonos", - "dialytikatonoscmb", - "diamond", - "diamondsuitwhite", - "dieresisacute", - "dieresisbelowcmb", - "dieresiscmb", - "dieresisgrave", - "dieresistonos", - "dihiragana", - "dikatakana", - "dittomark", - "divides", - "divisionslash", - "djecyrillic", - "dkshade", - "dlinebelow", - "dlsquare", - "dmacron", - "dmonospace", - "dnblock", - "dochadathai", - "dodekthai", - "dohiragana", - "dokatakana", - "dollarmonospace", - "dollarsmall", - "dong", - "dorusquare", - "dotaccentcmb", - "dotbelowcmb", - "dotbelowcomb", - "dotkatakana", - "dotlessj", - "dotlessjstrokehook", - "dotmath", - "dottedcircle", - "doubleyodpatah", - "doubleyodpatahhebrew", - "downtackbelowcmb", - "downtackmod", - "dparen", - "dtail", - "dtopbar", - "duhiragana", - "dukatakana", - "dz", - "dzaltone", - "dzcaron", - "dzcurl", - "dzeabkhasiancyrillic", - "dzecyrillic", - "dzhecyrillic", - "earth", - "ebengali", - "ebopomofo", - "ebreve", - "ecandradeva", - "ecandragujarati", - "ecandravowelsigndeva", - "ecandravowelsigngujarati", - "ecaron", - "ecedillabreve", - "echarmenian", - "echyiwnarmenian", - "ecircle", - "ecircumflexacute", - "ecircumflexbelow", - "ecircumflexdotbelow", - "ecircumflexgrave", - "ecircumflexhookabove", - "ecircumflextilde", - "ecyrillic", - "edblgrave", - "edeva", - "edot", - "edotaccent", - "edotbelow", - "eegurmukhi", - "eematragurmukhi", - "efcyrillic", - "egujarati", - "eharmenian", - "ehbopomofo", - "ehiragana", - "ehookabove", - "eibopomofo", - "eightarabic", - "eightbengali", - "eightcircle", - "eightcircleinversesansserif", - "eightdeva", - "eighteencircle", - "eighteenparen", - "eighteenperiod", - "eightgujarati", - "eightgurmukhi", - "eighthackarabic", - "eighthangzhou", - "eighthnotebeamed", - "eightideographicparen", - "eightmonospace", - "eightparen", - "eightperiod", - "eightpersian", - "eightroman", - "eightthai", - "einvertedbreve", - "eiotifiedcyrillic", - "ekatakana", - "ekatakanahalfwidth", - "ekonkargurmukhi", - "ekorean", - "elcyrillic", - "element", - "elevencircle", - "elevenparen", - "elevenperiod", - "elevenroman", - "ellipsisvertical", - "emacron", - "emacronacute", - "emacrongrave", - "emcyrillic", - "emdashvertical", - "emonospace", - "emphasismarkarmenian", - "emptyset", - "enbopomofo", - "encyrillic", - "endashvertical", - "endescendercyrillic", - "eng", - "engbopomofo", - "enghecyrillic", - "enhookcyrillic", - "enspace", - "eogonek", - "eokorean", - "eopen", - "eopenclosed", - "eopenreversed", - "eopenreversedclosed", - "eopenreversedhook", - "eparen", - "epsilon", - "epsilontonos", - "equalmonospace", - "equalsmall", - "equalsuperior", - "equivalence", - "erbopomofo", - "ercyrillic", - "ereversed", - "ereversedcyrillic", - "escyrillic", - "esdescendercyrillic", - "esh", - "eshcurl", - "eshortdeva", - "eshortvowelsigndeva", - "eshreversedloop", - "eshsquatreversed", - "esmallhiragana", - "esmallkatakana", - "esmallkatakanahalfwidth", - "estimated", - "eta", - "etarmenian", - "etatonos", - "etilde", - "etildebelow", - "etnahtafoukhhebrew", - "etnahtafoukhlefthebrew", - "etnahtahebrew", - "etnahtalefthebrew", - "eturned", - "eukorean", - "euro", - "evowelsignbengali", - "evowelsigndeva", - "evowelsigngujarati", - "exclamarmenian", - "exclamdbl", - "exclammonospace", - "existential", - "ezh", - "ezhcaron", - "ezhcurl", - "ezhreversed", - "ezhtail", - "fadeva", - "fagurmukhi", - "fahrenheit", - "fathaarabic", - "fathalowarabic", - "fathatanarabic", - "fbopomofo", - "fcircle", - "fdotaccent", - "feharabic", - "feharmenian", - "fehfinalarabic", - "fehinitialarabic", - "fehmedialarabic", - "feicoptic", - "female", - "fifteencircle", - "fifteenparen", - "fifteenperiod", - "filledbox", - "filledrect", - "finalkaf", - "finalkafdagesh", - "finalkafdageshhebrew", - "finalkafhebrew", - "finalkafqamats", - "finalkafqamatshebrew", - "finalkafsheva", - "finalkafshevahebrew", - "finalmem", - "finalmemhebrew", - "finalnun", - "finalnunhebrew", - "finalpe", - "finalpehebrew", - "finaltsadi", - "finaltsadihebrew", - "firsttonechinese", - "fisheye", - "fitacyrillic", - "fivearabic", - "fivebengali", - "fivecircle", - "fivecircleinversesansserif", - "fivedeva", - "fivegujarati", - "fivegurmukhi", - "fivehackarabic", - "fivehangzhou", - "fiveideographicparen", - "fivemonospace", - "fiveparen", - "fiveperiod", - "fivepersian", - "fiveroman", - "fivethai", - "fmonospace", - "fmsquare", - "fofanthai", - "fofathai", - "fongmanthai", - "forall", - "fourarabic", - "fourbengali", - "fourcircle", - "fourcircleinversesansserif", - "fourdeva", - "fourgujarati", - "fourgurmukhi", - "fourhackarabic", - "fourhangzhou", - "fourideographicparen", - "fourmonospace", - "fournumeratorbengali", - "fourparen", - "fourperiod", - "fourpersian", - "fourroman", - "fourteencircle", - "fourteenparen", - "fourteenperiod", - "fourthai", - "fourthtonechinese", - "fparen", - "franc", - "gabengali", - "gacute", - "gadeva", - "gafarabic", - "gaffinalarabic", - "gafinitialarabic", - "gafmedialarabic", - "gagujarati", - "gagurmukhi", - "gahiragana", - "gakatakana", - "gamma", - "gammalatinsmall", - "gammasuperior", - "gangiacoptic", - "gbopomofo", - "gbreve", - "gcaron", - "gcedilla", - "gcircle", - "gcircumflex", - "gcommaaccent", - "gdot", - "gdotaccent", - "gecyrillic", - "gehiragana", - "gekatakana", - "geometricallyequal", - "gereshaccenthebrew", - "gereshhebrew", - "gereshmuqdamhebrew", - "gershayimaccenthebrew", - "gershayimhebrew", - "getamark", - "ghabengali", - "ghadarmenian", - "ghadeva", - "ghagujarati", - "ghagurmukhi", - "ghainarabic", - "ghainfinalarabic", - "ghaininitialarabic", - "ghainmedialarabic", - "ghemiddlehookcyrillic", - "ghestrokecyrillic", - "gheupturncyrillic", - "ghhadeva", - "ghhagurmukhi", - "ghook", - "ghzsquare", - "gihiragana", - "gikatakana", - "gimarmenian", - "gimel", - "gimeldagesh", - "gimeldageshhebrew", - "gimelhebrew", - "gjecyrillic", - "glottalinvertedstroke", - "glottalstop", - "glottalstopinverted", - "glottalstopmod", - "glottalstopreversed", - "glottalstopreversedmod", - "glottalstopreversedsuperior", - "glottalstopstroke", - "glottalstopstrokereversed", - "gmacron", - "gmonospace", - "gohiragana", - "gokatakana", - "gparen", - "gpasquare", - "gradient", - "gravebelowcmb", - "gravecmb", - "gravecomb", - "gravedeva", - "gravelowmod", - "gravemonospace", - "gravetonecmb", - "greaterequal", - "greaterequalorless", - "greatermonospace", - "greaterorequivalent", - "greaterorless", - "greateroverequal", - "greatersmall", - "gscript", - "gstroke", - "guhiragana", - "gukatakana", - "guramusquare", - "gysquare", - "haabkhasiancyrillic", - "haaltonearabic", - "habengali", - "hadescendercyrillic", - "hadeva", - "hagujarati", - "hagurmukhi", - "haharabic", - "hahfinalarabic", - "hahinitialarabic", - "hahiragana", - "hahmedialarabic", - "haitusquare", - "hakatakana", - "hakatakanahalfwidth", - "halantgurmukhi", - "hamzaarabic", - "hamzadammaarabic", - "hamzadammatanarabic", - "hamzafathaarabic", - "hamzafathatanarabic", - "hamzalowarabic", - "hamzalowkasraarabic", - "hamzalowkasratanarabic", - "hamzasukunarabic", - "hangulfiller", - "hardsigncyrillic", - "harpoonleftbarbup", - "harpoonrightbarbup", - "hasquare", - "hatafpatah", - "hatafpatah16", - "hatafpatah23", - "hatafpatah2f", - "hatafpatahhebrew", - "hatafpatahnarrowhebrew", - "hatafpatahquarterhebrew", - "hatafpatahwidehebrew", - "hatafqamats", - "hatafqamats1b", - "hatafqamats28", - "hatafqamats34", - "hatafqamatshebrew", - "hatafqamatsnarrowhebrew", - "hatafqamatsquarterhebrew", - "hatafqamatswidehebrew", - "hatafsegol", - "hatafsegol17", - "hatafsegol24", - "hatafsegol30", - "hatafsegolhebrew", - "hatafsegolnarrowhebrew", - "hatafsegolquarterhebrew", - "hatafsegolwidehebrew", - "hbar", - "hbopomofo", - "hbrevebelow", - "hcedilla", - "hcircle", - "hcircumflex", - "hdieresis", - "hdotaccent", - "hdotbelow", - "he", - "heart", - "heartsuitblack", - "heartsuitwhite", - "hedagesh", - "hedageshhebrew", - "hehaltonearabic", - "heharabic", - "hehebrew", - "hehfinalaltonearabic", - "hehfinalalttwoarabic", - "hehfinalarabic", - "hehhamzaabovefinalarabic", - "hehhamzaaboveisolatedarabic", - "hehinitialaltonearabic", - "hehinitialarabic", - "hehiragana", - "hehmedialaltonearabic", - "hehmedialarabic", - "heiseierasquare", - "hekatakana", - "hekatakanahalfwidth", - "hekutaarusquare", - "henghook", - "herutusquare", - "het", - "hethebrew", - "hhook", - "hhooksuperior", - "hieuhacirclekorean", - "hieuhaparenkorean", - "hieuhcirclekorean", - "hieuhkorean", - "hieuhparenkorean", - "hihiragana", - "hikatakana", - "hikatakanahalfwidth", - "hiriq", - "hiriq14", - "hiriq21", - "hiriq2d", - "hiriqhebrew", - "hiriqnarrowhebrew", - "hiriqquarterhebrew", - "hiriqwidehebrew", - "hlinebelow", - "hmonospace", - "hoarmenian", - "hohipthai", - "hohiragana", - "hokatakana", - "hokatakanahalfwidth", - "holam", - "holam19", - "holam26", - "holam32", - "holamhebrew", - "holamnarrowhebrew", - "holamquarterhebrew", - "holamwidehebrew", - "honokhukthai", - "hookabovecomb", - "hookcmb", - "hookpalatalizedbelowcmb", - "hookretroflexbelowcmb", - "hoonsquare", - "horicoptic", - "horizontalbar", - "horncmb", - "hotsprings", - "house", - "hparen", - "hsuperior", - "hturned", - "huhiragana", - "huiitosquare", - "hukatakana", - "hukatakanahalfwidth", - "hungarumlautcmb", - "hv", - "hyphenmonospace", - "hyphensmall", - "hyphentwo", - "iacyrillic", - "ibengali", - "ibopomofo", - "ibreve", - "icaron", - "icircle", - "icyrillic", - "idblgrave", - "ideographearthcircle", - "ideographfirecircle", - "ideographicallianceparen", - "ideographiccallparen", - "ideographiccentrecircle", - "ideographicclose", - "ideographiccomma", - "ideographiccommaleft", - "ideographiccongratulationparen", - "ideographiccorrectcircle", - "ideographicearthparen", - "ideographicenterpriseparen", - "ideographicexcellentcircle", - "ideographicfestivalparen", - "ideographicfinancialcircle", - "ideographicfinancialparen", - "ideographicfireparen", - "ideographichaveparen", - "ideographichighcircle", - "ideographiciterationmark", - "ideographiclaborcircle", - "ideographiclaborparen", - "ideographicleftcircle", - "ideographiclowcircle", - "ideographicmedicinecircle", - "ideographicmetalparen", - "ideographicmoonparen", - "ideographicnameparen", - "ideographicperiod", - "ideographicprintcircle", - "ideographicreachparen", - "ideographicrepresentparen", - "ideographicresourceparen", - "ideographicrightcircle", - "ideographicsecretcircle", - "ideographicselfparen", - "ideographicsocietyparen", - "ideographicspace", - "ideographicspecialparen", - "ideographicstockparen", - "ideographicstudyparen", - "ideographicsunparen", - "ideographicsuperviseparen", - "ideographicwaterparen", - "ideographicwoodparen", - "ideographiczero", - "ideographmetalcircle", - "ideographmooncircle", - "ideographnamecircle", - "ideographsuncircle", - "ideographwatercircle", - "ideographwoodcircle", - "ideva", - "idieresisacute", - "idieresiscyrillic", - "idotbelow", - "iebrevecyrillic", - "iecyrillic", - "ieungacirclekorean", - "ieungaparenkorean", - "ieungcirclekorean", - "ieungkorean", - "ieungparenkorean", - "igujarati", - "igurmukhi", - "ihiragana", - "ihookabove", - "iibengali", - "iicyrillic", - "iideva", - "iigujarati", - "iigurmukhi", - "iimatragurmukhi", - "iinvertedbreve", - "iishortcyrillic", - "iivowelsignbengali", - "iivowelsigndeva", - "iivowelsigngujarati", - "ij", - "ikatakana", - "ikatakanahalfwidth", - "ikorean", - "ilde", - "iluyhebrew", - "imacron", - "imacroncyrillic", - "imageorapproximatelyequal", - "imatragurmukhi", - "imonospace", - "increment", - "infinity", - "iniarmenian", - "integral", - "integralbottom", - "integralbt", - "integralex", - "integraltop", - "integraltp", - "intersection", - "intisquare", - "invbullet", - "invcircle", - "invsmileface", - "iocyrillic", - "iogonek", - "iota", - "iotadieresis", - "iotadieresistonos", - "iotalatin", - "iotatonos", - "iparen", - "irigurmukhi", - "ismallhiragana", - "ismallkatakana", - "ismallkatakanahalfwidth", - "issharbengali", - "istroke", - "iterationhiragana", - "iterationkatakana", - "itilde", - "itildebelow", - "iubopomofo", - "iucyrillic", - "ivowelsignbengali", - "ivowelsigndeva", - "ivowelsigngujarati", - "izhitsacyrillic", - "izhitsadblgravecyrillic", - "jaarmenian", - "jabengali", - "jadeva", - "jagujarati", - "jagurmukhi", - "jbopomofo", - "jcaron", - "jcircle", - "jcircumflex", - "jcrossedtail", - "jdotlessstroke", - "jecyrillic", - "jeemarabic", - "jeemfinalarabic", - "jeeminitialarabic", - "jeemmedialarabic", - "jeharabic", - "jehfinalarabic", - "jhabengali", - "jhadeva", - "jhagujarati", - "jhagurmukhi", - "jheharmenian", - "jis", - "jmonospace", - "jparen", - "jsuperior", - "kabashkircyrillic", - "kabengali", - "kacute", - "kacyrillic", - "kadescendercyrillic", - "kadeva", - "kaf", - "kafarabic", - "kafdagesh", - "kafdageshhebrew", - "kaffinalarabic", - "kafhebrew", - "kafinitialarabic", - "kafmedialarabic", - "kafrafehebrew", - "kagujarati", - "kagurmukhi", - "kahiragana", - "kahookcyrillic", - "kakatakana", - "kakatakanahalfwidth", - "kappa", - "kappasymbolgreek", - "kapyeounmieumkorean", - "kapyeounphieuphkorean", - "kapyeounpieupkorean", - "kapyeounssangpieupkorean", - "karoriisquare", - "kashidaautoarabic", - "kashidaautonosidebearingarabic", - "kasmallkatakana", - "kasquare", - "kasraarabic", - "kasratanarabic", - "kastrokecyrillic", - "katahiraprolongmarkhalfwidth", - "kaverticalstrokecyrillic", - "kbopomofo", - "kcalsquare", - "kcaron", - "kcedilla", - "kcircle", - "kcommaaccent", - "kdotbelow", - "keharmenian", - "kehiragana", - "kekatakana", - "kekatakanahalfwidth", - "kenarmenian", - "kesmallkatakana", - "kgreenlandic", - "khabengali", - "khacyrillic", - "khadeva", - "khagujarati", - "khagurmukhi", - "khaharabic", - "khahfinalarabic", - "khahinitialarabic", - "khahmedialarabic", - "kheicoptic", - "khhadeva", - "khhagurmukhi", - "khieukhacirclekorean", - "khieukhaparenkorean", - "khieukhcirclekorean", - "khieukhkorean", - "khieukhparenkorean", - "khokhaithai", - "khokhonthai", - "khokhuatthai", - "khokhwaithai", - "khomutthai", - "khook", - "khorakhangthai", - "khzsquare", - "kihiragana", - "kikatakana", - "kikatakanahalfwidth", - "kiroguramusquare", - "kiromeetorusquare", - "kirosquare", - "kiyeokacirclekorean", - "kiyeokaparenkorean", - "kiyeokcirclekorean", - "kiyeokkorean", - "kiyeokparenkorean", - "kiyeoksioskorean", - "kjecyrillic", - "klinebelow", - "klsquare", - "kmcubedsquare", - "kmonospace", - "kmsquaredsquare", - "kohiragana", - "kohmsquare", - "kokaithai", - "kokatakana", - "kokatakanahalfwidth", - "kooposquare", - "koppacyrillic", - "koreanstandardsymbol", - "koroniscmb", - "kparen", - "kpasquare", - "ksicyrillic", - "ktsquare", - "kturned", - "kuhiragana", - "kukatakana", - "kukatakanahalfwidth", - "kvsquare", - "kwsquare", - "labengali", - "lacute", - "ladeva", - "lagujarati", - "lagurmukhi", - "lakkhangyaothai", - "lamaleffinalarabic", - "lamalefhamzaabovefinalarabic", - "lamalefhamzaaboveisolatedarabic", - "lamalefhamzabelowfinalarabic", - "lamalefhamzabelowisolatedarabic", - "lamalefisolatedarabic", - "lamalefmaddaabovefinalarabic", - "lamalefmaddaaboveisolatedarabic", - "lamarabic", - "lambda", - "lambdastroke", - "lamed", - "lameddagesh", - "lameddageshhebrew", - "lamedhebrew", - "lamedholam", - "lamedholamdagesh", - "lamedholamdageshhebrew", - "lamedholamhebrew", - "lamfinalarabic", - "lamhahinitialarabic", - "laminitialarabic", - "lamjeeminitialarabic", - "lamkhahinitialarabic", - "lamlamhehisolatedarabic", - "lammedialarabic", - "lammeemhahinitialarabic", - "lammeeminitialarabic", - "lammeemjeeminitialarabic", - "lammeemkhahinitialarabic", - "largecircle", - "lbar", - "lbelt", - "lbopomofo", - "lcaron", - "lcedilla", - "lcircle", - "lcircumflexbelow", - "lcommaaccent", - "ldot", - "ldotaccent", - "ldotbelow", - "ldotbelowmacron", - "leftangleabovecmb", - "lefttackbelowcmb", - "lessequal", - "lessequalorgreater", - "lessmonospace", - "lessorequivalent", - "lessorgreater", - "lessoverequal", - "lesssmall", - "lezh", - "lfblock", - "lhookretroflex", - "lira", - "liwnarmenian", - "lj", - "ljecyrillic", - "ll", - "lladeva", - "llagujarati", - "llinebelow", - "llladeva", - "llvocalicbengali", - "llvocalicdeva", - "llvocalicvowelsignbengali", - "llvocalicvowelsigndeva", - "lmiddletilde", - "lmonospace", - "lmsquare", - "lochulathai", - "logicaland", - "logicalnotreversed", - "logicalor", - "lolingthai", - "longs", - "lowlinecenterline", - "lowlinecmb", - "lowlinedashed", - "lozenge", - "lparen", - "lsquare", - "ltshade", - "luthai", - "lvocalicbengali", - "lvocalicdeva", - "lvocalicvowelsignbengali", - "lvocalicvowelsigndeva", - "lxsquare", - "mabengali", - "macronbelowcmb", - "macroncmb", - "macronlowmod", - "macronmonospace", - "macute", - "madeva", - "magujarati", - "magurmukhi", - "mahapakhhebrew", - "mahapakhlefthebrew", - "mahiragana", - "maichattawalowleftthai", - "maichattawalowrightthai", - "maichattawathai", - "maichattawaupperleftthai", - "maieklowleftthai", - "maieklowrightthai", - "maiekthai", - "maiekupperleftthai", - "maihanakatleftthai", - "maihanakatthai", - "maitaikhuleftthai", - "maitaikhuthai", - "maitholowleftthai", - "maitholowrightthai", - "maithothai", - "maithoupperleftthai", - "maitrilowleftthai", - "maitrilowrightthai", - "maitrithai", - "maitriupperleftthai", - "maiyamokthai", - "makatakana", - "makatakanahalfwidth", - "male", - "mansyonsquare", - "maqafhebrew", - "mars", - "masoracirclehebrew", - "masquare", - "mbopomofo", - "mbsquare", - "mcircle", - "mcubedsquare", - "mdotaccent", - "mdotbelow", - "meemarabic", - "meemfinalarabic", - "meeminitialarabic", - "meemmedialarabic", - "meemmeeminitialarabic", - "meemmeemisolatedarabic", - "meetorusquare", - "mehiragana", - "meizierasquare", - "mekatakana", - "mekatakanahalfwidth", - "mem", - "memdagesh", - "memdageshhebrew", - "memhebrew", - "menarmenian", - "merkhahebrew", - "merkhakefulahebrew", - "merkhakefulalefthebrew", - "merkhalefthebrew", - "mhook", - "mhzsquare", - "middledotkatakanahalfwidth", - "middot", - "mieumacirclekorean", - "mieumaparenkorean", - "mieumcirclekorean", - "mieumkorean", - "mieumpansioskorean", - "mieumparenkorean", - "mieumpieupkorean", - "mieumsioskorean", - "mihiragana", - "mikatakana", - "mikatakanahalfwidth", - "minusbelowcmb", - "minuscircle", - "minusmod", - "minusplus", - "minute", - "miribaarusquare", - "mirisquare", - "mlonglegturned", - "mlsquare", - "mmcubedsquare", - "mmonospace", - "mmsquaredsquare", - "mohiragana", - "mohmsquare", - "mokatakana", - "mokatakanahalfwidth", - "molsquare", - "momathai", - "moverssquare", - "moverssquaredsquare", - "mparen", - "mpasquare", - "mssquare", - "mturned", - "mu1", - "muasquare", - "muchgreater", - "muchless", - "mufsquare", - "mugreek", - "mugsquare", - "muhiragana", - "mukatakana", - "mukatakanahalfwidth", - "mulsquare", - "mumsquare", - "munahhebrew", - "munahlefthebrew", - "musicalnote", - "musicalnotedbl", - "musicflatsign", - "musicsharpsign", - "mussquare", - "muvsquare", - "muwsquare", - "mvmegasquare", - "mvsquare", - "mwmegasquare", - "mwsquare", - "nabengali", - "nabla", - "nacute", - "nadeva", - "nagujarati", - "nagurmukhi", - "nahiragana", - "nakatakana", - "nakatakanahalfwidth", - "napostrophe", - "nasquare", - "nbopomofo", - "nbspace", - "ncaron", - "ncedilla", - "ncircle", - "ncircumflexbelow", - "ncommaaccent", - "ndotaccent", - "ndotbelow", - "nehiragana", - "nekatakana", - "nekatakanahalfwidth", - "newsheqelsign", - "nfsquare", - "ngabengali", - "ngadeva", - "ngagujarati", - "ngagurmukhi", - "ngonguthai", - "nhiragana", - "nhookleft", - "nhookretroflex", - "nieunacirclekorean", - "nieunaparenkorean", - "nieuncieuckorean", - "nieuncirclekorean", - "nieunhieuhkorean", - "nieunkorean", - "nieunpansioskorean", - "nieunparenkorean", - "nieunsioskorean", - "nieuntikeutkorean", - "nihiragana", - "nikatakana", - "nikatakanahalfwidth", - "nikhahitleftthai", - "nikhahitthai", - "ninearabic", - "ninebengali", - "ninecircle", - "ninecircleinversesansserif", - "ninedeva", - "ninegujarati", - "ninegurmukhi", - "ninehackarabic", - "ninehangzhou", - "nineideographicparen", - "ninemonospace", - "nineparen", - "nineperiod", - "ninepersian", - "nineroman", - "nineteencircle", - "nineteenparen", - "nineteenperiod", - "ninethai", - "nj", - "njecyrillic", - "nkatakana", - "nkatakanahalfwidth", - "nlegrightlong", - "nlinebelow", - "nmonospace", - "nmsquare", - "nnabengali", - "nnadeva", - "nnagujarati", - "nnagurmukhi", - "nnnadeva", - "nohiragana", - "nokatakana", - "nokatakanahalfwidth", - "nonbreakingspace", - "nonenthai", - "nonuthai", - "noonarabic", - "noonfinalarabic", - "noonghunnaarabic", - "noonghunnafinalarabic", - "noonhehinitialarabic", - "nooninitialarabic", - "noonjeeminitialarabic", - "noonjeemisolatedarabic", - "noonmedialarabic", - "noonmeeminitialarabic", - "noonmeemisolatedarabic", - "noonnoonfinalarabic", - "notcontains", - "notelement", - "notelementof", - "notequal", - "notgreater", - "notgreaternorequal", - "notgreaternorless", - "notidentical", - "notless", - "notlessnorequal", - "notparallel", - "notprecedes", - "notsubset", - "notsucceeds", - "notsuperset", - "nowarmenian", - "nparen", - "nssquare", - "nu", - "nuhiragana", - "nukatakana", - "nukatakanahalfwidth", - "nuktabengali", - "nuktadeva", - "nuktagujarati", - "nuktagurmukhi", - "numbersignmonospace", - "numbersignsmall", - "numeralsigngreek", - "numeralsignlowergreek", - "numero", - "nun", - "nundagesh", - "nundageshhebrew", - "nunhebrew", - "nvsquare", - "nwsquare", - "nyabengali", - "nyadeva", - "nyagujarati", - "nyagurmukhi", - "oangthai", - "obarred", - "obarredcyrillic", - "obarreddieresiscyrillic", - "obengali", - "obopomofo", - "obreve", - "ocandradeva", - "ocandragujarati", - "ocandravowelsigndeva", - "ocandravowelsigngujarati", - "ocaron", - "ocircle", - "ocircumflexacute", - "ocircumflexdotbelow", - "ocircumflexgrave", - "ocircumflexhookabove", - "ocircumflextilde", - "ocyrillic", - "odblacute", - "odblgrave", - "odeva", - "odieresiscyrillic", - "odotbelow", - "oekorean", - "ogonekcmb", - "ogujarati", - "oharmenian", - "ohiragana", - "ohookabove", - "ohorn", - "ohornacute", - "ohorndotbelow", - "ohorngrave", - "ohornhookabove", - "ohorntilde", - "ohungarumlaut", - "oi", - "oinvertedbreve", - "okatakana", - "okatakanahalfwidth", - "okorean", - "olehebrew", - "omacron", - "omacronacute", - "omacrongrave", - "omdeva", - "omega", - "omega1", - "omegacyrillic", - "omegalatinclosed", - "omegaroundcyrillic", - "omegatitlocyrillic", - "omegatonos", - "omgujarati", - "omicron", - "omicrontonos", - "omonospace", - "onearabic", - "onebengali", - "onecircle", - "onecircleinversesansserif", - "onedeva", - "onegujarati", - "onegurmukhi", - "onehackarabic", - "onehangzhou", - "oneideographicparen", - "onemonospace", - "onenumeratorbengali", - "oneparen", - "oneperiod", - "onepersian", - "oneroman", - "onethai", - "oogonek", - "oogonekmacron", - "oogurmukhi", - "oomatragurmukhi", - "oopen", - "oparen", - "openbullet", - "option", - "orthogonal", - "oshortdeva", - "oshortvowelsigndeva", - "oslashacute", - "osmallhiragana", - "osmallkatakana", - "osmallkatakanahalfwidth", - "ostrokeacute", - "otcyrillic", - "otildeacute", - "otildedieresis", - "oubopomofo", - "overline", - "overlinecenterline", - "overlinecmb", - "overlinedashed", - "overlinedblwavy", - "overlinewavy", - "overscore", - "ovowelsignbengali", - "ovowelsigndeva", - "ovowelsigngujarati", - "paampssquare", - "paasentosquare", - "pabengali", - "pacute", - "padeva", - "pagedown", - "pageup", - "pagujarati", - "pagurmukhi", - "pahiragana", - "paiyannoithai", - "pakatakana", - "palatalizationcyrilliccmb", - "palochkacyrillic", - "pansioskorean", - "parallel", - "parenleftaltonearabic", - "parenleftbt", - "parenleftex", - "parenleftmonospace", - "parenleftsmall", - "parenlefttp", - "parenleftvertical", - "parenrightaltonearabic", - "parenrightbt", - "parenrightex", - "parenrightmonospace", - "parenrightsmall", - "parenrighttp", - "parenrightvertical", - "partialdiff", - "paseqhebrew", - "pashtahebrew", - "pasquare", - "patah", - "patah11", - "patah1d", - "patah2a", - "patahhebrew", - "patahnarrowhebrew", - "patahquarterhebrew", - "patahwidehebrew", - "pazerhebrew", - "pbopomofo", - "pcircle", - "pdotaccent", - "pe", - "pecyrillic", - "pedagesh", - "pedageshhebrew", - "peezisquare", - "pefinaldageshhebrew", - "peharabic", - "peharmenian", - "pehebrew", - "pehfinalarabic", - "pehinitialarabic", - "pehiragana", - "pehmedialarabic", - "pekatakana", - "pemiddlehookcyrillic", - "perafehebrew", - "percentarabic", - "percentmonospace", - "percentsmall", - "periodarmenian", - "periodhalfwidth", - "periodmonospace", - "periodsmall", - "perispomenigreekcmb", - "perpendicular", - "peseta", - "pfsquare", - "phabengali", - "phadeva", - "phagujarati", - "phagurmukhi", - "phi", - "phi1", - "phieuphacirclekorean", - "phieuphaparenkorean", - "phieuphcirclekorean", - "phieuphkorean", - "phieuphparenkorean", - "philatin", - "phinthuthai", - "phisymbolgreek", - "phook", - "phophanthai", - "phophungthai", - "phosamphaothai", - "pi", - "pieupacirclekorean", - "pieupaparenkorean", - "pieupcieuckorean", - "pieupcirclekorean", - "pieupkiyeokkorean", - "pieupkorean", - "pieupparenkorean", - "pieupsioskiyeokkorean", - "pieupsioskorean", - "pieupsiostikeutkorean", - "pieupthieuthkorean", - "pieuptikeutkorean", - "pihiragana", - "pikatakana", - "pisymbolgreek", - "piwrarmenian", - "plusbelowcmb", - "pluscircle", - "plusmod", - "plusmonospace", - "plussmall", - "plussuperior", - "pmonospace", - "pmsquare", - "pohiragana", - "pointingindexdownwhite", - "pointingindexleftwhite", - "pointingindexrightwhite", - "pointingindexupwhite", - "pokatakana", - "poplathai", - "postalmark", - "postalmarkface", - "pparen", - "precedes", - "prescription", - "primemod", - "primereversed", - "product", - "projective", - "prolongedkana", - "propellor", - "propersubset", - "propersuperset", - "proportion", - "proportional", - "psi", - "psicyrillic", - "psilipneumatacyrilliccmb", - "pssquare", - "puhiragana", - "pukatakana", - "pvsquare", - "pwsquare", - "qadeva", - "qadmahebrew", - "qafarabic", - "qaffinalarabic", - "qafinitialarabic", - "qafmedialarabic", - "qamats", - "qamats10", - "qamats1a", - "qamats1c", - "qamats27", - "qamats29", - "qamats33", - "qamatsde", - "qamatshebrew", - "qamatsnarrowhebrew", - "qamatsqatanhebrew", - "qamatsqatannarrowhebrew", - "qamatsqatanquarterhebrew", - "qamatsqatanwidehebrew", - "qamatsquarterhebrew", - "qamatswidehebrew", - "qarneyparahebrew", - "qbopomofo", - "qcircle", - "qhook", - "qmonospace", - "qof", - "qofdagesh", - "qofdageshhebrew", - "qofhatafpatah", - "qofhatafpatahhebrew", - "qofhatafsegol", - "qofhatafsegolhebrew", - "qofhebrew", - "qofhiriq", - "qofhiriqhebrew", - "qofholam", - "qofholamhebrew", - "qofpatah", - "qofpatahhebrew", - "qofqamats", - "qofqamatshebrew", - "qofqubuts", - "qofqubutshebrew", - "qofsegol", - "qofsegolhebrew", - "qofsheva", - "qofshevahebrew", - "qoftsere", - "qoftserehebrew", - "qparen", - "quarternote", - "qubuts", - "qubuts18", - "qubuts25", - "qubuts31", - "qubutshebrew", - "qubutsnarrowhebrew", - "qubutsquarterhebrew", - "qubutswidehebrew", - "questionarabic", - "questionarmenian", - "questiongreek", - "questionmonospace", - "quotedblmonospace", - "quotedblprime", - "quotedblprimereversed", - "quoteleftreversed", - "quotereversed", - "quoterightn", - "quotesinglemonospace", - "raarmenian", - "rabengali", - "racute", - "radeva", - "radical", - "radicalex", - "radoverssquare", - "radoverssquaredsquare", - "radsquare", - "rafe", - "rafehebrew", - "ragujarati", - "ragurmukhi", - "rahiragana", - "rakatakana", - "rakatakanahalfwidth", - "ralowerdiagonalbengali", - "ramiddlediagonalbengali", - "ramshorn", - "ratio", - "rbopomofo", - "rcaron", - "rcedilla", - "rcircle", - "rcommaaccent", - "rdblgrave", - "rdotaccent", - "rdotbelow", - "rdotbelowmacron", - "referencemark", - "reflexsubset", - "reflexsuperset", - "registersans", - "registerserif", - "reharabic", - "reharmenian", - "rehfinalarabic", - "rehiragana", - "rehyehaleflamarabic", - "rekatakana", - "rekatakanahalfwidth", - "resh", - "reshdageshhebrew", - "reshhatafpatah", - "reshhatafpatahhebrew", - "reshhatafsegol", - "reshhatafsegolhebrew", - "reshhebrew", - "reshhiriq", - "reshhiriqhebrew", - "reshholam", - "reshholamhebrew", - "reshpatah", - "reshpatahhebrew", - "reshqamats", - "reshqamatshebrew", - "reshqubuts", - "reshqubutshebrew", - "reshsegol", - "reshsegolhebrew", - "reshsheva", - "reshshevahebrew", - "reshtsere", - "reshtserehebrew", - "reversedtilde", - "reviahebrew", - "reviamugrashhebrew", - "revlogicalnot", - "rfishhook", - "rfishhookreversed", - "rhabengali", - "rhadeva", - "rho", - "rhook", - "rhookturned", - "rhookturnedsuperior", - "rhosymbolgreek", - "rhotichookmod", - "rieulacirclekorean", - "rieulaparenkorean", - "rieulcirclekorean", - "rieulhieuhkorean", - "rieulkiyeokkorean", - "rieulkiyeoksioskorean", - "rieulkorean", - "rieulmieumkorean", - "rieulpansioskorean", - "rieulparenkorean", - "rieulphieuphkorean", - "rieulpieupkorean", - "rieulpieupsioskorean", - "rieulsioskorean", - "rieulthieuthkorean", - "rieultikeutkorean", - "rieulyeorinhieuhkorean", - "rightangle", - "righttackbelowcmb", - "righttriangle", - "rihiragana", - "rikatakana", - "rikatakanahalfwidth", - "ringbelowcmb", - "ringcmb", - "ringhalfleft", - "ringhalfleftarmenian", - "ringhalfleftbelowcmb", - "ringhalfleftcentered", - "ringhalfright", - "ringhalfrightbelowcmb", - "ringhalfrightcentered", - "rinvertedbreve", - "rittorusquare", - "rlinebelow", - "rlongleg", - "rlonglegturned", - "rmonospace", - "rohiragana", - "rokatakana", - "rokatakanahalfwidth", - "roruathai", - "rparen", - "rrabengali", - "rradeva", - "rragurmukhi", - "rreharabic", - "rrehfinalarabic", - "rrvocalicbengali", - "rrvocalicdeva", - "rrvocalicgujarati", - "rrvocalicvowelsignbengali", - "rrvocalicvowelsigndeva", - "rrvocalicvowelsigngujarati", - "rtblock", - "rturned", - "rturnedsuperior", - "ruhiragana", - "rukatakana", - "rukatakanahalfwidth", - "rupeemarkbengali", - "rupeesignbengali", - "ruthai", - "rvocalicbengali", - "rvocalicdeva", - "rvocalicgujarati", - "rvocalicvowelsignbengali", - "rvocalicvowelsigndeva", - "rvocalicvowelsigngujarati", - "sabengali", - "sacute", - "sacutedotaccent", - "sadarabic", - "sadeva", - "sadfinalarabic", - "sadinitialarabic", - "sadmedialarabic", - "sagujarati", - "sagurmukhi", - "sahiragana", - "sakatakana", - "sakatakanahalfwidth", - "sallallahoualayhewasallamarabic", - "samekh", - "samekhdagesh", - "samekhdageshhebrew", - "samekhhebrew", - "saraaathai", - "saraaethai", - "saraaimaimalaithai", - "saraaimaimuanthai", - "saraamthai", - "saraathai", - "saraethai", - "saraiileftthai", - "saraiithai", - "saraileftthai", - "saraithai", - "saraothai", - "saraueeleftthai", - "saraueethai", - "saraueleftthai", - "sarauethai", - "sarauthai", - "sarauuthai", - "sbopomofo", - "scarondotaccent", - "scedilla", - "schwa", - "schwacyrillic", - "schwadieresiscyrillic", - "schwahook", - "scircle", - "scircumflex", - "scommaaccent", - "sdotaccent", - "sdotbelow", - "sdotbelowdotaccent", - "seagullbelowcmb", - "second", - "secondtonechinese", - "seenarabic", - "seenfinalarabic", - "seeninitialarabic", - "seenmedialarabic", - "segol", - "segol13", - "segol1f", - "segol2c", - "segolhebrew", - "segolnarrowhebrew", - "segolquarterhebrew", - "segoltahebrew", - "segolwidehebrew", - "seharmenian", - "sehiragana", - "sekatakana", - "sekatakanahalfwidth", - "semicolonarabic", - "semicolonmonospace", - "semicolonsmall", - "semivoicedmarkkana", - "semivoicedmarkkanahalfwidth", - "sentisquare", - "sentosquare", - "sevenarabic", - "sevenbengali", - "sevencircle", - "sevencircleinversesansserif", - "sevendeva", - "sevengujarati", - "sevengurmukhi", - "sevenhackarabic", - "sevenhangzhou", - "sevenideographicparen", - "sevenmonospace", - "sevenparen", - "sevenperiod", - "sevenpersian", - "sevenroman", - "seventeencircle", - "seventeenparen", - "seventeenperiod", - "seventhai", - "sfthyphen", - "shaarmenian", - "shabengali", - "shacyrillic", - "shaddaarabic", - "shaddadammaarabic", - "shaddadammatanarabic", - "shaddafathaarabic", - "shaddafathatanarabic", - "shaddakasraarabic", - "shaddakasratanarabic", - "shade", - "shadedark", - "shadelight", - "shademedium", - "shadeva", - "shagujarati", - "shagurmukhi", - "shalshelethebrew", - "shbopomofo", - "shchacyrillic", - "sheenarabic", - "sheenfinalarabic", - "sheeninitialarabic", - "sheenmedialarabic", - "sheicoptic", - "sheqel", - "sheqelhebrew", - "sheva", - "sheva115", - "sheva15", - "sheva22", - "sheva2e", - "shevahebrew", - "shevanarrowhebrew", - "shevaquarterhebrew", - "shevawidehebrew", - "shhacyrillic", - "shimacoptic", - "shin", - "shindagesh", - "shindageshhebrew", - "shindageshshindot", - "shindageshshindothebrew", - "shindageshsindot", - "shindageshsindothebrew", - "shindothebrew", - "shinhebrew", - "shinshindot", - "shinshindothebrew", - "shinsindot", - "shinsindothebrew", - "shook", - "sigma", - "sigma1", - "sigmafinal", - "sigmalunatesymbolgreek", - "sihiragana", - "sikatakana", - "sikatakanahalfwidth", - "siluqhebrew", - "siluqlefthebrew", - "similar", - "sindothebrew", - "siosacirclekorean", - "siosaparenkorean", - "sioscieuckorean", - "sioscirclekorean", - "sioskiyeokkorean", - "sioskorean", - "siosnieunkorean", - "siosparenkorean", - "siospieupkorean", - "siostikeutkorean", - "sixarabic", - "sixbengali", - "sixcircle", - "sixcircleinversesansserif", - "sixdeva", - "sixgujarati", - "sixgurmukhi", - "sixhackarabic", - "sixhangzhou", - "sixideographicparen", - "sixmonospace", - "sixparen", - "sixperiod", - "sixpersian", - "sixroman", - "sixteencircle", - "sixteencurrencydenominatorbengali", - "sixteenparen", - "sixteenperiod", - "sixthai", - "slashmonospace", - "slong", - "slongdotaccent", - "smileface", - "smonospace", - "sofpasuqhebrew", - "softhyphen", - "softsigncyrillic", - "sohiragana", - "sokatakana", - "sokatakanahalfwidth", - "soliduslongoverlaycmb", - "solidusshortoverlaycmb", - "sorusithai", - "sosalathai", - "sosothai", - "sosuathai", - "spacehackarabic", - "spade", - "spadesuitblack", - "spadesuitwhite", - "sparen", - "squarebelowcmb", - "squarecc", - "squarecm", - "squarediagonalcrosshatchfill", - "squarehorizontalfill", - "squarekg", - "squarekm", - "squarekmcapital", - "squareln", - "squarelog", - "squaremg", - "squaremil", - "squaremm", - "squaremsquared", - "squareorthogonalcrosshatchfill", - "squareupperlefttolowerrightfill", - "squareupperrighttolowerleftfill", - "squareverticalfill", - "squarewhitewithsmallblack", - "srsquare", - "ssabengali", - "ssadeva", - "ssagujarati", - "ssangcieuckorean", - "ssanghieuhkorean", - "ssangieungkorean", - "ssangkiyeokkorean", - "ssangnieunkorean", - "ssangpieupkorean", - "ssangsioskorean", - "ssangtikeutkorean", - "sterlingmonospace", - "strokelongoverlaycmb", - "strokeshortoverlaycmb", - "subset", - "subsetnotequal", - "subsetorequal", - "succeeds", - "suchthat", - "suhiragana", - "sukatakana", - "sukatakanahalfwidth", - "sukunarabic", - "summation", - "sun", - "superset", - "supersetnotequal", - "supersetorequal", - "svsquare", - "syouwaerasquare", - "tabengali", - "tackdown", - "tackleft", - "tadeva", - "tagujarati", - "tagurmukhi", - "taharabic", - "tahfinalarabic", - "tahinitialarabic", - "tahiragana", - "tahmedialarabic", - "taisyouerasquare", - "takatakana", - "takatakanahalfwidth", - "tatweelarabic", - "tau", - "tav", - "tavdages", - "tavdagesh", - "tavdageshhebrew", - "tavhebrew", - "tbar", - "tbopomofo", - "tcaron", - "tccurl", - "tcedilla", - "tcheharabic", - "tchehfinalarabic", - "tchehinitialarabic", - "tchehmedialarabic", - "tchehmeeminitialarabic", - "tcircle", - "tcircumflexbelow", - "tcommaaccent", - "tdieresis", - "tdotaccent", - "tdotbelow", - "tecyrillic", - "tedescendercyrillic", - "teharabic", - "tehfinalarabic", - "tehhahinitialarabic", - "tehhahisolatedarabic", - "tehinitialarabic", - "tehiragana", - "tehjeeminitialarabic", - "tehjeemisolatedarabic", - "tehmarbutaarabic", - "tehmarbutafinalarabic", - "tehmedialarabic", - "tehmeeminitialarabic", - "tehmeemisolatedarabic", - "tehnoonfinalarabic", - "tekatakana", - "tekatakanahalfwidth", - "telephone", - "telephoneblack", - "telishagedolahebrew", - "telishaqetanahebrew", - "tencircle", - "tenideographicparen", - "tenparen", - "tenperiod", - "tenroman", - "tesh", - "tet", - "tetdagesh", - "tetdageshhebrew", - "tethebrew", - "tetsecyrillic", - "tevirhebrew", - "tevirlefthebrew", - "thabengali", - "thadeva", - "thagujarati", - "thagurmukhi", - "thalarabic", - "thalfinalarabic", - "thanthakhatlowleftthai", - "thanthakhatlowrightthai", - "thanthakhatthai", - "thanthakhatupperleftthai", - "theharabic", - "thehfinalarabic", - "thehinitialarabic", - "thehmedialarabic", - "thereexists", - "therefore", - "theta", - "theta1", - "thetasymbolgreek", - "thieuthacirclekorean", - "thieuthaparenkorean", - "thieuthcirclekorean", - "thieuthkorean", - "thieuthparenkorean", - "thirteencircle", - "thirteenparen", - "thirteenperiod", - "thonangmonthothai", - "thook", - "thophuthaothai", - "thothahanthai", - "thothanthai", - "thothongthai", - "thothungthai", - "thousandcyrillic", - "thousandsseparatorarabic", - "thousandsseparatorpersian", - "threearabic", - "threebengali", - "threecircle", - "threecircleinversesansserif", - "threedeva", - "threegujarati", - "threegurmukhi", - "threehackarabic", - "threehangzhou", - "threeideographicparen", - "threemonospace", - "threenumeratorbengali", - "threeparen", - "threeperiod", - "threepersian", - "threeroman", - "threethai", - "thzsquare", - "tihiragana", - "tikatakana", - "tikatakanahalfwidth", - "tikeutacirclekorean", - "tikeutaparenkorean", - "tikeutcirclekorean", - "tikeutkorean", - "tikeutparenkorean", - "tildebelowcmb", - "tildecmb", - "tildecomb", - "tildedoublecmb", - "tildeoperator", - "tildeoverlaycmb", - "tildeverticalcmb", - "timescircle", - "tipehahebrew", - "tipehalefthebrew", - "tippigurmukhi", - "titlocyrilliccmb", - "tiwnarmenian", - "tlinebelow", - "tmonospace", - "toarmenian", - "tohiragana", - "tokatakana", - "tokatakanahalfwidth", - "tonebarextrahighmod", - "tonebarextralowmod", - "tonebarhighmod", - "tonebarlowmod", - "tonebarmidmod", - "tonefive", - "tonesix", - "tonetwo", - "tonos", - "tonsquare", - "topatakthai", - "tortoiseshellbracketleft", - "tortoiseshellbracketleftsmall", - "tortoiseshellbracketleftvertical", - "tortoiseshellbracketright", - "tortoiseshellbracketrightsmall", - "tortoiseshellbracketrightvertical", - "totaothai", - "tpalatalhook", - "tparen", - "trademarksans", - "trademarkserif", - "tretroflexhook", - "triagdn", - "triaglf", - "triagrt", - "triagup", - "ts", - "tsadi", - "tsadidagesh", - "tsadidageshhebrew", - "tsadihebrew", - "tsecyrillic", - "tsere", - "tsere12", - "tsere1e", - "tsere2b", - "tserehebrew", - "tserenarrowhebrew", - "tserequarterhebrew", - "tserewidehebrew", - "tshecyrillic", - "ttabengali", - "ttadeva", - "ttagujarati", - "ttagurmukhi", - "tteharabic", - "ttehfinalarabic", - "ttehinitialarabic", - "ttehmedialarabic", - "tthabengali", - "tthadeva", - "tthagujarati", - "tthagurmukhi", - "tturned", - "tuhiragana", - "tukatakana", - "tukatakanahalfwidth", - "tusmallhiragana", - "tusmallkatakana", - "tusmallkatakanahalfwidth", - "twelvecircle", - "twelveparen", - "twelveperiod", - "twelveroman", - "twentycircle", - "twentyhangzhou", - "twentyparen", - "twentyperiod", - "twoarabic", - "twobengali", - "twocircle", - "twocircleinversesansserif", - "twodeva", - "twodotleader", - "twodotleadervertical", - "twogujarati", - "twogurmukhi", - "twohackarabic", - "twohangzhou", - "twoideographicparen", - "twomonospace", - "twonumeratorbengali", - "twoparen", - "twoperiod", - "twopersian", - "tworoman", - "twostroke", - "twothai", - "ubar", - "ubengali", - "ubopomofo", - "ubreve", - "ucaron", - "ucircle", - "ucircumflexbelow", - "ucyrillic", - "udattadeva", - "udblacute", - "udblgrave", - "udeva", - "udieresisacute", - "udieresisbelow", - "udieresiscaron", - "udieresiscyrillic", - "udieresisgrave", - "udieresismacron", - "udotbelow", - "ugujarati", - "ugurmukhi", - "uhiragana", - "uhookabove", - "uhorn", - "uhornacute", - "uhorndotbelow", - "uhorngrave", - "uhornhookabove", - "uhorntilde", - "uhungarumlaut", - "uhungarumlautcyrillic", - "uinvertedbreve", - "ukatakana", - "ukatakanahalfwidth", - "ukcyrillic", - "ukorean", - "umacron", - "umacroncyrillic", - "umacrondieresis", - "umatragurmukhi", - "umonospace", - "underscoredbl", - "underscoremonospace", - "underscorevertical", - "underscorewavy", - "union", - "universal", - "uogonek", - "uparen", - "upblock", - "upperdothebrew", - "upsilon", - "upsilondieresis", - "upsilondieresistonos", - "upsilonlatin", - "upsilontonos", - "uptackbelowcmb", - "uptackmod", - "uragurmukhi", - "uring", - "ushortcyrillic", - "usmallhiragana", - "usmallkatakana", - "usmallkatakanahalfwidth", - "ustraightcyrillic", - "ustraightstrokecyrillic", - "utilde", - "utildeacute", - "utildebelow", - "uubengali", - "uudeva", - "uugujarati", - "uugurmukhi", - "uumatragurmukhi", - "uuvowelsignbengali", - "uuvowelsigndeva", - "uuvowelsigngujarati", - "uvowelsignbengali", - "uvowelsigndeva", - "uvowelsigngujarati", - "vadeva", - "vagujarati", - "vagurmukhi", - "vakatakana", - "vav", - "vavdagesh", - "vavdagesh65", - "vavdageshhebrew", - "vavhebrew", - "vavholam", - "vavholamhebrew", - "vavvavhebrew", - "vavyodhebrew", - "vcircle", - "vdotbelow", - "vecyrillic", - "veharabic", - "vehfinalarabic", - "vehinitialarabic", - "vehmedialarabic", - "vekatakana", - "venus", - "verticalbar", - "verticallineabovecmb", - "verticallinebelowcmb", - "verticallinelowmod", - "verticallinemod", - "vewarmenian", - "vhook", - "vikatakana", - "viramabengali", - "viramadeva", - "viramagujarati", - "visargabengali", - "visargadeva", - "visargagujarati", - "vmonospace", - "voarmenian", - "voicediterationhiragana", - "voicediterationkatakana", - "voicedmarkkana", - "voicedmarkkanahalfwidth", - "vokatakana", - "vparen", - "vtilde", - "vturned", - "vuhiragana", - "vukatakana", - "wacute", - "waekorean", - "wahiragana", - "wakatakana", - "wakatakanahalfwidth", - "wakorean", - "wasmallhiragana", - "wasmallkatakana", - "wattosquare", - "wavedash", - "wavyunderscorevertical", - "wawarabic", - "wawfinalarabic", - "wawhamzaabovearabic", - "wawhamzaabovefinalarabic", - "wbsquare", - "wcircle", - "wcircumflex", - "wdieresis", - "wdotaccent", - "wdotbelow", - "wehiragana", - "weierstrass", - "wekatakana", - "wekorean", - "weokorean", - "wgrave", - "whitebullet", - "whitecircle", - "whitecircleinverse", - "whitecornerbracketleft", - "whitecornerbracketleftvertical", - "whitecornerbracketright", - "whitecornerbracketrightvertical", - "whitediamond", - "whitediamondcontainingblacksmalldiamond", - "whitedownpointingsmalltriangle", - "whitedownpointingtriangle", - "whiteleftpointingsmalltriangle", - "whiteleftpointingtriangle", - "whitelenticularbracketleft", - "whitelenticularbracketright", - "whiterightpointingsmalltriangle", - "whiterightpointingtriangle", - "whitesmallsquare", - "whitesmilingface", - "whitesquare", - "whitestar", - "whitetelephone", - "whitetortoiseshellbracketleft", - "whitetortoiseshellbracketright", - "whiteuppointingsmalltriangle", - "whiteuppointingtriangle", - "wihiragana", - "wikatakana", - "wikorean", - "wmonospace", - "wohiragana", - "wokatakana", - "wokatakanahalfwidth", - "won", - "wonmonospace", - "wowaenthai", - "wparen", - "wring", - "wsuperior", - "wturned", - "wynn", - "xabovecmb", - "xbopomofo", - "xcircle", - "xdieresis", - "xdotaccent", - "xeharmenian", - "xi", - "xmonospace", - "xparen", - "xsuperior", - "yaadosquare", - "yabengali", - "yadeva", - "yaekorean", - "yagujarati", - "yagurmukhi", - "yahiragana", - "yakatakana", - "yakatakanahalfwidth", - "yakorean", - "yamakkanthai", - "yasmallhiragana", - "yasmallkatakana", - "yasmallkatakanahalfwidth", - "yatcyrillic", - "ycircle", - "ycircumflex", - "ydotaccent", - "ydotbelow", - "yeharabic", - "yehbarreearabic", - "yehbarreefinalarabic", - "yehfinalarabic", - "yehhamzaabovearabic", - "yehhamzaabovefinalarabic", - "yehhamzaaboveinitialarabic", - "yehhamzaabovemedialarabic", - "yehinitialarabic", - "yehmedialarabic", - "yehmeeminitialarabic", - "yehmeemisolatedarabic", - "yehnoonfinalarabic", - "yehthreedotsbelowarabic", - "yekorean", - "yenmonospace", - "yeokorean", - "yeorinhieuhkorean", - "yerahbenyomohebrew", - "yerahbenyomolefthebrew", - "yericyrillic", - "yerudieresiscyrillic", - "yesieungkorean", - "yesieungpansioskorean", - "yesieungsioskorean", - "yetivhebrew", - "ygrave", - "yhook", - "yhookabove", - "yiarmenian", - "yicyrillic", - "yikorean", - "yinyang", - "yiwnarmenian", - "ymonospace", - "yod", - "yoddagesh", - "yoddageshhebrew", - "yodhebrew", - "yodyodhebrew", - "yodyodpatahhebrew", - "yohiragana", - "yoikorean", - "yokatakana", - "yokatakanahalfwidth", - "yokorean", - "yosmallhiragana", - "yosmallkatakana", - "yosmallkatakanahalfwidth", - "yotgreek", - "yoyaekorean", - "yoyakorean", - "yoyakthai", - "yoyingthai", - "yparen", - "ypogegrammeni", - "ypogegrammenigreekcmb", - "yr", - "yring", - "ysuperior", - "ytilde", - "yturned", - "yuhiragana", - "yuikorean", - "yukatakana", - "yukatakanahalfwidth", - "yukorean", - "yusbigcyrillic", - "yusbigiotifiedcyrillic", - "yuslittlecyrillic", - "yuslittleiotifiedcyrillic", - "yusmallhiragana", - "yusmallkatakana", - "yusmallkatakanahalfwidth", - "yuyekorean", - "yuyeokorean", - "yyabengali", - "yyadeva", - "zaarmenian", - "zacute", - "zadeva", - "zagurmukhi", - "zaharabic", - "zahfinalarabic", - "zahinitialarabic", - "zahiragana", - "zahmedialarabic", - "zainarabic", - "zainfinalarabic", - "zakatakana", - "zaqefgadolhebrew", - "zaqefqatanhebrew", - "zarqahebrew", - "zayin", - "zayindagesh", - "zayindageshhebrew", - "zayinhebrew", - "zbopomofo", - "zcircle", - "zcircumflex", - "zcurl", - "zdot", - "zdotaccent", - "zdotbelow", - "zecyrillic", - "zedescendercyrillic", - "zedieresiscyrillic", - "zehiragana", - "zekatakana", - "zeroarabic", - "zerobengali", - "zerodeva", - "zerogujarati", - "zerogurmukhi", - "zerohackarabic", - "zeromonospace", - "zeropersian", - "zerothai", - "zerowidthjoiner", - "zerowidthnonjoiner", - "zerowidthspace", - "zeta", - "zhbopomofo", - "zhearmenian", - "zhebrevecyrillic", - "zhecyrillic", - "zhedescendercyrillic", - "zhedieresiscyrillic", - "zihiragana", - "zikatakana", - "zinorhebrew", - "zlinebelow", - "zmonospace", - "zohiragana", - "zokatakana", - "zparen", - "zretroflexhook", - "zstroke", - "zuhiragana", - "zukatakana", - -#endif /* FT_CONFIG_OPTION_ADOBE_GLYPH_LIST */ - - NULL - }; - - - static const char* const * const sid_standard_names = ps_glyph_names + 2; - - -#define NUM_SID_GLYPHS 391 - -#ifdef FT_CONFIG_OPTION_ADOBE_GLYPH_LIST -#define NUM_ADOBE_GLYPHS 4294 -#else -#define NUM_ADOBE_GLYPHS 391 -#endif - - - static const unsigned short mac_standard_names[259] = - { - 2, - 0, - 1, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 106, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 126, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 175, - 177, - 179, - 180, - 188, - 191, - 197, - 202, - 205, - 203, - 204, - 207, - 206, - 208, - 209, - 212, - 210, - 211, - 213, - 216, - 214, - 215, - 217, - 218, - 221, - 219, - 220, - 222, - 224, - 227, - 225, - 226, - 114, - 163, - 99, - 100, - 104, - 118, - 117, - 151, - 167, - 172, - 155, - 127, - 133, - 2919, - 140, - 143, - 2413, - 158, - 2642, - 2156, - 102, - 154, - 3092, - 3681, - 3192, - 3153, - 2415, - 141, - 145, - 741, - 146, - 149, - 125, - 98, - 153, - 3284, - 103, - 1353, - 472, - 108, - 122, - 123, - 2901, - 176, - 178, - 193, - 144, - 150, - 113, - 139, - 107, - 121, - 67, - 10, - 161, - 2677, - 229, - 200, - 101, - 105, - 109, - 110, - 111, - 112, - 115, - 116, - 119, - 120, - 124, - 174, - 181, - 173, - 182, - 183, - 184, - 185, - 186, - 187, - 189, - 190, - 1351, - 192, - 195, - 196, - 198, - 147, - 128, - 129, - 130, - 131, - 132, - 134, - 135, - 136, - 137, - 138, - 142, - 148, - 194, - 223, - 201, - 230, - 162, - 156, - 169, - 199, - 228, - 159, - 164, - 168, - 170, - 152, - 166, - 171, - 157, - 160, - 165, - 2074, - 556, - 2091, - 609, - 836, - 3465, - 438, - 1545, - 440, - 1560, - 1767, - 0 - }; - - - - static const unsigned short ps_names_to_unicode[4295] = - { - 0, - 0x0020U, - 0x0021U, - 0x0022U, - 0x0023U, - 0x0024U, - 0x0025U, - 0x0026U, - 0x2019U, - 0x0028U, - 0x0029U, - 0x002AU, - 0x002BU, - 0x002CU, - 0x002DU, - 0x002EU, - 0x002FU, - 0x0030U, - 0x0031U, - 0x0032U, - 0x0033U, - 0x0034U, - 0x0035U, - 0x0036U, - 0x0037U, - 0x0038U, - 0x0039U, - 0x003AU, - 0x003BU, - 0x003CU, - 0x003DU, - 0x003EU, - 0x003FU, - 0x0040U, - 0x0041U, - 0x0042U, - 0x0043U, - 0x0044U, - 0x0045U, - 0x0046U, - 0x0047U, - 0x0048U, - 0x0049U, - 0x004AU, - 0x004BU, - 0x004CU, - 0x004DU, - 0x004EU, - 0x004FU, - 0x0050U, - 0x0051U, - 0x0052U, - 0x0053U, - 0x0054U, - 0x0055U, - 0x0056U, - 0x0057U, - 0x0058U, - 0x0059U, - 0x005AU, - 0x005BU, - 0x005CU, - 0x005DU, - 0x005EU, - 0x005FU, - 0x2018U, - 0x0061U, - 0x0062U, - 0x0063U, - 0x0064U, - 0x0065U, - 0x0066U, - 0x0067U, - 0x0068U, - 0x0069U, - 0x006AU, - 0x006BU, - 0x006CU, - 0x006DU, - 0x006EU, - 0x006FU, - 0x0070U, - 0x0071U, - 0x0072U, - 0x0073U, - 0x0074U, - 0x0075U, - 0x0076U, - 0x0077U, - 0x0078U, - 0x0079U, - 0x007AU, - 0x007BU, - 0x007CU, - 0x007DU, - 0x007EU, - 0x00A1U, - 0x00A2U, - 0x00A3U, - 0x2044U, - 0x00A5U, - 0x0192U, - 0x00A7U, - 0x00A4U, - 0x0027U, - 0x201CU, - 0x00ABU, - 0x2039U, - 0x203AU, - 0xFB01U, - 0xFB02U, - 0x2013U, - 0x2020U, - 0x2021U, - 0x00B7U, - 0x00B6U, - 0x2022U, - 0x201AU, - 0x201EU, - 0x201DU, - 0x00BBU, - 0x2026U, - 0x2030U, - 0x00BFU, - 0x0060U, - 0x00B4U, - 0x02C6U, - 0x02DCU, - 0x00AFU, - 0x02D8U, - 0x02D9U, - 0x00A8U, - 0x02DAU, - 0x00B8U, - 0x02DDU, - 0x02DBU, - 0x02C7U, - 0x2014U, - 0x00C6U, - 0x00AAU, - 0x0141U, - 0x00D8U, - 0x0152U, - 0x00BAU, - 0x00E6U, - 0x0131U, - 0x0142U, - 0x00F8U, - 0x0153U, - 0x00DFU, - 0x00B9U, - 0x00ACU, - 0x00B5U, - 0x2122U, - 0x00D0U, - 0x00BDU, - 0x00B1U, - 0x00DEU, - 0x00BCU, - 0x00F7U, - 0x00A6U, - 0x00B0U, - 0x00FEU, - 0x00BEU, - 0x00B2U, - 0x00AEU, - 0x2212U, - 0x00F0U, - 0x00D7U, - 0x00B3U, - 0x00A9U, - 0x00C1U, - 0x00C2U, - 0x00C4U, - 0x00C0U, - 0x00C5U, - 0x00C3U, - 0x00C7U, - 0x00C9U, - 0x00CAU, - 0x00CBU, - 0x00C8U, - 0x00CDU, - 0x00CEU, - 0x00CFU, - 0x00CCU, - 0x00D1U, - 0x00D3U, - 0x00D4U, - 0x00D6U, - 0x00D2U, - 0x00D5U, - 0x0160U, - 0x00DAU, - 0x00DBU, - 0x00DCU, - 0x00D9U, - 0x00DDU, - 0x0178U, - 0x017DU, - 0x00E1U, - 0x00E2U, - 0x00E4U, - 0x00E0U, - 0x00E5U, - 0x00E3U, - 0x00E7U, - 0x00E9U, - 0x00EAU, - 0x00EBU, - 0x00E8U, - 0x00EDU, - 0x00EEU, - 0x00EFU, - 0x00ECU, - 0x00F1U, - 0x00F3U, - 0x00F4U, - 0x00F6U, - 0x00F2U, - 0x00F5U, - 0x0161U, - 0x00FAU, - 0x00FBU, - 0x00FCU, - 0x00F9U, - 0x00FDU, - 0x00FFU, - 0x017EU, - 0xF721U, - 0xF6F8U, - 0xF724U, - 0xF6E4U, - 0xF726U, - 0xF7B4U, - 0x207DU, - 0x207EU, - 0x2025U, - 0x2024U, - 0xF730U, - 0xF731U, - 0xF732U, - 0xF733U, - 0xF734U, - 0xF735U, - 0xF736U, - 0xF737U, - 0xF738U, - 0xF739U, - 0xF6E2U, - 0xF6DEU, - 0xF6E8U, - 0xF73FU, - 0xF6E9U, - 0xF6EAU, - 0xF6E0U, - 0xF6EBU, - 0xF6ECU, - 0xF6EDU, - 0xF6EEU, - 0xF6EFU, - 0x207FU, - 0xF6F0U, - 0xF6F1U, - 0xF6F2U, - 0xF6F3U, - 0xFB00U, - 0xFB03U, - 0xFB04U, - 0x208DU, - 0x208EU, - 0xF6F6U, - 0xF6E6U, - 0xF760U, - 0xF761U, - 0xF762U, - 0xF763U, - 0xF764U, - 0xF765U, - 0xF766U, - 0xF767U, - 0xF768U, - 0xF769U, - 0xF76AU, - 0xF76BU, - 0xF76CU, - 0xF76DU, - 0xF76EU, - 0xF76FU, - 0xF770U, - 0xF771U, - 0xF772U, - 0xF773U, - 0xF774U, - 0xF775U, - 0xF776U, - 0xF777U, - 0xF778U, - 0xF779U, - 0xF77AU, - 0x20A1U, - 0xF6DCU, - 0xF6DDU, - 0xF6FEU, - 0xF7A1U, - 0xF7A2U, - 0xF6F9U, - 0xF6FDU, - 0xF6FFU, - 0xF7A8U, - 0xF6F4U, - 0xF6F5U, - 0xF6F7U, - 0xF7AFU, - 0x2012U, - 0xF6E5U, - 0xF6FBU, - 0xF6FCU, - 0xF7B8U, - 0xF7BFU, - 0x215BU, - 0x215CU, - 0x215DU, - 0x215EU, - 0x2153U, - 0x2154U, - 0x2070U, - 0x2074U, - 0x2075U, - 0x2076U, - 0x2077U, - 0x2078U, - 0x2079U, - 0x2080U, - 0x2081U, - 0x2082U, - 0x2083U, - 0x2084U, - 0x2085U, - 0x2086U, - 0x2087U, - 0x2088U, - 0x2089U, - 0xF6DFU, - 0xF6E3U, - 0xF6E7U, - 0xF6E1U, - 0xF7E0U, - 0xF7E1U, - 0xF7E2U, - 0xF7E3U, - 0xF7E4U, - 0xF7E5U, - 0xF7E6U, - 0xF7E7U, - 0xF7E8U, - 0xF7E9U, - 0xF7EAU, - 0xF7EBU, - 0xF7ECU, - 0xF7EDU, - 0xF7EEU, - 0xF7EFU, - 0xF7F0U, - 0xF7F1U, - 0xF7F2U, - 0xF7F3U, - 0xF7F4U, - 0xF7F5U, - 0xF7F6U, - 0xF6FAU, - 0xF7F8U, - 0xF7F9U, - 0xF7FAU, - 0xF7FBU, - 0xF7FCU, - 0xF7FDU, - 0xF7FEU, - 0xF7FFU, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - -#ifdef FT_CONFIG_OPTION_ADOBE_GLYPH_LIST - - 0x01FCU, - 0x01E2U, - 0x0102U, - 0x1EAEU, - 0x04D0U, - 0x1EB6U, - 0x1EB0U, - 0x1EB2U, - 0x1EB4U, - 0x01CDU, - 0x24B6U, - 0x1EA4U, - 0x1EACU, - 0x1EA6U, - 0x1EA8U, - 0x1EAAU, - 0xF6C9U, - 0x0410U, - 0x0200U, - 0x04D2U, - 0x01DEU, - 0x1EA0U, - 0x01E0U, - 0x1EA2U, - 0x04D4U, - 0x0202U, - 0x0391U, - 0x0386U, - 0x0100U, - 0xFF21U, - 0x0104U, - 0x01FAU, - 0x1E00U, - 0x0531U, - 0x24B7U, - 0x1E02U, - 0x1E04U, - 0x0411U, - 0x0532U, - 0x0392U, - 0x0181U, - 0x1E06U, - 0xFF22U, - 0x0182U, - 0x053EU, - 0x0106U, - 0xF6CAU, - 0x010CU, - 0x1E08U, - 0x24B8U, - 0x0108U, - 0x010AU, - 0x010AU, - 0x0549U, - 0x04BCU, - 0x0427U, - 0x04BEU, - 0x04B6U, - 0x04F4U, - 0x0543U, - 0x04CBU, - 0x04B8U, - 0x03A7U, - 0x0187U, - 0xFF23U, - 0x0551U, - 0x01F1U, - 0x01C4U, - 0x0534U, - 0x0189U, - 0x010EU, - 0x1E10U, - 0x24B9U, - 0x1E12U, - 0x0110U, - 0x1E0AU, - 0x1E0CU, - 0x0414U, - 0x03EEU, - 0x2206U, - 0x0394U, - 0x018AU, - 0xF6CBU, - 0xF6CCU, - 0xF6CDU, - 0x03DCU, - 0x0402U, - 0x1E0EU, - 0xFF24U, - 0x0110U, - 0x018BU, - 0x01F2U, - 0x01C5U, - 0x04E0U, - 0x0405U, - 0x040FU, - 0x0114U, - 0x011AU, - 0x1E1CU, - 0x0535U, - 0x24BAU, - 0x1EBEU, - 0x1E18U, - 0x1EC6U, - 0x1EC0U, - 0x1EC2U, - 0x1EC4U, - 0x0404U, - 0x0204U, - 0x0116U, - 0x0116U, - 0x1EB8U, - 0x0424U, - 0x0537U, - 0x1EBAU, - 0x2167U, - 0x0206U, - 0x0464U, - 0x041BU, - 0x216AU, - 0x0112U, - 0x1E16U, - 0x1E14U, - 0x041CU, - 0xFF25U, - 0x041DU, - 0x04A2U, - 0x014AU, - 0x04A4U, - 0x04C7U, - 0x0118U, - 0x0190U, - 0x0395U, - 0x0388U, - 0x0420U, - 0x018EU, - 0x042DU, - 0x0421U, - 0x04AAU, - 0x01A9U, - 0x0397U, - 0x0538U, - 0x0389U, - 0x1EBCU, - 0x1E1AU, - 0x20ACU, - 0x01B7U, - 0x01EEU, - 0x01B8U, - 0x24BBU, - 0x1E1EU, - 0x0556U, - 0x03E4U, - 0x0191U, - 0x0472U, - 0x2164U, - 0xFF26U, - 0x2163U, - 0x3387U, - 0x01F4U, - 0x0393U, - 0x0194U, - 0x03EAU, - 0x011EU, - 0x01E6U, - 0x0122U, - 0x24BCU, - 0x011CU, - 0x0122U, - 0x0120U, - 0x0120U, - 0x0413U, - 0x0542U, - 0x0494U, - 0x0492U, - 0x0490U, - 0x0193U, - 0x0533U, - 0x0403U, - 0x1E20U, - 0xFF27U, - 0xF6CEU, - 0x029BU, - 0x01E4U, - 0x25CFU, - 0x25AAU, - 0x25ABU, - 0x25A1U, - 0x33CBU, - 0x04A8U, - 0x04B2U, - 0x042AU, - 0x0126U, - 0x1E2AU, - 0x1E28U, - 0x24BDU, - 0x0124U, - 0x1E26U, - 0x1E22U, - 0x1E24U, - 0xFF28U, - 0x0540U, - 0x03E8U, - 0xF6CFU, - 0x3390U, - 0x042FU, - 0x0132U, - 0x042EU, - 0x012CU, - 0x01CFU, - 0x24BEU, - 0x0406U, - 0x0208U, - 0x1E2EU, - 0x04E4U, - 0x0130U, - 0x0130U, - 0x1ECAU, - 0x04D6U, - 0x0415U, - 0x2111U, - 0x1EC8U, - 0x0418U, - 0x020AU, - 0x0419U, - 0x012AU, - 0x04E2U, - 0xFF29U, - 0x053BU, - 0x0401U, - 0x012EU, - 0x0399U, - 0x0196U, - 0x03AAU, - 0x038AU, - 0x0197U, - 0x0128U, - 0x1E2CU, - 0x0474U, - 0x0476U, - 0x0541U, - 0x24BFU, - 0x0134U, - 0x0408U, - 0x054BU, - 0xFF2AU, - 0x3385U, - 0x33CDU, - 0x04A0U, - 0x1E30U, - 0x041AU, - 0x049AU, - 0x04C3U, - 0x039AU, - 0x049EU, - 0x049CU, - 0x01E8U, - 0x0136U, - 0x24C0U, - 0x0136U, - 0x1E32U, - 0x0554U, - 0x053FU, - 0x0425U, - 0x03E6U, - 0x0198U, - 0x040CU, - 0x1E34U, - 0xFF2BU, - 0x0480U, - 0x03DEU, - 0x046EU, - 0x01C7U, - 0xF6BFU, - 0x0139U, - 0x039BU, - 0x013DU, - 0x013BU, - 0x24C1U, - 0x1E3CU, - 0x013BU, - 0x013FU, - 0x013FU, - 0x1E36U, - 0x1E38U, - 0x053CU, - 0x01C8U, - 0x0409U, - 0x1E3AU, - 0xFF2CU, - 0x3386U, - 0xF6D0U, - 0x1E3EU, - 0x24C2U, - 0x1E40U, - 0x1E42U, - 0x0544U, - 0xFF2DU, - 0x019CU, - 0x039CU, - 0x01CAU, - 0x0143U, - 0x0147U, - 0x0145U, - 0x24C3U, - 0x1E4AU, - 0x0145U, - 0x1E44U, - 0x1E46U, - 0x019DU, - 0x2168U, - 0x01CBU, - 0x040AU, - 0x1E48U, - 0xFF2EU, - 0x0546U, - 0x039DU, - 0x04E8U, - 0x04EAU, - 0x014EU, - 0x01D1U, - 0x019FU, - 0x24C4U, - 0x1ED0U, - 0x1ED8U, - 0x1ED2U, - 0x1ED4U, - 0x1ED6U, - 0x041EU, - 0x0150U, - 0x020CU, - 0x04E6U, - 0x1ECCU, - 0x0555U, - 0x2126U, - 0x1ECEU, - 0x01A0U, - 0x1EDAU, - 0x1EE2U, - 0x1EDCU, - 0x1EDEU, - 0x1EE0U, - 0x0150U, - 0x01A2U, - 0x020EU, - 0x014CU, - 0x1E52U, - 0x1E50U, - 0x2126U, - 0x0460U, - 0x03A9U, - 0x047AU, - 0x047CU, - 0x038FU, - 0x039FU, - 0x038CU, - 0xFF2FU, - 0x2160U, - 0x01EAU, - 0x01ECU, - 0x0186U, - 0x01FEU, - 0x01FEU, - 0x047EU, - 0x1E4CU, - 0x1E4EU, - 0x1E54U, - 0x24C5U, - 0x1E56U, - 0x041FU, - 0x054AU, - 0x04A6U, - 0x03A6U, - 0x01A4U, - 0x03A0U, - 0x0553U, - 0xFF30U, - 0x03A8U, - 0x0470U, - 0x24C6U, - 0xFF31U, - 0x054CU, - 0x0154U, - 0x0158U, - 0x0156U, - 0x24C7U, - 0x0156U, - 0x0210U, - 0x1E58U, - 0x1E5AU, - 0x1E5CU, - 0x0550U, - 0x211CU, - 0x03A1U, - 0x0212U, - 0x1E5EU, - 0xFF32U, - 0x0281U, - 0x02B6U, - 0x250CU, - 0x2514U, - 0x2510U, - 0x2518U, - 0x253CU, - 0x252CU, - 0x2534U, - 0x251CU, - 0x2524U, - 0x2500U, - 0x2502U, - 0x2561U, - 0x2562U, - 0x2556U, - 0x2555U, - 0x2563U, - 0x2551U, - 0x2557U, - 0x255DU, - 0x255CU, - 0x255BU, - 0x255EU, - 0x255FU, - 0x255AU, - 0x2554U, - 0x2569U, - 0x2566U, - 0x2560U, - 0x2550U, - 0x256CU, - 0x2567U, - 0x2568U, - 0x2564U, - 0x2565U, - 0x2559U, - 0x2558U, - 0x2552U, - 0x2553U, - 0x256BU, - 0x256AU, - 0x015AU, - 0x1E64U, - 0x03E0U, - 0x1E66U, - 0x015EU, - 0x018FU, - 0x04D8U, - 0x04DAU, - 0x24C8U, - 0x015CU, - 0x0218U, - 0x1E60U, - 0x1E62U, - 0x1E68U, - 0x054DU, - 0x2166U, - 0x0547U, - 0x0428U, - 0x0429U, - 0x03E2U, - 0x04BAU, - 0x03ECU, - 0x03A3U, - 0x2165U, - 0xFF33U, - 0x042CU, - 0x03DAU, - 0x03A4U, - 0x0166U, - 0x0164U, - 0x0162U, - 0x24C9U, - 0x1E70U, - 0x0162U, - 0x1E6AU, - 0x1E6CU, - 0x0422U, - 0x04ACU, - 0x2169U, - 0x04B4U, - 0x0398U, - 0x01ACU, - 0x2162U, - 0x054FU, - 0x1E6EU, - 0xFF34U, - 0x0539U, - 0x01BCU, - 0x0184U, - 0x01A7U, - 0x01AEU, - 0x0426U, - 0x040BU, - 0x216BU, - 0x2161U, - 0x016CU, - 0x01D3U, - 0x24CAU, - 0x1E76U, - 0x0423U, - 0x0170U, - 0x0214U, - 0x01D7U, - 0x1E72U, - 0x01D9U, - 0x04F0U, - 0x01DBU, - 0x01D5U, - 0x1EE4U, - 0x1EE6U, - 0x01AFU, - 0x1EE8U, - 0x1EF0U, - 0x1EEAU, - 0x1EECU, - 0x1EEEU, - 0x0170U, - 0x04F2U, - 0x0216U, - 0x0478U, - 0x016AU, - 0x04EEU, - 0x1E7AU, - 0xFF35U, - 0x0172U, - 0x03A5U, - 0x03D2U, - 0x03D3U, - 0x01B1U, - 0x03ABU, - 0x03D4U, - 0x03D2U, - 0x038EU, - 0x016EU, - 0x040EU, - 0x04AEU, - 0x04B0U, - 0x0168U, - 0x1E78U, - 0x1E74U, - 0x24CBU, - 0x1E7EU, - 0x0412U, - 0x054EU, - 0x01B2U, - 0xFF36U, - 0x0548U, - 0x1E7CU, - 0x1E82U, - 0x24CCU, - 0x0174U, - 0x1E84U, - 0x1E86U, - 0x1E88U, - 0x1E80U, - 0xFF37U, - 0x24CDU, - 0x1E8CU, - 0x1E8AU, - 0x053DU, - 0x039EU, - 0xFF38U, - 0x0462U, - 0x24CEU, - 0x0176U, - 0x1E8EU, - 0x1EF4U, - 0x042BU, - 0x04F8U, - 0x1EF2U, - 0x01B3U, - 0x1EF6U, - 0x0545U, - 0x0407U, - 0x0552U, - 0xFF39U, - 0x1EF8U, - 0x046AU, - 0x046CU, - 0x0466U, - 0x0468U, - 0x0536U, - 0x0179U, - 0x24CFU, - 0x1E90U, - 0x017BU, - 0x017BU, - 0x1E92U, - 0x0417U, - 0x0498U, - 0x04DEU, - 0x0396U, - 0x053AU, - 0x04C1U, - 0x0416U, - 0x0496U, - 0x04DCU, - 0x1E94U, - 0xFF3AU, - 0x01B5U, - 0x0986U, - 0x0906U, - 0x0A86U, - 0x0A06U, - 0x0A3EU, - 0x3303U, - 0x09BEU, - 0x093EU, - 0x0ABEU, - 0x055FU, - 0x0970U, - 0x0985U, - 0x311AU, - 0x0103U, - 0x1EAFU, - 0x04D1U, - 0x1EB7U, - 0x1EB1U, - 0x1EB3U, - 0x1EB5U, - 0x01CEU, - 0x24D0U, - 0x1EA5U, - 0x1EADU, - 0x1EA7U, - 0x1EA9U, - 0x1EABU, - 0x0317U, - 0x0301U, - 0x0301U, - 0x0954U, - 0x02CFU, - 0x0341U, - 0x0430U, - 0x0201U, - 0x0A71U, - 0x0905U, - 0x04D3U, - 0x01DFU, - 0x1EA1U, - 0x01E1U, - 0x01FDU, - 0x3150U, - 0x01E3U, - 0x2015U, - 0x20A4U, - 0x0410U, - 0x0411U, - 0x0412U, - 0x0413U, - 0x0414U, - 0x0415U, - 0x0401U, - 0x0416U, - 0x0417U, - 0x0418U, - 0x0419U, - 0x041AU, - 0x041BU, - 0x041CU, - 0x041DU, - 0x041EU, - 0x041FU, - 0x0420U, - 0x0421U, - 0x0422U, - 0x0423U, - 0x0424U, - 0x0425U, - 0x0426U, - 0x0427U, - 0x0428U, - 0x0429U, - 0x042AU, - 0x042BU, - 0x042CU, - 0x042DU, - 0x042EU, - 0x042FU, - 0x0490U, - 0x0402U, - 0x0403U, - 0x0404U, - 0x0405U, - 0x0406U, - 0x0407U, - 0x0408U, - 0x0409U, - 0x040AU, - 0x040BU, - 0x040CU, - 0x040EU, - 0xF6C4U, - 0xF6C5U, - 0x0430U, - 0x0431U, - 0x0432U, - 0x0433U, - 0x0434U, - 0x0435U, - 0x0451U, - 0x0436U, - 0x0437U, - 0x0438U, - 0x0439U, - 0x043AU, - 0x043BU, - 0x043CU, - 0x043DU, - 0x043EU, - 0x043FU, - 0x0440U, - 0x0441U, - 0x0442U, - 0x0443U, - 0x0444U, - 0x0445U, - 0x0446U, - 0x0447U, - 0x0448U, - 0x0449U, - 0x044AU, - 0x044BU, - 0x044CU, - 0x044DU, - 0x044EU, - 0x044FU, - 0x0491U, - 0x0452U, - 0x0453U, - 0x0454U, - 0x0455U, - 0x0456U, - 0x0457U, - 0x0458U, - 0x0459U, - 0x045AU, - 0x045BU, - 0x045CU, - 0x045EU, - 0x040FU, - 0x0462U, - 0x0472U, - 0x0474U, - 0xF6C6U, - 0x045FU, - 0x0463U, - 0x0473U, - 0x0475U, - 0xF6C7U, - 0xF6C8U, - 0x04D9U, - 0x200EU, - 0x200FU, - 0x200DU, - 0x066AU, - 0x060CU, - 0x0660U, - 0x0661U, - 0x0662U, - 0x0663U, - 0x0664U, - 0x0665U, - 0x0666U, - 0x0667U, - 0x0668U, - 0x0669U, - 0x061BU, - 0x061FU, - 0x0621U, - 0x0622U, - 0x0623U, - 0x0624U, - 0x0625U, - 0x0626U, - 0x0627U, - 0x0628U, - 0x0629U, - 0x062AU, - 0x062BU, - 0x062CU, - 0x062DU, - 0x062EU, - 0x062FU, - 0x0630U, - 0x0631U, - 0x0632U, - 0x0633U, - 0x0634U, - 0x0635U, - 0x0636U, - 0x0637U, - 0x0638U, - 0x0639U, - 0x063AU, - 0x0640U, - 0x0641U, - 0x0642U, - 0x0643U, - 0x0644U, - 0x0645U, - 0x0646U, - 0x0648U, - 0x0649U, - 0x064AU, - 0x064BU, - 0x064CU, - 0x064DU, - 0x064EU, - 0x064FU, - 0x0650U, - 0x0651U, - 0x0652U, - 0x0647U, - 0x06A4U, - 0x067EU, - 0x0686U, - 0x0698U, - 0x06AFU, - 0x0679U, - 0x0688U, - 0x0691U, - 0x06BAU, - 0x06D2U, - 0x06D5U, - 0x20AAU, - 0x05BEU, - 0x05C3U, - 0x05D0U, - 0x05D1U, - 0x05D2U, - 0x05D3U, - 0x05D4U, - 0x05D5U, - 0x05D6U, - 0x05D7U, - 0x05D8U, - 0x05D9U, - 0x05DAU, - 0x05DBU, - 0x05DCU, - 0x05DDU, - 0x05DEU, - 0x05DFU, - 0x05E0U, - 0x05E1U, - 0x05E2U, - 0x05E3U, - 0x05E4U, - 0x05E5U, - 0x05E6U, - 0x05E7U, - 0x05E8U, - 0x05E9U, - 0x05EAU, - 0xFB2AU, - 0xFB2BU, - 0xFB4BU, - 0xFB1FU, - 0x05F0U, - 0x05F1U, - 0x05F2U, - 0xFB35U, - 0x05B4U, - 0x05B5U, - 0x05B6U, - 0x05BBU, - 0x05B8U, - 0x05B7U, - 0x05B0U, - 0x05B2U, - 0x05B1U, - 0x05B3U, - 0x05C2U, - 0x05C1U, - 0x05B9U, - 0x05BCU, - 0x05BDU, - 0x05BFU, - 0x05C0U, - 0x02BCU, - 0x2105U, - 0x2113U, - 0x2116U, - 0x202CU, - 0x202DU, - 0x202EU, - 0x200CU, - 0x066DU, - 0x02BDU, - 0x0A85U, - 0x0A05U, - 0x3042U, - 0x1EA3U, - 0x0990U, - 0x311EU, - 0x0910U, - 0x04D5U, - 0x0A90U, - 0x0A10U, - 0x0A48U, - 0x0639U, - 0xFECAU, - 0xFECBU, - 0xFECCU, - 0x0203U, - 0x09C8U, - 0x0948U, - 0x0AC8U, - 0x30A2U, - 0xFF71U, - 0x314FU, - 0x05D0U, - 0x0627U, - 0xFB30U, - 0xFE8EU, - 0x0623U, - 0xFE84U, - 0x0625U, - 0xFE88U, - 0x05D0U, - 0xFB4FU, - 0x0622U, - 0xFE82U, - 0x0649U, - 0xFEF0U, - 0xFEF3U, - 0xFEF4U, - 0xFB2EU, - 0xFB2FU, - 0x2135U, - 0x224CU, - 0x03B1U, - 0x03ACU, - 0x0101U, - 0xFF41U, - 0xFF06U, - 0x33C2U, - 0x3122U, - 0x3124U, - 0x0E5AU, - 0x2220U, - 0x3008U, - 0xFE3FU, - 0x3009U, - 0xFE40U, - 0x2329U, - 0x232AU, - 0x212BU, - 0x0387U, - 0x0952U, - 0x0982U, - 0x0902U, - 0x0A82U, - 0x0105U, - 0x3300U, - 0x249CU, - 0x055AU, - 0x02BCU, - 0xF8FFU, - 0x2250U, - 0x2248U, - 0x2252U, - 0x2245U, - 0x318EU, - 0x318DU, - 0x2312U, - 0x1E9AU, - 0x01FBU, - 0x1E01U, - 0x2194U, - 0x21E3U, - 0x21E0U, - 0x21E2U, - 0x21E1U, - 0x21D4U, - 0x21D3U, - 0x21D0U, - 0x21D2U, - 0x21D1U, - 0x2193U, - 0x2199U, - 0x2198U, - 0x21E9U, - 0x02C5U, - 0x02C2U, - 0x02C3U, - 0x02C4U, - 0xF8E7U, - 0x2190U, - 0x21D0U, - 0x21CDU, - 0x21C6U, - 0x21E6U, - 0x2192U, - 0x21CFU, - 0x279EU, - 0x21C4U, - 0x21E8U, - 0x21E4U, - 0x21E5U, - 0x2191U, - 0x2195U, - 0x21A8U, - 0x21A8U, - 0x2196U, - 0x21C5U, - 0x2197U, - 0x21E7U, - 0xF8E6U, - 0xFF3EU, - 0xFF5EU, - 0x0251U, - 0x0252U, - 0x3041U, - 0x30A1U, - 0xFF67U, - 0x066DU, - 0x066DU, - 0x2217U, - 0xFF0AU, - 0xFE61U, - 0x2042U, - 0x2243U, - 0xFF20U, - 0xFE6BU, - 0x0250U, - 0x0994U, - 0x3120U, - 0x0914U, - 0x0A94U, - 0x0A14U, - 0x09D7U, - 0x0A4CU, - 0x09CCU, - 0x094CU, - 0x0ACCU, - 0x093DU, - 0x0561U, - 0x05E2U, - 0xFB20U, - 0x05E2U, - 0x09ACU, - 0xFF3CU, - 0x092CU, - 0x0AACU, - 0x0A2CU, - 0x3070U, - 0x0E3FU, - 0x30D0U, - 0xFF5CU, - 0x3105U, - 0x24D1U, - 0x1E03U, - 0x1E05U, - 0x266CU, - 0x2235U, - 0x0431U, - 0x0628U, - 0xFE90U, - 0xFE91U, - 0x3079U, - 0xFE92U, - 0xFC9FU, - 0xFC08U, - 0xFC6DU, - 0x30D9U, - 0x0562U, - 0x05D1U, - 0x03B2U, - 0x03D0U, - 0xFB31U, - 0xFB31U, - 0x05D1U, - 0xFB4CU, - 0x09ADU, - 0x092DU, - 0x0AADU, - 0x0A2DU, - 0x0253U, - 0x3073U, - 0x30D3U, - 0x0298U, - 0x0A02U, - 0x3331U, - 0x25CFU, - 0x25C6U, - 0x25BCU, - 0x25C4U, - 0x25C0U, - 0x3010U, - 0xFE3BU, - 0x3011U, - 0xFE3CU, - 0x25E3U, - 0x25E2U, - 0x25ACU, - 0x25BAU, - 0x25B6U, - 0x25AAU, - 0x263BU, - 0x25A0U, - 0x2605U, - 0x25E4U, - 0x25E5U, - 0x25B4U, - 0x25B2U, - 0x2423U, - 0x1E07U, - 0x2588U, - 0xFF42U, - 0x0E1AU, - 0x307CU, - 0x30DCU, - 0x249DU, - 0x33C3U, - 0xF8F4U, - 0xF8F3U, - 0xF8F2U, - 0xFF5BU, - 0xFE5BU, - 0xF8F1U, - 0xFE37U, - 0xF8FEU, - 0xF8FDU, - 0xFF5DU, - 0xFE5CU, - 0xF8FCU, - 0xFE38U, - 0xF8F0U, - 0xF8EFU, - 0xFF3BU, - 0xF8EEU, - 0xF8FBU, - 0xF8FAU, - 0xFF3DU, - 0xF8F9U, - 0x032EU, - 0x0306U, - 0x032FU, - 0x0311U, - 0x0361U, - 0x032AU, - 0x033AU, - 0x0180U, - 0x0183U, - 0x3076U, - 0x30D6U, - 0x25D8U, - 0x2219U, - 0x25CEU, - 0x056EU, - 0x099AU, - 0x0107U, - 0x091AU, - 0x0A9AU, - 0x0A1AU, - 0x3388U, - 0x0981U, - 0x0310U, - 0x0901U, - 0x0A81U, - 0x21EAU, - 0x2105U, - 0x032CU, - 0x030CU, - 0x21B5U, - 0x3118U, - 0x010DU, - 0x1E09U, - 0x24D2U, - 0x0109U, - 0x0255U, - 0x010BU, - 0x010BU, - 0x33C5U, - 0x0327U, - 0x2103U, - 0xFFE0U, - 0x0579U, - 0x099BU, - 0x091BU, - 0x0A9BU, - 0x0A1BU, - 0x3114U, - 0x04BDU, - 0x2713U, - 0x0447U, - 0x04BFU, - 0x04B7U, - 0x04F5U, - 0x0573U, - 0x04CCU, - 0x04B9U, - 0x03C7U, - 0x3277U, - 0x3217U, - 0x3269U, - 0x314AU, - 0x3209U, - 0x0E0AU, - 0x0E08U, - 0x0E09U, - 0x0E0CU, - 0x0188U, - 0x3276U, - 0x3216U, - 0x3268U, - 0x3148U, - 0x3208U, - 0x321CU, - 0x25CBU, - 0x2297U, - 0x2299U, - 0x2295U, - 0x3036U, - 0x25D0U, - 0x25D1U, - 0x032DU, - 0x0302U, - 0x2327U, - 0x01C2U, - 0x01C0U, - 0x01C1U, - 0x01C3U, - 0x2663U, - 0x2663U, - 0x2667U, - 0x33A4U, - 0xFF43U, - 0x33A0U, - 0x0581U, - 0xFF1AU, - 0x20A1U, - 0xFE55U, - 0x02D1U, - 0x02D0U, - 0x0313U, - 0x0315U, - 0xF6C3U, - 0x060CU, - 0x055DU, - 0xFF0CU, - 0x0314U, - 0x02BDU, - 0xFE50U, - 0x0312U, - 0x02BBU, - 0x263CU, - 0x2245U, - 0x222EU, - 0x2303U, - 0x0006U, - 0x0007U, - 0x0008U, - 0x0018U, - 0x000DU, - 0x0011U, - 0x0012U, - 0x0013U, - 0x0014U, - 0x007FU, - 0x0010U, - 0x0019U, - 0x0005U, - 0x0004U, - 0x001BU, - 0x0017U, - 0x0003U, - 0x000CU, - 0x001CU, - 0x001DU, - 0x0009U, - 0x000AU, - 0x0015U, - 0x001EU, - 0x000FU, - 0x000EU, - 0x0002U, - 0x0001U, - 0x001AU, - 0x0016U, - 0x001FU, - 0x000BU, - 0xF8E9U, - 0xF6D9U, - 0x300CU, - 0xFF62U, - 0xFE41U, - 0x300DU, - 0xFF63U, - 0xFE42U, - 0x337FU, - 0x33C7U, - 0x33C6U, - 0x249EU, - 0x20A2U, - 0x0297U, - 0x22CFU, - 0x22CEU, - 0xF6D1U, - 0xF6D2U, - 0xF6D4U, - 0xF6D5U, - 0x0564U, - 0x09A6U, - 0x0636U, - 0x0926U, - 0xFEBEU, - 0xFEBFU, - 0xFEC0U, - 0x05BCU, - 0x05BCU, - 0x0AA6U, - 0x0A26U, - 0x3060U, - 0x30C0U, - 0x062FU, - 0x05D3U, - 0xFB33U, - 0xFB33U, - 0, - 0, - 0, - 0, - 0x05D3U, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0xFEAAU, - 0x064FU, - 0x064FU, - 0x064CU, - 0x064CU, - 0x0964U, - 0x05A7U, - 0x05A7U, - 0x0485U, - 0xF6D3U, - 0x300AU, - 0xFE3DU, - 0x300BU, - 0xFE3EU, - 0x032BU, - 0x21D4U, - 0x21D2U, - 0x0965U, - 0xF6D6U, - 0x030FU, - 0x222CU, - 0x2017U, - 0x0333U, - 0x033FU, - 0x02BAU, - 0x2016U, - 0x030EU, - 0x3109U, - 0x33C8U, - 0x010FU, - 0x1E11U, - 0x24D3U, - 0x1E13U, - 0x0111U, - 0x09A1U, - 0x0921U, - 0x0AA1U, - 0x0A21U, - 0x0688U, - 0xFB89U, - 0x095CU, - 0x09A2U, - 0x0922U, - 0x0AA2U, - 0x0A22U, - 0x1E0BU, - 0x1E0DU, - 0x066BU, - 0x066BU, - 0x0434U, - 0x05ADU, - 0x3067U, - 0x03EFU, - 0x30C7U, - 0x232BU, - 0x2326U, - 0x03B4U, - 0x018DU, - 0x09F8U, - 0x02A4U, - 0x09A7U, - 0x0927U, - 0x0AA7U, - 0x0A27U, - 0x0257U, - 0x0385U, - 0x0344U, - 0x2666U, - 0x2662U, - 0xF6D7U, - 0x0324U, - 0x0308U, - 0xF6D8U, - 0x0385U, - 0x3062U, - 0x30C2U, - 0x3003U, - 0x2223U, - 0x2215U, - 0x0452U, - 0x2593U, - 0x1E0FU, - 0x3397U, - 0x0111U, - 0xFF44U, - 0x2584U, - 0x0E0EU, - 0x0E14U, - 0x3069U, - 0x30C9U, - 0xFF04U, - 0xFE69U, - 0x20ABU, - 0x3326U, - 0x0307U, - 0x0323U, - 0x0323U, - 0x30FBU, - 0xF6BEU, - 0x0284U, - 0x22C5U, - 0x25CCU, - 0xFB1FU, - 0xFB1FU, - 0x031EU, - 0x02D5U, - 0x249FU, - 0x0256U, - 0x018CU, - 0x3065U, - 0x30C5U, - 0x01F3U, - 0x02A3U, - 0x01C6U, - 0x02A5U, - 0x04E1U, - 0x0455U, - 0x045FU, - 0x2641U, - 0x098FU, - 0x311CU, - 0x0115U, - 0x090DU, - 0x0A8DU, - 0x0945U, - 0x0AC5U, - 0x011BU, - 0x1E1DU, - 0x0565U, - 0x0587U, - 0x24D4U, - 0x1EBFU, - 0x1E19U, - 0x1EC7U, - 0x1EC1U, - 0x1EC3U, - 0x1EC5U, - 0x0454U, - 0x0205U, - 0x090FU, - 0x0117U, - 0x0117U, - 0x1EB9U, - 0x0A0FU, - 0x0A47U, - 0x0444U, - 0x0A8FU, - 0x0567U, - 0x311DU, - 0x3048U, - 0x1EBBU, - 0x311FU, - 0x0668U, - 0x09EEU, - 0x2467U, - 0x2791U, - 0x096EU, - 0x2471U, - 0x2485U, - 0x2499U, - 0x0AEEU, - 0x0A6EU, - 0x0668U, - 0x3028U, - 0x266BU, - 0x3227U, - 0xFF18U, - 0x247BU, - 0x248FU, - 0x06F8U, - 0x2177U, - 0x0E58U, - 0x0207U, - 0x0465U, - 0x30A8U, - 0xFF74U, - 0x0A74U, - 0x3154U, - 0x043BU, - 0x2208U, - 0x246AU, - 0x247EU, - 0x2492U, - 0x217AU, - 0x22EEU, - 0x0113U, - 0x1E17U, - 0x1E15U, - 0x043CU, - 0xFE31U, - 0xFF45U, - 0x055BU, - 0x2205U, - 0x3123U, - 0x043DU, - 0xFE32U, - 0x04A3U, - 0x014BU, - 0x3125U, - 0x04A5U, - 0x04C8U, - 0x2002U, - 0x0119U, - 0x3153U, - 0x025BU, - 0x029AU, - 0x025CU, - 0x025EU, - 0x025DU, - 0x24A0U, - 0x03B5U, - 0x03ADU, - 0xFF1DU, - 0xFE66U, - 0x207CU, - 0x2261U, - 0x3126U, - 0x0440U, - 0x0258U, - 0x044DU, - 0x0441U, - 0x04ABU, - 0x0283U, - 0x0286U, - 0x090EU, - 0x0946U, - 0x01AAU, - 0x0285U, - 0x3047U, - 0x30A7U, - 0xFF6AU, - 0x212EU, - 0x03B7U, - 0x0568U, - 0x03AEU, - 0x1EBDU, - 0x1E1BU, - 0x0591U, - 0x0591U, - 0x0591U, - 0x0591U, - 0x01DDU, - 0x3161U, - 0x20ACU, - 0x09C7U, - 0x0947U, - 0x0AC7U, - 0x055CU, - 0x203CU, - 0xFF01U, - 0x2203U, - 0x0292U, - 0x01EFU, - 0x0293U, - 0x01B9U, - 0x01BAU, - 0x095EU, - 0x0A5EU, - 0x2109U, - 0x064EU, - 0x064EU, - 0x064BU, - 0x3108U, - 0x24D5U, - 0x1E1FU, - 0x0641U, - 0x0586U, - 0xFED2U, - 0xFED3U, - 0xFED4U, - 0x03E5U, - 0x2640U, - 0x246EU, - 0x2482U, - 0x2496U, - 0x25A0U, - 0x25ACU, - 0x05DAU, - 0xFB3AU, - 0xFB3AU, - 0x05DAU, - 0, - 0, - 0, - 0, - 0x05DDU, - 0x05DDU, - 0x05DFU, - 0x05DFU, - 0x05E3U, - 0x05E3U, - 0x05E5U, - 0x05E5U, - 0x02C9U, - 0x25C9U, - 0x0473U, - 0x0665U, - 0x09EBU, - 0x2464U, - 0x278EU, - 0x096BU, - 0x0AEBU, - 0x0A6BU, - 0x0665U, - 0x3025U, - 0x3224U, - 0xFF15U, - 0x2478U, - 0x248CU, - 0x06F5U, - 0x2174U, - 0x0E55U, - 0xFF46U, - 0x3399U, - 0x0E1FU, - 0x0E1DU, - 0x0E4FU, - 0x2200U, - 0x0664U, - 0x09EAU, - 0x2463U, - 0x278DU, - 0x096AU, - 0x0AEAU, - 0x0A6AU, - 0x0664U, - 0x3024U, - 0x3223U, - 0xFF14U, - 0x09F7U, - 0x2477U, - 0x248BU, - 0x06F4U, - 0x2173U, - 0x246DU, - 0x2481U, - 0x2495U, - 0x0E54U, - 0x02CBU, - 0x24A1U, - 0x20A3U, - 0x0997U, - 0x01F5U, - 0x0917U, - 0x06AFU, - 0xFB93U, - 0xFB94U, - 0xFB95U, - 0x0A97U, - 0x0A17U, - 0x304CU, - 0x30ACU, - 0x03B3U, - 0x0263U, - 0x02E0U, - 0x03EBU, - 0x310DU, - 0x011FU, - 0x01E7U, - 0x0123U, - 0x24D6U, - 0x011DU, - 0x0123U, - 0x0121U, - 0x0121U, - 0x0433U, - 0x3052U, - 0x30B2U, - 0x2251U, - 0x059CU, - 0x05F3U, - 0x059DU, - 0x059EU, - 0x05F4U, - 0x3013U, - 0x0998U, - 0x0572U, - 0x0918U, - 0x0A98U, - 0x0A18U, - 0x063AU, - 0xFECEU, - 0xFECFU, - 0xFED0U, - 0x0495U, - 0x0493U, - 0x0491U, - 0x095AU, - 0x0A5AU, - 0x0260U, - 0x3393U, - 0x304EU, - 0x30AEU, - 0x0563U, - 0x05D2U, - 0xFB32U, - 0xFB32U, - 0x05D2U, - 0x0453U, - 0x01BEU, - 0x0294U, - 0x0296U, - 0x02C0U, - 0x0295U, - 0x02C1U, - 0x02E4U, - 0x02A1U, - 0x02A2U, - 0x1E21U, - 0xFF47U, - 0x3054U, - 0x30B4U, - 0x24A2U, - 0x33ACU, - 0x2207U, - 0x0316U, - 0x0300U, - 0x0300U, - 0x0953U, - 0x02CEU, - 0xFF40U, - 0x0340U, - 0x2265U, - 0x22DBU, - 0xFF1EU, - 0x2273U, - 0x2277U, - 0x2267U, - 0xFE65U, - 0x0261U, - 0x01E5U, - 0x3050U, - 0x30B0U, - 0x3318U, - 0x33C9U, - 0x04A9U, - 0x06C1U, - 0x09B9U, - 0x04B3U, - 0x0939U, - 0x0AB9U, - 0x0A39U, - 0x062DU, - 0xFEA2U, - 0xFEA3U, - 0x306FU, - 0xFEA4U, - 0x332AU, - 0x30CFU, - 0xFF8AU, - 0x0A4DU, - 0x0621U, - 0, - 0, - 0, - 0, - 0x0621U, - 0, - 0, - 0, - 0x3164U, - 0x044AU, - 0x21BCU, - 0x21C0U, - 0x33CAU, - 0x05B2U, - 0x05B2U, - 0x05B2U, - 0x05B2U, - 0x05B2U, - 0x05B2U, - 0x05B2U, - 0x05B2U, - 0x05B3U, - 0x05B3U, - 0x05B3U, - 0x05B3U, - 0x05B3U, - 0x05B3U, - 0x05B3U, - 0x05B3U, - 0x05B1U, - 0x05B1U, - 0x05B1U, - 0x05B1U, - 0x05B1U, - 0x05B1U, - 0x05B1U, - 0x05B1U, - 0x0127U, - 0x310FU, - 0x1E2BU, - 0x1E29U, - 0x24D7U, - 0x0125U, - 0x1E27U, - 0x1E23U, - 0x1E25U, - 0x05D4U, - 0x2665U, - 0x2665U, - 0x2661U, - 0xFB34U, - 0xFB34U, - 0x06C1U, - 0x0647U, - 0x05D4U, - 0xFBA7U, - 0xFEEAU, - 0xFEEAU, - 0xFBA5U, - 0xFBA4U, - 0xFBA8U, - 0xFEEBU, - 0x3078U, - 0xFBA9U, - 0xFEECU, - 0x337BU, - 0x30D8U, - 0xFF8DU, - 0x3336U, - 0x0267U, - 0x3339U, - 0x05D7U, - 0x05D7U, - 0x0266U, - 0x02B1U, - 0x327BU, - 0x321BU, - 0x326DU, - 0x314EU, - 0x320DU, - 0x3072U, - 0x30D2U, - 0xFF8BU, - 0x05B4U, - 0x05B4U, - 0x05B4U, - 0x05B4U, - 0x05B4U, - 0x05B4U, - 0x05B4U, - 0x05B4U, - 0x1E96U, - 0xFF48U, - 0x0570U, - 0x0E2BU, - 0x307BU, - 0x30DBU, - 0xFF8EU, - 0x05B9U, - 0x05B9U, - 0x05B9U, - 0x05B9U, - 0x05B9U, - 0x05B9U, - 0x05B9U, - 0x05B9U, - 0x0E2EU, - 0x0309U, - 0x0309U, - 0x0321U, - 0x0322U, - 0x3342U, - 0x03E9U, - 0x2015U, - 0x031BU, - 0x2668U, - 0x2302U, - 0x24A3U, - 0x02B0U, - 0x0265U, - 0x3075U, - 0x3333U, - 0x30D5U, - 0xFF8CU, - 0x030BU, - 0x0195U, - 0xFF0DU, - 0xFE63U, - 0x2010U, - 0x044FU, - 0x0987U, - 0x3127U, - 0x012DU, - 0x01D0U, - 0x24D8U, - 0x0456U, - 0x0209U, - 0x328FU, - 0x328BU, - 0x323FU, - 0x323AU, - 0x32A5U, - 0x3006U, - 0x3001U, - 0xFF64U, - 0x3237U, - 0x32A3U, - 0x322FU, - 0x323DU, - 0x329DU, - 0x3240U, - 0x3296U, - 0x3236U, - 0x322BU, - 0x3232U, - 0x32A4U, - 0x3005U, - 0x3298U, - 0x3238U, - 0x32A7U, - 0x32A6U, - 0x32A9U, - 0x322EU, - 0x322AU, - 0x3234U, - 0x3002U, - 0x329EU, - 0x3243U, - 0x3239U, - 0x323EU, - 0x32A8U, - 0x3299U, - 0x3242U, - 0x3233U, - 0x3000U, - 0x3235U, - 0x3231U, - 0x323BU, - 0x3230U, - 0x323CU, - 0x322CU, - 0x322DU, - 0x3007U, - 0x328EU, - 0x328AU, - 0x3294U, - 0x3290U, - 0x328CU, - 0x328DU, - 0x0907U, - 0x1E2FU, - 0x04E5U, - 0x1ECBU, - 0x04D7U, - 0x0435U, - 0x3275U, - 0x3215U, - 0x3267U, - 0x3147U, - 0x3207U, - 0x0A87U, - 0x0A07U, - 0x3044U, - 0x1EC9U, - 0x0988U, - 0x0438U, - 0x0908U, - 0x0A88U, - 0x0A08U, - 0x0A40U, - 0x020BU, - 0x0439U, - 0x09C0U, - 0x0940U, - 0x0AC0U, - 0x0133U, - 0x30A4U, - 0xFF72U, - 0x3163U, - 0x02DCU, - 0x05ACU, - 0x012BU, - 0x04E3U, - 0x2253U, - 0x0A3FU, - 0xFF49U, - 0x2206U, - 0x221EU, - 0x056BU, - 0x222BU, - 0x2321U, - 0x2321U, - 0xF8F5U, - 0x2320U, - 0x2320U, - 0x2229U, - 0x3305U, - 0x25D8U, - 0x25D9U, - 0x263BU, - 0x0451U, - 0x012FU, - 0x03B9U, - 0x03CAU, - 0x0390U, - 0x0269U, - 0x03AFU, - 0x24A4U, - 0x0A72U, - 0x3043U, - 0x30A3U, - 0xFF68U, - 0x09FAU, - 0x0268U, - 0x309DU, - 0x30FDU, - 0x0129U, - 0x1E2DU, - 0x3129U, - 0x044EU, - 0x09BFU, - 0x093FU, - 0x0ABFU, - 0x0475U, - 0x0477U, - 0x0571U, - 0x099CU, - 0x091CU, - 0x0A9CU, - 0x0A1CU, - 0x3110U, - 0x01F0U, - 0x24D9U, - 0x0135U, - 0x029DU, - 0x025FU, - 0x0458U, - 0x062CU, - 0xFE9EU, - 0xFE9FU, - 0xFEA0U, - 0x0698U, - 0xFB8BU, - 0x099DU, - 0x091DU, - 0x0A9DU, - 0x0A1DU, - 0x057BU, - 0x3004U, - 0xFF4AU, - 0x24A5U, - 0x02B2U, - 0x04A1U, - 0x0995U, - 0x1E31U, - 0x043AU, - 0x049BU, - 0x0915U, - 0x05DBU, - 0x0643U, - 0xFB3BU, - 0xFB3BU, - 0xFEDAU, - 0x05DBU, - 0xFEDBU, - 0xFEDCU, - 0xFB4DU, - 0x0A95U, - 0x0A15U, - 0x304BU, - 0x04C4U, - 0x30ABU, - 0xFF76U, - 0x03BAU, - 0x03F0U, - 0x3171U, - 0x3184U, - 0x3178U, - 0x3179U, - 0x330DU, - 0x0640U, - 0x0640U, - 0x30F5U, - 0x3384U, - 0x0650U, - 0x064DU, - 0x049FU, - 0xFF70U, - 0x049DU, - 0x310EU, - 0x3389U, - 0x01E9U, - 0x0137U, - 0x24DAU, - 0x0137U, - 0x1E33U, - 0x0584U, - 0x3051U, - 0x30B1U, - 0xFF79U, - 0x056FU, - 0x30F6U, - 0x0138U, - 0x0996U, - 0x0445U, - 0x0916U, - 0x0A96U, - 0x0A16U, - 0x062EU, - 0xFEA6U, - 0xFEA7U, - 0xFEA8U, - 0x03E7U, - 0x0959U, - 0x0A59U, - 0x3278U, - 0x3218U, - 0x326AU, - 0x314BU, - 0x320AU, - 0x0E02U, - 0x0E05U, - 0x0E03U, - 0x0E04U, - 0x0E5BU, - 0x0199U, - 0x0E06U, - 0x3391U, - 0x304DU, - 0x30ADU, - 0xFF77U, - 0x3315U, - 0x3316U, - 0x3314U, - 0x326EU, - 0x320EU, - 0x3260U, - 0x3131U, - 0x3200U, - 0x3133U, - 0x045CU, - 0x1E35U, - 0x3398U, - 0x33A6U, - 0xFF4BU, - 0x33A2U, - 0x3053U, - 0x33C0U, - 0x0E01U, - 0x30B3U, - 0xFF7AU, - 0x331EU, - 0x0481U, - 0x327FU, - 0x0343U, - 0x24A6U, - 0x33AAU, - 0x046FU, - 0x33CFU, - 0x029EU, - 0x304FU, - 0x30AFU, - 0xFF78U, - 0x33B8U, - 0x33BEU, - 0x09B2U, - 0x013AU, - 0x0932U, - 0x0AB2U, - 0x0A32U, - 0x0E45U, - 0xFEFCU, - 0xFEF8U, - 0xFEF7U, - 0xFEFAU, - 0xFEF9U, - 0xFEFBU, - 0xFEF6U, - 0xFEF5U, - 0x0644U, - 0x03BBU, - 0x019BU, - 0x05DCU, - 0xFB3CU, - 0xFB3CU, - 0x05DCU, - 0, - 0, - 0, - 0, - 0xFEDEU, - 0xFCCAU, - 0xFEDFU, - 0xFCC9U, - 0xFCCBU, - 0xFDF2U, - 0xFEE0U, - 0xFD88U, - 0xFCCCU, - 0, - 0, - 0x25EFU, - 0x019AU, - 0x026CU, - 0x310CU, - 0x013EU, - 0x013CU, - 0x24DBU, - 0x1E3DU, - 0x013CU, - 0x0140U, - 0x0140U, - 0x1E37U, - 0x1E39U, - 0x031AU, - 0x0318U, - 0x2264U, - 0x22DAU, - 0xFF1CU, - 0x2272U, - 0x2276U, - 0x2266U, - 0xFE64U, - 0x026EU, - 0x258CU, - 0x026DU, - 0x20A4U, - 0x056CU, - 0x01C9U, - 0x0459U, - 0xF6C0U, - 0x0933U, - 0x0AB3U, - 0x1E3BU, - 0x0934U, - 0x09E1U, - 0x0961U, - 0x09E3U, - 0x0963U, - 0x026BU, - 0xFF4CU, - 0x33D0U, - 0x0E2CU, - 0x2227U, - 0x2310U, - 0x2228U, - 0x0E25U, - 0x017FU, - 0xFE4EU, - 0x0332U, - 0xFE4DU, - 0x25CAU, - 0x24A7U, - 0x2113U, - 0x2591U, - 0x0E26U, - 0x098CU, - 0x090CU, - 0x09E2U, - 0x0962U, - 0x33D3U, - 0x09AEU, - 0x0331U, - 0x0304U, - 0x02CDU, - 0xFFE3U, - 0x1E3FU, - 0x092EU, - 0x0AAEU, - 0x0A2EU, - 0x05A4U, - 0x05A4U, - 0x307EU, - 0xF895U, - 0xF894U, - 0x0E4BU, - 0xF893U, - 0xF88CU, - 0xF88BU, - 0x0E48U, - 0xF88AU, - 0xF884U, - 0x0E31U, - 0xF889U, - 0x0E47U, - 0xF88FU, - 0xF88EU, - 0x0E49U, - 0xF88DU, - 0xF892U, - 0xF891U, - 0x0E4AU, - 0xF890U, - 0x0E46U, - 0x30DEU, - 0xFF8FU, - 0x2642U, - 0x3347U, - 0x05BEU, - 0x2642U, - 0x05AFU, - 0x3383U, - 0x3107U, - 0x33D4U, - 0x24DCU, - 0x33A5U, - 0x1E41U, - 0x1E43U, - 0x0645U, - 0xFEE2U, - 0xFEE3U, - 0xFEE4U, - 0xFCD1U, - 0xFC48U, - 0x334DU, - 0x3081U, - 0x337EU, - 0x30E1U, - 0xFF92U, - 0x05DEU, - 0xFB3EU, - 0xFB3EU, - 0x05DEU, - 0x0574U, - 0x05A5U, - 0x05A6U, - 0x05A6U, - 0x05A5U, - 0x0271U, - 0x3392U, - 0xFF65U, - 0x00B7U, - 0x3272U, - 0x3212U, - 0x3264U, - 0x3141U, - 0x3170U, - 0x3204U, - 0x316EU, - 0x316FU, - 0x307FU, - 0x30DFU, - 0xFF90U, - 0x0320U, - 0x2296U, - 0x02D7U, - 0x2213U, - 0x2032U, - 0x334AU, - 0x3349U, - 0x0270U, - 0x3396U, - 0x33A3U, - 0xFF4DU, - 0x339FU, - 0x3082U, - 0x33C1U, - 0x30E2U, - 0xFF93U, - 0x33D6U, - 0x0E21U, - 0x33A7U, - 0x33A8U, - 0x24A8U, - 0x33ABU, - 0x33B3U, - 0x026FU, - 0x00B5U, - 0x3382U, - 0x226BU, - 0x226AU, - 0x338CU, - 0x03BCU, - 0x338DU, - 0x3080U, - 0x30E0U, - 0xFF91U, - 0x3395U, - 0x339BU, - 0x05A3U, - 0x05A3U, - 0x266AU, - 0x266BU, - 0x266DU, - 0x266FU, - 0x33B2U, - 0x33B6U, - 0x33BCU, - 0x33B9U, - 0x33B7U, - 0x33BFU, - 0x33BDU, - 0x09A8U, - 0x2207U, - 0x0144U, - 0x0928U, - 0x0AA8U, - 0x0A28U, - 0x306AU, - 0x30CAU, - 0xFF85U, - 0x0149U, - 0x3381U, - 0x310BU, - 0x00A0U, - 0x0148U, - 0x0146U, - 0x24DDU, - 0x1E4BU, - 0x0146U, - 0x1E45U, - 0x1E47U, - 0x306DU, - 0x30CDU, - 0xFF88U, - 0x20AAU, - 0x338BU, - 0x0999U, - 0x0919U, - 0x0A99U, - 0x0A19U, - 0x0E07U, - 0x3093U, - 0x0272U, - 0x0273U, - 0x326FU, - 0x320FU, - 0x3135U, - 0x3261U, - 0x3136U, - 0x3134U, - 0x3168U, - 0x3201U, - 0x3167U, - 0x3166U, - 0x306BU, - 0x30CBU, - 0xFF86U, - 0xF899U, - 0x0E4DU, - 0x0669U, - 0x09EFU, - 0x2468U, - 0x2792U, - 0x096FU, - 0x0AEFU, - 0x0A6FU, - 0x0669U, - 0x3029U, - 0x3228U, - 0xFF19U, - 0x247CU, - 0x2490U, - 0x06F9U, - 0x2178U, - 0x2472U, - 0x2486U, - 0x249AU, - 0x0E59U, - 0x01CCU, - 0x045AU, - 0x30F3U, - 0xFF9DU, - 0x019EU, - 0x1E49U, - 0xFF4EU, - 0x339AU, - 0x09A3U, - 0x0923U, - 0x0AA3U, - 0x0A23U, - 0x0929U, - 0x306EU, - 0x30CEU, - 0xFF89U, - 0x00A0U, - 0x0E13U, - 0x0E19U, - 0x0646U, - 0xFEE6U, - 0x06BAU, - 0xFB9FU, - 0, - 0xFEE7U, - 0xFCD2U, - 0xFC4BU, - 0xFEE8U, - 0xFCD5U, - 0xFC4EU, - 0xFC8DU, - 0x220CU, - 0x2209U, - 0x2209U, - 0x2260U, - 0x226FU, - 0x2271U, - 0x2279U, - 0x2262U, - 0x226EU, - 0x2270U, - 0x2226U, - 0x2280U, - 0x2284U, - 0x2281U, - 0x2285U, - 0x0576U, - 0x24A9U, - 0x33B1U, - 0x03BDU, - 0x306CU, - 0x30CCU, - 0xFF87U, - 0x09BCU, - 0x093CU, - 0x0ABCU, - 0x0A3CU, - 0xFF03U, - 0xFE5FU, - 0x0374U, - 0x0375U, - 0x2116U, - 0x05E0U, - 0xFB40U, - 0xFB40U, - 0x05E0U, - 0x33B5U, - 0x33BBU, - 0x099EU, - 0x091EU, - 0x0A9EU, - 0x0A1EU, - 0x0E2DU, - 0x0275U, - 0x04E9U, - 0x04EBU, - 0x0993U, - 0x311BU, - 0x014FU, - 0x0911U, - 0x0A91U, - 0x0949U, - 0x0AC9U, - 0x01D2U, - 0x24DEU, - 0x1ED1U, - 0x1ED9U, - 0x1ED3U, - 0x1ED5U, - 0x1ED7U, - 0x043EU, - 0x0151U, - 0x020DU, - 0x0913U, - 0x04E7U, - 0x1ECDU, - 0x315AU, - 0x0328U, - 0x0A93U, - 0x0585U, - 0x304AU, - 0x1ECFU, - 0x01A1U, - 0x1EDBU, - 0x1EE3U, - 0x1EDDU, - 0x1EDFU, - 0x1EE1U, - 0x0151U, - 0x01A3U, - 0x020FU, - 0x30AAU, - 0xFF75U, - 0x3157U, - 0x05ABU, - 0x014DU, - 0x1E53U, - 0x1E51U, - 0x0950U, - 0x03C9U, - 0x03D6U, - 0x0461U, - 0x0277U, - 0x047BU, - 0x047DU, - 0x03CEU, - 0x0AD0U, - 0x03BFU, - 0x03CCU, - 0xFF4FU, - 0x0661U, - 0x09E7U, - 0x2460U, - 0x278AU, - 0x0967U, - 0x0AE7U, - 0x0A67U, - 0x0661U, - 0x3021U, - 0x3220U, - 0xFF11U, - 0x09F4U, - 0x2474U, - 0x2488U, - 0x06F1U, - 0x2170U, - 0x0E51U, - 0x01EBU, - 0x01EDU, - 0x0A13U, - 0x0A4BU, - 0x0254U, - 0x24AAU, - 0x25E6U, - 0x2325U, - 0x221FU, - 0x0912U, - 0x094AU, - 0x01FFU, - 0x3049U, - 0x30A9U, - 0xFF6BU, - 0x01FFU, - 0x047FU, - 0x1E4DU, - 0x1E4FU, - 0x3121U, - 0x203EU, - 0xFE4AU, - 0x0305U, - 0xFE49U, - 0xFE4CU, - 0xFE4BU, - 0x00AFU, - 0x09CBU, - 0x094BU, - 0x0ACBU, - 0x3380U, - 0x332BU, - 0x09AAU, - 0x1E55U, - 0x092AU, - 0x21DFU, - 0x21DEU, - 0x0AAAU, - 0x0A2AU, - 0x3071U, - 0x0E2FU, - 0x30D1U, - 0x0484U, - 0x04C0U, - 0x317FU, - 0x2225U, - 0xFD3EU, - 0xF8EDU, - 0xF8ECU, - 0xFF08U, - 0xFE59U, - 0xF8EBU, - 0xFE35U, - 0xFD3FU, - 0xF8F8U, - 0xF8F7U, - 0xFF09U, - 0xFE5AU, - 0xF8F6U, - 0xFE36U, - 0x2202U, - 0x05C0U, - 0x0599U, - 0x33A9U, - 0x05B7U, - 0x05B7U, - 0x05B7U, - 0x05B7U, - 0x05B7U, - 0x05B7U, - 0x05B7U, - 0x05B7U, - 0x05A1U, - 0x3106U, - 0x24DFU, - 0x1E57U, - 0x05E4U, - 0x043FU, - 0xFB44U, - 0xFB44U, - 0x333BU, - 0xFB43U, - 0x067EU, - 0x057AU, - 0x05E4U, - 0xFB57U, - 0xFB58U, - 0x307AU, - 0xFB59U, - 0x30DAU, - 0x04A7U, - 0xFB4EU, - 0x066AU, - 0xFF05U, - 0xFE6AU, - 0x0589U, - 0xFF61U, - 0xFF0EU, - 0xFE52U, - 0x0342U, - 0x22A5U, - 0x20A7U, - 0x338AU, - 0x09ABU, - 0x092BU, - 0x0AABU, - 0x0A2BU, - 0x03C6U, - 0x03D5U, - 0x327AU, - 0x321AU, - 0x326CU, - 0x314DU, - 0x320CU, - 0x0278U, - 0x0E3AU, - 0x03D5U, - 0x01A5U, - 0x0E1EU, - 0x0E1CU, - 0x0E20U, - 0x03C0U, - 0x3273U, - 0x3213U, - 0x3176U, - 0x3265U, - 0x3172U, - 0x3142U, - 0x3205U, - 0x3174U, - 0x3144U, - 0x3175U, - 0x3177U, - 0x3173U, - 0x3074U, - 0x30D4U, - 0x03D6U, - 0x0583U, - 0x031FU, - 0x2295U, - 0x02D6U, - 0xFF0BU, - 0xFE62U, - 0x207AU, - 0xFF50U, - 0x33D8U, - 0x307DU, - 0x261FU, - 0x261CU, - 0x261EU, - 0x261DU, - 0x30DDU, - 0x0E1BU, - 0x3012U, - 0x3020U, - 0x24ABU, - 0x227AU, - 0x211EU, - 0x02B9U, - 0x2035U, - 0x220FU, - 0x2305U, - 0x30FCU, - 0x2318U, - 0x2282U, - 0x2283U, - 0x2237U, - 0x221DU, - 0x03C8U, - 0x0471U, - 0x0486U, - 0x33B0U, - 0x3077U, - 0x30D7U, - 0x33B4U, - 0x33BAU, - 0x0958U, - 0x05A8U, - 0x0642U, - 0xFED6U, - 0xFED7U, - 0xFED8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x05B8U, - 0x059FU, - 0x3111U, - 0x24E0U, - 0x02A0U, - 0xFF51U, - 0x05E7U, - 0xFB47U, - 0xFB47U, - 0, - 0, - 0, - 0, - 0x05E7U, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0x24ACU, - 0x2669U, - 0x05BBU, - 0x05BBU, - 0x05BBU, - 0x05BBU, - 0x05BBU, - 0x05BBU, - 0x05BBU, - 0x05BBU, - 0x061FU, - 0x055EU, - 0x037EU, - 0xFF1FU, - 0xFF02U, - 0x301EU, - 0x301DU, - 0x201BU, - 0x201BU, - 0x0149U, - 0xFF07U, - 0x057CU, - 0x09B0U, - 0x0155U, - 0x0930U, - 0x221AU, - 0xF8E5U, - 0x33AEU, - 0x33AFU, - 0x33ADU, - 0x05BFU, - 0x05BFU, - 0x0AB0U, - 0x0A30U, - 0x3089U, - 0x30E9U, - 0xFF97U, - 0x09F1U, - 0x09F0U, - 0x0264U, - 0x2236U, - 0x3116U, - 0x0159U, - 0x0157U, - 0x24E1U, - 0x0157U, - 0x0211U, - 0x1E59U, - 0x1E5BU, - 0x1E5DU, - 0x203BU, - 0x2286U, - 0x2287U, - 0xF8E8U, - 0xF6DAU, - 0x0631U, - 0x0580U, - 0xFEAEU, - 0x308CU, - 0, - 0x30ECU, - 0xFF9AU, - 0x05E8U, - 0xFB48U, - 0, - 0, - 0, - 0, - 0x05E8U, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0x223DU, - 0x0597U, - 0x0597U, - 0x2310U, - 0x027EU, - 0x027FU, - 0x09DDU, - 0x095DU, - 0x03C1U, - 0x027DU, - 0x027BU, - 0x02B5U, - 0x03F1U, - 0x02DEU, - 0x3271U, - 0x3211U, - 0x3263U, - 0x3140U, - 0x313AU, - 0x3169U, - 0x3139U, - 0x313BU, - 0x316CU, - 0x3203U, - 0x313FU, - 0x313CU, - 0x316BU, - 0x313DU, - 0x313EU, - 0x316AU, - 0x316DU, - 0x221FU, - 0x0319U, - 0x22BFU, - 0x308AU, - 0x30EAU, - 0xFF98U, - 0x0325U, - 0x030AU, - 0x02BFU, - 0x0559U, - 0x031CU, - 0x02D3U, - 0x02BEU, - 0x0339U, - 0x02D2U, - 0x0213U, - 0x3351U, - 0x1E5FU, - 0x027CU, - 0x027AU, - 0xFF52U, - 0x308DU, - 0x30EDU, - 0xFF9BU, - 0x0E23U, - 0x24ADU, - 0x09DCU, - 0x0931U, - 0x0A5CU, - 0x0691U, - 0xFB8DU, - 0x09E0U, - 0x0960U, - 0x0AE0U, - 0x09C4U, - 0x0944U, - 0x0AC4U, - 0x2590U, - 0x0279U, - 0x02B4U, - 0x308BU, - 0x30EBU, - 0xFF99U, - 0x09F2U, - 0x09F3U, - 0x0E24U, - 0x098BU, - 0x090BU, - 0x0A8BU, - 0x09C3U, - 0x0943U, - 0x0AC3U, - 0x09B8U, - 0x015BU, - 0x1E65U, - 0x0635U, - 0x0938U, - 0xFEBAU, - 0xFEBBU, - 0xFEBCU, - 0x0AB8U, - 0x0A38U, - 0x3055U, - 0x30B5U, - 0xFF7BU, - 0xFDFAU, - 0x05E1U, - 0xFB41U, - 0xFB41U, - 0x05E1U, - 0x0E32U, - 0x0E41U, - 0x0E44U, - 0x0E43U, - 0x0E33U, - 0x0E30U, - 0x0E40U, - 0xF886U, - 0x0E35U, - 0xF885U, - 0x0E34U, - 0x0E42U, - 0xF888U, - 0x0E37U, - 0xF887U, - 0x0E36U, - 0x0E38U, - 0x0E39U, - 0x3119U, - 0x1E67U, - 0x015FU, - 0x0259U, - 0x04D9U, - 0x04DBU, - 0x025AU, - 0x24E2U, - 0x015DU, - 0x0219U, - 0x1E61U, - 0x1E63U, - 0x1E69U, - 0x033CU, - 0x2033U, - 0x02CAU, - 0x0633U, - 0xFEB2U, - 0xFEB3U, - 0xFEB4U, - 0x05B6U, - 0x05B6U, - 0x05B6U, - 0x05B6U, - 0x05B6U, - 0x05B6U, - 0x05B6U, - 0x0592U, - 0x05B6U, - 0x057DU, - 0x305BU, - 0x30BBU, - 0xFF7EU, - 0x061BU, - 0xFF1BU, - 0xFE54U, - 0x309CU, - 0xFF9FU, - 0x3322U, - 0x3323U, - 0x0667U, - 0x09EDU, - 0x2466U, - 0x2790U, - 0x096DU, - 0x0AEDU, - 0x0A6DU, - 0x0667U, - 0x3027U, - 0x3226U, - 0xFF17U, - 0x247AU, - 0x248EU, - 0x06F7U, - 0x2176U, - 0x2470U, - 0x2484U, - 0x2498U, - 0x0E57U, - 0x00ADU, - 0x0577U, - 0x09B6U, - 0x0448U, - 0x0651U, - 0xFC61U, - 0xFC5EU, - 0xFC60U, - 0, - 0xFC62U, - 0xFC5FU, - 0x2592U, - 0x2593U, - 0x2591U, - 0x2592U, - 0x0936U, - 0x0AB6U, - 0x0A36U, - 0x0593U, - 0x3115U, - 0x0449U, - 0x0634U, - 0xFEB6U, - 0xFEB7U, - 0xFEB8U, - 0x03E3U, - 0x20AAU, - 0x20AAU, - 0x05B0U, - 0x05B0U, - 0x05B0U, - 0x05B0U, - 0x05B0U, - 0x05B0U, - 0x05B0U, - 0x05B0U, - 0x05B0U, - 0x04BBU, - 0x03EDU, - 0x05E9U, - 0xFB49U, - 0xFB49U, - 0xFB2CU, - 0xFB2CU, - 0xFB2DU, - 0xFB2DU, - 0x05C1U, - 0x05E9U, - 0xFB2AU, - 0xFB2AU, - 0xFB2BU, - 0xFB2BU, - 0x0282U, - 0x03C3U, - 0x03C2U, - 0x03C2U, - 0x03F2U, - 0x3057U, - 0x30B7U, - 0xFF7CU, - 0x05BDU, - 0x05BDU, - 0x223CU, - 0x05C2U, - 0x3274U, - 0x3214U, - 0x317EU, - 0x3266U, - 0x317AU, - 0x3145U, - 0x317BU, - 0x3206U, - 0x317DU, - 0x317CU, - 0x0666U, - 0x09ECU, - 0x2465U, - 0x278FU, - 0x096CU, - 0x0AECU, - 0x0A6CU, - 0x0666U, - 0x3026U, - 0x3225U, - 0xFF16U, - 0x2479U, - 0x248DU, - 0x06F6U, - 0x2175U, - 0x246FU, - 0x09F9U, - 0x2483U, - 0x2497U, - 0x0E56U, - 0xFF0FU, - 0x017FU, - 0x1E9BU, - 0x263AU, - 0xFF53U, - 0x05C3U, - 0x00ADU, - 0x044CU, - 0x305DU, - 0x30BDU, - 0xFF7FU, - 0x0338U, - 0x0337U, - 0x0E29U, - 0x0E28U, - 0x0E0BU, - 0x0E2AU, - 0x0020U, - 0x2660U, - 0x2660U, - 0x2664U, - 0x24AEU, - 0x033BU, - 0x33C4U, - 0x339DU, - 0x25A9U, - 0x25A4U, - 0x338FU, - 0x339EU, - 0x33CEU, - 0x33D1U, - 0x33D2U, - 0x338EU, - 0x33D5U, - 0x339CU, - 0x33A1U, - 0x25A6U, - 0x25A7U, - 0x25A8U, - 0x25A5U, - 0x25A3U, - 0x33DBU, - 0x09B7U, - 0x0937U, - 0x0AB7U, - 0x3149U, - 0x3185U, - 0x3180U, - 0x3132U, - 0x3165U, - 0x3143U, - 0x3146U, - 0x3138U, - 0xFFE1U, - 0x0336U, - 0x0335U, - 0x2282U, - 0x228AU, - 0x2286U, - 0x227BU, - 0x220BU, - 0x3059U, - 0x30B9U, - 0xFF7DU, - 0x0652U, - 0x2211U, - 0x263CU, - 0x2283U, - 0x228BU, - 0x2287U, - 0x33DCU, - 0x337CU, - 0x09A4U, - 0x22A4U, - 0x22A3U, - 0x0924U, - 0x0AA4U, - 0x0A24U, - 0x0637U, - 0xFEC2U, - 0xFEC3U, - 0x305FU, - 0xFEC4U, - 0x337DU, - 0x30BFU, - 0xFF80U, - 0x0640U, - 0x03C4U, - 0x05EAU, - 0xFB4AU, - 0xFB4AU, - 0xFB4AU, - 0x05EAU, - 0x0167U, - 0x310AU, - 0x0165U, - 0x02A8U, - 0x0163U, - 0x0686U, - 0xFB7BU, - 0xFB7CU, - 0xFB7DU, - 0, - 0x24E3U, - 0x1E71U, - 0x0163U, - 0x1E97U, - 0x1E6BU, - 0x1E6DU, - 0x0442U, - 0x04ADU, - 0x062AU, - 0xFE96U, - 0xFCA2U, - 0xFC0CU, - 0xFE97U, - 0x3066U, - 0xFCA1U, - 0xFC0BU, - 0x0629U, - 0xFE94U, - 0xFE98U, - 0xFCA4U, - 0xFC0EU, - 0xFC73U, - 0x30C6U, - 0xFF83U, - 0x2121U, - 0x260EU, - 0x05A0U, - 0x05A9U, - 0x2469U, - 0x3229U, - 0x247DU, - 0x2491U, - 0x2179U, - 0x02A7U, - 0x05D8U, - 0xFB38U, - 0xFB38U, - 0x05D8U, - 0x04B5U, - 0x059BU, - 0x059BU, - 0x09A5U, - 0x0925U, - 0x0AA5U, - 0x0A25U, - 0x0630U, - 0xFEACU, - 0xF898U, - 0xF897U, - 0x0E4CU, - 0xF896U, - 0x062BU, - 0xFE9AU, - 0xFE9BU, - 0xFE9CU, - 0x2203U, - 0x2234U, - 0x03B8U, - 0x03D1U, - 0x03D1U, - 0x3279U, - 0x3219U, - 0x326BU, - 0x314CU, - 0x320BU, - 0x246CU, - 0x2480U, - 0x2494U, - 0x0E11U, - 0x01ADU, - 0x0E12U, - 0x0E17U, - 0x0E10U, - 0x0E18U, - 0x0E16U, - 0x0482U, - 0x066CU, - 0x066CU, - 0x0663U, - 0x09E9U, - 0x2462U, - 0x278CU, - 0x0969U, - 0x0AE9U, - 0x0A69U, - 0x0663U, - 0x3023U, - 0x3222U, - 0xFF13U, - 0x09F6U, - 0x2476U, - 0x248AU, - 0x06F3U, - 0x2172U, - 0x0E53U, - 0x3394U, - 0x3061U, - 0x30C1U, - 0xFF81U, - 0x3270U, - 0x3210U, - 0x3262U, - 0x3137U, - 0x3202U, - 0x0330U, - 0x0303U, - 0x0303U, - 0x0360U, - 0x223CU, - 0x0334U, - 0x033EU, - 0x2297U, - 0x0596U, - 0x0596U, - 0x0A70U, - 0x0483U, - 0x057FU, - 0x1E6FU, - 0xFF54U, - 0x0569U, - 0x3068U, - 0x30C8U, - 0xFF84U, - 0x02E5U, - 0x02E9U, - 0x02E6U, - 0x02E8U, - 0x02E7U, - 0x01BDU, - 0x0185U, - 0x01A8U, - 0x0384U, - 0x3327U, - 0x0E0FU, - 0x3014U, - 0xFE5DU, - 0xFE39U, - 0x3015U, - 0xFE5EU, - 0xFE3AU, - 0x0E15U, - 0x01ABU, - 0x24AFU, - 0xF8EAU, - 0xF6DBU, - 0x0288U, - 0x25BCU, - 0x25C4U, - 0x25BAU, - 0x25B2U, - 0x02A6U, - 0x05E6U, - 0xFB46U, - 0xFB46U, - 0x05E6U, - 0x0446U, - 0x05B5U, - 0x05B5U, - 0x05B5U, - 0x05B5U, - 0x05B5U, - 0x05B5U, - 0x05B5U, - 0x05B5U, - 0x045BU, - 0x099FU, - 0x091FU, - 0x0A9FU, - 0x0A1FU, - 0x0679U, - 0xFB67U, - 0xFB68U, - 0xFB69U, - 0x09A0U, - 0x0920U, - 0x0AA0U, - 0x0A20U, - 0x0287U, - 0x3064U, - 0x30C4U, - 0xFF82U, - 0x3063U, - 0x30C3U, - 0xFF6FU, - 0x246BU, - 0x247FU, - 0x2493U, - 0x217BU, - 0x2473U, - 0x5344U, - 0x2487U, - 0x249BU, - 0x0662U, - 0x09E8U, - 0x2461U, - 0x278BU, - 0x0968U, - 0x2025U, - 0xFE30U, - 0x0AE8U, - 0x0A68U, - 0x0662U, - 0x3022U, - 0x3221U, - 0xFF12U, - 0x09F5U, - 0x2475U, - 0x2489U, - 0x06F2U, - 0x2171U, - 0x01BBU, - 0x0E52U, - 0x0289U, - 0x0989U, - 0x3128U, - 0x016DU, - 0x01D4U, - 0x24E4U, - 0x1E77U, - 0x0443U, - 0x0951U, - 0x0171U, - 0x0215U, - 0x0909U, - 0x01D8U, - 0x1E73U, - 0x01DAU, - 0x04F1U, - 0x01DCU, - 0x01D6U, - 0x1EE5U, - 0x0A89U, - 0x0A09U, - 0x3046U, - 0x1EE7U, - 0x01B0U, - 0x1EE9U, - 0x1EF1U, - 0x1EEBU, - 0x1EEDU, - 0x1EEFU, - 0x0171U, - 0x04F3U, - 0x0217U, - 0x30A6U, - 0xFF73U, - 0x0479U, - 0x315CU, - 0x016BU, - 0x04EFU, - 0x1E7BU, - 0x0A41U, - 0xFF55U, - 0x2017U, - 0xFF3FU, - 0xFE33U, - 0xFE4FU, - 0x222AU, - 0x2200U, - 0x0173U, - 0x24B0U, - 0x2580U, - 0x05C4U, - 0x03C5U, - 0x03CBU, - 0x03B0U, - 0x028AU, - 0x03CDU, - 0x031DU, - 0x02D4U, - 0x0A73U, - 0x016FU, - 0x045EU, - 0x3045U, - 0x30A5U, - 0xFF69U, - 0x04AFU, - 0x04B1U, - 0x0169U, - 0x1E79U, - 0x1E75U, - 0x098AU, - 0x090AU, - 0x0A8AU, - 0x0A0AU, - 0x0A42U, - 0x09C2U, - 0x0942U, - 0x0AC2U, - 0x09C1U, - 0x0941U, - 0x0AC1U, - 0x0935U, - 0x0AB5U, - 0x0A35U, - 0x30F7U, - 0x05D5U, - 0xFB35U, - 0xFB35U, - 0xFB35U, - 0x05D5U, - 0xFB4BU, - 0xFB4BU, - 0x05F0U, - 0x05F1U, - 0x24E5U, - 0x1E7FU, - 0x0432U, - 0x06A4U, - 0xFB6BU, - 0xFB6CU, - 0xFB6DU, - 0x30F9U, - 0x2640U, - 0x007CU, - 0x030DU, - 0x0329U, - 0x02CCU, - 0x02C8U, - 0x057EU, - 0x028BU, - 0x30F8U, - 0x09CDU, - 0x094DU, - 0x0ACDU, - 0x0983U, - 0x0903U, - 0x0A83U, - 0xFF56U, - 0x0578U, - 0x309EU, - 0x30FEU, - 0x309BU, - 0xFF9EU, - 0x30FAU, - 0x24B1U, - 0x1E7DU, - 0x028CU, - 0x3094U, - 0x30F4U, - 0x1E83U, - 0x3159U, - 0x308FU, - 0x30EFU, - 0xFF9CU, - 0x3158U, - 0x308EU, - 0x30EEU, - 0x3357U, - 0x301CU, - 0xFE34U, - 0x0648U, - 0xFEEEU, - 0x0624U, - 0xFE86U, - 0x33DDU, - 0x24E6U, - 0x0175U, - 0x1E85U, - 0x1E87U, - 0x1E89U, - 0x3091U, - 0x2118U, - 0x30F1U, - 0x315EU, - 0x315DU, - 0x1E81U, - 0x25E6U, - 0x25CBU, - 0x25D9U, - 0x300EU, - 0xFE43U, - 0x300FU, - 0xFE44U, - 0x25C7U, - 0x25C8U, - 0x25BFU, - 0x25BDU, - 0x25C3U, - 0x25C1U, - 0x3016U, - 0x3017U, - 0x25B9U, - 0x25B7U, - 0x25ABU, - 0x263AU, - 0x25A1U, - 0x2606U, - 0x260FU, - 0x3018U, - 0x3019U, - 0x25B5U, - 0x25B3U, - 0x3090U, - 0x30F0U, - 0x315FU, - 0xFF57U, - 0x3092U, - 0x30F2U, - 0xFF66U, - 0x20A9U, - 0xFFE6U, - 0x0E27U, - 0x24B2U, - 0x1E98U, - 0x02B7U, - 0x028DU, - 0x01BFU, - 0x033DU, - 0x3112U, - 0x24E7U, - 0x1E8DU, - 0x1E8BU, - 0x056DU, - 0x03BEU, - 0xFF58U, - 0x24B3U, - 0x02E3U, - 0x334EU, - 0x09AFU, - 0x092FU, - 0x3152U, - 0x0AAFU, - 0x0A2FU, - 0x3084U, - 0x30E4U, - 0xFF94U, - 0x3151U, - 0x0E4EU, - 0x3083U, - 0x30E3U, - 0xFF6CU, - 0x0463U, - 0x24E8U, - 0x0177U, - 0x1E8FU, - 0x1EF5U, - 0x064AU, - 0x06D2U, - 0xFBAFU, - 0xFEF2U, - 0x0626U, - 0xFE8AU, - 0xFE8BU, - 0xFE8CU, - 0xFEF3U, - 0xFEF4U, - 0xFCDDU, - 0xFC58U, - 0xFC94U, - 0x06D1U, - 0x3156U, - 0xFFE5U, - 0x3155U, - 0x3186U, - 0x05AAU, - 0x05AAU, - 0x044BU, - 0x04F9U, - 0x3181U, - 0x3183U, - 0x3182U, - 0x059AU, - 0x1EF3U, - 0x01B4U, - 0x1EF7U, - 0x0575U, - 0x0457U, - 0x3162U, - 0x262FU, - 0x0582U, - 0xFF59U, - 0x05D9U, - 0xFB39U, - 0xFB39U, - 0x05D9U, - 0x05F2U, - 0xFB1FU, - 0x3088U, - 0x3189U, - 0x30E8U, - 0xFF96U, - 0x315BU, - 0x3087U, - 0x30E7U, - 0xFF6EU, - 0x03F3U, - 0x3188U, - 0x3187U, - 0x0E22U, - 0x0E0DU, - 0x24B4U, - 0x037AU, - 0x0345U, - 0x01A6U, - 0x1E99U, - 0x02B8U, - 0x1EF9U, - 0x028EU, - 0x3086U, - 0x318CU, - 0x30E6U, - 0xFF95U, - 0x3160U, - 0x046BU, - 0x046DU, - 0x0467U, - 0x0469U, - 0x3085U, - 0x30E5U, - 0xFF6DU, - 0x318BU, - 0x318AU, - 0x09DFU, - 0x095FU, - 0x0566U, - 0x017AU, - 0x095BU, - 0x0A5BU, - 0x0638U, - 0xFEC6U, - 0xFEC7U, - 0x3056U, - 0xFEC8U, - 0x0632U, - 0xFEB0U, - 0x30B6U, - 0x0595U, - 0x0594U, - 0x0598U, - 0x05D6U, - 0xFB36U, - 0xFB36U, - 0x05D6U, - 0x3117U, - 0x24E9U, - 0x1E91U, - 0x0291U, - 0x017CU, - 0x017CU, - 0x1E93U, - 0x0437U, - 0x0499U, - 0x04DFU, - 0x305CU, - 0x30BCU, - 0x0660U, - 0x09E6U, - 0x0966U, - 0x0AE6U, - 0x0A66U, - 0x0660U, - 0xFF10U, - 0x06F0U, - 0x0E50U, - 0xFEFFU, - 0x200CU, - 0x200BU, - 0x03B6U, - 0x3113U, - 0x056AU, - 0x04C2U, - 0x0436U, - 0x0497U, - 0x04DDU, - 0x3058U, - 0x30B8U, - 0x05AEU, - 0x1E95U, - 0xFF5AU, - 0x305EU, - 0x30BEU, - 0x24B5U, - 0x0290U, - 0x01B6U, - 0x305AU, - 0x30BAU, - -#endif /* FT_CONFIG_OPTION_ADOBE_GLYPH_LIST */ - 0 - }; - - - - static const unsigned short t1_standard_encoding[257] = - { - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 0, - 111, - 112, - 113, - 114, - 0, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 0, - 123, - 0, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 0, - 132, - 133, - 0, - 134, - 135, - 136, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 0, - 139, - 0, - 0, - 0, - 0, - 140, - 141, - 142, - 143, - 0, - 0, - 0, - 0, - 0, - 144, - 0, - 0, - 0, - 145, - 0, - 0, - 146, - 147, - 148, - 149, - 0, - 0, - 0, - 0, - 0 - }; - - - static const unsigned short t1_expert_encoding[257] = - { - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 229, - 230, - 0, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 13, - 14, - 15, - 99, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 27, - 28, - 249, - 250, - 251, - 252, - 0, - 253, - 254, - 255, - 256, - 257, - 0, - 0, - 0, - 258, - 0, - 0, - 259, - 260, - 261, - 262, - 0, - 0, - 263, - 264, - 265, - 0, - 266, - 109, - 110, - 267, - 268, - 269, - 0, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 304, - 305, - 306, - 0, - 0, - 307, - 308, - 309, - 310, - 311, - 0, - 312, - 0, - 0, - 313, - 0, - 0, - 314, - 315, - 0, - 0, - 316, - 317, - 318, - 0, - 0, - 0, - 158, - 155, - 163, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 0, - 0, - 326, - 150, - 164, - 169, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 0 - }; - - -/* END */ +/***************************************************************************/ +/* */ +/* ../psnames/pstables.h */ +/* */ +/* PostScript glyph names. */ +/* */ +/* Copyright 2005 by */ +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ +/* */ +/* This file is part of the FreeType project, and may only be used, */ +/* modified, and distributed under the terms of the FreeType project */ +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ +/* this file you indicate that you have read the license and */ +/* understand and accept it fully. */ +/* */ +/***************************************************************************/ + + + /* ALL of this file has been generated automatically -- do not edit! */ + + +static const char ft_standard_glyph_names[3696] = +{ + '.','n','u','l','l', 0 ,'n','o','n','m','a','r','k','i','n','g', + 'r','e','t','u','r','n', 0 ,'n','o','t','e','q','u','a','l', 0 , + 'i','n','f','i','n','i','t','y', 0 ,'l','e','s','s','e','q','u', + 'a','l', 0 ,'g','r','e','a','t','e','r','e','q','u','a','l', 0 , + 'p','a','r','t','i','a','l','d','i','f','f', 0 ,'s','u','m','m', + 'a','t','i','o','n', 0 ,'p','r','o','d','u','c','t', 0 ,'p','i', + 0 ,'i','n','t','e','g','r','a','l', 0 ,'O','m','e','g','a', 0 , + 'r','a','d','i','c','a','l', 0 ,'a','p','p','r','o','x','e','q', + 'u','a','l', 0 ,'D','e','l','t','a', 0 ,'n','o','n','b','r','e', + 'a','k','i','n','g','s','p','a','c','e', 0 ,'l','o','z','e','n', + 'g','e', 0 ,'a','p','p','l','e', 0 ,'f','r','a','n','c', 0 ,'G', + 'b','r','e','v','e', 0 ,'g','b','r','e','v','e', 0 ,'I','d','o', + 't','a','c','c','e','n','t', 0 ,'S','c','e','d','i','l','l','a', + 0 ,'s','c','e','d','i','l','l','a', 0 ,'C','a','c','u','t','e', + 0 ,'c','a','c','u','t','e', 0 ,'C','c','a','r','o','n', 0 ,'c', + 'c','a','r','o','n', 0 ,'d','c','r','o','a','t', 0 ,'.','n','o', + 't','d','e','f', 0 ,'s','p','a','c','e', 0 ,'e','x','c','l','a', + 'm', 0 ,'q','u','o','t','e','d','b','l', 0 ,'n','u','m','b','e', + 'r','s','i','g','n', 0 ,'d','o','l','l','a','r', 0 ,'p','e','r', + 'c','e','n','t', 0 ,'a','m','p','e','r','s','a','n','d', 0 ,'q', + 'u','o','t','e','r','i','g','h','t', 0 ,'p','a','r','e','n','l', + 'e','f','t', 0 ,'p','a','r','e','n','r','i','g','h','t', 0 ,'a', + 's','t','e','r','i','s','k', 0 ,'p','l','u','s', 0 ,'c','o','m', + 'm','a', 0 ,'h','y','p','h','e','n', 0 ,'p','e','r','i','o','d', + 0 ,'s','l','a','s','h', 0 ,'z','e','r','o', 0 ,'o','n','e', 0 , + 't','w','o', 0 ,'t','h','r','e','e', 0 ,'f','o','u','r', 0 ,'f', + 'i','v','e', 0 ,'s','i','x', 0 ,'s','e','v','e','n', 0 ,'e','i', + 'g','h','t', 0 ,'n','i','n','e', 0 ,'c','o','l','o','n', 0 ,'s', + 'e','m','i','c','o','l','o','n', 0 ,'l','e','s','s', 0 ,'e','q', + 'u','a','l', 0 ,'g','r','e','a','t','e','r', 0 ,'q','u','e','s', + 't','i','o','n', 0 ,'a','t', 0 ,'A', 0 ,'B', 0 ,'C', 0 ,'D', 0 , + 'E', 0 ,'F', 0 ,'G', 0 ,'H', 0 ,'I', 0 ,'J', 0 ,'K', 0 ,'L', 0 , + 'M', 0 ,'N', 0 ,'O', 0 ,'P', 0 ,'Q', 0 ,'R', 0 ,'S', 0 ,'T', 0 , + 'U', 0 ,'V', 0 ,'W', 0 ,'X', 0 ,'Y', 0 ,'Z', 0 ,'b','r','a','c', + 'k','e','t','l','e','f','t', 0 ,'b','a','c','k','s','l','a','s', + 'h', 0 ,'b','r','a','c','k','e','t','r','i','g','h','t', 0 ,'a', + 's','c','i','i','c','i','r','c','u','m', 0 ,'u','n','d','e','r', + 's','c','o','r','e', 0 ,'q','u','o','t','e','l','e','f','t', 0 , + 'a', 0 ,'b', 0 ,'c', 0 ,'d', 0 ,'e', 0 ,'f', 0 ,'g', 0 ,'h', 0 , + 'i', 0 ,'j', 0 ,'k', 0 ,'l', 0 ,'m', 0 ,'n', 0 ,'o', 0 ,'p', 0 , + 'q', 0 ,'r', 0 ,'s', 0 ,'t', 0 ,'u', 0 ,'v', 0 ,'w', 0 ,'x', 0 , + 'y', 0 ,'z', 0 ,'b','r','a','c','e','l','e','f','t', 0 ,'b','a', + 'r', 0 ,'b','r','a','c','e','r','i','g','h','t', 0 ,'a','s','c', + 'i','i','t','i','l','d','e', 0 ,'e','x','c','l','a','m','d','o', + 'w','n', 0 ,'c','e','n','t', 0 ,'s','t','e','r','l','i','n','g', + 0 ,'f','r','a','c','t','i','o','n', 0 ,'y','e','n', 0 ,'f','l', + 'o','r','i','n', 0 ,'s','e','c','t','i','o','n', 0 ,'c','u','r', + 'r','e','n','c','y', 0 ,'q','u','o','t','e','s','i','n','g','l', + 'e', 0 ,'q','u','o','t','e','d','b','l','l','e','f','t', 0 ,'g', + 'u','i','l','l','e','m','o','t','l','e','f','t', 0 ,'g','u','i', + 'l','s','i','n','g','l','l','e','f','t', 0 ,'g','u','i','l','s', + 'i','n','g','l','r','i','g','h','t', 0 ,'f','i', 0 ,'f','l', 0 , + 'e','n','d','a','s','h', 0 ,'d','a','g','g','e','r', 0 ,'d','a', + 'g','g','e','r','d','b','l', 0 ,'p','e','r','i','o','d','c','e', + 'n','t','e','r','e','d', 0 ,'p','a','r','a','g','r','a','p','h', + 0 ,'b','u','l','l','e','t', 0 ,'q','u','o','t','e','s','i','n', + 'g','l','b','a','s','e', 0 ,'q','u','o','t','e','d','b','l','b', + 'a','s','e', 0 ,'q','u','o','t','e','d','b','l','r','i','g','h', + 't', 0 ,'g','u','i','l','l','e','m','o','t','r','i','g','h','t', + 0 ,'e','l','l','i','p','s','i','s', 0 ,'p','e','r','t','h','o', + 'u','s','a','n','d', 0 ,'q','u','e','s','t','i','o','n','d','o', + 'w','n', 0 ,'g','r','a','v','e', 0 ,'a','c','u','t','e', 0 ,'c', + 'i','r','c','u','m','f','l','e','x', 0 ,'t','i','l','d','e', 0 , + 'm','a','c','r','o','n', 0 ,'b','r','e','v','e', 0 ,'d','o','t', + 'a','c','c','e','n','t', 0 ,'d','i','e','r','e','s','i','s', 0 , + 'r','i','n','g', 0 ,'c','e','d','i','l','l','a', 0 ,'h','u','n', + 'g','a','r','u','m','l','a','u','t', 0 ,'o','g','o','n','e','k', + 0 ,'c','a','r','o','n', 0 ,'e','m','d','a','s','h', 0 ,'A','E', + 0 ,'o','r','d','f','e','m','i','n','i','n','e', 0 ,'L','s','l', + 'a','s','h', 0 ,'O','s','l','a','s','h', 0 ,'O','E', 0 ,'o','r', + 'd','m','a','s','c','u','l','i','n','e', 0 ,'a','e', 0 ,'d','o', + 't','l','e','s','s','i', 0 ,'l','s','l','a','s','h', 0 ,'o','s', + 'l','a','s','h', 0 ,'o','e', 0 ,'g','e','r','m','a','n','d','b', + 'l','s', 0 ,'o','n','e','s','u','p','e','r','i','o','r', 0 ,'l', + 'o','g','i','c','a','l','n','o','t', 0 ,'m','u', 0 ,'t','r','a', + 'd','e','m','a','r','k', 0 ,'E','t','h', 0 ,'o','n','e','h','a', + 'l','f', 0 ,'p','l','u','s','m','i','n','u','s', 0 ,'T','h','o', + 'r','n', 0 ,'o','n','e','q','u','a','r','t','e','r', 0 ,'d','i', + 'v','i','d','e', 0 ,'b','r','o','k','e','n','b','a','r', 0 ,'d', + 'e','g','r','e','e', 0 ,'t','h','o','r','n', 0 ,'t','h','r','e', + 'e','q','u','a','r','t','e','r','s', 0 ,'t','w','o','s','u','p', + 'e','r','i','o','r', 0 ,'r','e','g','i','s','t','e','r','e','d', + 0 ,'m','i','n','u','s', 0 ,'e','t','h', 0 ,'m','u','l','t','i', + 'p','l','y', 0 ,'t','h','r','e','e','s','u','p','e','r','i','o', + 'r', 0 ,'c','o','p','y','r','i','g','h','t', 0 ,'A','a','c','u', + 't','e', 0 ,'A','c','i','r','c','u','m','f','l','e','x', 0 ,'A', + 'd','i','e','r','e','s','i','s', 0 ,'A','g','r','a','v','e', 0 , + 'A','r','i','n','g', 0 ,'A','t','i','l','d','e', 0 ,'C','c','e', + 'd','i','l','l','a', 0 ,'E','a','c','u','t','e', 0 ,'E','c','i', + 'r','c','u','m','f','l','e','x', 0 ,'E','d','i','e','r','e','s', + 'i','s', 0 ,'E','g','r','a','v','e', 0 ,'I','a','c','u','t','e', + 0 ,'I','c','i','r','c','u','m','f','l','e','x', 0 ,'I','d','i', + 'e','r','e','s','i','s', 0 ,'I','g','r','a','v','e', 0 ,'N','t', + 'i','l','d','e', 0 ,'O','a','c','u','t','e', 0 ,'O','c','i','r', + 'c','u','m','f','l','e','x', 0 ,'O','d','i','e','r','e','s','i', + 's', 0 ,'O','g','r','a','v','e', 0 ,'O','t','i','l','d','e', 0 , + 'S','c','a','r','o','n', 0 ,'U','a','c','u','t','e', 0 ,'U','c', + 'i','r','c','u','m','f','l','e','x', 0 ,'U','d','i','e','r','e', + 's','i','s', 0 ,'U','g','r','a','v','e', 0 ,'Y','a','c','u','t', + 'e', 0 ,'Y','d','i','e','r','e','s','i','s', 0 ,'Z','c','a','r', + 'o','n', 0 ,'a','a','c','u','t','e', 0 ,'a','c','i','r','c','u', + 'm','f','l','e','x', 0 ,'a','d','i','e','r','e','s','i','s', 0 , + 'a','g','r','a','v','e', 0 ,'a','r','i','n','g', 0 ,'a','t','i', + 'l','d','e', 0 ,'c','c','e','d','i','l','l','a', 0 ,'e','a','c', + 'u','t','e', 0 ,'e','c','i','r','c','u','m','f','l','e','x', 0 , + 'e','d','i','e','r','e','s','i','s', 0 ,'e','g','r','a','v','e', + 0 ,'i','a','c','u','t','e', 0 ,'i','c','i','r','c','u','m','f', + 'l','e','x', 0 ,'i','d','i','e','r','e','s','i','s', 0 ,'i','g', + 'r','a','v','e', 0 ,'n','t','i','l','d','e', 0 ,'o','a','c','u', + 't','e', 0 ,'o','c','i','r','c','u','m','f','l','e','x', 0 ,'o', + 'd','i','e','r','e','s','i','s', 0 ,'o','g','r','a','v','e', 0 , + 'o','t','i','l','d','e', 0 ,'s','c','a','r','o','n', 0 ,'u','a', + 'c','u','t','e', 0 ,'u','c','i','r','c','u','m','f','l','e','x', + 0 ,'u','d','i','e','r','e','s','i','s', 0 ,'u','g','r','a','v', + 'e', 0 ,'y','a','c','u','t','e', 0 ,'y','d','i','e','r','e','s', + 'i','s', 0 ,'z','c','a','r','o','n', 0 ,'e','x','c','l','a','m', + 's','m','a','l','l', 0 ,'H','u','n','g','a','r','u','m','l','a', + 'u','t','s','m','a','l','l', 0 ,'d','o','l','l','a','r','o','l', + 'd','s','t','y','l','e', 0 ,'d','o','l','l','a','r','s','u','p', + 'e','r','i','o','r', 0 ,'a','m','p','e','r','s','a','n','d','s', + 'm','a','l','l', 0 ,'A','c','u','t','e','s','m','a','l','l', 0 , + 'p','a','r','e','n','l','e','f','t','s','u','p','e','r','i','o', + 'r', 0 ,'p','a','r','e','n','r','i','g','h','t','s','u','p','e', + 'r','i','o','r', 0 ,'t','w','o','d','o','t','e','n','l','e','a', + 'd','e','r', 0 ,'o','n','e','d','o','t','e','n','l','e','a','d', + 'e','r', 0 ,'z','e','r','o','o','l','d','s','t','y','l','e', 0 , + 'o','n','e','o','l','d','s','t','y','l','e', 0 ,'t','w','o','o', + 'l','d','s','t','y','l','e', 0 ,'t','h','r','e','e','o','l','d', + 's','t','y','l','e', 0 ,'f','o','u','r','o','l','d','s','t','y', + 'l','e', 0 ,'f','i','v','e','o','l','d','s','t','y','l','e', 0 , + 's','i','x','o','l','d','s','t','y','l','e', 0 ,'s','e','v','e', + 'n','o','l','d','s','t','y','l','e', 0 ,'e','i','g','h','t','o', + 'l','d','s','t','y','l','e', 0 ,'n','i','n','e','o','l','d','s', + 't','y','l','e', 0 ,'c','o','m','m','a','s','u','p','e','r','i', + 'o','r', 0 ,'t','h','r','e','e','q','u','a','r','t','e','r','s', + 'e','m','d','a','s','h', 0 ,'p','e','r','i','o','d','s','u','p', + 'e','r','i','o','r', 0 ,'q','u','e','s','t','i','o','n','s','m', + 'a','l','l', 0 ,'a','s','u','p','e','r','i','o','r', 0 ,'b','s', + 'u','p','e','r','i','o','r', 0 ,'c','e','n','t','s','u','p','e', + 'r','i','o','r', 0 ,'d','s','u','p','e','r','i','o','r', 0 ,'e', + 's','u','p','e','r','i','o','r', 0 ,'i','s','u','p','e','r','i', + 'o','r', 0 ,'l','s','u','p','e','r','i','o','r', 0 ,'m','s','u', + 'p','e','r','i','o','r', 0 ,'n','s','u','p','e','r','i','o','r', + 0 ,'o','s','u','p','e','r','i','o','r', 0 ,'r','s','u','p','e', + 'r','i','o','r', 0 ,'s','s','u','p','e','r','i','o','r', 0 ,'t', + 's','u','p','e','r','i','o','r', 0 ,'f','f', 0 ,'f','f','i', 0 , + 'f','f','l', 0 ,'p','a','r','e','n','l','e','f','t','i','n','f', + 'e','r','i','o','r', 0 ,'p','a','r','e','n','r','i','g','h','t', + 'i','n','f','e','r','i','o','r', 0 ,'C','i','r','c','u','m','f', + 'l','e','x','s','m','a','l','l', 0 ,'h','y','p','h','e','n','s', + 'u','p','e','r','i','o','r', 0 ,'G','r','a','v','e','s','m','a', + 'l','l', 0 ,'A','s','m','a','l','l', 0 ,'B','s','m','a','l','l', + 0 ,'C','s','m','a','l','l', 0 ,'D','s','m','a','l','l', 0 ,'E', + 's','m','a','l','l', 0 ,'F','s','m','a','l','l', 0 ,'G','s','m', + 'a','l','l', 0 ,'H','s','m','a','l','l', 0 ,'I','s','m','a','l', + 'l', 0 ,'J','s','m','a','l','l', 0 ,'K','s','m','a','l','l', 0 , + 'L','s','m','a','l','l', 0 ,'M','s','m','a','l','l', 0 ,'N','s', + 'm','a','l','l', 0 ,'O','s','m','a','l','l', 0 ,'P','s','m','a', + 'l','l', 0 ,'Q','s','m','a','l','l', 0 ,'R','s','m','a','l','l', + 0 ,'S','s','m','a','l','l', 0 ,'T','s','m','a','l','l', 0 ,'U', + 's','m','a','l','l', 0 ,'V','s','m','a','l','l', 0 ,'W','s','m', + 'a','l','l', 0 ,'X','s','m','a','l','l', 0 ,'Y','s','m','a','l', + 'l', 0 ,'Z','s','m','a','l','l', 0 ,'c','o','l','o','n','m','o', + 'n','e','t','a','r','y', 0 ,'o','n','e','f','i','t','t','e','d', + 0 ,'r','u','p','i','a','h', 0 ,'T','i','l','d','e','s','m','a', + 'l','l', 0 ,'e','x','c','l','a','m','d','o','w','n','s','m','a', + 'l','l', 0 ,'c','e','n','t','o','l','d','s','t','y','l','e', 0 , + 'L','s','l','a','s','h','s','m','a','l','l', 0 ,'S','c','a','r', + 'o','n','s','m','a','l','l', 0 ,'Z','c','a','r','o','n','s','m', + 'a','l','l', 0 ,'D','i','e','r','e','s','i','s','s','m','a','l', + 'l', 0 ,'B','r','e','v','e','s','m','a','l','l', 0 ,'C','a','r', + 'o','n','s','m','a','l','l', 0 ,'D','o','t','a','c','c','e','n', + 't','s','m','a','l','l', 0 ,'M','a','c','r','o','n','s','m','a', + 'l','l', 0 ,'f','i','g','u','r','e','d','a','s','h', 0 ,'h','y', + 'p','h','e','n','i','n','f','e','r','i','o','r', 0 ,'O','g','o', + 'n','e','k','s','m','a','l','l', 0 ,'R','i','n','g','s','m','a', + 'l','l', 0 ,'C','e','d','i','l','l','a','s','m','a','l','l', 0 , + 'q','u','e','s','t','i','o','n','d','o','w','n','s','m','a','l', + 'l', 0 ,'o','n','e','e','i','g','h','t','h', 0 ,'t','h','r','e', + 'e','e','i','g','h','t','h','s', 0 ,'f','i','v','e','e','i','g', + 'h','t','h','s', 0 ,'s','e','v','e','n','e','i','g','h','t','h', + 's', 0 ,'o','n','e','t','h','i','r','d', 0 ,'t','w','o','t','h', + 'i','r','d','s', 0 ,'z','e','r','o','s','u','p','e','r','i','o', + 'r', 0 ,'f','o','u','r','s','u','p','e','r','i','o','r', 0 ,'f', + 'i','v','e','s','u','p','e','r','i','o','r', 0 ,'s','i','x','s', + 'u','p','e','r','i','o','r', 0 ,'s','e','v','e','n','s','u','p', + 'e','r','i','o','r', 0 ,'e','i','g','h','t','s','u','p','e','r', + 'i','o','r', 0 ,'n','i','n','e','s','u','p','e','r','i','o','r', + 0 ,'z','e','r','o','i','n','f','e','r','i','o','r', 0 ,'o','n', + 'e','i','n','f','e','r','i','o','r', 0 ,'t','w','o','i','n','f', + 'e','r','i','o','r', 0 ,'t','h','r','e','e','i','n','f','e','r', + 'i','o','r', 0 ,'f','o','u','r','i','n','f','e','r','i','o','r', + 0 ,'f','i','v','e','i','n','f','e','r','i','o','r', 0 ,'s','i', + 'x','i','n','f','e','r','i','o','r', 0 ,'s','e','v','e','n','i', + 'n','f','e','r','i','o','r', 0 ,'e','i','g','h','t','i','n','f', + 'e','r','i','o','r', 0 ,'n','i','n','e','i','n','f','e','r','i', + 'o','r', 0 ,'c','e','n','t','i','n','f','e','r','i','o','r', 0 , + 'd','o','l','l','a','r','i','n','f','e','r','i','o','r', 0 ,'p', + 'e','r','i','o','d','i','n','f','e','r','i','o','r', 0 ,'c','o', + 'm','m','a','i','n','f','e','r','i','o','r', 0 ,'A','g','r','a', + 'v','e','s','m','a','l','l', 0 ,'A','a','c','u','t','e','s','m', + 'a','l','l', 0 ,'A','c','i','r','c','u','m','f','l','e','x','s', + 'm','a','l','l', 0 ,'A','t','i','l','d','e','s','m','a','l','l', + 0 ,'A','d','i','e','r','e','s','i','s','s','m','a','l','l', 0 , + 'A','r','i','n','g','s','m','a','l','l', 0 ,'A','E','s','m','a', + 'l','l', 0 ,'C','c','e','d','i','l','l','a','s','m','a','l','l', + 0 ,'E','g','r','a','v','e','s','m','a','l','l', 0 ,'E','a','c', + 'u','t','e','s','m','a','l','l', 0 ,'E','c','i','r','c','u','m', + 'f','l','e','x','s','m','a','l','l', 0 ,'E','d','i','e','r','e', + 's','i','s','s','m','a','l','l', 0 ,'I','g','r','a','v','e','s', + 'm','a','l','l', 0 ,'I','a','c','u','t','e','s','m','a','l','l', + 0 ,'I','c','i','r','c','u','m','f','l','e','x','s','m','a','l', + 'l', 0 ,'I','d','i','e','r','e','s','i','s','s','m','a','l','l', + 0 ,'E','t','h','s','m','a','l','l', 0 ,'N','t','i','l','d','e', + 's','m','a','l','l', 0 ,'O','g','r','a','v','e','s','m','a','l', + 'l', 0 ,'O','a','c','u','t','e','s','m','a','l','l', 0 ,'O','c', + 'i','r','c','u','m','f','l','e','x','s','m','a','l','l', 0 ,'O', + 't','i','l','d','e','s','m','a','l','l', 0 ,'O','d','i','e','r', + 'e','s','i','s','s','m','a','l','l', 0 ,'O','E','s','m','a','l', + 'l', 0 ,'O','s','l','a','s','h','s','m','a','l','l', 0 ,'U','g', + 'r','a','v','e','s','m','a','l','l', 0 ,'U','a','c','u','t','e', + 's','m','a','l','l', 0 ,'U','c','i','r','c','u','m','f','l','e', + 'x','s','m','a','l','l', 0 ,'U','d','i','e','r','e','s','i','s', + 's','m','a','l','l', 0 ,'Y','a','c','u','t','e','s','m','a','l', + 'l', 0 ,'T','h','o','r','n','s','m','a','l','l', 0 ,'Y','d','i', + 'e','r','e','s','i','s','s','m','a','l','l', 0 ,'0','0','1','.', + '0','0','0', 0 ,'0','0','1','.','0','0','1', 0 ,'0','0','1','.', + '0','0','2', 0 ,'0','0','1','.','0','0','3', 0 ,'B','l','a','c', + 'k', 0 ,'B','o','l','d', 0 ,'B','o','o','k', 0 ,'L','i','g','h', + 't', 0 ,'M','e','d','i','u','m', 0 ,'R','e','g','u','l','a','r', + 0 ,'R','o','m','a','n', 0 ,'S','e','m','i','b','o','l','d', 0 }; + +#define FT_NUM_MAC_NAMES 258 + +static const short ft_mac_names[258] = +{ + 253, 0, 6, 261, 267, 274, 283, 294, 301, 309, 758, 330, 340, 351, + 360, 365, 371, 378, 385, 391, 396, 400, 404, 410, 415, 420, 424, 430, + 436, 441, 447, 457, 462, 468, 476, 485, 488, 490, 492, 494, 496, 498, + 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, + 528, 530, 532, 534, 536, 538, 540, 552, 562, 575, 587, 979, 608, 610, + 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, + 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 670, 674, 685, + 1375,1392,1405,1414,1486,1512,1562,1603,1632,1610,1622,1645,1639,1652, + 1661,1690,1668,1680,1697,1726,1704,1716,1733,1740,1769,1747,1759,1776, + 1790,1819,1797,1809, 839,1263, 707, 712, 741, 881, 871,1160,1302,1346, + 1197, 985,1031, 23,1086,1108, 32,1219, 41, 51, 730,1194, 64, 76, + 86, 94, 97,1089,1118, 106,1131,1150, 966, 696,1183, 112, 734, 120, + 132, 783, 930, 945, 138,1385,1398,1529,1115,1157, 832,1079, 770, 916, + 598, 319,1246, 155,1833,1586, 721, 749, 797, 811, 826, 829, 846, 856, + 888, 903, 954,1363,1421,1356,1433,1443,1450,1457,1469,1479,1493,1500, + 163,1522,1543,1550,1572,1134, 991,1002,1008,1015,1021,1040,1045,1053, + 1066,1073,1101,1143,1536,1783,1596,1843,1253,1207,1319,1579,1826,1229, + 1270,1313,1323,1171,1290,1332,1211,1235,1276, 169, 175, 182, 189, 200, + 209, 218, 225, 232, 239, 246 +}; + +#define FT_NUM_SID_NAMES 391 + +static const short ft_sid_names[391] = +{ + 253, 261, 267, 274, 283, 294, 301, 309, 319, 330, 340, 351, 360, 365, + 371, 378, 385, 391, 396, 400, 404, 410, 415, 420, 424, 430, 436, 441, + 447, 457, 462, 468, 476, 485, 488, 490, 492, 494, 496, 498, 500, 502, + 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, + 532, 534, 536, 538, 540, 552, 562, 575, 587, 598, 608, 610, 612, 614, + 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, + 644, 646, 648, 650, 652, 654, 656, 658, 660, 670, 674, 685, 696, 707, + 712, 721, 730, 734, 741, 749, 758, 770, 783, 797, 811, 826, 829, 832, + 839, 846, 856, 871, 881, 888, 903, 916, 930, 945, 954, 966, 979, 985, + 991,1002,1008,1015,1021,1031,1040,1045,1053,1066,1073,1079,1086,1089, + 1101,1108,1115,1118,1131,1134,1143,1150,1157,1160,1171,1183,1194,1197, + 1207,1211,1219,1229,1235,1246,1253,1263,1270,1276,1290,1302,1313,1319, + 1323,1332,1346,1356,1363,1375,1385,1392,1398,1405,1414,1421,1433,1443, + 1450,1457,1469,1479,1486,1493,1500,1512,1522,1529,1536,1543,1550,1562, + 1572,1579,1586,1596,1603,1610,1622,1632,1639,1645,1652,1661,1668,1680, + 1690,1697,1704,1716,1726,1733,1740,1747,1759,1769,1776,1783,1790,1797, + 1809,1819,1826,1833,1843,1850,1862,1880,1895,1910,1925,1936,1954,1973, + 1988,2003,2016,2028,2040,2054,2067,2080,2092,2106,2120,2133,2147,2167, + 2182,2196,2206,2216,2229,2239,2249,2259,2269,2279,2289,2299,2309,2319, + 2329,2332,2336,2340,2358,2377,2393,2408,2419,2426,2433,2440,2447,2454, + 2461,2468,2475,2482,2489,2496,2503,2510,2517,2524,2531,2538,2545,2552, + 2559,2566,2573,2580,2587,2594,2601,2615,2625,2632,2643,2659,2672,2684, + 2696,2708,2722,2733,2744,2759,2771,2782,2797,2809,2819,2832,2850,2860, + 2873,2885,2898,2907,2917,2930,2943,2956,2968,2982,2996,3009,3022,3034, + 3046,3060,3073,3086,3098,3112,3126,3139,3152,3167,3182,3196,3208,3220, + 3237,3249,3264,3275,3283,3297,3309,3321,3338,3353,3365,3377,3394,3409, + 3418,3430,3442,3454,3471,3483,3498,3506,3518,3530,3542,3559,3574,3586, + 3597,3612,3620,3628,3636,3644,3650,3655,3660,3666,3673,3681,3687 +}; + +/* the following are indices into the SID name table */ +static const unsigned short t1_standard_encoding[256] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 96, 97, 98, 99,100,101,102,103,104,105,106,107,108,109,110, + 0,111,112,113,114, 0,115,116,117,118,119,120,121,122, 0,123, + 0,124,125,126,127,128,129,130,131, 0,132,133, 0,134,135,136, + 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,138, 0,139, 0, 0, 0, 0,140,141,142,143, 0, 0, 0, 0, + 0,144, 0, 0, 0,145, 0, 0,146,147,148,149, 0, 0, 0, 0 +}; + +/* the following are indices into the SID name table */ +static const unsigned short t1_expert_encoding[256] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1,229,230, 0,231,232,233,234,235,236,237,238, 13, 14, 15, 99, + 239,240,241,242,243,244,245,246,247,248, 27, 28,249,250,251,252, + 0,253,254,255,256,257, 0, 0, 0,258, 0, 0,259,260,261,262, + 0, 0,263,264,265, 0,266,109,110,267,268,269, 0,270,271,272, + 273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288, + 289,290,291,292,293,294,295,296,297,298,299,300,301,302,303, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0,304,305,306, 0, 0,307,308,309,310,311, 0,312, 0, 0,313, + 0, 0,314,315, 0, 0,316,317,318, 0, 0, 0,158,155,163,319, + 320,321,322,323,324,325, 0, 0,326,150,164,169,327,328,329,330, + 331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346, + 347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362, + 363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378 +}; + + + /* this table is a compressed version of the Adobe Glyph List + * which has been optimized for efficient searching. It has + * been generated by the 'glnames.py' python script located + * in the 'src/tools' directory. + * + * the corresponding lookup function is defined just below + * the table (several pages down this text :-) + */ +static const unsigned char ft_adobe_glyph_list[54791] = +{ + 0, 52, 0,106, 2,167, 3, 63, 4,220, 6,125, 9,143, 10, 23, + 11,137, 12,199, 14,246, 15, 87, 16,233, 17,219, 18,104, 19, 88, + 22,110, 23, 32, 23, 71, 24, 77, 27,156, 29, 73, 31,247, 32,107, + 32,222, 33, 55, 34,154, 35,218, 53, 84, 59,196, 68, 6, 75,183, + 83,178, 88,135, 93,242,101,165,109,185,111, 55,117,254,123, 73, + 130,238,138,206,145, 31,153,182,156,189,163,249,178,221,193, 17, + 197, 99,199,240,204, 27,204,155,210,100, 65,143, 0, 65, 0,140, + 0,175, 0,193, 1, 15, 1,147, 1,233, 1,251, 2, 7, 2, 40, + 2, 57, 2, 82, 2, 91, 2,128, 2,136, 2,154, 69,131, 0,198, + 0,150, 0,158, 0,167,225,227,245,244,101,128, 1,252,237,225, + 227,242,239,110,128, 1,226,243,237,225,236,108,128,247,230,225, + 227,245,244,101,129, 0,193, 0,185,243,237,225,236,108,128,247, + 225,226,242,229,246,101,134, 1, 2, 0,213, 0,221, 0,232, 0, + 243, 0,251, 1, 7,225,227,245,244,101,128, 30,174,227,249,242, + 233,236,236,233, 99,128, 4,208,228,239,244,226,229,236,239,119, + 128, 30,182,231,242,225,246,101,128, 30,176,232,239,239,235,225, + 226,239,246,101,128, 30,178,244,233,236,228,101,128, 30,180, 99, + 4, 1, 25, 1, 32, 1,121, 1,137,225,242,239,110,128, 1,205, + 233,242, 99, 2, 1, 40, 1, 45,236,101,128, 36,182,245,237,230, + 236,229,120,134, 0,194, 1, 66, 1, 74, 1, 85, 1, 93, 1,105, + 1,113,225,227,245,244,101,128, 30,164,228,239,244,226,229,236, + 239,119,128, 30,172,231,242,225,246,101,128, 30,166,232,239,239, + 235,225,226,239,246,101,128, 30,168,243,237,225,236,108,128,247, + 226,244,233,236,228,101,128, 30,170,245,244,101,129,246,201, 1, + 129,243,237,225,236,108,128,247,180,249,242,233,236,236,233, 99, + 128, 4, 16,100, 3, 1,155, 1,165, 1,209,226,236,231,242,225, + 246,101,128, 2, 0,233,229,242,229,243,233,115,131, 0,196, 1, + 181, 1,192, 1,201,227,249,242,233,236,236,233, 99,128, 4,210, + 237,225,227,242,239,110,128, 1,222,243,237,225,236,108,128,247, + 228,239,116, 2, 1,216, 1,224,226,229,236,239,119,128, 30,160, + 237,225,227,242,239,110,128, 1,224,231,242,225,246,101,129, 0, + 192, 1,243,243,237,225,236,108,128,247,224,232,239,239,235,225, + 226,239,246,101,128, 30,162,105, 2, 2, 13, 2, 25,229,227,249, + 242,233,236,236,233, 99,128, 4,212,238,246,229,242,244,229,228, + 226,242,229,246,101,128, 2, 2,236,240,232, 97,129, 3,145, 2, + 49,244,239,238,239,115,128, 3,134,109, 2, 2, 63, 2, 71,225, + 227,242,239,110,128, 1, 0,239,238,239,243,240,225,227,101,128, + 255, 33,239,231,239,238,229,107,128, 1, 4,242,233,238,103,131, + 0,197, 2,104, 2,112, 2,120,225,227,245,244,101,128, 1,250, + 226,229,236,239,119,128, 30, 0,243,237,225,236,108,128,247,229, + 243,237,225,236,108,128,247, 97,244,233,236,228,101,129, 0,195, + 2,146,243,237,225,236,108,128,247,227,249,226,225,242,237,229, + 238,233,225,110,128, 5, 49, 66,137, 0, 66, 2,189, 2,198, 2, + 223, 3, 3, 3, 10, 3, 22, 3, 34, 3, 46, 3, 54,227,233,242, + 227,236,101,128, 36,183,228,239,116, 2, 2,206, 2,215,225,227, + 227,229,238,116,128, 30, 2,226,229,236,239,119,128, 30, 4,101, + 3, 2,231, 2,242, 2,254,227,249,242,233,236,236,233, 99,128, + 4, 17,238,225,242,237,229,238,233,225,110,128, 5, 50,244, 97, + 128, 3,146,232,239,239,107,128, 1,129,236,233,238,229,226,229, + 236,239,119,128, 30, 6,237,239,238,239,243,240,225,227,101,128, + 255, 34,242,229,246,229,243,237,225,236,108,128,246,244,243,237, + 225,236,108,128,247, 98,244,239,240,226,225,114,128, 1,130, 67, + 137, 0, 67, 3, 85, 3,127, 3,193, 3,210, 3,224, 4,171, 4, + 188, 4,200, 4,212, 97, 3, 3, 93, 3,104, 3,111,225,242,237, + 229,238,233,225,110,128, 5, 62,227,245,244,101,128, 1, 6,242, + 239,110,129,246,202, 3,119,243,237,225,236,108,128,246,245, 99, + 3, 3,135, 3,142, 3,171,225,242,239,110,128, 1, 12,229,228, + 233,236,236, 97,130, 0,199, 3,155, 3,163,225,227,245,244,101, + 128, 30, 8,243,237,225,236,108,128,247,231,233,242, 99, 2, 3, + 179, 3,184,236,101,128, 36,184,245,237,230,236,229,120,128, 1, + 8,228,239,116,129, 1, 10, 3,201,225,227,227,229,238,116,128, + 1, 10,229,228,233,236,236,225,243,237,225,236,108,128,247,184, + 104, 4, 3,234, 3,246, 4,161, 4,165,225,225,242,237,229,238, + 233,225,110,128, 5, 73,101, 6, 4, 4, 4, 24, 4, 35, 4,103, + 4,115, 4,136,225,226,235,232,225,243,233,225,238,227,249,242, + 233,236,236,233, 99,128, 4,188,227,249,242,233,236,236,233, 99, + 128, 4, 39,100, 2, 4, 41, 4, 85,229,243,227,229,238,228,229, + 114, 2, 4, 54, 4, 74,225,226,235,232,225,243,233,225,238,227, + 249,242,233,236,236,233, 99,128, 4,190,227,249,242,233,236,236, + 233, 99,128, 4,182,233,229,242,229,243,233,243,227,249,242,233, + 236,236,233, 99,128, 4,244,232,225,242,237,229,238,233,225,110, + 128, 5, 67,235,232,225,235,225,243,243,233,225,238,227,249,242, + 233,236,236,233, 99,128, 4,203,246,229,242,244,233,227,225,236, + 243,244,242,239,235,229,227,249,242,233,236,236,233, 99,128, 4, + 184,105,128, 3,167,239,239,107,128, 1,135,233,242,227,245,237, + 230,236,229,248,243,237,225,236,108,128,246,246,237,239,238,239, + 243,240,225,227,101,128,255, 35,239,225,242,237,229,238,233,225, + 110,128, 5, 81,243,237,225,236,108,128,247, 99, 68,142, 0, 68, + 4,252, 5, 10, 5, 36, 5, 96, 5,121, 5,166, 5,173, 5,231, + 5,244, 6, 0, 6, 12, 6, 28, 6, 48, 6, 57, 90,129, 1,241, + 5, 2,227,225,242,239,110,128, 1,196, 97, 2, 5, 16, 5, 27, + 225,242,237,229,238,233,225,110,128, 5, 52,230,242,233,227,225, + 110,128, 1,137, 99, 4, 5, 46, 5, 53, 5, 62, 5, 89,225,242, + 239,110,128, 1, 14,229,228,233,236,236, 97,128, 30, 16,233,242, + 99, 2, 5, 70, 5, 75,236,101,128, 36,185,245,237,230,236,229, + 248,226,229,236,239,119,128, 30, 18,242,239,225,116,128, 1, 16, + 228,239,116, 2, 5,104, 5,113,225,227,227,229,238,116,128, 30, + 10,226,229,236,239,119,128, 30, 12,101, 3, 5,129, 5,140, 5, + 150,227,249,242,233,236,236,233, 99,128, 4, 20,233,227,239,240, + 244,233, 99,128, 3,238,236,244, 97,129, 34, 6, 5,158,231,242, + 229,229,107,128, 3,148,232,239,239,107,128, 1,138,105, 2, 5, + 179, 5,218,229,242,229,243,233,115,131,246,203, 5,194, 5,202, + 5,210,193,227,245,244,101,128,246,204,199,242,225,246,101,128, + 246,205,243,237,225,236,108,128,247,168,231,225,237,237,225,231, + 242,229,229,107,128, 3,220,234,229,227,249,242,233,236,236,233, + 99,128, 4, 2,236,233,238,229,226,229,236,239,119,128, 30, 14, + 237,239,238,239,243,240,225,227,101,128,255, 36,239,244,225,227, + 227,229,238,244,243,237,225,236,108,128,246,247,115, 2, 6, 34, + 6, 41,236,225,243,104,128, 1, 16,237,225,236,108,128,247,100, + 244,239,240,226,225,114,128, 1,139,122,131, 1,242, 6, 67, 6, + 75, 6,112,227,225,242,239,110,128, 1,197,101, 2, 6, 81, 6, + 101,225,226,235,232,225,243,233,225,238,227,249,242,233,236,236, + 233, 99,128, 4,224,227,249,242,233,236,236,233, 99,128, 4, 5, + 232,229,227,249,242,233,236,236,233, 99,128, 4, 15, 69,146, 0, + 69, 6,165, 6,183, 6,191, 7, 89, 7,153, 7,165, 7,183, 7, + 211, 8, 7, 8, 36, 8, 94, 8,169, 8,189, 8,208, 8,248, 9, + 44, 9,109, 9,115,225,227,245,244,101,129, 0,201, 6,175,243, + 237,225,236,108,128,247,233,226,242,229,246,101,128, 1, 20, 99, + 5, 6,203, 6,210, 6,224, 6,236, 7, 79,225,242,239,110,128, + 1, 26,229,228,233,236,236,225,226,242,229,246,101,128, 30, 28, + 232,225,242,237,229,238,233,225,110,128, 5, 53,233,242, 99, 2, + 6,244, 6,249,236,101,128, 36,186,245,237,230,236,229,120,135, + 0,202, 7, 16, 7, 24, 7, 32, 7, 43, 7, 51, 7, 63, 7, 71, + 225,227,245,244,101,128, 30,190,226,229,236,239,119,128, 30, 24, + 228,239,244,226,229,236,239,119,128, 30,198,231,242,225,246,101, + 128, 30,192,232,239,239,235,225,226,239,246,101,128, 30,194,243, + 237,225,236,108,128,247,234,244,233,236,228,101,128, 30,196,249, + 242,233,236,236,233, 99,128, 4, 4,100, 3, 7, 97, 7,107, 7, + 127,226,236,231,242,225,246,101,128, 2, 4,233,229,242,229,243, + 233,115,129, 0,203, 7,119,243,237,225,236,108,128,247,235,239, + 116,130, 1, 22, 7,136, 7,145,225,227,227,229,238,116,128, 1, + 22,226,229,236,239,119,128, 30,184,230,227,249,242,233,236,236, + 233, 99,128, 4, 36,231,242,225,246,101,129, 0,200, 7,175,243, + 237,225,236,108,128,247,232,104, 2, 7,189, 7,200,225,242,237, + 229,238,233,225,110,128, 5, 55,239,239,235,225,226,239,246,101, + 128, 30,186,105, 3, 7,219, 7,230, 7,245,231,232,244,242,239, + 237,225,110,128, 33,103,238,246,229,242,244,229,228,226,242,229, + 246,101,128, 2, 6,239,244,233,230,233,229,228,227,249,242,233, + 236,236,233, 99,128, 4,100,108, 2, 8, 13, 8, 24,227,249,242, + 233,236,236,233, 99,128, 4, 27,229,246,229,238,242,239,237,225, + 110,128, 33,106,109, 3, 8, 44, 8, 72, 8, 83,225,227,242,239, + 110,130, 1, 18, 8, 56, 8, 64,225,227,245,244,101,128, 30, 22, + 231,242,225,246,101,128, 30, 20,227,249,242,233,236,236,233, 99, + 128, 4, 28,239,238,239,243,240,225,227,101,128,255, 37,110, 4, + 8,104, 8,115, 8,135, 8,154,227,249,242,233,236,236,233, 99, + 128, 4, 29,228,229,243,227,229,238,228,229,242,227,249,242,233, + 236,236,233, 99,128, 4,162,103,129, 1, 74, 8,141,232,229,227, + 249,242,233,236,236,233, 99,128, 4,164,232,239,239,235,227,249, + 242,233,236,236,233, 99,128, 4,199,111, 2, 8,175, 8,183,231, + 239,238,229,107,128, 1, 24,240,229,110,128, 1,144,240,243,233, + 236,239,110,129, 3,149, 8,200,244,239,238,239,115,128, 3,136, + 114, 2, 8,214, 8,225,227,249,242,233,236,236,233, 99,128, 4, + 32,229,246,229,242,243,229,100,129, 1,142, 8,237,227,249,242, + 233,236,236,233, 99,128, 4, 45,115, 4, 9, 2, 9, 13, 9, 33, + 9, 37,227,249,242,233,236,236,233, 99,128, 4, 33,228,229,243, + 227,229,238,228,229,242,227,249,242,233,236,236,233, 99,128, 4, + 170,104,128, 1,169,237,225,236,108,128,247,101,116, 3, 9, 52, + 9, 78, 9, 92, 97,130, 3,151, 9, 60, 9, 70,242,237,229,238, + 233,225,110,128, 5, 56,244,239,238,239,115,128, 3,137,104,129, + 0,208, 9, 84,243,237,225,236,108,128,247,240,233,236,228,101, + 129, 30,188, 9,101,226,229,236,239,119,128, 30, 26,245,242,111, + 128, 32,172,250,104,130, 1,183, 9,124, 9,132,227,225,242,239, + 110,128, 1,238,242,229,246,229,242,243,229,100,128, 1,184, 70, + 136, 0, 70, 9,163, 9,172, 9,184, 9,212, 9,219, 9,248, 10, + 4, 10, 15,227,233,242,227,236,101,128, 36,187,228,239,244,225, + 227,227,229,238,116,128, 30, 30,101, 2, 9,190, 9,202,232,225, + 242,237,229,238,233,225,110,128, 5, 86,233,227,239,240,244,233, + 99,128, 3,228,232,239,239,107,128, 1,145,105, 2, 9,225, 9, + 238,244,225,227,249,242,233,236,236,233, 99,128, 4,114,246,229, + 242,239,237,225,110,128, 33,100,237,239,238,239,243,240,225,227, + 101,128,255, 38,239,245,242,242,239,237,225,110,128, 33, 99,243, + 237,225,236,108,128,247,102, 71,140, 0, 71, 10, 51, 10, 61, 10, + 107, 10,115, 10,176, 10,193, 10,205, 11, 39, 11, 52, 11, 65, 11, + 90, 11,107,194,243,241,245,225,242,101,128, 51,135, 97, 3, 10, + 69, 10, 76, 10, 94,227,245,244,101,128, 1,244,237,237, 97,129, + 3,147, 10, 84,225,230,242,233,227,225,110,128, 1,148,238,231, + 233,225,227,239,240,244,233, 99,128, 3,234,226,242,229,246,101, + 128, 1, 30, 99, 4, 10,125, 10,132, 10,141, 10,163,225,242,239, + 110,128, 1,230,229,228,233,236,236, 97,128, 1, 34,233,242, 99, + 2, 10,149, 10,154,236,101,128, 36,188,245,237,230,236,229,120, + 128, 1, 28,239,237,237,225,225,227,227,229,238,116,128, 1, 34, + 228,239,116,129, 1, 32, 10,184,225,227,227,229,238,116,128, 1, + 32,229,227,249,242,233,236,236,233, 99,128, 4, 19,104, 3, 10, + 213, 10,226, 11, 33,225,228,225,242,237,229,238,233,225,110,128, + 5, 66,101, 3, 10,234, 10,255, 11, 16,237,233,228,228,236,229, + 232,239,239,235,227,249,242,233,236,236,233, 99,128, 4,148,243, + 244,242,239,235,229,227,249,242,233,236,236,233, 99,128, 4,146, + 245,240,244,245,242,238,227,249,242,233,236,236,233, 99,128, 4, + 144,239,239,107,128, 1,147,233,237,225,242,237,229,238,233,225, + 110,128, 5, 51,234,229,227,249,242,233,236,236,233, 99,128, 4, + 3,109, 2, 11, 71, 11, 79,225,227,242,239,110,128, 30, 32,239, + 238,239,243,240,225,227,101,128,255, 39,242,225,246,101,129,246, + 206, 11, 99,243,237,225,236,108,128,247, 96,115, 2, 11,113, 11, + 129,237,225,236,108,129,247,103, 11,122,232,239,239,107,128, 2, + 155,244,242,239,235,101,128, 1,228, 72,140, 0, 72, 11,165, 11, + 190, 11,198, 11,208, 12, 17, 12, 40, 12, 77, 12,117, 12,129, 12, + 157, 12,165, 12,189,177,184, 53, 3, 11,175, 11,180, 11,185,179, + 51,128, 37,207,180, 51,128, 37,170,181, 49,128, 37,171,178,178, + 176,183, 51,128, 37,161,208,243,241,245,225,242,101,128, 51,203, + 97, 3, 11,216, 11,236, 12, 0,225,226,235,232,225,243,233,225, + 238,227,249,242,233,236,236,233, 99,128, 4,168,228,229,243,227, + 229,238,228,229,242,227,249,242,233,236,236,233, 99,128, 4,178, + 242,228,243,233,231,238,227,249,242,233,236,236,233, 99,128, 4, + 42, 98, 2, 12, 23, 12, 28,225,114,128, 1, 38,242,229,246,229, + 226,229,236,239,119,128, 30, 42, 99, 2, 12, 46, 12, 55,229,228, + 233,236,236, 97,128, 30, 40,233,242, 99, 2, 12, 63, 12, 68,236, + 101,128, 36,189,245,237,230,236,229,120,128, 1, 36,100, 2, 12, + 83, 12, 93,233,229,242,229,243,233,115,128, 30, 38,239,116, 2, + 12,100, 12,109,225,227,227,229,238,116,128, 30, 34,226,229,236, + 239,119,128, 30, 36,237,239,238,239,243,240,225,227,101,128,255, + 40,111, 2, 12,135, 12,146,225,242,237,229,238,233,225,110,128, + 5, 64,242,233,227,239,240,244,233, 99,128, 3,232,243,237,225, + 236,108,128,247,104,245,238,231,225,242,245,237,236,225,245,116, + 129,246,207, 12,181,243,237,225,236,108,128,246,248,250,243,241, + 245,225,242,101,128, 51,144, 73,146, 0, 73, 12,239, 12,251, 12, + 255, 13, 11, 13, 29, 13, 37, 13, 94, 13,181, 13,214, 13,224, 13, + 242, 13,254, 14, 48, 14, 86, 14, 99, 14,166, 14,187, 14,205,193, + 227,249,242,233,236,236,233, 99,128, 4, 47, 74,128, 1, 50,213, + 227,249,242,233,236,236,233, 99,128, 4, 46,225,227,245,244,101, + 129, 0,205, 13, 21,243,237,225,236,108,128,247,237,226,242,229, + 246,101,128, 1, 44, 99, 3, 13, 45, 13, 52, 13, 84,225,242,239, + 110,128, 1,207,233,242, 99, 2, 13, 60, 13, 65,236,101,128, 36, + 190,245,237,230,236,229,120,129, 0,206, 13, 76,243,237,225,236, + 108,128,247,238,249,242,233,236,236,233, 99,128, 4, 6,100, 3, + 13,102, 13,112, 13,155,226,236,231,242,225,246,101,128, 2, 8, + 233,229,242,229,243,233,115,131, 0,207, 13,128, 13,136, 13,147, + 225,227,245,244,101,128, 30, 46,227,249,242,233,236,236,233, 99, + 128, 4,228,243,237,225,236,108,128,247,239,239,116,130, 1, 48, + 13,164, 13,173,225,227,227,229,238,116,128, 1, 48,226,229,236, + 239,119,128, 30,202,101, 2, 13,187, 13,203,226,242,229,246,229, + 227,249,242,233,236,236,233, 99,128, 4,214,227,249,242,233,236, + 236,233, 99,128, 4, 21,230,242,225,235,244,245,114,128, 33, 17, + 231,242,225,246,101,129, 0,204, 13,234,243,237,225,236,108,128, + 247,236,232,239,239,235,225,226,239,246,101,128, 30,200,105, 3, + 14, 6, 14, 17, 14, 32,227,249,242,233,236,236,233, 99,128, 4, + 24,238,246,229,242,244,229,228,226,242,229,246,101,128, 2, 10, + 243,232,239,242,244,227,249,242,233,236,236,233, 99,128, 4, 25, + 109, 2, 14, 54, 14, 75,225,227,242,239,110,129, 1, 42, 14, 64, + 227,249,242,233,236,236,233, 99,128, 4,226,239,238,239,243,240, + 225,227,101,128,255, 41,238,233,225,242,237,229,238,233,225,110, + 128, 5, 59,111, 3, 14,107, 14,118, 14,126,227,249,242,233,236, + 236,233, 99,128, 4, 1,231,239,238,229,107,128, 1, 46,244, 97, + 131, 3,153, 14,137, 14,147, 14,158,225,230,242,233,227,225,110, + 128, 1,150,228,233,229,242,229,243,233,115,128, 3,170,244,239, + 238,239,115,128, 3,138,115, 2, 14,172, 14,179,237,225,236,108, + 128,247,105,244,242,239,235,101,128, 1,151,244,233,236,228,101, + 129, 1, 40, 14,197,226,229,236,239,119,128, 30, 44,250,232,233, + 244,243, 97, 2, 14,216, 14,227,227,249,242,233,236,236,233, 99, + 128, 4,116,228,226,236,231,242,225,246,229,227,249,242,233,236, + 236,233, 99,128, 4,118, 74,134, 0, 74, 15, 6, 15, 18, 15, 41, + 15, 53, 15, 67, 15, 79,225,225,242,237,229,238,233,225,110,128, + 5, 65,227,233,242, 99, 2, 15, 27, 15, 32,236,101,128, 36,191, + 245,237,230,236,229,120,128, 1, 52,229,227,249,242,233,236,236, + 233, 99,128, 4, 8,232,229,232,225,242,237,229,238,233,225,110, + 128, 5, 75,237,239,238,239,243,240,225,227,101,128,255, 42,243, + 237,225,236,108,128,247,106, 75,140, 0, 75, 15,115, 15,125, 15, + 135, 16, 18, 16, 65, 16, 76, 16,106, 16,143, 16,156, 16,168, 16, + 180, 16,208,194,243,241,245,225,242,101,128, 51,133,203,243,241, + 245,225,242,101,128, 51,205, 97, 7, 15,151, 15,169, 15,191, 15, + 211, 15,226, 15,232, 15,249,226,225,243,232,235,233,242,227,249, + 242,233,236,236,233, 99,128, 4,160, 99, 2, 15,175, 15,181,245, + 244,101,128, 30, 48,249,242,233,236,236,233, 99,128, 4, 26,228, + 229,243,227,229,238,228,229,242,227,249,242,233,236,236,233, 99, + 128, 4,154,232,239,239,235,227,249,242,233,236,236,233, 99,128, + 4,195,240,240, 97,128, 3,154,243,244,242,239,235,229,227,249, + 242,233,236,236,233, 99,128, 4,158,246,229,242,244,233,227,225, + 236,243,244,242,239,235,229,227,249,242,233,236,236,233, 99,128, + 4,156, 99, 4, 16, 28, 16, 35, 16, 44, 16, 52,225,242,239,110, + 128, 1,232,229,228,233,236,236, 97,128, 1, 54,233,242,227,236, + 101,128, 36,192,239,237,237,225,225,227,227,229,238,116,128, 1, + 54,228,239,244,226,229,236,239,119,128, 30, 50,101, 2, 16, 82, + 16, 94,232,225,242,237,229,238,233,225,110,128, 5, 84,238,225, + 242,237,229,238,233,225,110,128, 5, 63,104, 3, 16,114, 16,126, + 16,137,225,227,249,242,233,236,236,233, 99,128, 4, 37,229,233, + 227,239,240,244,233, 99,128, 3,230,239,239,107,128, 1,152,234, + 229,227,249,242,233,236,236,233, 99,128, 4, 12,236,233,238,229, + 226,229,236,239,119,128, 30, 52,237,239,238,239,243,240,225,227, + 101,128,255, 43,239,240,240, 97, 2, 16,189, 16,200,227,249,242, + 233,236,236,233, 99,128, 4,128,231,242,229,229,107,128, 3,222, + 115, 2, 16,214, 16,226,233,227,249,242,233,236,236,233, 99,128, + 4,110,237,225,236,108,128,247,107, 76,138, 0, 76, 17, 1, 17, + 5, 17, 9, 17, 29, 17, 95, 17,133, 17,147, 17,165, 17,177, 17, + 189, 74,128, 1,199, 76,128,246,191, 97, 2, 17, 15, 17, 22,227, + 245,244,101,128, 1, 57,237,226,228, 97,128, 3,155, 99, 4, 17, + 39, 17, 46, 17, 55, 17, 82,225,242,239,110,128, 1, 61,229,228, + 233,236,236, 97,128, 1, 59,233,242, 99, 2, 17, 63, 17, 68,236, + 101,128, 36,193,245,237,230,236,229,248,226,229,236,239,119,128, + 30, 60,239,237,237,225,225,227,227,229,238,116,128, 1, 59,228, + 239,116,130, 1, 63, 17,105, 17,114,225,227,227,229,238,116,128, + 1, 63,226,229,236,239,119,129, 30, 54, 17,124,237,225,227,242, + 239,110,128, 30, 56,233,247,238,225,242,237,229,238,233,225,110, + 128, 5, 60,106,129, 1,200, 17,153,229,227,249,242,233,236,236, + 233, 99,128, 4, 9,236,233,238,229,226,229,236,239,119,128, 30, + 58,237,239,238,239,243,240,225,227,101,128,255, 44,115, 2, 17, + 195, 17,212,236,225,243,104,129, 1, 65, 17,204,243,237,225,236, + 108,128,246,249,237,225,236,108,128,247,108, 77,137, 0, 77, 17, + 241, 17,251, 18, 24, 18, 33, 18, 58, 18, 71, 18, 83, 18, 91, 18, + 100,194,243,241,245,225,242,101,128, 51,134,225, 99, 2, 18, 2, + 18, 18,242,239,110,129,246,208, 18, 10,243,237,225,236,108,128, + 247,175,245,244,101,128, 30, 62,227,233,242,227,236,101,128, 36, + 194,228,239,116, 2, 18, 41, 18, 50,225,227,227,229,238,116,128, + 30, 64,226,229,236,239,119,128, 30, 66,229,238,225,242,237,229, + 238,233,225,110,128, 5, 68,237,239,238,239,243,240,225,227,101, + 128,255, 45,243,237,225,236,108,128,247,109,244,245,242,238,229, + 100,128, 1,156,117,128, 3,156, 78,141, 0, 78, 18,134, 18,138, + 18,146, 18,212, 18,237, 18,248, 19, 3, 19, 21, 19, 33, 19, 45, + 19, 58, 19, 66, 19, 84, 74,128, 1,202,225,227,245,244,101,128, + 1, 67, 99, 4, 18,156, 18,163, 18,172, 18,199,225,242,239,110, + 128, 1, 71,229,228,233,236,236, 97,128, 1, 69,233,242, 99, 2, + 18,180, 18,185,236,101,128, 36,195,245,237,230,236,229,248,226, + 229,236,239,119,128, 30, 74,239,237,237,225,225,227,227,229,238, + 116,128, 1, 69,228,239,116, 2, 18,220, 18,229,225,227,227,229, + 238,116,128, 30, 68,226,229,236,239,119,128, 30, 70,232,239,239, + 235,236,229,230,116,128, 1,157,233,238,229,242,239,237,225,110, + 128, 33,104,106,129, 1,203, 19, 9,229,227,249,242,233,236,236, + 233, 99,128, 4, 10,236,233,238,229,226,229,236,239,119,128, 30, + 72,237,239,238,239,243,240,225,227,101,128,255, 46,239,247,225, + 242,237,229,238,233,225,110,128, 5, 70,243,237,225,236,108,128, + 247,110,244,233,236,228,101,129, 0,209, 19, 76,243,237,225,236, + 108,128,247,241,117,128, 3,157, 79,141, 0, 79, 19,118, 19,132, + 19,150, 19,203, 20, 78, 20,152, 20,187, 21, 48, 21, 69, 21,213, + 21,223, 21,254, 22, 53, 69,129, 1, 82, 19,124,243,237,225,236, + 108,128,246,250,225,227,245,244,101,129, 0,211, 19,142,243,237, + 225,236,108,128,247,243, 98, 2, 19,156, 19,196,225,242,242,229, + 100, 2, 19,166, 19,177,227,249,242,233,236,236,233, 99,128, 4, + 232,228,233,229,242,229,243,233,243,227,249,242,233,236,236,233, + 99,128, 4,234,242,229,246,101,128, 1, 78, 99, 4, 19,213, 19, + 220, 19,235, 20, 68,225,242,239,110,128, 1,209,229,238,244,229, + 242,229,228,244,233,236,228,101,128, 1,159,233,242, 99, 2, 19, + 243, 19,248,236,101,128, 36,196,245,237,230,236,229,120,134, 0, + 212, 20, 13, 20, 21, 20, 32, 20, 40, 20, 52, 20, 60,225,227,245, + 244,101,128, 30,208,228,239,244,226,229,236,239,119,128, 30,216, + 231,242,225,246,101,128, 30,210,232,239,239,235,225,226,239,246, + 101,128, 30,212,243,237,225,236,108,128,247,244,244,233,236,228, + 101,128, 30,214,249,242,233,236,236,233, 99,128, 4, 30,100, 3, + 20, 86, 20,109, 20,142,226,108, 2, 20, 93, 20,101,225,227,245, + 244,101,128, 1, 80,231,242,225,246,101,128, 2, 12,233,229,242, + 229,243,233,115,130, 0,214, 20,123, 20,134,227,249,242,233,236, + 236,233, 99,128, 4,230,243,237,225,236,108,128,247,246,239,244, + 226,229,236,239,119,128, 30,204,103, 2, 20,158, 20,170,239,238, + 229,235,243,237,225,236,108,128,246,251,242,225,246,101,129, 0, + 210, 20,179,243,237,225,236,108,128,247,242,104, 4, 20,197, 20, + 208, 20,212, 21, 34,225,242,237,229,238,233,225,110,128, 5, 85, + 109,128, 33, 38,111, 2, 20,218, 20,228,239,235,225,226,239,246, + 101,128, 30,206,242,110,133, 1,160, 20,243, 20,251, 21, 6, 21, + 14, 21, 26,225,227,245,244,101,128, 30,218,228,239,244,226,229, + 236,239,119,128, 30,226,231,242,225,246,101,128, 30,220,232,239, + 239,235,225,226,239,246,101,128, 30,222,244,233,236,228,101,128, + 30,224,245,238,231,225,242,245,237,236,225,245,116,128, 1, 80, + 105,129, 1,162, 21, 54,238,246,229,242,244,229,228,226,242,229, + 246,101,128, 2, 14,109, 4, 21, 79, 21,107, 21,184, 21,202,225, + 227,242,239,110,130, 1, 76, 21, 91, 21, 99,225,227,245,244,101, + 128, 30, 82,231,242,225,246,101,128, 30, 80,229,231, 97,132, 33, + 38, 21,121, 21,132, 21,140, 21,156,227,249,242,233,236,236,233, + 99,128, 4, 96,231,242,229,229,107,128, 3,169,242,239,245,238, + 228,227,249,242,233,236,236,233, 99,128, 4,122,116, 2, 21,162, + 21,177,233,244,236,239,227,249,242,233,236,236,233, 99,128, 4, + 124,239,238,239,115,128, 3,143,233,227,242,239,110,129, 3,159, + 21,194,244,239,238,239,115,128, 3,140,239,238,239,243,240,225, + 227,101,128,255, 47,238,229,242,239,237,225,110,128, 33, 96,111, + 2, 21,229, 21,248,231,239,238,229,107,129, 1,234, 21,239,237, + 225,227,242,239,110,128, 1,236,240,229,110,128, 1,134,115, 3, + 22, 6, 22, 33, 22, 40,236,225,243,104,130, 0,216, 22, 17, 22, + 25,225,227,245,244,101,128, 1,254,243,237,225,236,108,128,247, + 248,237,225,236,108,128,247,111,244,242,239,235,229,225,227,245, + 244,101,128, 1,254,116, 2, 22, 59, 22, 70,227,249,242,233,236, + 236,233, 99,128, 4,126,233,236,228,101,131, 0,213, 22, 83, 22, + 91, 22,102,225,227,245,244,101,128, 30, 76,228,233,229,242,229, + 243,233,115,128, 30, 78,243,237,225,236,108,128,247,245, 80,136, + 0, 80, 22,130, 22,138, 22,147, 22,159, 22,211, 22,227, 22,246, + 23, 2,225,227,245,244,101,128, 30, 84,227,233,242,227,236,101, + 128, 36,197,228,239,244,225,227,227,229,238,116,128, 30, 86,101, + 3, 22,167, 22,178, 22,190,227,249,242,233,236,236,233, 99,128, + 4, 31,232,225,242,237,229,238,233,225,110,128, 5, 74,237,233, + 228,228,236,229,232,239,239,235,227,249,242,233,236,236,233, 99, + 128, 4,166,104, 2, 22,217, 22,221,105,128, 3,166,239,239,107, + 128, 1,164,105,129, 3,160, 22,233,247,242,225,242,237,229,238, + 233,225,110,128, 5, 83,237,239,238,239,243,240,225,227,101,128, + 255, 48,115, 2, 23, 8, 23, 25,105,129, 3,168, 23, 14,227,249, + 242,233,236,236,233, 99,128, 4,112,237,225,236,108,128,247,112, + 81,131, 0, 81, 23, 42, 23, 51, 23, 63,227,233,242,227,236,101, + 128, 36,198,237,239,238,239,243,240,225,227,101,128,255, 49,243, + 237,225,236,108,128,247,113, 82,138, 0, 82, 23, 95, 23,119, 23, + 166, 23,217, 23,230, 23,240, 23,245, 24, 19, 24, 31, 24, 43, 97, + 2, 23,101, 23,112,225,242,237,229,238,233,225,110,128, 5, 76, + 227,245,244,101,128, 1, 84, 99, 4, 23,129, 23,136, 23,145, 23, + 153,225,242,239,110,128, 1, 88,229,228,233,236,236, 97,128, 1, + 86,233,242,227,236,101,128, 36,199,239,237,237,225,225,227,227, + 229,238,116,128, 1, 86,100, 2, 23,172, 23,182,226,236,231,242, + 225,246,101,128, 2, 16,239,116, 2, 23,189, 23,198,225,227,227, + 229,238,116,128, 30, 88,226,229,236,239,119,129, 30, 90, 23,208, + 237,225,227,242,239,110,128, 30, 92,229,232,225,242,237,229,238, + 233,225,110,128, 5, 80,230,242,225,235,244,245,114,128, 33, 28, + 232,111,128, 3,161,233,110, 2, 23,252, 24, 5,231,243,237,225, + 236,108,128,246,252,246,229,242,244,229,228,226,242,229,246,101, + 128, 2, 18,236,233,238,229,226,229,236,239,119,128, 30, 94,237, + 239,238,239,243,240,225,227,101,128,255, 50,243,237,225,236,108, + 129,247,114, 24, 53,233,238,246,229,242,244,229,100,129, 2,129, + 24, 66,243,245,240,229,242,233,239,114,128, 2,182, 83,139, 0, + 83, 24,103, 26, 17, 26, 55, 26,182, 26,221, 26,250, 27, 84, 27, + 105, 27,117, 27,135, 27,143, 70, 6, 24,117, 24,209, 24,241, 25, + 77, 25,119, 25,221, 48, 9, 24,137, 24,145, 24,153, 24,161, 24, + 169, 24,177, 24,185, 24,193, 24,201,177,176,176,176, 48,128, 37, + 12,178,176,176,176, 48,128, 37, 20,179,176,176,176, 48,128, 37, + 16,180,176,176,176, 48,128, 37, 24,181,176,176,176, 48,128, 37, + 60,182,176,176,176, 48,128, 37, 44,183,176,176,176, 48,128, 37, + 52,184,176,176,176, 48,128, 37, 28,185,176,176,176, 48,128, 37, + 36, 49, 3, 24,217, 24,225, 24,233,176,176,176,176, 48,128, 37, + 0,177,176,176,176, 48,128, 37, 2,185,176,176,176, 48,128, 37, + 97, 50, 9, 25, 5, 25, 13, 25, 21, 25, 29, 25, 37, 25, 45, 25, + 53, 25, 61, 25, 69,176,176,176,176, 48,128, 37, 98,177,176,176, + 176, 48,128, 37, 86,178,176,176,176, 48,128, 37, 85,179,176,176, + 176, 48,128, 37, 99,180,176,176,176, 48,128, 37, 81,181,176,176, + 176, 48,128, 37, 87,182,176,176,176, 48,128, 37, 93,183,176,176, + 176, 48,128, 37, 92,184,176,176,176, 48,128, 37, 91, 51, 4, 25, + 87, 25, 95, 25,103, 25,111,182,176,176,176, 48,128, 37, 94,183, + 176,176,176, 48,128, 37, 95,184,176,176,176, 48,128, 37, 90,185, + 176,176,176, 48,128, 37, 84, 52, 10, 25,141, 25,149, 25,157, 25, + 165, 25,173, 25,181, 25,189, 25,197, 25,205, 25,213,176,176,176, + 176, 48,128, 37,105,177,176,176,176, 48,128, 37,102,178,176,176, + 176, 48,128, 37, 96,179,176,176,176, 48,128, 37, 80,180,176,176, + 176, 48,128, 37,108,181,176,176,176, 48,128, 37,103,182,176,176, + 176, 48,128, 37,104,183,176,176,176, 48,128, 37,100,184,176,176, + 176, 48,128, 37,101,185,176,176,176, 48,128, 37, 89, 53, 5, 25, + 233, 25,241, 25,249, 26, 1, 26, 9,176,176,176,176, 48,128, 37, + 88,177,176,176,176, 48,128, 37, 82,178,176,176,176, 48,128, 37, + 83,179,176,176,176, 48,128, 37,107,180,176,176,176, 48,128, 37, + 106, 97, 2, 26, 23, 26, 44,227,245,244,101,129, 1, 90, 26, 32, + 228,239,244,225,227,227,229,238,116,128, 30,100,237,240,233,231, + 242,229,229,107,128, 3,224, 99, 5, 26, 67, 26, 98, 26,107, 26, + 147, 26,169,225,242,239,110,130, 1, 96, 26, 78, 26, 90,228,239, + 244,225,227,227,229,238,116,128, 30,102,243,237,225,236,108,128, + 246,253,229,228,233,236,236, 97,128, 1, 94,232,247, 97,130, 1, + 143, 26,117, 26,128,227,249,242,233,236,236,233, 99,128, 4,216, + 228,233,229,242,229,243,233,243,227,249,242,233,236,236,233, 99, + 128, 4,218,233,242, 99, 2, 26,155, 26,160,236,101,128, 36,200, + 245,237,230,236,229,120,128, 1, 92,239,237,237,225,225,227,227, + 229,238,116,128, 2, 24,228,239,116, 2, 26,190, 26,199,225,227, + 227,229,238,116,128, 30, 96,226,229,236,239,119,129, 30, 98, 26, + 209,228,239,244,225,227,227,229,238,116,128, 30,104,101, 2, 26, + 227, 26,239,232,225,242,237,229,238,233,225,110,128, 5, 77,246, + 229,238,242,239,237,225,110,128, 33,102,104, 5, 27, 6, 27, 34, + 27, 48, 27, 59, 27, 72, 97, 2, 27, 12, 27, 23,225,242,237,229, + 238,233,225,110,128, 5, 71,227,249,242,233,236,236,233, 99,128, + 4, 40,227,232,225,227,249,242,233,236,236,233, 99,128, 4, 41, + 229,233,227,239,240,244,233, 99,128, 3,226,232,225,227,249,242, + 233,236,236,233, 99,128, 4,186,233,237,225,227,239,240,244,233, + 99,128, 3,236,105, 2, 27, 90, 27, 96,231,237, 97,128, 3,163, + 248,242,239,237,225,110,128, 33,101,237,239,238,239,243,240,225, + 227,101,128,255, 51,239,230,244,243,233,231,238,227,249,242,233, + 236,236,233, 99,128, 4, 44,243,237,225,236,108,128,247,115,244, + 233,231,237,225,231,242,229,229,107,128, 3,218, 84,141, 0, 84, + 27,186, 27,191, 27,197, 28, 7, 28, 32, 28, 96, 28,147, 28,177, + 28,189, 28,201, 28,246, 29, 6, 29, 46,225,117,128, 3,164,226, + 225,114,128, 1,102, 99, 4, 27,207, 27,214, 27,223, 27,250,225, + 242,239,110,128, 1,100,229,228,233,236,236, 97,128, 1, 98,233, + 242, 99, 2, 27,231, 27,236,236,101,128, 36,201,245,237,230,236, + 229,248,226,229,236,239,119,128, 30,112,239,237,237,225,225,227, + 227,229,238,116,128, 1, 98,228,239,116, 2, 28, 15, 28, 24,225, + 227,227,229,238,116,128, 30,106,226,229,236,239,119,128, 30,108, + 101, 4, 28, 42, 28, 53, 28, 73, 28, 82,227,249,242,233,236,236, + 233, 99,128, 4, 34,228,229,243,227,229,238,228,229,242,227,249, + 242,233,236,236,233, 99,128, 4,172,238,242,239,237,225,110,128, + 33,105,244,243,229,227,249,242,233,236,236,233, 99,128, 4,180, + 104, 3, 28,104, 28,110, 28,136,229,244, 97,128, 3,152,111, 2, + 28,116, 28,121,239,107,128, 1,172,242,110,129, 0,222, 28,128, + 243,237,225,236,108,128,247,254,242,229,229,242,239,237,225,110, + 128, 33, 98,105, 2, 28,153, 28,164,236,228,229,243,237,225,236, + 108,128,246,254,247,238,225,242,237,229,238,233,225,110,128, 5, + 79,236,233,238,229,226,229,236,239,119,128, 30,110,237,239,238, + 239,243,240,225,227,101,128,255, 52,111, 2, 28,207, 28,218,225, + 242,237,229,238,233,225,110,128, 5, 57,238,101, 3, 28,227, 28, + 234, 28,240,230,233,246,101,128, 1,188,243,233,120,128, 1,132, + 244,247,111,128, 1,167,242,229,244,242,239,230,236,229,248,232, + 239,239,107,128, 1,174,115, 3, 29, 14, 29, 26, 29, 39,229,227, + 249,242,233,236,236,233, 99,128, 4, 38,232,229,227,249,242,233, + 236,236,233, 99,128, 4, 11,237,225,236,108,128,247,116,119, 2, + 29, 52, 29, 64,229,236,246,229,242,239,237,225,110,128, 33,107, + 239,242,239,237,225,110,128, 33, 97, 85,142, 0, 85, 29,105, 29, + 123, 29,131, 29,198, 30, 69, 30, 87, 30,198, 30,214, 30,226, 31, + 21, 31, 30, 31,142, 31,149, 31,219,225,227,245,244,101,129, 0, + 218, 29,115,243,237,225,236,108,128,247,250,226,242,229,246,101, + 128, 1,108, 99, 3, 29,139, 29,146, 29,188,225,242,239,110,128, + 1,211,233,242, 99, 2, 29,154, 29,159,236,101,128, 36,202,245, + 237,230,236,229,120,130, 0,219, 29,172, 29,180,226,229,236,239, + 119,128, 30,118,243,237,225,236,108,128,247,251,249,242,233,236, + 236,233, 99,128, 4, 35,100, 3, 29,206, 29,229, 30, 59,226,108, + 2, 29,213, 29,221,225,227,245,244,101,128, 1,112,231,242,225, + 246,101,128, 2, 20,233,229,242,229,243,233,115,134, 0,220, 29, + 251, 30, 3, 30, 11, 30, 34, 30, 42, 30, 51,225,227,245,244,101, + 128, 1,215,226,229,236,239,119,128, 30,114, 99, 2, 30, 17, 30, + 24,225,242,239,110,128, 1,217,249,242,233,236,236,233, 99,128, + 4,240,231,242,225,246,101,128, 1,219,237,225,227,242,239,110, + 128, 1,213,243,237,225,236,108,128,247,252,239,244,226,229,236, + 239,119,128, 30,228,231,242,225,246,101,129, 0,217, 30, 79,243, + 237,225,236,108,128,247,249,104, 2, 30, 93, 30,171,111, 2, 30, + 99, 30,109,239,235,225,226,239,246,101,128, 30,230,242,110,133, + 1,175, 30,124, 30,132, 30,143, 30,151, 30,163,225,227,245,244, + 101,128, 30,232,228,239,244,226,229,236,239,119,128, 30,240,231, + 242,225,246,101,128, 30,234,232,239,239,235,225,226,239,246,101, + 128, 30,236,244,233,236,228,101,128, 30,238,245,238,231,225,242, + 245,237,236,225,245,116,129, 1,112, 30,187,227,249,242,233,236, + 236,233, 99,128, 4,242,233,238,246,229,242,244,229,228,226,242, + 229,246,101,128, 2, 22,235,227,249,242,233,236,236,233, 99,128, + 4,120,109, 2, 30,232, 31, 10,225,227,242,239,110,130, 1,106, + 30,244, 30,255,227,249,242,233,236,236,233, 99,128, 4,238,228, + 233,229,242,229,243,233,115,128, 30,122,239,238,239,243,240,225, + 227,101,128,255, 53,239,231,239,238,229,107,128, 1,114,240,243, + 233,236,239,110,133, 3,165, 31, 49, 31, 53, 31, 90, 31,121, 31, + 134, 49,128, 3,210, 97, 2, 31, 59, 31, 81,227,245,244,229,232, + 239,239,235,243,249,237,226,239,236,231,242,229,229,107,128, 3, + 211,230,242,233,227,225,110,128, 1,177,228,233,229,242,229,243, + 233,115,129, 3,171, 31,103,232,239,239,235,243,249,237,226,239, + 236,231,242,229,229,107,128, 3,212,232,239,239,235,243,249,237, + 226,239,108,128, 3,210,244,239,238,239,115,128, 3,142,242,233, + 238,103,128, 1,110,115, 3, 31,157, 31,172, 31,179,232,239,242, + 244,227,249,242,233,236,236,233, 99,128, 4, 14,237,225,236,108, + 128,247,117,244,242,225,233,231,232,116, 2, 31,191, 31,202,227, + 249,242,233,236,236,233, 99,128, 4,174,243,244,242,239,235,229, + 227,249,242,233,236,236,233, 99,128, 4,176,244,233,236,228,101, + 130, 1,104, 31,231, 31,239,225,227,245,244,101,128, 30,120,226, + 229,236,239,119,128, 30,116, 86,136, 0, 86, 32, 11, 32, 20, 32, + 31, 32, 60, 32, 67, 32, 79, 32, 91, 32, 99,227,233,242,227,236, + 101,128, 36,203,228,239,244,226,229,236,239,119,128, 30,126,101, + 2, 32, 37, 32, 48,227,249,242,233,236,236,233, 99,128, 4, 18, + 247,225,242,237,229,238,233,225,110,128, 5, 78,232,239,239,107, + 128, 1,178,237,239,238,239,243,240,225,227,101,128,255, 54,239, + 225,242,237,229,238,233,225,110,128, 5, 72,243,237,225,236,108, + 128,247,118,244,233,236,228,101,128, 30,124, 87,134, 0, 87, 32, + 123, 32,131, 32,154, 32,194, 32,202, 32,214,225,227,245,244,101, + 128, 30,130,227,233,242, 99, 2, 32,140, 32,145,236,101,128, 36, + 204,245,237,230,236,229,120,128, 1,116,100, 2, 32,160, 32,170, + 233,229,242,229,243,233,115,128, 30,132,239,116, 2, 32,177, 32, + 186,225,227,227,229,238,116,128, 30,134,226,229,236,239,119,128, + 30,136,231,242,225,246,101,128, 30,128,237,239,238,239,243,240, + 225,227,101,128,255, 55,243,237,225,236,108,128,247,119, 88,134, + 0, 88, 32,238, 32,247, 33, 18, 33, 31, 33, 35, 33, 47,227,233, + 242,227,236,101,128, 36,205,100, 2, 32,253, 33, 7,233,229,242, + 229,243,233,115,128, 30,140,239,244,225,227,227,229,238,116,128, + 30,138,229,232,225,242,237,229,238,233,225,110,128, 5, 61,105, + 128, 3,158,237,239,238,239,243,240,225,227,101,128,255, 56,243, + 237,225,236,108,128,247,120, 89,139, 0, 89, 33, 81, 33,116, 33, + 139, 33,189, 33,228, 33,236, 33,253, 34, 40, 34, 52, 34, 60, 34, + 68, 97, 2, 33, 87, 33,104,227,245,244,101,129, 0,221, 33, 96, + 243,237,225,236,108,128,247,253,244,227,249,242,233,236,236,233, + 99,128, 4, 98,227,233,242, 99, 2, 33,125, 33,130,236,101,128, + 36,206,245,237,230,236,229,120,128, 1,118,100, 2, 33,145, 33, + 165,233,229,242,229,243,233,115,129, 1,120, 33,157,243,237,225, + 236,108,128,247,255,239,116, 2, 33,172, 33,181,225,227,227,229, + 238,116,128, 30,142,226,229,236,239,119,128, 30,244,229,114, 2, + 33,196, 33,208,233,227,249,242,233,236,236,233, 99,128, 4, 43, + 245,228,233,229,242,229,243,233,243,227,249,242,233,236,236,233, + 99,128, 4,248,231,242,225,246,101,128, 30,242,232,239,239,107, + 129, 1,179, 33,245,225,226,239,246,101,128, 30,246,105, 3, 34, + 5, 34, 16, 34, 27,225,242,237,229,238,233,225,110,128, 5, 69, + 227,249,242,233,236,236,233, 99,128, 4, 7,247,238,225,242,237, + 229,238,233,225,110,128, 5, 82,237,239,238,239,243,240,225,227, + 101,128,255, 57,243,237,225,236,108,128,247,121,244,233,236,228, + 101,128, 30,248,245,115, 2, 34, 75, 34,113,226,233,103, 2, 34, + 83, 34, 94,227,249,242,233,236,236,233, 99,128, 4,106,233,239, + 244,233,230,233,229,228,227,249,242,233,236,236,233, 99,128, 4, + 108,236,233,244,244,236,101, 2, 34,124, 34,135,227,249,242,233, + 236,236,233, 99,128, 4,102,233,239,244,233,230,233,229,228,227, + 249,242,233,236,236,233, 99,128, 4,104, 90,136, 0, 90, 34,174, + 34,198, 34,243, 35, 14, 35, 81, 35,173, 35,185, 35,197, 97, 2, + 34,180, 34,191,225,242,237,229,238,233,225,110,128, 5, 54,227, + 245,244,101,128, 1,121, 99, 2, 34,204, 34,221,225,242,239,110, + 129, 1,125, 34,213,243,237,225,236,108,128,246,255,233,242, 99, + 2, 34,229, 34,234,236,101,128, 36,207,245,237,230,236,229,120, + 128, 30,144,228,239,116,130, 1,123, 34,253, 35, 6,225,227,227, + 229,238,116,128, 1,123,226,229,236,239,119,128, 30,146,101, 3, + 35, 22, 35, 33, 35, 76,227,249,242,233,236,236,233, 99,128, 4, + 23,100, 2, 35, 39, 35, 58,229,243,227,229,238,228,229,242,227, + 249,242,233,236,236,233, 99,128, 4,152,233,229,242,229,243,233, + 243,227,249,242,233,236,236,233, 99,128, 4,222,244, 97,128, 3, + 150,232,101, 4, 35, 92, 35,103, 35,119, 35,130,225,242,237,229, + 238,233,225,110,128, 5, 58,226,242,229,246,229,227,249,242,233, + 236,236,233, 99,128, 4,193,227,249,242,233,236,236,233, 99,128, + 4, 22,100, 2, 35,136, 35,155,229,243,227,229,238,228,229,242, + 227,249,242,233,236,236,233, 99,128, 4,150,233,229,242,229,243, + 233,243,227,249,242,233,236,236,233, 99,128, 4,220,236,233,238, + 229,226,229,236,239,119,128, 30,148,237,239,238,239,243,240,225, + 227,101,128,255, 58,115, 2, 35,203, 35,210,237,225,236,108,128, + 247,122,244,242,239,235,101,128, 1,181, 97,149, 0, 97, 36, 8, + 36,144, 37, 35, 37,211, 38, 55, 38, 91, 45, 10, 45, 47, 45, 74, + 46, 43, 46, 81, 47,170, 47,242, 48,197, 48,206, 49, 79, 51, 87, + 52, 77, 52,124, 53, 19, 53, 33, 97, 7, 36, 24, 36, 34, 36, 41, + 36, 48, 36, 73, 36, 89, 36,100,226,229,238,231,225,236,105,128, + 9,134,227,245,244,101,128, 0,225,228,229,246, 97,128, 9, 6, + 231,117, 2, 36, 55, 36, 64,234,225,242,225,244,105,128, 10,134, + 242,237,245,235,232,105,128, 10, 6,237,225,244,242,225,231,245, + 242,237,245,235,232,105,128, 10, 62,242,245,243,241,245,225,242, + 101,128, 51, 3,246,239,247,229,236,243,233,231,110, 3, 36,116, + 36,126, 36,133,226,229,238,231,225,236,105,128, 9,190,228,229, + 246, 97,128, 9, 62,231,245,234,225,242,225,244,105,128, 10,190, + 98, 4, 36,154, 36,195, 36,204, 36,214,226,242,229,246,233,225, + 244,233,239,110, 2, 36,169, 36,184,237,225,242,235,225,242,237, + 229,238,233,225,110,128, 5, 95,243,233,231,238,228,229,246, 97, + 128, 9,112,229,238,231,225,236,105,128, 9,133,239,240,239,237, + 239,230,111,128, 49, 26,242,229,246,101,134, 1, 3, 36,233, 36, + 241, 36,252, 37, 7, 37, 15, 37, 27,225,227,245,244,101,128, 30, + 175,227,249,242,233,236,236,233, 99,128, 4,209,228,239,244,226, + 229,236,239,119,128, 30,183,231,242,225,246,101,128, 30,177,232, + 239,239,235,225,226,239,246,101,128, 30,179,244,233,236,228,101, + 128, 30,181, 99, 4, 37, 45, 37, 52, 37,131, 37,201,225,242,239, + 110,128, 1,206,233,242, 99, 2, 37, 60, 37, 65,236,101,128, 36, + 208,245,237,230,236,229,120,133, 0,226, 37, 84, 37, 92, 37,103, + 37,111, 37,123,225,227,245,244,101,128, 30,165,228,239,244,226, + 229,236,239,119,128, 30,173,231,242,225,246,101,128, 30,167,232, + 239,239,235,225,226,239,246,101,128, 30,169,244,233,236,228,101, + 128, 30,171,245,244,101,133, 0,180, 37,147, 37,158, 37,175, 37, + 182, 37,191,226,229,236,239,247,227,237, 98,128, 3, 23, 99, 2, + 37,164, 37,169,237, 98,128, 3, 1,239,237, 98,128, 3, 1,228, + 229,246, 97,128, 9, 84,236,239,247,237,239,100,128, 2,207,244, + 239,238,229,227,237, 98,128, 3, 65,249,242,233,236,236,233, 99, + 128, 4, 48,100, 5, 37,223, 37,233, 37,247, 37,253, 38, 31,226, + 236,231,242,225,246,101,128, 2, 1,228,225,235,231,245,242,237, + 245,235,232,105,128, 10,113,229,246, 97,128, 9, 5,233,229,242, + 229,243,233,115,130, 0,228, 38, 11, 38, 22,227,249,242,233,236, + 236,233, 99,128, 4,211,237,225,227,242,239,110,128, 1,223,239, + 116, 2, 38, 38, 38, 46,226,229,236,239,119,128, 30,161,237,225, + 227,242,239,110,128, 1,225,101,131, 0,230, 38, 65, 38, 73, 38, + 82,225,227,245,244,101,128, 1,253,235,239,242,229,225,110,128, + 49, 80,237,225,227,242,239,110,128, 1,227,230,233,105, 6, 38, + 107, 38,127, 41, 64, 41, 70, 41, 85, 44,185, 48, 2, 38,113, 38, + 120,176,178,176, 56,128, 32, 21,184,185,180, 49,128, 32,164,177, + 48, 3, 38,136, 40,160, 41, 39, 48, 9, 38,156, 38,176, 38,238, + 39, 44, 39,106, 39,168, 39,230, 40, 36, 40, 98, 49, 3, 38,164, + 38,168, 38,172, 55,128, 4, 16, 56,128, 4, 17, 57,128, 4, 18, + 50, 10, 38,198, 38,202, 38,206, 38,210, 38,214, 38,218, 38,222, + 38,226, 38,230, 38,234, 48,128, 4, 19, 49,128, 4, 20, 50,128, + 4, 21, 51,128, 4, 1, 52,128, 4, 22, 53,128, 4, 23, 54,128, + 4, 24, 55,128, 4, 25, 56,128, 4, 26, 57,128, 4, 27, 51, 10, + 39, 4, 39, 8, 39, 12, 39, 16, 39, 20, 39, 24, 39, 28, 39, 32, + 39, 36, 39, 40, 48,128, 4, 28, 49,128, 4, 29, 50,128, 4, 30, + 51,128, 4, 31, 52,128, 4, 32, 53,128, 4, 33, 54,128, 4, 34, + 55,128, 4, 35, 56,128, 4, 36, 57,128, 4, 37, 52, 10, 39, 66, + 39, 70, 39, 74, 39, 78, 39, 82, 39, 86, 39, 90, 39, 94, 39, 98, + 39,102, 48,128, 4, 38, 49,128, 4, 39, 50,128, 4, 40, 51,128, + 4, 41, 52,128, 4, 42, 53,128, 4, 43, 54,128, 4, 44, 55,128, + 4, 45, 56,128, 4, 46, 57,128, 4, 47, 53, 10, 39,128, 39,132, + 39,136, 39,140, 39,144, 39,148, 39,152, 39,156, 39,160, 39,164, + 48,128, 4,144, 49,128, 4, 2, 50,128, 4, 3, 51,128, 4, 4, + 52,128, 4, 5, 53,128, 4, 6, 54,128, 4, 7, 55,128, 4, 8, + 56,128, 4, 9, 57,128, 4, 10, 54, 10, 39,190, 39,194, 39,198, + 39,202, 39,206, 39,210, 39,214, 39,218, 39,222, 39,226, 48,128, + 4, 11, 49,128, 4, 12, 50,128, 4, 14, 51,128,246,196, 52,128, + 246,197, 53,128, 4, 48, 54,128, 4, 49, 55,128, 4, 50, 56,128, + 4, 51, 57,128, 4, 52, 55, 10, 39,252, 40, 0, 40, 4, 40, 8, + 40, 12, 40, 16, 40, 20, 40, 24, 40, 28, 40, 32, 48,128, 4, 53, + 49,128, 4, 81, 50,128, 4, 54, 51,128, 4, 55, 52,128, 4, 56, + 53,128, 4, 57, 54,128, 4, 58, 55,128, 4, 59, 56,128, 4, 60, + 57,128, 4, 61, 56, 10, 40, 58, 40, 62, 40, 66, 40, 70, 40, 74, + 40, 78, 40, 82, 40, 86, 40, 90, 40, 94, 48,128, 4, 62, 49,128, + 4, 63, 50,128, 4, 64, 51,128, 4, 65, 52,128, 4, 66, 53,128, + 4, 67, 54,128, 4, 68, 55,128, 4, 69, 56,128, 4, 70, 57,128, + 4, 71, 57, 10, 40,120, 40,124, 40,128, 40,132, 40,136, 40,140, + 40,144, 40,148, 40,152, 40,156, 48,128, 4, 72, 49,128, 4, 73, + 50,128, 4, 74, 51,128, 4, 75, 52,128, 4, 76, 53,128, 4, 77, + 54,128, 4, 78, 55,128, 4, 79, 56,128, 4,145, 57,128, 4, 82, + 49, 4, 40,170, 40,232, 40,237, 41, 7, 48, 10, 40,192, 40,196, + 40,200, 40,204, 40,208, 40,212, 40,216, 40,220, 40,224, 40,228, + 48,128, 4, 83, 49,128, 4, 84, 50,128, 4, 85, 51,128, 4, 86, + 52,128, 4, 87, 53,128, 4, 88, 54,128, 4, 89, 55,128, 4, 90, + 56,128, 4, 91, 57,128, 4, 92,177, 48,128, 4, 94, 52, 4, 40, + 247, 40,251, 40,255, 41, 3, 53,128, 4, 15, 54,128, 4, 98, 55, + 128, 4,114, 56,128, 4,116, 57, 5, 41, 19, 41, 23, 41, 27, 41, + 31, 41, 35, 50,128,246,198, 51,128, 4, 95, 52,128, 4, 99, 53, + 128, 4,115, 54,128, 4,117, 56, 2, 41, 45, 41, 59, 51, 2, 41, + 51, 41, 55, 49,128,246,199, 50,128,246,200,180, 54,128, 4,217, + 178,185, 57,128, 32, 14,179, 48, 2, 41, 77, 41, 81, 48,128, 32, + 15, 49,128, 32, 13,181, 55, 7, 41,102, 41,172, 42,237, 43, 58, + 44, 15, 44,108, 44,179, 51, 2, 41,108, 41,122, 56, 2, 41,114, + 41,118, 49,128, 6,106, 56,128, 6, 12, 57, 8, 41,140, 41,144, + 41,148, 41,152, 41,156, 41,160, 41,164, 41,168, 50,128, 6, 96, + 51,128, 6, 97, 52,128, 6, 98, 53,128, 6, 99, 54,128, 6,100, + 55,128, 6,101, 56,128, 6,102, 57,128, 6,103, 52, 7, 41,188, + 41,220, 42, 26, 42, 88, 42,120, 42,176, 42,232, 48, 5, 41,200, + 41,204, 41,208, 41,212, 41,216, 48,128, 6,104, 49,128, 6,105, + 51,128, 6, 27, 55,128, 6, 31, 57,128, 6, 33, 49, 10, 41,242, + 41,246, 41,250, 41,254, 42, 2, 42, 6, 42, 10, 42, 14, 42, 18, + 42, 22, 48,128, 6, 34, 49,128, 6, 35, 50,128, 6, 36, 51,128, + 6, 37, 52,128, 6, 38, 53,128, 6, 39, 54,128, 6, 40, 55,128, + 6, 41, 56,128, 6, 42, 57,128, 6, 43, 50, 10, 42, 48, 42, 52, + 42, 56, 42, 60, 42, 64, 42, 68, 42, 72, 42, 76, 42, 80, 42, 84, + 48,128, 6, 44, 49,128, 6, 45, 50,128, 6, 46, 51,128, 6, 47, + 52,128, 6, 48, 53,128, 6, 49, 54,128, 6, 50, 55,128, 6, 51, + 56,128, 6, 52, 57,128, 6, 53, 51, 5, 42,100, 42,104, 42,108, + 42,112, 42,116, 48,128, 6, 54, 49,128, 6, 55, 50,128, 6, 56, + 51,128, 6, 57, 52,128, 6, 58, 52, 9, 42,140, 42,144, 42,148, + 42,152, 42,156, 42,160, 42,164, 42,168, 42,172, 48,128, 6, 64, + 49,128, 6, 65, 50,128, 6, 66, 51,128, 6, 67, 52,128, 6, 68, + 53,128, 6, 69, 54,128, 6, 70, 56,128, 6, 72, 57,128, 6, 73, + 53, 9, 42,196, 42,200, 42,204, 42,208, 42,212, 42,216, 42,220, + 42,224, 42,228, 48,128, 6, 74, 49,128, 6, 75, 50,128, 6, 76, + 51,128, 6, 77, 52,128, 6, 78, 53,128, 6, 79, 54,128, 6, 80, + 55,128, 6, 81, 56,128, 6, 82,183, 48,128, 6, 71, 53, 3, 42, + 245, 43, 21, 43, 53, 48, 5, 43, 1, 43, 5, 43, 9, 43, 13, 43, + 17, 53,128, 6,164, 54,128, 6,126, 55,128, 6,134, 56,128, 6, + 152, 57,128, 6,175, 49, 5, 43, 33, 43, 37, 43, 41, 43, 45, 43, + 49, 49,128, 6,121, 50,128, 6,136, 51,128, 6,145, 52,128, 6, + 186, 57,128, 6,210,179, 52,128, 6,213, 54, 7, 43, 74, 43, 79, + 43, 84, 43, 89, 43,127, 43,189, 43,251,179, 54,128, 32,170,180, + 53,128, 5,190,181, 56,128, 5,195, 54, 6, 43,103, 43,107, 43, + 111, 43,115, 43,119, 43,123, 52,128, 5,208, 53,128, 5,209, 54, + 128, 5,210, 55,128, 5,211, 56,128, 5,212, 57,128, 5,213, 55, + 10, 43,149, 43,153, 43,157, 43,161, 43,165, 43,169, 43,173, 43, + 177, 43,181, 43,185, 48,128, 5,214, 49,128, 5,215, 50,128, 5, + 216, 51,128, 5,217, 52,128, 5,218, 53,128, 5,219, 54,128, 5, + 220, 55,128, 5,221, 56,128, 5,222, 57,128, 5,223, 56, 10, 43, + 211, 43,215, 43,219, 43,223, 43,227, 43,231, 43,235, 43,239, 43, + 243, 43,247, 48,128, 5,224, 49,128, 5,225, 50,128, 5,226, 51, + 128, 5,227, 52,128, 5,228, 53,128, 5,229, 54,128, 5,230, 55, + 128, 5,231, 56,128, 5,232, 57,128, 5,233, 57, 3, 44, 3, 44, + 7, 44, 11, 48,128, 5,234, 52,128,251, 42, 53,128,251, 43, 55, + 4, 44, 25, 44, 39, 44, 59, 44, 64, 48, 2, 44, 31, 44, 35, 48, + 128,251, 75, 53,128,251, 31, 49, 3, 44, 47, 44, 51, 44, 55, 54, + 128, 5,240, 55,128, 5,241, 56,128, 5,242,178, 51,128,251, 53, + 57, 7, 44, 80, 44, 84, 44, 88, 44, 92, 44, 96, 44,100, 44,104, + 51,128, 5,180, 52,128, 5,181, 53,128, 5,182, 54,128, 5,187, + 55,128, 5,184, 56,128, 5,183, 57,128, 5,176, 56, 3, 44,116, + 44,160, 44,165, 48, 7, 44,132, 44,136, 44,140, 44,144, 44,148, + 44,152, 44,156, 48,128, 5,178, 49,128, 5,177, 50,128, 5,179, + 51,128, 5,194, 52,128, 5,193, 54,128, 5,185, 55,128, 5,188, + 179, 57,128, 5,189, 52, 2, 44,171, 44,175, 49,128, 5,191, 50, + 128, 5,192,185,178, 57,128, 2,188, 54, 3, 44,193, 44,252, 45, + 3, 49, 4, 44,203, 44,219, 44,225, 44,246, 50, 2, 44,209, 44, + 214,180, 56,128, 33, 5,184, 57,128, 33, 19,179,181, 50,128, 33, + 22,181, 55, 3, 44,234, 44,238, 44,242, 51,128, 32, 44, 52,128, + 32, 45, 53,128, 32, 46,182,182, 52,128, 32, 12,179,177,182, 55, + 128, 6,109,180,185,179, 55,128, 2,189,103, 2, 45, 16, 45, 23, + 242,225,246,101,128, 0,224,117, 2, 45, 29, 45, 38,234,225,242, + 225,244,105,128, 10,133,242,237,245,235,232,105,128, 10, 5,104, + 2, 45, 53, 45, 63,233,242,225,231,225,238, 97,128, 48, 66,239, + 239,235,225,226,239,246,101,128, 30,163,105, 7, 45, 90, 45,115, + 45,122, 45,134, 45,159, 45,175, 45,255, 98, 2, 45, 96, 45,105, + 229,238,231,225,236,105,128, 9,144,239,240,239,237,239,230,111, + 128, 49, 30,228,229,246, 97,128, 9, 16,229,227,249,242,233,236, + 236,233, 99,128, 4,213,231,117, 2, 45,141, 45,150,234,225,242, + 225,244,105,128, 10,144,242,237,245,235,232,105,128, 10, 16,237, + 225,244,242,225,231,245,242,237,245,235,232,105,128, 10, 72,110, + 5, 45,187, 45,196, 45,210, 45,226, 45,241,225,242,225,226,233, + 99,128, 6, 57,230,233,238,225,236,225,242,225,226,233, 99,128, + 254,202,233,238,233,244,233,225,236,225,242,225,226,233, 99,128, + 254,203,237,229,228,233,225,236,225,242,225,226,233, 99,128,254, + 204,246,229,242,244,229,228,226,242,229,246,101,128, 2, 3,246, + 239,247,229,236,243,233,231,110, 3, 46, 15, 46, 25, 46, 32,226, + 229,238,231,225,236,105,128, 9,200,228,229,246, 97,128, 9, 72, + 231,245,234,225,242,225,244,105,128, 10,200,107, 2, 46, 49, 46, + 73,225,244,225,235,225,238, 97,129, 48,162, 46, 61,232,225,236, + 230,247,233,228,244,104,128,255,113,239,242,229,225,110,128, 49, + 79,108, 3, 46, 89, 47,145, 47,154,101, 2, 46, 95, 47,140,102, + 136, 5,208, 46,115, 46,124, 46,139, 46,153, 46,242, 47, 0, 47, + 111, 47,125,225,242,225,226,233, 99,128, 6, 39,228,225,231,229, + 243,232,232,229,226,242,229,119,128,251, 48,230,233,238,225,236, + 225,242,225,226,233, 99,128,254,142,104, 2, 46,159, 46,234,225, + 237,250, 97, 2, 46,168, 46,201,225,226,239,246,101, 2, 46,178, + 46,187,225,242,225,226,233, 99,128, 6, 35,230,233,238,225,236, + 225,242,225,226,233, 99,128,254,132,226,229,236,239,119, 2, 46, + 211, 46,220,225,242,225,226,233, 99,128, 6, 37,230,233,238,225, + 236,225,242,225,226,233, 99,128,254,136,229,226,242,229,119,128, + 5,208,236,225,237,229,228,232,229,226,242,229,119,128,251, 79, + 237, 97, 2, 47, 7, 47, 43,228,228,225,225,226,239,246,101, 2, + 47, 20, 47, 29,225,242,225,226,233, 99,128, 6, 34,230,233,238, + 225,236,225,242,225,226,233, 99,128,254,130,235,243,245,242, 97, + 4, 47, 57, 47, 66, 47, 80, 47, 96,225,242,225,226,233, 99,128, + 6, 73,230,233,238,225,236,225,242,225,226,233, 99,128,254,240, + 233,238,233,244,233,225,236,225,242,225,226,233, 99,128,254,243, + 237,229,228,233,225,236,225,242,225,226,233, 99,128,254,244,240, + 225,244,225,232,232,229,226,242,229,119,128,251, 46,241,225,237, + 225,244,243,232,229,226,242,229,119,128,251, 47,240,104,128, 33, + 53,236,229,241,245,225,108,128, 34, 76,240,232, 97,129, 3,177, + 47,162,244,239,238,239,115,128, 3,172,109, 4, 47,180, 47,188, + 47,199, 47,233,225,227,242,239,110,128, 1, 1,239,238,239,243, + 240,225,227,101,128,255, 65,240,229,242,243,225,238,100,130, 0, + 38, 47,213, 47,225,237,239,238,239,243,240,225,227,101,128,255, + 6,243,237,225,236,108,128,247, 38,243,241,245,225,242,101,128, + 51,194,110, 4, 47,252, 48, 7, 48,129, 48,139,226,239,240,239, + 237,239,230,111,128, 49, 34,103, 4, 48, 17, 48, 28, 48, 42, 48, + 121,226,239,240,239,237,239,230,111,128, 49, 36,235,232,225,238, + 235,232,245,244,232,225,105,128, 14, 90,236,101,131, 34, 32, 48, + 53, 48,106, 48,113,226,242,225,227,235,229,116, 2, 48, 65, 48, + 85,236,229,230,116,129, 48, 8, 48, 74,246,229,242,244,233,227, + 225,108,128,254, 63,242,233,231,232,116,129, 48, 9, 48, 95,246, + 229,242,244,233,227,225,108,128,254, 64,236,229,230,116,128, 35, + 41,242,233,231,232,116,128, 35, 42,243,244,242,239,109,128, 33, + 43,239,244,229,236,229,233, 97,128, 3,135,117, 2, 48,145, 48, + 157,228,225,244,244,225,228,229,246, 97,128, 9, 82,243,246,225, + 242, 97, 3, 48,169, 48,179, 48,186,226,229,238,231,225,236,105, + 128, 9,130,228,229,246, 97,128, 9, 2,231,245,234,225,242,225, + 244,105,128, 10,130,239,231,239,238,229,107,128, 1, 5,112, 3, + 48,214, 48,238, 49, 12, 97, 2, 48,220, 48,232,225,244,239,243, + 241,245,225,242,101,128, 51, 0,242,229,110,128, 36,156,239,243, + 244,242,239,240,232,101, 2, 48,251, 49, 6,225,242,237,229,238, + 233,225,110,128, 5, 90,237,239,100,128, 2,188,112, 2, 49, 18, + 49, 23,236,101,128,248,255,242,111, 2, 49, 30, 49, 38,225,227, + 232,229,115,128, 34, 80,120, 2, 49, 44, 49, 64,229,241,245,225, + 108,129, 34, 72, 49, 54,239,242,233,237,225,231,101,128, 34, 82, + 233,237,225,244,229,236,249,229,241,245,225,108,128, 34, 69,114, + 4, 49, 89, 49,116, 49,120, 49,165,225,229, 97, 2, 49, 97, 49, + 107,229,235,239,242,229,225,110,128, 49,142,235,239,242,229,225, + 110,128, 49,141, 99,128, 35, 18,105, 2, 49,126, 49,140,231,232, + 244,232,225,236,230,242,233,238,103,128, 30,154,238,103,130, 0, + 229, 49,149, 49,157,225,227,245,244,101,128, 1,251,226,229,236, + 239,119,128, 30, 1,242,239,119, 8, 49,185, 49,192, 50, 65, 50, + 131, 50,181, 50,236, 51, 3, 51, 78,226,239,244,104,128, 33,148, + 100, 3, 49,200, 49,239, 50, 30,225,243,104, 4, 49,212, 49,219, + 49,226, 49,234,228,239,247,110,128, 33,227,236,229,230,116,128, + 33,224,242,233,231,232,116,128, 33,226,245,112,128, 33,225,226, + 108, 5, 49,252, 50, 3, 50, 10, 50, 17, 50, 25,226,239,244,104, + 128, 33,212,228,239,247,110,128, 33,211,236,229,230,116,128, 33, + 208,242,233,231,232,116,128, 33,210,245,112,128, 33,209,239,247, + 110,131, 33,147, 50, 42, 50, 49, 50, 57,236,229,230,116,128, 33, + 153,242,233,231,232,116,128, 33,152,247,232,233,244,101,128, 33, + 233,104, 2, 50, 71, 50,122,229,225,100, 4, 50, 83, 50, 93, 50, + 103, 50,114,228,239,247,238,237,239,100,128, 2,197,236,229,230, + 244,237,239,100,128, 2,194,242,233,231,232,244,237,239,100,128, + 2,195,245,240,237,239,100,128, 2,196,239,242,233,250,229,120, + 128,248,231,236,229,230,116,131, 33,144, 50,144, 50,161, 50,173, + 228,226,108,129, 33,208, 50,152,243,244,242,239,235,101,128, 33, + 205,239,246,229,242,242,233,231,232,116,128, 33,198,247,232,233, + 244,101,128, 33,230,242,233,231,232,116,132, 33,146, 50,197, 50, + 209, 50,217, 50,228,228,226,236,243,244,242,239,235,101,128, 33, + 207,232,229,225,246,121,128, 39,158,239,246,229,242,236,229,230, + 116,128, 33,196,247,232,233,244,101,128, 33,232,244,225, 98, 2, + 50,244, 50,251,236,229,230,116,128, 33,228,242,233,231,232,116, + 128, 33,229,245,112,132, 33,145, 51, 16, 51, 44, 51, 62, 51, 70, + 100, 2, 51, 22, 51, 34,110,129, 33,149, 51, 28,226,243,101,128, + 33,168,239,247,238,226,225,243,101,128, 33,168,236,229,230,116, + 129, 33,150, 51, 53,239,230,228,239,247,110,128, 33,197,242,233, + 231,232,116,128, 33,151,247,232,233,244,101,128, 33,231,246,229, + 242,244,229,120,128,248,230,115, 5, 51, 99, 51,175, 51,220, 52, + 47, 52, 57, 99, 2, 51,105, 51,157,233,105, 2, 51,112, 51,135, + 227,233,242,227,245,109,129, 0, 94, 51,123,237,239,238,239,243, + 240,225,227,101,128,255, 62,244,233,236,228,101,129, 0,126, 51, + 145,237,239,238,239,243,240,225,227,101,128,255, 94,242,233,240, + 116,129, 2, 81, 51,166,244,245,242,238,229,100,128, 2, 82,237, + 225,236,108, 2, 51,184, 51,195,232,233,242,225,231,225,238, 97, + 128, 48, 65,235,225,244,225,235,225,238, 97,129, 48,161, 51,208, + 232,225,236,230,247,233,228,244,104,128,255,103,244,229,242,233, + 115, 2, 51,230, 52, 43,107,131, 0, 42, 51,240, 52, 12, 52, 35, + 97, 2, 51,246, 52, 4,236,244,239,238,229,225,242,225,226,233, + 99,128, 6,109,242,225,226,233, 99,128, 6,109,109, 2, 52, 18, + 52, 24,225,244,104,128, 34, 23,239,238,239,243,240,225,227,101, + 128,255, 10,243,237,225,236,108,128,254, 97,109,128, 32, 66,245, + 240,229,242,233,239,114,128,246,233,249,237,240,244,239,244,233, + 227,225,236,236,249,229,241,245,225,108,128, 34, 67,116,132, 0, + 64, 52, 89, 52, 96, 52,108, 52,116,233,236,228,101,128, 0,227, + 237,239,238,239,243,240,225,227,101,128,255, 32,243,237,225,236, + 108,128,254,107,245,242,238,229,100,128, 2, 80,117, 6, 52,138, + 52,163, 52,170, 52,195, 52,215, 52,231, 98, 2, 52,144, 52,153, + 229,238,231,225,236,105,128, 9,148,239,240,239,237,239,230,111, + 128, 49, 32,228,229,246, 97,128, 9, 20,231,117, 2, 52,177, 52, + 186,234,225,242,225,244,105,128, 10,148,242,237,245,235,232,105, + 128, 10, 20,236,229,238,231,244,232,237,225,242,235,226,229,238, + 231,225,236,105,128, 9,215,237,225,244,242,225,231,245,242,237, + 245,235,232,105,128, 10, 76,246,239,247,229,236,243,233,231,110, + 3, 52,247, 53, 1, 53, 8,226,229,238,231,225,236,105,128, 9, + 204,228,229,246, 97,128, 9, 76,231,245,234,225,242,225,244,105, + 128, 10,204,246,225,231,242,225,232,225,228,229,246, 97,128, 9, + 61,121, 2, 53, 39, 53, 51,226,225,242,237,229,238,233,225,110, + 128, 5, 97,233,110,130, 5,226, 53, 60, 53, 75,225,236,244,239, + 238,229,232,229,226,242,229,119,128,251, 32,232,229,226,242,229, + 119,128, 5,226, 98,144, 0, 98, 53,120, 53,255, 54, 10, 54, 19, + 54, 44, 55, 85, 55,147, 55,220, 57,146, 57,158, 57,201, 57,209, + 57,219, 59, 89, 59,113, 59,122, 97, 7, 53,136, 53,146, 53,170, + 53,177, 53,202, 53,226, 53,237,226,229,238,231,225,236,105,128, + 9,172,227,235,243,236,225,243,104,129, 0, 92, 53,158,237,239, + 238,239,243,240,225,227,101,128,255, 60,228,229,246, 97,128, 9, + 44,231,117, 2, 53,184, 53,193,234,225,242,225,244,105,128, 10, + 172,242,237,245,235,232,105,128, 10, 44,104, 2, 53,208, 53,218, + 233,242,225,231,225,238, 97,128, 48,112,244,244,232,225,105,128, + 14, 63,235,225,244,225,235,225,238, 97,128, 48,208,114,129, 0, + 124, 53,243,237,239,238,239,243,240,225,227,101,128,255, 92,226, + 239,240,239,237,239,230,111,128, 49, 5,227,233,242,227,236,101, + 128, 36,209,228,239,116, 2, 54, 27, 54, 36,225,227,227,229,238, + 116,128, 30, 3,226,229,236,239,119,128, 30, 5,101, 6, 54, 58, + 54, 79, 54,102, 54,244, 54,255, 55, 11,225,237,229,228,243,233, + 248,244,229,229,238,244,232,238,239,244,229,115,128, 38,108, 99, + 2, 54, 85, 54, 92,225,245,243,101,128, 34, 53,249,242,233,236, + 236,233, 99,128, 4, 49,104, 5, 54,114, 54,123, 54,137, 54,167, + 54,226,225,242,225,226,233, 99,128, 6, 40,230,233,238,225,236, + 225,242,225,226,233, 99,128,254,144,105, 2, 54,143, 54,158,238, + 233,244,233,225,236,225,242,225,226,233, 99,128,254,145,242,225, + 231,225,238, 97,128, 48,121,237,101, 2, 54,174, 54,187,228,233, + 225,236,225,242,225,226,233, 99,128,254,146,229,237,105, 2, 54, + 195, 54,210,238,233,244,233,225,236,225,242,225,226,233, 99,128, + 252,159,243,239,236,225,244,229,228,225,242,225,226,233, 99,128, + 252, 8,238,239,239,238,230,233,238,225,236,225,242,225,226,233, + 99,128,252,109,235,225,244,225,235,225,238, 97,128, 48,217,238, + 225,242,237,229,238,233,225,110,128, 5, 98,116,132, 5,209, 55, + 23, 55, 43, 55, 63, 55, 72, 97,129, 3,178, 55, 29,243,249,237, + 226,239,236,231,242,229,229,107,128, 3,208,228,225,231,229,243, + 104,129,251, 49, 55, 54,232,229,226,242,229,119,128,251, 49,232, + 229,226,242,229,119,128, 5,209,242,225,230,229,232,229,226,242, + 229,119,128,251, 76,104, 2, 55, 91, 55,141, 97, 3, 55, 99, 55, + 109, 55,116,226,229,238,231,225,236,105,128, 9,173,228,229,246, + 97,128, 9, 45,231,117, 2, 55,123, 55,132,234,225,242,225,244, + 105,128, 10,173,242,237,245,235,232,105,128, 10, 45,239,239,107, + 128, 2, 83,105, 5, 55,159, 55,170, 55,181, 55,195, 55,209,232, + 233,242,225,231,225,238, 97,128, 48,115,235,225,244,225,235,225, + 238, 97,128, 48,211,236,225,226,233,225,236,227,236,233,227,107, + 128, 2,152,238,228,233,231,245,242,237,245,235,232,105,128, 10, + 2,242,245,243,241,245,225,242,101,128, 51, 49,108, 3, 55,228, + 57,129, 57,140, 97, 2, 55,234, 57,124,227,107, 6, 55,249, 56, + 2, 56, 39, 56,188, 56,243, 57, 39,227,233,242,227,236,101,128, + 37,207,100, 2, 56, 8, 56, 17,233,225,237,239,238,100,128, 37, + 198,239,247,238,240,239,233,238,244,233,238,231,244,242,233,225, + 238,231,236,101,128, 37,188,108, 2, 56, 45, 56,148,101, 2, 56, + 51, 56, 87,230,244,240,239,233,238,244,233,238,103, 2, 56, 66, + 56, 76,240,239,233,238,244,229,114,128, 37,196,244,242,233,225, + 238,231,236,101,128, 37,192,238,244,233,227,245,236,225,242,226, + 242,225,227,235,229,116, 2, 56,107, 56,127,236,229,230,116,129, + 48, 16, 56,116,246,229,242,244,233,227,225,108,128,254, 59,242, + 233,231,232,116,129, 48, 17, 56,137,246,229,242,244,233,227,225, + 108,128,254, 60,239,247,229,114, 2, 56,157, 56,172,236,229,230, + 244,244,242,233,225,238,231,236,101,128, 37,227,242,233,231,232, + 244,244,242,233,225,238,231,236,101,128, 37,226,114, 2, 56,194, + 56,205,229,227,244,225,238,231,236,101,128, 37,172,233,231,232, + 244,240,239,233,238,244,233,238,103, 2, 56,222, 56,232,240,239, + 233,238,244,229,114,128, 37,186,244,242,233,225,238,231,236,101, + 128, 37,182,115, 3, 56,251, 57, 25, 57, 33,109, 2, 57, 1, 57, + 13,225,236,236,243,241,245,225,242,101,128, 37,170,233,236,233, + 238,231,230,225,227,101,128, 38, 59,241,245,225,242,101,128, 37, + 160,244,225,114,128, 38, 5,245,240,112, 2, 57, 47, 57, 85,229, + 114, 2, 57, 54, 57, 69,236,229,230,244,244,242,233,225,238,231, + 236,101,128, 37,228,242,233,231,232,244,244,242,233,225,238,231, + 236,101,128, 37,229,239,233,238,244,233,238,103, 2, 57, 97, 57, + 113,243,237,225,236,236,244,242,233,225,238,231,236,101,128, 37, + 180,244,242,233,225,238,231,236,101,128, 37,178,238,107,128, 36, + 35,233,238,229,226,229,236,239,119,128, 30, 7,239,227,107,128, + 37,136,237,239,238,239,243,240,225,227,101,128,255, 66,111, 3, + 57,166, 57,179, 57,190,226,225,233,237,225,233,244,232,225,105, + 128, 14, 26,232,233,242,225,231,225,238, 97,128, 48,124,235,225, + 244,225,235,225,238, 97,128, 48,220,240,225,242,229,110,128, 36, + 157,241,243,241,245,225,242,101,128, 51,195,114, 4, 57,229, 58, + 223, 59, 40, 59, 79,225, 99, 2, 57,236, 58,130,101, 3, 57,244, + 57,249, 58, 61,229,120,128,248,244,236,229,230,116,133, 0,123, + 58, 10, 58, 15, 58, 37, 58, 45, 58, 50,226,116,128,248,243,109, + 2, 58, 21, 58, 26,233,100,128,248,242,239,238,239,243,240,225, + 227,101,128,255, 91,243,237,225,236,108,128,254, 91,244,112,128, + 248,241,246,229,242,244,233,227,225,108,128,254, 55,242,233,231, + 232,116,133, 0,125, 58, 79, 58, 84, 58,106, 58,114, 58,119,226, + 116,128,248,254,109, 2, 58, 90, 58, 95,233,100,128,248,253,239, + 238,239,243,240,225,227,101,128,255, 93,243,237,225,236,108,128, + 254, 92,244,112,128,248,252,246,229,242,244,233,227,225,108,128, + 254, 56,235,229,116, 2, 58,138, 58,180,236,229,230,116,132, 0, + 91, 58,153, 58,158, 58,163, 58,175,226,116,128,248,240,229,120, + 128,248,239,237,239,238,239,243,240,225,227,101,128,255, 59,244, + 112,128,248,238,242,233,231,232,116,132, 0, 93, 58,196, 58,201, + 58,206, 58,218,226,116,128,248,251,229,120,128,248,250,237,239, + 238,239,243,240,225,227,101,128,255, 61,244,112,128,248,249,229, + 246,101,131, 2,216, 58,235, 58,246, 58,252,226,229,236,239,247, + 227,237, 98,128, 3, 46,227,237, 98,128, 3, 6,233,238,246,229, + 242,244,229,100, 3, 59, 11, 59, 22, 59, 28,226,229,236,239,247, + 227,237, 98,128, 3, 47,227,237, 98,128, 3, 17,228,239,245,226, + 236,229,227,237, 98,128, 3, 97,233,228,231,101, 2, 59, 49, 59, + 60,226,229,236,239,247,227,237, 98,128, 3, 42,233,238,246,229, + 242,244,229,228,226,229,236,239,247,227,237, 98,128, 3, 58,239, + 235,229,238,226,225,114,128, 0,166,115, 2, 59, 95, 59,103,244, + 242,239,235,101,128, 1,128,245,240,229,242,233,239,114,128,246, + 234,244,239,240,226,225,114,128, 1,131,117, 3, 59,130, 59,141, + 59,152,232,233,242,225,231,225,238, 97,128, 48,118,235,225,244, + 225,235,225,238, 97,128, 48,214,236,108, 2, 59,159, 59,189,229, + 116,130, 32, 34, 59,168, 59,178,233,238,246,229,242,243,101,128, + 37,216,239,240,229,242,225,244,239,114,128, 34, 25,243,229,249, + 101,128, 37,206, 99,143, 0, 99, 59,230, 60,179, 60,190, 60,254, + 61, 29, 61,122, 63, 33, 64, 17, 64,117, 64,166, 67,158, 67,166, + 67,176, 67,188, 67,221, 97, 9, 59,250, 60, 5, 60, 15, 60, 22, + 60, 29, 60, 54, 60, 64, 60,116, 60,125,225,242,237,229,238,233, + 225,110,128, 5,110,226,229,238,231,225,236,105,128, 9,154,227, + 245,244,101,128, 1, 7,228,229,246, 97,128, 9, 26,231,117, 2, + 60, 36, 60, 45,234,225,242,225,244,105,128, 10,154,242,237,245, + 235,232,105,128, 10, 26,236,243,241,245,225,242,101,128, 51,136, + 238,228,242,225,226,233,238,228,117, 4, 60, 82, 60, 92, 60, 98, + 60,105,226,229,238,231,225,236,105,128, 9,129,227,237, 98,128, + 3, 16,228,229,246, 97,128, 9, 1,231,245,234,225,242,225,244, + 105,128, 10,129,240,243,236,239,227,107,128, 33,234,114, 3, 60, + 133, 60,139, 60,165,229,239,102,128, 33, 5,239,110,130, 2,199, + 60,148, 60,159,226,229,236,239,247,227,237, 98,128, 3, 44,227, + 237, 98,128, 3, 12,242,233,225,231,229,242,229,244,245,242,110, + 128, 33,181,226,239,240,239,237,239,230,111,128, 49, 24, 99, 4, + 60,200, 60,207, 60,226, 60,248,225,242,239,110,128, 1, 13,229, + 228,233,236,236, 97,129, 0,231, 60,218,225,227,245,244,101,128, + 30, 9,233,242, 99, 2, 60,234, 60,239,236,101,128, 36,210,245, + 237,230,236,229,120,128, 1, 9,245,242,108,128, 2, 85,100, 2, + 61, 4, 61, 20,239,116,129, 1, 11, 61, 11,225,227,227,229,238, + 116,128, 1, 11,243,241,245,225,242,101,128, 51,197,101, 2, 61, + 35, 61, 51,228,233,236,236, 97,129, 0,184, 61, 45,227,237, 98, + 128, 3, 39,238,116,132, 0,162, 61, 64, 61, 88, 61,100, 61,111, + 105, 2, 61, 70, 61, 78,231,242,225,228,101,128, 33, 3,238,230, + 229,242,233,239,114,128,246,223,237,239,238,239,243,240,225,227, + 101,128,255,224,239,236,228,243,244,249,236,101,128,247,162,243, + 245,240,229,242,233,239,114,128,246,224,104, 5, 61,134, 61,197, + 61,208, 62,136, 62,228, 97, 4, 61,144, 61,155, 61,165, 61,172, + 225,242,237,229,238,233,225,110,128, 5,121,226,229,238,231,225, + 236,105,128, 9,155,228,229,246, 97,128, 9, 27,231,117, 2, 61, + 179, 61,188,234,225,242,225,244,105,128, 10,155,242,237,245,235, + 232,105,128, 10, 27,226,239,240,239,237,239,230,111,128, 49, 20, + 101, 6, 61,222, 61,242, 62, 10, 62, 78, 62, 90, 62,111,225,226, + 235,232,225,243,233,225,238,227,249,242,233,236,236,233, 99,128, + 4,189, 99, 2, 61,248, 62, 0,235,237,225,242,107,128, 39, 19, + 249,242,233,236,236,233, 99,128, 4, 71,100, 2, 62, 16, 62, 60, + 229,243,227,229,238,228,229,114, 2, 62, 29, 62, 49,225,226,235, + 232,225,243,233,225,238,227,249,242,233,236,236,233, 99,128, 4, + 191,227,249,242,233,236,236,233, 99,128, 4,183,233,229,242,229, + 243,233,243,227,249,242,233,236,236,233, 99,128, 4,245,232,225, + 242,237,229,238,233,225,110,128, 5,115,235,232,225,235,225,243, + 243,233,225,238,227,249,242,233,236,236,233, 99,128, 4,204,246, + 229,242,244,233,227,225,236,243,244,242,239,235,229,227,249,242, + 233,236,236,233, 99,128, 4,185,105,129, 3,199, 62,142,229,245, + 227,104, 4, 62,155, 62,190, 62,205, 62,214, 97, 2, 62,161, 62, + 176,227,233,242,227,236,229,235,239,242,229,225,110,128, 50,119, + 240,225,242,229,238,235,239,242,229,225,110,128, 50, 23,227,233, + 242,227,236,229,235,239,242,229,225,110,128, 50,105,235,239,242, + 229,225,110,128, 49, 74,240,225,242,229,238,235,239,242,229,225, + 110,128, 50, 9,111, 2, 62,234, 63, 28,227,104, 3, 62,243, 63, + 9, 63, 19,225,110, 2, 62,250, 63, 2,231,244,232,225,105,128, + 14, 10,244,232,225,105,128, 14, 8,233,238,231,244,232,225,105, + 128, 14, 9,239,229,244,232,225,105,128, 14, 12,239,107,128, 1, + 136,105, 2, 63, 39, 63,141,229,245, 99, 5, 63, 53, 63, 88, 63, + 103, 63,112, 63,126, 97, 2, 63, 59, 63, 74,227,233,242,227,236, + 229,235,239,242,229,225,110,128, 50,118,240,225,242,229,238,235, + 239,242,229,225,110,128, 50, 22,227,233,242,227,236,229,235,239, + 242,229,225,110,128, 50,104,235,239,242,229,225,110,128, 49, 72, + 240,225,242,229,238,235,239,242,229,225,110,128, 50, 8,245,240, + 225,242,229,238,235,239,242,229,225,110,128, 50, 28,242, 99, 2, + 63,148, 63,243,236,101,132, 37,203, 63,161, 63,172, 63,177, 63, + 201,237,245,236,244,233,240,236,121,128, 34,151,239,116,128, 34, + 153,112, 2, 63,183, 63,189,236,245,115,128, 34,149,239,243,244, + 225,236,237,225,242,107,128, 48, 54,247,233,244,104, 2, 63,210, + 63,226,236,229,230,244,232,225,236,230,226,236,225,227,107,128, + 37,208,242,233,231,232,244,232,225,236,230,226,236,225,227,107, + 128, 37,209,245,237,230,236,229,120,130, 2,198, 64, 0, 64, 11, + 226,229,236,239,247,227,237, 98,128, 3, 45,227,237, 98,128, 3, + 2,108, 3, 64, 25, 64, 31, 64, 85,229,225,114,128, 35, 39,233, + 227,107, 4, 64, 43, 64, 54, 64, 63, 64, 73,225,236,246,229,239, + 236,225,114,128, 1,194,228,229,238,244,225,108,128, 1,192,236, + 225,244,229,242,225,108,128, 1,193,242,229,244,242,239,230,236, + 229,120,128, 1,195,245, 98,129, 38, 99, 64, 92,243,245,233,116, + 2, 64,101, 64,109,226,236,225,227,107,128, 38, 99,247,232,233, + 244,101,128, 38,103,109, 3, 64,125, 64,139, 64,150,227,245,226, + 229,228,243,241,245,225,242,101,128, 51,164,239,238,239,243,240, + 225,227,101,128,255, 67,243,241,245,225,242,229,228,243,241,245, + 225,242,101,128, 51,160,111, 8, 64,184, 64,195, 65, 26, 65,224, + 66,253, 67, 28, 67,135, 67,144,225,242,237,229,238,233,225,110, + 128, 5,129,236,239,110,131, 0, 58, 64,207, 64,232, 64,251,237, + 239,110, 2, 64,215, 64,223,229,244,225,242,121,128, 32,161,239, + 243,240,225,227,101,128,255, 26,115, 2, 64,238, 64,244,233,231, + 110,128, 32,161,237,225,236,108,128,254, 85,244,242,233,225,238, + 231,245,236,225,114, 2, 65, 10, 65, 20,232,225,236,230,237,239, + 100,128, 2,209,237,239,100,128, 2,208,109, 2, 65, 32, 65,217, + 237, 97,134, 0, 44, 65, 49, 65,113, 65,124, 65,136, 65,166, 65, + 189, 97, 3, 65, 57, 65, 83, 65, 91,226,239,246,101, 2, 65, 66, + 65, 72,227,237, 98,128, 3, 19,242,233,231,232,244,227,237, 98, + 128, 3, 21,227,227,229,238,116,128,246,195,114, 2, 65, 97, 65, + 104,225,226,233, 99,128, 6, 12,237,229,238,233,225,110,128, 5, + 93,233,238,230,229,242,233,239,114,128,246,225,237,239,238,239, + 243,240,225,227,101,128,255, 12,242,229,246,229,242,243,229,100, + 2, 65,149, 65,160,225,226,239,246,229,227,237, 98,128, 3, 20, + 237,239,100,128, 2,189,115, 2, 65,172, 65,179,237,225,236,108, + 128,254, 80,245,240,229,242,233,239,114,128,246,226,244,245,242, + 238,229,100, 2, 65,200, 65,211,225,226,239,246,229,227,237, 98, + 128, 3, 18,237,239,100,128, 2,187,240,225,243,115,128, 38, 60, + 110, 2, 65,230, 65,239,231,242,245,229,238,116,128, 34, 69,116, + 2, 65,245, 66, 3,239,245,242,233,238,244,229,231,242,225,108, + 128, 34, 46,242,239,108,142, 35, 3, 66, 37, 66, 43, 66, 58, 66, + 73, 66,117, 66,162, 66,176, 66,181, 66,186, 66,191, 66,197, 66, + 202, 66,243, 66,248,193,195, 75,128, 0, 6, 66, 2, 66, 49, 66, + 54,197, 76,128, 0, 7, 83,128, 0, 8, 67, 2, 66, 64, 66, 69, + 193, 78,128, 0, 24, 82,128, 0, 13, 68, 3, 66, 81, 66,107, 66, + 112, 67, 4, 66, 91, 66, 95, 66, 99, 66,103, 49,128, 0, 17, 50, + 128, 0, 18, 51,128, 0, 19, 52,128, 0, 20,197, 76,128, 0,127, + 204, 69,128, 0, 16, 69, 5, 66,129, 66,133, 66,138, 66,143, 66, + 148, 77,128, 0, 25,206, 81,128, 0, 5,207, 84,128, 0, 4,211, + 67,128, 0, 27, 84, 2, 66,154, 66,158, 66,128, 0, 23, 88,128, + 0, 3, 70, 2, 66,168, 66,172, 70,128, 0, 12, 83,128, 0, 28, + 199, 83,128, 0, 29,200, 84,128, 0, 9,204, 70,128, 0, 10,206, + 193, 75,128, 0, 21,210, 83,128, 0, 30, 83, 5, 66,214, 66,218, + 66,228, 66,233, 66,238, 73,128, 0, 15, 79,129, 0, 14, 66,224, + 84,128, 0, 2,212, 88,128, 0, 1,213, 66,128, 0, 26,217, 78, + 128, 0, 22,213, 83,128, 0, 31,214, 84,128, 0, 11,240,249,242, + 233,231,232,116,129, 0,169, 67, 9,115, 2, 67, 15, 67, 21,225, + 238,115,128,248,233,229,242,233,102,128,246,217,114, 2, 67, 34, + 67,118,238,229,242,226,242,225,227,235,229,116, 2, 67, 49, 67, + 83,236,229,230,116,130, 48, 12, 67, 60, 67, 72,232,225,236,230, + 247,233,228,244,104,128,255, 98,246,229,242,244,233,227,225,108, + 128,254, 65,242,233,231,232,116,130, 48, 13, 67, 95, 67,107,232, + 225,236,230,247,233,228,244,104,128,255, 99,246,229,242,244,233, + 227,225,108,128,254, 66,240,239,242,225,244,233,239,238,243,241, + 245,225,242,101,128, 51,127,243,241,245,225,242,101,128, 51,199, + 246,229,242,235,231,243,241,245,225,242,101,128, 51,198,240,225, + 242,229,110,128, 36,158,242,245,250,229,233,242,111,128, 32,162, + 243,244,242,229,244,227,232,229,100,128, 2,151,245,114, 2, 67, + 195, 67,213,236,121, 2, 67,202, 67,208,225,238,100,128, 34,207, + 239,114,128, 34,206,242,229,238,227,121,128, 0,164,249,114, 4, + 67,232, 67,240, 67,247, 67,255,194,242,229,246,101,128,246,209, + 198,236,229,120,128,246,210,226,242,229,246,101,128,246,212,230, + 236,229,120,128,246,213,100,146, 0,100, 68, 46, 69,184, 70,208, + 71, 12, 71,188, 72,142, 72,204, 73,133, 73,146, 73,155, 73,181, + 73,206, 73,215, 75, 26, 75, 34, 75, 45, 75, 65, 75, 93, 97, 11, + 68, 70, 68, 81, 68, 91, 68,163, 68,226, 68,237, 68,248, 69, 61, + 69,123, 69,129, 69,159,225,242,237,229,238,233,225,110,128, 5, + 100,226,229,238,231,225,236,105,128, 9,166,100, 5, 68,103, 68, + 112, 68,118, 68,132, 68,148,225,242,225,226,233, 99,128, 6, 54, + 229,246, 97,128, 9, 38,230,233,238,225,236,225,242,225,226,233, + 99,128,254,190,233,238,233,244,233,225,236,225,242,225,226,233, + 99,128,254,191,237,229,228,233,225,236,225,242,225,226,233, 99, + 128,254,192,103, 3, 68,171, 68,188, 68,202,229,243,104,129, 5, + 188, 68,179,232,229,226,242,229,119,128, 5,188,231,229,114,129, + 32, 32, 68,196,228,226,108,128, 32, 33,117, 2, 68,208, 68,217, + 234,225,242,225,244,105,128, 10,166,242,237,245,235,232,105,128, + 10, 38,232,233,242,225,231,225,238, 97,128, 48, 96,235,225,244, + 225,235,225,238, 97,128, 48,192,108, 3, 69, 0, 69, 9, 69, 47, + 225,242,225,226,233, 99,128, 6, 47,229,116,130, 5,211, 69, 18, + 69, 38,228,225,231,229,243,104,129,251, 51, 69, 29,232,229,226, + 242,229,119,128,251, 51,232,229,226,242,229,119,128, 5,211,230, + 233,238,225,236,225,242,225,226,233, 99,128,254,170,237,237, 97, + 3, 69, 71, 69, 80, 69, 92,225,242,225,226,233, 99,128, 6, 79, + 236,239,247,225,242,225,226,233, 99,128, 6, 79,244,225,238, 97, + 2, 69,101, 69,115,236,244,239,238,229,225,242,225,226,233, 99, + 128, 6, 76,242,225,226,233, 99,128, 6, 76,238,228, 97,128, 9, + 100,242,231, 97, 2, 69,137, 69,146,232,229,226,242,229,119,128, + 5,167,236,229,230,244,232,229,226,242,229,119,128, 5,167,243, + 233,225,240,238,229,245,237,225,244,225,227,249,242,233,236,236, + 233,227,227,237, 98,128, 4,133, 98, 3, 69,192, 70,189, 70,199, + 108, 9, 69,212, 69,220, 70, 77, 70, 85, 70,101, 70,112, 70,130, + 70,144, 70,155,199,242,225,246,101,128,246,211, 97, 2, 69,226, + 70, 27,238,231,236,229,226,242,225,227,235,229,116, 2, 69,242, + 70, 6,236,229,230,116,129, 48, 10, 69,251,246,229,242,244,233, + 227,225,108,128,254, 61,242,233,231,232,116,129, 48, 11, 70, 16, + 246,229,242,244,233,227,225,108,128,254, 62,114, 2, 70, 33, 70, + 54,227,232,233,238,246,229,242,244,229,228,226,229,236,239,247, + 227,237, 98,128, 3, 43,242,239,119, 2, 70, 62, 70, 69,236,229, + 230,116,128, 33,212,242,233,231,232,116,128, 33,210,228,225,238, + 228, 97,128, 9,101,231,242,225,246,101,129,246,214, 70, 95,227, + 237, 98,128, 3, 15,233,238,244,229,231,242,225,108,128, 34, 44, + 236,239,247,236,233,238,101,129, 32, 23, 70,124,227,237, 98,128, + 3, 51,239,246,229,242,236,233,238,229,227,237, 98,128, 3, 63, + 240,242,233,237,229,237,239,100,128, 2,186,246,229,242,244,233, + 227,225,108, 2, 70,168, 70,174,226,225,114,128, 32, 22,236,233, + 238,229,225,226,239,246,229,227,237, 98,128, 3, 14,239,240,239, + 237,239,230,111,128, 49, 9,243,241,245,225,242,101,128, 51,200, + 99, 4, 70,218, 70,225, 70,234, 71, 5,225,242,239,110,128, 1, + 15,229,228,233,236,236, 97,128, 30, 17,233,242, 99, 2, 70,242, + 70,247,236,101,128, 36,211,245,237,230,236,229,248,226,229,236, + 239,119,128, 30, 19,242,239,225,116,128, 1, 17,100, 4, 71, 22, + 71,103, 71,113, 71,164, 97, 4, 71, 32, 71, 42, 71, 49, 71, 74, + 226,229,238,231,225,236,105,128, 9,161,228,229,246, 97,128, 9, + 33,231,117, 2, 71, 56, 71, 65,234,225,242,225,244,105,128, 10, + 161,242,237,245,235,232,105,128, 10, 33,108, 2, 71, 80, 71, 89, + 225,242,225,226,233, 99,128, 6,136,230,233,238,225,236,225,242, + 225,226,233, 99,128,251,137,228,232,225,228,229,246, 97,128, 9, + 92,232, 97, 3, 71,122, 71,132, 71,139,226,229,238,231,225,236, + 105,128, 9,162,228,229,246, 97,128, 9, 34,231,117, 2, 71,146, + 71,155,234,225,242,225,244,105,128, 10,162,242,237,245,235,232, + 105,128, 10, 34,239,116, 2, 71,171, 71,180,225,227,227,229,238, + 116,128, 30, 11,226,229,236,239,119,128, 30, 13,101, 8, 71,206, + 72, 3, 72, 10, 72, 35, 72, 45, 72, 56, 72,101, 72,137, 99, 2, + 71,212, 71,249,233,237,225,236,243,229,240,225,242,225,244,239, + 114, 2, 71,230, 71,239,225,242,225,226,233, 99,128, 6,107,240, + 229,242,243,233,225,110,128, 6,107,249,242,233,236,236,233, 99, + 128, 4, 52,231,242,229,101,128, 0,176,232,105, 2, 72, 17, 72, + 26,232,229,226,242,229,119,128, 5,173,242,225,231,225,238, 97, + 128, 48,103,233,227,239,240,244,233, 99,128, 3,239,235,225,244, + 225,235,225,238, 97,128, 48,199,108, 2, 72, 62, 72, 85,229,244, + 101, 2, 72, 70, 72, 77,236,229,230,116,128, 35, 43,242,233,231, + 232,116,128, 35, 38,244, 97,129, 3,180, 72, 92,244,245,242,238, + 229,100,128, 1,141,238,239,237,233,238,225,244,239,242,237,233, + 238,245,243,239,238,229,238,245,237,229,242,225,244,239,242,226, + 229,238,231,225,236,105,128, 9,248,250,104,128, 2,164,104, 2, + 72,148, 72,198, 97, 3, 72,156, 72,166, 72,173,226,229,238,231, + 225,236,105,128, 9,167,228,229,246, 97,128, 9, 39,231,117, 2, + 72,180, 72,189,234,225,242,225,244,105,128, 10,167,242,237,245, + 235,232,105,128, 10, 39,239,239,107,128, 2, 87,105, 6, 72,218, + 73, 11, 73, 71, 73, 82, 73, 93, 73,103, 97, 2, 72,224, 72,246, + 236,249,244,233,235,225,244,239,238,239,115,129, 3,133, 72,240, + 227,237, 98,128, 3, 68,237,239,238,100,129, 38,102, 72,255,243, + 245,233,244,247,232,233,244,101,128, 38, 98,229,242,229,243,233, + 115,133, 0,168, 73, 30, 73, 38, 73, 49, 73, 55, 73, 63,225,227, + 245,244,101,128,246,215,226,229,236,239,247,227,237, 98,128, 3, + 36,227,237, 98,128, 3, 8,231,242,225,246,101,128,246,216,244, + 239,238,239,115,128, 3,133,232,233,242,225,231,225,238, 97,128, + 48, 98,235,225,244,225,235,225,238, 97,128, 48,194,244,244,239, + 237,225,242,107,128, 48, 3,246,105, 2, 73,110, 73,121,228,101, + 129, 0,247, 73,117,115,128, 34, 35,243,233,239,238,243,236,225, + 243,104,128, 34, 21,234,229,227,249,242,233,236,236,233, 99,128, + 4, 82,235,243,232,225,228,101,128, 37,147,108, 2, 73,161, 73, + 172,233,238,229,226,229,236,239,119,128, 30, 15,243,241,245,225, + 242,101,128, 51,151,109, 2, 73,187, 73,195,225,227,242,239,110, + 128, 1, 17,239,238,239,243,240,225,227,101,128,255, 68,238,226, + 236,239,227,107,128, 37,132,111, 10, 73,237, 73,249, 74, 3, 74, + 14, 74, 25, 74, 97, 74,102, 74,113, 74,228, 74,254,227,232,225, + 228,225,244,232,225,105,128, 14, 14,228,229,235,244,232,225,105, + 128, 14, 20,232,233,242,225,231,225,238, 97,128, 48,105,235,225, + 244,225,235,225,238, 97,128, 48,201,236,236,225,114,132, 0, 36, + 74, 40, 74, 51, 74, 63, 74, 74,233,238,230,229,242,233,239,114, + 128,246,227,237,239,238,239,243,240,225,227,101,128,255, 4,239, + 236,228,243,244,249,236,101,128,247, 36,115, 2, 74, 80, 74, 87, + 237,225,236,108,128,254,105,245,240,229,242,233,239,114,128,246, + 228,238,103,128, 32,171,242,245,243,241,245,225,242,101,128, 51, + 38,116, 6, 74,127, 74,144, 74,166, 74,177, 74,209, 74,216,225, + 227,227,229,238,116,129, 2,217, 74,138,227,237, 98,128, 3, 7, + 226,229,236,239,247, 99, 2, 74,155, 74,160,237, 98,128, 3, 35, + 239,237, 98,128, 3, 35,235,225,244,225,235,225,238, 97,128, 48, + 251,236,229,243,115, 2, 74,186, 74,190,105,128, 1, 49,106,129, + 246,190, 74,196,243,244,242,239,235,229,232,239,239,107,128, 2, + 132,237,225,244,104,128, 34,197,244,229,228,227,233,242,227,236, + 101,128, 37,204,245,226,236,229,249,239,228,240,225,244,225,104, + 129,251, 31, 74,245,232,229,226,242,229,119,128,251, 31,247,238, + 244,225,227,107, 2, 75, 9, 75, 20,226,229,236,239,247,227,237, + 98,128, 3, 30,237,239,100,128, 2,213,240,225,242,229,110,128, + 36,159,243,245,240,229,242,233,239,114,128,246,235,116, 2, 75, + 51, 75, 57,225,233,108,128, 2, 86,239,240,226,225,114,128, 1, + 140,117, 2, 75, 71, 75, 82,232,233,242,225,231,225,238, 97,128, + 48,101,235,225,244,225,235,225,238, 97,128, 48,197,122,132, 1, + 243, 75,105, 75,114, 75,133, 75,170,225,236,244,239,238,101,128, + 2,163, 99, 2, 75,120, 75,127,225,242,239,110,128, 1,198,245, + 242,108,128, 2,165,101, 2, 75,139, 75,159,225,226,235,232,225, + 243,233,225,238,227,249,242,233,236,236,233, 99,128, 4,225,227, + 249,242,233,236,236,233, 99,128, 4, 85,232,229,227,249,242,233, + 236,236,233, 99,128, 4, 95,101,151, 0,101, 75,233, 75,252, 76, + 30, 77, 4, 77, 66, 77, 99, 77,111, 77,134, 77,187, 79, 43, 79, + 101, 79,203, 80, 63, 80,198, 81, 17, 81, 48, 81,110, 81,163, 82, + 98, 82,231, 82,251, 83, 39, 83,130, 97, 2, 75,239, 75,246,227, + 245,244,101,128, 0,233,242,244,104,128, 38, 65, 98, 3, 76, 4, + 76, 13, 76, 23,229,238,231,225,236,105,128, 9,143,239,240,239, + 237,239,230,111,128, 49, 28,242,229,246,101,128, 1, 21, 99, 5, + 76, 42, 76,115, 76,129, 76,161, 76,250, 97, 2, 76, 48, 76,109, + 238,228,242, 97, 3, 76, 59, 76, 66, 76, 77,228,229,246, 97,128, + 9, 13,231,245,234,225,242,225,244,105,128, 10,141,246,239,247, + 229,236,243,233,231,110, 2, 76, 91, 76, 98,228,229,246, 97,128, + 9, 69,231,245,234,225,242,225,244,105,128, 10,197,242,239,110, + 128, 1, 27,229,228,233,236,236,225,226,242,229,246,101,128, 30, + 29,104, 2, 76,135, 76,146,225,242,237,229,238,233,225,110,128, + 5,101,249,233,247,238,225,242,237,229,238,233,225,110,128, 5, + 135,233,242, 99, 2, 76,169, 76,174,236,101,128, 36,212,245,237, + 230,236,229,120,134, 0,234, 76,195, 76,203, 76,211, 76,222, 76, + 230, 76,242,225,227,245,244,101,128, 30,191,226,229,236,239,119, + 128, 30, 25,228,239,244,226,229,236,239,119,128, 30,199,231,242, + 225,246,101,128, 30,193,232,239,239,235,225,226,239,246,101,128, + 30,195,244,233,236,228,101,128, 30,197,249,242,233,236,236,233, + 99,128, 4, 84,100, 4, 77, 14, 77, 24, 77, 30, 77, 40,226,236, + 231,242,225,246,101,128, 2, 5,229,246, 97,128, 9, 15,233,229, + 242,229,243,233,115,128, 0,235,239,116,130, 1, 23, 77, 49, 77, + 58,225,227,227,229,238,116,128, 1, 23,226,229,236,239,119,128, + 30,185,101, 2, 77, 72, 77, 83,231,245,242,237,245,235,232,105, + 128, 10, 15,237,225,244,242,225,231,245,242,237,245,235,232,105, + 128, 10, 71,230,227,249,242,233,236,236,233, 99,128, 4, 68,103, + 2, 77,117, 77,124,242,225,246,101,128, 0,232,245,234,225,242, + 225,244,105,128, 10,143,104, 4, 77,144, 77,155, 77,166, 77,176, + 225,242,237,229,238,233,225,110,128, 5,103,226,239,240,239,237, + 239,230,111,128, 49, 29,233,242,225,231,225,238, 97,128, 48, 72, + 239,239,235,225,226,239,246,101,128, 30,187,105, 4, 77,197, 77, + 208, 79, 10, 79, 25,226,239,240,239,237,239,230,111,128, 49, 31, + 231,232,116,142, 0, 56, 77,242, 77,251, 78, 5, 78, 35, 78, 42, + 78, 80, 78,105, 78,150, 78,184, 78,196, 78,207, 78,240, 78,248, + 79, 3,225,242,225,226,233, 99,128, 6,104,226,229,238,231,225, + 236,105,128, 9,238,227,233,242,227,236,101,129, 36,103, 78, 16, + 233,238,246,229,242,243,229,243,225,238,243,243,229,242,233,102, + 128, 39,145,228,229,246, 97,128, 9,110,229,229,110, 2, 78, 50, + 78, 59,227,233,242,227,236,101,128, 36,113,112, 2, 78, 65, 78, + 72,225,242,229,110,128, 36,133,229,242,233,239,100,128, 36,153, + 231,117, 2, 78, 87, 78, 96,234,225,242,225,244,105,128, 10,238, + 242,237,245,235,232,105,128, 10,110,104, 2, 78,111, 78,137, 97, + 2, 78,117, 78,128,227,235,225,242,225,226,233, 99,128, 6,104, + 238,231,250,232,239,117,128, 48, 40,238,239,244,229,226,229,225, + 237,229,100,128, 38,107,105, 2, 78,156, 78,174,228,229,239,231, + 242,225,240,232,233,227,240,225,242,229,110,128, 50, 39,238,230, + 229,242,233,239,114,128, 32,136,237,239,238,239,243,240,225,227, + 101,128,255, 24,239,236,228,243,244,249,236,101,128,247, 56,112, + 2, 78,213, 78,220,225,242,229,110,128, 36,123,229,114, 2, 78, + 227, 78,233,233,239,100,128, 36,143,243,233,225,110,128, 6,248, + 242,239,237,225,110,128, 33,119,243,245,240,229,242,233,239,114, + 128, 32,120,244,232,225,105,128, 14, 88,238,246,229,242,244,229, + 228,226,242,229,246,101,128, 2, 7,239,244,233,230,233,229,228, + 227,249,242,233,236,236,233, 99,128, 4,101,107, 2, 79, 49, 79, + 73,225,244,225,235,225,238, 97,129, 48,168, 79, 61,232,225,236, + 230,247,233,228,244,104,128,255,116,111, 2, 79, 79, 79, 94,238, + 235,225,242,231,245,242,237,245,235,232,105,128, 10,116,242,229, + 225,110,128, 49, 84,108, 3, 79,109, 79,120, 79,181,227,249,242, + 233,236,236,233, 99,128, 4, 59,101, 2, 79,126, 79,133,237,229, + 238,116,128, 34, 8,246,229,110, 3, 79,143, 79,152, 79,173,227, + 233,242,227,236,101,128, 36,106,112, 2, 79,158, 79,165,225,242, + 229,110,128, 36,126,229,242,233,239,100,128, 36,146,242,239,237, + 225,110,128, 33,122,236,233,240,243,233,115,129, 32, 38, 79,192, + 246,229,242,244,233,227,225,108,128, 34,238,109, 5, 79,215, 79, + 243, 79,254, 80, 18, 80, 29,225,227,242,239,110,130, 1, 19, 79, + 227, 79,235,225,227,245,244,101,128, 30, 23,231,242,225,246,101, + 128, 30, 21,227,249,242,233,236,236,233, 99,128, 4, 60,228,225, + 243,104,129, 32, 20, 80, 7,246,229,242,244,233,227,225,108,128, + 254, 49,239,238,239,243,240,225,227,101,128,255, 69,112, 2, 80, + 35, 80, 55,232,225,243,233,243,237,225,242,235,225,242,237,229, + 238,233,225,110,128, 5, 91,244,249,243,229,116,128, 34, 5,110, + 6, 80, 77, 80, 88, 80, 99, 80,143, 80,175, 80,190,226,239,240, + 239,237,239,230,111,128, 49, 35,227,249,242,233,236,236,233, 99, + 128, 4, 61,100, 2, 80,105, 80,124,225,243,104,129, 32, 19, 80, + 113,246,229,242,244,233,227,225,108,128,254, 50,229,243,227,229, + 238,228,229,242,227,249,242,233,236,236,233, 99,128, 4,163,103, + 130, 1, 75, 80,151, 80,162,226,239,240,239,237,239,230,111,128, + 49, 37,232,229,227,249,242,233,236,236,233, 99,128, 4,165,232, + 239,239,235,227,249,242,233,236,236,233, 99,128, 4,200,243,240, + 225,227,101,128, 32, 2,111, 3, 80,206, 80,214, 80,223,231,239, + 238,229,107,128, 1, 25,235,239,242,229,225,110,128, 49, 83,240, + 229,110,130, 2, 91, 80,233, 80,242,227,236,239,243,229,100,128, + 2,154,242,229,246,229,242,243,229,100,130, 2, 92, 81, 1, 81, + 10,227,236,239,243,229,100,128, 2, 94,232,239,239,107,128, 2, + 93,112, 2, 81, 23, 81, 30,225,242,229,110,128, 36,160,243,233, + 236,239,110,129, 3,181, 81, 40,244,239,238,239,115,128, 3,173, + 241,117, 2, 81, 55, 81, 99,225,108,130, 0, 61, 81, 64, 81, 76, + 237,239,238,239,243,240,225,227,101,128,255, 29,115, 2, 81, 82, + 81, 89,237,225,236,108,128,254,102,245,240,229,242,233,239,114, + 128, 32,124,233,246,225,236,229,238,227,101,128, 34, 97,114, 3, + 81,118, 81,129, 81,140,226,239,240,239,237,239,230,111,128, 49, + 38,227,249,242,233,236,236,233, 99,128, 4, 64,229,246,229,242, + 243,229,100,129, 2, 88, 81,152,227,249,242,233,236,236,233, 99, + 128, 4, 77,115, 6, 81,177, 81,188, 81,208, 82, 33, 82, 78, 82, + 88,227,249,242,233,236,236,233, 99,128, 4, 65,228,229,243,227, + 229,238,228,229,242,227,249,242,233,236,236,233, 99,128, 4,171, + 104,132, 2,131, 81,220, 81,227, 82, 2, 82, 17,227,245,242,108, + 128, 2,134,239,242,116, 2, 81,235, 81,242,228,229,246, 97,128, + 9, 14,246,239,247,229,236,243,233,231,238,228,229,246, 97,128, + 9, 70,242,229,246,229,242,243,229,228,236,239,239,112,128, 1, + 170,243,241,245,225,244,242,229,246,229,242,243,229,100,128, 2, + 133,237,225,236,108, 2, 82, 42, 82, 53,232,233,242,225,231,225, + 238, 97,128, 48, 71,235,225,244,225,235,225,238, 97,129, 48,167, + 82, 66,232,225,236,230,247,233,228,244,104,128,255,106,244,233, + 237,225,244,229,100,128, 33, 46,245,240,229,242,233,239,114,128, + 246,236,116, 5, 82,110, 82,136, 82,140, 82,157, 82,223, 97,130, + 3,183, 82,118, 82,128,242,237,229,238,233,225,110,128, 5,104, + 244,239,238,239,115,128, 3,174,104,128, 0,240,233,236,228,101, + 129, 30,189, 82,149,226,229,236,239,119,128, 30, 27,238,225,232, + 244, 97, 3, 82,169, 82,201, 82,210,230,239,245,235,104, 2, 82, + 179, 82,188,232,229,226,242,229,119,128, 5,145,236,229,230,244, + 232,229,226,242,229,119,128, 5,145,232,229,226,242,229,119,128, + 5,145,236,229,230,244,232,229,226,242,229,119,128, 5,145,245, + 242,238,229,100,128, 1,221,117, 2, 82,237, 82,246,235,239,242, + 229,225,110,128, 49, 97,242,111,128, 32,172,246,239,247,229,236, + 243,233,231,110, 3, 83, 11, 83, 21, 83, 28,226,229,238,231,225, + 236,105,128, 9,199,228,229,246, 97,128, 9, 71,231,245,234,225, + 242,225,244,105,128, 10,199,120, 2, 83, 45, 83,118,227,236,225, + 109,132, 0, 33, 83, 60, 83, 71, 83, 98, 83,110,225,242,237,229, + 238,233,225,110,128, 5, 92,100, 2, 83, 77, 83, 82,226,108,128, + 32, 60,239,247,110,129, 0,161, 83, 90,243,237,225,236,108,128, + 247,161,237,239,238,239,243,240,225,227,101,128,255, 1,243,237, + 225,236,108,128,247, 33,233,243,244,229,238,244,233,225,108,128, + 34, 3,250,104,131, 2,146, 83,141, 83,160, 83,171, 99, 2, 83, + 147, 83,154,225,242,239,110,128, 1,239,245,242,108,128, 2,147, + 242,229,246,229,242,243,229,100,128, 1,185,244,225,233,108,128, + 1,186,102,140, 0,102, 83,206, 84, 32, 84, 43, 84, 52, 84, 64, + 84,167, 84,183, 86,191, 86,204, 86,230, 88,107, 88,115, 97, 4, + 83,216, 83,223, 83,234, 83,245,228,229,246, 97,128, 9, 94,231, + 245,242,237,245,235,232,105,128, 10, 94,232,242,229,238,232,229, + 233,116,128, 33, 9,244,232, 97, 3, 83,255, 84, 8, 84, 20,225, + 242,225,226,233, 99,128, 6, 78,236,239,247,225,242,225,226,233, + 99,128, 6, 78,244,225,238,225,242,225,226,233, 99,128, 6, 75, + 226,239,240,239,237,239,230,111,128, 49, 8,227,233,242,227,236, + 101,128, 36,213,228,239,244,225,227,227,229,238,116,128, 30, 31, + 101, 3, 84, 72, 84,150, 84,160,104, 4, 84, 82, 84,105, 84,119, + 84,135,225,114, 2, 84, 89, 84, 96,225,226,233, 99,128, 6, 65, + 237,229,238,233,225,110,128, 5,134,230,233,238,225,236,225,242, + 225,226,233, 99,128,254,210,233,238,233,244,233,225,236,225,242, + 225,226,233, 99,128,254,211,237,229,228,233,225,236,225,242,225, + 226,233, 99,128,254,212,233,227,239,240,244,233, 99,128, 3,229, + 237,225,236,101,128, 38, 64,102,130,251, 0, 84,175, 84,179,105, + 128,251, 3,108,128,251, 4,105,136,251, 1, 84,203, 84,243, 84, + 254, 85, 20, 85,142, 85,159, 85,167, 85,180,230,244,229,229,110, + 2, 84,213, 84,222,227,233,242,227,236,101,128, 36,110,112, 2, + 84,228, 84,235,225,242,229,110,128, 36,130,229,242,233,239,100, + 128, 36,150,231,245,242,229,228,225,243,104,128, 32, 18,236,236, + 229,100, 2, 85, 7, 85, 13,226,239,120,128, 37,160,242,229,227, + 116,128, 37,172,238,225,108, 5, 85, 34, 85, 73, 85, 90, 85,107, + 85,123,235,225,102,130, 5,218, 85, 44, 85, 64,228,225,231,229, + 243,104,129,251, 58, 85, 55,232,229,226,242,229,119,128,251, 58, + 232,229,226,242,229,119,128, 5,218,237,229,109,129, 5,221, 85, + 81,232,229,226,242,229,119,128, 5,221,238,245,110,129, 5,223, + 85, 98,232,229,226,242,229,119,128, 5,223,240,101,129, 5,227, + 85,114,232,229,226,242,229,119,128, 5,227,244,243,225,228,105, + 129, 5,229, 85,133,232,229,226,242,229,119,128, 5,229,242,243, + 244,244,239,238,229,227,232,233,238,229,243,101,128, 2,201,243, + 232,229,249,101,128, 37,201,244,225,227,249,242,233,236,236,233, + 99,128, 4,115,246,101,142, 0, 53, 85,213, 85,222, 85,232, 86, + 6, 86, 13, 86, 23, 86, 48, 86, 75, 86,109, 86,121, 86,132, 86, + 165, 86,173, 86,184,225,242,225,226,233, 99,128, 6,101,226,229, + 238,231,225,236,105,128, 9,235,227,233,242,227,236,101,129, 36, + 100, 85,243,233,238,246,229,242,243,229,243,225,238,243,243,229, + 242,233,102,128, 39,142,228,229,246, 97,128, 9,107,229,233,231, + 232,244,232,115,128, 33, 93,231,117, 2, 86, 30, 86, 39,234,225, + 242,225,244,105,128, 10,235,242,237,245,235,232,105,128, 10,107, + 232, 97, 2, 86, 55, 86, 66,227,235,225,242,225,226,233, 99,128, + 6,101,238,231,250,232,239,117,128, 48, 37,105, 2, 86, 81, 86, + 99,228,229,239,231,242,225,240,232,233,227,240,225,242,229,110, + 128, 50, 36,238,230,229,242,233,239,114,128, 32,133,237,239,238, + 239,243,240,225,227,101,128,255, 21,239,236,228,243,244,249,236, + 101,128,247, 53,112, 2, 86,138, 86,145,225,242,229,110,128, 36, + 120,229,114, 2, 86,152, 86,158,233,239,100,128, 36,140,243,233, + 225,110,128, 6,245,242,239,237,225,110,128, 33,116,243,245,240, + 229,242,233,239,114,128, 32,117,244,232,225,105,128, 14, 85,108, + 129,251, 2, 86,197,239,242,233,110,128, 1,146,109, 2, 86,210, + 86,221,239,238,239,243,240,225,227,101,128,255, 70,243,241,245, + 225,242,101,128, 51,153,111, 4, 86,240, 87, 6, 87, 18, 87, 25, + 230, 97, 2, 86,247, 86,255,238,244,232,225,105,128, 14, 31,244, + 232,225,105,128, 14, 29,238,231,237,225,238,244,232,225,105,128, + 14, 79,242,225,236,108,128, 34, 0,245,114,142, 0, 52, 87, 58, + 87, 67, 87, 77, 87,107, 87,114, 87,139, 87,166, 87,200, 87,212, + 87,231, 87,242, 88, 19, 88, 27, 88, 38,225,242,225,226,233, 99, + 128, 6,100,226,229,238,231,225,236,105,128, 9,234,227,233,242, + 227,236,101,129, 36, 99, 87, 88,233,238,246,229,242,243,229,243, + 225,238,243,243,229,242,233,102,128, 39,141,228,229,246, 97,128, + 9,106,231,117, 2, 87,121, 87,130,234,225,242,225,244,105,128, + 10,234,242,237,245,235,232,105,128, 10,106,232, 97, 2, 87,146, + 87,157,227,235,225,242,225,226,233, 99,128, 6,100,238,231,250, + 232,239,117,128, 48, 36,105, 2, 87,172, 87,190,228,229,239,231, + 242,225,240,232,233,227,240,225,242,229,110,128, 50, 35,238,230, + 229,242,233,239,114,128, 32,132,237,239,238,239,243,240,225,227, + 101,128,255, 20,238,245,237,229,242,225,244,239,242,226,229,238, + 231,225,236,105,128, 9,247,239,236,228,243,244,249,236,101,128, + 247, 52,112, 2, 87,248, 87,255,225,242,229,110,128, 36,119,229, + 114, 2, 88, 6, 88, 12,233,239,100,128, 36,139,243,233,225,110, + 128, 6,244,242,239,237,225,110,128, 33,115,243,245,240,229,242, + 233,239,114,128, 32,116,116, 2, 88, 44, 88, 82,229,229,110, 2, + 88, 52, 88, 61,227,233,242,227,236,101,128, 36,109,112, 2, 88, + 67, 88, 74,225,242,229,110,128, 36,129,229,242,233,239,100,128, + 36,149,104, 2, 88, 88, 88, 93,225,105,128, 14, 84,244,239,238, + 229,227,232,233,238,229,243,101,128, 2,203,240,225,242,229,110, + 128, 36,161,242, 97, 2, 88,122, 88,130,227,244,233,239,110,128, + 32, 68,238, 99,128, 32,163,103,144, 0,103, 88,171, 89,117, 89, + 140, 89,201, 89,218, 90,139, 91,132, 91,217, 91,230, 92, 88, 92, + 113, 92,141, 92,163, 93,108, 93,130, 93,232, 97, 9, 88,191, 88, + 201, 88,208, 88,215, 89, 23, 89, 48, 89, 59, 89, 70, 89,104,226, + 229,238,231,225,236,105,128, 9,151,227,245,244,101,128, 1,245, + 228,229,246, 97,128, 9, 23,102, 4, 88,225, 88,234, 88,248, 89, + 8,225,242,225,226,233, 99,128, 6,175,230,233,238,225,236,225, + 242,225,226,233, 99,128,251,147,233,238,233,244,233,225,236,225, + 242,225,226,233, 99,128,251,148,237,229,228,233,225,236,225,242, + 225,226,233, 99,128,251,149,231,117, 2, 89, 30, 89, 39,234,225, + 242,225,244,105,128, 10,151,242,237,245,235,232,105,128, 10, 23, + 232,233,242,225,231,225,238, 97,128, 48, 76,235,225,244,225,235, + 225,238, 97,128, 48,172,237,237, 97,130, 3,179, 89, 80, 89, 93, + 236,225,244,233,238,243,237,225,236,108,128, 2, 99,243,245,240, + 229,242,233,239,114,128, 2,224,238,231,233,225,227,239,240,244, + 233, 99,128, 3,235, 98, 2, 89,123, 89,133,239,240,239,237,239, + 230,111,128, 49, 13,242,229,246,101,128, 1, 31, 99, 4, 89,150, + 89,157, 89,166, 89,188,225,242,239,110,128, 1,231,229,228,233, + 236,236, 97,128, 1, 35,233,242, 99, 2, 89,174, 89,179,236,101, + 128, 36,214,245,237,230,236,229,120,128, 1, 29,239,237,237,225, + 225,227,227,229,238,116,128, 1, 35,228,239,116,129, 1, 33, 89, + 209,225,227,227,229,238,116,128, 1, 33,101, 6, 89,232, 89,243, + 89,254, 90, 9, 90, 28, 90,130,227,249,242,233,236,236,233, 99, + 128, 4, 51,232,233,242,225,231,225,238, 97,128, 48, 82,235,225, + 244,225,235,225,238, 97,128, 48,178,239,237,229,244,242,233,227, + 225,236,236,249,229,241,245,225,108,128, 34, 81,114, 3, 90, 36, + 90, 85, 90, 95,229,243,104, 3, 90, 46, 90, 61, 90, 70,225,227, + 227,229,238,244,232,229,226,242,229,119,128, 5,156,232,229,226, + 242,229,119,128, 5,243,237,245,241,228,225,237,232,229,226,242, + 229,119,128, 5,157,237,225,238,228,226,236,115,128, 0,223,243, + 232,225,249,233,109, 2, 90,106, 90,121,225,227,227,229,238,244, + 232,229,226,242,229,119,128, 5,158,232,229,226,242,229,119,128, + 5,244,244,225,237,225,242,107,128, 48, 19,104, 5, 90,151, 91, + 28, 91, 91, 91,116, 91,122, 97, 4, 90,161, 90,171, 90,194, 90, + 219,226,229,238,231,225,236,105,128, 9,152,100, 2, 90,177, 90, + 188,225,242,237,229,238,233,225,110,128, 5,114,229,246, 97,128, + 9, 24,231,117, 2, 90,201, 90,210,234,225,242,225,244,105,128, + 10,152,242,237,245,235,232,105,128, 10, 24,233,110, 4, 90,230, + 90,239, 90,253, 91, 13,225,242,225,226,233, 99,128, 6, 58,230, + 233,238,225,236,225,242,225,226,233, 99,128,254,206,233,238,233, + 244,233,225,236,225,242,225,226,233, 99,128,254,207,237,229,228, + 233,225,236,225,242,225,226,233, 99,128,254,208,101, 3, 91, 36, + 91, 57, 91, 74,237,233,228,228,236,229,232,239,239,235,227,249, + 242,233,236,236,233, 99,128, 4,149,243,244,242,239,235,229,227, + 249,242,233,236,236,233, 99,128, 4,147,245,240,244,245,242,238, + 227,249,242,233,236,236,233, 99,128, 4,145,232, 97, 2, 91, 98, + 91,105,228,229,246, 97,128, 9, 90,231,245,242,237,245,235,232, + 105,128, 10, 90,239,239,107,128, 2, 96,250,243,241,245,225,242, + 101,128, 51,147,105, 3, 91,140, 91,151, 91,162,232,233,242,225, + 231,225,238, 97,128, 48, 78,235,225,244,225,235,225,238, 97,128, + 48,174,109, 2, 91,168, 91,179,225,242,237,229,238,233,225,110, + 128, 5, 99,229,108,130, 5,210, 91,188, 91,208,228,225,231,229, + 243,104,129,251, 50, 91,199,232,229,226,242,229,119,128,251, 50, + 232,229,226,242,229,119,128, 5,210,234,229,227,249,242,233,236, + 236,233, 99,128, 4, 83,236,239,244,244,225,108, 2, 91,241, 92, + 2,233,238,246,229,242,244,229,228,243,244,242,239,235,101,128, + 1,190,243,244,239,112,132, 2,148, 92, 17, 92, 28, 92, 34, 92, + 66,233,238,246,229,242,244,229,100,128, 2,150,237,239,100,128, + 2,192,242,229,246,229,242,243,229,100,130, 2,149, 92, 49, 92, + 55,237,239,100,128, 2,193,243,245,240,229,242,233,239,114,128, + 2,228,243,244,242,239,235,101,129, 2,161, 92, 77,242,229,246, + 229,242,243,229,100,128, 2,162,109, 2, 92, 94, 92,102,225,227, + 242,239,110,128, 30, 33,239,238,239,243,240,225,227,101,128,255, + 71,111, 2, 92,119, 92,130,232,233,242,225,231,225,238, 97,128, + 48, 84,235,225,244,225,235,225,238, 97,128, 48,180,240, 97, 2, + 92,148, 92,154,242,229,110,128, 36,162,243,241,245,225,242,101, + 128, 51,172,114, 2, 92,169, 93, 10, 97, 2, 92,175, 92,183,228, + 233,229,238,116,128, 34, 7,246,101,134, 0, 96, 92,200, 92,211, + 92,228, 92,235, 92,244, 93, 0,226,229,236,239,247,227,237, 98, + 128, 3, 22, 99, 2, 92,217, 92,222,237, 98,128, 3, 0,239,237, + 98,128, 3, 0,228,229,246, 97,128, 9, 83,236,239,247,237,239, + 100,128, 2,206,237,239,238,239,243,240,225,227,101,128,255, 64, + 244,239,238,229,227,237, 98,128, 3, 64,229,225,244,229,114,132, + 0, 62, 93, 26, 93, 45, 93, 57, 93,100,229,241,245,225,108,129, + 34,101, 93, 36,239,242,236,229,243,115,128, 34,219,237,239,238, + 239,243,240,225,227,101,128,255, 30,111, 2, 93, 63, 93, 89,114, + 2, 93, 69, 93, 82,229,241,245,233,246,225,236,229,238,116,128, + 34,115,236,229,243,115,128, 34,119,246,229,242,229,241,245,225, + 108,128, 34,103,243,237,225,236,108,128,254,101,115, 2, 93,114, + 93,122,227,242,233,240,116,128, 2, 97,244,242,239,235,101,128, + 1,229,117, 4, 93,140, 93,151, 93,208, 93,219,232,233,242,225, + 231,225,238, 97,128, 48, 80,233,108, 2, 93,158, 93,183,236,229, + 237,239,116, 2, 93,168, 93,175,236,229,230,116,128, 0,171,242, + 233,231,232,116,128, 0,187,243,233,238,231,108, 2, 93,193, 93, + 200,236,229,230,116,128, 32, 57,242,233,231,232,116,128, 32, 58, + 235,225,244,225,235,225,238, 97,128, 48,176,242,225,237,245,243, + 241,245,225,242,101,128, 51, 24,249,243,241,245,225,242,101,128, + 51,201,104,144, 0,104, 94, 22, 96,164, 96,199, 96,236, 97, 20, + 98,164, 98,184, 99,149, 99,161, 99,173,100,241,100,249,101, 4, + 101, 13,101, 93,101, 97, 97, 13, 94, 50, 94, 89, 94, 99, 94,129, + 94,154, 94,232, 94,244, 95, 13, 95, 28, 95, 57, 95, 70, 95,128, + 95,137, 97, 2, 94, 56, 94, 75,226,235,232,225,243,233,225,238, + 227,249,242,233,236,236,233, 99,128, 4,169,236,244,239,238,229, + 225,242,225,226,233, 99,128, 6,193,226,229,238,231,225,236,105, + 128, 9,185,228,101, 2, 94,106, 94,124,243,227,229,238,228,229, + 242,227,249,242,233,236,236,233, 99,128, 4,179,246, 97,128, 9, + 57,231,117, 2, 94,136, 94,145,234,225,242,225,244,105,128, 10, + 185,242,237,245,235,232,105,128, 10, 57,104, 4, 94,164, 94,173, + 94,187, 94,217,225,242,225,226,233, 99,128, 6, 45,230,233,238, + 225,236,225,242,225,226,233, 99,128,254,162,105, 2, 94,193, 94, + 208,238,233,244,233,225,236,225,242,225,226,233, 99,128,254,163, + 242,225,231,225,238, 97,128, 48,111,237,229,228,233,225,236,225, + 242,225,226,233, 99,128,254,164,233,244,245,243,241,245,225,242, + 101,128, 51, 42,235,225,244,225,235,225,238, 97,129, 48,207, 95, + 1,232,225,236,230,247,233,228,244,104,128,255,138,236,225,238, + 244,231,245,242,237,245,235,232,105,128, 10, 77,237,250, 97, 2, + 95, 36, 95, 45,225,242,225,226,233, 99,128, 6, 33,236,239,247, + 225,242,225,226,233, 99,128, 6, 33,238,231,245,236,230,233,236, + 236,229,114,128, 49,100,114, 2, 95, 76, 95, 92,228,243,233,231, + 238,227,249,242,233,236,236,233, 99,128, 4, 74,240,239,239,110, + 2, 95,101, 95,114,236,229,230,244,226,225,242,226,245,112,128, + 33,188,242,233,231,232,244,226,225,242,226,245,112,128, 33,192, + 243,241,245,225,242,101,128, 51,202,244,225,102, 3, 95,147, 95, + 239, 96, 74,240,225,244,225,104,134, 5,178, 95,167, 95,172, 95, + 186, 95,195, 95,210, 95,226,177, 54,128, 5,178, 50, 2, 95,178, + 95,182, 51,128, 5,178,102,128, 5,178,232,229,226,242,229,119, + 128, 5,178,238,225,242,242,239,247,232,229,226,242,229,119,128, + 5,178,241,245,225,242,244,229,242,232,229,226,242,229,119,128, + 5,178,247,233,228,229,232,229,226,242,229,119,128, 5,178,241, + 225,237,225,244,115,135, 5,179, 96, 6, 96, 11, 96, 16, 96, 21, + 96, 30, 96, 45, 96, 61,177, 98,128, 5,179,178, 56,128, 5,179, + 179, 52,128, 5,179,232,229,226,242,229,119,128, 5,179,238,225, + 242,242,239,247,232,229,226,242,229,119,128, 5,179,241,245,225, + 242,244,229,242,232,229,226,242,229,119,128, 5,179,247,233,228, + 229,232,229,226,242,229,119,128, 5,179,243,229,231,239,108,135, + 5,177, 96, 96, 96,101, 96,106, 96,111, 96,120, 96,135, 96,151, + 177, 55,128, 5,177,178, 52,128, 5,177,179, 48,128, 5,177,232, + 229,226,242,229,119,128, 5,177,238,225,242,242,239,247,232,229, + 226,242,229,119,128, 5,177,241,245,225,242,244,229,242,232,229, + 226,242,229,119,128, 5,177,247,233,228,229,232,229,226,242,229, + 119,128, 5,177, 98, 3, 96,172, 96,177, 96,187,225,114,128, 1, + 39,239,240,239,237,239,230,111,128, 49, 15,242,229,246,229,226, + 229,236,239,119,128, 30, 43, 99, 2, 96,205, 96,214,229,228,233, + 236,236, 97,128, 30, 41,233,242, 99, 2, 96,222, 96,227,236,101, + 128, 36,215,245,237,230,236,229,120,128, 1, 37,100, 2, 96,242, + 96,252,233,229,242,229,243,233,115,128, 30, 39,239,116, 2, 97, + 3, 97, 12,225,227,227,229,238,116,128, 30, 35,226,229,236,239, + 119,128, 30, 37,101,136, 5,212, 97, 40, 97, 73, 97, 93, 98, 66, + 98, 82, 98,127, 98,136, 98,149,225,242,116,129, 38,101, 97, 48, + 243,245,233,116, 2, 97, 57, 97, 65,226,236,225,227,107,128, 38, + 101,247,232,233,244,101,128, 38, 97,228,225,231,229,243,104,129, + 251, 52, 97, 84,232,229,226,242,229,119,128,251, 52,104, 6, 97, + 107, 97,135, 97,143, 97,193, 97,239, 98, 32, 97, 2, 97,113, 97, + 127,236,244,239,238,229,225,242,225,226,233, 99,128, 6,193,242, + 225,226,233, 99,128, 6, 71,229,226,242,229,119,128, 5,212,230, + 233,238,225,236, 97, 2, 97,154, 97,185,236,116, 2, 97,161, 97, + 173,239,238,229,225,242,225,226,233, 99,128,251,167,244,247,239, + 225,242,225,226,233, 99,128,254,234,242,225,226,233, 99,128,254, + 234,232,225,237,250,225,225,226,239,246,101, 2, 97,208, 97,222, + 230,233,238,225,236,225,242,225,226,233, 99,128,251,165,233,243, + 239,236,225,244,229,228,225,242,225,226,233, 99,128,251,164,105, + 2, 97,245, 98, 23,238,233,244,233,225,236, 97, 2, 98, 1, 98, + 15,236,244,239,238,229,225,242,225,226,233, 99,128,251,168,242, + 225,226,233, 99,128,254,235,242,225,231,225,238, 97,128, 48,120, + 237,229,228,233,225,236, 97, 2, 98, 44, 98, 58,236,244,239,238, + 229,225,242,225,226,233, 99,128,251,169,242,225,226,233, 99,128, + 254,236,233,243,229,233,229,242,225,243,241,245,225,242,101,128, + 51,123,107, 2, 98, 88, 98,112,225,244,225,235,225,238, 97,129, + 48,216, 98,100,232,225,236,230,247,233,228,244,104,128,255,141, + 245,244,225,225,242,245,243,241,245,225,242,101,128, 51, 54,238, + 231,232,239,239,107,128, 2,103,242,245,244,245,243,241,245,225, + 242,101,128, 51, 57,116,129, 5,215, 98,155,232,229,226,242,229, + 119,128, 5,215,232,239,239,107,129, 2,102, 98,173,243,245,240, + 229,242,233,239,114,128, 2,177,105, 4, 98,194, 99, 23, 99, 34, + 99, 59,229,245,104, 4, 98,206, 98,241, 99, 0, 99, 9, 97, 2, + 98,212, 98,227,227,233,242,227,236,229,235,239,242,229,225,110, + 128, 50,123,240,225,242,229,238,235,239,242,229,225,110,128, 50, + 27,227,233,242,227,236,229,235,239,242,229,225,110,128, 50,109, + 235,239,242,229,225,110,128, 49, 78,240,225,242,229,238,235,239, + 242,229,225,110,128, 50, 13,232,233,242,225,231,225,238, 97,128, + 48,114,235,225,244,225,235,225,238, 97,129, 48,210, 99, 47,232, + 225,236,230,247,233,228,244,104,128,255,139,242,233,113,134, 5, + 180, 99, 77, 99, 82, 99, 96, 99,105, 99,120, 99,136,177, 52,128, + 5,180, 50, 2, 99, 88, 99, 92, 49,128, 5,180,100,128, 5,180, + 232,229,226,242,229,119,128, 5,180,238,225,242,242,239,247,232, + 229,226,242,229,119,128, 5,180,241,245,225,242,244,229,242,232, + 229,226,242,229,119,128, 5,180,247,233,228,229,232,229,226,242, + 229,119,128, 5,180,236,233,238,229,226,229,236,239,119,128, 30, + 150,237,239,238,239,243,240,225,227,101,128,255, 72,111, 9, 99, + 193, 99,204, 99,228, 99,253,100, 85,100, 98,100,184,100,224,100, + 235,225,242,237,229,238,233,225,110,128, 5,112,232,105, 2, 99, + 211, 99,219,240,244,232,225,105,128, 14, 43,242,225,231,225,238, + 97,128, 48,123,235,225,244,225,235,225,238, 97,129, 48,219, 99, + 241,232,225,236,230,247,233,228,244,104,128,255,142,236,225,109, + 135, 5,185,100, 17,100, 22,100, 27,100, 32,100, 41,100, 56,100, + 72,177, 57,128, 5,185,178, 54,128, 5,185,179, 50,128, 5,185, + 232,229,226,242,229,119,128, 5,185,238,225,242,242,239,247,232, + 229,226,242,229,119,128, 5,185,241,245,225,242,244,229,242,232, + 229,226,242,229,119,128, 5,185,247,233,228,229,232,229,226,242, + 229,119,128, 5,185,238,239,235,232,245,235,244,232,225,105,128, + 14, 46,111, 2,100,104,100,174,107, 4,100,114,100,126,100,132, + 100,154,225,226,239,246,229,227,239,237, 98,128, 3, 9,227,237, + 98,128, 3, 9,240,225,236,225,244,225,236,233,250,229,228,226, + 229,236,239,247,227,237, 98,128, 3, 33,242,229,244,242,239,230, + 236,229,248,226,229,236,239,247,227,237, 98,128, 3, 34,238,243, + 241,245,225,242,101,128, 51, 66,114, 2,100,190,100,217,105, 2, + 100,196,100,205,227,239,240,244,233, 99,128, 3,233,250,239,238, + 244,225,236,226,225,114,128, 32, 21,238,227,237, 98,128, 3, 27, + 244,243,240,242,233,238,231,115,128, 38,104,245,243,101,128, 35, + 2,240,225,242,229,110,128, 36,163,243,245,240,229,242,233,239, + 114,128, 2,176,244,245,242,238,229,100,128, 2,101,117, 4,101, + 23,101, 34,101, 47,101, 72,232,233,242,225,231,225,238, 97,128, + 48,117,233,233,244,239,243,241,245,225,242,101,128, 51, 51,235, + 225,244,225,235,225,238, 97,129, 48,213,101, 60,232,225,236,230, + 247,233,228,244,104,128,255,140,238,231,225,242,245,237,236,225, + 245,116,129, 2,221,101, 87,227,237, 98,128, 3, 11,118,128, 1, + 149,249,240,232,229,110,132, 0, 45,101,113,101,124,101,136,101, + 159,233,238,230,229,242,233,239,114,128,246,229,237,239,238,239, + 243,240,225,227,101,128,255, 13,115, 2,101,142,101,149,237,225, + 236,108,128,254, 99,245,240,229,242,233,239,114,128,246,230,244, + 247,111,128, 32, 16,105,149, 0,105,101,211,101,234,102, 12,102, + 59,105,197,106, 61,106, 98,106,125,107, 31,107, 35,107, 73,107, + 95,107,179,108, 88,108,163,108,171,108,184,109, 15,109, 72,109, + 100,109,144,225, 99, 2,101,218,101,224,245,244,101,128, 0,237, + 249,242,233,236,236,233, 99,128, 4, 79, 98, 3,101,242,101,251, + 102, 5,229,238,231,225,236,105,128, 9,135,239,240,239,237,239, + 230,111,128, 49, 39,242,229,246,101,128, 1, 45, 99, 3,102, 20, + 102, 27,102, 49,225,242,239,110,128, 1,208,233,242, 99, 2,102, + 35,102, 40,236,101,128, 36,216,245,237,230,236,229,120,128, 0, + 238,249,242,233,236,236,233, 99,128, 4, 86,100, 4,102, 69,102, + 79,105,154,105,187,226,236,231,242,225,246,101,128, 2, 9,101, + 2,102, 85,105,149,239,231,242,225,240,104, 7,102,106,102,120, + 102,133,105, 62,105, 93,105,106,105,118,229,225,242,244,232,227, + 233,242,227,236,101,128, 50,143,230,233,242,229,227,233,242,227, + 236,101,128, 50,139,233, 99, 14,102,164,102,180,103, 23,103, 77, + 103,143,103,172,103,188,103,245,104, 38,104, 50,104, 77,104,144, + 105, 26,105, 55,225,236,236,233,225,238,227,229,240,225,242,229, + 110,128, 50, 63, 99, 4,102,190,102,201,102,215,102,222,225,236, + 236,240,225,242,229,110,128, 50, 58,229,238,244,242,229,227,233, + 242,227,236,101,128, 50,165,236,239,243,101,128, 48, 6,111, 3, + 102,230,102,245,103, 9,237,237, 97,129, 48, 1,102,238,236,229, + 230,116,128,255,100,238,231,242,225,244,245,236,225,244,233,239, + 238,240,225,242,229,110,128, 50, 55,242,242,229,227,244,227,233, + 242,227,236,101,128, 50,163,101, 3,103, 31,103, 43,103, 60,225, + 242,244,232,240,225,242,229,110,128, 50, 47,238,244,229,242,240, + 242,233,243,229,240,225,242,229,110,128, 50, 61,248,227,229,236, + 236,229,238,244,227,233,242,227,236,101,128, 50,157,102, 2,103, + 83,103, 98,229,243,244,233,246,225,236,240,225,242,229,110,128, + 50, 64,105, 2,103,104,103,133,238,225,238,227,233,225,108, 2, + 103,116,103,125,227,233,242,227,236,101,128, 50,150,240,225,242, + 229,110,128, 50, 54,242,229,240,225,242,229,110,128, 50, 43,104, + 2,103,149,103,160,225,246,229,240,225,242,229,110,128, 50, 50, + 233,231,232,227,233,242,227,236,101,128, 50,164,233,244,229,242, + 225,244,233,239,238,237,225,242,107,128, 48, 5,108, 3,103,196, + 103,222,103,234,225,226,239,114, 2,103,205,103,214,227,233,242, + 227,236,101,128, 50,152,240,225,242,229,110,128, 50, 56,229,230, + 244,227,233,242,227,236,101,128, 50,167,239,247,227,233,242,227, + 236,101,128, 50,166,109, 2,103,251,104, 27,101, 2,104, 1,104, + 16,228,233,227,233,238,229,227,233,242,227,236,101,128, 50,169, + 244,225,236,240,225,242,229,110,128, 50, 46,239,239,238,240,225, + 242,229,110,128, 50, 42,238,225,237,229,240,225,242,229,110,128, + 50, 52,112, 2,104, 56,104, 64,229,242,233,239,100,128, 48, 2, + 242,233,238,244,227,233,242,227,236,101,128, 50,158,114, 2,104, + 83,104,131,101, 3,104, 91,104,102,104,117,225,227,232,240,225, + 242,229,110,128, 50, 67,240,242,229,243,229,238,244,240,225,242, + 229,110,128, 50, 57,243,239,245,242,227,229,240,225,242,229,110, + 128, 50, 62,233,231,232,244,227,233,242,227,236,101,128, 50,168, + 115, 5,104,156,104,185,104,199,104,224,104,252,101, 2,104,162, + 104,175,227,242,229,244,227,233,242,227,236,101,128, 50,153,236, + 230,240,225,242,229,110,128, 50, 66,239,227,233,229,244,249,240, + 225,242,229,110,128, 50, 51,112, 2,104,205,104,211,225,227,101, + 128, 48, 0,229,227,233,225,236,240,225,242,229,110,128, 50, 53, + 116, 2,104,230,104,241,239,227,235,240,225,242,229,110,128, 50, + 49,245,228,249,240,225,242,229,110,128, 50, 59,117, 2,105, 2, + 105, 11,238,240,225,242,229,110,128, 50, 48,240,229,242,246,233, + 243,229,240,225,242,229,110,128, 50, 60,119, 2,105, 32,105, 44, + 225,244,229,242,240,225,242,229,110,128, 50, 44,239,239,228,240, + 225,242,229,110,128, 50, 45,250,229,242,111,128, 48, 7,109, 2, + 105, 68,105, 81,229,244,225,236,227,233,242,227,236,101,128, 50, + 142,239,239,238,227,233,242,227,236,101,128, 50,138,238,225,237, + 229,227,233,242,227,236,101,128, 50,148,243,245,238,227,233,242, + 227,236,101,128, 50,144,119, 2,105,124,105,137,225,244,229,242, + 227,233,242,227,236,101,128, 50,140,239,239,228,227,233,242,227, + 236,101,128, 50,141,246, 97,128, 9, 7,233,229,242,229,243,233, + 115,130, 0,239,105,168,105,176,225,227,245,244,101,128, 30, 47, + 227,249,242,233,236,236,233, 99,128, 4,229,239,244,226,229,236, + 239,119,128, 30,203,101, 3,105,205,105,221,105,232,226,242,229, + 246,229,227,249,242,233,236,236,233, 99,128, 4,215,227,249,242, + 233,236,236,233, 99,128, 4, 53,245,238,103, 4,105,244,106, 23, + 106, 38,106, 47, 97, 2,105,250,106, 9,227,233,242,227,236,229, + 235,239,242,229,225,110,128, 50,117,240,225,242,229,238,235,239, + 242,229,225,110,128, 50, 21,227,233,242,227,236,229,235,239,242, + 229,225,110,128, 50,103,235,239,242,229,225,110,128, 49, 71,240, + 225,242,229,238,235,239,242,229,225,110,128, 50, 7,103, 2,106, + 67,106, 74,242,225,246,101,128, 0,236,117, 2,106, 80,106, 89, + 234,225,242,225,244,105,128, 10,135,242,237,245,235,232,105,128, + 10, 7,104, 2,106,104,106,114,233,242,225,231,225,238, 97,128, + 48, 68,239,239,235,225,226,239,246,101,128, 30,201,105, 8,106, + 143,106,153,106,164,106,171,106,196,106,212,106,227,106,243,226, + 229,238,231,225,236,105,128, 9,136,227,249,242,233,236,236,233, + 99,128, 4, 56,228,229,246, 97,128, 9, 8,231,117, 2,106,178, + 106,187,234,225,242,225,244,105,128, 10,136,242,237,245,235,232, + 105,128, 10, 8,237,225,244,242,225,231,245,242,237,245,235,232, + 105,128, 10, 64,238,246,229,242,244,229,228,226,242,229,246,101, + 128, 2, 11,243,232,239,242,244,227,249,242,233,236,236,233, 99, + 128, 4, 57,246,239,247,229,236,243,233,231,110, 3,107, 3,107, + 13,107, 20,226,229,238,231,225,236,105,128, 9,192,228,229,246, + 97,128, 9, 64,231,245,234,225,242,225,244,105,128, 10,192,106, + 128, 1, 51,107, 2,107, 41,107, 65,225,244,225,235,225,238, 97, + 129, 48,164,107, 53,232,225,236,230,247,233,228,244,104,128,255, + 114,239,242,229,225,110,128, 49, 99,108, 2,107, 79,107, 84,228, + 101,128, 2,220,245,249,232,229,226,242,229,119,128, 5,172,109, + 2,107,101,107,168, 97, 3,107,109,107,129,107,154,227,242,239, + 110,129, 1, 43,107,118,227,249,242,233,236,236,233, 99,128, 4, + 227,231,229,239,242,225,240,240,242,239,248,233,237,225,244,229, + 236,249,229,241,245,225,108,128, 34, 83,244,242,225,231,245,242, + 237,245,235,232,105,128, 10, 63,239,238,239,243,240,225,227,101, + 128,255, 73,110, 5,107,191,107,201,107,210,107,222,108, 50,227, + 242,229,237,229,238,116,128, 34, 6,230,233,238,233,244,121,128, + 34, 30,233,225,242,237,229,238,233,225,110,128, 5,107,116, 2, + 107,228,108, 40,101, 2,107,234,108, 29,231,242,225,108,131, 34, + 43,107,247,108, 9,108, 14, 98, 2,107,253,108, 5,239,244,244, + 239,109,128, 35, 33,116,128, 35, 33,229,120,128,248,245,116, 2, + 108, 20,108, 25,239,112,128, 35, 32,112,128, 35, 32,242,243,229, + 227,244,233,239,110,128, 34, 41,233,243,241,245,225,242,101,128, + 51, 5,118, 3,108, 58,108, 67,108, 76,226,245,236,236,229,116, + 128, 37,216,227,233,242,227,236,101,128, 37,217,243,237,233,236, + 229,230,225,227,101,128, 38, 59,111, 3,108, 96,108,107,108,115, + 227,249,242,233,236,236,233, 99,128, 4, 81,231,239,238,229,107, + 128, 1, 47,244, 97,131, 3,185,108,126,108,147,108,155,228,233, + 229,242,229,243,233,115,129, 3,202,108,139,244,239,238,239,115, + 128, 3,144,236,225,244,233,110,128, 2,105,244,239,238,239,115, + 128, 3,175,240,225,242,229,110,128, 36,164,242,233,231,245,242, + 237,245,235,232,105,128, 10,114,115, 4,108,194,108,239,108,253, + 109, 5,237,225,236,108, 2,108,203,108,214,232,233,242,225,231, + 225,238, 97,128, 48, 67,235,225,244,225,235,225,238, 97,129, 48, + 163,108,227,232,225,236,230,247,233,228,244,104,128,255,104,243, + 232,225,242,226,229,238,231,225,236,105,128, 9,250,244,242,239, + 235,101,128, 2,104,245,240,229,242,233,239,114,128,246,237,116, + 2,109, 21,109, 55,229,242,225,244,233,239,110, 2,109, 33,109, + 44,232,233,242,225,231,225,238, 97,128, 48,157,235,225,244,225, + 235,225,238, 97,128, 48,253,233,236,228,101,129, 1, 41,109, 64, + 226,229,236,239,119,128, 30, 45,117, 2,109, 78,109, 89,226,239, + 240,239,237,239,230,111,128, 49, 41,227,249,242,233,236,236,233, + 99,128, 4, 78,246,239,247,229,236,243,233,231,110, 3,109,116, + 109,126,109,133,226,229,238,231,225,236,105,128, 9,191,228,229, + 246, 97,128, 9, 63,231,245,234,225,242,225,244,105,128, 10,191, + 250,232,233,244,243, 97, 2,109,155,109,166,227,249,242,233,236, + 236,233, 99,128, 4,117,228,226,236,231,242,225,246,229,227,249, + 242,233,236,236,233, 99,128, 4,119,106,138, 0,106,109,209,110, + 16,110, 27,110, 77,110, 93,110,206,111, 19,111, 24,111, 36,111, + 44, 97, 4,109,219,109,230,109,240,109,247,225,242,237,229,238, + 233,225,110,128, 5,113,226,229,238,231,225,236,105,128, 9,156, + 228,229,246, 97,128, 9, 28,231,117, 2,109,254,110, 7,234,225, + 242,225,244,105,128, 10,156,242,237,245,235,232,105,128, 10, 28, + 226,239,240,239,237,239,230,111,128, 49, 16, 99, 3,110, 35,110, + 42,110, 64,225,242,239,110,128, 1,240,233,242, 99, 2,110, 50, + 110, 55,236,101,128, 36,217,245,237,230,236,229,120,128, 1, 53, + 242,239,243,243,229,228,244,225,233,108,128, 2,157,228,239,244, + 236,229,243,243,243,244,242,239,235,101,128, 2, 95,101, 3,110, + 101,110,112,110,177,227,249,242,233,236,236,233, 99,128, 4, 88, + 229,109, 4,110,123,110,132,110,146,110,162,225,242,225,226,233, + 99,128, 6, 44,230,233,238,225,236,225,242,225,226,233, 99,128, + 254,158,233,238,233,244,233,225,236,225,242,225,226,233, 99,128, + 254,159,237,229,228,233,225,236,225,242,225,226,233, 99,128,254, + 160,104, 2,110,183,110,192,225,242,225,226,233, 99,128, 6,152, + 230,233,238,225,236,225,242,225,226,233, 99,128,251,139,104, 2, + 110,212,111, 6, 97, 3,110,220,110,230,110,237,226,229,238,231, + 225,236,105,128, 9,157,228,229,246, 97,128, 9, 29,231,117, 2, + 110,244,110,253,234,225,242,225,244,105,128, 10,157,242,237,245, + 235,232,105,128, 10, 29,229,232,225,242,237,229,238,233,225,110, + 128, 5,123,233,115,128, 48, 4,237,239,238,239,243,240,225,227, + 101,128,255, 74,240,225,242,229,110,128, 36,165,243,245,240,229, + 242,233,239,114,128, 2,178,107,146, 0,107,111, 95,113,184,113, + 195,114, 1,114, 12,114,102,114,116,115,224,116,164,116,177,116, + 203,116,252,117,134,117,156,117,169,117,192,117,234,117,244, 97, + 12,111,121,111,153,111,175,111,205,112, 63,112, 88,112,118,112, + 143,112,249,113, 7,113,130,113,159, 98, 2,111,127,111,144,225, + 243,232,235,233,242,227,249,242,233,236,236,233, 99,128, 4,161, + 229,238,231,225,236,105,128, 9,149, 99, 2,111,159,111,165,245, + 244,101,128, 30, 49,249,242,233,236,236,233, 99,128, 4, 58,228, + 101, 2,111,182,111,200,243,227,229,238,228,229,242,227,249,242, + 233,236,236,233, 99,128, 4,155,246, 97,128, 9, 21,102,135, 5, + 219,111,223,111,232,111,252,112, 10,112, 19,112, 35,112, 50,225, + 242,225,226,233, 99,128, 6, 67,228,225,231,229,243,104,129,251, + 59,111,243,232,229,226,242,229,119,128,251, 59,230,233,238,225, + 236,225,242,225,226,233, 99,128,254,218,232,229,226,242,229,119, + 128, 5,219,233,238,233,244,233,225,236,225,242,225,226,233, 99, + 128,254,219,237,229,228,233,225,236,225,242,225,226,233, 99,128, + 254,220,242,225,230,229,232,229,226,242,229,119,128,251, 77,231, + 117, 2,112, 70,112, 79,234,225,242,225,244,105,128, 10,149,242, + 237,245,235,232,105,128, 10, 21,104, 2,112, 94,112,104,233,242, + 225,231,225,238, 97,128, 48, 75,239,239,235,227,249,242,233,236, + 236,233, 99,128, 4,196,235,225,244,225,235,225,238, 97,129, 48, + 171,112,131,232,225,236,230,247,233,228,244,104,128,255,118,112, + 2,112,149,112,170,240, 97,129, 3,186,112,156,243,249,237,226, + 239,236,231,242,229,229,107,128, 3,240,249,229,239,245,110, 3, + 112,182,112,196,112,230,237,233,229,245,237,235,239,242,229,225, + 110,128, 49,113,112, 2,112,202,112,217,232,233,229,245,240,232, + 235,239,242,229,225,110,128, 49,132,233,229,245,240,235,239,242, + 229,225,110,128, 49,120,243,243,225,238,231,240,233,229,245,240, + 235,239,242,229,225,110,128, 49,121,242,239,242,233,233,243,241, + 245,225,242,101,128, 51, 13,115, 5,113, 19,113, 63,113, 78,113, + 86,113,114,232,233,228,225,225,245,244,111, 2,113, 32,113, 41, + 225,242,225,226,233, 99,128, 6, 64,238,239,243,233,228,229,226, + 229,225,242,233,238,231,225,242,225,226,233, 99,128, 6, 64,237, + 225,236,236,235,225,244,225,235,225,238, 97,128, 48,245,241,245, + 225,242,101,128, 51,132,242, 97, 2,113, 93,113,102,225,242,225, + 226,233, 99,128, 6, 80,244,225,238,225,242,225,226,233, 99,128, + 6, 77,244,242,239,235,229,227,249,242,233,236,236,233, 99,128, + 4,159,244,225,232,233,242,225,240,242,239,236,239,238,231,237, + 225,242,235,232,225,236,230,247,233,228,244,104,128,255,112,246, + 229,242,244,233,227,225,236,243,244,242,239,235,229,227,249,242, + 233,236,236,233, 99,128, 4,157,226,239,240,239,237,239,230,111, + 128, 49, 14, 99, 4,113,205,113,227,113,236,113,244, 97, 2,113, + 211,113,221,236,243,241,245,225,242,101,128, 51,137,242,239,110, + 128, 1,233,229,228,233,236,236, 97,128, 1, 55,233,242,227,236, + 101,128, 36,218,239,237,237,225,225,227,227,229,238,116,128, 1, + 55,228,239,244,226,229,236,239,119,128, 30, 51,101, 4,114, 22, + 114, 49,114, 74,114, 86,104, 2,114, 28,114, 39,225,242,237,229, + 238,233,225,110,128, 5,132,233,242,225,231,225,238, 97,128, 48, + 81,235,225,244,225,235,225,238, 97,129, 48,177,114, 62,232,225, + 236,230,247,233,228,244,104,128,255,121,238,225,242,237,229,238, + 233,225,110,128, 5,111,243,237,225,236,236,235,225,244,225,235, + 225,238, 97,128, 48,246,231,242,229,229,238,236,225,238,228,233, + 99,128, 1, 56,104, 6,114,130,115, 3,115, 14,115, 39,115,126, + 115,214, 97, 5,114,142,114,152,114,163,114,170,114,195,226,229, + 238,231,225,236,105,128, 9,150,227,249,242,233,236,236,233, 99, + 128, 4, 69,228,229,246, 97,128, 9, 22,231,117, 2,114,177,114, + 186,234,225,242,225,244,105,128, 10,150,242,237,245,235,232,105, + 128, 10, 22,104, 4,114,205,114,214,114,228,114,244,225,242,225, + 226,233, 99,128, 6, 46,230,233,238,225,236,225,242,225,226,233, + 99,128,254,166,233,238,233,244,233,225,236,225,242,225,226,233, + 99,128,254,167,237,229,228,233,225,236,225,242,225,226,233, 99, + 128,254,168,229,233,227,239,240,244,233, 99,128, 3,231,232, 97, + 2,115, 21,115, 28,228,229,246, 97,128, 9, 89,231,245,242,237, + 245,235,232,105,128, 10, 89,233,229,245,235,104, 4,115, 53,115, + 88,115,103,115,112, 97, 2,115, 59,115, 74,227,233,242,227,236, + 229,235,239,242,229,225,110,128, 50,120,240,225,242,229,238,235, + 239,242,229,225,110,128, 50, 24,227,233,242,227,236,229,235,239, + 242,229,225,110,128, 50,106,235,239,242,229,225,110,128, 49, 75, + 240,225,242,229,238,235,239,242,229,225,110,128, 50, 10,111, 4, + 115,136,115,185,115,195,115,200,235,104, 4,115,147,115,156,115, + 165,115,175,225,233,244,232,225,105,128, 14, 2,239,238,244,232, + 225,105,128, 14, 5,245,225,244,244,232,225,105,128, 14, 3,247, + 225,233,244,232,225,105,128, 14, 4,237,245,244,244,232,225,105, + 128, 14, 91,239,107,128, 1,153,242,225,235,232,225,238,231,244, + 232,225,105,128, 14, 6,250,243,241,245,225,242,101,128, 51,145, + 105, 4,115,234,115,245,116, 14,116, 63,232,233,242,225,231,225, + 238, 97,128, 48, 77,235,225,244,225,235,225,238, 97,129, 48,173, + 116, 2,232,225,236,230,247,233,228,244,104,128,255,119,242,111, + 3,116, 23,116, 38,116, 54,231,245,242,225,237,245,243,241,245, + 225,242,101,128, 51, 21,237,229,229,244,239,242,245,243,241,245, + 225,242,101,128, 51, 22,243,241,245,225,242,101,128, 51, 20,249, + 229,239,107, 5,116, 78,116,113,116,128,116,137,116,151, 97, 2, + 116, 84,116, 99,227,233,242,227,236,229,235,239,242,229,225,110, + 128, 50,110,240,225,242,229,238,235,239,242,229,225,110,128, 50, + 14,227,233,242,227,236,229,235,239,242,229,225,110,128, 50, 96, + 235,239,242,229,225,110,128, 49, 49,240,225,242,229,238,235,239, + 242,229,225,110,128, 50, 0,243,233,239,243,235,239,242,229,225, + 110,128, 49, 51,234,229,227,249,242,233,236,236,233, 99,128, 4, + 92,108, 2,116,183,116,194,233,238,229,226,229,236,239,119,128, + 30, 53,243,241,245,225,242,101,128, 51,152,109, 3,116,211,116, + 225,116,236,227,245,226,229,228,243,241,245,225,242,101,128, 51, + 166,239,238,239,243,240,225,227,101,128,255, 75,243,241,245,225, + 242,229,228,243,241,245,225,242,101,128, 51,162,111, 5,117, 8, + 117, 34,117, 72,117, 84,117, 98,104, 2,117, 14,117, 24,233,242, + 225,231,225,238, 97,128, 48, 83,237,243,241,245,225,242,101,128, + 51,192,235, 97, 2,117, 41,117, 49,233,244,232,225,105,128, 14, + 1,244,225,235,225,238, 97,129, 48,179,117, 60,232,225,236,230, + 247,233,228,244,104,128,255,122,239,240,239,243,241,245,225,242, + 101,128, 51, 30,240,240,225,227,249,242,233,236,236,233, 99,128, + 4,129,114, 2,117,104,117,124,229,225,238,243,244,225,238,228, + 225,242,228,243,249,237,226,239,108,128, 50,127,239,238,233,243, + 227,237, 98,128, 3, 67,240, 97, 2,117,141,117,147,242,229,110, + 128, 36,166,243,241,245,225,242,101,128, 51,170,243,233,227,249, + 242,233,236,236,233, 99,128, 4,111,116, 2,117,175,117,184,243, + 241,245,225,242,101,128, 51,207,245,242,238,229,100,128, 2,158, + 117, 2,117,198,117,209,232,233,242,225,231,225,238, 97,128, 48, + 79,235,225,244,225,235,225,238, 97,129, 48,175,117,222,232,225, + 236,230,247,233,228,244,104,128,255,120,246,243,241,245,225,242, + 101,128, 51,184,247,243,241,245,225,242,101,128, 51,190,108,146, + 0,108,118, 38,120, 65,120, 94,120,160,120,198,121, 94,121,103, + 121,119,121,143,121,161,122, 23,122, 64,122,199,122,207,122,240, + 122,249,123, 1,123, 63, 97, 7,118, 54,118, 64,118, 71,118, 78, + 118,103,118,119,120, 53,226,229,238,231,225,236,105,128, 9,178, + 227,245,244,101,128, 1, 58,228,229,246, 97,128, 9, 50,231,117, + 2,118, 85,118, 94,234,225,242,225,244,105,128, 10,178,242,237, + 245,235,232,105,128, 10, 50,235,235,232,225,238,231,249,225,239, + 244,232,225,105,128, 14, 69,109, 10,118,141,119, 80,119, 97,119, + 135,119,149,119,168,119,184,119,204,119,224,119,247, 97, 2,118, + 147,119, 72,236,229,102, 4,118,159,118,173,119, 9,119, 26,230, + 233,238,225,236,225,242,225,226,233, 99,128,254,252,232,225,237, + 250, 97, 2,118,183,118,224,225,226,239,246,101, 2,118,193,118, + 207,230,233,238,225,236,225,242,225,226,233, 99,128,254,248,233, + 243,239,236,225,244,229,228,225,242,225,226,233, 99,128,254,247, + 226,229,236,239,119, 2,118,234,118,248,230,233,238,225,236,225, + 242,225,226,233, 99,128,254,250,233,243,239,236,225,244,229,228, + 225,242,225,226,233, 99,128,254,249,233,243,239,236,225,244,229, + 228,225,242,225,226,233, 99,128,254,251,237,225,228,228,225,225, + 226,239,246,101, 2,119, 41,119, 55,230,233,238,225,236,225,242, + 225,226,233, 99,128,254,246,233,243,239,236,225,244,229,228,225, + 242,225,226,233, 99,128,254,245,242,225,226,233, 99,128, 6, 68, + 226,228, 97,129, 3,187,119, 88,243,244,242,239,235,101,128, 1, + 155,229,100,130, 5,220,119,106,119,126,228,225,231,229,243,104, + 129,251, 60,119,117,232,229,226,242,229,119,128,251, 60,232,229, + 226,242,229,119,128, 5,220,230,233,238,225,236,225,242,225,226, + 233, 99,128,254,222,232,225,232,233,238,233,244,233,225,236,225, + 242,225,226,233, 99,128,252,202,233,238,233,244,233,225,236,225, + 242,225,226,233, 99,128,254,223,234,229,229,237,233,238,233,244, + 233,225,236,225,242,225,226,233, 99,128,252,201,235,232,225,232, + 233,238,233,244,233,225,236,225,242,225,226,233, 99,128,252,203, + 236,225,237,232,229,232,233,243,239,236,225,244,229,228,225,242, + 225,226,233, 99,128,253,242,237,101, 2,119,254,120, 11,228,233, + 225,236,225,242,225,226,233, 99,128,254,224,229,109, 2,120, 18, + 120, 37,232,225,232,233,238,233,244,233,225,236,225,242,225,226, + 233, 99,128,253,136,233,238,233,244,233,225,236,225,242,225,226, + 233, 99,128,252,204,242,231,229,227,233,242,227,236,101,128, 37, + 239, 98, 3,120, 73,120, 78,120, 84,225,114,128, 1,154,229,236, + 116,128, 2,108,239,240,239,237,239,230,111,128, 49, 12, 99, 4, + 120,104,120,111,120,120,120,147,225,242,239,110,128, 1, 62,229, + 228,233,236,236, 97,128, 1, 60,233,242, 99, 2,120,128,120,133, + 236,101,128, 36,219,245,237,230,236,229,248,226,229,236,239,119, + 128, 30, 61,239,237,237,225,225,227,227,229,238,116,128, 1, 60, + 228,239,116,130, 1, 64,120,170,120,179,225,227,227,229,238,116, + 128, 1, 64,226,229,236,239,119,129, 30, 55,120,189,237,225,227, + 242,239,110,128, 30, 57,101, 3,120,206,120,244,121, 89,230,116, + 2,120,213,120,229,225,238,231,236,229,225,226,239,246,229,227, + 237, 98,128, 3, 26,244,225,227,235,226,229,236,239,247,227,237, + 98,128, 3, 24,243,115,132, 0, 60,121, 1,121, 23,121, 35,121, + 81,229,241,245,225,108,129, 34,100,121, 11,239,242,231,242,229, + 225,244,229,114,128, 34,218,237,239,238,239,243,240,225,227,101, + 128,255, 28,111, 2,121, 41,121, 70,114, 2,121, 47,121, 60,229, + 241,245,233,246,225,236,229,238,116,128, 34,114,231,242,229,225, + 244,229,114,128, 34,118,246,229,242,229,241,245,225,108,128, 34, + 102,243,237,225,236,108,128,254,100,250,104,128, 2,110,230,226, + 236,239,227,107,128, 37,140,232,239,239,235,242,229,244,242,239, + 230,236,229,120,128, 2,109,105, 2,121,125,121,130,242, 97,128, + 32,164,247,238,225,242,237,229,238,233,225,110,128, 5,108,106, + 129, 1,201,121,149,229,227,249,242,233,236,236,233, 99,128, 4, + 89,108,132,246,192,121,173,121,197,121,208,121,217, 97, 2,121, + 179,121,186,228,229,246, 97,128, 9, 51,231,245,234,225,242,225, + 244,105,128, 10,179,233,238,229,226,229,236,239,119,128, 30, 59, + 236,225,228,229,246, 97,128, 9, 52,246,239,227,225,236,233, 99, + 3,121,231,121,241,121,248,226,229,238,231,225,236,105,128, 9, + 225,228,229,246, 97,128, 9, 97,246,239,247,229,236,243,233,231, + 110, 2,122, 6,122, 16,226,229,238,231,225,236,105,128, 9,227, + 228,229,246, 97,128, 9, 99,109, 3,122, 31,122, 44,122, 55,233, + 228,228,236,229,244,233,236,228,101,128, 2,107,239,238,239,243, + 240,225,227,101,128,255, 76,243,241,245,225,242,101,128, 51,208, + 111, 6,122, 78,122, 90,122,132,122,143,122,149,122,191,227,232, + 245,236,225,244,232,225,105,128, 14, 44,231,233,227,225,108, 3, + 122,102,122,108,122,127,225,238,100,128, 34, 39,238,239,116,129, + 0,172,122,116,242,229,246,229,242,243,229,100,128, 35, 16,239, + 114,128, 34, 40,236,233,238,231,244,232,225,105,128, 14, 37,238, + 231,115,128, 1,127,247,236,233,238,101, 2,122,159,122,182, 99, + 2,122,165,122,177,229,238,244,229,242,236,233,238,101,128,254, + 78,237, 98,128, 3, 50,228,225,243,232,229,100,128,254, 77,250, + 229,238,231,101,128, 37,202,240,225,242,229,110,128, 36,167,115, + 3,122,215,122,222,122,230,236,225,243,104,128, 1, 66,241,245, + 225,242,101,128, 33, 19,245,240,229,242,233,239,114,128,246,238, + 244,243,232,225,228,101,128, 37,145,245,244,232,225,105,128, 14, + 38,246,239,227,225,236,233, 99, 3,123, 15,123, 25,123, 32,226, + 229,238,231,225,236,105,128, 9,140,228,229,246, 97,128, 9, 12, + 246,239,247,229,236,243,233,231,110, 2,123, 46,123, 56,226,229, + 238,231,225,236,105,128, 9,226,228,229,246, 97,128, 9, 98,248, + 243,241,245,225,242,101,128, 51,211,109,144, 0,109,123,109,125, + 218,125,243,126, 14,126, 39,127, 92,127,114,128,169,128,199,128, + 248,129, 99,129,121,129,146,129,155,130,182,130,210, 97, 12,123, + 135,123,145,123,209,123,216,123,241,124, 33,125,125,125,150,125, + 155,125,169,125,181,125,186,226,229,238,231,225,236,105,128, 9, + 174, 99, 2,123,151,123,203,242,239,110,132, 0,175,123,165,123, + 176,123,182,123,191,226,229,236,239,247,227,237, 98,128, 3, 49, + 227,237, 98,128, 3, 4,236,239,247,237,239,100,128, 2,205,237, + 239,238,239,243,240,225,227,101,128,255,227,245,244,101,128, 30, + 63,228,229,246, 97,128, 9, 46,231,117, 2,123,223,123,232,234, + 225,242,225,244,105,128, 10,174,242,237,245,235,232,105,128, 10, + 46,104, 2,123,247,124, 23,225,240,225,235,104, 2,124, 1,124, + 10,232,229,226,242,229,119,128, 5,164,236,229,230,244,232,229, + 226,242,229,119,128, 5,164,233,242,225,231,225,238, 97,128, 48, + 126,105, 5,124, 45,124,114,124,177,124,207,125,113,227,232,225, + 244,244,225,247, 97, 3,124, 60,124, 91,124, 98,236,239,119, 2, + 124, 68,124, 79,236,229,230,244,244,232,225,105,128,248,149,242, + 233,231,232,244,244,232,225,105,128,248,148,244,232,225,105,128, + 14, 75,245,240,240,229,242,236,229,230,244,244,232,225,105,128, + 248,147,229,107, 3,124,123,124,154,124,161,236,239,119, 2,124, + 131,124,142,236,229,230,244,244,232,225,105,128,248,140,242,233, + 231,232,244,244,232,225,105,128,248,139,244,232,225,105,128, 14, + 72,245,240,240,229,242,236,229,230,244,244,232,225,105,128,248, + 138,232,225,238,225,235,225,116, 2,124,189,124,200,236,229,230, + 244,244,232,225,105,128,248,132,244,232,225,105,128, 14, 49,116, + 3,124,215,124,243,125, 50,225,233,235,232,117, 2,124,225,124, + 236,236,229,230,244,244,232,225,105,128,248,137,244,232,225,105, + 128, 14, 71,232,111, 3,124,252,125, 27,125, 34,236,239,119, 2, + 125, 4,125, 15,236,229,230,244,244,232,225,105,128,248,143,242, + 233,231,232,244,244,232,225,105,128,248,142,244,232,225,105,128, + 14, 73,245,240,240,229,242,236,229,230,244,244,232,225,105,128, + 248,141,242,105, 3,125, 59,125, 90,125, 97,236,239,119, 2,125, + 67,125, 78,236,229,230,244,244,232,225,105,128,248,146,242,233, + 231,232,244,244,232,225,105,128,248,145,244,232,225,105,128, 14, + 74,245,240,240,229,242,236,229,230,244,244,232,225,105,128,248, + 144,249,225,237,239,235,244,232,225,105,128, 14, 70,235,225,244, + 225,235,225,238, 97,129, 48,222,125,138,232,225,236,230,247,233, + 228,244,104,128,255,143,236,101,128, 38, 66,238,243,249,239,238, + 243,241,245,225,242,101,128, 51, 71,241,225,230,232,229,226,242, + 229,119,128, 5,190,242,115,128, 38, 66,115, 2,125,192,125,210, + 239,242,225,227,233,242,227,236,229,232,229,226,242,229,119,128, + 5,175,241,245,225,242,101,128, 51,131, 98, 2,125,224,125,234, + 239,240,239,237,239,230,111,128, 49, 7,243,241,245,225,242,101, + 128, 51,212, 99, 2,125,249,126, 1,233,242,227,236,101,128, 36, + 220,245,226,229,228,243,241,245,225,242,101,128, 51,165,228,239, + 116, 2,126, 22,126, 31,225,227,227,229,238,116,128, 30, 65,226, + 229,236,239,119,128, 30, 67,101, 7,126, 55,126,182,126,193,126, + 208,126,233,127, 14,127, 26,101, 2,126, 61,126,169,109, 4,126, + 71,126, 80,126, 94,126,110,225,242,225,226,233, 99,128, 6, 69, + 230,233,238,225,236,225,242,225,226,233, 99,128,254,226,233,238, + 233,244,233,225,236,225,242,225,226,233, 99,128,254,227,237,101, + 2,126,117,126,130,228,233,225,236,225,242,225,226,233, 99,128, + 254,228,229,237,105, 2,126,138,126,153,238,233,244,233,225,236, + 225,242,225,226,233, 99,128,252,209,243,239,236,225,244,229,228, + 225,242,225,226,233, 99,128,252, 72,244,239,242,245,243,241,245, + 225,242,101,128, 51, 77,232,233,242,225,231,225,238, 97,128, 48, + 129,233,250,233,229,242,225,243,241,245,225,242,101,128, 51,126, + 235,225,244,225,235,225,238, 97,129, 48,225,126,221,232,225,236, + 230,247,233,228,244,104,128,255,146,109,130, 5,222,126,241,127, + 5,228,225,231,229,243,104,129,251, 62,126,252,232,229,226,242, + 229,119,128,251, 62,232,229,226,242,229,119,128, 5,222,238,225, + 242,237,229,238,233,225,110,128, 5,116,242,235,232, 97, 3,127, + 37,127, 46,127, 79,232,229,226,242,229,119,128, 5,165,235,229, + 230,245,236, 97, 2,127, 57,127, 66,232,229,226,242,229,119,128, + 5,166,236,229,230,244,232,229,226,242,229,119,128, 5,166,236, + 229,230,244,232,229,226,242,229,119,128, 5,165,104, 2,127, 98, + 127,104,239,239,107,128, 2,113,250,243,241,245,225,242,101,128, + 51,146,105, 6,127,128,127,165,128, 46,128, 57,128, 82,128,139, + 228,100, 2,127,135,127,160,236,229,228,239,244,235,225,244,225, + 235,225,238,225,232,225,236,230,247,233,228,244,104,128,255,101, + 239,116,128, 0,183,229,245,109, 5,127,179,127,214,127,229,127, + 238,128, 33, 97, 2,127,185,127,200,227,233,242,227,236,229,235, + 239,242,229,225,110,128, 50,114,240,225,242,229,238,235,239,242, + 229,225,110,128, 50, 18,227,233,242,227,236,229,235,239,242,229, + 225,110,128, 50,100,235,239,242,229,225,110,128, 49, 65,112, 2, + 127,244,128, 20, 97, 2,127,250,128, 8,238,243,233,239,243,235, + 239,242,229,225,110,128, 49,112,242,229,238,235,239,242,229,225, + 110,128, 50, 4,233,229,245,240,235,239,242,229,225,110,128, 49, + 110,243,233,239,243,235,239,242,229,225,110,128, 49,111,232,233, + 242,225,231,225,238, 97,128, 48,127,235,225,244,225,235,225,238, + 97,129, 48,223,128, 70,232,225,236,230,247,233,228,244,104,128, + 255,144,238,117, 2,128, 89,128,134,115,132, 34, 18,128,101,128, + 112,128,121,128,127,226,229,236,239,247,227,237, 98,128, 3, 32, + 227,233,242,227,236,101,128, 34,150,237,239,100,128, 2,215,240, + 236,245,115,128, 34, 19,244,101,128, 32, 50,242,105, 2,128,146, + 128,160,226,225,225,242,245,243,241,245,225,242,101,128, 51, 74, + 243,241,245,225,242,101,128, 51, 73,108, 2,128,175,128,190,239, + 238,231,236,229,231,244,245,242,238,229,100,128, 2,112,243,241, + 245,225,242,101,128, 51,150,109, 3,128,207,128,221,128,232,227, + 245,226,229,228,243,241,245,225,242,101,128, 51,163,239,238,239, + 243,240,225,227,101,128,255, 77,243,241,245,225,242,229,228,243, + 241,245,225,242,101,128, 51,159,111, 5,129, 4,129, 30,129, 55, + 129, 65,129, 74,104, 2,129, 10,129, 20,233,242,225,231,225,238, + 97,128, 48,130,237,243,241,245,225,242,101,128, 51,193,235,225, + 244,225,235,225,238, 97,129, 48,226,129, 43,232,225,236,230,247, + 233,228,244,104,128,255,147,236,243,241,245,225,242,101,128, 51, + 214,237,225,244,232,225,105,128, 14, 33,246,229,242,243,243,241, + 245,225,242,101,129, 51,167,129, 89,228,243,241,245,225,242,101, + 128, 51,168,240, 97, 2,129,106,129,112,242,229,110,128, 36,168, + 243,241,245,225,242,101,128, 51,171,115, 2,129,127,129,136,243, + 241,245,225,242,101,128, 51,179,245,240,229,242,233,239,114,128, + 246,239,244,245,242,238,229,100,128, 2,111,117,141, 0,181,129, + 185,129,189,129,199,129,223,129,233,129,255,130, 10,130, 35,130, + 58,130, 68,130, 98,130,162,130,172, 49,128, 0,181,225,243,241, + 245,225,242,101,128, 51,130,227,104, 2,129,206,129,216,231,242, + 229,225,244,229,114,128, 34,107,236,229,243,115,128, 34,106,230, + 243,241,245,225,242,101,128, 51,140,103, 2,129,239,129,246,242, + 229,229,107,128, 3,188,243,241,245,225,242,101,128, 51,141,232, + 233,242,225,231,225,238, 97,128, 48,128,235,225,244,225,235,225, + 238, 97,129, 48,224,130, 23,232,225,236,230,247,233,228,244,104, + 128,255,145,108, 2,130, 41,130, 50,243,241,245,225,242,101,128, + 51,149,244,233,240,236,121,128, 0,215,237,243,241,245,225,242, + 101,128, 51,155,238,225,104, 2,130, 76,130, 85,232,229,226,242, + 229,119,128, 5,163,236,229,230,244,232,229,226,242,229,119,128, + 5,163,115, 2,130,104,130,153,233, 99, 3,130,113,130,130,130, + 141,225,236,238,239,244,101,129, 38,106,130,124,228,226,108,128, + 38,107,230,236,225,244,243,233,231,110,128, 38,109,243,232,225, + 242,240,243,233,231,110,128, 38,111,243,241,245,225,242,101,128, + 51,178,246,243,241,245,225,242,101,128, 51,182,247,243,241,245, + 225,242,101,128, 51,188,118, 2,130,188,130,201,237,229,231,225, + 243,241,245,225,242,101,128, 51,185,243,241,245,225,242,101,128, + 51,183,119, 2,130,216,130,229,237,229,231,225,243,241,245,225, + 242,101,128, 51,191,243,241,245,225,242,101,128, 51,189,110,150, + 0,110,131, 30,131,164,131,188,131,254,132, 23,132, 81,132, 91, + 132,158,132,201,134,235,134,253,135, 22,135, 53,135, 79,135,144, + 137,126,137,134,137,159,137,167,138,135,138,145,138,155, 97, 8, + 131, 48,131, 68,131, 75,131, 82,131,107,131,118,131,143,131,155, + 98, 2,131, 54,131, 63,229,238,231,225,236,105,128, 9,168,236, + 97,128, 34, 7,227,245,244,101,128, 1, 68,228,229,246, 97,128, + 9, 40,231,117, 2,131, 89,131, 98,234,225,242,225,244,105,128, + 10,168,242,237,245,235,232,105,128, 10, 40,232,233,242,225,231, + 225,238, 97,128, 48,106,235,225,244,225,235,225,238, 97,129, 48, + 202,131,131,232,225,236,230,247,233,228,244,104,128,255,133,240, + 239,243,244,242,239,240,232,101,128, 1, 73,243,241,245,225,242, + 101,128, 51,129, 98, 2,131,170,131,180,239,240,239,237,239,230, + 111,128, 49, 11,243,240,225,227,101,128, 0,160, 99, 4,131,198, + 131,205,131,214,131,241,225,242,239,110,128, 1, 72,229,228,233, + 236,236, 97,128, 1, 70,233,242, 99, 2,131,222,131,227,236,101, + 128, 36,221,245,237,230,236,229,248,226,229,236,239,119,128, 30, + 75,239,237,237,225,225,227,227,229,238,116,128, 1, 70,228,239, + 116, 2,132, 6,132, 15,225,227,227,229,238,116,128, 30, 69,226, + 229,236,239,119,128, 30, 71,101, 3,132, 31,132, 42,132, 67,232, + 233,242,225,231,225,238, 97,128, 48,109,235,225,244,225,235,225, + 238, 97,129, 48,205,132, 55,232,225,236,230,247,233,228,244,104, + 128,255,136,247,243,232,229,241,229,236,243,233,231,110,128, 32, + 170,230,243,241,245,225,242,101,128, 51,139,103, 2,132, 97,132, + 147, 97, 3,132,105,132,115,132,122,226,229,238,231,225,236,105, + 128, 9,153,228,229,246, 97,128, 9, 25,231,117, 2,132,129,132, + 138,234,225,242,225,244,105,128, 10,153,242,237,245,235,232,105, + 128, 10, 25,239,238,231,245,244,232,225,105,128, 14, 7,104, 2, + 132,164,132,174,233,242,225,231,225,238, 97,128, 48,147,239,239, + 107, 2,132,182,132,189,236,229,230,116,128, 2,114,242,229,244, + 242,239,230,236,229,120,128, 2,115,105, 4,132,211,133,124,133, + 135,133,193,229,245,110, 7,132,229,133, 8,133, 40,133, 54,133, + 63,133, 96,133,109, 97, 2,132,235,132,250,227,233,242,227,236, + 229,235,239,242,229,225,110,128, 50,111,240,225,242,229,238,235, + 239,242,229,225,110,128, 50, 15,227,105, 2,133, 15,133, 27,229, + 245,227,235,239,242,229,225,110,128, 49, 53,242,227,236,229,235, + 239,242,229,225,110,128, 50, 97,232,233,229,245,232,235,239,242, + 229,225,110,128, 49, 54,235,239,242,229,225,110,128, 49, 52,240, + 97, 2,133, 70,133, 84,238,243,233,239,243,235,239,242,229,225, + 110,128, 49,104,242,229,238,235,239,242,229,225,110,128, 50, 1, + 243,233,239,243,235,239,242,229,225,110,128, 49,103,244,233,235, + 229,245,244,235,239,242,229,225,110,128, 49,102,232,233,242,225, + 231,225,238, 97,128, 48,107,107, 2,133,141,133,165,225,244,225, + 235,225,238, 97,129, 48,203,133,153,232,225,236,230,247,233,228, + 244,104,128,255,134,232,225,232,233,116, 2,133,175,133,186,236, + 229,230,244,244,232,225,105,128,248,153,244,232,225,105,128, 14, + 77,238,101,141, 0, 57,133,224,133,233,133,243,134, 17,134, 24, + 134, 49,134, 76,134,110,134,122,134,133,134,166,134,174,134,185, + 225,242,225,226,233, 99,128, 6,105,226,229,238,231,225,236,105, + 128, 9,239,227,233,242,227,236,101,129, 36,104,133,254,233,238, + 246,229,242,243,229,243,225,238,243,243,229,242,233,102,128, 39, + 146,228,229,246, 97,128, 9,111,231,117, 2,134, 31,134, 40,234, + 225,242,225,244,105,128, 10,239,242,237,245,235,232,105,128, 10, + 111,232, 97, 2,134, 56,134, 67,227,235,225,242,225,226,233, 99, + 128, 6,105,238,231,250,232,239,117,128, 48, 41,105, 2,134, 82, + 134,100,228,229,239,231,242,225,240,232,233,227,240,225,242,229, + 110,128, 50, 40,238,230,229,242,233,239,114,128, 32,137,237,239, + 238,239,243,240,225,227,101,128,255, 25,239,236,228,243,244,249, + 236,101,128,247, 57,112, 2,134,139,134,146,225,242,229,110,128, + 36,124,229,114, 2,134,153,134,159,233,239,100,128, 36,144,243, + 233,225,110,128, 6,249,242,239,237,225,110,128, 33,120,243,245, + 240,229,242,233,239,114,128, 32,121,116, 2,134,191,134,229,229, + 229,110, 2,134,199,134,208,227,233,242,227,236,101,128, 36,114, + 112, 2,134,214,134,221,225,242,229,110,128, 36,134,229,242,233, + 239,100,128, 36,154,232,225,105,128, 14, 89,106,129, 1,204,134, + 241,229,227,249,242,233,236,236,233, 99,128, 4, 90,235,225,244, + 225,235,225,238, 97,129, 48,243,135, 10,232,225,236,230,247,233, + 228,244,104,128,255,157,108, 2,135, 28,135, 42,229,231,242,233, + 231,232,244,236,239,238,103,128, 1,158,233,238,229,226,229,236, + 239,119,128, 30, 73,109, 2,135, 59,135, 70,239,238,239,243,240, + 225,227,101,128,255, 78,243,241,245,225,242,101,128, 51,154,110, + 2,135, 85,135,135, 97, 3,135, 93,135,103,135,110,226,229,238, + 231,225,236,105,128, 9,163,228,229,246, 97,128, 9, 35,231,117, + 2,135,117,135,126,234,225,242,225,244,105,128, 10,163,242,237, + 245,235,232,105,128, 10, 35,238,225,228,229,246, 97,128, 9, 41, + 111, 6,135,158,135,169,135,194,135,235,136,187,137,114,232,233, + 242,225,231,225,238, 97,128, 48,110,235,225,244,225,235,225,238, + 97,129, 48,206,135,182,232,225,236,230,247,233,228,244,104,128, + 255,137,110, 3,135,202,135,218,135,227,226,242,229,225,235,233, + 238,231,243,240,225,227,101,128, 0,160,229,238,244,232,225,105, + 128, 14, 19,245,244,232,225,105,128, 14, 25,239,110, 7,135,252, + 136, 5,136, 19,136, 53,136, 69,136,110,136,169,225,242,225,226, + 233, 99,128, 6, 70,230,233,238,225,236,225,242,225,226,233, 99, + 128,254,230,231,232,245,238,238, 97, 2,136, 30,136, 39,225,242, + 225,226,233, 99,128, 6,186,230,233,238,225,236,225,242,225,226, + 233, 99,128,251,159,233,238,233,244,233,225,236,225,242,225,226, + 233, 99,128,254,231,234,229,229,237,105, 2,136, 79,136, 94,238, + 233,244,233,225,236,225,242,225,226,233, 99,128,252,210,243,239, + 236,225,244,229,228,225,242,225,226,233, 99,128,252, 75,237,101, + 2,136,117,136,130,228,233,225,236,225,242,225,226,233, 99,128, + 254,232,229,237,105, 2,136,138,136,153,238,233,244,233,225,236, + 225,242,225,226,233, 99,128,252,213,243,239,236,225,244,229,228, + 225,242,225,226,233, 99,128,252, 78,238,239,239,238,230,233,238, + 225,236,225,242,225,226,233, 99,128,252,141,116, 7,136,203,136, + 214,136,243,137, 22,137, 34,137, 54,137, 80,227,239,238,244,225, + 233,238,115,128, 34, 12,101, 2,136,220,136,236,236,229,237,229, + 238,116,129, 34, 9,136,231,239,102,128, 34, 9,241,245,225,108, + 128, 34, 96,231,242,229,225,244,229,114,129, 34,111,136,255,238, + 239,114, 2,137, 7,137, 15,229,241,245,225,108,128, 34,113,236, + 229,243,115,128, 34,121,233,228,229,238,244,233,227,225,108,128, + 34, 98,236,229,243,115,129, 34,110,137, 43,238,239,242,229,241, + 245,225,108,128, 34,112,112, 2,137, 60,137, 70,225,242,225,236, + 236,229,108,128, 34, 38,242,229,227,229,228,229,115,128, 34,128, + 243,117, 3,137, 89,137, 96,137,105,226,243,229,116,128, 34,132, + 227,227,229,229,228,115,128, 34,129,240,229,242,243,229,116,128, + 34,133,247,225,242,237,229,238,233,225,110,128, 5,118,240,225, + 242,229,110,128, 36,169,115, 2,137,140,137,149,243,241,245,225, + 242,101,128, 51,177,245,240,229,242,233,239,114,128, 32,127,244, + 233,236,228,101,128, 0,241,117,132, 3,189,137,179,137,190,138, + 15,138, 98,232,233,242,225,231,225,238, 97,128, 48,108,107, 2, + 137,196,137,220,225,244,225,235,225,238, 97,129, 48,204,137,208, + 232,225,236,230,247,233,228,244,104,128,255,135,244, 97, 3,137, + 229,137,239,137,246,226,229,238,231,225,236,105,128, 9,188,228, + 229,246, 97,128, 9, 60,231,117, 2,137,253,138, 6,234,225,242, + 225,244,105,128, 10,188,242,237,245,235,232,105,128, 10, 60,109, + 2,138, 21,138, 55,226,229,242,243,233,231,110,130, 0, 35,138, + 35,138, 47,237,239,238,239,243,240,225,227,101,128,255, 3,243, + 237,225,236,108,128,254, 95,229,114, 2,138, 62,138, 94,225,236, + 243,233,231,110, 2,138, 73,138, 81,231,242,229,229,107,128, 3, + 116,236,239,247,229,242,231,242,229,229,107,128, 3,117,111,128, + 33, 22,110,130, 5,224,138,106,138,126,228,225,231,229,243,104, + 129,251, 64,138,117,232,229,226,242,229,119,128,251, 64,232,229, + 226,242,229,119,128, 5,224,246,243,241,245,225,242,101,128, 51, + 181,247,243,241,245,225,242,101,128, 51,187,249, 97, 3,138,164, + 138,174,138,181,226,229,238,231,225,236,105,128, 9,158,228,229, + 246, 97,128, 9, 30,231,117, 2,138,188,138,197,234,225,242,225, + 244,105,128, 10,158,242,237,245,235,232,105,128, 10, 30,111,147, + 0,111,138,248,139, 14,139, 92,140, 6,140, 78,140, 93,140,133, + 141, 0,141, 21,141, 59,141, 70,141,248,143, 82,143,146,143,179, + 143,225,144, 98,144,145,144,157, 97, 2,138,254,139, 5,227,245, + 244,101,128, 0,243,238,231,244,232,225,105,128, 14, 45, 98, 4, + 139, 24,139, 66,139, 75,139, 85,225,242,242,229,100,130, 2,117, + 139, 36,139, 47,227,249,242,233,236,236,233, 99,128, 4,233,228, + 233,229,242,229,243,233,243,227,249,242,233,236,236,233, 99,128, + 4,235,229,238,231,225,236,105,128, 9,147,239,240,239,237,239, + 230,111,128, 49, 27,242,229,246,101,128, 1, 79, 99, 3,139,100, + 139,173,139,252, 97, 2,139,106,139,167,238,228,242, 97, 3,139, + 117,139,124,139,135,228,229,246, 97,128, 9, 17,231,245,234,225, + 242,225,244,105,128, 10,145,246,239,247,229,236,243,233,231,110, + 2,139,149,139,156,228,229,246, 97,128, 9, 73,231,245,234,225, + 242,225,244,105,128, 10,201,242,239,110,128, 1,210,233,242, 99, + 2,139,181,139,186,236,101,128, 36,222,245,237,230,236,229,120, + 133, 0,244,139,205,139,213,139,224,139,232,139,244,225,227,245, + 244,101,128, 30,209,228,239,244,226,229,236,239,119,128, 30,217, + 231,242,225,246,101,128, 30,211,232,239,239,235,225,226,239,246, + 101,128, 30,213,244,233,236,228,101,128, 30,215,249,242,233,236, + 236,233, 99,128, 4, 62,100, 4,140, 16,140, 39,140, 45,140, 68, + 226,108, 2,140, 23,140, 31,225,227,245,244,101,128, 1, 81,231, + 242,225,246,101,128, 2, 13,229,246, 97,128, 9, 19,233,229,242, + 229,243,233,115,129, 0,246,140, 57,227,249,242,233,236,236,233, + 99,128, 4,231,239,244,226,229,236,239,119,128, 30,205,101,129, + 1, 83,140, 84,235,239,242,229,225,110,128, 49, 90,103, 3,140, + 101,140,116,140,123,239,238,229,107,129, 2,219,140,110,227,237, + 98,128, 3, 40,242,225,246,101,128, 0,242,245,234,225,242,225, + 244,105,128, 10,147,104, 4,140,143,140,154,140,164,140,242,225, + 242,237,229,238,233,225,110,128, 5,133,233,242,225,231,225,238, + 97,128, 48, 74,111, 2,140,170,140,180,239,235,225,226,239,246, + 101,128, 30,207,242,110,133, 1,161,140,195,140,203,140,214,140, + 222,140,234,225,227,245,244,101,128, 30,219,228,239,244,226,229, + 236,239,119,128, 30,227,231,242,225,246,101,128, 30,221,232,239, + 239,235,225,226,239,246,101,128, 30,223,244,233,236,228,101,128, + 30,225,245,238,231,225,242,245,237,236,225,245,116,128, 1, 81, + 105,129, 1,163,141, 6,238,246,229,242,244,229,228,226,242,229, + 246,101,128, 2, 15,107, 2,141, 27,141, 51,225,244,225,235,225, + 238, 97,129, 48,170,141, 39,232,225,236,230,247,233,228,244,104, + 128,255,117,239,242,229,225,110,128, 49, 87,236,229,232,229,226, + 242,229,119,128, 5,171,109, 6,141, 84,141,112,141,119,141,208, + 141,219,141,237,225,227,242,239,110,130, 1, 77,141, 96,141,104, + 225,227,245,244,101,128, 30, 83,231,242,225,246,101,128, 30, 81, + 228,229,246, 97,128, 9, 80,229,231, 97,133, 3,201,141,135,141, + 139,141,150,141,164,141,180, 49,128, 3,214,227,249,242,233,236, + 236,233, 99,128, 4, 97,236,225,244,233,238,227,236,239,243,229, + 100,128, 2,119,242,239,245,238,228,227,249,242,233,236,236,233, + 99,128, 4,123,116, 2,141,186,141,201,233,244,236,239,227,249, + 242,233,236,236,233, 99,128, 4,125,239,238,239,115,128, 3,206, + 231,245,234,225,242,225,244,105,128, 10,208,233,227,242,239,110, + 129, 3,191,141,229,244,239,238,239,115,128, 3,204,239,238,239, + 243,240,225,227,101,128,255, 79,238,101,145, 0, 49,142, 31,142, + 40,142, 50,142, 80,142,105,142,114,142,123,142,148,142,182,142, + 216,142,228,142,247,143, 2,143, 35,143, 45,143, 53,143, 64,225, + 242,225,226,233, 99,128, 6, 97,226,229,238,231,225,236,105,128, + 9,231,227,233,242,227,236,101,129, 36, 96,142, 61,233,238,246, + 229,242,243,229,243,225,238,243,243,229,242,233,102,128, 39,138, + 100, 2,142, 86,142, 92,229,246, 97,128, 9,103,239,244,229,238, + 236,229,225,228,229,114,128, 32, 36,229,233,231,232,244,104,128, + 33, 91,230,233,244,244,229,100,128,246,220,231,117, 2,142,130, + 142,139,234,225,242,225,244,105,128, 10,231,242,237,245,235,232, + 105,128, 10,103,232, 97, 3,142,157,142,168,142,173,227,235,225, + 242,225,226,233, 99,128, 6, 97,236,102,128, 0,189,238,231,250, + 232,239,117,128, 48, 33,105, 2,142,188,142,206,228,229,239,231, + 242,225,240,232,233,227,240,225,242,229,110,128, 50, 32,238,230, + 229,242,233,239,114,128, 32,129,237,239,238,239,243,240,225,227, + 101,128,255, 17,238,245,237,229,242,225,244,239,242,226,229,238, + 231,225,236,105,128, 9,244,239,236,228,243,244,249,236,101,128, + 247, 49,112, 2,143, 8,143, 15,225,242,229,110,128, 36,116,229, + 114, 2,143, 22,143, 28,233,239,100,128, 36,136,243,233,225,110, + 128, 6,241,241,245,225,242,244,229,114,128, 0,188,242,239,237, + 225,110,128, 33,112,243,245,240,229,242,233,239,114,128, 0,185, + 244,104, 2,143, 71,143, 76,225,105,128, 14, 81,233,242,100,128, + 33, 83,111, 3,143, 90,143,124,143,140,103, 2,143, 96,143,114, + 239,238,229,107,129, 1,235,143,105,237,225,227,242,239,110,128, + 1,237,245,242,237,245,235,232,105,128, 10, 19,237,225,244,242, + 225,231,245,242,237,245,235,232,105,128, 10, 75,240,229,110,128, + 2, 84,112, 3,143,154,143,161,143,172,225,242,229,110,128, 36, + 170,229,238,226,245,236,236,229,116,128, 37,230,244,233,239,110, + 128, 35, 37,114, 2,143,185,143,214,100, 2,143,191,143,202,230, + 229,237,233,238,233,238,101,128, 0,170,237,225,243,227,245,236, + 233,238,101,128, 0,186,244,232,239,231,239,238,225,108,128, 34, + 31,115, 5,143,237,144, 13,144, 30,144, 75,144, 88,232,239,242, + 116, 2,143,246,143,253,228,229,246, 97,128, 9, 18,246,239,247, + 229,236,243,233,231,238,228,229,246, 97,128, 9, 74,236,225,243, + 104,129, 0,248,144, 22,225,227,245,244,101,128, 1,255,237,225, + 236,108, 2,144, 39,144, 50,232,233,242,225,231,225,238, 97,128, + 48, 73,235,225,244,225,235,225,238, 97,129, 48,169,144, 63,232, + 225,236,230,247,233,228,244,104,128,255,107,244,242,239,235,229, + 225,227,245,244,101,128, 1,255,245,240,229,242,233,239,114,128, + 246,240,116, 2,144,104,144,115,227,249,242,233,236,236,233, 99, + 128, 4,127,233,236,228,101,130, 0,245,144,126,144,134,225,227, + 245,244,101,128, 30, 77,228,233,229,242,229,243,233,115,128, 30, + 79,245,226,239,240,239,237,239,230,111,128, 49, 33,118, 2,144, + 163,144,244,229,114, 2,144,170,144,236,236,233,238,101,131, 32, + 62,144,183,144,206,144,229, 99, 2,144,189,144,201,229,238,244, + 229,242,236,233,238,101,128,254, 74,237, 98,128, 3, 5,100, 2, + 144,212,144,220,225,243,232,229,100,128,254, 73,226,236,247,225, + 246,121,128,254, 76,247,225,246,121,128,254, 75,243,227,239,242, + 101,128, 0,175,239,247,229,236,243,233,231,110, 3,145, 3,145, + 13,145, 20,226,229,238,231,225,236,105,128, 9,203,228,229,246, + 97,128, 9, 75,231,245,234,225,242,225,244,105,128, 10,203,112, + 145, 0,112,145, 69,147,197,147,208,147,217,147,229,149,154,149, + 164,150,156,151,175,152, 9,152, 35,152,166,152,174,153, 76,153, + 134,153,162,153,172, 97, 14,145, 99,145,131,145,141,145,148,145, + 155,145,203,145,214,145,228,145,239,146, 30,146, 44,147, 56,147, + 95,147,185, 97, 2,145,105,145,117,237,240,243,243,241,245,225, + 242,101,128, 51,128,243,229,238,244,239,243,241,245,225,242,101, + 128, 51, 43,226,229,238,231,225,236,105,128, 9,170,227,245,244, + 101,128, 30, 85,228,229,246, 97,128, 9, 42,103, 2,145,161,145, + 179,101, 2,145,167,145,174,228,239,247,110,128, 33,223,245,112, + 128, 33,222,117, 2,145,185,145,194,234,225,242,225,244,105,128, + 10,170,242,237,245,235,232,105,128, 10, 42,232,233,242,225,231, + 225,238, 97,128, 48,113,233,249,225,238,238,239,233,244,232,225, + 105,128, 14, 47,235,225,244,225,235,225,238, 97,128, 48,209,108, + 2,145,245,146, 14,225,244,225,236,233,250,225,244,233,239,238, + 227,249,242,233,236,236,233,227,227,237, 98,128, 4,132,239,227, + 232,235,225,227,249,242,233,236,236,233, 99,128, 4,192,238,243, + 233,239,243,235,239,242,229,225,110,128, 49,127,114, 3,146, 52, + 146, 73,147, 45, 97, 2,146, 58,146, 66,231,242,225,240,104,128, + 0,182,236,236,229,108,128, 34, 37,229,110, 2,146, 80,146,190, + 236,229,230,116,136, 0, 40,146,103,146,118,146,123,146,128,146, + 139,146,151,146,174,146,179,225,236,244,239,238,229,225,242,225, + 226,233, 99,128,253, 62,226,116,128,248,237,229,120,128,248,236, + 233,238,230,229,242,233,239,114,128, 32,141,237,239,238,239,243, + 240,225,227,101,128,255, 8,115, 2,146,157,146,164,237,225,236, + 108,128,254, 89,245,240,229,242,233,239,114,128, 32,125,244,112, + 128,248,235,246,229,242,244,233,227,225,108,128,254, 53,242,233, + 231,232,116,136, 0, 41,146,214,146,229,146,234,146,239,146,250, + 147, 6,147, 29,147, 34,225,236,244,239,238,229,225,242,225,226, + 233, 99,128,253, 63,226,116,128,248,248,229,120,128,248,247,233, + 238,230,229,242,233,239,114,128, 32,142,237,239,238,239,243,240, + 225,227,101,128,255, 9,115, 2,147, 12,147, 19,237,225,236,108, + 128,254, 90,245,240,229,242,233,239,114,128, 32,126,244,112,128, + 248,246,246,229,242,244,233,227,225,108,128,254, 54,244,233,225, + 236,228,233,230,102,128, 34, 2,115, 3,147, 64,147, 75,147, 87, + 229,241,232,229,226,242,229,119,128, 5,192,232,244,225,232,229, + 226,242,229,119,128, 5,153,241,245,225,242,101,128, 51,169,244, + 225,104,134, 5,183,147,113,147,127,147,132,147,141,147,156,147, + 172, 49, 2,147,119,147,123, 49,128, 5,183,100,128, 5,183,178, + 97,128, 5,183,232,229,226,242,229,119,128, 5,183,238,225,242, + 242,239,247,232,229,226,242,229,119,128, 5,183,241,245,225,242, + 244,229,242,232,229,226,242,229,119,128, 5,183,247,233,228,229, + 232,229,226,242,229,119,128, 5,183,250,229,242,232,229,226,242, + 229,119,128, 5,161,226,239,240,239,237,239,230,111,128, 49, 6, + 227,233,242,227,236,101,128, 36,223,228,239,244,225,227,227,229, + 238,116,128, 30, 87,101,137, 5,228,147,251,148, 6,148, 26,148, + 38,148, 58,148,160,148,171,148,192,149,147,227,249,242,233,236, + 236,233, 99,128, 4, 63,228,225,231,229,243,104,129,251, 68,148, + 17,232,229,226,242,229,119,128,251, 68,229,250,233,243,241,245, + 225,242,101,128, 51, 59,230,233,238,225,236,228,225,231,229,243, + 232,232,229,226,242,229,119,128,251, 67,104, 5,148, 70,148, 93, + 148,101,148,115,148,145,225,114, 2,148, 77,148, 84,225,226,233, + 99,128, 6,126,237,229,238,233,225,110,128, 5,122,229,226,242, + 229,119,128, 5,228,230,233,238,225,236,225,242,225,226,233, 99, + 128,251, 87,105, 2,148,121,148,136,238,233,244,233,225,236,225, + 242,225,226,233, 99,128,251, 88,242,225,231,225,238, 97,128, 48, + 122,237,229,228,233,225,236,225,242,225,226,233, 99,128,251, 89, + 235,225,244,225,235,225,238, 97,128, 48,218,237,233,228,228,236, + 229,232,239,239,235,227,249,242,233,236,236,233, 99,128, 4,167, + 114, 5,148,204,148,216,149, 2,149,123,149,136,225,230,229,232, + 229,226,242,229,119,128,251, 78,227,229,238,116,131, 0, 37,148, + 229,148,238,148,250,225,242,225,226,233, 99,128, 6,106,237,239, + 238,239,243,240,225,227,101,128,255, 5,243,237,225,236,108,128, + 254,106,105, 2,149, 8,149,105,239,100,134, 0, 46,149, 25,149, + 36,149, 47,149, 59,149, 70,149, 82,225,242,237,229,238,233,225, + 110,128, 5,137,227,229,238,244,229,242,229,100,128, 0,183,232, + 225,236,230,247,233,228,244,104,128,255, 97,233,238,230,229,242, + 233,239,114,128,246,231,237,239,238,239,243,240,225,227,101,128, + 255, 14,115, 2,149, 88,149, 95,237,225,236,108,128,254, 82,245, + 240,229,242,233,239,114,128,246,232,243,240,239,237,229,238,233, + 231,242,229,229,235,227,237, 98,128, 3, 66,240,229,238,228,233, + 227,245,236,225,114,128, 34,165,244,232,239,245,243,225,238,100, + 128, 32, 48,243,229,244, 97,128, 32,167,230,243,241,245,225,242, + 101,128, 51,138,104, 3,149,172,149,222,150,103, 97, 3,149,180, + 149,190,149,197,226,229,238,231,225,236,105,128, 9,171,228,229, + 246, 97,128, 9, 43,231,117, 2,149,204,149,213,234,225,242,225, + 244,105,128, 10,171,242,237,245,235,232,105,128, 10, 43,105,133, + 3,198,149,236,149,240,150, 70,150, 78,150, 89, 49,128, 3,213, + 229,245,240,104, 4,149,253,150, 32,150, 47,150, 56, 97, 2,150, + 3,150, 18,227,233,242,227,236,229,235,239,242,229,225,110,128, + 50,122,240,225,242,229,238,235,239,242,229,225,110,128, 50, 26, + 227,233,242,227,236,229,235,239,242,229,225,110,128, 50,108,235, + 239,242,229,225,110,128, 49, 77,240,225,242,229,238,235,239,242, + 229,225,110,128, 50, 12,236,225,244,233,110,128, 2,120,238,244, + 232,245,244,232,225,105,128, 14, 58,243,249,237,226,239,236,231, + 242,229,229,107,128, 3,213,111, 3,150,111,150,116,150,142,239, + 107,128, 1,165,240,104, 2,150,123,150,132,225,238,244,232,225, + 105,128, 14, 30,245,238,231,244,232,225,105,128, 14, 28,243,225, + 237,240,232,225,239,244,232,225,105,128, 14, 32,105,133, 3,192, + 150,170,151,126,151,137,151,148,151,162,229,245,112, 6,150,186, + 150,221,150,253,151, 25,151, 39,151, 91, 97, 2,150,192,150,207, + 227,233,242,227,236,229,235,239,242,229,225,110,128, 50,115,240, + 225,242,229,238,235,239,242,229,225,110,128, 50, 19,227,105, 2, + 150,228,150,240,229,245,227,235,239,242,229,225,110,128, 49,118, + 242,227,236,229,235,239,242,229,225,110,128, 50,101,107, 2,151, + 3,151, 17,233,249,229,239,235,235,239,242,229,225,110,128, 49, + 114,239,242,229,225,110,128, 49, 66,240,225,242,229,238,235,239, + 242,229,225,110,128, 50, 5,243,233,239,115, 2,151, 48,151, 76, + 107, 2,151, 54,151, 68,233,249,229,239,235,235,239,242,229,225, + 110,128, 49,116,239,242,229,225,110,128, 49, 68,244,233,235,229, + 245,244,235,239,242,229,225,110,128, 49,117,116, 2,151, 97,151, + 112,232,233,229,245,244,232,235,239,242,229,225,110,128, 49,119, + 233,235,229,245,244,235,239,242,229,225,110,128, 49,115,232,233, + 242,225,231,225,238, 97,128, 48,116,235,225,244,225,235,225,238, + 97,128, 48,212,243,249,237,226,239,236,231,242,229,229,107,128, + 3,214,247,242,225,242,237,229,238,233,225,110,128, 5,131,236, + 245,115,132, 0, 43,151,189,151,200,151,209,151,242,226,229,236, + 239,247,227,237, 98,128, 3, 31,227,233,242,227,236,101,128, 34, + 149,109, 2,151,215,151,222,233,238,245,115,128, 0,177,111, 2, + 151,228,151,232,100,128, 2,214,238,239,243,240,225,227,101,128, + 255, 11,115, 2,151,248,151,255,237,225,236,108,128,254, 98,245, + 240,229,242,233,239,114,128, 32,122,109, 2,152, 15,152, 26,239, + 238,239,243,240,225,227,101,128,255, 80,243,241,245,225,242,101, + 128, 51,216,111, 5,152, 47,152, 58,152,125,152,136,152,146,232, + 233,242,225,231,225,238, 97,128, 48,125,233,238,244,233,238,231, + 233,238,228,229,120, 4,152, 78,152, 90,152,102,152,115,228,239, + 247,238,247,232,233,244,101,128, 38, 31,236,229,230,244,247,232, + 233,244,101,128, 38, 28,242,233,231,232,244,247,232,233,244,101, + 128, 38, 30,245,240,247,232,233,244,101,128, 38, 29,235,225,244, + 225,235,225,238, 97,128, 48,221,240,236,225,244,232,225,105,128, + 14, 27,243,244,225,236,237,225,242,107,129, 48, 18,152,159,230, + 225,227,101,128, 48, 32,240,225,242,229,110,128, 36,171,114, 3, + 152,182,152,208,152,233,101, 2,152,188,152,196,227,229,228,229, + 115,128, 34,122,243,227,242,233,240,244,233,239,110,128, 33, 30, + 233,237,101, 2,152,216,152,222,237,239,100,128, 2,185,242,229, + 246,229,242,243,229,100,128, 32, 53,111, 4,152,243,152,250,153, + 4,153, 17,228,245,227,116,128, 34, 15,234,229,227,244,233,246, + 101,128, 35, 5,236,239,238,231,229,228,235,225,238, 97,128, 48, + 252,112, 2,153, 23,153, 60,101, 2,153, 29,153, 36,236,236,239, + 114,128, 35, 24,242,243,117, 2,153, 44,153, 51,226,243,229,116, + 128, 34,130,240,229,242,243,229,116,128, 34,131,239,242,244,233, + 239,110,129, 34, 55,153, 71,225,108,128, 34, 29,115, 2,153, 82, + 153,125,105,130, 3,200,153, 90,153,101,227,249,242,233,236,236, + 233, 99,128, 4,113,236,233,240,238,229,245,237,225,244,225,227, + 249,242,233,236,236,233,227,227,237, 98,128, 4,134,243,241,245, + 225,242,101,128, 51,176,117, 2,153,140,153,151,232,233,242,225, + 231,225,238, 97,128, 48,119,235,225,244,225,235,225,238, 97,128, + 48,215,246,243,241,245,225,242,101,128, 51,180,247,243,241,245, + 225,242,101,128, 51,186,113,136, 0,113,153,202,154,251,155, 6, + 155, 15,155, 22,155, 34,155, 72,155, 80, 97, 4,153,212,153,235, + 154, 43,154,234,100, 2,153,218,153,224,229,246, 97,128, 9, 88, + 237,225,232,229,226,242,229,119,128, 5,168,102, 4,153,245,153, + 254,154, 12,154, 28,225,242,225,226,233, 99,128, 6, 66,230,233, + 238,225,236,225,242,225,226,233, 99,128,254,214,233,238,233,244, + 233,225,236,225,242,225,226,233, 99,128,254,215,237,229,228,233, + 225,236,225,242,225,226,233, 99,128,254,216,237,225,244,115,136, + 5,184,154, 66,154, 86,154,100,154,105,154,110,154,119,154,134, + 154,221, 49, 3,154, 74,154, 78,154, 82, 48,128, 5,184, 97,128, + 5,184, 99,128, 5,184, 50, 2,154, 92,154, 96, 55,128, 5,184, + 57,128, 5,184,179, 51,128, 5,184,228,101,128, 5,184,232,229, + 226,242,229,119,128, 5,184,238,225,242,242,239,247,232,229,226, + 242,229,119,128, 5,184,113, 2,154,140,154,206,225,244,225,110, + 4,154,153,154,162,154,177,154,193,232,229,226,242,229,119,128, + 5,184,238,225,242,242,239,247,232,229,226,242,229,119,128, 5, + 184,241,245,225,242,244,229,242,232,229,226,242,229,119,128, 5, + 184,247,233,228,229,232,229,226,242,229,119,128, 5,184,245,225, + 242,244,229,242,232,229,226,242,229,119,128, 5,184,247,233,228, + 229,232,229,226,242,229,119,128, 5,184,242,238,229,249,240,225, + 242,225,232,229,226,242,229,119,128, 5,159,226,239,240,239,237, + 239,230,111,128, 49, 17,227,233,242,227,236,101,128, 36,224,232, + 239,239,107,128, 2,160,237,239,238,239,243,240,225,227,101,128, + 255, 81,239,102,130, 5,231,155, 43,155, 63,228,225,231,229,243, + 104,129,251, 71,155, 54,232,229,226,242,229,119,128,251, 71,232, + 229,226,242,229,119,128, 5,231,240,225,242,229,110,128, 36,172, + 117, 4,155, 90,155,102,155,191,156, 22,225,242,244,229,242,238, + 239,244,101,128, 38,105,226,245,244,115,135, 5,187,155,123,155, + 128,155,133,155,138,155,147,155,162,155,178,177, 56,128, 5,187, + 178, 53,128, 5,187,179, 49,128, 5,187,232,229,226,242,229,119, + 128, 5,187,238,225,242,242,239,247,232,229,226,242,229,119,128, + 5,187,241,245,225,242,244,229,242,232,229,226,242,229,119,128, + 5,187,247,233,228,229,232,229,226,242,229,119,128, 5,187,229, + 243,244,233,239,110,133, 0, 63,155,210,155,233,155,250,156, 2, + 156, 14,225,114, 2,155,217,155,224,225,226,233, 99,128, 6, 31, + 237,229,238,233,225,110,128, 5, 94,228,239,247,110,129, 0,191, + 155,242,243,237,225,236,108,128,247,191,231,242,229,229,107,128, + 3,126,237,239,238,239,243,240,225,227,101,128,255, 31,243,237, + 225,236,108,128,247, 63,239,244,101, 4,156, 34,156,105,156,125, + 156,154,228,226,108,133, 0, 34,156, 50,156, 57,156, 64,156, 76, + 156, 97,226,225,243,101,128, 32, 30,236,229,230,116,128, 32, 28, + 237,239,238,239,243,240,225,227,101,128,255, 2,240,242,233,237, + 101,129, 48, 30,156, 86,242,229,246,229,242,243,229,100,128, 48, + 29,242,233,231,232,116,128, 32, 29,236,229,230,116,129, 32, 24, + 156,114,242,229,246,229,242,243,229,100,128, 32, 27,114, 2,156, + 131,156,141,229,246,229,242,243,229,100,128, 32, 27,233,231,232, + 116,129, 32, 25,156,150,110,128, 1, 73,243,233,238,231,108, 2, + 156,164,156,171,226,225,243,101,128, 32, 26,101,129, 0, 39,156, + 177,237,239,238,239,243,240,225,227,101,128,255, 7,114,145, 0, + 114,156,227,157,231,157,242,158, 33,158, 84,159,101,159,125,159, + 220,161,254,162, 35,162, 47,162,101,162,109,163, 15,163, 26,163, + 61,163,161, 97, 11,156,251,157, 6,157, 16,157, 23,157, 88,157, + 104,157,129,157,140,157,165,157,188,157,225,225,242,237,229,238, + 233,225,110,128, 5,124,226,229,238,231,225,236,105,128, 9,176, + 227,245,244,101,128, 1, 85,100, 4,157, 33,157, 39,157, 53,157, + 79,229,246, 97,128, 9, 48,233,227,225,108,129, 34, 26,157, 48, + 229,120,128,248,229,239,246,229,242,243,243,241,245,225,242,101, + 129, 51,174,157, 69,228,243,241,245,225,242,101,128, 51,175,243, + 241,245,225,242,101,128, 51,173,230,101,129, 5,191,157, 95,232, + 229,226,242,229,119,128, 5,191,231,117, 2,157,111,157,120,234, + 225,242,225,244,105,128, 10,176,242,237,245,235,232,105,128, 10, + 48,232,233,242,225,231,225,238, 97,128, 48,137,235,225,244,225, + 235,225,238, 97,129, 48,233,157,153,232,225,236,230,247,233,228, + 244,104,128,255,151,236,239,247,229,242,228,233,225,231,239,238, + 225,236,226,229,238,231,225,236,105,128, 9,241,109, 2,157,194, + 157,217,233,228,228,236,229,228,233,225,231,239,238,225,236,226, + 229,238,231,225,236,105,128, 9,240,243,232,239,242,110,128, 2, + 100,244,233,111,128, 34, 54,226,239,240,239,237,239,230,111,128, + 49, 22, 99, 4,157,252,158, 3,158, 12,158, 20,225,242,239,110, + 128, 1, 89,229,228,233,236,236, 97,128, 1, 87,233,242,227,236, + 101,128, 36,225,239,237,237,225,225,227,227,229,238,116,128, 1, + 87,100, 2,158, 39,158, 49,226,236,231,242,225,246,101,128, 2, + 17,239,116, 2,158, 56,158, 65,225,227,227,229,238,116,128, 30, + 89,226,229,236,239,119,129, 30, 91,158, 75,237,225,227,242,239, + 110,128, 30, 93,101, 6,158, 98,158,143,158,178,158,233,159, 2, + 159, 35,102, 2,158,104,158,117,229,242,229,238,227,229,237,225, + 242,107,128, 32, 59,236,229,248,243,117, 2,158,127,158,134,226, + 243,229,116,128, 34,134,240,229,242,243,229,116,128, 34,135,231, + 233,243,244,229,114, 2,158,154,158,159,229,100,128, 0,174,115, + 2,158,165,158,171,225,238,115,128,248,232,229,242,233,102,128, + 246,218,104, 3,158,186,158,209,158,223,225,114, 2,158,193,158, + 200,225,226,233, 99,128, 6, 49,237,229,238,233,225,110,128, 5, + 128,230,233,238,225,236,225,242,225,226,233, 99,128,254,174,233, + 242,225,231,225,238, 97,128, 48,140,235,225,244,225,235,225,238, + 97,129, 48,236,158,246,232,225,236,230,247,233,228,244,104,128, + 255,154,243,104,130, 5,232,159, 11,159, 26,228,225,231,229,243, + 232,232,229,226,242,229,119,128,251, 72,232,229,226,242,229,119, + 128, 5,232,118, 3,159, 43,159, 56,159, 88,229,242,243,229,228, + 244,233,236,228,101,128, 34, 61,233, 97, 2,159, 63,159, 72,232, + 229,226,242,229,119,128, 5,151,237,245,231,242,225,243,232,232, + 229,226,242,229,119,128, 5,151,236,239,231,233,227,225,236,238, + 239,116,128, 35, 16,230,233,243,232,232,239,239,107,129, 2,126, + 159,114,242,229,246,229,242,243,229,100,128, 2,127,104, 2,159, + 131,159,154, 97, 2,159,137,159,147,226,229,238,231,225,236,105, + 128, 9,221,228,229,246, 97,128, 9, 93,111,131, 3,193,159,164, + 159,193,159,207,239,107,129, 2,125,159,171,244,245,242,238,229, + 100,129, 2,123,159,182,243,245,240,229,242,233,239,114,128, 2, + 181,243,249,237,226,239,236,231,242,229,229,107,128, 3,241,244, + 233,227,232,239,239,235,237,239,100,128, 2,222,105, 6,159,234, + 161, 22,161, 68,161, 79,161,104,161,240,229,245,108, 9,160, 0, + 160, 35,160, 50,160, 64,160,110,160,124,160,210,160,223,161, 2, + 97, 2,160, 6,160, 21,227,233,242,227,236,229,235,239,242,229, + 225,110,128, 50,113,240,225,242,229,238,235,239,242,229,225,110, + 128, 50, 17,227,233,242,227,236,229,235,239,242,229,225,110,128, + 50, 99,232,233,229,245,232,235,239,242,229,225,110,128, 49, 64, + 107, 2,160, 70,160,102,233,249,229,239,107, 2,160, 80,160, 89, + 235,239,242,229,225,110,128, 49, 58,243,233,239,243,235,239,242, + 229,225,110,128, 49,105,239,242,229,225,110,128, 49, 57,237,233, + 229,245,237,235,239,242,229,225,110,128, 49, 59,112, 3,160,132, + 160,164,160,179, 97, 2,160,138,160,152,238,243,233,239,243,235, + 239,242,229,225,110,128, 49,108,242,229,238,235,239,242,229,225, + 110,128, 50, 3,232,233,229,245,240,232,235,239,242,229,225,110, + 128, 49, 63,233,229,245,112, 2,160,188,160,197,235,239,242,229, + 225,110,128, 49, 60,243,233,239,243,235,239,242,229,225,110,128, + 49,107,243,233,239,243,235,239,242,229,225,110,128, 49, 61,116, + 2,160,229,160,244,232,233,229,245,244,232,235,239,242,229,225, + 110,128, 49, 62,233,235,229,245,244,235,239,242,229,225,110,128, + 49,106,249,229,239,242,233,238,232,233,229,245,232,235,239,242, + 229,225,110,128, 49,109,231,232,116, 2,161, 30,161, 38,225,238, + 231,236,101,128, 34, 31,116, 2,161, 44,161, 58,225,227,235,226, + 229,236,239,247,227,237, 98,128, 3, 25,242,233,225,238,231,236, + 101,128, 34,191,232,233,242,225,231,225,238, 97,128, 48,138,235, + 225,244,225,235,225,238, 97,129, 48,234,161, 92,232,225,236,230, + 247,233,228,244,104,128,255,152,110, 2,161,110,161,226,103,131, + 2,218,161,120,161,131,161,137,226,229,236,239,247,227,237, 98, + 128, 3, 37,227,237, 98,128, 3, 10,232,225,236,102, 2,161,146, + 161,192,236,229,230,116,131, 2,191,161,159,161,170,161,181,225, + 242,237,229,238,233,225,110,128, 5, 89,226,229,236,239,247,227, + 237, 98,128, 3, 28,227,229,238,244,229,242,229,100,128, 2,211, + 242,233,231,232,116,130, 2,190,161,204,161,215,226,229,236,239, + 247,227,237, 98,128, 3, 57,227,229,238,244,229,242,229,100,128, + 2,210,246,229,242,244,229,228,226,242,229,246,101,128, 2, 19, + 244,244,239,242,245,243,241,245,225,242,101,128, 51, 81,108, 2, + 162, 4,162, 15,233,238,229,226,229,236,239,119,128, 30, 95,239, + 238,231,236,229,103,129, 2,124,162, 26,244,245,242,238,229,100, + 128, 2,122,237,239,238,239,243,240,225,227,101,128,255, 82,111, + 3,162, 55,162, 66,162, 91,232,233,242,225,231,225,238, 97,128, + 48,141,235,225,244,225,235,225,238, 97,129, 48,237,162, 79,232, + 225,236,230,247,233,228,244,104,128,255,155,242,245,225,244,232, + 225,105,128, 14, 35,240,225,242,229,110,128, 36,173,114, 3,162, + 117,162,153,162,183, 97, 3,162,125,162,135,162,142,226,229,238, + 231,225,236,105,128, 9,220,228,229,246, 97,128, 9, 49,231,245, + 242,237,245,235,232,105,128, 10, 92,229,104, 2,162,160,162,169, + 225,242,225,226,233, 99,128, 6,145,230,233,238,225,236,225,242, + 225,226,233, 99,128,251,141,246,239,227,225,236,233, 99, 4,162, + 199,162,209,162,216,162,227,226,229,238,231,225,236,105,128, 9, + 224,228,229,246, 97,128, 9, 96,231,245,234,225,242,225,244,105, + 128, 10,224,246,239,247,229,236,243,233,231,110, 3,162,243,162, + 253,163, 4,226,229,238,231,225,236,105,128, 9,196,228,229,246, + 97,128, 9, 68,231,245,234,225,242,225,244,105,128, 10,196,243, + 245,240,229,242,233,239,114,128,246,241,116, 2,163, 32,163, 40, + 226,236,239,227,107,128, 37,144,245,242,238,229,100,129, 2,121, + 163, 50,243,245,240,229,242,233,239,114,128, 2,180,117, 4,163, + 71,163, 82,163,107,163,154,232,233,242,225,231,225,238, 97,128, + 48,139,235,225,244,225,235,225,238, 97,129, 48,235,163, 95,232, + 225,236,230,247,233,228,244,104,128,255,153,112, 2,163,113,163, + 148,229,101, 2,163,120,163,134,237,225,242,235,226,229,238,231, + 225,236,105,128, 9,242,243,233,231,238,226,229,238,231,225,236, + 105,128, 9,243,233,225,104,128,246,221,244,232,225,105,128, 14, + 36,246,239,227,225,236,233, 99, 4,163,177,163,187,163,194,163, + 205,226,229,238,231,225,236,105,128, 9,139,228,229,246, 97,128, + 9, 11,231,245,234,225,242,225,244,105,128, 10,139,246,239,247, + 229,236,243,233,231,110, 3,163,221,163,231,163,238,226,229,238, + 231,225,236,105,128, 9,195,228,229,246, 97,128, 9, 67,231,245, + 234,225,242,225,244,105,128, 10,195,115,147, 0,115,164, 35,166, + 5,166, 16,166,142,166,181,169,123,169,134,172, 21,174,159,174, + 205,174,232,175,167,175,234,177, 11,177, 21,177,207,178, 24,178, + 194,178,204, 97, 9,164, 55,164, 65,164, 86,164,158,164,183,164, + 194,164,219,164,251,165, 35,226,229,238,231,225,236,105,128, 9, + 184,227,245,244,101,129, 1, 91,164, 74,228,239,244,225,227,227, + 229,238,116,128, 30,101,100, 5,164, 98,164,107,164,113,164,127, + 164,143,225,242,225,226,233, 99,128, 6, 53,229,246, 97,128, 9, + 56,230,233,238,225,236,225,242,225,226,233, 99,128,254,186,233, + 238,233,244,233,225,236,225,242,225,226,233, 99,128,254,187,237, + 229,228,233,225,236,225,242,225,226,233, 99,128,254,188,231,117, + 2,164,165,164,174,234,225,242,225,244,105,128, 10,184,242,237, + 245,235,232,105,128, 10, 56,232,233,242,225,231,225,238, 97,128, + 48, 85,235,225,244,225,235,225,238, 97,129, 48,181,164,207,232, + 225,236,230,247,233,228,244,104,128,255,123,236,236,225,236,236, + 225,232,239,245,225,236,225,249,232,229,247,225,243,225,236,236, + 225,237,225,242,225,226,233, 99,128,253,250,237,229,235,104,130, + 5,225,165, 6,165, 26,228,225,231,229,243,104,129,251, 65,165, + 17,232,229,226,242,229,119,128,251, 65,232,229,226,242,229,119, + 128, 5,225,242, 97, 5,165, 48,165,122,165,130,165,180,165,188, + 97, 5,165, 60,165, 68,165, 76,165,107,165,115,225,244,232,225, + 105,128, 14, 50,229,244,232,225,105,128, 14, 65,233,237,225,233, + 109, 2,165, 86,165, 97,225,236,225,233,244,232,225,105,128, 14, + 68,245,225,238,244,232,225,105,128, 14, 67,237,244,232,225,105, + 128, 14, 51,244,232,225,105,128, 14, 48,229,244,232,225,105,128, + 14, 64,105, 3,165,138,165,162,165,173,105, 2,165,144,165,155, + 236,229,230,244,244,232,225,105,128,248,134,244,232,225,105,128, + 14, 53,236,229,230,244,244,232,225,105,128,248,133,244,232,225, + 105,128, 14, 52,239,244,232,225,105,128, 14, 66,117, 3,165,196, + 165,246,165,253,101, 3,165,204,165,228,165,239,101, 2,165,210, + 165,221,236,229,230,244,244,232,225,105,128,248,136,244,232,225, + 105,128, 14, 55,236,229,230,244,244,232,225,105,128,248,135,244, + 232,225,105,128, 14, 54,244,232,225,105,128, 14, 56,245,244,232, + 225,105,128, 14, 57,226,239,240,239,237,239,230,111,128, 49, 25, + 99, 5,166, 28,166, 49,166, 58,166,107,166,129,225,242,239,110, + 129, 1, 97,166, 37,228,239,244,225,227,227,229,238,116,128, 30, + 103,229,228,233,236,236, 97,128, 1, 95,232,247, 97,131, 2, 89, + 166, 70,166, 81,166,100,227,249,242,233,236,236,233, 99,128, 4, + 217,228,233,229,242,229,243,233,243,227,249,242,233,236,236,233, + 99,128, 4,219,232,239,239,107,128, 2, 90,233,242, 99, 2,166, + 115,166,120,236,101,128, 36,226,245,237,230,236,229,120,128, 1, + 93,239,237,237,225,225,227,227,229,238,116,128, 2, 25,228,239, + 116, 2,166,150,166,159,225,227,227,229,238,116,128, 30, 97,226, + 229,236,239,119,129, 30, 99,166,169,228,239,244,225,227,227,229, + 238,116,128, 30,105,101, 9,166,201,166,217,166,252,167, 61,167, + 164,167,191,167,216,168, 41,168, 68,225,231,245,236,236,226,229, + 236,239,247,227,237, 98,128, 3, 60, 99, 2,166,223,166,245,239, + 238,100,129, 32, 51,166,231,244,239,238,229,227,232,233,238,229, + 243,101,128, 2,202,244,233,239,110,128, 0,167,229,110, 4,167, + 7,167, 16,167, 30,167, 46,225,242,225,226,233, 99,128, 6, 51, + 230,233,238,225,236,225,242,225,226,233, 99,128,254,178,233,238, + 233,244,233,225,236,225,242,225,226,233, 99,128,254,179,237,229, + 228,233,225,236,225,242,225,226,233, 99,128,254,180,231,239,108, + 135, 5,182,167, 81,167, 95,167,100,167,109,167,124,167,140,167, + 151, 49, 2,167, 87,167, 91, 51,128, 5,182,102,128, 5,182,178, + 99,128, 5,182,232,229,226,242,229,119,128, 5,182,238,225,242, + 242,239,247,232,229,226,242,229,119,128, 5,182,241,245,225,242, + 244,229,242,232,229,226,242,229,119,128, 5,182,244,225,232,229, + 226,242,229,119,128, 5,146,247,233,228,229,232,229,226,242,229, + 119,128, 5,182,104, 2,167,170,167,181,225,242,237,229,238,233, + 225,110,128, 5,125,233,242,225,231,225,238, 97,128, 48, 91,235, + 225,244,225,235,225,238, 97,129, 48,187,167,204,232,225,236,230, + 247,233,228,244,104,128,255,126,237,105, 2,167,223,168, 10,227, + 239,236,239,110,131, 0, 59,167,237,167,246,168, 2,225,242,225, + 226,233, 99,128, 6, 27,237,239,238,239,243,240,225,227,101,128, + 255, 27,243,237,225,236,108,128,254, 84,246,239,233,227,229,228, + 237,225,242,235,235,225,238, 97,129, 48,156,168, 29,232,225,236, + 230,247,233,228,244,104,128,255,159,238,116, 2,168, 48,168, 58, + 233,243,241,245,225,242,101,128, 51, 34,239,243,241,245,225,242, + 101,128, 51, 35,246,229,110,142, 0, 55,168,102,168,111,168,121, + 168,151,168,158,168,168,168,193,168,220,168,254,169, 10,169, 21, + 169, 54,169, 62,169, 73,225,242,225,226,233, 99,128, 6,103,226, + 229,238,231,225,236,105,128, 9,237,227,233,242,227,236,101,129, + 36,102,168,132,233,238,246,229,242,243,229,243,225,238,243,243, + 229,242,233,102,128, 39,144,228,229,246, 97,128, 9,109,229,233, + 231,232,244,232,115,128, 33, 94,231,117, 2,168,175,168,184,234, + 225,242,225,244,105,128, 10,237,242,237,245,235,232,105,128, 10, + 109,232, 97, 2,168,200,168,211,227,235,225,242,225,226,233, 99, + 128, 6,103,238,231,250,232,239,117,128, 48, 39,105, 2,168,226, + 168,244,228,229,239,231,242,225,240,232,233,227,240,225,242,229, + 110,128, 50, 38,238,230,229,242,233,239,114,128, 32,135,237,239, + 238,239,243,240,225,227,101,128,255, 23,239,236,228,243,244,249, + 236,101,128,247, 55,112, 2,169, 27,169, 34,225,242,229,110,128, + 36,122,229,114, 2,169, 41,169, 47,233,239,100,128, 36,142,243, + 233,225,110,128, 6,247,242,239,237,225,110,128, 33,118,243,245, + 240,229,242,233,239,114,128, 32,119,116, 2,169, 79,169,117,229, + 229,110, 2,169, 87,169, 96,227,233,242,227,236,101,128, 36,112, + 112, 2,169,102,169,109,225,242,229,110,128, 36,132,229,242,233, + 239,100,128, 36,152,232,225,105,128, 14, 87,230,244,232,249,240, + 232,229,110,128, 0,173,104, 7,169,150,170,124,170,135,170,149, + 171, 94,171,107,172, 15, 97, 6,169,164,169,175,169,185,169,196, + 170, 83,170,108,225,242,237,229,238,233,225,110,128, 5,119,226, + 229,238,231,225,236,105,128, 9,182,227,249,242,233,236,236,233, + 99,128, 4, 72,100, 2,169,202,170, 42,228, 97, 4,169,213,169, + 222,169,253,170, 11,225,242,225,226,233, 99,128, 6, 81,228,225, + 237,237, 97, 2,169,232,169,241,225,242,225,226,233, 99,128,252, + 97,244,225,238,225,242,225,226,233, 99,128,252, 94,230,225,244, + 232,225,225,242,225,226,233, 99,128,252, 96,235,225,243,242, 97, + 2,170, 21,170, 30,225,242,225,226,233, 99,128,252, 98,244,225, + 238,225,242,225,226,233, 99,128,252, 95,101,132, 37,146,170, 54, + 170, 61,170, 69,170, 78,228,225,242,107,128, 37,147,236,233,231, + 232,116,128, 37,145,237,229,228,233,245,109,128, 37,146,246, 97, + 128, 9, 54,231,117, 2,170, 90,170, 99,234,225,242,225,244,105, + 128, 10,182,242,237,245,235,232,105,128, 10, 54,236,243,232,229, + 236,229,244,232,229,226,242,229,119,128, 5,147,226,239,240,239, + 237,239,230,111,128, 49, 21,227,232,225,227,249,242,233,236,236, + 233, 99,128, 4, 73,101, 4,170,159,170,224,170,234,170,251,229, + 110, 4,170,170,170,179,170,193,170,209,225,242,225,226,233, 99, + 128, 6, 52,230,233,238,225,236,225,242,225,226,233, 99,128,254, + 182,233,238,233,244,233,225,236,225,242,225,226,233, 99,128,254, + 183,237,229,228,233,225,236,225,242,225,226,233, 99,128,254,184, + 233,227,239,240,244,233, 99,128, 3,227,241,229,108,129, 32,170, + 170,242,232,229,226,242,229,119,128, 32,170,246, 97,134, 5,176, + 171, 12,171, 27,171, 41,171, 50,171, 65,171, 81, 49, 2,171, 18, + 171, 23,177, 53,128, 5,176, 53,128, 5,176, 50, 2,171, 33,171, + 37, 50,128, 5,176,101,128, 5,176,232,229,226,242,229,119,128, + 5,176,238,225,242,242,239,247,232,229,226,242,229,119,128, 5, + 176,241,245,225,242,244,229,242,232,229,226,242,229,119,128, 5, + 176,247,233,228,229,232,229,226,242,229,119,128, 5,176,232,225, + 227,249,242,233,236,236,233, 99,128, 4,187,105, 2,171,113,171, + 124,237,225,227,239,240,244,233, 99,128, 3,237,110,131, 5,233, + 171,134,171,217,171,226,100, 2,171,140,171,206,225,231,229,243, + 104,130,251, 73,171,152,171,161,232,229,226,242,229,119,128,251, + 73,115, 2,171,167,171,187,232,233,238,228,239,116,129,251, 44, + 171,178,232,229,226,242,229,119,128,251, 44,233,238,228,239,116, + 129,251, 45,171,197,232,229,226,242,229,119,128,251, 45,239,244, + 232,229,226,242,229,119,128, 5,193,232,229,226,242,229,119,128, + 5,233,115, 2,171,232,171,252,232,233,238,228,239,116,129,251, + 42,171,243,232,229,226,242,229,119,128,251, 42,233,238,228,239, + 116,129,251, 43,172, 6,232,229,226,242,229,119,128,251, 43,239, + 239,107,128, 2,130,105, 8,172, 39,172, 83,172, 94,172,119,172, + 149,172,157,172,170,173, 85,231,237, 97,131, 3,195,172, 51,172, + 55,172, 63, 49,128, 3,194,230,233,238,225,108,128, 3,194,236, + 245,238,225,244,229,243,249,237,226,239,236,231,242,229,229,107, + 128, 3,242,232,233,242,225,231,225,238, 97,128, 48, 87,235,225, + 244,225,235,225,238, 97,129, 48,183,172,107,232,225,236,230,247, + 233,228,244,104,128,255,124,236,245,113, 2,172,127,172,136,232, + 229,226,242,229,119,128, 5,189,236,229,230,244,232,229,226,242, + 229,119,128, 5,189,237,233,236,225,114,128, 34, 60,238,228,239, + 244,232,229,226,242,229,119,128, 5,194,239,115, 6,172,185,172, + 220,172,252,173, 24,173, 38,173, 70, 97, 2,172,191,172,206,227, + 233,242,227,236,229,235,239,242,229,225,110,128, 50,116,240,225, + 242,229,238,235,239,242,229,225,110,128, 50, 20,227,105, 2,172, + 227,172,239,229,245,227,235,239,242,229,225,110,128, 49,126,242, + 227,236,229,235,239,242,229,225,110,128, 50,102,107, 2,173, 2, + 173, 16,233,249,229,239,235,235,239,242,229,225,110,128, 49,122, + 239,242,229,225,110,128, 49, 69,238,233,229,245,238,235,239,242, + 229,225,110,128, 49,123,112, 2,173, 44,173, 57,225,242,229,238, + 235,239,242,229,225,110,128, 50, 6,233,229,245,240,235,239,242, + 229,225,110,128, 49,125,244,233,235,229,245,244,235,239,242,229, + 225,110,128, 49,124,120,141, 0, 54,173,115,173,124,173,134,173, + 164,173,171,173,196,173,223,174, 1,174, 13,174, 24,174, 57,174, + 65,174, 76,225,242,225,226,233, 99,128, 6,102,226,229,238,231, + 225,236,105,128, 9,236,227,233,242,227,236,101,129, 36,101,173, + 145,233,238,246,229,242,243,229,243,225,238,243,243,229,242,233, + 102,128, 39,143,228,229,246, 97,128, 9,108,231,117, 2,173,178, + 173,187,234,225,242,225,244,105,128, 10,236,242,237,245,235,232, + 105,128, 10,108,232, 97, 2,173,203,173,214,227,235,225,242,225, + 226,233, 99,128, 6,102,238,231,250,232,239,117,128, 48, 38,105, + 2,173,229,173,247,228,229,239,231,242,225,240,232,233,227,240, + 225,242,229,110,128, 50, 37,238,230,229,242,233,239,114,128, 32, + 134,237,239,238,239,243,240,225,227,101,128,255, 22,239,236,228, + 243,244,249,236,101,128,247, 54,112, 2,174, 30,174, 37,225,242, + 229,110,128, 36,121,229,114, 2,174, 44,174, 50,233,239,100,128, + 36,141,243,233,225,110,128, 6,246,242,239,237,225,110,128, 33, + 117,243,245,240,229,242,233,239,114,128, 32,118,116, 2,174, 82, + 174,153,229,229,110, 2,174, 90,174,132, 99, 2,174, 96,174,104, + 233,242,227,236,101,128, 36,111,245,242,242,229,238,227,249,228, + 229,238,239,237,233,238,225,244,239,242,226,229,238,231,225,236, + 105,128, 9,249,112, 2,174,138,174,145,225,242,229,110,128, 36, + 131,229,242,233,239,100,128, 36,151,232,225,105,128, 14, 86,108, + 2,174,165,174,185,225,243,104,129, 0, 47,174,173,237,239,238, + 239,243,240,225,227,101,128,255, 15,239,238,103,129, 1,127,174, + 193,228,239,244,225,227,227,229,238,116,128, 30,155,109, 2,174, + 211,174,221,233,236,229,230,225,227,101,128, 38, 58,239,238,239, + 243,240,225,227,101,128,255, 83,111, 6,174,246,175, 40,175, 51, + 175, 76,175,121,175,132,102, 2,174,252,175, 10,240,225,243,245, + 241,232,229,226,242,229,119,128, 5,195,116, 2,175, 16,175, 25, + 232,249,240,232,229,110,128, 0,173,243,233,231,238,227,249,242, + 233,236,236,233, 99,128, 4, 76,232,233,242,225,231,225,238, 97, + 128, 48, 93,235,225,244,225,235,225,238, 97,129, 48,189,175, 64, + 232,225,236,230,247,233,228,244,104,128,255,127,236,233,228,245, + 115, 2,175, 86,175,103,236,239,238,231,239,246,229,242,236,225, + 249,227,237, 98,128, 3, 56,243,232,239,242,244,239,246,229,242, + 236,225,249,227,237, 98,128, 3, 55,242,245,243,233,244,232,225, + 105,128, 14, 41,115, 3,175,140,175,150,175,158,225,236,225,244, + 232,225,105,128, 14, 40,239,244,232,225,105,128, 14, 11,245,225, + 244,232,225,105,128, 14, 42,240, 97, 3,175,176,175,196,175,228, + 227,101,129, 0, 32,175,183,232,225,227,235,225,242,225,226,233, + 99,128, 0, 32,228,101,129, 38, 96,175,203,243,245,233,116, 2, + 175,212,175,220,226,236,225,227,107,128, 38, 96,247,232,233,244, + 101,128, 38,100,242,229,110,128, 36,174,241,245,225,242,101, 11, + 176, 6,176, 17,176, 31,176, 56,176, 73,176, 99,176,114,176,147, + 176,174,176,230,176,245,226,229,236,239,247,227,237, 98,128, 3, + 59, 99, 2,176, 23,176, 27, 99,128, 51,196,109,128, 51,157,228, + 233,225,231,239,238,225,236,227,242,239,243,243,232,225,244,227, + 232,230,233,236,108,128, 37,169,232,239,242,233,250,239,238,244, + 225,236,230,233,236,108,128, 37,164,107, 2,176, 79,176, 83,103, + 128, 51,143,109,129, 51,158,176, 89,227,225,240,233,244,225,108, + 128, 51,206,108, 2,176,105,176,109,110,128, 51,209,239,103,128, + 51,210,109, 4,176,124,176,128,176,133,176,137,103,128, 51,142, + 233,108,128, 51,213,109,128, 51,156,243,241,245,225,242,229,100, + 128, 51,161,239,242,244,232,239,231,239,238,225,236,227,242,239, + 243,243,232,225,244,227,232,230,233,236,108,128, 37,166,245,240, + 240,229,114, 2,176,184,176,207,236,229,230,244,244,239,236,239, + 247,229,242,242,233,231,232,244,230,233,236,108,128, 37,167,242, + 233,231,232,244,244,239,236,239,247,229,242,236,229,230,244,230, + 233,236,108,128, 37,168,246,229,242,244,233,227,225,236,230,233, + 236,108,128, 37,165,247,232,233,244,229,247,233,244,232,243,237, + 225,236,236,226,236,225,227,107,128, 37,163,242,243,241,245,225, + 242,101,128, 51,219,115, 2,177, 27,177,197, 97, 4,177, 37,177, + 47,177, 54,177, 65,226,229,238,231,225,236,105,128, 9,183,228, + 229,246, 97,128, 9, 55,231,245,234,225,242,225,244,105,128, 10, + 183,238,103, 8,177, 84,177, 98,177,112,177,126,177,141,177,155, + 177,169,177,182,227,233,229,245,227,235,239,242,229,225,110,128, + 49, 73,232,233,229,245,232,235,239,242,229,225,110,128, 49,133, + 233,229,245,238,231,235,239,242,229,225,110,128, 49,128,235,233, + 249,229,239,235,235,239,242,229,225,110,128, 49, 50,238,233,229, + 245,238,235,239,242,229,225,110,128, 49,101,240,233,229,245,240, + 235,239,242,229,225,110,128, 49, 67,243,233,239,243,235,239,242, + 229,225,110,128, 49, 70,244,233,235,229,245,244,235,239,242,229, + 225,110,128, 49, 56,245,240,229,242,233,239,114,128,246,242,116, + 2,177,213,177,236,229,242,236,233,238,103,129, 0,163,177,224, + 237,239,238,239,243,240,225,227,101,128,255,225,242,239,235,101, + 2,177,245,178, 6,236,239,238,231,239,246,229,242,236,225,249, + 227,237, 98,128, 3, 54,243,232,239,242,244,239,246,229,242,236, + 225,249,227,237, 98,128, 3, 53,117, 7,178, 40,178, 72,178, 94, + 178,105,178,146,178,156,178,160,226,243,229,116,130, 34,130,178, + 51,178, 62,238,239,244,229,241,245,225,108,128, 34,138,239,242, + 229,241,245,225,108,128, 34,134, 99, 2,178, 78,178, 86,227,229, + 229,228,115,128, 34,123,232,244,232,225,116,128, 34, 11,232,233, + 242,225,231,225,238, 97,128, 48, 89,107, 2,178,111,178,135,225, + 244,225,235,225,238, 97,129, 48,185,178,123,232,225,236,230,247, + 233,228,244,104,128,255,125,245,238,225,242,225,226,233, 99,128, + 6, 82,237,237,225,244,233,239,110,128, 34, 17,110,128, 38, 60, + 240,229,242,243,229,116,130, 34,131,178,173,178,184,238,239,244, + 229,241,245,225,108,128, 34,139,239,242,229,241,245,225,108,128, + 34,135,246,243,241,245,225,242,101,128, 51,220,249,239,245,247, + 225,229,242,225,243,241,245,225,242,101,128, 51,124,116,144, 0, + 116,179, 1,180, 10,180, 31,180,174,180,214,183, 6,186,144,187, + 219,187,231,187,243,189, 20,189, 45,189,131,190, 55,190,239,191, + 73, 97, 10,179, 23,179, 33,179, 54,179, 61,179, 86,179,164,179, + 181,179,206,179,220,179,224,226,229,238,231,225,236,105,128, 9, + 164,227,107, 2,179, 40,179, 47,228,239,247,110,128, 34,164,236, + 229,230,116,128, 34,163,228,229,246, 97,128, 9, 36,231,117, 2, + 179, 68,179, 77,234,225,242,225,244,105,128, 10,164,242,237,245, + 235,232,105,128, 10, 36,104, 4,179, 96,179,105,179,119,179,149, + 225,242,225,226,233, 99,128, 6, 55,230,233,238,225,236,225,242, + 225,226,233, 99,128,254,194,105, 2,179,125,179,140,238,233,244, + 233,225,236,225,242,225,226,233, 99,128,254,195,242,225,231,225, + 238, 97,128, 48, 95,237,229,228,233,225,236,225,242,225,226,233, + 99,128,254,196,233,243,249,239,245,229,242,225,243,241,245,225, + 242,101,128, 51,125,235,225,244,225,235,225,238, 97,129, 48,191, + 179,194,232,225,236,230,247,233,228,244,104,128,255,128,244,247, + 229,229,236,225,242,225,226,233, 99,128, 6, 64,117,128, 3,196, + 118,130, 5,234,179,232,180, 1,228,225,231,229,115,129,251, 74, + 179,242,104,129,251, 74,179,248,232,229,226,242,229,119,128,251, + 74,232,229,226,242,229,119,128, 5,234, 98, 2,180, 16,180, 21, + 225,114,128, 1,103,239,240,239,237,239,230,111,128, 49, 10, 99, + 6,180, 45,180, 52,180, 59,180, 68,180,134,180,161,225,242,239, + 110,128, 1,101,227,245,242,108,128, 2,168,229,228,233,236,236, + 97,128, 1, 99,232,229,104, 4,180, 80,180, 89,180,103,180,119, + 225,242,225,226,233, 99,128, 6,134,230,233,238,225,236,225,242, + 225,226,233, 99,128,251,123,233,238,233,244,233,225,236,225,242, + 225,226,233, 99,128,251,124,237,229,228,233,225,236,225,242,225, + 226,233, 99,128,251,125,233,242, 99, 2,180,142,180,147,236,101, + 128, 36,227,245,237,230,236,229,248,226,229,236,239,119,128, 30, + 113,239,237,237,225,225,227,227,229,238,116,128, 1, 99,100, 2, + 180,180,180,190,233,229,242,229,243,233,115,128, 30,151,239,116, + 2,180,197,180,206,225,227,227,229,238,116,128, 30,107,226,229, + 236,239,119,128, 30,109,101, 9,180,234,180,245,181, 9,182, 19, + 182, 44,182,108,182,175,182,180,182,232,227,249,242,233,236,236, + 233, 99,128, 4, 66,228,229,243,227,229,238,228,229,242,227,249, + 242,233,236,236,233, 99,128, 4,173,104, 7,181, 25,181, 34,181, + 48,181, 88,181,118,181,159,182, 1,225,242,225,226,233, 99,128, + 6, 42,230,233,238,225,236,225,242,225,226,233, 99,128,254,150, + 232,225,232,105, 2,181, 57,181, 72,238,233,244,233,225,236,225, + 242,225,226,233, 99,128,252,162,243,239,236,225,244,229,228,225, + 242,225,226,233, 99,128,252, 12,105, 2,181, 94,181,109,238,233, + 244,233,225,236,225,242,225,226,233, 99,128,254,151,242,225,231, + 225,238, 97,128, 48,102,234,229,229,237,105, 2,181,128,181,143, + 238,233,244,233,225,236,225,242,225,226,233, 99,128,252,161,243, + 239,236,225,244,229,228,225,242,225,226,233, 99,128,252, 11,109, + 2,181,165,181,199,225,242,226,245,244, 97, 2,181,176,181,185, + 225,242,225,226,233, 99,128, 6, 41,230,233,238,225,236,225,242, + 225,226,233, 99,128,254,148,101, 2,181,205,181,218,228,233,225, + 236,225,242,225,226,233, 99,128,254,152,229,237,105, 2,181,226, + 181,241,238,233,244,233,225,236,225,242,225,226,233, 99,128,252, + 164,243,239,236,225,244,229,228,225,242,225,226,233, 99,128,252, + 14,238,239,239,238,230,233,238,225,236,225,242,225,226,233, 99, + 128,252,115,235,225,244,225,235,225,238, 97,129, 48,198,182, 32, + 232,225,236,230,247,233,228,244,104,128,255,131,108, 2,182, 50, + 182, 69,229,240,232,239,238,101,129, 33, 33,182, 61,226,236,225, + 227,107,128, 38, 14,233,243,232, 97, 2,182, 78,182, 93,231,229, + 228,239,236,225,232,229,226,242,229,119,128, 5,160,241,229,244, + 225,238,225,232,229,226,242,229,119,128, 5,169,110, 4,182,118, + 182,127,182,146,182,167,227,233,242,227,236,101,128, 36,105,233, + 228,229,239,231,242,225,240,232,233,227,240,225,242,229,110,128, + 50, 41,112, 2,182,152,182,159,225,242,229,110,128, 36,125,229, + 242,233,239,100,128, 36,145,242,239,237,225,110,128, 33,121,243, + 104,128, 2,167,116,131, 5,216,182,190,182,210,182,219,228,225, + 231,229,243,104,129,251, 56,182,201,232,229,226,242,229,119,128, + 251, 56,232,229,226,242,229,119,128, 5,216,243,229,227,249,242, + 233,236,236,233, 99,128, 4,181,246,233,114, 2,182,240,182,249, + 232,229,226,242,229,119,128, 5,155,236,229,230,244,232,229,226, + 242,229,119,128, 5,155,104, 6,183, 20,183,172,184, 38,184,170, + 185, 77,186,134, 97, 5,183, 32,183, 42,183, 49,183, 74,183,103, + 226,229,238,231,225,236,105,128, 9,165,228,229,246, 97,128, 9, + 37,231,117, 2,183, 56,183, 65,234,225,242,225,244,105,128, 10, + 165,242,237,245,235,232,105,128, 10, 37,108, 2,183, 80,183, 89, + 225,242,225,226,233, 99,128, 6, 48,230,233,238,225,236,225,242, + 225,226,233, 99,128,254,172,238,244,232,225,235,232,225,116, 3, + 183,118,183,149,183,156,236,239,119, 2,183,126,183,137,236,229, + 230,244,244,232,225,105,128,248,152,242,233,231,232,244,244,232, + 225,105,128,248,151,244,232,225,105,128, 14, 76,245,240,240,229, + 242,236,229,230,244,244,232,225,105,128,248,150,101, 3,183,180, + 183,244,184, 11,104, 4,183,190,183,199,183,213,183,229,225,242, + 225,226,233, 99,128, 6, 43,230,233,238,225,236,225,242,225,226, + 233, 99,128,254,154,233,238,233,244,233,225,236,225,242,225,226, + 233, 99,128,254,155,237,229,228,233,225,236,225,242,225,226,233, + 99,128,254,156,242,101, 2,183,251,184, 4,229,248,233,243,244, + 115,128, 34, 3,230,239,242,101,128, 34, 52,244, 97,130, 3,184, + 184, 20,184, 24, 49,128, 3,209,243,249,237,226,239,236,231,242, + 229,229,107,128, 3,209,105, 2,184, 44,184,130,229,245,244,104, + 4,184, 57,184, 92,184,107,184,116, 97, 2,184, 63,184, 78,227, + 233,242,227,236,229,235,239,242,229,225,110,128, 50,121,240,225, + 242,229,238,235,239,242,229,225,110,128, 50, 25,227,233,242,227, + 236,229,235,239,242,229,225,110,128, 50,107,235,239,242,229,225, + 110,128, 49, 76,240,225,242,229,238,235,239,242,229,225,110,128, + 50, 11,242,244,229,229,110, 2,184,140,184,149,227,233,242,227, + 236,101,128, 36,108,112, 2,184,155,184,162,225,242,229,110,128, + 36,128,229,242,233,239,100,128, 36,148,111, 6,184,184,184,201, + 184,206,184,220,184,225,185, 22,238,225,238,231,237,239,238,244, + 232,239,244,232,225,105,128, 14, 17,239,107,128, 1,173,240,232, + 245,244,232,225,239,244,232,225,105,128, 14, 18,242,110,128, 0, + 254,244,104, 3,184,234,185, 2,185, 12, 97, 2,184,240,184,250, + 232,225,238,244,232,225,105,128, 14, 23,238,244,232,225,105,128, + 14, 16,239,238,231,244,232,225,105,128, 14, 24,245,238,231,244, + 232,225,105,128, 14, 22,245,243,225,238,100, 2,185, 32,185, 43, + 227,249,242,233,236,236,233, 99,128, 4,130,243,243,229,240,225, + 242,225,244,239,114, 2,185, 58,185, 67,225,242,225,226,233, 99, + 128, 6,108,240,229,242,243,233,225,110,128, 6,108,242,229,101, + 144, 0, 51,185,115,185,124,185,134,185,164,185,171,185,181,185, + 206,185,233,186, 11,186, 23,186, 42,186, 53,186, 86,186,108,186, + 116,186,127,225,242,225,226,233, 99,128, 6, 99,226,229,238,231, + 225,236,105,128, 9,233,227,233,242,227,236,101,129, 36, 98,185, + 145,233,238,246,229,242,243,229,243,225,238,243,243,229,242,233, + 102,128, 39,140,228,229,246, 97,128, 9,105,229,233,231,232,244, + 232,115,128, 33, 92,231,117, 2,185,188,185,197,234,225,242,225, + 244,105,128, 10,233,242,237,245,235,232,105,128, 10,105,232, 97, + 2,185,213,185,224,227,235,225,242,225,226,233, 99,128, 6, 99, + 238,231,250,232,239,117,128, 48, 35,105, 2,185,239,186, 1,228, + 229,239,231,242,225,240,232,233,227,240,225,242,229,110,128, 50, + 34,238,230,229,242,233,239,114,128, 32,131,237,239,238,239,243, + 240,225,227,101,128,255, 19,238,245,237,229,242,225,244,239,242, + 226,229,238,231,225,236,105,128, 9,246,239,236,228,243,244,249, + 236,101,128,247, 51,112, 2,186, 59,186, 66,225,242,229,110,128, + 36,118,229,114, 2,186, 73,186, 79,233,239,100,128, 36,138,243, + 233,225,110,128, 6,243,241,245,225,242,244,229,242,115,129, 0, + 190,186, 99,229,237,228,225,243,104,128,246,222,242,239,237,225, + 110,128, 33,114,243,245,240,229,242,233,239,114,128, 0,179,244, + 232,225,105,128, 14, 83,250,243,241,245,225,242,101,128, 51,148, + 105, 7,186,160,186,171,187, 30,187,128,187,140,187,189,187,206, + 232,233,242,225,231,225,238, 97,128, 48, 97,107, 2,186,177,186, + 201,225,244,225,235,225,238, 97,129, 48,193,186,189,232,225,236, + 230,247,233,228,244,104,128,255,129,229,245,116, 4,186,213,186, + 248,187, 7,187, 16, 97, 2,186,219,186,234,227,233,242,227,236, + 229,235,239,242,229,225,110,128, 50,112,240,225,242,229,238,235, + 239,242,229,225,110,128, 50, 16,227,233,242,227,236,229,235,239, + 242,229,225,110,128, 50, 98,235,239,242,229,225,110,128, 49, 55, + 240,225,242,229,238,235,239,242,229,225,110,128, 50, 2,236,228, + 101,133, 2,220,187, 46,187, 57,187, 74,187, 86,187,114,226,229, + 236,239,247,227,237, 98,128, 3, 48, 99, 2,187, 63,187, 68,237, + 98,128, 3, 3,239,237, 98,128, 3, 3,228,239,245,226,236,229, + 227,237, 98,128, 3, 96,111, 2,187, 92,187,102,240,229,242,225, + 244,239,114,128, 34, 60,246,229,242,236,225,249,227,237, 98,128, + 3, 52,246,229,242,244,233,227,225,236,227,237, 98,128, 3, 62, + 237,229,243,227,233,242,227,236,101,128, 34,151,112, 2,187,146, + 187,176,229,232, 97, 2,187,154,187,163,232,229,226,242,229,119, + 128, 5,150,236,229,230,244,232,229,226,242,229,119,128, 5,150, + 240,233,231,245,242,237,245,235,232,105,128, 10,112,244,236,239, + 227,249,242,233,236,236,233,227,227,237, 98,128, 4,131,247,238, + 225,242,237,229,238,233,225,110,128, 5,127,236,233,238,229,226, + 229,236,239,119,128, 30,111,237,239,238,239,243,240,225,227,101, + 128,255, 84,111, 7,188, 3,188, 14,188, 25,188, 50,188,170,188, + 182,189, 10,225,242,237,229,238,233,225,110,128, 5,105,232,233, + 242,225,231,225,238, 97,128, 48,104,235,225,244,225,235,225,238, + 97,129, 48,200,188, 38,232,225,236,230,247,233,228,244,104,128, + 255,132,110, 3,188, 58,188,156,188,161,101, 4,188, 68,188,137, + 188,144,188,150,226,225,114, 4,188, 80,188,109,188,119,188,128, + 229,248,244,242, 97, 2,188, 90,188,100,232,233,231,232,237,239, + 100,128, 2,229,236,239,247,237,239,100,128, 2,233,232,233,231, + 232,237,239,100,128, 2,230,236,239,247,237,239,100,128, 2,232, + 237,233,228,237,239,100,128, 2,231,230,233,246,101,128, 1,189, + 243,233,120,128, 1,133,244,247,111,128, 1,168,239,115,128, 3, + 132,243,241,245,225,242,101,128, 51, 39,240,225,244,225,235,244, + 232,225,105,128, 14, 15,242,244,239,233,243,229,243,232,229,236, + 236,226,242,225,227,235,229,116, 2,188,205,188,235,236,229,230, + 116,130, 48, 20,188,216,188,224,243,237,225,236,108,128,254, 93, + 246,229,242,244,233,227,225,108,128,254, 57,242,233,231,232,116, + 130, 48, 21,188,247,188,255,243,237,225,236,108,128,254, 94,246, + 229,242,244,233,227,225,108,128,254, 58,244,225,239,244,232,225, + 105,128, 14, 21,240, 97, 2,189, 27,189, 39,236,225,244,225,236, + 232,239,239,107,128, 1,171,242,229,110,128, 36,175,114, 3,189, + 53,189, 84,189, 99,225,228,229,237,225,242,107,129, 33, 34,189, + 65,115, 2,189, 71,189, 77,225,238,115,128,248,234,229,242,233, + 102,128,246,219,229,244,242,239,230,236,229,248,232,239,239,107, + 128, 2,136,233,225,103, 4,189,111,189,116,189,121,189,126,228, + 110,128, 37,188,236,102,128, 37,196,242,116,128, 37,186,245,112, + 128, 37,178,115,132, 2,166,189,143,189,182,190, 32,190, 45,225, + 228,105,130, 5,230,189,153,189,173,228,225,231,229,243,104,129, + 251, 70,189,164,232,229,226,242,229,119,128,251, 70,232,229,226, + 242,229,119,128, 5,230,101, 2,189,188,189,199,227,249,242,233, + 236,236,233, 99,128, 4, 70,242,101,134, 5,181,189,216,189,230, + 189,235,189,244,190, 3,190, 19, 49, 2,189,222,189,226, 50,128, + 5,181,101,128, 5,181,178, 98,128, 5,181,232,229,226,242,229, + 119,128, 5,181,238,225,242,242,239,247,232,229,226,242,229,119, + 128, 5,181,241,245,225,242,244,229,242,232,229,226,242,229,119, + 128, 5,181,247,233,228,229,232,229,226,242,229,119,128, 5,181, + 232,229,227,249,242,233,236,236,233, 99,128, 4, 91,245,240,229, + 242,233,239,114,128,246,243,116, 4,190, 65,190,115,190,180,190, + 231, 97, 3,190, 73,190, 83,190, 90,226,229,238,231,225,236,105, + 128, 9,159,228,229,246, 97,128, 9, 31,231,117, 2,190, 97,190, + 106,234,225,242,225,244,105,128, 10,159,242,237,245,235,232,105, + 128, 10, 31,229,104, 4,190,126,190,135,190,149,190,165,225,242, + 225,226,233, 99,128, 6,121,230,233,238,225,236,225,242,225,226, + 233, 99,128,251,103,233,238,233,244,233,225,236,225,242,225,226, + 233, 99,128,251,104,237,229,228,233,225,236,225,242,225,226,233, + 99,128,251,105,232, 97, 3,190,189,190,199,190,206,226,229,238, + 231,225,236,105,128, 9,160,228,229,246, 97,128, 9, 32,231,117, + 2,190,213,190,222,234,225,242,225,244,105,128, 10,160,242,237, + 245,235,232,105,128, 10, 32,245,242,238,229,100,128, 2,135,117, + 3,190,247,191, 2,191, 27,232,233,242,225,231,225,238, 97,128, + 48,100,235,225,244,225,235,225,238, 97,129, 48,196,191, 15,232, + 225,236,230,247,233,228,244,104,128,255,130,243,237,225,236,108, + 2,191, 37,191, 48,232,233,242,225,231,225,238, 97,128, 48, 99, + 235,225,244,225,235,225,238, 97,129, 48,195,191, 61,232,225,236, + 230,247,233,228,244,104,128,255,111,119, 2,191, 79,191,184,101, + 2,191, 85,191,133,236,246,101, 3,191, 95,191,104,191,125,227, + 233,242,227,236,101,128, 36,107,112, 2,191,110,191,117,225,242, + 229,110,128, 36,127,229,242,233,239,100,128, 36,147,242,239,237, + 225,110,128, 33,123,238,244,121, 3,191,143,191,152,191,163,227, + 233,242,227,236,101,128, 36,115,232,225,238,231,250,232,239,117, + 128, 83, 68,112, 2,191,169,191,176,225,242,229,110,128, 36,135, + 229,242,233,239,100,128, 36,155,111,142, 0, 50,191,216,191,225, + 191,235,192, 9,192, 61,192, 86,192,113,192,147,192,159,192,178, + 192,189,192,222,192,230,192,254,225,242,225,226,233, 99,128, 6, + 98,226,229,238,231,225,236,105,128, 9,232,227,233,242,227,236, + 101,129, 36, 97,191,246,233,238,246,229,242,243,229,243,225,238, + 243,243,229,242,233,102,128, 39,139,100, 2,192, 15,192, 21,229, + 246, 97,128, 9,104,239,116, 2,192, 28,192, 39,229,238,236,229, + 225,228,229,114,128, 32, 37,236,229,225,228,229,114,129, 32, 37, + 192, 50,246,229,242,244,233,227,225,108,128,254, 48,231,117, 2, + 192, 68,192, 77,234,225,242,225,244,105,128, 10,232,242,237,245, + 235,232,105,128, 10,104,232, 97, 2,192, 93,192,104,227,235,225, + 242,225,226,233, 99,128, 6, 98,238,231,250,232,239,117,128, 48, + 34,105, 2,192,119,192,137,228,229,239,231,242,225,240,232,233, + 227,240,225,242,229,110,128, 50, 33,238,230,229,242,233,239,114, + 128, 32,130,237,239,238,239,243,240,225,227,101,128,255, 18,238, + 245,237,229,242,225,244,239,242,226,229,238,231,225,236,105,128, + 9,245,239,236,228,243,244,249,236,101,128,247, 50,112, 2,192, + 195,192,202,225,242,229,110,128, 36,117,229,114, 2,192,209,192, + 215,233,239,100,128, 36,137,243,233,225,110,128, 6,242,242,239, + 237,225,110,128, 33,113,115, 2,192,236,192,244,244,242,239,235, + 101,128, 1,187,245,240,229,242,233,239,114,128, 0,178,244,104, + 2,193, 5,193, 10,225,105,128, 14, 82,233,242,228,115,128, 33, + 84,117,145, 0,117,193, 55,193, 63,193,104,193,161,194, 43,194, + 80,194,203,194,219,195, 14,195, 84,195,165,195,174,196, 37,196, + 61,196,169,196,197,197, 55,225,227,245,244,101,128, 0,250, 98, + 4,193, 73,193, 78,193, 87,193, 97,225,114,128, 2,137,229,238, + 231,225,236,105,128, 9,137,239,240,239,237,239,230,111,128, 49, + 40,242,229,246,101,128, 1,109, 99, 3,193,112,193,119,193,151, + 225,242,239,110,128, 1,212,233,242, 99, 2,193,127,193,132,236, + 101,128, 36,228,245,237,230,236,229,120,129, 0,251,193,143,226, + 229,236,239,119,128, 30,119,249,242,233,236,236,233, 99,128, 4, + 67,100, 5,193,173,193,184,193,207,193,213,194, 33,225,244,244, + 225,228,229,246, 97,128, 9, 81,226,108, 2,193,191,193,199,225, + 227,245,244,101,128, 1,113,231,242,225,246,101,128, 2, 21,229, + 246, 97,128, 9, 9,233,229,242,229,243,233,115,133, 0,252,193, + 233,193,241,193,249,194, 16,194, 24,225,227,245,244,101,128, 1, + 216,226,229,236,239,119,128, 30,115, 99, 2,193,255,194, 6,225, + 242,239,110,128, 1,218,249,242,233,236,236,233, 99,128, 4,241, + 231,242,225,246,101,128, 1,220,237,225,227,242,239,110,128, 1, + 214,239,244,226,229,236,239,119,128, 30,229,103, 2,194, 49,194, + 56,242,225,246,101,128, 0,249,117, 2,194, 62,194, 71,234,225, + 242,225,244,105,128, 10,137,242,237,245,235,232,105,128, 10, 9, + 104, 3,194, 88,194, 98,194,176,233,242,225,231,225,238, 97,128, + 48, 70,111, 2,194,104,194,114,239,235,225,226,239,246,101,128, + 30,231,242,110,133, 1,176,194,129,194,137,194,148,194,156,194, + 168,225,227,245,244,101,128, 30,233,228,239,244,226,229,236,239, + 119,128, 30,241,231,242,225,246,101,128, 30,235,232,239,239,235, + 225,226,239,246,101,128, 30,237,244,233,236,228,101,128, 30,239, + 245,238,231,225,242,245,237,236,225,245,116,129, 1,113,194,192, + 227,249,242,233,236,236,233, 99,128, 4,243,233,238,246,229,242, + 244,229,228,226,242,229,246,101,128, 2, 23,107, 3,194,227,194, + 251,195, 6,225,244,225,235,225,238, 97,129, 48,166,194,239,232, + 225,236,230,247,233,228,244,104,128,255,115,227,249,242,233,236, + 236,233, 99,128, 4,121,239,242,229,225,110,128, 49, 92,109, 2, + 195, 20,195, 73, 97, 2,195, 26,195, 59,227,242,239,110,130, 1, + 107,195, 37,195, 48,227,249,242,233,236,236,233, 99,128, 4,239, + 228,233,229,242,229,243,233,115,128, 30,123,244,242,225,231,245, + 242,237,245,235,232,105,128, 10, 65,239,238,239,243,240,225,227, + 101,128,255, 85,110, 2,195, 90,195,145,228,229,242,243,227,239, + 242,101,132, 0, 95,195,109,195,115,195,127,195,138,228,226,108, + 128, 32, 23,237,239,238,239,243,240,225,227,101,128,255, 63,246, + 229,242,244,233,227,225,108,128,254, 51,247,225,246,121,128,254, + 79,105, 2,195,151,195,156,239,110,128, 34, 42,246,229,242,243, + 225,108,128, 34, 0,239,231,239,238,229,107,128, 1,115,112, 5, + 195,186,195,193,195,201,195,216,196, 11,225,242,229,110,128, 36, + 176,226,236,239,227,107,128, 37,128,240,229,242,228,239,244,232, + 229,226,242,229,119,128, 5,196,243,233,236,239,110,131, 3,197, + 195,230,195,251,196, 3,228,233,229,242,229,243,233,115,129, 3, + 203,195,243,244,239,238,239,115,128, 3,176,236,225,244,233,110, + 128, 2,138,244,239,238,239,115,128, 3,205,244,225,227,107, 2, + 196, 20,196, 31,226,229,236,239,247,227,237, 98,128, 3, 29,237, + 239,100,128, 2,212,114, 2,196, 43,196, 55,225,231,245,242,237, + 245,235,232,105,128, 10,115,233,238,103,128, 1,111,115, 3,196, + 69,196, 84,196,129,232,239,242,244,227,249,242,233,236,236,233, + 99,128, 4, 94,237,225,236,108, 2,196, 93,196,104,232,233,242, + 225,231,225,238, 97,128, 48, 69,235,225,244,225,235,225,238, 97, + 129, 48,165,196,117,232,225,236,230,247,233,228,244,104,128,255, + 105,244,242,225,233,231,232,116, 2,196,141,196,152,227,249,242, + 233,236,236,233, 99,128, 4,175,243,244,242,239,235,229,227,249, + 242,233,236,236,233, 99,128, 4,177,244,233,236,228,101,130, 1, + 105,196,181,196,189,225,227,245,244,101,128, 30,121,226,229,236, + 239,119,128, 30,117,117, 5,196,209,196,219,196,226,196,251,197, + 11,226,229,238,231,225,236,105,128, 9,138,228,229,246, 97,128, + 9, 10,231,117, 2,196,233,196,242,234,225,242,225,244,105,128, + 10,138,242,237,245,235,232,105,128, 10, 10,237,225,244,242,225, + 231,245,242,237,245,235,232,105,128, 10, 66,246,239,247,229,236, + 243,233,231,110, 3,197, 27,197, 37,197, 44,226,229,238,231,225, + 236,105,128, 9,194,228,229,246, 97,128, 9, 66,231,245,234,225, + 242,225,244,105,128, 10,194,246,239,247,229,236,243,233,231,110, + 3,197, 71,197, 81,197, 88,226,229,238,231,225,236,105,128, 9, + 193,228,229,246, 97,128, 9, 65,231,245,234,225,242,225,244,105, + 128, 10,193,118,139, 0,118,197,125,198, 17,198, 26,198, 37,198, + 222,198,229,199, 71,199, 83,199,183,199,191,199,212, 97, 4,197, + 135,197,142,197,167,197,178,228,229,246, 97,128, 9, 53,231,117, + 2,197,149,197,158,234,225,242,225,244,105,128, 10,181,242,237, + 245,235,232,105,128, 10, 53,235,225,244,225,235,225,238, 97,128, + 48,247,118,132, 5,213,197,190,197,217,197,249,198, 5,228,225, + 231,229,243,104,130,251, 53,197,203,197,208,182, 53,128,251, 53, + 232,229,226,242,229,119,128,251, 53,104, 2,197,223,197,231,229, + 226,242,229,119,128, 5,213,239,236,225,109,129,251, 75,197,240, + 232,229,226,242,229,119,128,251, 75,246,225,246,232,229,226,242, + 229,119,128, 5,240,249,239,228,232,229,226,242,229,119,128, 5, + 241,227,233,242,227,236,101,128, 36,229,228,239,244,226,229,236, + 239,119,128, 30,127,101, 6,198, 51,198, 62,198,126,198,137,198, + 143,198,210,227,249,242,233,236,236,233, 99,128, 4, 50,104, 4, + 198, 72,198, 81,198, 95,198,111,225,242,225,226,233, 99,128, 6, + 164,230,233,238,225,236,225,242,225,226,233, 99,128,251,107,233, + 238,233,244,233,225,236,225,242,225,226,233, 99,128,251,108,237, + 229,228,233,225,236,225,242,225,226,233, 99,128,251,109,235,225, + 244,225,235,225,238, 97,128, 48,249,238,245,115,128, 38, 64,242, + 244,233,227,225,108, 2,198,154,198,160,226,225,114,128, 0,124, + 236,233,238,101, 4,198,173,198,184,198,195,198,204,225,226,239, + 246,229,227,237, 98,128, 3, 13,226,229,236,239,247,227,237, 98, + 128, 3, 41,236,239,247,237,239,100,128, 2,204,237,239,100,128, + 2,200,247,225,242,237,229,238,233,225,110,128, 5,126,232,239, + 239,107,128, 2,139,105, 3,198,237,198,248,199, 31,235,225,244, + 225,235,225,238, 97,128, 48,248,242,225,237, 97, 3,199, 3,199, + 13,199, 20,226,229,238,231,225,236,105,128, 9,205,228,229,246, + 97,128, 9, 77,231,245,234,225,242,225,244,105,128, 10,205,243, + 225,242,231, 97, 3,199, 43,199, 53,199, 60,226,229,238,231,225, + 236,105,128, 9,131,228,229,246, 97,128, 9, 3,231,245,234,225, + 242,225,244,105,128, 10,131,237,239,238,239,243,240,225,227,101, + 128,255, 86,111, 3,199, 91,199,102,199,172,225,242,237,229,238, + 233,225,110,128, 5,120,233,227,229,100, 2,199,111,199,147,233, + 244,229,242,225,244,233,239,110, 2,199,125,199,136,232,233,242, + 225,231,225,238, 97,128, 48,158,235,225,244,225,235,225,238, 97, + 128, 48,254,237,225,242,235,235,225,238, 97,129, 48,155,199,160, + 232,225,236,230,247,233,228,244,104,128,255,158,235,225,244,225, + 235,225,238, 97,128, 48,250,240,225,242,229,110,128, 36,177,116, + 2,199,197,199,204,233,236,228,101,128, 30,125,245,242,238,229, + 100,128, 2,140,117, 2,199,218,199,229,232,233,242,225,231,225, + 238, 97,128, 48,148,235,225,244,225,235,225,238, 97,128, 48,244, + 119,143, 0,119,200, 18,200,251,201, 5,201, 28,201, 68,201,135, + 201,143,203,114,203,155,203,167,203,242,203,250,204, 1,204, 12, + 204, 21, 97, 8,200, 36,200, 43,200, 53,200, 64,200,102,200,134, + 200,146,200,182,227,245,244,101,128, 30,131,229,235,239,242,229, + 225,110,128, 49, 89,232,233,242,225,231,225,238, 97,128, 48,143, + 107, 2,200, 70,200, 94,225,244,225,235,225,238, 97,129, 48,239, + 200, 82,232,225,236,230,247,233,228,244,104,128,255,156,239,242, + 229,225,110,128, 49, 88,243,237,225,236,108, 2,200,112,200,123, + 232,233,242,225,231,225,238, 97,128, 48,142,235,225,244,225,235, + 225,238, 97,128, 48,238,244,244,239,243,241,245,225,242,101,128, + 51, 87,118, 2,200,152,200,160,229,228,225,243,104,128, 48, 28, + 249,245,238,228,229,242,243,227,239,242,229,246,229,242,244,233, + 227,225,108,128,254, 52,119, 3,200,190,200,199,200,213,225,242, + 225,226,233, 99,128, 6, 72,230,233,238,225,236,225,242,225,226, + 233, 99,128,254,238,232,225,237,250,225,225,226,239,246,101, 2, + 200,228,200,237,225,242,225,226,233, 99,128, 6, 36,230,233,238, + 225,236,225,242,225,226,233, 99,128,254,134,226,243,241,245,225, + 242,101,128, 51,221,227,233,242, 99, 2,201, 14,201, 19,236,101, + 128, 36,230,245,237,230,236,229,120,128, 1,117,100, 2,201, 34, + 201, 44,233,229,242,229,243,233,115,128, 30,133,239,116, 2,201, + 51,201, 60,225,227,227,229,238,116,128, 30,135,226,229,236,239, + 119,128, 30,137,101, 4,201, 78,201, 89,201,101,201,125,232,233, + 242,225,231,225,238, 97,128, 48,145,233,229,242,243,244,242,225, + 243,115,128, 33, 24,107, 2,201,107,201,117,225,244,225,235,225, + 238, 97,128, 48,241,239,242,229,225,110,128, 49, 94,239,235,239, + 242,229,225,110,128, 49, 93,231,242,225,246,101,128, 30,129,232, + 233,244,101, 8,201,164,201,173,202, 1,202, 91,202,175,202,220, + 203, 16,203, 72,226,245,236,236,229,116,128, 37,230, 99, 2,201, + 179,201,199,233,242,227,236,101,129, 37,203,201,189,233,238,246, + 229,242,243,101,128, 37,217,239,242,238,229,242,226,242,225,227, + 235,229,116, 2,201,216,201,236,236,229,230,116,129, 48, 14,201, + 225,246,229,242,244,233,227,225,108,128,254, 67,242,233,231,232, + 116,129, 48, 15,201,246,246,229,242,244,233,227,225,108,128,254, + 68,100, 2,202, 7,202, 48,233,225,237,239,238,100,129, 37,199, + 202, 18,227,239,238,244,225,233,238,233,238,231,226,236,225,227, + 235,243,237,225,236,236,228,233,225,237,239,238,100,128, 37,200, + 239,247,238,240,239,233,238,244,233,238,103, 2,202, 64,202, 80, + 243,237,225,236,236,244,242,233,225,238,231,236,101,128, 37,191, + 244,242,233,225,238,231,236,101,128, 37,189,236,101, 2,202, 98, + 202,140,230,244,240,239,233,238,244,233,238,103, 2,202,113,202, + 129,243,237,225,236,236,244,242,233,225,238,231,236,101,128, 37, + 195,244,242,233,225,238,231,236,101,128, 37,193,238,244,233,227, + 245,236,225,242,226,242,225,227,235,229,116, 2,202,160,202,167, + 236,229,230,116,128, 48, 22,242,233,231,232,116,128, 48, 23,242, + 233,231,232,244,240,239,233,238,244,233,238,103, 2,202,193,202, + 209,243,237,225,236,236,244,242,233,225,238,231,236,101,128, 37, + 185,244,242,233,225,238,231,236,101,128, 37,183,115, 3,202,228, + 203, 2,203, 10,109, 2,202,234,202,246,225,236,236,243,241,245, + 225,242,101,128, 37,171,233,236,233,238,231,230,225,227,101,128, + 38, 58,241,245,225,242,101,128, 37,161,244,225,114,128, 38, 6, + 116, 2,203, 22,203, 33,229,236,229,240,232,239,238,101,128, 38, + 15,239,242,244,239,233,243,229,243,232,229,236,236,226,242,225, + 227,235,229,116, 2,203, 57,203, 64,236,229,230,116,128, 48, 24, + 242,233,231,232,116,128, 48, 25,245,240,240,239,233,238,244,233, + 238,103, 2,203, 87,203,103,243,237,225,236,236,244,242,233,225, + 238,231,236,101,128, 37,181,244,242,233,225,238,231,236,101,128, + 37,179,105, 2,203,120,203,131,232,233,242,225,231,225,238, 97, + 128, 48,144,107, 2,203,137,203,147,225,244,225,235,225,238, 97, + 128, 48,240,239,242,229,225,110,128, 49, 95,237,239,238,239,243, + 240,225,227,101,128,255, 87,111, 4,203,177,203,188,203,213,203, + 231,232,233,242,225,231,225,238, 97,128, 48,146,235,225,244,225, + 235,225,238, 97,129, 48,242,203,201,232,225,236,230,247,233,228, + 244,104,128,255,102,110,129, 32,169,203,219,237,239,238,239,243, + 240,225,227,101,128,255,230,247,225,229,238,244,232,225,105,128, + 14, 39,240,225,242,229,110,128, 36,178,242,233,238,103,128, 30, + 152,243,245,240,229,242,233,239,114,128, 2,183,244,245,242,238, + 229,100,128, 2,141,249,238,110,128, 1,191,120,137, 0,120,204, + 49,204, 60,204, 71,204, 80,204,107,204,120,204,124,204,136,204, + 144,225,226,239,246,229,227,237, 98,128, 3, 61,226,239,240,239, + 237,239,230,111,128, 49, 18,227,233,242,227,236,101,128, 36,231, + 100, 2,204, 86,204, 96,233,229,242,229,243,233,115,128, 30,141, + 239,244,225,227,227,229,238,116,128, 30,139,229,232,225,242,237, + 229,238,233,225,110,128, 5,109,105,128, 3,190,237,239,238,239, + 243,240,225,227,101,128,255, 88,240,225,242,229,110,128, 36,179, + 243,245,240,229,242,233,239,114,128, 2,227,121,143, 0,121,204, + 189,205,148,205,171,205,211,207,177,207,185,207,202,208, 10,208, + 22,209, 19,209, 59,209, 71,209, 82,209,103,210, 76, 97, 11,204, + 213,204,225,204,235,204,242,204,249,205, 3,205, 28,205, 39,205, + 77,205, 90,205,136,225,228,239,243,241,245,225,242,101,128, 51, + 78,226,229,238,231,225,236,105,128, 9,175,227,245,244,101,128, + 0,253,228,229,246, 97,128, 9, 47,229,235,239,242,229,225,110, + 128, 49, 82,231,117, 2,205, 10,205, 19,234,225,242,225,244,105, + 128, 10,175,242,237,245,235,232,105,128, 10, 47,232,233,242,225, + 231,225,238, 97,128, 48,132,107, 2,205, 45,205, 69,225,244,225, + 235,225,238, 97,129, 48,228,205, 57,232,225,236,230,247,233,228, + 244,104,128,255,148,239,242,229,225,110,128, 49, 81,237,225,235, + 235,225,238,244,232,225,105,128, 14, 78,243,237,225,236,108, 2, + 205,100,205,111,232,233,242,225,231,225,238, 97,128, 48,131,235, + 225,244,225,235,225,238, 97,129, 48,227,205,124,232,225,236,230, + 247,233,228,244,104,128,255,108,244,227,249,242,233,236,236,233, + 99,128, 4, 99,227,233,242, 99, 2,205,157,205,162,236,101,128, + 36,232,245,237,230,236,229,120,128, 1,119,100, 2,205,177,205, + 187,233,229,242,229,243,233,115,128, 0,255,239,116, 2,205,194, + 205,203,225,227,227,229,238,116,128, 30,143,226,229,236,239,119, + 128, 30,245,101, 7,205,227,206,235,206,244,207, 6,207, 38,207, + 114,207,165,104, 8,205,245,205,254,206, 32,206, 46,206,119,206, + 135,206,194,206,212,225,242,225,226,233, 99,128, 6, 74,226,225, + 242,242,229,101, 2,206, 9,206, 18,225,242,225,226,233, 99,128, + 6,210,230,233,238,225,236,225,242,225,226,233, 99,128,251,175, + 230,233,238,225,236,225,242,225,226,233, 99,128,254,242,232,225, + 237,250,225,225,226,239,246,101, 4,206, 65,206, 74,206, 88,206, + 104,225,242,225,226,233, 99,128, 6, 38,230,233,238,225,236,225, + 242,225,226,233, 99,128,254,138,233,238,233,244,233,225,236,225, + 242,225,226,233, 99,128,254,139,237,229,228,233,225,236,225,242, + 225,226,233, 99,128,254,140,233,238,233,244,233,225,236,225,242, + 225,226,233, 99,128,254,243,237,101, 2,206,142,206,155,228,233, + 225,236,225,242,225,226,233, 99,128,254,244,229,237,105, 2,206, + 163,206,178,238,233,244,233,225,236,225,242,225,226,233, 99,128, + 252,221,243,239,236,225,244,229,228,225,242,225,226,233, 99,128, + 252, 88,238,239,239,238,230,233,238,225,236,225,242,225,226,233, + 99,128,252,148,244,232,242,229,229,228,239,244,243,226,229,236, + 239,247,225,242,225,226,233, 99,128, 6,209,235,239,242,229,225, + 110,128, 49, 86,110,129, 0,165,206,250,237,239,238,239,243,240, + 225,227,101,128,255,229,111, 2,207, 12,207, 21,235,239,242,229, + 225,110,128, 49, 85,242,233,238,232,233,229,245,232,235,239,242, + 229,225,110,128, 49,134,114, 3,207, 46,207, 82,207, 94,225,232, + 226,229,238,249,239,237,111, 2,207, 60,207, 69,232,229,226,242, + 229,119,128, 5,170,236,229,230,244,232,229,226,242,229,119,128, + 5,170,233,227,249,242,233,236,236,233, 99,128, 4, 75,245,228, + 233,229,242,229,243,233,243,227,249,242,233,236,236,233, 99,128, + 4,249,243,233,229,245,238,103, 3,207,127,207,136,207,152,235, + 239,242,229,225,110,128, 49,129,240,225,238,243,233,239,243,235, + 239,242,229,225,110,128, 49,131,243,233,239,243,235,239,242,229, + 225,110,128, 49,130,244,233,246,232,229,226,242,229,119,128, 5, + 154,231,242,225,246,101,128, 30,243,232,239,239,107,129, 1,180, + 207,194,225,226,239,246,101,128, 30,247,105, 5,207,214,207,225, + 207,236,207,245,207,253,225,242,237,229,238,233,225,110,128, 5, + 117,227,249,242,233,236,236,233, 99,128, 4, 87,235,239,242,229, + 225,110,128, 49, 98,238,249,225,238,103,128, 38, 47,247,238,225, + 242,237,229,238,233,225,110,128, 5,130,237,239,238,239,243,240, + 225,227,101,128,255, 89,111, 7,208, 38,208,108,208,119,208,129, + 208,167,208,213,208,222,100,131, 5,217,208, 48,208, 68,208, 77, + 228,225,231,229,243,104,129,251, 57,208, 59,232,229,226,242,229, + 119,128,251, 57,232,229,226,242,229,119,128, 5,217,249,239,100, + 2,208, 85,208, 94,232,229,226,242,229,119,128, 5,242,240,225, + 244,225,232,232,229,226,242,229,119,128,251, 31,232,233,242,225, + 231,225,238, 97,128, 48,136,233,235,239,242,229,225,110,128, 49, + 137,107, 2,208,135,208,159,225,244,225,235,225,238, 97,129, 48, + 232,208,147,232,225,236,230,247,233,228,244,104,128,255,150,239, + 242,229,225,110,128, 49, 91,243,237,225,236,108, 2,208,177,208, + 188,232,233,242,225,231,225,238, 97,128, 48,135,235,225,244,225, + 235,225,238, 97,129, 48,231,208,201,232,225,236,230,247,233,228, + 244,104,128,255,110,244,231,242,229,229,107,128, 3,243,121, 2, + 208,228,209, 9, 97, 2,208,234,208,244,229,235,239,242,229,225, + 110,128, 49,136,107, 2,208,250,209, 2,239,242,229,225,110,128, + 49,135,244,232,225,105,128, 14, 34,233,238,231,244,232,225,105, + 128, 14, 13,112, 2,209, 25,209, 32,225,242,229,110,128, 36,180, + 239,231,229,231,242,225,237,237,229,238,105,129, 3,122,209, 48, + 231,242,229,229,235,227,237, 98,128, 3, 69,114,129, 1,166,209, + 65,233,238,103,128, 30,153,243,245,240,229,242,233,239,114,128, + 2,184,116, 2,209, 88,209, 95,233,236,228,101,128, 30,249,245, + 242,238,229,100,128, 2,142,117, 5,209,115,209,126,209,136,209, + 174,210, 50,232,233,242,225,231,225,238, 97,128, 48,134,233,235, + 239,242,229,225,110,128, 49,140,107, 2,209,142,209,166,225,244, + 225,235,225,238, 97,129, 48,230,209,154,232,225,236,230,247,233, + 228,244,104,128,255,149,239,242,229,225,110,128, 49, 96,115, 3, + 209,182,209,220,210, 5,226,233,103, 2,209,190,209,201,227,249, + 242,233,236,236,233, 99,128, 4,107,233,239,244,233,230,233,229, + 228,227,249,242,233,236,236,233, 99,128, 4,109,236,233,244,244, + 236,101, 2,209,231,209,242,227,249,242,233,236,236,233, 99,128, + 4,103,233,239,244,233,230,233,229,228,227,249,242,233,236,236, + 233, 99,128, 4,105,237,225,236,108, 2,210, 14,210, 25,232,233, + 242,225,231,225,238, 97,128, 48,133,235,225,244,225,235,225,238, + 97,129, 48,229,210, 38,232,225,236,230,247,233,228,244,104,128, + 255,109,249,101, 2,210, 57,210, 66,235,239,242,229,225,110,128, + 49,139,239,235,239,242,229,225,110,128, 49,138,249, 97, 2,210, + 83,210, 93,226,229,238,231,225,236,105,128, 9,223,228,229,246, + 97,128, 9, 95,122,142, 0,122,210,132,211,140,211,151,211,194, + 211,221,213, 0,213,108,213,150,213,162,213,174,213,202,213,210, + 213,226,213,235, 97, 10,210,154,210,165,210,172,210,179,210,190, + 211, 12,211, 42,211, 53,211, 89,211,101,225,242,237,229,238,233, + 225,110,128, 5,102,227,245,244,101,128, 1,122,228,229,246, 97, + 128, 9, 91,231,245,242,237,245,235,232,105,128, 10, 91,104, 4, + 210,200,210,209,210,223,210,253,225,242,225,226,233, 99,128, 6, + 56,230,233,238,225,236,225,242,225,226,233, 99,128,254,198,105, + 2,210,229,210,244,238,233,244,233,225,236,225,242,225,226,233, + 99,128,254,199,242,225,231,225,238, 97,128, 48, 86,237,229,228, + 233,225,236,225,242,225,226,233, 99,128,254,200,233,110, 2,211, + 19,211, 28,225,242,225,226,233, 99,128, 6, 50,230,233,238,225, + 236,225,242,225,226,233, 99,128,254,176,235,225,244,225,235,225, + 238, 97,128, 48,182,241,229,102, 2,211, 61,211, 75,231,225,228, + 239,236,232,229,226,242,229,119,128, 5,149,241,225,244,225,238, + 232,229,226,242,229,119,128, 5,148,242,241,225,232,229,226,242, + 229,119,128, 5,152,249,233,110,130, 5,214,211,111,211,131,228, + 225,231,229,243,104,129,251, 54,211,122,232,229,226,242,229,119, + 128,251, 54,232,229,226,242,229,119,128, 5,214,226,239,240,239, + 237,239,230,111,128, 49, 23, 99, 3,211,159,211,166,211,188,225, + 242,239,110,128, 1,126,233,242, 99, 2,211,174,211,179,236,101, + 128, 36,233,245,237,230,236,229,120,128, 30,145,245,242,108,128, + 2,145,228,239,116,130, 1,124,211,204,211,213,225,227,227,229, + 238,116,128, 1,124,226,229,236,239,119,128, 30,147,101, 6,211, + 235,211,246,212, 33,212, 44,212, 55,212,251,227,249,242,233,236, + 236,233, 99,128, 4, 55,100, 2,211,252,212, 15,229,243,227,229, + 238,228,229,242,227,249,242,233,236,236,233, 99,128, 4,153,233, + 229,242,229,243,233,243,227,249,242,233,236,236,233, 99,128, 4, + 223,232,233,242,225,231,225,238, 97,128, 48, 92,235,225,244,225, + 235,225,238, 97,128, 48,188,242,111,140, 0, 48,212, 84,212, 93, + 212,103,212,110,212,135,212,148,212,159,212,171,212,182,212,192, + 212,203,212,210,225,242,225,226,233, 99,128, 6, 96,226,229,238, + 231,225,236,105,128, 9,230,228,229,246, 97,128, 9,102,231,117, + 2,212,117,212,126,234,225,242,225,244,105,128, 10,230,242,237, + 245,235,232,105,128, 10,102,232,225,227,235,225,242,225,226,233, + 99,128, 6, 96,233,238,230,229,242,233,239,114,128, 32,128,237, + 239,238,239,243,240,225,227,101,128,255, 16,239,236,228,243,244, + 249,236,101,128,247, 48,240,229,242,243,233,225,110,128, 6,240, + 243,245,240,229,242,233,239,114,128, 32,112,244,232,225,105,128, + 14, 80,247,233,228,244,104, 3,212,222,212,231,212,243,234,239, + 233,238,229,114,128,254,255,238,239,238,234,239,233,238,229,114, + 128, 32, 12,243,240,225,227,101,128, 32, 11,244, 97,128, 3,182, + 104, 2,213, 6,213, 17,226,239,240,239,237,239,230,111,128, 49, + 19,101, 4,213, 27,213, 38,213, 54,213, 65,225,242,237,229,238, + 233,225,110,128, 5,106,226,242,229,246,229,227,249,242,233,236, + 236,233, 99,128, 4,194,227,249,242,233,236,236,233, 99,128, 4, + 54,100, 2,213, 71,213, 90,229,243,227,229,238,228,229,242,227, + 249,242,233,236,236,233, 99,128, 4,151,233,229,242,229,243,233, + 243,227,249,242,233,236,236,233, 99,128, 4,221,105, 3,213,116, + 213,127,213,138,232,233,242,225,231,225,238, 97,128, 48, 88,235, + 225,244,225,235,225,238, 97,128, 48,184,238,239,242,232,229,226, + 242,229,119,128, 5,174,236,233,238,229,226,229,236,239,119,128, + 30,149,237,239,238,239,243,240,225,227,101,128,255, 90,111, 2, + 213,180,213,191,232,233,242,225,231,225,238, 97,128, 48, 94,235, + 225,244,225,235,225,238, 97,128, 48,190,240,225,242,229,110,128, + 36,181,242,229,244,242,239,230,236,229,248,232,239,239,107,128, + 2,144,243,244,242,239,235,101,128, 1,182,117, 2,213,241,213, + 252,232,233,242,225,231,225,238, 97,128, 48, 90,235,225,244,225, + 235,225,238, 97,128, 48,186 +}; + + + /* this is the wicked routine used to search our compressed + * table efficiently + */ + static unsigned long + ft_get_adobe_glyph_index( const char* name, + const char* limit ) + { + int c = 0; + int count, min, max; + const unsigned char* p = ft_adobe_glyph_list; + + if ( name == 0 || name >= limit ) + goto NotFound; + + c = *name++; + count = p[1]; + p += 2; + + min = 0; + max = count; + + while ( min < max ) + { + int mid = (min+max) >> 1; + const unsigned char* q = p + mid*2; + int c2; + + q = ft_adobe_glyph_list + (((int)q[0] << 8) | q[1]); + + c2 = q[0] & 127; + if ( c2 == c ) + { + p = q; + goto Found; + } + if ( c2 < c ) + min = mid+1; + else + max = mid; + } + goto NotFound; + + Found: + for (;;) + { + /* assert (*p & 127) == c */ + + if ( name >= limit ) + { + if ( (p[0] & 128) == 0 && + (p[1] & 128) != 0 ) + return (unsigned long)(((int)p[2] << 8) | p[3]); + + goto NotFound; + } + c = *name++; + if ( p[0] & 128 ) + { + p++; + if ( c != (p[0] & 127) ) + goto NotFound; + + continue; + } + + p++; + count = p[0] & 127; + if ( p[0] & 128 ) + p += 2; + + p++; + + for ( ; count > 0; count--, p += 2 ) + { + int offset = ((int)p[0] << 8) | p[1]; + const unsigned char* q = ft_adobe_glyph_list + offset; + + if ( c == (q[0] & 127) ) + { + p = q; + goto NextIter; + } + } + goto NotFound; + + NextIter: + ; + } + + NotFound: + return 0; + } + +/* END */ diff --git a/src/tools/glnames.py b/src/tools/glnames.py index e8e80ec6c..81f8dac07 100644 --- a/src/tools/glnames.py +++ b/src/tools/glnames.py @@ -27,7 +27,7 @@ usage: %s """ -import sys, string +import sys, string, struct # This table is used to name the glyphs according to the Macintosh @@ -412,6 +412,7 @@ t1_expert_encoding = \ # version 2.0, 22 Sept 2002. It is available from # # http://partners.adobe.com/asn/developer/typeforum/unicodegn.html +# http://partners.adobe.com/public/developer/en/opentype/glyphlist.txt # adobe_glyph_list = """\ A;0041 @@ -4698,6 +4699,174 @@ zukatakana;30BA """ +# string table management +# +class StringTable: + def __init__(self,name_list): + self.names = name_list + self.indices = {} + index = 0 + + for name in name_list: + self.indices[name] = index + index += len(name) + 1 + + self.total = index + + def dump(self,file,table_name): + write = file.write + write( "static const char " + table_name + "["+repr(self.total)+"] =\n" ) + write( "{\n" ) + column = 0 + line = " " + comma = "" + for name in self.names: + for n in range(len(name)): + line += comma + line += "'%c'" % name[n] + comma = "," + column += 1 + if column == 16: + column = 0 + comma = ",\n " + line += comma + line += " 0 " + comma = "," + column += 1 + if column == 16: + column = 0 + comma = ",\n " + + if column != 0: + line += "\n" + + write( line + "};\n\n" ) + + def dump_sublist(self,file,table_name,macro_name,sublist): + write = file.write + write( "#define "+macro_name+" "+repr(len(sublist))+"\n\n" ) + write( "static const short " + table_name + "["+repr(len(sublist))+"] =\n" ) + write( "{\n" ) + line = " " + comma = "" + col = 0 + for name in sublist: + line += comma + line += "%4d" % self.indices[name] + col += 1 + comma = "," + if col == 14: + col = 0 + comma = ",\n " + + write( line + "\n};\n\n" ) + + +class StringNode: + def __init__(self,letter,value): + self.letter = letter + self.value = value + self.children = {} + + def __cmp__(self,other): + return ord(self.letter[0]) - ord(other.letter[0]) + + def add(self,word,value): + if len(word) == 0: + self.value = value + return + letter = word[0] + word = word[1:] + if self.children.has_key(letter): + child = self.children[letter] + else: + child = StringNode(letter,0) + self.children[letter] = child + child.add(word,value) + + def optimize(self): + # optimize all children first + children = self.children.values() + self.children = {} + for child in children: + self.children[child.letter[0]] = child.optimize() + + # don't optimize if there's a value, + # if we don't have any child or if we + # have more than one child + if (self.value != 0) or (not children) or len(children) > 1: + return self + + child = children[0] + self.letter += child.letter + self.value = child.value + self.children = child.children + return self + + def dump_debug(self,write,margin): + # this is used during debugging + line = margin + "+-" + if len(self.letter) == 0: + line += "" + else: + line += self.letter + + if self.value: + line += " => " + repr(self.value) + + write( line+"\n" ) + if self.children: + margin += "| " + for child in self.children.values(): + child.dump_debug(write,margin) + + def locate(self,index): + self.index = index + if len(self.letter) > 0: + index += len(self.letter)+1 + else: + index += 2 + + if self.value != 0: + index += 2 + + children = self.children.values() + children.sort() + index += 2*len(children) + for child in children: + index = child.locate(index) + + return index + + def store(self,storage): + # write the letters + l = len(self.letter) + if l == 0: + storage += struct.pack("B",0) + else: + for n in range(l): + val = ord(self.letter[n]) + if n < l-1: + val += 128 + storage += struct.pack("B",val) + + # write the count + children = self.children.values() + children.sort() + count = len(children) + if self.value != 0: + storage += struct.pack( "!BH", count+128, self.value ) + else: + storage += struct.pack( "B", count ) + + for child in children: + storage += struct.pack( "!H", child.index ) + + for child in children: + storage = child.store(storage) + + return storage + t1_bias = 0 glyph_list = [] @@ -4751,108 +4920,56 @@ def filter_glyph_names( alist, filter ): return extras -def dump_mac_indices( file, all_glyphs ): - write = file.write - - write( " static const unsigned short mac_standard_names[" + \ - repr( len( mac_standard_names ) + 1 ) + "] =\n" ) - write( " {\n" ) - - for name in mac_standard_names: - write( " " + repr( all_glyphs.index( name ) ) + ",\n" ) - - write( " 0\n" ) - write( " };\n" ) - write( "\n" ) - write( "\n" ) - - -def dump_glyph_list( file, base_list, adobe_list ): - write = file.write - - name_list = [] - - write( " static const char* const ps_glyph_names[] =\n" ) - write( " {\n" ) - - for name in base_list: - write( ' "' + name + '",\n' ) - name_list.append( name ) - - write( "\n" ) - write( "#ifdef FT_CONFIG_OPTION_ADOBE_GLYPH_LIST\n" ) - write( "\n" ) - - for name in adobe_list: - write( ' "' + name + '",\n' ) - name_list.append( name ) - - write( "\n" ) - write( "#endif /* FT_CONFIG_OPTION_ADOBE_GLYPH_LIST */\n" ) - write( "\n" ) - write( " NULL\n" ) - write( " };\n" ) - write( "\n" ) - write( "\n" ) - - return name_list - - -def dump_unicode_values( file, sid_list, adobe_list ): - """build the glyph names to unicode values table""" - - write = file.write - - agl_names, agl_unicodes = adobe_glyph_values() - - write( "\n" ) - write( " static const unsigned short ps_names_to_unicode[" + \ - repr( len( sid_list ) + len( adobe_list ) + 1 ) + "] =\n" ) - write( " {\n" ) - - for name in sid_list: - try: - index = agl_names.index( name ) - write( " 0x" + agl_unicodes[index] + "U,\n" ) - except: - write( " 0,\n" ) - - write( "\n" ) - write( "#ifdef FT_CONFIG_OPTION_ADOBE_GLYPH_LIST\n" ) - write( "\n" ) - - for name in adobe_list: - try: - index = agl_names.index( name ) - write( " 0x" + agl_unicodes[index] + "U,\n" ) - except: - write( " 0,\n" ) - - write( "\n" ) - write( "#endif /* FT_CONFIG_OPTION_ADOBE_GLYPH_LIST */\n" ) - write( " 0\n" ) - write( " };\n" ) - write( "\n" ) - write( "\n" ) - write( "\n" ) - def dump_encoding( file, encoding_name, encoding_list ): """dumps a given encoding""" write = file.write + write( "/* the following are indices into the SID name table */\n" ) + write( "static const unsigned short " + encoding_name + "[" + \ + repr( len( encoding_list ) ) + "] =\n" ) + write( "{\n" ) + + line = " " + comma = "" + col = 0 + for value in encoding_list: + line += comma + line += "%3d" % value + comma = "," + col += 1 + if col == 16: + col = 0 + comma = ",\n " + + write( line + "\n};\n\n" ) + + +def dump_array( the_array, write, array_name ): + """dumps a given encoding""" - write( " static const unsigned short " + encoding_name + "[" + \ - repr( len( encoding_list ) + 1 ) + "] =\n" ) - write( " {\n" ) - - for value in encoding_list: - write( " " + repr( value ) + ",\n" ) - write( " 0\n" ) - write( " };\n" ) - write( "\n" ) - write( "\n" ) - + write( "static const unsigned char " + array_name + "[" + \ + repr(len(the_array)) + "] =\n" ) + write( "{\n" ) + line = "" + comma = " " + col = 0 + for value in the_array: + line += comma + line += "%3d" % ord(value) + comma = "," + col += 1 + if col == 16: + col = 0 + comma = ",\n " + + if len(line) > 1024: + write( line ) + line = "" + + write( line + "\n};\n\n" ) + + def main(): """main program body""" @@ -4867,13 +4984,11 @@ def main(): count_sid = len( sid_standard_names ) # 'mac_extras' contains the list of glyph names in the Macintosh standard - # encoding which are not in either the Adobe Glyph List or the SID - # Standard Names. + # encoding which are not in the SID Standard Names. # - mac_extras = filter_glyph_names( mac_standard_names, adobe_glyph_names() ) - mac_extras = filter_glyph_names( mac_extras, sid_standard_names ) + mac_extras = filter_glyph_names( mac_standard_names, sid_standard_names ) - # 'base_list' contains the first names of our final glyph names table. + # 'base_list' contains the names of our final glyph names table. # It consists of the 'mac_extras' glyph names, followed by the SID # Standard names. # @@ -4881,22 +4996,15 @@ def main(): t1_bias = mac_extras_count base_list = mac_extras + sid_standard_names - # 'adobe_list' contains the glyph names that are in the AGL, but not in - # the base_list; they will be placed after base_list glyph names in - # our final table. - # - adobe_list = filter_glyph_names( adobe_glyph_names(), base_list ) - adobe_count = len( adobe_list ) - write( "/***************************************************************************/\n" ) write( "/* */\n" ) write( "/* %-71s*/\n" % sys.argv[1] ) write( "/* */\n" ) - write( "/* PostScript glyph names (specification only). */\n" ) + write( "/* PostScript glyph names. */\n" ) write( "/* */\n" ) - write( "/* Copyright 2000-2001, 2003 by */\n" ) + write( "/* Copyright 2005 by */\n" ) write( "/* David Turner, Robert Wilhelm, and Werner Lemberg. */\n" ) write( "/* */\n" ) write( "/* This file is part of the FreeType project, and may only be used, */\n" ) @@ -4908,42 +5016,190 @@ def main(): write( "/***************************************************************************/\n" ) write( "\n" ) write( "\n" ) - write( " /* this file has been generated automatically -- do not edit! */\n" ) + write( " /* ALL of this file has been generated automatically -- do not edit! */\n" ) write( "\n" ) write( "\n" ) - # dump final glyph list (mac extras + sid standard names + AGL glyph names) + # dump final glyph list (mac extras + sid standard names) # - name_list = dump_glyph_list( file, base_list, adobe_list ) - - # dump t1_standard_list - write( " static const char* const * const sid_standard_names = " \ - + "ps_glyph_names + " + repr( t1_bias ) + ";\n" ) - write( "\n" ) - write( "\n" ) - - write( "#define NUM_SID_GLYPHS " + repr( len( sid_standard_names ) ) + "\n" ) - write( "\n" ) - write( "#ifdef FT_CONFIG_OPTION_ADOBE_GLYPH_LIST\n" ) - write( "#define NUM_ADOBE_GLYPHS " + \ - repr( len( base_list ) + len( adobe_list ) - t1_bias ) + "\n" ) - write( "#else\n" ) - write( "#define NUM_ADOBE_GLYPHS " + \ - repr( len( base_list ) - t1_bias ) + "\n" ) - write( "#endif\n" ) - write( "\n" ) - write( "\n" ) - - # dump mac indices table - dump_mac_indices( file, name_list ) - - # dump unicode values table - dump_unicode_values( file, sid_standard_names, adobe_list ) + st = StringTable(base_list) + + st.dump(file,"ft_standard_glyph_names") + st.dump_sublist(file,"ft_mac_names","FT_NUM_MAC_NAMES",mac_standard_names) + st.dump_sublist(file,"ft_sid_names","FT_NUM_SID_NAMES",sid_standard_names) dump_encoding( file, "t1_standard_encoding", t1_standard_encoding ) dump_encoding( file, "t1_expert_encoding", t1_expert_encoding ) - - write( "/* END */\n" ) + + # dump the AGL in its compressed form + # + agl_glyphs, agl_values = adobe_glyph_values() + dict = StringNode( "", 0 ) + for g in range(len(agl_glyphs)): + dict.add(agl_glyphs[g],eval("0x"+agl_values[g])) + + dict = dict.optimize() + dict_len = dict.locate(0) + dict_array = dict.store("") + + write( """ + /* this table is a compressed version of the Adobe Glyph List + * which has been optimized for efficient searching. It has + * been generated by the 'glnames.py' python script located + * in the 'src/tools' directory. + * + * the corresponding lookup function is defined just below + * the table (several pages down this text :-) + */ +""" ) + + dump_array(dict_array,write,"ft_adobe_glyph_list") + + # write the lookup routine now + # + write( """ + /* this is the wicked routine used to search our compressed + * table efficiently + */ + static unsigned long + ft_get_adobe_glyph_index( const char* name, + const char* limit ) + { + int c = 0; + int count, min, max; + const unsigned char* p = ft_adobe_glyph_list; + + if ( name == 0 || name >= limit ) + goto NotFound; + + c = *name++; + count = p[1]; + p += 2; + + min = 0; + max = count; + + while ( min < max ) + { + int mid = (min+max) >> 1; + const unsigned char* q = p + mid*2; + int c2; + + q = ft_adobe_glyph_list + (((int)q[0] << 8) | q[1]); + + c2 = q[0] & 127; + if ( c2 == c ) + { + p = q; + goto Found; + } + if ( c2 < c ) + min = mid+1; + else + max = mid; + } + goto NotFound; + + Found: + for (;;) + { + /* assert (*p & 127) == c */ + + if ( name >= limit ) + { + if ( (p[0] & 128) == 0 && + (p[1] & 128) != 0 ) + return (unsigned long)(((int)p[2] << 8) | p[3]); + + goto NotFound; + } + c = *name++; + if ( p[0] & 128 ) + { + p++; + if ( c != (p[0] & 127) ) + goto NotFound; + + continue; + } + + p++; + count = p[0] & 127; + if ( p[0] & 128 ) + p += 2; + + p++; + + for ( ; count > 0; count--, p += 2 ) + { + int offset = ((int)p[0] << 8) | p[1]; + const unsigned char* q = ft_adobe_glyph_list + offset; + + if ( c == (q[0] & 127) ) + { + p = q; + goto NextIter; + } + } + goto NotFound; + + NextIter: + ; + } + + NotFound: + return 0; + } + +""" ) + + if 0: # generate unit test, or don't + # + # now write the unit test to check that everything works OK + # + write( "#ifdef TEST\n\n" ) + + write( "static const char* const the_names[] = {\n" ) + for name in agl_glyphs: + write( ' "'+name+'",\n' ) + write( " 0\n};\n" ) + + write( "static const unsigned long the_values[] = {\n" ) + for val in agl_values: + write( ' 0x'+val+',\n' ) + write( " 0\n};\n" ) + + write( """ +#include +#include + + int main( void ) + { + int result = 0; + const char* const* names = the_names; + const unsigned long* values = the_values; + + for ( ; *names; names++, values++ ) + { + const char* name = *names; + unsigned long reference = *values; + unsigned long value; + + value = ft_get_adobe_glyph_index( name, name + strlen(name) ); + if ( value != reference ) + { + result = 1; + fprintf( stderr, "name '%s' => %04x instead of %04x\\n", + name, value, reference ); + } + } + + return result; + } +""" ) + write( "#endif /* TEST */\n" ) + + write("/* END */\n") # Now run the main routine