github.com/andybalholm/giopdf@v0.0.0-20220317170119-aad9a095ad48/pdf/name.go (about) 1 // Derived from http://www.jdawiseman.com/papers/trivia/character-entities.html 2 3 package pdf 4 5 var nameToRune = map[string]rune{ 6 "nbspace": 0x00A0, 7 "nonbreakingspace": 0x00A0, 8 "exclamdown": 0x00A1, 9 "cent": 0x00A2, 10 "sterling": 0x00A3, 11 "currency": 0x00A4, 12 "yen": 0x00A5, 13 "brokenbar": 0x00A6, 14 "section": 0x00A7, 15 "dieresis": 0x00A8, 16 "copyright": 0x00A9, 17 "ordfeminine": 0x00AA, 18 "guillemotleft": 0x00AB, 19 "logicalnot": 0x00AC, 20 "sfthyphen": 0x00AD, 21 "softhyphen": 0x00AD, 22 "registered": 0x00AE, 23 "macron": 0x00AF, 24 "overscore": 0x00AF, 25 "degree": 0x00B0, 26 "plusminus": 0x00B1, 27 "twosuperior": 0x00B2, 28 "threesuperior": 0x00B3, 29 "acute": 0x00B4, 30 "mu": 0x00B5, 31 "mu1": 0x00B5, 32 "paragraph": 0x00B6, 33 "middot": 0x00B7, 34 "periodcentered": 0x00B7, 35 "cedilla": 0x00B8, 36 "onesuperior": 0x00B9, 37 "ordmasculine": 0x00BA, 38 "guillemotright": 0x00BB, 39 "onequarter": 0x00BC, 40 "onehalf": 0x00BD, 41 "threequarters": 0x00BE, 42 "questiondown": 0x00BF, 43 "Agrave": 0x00C0, 44 "Aacute": 0x00C1, 45 "Acircumflex": 0x00C2, 46 "Atilde": 0x00C3, 47 "Adieresis": 0x00C4, 48 "Aring": 0x00C5, 49 "AE": 0x00C6, 50 "Ccedilla": 0x00C7, 51 "Egrave": 0x00C8, 52 "Eacute": 0x00C9, 53 "Ecircumflex": 0x00CA, 54 "Edieresis": 0x00CB, 55 "Igrave": 0x00CC, 56 "Iacute": 0x00CD, 57 "Icircumflex": 0x00CE, 58 "Idieresis": 0x00CF, 59 "Eth": 0x00D0, 60 "Ntilde": 0x00D1, 61 "Ograve": 0x00D2, 62 "Oacute": 0x00D3, 63 "Ocircumflex": 0x00D4, 64 "Otilde": 0x00D5, 65 "Odieresis": 0x00D6, 66 "multiply": 0x00D7, 67 "Oslash": 0x00D8, 68 "Ugrave": 0x00D9, 69 "Uacute": 0x00DA, 70 "Ucircumflex": 0x00DB, 71 "Udieresis": 0x00DC, 72 "Yacute": 0x00DD, 73 "Thorn": 0x00DE, 74 "germandbls": 0x00DF, 75 "agrave": 0x00E0, 76 "aacute": 0x00E1, 77 "acircumflex": 0x00E2, 78 "atilde": 0x00E3, 79 "adieresis": 0x00E4, 80 "aring": 0x00E5, 81 "ae": 0x00E6, 82 "ccedilla": 0x00E7, 83 "egrave": 0x00E8, 84 "eacute": 0x00E9, 85 "ecircumflex": 0x00EA, 86 "edieresis": 0x00EB, 87 "igrave": 0x00EC, 88 "iacute": 0x00ED, 89 "icircumflex": 0x00EE, 90 "idieresis": 0x00EF, 91 "eth": 0x00F0, 92 "ntilde": 0x00F1, 93 "ograve": 0x00F2, 94 "oacute": 0x00F3, 95 "ocircumflex": 0x00F4, 96 "otilde": 0x00F5, 97 "odieresis": 0x00F6, 98 "divide": 0x00F7, 99 "oslash": 0x00F8, 100 "ugrave": 0x00F9, 101 "uacute": 0x00FA, 102 "ucircumflex": 0x00FB, 103 "udieresis": 0x00FC, 104 "yacute": 0x00FD, 105 "thorn": 0x00FE, 106 "ydieresis": 0x00FF, 107 "florin": 0x0192, 108 "Alpha": 0x0391, 109 "Beta": 0x0392, 110 "Gamma": 0x0393, 111 "Deltagreek": 0x0394, 112 "Epsilon": 0x0395, 113 "Zeta": 0x0396, 114 "Eta": 0x0397, 115 "Theta": 0x0398, 116 "Iota": 0x0399, 117 "Kappa": 0x039A, 118 "Lambda": 0x039B, 119 "Mu": 0x039C, 120 "Nu": 0x039D, 121 "Xi": 0x039E, 122 "Omicron": 0x039F, 123 "Pi": 0x03A0, 124 "Rho": 0x03A1, 125 "Sigma": 0x03A3, 126 "Tau": 0x03A4, 127 "Upsilon": 0x03A5, 128 "Phi": 0x03A6, 129 "Chi": 0x03A7, 130 "Psi": 0x03A8, 131 "Omegagreek": 0x03A9, 132 "alpha": 0x03B1, 133 "beta": 0x03B2, 134 "gamma": 0x03B3, 135 "delta": 0x03B4, 136 "epsilon": 0x03B5, 137 "zeta": 0x03B6, 138 "eta": 0x03B7, 139 "theta": 0x03B8, 140 "iota": 0x03B9, 141 "kappa": 0x03BA, 142 "lambda": 0x03BB, 143 "mugreek": 0x03BC, 144 "nu": 0x03BD, 145 "xi": 0x03BE, 146 "omicron": 0x03BF, 147 "pi": 0x03C0, 148 "rho": 0x03C1, 149 "sigma1": 0x03C2, 150 "sigmafinal": 0x03C2, 151 "sigma": 0x03C3, 152 "tau": 0x03C4, 153 "upsilon": 0x03C5, 154 "phi": 0x03C6, 155 "chi": 0x03C7, 156 "psi": 0x03C8, 157 "omega": 0x03C9, 158 "theta1": 0x03D1, 159 "thetasymbolgreek": 0x03D1, 160 "Upsilon1": 0x03D2, 161 "Upsilonhooksymbol": 0x03D2, 162 "omega1": 0x03D6, 163 "pisymbolgreek": 0x03D6, 164 "bullet": 0x2022, 165 "ellipsis": 0x2026, 166 "minute": 0x2032, 167 "second": 0x2033, 168 "overline": 0x203E, 169 "fraction": 0x2044, 170 "weierstrass": 0x2118, 171 "Ifraktur": 0x2111, 172 "Rfraktur": 0x211C, 173 "trademark": 0x2122, 174 "aleph": 0x2135, 175 "arrowleft": 0x2190, 176 "arrowup": 0x2191, 177 "arrowright": 0x2192, 178 "arrowdown": 0x2193, 179 "arrowboth": 0x2194, 180 "carriagereturn": 0x21B5, 181 "arrowdblleft": 0x21D0, 182 "arrowleftdbl": 0x21D0, 183 "arrowdblup": 0x21D1, 184 "arrowdblright": 0x21D2, 185 "dblarrowright": 0x21D2, 186 "arrowdbldown": 0x21D3, 187 "arrowdblboth": 0x21D4, 188 "dblarrowleft": 0x21D4, 189 "forall": 0x2200, 190 "universal": 0x2200, 191 "partialdiff": 0x2202, 192 "existential": 0x2203, 193 "thereexists": 0x2203, 194 "emptyset": 0x2205, 195 "gradient": 0x2207, 196 "nabla": 0x2207, 197 "element": 0x2208, 198 "notelement": 0x2209, 199 "notelementof": 0x2209, 200 "suchthat": 0x220B, 201 "product": 0x220F, 202 "summation": 0x2211, 203 "minus": 0x2212, 204 "asteriskmath": 0x2217, 205 "radical": 0x221A, 206 "proportional": 0x221D, 207 "infinity": 0x221E, 208 "angle": 0x2220, 209 "logicaland": 0x2227, 210 "logicalor": 0x2228, 211 "intersection": 0x2229, 212 "union": 0x222A, 213 "integral": 0x222B, 214 "therefore": 0x2234, 215 "similar": 0x223C, 216 "tildeoperator": 0x223C, 217 "approximatelyequal": 0x2245, 218 "congruent": 0x2245, 219 "approxequal": 0x2248, 220 "notequal": 0x2260, 221 "equivalence": 0x2261, 222 "lessequal": 0x2264, 223 "greaterequal": 0x2265, 224 "propersubset": 0x2282, 225 "subset": 0x2282, 226 "propersuperset": 0x2283, 227 "superset": 0x2283, 228 "notsubset": 0x2284, 229 "reflexsubset": 0x2286, 230 "subsetorequal": 0x2286, 231 "reflexsuperset": 0x2287, 232 "supersetorequal": 0x2287, 233 "circleplus": 0x2295, 234 "pluscircle": 0x2295, 235 "circlemultiply": 0x2297, 236 "timescircle": 0x2297, 237 "perpendicular": 0x22A5, 238 "dotmath": 0x22C5, 239 "angleleft": 0x2329, 240 "angleright": 0x232A, 241 "lozenge": 0x25CA, 242 "spade": 0x2660, 243 "spadesuitblack": 0x2660, 244 "club": 0x2663, 245 "clubsuitblack": 0x2663, 246 "heart": 0x2665, 247 "heartsuitblack": 0x2665, 248 "diamond": 0x2666, 249 "quotedbl": 0x0022, 250 "ampersand": 0x0026, 251 "less": 0x003C, 252 "greater": 0x003E, 253 "OE": 0x0152, 254 "oe": 0x0153, 255 "Scaron": 0x0160, 256 "scaron": 0x0161, 257 "Ydieresis": 0x0178, 258 "circumflex": 0x02C6, 259 "ilde": 0x02DC, 260 "tilde": 0x02DC, 261 "enspace": 0x2002, 262 "afii61664": 0x200C, 263 "zerowidthnonjoiner": 0x200C, 264 "afii301": 0x200D, 265 "afii299": 0x200E, 266 "afii300": 0x200F, 267 "endash": 0x2013, 268 "emdash": 0x2014, 269 "quoteleft": 0x2018, 270 "quoteright": 0x2019, 271 "quotesinglbase": 0x201A, 272 "quotedblleft": 0x201C, 273 "quotedblright": 0x201D, 274 "quotedblbase": 0x201E, 275 "dagger": 0x2020, 276 "daggerdbl": 0x2021, 277 "perthousand": 0x2030, 278 "guilsinglleft": 0x2039, 279 "guilsinglright": 0x203A, 280 "Euro": 0x20AC, 281 "controlSTX": 0x0001, 282 "controlSOT": 0x0002, 283 "controlETX": 0x0003, 284 "controlEOT": 0x0004, 285 "controlENQ": 0x0005, 286 "controlACK": 0x0006, 287 "controlBEL": 0x0007, 288 "controlBS": 0x0008, 289 "controlHT": 0x0009, 290 "controlLF": 0x000A, 291 "controlVT": 0x000B, 292 "controlFF": 0x000C, 293 "controlCR": 0x000D, 294 "controlSO": 0x000E, 295 "controlSI": 0x000F, 296 "controlDLE": 0x0010, 297 "controlDC1": 0x0011, 298 "controlDC2": 0x0012, 299 "controlDC3": 0x0013, 300 "controlDC4": 0x0014, 301 "controlNAK": 0x0015, 302 "controlSYN": 0x0016, 303 "controlETB": 0x0017, 304 "controlCAN": 0x0018, 305 "controlEM": 0x0019, 306 "controlSUB": 0x001A, 307 "controlESC": 0x001B, 308 "controlFS": 0x001C, 309 "controlGS": 0x001D, 310 "controlRS": 0x001E, 311 "controlUS": 0x001F, 312 "space": 0x0020, 313 "spacehackarabic": 0x0020, 314 "exclam": 0x0021, 315 "numbersign": 0x0023, 316 "dollar": 0x0024, 317 "percent": 0x0025, 318 "quotesingle": 0x0027, 319 "parenleft": 0x0028, 320 "parenright": 0x0029, 321 "asterisk": 0x002A, 322 "plus": 0x002B, 323 "comma": 0x002C, 324 "hyphen": 0x002D, 325 "period": 0x002E, 326 "slash": 0x002F, 327 "zero": 0x0030, 328 "one": 0x0031, 329 "two": 0x0032, 330 "three": 0x0033, 331 "four": 0x0034, 332 "five": 0x0035, 333 "six": 0x0036, 334 "seven": 0x0037, 335 "eight": 0x0038, 336 "nine": 0x0039, 337 "colon": 0x003A, 338 "semicolon": 0x003B, 339 "equal": 0x003D, 340 "question": 0x003F, 341 "at": 0x0040, 342 "A": 0x0041, 343 "B": 0x0042, 344 "C": 0x0043, 345 "D": 0x0044, 346 "E": 0x0045, 347 "F": 0x0046, 348 "G": 0x0047, 349 "H": 0x0048, 350 "I": 0x0049, 351 "J": 0x004A, 352 "K": 0x004B, 353 "L": 0x004C, 354 "M": 0x004D, 355 "N": 0x004E, 356 "O": 0x004F, 357 "P": 0x0050, 358 "Q": 0x0051, 359 "R": 0x0052, 360 "S": 0x0053, 361 "T": 0x0054, 362 "U": 0x0055, 363 "V": 0x0056, 364 "W": 0x0057, 365 "X": 0x0058, 366 "Y": 0x0059, 367 "Z": 0x005A, 368 "bracketleft": 0x005B, 369 "backslash": 0x005C, 370 "bracketright": 0x005D, 371 "asciicircum": 0x005E, 372 "underscore": 0x005F, 373 "grave": 0x0060, 374 "a": 0x0061, 375 "b": 0x0062, 376 "c": 0x0063, 377 "d": 0x0064, 378 "e": 0x0065, 379 "f": 0x0066, 380 "g": 0x0067, 381 "h": 0x0068, 382 "i": 0x0069, 383 "j": 0x006A, 384 "k": 0x006B, 385 "l": 0x006C, 386 "m": 0x006D, 387 "n": 0x006E, 388 "o": 0x006F, 389 "p": 0x0070, 390 "q": 0x0071, 391 "r": 0x0072, 392 "s": 0x0073, 393 "t": 0x0074, 394 "u": 0x0075, 395 "v": 0x0076, 396 "w": 0x0077, 397 "x": 0x0078, 398 "y": 0x0079, 399 "z": 0x007A, 400 "braceleft": 0x007B, 401 "bar": 0x007C, 402 "verticalbar": 0x007C, 403 "braceright": 0x007D, 404 "asciitilde": 0x007E, 405 "controlDEL": 0x007F, 406 "Amacron": 0x0100, 407 "amacron": 0x0101, 408 "Abreve": 0x0102, 409 "abreve": 0x0103, 410 "Aogonek": 0x0104, 411 "aogonek": 0x0105, 412 "Cacute": 0x0106, 413 "cacute": 0x0107, 414 "Ccircumflex": 0x0108, 415 "ccircumflex": 0x0109, 416 "Cdot": 0x010A, 417 "Cdotaccent": 0x010A, 418 "cdot": 0x010B, 419 "cdotaccent": 0x010B, 420 "Ccaron": 0x010C, 421 "ccaron": 0x010D, 422 "Dcaron": 0x010E, 423 "dcaron": 0x010F, 424 "Dcroat": 0x0110, 425 "Dslash": 0x0110, 426 "dcroat": 0x0111, 427 "dmacron": 0x0111, 428 "Emacron": 0x0112, 429 "emacron": 0x0113, 430 "Ebreve": 0x0114, 431 "ebreve": 0x0115, 432 "Edot": 0x0116, 433 "Edotaccent": 0x0116, 434 "edot": 0x0117, 435 "edotaccent": 0x0117, 436 "Eogonek": 0x0118, 437 "eogonek": 0x0119, 438 "Ecaron": 0x011A, 439 "ecaron": 0x011B, 440 "Gcircumflex": 0x011C, 441 "gcircumflex": 0x011D, 442 "Gbreve": 0x011E, 443 "gbreve": 0x011F, 444 "Gdot": 0x0120, 445 "Gdotaccent": 0x0120, 446 "gdot": 0x0121, 447 "gdotaccent": 0x0121, 448 "Gcedilla": 0x0122, 449 "Gcommaaccent": 0x0122, 450 "gcedilla": 0x0123, 451 "gcommaaccent": 0x0123, 452 "Hcircumflex": 0x0124, 453 "hcircumflex": 0x0125, 454 "Hbar": 0x0126, 455 "hbar": 0x0127, 456 "Itilde": 0x0128, 457 "itilde": 0x0129, 458 "Imacron": 0x012A, 459 "imacron": 0x012B, 460 "Ibreve": 0x012C, 461 "ibreve": 0x012D, 462 "Iogonek": 0x012E, 463 "iogonek": 0x012F, 464 "Idot": 0x0130, 465 "Idotaccent": 0x0130, 466 "dotlessi": 0x0131, 467 "IJ": 0x0132, 468 "ij": 0x0133, 469 "Jcircumflex": 0x0134, 470 "jcircumflex": 0x0135, 471 "Kcedilla": 0x0136, 472 "Kcommaaccent": 0x0136, 473 "kcedilla": 0x0137, 474 "kcommaaccent": 0x0137, 475 "kgreenlandic": 0x0138, 476 "Lacute": 0x0139, 477 "lacute": 0x013A, 478 "Lcedilla": 0x013B, 479 "Lcommaaccent": 0x013B, 480 "lcedilla": 0x013C, 481 "lcommaaccent": 0x013C, 482 "Lcaron": 0x013D, 483 "lcaron": 0x013E, 484 "Ldot": 0x013F, 485 "Ldotaccent": 0x013F, 486 "ldot": 0x0140, 487 "ldotaccent": 0x0140, 488 "Lslash": 0x0141, 489 "lslash": 0x0142, 490 "Nacute": 0x0143, 491 "nacute": 0x0144, 492 "Ncedilla": 0x0145, 493 "Ncommaaccent": 0x0145, 494 "ncedilla": 0x0146, 495 "ncommaaccent": 0x0146, 496 "Ncaron": 0x0147, 497 "ncaron": 0x0148, 498 "napostrophe": 0x0149, 499 "quoterightn": 0x0149, 500 "Eng": 0x014A, 501 "eng": 0x014B, 502 "Omacron": 0x014C, 503 "omacron": 0x014D, 504 "Obreve": 0x014E, 505 "obreve": 0x014F, 506 "Odblacute": 0x0150, 507 "Ohungarumlaut": 0x0150, 508 "odblacute": 0x0151, 509 "ohungarumlaut": 0x0151, 510 "Racute": 0x0154, 511 "racute": 0x0155, 512 "Rcedilla": 0x0156, 513 "Rcommaaccent": 0x0156, 514 "rcedilla": 0x0157, 515 "rcommaaccent": 0x0157, 516 "Rcaron": 0x0158, 517 "rcaron": 0x0159, 518 "Sacute": 0x015A, 519 "sacute": 0x015B, 520 "Scircumflex": 0x015C, 521 "scircumflex": 0x015D, 522 "Scedilla": 0x015E, 523 "scedilla": 0x015F, 524 "Tcedilla": 0x0162, 525 "Tcommaaccent": 0x0162, 526 "tcedilla": 0x0163, 527 "tcommaaccent": 0x0163, 528 "Tcaron": 0x0164, 529 "tcaron": 0x0165, 530 "Tbar": 0x0166, 531 "tbar": 0x0167, 532 "Utilde": 0x0168, 533 "utilde": 0x0169, 534 "Umacron": 0x016A, 535 "umacron": 0x016B, 536 "Ubreve": 0x016C, 537 "ubreve": 0x016D, 538 "Uring": 0x016E, 539 "uring": 0x016F, 540 "Udblacute": 0x0170, 541 "Uhungarumlaut": 0x0170, 542 "udblacute": 0x0171, 543 "uhungarumlaut": 0x0171, 544 "Uogonek": 0x0172, 545 "uogonek": 0x0173, 546 "Wcircumflex": 0x0174, 547 "wcircumflex": 0x0175, 548 "Ycircumflex": 0x0176, 549 "ycircumflex": 0x0177, 550 "Zacute": 0x0179, 551 "zacute": 0x017A, 552 "Zdot": 0x017B, 553 "Zdotaccent": 0x017B, 554 "zdot": 0x017C, 555 "zdotaccent": 0x017C, 556 "Zcaron": 0x017D, 557 "zcaron": 0x017E, 558 "longs": 0x017F, 559 "slong": 0x017F, 560 "bstroke": 0x0180, 561 "Bhook": 0x0181, 562 "Btopbar": 0x0182, 563 "btopbar": 0x0183, 564 "Tonesix": 0x0184, 565 "tonesix": 0x0185, 566 "Oopen": 0x0186, 567 "Chook": 0x0187, 568 "chook": 0x0188, 569 "Dafrican": 0x0189, 570 "Dhook": 0x018A, 571 "Dtopbar": 0x018B, 572 "dtopbar": 0x018C, 573 "deltaturned": 0x018D, 574 "Ereversed": 0x018E, 575 "Schwa": 0x018F, 576 "Eopen": 0x0190, 577 "Fhook": 0x0191, 578 "Ghook": 0x0193, 579 "Gammaafrican": 0x0194, 580 "hv": 0x0195, 581 "Iotaafrican": 0x0196, 582 "Istroke": 0x0197, 583 "Khook": 0x0198, 584 "khook": 0x0199, 585 "lbar": 0x019A, 586 "lambdastroke": 0x019B, 587 "Mturned": 0x019C, 588 "Nhookleft": 0x019D, 589 "nlegrightlong": 0x019E, 590 "Ocenteredtilde": 0x019F, 591 "Ohorn": 0x01A0, 592 "ohorn": 0x01A1, 593 "Oi": 0x01A2, 594 "oi": 0x01A3, 595 "Phook": 0x01A4, 596 "phook": 0x01A5, 597 "yr": 0x01A6, 598 "Tonetwo": 0x01A7, 599 "tonetwo": 0x01A8, 600 "Esh": 0x01A9, 601 "eshreversedloop": 0x01AA, 602 "tpalatalhook": 0x01AB, 603 "Thook": 0x01AC, 604 "thook": 0x01AD, 605 "Tretroflexhook": 0x01AE, 606 "Uhorn": 0x01AF, 607 "uhorn": 0x01B0, 608 "Upsilonafrican": 0x01B1, 609 "Vhook": 0x01B2, 610 "Yhook": 0x01B3, 611 "yhook": 0x01B4, 612 "Zstroke": 0x01B5, 613 "zstroke": 0x01B6, 614 "Ezh": 0x01B7, 615 "Ezhreversed": 0x01B8, 616 "ezhreversed": 0x01B9, 617 "ezhtail": 0x01BA, 618 "twostroke": 0x01BB, 619 "Tonefive": 0x01BC, 620 "tonefive": 0x01BD, 621 "glottalinvertedstroke": 0x01BE, 622 "wynn": 0x01BF, 623 "clickdental": 0x01C0, 624 "clicklateral": 0x01C1, 625 "clickalveolar": 0x01C2, 626 "clickretroflex": 0x01C3, 627 "DZcaron": 0x01C4, 628 "Dzcaron": 0x01C5, 629 "dzcaron": 0x01C6, 630 "LJ": 0x01C7, 631 "Lj": 0x01C8, 632 "lj": 0x01C9, 633 "NJ": 0x01CA, 634 "Nj": 0x01CB, 635 "nj": 0x01CC, 636 "Acaron": 0x01CD, 637 "acaron": 0x01CE, 638 "Icaron": 0x01CF, 639 "icaron": 0x01D0, 640 "Ocaron": 0x01D1, 641 "ocaron": 0x01D2, 642 "Ucaron": 0x01D3, 643 "ucaron": 0x01D4, 644 "Udieresismacron": 0x01D5, 645 "udieresismacron": 0x01D6, 646 "Udieresisacute": 0x01D7, 647 "udieresisacute": 0x01D8, 648 "Udieresiscaron": 0x01D9, 649 "udieresiscaron": 0x01DA, 650 "Udieresisgrave": 0x01DB, 651 "udieresisgrave": 0x01DC, 652 "eturned": 0x01DD, 653 "Adieresismacron": 0x01DE, 654 "adieresismacron": 0x01DF, 655 "Adotmacron": 0x01E0, 656 "adotmacron": 0x01E1, 657 "AEmacron": 0x01E2, 658 "aemacron": 0x01E3, 659 "Gstroke": 0x01E4, 660 "gstroke": 0x01E5, 661 "Gcaron": 0x01E6, 662 "gcaron": 0x01E7, 663 "Kcaron": 0x01E8, 664 "kcaron": 0x01E9, 665 "Oogonek": 0x01EA, 666 "oogonek": 0x01EB, 667 "Oogonekmacron": 0x01EC, 668 "oogonekmacron": 0x01ED, 669 "Ezhcaron": 0x01EE, 670 "ezhcaron": 0x01EF, 671 "jcaron": 0x01F0, 672 "DZ": 0x01F1, 673 "Dz": 0x01F2, 674 "dz": 0x01F3, 675 "Gacute": 0x01F4, 676 "gacute": 0x01F5, 677 "Aringacute": 0x01FA, 678 "aringacute": 0x01FB, 679 "AEacute": 0x01FC, 680 "aeacute": 0x01FD, 681 "Oslashacute": 0x01FE, 682 "Ostrokeacute": 0x01FE, 683 "oslashacute": 0x01FF, 684 "ostrokeacute": 0x01FF, 685 "Adblgrave": 0x0200, 686 "adblgrave": 0x0201, 687 "Ainvertedbreve": 0x0202, 688 "ainvertedbreve": 0x0203, 689 "Edblgrave": 0x0204, 690 "edblgrave": 0x0205, 691 "Einvertedbreve": 0x0206, 692 "einvertedbreve": 0x0207, 693 "Idblgrave": 0x0208, 694 "idblgrave": 0x0209, 695 "Iinvertedbreve": 0x020A, 696 "iinvertedbreve": 0x020B, 697 "Odblgrave": 0x020C, 698 "odblgrave": 0x020D, 699 "Oinvertedbreve": 0x020E, 700 "oinvertedbreve": 0x020F, 701 "Rdblgrave": 0x0210, 702 "rdblgrave": 0x0211, 703 "Rinvertedbreve": 0x0212, 704 "rinvertedbreve": 0x0213, 705 "Udblgrave": 0x0214, 706 "udblgrave": 0x0215, 707 "Uinvertedbreve": 0x0216, 708 "uinvertedbreve": 0x0217, 709 "Scommaaccent": 0x0218, 710 "scommaaccent": 0x0219, 711 "aturned": 0x0250, 712 "ascript": 0x0251, 713 "ascriptturned": 0x0252, 714 "bhook": 0x0253, 715 "oopen": 0x0254, 716 "ccurl": 0x0255, 717 "dtail": 0x0256, 718 "dhook": 0x0257, 719 "ereversed": 0x0258, 720 "schwa": 0x0259, 721 "schwahook": 0x025A, 722 "eopen": 0x025B, 723 "eopenreversed": 0x025C, 724 "eopenreversedhook": 0x025D, 725 "eopenreversedclosed": 0x025E, 726 "jdotlessstroke": 0x025F, 727 "ghook": 0x0260, 728 "gscript": 0x0261, 729 "gammalatinsmall": 0x0263, 730 "ramshorn": 0x0264, 731 "hturned": 0x0265, 732 "hhook": 0x0266, 733 "henghook": 0x0267, 734 "istroke": 0x0268, 735 "iotalatin": 0x0269, 736 "lmiddletilde": 0x026B, 737 "lbelt": 0x026C, 738 "lhookretroflex": 0x026D, 739 "lezh": 0x026E, 740 "mturned": 0x026F, 741 "mlonglegturned": 0x0270, 742 "mhook": 0x0271, 743 "nhookleft": 0x0272, 744 "nhookretroflex": 0x0273, 745 "obarred": 0x0275, 746 "omegalatinclosed": 0x0277, 747 "philatin": 0x0278, 748 "rturned": 0x0279, 749 "rlonglegturned": 0x027A, 750 "rhookturned": 0x027B, 751 "rlongleg": 0x027C, 752 "rhook": 0x027D, 753 "rfishhook": 0x027E, 754 "rfishhookreversed": 0x027F, 755 "Rsmallinverted": 0x0281, 756 "shook": 0x0282, 757 "esh": 0x0283, 758 "dotlessjstrokehook": 0x0284, 759 "eshsquatreversed": 0x0285, 760 "eshcurl": 0x0286, 761 "tturned": 0x0287, 762 "tretroflexhook": 0x0288, 763 "ubar": 0x0289, 764 "upsilonlatin": 0x028A, 765 "vhook": 0x028B, 766 "vturned": 0x028C, 767 "wturned": 0x028D, 768 "yturned": 0x028E, 769 "zretroflexhook": 0x0290, 770 "zcurl": 0x0291, 771 "ezh": 0x0292, 772 "ezhcurl": 0x0293, 773 "glottalstop": 0x0294, 774 "glottalstopreversed": 0x0295, 775 "glottalstopinverted": 0x0296, 776 "cstretched": 0x0297, 777 "bilabialclick": 0x0298, 778 "eopenclosed": 0x029A, 779 "Gsmallhook": 0x029B, 780 "jcrossedtail": 0x029D, 781 "kturned": 0x029E, 782 "qhook": 0x02A0, 783 "glottalstopstroke": 0x02A1, 784 "glottalstopstrokereversed": 0x02A2, 785 "dzaltone": 0x02A3, 786 "dezh": 0x02A4, 787 "dzcurl": 0x02A5, 788 "ts": 0x02A6, 789 "tesh": 0x02A7, 790 "tccurl": 0x02A8, 791 "hsuperior": 0x02B0, 792 "hhooksuperior": 0x02B1, 793 "jsuperior": 0x02B2, 794 "rturnedsuperior": 0x02B4, 795 "rhookturnedsuperior": 0x02B5, 796 "Rsmallinvertedsuperior": 0x02B6, 797 "wsuperior": 0x02B7, 798 "ysuperior": 0x02B8, 799 "primemod": 0x02B9, 800 "dblprimemod": 0x02BA, 801 "commaturnedmod": 0x02BB, 802 "afii57929": 0x02BC, 803 "apostrophemod": 0x02BC, 804 "afii64937": 0x02BD, 805 "commareversedmod": 0x02BD, 806 "ringhalfright": 0x02BE, 807 "ringhalfleft": 0x02BF, 808 "glottalstopmod": 0x02C0, 809 "glottalstopreversedmod": 0x02C1, 810 "arrowheadleftmod": 0x02C2, 811 "arrowheadrightmod": 0x02C3, 812 "arrowheadupmod": 0x02C4, 813 "arrowheaddownmod": 0x02C5, 814 "caron": 0x02C7, 815 "verticallinemod": 0x02C8, 816 "firsttonechinese": 0x02C9, 817 "secondtonechinese": 0x02CA, 818 "fourthtonechinese": 0x02CB, 819 "verticallinelowmod": 0x02CC, 820 "macronlowmod": 0x02CD, 821 "gravelowmod": 0x02CE, 822 "acutelowmod": 0x02CF, 823 "colontriangularmod": 0x02D0, 824 "colontriangularhalfmod": 0x02D1, 825 "ringhalfrightcentered": 0x02D2, 826 "ringhalfleftcentered": 0x02D3, 827 "uptackmod": 0x02D4, 828 "downtackmod": 0x02D5, 829 "plusmod": 0x02D6, 830 "minusmod": 0x02D7, 831 "breve": 0x02D8, 832 "dotaccent": 0x02D9, 833 "ring": 0x02DA, 834 "ogonek": 0x02DB, 835 "hungarumlaut": 0x02DD, 836 "rhotichookmod": 0x02DE, 837 "gammasuperior": 0x02E0, 838 "xsuperior": 0x02E3, 839 "glottalstopreversedsuperior": 0x02E4, 840 "tonebarextrahighmod": 0x02E5, 841 "tonebarhighmod": 0x02E6, 842 "tonebarmidmod": 0x02E7, 843 "tonebarlowmod": 0x02E8, 844 "tonebarextralowmod": 0x02E9, 845 "gravecmb": 0x0300, 846 "gravecomb": 0x0300, 847 "acutecmb": 0x0301, 848 "acutecomb": 0x0301, 849 "circumflexcmb": 0x0302, 850 "tildecmb": 0x0303, 851 "tildecomb": 0x0303, 852 "macroncmb": 0x0304, 853 "overlinecmb": 0x0305, 854 "brevecmb": 0x0306, 855 "dotaccentcmb": 0x0307, 856 "dieresiscmb": 0x0308, 857 "hookabovecomb": 0x0309, 858 "hookcmb": 0x0309, 859 "ringcmb": 0x030A, 860 "hungarumlautcmb": 0x030B, 861 "caroncmb": 0x030C, 862 "verticallineabovecmb": 0x030D, 863 "dblverticallineabovecmb": 0x030E, 864 "dblgravecmb": 0x030F, 865 "candrabinducmb": 0x0310, 866 "breveinvertedcmb": 0x0311, 867 "commaturnedabovecmb": 0x0312, 868 "commaabovecmb": 0x0313, 869 "commareversedabovecmb": 0x0314, 870 "commaaboverightcmb": 0x0315, 871 "gravebelowcmb": 0x0316, 872 "acutebelowcmb": 0x0317, 873 "lefttackbelowcmb": 0x0318, 874 "righttackbelowcmb": 0x0319, 875 "leftangleabovecmb": 0x031A, 876 "horncmb": 0x031B, 877 "ringhalfleftbelowcmb": 0x031C, 878 "uptackbelowcmb": 0x031D, 879 "downtackbelowcmb": 0x031E, 880 "plusbelowcmb": 0x031F, 881 "minusbelowcmb": 0x0320, 882 "hookpalatalizedbelowcmb": 0x0321, 883 "hookretroflexbelowcmb": 0x0322, 884 "dotbelowcmb": 0x0323, 885 "dotbelowcomb": 0x0323, 886 "dieresisbelowcmb": 0x0324, 887 "ringbelowcmb": 0x0325, 888 "cedillacmb": 0x0327, 889 "ogonekcmb": 0x0328, 890 "verticallinebelowcmb": 0x0329, 891 "bridgebelowcmb": 0x032A, 892 "dblarchinvertedbelowcmb": 0x032B, 893 "caronbelowcmb": 0x032C, 894 "circumflexbelowcmb": 0x032D, 895 "brevebelowcmb": 0x032E, 896 "breveinvertedbelowcmb": 0x032F, 897 "tildebelowcmb": 0x0330, 898 "macronbelowcmb": 0x0331, 899 "lowlinecmb": 0x0332, 900 "dbllowlinecmb": 0x0333, 901 "tildeoverlaycmb": 0x0334, 902 "strokeshortoverlaycmb": 0x0335, 903 "strokelongoverlaycmb": 0x0336, 904 "solidusshortoverlaycmb": 0x0337, 905 "soliduslongoverlaycmb": 0x0338, 906 "ringhalfrightbelowcmb": 0x0339, 907 "bridgeinvertedbelowcmb": 0x033A, 908 "squarebelowcmb": 0x033B, 909 "seagullbelowcmb": 0x033C, 910 "xabovecmb": 0x033D, 911 "tildeverticalcmb": 0x033E, 912 "dbloverlinecmb": 0x033F, 913 "gravetonecmb": 0x0340, 914 "acutetonecmb": 0x0341, 915 "perispomenigreekcmb": 0x0342, 916 "koroniscmb": 0x0343, 917 "dialytikatonoscmb": 0x0344, 918 "ypogegrammenigreekcmb": 0x0345, 919 "tildedoublecmb": 0x0360, 920 "breveinverteddoublecmb": 0x0361, 921 "numeralsigngreek": 0x0374, 922 "numeralsignlowergreek": 0x0375, 923 "ypogegrammeni": 0x037A, 924 "questiongreek": 0x037E, 925 "tonos": 0x0384, 926 "dialytikatonos": 0x0385, 927 "dieresistonos": 0x0385, 928 "Alphatonos": 0x0386, 929 "anoteleia": 0x0387, 930 "Epsilontonos": 0x0388, 931 "Etatonos": 0x0389, 932 "Iotatonos": 0x038A, 933 "Omicrontonos": 0x038C, 934 "Upsilontonos": 0x038E, 935 "Omegatonos": 0x038F, 936 "iotadieresistonos": 0x0390, 937 "Iotadieresis": 0x03AA, 938 "Upsilondieresis": 0x03AB, 939 "alphatonos": 0x03AC, 940 "epsilontonos": 0x03AD, 941 "etatonos": 0x03AE, 942 "iotatonos": 0x03AF, 943 "upsilondieresistonos": 0x03B0, 944 "iotadieresis": 0x03CA, 945 "upsilondieresis": 0x03CB, 946 "omicrontonos": 0x03CC, 947 "upsilontonos": 0x03CD, 948 "omegatonos": 0x03CE, 949 "betasymbolgreek": 0x03D0, 950 "Upsilonacutehooksymbolgreek": 0x03D3, 951 "Upsilondieresishooksymbolgreek": 0x03D4, 952 "phi1": 0x03D5, 953 "phisymbolgreek": 0x03D5, 954 "Stigmagreek": 0x03DA, 955 "Digammagreek": 0x03DC, 956 "Koppagreek": 0x03DE, 957 "Sampigreek": 0x03E0, 958 "Sheicoptic": 0x03E2, 959 "sheicoptic": 0x03E3, 960 "Feicoptic": 0x03E4, 961 "feicoptic": 0x03E5, 962 "Kheicoptic": 0x03E6, 963 "kheicoptic": 0x03E7, 964 "Horicoptic": 0x03E8, 965 "horicoptic": 0x03E9, 966 "Gangiacoptic": 0x03EA, 967 "gangiacoptic": 0x03EB, 968 "Shimacoptic": 0x03EC, 969 "shimacoptic": 0x03ED, 970 "Deicoptic": 0x03EE, 971 "deicoptic": 0x03EF, 972 "kappasymbolgreek": 0x03F0, 973 "rhosymbolgreek": 0x03F1, 974 "sigmalunatesymbolgreek": 0x03F2, 975 "yotgreek": 0x03F3, 976 "Iocyrillic": 0x0401, 977 "afii10023": 0x0401, 978 "Djecyrillic": 0x0402, 979 "afii10051": 0x0402, 980 "Gjecyrillic": 0x0403, 981 "afii10052": 0x0403, 982 "Ecyrillic": 0x0404, 983 "afii10053": 0x0404, 984 "Dzecyrillic": 0x0405, 985 "afii10054": 0x0405, 986 "Icyrillic": 0x0406, 987 "afii10055": 0x0406, 988 "Yicyrillic": 0x0407, 989 "afii10056": 0x0407, 990 "Jecyrillic": 0x0408, 991 "afii10057": 0x0408, 992 "Ljecyrillic": 0x0409, 993 "afii10058": 0x0409, 994 "Njecyrillic": 0x040A, 995 "afii10059": 0x040A, 996 "Tshecyrillic": 0x040B, 997 "afii10060": 0x040B, 998 "Kjecyrillic": 0x040C, 999 "afii10061": 0x040C, 1000 "Ushortcyrillic": 0x040E, 1001 "afii10062": 0x040E, 1002 "Dzhecyrillic": 0x040F, 1003 "afii10145": 0x040F, 1004 "Acyrillic": 0x0410, 1005 "afii10017": 0x0410, 1006 "Becyrillic": 0x0411, 1007 "afii10018": 0x0411, 1008 "Vecyrillic": 0x0412, 1009 "afii10019": 0x0412, 1010 "Gecyrillic": 0x0413, 1011 "afii10020": 0x0413, 1012 "Decyrillic": 0x0414, 1013 "afii10021": 0x0414, 1014 "Iecyrillic": 0x0415, 1015 "afii10022": 0x0415, 1016 "Zhecyrillic": 0x0416, 1017 "afii10024": 0x0416, 1018 "Zecyrillic": 0x0417, 1019 "afii10025": 0x0417, 1020 "Iicyrillic": 0x0418, 1021 "afii10026": 0x0418, 1022 "Iishortcyrillic": 0x0419, 1023 "afii10027": 0x0419, 1024 "Kacyrillic": 0x041A, 1025 "afii10028": 0x041A, 1026 "Elcyrillic": 0x041B, 1027 "afii10029": 0x041B, 1028 "Emcyrillic": 0x041C, 1029 "afii10030": 0x041C, 1030 "Encyrillic": 0x041D, 1031 "afii10031": 0x041D, 1032 "Ocyrillic": 0x041E, 1033 "afii10032": 0x041E, 1034 "Pecyrillic": 0x041F, 1035 "afii10033": 0x041F, 1036 "Ercyrillic": 0x0420, 1037 "afii10034": 0x0420, 1038 "Escyrillic": 0x0421, 1039 "afii10035": 0x0421, 1040 "Tecyrillic": 0x0422, 1041 "afii10036": 0x0422, 1042 "Ucyrillic": 0x0423, 1043 "afii10037": 0x0423, 1044 "Efcyrillic": 0x0424, 1045 "afii10038": 0x0424, 1046 "Khacyrillic": 0x0425, 1047 "afii10039": 0x0425, 1048 "Tsecyrillic": 0x0426, 1049 "afii10040": 0x0426, 1050 "Checyrillic": 0x0427, 1051 "afii10041": 0x0427, 1052 "Shacyrillic": 0x0428, 1053 "afii10042": 0x0428, 1054 "Shchacyrillic": 0x0429, 1055 "afii10043": 0x0429, 1056 "Hardsigncyrillic": 0x042A, 1057 "afii10044": 0x042A, 1058 "Yericyrillic": 0x042B, 1059 "afii10045": 0x042B, 1060 "Softsigncyrillic": 0x042C, 1061 "afii10046": 0x042C, 1062 "Ereversedcyrillic": 0x042D, 1063 "afii10047": 0x042D, 1064 "IUcyrillic": 0x042E, 1065 "afii10048": 0x042E, 1066 "IAcyrillic": 0x042F, 1067 "afii10049": 0x042F, 1068 "acyrillic": 0x0430, 1069 "afii10065": 0x0430, 1070 "afii10066": 0x0431, 1071 "becyrillic": 0x0431, 1072 "afii10067": 0x0432, 1073 "vecyrillic": 0x0432, 1074 "afii10068": 0x0433, 1075 "gecyrillic": 0x0433, 1076 "afii10069": 0x0434, 1077 "decyrillic": 0x0434, 1078 "afii10070": 0x0435, 1079 "iecyrillic": 0x0435, 1080 "afii10072": 0x0436, 1081 "zhecyrillic": 0x0436, 1082 "afii10073": 0x0437, 1083 "zecyrillic": 0x0437, 1084 "afii10074": 0x0438, 1085 "iicyrillic": 0x0438, 1086 "afii10075": 0x0439, 1087 "iishortcyrillic": 0x0439, 1088 "afii10076": 0x043A, 1089 "kacyrillic": 0x043A, 1090 "afii10077": 0x043B, 1091 "elcyrillic": 0x043B, 1092 "afii10078": 0x043C, 1093 "emcyrillic": 0x043C, 1094 "afii10079": 0x043D, 1095 "encyrillic": 0x043D, 1096 "afii10080": 0x043E, 1097 "ocyrillic": 0x043E, 1098 "afii10081": 0x043F, 1099 "pecyrillic": 0x043F, 1100 "afii10082": 0x0440, 1101 "ercyrillic": 0x0440, 1102 "afii10083": 0x0441, 1103 "escyrillic": 0x0441, 1104 "afii10084": 0x0442, 1105 "tecyrillic": 0x0442, 1106 "afii10085": 0x0443, 1107 "ucyrillic": 0x0443, 1108 "afii10086": 0x0444, 1109 "efcyrillic": 0x0444, 1110 "afii10087": 0x0445, 1111 "khacyrillic": 0x0445, 1112 "afii10088": 0x0446, 1113 "tsecyrillic": 0x0446, 1114 "afii10089": 0x0447, 1115 "checyrillic": 0x0447, 1116 "afii10090": 0x0448, 1117 "shacyrillic": 0x0448, 1118 "afii10091": 0x0449, 1119 "shchacyrillic": 0x0449, 1120 "afii10092": 0x044A, 1121 "hardsigncyrillic": 0x044A, 1122 "afii10093": 0x044B, 1123 "yericyrillic": 0x044B, 1124 "afii10094": 0x044C, 1125 "softsigncyrillic": 0x044C, 1126 "afii10095": 0x044D, 1127 "ereversedcyrillic": 0x044D, 1128 "afii10096": 0x044E, 1129 "iucyrillic": 0x044E, 1130 "afii10097": 0x044F, 1131 "iacyrillic": 0x044F, 1132 "afii10071": 0x0451, 1133 "iocyrillic": 0x0451, 1134 "afii10099": 0x0452, 1135 "djecyrillic": 0x0452, 1136 "afii10100": 0x0453, 1137 "gjecyrillic": 0x0453, 1138 "afii10101": 0x0454, 1139 "ecyrillic": 0x0454, 1140 "afii10102": 0x0455, 1141 "dzecyrillic": 0x0455, 1142 "afii10103": 0x0456, 1143 "icyrillic": 0x0456, 1144 "afii10104": 0x0457, 1145 "yicyrillic": 0x0457, 1146 "afii10105": 0x0458, 1147 "jecyrillic": 0x0458, 1148 "afii10106": 0x0459, 1149 "ljecyrillic": 0x0459, 1150 "afii10107": 0x045A, 1151 "njecyrillic": 0x045A, 1152 "afii10108": 0x045B, 1153 "tshecyrillic": 0x045B, 1154 "afii10109": 0x045C, 1155 "kjecyrillic": 0x045C, 1156 "afii10110": 0x045E, 1157 "ushortcyrillic": 0x045E, 1158 "afii10193": 0x045F, 1159 "dzhecyrillic": 0x045F, 1160 "Omegacyrillic": 0x0460, 1161 "omegacyrillic": 0x0461, 1162 "Yatcyrillic": 0x0462, 1163 "afii10146": 0x0462, 1164 "afii10194": 0x0463, 1165 "yatcyrillic": 0x0463, 1166 "Eiotifiedcyrillic": 0x0464, 1167 "eiotifiedcyrillic": 0x0465, 1168 "Yuslittlecyrillic": 0x0466, 1169 "yuslittlecyrillic": 0x0467, 1170 "Yuslittleiotifiedcyrillic": 0x0468, 1171 "yuslittleiotifiedcyrillic": 0x0469, 1172 "Yusbigcyrillic": 0x046A, 1173 "yusbigcyrillic": 0x046B, 1174 "Yusbigiotifiedcyrillic": 0x046C, 1175 "yusbigiotifiedcyrillic": 0x046D, 1176 "Ksicyrillic": 0x046E, 1177 "ksicyrillic": 0x046F, 1178 "Psicyrillic": 0x0470, 1179 "psicyrillic": 0x0471, 1180 "Fitacyrillic": 0x0472, 1181 "afii10147": 0x0472, 1182 "afii10195": 0x0473, 1183 "fitacyrillic": 0x0473, 1184 "Izhitsacyrillic": 0x0474, 1185 "afii10148": 0x0474, 1186 "afii10196": 0x0475, 1187 "izhitsacyrillic": 0x0475, 1188 "Izhitsadblgravecyrillic": 0x0476, 1189 "izhitsadblgravecyrillic": 0x0477, 1190 "Ukcyrillic": 0x0478, 1191 "ukcyrillic": 0x0479, 1192 "Omegaroundcyrillic": 0x047A, 1193 "omegaroundcyrillic": 0x047B, 1194 "Omegatitlocyrillic": 0x047C, 1195 "omegatitlocyrillic": 0x047D, 1196 "Otcyrillic": 0x047E, 1197 "otcyrillic": 0x047F, 1198 "Koppacyrillic": 0x0480, 1199 "koppacyrillic": 0x0481, 1200 "thousandcyrillic": 0x0482, 1201 "titlocyrilliccmb": 0x0483, 1202 "palatalizationcyrilliccmb": 0x0484, 1203 "dasiapneumatacyrilliccmb": 0x0485, 1204 "psilipneumatacyrilliccmb": 0x0486, 1205 "Gheupturncyrillic": 0x0490, 1206 "afii10050": 0x0490, 1207 "afii10098": 0x0491, 1208 "gheupturncyrillic": 0x0491, 1209 "Ghestrokecyrillic": 0x0492, 1210 "ghestrokecyrillic": 0x0493, 1211 "Ghemiddlehookcyrillic": 0x0494, 1212 "ghemiddlehookcyrillic": 0x0495, 1213 "Zhedescendercyrillic": 0x0496, 1214 "zhedescendercyrillic": 0x0497, 1215 "Zedescendercyrillic": 0x0498, 1216 "zedescendercyrillic": 0x0499, 1217 "Kadescendercyrillic": 0x049A, 1218 "kadescendercyrillic": 0x049B, 1219 "Kaverticalstrokecyrillic": 0x049C, 1220 "kaverticalstrokecyrillic": 0x049D, 1221 "Kastrokecyrillic": 0x049E, 1222 "kastrokecyrillic": 0x049F, 1223 "Kabashkircyrillic": 0x04A0, 1224 "kabashkircyrillic": 0x04A1, 1225 "Endescendercyrillic": 0x04A2, 1226 "endescendercyrillic": 0x04A3, 1227 "Enghecyrillic": 0x04A4, 1228 "enghecyrillic": 0x04A5, 1229 "Pemiddlehookcyrillic": 0x04A6, 1230 "pemiddlehookcyrillic": 0x04A7, 1231 "Haabkhasiancyrillic": 0x04A8, 1232 "haabkhasiancyrillic": 0x04A9, 1233 "Esdescendercyrillic": 0x04AA, 1234 "esdescendercyrillic": 0x04AB, 1235 "Tedescendercyrillic": 0x04AC, 1236 "tedescendercyrillic": 0x04AD, 1237 "Ustraightcyrillic": 0x04AE, 1238 "ustraightcyrillic": 0x04AF, 1239 "Ustraightstrokecyrillic": 0x04B0, 1240 "ustraightstrokecyrillic": 0x04B1, 1241 "Hadescendercyrillic": 0x04B2, 1242 "hadescendercyrillic": 0x04B3, 1243 "Tetsecyrillic": 0x04B4, 1244 "tetsecyrillic": 0x04B5, 1245 "Chedescendercyrillic": 0x04B6, 1246 "chedescendercyrillic": 0x04B7, 1247 "Cheverticalstrokecyrillic": 0x04B8, 1248 "cheverticalstrokecyrillic": 0x04B9, 1249 "Shhacyrillic": 0x04BA, 1250 "shhacyrillic": 0x04BB, 1251 "Cheabkhasiancyrillic": 0x04BC, 1252 "cheabkhasiancyrillic": 0x04BD, 1253 "Chedescenderabkhasiancyrillic": 0x04BE, 1254 "chedescenderabkhasiancyrillic": 0x04BF, 1255 "palochkacyrillic": 0x04C0, 1256 "Zhebrevecyrillic": 0x04C1, 1257 "zhebrevecyrillic": 0x04C2, 1258 "Kahookcyrillic": 0x04C3, 1259 "kahookcyrillic": 0x04C4, 1260 "Enhookcyrillic": 0x04C7, 1261 "enhookcyrillic": 0x04C8, 1262 "Chekhakassiancyrillic": 0x04CB, 1263 "chekhakassiancyrillic": 0x04CC, 1264 "Abrevecyrillic": 0x04D0, 1265 "abrevecyrillic": 0x04D1, 1266 "Adieresiscyrillic": 0x04D2, 1267 "adieresiscyrillic": 0x04D3, 1268 "Aiecyrillic": 0x04D4, 1269 "aiecyrillic": 0x04D5, 1270 "Iebrevecyrillic": 0x04D6, 1271 "iebrevecyrillic": 0x04D7, 1272 "Schwacyrillic": 0x04D8, 1273 "afii10846": 0x04D9, 1274 "schwacyrillic": 0x04D9, 1275 "Schwadieresiscyrillic": 0x04DA, 1276 "schwadieresiscyrillic": 0x04DB, 1277 "Zhedieresiscyrillic": 0x04DC, 1278 "zhedieresiscyrillic": 0x04DD, 1279 "Zedieresiscyrillic": 0x04DE, 1280 "zedieresiscyrillic": 0x04DF, 1281 "Dzeabkhasiancyrillic": 0x04E0, 1282 "dzeabkhasiancyrillic": 0x04E1, 1283 "Imacroncyrillic": 0x04E2, 1284 "imacroncyrillic": 0x04E3, 1285 "Idieresiscyrillic": 0x04E4, 1286 "idieresiscyrillic": 0x04E5, 1287 "Odieresiscyrillic": 0x04E6, 1288 "odieresiscyrillic": 0x04E7, 1289 "Obarredcyrillic": 0x04E8, 1290 "obarredcyrillic": 0x04E9, 1291 "Obarreddieresiscyrillic": 0x04EA, 1292 "obarreddieresiscyrillic": 0x04EB, 1293 "Umacroncyrillic": 0x04EE, 1294 "umacroncyrillic": 0x04EF, 1295 "Udieresiscyrillic": 0x04F0, 1296 "udieresiscyrillic": 0x04F1, 1297 "Uhungarumlautcyrillic": 0x04F2, 1298 "uhungarumlautcyrillic": 0x04F3, 1299 "Chedieresiscyrillic": 0x04F4, 1300 "chedieresiscyrillic": 0x04F5, 1301 "Yerudieresiscyrillic": 0x04F8, 1302 "yerudieresiscyrillic": 0x04F9, 1303 "Aybarmenian": 0x0531, 1304 "Benarmenian": 0x0532, 1305 "Gimarmenian": 0x0533, 1306 "Daarmenian": 0x0534, 1307 "Echarmenian": 0x0535, 1308 "Zaarmenian": 0x0536, 1309 "Eharmenian": 0x0537, 1310 "Etarmenian": 0x0538, 1311 "Toarmenian": 0x0539, 1312 "Zhearmenian": 0x053A, 1313 "Iniarmenian": 0x053B, 1314 "Liwnarmenian": 0x053C, 1315 "Xeharmenian": 0x053D, 1316 "Caarmenian": 0x053E, 1317 "Kenarmenian": 0x053F, 1318 "Hoarmenian": 0x0540, 1319 "Jaarmenian": 0x0541, 1320 "Ghadarmenian": 0x0542, 1321 "Cheharmenian": 0x0543, 1322 "Menarmenian": 0x0544, 1323 "Yiarmenian": 0x0545, 1324 "Nowarmenian": 0x0546, 1325 "Shaarmenian": 0x0547, 1326 "Voarmenian": 0x0548, 1327 "Chaarmenian": 0x0549, 1328 "Peharmenian": 0x054A, 1329 "Jheharmenian": 0x054B, 1330 "Raarmenian": 0x054C, 1331 "Seharmenian": 0x054D, 1332 "Vewarmenian": 0x054E, 1333 "Tiwnarmenian": 0x054F, 1334 "Reharmenian": 0x0550, 1335 "Coarmenian": 0x0551, 1336 "Yiwnarmenian": 0x0552, 1337 "Piwrarmenian": 0x0553, 1338 "Keharmenian": 0x0554, 1339 "Oharmenian": 0x0555, 1340 "Feharmenian": 0x0556, 1341 "ringhalfleftarmenian": 0x0559, 1342 "apostrophearmenian": 0x055A, 1343 "emphasismarkarmenian": 0x055B, 1344 "exclamarmenian": 0x055C, 1345 "commaarmenian": 0x055D, 1346 "questionarmenian": 0x055E, 1347 "abbreviationmarkarmenian": 0x055F, 1348 "aybarmenian": 0x0561, 1349 "benarmenian": 0x0562, 1350 "gimarmenian": 0x0563, 1351 "daarmenian": 0x0564, 1352 "echarmenian": 0x0565, 1353 "zaarmenian": 0x0566, 1354 "eharmenian": 0x0567, 1355 "etarmenian": 0x0568, 1356 "toarmenian": 0x0569, 1357 "zhearmenian": 0x056A, 1358 "iniarmenian": 0x056B, 1359 "liwnarmenian": 0x056C, 1360 "xeharmenian": 0x056D, 1361 "caarmenian": 0x056E, 1362 "kenarmenian": 0x056F, 1363 "hoarmenian": 0x0570, 1364 "jaarmenian": 0x0571, 1365 "ghadarmenian": 0x0572, 1366 "cheharmenian": 0x0573, 1367 "menarmenian": 0x0574, 1368 "yiarmenian": 0x0575, 1369 "nowarmenian": 0x0576, 1370 "shaarmenian": 0x0577, 1371 "voarmenian": 0x0578, 1372 "chaarmenian": 0x0579, 1373 "peharmenian": 0x057A, 1374 "jheharmenian": 0x057B, 1375 "raarmenian": 0x057C, 1376 "seharmenian": 0x057D, 1377 "vewarmenian": 0x057E, 1378 "tiwnarmenian": 0x057F, 1379 "reharmenian": 0x0580, 1380 "coarmenian": 0x0581, 1381 "yiwnarmenian": 0x0582, 1382 "piwrarmenian": 0x0583, 1383 "keharmenian": 0x0584, 1384 "oharmenian": 0x0585, 1385 "feharmenian": 0x0586, 1386 "echyiwnarmenian": 0x0587, 1387 "periodarmenian": 0x0589, 1388 "etnahtafoukhhebrew": 0x0591, 1389 "etnahtafoukhlefthebrew": 0x0591, 1390 "etnahtahebrew": 0x0591, 1391 "etnahtalefthebrew": 0x0591, 1392 "segoltahebrew": 0x0592, 1393 "shalshelethebrew": 0x0593, 1394 "zaqefqatanhebrew": 0x0594, 1395 "zaqefgadolhebrew": 0x0595, 1396 "tipehahebrew": 0x0596, 1397 "tipehalefthebrew": 0x0596, 1398 "reviahebrew": 0x0597, 1399 "reviamugrashhebrew": 0x0597, 1400 "zarqahebrew": 0x0598, 1401 "pashtahebrew": 0x0599, 1402 "yetivhebrew": 0x059A, 1403 "tevirhebrew": 0x059B, 1404 "tevirlefthebrew": 0x059B, 1405 "gereshaccenthebrew": 0x059C, 1406 "gereshmuqdamhebrew": 0x059D, 1407 "gershayimaccenthebrew": 0x059E, 1408 "qarneyparahebrew": 0x059F, 1409 "telishagedolahebrew": 0x05A0, 1410 "pazerhebrew": 0x05A1, 1411 "munahhebrew": 0x05A3, 1412 "munahlefthebrew": 0x05A3, 1413 "mahapakhhebrew": 0x05A4, 1414 "mahapakhlefthebrew": 0x05A4, 1415 "merkhahebrew": 0x05A5, 1416 "merkhalefthebrew": 0x05A5, 1417 "merkhakefulahebrew": 0x05A6, 1418 "merkhakefulalefthebrew": 0x05A6, 1419 "dargahebrew": 0x05A7, 1420 "dargalefthebrew": 0x05A7, 1421 "qadmahebrew": 0x05A8, 1422 "telishaqetanahebrew": 0x05A9, 1423 "yerahbenyomohebrew": 0x05AA, 1424 "yerahbenyomolefthebrew": 0x05AA, 1425 "olehebrew": 0x05AB, 1426 "iluyhebrew": 0x05AC, 1427 "dehihebrew": 0x05AD, 1428 "zinorhebrew": 0x05AE, 1429 "masoracirclehebrew": 0x05AF, 1430 "afii57799": 0x05B0, 1431 "sheva": 0x05B0, 1432 "sheva115": 0x05B0, 1433 "sheva15": 0x05B0, 1434 "sheva22": 0x05B0, 1435 "sheva2e": 0x05B0, 1436 "shevahebrew": 0x05B0, 1437 "shevanarrowhebrew": 0x05B0, 1438 "shevaquarterhebrew": 0x05B0, 1439 "shevawidehebrew": 0x05B0, 1440 "afii57801": 0x05B1, 1441 "hatafsegol": 0x05B1, 1442 "hatafsegol17": 0x05B1, 1443 "hatafsegol24": 0x05B1, 1444 "hatafsegol30": 0x05B1, 1445 "hatafsegolhebrew": 0x05B1, 1446 "hatafsegolnarrowhebrew": 0x05B1, 1447 "hatafsegolquarterhebrew": 0x05B1, 1448 "hatafsegolwidehebrew": 0x05B1, 1449 "afii57800": 0x05B2, 1450 "hatafpatah": 0x05B2, 1451 "hatafpatah16": 0x05B2, 1452 "hatafpatah23": 0x05B2, 1453 "hatafpatah2f": 0x05B2, 1454 "hatafpatahhebrew": 0x05B2, 1455 "hatafpatahnarrowhebrew": 0x05B2, 1456 "hatafpatahquarterhebrew": 0x05B2, 1457 "hatafpatahwidehebrew": 0x05B2, 1458 "afii57802": 0x05B3, 1459 "hatafqamats": 0x05B3, 1460 "hatafqamats1b": 0x05B3, 1461 "hatafqamats28": 0x05B3, 1462 "hatafqamats34": 0x05B3, 1463 "hatafqamatshebrew": 0x05B3, 1464 "hatafqamatsnarrowhebrew": 0x05B3, 1465 "hatafqamatsquarterhebrew": 0x05B3, 1466 "hatafqamatswidehebrew": 0x05B3, 1467 "afii57793": 0x05B4, 1468 "hiriq": 0x05B4, 1469 "hiriq14": 0x05B4, 1470 "hiriq21": 0x05B4, 1471 "hiriq2d": 0x05B4, 1472 "hiriqhebrew": 0x05B4, 1473 "hiriqnarrowhebrew": 0x05B4, 1474 "hiriqquarterhebrew": 0x05B4, 1475 "hiriqwidehebrew": 0x05B4, 1476 "afii57794": 0x05B5, 1477 "tsere": 0x05B5, 1478 "tsere12": 0x05B5, 1479 "tsere1e": 0x05B5, 1480 "tsere2b": 0x05B5, 1481 "tserehebrew": 0x05B5, 1482 "tserenarrowhebrew": 0x05B5, 1483 "tserequarterhebrew": 0x05B5, 1484 "tserewidehebrew": 0x05B5, 1485 "afii57795": 0x05B6, 1486 "segol": 0x05B6, 1487 "segol13": 0x05B6, 1488 "segol1f": 0x05B6, 1489 "segol2c": 0x05B6, 1490 "segolhebrew": 0x05B6, 1491 "segolnarrowhebrew": 0x05B6, 1492 "segolquarterhebrew": 0x05B6, 1493 "segolwidehebrew": 0x05B6, 1494 "afii57798": 0x05B7, 1495 "patah": 0x05B7, 1496 "patah11": 0x05B7, 1497 "patah1d": 0x05B7, 1498 "patah2a": 0x05B7, 1499 "patahhebrew": 0x05B7, 1500 "patahnarrowhebrew": 0x05B7, 1501 "patahquarterhebrew": 0x05B7, 1502 "patahwidehebrew": 0x05B7, 1503 "afii57797": 0x05B8, 1504 "qamats": 0x05B8, 1505 "qamats10": 0x05B8, 1506 "qamats1a": 0x05B8, 1507 "qamats1c": 0x05B8, 1508 "qamats27": 0x05B8, 1509 "qamats29": 0x05B8, 1510 "qamats33": 0x05B8, 1511 "qamatsde": 0x05B8, 1512 "qamatshebrew": 0x05B8, 1513 "qamatsnarrowhebrew": 0x05B8, 1514 "qamatsqatanhebrew": 0x05B8, 1515 "qamatsqatannarrowhebrew": 0x05B8, 1516 "qamatsqatanquarterhebrew": 0x05B8, 1517 "qamatsqatanwidehebrew": 0x05B8, 1518 "qamatsquarterhebrew": 0x05B8, 1519 "qamatswidehebrew": 0x05B8, 1520 "afii57806": 0x05B9, 1521 "holam": 0x05B9, 1522 "holam19": 0x05B9, 1523 "holam26": 0x05B9, 1524 "holam32": 0x05B9, 1525 "holamhebrew": 0x05B9, 1526 "holamnarrowhebrew": 0x05B9, 1527 "holamquarterhebrew": 0x05B9, 1528 "holamwidehebrew": 0x05B9, 1529 "afii57796": 0x05BB, 1530 "qubuts": 0x05BB, 1531 "qubuts18": 0x05BB, 1532 "qubuts25": 0x05BB, 1533 "qubuts31": 0x05BB, 1534 "qubutshebrew": 0x05BB, 1535 "qubutsnarrowhebrew": 0x05BB, 1536 "qubutsquarterhebrew": 0x05BB, 1537 "qubutswidehebrew": 0x05BB, 1538 "afii57807": 0x05BC, 1539 "dagesh": 0x05BC, 1540 "dageshhebrew": 0x05BC, 1541 "afii57839": 0x05BD, 1542 "siluqhebrew": 0x05BD, 1543 "siluqlefthebrew": 0x05BD, 1544 "afii57645": 0x05BE, 1545 "maqafhebrew": 0x05BE, 1546 "afii57841": 0x05BF, 1547 "rafe": 0x05BF, 1548 "rafehebrew": 0x05BF, 1549 "afii57842": 0x05C0, 1550 "paseqhebrew": 0x05C0, 1551 "afii57804": 0x05C1, 1552 "shindothebrew": 0x05C1, 1553 "afii57803": 0x05C2, 1554 "sindothebrew": 0x05C2, 1555 "afii57658": 0x05C3, 1556 "sofpasuqhebrew": 0x05C3, 1557 "upperdothebrew": 0x05C4, 1558 "afii57664": 0x05D0, 1559 "alef": 0x05D0, 1560 "alefhebrew": 0x05D0, 1561 "afii57665": 0x05D1, 1562 "bet": 0x05D1, 1563 "bethebrew": 0x05D1, 1564 "afii57666": 0x05D2, 1565 "gimel": 0x05D2, 1566 "gimelhebrew": 0x05D2, 1567 "afii57667": 0x05D3, 1568 "dalet": 0x05D3, 1569 "dalethebrew": 0x05D3, 1570 "daletsheva": 0x05D3, 1571 "daletshevahebrew": 0x05D3, 1572 "dalethatafsegol": 0x05D3, 1573 "dalethatafsegolhebrew": 0x05D3, 1574 "dalethatafpatah": 0x05D3, 1575 "dalethatafpatahhebrew": 0x05D3, 1576 "dalethiriq": 0x05D3, 1577 "dalethiriqhebrew": 0x05D3, 1578 "dalettsere": 0x05D3, 1579 "dalettserehebrew": 0x05D3, 1580 "daletsegol": 0x05D3, 1581 "daletsegolhebrew": 0x05D3, 1582 "daletpatah": 0x05D3, 1583 "daletpatahhebrew": 0x05D3, 1584 "daletqamats": 0x05D3, 1585 "daletqamatshebrew": 0x05D3, 1586 "daletholam": 0x05D3, 1587 "daletholamhebrew": 0x05D3, 1588 "daletqubuts": 0x05D3, 1589 "daletqubutshebrew": 0x05D3, 1590 "afii57668": 0x05D4, 1591 "he": 0x05D4, 1592 "hehebrew": 0x05D4, 1593 "afii57669": 0x05D5, 1594 "vav": 0x05D5, 1595 "vavhebrew": 0x05D5, 1596 "afii57670": 0x05D6, 1597 "zayin": 0x05D6, 1598 "zayinhebrew": 0x05D6, 1599 "afii57671": 0x05D7, 1600 "het": 0x05D7, 1601 "hethebrew": 0x05D7, 1602 "afii57672": 0x05D8, 1603 "tet": 0x05D8, 1604 "tethebrew": 0x05D8, 1605 "afii57673": 0x05D9, 1606 "yod": 0x05D9, 1607 "yodhebrew": 0x05D9, 1608 "afii57674": 0x05DA, 1609 "finalkaf": 0x05DA, 1610 "finalkafhebrew": 0x05DA, 1611 "finalkafsheva": 0x05DA, 1612 "finalkafshevahebrew": 0x05DA, 1613 "finalkafqamats": 0x05DA, 1614 "finalkafqamatshebrew": 0x05DA, 1615 "afii57675": 0x05DB, 1616 "kaf": 0x05DB, 1617 "kafhebrew": 0x05DB, 1618 "afii57676": 0x05DC, 1619 "lamed": 0x05DC, 1620 "lamedhebrew": 0x05DC, 1621 "lamedholam": 0x05DC, 1622 "lamedholamhebrew": 0x05DC, 1623 "lamedholamdagesh": 0x05DC, 1624 "lamedholamdageshhebrew": 0x05DC, 1625 "afii57677": 0x05DD, 1626 "finalmem": 0x05DD, 1627 "finalmemhebrew": 0x05DD, 1628 "afii57678": 0x05DE, 1629 "mem": 0x05DE, 1630 "memhebrew": 0x05DE, 1631 "afii57679": 0x05DF, 1632 "finalnun": 0x05DF, 1633 "finalnunhebrew": 0x05DF, 1634 "afii57680": 0x05E0, 1635 "nun": 0x05E0, 1636 "nunhebrew": 0x05E0, 1637 "afii57681": 0x05E1, 1638 "samekh": 0x05E1, 1639 "samekhhebrew": 0x05E1, 1640 "afii57682": 0x05E2, 1641 "ayin": 0x05E2, 1642 "ayinhebrew": 0x05E2, 1643 "afii57683": 0x05E3, 1644 "finalpe": 0x05E3, 1645 "finalpehebrew": 0x05E3, 1646 "afii57684": 0x05E4, 1647 "pe": 0x05E4, 1648 "pehebrew": 0x05E4, 1649 "afii57685": 0x05E5, 1650 "finaltsadi": 0x05E5, 1651 "finaltsadihebrew": 0x05E5, 1652 "afii57686": 0x05E6, 1653 "tsadi": 0x05E6, 1654 "tsadihebrew": 0x05E6, 1655 "afii57687": 0x05E7, 1656 "qof": 0x05E7, 1657 "qofhebrew": 0x05E7, 1658 "qofsheva": 0x05E7, 1659 "qofshevahebrew": 0x05E7, 1660 "qofhatafsegol": 0x05E7, 1661 "qofhatafsegolhebrew": 0x05E7, 1662 "qofhatafpatah": 0x05E7, 1663 "qofhatafpatahhebrew": 0x05E7, 1664 "qofhiriq": 0x05E7, 1665 "qofhiriqhebrew": 0x05E7, 1666 "qoftsere": 0x05E7, 1667 "qoftserehebrew": 0x05E7, 1668 "qofsegol": 0x05E7, 1669 "qofsegolhebrew": 0x05E7, 1670 "qofpatah": 0x05E7, 1671 "qofpatahhebrew": 0x05E7, 1672 "qofqamats": 0x05E7, 1673 "qofqamatshebrew": 0x05E7, 1674 "qofholam": 0x05E7, 1675 "qofholamhebrew": 0x05E7, 1676 "qofqubuts": 0x05E7, 1677 "qofqubutshebrew": 0x05E7, 1678 "afii57688": 0x05E8, 1679 "resh": 0x05E8, 1680 "reshhebrew": 0x05E8, 1681 "reshsheva": 0x05E8, 1682 "reshshevahebrew": 0x05E8, 1683 "reshhatafsegol": 0x05E8, 1684 "reshhatafsegolhebrew": 0x05E8, 1685 "reshhatafpatah": 0x05E8, 1686 "reshhatafpatahhebrew": 0x05E8, 1687 "reshhiriq": 0x05E8, 1688 "reshhiriqhebrew": 0x05E8, 1689 "reshtsere": 0x05E8, 1690 "reshtserehebrew": 0x05E8, 1691 "reshsegol": 0x05E8, 1692 "reshsegolhebrew": 0x05E8, 1693 "reshpatah": 0x05E8, 1694 "reshpatahhebrew": 0x05E8, 1695 "reshqamats": 0x05E8, 1696 "reshqamatshebrew": 0x05E8, 1697 "reshholam": 0x05E8, 1698 "reshholamhebrew": 0x05E8, 1699 "reshqubuts": 0x05E8, 1700 "reshqubutshebrew": 0x05E8, 1701 "afii57689": 0x05E9, 1702 "shin": 0x05E9, 1703 "shinhebrew": 0x05E9, 1704 "afii57690": 0x05EA, 1705 "tav": 0x05EA, 1706 "tavhebrew": 0x05EA, 1707 "afii57716": 0x05F0, 1708 "vavvavhebrew": 0x05F0, 1709 "afii57717": 0x05F1, 1710 "vavyodhebrew": 0x05F1, 1711 "afii57718": 0x05F2, 1712 "yodyodhebrew": 0x05F2, 1713 "gereshhebrew": 0x05F3, 1714 "gershayimhebrew": 0x05F4, 1715 "afii57388": 0x060C, 1716 "commaarabic": 0x060C, 1717 "afii57403": 0x061B, 1718 "semicolonarabic": 0x061B, 1719 "afii57407": 0x061F, 1720 "questionarabic": 0x061F, 1721 "afii57409": 0x0621, 1722 "hamzaarabic": 0x0621, 1723 "hamzalowarabic": 0x0621, 1724 "hamzafathatanarabic": 0x0621, 1725 "hamzadammatanarabic": 0x0621, 1726 "hamzalowkasratanarabic": 0x0621, 1727 "hamzafathaarabic": 0x0621, 1728 "hamzadammaarabic": 0x0621, 1729 "hamzalowkasraarabic": 0x0621, 1730 "hamzasukunarabic": 0x0621, 1731 "afii57410": 0x0622, 1732 "alefmaddaabovearabic": 0x0622, 1733 "afii57411": 0x0623, 1734 "alefhamzaabovearabic": 0x0623, 1735 "afii57412": 0x0624, 1736 "wawhamzaabovearabic": 0x0624, 1737 "afii57413": 0x0625, 1738 "alefhamzabelowarabic": 0x0625, 1739 "afii57414": 0x0626, 1740 "yehhamzaabovearabic": 0x0626, 1741 "afii57415": 0x0627, 1742 "alefarabic": 0x0627, 1743 "afii57416": 0x0628, 1744 "beharabic": 0x0628, 1745 "afii57417": 0x0629, 1746 "tehmarbutaarabic": 0x0629, 1747 "afii57418": 0x062A, 1748 "teharabic": 0x062A, 1749 "afii57419": 0x062B, 1750 "theharabic": 0x062B, 1751 "afii57420": 0x062C, 1752 "jeemarabic": 0x062C, 1753 "afii57421": 0x062D, 1754 "haharabic": 0x062D, 1755 "afii57422": 0x062E, 1756 "khaharabic": 0x062E, 1757 "afii57423": 0x062F, 1758 "dalarabic": 0x062F, 1759 "afii57424": 0x0630, 1760 "thalarabic": 0x0630, 1761 "afii57425": 0x0631, 1762 "reharabic": 0x0631, 1763 "rehyehaleflamarabic": 0x0631, 1764 "afii57426": 0x0632, 1765 "zainarabic": 0x0632, 1766 "afii57427": 0x0633, 1767 "seenarabic": 0x0633, 1768 "afii57428": 0x0634, 1769 "sheenarabic": 0x0634, 1770 "afii57429": 0x0635, 1771 "sadarabic": 0x0635, 1772 "afii57430": 0x0636, 1773 "dadarabic": 0x0636, 1774 "afii57431": 0x0637, 1775 "taharabic": 0x0637, 1776 "afii57432": 0x0638, 1777 "zaharabic": 0x0638, 1778 "afii57433": 0x0639, 1779 "ainarabic": 0x0639, 1780 "afii57434": 0x063A, 1781 "ghainarabic": 0x063A, 1782 "afii57440": 0x0640, 1783 "kashidaautoarabic": 0x0640, 1784 "kashidaautonosidebearingarabic": 0x0640, 1785 "tatweelarabic": 0x0640, 1786 "afii57441": 0x0641, 1787 "feharabic": 0x0641, 1788 "afii57442": 0x0642, 1789 "qafarabic": 0x0642, 1790 "afii57443": 0x0643, 1791 "kafarabic": 0x0643, 1792 "afii57444": 0x0644, 1793 "lamarabic": 0x0644, 1794 "afii57445": 0x0645, 1795 "meemarabic": 0x0645, 1796 "afii57446": 0x0646, 1797 "noonarabic": 0x0646, 1798 "afii57470": 0x0647, 1799 "heharabic": 0x0647, 1800 "afii57448": 0x0648, 1801 "wawarabic": 0x0648, 1802 "afii57449": 0x0649, 1803 "alefmaksuraarabic": 0x0649, 1804 "afii57450": 0x064A, 1805 "yeharabic": 0x064A, 1806 "afii57451": 0x064B, 1807 "fathatanarabic": 0x064B, 1808 "afii57452": 0x064C, 1809 "dammatanaltonearabic": 0x064C, 1810 "dammatanarabic": 0x064C, 1811 "afii57453": 0x064D, 1812 "kasratanarabic": 0x064D, 1813 "afii57454": 0x064E, 1814 "fathaarabic": 0x064E, 1815 "fathalowarabic": 0x064E, 1816 "afii57455": 0x064F, 1817 "dammaarabic": 0x064F, 1818 "dammalowarabic": 0x064F, 1819 "afii57456": 0x0650, 1820 "kasraarabic": 0x0650, 1821 "afii57457": 0x0651, 1822 "shaddaarabic": 0x0651, 1823 "shaddafathatanarabic": 0x0651, 1824 "afii57458": 0x0652, 1825 "sukunarabic": 0x0652, 1826 "afii57392": 0x0660, 1827 "zeroarabic": 0x0660, 1828 "zerohackarabic": 0x0660, 1829 "afii57393": 0x0661, 1830 "onearabic": 0x0661, 1831 "onehackarabic": 0x0661, 1832 "afii57394": 0x0662, 1833 "twoarabic": 0x0662, 1834 "twohackarabic": 0x0662, 1835 "afii57395": 0x0663, 1836 "threearabic": 0x0663, 1837 "threehackarabic": 0x0663, 1838 "afii57396": 0x0664, 1839 "fourarabic": 0x0664, 1840 "fourhackarabic": 0x0664, 1841 "afii57397": 0x0665, 1842 "fivearabic": 0x0665, 1843 "fivehackarabic": 0x0665, 1844 "afii57398": 0x0666, 1845 "sixarabic": 0x0666, 1846 "sixhackarabic": 0x0666, 1847 "afii57399": 0x0667, 1848 "sevenarabic": 0x0667, 1849 "sevenhackarabic": 0x0667, 1850 "afii57400": 0x0668, 1851 "eightarabic": 0x0668, 1852 "eighthackarabic": 0x0668, 1853 "afii57401": 0x0669, 1854 "ninearabic": 0x0669, 1855 "ninehackarabic": 0x0669, 1856 "afii57381": 0x066A, 1857 "percentarabic": 0x066A, 1858 "decimalseparatorarabic": 0x066B, 1859 "decimalseparatorpersian": 0x066B, 1860 "thousandsseparatorarabic": 0x066C, 1861 "thousandsseparatorpersian": 0x066C, 1862 "afii63167": 0x066D, 1863 "asteriskaltonearabic": 0x066D, 1864 "asteriskarabic": 0x066D, 1865 "afii57511": 0x0679, 1866 "tteharabic": 0x0679, 1867 "afii57506": 0x067E, 1868 "peharabic": 0x067E, 1869 "afii57507": 0x0686, 1870 "tcheharabic": 0x0686, 1871 "afii57512": 0x0688, 1872 "ddalarabic": 0x0688, 1873 "afii57513": 0x0691, 1874 "rreharabic": 0x0691, 1875 "afii57508": 0x0698, 1876 "jeharabic": 0x0698, 1877 "afii57505": 0x06A4, 1878 "veharabic": 0x06A4, 1879 "afii57509": 0x06AF, 1880 "gafarabic": 0x06AF, 1881 "afii57514": 0x06BA, 1882 "noonghunnaarabic": 0x06BA, 1883 "haaltonearabic": 0x06C1, 1884 "hehaltonearabic": 0x06C1, 1885 "yehthreedotsbelowarabic": 0x06D1, 1886 "afii57519": 0x06D2, 1887 "yehbarreearabic": 0x06D2, 1888 "afii57534": 0x06D5, 1889 "zeropersian": 0x06F0, 1890 "onepersian": 0x06F1, 1891 "twopersian": 0x06F2, 1892 "threepersian": 0x06F3, 1893 "fourpersian": 0x06F4, 1894 "fivepersian": 0x06F5, 1895 "sixpersian": 0x06F6, 1896 "sevenpersian": 0x06F7, 1897 "eightpersian": 0x06F8, 1898 "ninepersian": 0x06F9, 1899 "candrabindudeva": 0x0901, 1900 "anusvaradeva": 0x0902, 1901 "visargadeva": 0x0903, 1902 "adeva": 0x0905, 1903 "aadeva": 0x0906, 1904 "ideva": 0x0907, 1905 "iideva": 0x0908, 1906 "udeva": 0x0909, 1907 "uudeva": 0x090A, 1908 "rvocalicdeva": 0x090B, 1909 "lvocalicdeva": 0x090C, 1910 "ecandradeva": 0x090D, 1911 "eshortdeva": 0x090E, 1912 "edeva": 0x090F, 1913 "aideva": 0x0910, 1914 "ocandradeva": 0x0911, 1915 "oshortdeva": 0x0912, 1916 "odeva": 0x0913, 1917 "audeva": 0x0914, 1918 "kadeva": 0x0915, 1919 "khadeva": 0x0916, 1920 "gadeva": 0x0917, 1921 "ghadeva": 0x0918, 1922 "ngadeva": 0x0919, 1923 "cadeva": 0x091A, 1924 "chadeva": 0x091B, 1925 "jadeva": 0x091C, 1926 "jhadeva": 0x091D, 1927 "nyadeva": 0x091E, 1928 "ttadeva": 0x091F, 1929 "tthadeva": 0x0920, 1930 "ddadeva": 0x0921, 1931 "ddhadeva": 0x0922, 1932 "nnadeva": 0x0923, 1933 "tadeva": 0x0924, 1934 "thadeva": 0x0925, 1935 "dadeva": 0x0926, 1936 "dhadeva": 0x0927, 1937 "nadeva": 0x0928, 1938 "nnnadeva": 0x0929, 1939 "padeva": 0x092A, 1940 "phadeva": 0x092B, 1941 "badeva": 0x092C, 1942 "bhadeva": 0x092D, 1943 "madeva": 0x092E, 1944 "yadeva": 0x092F, 1945 "radeva": 0x0930, 1946 "rradeva": 0x0931, 1947 "ladeva": 0x0932, 1948 "lladeva": 0x0933, 1949 "llladeva": 0x0934, 1950 "vadeva": 0x0935, 1951 "shadeva": 0x0936, 1952 "ssadeva": 0x0937, 1953 "sadeva": 0x0938, 1954 "hadeva": 0x0939, 1955 "nuktadeva": 0x093C, 1956 "avagrahadeva": 0x093D, 1957 "aavowelsigndeva": 0x093E, 1958 "ivowelsigndeva": 0x093F, 1959 "iivowelsigndeva": 0x0940, 1960 "uvowelsigndeva": 0x0941, 1961 "uuvowelsigndeva": 0x0942, 1962 "rvocalicvowelsigndeva": 0x0943, 1963 "rrvocalicvowelsigndeva": 0x0944, 1964 "ecandravowelsigndeva": 0x0945, 1965 "eshortvowelsigndeva": 0x0946, 1966 "evowelsigndeva": 0x0947, 1967 "aivowelsigndeva": 0x0948, 1968 "ocandravowelsigndeva": 0x0949, 1969 "oshortvowelsigndeva": 0x094A, 1970 "ovowelsigndeva": 0x094B, 1971 "auvowelsigndeva": 0x094C, 1972 "viramadeva": 0x094D, 1973 "omdeva": 0x0950, 1974 "udattadeva": 0x0951, 1975 "anudattadeva": 0x0952, 1976 "gravedeva": 0x0953, 1977 "acutedeva": 0x0954, 1978 "qadeva": 0x0958, 1979 "khhadeva": 0x0959, 1980 "ghhadeva": 0x095A, 1981 "zadeva": 0x095B, 1982 "dddhadeva": 0x095C, 1983 "rhadeva": 0x095D, 1984 "fadeva": 0x095E, 1985 "yyadeva": 0x095F, 1986 "rrvocalicdeva": 0x0960, 1987 "llvocalicdeva": 0x0961, 1988 "lvocalicvowelsigndeva": 0x0962, 1989 "llvocalicvowelsigndeva": 0x0963, 1990 "danda": 0x0964, 1991 "dbldanda": 0x0965, 1992 "zerodeva": 0x0966, 1993 "onedeva": 0x0967, 1994 "twodeva": 0x0968, 1995 "threedeva": 0x0969, 1996 "fourdeva": 0x096A, 1997 "fivedeva": 0x096B, 1998 "sixdeva": 0x096C, 1999 "sevendeva": 0x096D, 2000 "eightdeva": 0x096E, 2001 "ninedeva": 0x096F, 2002 "abbreviationsigndeva": 0x0970, 2003 "candrabindubengali": 0x0981, 2004 "anusvarabengali": 0x0982, 2005 "visargabengali": 0x0983, 2006 "abengali": 0x0985, 2007 "aabengali": 0x0986, 2008 "ibengali": 0x0987, 2009 "iibengali": 0x0988, 2010 "ubengali": 0x0989, 2011 "uubengali": 0x098A, 2012 "rvocalicbengali": 0x098B, 2013 "lvocalicbengali": 0x098C, 2014 "ebengali": 0x098F, 2015 "aibengali": 0x0990, 2016 "obengali": 0x0993, 2017 "aubengali": 0x0994, 2018 "kabengali": 0x0995, 2019 "khabengali": 0x0996, 2020 "gabengali": 0x0997, 2021 "ghabengali": 0x0998, 2022 "ngabengali": 0x0999, 2023 "cabengali": 0x099A, 2024 "chabengali": 0x099B, 2025 "jabengali": 0x099C, 2026 "jhabengali": 0x099D, 2027 "nyabengali": 0x099E, 2028 "ttabengali": 0x099F, 2029 "tthabengali": 0x09A0, 2030 "ddabengali": 0x09A1, 2031 "ddhabengali": 0x09A2, 2032 "nnabengali": 0x09A3, 2033 "tabengali": 0x09A4, 2034 "thabengali": 0x09A5, 2035 "dabengali": 0x09A6, 2036 "dhabengali": 0x09A7, 2037 "nabengali": 0x09A8, 2038 "pabengali": 0x09AA, 2039 "phabengali": 0x09AB, 2040 "babengali": 0x09AC, 2041 "bhabengali": 0x09AD, 2042 "mabengali": 0x09AE, 2043 "yabengali": 0x09AF, 2044 "rabengali": 0x09B0, 2045 "labengali": 0x09B2, 2046 "shabengali": 0x09B6, 2047 "ssabengali": 0x09B7, 2048 "sabengali": 0x09B8, 2049 "habengali": 0x09B9, 2050 "nuktabengali": 0x09BC, 2051 "aavowelsignbengali": 0x09BE, 2052 "ivowelsignbengali": 0x09BF, 2053 "iivowelsignbengali": 0x09C0, 2054 "uvowelsignbengali": 0x09C1, 2055 "uuvowelsignbengali": 0x09C2, 2056 "rvocalicvowelsignbengali": 0x09C3, 2057 "rrvocalicvowelsignbengali": 0x09C4, 2058 "evowelsignbengali": 0x09C7, 2059 "aivowelsignbengali": 0x09C8, 2060 "ovowelsignbengali": 0x09CB, 2061 "auvowelsignbengali": 0x09CC, 2062 "viramabengali": 0x09CD, 2063 "aulengthmarkbengali": 0x09D7, 2064 "rrabengali": 0x09DC, 2065 "rhabengali": 0x09DD, 2066 "yyabengali": 0x09DF, 2067 "rrvocalicbengali": 0x09E0, 2068 "llvocalicbengali": 0x09E1, 2069 "lvocalicvowelsignbengali": 0x09E2, 2070 "llvocalicvowelsignbengali": 0x09E3, 2071 "zerobengali": 0x09E6, 2072 "onebengali": 0x09E7, 2073 "twobengali": 0x09E8, 2074 "threebengali": 0x09E9, 2075 "fourbengali": 0x09EA, 2076 "fivebengali": 0x09EB, 2077 "sixbengali": 0x09EC, 2078 "sevenbengali": 0x09ED, 2079 "eightbengali": 0x09EE, 2080 "ninebengali": 0x09EF, 2081 "ramiddlediagonalbengali": 0x09F0, 2082 "ralowerdiagonalbengali": 0x09F1, 2083 "rupeemarkbengali": 0x09F2, 2084 "rupeesignbengali": 0x09F3, 2085 "onenumeratorbengali": 0x09F4, 2086 "twonumeratorbengali": 0x09F5, 2087 "threenumeratorbengali": 0x09F6, 2088 "fournumeratorbengali": 0x09F7, 2089 "denominatorminusonenumeratorbengali": 0x09F8, 2090 "sixteencurrencydenominatorbengali": 0x09F9, 2091 "issharbengali": 0x09FA, 2092 "bindigurmukhi": 0x0A02, 2093 "agurmukhi": 0x0A05, 2094 "aagurmukhi": 0x0A06, 2095 "igurmukhi": 0x0A07, 2096 "iigurmukhi": 0x0A08, 2097 "ugurmukhi": 0x0A09, 2098 "uugurmukhi": 0x0A0A, 2099 "eegurmukhi": 0x0A0F, 2100 "aigurmukhi": 0x0A10, 2101 "oogurmukhi": 0x0A13, 2102 "augurmukhi": 0x0A14, 2103 "kagurmukhi": 0x0A15, 2104 "khagurmukhi": 0x0A16, 2105 "gagurmukhi": 0x0A17, 2106 "ghagurmukhi": 0x0A18, 2107 "ngagurmukhi": 0x0A19, 2108 "cagurmukhi": 0x0A1A, 2109 "chagurmukhi": 0x0A1B, 2110 "jagurmukhi": 0x0A1C, 2111 "jhagurmukhi": 0x0A1D, 2112 "nyagurmukhi": 0x0A1E, 2113 "ttagurmukhi": 0x0A1F, 2114 "tthagurmukhi": 0x0A20, 2115 "ddagurmukhi": 0x0A21, 2116 "ddhagurmukhi": 0x0A22, 2117 "nnagurmukhi": 0x0A23, 2118 "tagurmukhi": 0x0A24, 2119 "thagurmukhi": 0x0A25, 2120 "dagurmukhi": 0x0A26, 2121 "dhagurmukhi": 0x0A27, 2122 "nagurmukhi": 0x0A28, 2123 "pagurmukhi": 0x0A2A, 2124 "phagurmukhi": 0x0A2B, 2125 "bagurmukhi": 0x0A2C, 2126 "bhagurmukhi": 0x0A2D, 2127 "magurmukhi": 0x0A2E, 2128 "yagurmukhi": 0x0A2F, 2129 "ragurmukhi": 0x0A30, 2130 "lagurmukhi": 0x0A32, 2131 "vagurmukhi": 0x0A35, 2132 "shagurmukhi": 0x0A36, 2133 "sagurmukhi": 0x0A38, 2134 "hagurmukhi": 0x0A39, 2135 "nuktagurmukhi": 0x0A3C, 2136 "aamatragurmukhi": 0x0A3E, 2137 "imatragurmukhi": 0x0A3F, 2138 "iimatragurmukhi": 0x0A40, 2139 "umatragurmukhi": 0x0A41, 2140 "uumatragurmukhi": 0x0A42, 2141 "eematragurmukhi": 0x0A47, 2142 "aimatragurmukhi": 0x0A48, 2143 "oomatragurmukhi": 0x0A4B, 2144 "aumatragurmukhi": 0x0A4C, 2145 "halantgurmukhi": 0x0A4D, 2146 "khhagurmukhi": 0x0A59, 2147 "ghhagurmukhi": 0x0A5A, 2148 "zagurmukhi": 0x0A5B, 2149 "rragurmukhi": 0x0A5C, 2150 "fagurmukhi": 0x0A5E, 2151 "zerogurmukhi": 0x0A66, 2152 "onegurmukhi": 0x0A67, 2153 "twogurmukhi": 0x0A68, 2154 "threegurmukhi": 0x0A69, 2155 "fourgurmukhi": 0x0A6A, 2156 "fivegurmukhi": 0x0A6B, 2157 "sixgurmukhi": 0x0A6C, 2158 "sevengurmukhi": 0x0A6D, 2159 "eightgurmukhi": 0x0A6E, 2160 "ninegurmukhi": 0x0A6F, 2161 "tippigurmukhi": 0x0A70, 2162 "addakgurmukhi": 0x0A71, 2163 "irigurmukhi": 0x0A72, 2164 "uragurmukhi": 0x0A73, 2165 "ekonkargurmukhi": 0x0A74, 2166 "candrabindugujarati": 0x0A81, 2167 "anusvaragujarati": 0x0A82, 2168 "visargagujarati": 0x0A83, 2169 "agujarati": 0x0A85, 2170 "aagujarati": 0x0A86, 2171 "igujarati": 0x0A87, 2172 "iigujarati": 0x0A88, 2173 "ugujarati": 0x0A89, 2174 "uugujarati": 0x0A8A, 2175 "rvocalicgujarati": 0x0A8B, 2176 "ecandragujarati": 0x0A8D, 2177 "egujarati": 0x0A8F, 2178 "aigujarati": 0x0A90, 2179 "ocandragujarati": 0x0A91, 2180 "ogujarati": 0x0A93, 2181 "augujarati": 0x0A94, 2182 "kagujarati": 0x0A95, 2183 "khagujarati": 0x0A96, 2184 "gagujarati": 0x0A97, 2185 "ghagujarati": 0x0A98, 2186 "ngagujarati": 0x0A99, 2187 "cagujarati": 0x0A9A, 2188 "chagujarati": 0x0A9B, 2189 "jagujarati": 0x0A9C, 2190 "jhagujarati": 0x0A9D, 2191 "nyagujarati": 0x0A9E, 2192 "ttagujarati": 0x0A9F, 2193 "tthagujarati": 0x0AA0, 2194 "ddagujarati": 0x0AA1, 2195 "ddhagujarati": 0x0AA2, 2196 "nnagujarati": 0x0AA3, 2197 "tagujarati": 0x0AA4, 2198 "thagujarati": 0x0AA5, 2199 "dagujarati": 0x0AA6, 2200 "dhagujarati": 0x0AA7, 2201 "nagujarati": 0x0AA8, 2202 "pagujarati": 0x0AAA, 2203 "phagujarati": 0x0AAB, 2204 "bagujarati": 0x0AAC, 2205 "bhagujarati": 0x0AAD, 2206 "magujarati": 0x0AAE, 2207 "yagujarati": 0x0AAF, 2208 "ragujarati": 0x0AB0, 2209 "lagujarati": 0x0AB2, 2210 "llagujarati": 0x0AB3, 2211 "vagujarati": 0x0AB5, 2212 "shagujarati": 0x0AB6, 2213 "ssagujarati": 0x0AB7, 2214 "sagujarati": 0x0AB8, 2215 "hagujarati": 0x0AB9, 2216 "nuktagujarati": 0x0ABC, 2217 "aavowelsigngujarati": 0x0ABE, 2218 "ivowelsigngujarati": 0x0ABF, 2219 "iivowelsigngujarati": 0x0AC0, 2220 "uvowelsigngujarati": 0x0AC1, 2221 "uuvowelsigngujarati": 0x0AC2, 2222 "rvocalicvowelsigngujarati": 0x0AC3, 2223 "rrvocalicvowelsigngujarati": 0x0AC4, 2224 "ecandravowelsigngujarati": 0x0AC5, 2225 "evowelsigngujarati": 0x0AC7, 2226 "aivowelsigngujarati": 0x0AC8, 2227 "ocandravowelsigngujarati": 0x0AC9, 2228 "ovowelsigngujarati": 0x0ACB, 2229 "auvowelsigngujarati": 0x0ACC, 2230 "viramagujarati": 0x0ACD, 2231 "omgujarati": 0x0AD0, 2232 "rrvocalicgujarati": 0x0AE0, 2233 "zerogujarati": 0x0AE6, 2234 "onegujarati": 0x0AE7, 2235 "twogujarati": 0x0AE8, 2236 "threegujarati": 0x0AE9, 2237 "fourgujarati": 0x0AEA, 2238 "fivegujarati": 0x0AEB, 2239 "sixgujarati": 0x0AEC, 2240 "sevengujarati": 0x0AED, 2241 "eightgujarati": 0x0AEE, 2242 "ninegujarati": 0x0AEF, 2243 "kokaithai": 0x0E01, 2244 "khokhaithai": 0x0E02, 2245 "khokhuatthai": 0x0E03, 2246 "khokhwaithai": 0x0E04, 2247 "khokhonthai": 0x0E05, 2248 "khorakhangthai": 0x0E06, 2249 "ngonguthai": 0x0E07, 2250 "chochanthai": 0x0E08, 2251 "chochingthai": 0x0E09, 2252 "chochangthai": 0x0E0A, 2253 "sosothai": 0x0E0B, 2254 "chochoethai": 0x0E0C, 2255 "yoyingthai": 0x0E0D, 2256 "dochadathai": 0x0E0E, 2257 "topatakthai": 0x0E0F, 2258 "thothanthai": 0x0E10, 2259 "thonangmonthothai": 0x0E11, 2260 "thophuthaothai": 0x0E12, 2261 "nonenthai": 0x0E13, 2262 "dodekthai": 0x0E14, 2263 "totaothai": 0x0E15, 2264 "thothungthai": 0x0E16, 2265 "thothahanthai": 0x0E17, 2266 "thothongthai": 0x0E18, 2267 "nonuthai": 0x0E19, 2268 "bobaimaithai": 0x0E1A, 2269 "poplathai": 0x0E1B, 2270 "phophungthai": 0x0E1C, 2271 "fofathai": 0x0E1D, 2272 "phophanthai": 0x0E1E, 2273 "fofanthai": 0x0E1F, 2274 "phosamphaothai": 0x0E20, 2275 "momathai": 0x0E21, 2276 "yoyakthai": 0x0E22, 2277 "roruathai": 0x0E23, 2278 "ruthai": 0x0E24, 2279 "lolingthai": 0x0E25, 2280 "luthai": 0x0E26, 2281 "wowaenthai": 0x0E27, 2282 "sosalathai": 0x0E28, 2283 "sorusithai": 0x0E29, 2284 "sosuathai": 0x0E2A, 2285 "hohipthai": 0x0E2B, 2286 "lochulathai": 0x0E2C, 2287 "oangthai": 0x0E2D, 2288 "honokhukthai": 0x0E2E, 2289 "paiyannoithai": 0x0E2F, 2290 "saraathai": 0x0E30, 2291 "maihanakatthai": 0x0E31, 2292 "saraaathai": 0x0E32, 2293 "saraamthai": 0x0E33, 2294 "saraithai": 0x0E34, 2295 "saraiithai": 0x0E35, 2296 "sarauethai": 0x0E36, 2297 "saraueethai": 0x0E37, 2298 "sarauthai": 0x0E38, 2299 "sarauuthai": 0x0E39, 2300 "phinthuthai": 0x0E3A, 2301 "bahtthai": 0x0E3F, 2302 "saraethai": 0x0E40, 2303 "saraaethai": 0x0E41, 2304 "saraothai": 0x0E42, 2305 "saraaimaimuanthai": 0x0E43, 2306 "saraaimaimalaithai": 0x0E44, 2307 "lakkhangyaothai": 0x0E45, 2308 "maiyamokthai": 0x0E46, 2309 "maitaikhuthai": 0x0E47, 2310 "maiekthai": 0x0E48, 2311 "maithothai": 0x0E49, 2312 "maitrithai": 0x0E4A, 2313 "maichattawathai": 0x0E4B, 2314 "thanthakhatthai": 0x0E4C, 2315 "nikhahitthai": 0x0E4D, 2316 "yamakkanthai": 0x0E4E, 2317 "fongmanthai": 0x0E4F, 2318 "zerothai": 0x0E50, 2319 "onethai": 0x0E51, 2320 "twothai": 0x0E52, 2321 "threethai": 0x0E53, 2322 "fourthai": 0x0E54, 2323 "fivethai": 0x0E55, 2324 "sixthai": 0x0E56, 2325 "seventhai": 0x0E57, 2326 "eightthai": 0x0E58, 2327 "ninethai": 0x0E59, 2328 "angkhankhuthai": 0x0E5A, 2329 "khomutthai": 0x0E5B, 2330 "Aringbelow": 0x1E00, 2331 "aringbelow": 0x1E01, 2332 "Bdotaccent": 0x1E02, 2333 "bdotaccent": 0x1E03, 2334 "Bdotbelow": 0x1E04, 2335 "bdotbelow": 0x1E05, 2336 "Blinebelow": 0x1E06, 2337 "blinebelow": 0x1E07, 2338 "Ccedillaacute": 0x1E08, 2339 "ccedillaacute": 0x1E09, 2340 "Ddotaccent": 0x1E0A, 2341 "ddotaccent": 0x1E0B, 2342 "Ddotbelow": 0x1E0C, 2343 "ddotbelow": 0x1E0D, 2344 "Dlinebelow": 0x1E0E, 2345 "dlinebelow": 0x1E0F, 2346 "Dcedilla": 0x1E10, 2347 "dcedilla": 0x1E11, 2348 "Dcircumflexbelow": 0x1E12, 2349 "dcircumflexbelow": 0x1E13, 2350 "Emacrongrave": 0x1E14, 2351 "emacrongrave": 0x1E15, 2352 "Emacronacute": 0x1E16, 2353 "emacronacute": 0x1E17, 2354 "Ecircumflexbelow": 0x1E18, 2355 "ecircumflexbelow": 0x1E19, 2356 "Etildebelow": 0x1E1A, 2357 "etildebelow": 0x1E1B, 2358 "Ecedillabreve": 0x1E1C, 2359 "ecedillabreve": 0x1E1D, 2360 "Fdotaccent": 0x1E1E, 2361 "fdotaccent": 0x1E1F, 2362 "Gmacron": 0x1E20, 2363 "gmacron": 0x1E21, 2364 "Hdotaccent": 0x1E22, 2365 "hdotaccent": 0x1E23, 2366 "Hdotbelow": 0x1E24, 2367 "hdotbelow": 0x1E25, 2368 "Hdieresis": 0x1E26, 2369 "hdieresis": 0x1E27, 2370 "Hcedilla": 0x1E28, 2371 "hcedilla": 0x1E29, 2372 "Hbrevebelow": 0x1E2A, 2373 "hbrevebelow": 0x1E2B, 2374 "Itildebelow": 0x1E2C, 2375 "itildebelow": 0x1E2D, 2376 "Idieresisacute": 0x1E2E, 2377 "idieresisacute": 0x1E2F, 2378 "Kacute": 0x1E30, 2379 "kacute": 0x1E31, 2380 "Kdotbelow": 0x1E32, 2381 "kdotbelow": 0x1E33, 2382 "Klinebelow": 0x1E34, 2383 "klinebelow": 0x1E35, 2384 "Ldotbelow": 0x1E36, 2385 "ldotbelow": 0x1E37, 2386 "Ldotbelowmacron": 0x1E38, 2387 "ldotbelowmacron": 0x1E39, 2388 "Llinebelow": 0x1E3A, 2389 "llinebelow": 0x1E3B, 2390 "Lcircumflexbelow": 0x1E3C, 2391 "lcircumflexbelow": 0x1E3D, 2392 "Macute": 0x1E3E, 2393 "macute": 0x1E3F, 2394 "Mdotaccent": 0x1E40, 2395 "mdotaccent": 0x1E41, 2396 "Mdotbelow": 0x1E42, 2397 "mdotbelow": 0x1E43, 2398 "Ndotaccent": 0x1E44, 2399 "ndotaccent": 0x1E45, 2400 "Ndotbelow": 0x1E46, 2401 "ndotbelow": 0x1E47, 2402 "Nlinebelow": 0x1E48, 2403 "nlinebelow": 0x1E49, 2404 "Ncircumflexbelow": 0x1E4A, 2405 "ncircumflexbelow": 0x1E4B, 2406 "Otildeacute": 0x1E4C, 2407 "otildeacute": 0x1E4D, 2408 "Otildedieresis": 0x1E4E, 2409 "otildedieresis": 0x1E4F, 2410 "Omacrongrave": 0x1E50, 2411 "omacrongrave": 0x1E51, 2412 "Omacronacute": 0x1E52, 2413 "omacronacute": 0x1E53, 2414 "Pacute": 0x1E54, 2415 "pacute": 0x1E55, 2416 "Pdotaccent": 0x1E56, 2417 "pdotaccent": 0x1E57, 2418 "Rdotaccent": 0x1E58, 2419 "rdotaccent": 0x1E59, 2420 "Rdotbelow": 0x1E5A, 2421 "rdotbelow": 0x1E5B, 2422 "Rdotbelowmacron": 0x1E5C, 2423 "rdotbelowmacron": 0x1E5D, 2424 "Rlinebelow": 0x1E5E, 2425 "rlinebelow": 0x1E5F, 2426 "Sdotaccent": 0x1E60, 2427 "sdotaccent": 0x1E61, 2428 "Sdotbelow": 0x1E62, 2429 "sdotbelow": 0x1E63, 2430 "Sacutedotaccent": 0x1E64, 2431 "sacutedotaccent": 0x1E65, 2432 "Scarondotaccent": 0x1E66, 2433 "scarondotaccent": 0x1E67, 2434 "Sdotbelowdotaccent": 0x1E68, 2435 "sdotbelowdotaccent": 0x1E69, 2436 "Tdotaccent": 0x1E6A, 2437 "tdotaccent": 0x1E6B, 2438 "Tdotbelow": 0x1E6C, 2439 "tdotbelow": 0x1E6D, 2440 "Tlinebelow": 0x1E6E, 2441 "tlinebelow": 0x1E6F, 2442 "Tcircumflexbelow": 0x1E70, 2443 "tcircumflexbelow": 0x1E71, 2444 "Udieresisbelow": 0x1E72, 2445 "udieresisbelow": 0x1E73, 2446 "Utildebelow": 0x1E74, 2447 "utildebelow": 0x1E75, 2448 "Ucircumflexbelow": 0x1E76, 2449 "ucircumflexbelow": 0x1E77, 2450 "Utildeacute": 0x1E78, 2451 "utildeacute": 0x1E79, 2452 "Umacrondieresis": 0x1E7A, 2453 "umacrondieresis": 0x1E7B, 2454 "Vtilde": 0x1E7C, 2455 "vtilde": 0x1E7D, 2456 "Vdotbelow": 0x1E7E, 2457 "vdotbelow": 0x1E7F, 2458 "Wgrave": 0x1E80, 2459 "wgrave": 0x1E81, 2460 "Wacute": 0x1E82, 2461 "wacute": 0x1E83, 2462 "Wdieresis": 0x1E84, 2463 "wdieresis": 0x1E85, 2464 "Wdotaccent": 0x1E86, 2465 "wdotaccent": 0x1E87, 2466 "Wdotbelow": 0x1E88, 2467 "wdotbelow": 0x1E89, 2468 "Xdotaccent": 0x1E8A, 2469 "xdotaccent": 0x1E8B, 2470 "Xdieresis": 0x1E8C, 2471 "xdieresis": 0x1E8D, 2472 "Ydotaccent": 0x1E8E, 2473 "ydotaccent": 0x1E8F, 2474 "Zcircumflex": 0x1E90, 2475 "zcircumflex": 0x1E91, 2476 "Zdotbelow": 0x1E92, 2477 "zdotbelow": 0x1E93, 2478 "Zlinebelow": 0x1E94, 2479 "zlinebelow": 0x1E95, 2480 "hlinebelow": 0x1E96, 2481 "tdieresis": 0x1E97, 2482 "wring": 0x1E98, 2483 "yring": 0x1E99, 2484 "arighthalfring": 0x1E9A, 2485 "slongdotaccent": 0x1E9B, 2486 "Adotbelow": 0x1EA0, 2487 "adotbelow": 0x1EA1, 2488 "Ahookabove": 0x1EA2, 2489 "ahookabove": 0x1EA3, 2490 "Acircumflexacute": 0x1EA4, 2491 "acircumflexacute": 0x1EA5, 2492 "Acircumflexgrave": 0x1EA6, 2493 "acircumflexgrave": 0x1EA7, 2494 "Acircumflexhookabove": 0x1EA8, 2495 "acircumflexhookabove": 0x1EA9, 2496 "Acircumflextilde": 0x1EAA, 2497 "acircumflextilde": 0x1EAB, 2498 "Acircumflexdotbelow": 0x1EAC, 2499 "acircumflexdotbelow": 0x1EAD, 2500 "Abreveacute": 0x1EAE, 2501 "abreveacute": 0x1EAF, 2502 "Abrevegrave": 0x1EB0, 2503 "abrevegrave": 0x1EB1, 2504 "Abrevehookabove": 0x1EB2, 2505 "abrevehookabove": 0x1EB3, 2506 "Abrevetilde": 0x1EB4, 2507 "abrevetilde": 0x1EB5, 2508 "Abrevedotbelow": 0x1EB6, 2509 "abrevedotbelow": 0x1EB7, 2510 "Edotbelow": 0x1EB8, 2511 "edotbelow": 0x1EB9, 2512 "Ehookabove": 0x1EBA, 2513 "ehookabove": 0x1EBB, 2514 "Etilde": 0x1EBC, 2515 "etilde": 0x1EBD, 2516 "Ecircumflexacute": 0x1EBE, 2517 "ecircumflexacute": 0x1EBF, 2518 "Ecircumflexgrave": 0x1EC0, 2519 "ecircumflexgrave": 0x1EC1, 2520 "Ecircumflexhookabove": 0x1EC2, 2521 "ecircumflexhookabove": 0x1EC3, 2522 "Ecircumflextilde": 0x1EC4, 2523 "ecircumflextilde": 0x1EC5, 2524 "Ecircumflexdotbelow": 0x1EC6, 2525 "ecircumflexdotbelow": 0x1EC7, 2526 "Ihookabove": 0x1EC8, 2527 "ihookabove": 0x1EC9, 2528 "Idotbelow": 0x1ECA, 2529 "idotbelow": 0x1ECB, 2530 "Odotbelow": 0x1ECC, 2531 "odotbelow": 0x1ECD, 2532 "Ohookabove": 0x1ECE, 2533 "ohookabove": 0x1ECF, 2534 "Ocircumflexacute": 0x1ED0, 2535 "ocircumflexacute": 0x1ED1, 2536 "Ocircumflexgrave": 0x1ED2, 2537 "ocircumflexgrave": 0x1ED3, 2538 "Ocircumflexhookabove": 0x1ED4, 2539 "ocircumflexhookabove": 0x1ED5, 2540 "Ocircumflextilde": 0x1ED6, 2541 "ocircumflextilde": 0x1ED7, 2542 "Ocircumflexdotbelow": 0x1ED8, 2543 "ocircumflexdotbelow": 0x1ED9, 2544 "Ohornacute": 0x1EDA, 2545 "ohornacute": 0x1EDB, 2546 "Ohorngrave": 0x1EDC, 2547 "ohorngrave": 0x1EDD, 2548 "Ohornhookabove": 0x1EDE, 2549 "ohornhookabove": 0x1EDF, 2550 "Ohorntilde": 0x1EE0, 2551 "ohorntilde": 0x1EE1, 2552 "Ohorndotbelow": 0x1EE2, 2553 "ohorndotbelow": 0x1EE3, 2554 "Udotbelow": 0x1EE4, 2555 "udotbelow": 0x1EE5, 2556 "Uhookabove": 0x1EE6, 2557 "uhookabove": 0x1EE7, 2558 "Uhornacute": 0x1EE8, 2559 "uhornacute": 0x1EE9, 2560 "Uhorngrave": 0x1EEA, 2561 "uhorngrave": 0x1EEB, 2562 "Uhornhookabove": 0x1EEC, 2563 "uhornhookabove": 0x1EED, 2564 "Uhorntilde": 0x1EEE, 2565 "uhorntilde": 0x1EEF, 2566 "Uhorndotbelow": 0x1EF0, 2567 "uhorndotbelow": 0x1EF1, 2568 "Ygrave": 0x1EF2, 2569 "ygrave": 0x1EF3, 2570 "Ydotbelow": 0x1EF4, 2571 "ydotbelow": 0x1EF5, 2572 "Yhookabove": 0x1EF6, 2573 "yhookabove": 0x1EF7, 2574 "Ytilde": 0x1EF8, 2575 "ytilde": 0x1EF9, 2576 "zerowidthspace": 0x200B, 2577 "hyphentwo": 0x2010, 2578 "figuredash": 0x2012, 2579 "afii00208": 0x2015, 2580 "horizontalbar": 0x2015, 2581 "dblverticalbar": 0x2016, 2582 "dbllowline": 0x2017, 2583 "underscoredbl": 0x2017, 2584 "quoteleftreversed": 0x201B, 2585 "quotereversed": 0x201B, 2586 "onedotenleader": 0x2024, 2587 "twodotenleader": 0x2025, 2588 "twodotleader": 0x2025, 2589 "afii61573": 0x202C, 2590 "afii61574": 0x202D, 2591 "afii61575": 0x202E, 2592 "primereversed": 0x2035, 2593 "referencemark": 0x203B, 2594 "exclamdbl": 0x203C, 2595 "asterism": 0x2042, 2596 "zerosuperior": 0x2070, 2597 "foursuperior": 0x2074, 2598 "fivesuperior": 0x2075, 2599 "sixsuperior": 0x2076, 2600 "sevensuperior": 0x2077, 2601 "eightsuperior": 0x2078, 2602 "ninesuperior": 0x2079, 2603 "plussuperior": 0x207A, 2604 "equalsuperior": 0x207C, 2605 "parenleftsuperior": 0x207D, 2606 "parenrightsuperior": 0x207E, 2607 "nsuperior": 0x207F, 2608 "zeroinferior": 0x2080, 2609 "oneinferior": 0x2081, 2610 "twoinferior": 0x2082, 2611 "threeinferior": 0x2083, 2612 "fourinferior": 0x2084, 2613 "fiveinferior": 0x2085, 2614 "sixinferior": 0x2086, 2615 "seveninferior": 0x2087, 2616 "eightinferior": 0x2088, 2617 "nineinferior": 0x2089, 2618 "parenleftinferior": 0x208D, 2619 "parenrightinferior": 0x208E, 2620 "colonmonetary": 0x20A1, 2621 "colonsign": 0x20A1, 2622 "cruzeiro": 0x20A2, 2623 "franc": 0x20A3, 2624 "afii08941": 0x20A4, 2625 "lira": 0x20A4, 2626 "peseta": 0x20A7, 2627 "won": 0x20A9, 2628 "afii57636": 0x20AA, 2629 "newsheqelsign": 0x20AA, 2630 "sheqel": 0x20AA, 2631 "sheqelhebrew": 0x20AA, 2632 "dong": 0x20AB, 2633 "centigrade": 0x2103, 2634 "afii61248": 0x2105, 2635 "careof": 0x2105, 2636 "fahrenheit": 0x2109, 2637 "afii61289": 0x2113, 2638 "lsquare": 0x2113, 2639 "afii61352": 0x2116, 2640 "numero": 0x2116, 2641 "prescription": 0x211E, 2642 "telephone": 0x2121, 2643 "Ohm": 0x2126, 2644 "Omega": 0x2126, 2645 "angstrom": 0x212B, 2646 "estimated": 0x212E, 2647 "onethird": 0x2153, 2648 "twothirds": 0x2154, 2649 "oneeighth": 0x215B, 2650 "threeeighths": 0x215C, 2651 "fiveeighths": 0x215D, 2652 "seveneighths": 0x215E, 2653 "Oneroman": 0x2160, 2654 "Tworoman": 0x2161, 2655 "Threeroman": 0x2162, 2656 "Fourroman": 0x2163, 2657 "Fiveroman": 0x2164, 2658 "Sixroman": 0x2165, 2659 "Sevenroman": 0x2166, 2660 "Eightroman": 0x2167, 2661 "Nineroman": 0x2168, 2662 "Tenroman": 0x2169, 2663 "Elevenroman": 0x216A, 2664 "Twelveroman": 0x216B, 2665 "oneroman": 0x2170, 2666 "tworoman": 0x2171, 2667 "threeroman": 0x2172, 2668 "fourroman": 0x2173, 2669 "fiveroman": 0x2174, 2670 "sixroman": 0x2175, 2671 "sevenroman": 0x2176, 2672 "eightroman": 0x2177, 2673 "nineroman": 0x2178, 2674 "tenroman": 0x2179, 2675 "elevenroman": 0x217A, 2676 "twelveroman": 0x217B, 2677 "arrowupdn": 0x2195, 2678 "arrowupleft": 0x2196, 2679 "arrowupright": 0x2197, 2680 "arrowdownright": 0x2198, 2681 "arrowdownleft": 0x2199, 2682 "arrowupdnbse": 0x21A8, 2683 "arrowupdownbase": 0x21A8, 2684 "harpoonleftbarbup": 0x21BC, 2685 "harpoonrightbarbup": 0x21C0, 2686 "arrowrightoverleft": 0x21C4, 2687 "arrowupleftofdown": 0x21C5, 2688 "arrowleftoverright": 0x21C6, 2689 "arrowleftdblstroke": 0x21CD, 2690 "arrowrightdblstroke": 0x21CF, 2691 "pageup": 0x21DE, 2692 "pagedown": 0x21DF, 2693 "arrowdashleft": 0x21E0, 2694 "arrowdashup": 0x21E1, 2695 "arrowdashright": 0x21E2, 2696 "arrowdashdown": 0x21E3, 2697 "arrowtableft": 0x21E4, 2698 "arrowtabright": 0x21E5, 2699 "arrowleftwhite": 0x21E6, 2700 "arrowupwhite": 0x21E7, 2701 "arrowrightwhite": 0x21E8, 2702 "arrowdownwhite": 0x21E9, 2703 "capslock": 0x21EA, 2704 "Delta": 0x2206, 2705 "increment": 0x2206, 2706 "notcontains": 0x220C, 2707 "minusplus": 0x2213, 2708 "divisionslash": 0x2215, 2709 "bulletoperator": 0x2219, 2710 "orthogonal": 0x221F, 2711 "rightangle": 0x221F, 2712 "divides": 0x2223, 2713 "parallel": 0x2225, 2714 "notparallel": 0x2226, 2715 "dblintegral": 0x222C, 2716 "contourintegral": 0x222E, 2717 "because": 0x2235, 2718 "ratio": 0x2236, 2719 "proportion": 0x2237, 2720 "reversedtilde": 0x223D, 2721 "asymptoticallyequal": 0x2243, 2722 "allequal": 0x224C, 2723 "approaches": 0x2250, 2724 "geometricallyequal": 0x2251, 2725 "approxequalorimage": 0x2252, 2726 "imageorapproximatelyequal": 0x2253, 2727 "notidentical": 0x2262, 2728 "lessoverequal": 0x2266, 2729 "greateroverequal": 0x2267, 2730 "muchless": 0x226A, 2731 "muchgreater": 0x226B, 2732 "notless": 0x226E, 2733 "notgreater": 0x226F, 2734 "notlessnorequal": 0x2270, 2735 "notgreaternorequal": 0x2271, 2736 "lessorequivalent": 0x2272, 2737 "greaterorequivalent": 0x2273, 2738 "lessorgreater": 0x2276, 2739 "greaterorless": 0x2277, 2740 "notgreaternorless": 0x2279, 2741 "precedes": 0x227A, 2742 "succeeds": 0x227B, 2743 "notprecedes": 0x2280, 2744 "notsucceeds": 0x2281, 2745 "notsuperset": 0x2285, 2746 "subsetnotequal": 0x228A, 2747 "supersetnotequal": 0x228B, 2748 "minuscircle": 0x2296, 2749 "circleot": 0x2299, 2750 "tackleft": 0x22A3, 2751 "tackdown": 0x22A4, 2752 "righttriangle": 0x22BF, 2753 "curlyor": 0x22CE, 2754 "curlyand": 0x22CF, 2755 "lessequalorgreater": 0x22DA, 2756 "greaterequalorless": 0x22DB, 2757 "ellipsisvertical": 0x22EE, 2758 "house": 0x2302, 2759 "control": 0x2303, 2760 "projective": 0x2305, 2761 "logicalnotreversed": 0x2310, 2762 "revlogicalnot": 0x2310, 2763 "arc": 0x2312, 2764 "propellor": 0x2318, 2765 "integraltop": 0x2320, 2766 "integraltp": 0x2320, 2767 "integralbottom": 0x2321, 2768 "integralbt": 0x2321, 2769 "option": 0x2325, 2770 "deleteright": 0x2326, 2771 "clear": 0x2327, 2772 "deleteleft": 0x232B, 2773 "blank": 0x2423, 2774 "onecircle": 0x2460, 2775 "twocircle": 0x2461, 2776 "threecircle": 0x2462, 2777 "fourcircle": 0x2463, 2778 "fivecircle": 0x2464, 2779 "sixcircle": 0x2465, 2780 "sevencircle": 0x2466, 2781 "eightcircle": 0x2467, 2782 "ninecircle": 0x2468, 2783 "tencircle": 0x2469, 2784 "elevencircle": 0x246A, 2785 "twelvecircle": 0x246B, 2786 "thirteencircle": 0x246C, 2787 "fourteencircle": 0x246D, 2788 "fifteencircle": 0x246E, 2789 "sixteencircle": 0x246F, 2790 "seventeencircle": 0x2470, 2791 "eighteencircle": 0x2471, 2792 "nineteencircle": 0x2472, 2793 "twentycircle": 0x2473, 2794 "oneparen": 0x2474, 2795 "twoparen": 0x2475, 2796 "threeparen": 0x2476, 2797 "fourparen": 0x2477, 2798 "fiveparen": 0x2478, 2799 "sixparen": 0x2479, 2800 "sevenparen": 0x247A, 2801 "eightparen": 0x247B, 2802 "nineparen": 0x247C, 2803 "tenparen": 0x247D, 2804 "elevenparen": 0x247E, 2805 "twelveparen": 0x247F, 2806 "thirteenparen": 0x2480, 2807 "fourteenparen": 0x2481, 2808 "fifteenparen": 0x2482, 2809 "sixteenparen": 0x2483, 2810 "seventeenparen": 0x2484, 2811 "eighteenparen": 0x2485, 2812 "nineteenparen": 0x2486, 2813 "twentyparen": 0x2487, 2814 "oneperiod": 0x2488, 2815 "twoperiod": 0x2489, 2816 "threeperiod": 0x248A, 2817 "fourperiod": 0x248B, 2818 "fiveperiod": 0x248C, 2819 "sixperiod": 0x248D, 2820 "sevenperiod": 0x248E, 2821 "eightperiod": 0x248F, 2822 "nineperiod": 0x2490, 2823 "tenperiod": 0x2491, 2824 "elevenperiod": 0x2492, 2825 "twelveperiod": 0x2493, 2826 "thirteenperiod": 0x2494, 2827 "fourteenperiod": 0x2495, 2828 "fifteenperiod": 0x2496, 2829 "sixteenperiod": 0x2497, 2830 "seventeenperiod": 0x2498, 2831 "eighteenperiod": 0x2499, 2832 "nineteenperiod": 0x249A, 2833 "twentyperiod": 0x249B, 2834 "aparen": 0x249C, 2835 "bparen": 0x249D, 2836 "cparen": 0x249E, 2837 "dparen": 0x249F, 2838 "eparen": 0x24A0, 2839 "fparen": 0x24A1, 2840 "gparen": 0x24A2, 2841 "hparen": 0x24A3, 2842 "iparen": 0x24A4, 2843 "jparen": 0x24A5, 2844 "kparen": 0x24A6, 2845 "lparen": 0x24A7, 2846 "mparen": 0x24A8, 2847 "nparen": 0x24A9, 2848 "oparen": 0x24AA, 2849 "pparen": 0x24AB, 2850 "qparen": 0x24AC, 2851 "rparen": 0x24AD, 2852 "sparen": 0x24AE, 2853 "tparen": 0x24AF, 2854 "uparen": 0x24B0, 2855 "vparen": 0x24B1, 2856 "wparen": 0x24B2, 2857 "xparen": 0x24B3, 2858 "yparen": 0x24B4, 2859 "zparen": 0x24B5, 2860 "Acircle": 0x24B6, 2861 "Bcircle": 0x24B7, 2862 "Ccircle": 0x24B8, 2863 "Dcircle": 0x24B9, 2864 "Ecircle": 0x24BA, 2865 "Fcircle": 0x24BB, 2866 "Gcircle": 0x24BC, 2867 "Hcircle": 0x24BD, 2868 "Icircle": 0x24BE, 2869 "Jcircle": 0x24BF, 2870 "Kcircle": 0x24C0, 2871 "Lcircle": 0x24C1, 2872 "Mcircle": 0x24C2, 2873 "Ncircle": 0x24C3, 2874 "Ocircle": 0x24C4, 2875 "Pcircle": 0x24C5, 2876 "Qcircle": 0x24C6, 2877 "Rcircle": 0x24C7, 2878 "Scircle": 0x24C8, 2879 "Tcircle": 0x24C9, 2880 "Ucircle": 0x24CA, 2881 "Vcircle": 0x24CB, 2882 "Wcircle": 0x24CC, 2883 "Xcircle": 0x24CD, 2884 "Ycircle": 0x24CE, 2885 "Zcircle": 0x24CF, 2886 "acircle": 0x24D0, 2887 "bcircle": 0x24D1, 2888 "ccircle": 0x24D2, 2889 "dcircle": 0x24D3, 2890 "ecircle": 0x24D4, 2891 "fcircle": 0x24D5, 2892 "gcircle": 0x24D6, 2893 "hcircle": 0x24D7, 2894 "icircle": 0x24D8, 2895 "jcircle": 0x24D9, 2896 "kcircle": 0x24DA, 2897 "lcircle": 0x24DB, 2898 "mcircle": 0x24DC, 2899 "ncircle": 0x24DD, 2900 "ocircle": 0x24DE, 2901 "pcircle": 0x24DF, 2902 "qcircle": 0x24E0, 2903 "rcircle": 0x24E1, 2904 "scircle": 0x24E2, 2905 "tcircle": 0x24E3, 2906 "ucircle": 0x24E4, 2907 "vcircle": 0x24E5, 2908 "wcircle": 0x24E6, 2909 "xcircle": 0x24E7, 2910 "ycircle": 0x24E8, 2911 "zcircle": 0x24E9, 2912 "SF100000": 0x2500, 2913 "SF110000": 0x2502, 2914 "SF010000": 0x250C, 2915 "SF030000": 0x2510, 2916 "SF020000": 0x2514, 2917 "SF040000": 0x2518, 2918 "SF080000": 0x251C, 2919 "SF090000": 0x2524, 2920 "SF060000": 0x252C, 2921 "SF070000": 0x2534, 2922 "SF050000": 0x253C, 2923 "SF430000": 0x2550, 2924 "SF240000": 0x2551, 2925 "SF510000": 0x2552, 2926 "SF520000": 0x2553, 2927 "SF390000": 0x2554, 2928 "SF220000": 0x2555, 2929 "SF210000": 0x2556, 2930 "SF250000": 0x2557, 2931 "SF500000": 0x2558, 2932 "SF490000": 0x2559, 2933 "SF380000": 0x255A, 2934 "SF280000": 0x255B, 2935 "SF270000": 0x255C, 2936 "SF260000": 0x255D, 2937 "SF360000": 0x255E, 2938 "SF370000": 0x255F, 2939 "SF420000": 0x2560, 2940 "SF190000": 0x2561, 2941 "SF200000": 0x2562, 2942 "SF230000": 0x2563, 2943 "SF470000": 0x2564, 2944 "SF480000": 0x2565, 2945 "SF410000": 0x2566, 2946 "SF450000": 0x2567, 2947 "SF460000": 0x2568, 2948 "SF400000": 0x2569, 2949 "SF540000": 0x256A, 2950 "SF530000": 0x256B, 2951 "SF440000": 0x256C, 2952 "upblock": 0x2580, 2953 "dnblock": 0x2584, 2954 "block": 0x2588, 2955 "lfblock": 0x258C, 2956 "rtblock": 0x2590, 2957 "ltshade": 0x2591, 2958 "shadelight": 0x2591, 2959 "shade": 0x2592, 2960 "shademedium": 0x2592, 2961 "dkshade": 0x2593, 2962 "shadedark": 0x2593, 2963 "blacksquare": 0x25A0, 2964 "filledbox": 0x25A0, 2965 "H22073": 0x25A1, 2966 "whitesquare": 0x25A1, 2967 "squarewhitewithsmallblack": 0x25A3, 2968 "squarehorizontalfill": 0x25A4, 2969 "squareverticalfill": 0x25A5, 2970 "squareorthogonalcrosshatchfill": 0x25A6, 2971 "squareupperlefttolowerrightfill": 0x25A7, 2972 "squareupperrighttolowerleftfill": 0x25A8, 2973 "squarediagonalcrosshatchfill": 0x25A9, 2974 "H18543": 0x25AA, 2975 "blacksmallsquare": 0x25AA, 2976 "H18551": 0x25AB, 2977 "whitesmallsquare": 0x25AB, 2978 "blackrectangle": 0x25AC, 2979 "filledrect": 0x25AC, 2980 "blackuppointingtriangle": 0x25B2, 2981 "triagup": 0x25B2, 2982 "whiteuppointingtriangle": 0x25B3, 2983 "blackuppointingsmalltriangle": 0x25B4, 2984 "whiteuppointingsmalltriangle": 0x25B5, 2985 "blackrightpointingtriangle": 0x25B6, 2986 "whiterightpointingtriangle": 0x25B7, 2987 "whiterightpointingsmalltriangle": 0x25B9, 2988 "blackrightpointingpointer": 0x25BA, 2989 "triagrt": 0x25BA, 2990 "blackdownpointingtriangle": 0x25BC, 2991 "triagdn": 0x25BC, 2992 "whitedownpointingtriangle": 0x25BD, 2993 "whitedownpointingsmalltriangle": 0x25BF, 2994 "blackleftpointingtriangle": 0x25C0, 2995 "whiteleftpointingtriangle": 0x25C1, 2996 "whiteleftpointingsmalltriangle": 0x25C3, 2997 "blackleftpointingpointer": 0x25C4, 2998 "triaglf": 0x25C4, 2999 "blackdiamond": 0x25C6, 3000 "whitediamond": 0x25C7, 3001 "whitediamondcontainingblacksmalldiamond": 0x25C8, 3002 "fisheye": 0x25C9, 3003 "circle": 0x25CB, 3004 "whitecircle": 0x25CB, 3005 "dottedcircle": 0x25CC, 3006 "bullseye": 0x25CE, 3007 "H18533": 0x25CF, 3008 "blackcircle": 0x25CF, 3009 "circlewithlefthalfblack": 0x25D0, 3010 "circlewithrighthalfblack": 0x25D1, 3011 "bulletinverse": 0x25D8, 3012 "invbullet": 0x25D8, 3013 "invcircle": 0x25D9, 3014 "whitecircleinverse": 0x25D9, 3015 "blacklowerrighttriangle": 0x25E2, 3016 "blacklowerlefttriangle": 0x25E3, 3017 "blackupperlefttriangle": 0x25E4, 3018 "blackupperrighttriangle": 0x25E5, 3019 "openbullet": 0x25E6, 3020 "whitebullet": 0x25E6, 3021 "largecircle": 0x25EF, 3022 "blackstar": 0x2605, 3023 "whitestar": 0x2606, 3024 "telephoneblack": 0x260E, 3025 "whitetelephone": 0x260F, 3026 "pointingindexleftwhite": 0x261C, 3027 "pointingindexupwhite": 0x261D, 3028 "pointingindexrightwhite": 0x261E, 3029 "pointingindexdownwhite": 0x261F, 3030 "yinyang": 0x262F, 3031 "smileface": 0x263A, 3032 "whitesmilingface": 0x263A, 3033 "blacksmilingface": 0x263B, 3034 "invsmileface": 0x263B, 3035 "compass": 0x263C, 3036 "sun": 0x263C, 3037 "female": 0x2640, 3038 "venus": 0x2640, 3039 "earth": 0x2641, 3040 "male": 0x2642, 3041 "mars": 0x2642, 3042 "heartsuitwhite": 0x2661, 3043 "diamondsuitwhite": 0x2662, 3044 "spadesuitwhite": 0x2664, 3045 "clubsuitwhite": 0x2667, 3046 "hotsprings": 0x2668, 3047 "quarternote": 0x2669, 3048 "musicalnote": 0x266A, 3049 "eighthnotebeamed": 0x266B, 3050 "musicalnotedbl": 0x266B, 3051 "beamedsixteenthnotes": 0x266C, 3052 "musicflatsign": 0x266D, 3053 "musicsharpsign": 0x266F, 3054 "checkmark": 0x2713, 3055 "onecircleinversesansserif": 0x278A, 3056 "twocircleinversesansserif": 0x278B, 3057 "threecircleinversesansserif": 0x278C, 3058 "fourcircleinversesansserif": 0x278D, 3059 "fivecircleinversesansserif": 0x278E, 3060 "sixcircleinversesansserif": 0x278F, 3061 "sevencircleinversesansserif": 0x2790, 3062 "eightcircleinversesansserif": 0x2791, 3063 "ninecircleinversesansserif": 0x2792, 3064 "arrowrightheavy": 0x279E, 3065 "ideographicspace": 0x3000, 3066 "ideographiccomma": 0x3001, 3067 "ideographicperiod": 0x3002, 3068 "dittomark": 0x3003, 3069 "jis": 0x3004, 3070 "ideographiciterationmark": 0x3005, 3071 "ideographicclose": 0x3006, 3072 "ideographiczero": 0x3007, 3073 "anglebracketleft": 0x3008, 3074 "anglebracketright": 0x3009, 3075 "dblanglebracketleft": 0x300A, 3076 "dblanglebracketright": 0x300B, 3077 "cornerbracketleft": 0x300C, 3078 "cornerbracketright": 0x300D, 3079 "whitecornerbracketleft": 0x300E, 3080 "whitecornerbracketright": 0x300F, 3081 "blacklenticularbracketleft": 0x3010, 3082 "blacklenticularbracketright": 0x3011, 3083 "postalmark": 0x3012, 3084 "getamark": 0x3013, 3085 "tortoiseshellbracketleft": 0x3014, 3086 "tortoiseshellbracketright": 0x3015, 3087 "whitelenticularbracketleft": 0x3016, 3088 "whitelenticularbracketright": 0x3017, 3089 "whitetortoiseshellbracketleft": 0x3018, 3090 "whitetortoiseshellbracketright": 0x3019, 3091 "wavedash": 0x301C, 3092 "quotedblprimereversed": 0x301D, 3093 "quotedblprime": 0x301E, 3094 "postalmarkface": 0x3020, 3095 "onehangzhou": 0x3021, 3096 "twohangzhou": 0x3022, 3097 "threehangzhou": 0x3023, 3098 "fourhangzhou": 0x3024, 3099 "fivehangzhou": 0x3025, 3100 "sixhangzhou": 0x3026, 3101 "sevenhangzhou": 0x3027, 3102 "eighthangzhou": 0x3028, 3103 "ninehangzhou": 0x3029, 3104 "circlepostalmark": 0x3036, 3105 "asmallhiragana": 0x3041, 3106 "ahiragana": 0x3042, 3107 "ismallhiragana": 0x3043, 3108 "ihiragana": 0x3044, 3109 "usmallhiragana": 0x3045, 3110 "uhiragana": 0x3046, 3111 "esmallhiragana": 0x3047, 3112 "ehiragana": 0x3048, 3113 "osmallhiragana": 0x3049, 3114 "ohiragana": 0x304A, 3115 "kahiragana": 0x304B, 3116 "gahiragana": 0x304C, 3117 "kihiragana": 0x304D, 3118 "gihiragana": 0x304E, 3119 "kuhiragana": 0x304F, 3120 "guhiragana": 0x3050, 3121 "kehiragana": 0x3051, 3122 "gehiragana": 0x3052, 3123 "kohiragana": 0x3053, 3124 "gohiragana": 0x3054, 3125 "sahiragana": 0x3055, 3126 "zahiragana": 0x3056, 3127 "sihiragana": 0x3057, 3128 "zihiragana": 0x3058, 3129 "suhiragana": 0x3059, 3130 "zuhiragana": 0x305A, 3131 "sehiragana": 0x305B, 3132 "zehiragana": 0x305C, 3133 "sohiragana": 0x305D, 3134 "zohiragana": 0x305E, 3135 "tahiragana": 0x305F, 3136 "dahiragana": 0x3060, 3137 "tihiragana": 0x3061, 3138 "dihiragana": 0x3062, 3139 "tusmallhiragana": 0x3063, 3140 "tuhiragana": 0x3064, 3141 "duhiragana": 0x3065, 3142 "tehiragana": 0x3066, 3143 "dehiragana": 0x3067, 3144 "tohiragana": 0x3068, 3145 "dohiragana": 0x3069, 3146 "nahiragana": 0x306A, 3147 "nihiragana": 0x306B, 3148 "nuhiragana": 0x306C, 3149 "nehiragana": 0x306D, 3150 "nohiragana": 0x306E, 3151 "hahiragana": 0x306F, 3152 "bahiragana": 0x3070, 3153 "pahiragana": 0x3071, 3154 "hihiragana": 0x3072, 3155 "bihiragana": 0x3073, 3156 "pihiragana": 0x3074, 3157 "huhiragana": 0x3075, 3158 "buhiragana": 0x3076, 3159 "puhiragana": 0x3077, 3160 "hehiragana": 0x3078, 3161 "behiragana": 0x3079, 3162 "pehiragana": 0x307A, 3163 "hohiragana": 0x307B, 3164 "bohiragana": 0x307C, 3165 "pohiragana": 0x307D, 3166 "mahiragana": 0x307E, 3167 "mihiragana": 0x307F, 3168 "muhiragana": 0x3080, 3169 "mehiragana": 0x3081, 3170 "mohiragana": 0x3082, 3171 "yasmallhiragana": 0x3083, 3172 "yahiragana": 0x3084, 3173 "yusmallhiragana": 0x3085, 3174 "yuhiragana": 0x3086, 3175 "yosmallhiragana": 0x3087, 3176 "yohiragana": 0x3088, 3177 "rahiragana": 0x3089, 3178 "rihiragana": 0x308A, 3179 "ruhiragana": 0x308B, 3180 "rehiragana": 0x308C, 3181 "rohiragana": 0x308D, 3182 "wasmallhiragana": 0x308E, 3183 "wahiragana": 0x308F, 3184 "wihiragana": 0x3090, 3185 "wehiragana": 0x3091, 3186 "wohiragana": 0x3092, 3187 "nhiragana": 0x3093, 3188 "vuhiragana": 0x3094, 3189 "voicedmarkkana": 0x309B, 3190 "semivoicedmarkkana": 0x309C, 3191 "iterationhiragana": 0x309D, 3192 "voicediterationhiragana": 0x309E, 3193 "asmallkatakana": 0x30A1, 3194 "akatakana": 0x30A2, 3195 "ismallkatakana": 0x30A3, 3196 "ikatakana": 0x30A4, 3197 "usmallkatakana": 0x30A5, 3198 "ukatakana": 0x30A6, 3199 "esmallkatakana": 0x30A7, 3200 "ekatakana": 0x30A8, 3201 "osmallkatakana": 0x30A9, 3202 "okatakana": 0x30AA, 3203 "kakatakana": 0x30AB, 3204 "gakatakana": 0x30AC, 3205 "kikatakana": 0x30AD, 3206 "gikatakana": 0x30AE, 3207 "kukatakana": 0x30AF, 3208 "gukatakana": 0x30B0, 3209 "kekatakana": 0x30B1, 3210 "gekatakana": 0x30B2, 3211 "kokatakana": 0x30B3, 3212 "gokatakana": 0x30B4, 3213 "sakatakana": 0x30B5, 3214 "zakatakana": 0x30B6, 3215 "sikatakana": 0x30B7, 3216 "zikatakana": 0x30B8, 3217 "sukatakana": 0x30B9, 3218 "zukatakana": 0x30BA, 3219 "sekatakana": 0x30BB, 3220 "zekatakana": 0x30BC, 3221 "sokatakana": 0x30BD, 3222 "zokatakana": 0x30BE, 3223 "takatakana": 0x30BF, 3224 "dakatakana": 0x30C0, 3225 "tikatakana": 0x30C1, 3226 "dikatakana": 0x30C2, 3227 "tusmallkatakana": 0x30C3, 3228 "tukatakana": 0x30C4, 3229 "dukatakana": 0x30C5, 3230 "tekatakana": 0x30C6, 3231 "dekatakana": 0x30C7, 3232 "tokatakana": 0x30C8, 3233 "dokatakana": 0x30C9, 3234 "nakatakana": 0x30CA, 3235 "nikatakana": 0x30CB, 3236 "nukatakana": 0x30CC, 3237 "nekatakana": 0x30CD, 3238 "nokatakana": 0x30CE, 3239 "hakatakana": 0x30CF, 3240 "bakatakana": 0x30D0, 3241 "pakatakana": 0x30D1, 3242 "hikatakana": 0x30D2, 3243 "bikatakana": 0x30D3, 3244 "pikatakana": 0x30D4, 3245 "hukatakana": 0x30D5, 3246 "bukatakana": 0x30D6, 3247 "pukatakana": 0x30D7, 3248 "hekatakana": 0x30D8, 3249 "bekatakana": 0x30D9, 3250 "pekatakana": 0x30DA, 3251 "hokatakana": 0x30DB, 3252 "bokatakana": 0x30DC, 3253 "pokatakana": 0x30DD, 3254 "makatakana": 0x30DE, 3255 "mikatakana": 0x30DF, 3256 "mukatakana": 0x30E0, 3257 "mekatakana": 0x30E1, 3258 "mokatakana": 0x30E2, 3259 "yasmallkatakana": 0x30E3, 3260 "yakatakana": 0x30E4, 3261 "yusmallkatakana": 0x30E5, 3262 "yukatakana": 0x30E6, 3263 "yosmallkatakana": 0x30E7, 3264 "yokatakana": 0x30E8, 3265 "rakatakana": 0x30E9, 3266 "rikatakana": 0x30EA, 3267 "rukatakana": 0x30EB, 3268 "rekatakana": 0x30EC, 3269 "rokatakana": 0x30ED, 3270 "wasmallkatakana": 0x30EE, 3271 "wakatakana": 0x30EF, 3272 "wikatakana": 0x30F0, 3273 "wekatakana": 0x30F1, 3274 "wokatakana": 0x30F2, 3275 "nkatakana": 0x30F3, 3276 "vukatakana": 0x30F4, 3277 "kasmallkatakana": 0x30F5, 3278 "kesmallkatakana": 0x30F6, 3279 "vakatakana": 0x30F7, 3280 "vikatakana": 0x30F8, 3281 "vekatakana": 0x30F9, 3282 "vokatakana": 0x30FA, 3283 "dotkatakana": 0x30FB, 3284 "prolongedkana": 0x30FC, 3285 "iterationkatakana": 0x30FD, 3286 "voicediterationkatakana": 0x30FE, 3287 "bbopomofo": 0x3105, 3288 "pbopomofo": 0x3106, 3289 "mbopomofo": 0x3107, 3290 "fbopomofo": 0x3108, 3291 "dbopomofo": 0x3109, 3292 "tbopomofo": 0x310A, 3293 "nbopomofo": 0x310B, 3294 "lbopomofo": 0x310C, 3295 "gbopomofo": 0x310D, 3296 "kbopomofo": 0x310E, 3297 "hbopomofo": 0x310F, 3298 "jbopomofo": 0x3110, 3299 "qbopomofo": 0x3111, 3300 "xbopomofo": 0x3112, 3301 "zhbopomofo": 0x3113, 3302 "chbopomofo": 0x3114, 3303 "shbopomofo": 0x3115, 3304 "rbopomofo": 0x3116, 3305 "zbopomofo": 0x3117, 3306 "cbopomofo": 0x3118, 3307 "sbopomofo": 0x3119, 3308 "abopomofo": 0x311A, 3309 "obopomofo": 0x311B, 3310 "ebopomofo": 0x311C, 3311 "ehbopomofo": 0x311D, 3312 "aibopomofo": 0x311E, 3313 "eibopomofo": 0x311F, 3314 "aubopomofo": 0x3120, 3315 "oubopomofo": 0x3121, 3316 "anbopomofo": 0x3122, 3317 "enbopomofo": 0x3123, 3318 "angbopomofo": 0x3124, 3319 "engbopomofo": 0x3125, 3320 "erbopomofo": 0x3126, 3321 "ibopomofo": 0x3127, 3322 "ubopomofo": 0x3128, 3323 "iubopomofo": 0x3129, 3324 "kiyeokkorean": 0x3131, 3325 "ssangkiyeokkorean": 0x3132, 3326 "kiyeoksioskorean": 0x3133, 3327 "nieunkorean": 0x3134, 3328 "nieuncieuckorean": 0x3135, 3329 "nieunhieuhkorean": 0x3136, 3330 "tikeutkorean": 0x3137, 3331 "ssangtikeutkorean": 0x3138, 3332 "rieulkorean": 0x3139, 3333 "rieulkiyeokkorean": 0x313A, 3334 "rieulmieumkorean": 0x313B, 3335 "rieulpieupkorean": 0x313C, 3336 "rieulsioskorean": 0x313D, 3337 "rieulthieuthkorean": 0x313E, 3338 "rieulphieuphkorean": 0x313F, 3339 "rieulhieuhkorean": 0x3140, 3340 "mieumkorean": 0x3141, 3341 "pieupkorean": 0x3142, 3342 "ssangpieupkorean": 0x3143, 3343 "pieupsioskorean": 0x3144, 3344 "sioskorean": 0x3145, 3345 "ssangsioskorean": 0x3146, 3346 "ieungkorean": 0x3147, 3347 "cieuckorean": 0x3148, 3348 "ssangcieuckorean": 0x3149, 3349 "chieuchkorean": 0x314A, 3350 "khieukhkorean": 0x314B, 3351 "thieuthkorean": 0x314C, 3352 "phieuphkorean": 0x314D, 3353 "hieuhkorean": 0x314E, 3354 "akorean": 0x314F, 3355 "aekorean": 0x3150, 3356 "yakorean": 0x3151, 3357 "yaekorean": 0x3152, 3358 "eokorean": 0x3153, 3359 "ekorean": 0x3154, 3360 "yeokorean": 0x3155, 3361 "yekorean": 0x3156, 3362 "okorean": 0x3157, 3363 "wakorean": 0x3158, 3364 "waekorean": 0x3159, 3365 "oekorean": 0x315A, 3366 "yokorean": 0x315B, 3367 "ukorean": 0x315C, 3368 "weokorean": 0x315D, 3369 "wekorean": 0x315E, 3370 "wikorean": 0x315F, 3371 "yukorean": 0x3160, 3372 "eukorean": 0x3161, 3373 "yikorean": 0x3162, 3374 "ikorean": 0x3163, 3375 "hangulfiller": 0x3164, 3376 "ssangnieunkorean": 0x3165, 3377 "nieuntikeutkorean": 0x3166, 3378 "nieunsioskorean": 0x3167, 3379 "nieunpansioskorean": 0x3168, 3380 "rieulkiyeoksioskorean": 0x3169, 3381 "rieultikeutkorean": 0x316A, 3382 "rieulpieupsioskorean": 0x316B, 3383 "rieulpansioskorean": 0x316C, 3384 "rieulyeorinhieuhkorean": 0x316D, 3385 "mieumpieupkorean": 0x316E, 3386 "mieumsioskorean": 0x316F, 3387 "mieumpansioskorean": 0x3170, 3388 "kapyeounmieumkorean": 0x3171, 3389 "pieupkiyeokkorean": 0x3172, 3390 "pieuptikeutkorean": 0x3173, 3391 "pieupsioskiyeokkorean": 0x3174, 3392 "pieupsiostikeutkorean": 0x3175, 3393 "pieupcieuckorean": 0x3176, 3394 "pieupthieuthkorean": 0x3177, 3395 "kapyeounpieupkorean": 0x3178, 3396 "kapyeounssangpieupkorean": 0x3179, 3397 "sioskiyeokkorean": 0x317A, 3398 "siosnieunkorean": 0x317B, 3399 "siostikeutkorean": 0x317C, 3400 "siospieupkorean": 0x317D, 3401 "sioscieuckorean": 0x317E, 3402 "pansioskorean": 0x317F, 3403 "ssangieungkorean": 0x3180, 3404 "yesieungkorean": 0x3181, 3405 "yesieungsioskorean": 0x3182, 3406 "yesieungpansioskorean": 0x3183, 3407 "kapyeounphieuphkorean": 0x3184, 3408 "ssanghieuhkorean": 0x3185, 3409 "yeorinhieuhkorean": 0x3186, 3410 "yoyakorean": 0x3187, 3411 "yoyaekorean": 0x3188, 3412 "yoikorean": 0x3189, 3413 "yuyeokorean": 0x318A, 3414 "yuyekorean": 0x318B, 3415 "yuikorean": 0x318C, 3416 "araeakorean": 0x318D, 3417 "araeaekorean": 0x318E, 3418 "kiyeokparenkorean": 0x3200, 3419 "nieunparenkorean": 0x3201, 3420 "tikeutparenkorean": 0x3202, 3421 "rieulparenkorean": 0x3203, 3422 "mieumparenkorean": 0x3204, 3423 "pieupparenkorean": 0x3205, 3424 "siosparenkorean": 0x3206, 3425 "ieungparenkorean": 0x3207, 3426 "cieucparenkorean": 0x3208, 3427 "chieuchparenkorean": 0x3209, 3428 "khieukhparenkorean": 0x320A, 3429 "thieuthparenkorean": 0x320B, 3430 "phieuphparenkorean": 0x320C, 3431 "hieuhparenkorean": 0x320D, 3432 "kiyeokaparenkorean": 0x320E, 3433 "nieunaparenkorean": 0x320F, 3434 "tikeutaparenkorean": 0x3210, 3435 "rieulaparenkorean": 0x3211, 3436 "mieumaparenkorean": 0x3212, 3437 "pieupaparenkorean": 0x3213, 3438 "siosaparenkorean": 0x3214, 3439 "ieungaparenkorean": 0x3215, 3440 "cieucaparenkorean": 0x3216, 3441 "chieuchaparenkorean": 0x3217, 3442 "khieukhaparenkorean": 0x3218, 3443 "thieuthaparenkorean": 0x3219, 3444 "phieuphaparenkorean": 0x321A, 3445 "hieuhaparenkorean": 0x321B, 3446 "cieucuparenkorean": 0x321C, 3447 "oneideographicparen": 0x3220, 3448 "twoideographicparen": 0x3221, 3449 "threeideographicparen": 0x3222, 3450 "fourideographicparen": 0x3223, 3451 "fiveideographicparen": 0x3224, 3452 "sixideographicparen": 0x3225, 3453 "sevenideographicparen": 0x3226, 3454 "eightideographicparen": 0x3227, 3455 "nineideographicparen": 0x3228, 3456 "tenideographicparen": 0x3229, 3457 "ideographicmoonparen": 0x322A, 3458 "ideographicfireparen": 0x322B, 3459 "ideographicwaterparen": 0x322C, 3460 "ideographicwoodparen": 0x322D, 3461 "ideographicmetalparen": 0x322E, 3462 "ideographicearthparen": 0x322F, 3463 "ideographicsunparen": 0x3230, 3464 "ideographicstockparen": 0x3231, 3465 "ideographichaveparen": 0x3232, 3466 "ideographicsocietyparen": 0x3233, 3467 "ideographicnameparen": 0x3234, 3468 "ideographicspecialparen": 0x3235, 3469 "ideographicfinancialparen": 0x3236, 3470 "ideographiccongratulationparen": 0x3237, 3471 "ideographiclaborparen": 0x3238, 3472 "ideographicrepresentparen": 0x3239, 3473 "ideographiccallparen": 0x323A, 3474 "ideographicstudyparen": 0x323B, 3475 "ideographicsuperviseparen": 0x323C, 3476 "ideographicenterpriseparen": 0x323D, 3477 "ideographicresourceparen": 0x323E, 3478 "ideographicallianceparen": 0x323F, 3479 "ideographicfestivalparen": 0x3240, 3480 "ideographicselfparen": 0x3242, 3481 "ideographicreachparen": 0x3243, 3482 "kiyeokcirclekorean": 0x3260, 3483 "nieuncirclekorean": 0x3261, 3484 "tikeutcirclekorean": 0x3262, 3485 "rieulcirclekorean": 0x3263, 3486 "mieumcirclekorean": 0x3264, 3487 "pieupcirclekorean": 0x3265, 3488 "sioscirclekorean": 0x3266, 3489 "ieungcirclekorean": 0x3267, 3490 "cieuccirclekorean": 0x3268, 3491 "chieuchcirclekorean": 0x3269, 3492 "khieukhcirclekorean": 0x326A, 3493 "thieuthcirclekorean": 0x326B, 3494 "phieuphcirclekorean": 0x326C, 3495 "hieuhcirclekorean": 0x326D, 3496 "kiyeokacirclekorean": 0x326E, 3497 "nieunacirclekorean": 0x326F, 3498 "tikeutacirclekorean": 0x3270, 3499 "rieulacirclekorean": 0x3271, 3500 "mieumacirclekorean": 0x3272, 3501 "pieupacirclekorean": 0x3273, 3502 "siosacirclekorean": 0x3274, 3503 "ieungacirclekorean": 0x3275, 3504 "cieucacirclekorean": 0x3276, 3505 "chieuchacirclekorean": 0x3277, 3506 "khieukhacirclekorean": 0x3278, 3507 "thieuthacirclekorean": 0x3279, 3508 "phieuphacirclekorean": 0x327A, 3509 "hieuhacirclekorean": 0x327B, 3510 "koreanstandardsymbol": 0x327F, 3511 "ideographmooncircle": 0x328A, 3512 "ideographfirecircle": 0x328B, 3513 "ideographwatercircle": 0x328C, 3514 "ideographwoodcircle": 0x328D, 3515 "ideographmetalcircle": 0x328E, 3516 "ideographearthcircle": 0x328F, 3517 "ideographsuncircle": 0x3290, 3518 "ideographnamecircle": 0x3294, 3519 "ideographicfinancialcircle": 0x3296, 3520 "ideographiclaborcircle": 0x3298, 3521 "ideographicsecretcircle": 0x3299, 3522 "ideographicexcellentcircle": 0x329D, 3523 "ideographicprintcircle": 0x329E, 3524 "ideographiccorrectcircle": 0x32A3, 3525 "ideographichighcircle": 0x32A4, 3526 "ideographiccentrecircle": 0x32A5, 3527 "ideographiclowcircle": 0x32A6, 3528 "ideographicleftcircle": 0x32A7, 3529 "ideographicrightcircle": 0x32A8, 3530 "ideographicmedicinecircle": 0x32A9, 3531 "apaatosquare": 0x3300, 3532 "aarusquare": 0x3303, 3533 "intisquare": 0x3305, 3534 "karoriisquare": 0x330D, 3535 "kirosquare": 0x3314, 3536 "kiroguramusquare": 0x3315, 3537 "kiromeetorusquare": 0x3316, 3538 "guramusquare": 0x3318, 3539 "kooposquare": 0x331E, 3540 "sentisquare": 0x3322, 3541 "sentosquare": 0x3323, 3542 "dorusquare": 0x3326, 3543 "tonsquare": 0x3327, 3544 "haitusquare": 0x332A, 3545 "paasentosquare": 0x332B, 3546 "birusquare": 0x3331, 3547 "huiitosquare": 0x3333, 3548 "hekutaarusquare": 0x3336, 3549 "herutusquare": 0x3339, 3550 "peezisquare": 0x333B, 3551 "hoonsquare": 0x3342, 3552 "mansyonsquare": 0x3347, 3553 "mirisquare": 0x3349, 3554 "miribaarusquare": 0x334A, 3555 "meetorusquare": 0x334D, 3556 "yaadosquare": 0x334E, 3557 "rittorusquare": 0x3351, 3558 "wattosquare": 0x3357, 3559 "heiseierasquare": 0x337B, 3560 "syouwaerasquare": 0x337C, 3561 "taisyouerasquare": 0x337D, 3562 "meizierasquare": 0x337E, 3563 "corporationsquare": 0x337F, 3564 "paampssquare": 0x3380, 3565 "nasquare": 0x3381, 3566 "muasquare": 0x3382, 3567 "masquare": 0x3383, 3568 "kasquare": 0x3384, 3569 "KBsquare": 0x3385, 3570 "MBsquare": 0x3386, 3571 "GBsquare": 0x3387, 3572 "calsquare": 0x3388, 3573 "kcalsquare": 0x3389, 3574 "pfsquare": 0x338A, 3575 "nfsquare": 0x338B, 3576 "mufsquare": 0x338C, 3577 "mugsquare": 0x338D, 3578 "squaremg": 0x338E, 3579 "squarekg": 0x338F, 3580 "Hzsquare": 0x3390, 3581 "khzsquare": 0x3391, 3582 "mhzsquare": 0x3392, 3583 "ghzsquare": 0x3393, 3584 "thzsquare": 0x3394, 3585 "mulsquare": 0x3395, 3586 "mlsquare": 0x3396, 3587 "dlsquare": 0x3397, 3588 "klsquare": 0x3398, 3589 "fmsquare": 0x3399, 3590 "nmsquare": 0x339A, 3591 "mumsquare": 0x339B, 3592 "squaremm": 0x339C, 3593 "squarecm": 0x339D, 3594 "squarekm": 0x339E, 3595 "mmsquaredsquare": 0x339F, 3596 "cmsquaredsquare": 0x33A0, 3597 "squaremsquared": 0x33A1, 3598 "kmsquaredsquare": 0x33A2, 3599 "mmcubedsquare": 0x33A3, 3600 "cmcubedsquare": 0x33A4, 3601 "mcubedsquare": 0x33A5, 3602 "kmcubedsquare": 0x33A6, 3603 "moverssquare": 0x33A7, 3604 "moverssquaredsquare": 0x33A8, 3605 "pasquare": 0x33A9, 3606 "kpasquare": 0x33AA, 3607 "mpasquare": 0x33AB, 3608 "gpasquare": 0x33AC, 3609 "radsquare": 0x33AD, 3610 "radoverssquare": 0x33AE, 3611 "radoverssquaredsquare": 0x33AF, 3612 "pssquare": 0x33B0, 3613 "nssquare": 0x33B1, 3614 "mussquare": 0x33B2, 3615 "mssquare": 0x33B3, 3616 "pvsquare": 0x33B4, 3617 "nvsquare": 0x33B5, 3618 "muvsquare": 0x33B6, 3619 "mvsquare": 0x33B7, 3620 "kvsquare": 0x33B8, 3621 "mvmegasquare": 0x33B9, 3622 "pwsquare": 0x33BA, 3623 "nwsquare": 0x33BB, 3624 "muwsquare": 0x33BC, 3625 "mwsquare": 0x33BD, 3626 "kwsquare": 0x33BE, 3627 "mwmegasquare": 0x33BF, 3628 "kohmsquare": 0x33C0, 3629 "mohmsquare": 0x33C1, 3630 "amsquare": 0x33C2, 3631 "bqsquare": 0x33C3, 3632 "squarecc": 0x33C4, 3633 "cdsquare": 0x33C5, 3634 "coverkgsquare": 0x33C6, 3635 "cosquare": 0x33C7, 3636 "dbsquare": 0x33C8, 3637 "gysquare": 0x33C9, 3638 "hasquare": 0x33CA, 3639 "HPsquare": 0x33CB, 3640 "KKsquare": 0x33CD, 3641 "squarekmcapital": 0x33CE, 3642 "ktsquare": 0x33CF, 3643 "lmsquare": 0x33D0, 3644 "squareln": 0x33D1, 3645 "squarelog": 0x33D2, 3646 "lxsquare": 0x33D3, 3647 "mbsquare": 0x33D4, 3648 "squaremil": 0x33D5, 3649 "molsquare": 0x33D6, 3650 "pmsquare": 0x33D8, 3651 "srsquare": 0x33DB, 3652 "svsquare": 0x33DC, 3653 "wbsquare": 0x33DD, 3654 "twentyhangzhou": 0x5344, 3655 "dotlessj": 0xF6BE, 3656 "LL": 0xF6BF, 3657 "ll": 0xF6C0, 3658 "commaaccent": 0xF6C3, 3659 "afii10063": 0xF6C4, 3660 "afii10064": 0xF6C5, 3661 "afii10192": 0xF6C6, 3662 "afii10831": 0xF6C7, 3663 "afii10832": 0xF6C8, 3664 "Acute": 0xF6C9, 3665 "Caron": 0xF6CA, 3666 "Dieresis": 0xF6CB, 3667 "DieresisAcute": 0xF6CC, 3668 "DieresisGrave": 0xF6CD, 3669 "Grave": 0xF6CE, 3670 "Hungarumlaut": 0xF6CF, 3671 "Macron": 0xF6D0, 3672 "cyrBreve": 0xF6D1, 3673 "cyrFlex": 0xF6D2, 3674 "dblGrave": 0xF6D3, 3675 "cyrbreve": 0xF6D4, 3676 "cyrflex": 0xF6D5, 3677 "dblgrave": 0xF6D6, 3678 "dieresisacute": 0xF6D7, 3679 "dieresisgrave": 0xF6D8, 3680 "copyrightserif": 0xF6D9, 3681 "registerserif": 0xF6DA, 3682 "trademarkserif": 0xF6DB, 3683 "onefitted": 0xF6DC, 3684 "rupiah": 0xF6DD, 3685 "threequartersemdash": 0xF6DE, 3686 "centinferior": 0xF6DF, 3687 "centsuperior": 0xF6E0, 3688 "commainferior": 0xF6E1, 3689 "commasuperior": 0xF6E2, 3690 "dollarinferior": 0xF6E3, 3691 "dollarsuperior": 0xF6E4, 3692 "hypheninferior": 0xF6E5, 3693 "hyphensuperior": 0xF6E6, 3694 "periodinferior": 0xF6E7, 3695 "periodsuperior": 0xF6E8, 3696 "asuperior": 0xF6E9, 3697 "bsuperior": 0xF6EA, 3698 "dsuperior": 0xF6EB, 3699 "esuperior": 0xF6EC, 3700 "isuperior": 0xF6ED, 3701 "lsuperior": 0xF6EE, 3702 "msuperior": 0xF6EF, 3703 "osuperior": 0xF6F0, 3704 "rsuperior": 0xF6F1, 3705 "ssuperior": 0xF6F2, 3706 "tsuperior": 0xF6F3, 3707 "Brevesmall": 0xF6F4, 3708 "Caronsmall": 0xF6F5, 3709 "Circumflexsmall": 0xF6F6, 3710 "Dotaccentsmall": 0xF6F7, 3711 "Hungarumlautsmall": 0xF6F8, 3712 "Lslashsmall": 0xF6F9, 3713 "OEsmall": 0xF6FA, 3714 "Ogoneksmall": 0xF6FB, 3715 "Ringsmall": 0xF6FC, 3716 "Scaronsmall": 0xF6FD, 3717 "Tildesmall": 0xF6FE, 3718 "Zcaronsmall": 0xF6FF, 3719 "exclamsmall": 0xF721, 3720 "dollaroldstyle": 0xF724, 3721 "ampersandsmall": 0xF726, 3722 "zerooldstyle": 0xF730, 3723 "oneoldstyle": 0xF731, 3724 "twooldstyle": 0xF732, 3725 "threeoldstyle": 0xF733, 3726 "fouroldstyle": 0xF734, 3727 "fiveoldstyle": 0xF735, 3728 "sixoldstyle": 0xF736, 3729 "sevenoldstyle": 0xF737, 3730 "eightoldstyle": 0xF738, 3731 "nineoldstyle": 0xF739, 3732 "questionsmall": 0xF73F, 3733 "Gravesmall": 0xF760, 3734 "Asmall": 0xF761, 3735 "Bsmall": 0xF762, 3736 "Csmall": 0xF763, 3737 "Dsmall": 0xF764, 3738 "Esmall": 0xF765, 3739 "Fsmall": 0xF766, 3740 "Gsmall": 0xF767, 3741 "Hsmall": 0xF768, 3742 "Ismall": 0xF769, 3743 "Jsmall": 0xF76A, 3744 "Ksmall": 0xF76B, 3745 "Lsmall": 0xF76C, 3746 "Msmall": 0xF76D, 3747 "Nsmall": 0xF76E, 3748 "Osmall": 0xF76F, 3749 "Psmall": 0xF770, 3750 "Qsmall": 0xF771, 3751 "Rsmall": 0xF772, 3752 "Ssmall": 0xF773, 3753 "Tsmall": 0xF774, 3754 "Usmall": 0xF775, 3755 "Vsmall": 0xF776, 3756 "Wsmall": 0xF777, 3757 "Xsmall": 0xF778, 3758 "Ysmall": 0xF779, 3759 "Zsmall": 0xF77A, 3760 "exclamdownsmall": 0xF7A1, 3761 "centoldstyle": 0xF7A2, 3762 "Dieresissmall": 0xF7A8, 3763 "Macronsmall": 0xF7AF, 3764 "Acutesmall": 0xF7B4, 3765 "Cedillasmall": 0xF7B8, 3766 "questiondownsmall": 0xF7BF, 3767 "Agravesmall": 0xF7E0, 3768 "Aacutesmall": 0xF7E1, 3769 "Acircumflexsmall": 0xF7E2, 3770 "Atildesmall": 0xF7E3, 3771 "Adieresissmall": 0xF7E4, 3772 "Aringsmall": 0xF7E5, 3773 "AEsmall": 0xF7E6, 3774 "Ccedillasmall": 0xF7E7, 3775 "Egravesmall": 0xF7E8, 3776 "Eacutesmall": 0xF7E9, 3777 "Ecircumflexsmall": 0xF7EA, 3778 "Edieresissmall": 0xF7EB, 3779 "Igravesmall": 0xF7EC, 3780 "Iacutesmall": 0xF7ED, 3781 "Icircumflexsmall": 0xF7EE, 3782 "Idieresissmall": 0xF7EF, 3783 "Ethsmall": 0xF7F0, 3784 "Ntildesmall": 0xF7F1, 3785 "Ogravesmall": 0xF7F2, 3786 "Oacutesmall": 0xF7F3, 3787 "Ocircumflexsmall": 0xF7F4, 3788 "Otildesmall": 0xF7F5, 3789 "Odieresissmall": 0xF7F6, 3790 "Oslashsmall": 0xF7F8, 3791 "Ugravesmall": 0xF7F9, 3792 "Uacutesmall": 0xF7FA, 3793 "Ucircumflexsmall": 0xF7FB, 3794 "Udieresissmall": 0xF7FC, 3795 "Yacutesmall": 0xF7FD, 3796 "Thornsmall": 0xF7FE, 3797 "Ydieresissmall": 0xF7FF, 3798 "maihanakatleftthai": 0xF884, 3799 "saraileftthai": 0xF885, 3800 "saraiileftthai": 0xF886, 3801 "saraueleftthai": 0xF887, 3802 "saraueeleftthai": 0xF888, 3803 "maitaikhuleftthai": 0xF889, 3804 "maiekupperleftthai": 0xF88A, 3805 "maieklowrightthai": 0xF88B, 3806 "maieklowleftthai": 0xF88C, 3807 "maithoupperleftthai": 0xF88D, 3808 "maitholowrightthai": 0xF88E, 3809 "maitholowleftthai": 0xF88F, 3810 "maitriupperleftthai": 0xF890, 3811 "maitrilowrightthai": 0xF891, 3812 "maitrilowleftthai": 0xF892, 3813 "maichattawaupperleftthai": 0xF893, 3814 "maichattawalowrightthai": 0xF894, 3815 "maichattawalowleftthai": 0xF895, 3816 "thanthakhatupperleftthai": 0xF896, 3817 "thanthakhatlowrightthai": 0xF897, 3818 "thanthakhatlowleftthai": 0xF898, 3819 "nikhahitleftthai": 0xF899, 3820 "radicalex": 0xF8E5, 3821 "arrowvertex": 0xF8E6, 3822 "arrowhorizex": 0xF8E7, 3823 "registersans": 0xF8E8, 3824 "copyrightsans": 0xF8E9, 3825 "trademarksans": 0xF8EA, 3826 "parenlefttp": 0xF8EB, 3827 "parenleftex": 0xF8EC, 3828 "parenleftbt": 0xF8ED, 3829 "bracketlefttp": 0xF8EE, 3830 "bracketleftex": 0xF8EF, 3831 "bracketleftbt": 0xF8F0, 3832 "bracelefttp": 0xF8F1, 3833 "braceleftmid": 0xF8F2, 3834 "braceleftbt": 0xF8F3, 3835 "braceex": 0xF8F4, 3836 "integralex": 0xF8F5, 3837 "parenrighttp": 0xF8F6, 3838 "parenrightex": 0xF8F7, 3839 "parenrightbt": 0xF8F8, 3840 "bracketrighttp": 0xF8F9, 3841 "bracketrightex": 0xF8FA, 3842 "bracketrightbt": 0xF8FB, 3843 "bracerighttp": 0xF8FC, 3844 "bracerightmid": 0xF8FD, 3845 "bracerightbt": 0xF8FE, 3846 "apple": 0xF8FF, 3847 "ff": 0xFB00, 3848 "fi": 0xFB01, 3849 "fl": 0xFB02, 3850 "ffi": 0xFB03, 3851 "ffl": 0xFB04, 3852 "afii57705": 0xFB1F, 3853 "doubleyodpatah": 0xFB1F, 3854 "doubleyodpatahhebrew": 0xFB1F, 3855 "yodyodpatahhebrew": 0xFB1F, 3856 "ayinaltonehebrew": 0xFB20, 3857 "afii57694": 0xFB2A, 3858 "shinshindot": 0xFB2A, 3859 "shinshindothebrew": 0xFB2A, 3860 "afii57695": 0xFB2B, 3861 "shinsindot": 0xFB2B, 3862 "shinsindothebrew": 0xFB2B, 3863 "shindageshshindot": 0xFB2C, 3864 "shindageshshindothebrew": 0xFB2C, 3865 "shindageshsindot": 0xFB2D, 3866 "shindageshsindothebrew": 0xFB2D, 3867 "alefpatahhebrew": 0xFB2E, 3868 "alefqamatshebrew": 0xFB2F, 3869 "alefdageshhebrew": 0xFB30, 3870 "betdagesh": 0xFB31, 3871 "betdageshhebrew": 0xFB31, 3872 "gimeldagesh": 0xFB32, 3873 "gimeldageshhebrew": 0xFB32, 3874 "daletdagesh": 0xFB33, 3875 "daletdageshhebrew": 0xFB33, 3876 "hedagesh": 0xFB34, 3877 "hedageshhebrew": 0xFB34, 3878 "afii57723": 0xFB35, 3879 "vavdagesh": 0xFB35, 3880 "vavdagesh65": 0xFB35, 3881 "vavdageshhebrew": 0xFB35, 3882 "zayindagesh": 0xFB36, 3883 "zayindageshhebrew": 0xFB36, 3884 "tetdagesh": 0xFB38, 3885 "tetdageshhebrew": 0xFB38, 3886 "yoddagesh": 0xFB39, 3887 "yoddageshhebrew": 0xFB39, 3888 "finalkafdagesh": 0xFB3A, 3889 "finalkafdageshhebrew": 0xFB3A, 3890 "kafdagesh": 0xFB3B, 3891 "kafdageshhebrew": 0xFB3B, 3892 "lameddagesh": 0xFB3C, 3893 "lameddageshhebrew": 0xFB3C, 3894 "memdagesh": 0xFB3E, 3895 "memdageshhebrew": 0xFB3E, 3896 "nundagesh": 0xFB40, 3897 "nundageshhebrew": 0xFB40, 3898 "samekhdagesh": 0xFB41, 3899 "samekhdageshhebrew": 0xFB41, 3900 "pefinaldageshhebrew": 0xFB43, 3901 "pedagesh": 0xFB44, 3902 "pedageshhebrew": 0xFB44, 3903 "tsadidagesh": 0xFB46, 3904 "tsadidageshhebrew": 0xFB46, 3905 "qofdagesh": 0xFB47, 3906 "qofdageshhebrew": 0xFB47, 3907 "reshdageshhebrew": 0xFB48, 3908 "shindagesh": 0xFB49, 3909 "shindageshhebrew": 0xFB49, 3910 "tavdages": 0xFB4A, 3911 "tavdagesh": 0xFB4A, 3912 "tavdageshhebrew": 0xFB4A, 3913 "afii57700": 0xFB4B, 3914 "vavholam": 0xFB4B, 3915 "vavholamhebrew": 0xFB4B, 3916 "betrafehebrew": 0xFB4C, 3917 "kafrafehebrew": 0xFB4D, 3918 "perafehebrew": 0xFB4E, 3919 "aleflamedhebrew": 0xFB4F, 3920 "pehfinalarabic": 0xFB57, 3921 "pehinitialarabic": 0xFB58, 3922 "pehmedialarabic": 0xFB59, 3923 "ttehfinalarabic": 0xFB67, 3924 "ttehinitialarabic": 0xFB68, 3925 "ttehmedialarabic": 0xFB69, 3926 "vehfinalarabic": 0xFB6B, 3927 "vehinitialarabic": 0xFB6C, 3928 "vehmedialarabic": 0xFB6D, 3929 "tchehfinalarabic": 0xFB7B, 3930 "tchehinitialarabic": 0xFB7C, 3931 "tchehmeeminitialarabic": 0xFB7C, 3932 "tchehmedialarabic": 0xFB7D, 3933 "ddalfinalarabic": 0xFB89, 3934 "jehfinalarabic": 0xFB8B, 3935 "rrehfinalarabic": 0xFB8D, 3936 "gaffinalarabic": 0xFB93, 3937 "gafinitialarabic": 0xFB94, 3938 "gafmedialarabic": 0xFB95, 3939 "noonghunnafinalarabic": 0xFB9F, 3940 "hehhamzaaboveisolatedarabic": 0xFBA4, 3941 "hehhamzaabovefinalarabic": 0xFBA5, 3942 "hehfinalaltonearabic": 0xFBA7, 3943 "hehinitialaltonearabic": 0xFBA8, 3944 "hehmedialaltonearabic": 0xFBA9, 3945 "yehbarreefinalarabic": 0xFBAF, 3946 "behmeemisolatedarabic": 0xFC08, 3947 "tehjeemisolatedarabic": 0xFC0B, 3948 "tehhahisolatedarabic": 0xFC0C, 3949 "tehmeemisolatedarabic": 0xFC0E, 3950 "meemmeemisolatedarabic": 0xFC48, 3951 "noonjeemisolatedarabic": 0xFC4B, 3952 "noonmeemisolatedarabic": 0xFC4E, 3953 "yehmeemisolatedarabic": 0xFC58, 3954 "shaddadammatanarabic": 0xFC5E, 3955 "shaddakasratanarabic": 0xFC5F, 3956 "shaddafathaarabic": 0xFC60, 3957 "shaddadammaarabic": 0xFC61, 3958 "shaddakasraarabic": 0xFC62, 3959 "behnoonfinalarabic": 0xFC6D, 3960 "tehnoonfinalarabic": 0xFC73, 3961 "noonnoonfinalarabic": 0xFC8D, 3962 "yehnoonfinalarabic": 0xFC94, 3963 "behmeeminitialarabic": 0xFC9F, 3964 "tehjeeminitialarabic": 0xFCA1, 3965 "tehhahinitialarabic": 0xFCA2, 3966 "tehmeeminitialarabic": 0xFCA4, 3967 "lamjeeminitialarabic": 0xFCC9, 3968 "lamhahinitialarabic": 0xFCCA, 3969 "lamkhahinitialarabic": 0xFCCB, 3970 "lammeeminitialarabic": 0xFCCC, 3971 "meemmeeminitialarabic": 0xFCD1, 3972 "noonjeeminitialarabic": 0xFCD2, 3973 "noonmeeminitialarabic": 0xFCD5, 3974 "yehmeeminitialarabic": 0xFCDD, 3975 "parenleftaltonearabic": 0xFD3E, 3976 "parenrightaltonearabic": 0xFD3F, 3977 "lammeemhahinitialarabic": 0xFD88, 3978 "lamlamhehisolatedarabic": 0xFDF2, 3979 "sallallahoualayhewasallamarabic": 0xFDFA, 3980 "twodotleadervertical": 0xFE30, 3981 "emdashvertical": 0xFE31, 3982 "endashvertical": 0xFE32, 3983 "underscorevertical": 0xFE33, 3984 "wavyunderscorevertical": 0xFE34, 3985 "parenleftvertical": 0xFE35, 3986 "parenrightvertical": 0xFE36, 3987 "braceleftvertical": 0xFE37, 3988 "bracerightvertical": 0xFE38, 3989 "tortoiseshellbracketleftvertical": 0xFE39, 3990 "tortoiseshellbracketrightvertical": 0xFE3A, 3991 "blacklenticularbracketleftvertical": 0xFE3B, 3992 "blacklenticularbracketrightvertical": 0xFE3C, 3993 "dblanglebracketleftvertical": 0xFE3D, 3994 "dblanglebracketrightvertical": 0xFE3E, 3995 "anglebracketleftvertical": 0xFE3F, 3996 "anglebracketrightvertical": 0xFE40, 3997 "cornerbracketleftvertical": 0xFE41, 3998 "cornerbracketrightvertical": 0xFE42, 3999 "whitecornerbracketleftvertical": 0xFE43, 4000 "whitecornerbracketrightvertical": 0xFE44, 4001 "overlinedashed": 0xFE49, 4002 "overlinecenterline": 0xFE4A, 4003 "overlinewavy": 0xFE4B, 4004 "overlinedblwavy": 0xFE4C, 4005 "lowlinedashed": 0xFE4D, 4006 "lowlinecenterline": 0xFE4E, 4007 "underscorewavy": 0xFE4F, 4008 "commasmall": 0xFE50, 4009 "periodsmall": 0xFE52, 4010 "semicolonsmall": 0xFE54, 4011 "colonsmall": 0xFE55, 4012 "parenleftsmall": 0xFE59, 4013 "parenrightsmall": 0xFE5A, 4014 "braceleftsmall": 0xFE5B, 4015 "bracerightsmall": 0xFE5C, 4016 "tortoiseshellbracketleftsmall": 0xFE5D, 4017 "tortoiseshellbracketrightsmall": 0xFE5E, 4018 "numbersignsmall": 0xFE5F, 4019 "asterisksmall": 0xFE61, 4020 "plussmall": 0xFE62, 4021 "hyphensmall": 0xFE63, 4022 "lesssmall": 0xFE64, 4023 "greatersmall": 0xFE65, 4024 "equalsmall": 0xFE66, 4025 "dollarsmall": 0xFE69, 4026 "percentsmall": 0xFE6A, 4027 "atsmall": 0xFE6B, 4028 "alefmaddaabovefinalarabic": 0xFE82, 4029 "alefhamzaabovefinalarabic": 0xFE84, 4030 "wawhamzaabovefinalarabic": 0xFE86, 4031 "alefhamzabelowfinalarabic": 0xFE88, 4032 "yehhamzaabovefinalarabic": 0xFE8A, 4033 "yehhamzaaboveinitialarabic": 0xFE8B, 4034 "yehhamzaabovemedialarabic": 0xFE8C, 4035 "aleffinalarabic": 0xFE8E, 4036 "behfinalarabic": 0xFE90, 4037 "behinitialarabic": 0xFE91, 4038 "behmedialarabic": 0xFE92, 4039 "tehmarbutafinalarabic": 0xFE94, 4040 "tehfinalarabic": 0xFE96, 4041 "tehinitialarabic": 0xFE97, 4042 "tehmedialarabic": 0xFE98, 4043 "thehfinalarabic": 0xFE9A, 4044 "thehinitialarabic": 0xFE9B, 4045 "thehmedialarabic": 0xFE9C, 4046 "jeemfinalarabic": 0xFE9E, 4047 "jeeminitialarabic": 0xFE9F, 4048 "jeemmedialarabic": 0xFEA0, 4049 "hahfinalarabic": 0xFEA2, 4050 "hahinitialarabic": 0xFEA3, 4051 "hahmedialarabic": 0xFEA4, 4052 "khahfinalarabic": 0xFEA6, 4053 "khahinitialarabic": 0xFEA7, 4054 "khahmedialarabic": 0xFEA8, 4055 "dalfinalarabic": 0xFEAA, 4056 "thalfinalarabic": 0xFEAC, 4057 "rehfinalarabic": 0xFEAE, 4058 "zainfinalarabic": 0xFEB0, 4059 "seenfinalarabic": 0xFEB2, 4060 "seeninitialarabic": 0xFEB3, 4061 "seenmedialarabic": 0xFEB4, 4062 "sheenfinalarabic": 0xFEB6, 4063 "sheeninitialarabic": 0xFEB7, 4064 "sheenmedialarabic": 0xFEB8, 4065 "sadfinalarabic": 0xFEBA, 4066 "sadinitialarabic": 0xFEBB, 4067 "sadmedialarabic": 0xFEBC, 4068 "dadfinalarabic": 0xFEBE, 4069 "dadinitialarabic": 0xFEBF, 4070 "dadmedialarabic": 0xFEC0, 4071 "tahfinalarabic": 0xFEC2, 4072 "tahinitialarabic": 0xFEC3, 4073 "tahmedialarabic": 0xFEC4, 4074 "zahfinalarabic": 0xFEC6, 4075 "zahinitialarabic": 0xFEC7, 4076 "zahmedialarabic": 0xFEC8, 4077 "ainfinalarabic": 0xFECA, 4078 "aininitialarabic": 0xFECB, 4079 "ainmedialarabic": 0xFECC, 4080 "ghainfinalarabic": 0xFECE, 4081 "ghaininitialarabic": 0xFECF, 4082 "ghainmedialarabic": 0xFED0, 4083 "fehfinalarabic": 0xFED2, 4084 "fehinitialarabic": 0xFED3, 4085 "fehmedialarabic": 0xFED4, 4086 "qaffinalarabic": 0xFED6, 4087 "qafinitialarabic": 0xFED7, 4088 "qafmedialarabic": 0xFED8, 4089 "kaffinalarabic": 0xFEDA, 4090 "kafinitialarabic": 0xFEDB, 4091 "kafmedialarabic": 0xFEDC, 4092 "lamfinalarabic": 0xFEDE, 4093 "laminitialarabic": 0xFEDF, 4094 "lammeemjeeminitialarabic": 0xFEDF, 4095 "lammeemkhahinitialarabic": 0xFEDF, 4096 "lammedialarabic": 0xFEE0, 4097 "meemfinalarabic": 0xFEE2, 4098 "meeminitialarabic": 0xFEE3, 4099 "meemmedialarabic": 0xFEE4, 4100 "noonfinalarabic": 0xFEE6, 4101 "nooninitialarabic": 0xFEE7, 4102 "noonhehinitialarabic": 0xFEE7, 4103 "noonmedialarabic": 0xFEE8, 4104 "hehfinalalttwoarabic": 0xFEEA, 4105 "hehfinalarabic": 0xFEEA, 4106 "hehinitialarabic": 0xFEEB, 4107 "hehmedialarabic": 0xFEEC, 4108 "wawfinalarabic": 0xFEEE, 4109 "alefmaksurafinalarabic": 0xFEF0, 4110 "yehfinalarabic": 0xFEF2, 4111 "alefmaksurainitialarabic": 0xFEF3, 4112 "yehinitialarabic": 0xFEF3, 4113 "alefmaksuramedialarabic": 0xFEF4, 4114 "yehmedialarabic": 0xFEF4, 4115 "lamalefmaddaaboveisolatedarabic": 0xFEF5, 4116 "lamalefmaddaabovefinalarabic": 0xFEF6, 4117 "lamalefhamzaaboveisolatedarabic": 0xFEF7, 4118 "lamalefhamzaabovefinalarabic": 0xFEF8, 4119 "lamalefhamzabelowisolatedarabic": 0xFEF9, 4120 "lamalefhamzabelowfinalarabic": 0xFEFA, 4121 "lamalefisolatedarabic": 0xFEFB, 4122 "lamaleffinalarabic": 0xFEFC, 4123 "zerowidthjoiner": 0xFEFF, 4124 "exclammonospace": 0xFF01, 4125 "quotedblmonospace": 0xFF02, 4126 "numbersignmonospace": 0xFF03, 4127 "dollarmonospace": 0xFF04, 4128 "percentmonospace": 0xFF05, 4129 "ampersandmonospace": 0xFF06, 4130 "quotesinglemonospace": 0xFF07, 4131 "parenleftmonospace": 0xFF08, 4132 "parenrightmonospace": 0xFF09, 4133 "asteriskmonospace": 0xFF0A, 4134 "plusmonospace": 0xFF0B, 4135 "commamonospace": 0xFF0C, 4136 "hyphenmonospace": 0xFF0D, 4137 "periodmonospace": 0xFF0E, 4138 "slashmonospace": 0xFF0F, 4139 "zeromonospace": 0xFF10, 4140 "onemonospace": 0xFF11, 4141 "twomonospace": 0xFF12, 4142 "threemonospace": 0xFF13, 4143 "fourmonospace": 0xFF14, 4144 "fivemonospace": 0xFF15, 4145 "sixmonospace": 0xFF16, 4146 "sevenmonospace": 0xFF17, 4147 "eightmonospace": 0xFF18, 4148 "ninemonospace": 0xFF19, 4149 "colonmonospace": 0xFF1A, 4150 "semicolonmonospace": 0xFF1B, 4151 "lessmonospace": 0xFF1C, 4152 "equalmonospace": 0xFF1D, 4153 "greatermonospace": 0xFF1E, 4154 "questionmonospace": 0xFF1F, 4155 "atmonospace": 0xFF20, 4156 "Amonospace": 0xFF21, 4157 "Bmonospace": 0xFF22, 4158 "Cmonospace": 0xFF23, 4159 "Dmonospace": 0xFF24, 4160 "Emonospace": 0xFF25, 4161 "Fmonospace": 0xFF26, 4162 "Gmonospace": 0xFF27, 4163 "Hmonospace": 0xFF28, 4164 "Imonospace": 0xFF29, 4165 "Jmonospace": 0xFF2A, 4166 "Kmonospace": 0xFF2B, 4167 "Lmonospace": 0xFF2C, 4168 "Mmonospace": 0xFF2D, 4169 "Nmonospace": 0xFF2E, 4170 "Omonospace": 0xFF2F, 4171 "Pmonospace": 0xFF30, 4172 "Qmonospace": 0xFF31, 4173 "Rmonospace": 0xFF32, 4174 "Smonospace": 0xFF33, 4175 "Tmonospace": 0xFF34, 4176 "Umonospace": 0xFF35, 4177 "Vmonospace": 0xFF36, 4178 "Wmonospace": 0xFF37, 4179 "Xmonospace": 0xFF38, 4180 "Ymonospace": 0xFF39, 4181 "Zmonospace": 0xFF3A, 4182 "bracketleftmonospace": 0xFF3B, 4183 "backslashmonospace": 0xFF3C, 4184 "bracketrightmonospace": 0xFF3D, 4185 "asciicircummonospace": 0xFF3E, 4186 "underscoremonospace": 0xFF3F, 4187 "gravemonospace": 0xFF40, 4188 "amonospace": 0xFF41, 4189 "bmonospace": 0xFF42, 4190 "cmonospace": 0xFF43, 4191 "dmonospace": 0xFF44, 4192 "emonospace": 0xFF45, 4193 "fmonospace": 0xFF46, 4194 "gmonospace": 0xFF47, 4195 "hmonospace": 0xFF48, 4196 "imonospace": 0xFF49, 4197 "jmonospace": 0xFF4A, 4198 "kmonospace": 0xFF4B, 4199 "lmonospace": 0xFF4C, 4200 "mmonospace": 0xFF4D, 4201 "nmonospace": 0xFF4E, 4202 "omonospace": 0xFF4F, 4203 "pmonospace": 0xFF50, 4204 "qmonospace": 0xFF51, 4205 "rmonospace": 0xFF52, 4206 "smonospace": 0xFF53, 4207 "tmonospace": 0xFF54, 4208 "umonospace": 0xFF55, 4209 "vmonospace": 0xFF56, 4210 "wmonospace": 0xFF57, 4211 "xmonospace": 0xFF58, 4212 "ymonospace": 0xFF59, 4213 "zmonospace": 0xFF5A, 4214 "braceleftmonospace": 0xFF5B, 4215 "barmonospace": 0xFF5C, 4216 "bracerightmonospace": 0xFF5D, 4217 "asciitildemonospace": 0xFF5E, 4218 "periodhalfwidth": 0xFF61, 4219 "cornerbracketlefthalfwidth": 0xFF62, 4220 "cornerbracketrighthalfwidth": 0xFF63, 4221 "ideographiccommaleft": 0xFF64, 4222 "middledotkatakanahalfwidth": 0xFF65, 4223 "wokatakanahalfwidth": 0xFF66, 4224 "asmallkatakanahalfwidth": 0xFF67, 4225 "ismallkatakanahalfwidth": 0xFF68, 4226 "usmallkatakanahalfwidth": 0xFF69, 4227 "esmallkatakanahalfwidth": 0xFF6A, 4228 "osmallkatakanahalfwidth": 0xFF6B, 4229 "yasmallkatakanahalfwidth": 0xFF6C, 4230 "yusmallkatakanahalfwidth": 0xFF6D, 4231 "yosmallkatakanahalfwidth": 0xFF6E, 4232 "tusmallkatakanahalfwidth": 0xFF6F, 4233 "katahiraprolongmarkhalfwidth": 0xFF70, 4234 "akatakanahalfwidth": 0xFF71, 4235 "ikatakanahalfwidth": 0xFF72, 4236 "ukatakanahalfwidth": 0xFF73, 4237 "ekatakanahalfwidth": 0xFF74, 4238 "okatakanahalfwidth": 0xFF75, 4239 "kakatakanahalfwidth": 0xFF76, 4240 "kikatakanahalfwidth": 0xFF77, 4241 "kukatakanahalfwidth": 0xFF78, 4242 "kekatakanahalfwidth": 0xFF79, 4243 "kokatakanahalfwidth": 0xFF7A, 4244 "sakatakanahalfwidth": 0xFF7B, 4245 "sikatakanahalfwidth": 0xFF7C, 4246 "sukatakanahalfwidth": 0xFF7D, 4247 "sekatakanahalfwidth": 0xFF7E, 4248 "sokatakanahalfwidth": 0xFF7F, 4249 "takatakanahalfwidth": 0xFF80, 4250 "tikatakanahalfwidth": 0xFF81, 4251 "tukatakanahalfwidth": 0xFF82, 4252 "tekatakanahalfwidth": 0xFF83, 4253 "tokatakanahalfwidth": 0xFF84, 4254 "nakatakanahalfwidth": 0xFF85, 4255 "nikatakanahalfwidth": 0xFF86, 4256 "nukatakanahalfwidth": 0xFF87, 4257 "nekatakanahalfwidth": 0xFF88, 4258 "nokatakanahalfwidth": 0xFF89, 4259 "hakatakanahalfwidth": 0xFF8A, 4260 "hikatakanahalfwidth": 0xFF8B, 4261 "hukatakanahalfwidth": 0xFF8C, 4262 "hekatakanahalfwidth": 0xFF8D, 4263 "hokatakanahalfwidth": 0xFF8E, 4264 "makatakanahalfwidth": 0xFF8F, 4265 "mikatakanahalfwidth": 0xFF90, 4266 "mukatakanahalfwidth": 0xFF91, 4267 "mekatakanahalfwidth": 0xFF92, 4268 "mokatakanahalfwidth": 0xFF93, 4269 "yakatakanahalfwidth": 0xFF94, 4270 "yukatakanahalfwidth": 0xFF95, 4271 "yokatakanahalfwidth": 0xFF96, 4272 "rakatakanahalfwidth": 0xFF97, 4273 "rikatakanahalfwidth": 0xFF98, 4274 "rukatakanahalfwidth": 0xFF99, 4275 "rekatakanahalfwidth": 0xFF9A, 4276 "rokatakanahalfwidth": 0xFF9B, 4277 "wakatakanahalfwidth": 0xFF9C, 4278 "nkatakanahalfwidth": 0xFF9D, 4279 "voicedmarkkanahalfwidth": 0xFF9E, 4280 "semivoicedmarkkanahalfwidth": 0xFF9F, 4281 "centmonospace": 0xFFE0, 4282 "sterlingmonospace": 0xFFE1, 4283 "macronmonospace": 0xFFE3, 4284 "yenmonospace": 0xFFE5, 4285 "wonmonospace": 0xFFE6, 4286 }