gitee.com/quant1x/gox@v1.7.6/text/encoding/entity_data.go (about) 1 package encoding 2 3 // Taken from /src/pkg/html/entity.go in the Go source code. 4 5 // Copyright 2010 The Go Authors. All rights reserved. 6 // Use of this source code is governed by a BSD-style 7 // license that can be found in the LICENSE file. 8 9 //package html 10 11 // entity is a map from HTML entity names to their values. The semicolon matters: 12 // http://www.whatwg.org/specs/web-apps/current-work/multipage/named-character-references.html 13 // lists both "amp" and "amp;" as two separate entries. 14 // 15 // Note that the HTML5 list is larger than the HTML4 list at 16 // http://www.w3.org/TR/html4/sgml/entities.html 17 var entity = map[string]rune{ 18 "AElig;": '\U000000C6', 19 "AMP;": '\U00000026', 20 "Aacute;": '\U000000C1', 21 "Abreve;": '\U00000102', 22 "Acirc;": '\U000000C2', 23 "Acy;": '\U00000410', 24 "Afr;": '\U0001D504', 25 "Agrave;": '\U000000C0', 26 "Alpha;": '\U00000391', 27 "Amacr;": '\U00000100', 28 "And;": '\U00002A53', 29 "Aogon;": '\U00000104', 30 "Aopf;": '\U0001D538', 31 "ApplyFunction;": '\U00002061', 32 "Aring;": '\U000000C5', 33 "Ascr;": '\U0001D49C', 34 "Assign;": '\U00002254', 35 "Atilde;": '\U000000C3', 36 "Auml;": '\U000000C4', 37 "Backslash;": '\U00002216', 38 "Barv;": '\U00002AE7', 39 "Barwed;": '\U00002306', 40 "Bcy;": '\U00000411', 41 "Because;": '\U00002235', 42 "Bernoullis;": '\U0000212C', 43 "Beta;": '\U00000392', 44 "Bfr;": '\U0001D505', 45 "Bopf;": '\U0001D539', 46 "Breve;": '\U000002D8', 47 "Bscr;": '\U0000212C', 48 "Bumpeq;": '\U0000224E', 49 "CHcy;": '\U00000427', 50 "COPY;": '\U000000A9', 51 "Cacute;": '\U00000106', 52 "Cap;": '\U000022D2', 53 "CapitalDifferentialD;": '\U00002145', 54 "Cayleys;": '\U0000212D', 55 "Ccaron;": '\U0000010C', 56 "Ccedil;": '\U000000C7', 57 "Ccirc;": '\U00000108', 58 "Cconint;": '\U00002230', 59 "Cdot;": '\U0000010A', 60 "Cedilla;": '\U000000B8', 61 "CenterDot;": '\U000000B7', 62 "Cfr;": '\U0000212D', 63 "Chi;": '\U000003A7', 64 "CircleDot;": '\U00002299', 65 "CircleMinus;": '\U00002296', 66 "CirclePlus;": '\U00002295', 67 "CircleTimes;": '\U00002297', 68 "ClockwiseContourIntegral;": '\U00002232', 69 "CloseCurlyDoubleQuote;": '\U0000201D', 70 "CloseCurlyQuote;": '\U00002019', 71 "Colon;": '\U00002237', 72 "Colone;": '\U00002A74', 73 "Congruent;": '\U00002261', 74 "Conint;": '\U0000222F', 75 "ContourIntegral;": '\U0000222E', 76 "Copf;": '\U00002102', 77 "Coproduct;": '\U00002210', 78 "CounterClockwiseContourIntegral;": '\U00002233', 79 "Cross;": '\U00002A2F', 80 "Cscr;": '\U0001D49E', 81 "Cup;": '\U000022D3', 82 "CupCap;": '\U0000224D', 83 "DD;": '\U00002145', 84 "DDotrahd;": '\U00002911', 85 "DJcy;": '\U00000402', 86 "DScy;": '\U00000405', 87 "DZcy;": '\U0000040F', 88 "Dagger;": '\U00002021', 89 "Darr;": '\U000021A1', 90 "Dashv;": '\U00002AE4', 91 "Dcaron;": '\U0000010E', 92 "Dcy;": '\U00000414', 93 "Del;": '\U00002207', 94 "Delta;": '\U00000394', 95 "Dfr;": '\U0001D507', 96 "DiacriticalAcute;": '\U000000B4', 97 "DiacriticalDot;": '\U000002D9', 98 "DiacriticalDoubleAcute;": '\U000002DD', 99 "DiacriticalGrave;": '\U00000060', 100 "DiacriticalTilde;": '\U000002DC', 101 "Diamond;": '\U000022C4', 102 "DifferentialD;": '\U00002146', 103 "Dopf;": '\U0001D53B', 104 "Dot;": '\U000000A8', 105 "DotDot;": '\U000020DC', 106 "DotEqual;": '\U00002250', 107 "DoubleContourIntegral;": '\U0000222F', 108 "DoubleDot;": '\U000000A8', 109 "DoubleDownArrow;": '\U000021D3', 110 "DoubleLeftArrow;": '\U000021D0', 111 "DoubleLeftRightArrow;": '\U000021D4', 112 "DoubleLeftTee;": '\U00002AE4', 113 "DoubleLongLeftArrow;": '\U000027F8', 114 "DoubleLongLeftRightArrow;": '\U000027FA', 115 "DoubleLongRightArrow;": '\U000027F9', 116 "DoubleRightArrow;": '\U000021D2', 117 "DoubleRightTee;": '\U000022A8', 118 "DoubleUpArrow;": '\U000021D1', 119 "DoubleUpDownArrow;": '\U000021D5', 120 "DoubleVerticalBar;": '\U00002225', 121 "DownArrow;": '\U00002193', 122 "DownArrowBar;": '\U00002913', 123 "DownArrowUpArrow;": '\U000021F5', 124 "DownBreve;": '\U00000311', 125 "DownLeftRightVector;": '\U00002950', 126 "DownLeftTeeVector;": '\U0000295E', 127 "DownLeftVector;": '\U000021BD', 128 "DownLeftVectorBar;": '\U00002956', 129 "DownRightTeeVector;": '\U0000295F', 130 "DownRightVector;": '\U000021C1', 131 "DownRightVectorBar;": '\U00002957', 132 "DownTee;": '\U000022A4', 133 "DownTeeArrow;": '\U000021A7', 134 "Downarrow;": '\U000021D3', 135 "Dscr;": '\U0001D49F', 136 "Dstrok;": '\U00000110', 137 "ENG;": '\U0000014A', 138 "ETH;": '\U000000D0', 139 "Eacute;": '\U000000C9', 140 "Ecaron;": '\U0000011A', 141 "Ecirc;": '\U000000CA', 142 "Ecy;": '\U0000042D', 143 "Edot;": '\U00000116', 144 "Efr;": '\U0001D508', 145 "Egrave;": '\U000000C8', 146 "Element;": '\U00002208', 147 "Emacr;": '\U00000112', 148 "EmptySmallSquare;": '\U000025FB', 149 "EmptyVerySmallSquare;": '\U000025AB', 150 "Eogon;": '\U00000118', 151 "Eopf;": '\U0001D53C', 152 "Epsilon;": '\U00000395', 153 "Equal;": '\U00002A75', 154 "EqualTilde;": '\U00002242', 155 "Equilibrium;": '\U000021CC', 156 "Escr;": '\U00002130', 157 "Esim;": '\U00002A73', 158 "Eta;": '\U00000397', 159 "Euml;": '\U000000CB', 160 "Exists;": '\U00002203', 161 "ExponentialE;": '\U00002147', 162 "Fcy;": '\U00000424', 163 "Ffr;": '\U0001D509', 164 "FilledSmallSquare;": '\U000025FC', 165 "FilledVerySmallSquare;": '\U000025AA', 166 "Fopf;": '\U0001D53D', 167 "ForAll;": '\U00002200', 168 "Fouriertrf;": '\U00002131', 169 "Fscr;": '\U00002131', 170 "GJcy;": '\U00000403', 171 "GT;": '\U0000003E', 172 "Gamma;": '\U00000393', 173 "Gammad;": '\U000003DC', 174 "Gbreve;": '\U0000011E', 175 "Gcedil;": '\U00000122', 176 "Gcirc;": '\U0000011C', 177 "Gcy;": '\U00000413', 178 "Gdot;": '\U00000120', 179 "Gfr;": '\U0001D50A', 180 "Gg;": '\U000022D9', 181 "Gopf;": '\U0001D53E', 182 "GreaterEqual;": '\U00002265', 183 "GreaterEqualLess;": '\U000022DB', 184 "GreaterFullEqual;": '\U00002267', 185 "GreaterGreater;": '\U00002AA2', 186 "GreaterLess;": '\U00002277', 187 "GreaterSlantEqual;": '\U00002A7E', 188 "GreaterTilde;": '\U00002273', 189 "Gscr;": '\U0001D4A2', 190 "Gt;": '\U0000226B', 191 "HARDcy;": '\U0000042A', 192 "Hacek;": '\U000002C7', 193 "Hat;": '\U0000005E', 194 "Hcirc;": '\U00000124', 195 "Hfr;": '\U0000210C', 196 "HilbertSpace;": '\U0000210B', 197 "Hopf;": '\U0000210D', 198 "HorizontalLine;": '\U00002500', 199 "Hscr;": '\U0000210B', 200 "Hstrok;": '\U00000126', 201 "HumpDownHump;": '\U0000224E', 202 "HumpEqual;": '\U0000224F', 203 "IEcy;": '\U00000415', 204 "IJlig;": '\U00000132', 205 "IOcy;": '\U00000401', 206 "Iacute;": '\U000000CD', 207 "Icirc;": '\U000000CE', 208 "Icy;": '\U00000418', 209 "Idot;": '\U00000130', 210 "Ifr;": '\U00002111', 211 "Igrave;": '\U000000CC', 212 "Im;": '\U00002111', 213 "Imacr;": '\U0000012A', 214 "ImaginaryI;": '\U00002148', 215 "Implies;": '\U000021D2', 216 "Int;": '\U0000222C', 217 "Integral;": '\U0000222B', 218 "Intersection;": '\U000022C2', 219 "InvisibleComma;": '\U00002063', 220 "InvisibleTimes;": '\U00002062', 221 "Iogon;": '\U0000012E', 222 "Iopf;": '\U0001D540', 223 "Iota;": '\U00000399', 224 "Iscr;": '\U00002110', 225 "Itilde;": '\U00000128', 226 "Iukcy;": '\U00000406', 227 "Iuml;": '\U000000CF', 228 "Jcirc;": '\U00000134', 229 "Jcy;": '\U00000419', 230 "Jfr;": '\U0001D50D', 231 "Jopf;": '\U0001D541', 232 "Jscr;": '\U0001D4A5', 233 "Jsercy;": '\U00000408', 234 "Jukcy;": '\U00000404', 235 "KHcy;": '\U00000425', 236 "KJcy;": '\U0000040C', 237 "Kappa;": '\U0000039A', 238 "Kcedil;": '\U00000136', 239 "Kcy;": '\U0000041A', 240 "Kfr;": '\U0001D50E', 241 "Kopf;": '\U0001D542', 242 "Kscr;": '\U0001D4A6', 243 "LJcy;": '\U00000409', 244 "LT;": '\U0000003C', 245 "Lacute;": '\U00000139', 246 "Lambda;": '\U0000039B', 247 "Lang;": '\U000027EA', 248 "Laplacetrf;": '\U00002112', 249 "Larr;": '\U0000219E', 250 "Lcaron;": '\U0000013D', 251 "Lcedil;": '\U0000013B', 252 "Lcy;": '\U0000041B', 253 "LeftAngleBracket;": '\U000027E8', 254 "LeftArrow;": '\U00002190', 255 "LeftArrowBar;": '\U000021E4', 256 "LeftArrowRightArrow;": '\U000021C6', 257 "LeftCeiling;": '\U00002308', 258 "LeftDoubleBracket;": '\U000027E6', 259 "LeftDownTeeVector;": '\U00002961', 260 "LeftDownVector;": '\U000021C3', 261 "LeftDownVectorBar;": '\U00002959', 262 "LeftFloor;": '\U0000230A', 263 "LeftRightArrow;": '\U00002194', 264 "LeftRightVector;": '\U0000294E', 265 "LeftTee;": '\U000022A3', 266 "LeftTeeArrow;": '\U000021A4', 267 "LeftTeeVector;": '\U0000295A', 268 "LeftTriangle;": '\U000022B2', 269 "LeftTriangleBar;": '\U000029CF', 270 "LeftTriangleEqual;": '\U000022B4', 271 "LeftUpDownVector;": '\U00002951', 272 "LeftUpTeeVector;": '\U00002960', 273 "LeftUpVector;": '\U000021BF', 274 "LeftUpVectorBar;": '\U00002958', 275 "LeftVector;": '\U000021BC', 276 "LeftVectorBar;": '\U00002952', 277 "Leftarrow;": '\U000021D0', 278 "Leftrightarrow;": '\U000021D4', 279 "LessEqualGreater;": '\U000022DA', 280 "LessFullEqual;": '\U00002266', 281 "LessGreater;": '\U00002276', 282 "LessLess;": '\U00002AA1', 283 "LessSlantEqual;": '\U00002A7D', 284 "LessTilde;": '\U00002272', 285 "Lfr;": '\U0001D50F', 286 "Ll;": '\U000022D8', 287 "Lleftarrow;": '\U000021DA', 288 "Lmidot;": '\U0000013F', 289 "LongLeftArrow;": '\U000027F5', 290 "LongLeftRightArrow;": '\U000027F7', 291 "LongRightArrow;": '\U000027F6', 292 "Longleftarrow;": '\U000027F8', 293 "Longleftrightarrow;": '\U000027FA', 294 "Longrightarrow;": '\U000027F9', 295 "Lopf;": '\U0001D543', 296 "LowerLeftArrow;": '\U00002199', 297 "LowerRightArrow;": '\U00002198', 298 "Lscr;": '\U00002112', 299 "Lsh;": '\U000021B0', 300 "Lstrok;": '\U00000141', 301 "Lt;": '\U0000226A', 302 "Map;": '\U00002905', 303 "Mcy;": '\U0000041C', 304 "MediumSpace;": '\U0000205F', 305 "Mellintrf;": '\U00002133', 306 "Mfr;": '\U0001D510', 307 "MinusPlus;": '\U00002213', 308 "Mopf;": '\U0001D544', 309 "Mscr;": '\U00002133', 310 "Mu;": '\U0000039C', 311 "NJcy;": '\U0000040A', 312 "Nacute;": '\U00000143', 313 "Ncaron;": '\U00000147', 314 "Ncedil;": '\U00000145', 315 "Ncy;": '\U0000041D', 316 "NegativeMediumSpace;": '\U0000200B', 317 "NegativeThickSpace;": '\U0000200B', 318 "NegativeThinSpace;": '\U0000200B', 319 "NegativeVeryThinSpace;": '\U0000200B', 320 "NestedGreaterGreater;": '\U0000226B', 321 "NestedLessLess;": '\U0000226A', 322 "NewLine;": '\U0000000A', 323 "Nfr;": '\U0001D511', 324 "NoBreak;": '\U00002060', 325 "NonBreakingSpace;": '\U000000A0', 326 "Nopf;": '\U00002115', 327 "Not;": '\U00002AEC', 328 "NotCongruent;": '\U00002262', 329 "NotCupCap;": '\U0000226D', 330 "NotDoubleVerticalBar;": '\U00002226', 331 "NotElement;": '\U00002209', 332 "NotEqual;": '\U00002260', 333 "NotExists;": '\U00002204', 334 "NotGreater;": '\U0000226F', 335 "NotGreaterEqual;": '\U00002271', 336 "NotGreaterLess;": '\U00002279', 337 "NotGreaterTilde;": '\U00002275', 338 "NotLeftTriangle;": '\U000022EA', 339 "NotLeftTriangleEqual;": '\U000022EC', 340 "NotLess;": '\U0000226E', 341 "NotLessEqual;": '\U00002270', 342 "NotLessGreater;": '\U00002278', 343 "NotLessTilde;": '\U00002274', 344 "NotPrecedes;": '\U00002280', 345 "NotPrecedesSlantEqual;": '\U000022E0', 346 "NotReverseElement;": '\U0000220C', 347 "NotRightTriangle;": '\U000022EB', 348 "NotRightTriangleEqual;": '\U000022ED', 349 "NotSquareSubsetEqual;": '\U000022E2', 350 "NotSquareSupersetEqual;": '\U000022E3', 351 "NotSubsetEqual;": '\U00002288', 352 "NotSucceeds;": '\U00002281', 353 "NotSucceedsSlantEqual;": '\U000022E1', 354 "NotSupersetEqual;": '\U00002289', 355 "NotTilde;": '\U00002241', 356 "NotTildeEqual;": '\U00002244', 357 "NotTildeFullEqual;": '\U00002247', 358 "NotTildeTilde;": '\U00002249', 359 "NotVerticalBar;": '\U00002224', 360 "Nscr;": '\U0001D4A9', 361 "Ntilde;": '\U000000D1', 362 "Nu;": '\U0000039D', 363 "OElig;": '\U00000152', 364 "Oacute;": '\U000000D3', 365 "Ocirc;": '\U000000D4', 366 "Ocy;": '\U0000041E', 367 "Odblac;": '\U00000150', 368 "Ofr;": '\U0001D512', 369 "Ograve;": '\U000000D2', 370 "Omacr;": '\U0000014C', 371 "Omega;": '\U000003A9', 372 "Omicron;": '\U0000039F', 373 "Oopf;": '\U0001D546', 374 "OpenCurlyDoubleQuote;": '\U0000201C', 375 "OpenCurlyQuote;": '\U00002018', 376 "Or;": '\U00002A54', 377 "Oscr;": '\U0001D4AA', 378 "Oslash;": '\U000000D8', 379 "Otilde;": '\U000000D5', 380 "Otimes;": '\U00002A37', 381 "Ouml;": '\U000000D6', 382 "OverBar;": '\U0000203E', 383 "OverBrace;": '\U000023DE', 384 "OverBracket;": '\U000023B4', 385 "OverParenthesis;": '\U000023DC', 386 "PartialD;": '\U00002202', 387 "Pcy;": '\U0000041F', 388 "Pfr;": '\U0001D513', 389 "Phi;": '\U000003A6', 390 "Pi;": '\U000003A0', 391 "PlusMinus;": '\U000000B1', 392 "Poincareplane;": '\U0000210C', 393 "Popf;": '\U00002119', 394 "Pr;": '\U00002ABB', 395 "Precedes;": '\U0000227A', 396 "PrecedesEqual;": '\U00002AAF', 397 "PrecedesSlantEqual;": '\U0000227C', 398 "PrecedesTilde;": '\U0000227E', 399 "Prime;": '\U00002033', 400 "Product;": '\U0000220F', 401 "Proportion;": '\U00002237', 402 "Proportional;": '\U0000221D', 403 "Pscr;": '\U0001D4AB', 404 "Psi;": '\U000003A8', 405 "QUOT;": '\U00000022', 406 "Qfr;": '\U0001D514', 407 "Qopf;": '\U0000211A', 408 "Qscr;": '\U0001D4AC', 409 "RBarr;": '\U00002910', 410 "REG;": '\U000000AE', 411 "Racute;": '\U00000154', 412 "Rang;": '\U000027EB', 413 "Rarr;": '\U000021A0', 414 "Rarrtl;": '\U00002916', 415 "Rcaron;": '\U00000158', 416 "Rcedil;": '\U00000156', 417 "Rcy;": '\U00000420', 418 "Re;": '\U0000211C', 419 "ReverseElement;": '\U0000220B', 420 "ReverseEquilibrium;": '\U000021CB', 421 "ReverseUpEquilibrium;": '\U0000296F', 422 "Rfr;": '\U0000211C', 423 "Rho;": '\U000003A1', 424 "RightAngleBracket;": '\U000027E9', 425 "RightArrow;": '\U00002192', 426 "RightArrowBar;": '\U000021E5', 427 "RightArrowLeftArrow;": '\U000021C4', 428 "RightCeiling;": '\U00002309', 429 "RightDoubleBracket;": '\U000027E7', 430 "RightDownTeeVector;": '\U0000295D', 431 "RightDownVector;": '\U000021C2', 432 "RightDownVectorBar;": '\U00002955', 433 "RightFloor;": '\U0000230B', 434 "RightTee;": '\U000022A2', 435 "RightTeeArrow;": '\U000021A6', 436 "RightTeeVector;": '\U0000295B', 437 "RightTriangle;": '\U000022B3', 438 "RightTriangleBar;": '\U000029D0', 439 "RightTriangleEqual;": '\U000022B5', 440 "RightUpDownVector;": '\U0000294F', 441 "RightUpTeeVector;": '\U0000295C', 442 "RightUpVector;": '\U000021BE', 443 "RightUpVectorBar;": '\U00002954', 444 "RightVector;": '\U000021C0', 445 "RightVectorBar;": '\U00002953', 446 "Rightarrow;": '\U000021D2', 447 "Ropf;": '\U0000211D', 448 "RoundImplies;": '\U00002970', 449 "Rrightarrow;": '\U000021DB', 450 "Rscr;": '\U0000211B', 451 "Rsh;": '\U000021B1', 452 "RuleDelayed;": '\U000029F4', 453 "SHCHcy;": '\U00000429', 454 "SHcy;": '\U00000428', 455 "SOFTcy;": '\U0000042C', 456 "Sacute;": '\U0000015A', 457 "Sc;": '\U00002ABC', 458 "Scaron;": '\U00000160', 459 "Scedil;": '\U0000015E', 460 "Scirc;": '\U0000015C', 461 "Scy;": '\U00000421', 462 "Sfr;": '\U0001D516', 463 "ShortDownArrow;": '\U00002193', 464 "ShortLeftArrow;": '\U00002190', 465 "ShortRightArrow;": '\U00002192', 466 "ShortUpArrow;": '\U00002191', 467 "Sigma;": '\U000003A3', 468 "SmallCircle;": '\U00002218', 469 "Sopf;": '\U0001D54A', 470 "Sqrt;": '\U0000221A', 471 "Square;": '\U000025A1', 472 "SquareIntersection;": '\U00002293', 473 "SquareSubset;": '\U0000228F', 474 "SquareSubsetEqual;": '\U00002291', 475 "SquareSuperset;": '\U00002290', 476 "SquareSupersetEqual;": '\U00002292', 477 "SquareUnion;": '\U00002294', 478 "Sscr;": '\U0001D4AE', 479 "Star;": '\U000022C6', 480 "Sub;": '\U000022D0', 481 "Subset;": '\U000022D0', 482 "SubsetEqual;": '\U00002286', 483 "Succeeds;": '\U0000227B', 484 "SucceedsEqual;": '\U00002AB0', 485 "SucceedsSlantEqual;": '\U0000227D', 486 "SucceedsTilde;": '\U0000227F', 487 "SuchThat;": '\U0000220B', 488 "Sum;": '\U00002211', 489 "Sup;": '\U000022D1', 490 "Superset;": '\U00002283', 491 "SupersetEqual;": '\U00002287', 492 "Supset;": '\U000022D1', 493 "THORN;": '\U000000DE', 494 "TRADE;": '\U00002122', 495 "TSHcy;": '\U0000040B', 496 "TScy;": '\U00000426', 497 "Tab;": '\U00000009', 498 "Tau;": '\U000003A4', 499 "Tcaron;": '\U00000164', 500 "Tcedil;": '\U00000162', 501 "Tcy;": '\U00000422', 502 "Tfr;": '\U0001D517', 503 "Therefore;": '\U00002234', 504 "Theta;": '\U00000398', 505 "ThinSpace;": '\U00002009', 506 "Tilde;": '\U0000223C', 507 "TildeEqual;": '\U00002243', 508 "TildeFullEqual;": '\U00002245', 509 "TildeTilde;": '\U00002248', 510 "Topf;": '\U0001D54B', 511 "TripleDot;": '\U000020DB', 512 "Tscr;": '\U0001D4AF', 513 "Tstrok;": '\U00000166', 514 "Uacute;": '\U000000DA', 515 "Uarr;": '\U0000219F', 516 "Uarrocir;": '\U00002949', 517 "Ubrcy;": '\U0000040E', 518 "Ubreve;": '\U0000016C', 519 "Ucirc;": '\U000000DB', 520 "Ucy;": '\U00000423', 521 "Udblac;": '\U00000170', 522 "Ufr;": '\U0001D518', 523 "Ugrave;": '\U000000D9', 524 "Umacr;": '\U0000016A', 525 "UnderBar;": '\U0000005F', 526 "UnderBrace;": '\U000023DF', 527 "UnderBracket;": '\U000023B5', 528 "UnderParenthesis;": '\U000023DD', 529 "Union;": '\U000022C3', 530 "UnionPlus;": '\U0000228E', 531 "Uogon;": '\U00000172', 532 "Uopf;": '\U0001D54C', 533 "UpArrow;": '\U00002191', 534 "UpArrowBar;": '\U00002912', 535 "UpArrowDownArrow;": '\U000021C5', 536 "UpDownArrow;": '\U00002195', 537 "UpEquilibrium;": '\U0000296E', 538 "UpTee;": '\U000022A5', 539 "UpTeeArrow;": '\U000021A5', 540 "Uparrow;": '\U000021D1', 541 "Updownarrow;": '\U000021D5', 542 "UpperLeftArrow;": '\U00002196', 543 "UpperRightArrow;": '\U00002197', 544 "Upsi;": '\U000003D2', 545 "Upsilon;": '\U000003A5', 546 "Uring;": '\U0000016E', 547 "Uscr;": '\U0001D4B0', 548 "Utilde;": '\U00000168', 549 "Uuml;": '\U000000DC', 550 "VDash;": '\U000022AB', 551 "Vbar;": '\U00002AEB', 552 "Vcy;": '\U00000412', 553 "Vdash;": '\U000022A9', 554 "Vdashl;": '\U00002AE6', 555 "Vee;": '\U000022C1', 556 "Verbar;": '\U00002016', 557 "Vert;": '\U00002016', 558 "VerticalBar;": '\U00002223', 559 "VerticalLine;": '\U0000007C', 560 "VerticalSeparator;": '\U00002758', 561 "VerticalTilde;": '\U00002240', 562 "VeryThinSpace;": '\U0000200A', 563 "Vfr;": '\U0001D519', 564 "Vopf;": '\U0001D54D', 565 "Vscr;": '\U0001D4B1', 566 "Vvdash;": '\U000022AA', 567 "Wcirc;": '\U00000174', 568 "Wedge;": '\U000022C0', 569 "Wfr;": '\U0001D51A', 570 "Wopf;": '\U0001D54E', 571 "Wscr;": '\U0001D4B2', 572 "Xfr;": '\U0001D51B', 573 "Xi;": '\U0000039E', 574 "Xopf;": '\U0001D54F', 575 "Xscr;": '\U0001D4B3', 576 "YAcy;": '\U0000042F', 577 "YIcy;": '\U00000407', 578 "YUcy;": '\U0000042E', 579 "Yacute;": '\U000000DD', 580 "Ycirc;": '\U00000176', 581 "Ycy;": '\U0000042B', 582 "Yfr;": '\U0001D51C', 583 "Yopf;": '\U0001D550', 584 "Yscr;": '\U0001D4B4', 585 "Yuml;": '\U00000178', 586 "ZHcy;": '\U00000416', 587 "Zacute;": '\U00000179', 588 "Zcaron;": '\U0000017D', 589 "Zcy;": '\U00000417', 590 "Zdot;": '\U0000017B', 591 "ZeroWidthSpace;": '\U0000200B', 592 "Zeta;": '\U00000396', 593 "Zfr;": '\U00002128', 594 "Zopf;": '\U00002124', 595 "Zscr;": '\U0001D4B5', 596 "aacute;": '\U000000E1', 597 "abreve;": '\U00000103', 598 "ac;": '\U0000223E', 599 "acd;": '\U0000223F', 600 "acirc;": '\U000000E2', 601 "acute;": '\U000000B4', 602 "acy;": '\U00000430', 603 "aelig;": '\U000000E6', 604 "af;": '\U00002061', 605 "afr;": '\U0001D51E', 606 "agrave;": '\U000000E0', 607 "alefsym;": '\U00002135', 608 "aleph;": '\U00002135', 609 "alpha;": '\U000003B1', 610 "amacr;": '\U00000101', 611 "amalg;": '\U00002A3F', 612 "amp;": '\U00000026', 613 "and;": '\U00002227', 614 "andand;": '\U00002A55', 615 "andd;": '\U00002A5C', 616 "andslope;": '\U00002A58', 617 "andv;": '\U00002A5A', 618 "ang;": '\U00002220', 619 "ange;": '\U000029A4', 620 "angle;": '\U00002220', 621 "angmsd;": '\U00002221', 622 "angmsdaa;": '\U000029A8', 623 "angmsdab;": '\U000029A9', 624 "angmsdac;": '\U000029AA', 625 "angmsdad;": '\U000029AB', 626 "angmsdae;": '\U000029AC', 627 "angmsdaf;": '\U000029AD', 628 "angmsdag;": '\U000029AE', 629 "angmsdah;": '\U000029AF', 630 "angrt;": '\U0000221F', 631 "angrtvb;": '\U000022BE', 632 "angrtvbd;": '\U0000299D', 633 "angsph;": '\U00002222', 634 "angst;": '\U000000C5', 635 "angzarr;": '\U0000237C', 636 "aogon;": '\U00000105', 637 "aopf;": '\U0001D552', 638 "ap;": '\U00002248', 639 "apE;": '\U00002A70', 640 "apacir;": '\U00002A6F', 641 "ape;": '\U0000224A', 642 "apid;": '\U0000224B', 643 "apos;": '\U00000027', 644 "approx;": '\U00002248', 645 "approxeq;": '\U0000224A', 646 "aring;": '\U000000E5', 647 "ascr;": '\U0001D4B6', 648 "ast;": '\U0000002A', 649 "asymp;": '\U00002248', 650 "asympeq;": '\U0000224D', 651 "atilde;": '\U000000E3', 652 "auml;": '\U000000E4', 653 "awconint;": '\U00002233', 654 "awint;": '\U00002A11', 655 "bNot;": '\U00002AED', 656 "backcong;": '\U0000224C', 657 "backepsilon;": '\U000003F6', 658 "backprime;": '\U00002035', 659 "backsim;": '\U0000223D', 660 "backsimeq;": '\U000022CD', 661 "barvee;": '\U000022BD', 662 "barwed;": '\U00002305', 663 "barwedge;": '\U00002305', 664 "bbrk;": '\U000023B5', 665 "bbrktbrk;": '\U000023B6', 666 "bcong;": '\U0000224C', 667 "bcy;": '\U00000431', 668 "bdquo;": '\U0000201E', 669 "becaus;": '\U00002235', 670 "because;": '\U00002235', 671 "bemptyv;": '\U000029B0', 672 "bepsi;": '\U000003F6', 673 "bernou;": '\U0000212C', 674 "beta;": '\U000003B2', 675 "beth;": '\U00002136', 676 "between;": '\U0000226C', 677 "bfr;": '\U0001D51F', 678 "bigcap;": '\U000022C2', 679 "bigcirc;": '\U000025EF', 680 "bigcup;": '\U000022C3', 681 "bigodot;": '\U00002A00', 682 "bigoplus;": '\U00002A01', 683 "bigotimes;": '\U00002A02', 684 "bigsqcup;": '\U00002A06', 685 "bigstar;": '\U00002605', 686 "bigtriangledown;": '\U000025BD', 687 "bigtriangleup;": '\U000025B3', 688 "biguplus;": '\U00002A04', 689 "bigvee;": '\U000022C1', 690 "bigwedge;": '\U000022C0', 691 "bkarow;": '\U0000290D', 692 "blacklozenge;": '\U000029EB', 693 "blacksquare;": '\U000025AA', 694 "blacktriangle;": '\U000025B4', 695 "blacktriangledown;": '\U000025BE', 696 "blacktriangleleft;": '\U000025C2', 697 "blacktriangleright;": '\U000025B8', 698 "blank;": '\U00002423', 699 "blk12;": '\U00002592', 700 "blk14;": '\U00002591', 701 "blk34;": '\U00002593', 702 "block;": '\U00002588', 703 "bnot;": '\U00002310', 704 "bopf;": '\U0001D553', 705 "bot;": '\U000022A5', 706 "bottom;": '\U000022A5', 707 "bowtie;": '\U000022C8', 708 "boxDL;": '\U00002557', 709 "boxDR;": '\U00002554', 710 "boxDl;": '\U00002556', 711 "boxDr;": '\U00002553', 712 "boxH;": '\U00002550', 713 "boxHD;": '\U00002566', 714 "boxHU;": '\U00002569', 715 "boxHd;": '\U00002564', 716 "boxHu;": '\U00002567', 717 "boxUL;": '\U0000255D', 718 "boxUR;": '\U0000255A', 719 "boxUl;": '\U0000255C', 720 "boxUr;": '\U00002559', 721 "boxV;": '\U00002551', 722 "boxVH;": '\U0000256C', 723 "boxVL;": '\U00002563', 724 "boxVR;": '\U00002560', 725 "boxVh;": '\U0000256B', 726 "boxVl;": '\U00002562', 727 "boxVr;": '\U0000255F', 728 "boxbox;": '\U000029C9', 729 "boxdL;": '\U00002555', 730 "boxdR;": '\U00002552', 731 "boxdl;": '\U00002510', 732 "boxdr;": '\U0000250C', 733 "boxh;": '\U00002500', 734 "boxhD;": '\U00002565', 735 "boxhU;": '\U00002568', 736 "boxhd;": '\U0000252C', 737 "boxhu;": '\U00002534', 738 "boxminus;": '\U0000229F', 739 "boxplus;": '\U0000229E', 740 "boxtimes;": '\U000022A0', 741 "boxuL;": '\U0000255B', 742 "boxuR;": '\U00002558', 743 "boxul;": '\U00002518', 744 "boxur;": '\U00002514', 745 "boxv;": '\U00002502', 746 "boxvH;": '\U0000256A', 747 "boxvL;": '\U00002561', 748 "boxvR;": '\U0000255E', 749 "boxvh;": '\U0000253C', 750 "boxvl;": '\U00002524', 751 "boxvr;": '\U0000251C', 752 "bprime;": '\U00002035', 753 "breve;": '\U000002D8', 754 "brvbar;": '\U000000A6', 755 "bscr;": '\U0001D4B7', 756 "bsemi;": '\U0000204F', 757 "bsim;": '\U0000223D', 758 "bsime;": '\U000022CD', 759 "bsol;": '\U0000005C', 760 "bsolb;": '\U000029C5', 761 "bsolhsub;": '\U000027C8', 762 "bull;": '\U00002022', 763 "bullet;": '\U00002022', 764 "bump;": '\U0000224E', 765 "bumpE;": '\U00002AAE', 766 "bumpe;": '\U0000224F', 767 "bumpeq;": '\U0000224F', 768 "cacute;": '\U00000107', 769 "cap;": '\U00002229', 770 "capand;": '\U00002A44', 771 "capbrcup;": '\U00002A49', 772 "capcap;": '\U00002A4B', 773 "capcup;": '\U00002A47', 774 "capdot;": '\U00002A40', 775 "caret;": '\U00002041', 776 "caron;": '\U000002C7', 777 "ccaps;": '\U00002A4D', 778 "ccaron;": '\U0000010D', 779 "ccedil;": '\U000000E7', 780 "ccirc;": '\U00000109', 781 "ccups;": '\U00002A4C', 782 "ccupssm;": '\U00002A50', 783 "cdot;": '\U0000010B', 784 "cedil;": '\U000000B8', 785 "cemptyv;": '\U000029B2', 786 "cent;": '\U000000A2', 787 "centerdot;": '\U000000B7', 788 "cfr;": '\U0001D520', 789 "chcy;": '\U00000447', 790 "check;": '\U00002713', 791 "checkmark;": '\U00002713', 792 "chi;": '\U000003C7', 793 "cir;": '\U000025CB', 794 "cirE;": '\U000029C3', 795 "circ;": '\U000002C6', 796 "circeq;": '\U00002257', 797 "circlearrowleft;": '\U000021BA', 798 "circlearrowright;": '\U000021BB', 799 "circledR;": '\U000000AE', 800 "circledS;": '\U000024C8', 801 "circledast;": '\U0000229B', 802 "circledcirc;": '\U0000229A', 803 "circleddash;": '\U0000229D', 804 "cire;": '\U00002257', 805 "cirfnint;": '\U00002A10', 806 "cirmid;": '\U00002AEF', 807 "cirscir;": '\U000029C2', 808 "clubs;": '\U00002663', 809 "clubsuit;": '\U00002663', 810 "colon;": '\U0000003A', 811 "colone;": '\U00002254', 812 "coloneq;": '\U00002254', 813 "comma;": '\U0000002C', 814 "commat;": '\U00000040', 815 "comp;": '\U00002201', 816 "compfn;": '\U00002218', 817 "complement;": '\U00002201', 818 "complexes;": '\U00002102', 819 "cong;": '\U00002245', 820 "congdot;": '\U00002A6D', 821 "conint;": '\U0000222E', 822 "copf;": '\U0001D554', 823 "coprod;": '\U00002210', 824 "copy;": '\U000000A9', 825 "copysr;": '\U00002117', 826 "crarr;": '\U000021B5', 827 "cross;": '\U00002717', 828 "cscr;": '\U0001D4B8', 829 "csub;": '\U00002ACF', 830 "csube;": '\U00002AD1', 831 "csup;": '\U00002AD0', 832 "csupe;": '\U00002AD2', 833 "ctdot;": '\U000022EF', 834 "cudarrl;": '\U00002938', 835 "cudarrr;": '\U00002935', 836 "cuepr;": '\U000022DE', 837 "cuesc;": '\U000022DF', 838 "cularr;": '\U000021B6', 839 "cularrp;": '\U0000293D', 840 "cup;": '\U0000222A', 841 "cupbrcap;": '\U00002A48', 842 "cupcap;": '\U00002A46', 843 "cupcup;": '\U00002A4A', 844 "cupdot;": '\U0000228D', 845 "cupor;": '\U00002A45', 846 "curarr;": '\U000021B7', 847 "curarrm;": '\U0000293C', 848 "curlyeqprec;": '\U000022DE', 849 "curlyeqsucc;": '\U000022DF', 850 "curlyvee;": '\U000022CE', 851 "curlywedge;": '\U000022CF', 852 "curren;": '\U000000A4', 853 "curvearrowleft;": '\U000021B6', 854 "curvearrowright;": '\U000021B7', 855 "cuvee;": '\U000022CE', 856 "cuwed;": '\U000022CF', 857 "cwconint;": '\U00002232', 858 "cwint;": '\U00002231', 859 "cylcty;": '\U0000232D', 860 "dArr;": '\U000021D3', 861 "dHar;": '\U00002965', 862 "dagger;": '\U00002020', 863 "daleth;": '\U00002138', 864 "darr;": '\U00002193', 865 "dash;": '\U00002010', 866 "dashv;": '\U000022A3', 867 "dbkarow;": '\U0000290F', 868 "dblac;": '\U000002DD', 869 "dcaron;": '\U0000010F', 870 "dcy;": '\U00000434', 871 "dd;": '\U00002146', 872 "ddagger;": '\U00002021', 873 "ddarr;": '\U000021CA', 874 "ddotseq;": '\U00002A77', 875 "deg;": '\U000000B0', 876 "delta;": '\U000003B4', 877 "demptyv;": '\U000029B1', 878 "dfisht;": '\U0000297F', 879 "dfr;": '\U0001D521', 880 "dharl;": '\U000021C3', 881 "dharr;": '\U000021C2', 882 "diam;": '\U000022C4', 883 "diamond;": '\U000022C4', 884 "diamondsuit;": '\U00002666', 885 "diams;": '\U00002666', 886 "die;": '\U000000A8', 887 "digamma;": '\U000003DD', 888 "disin;": '\U000022F2', 889 "div;": '\U000000F7', 890 "divide;": '\U000000F7', 891 "divideontimes;": '\U000022C7', 892 "divonx;": '\U000022C7', 893 "djcy;": '\U00000452', 894 "dlcorn;": '\U0000231E', 895 "dlcrop;": '\U0000230D', 896 "dollar;": '\U00000024', 897 "dopf;": '\U0001D555', 898 "dot;": '\U000002D9', 899 "doteq;": '\U00002250', 900 "doteqdot;": '\U00002251', 901 "dotminus;": '\U00002238', 902 "dotplus;": '\U00002214', 903 "dotsquare;": '\U000022A1', 904 "doublebarwedge;": '\U00002306', 905 "downarrow;": '\U00002193', 906 "downdownarrows;": '\U000021CA', 907 "downharpoonleft;": '\U000021C3', 908 "downharpoonright;": '\U000021C2', 909 "drbkarow;": '\U00002910', 910 "drcorn;": '\U0000231F', 911 "drcrop;": '\U0000230C', 912 "dscr;": '\U0001D4B9', 913 "dscy;": '\U00000455', 914 "dsol;": '\U000029F6', 915 "dstrok;": '\U00000111', 916 "dtdot;": '\U000022F1', 917 "dtri;": '\U000025BF', 918 "dtrif;": '\U000025BE', 919 "duarr;": '\U000021F5', 920 "duhar;": '\U0000296F', 921 "dwangle;": '\U000029A6', 922 "dzcy;": '\U0000045F', 923 "dzigrarr;": '\U000027FF', 924 "eDDot;": '\U00002A77', 925 "eDot;": '\U00002251', 926 "eacute;": '\U000000E9', 927 "easter;": '\U00002A6E', 928 "ecaron;": '\U0000011B', 929 "ecir;": '\U00002256', 930 "ecirc;": '\U000000EA', 931 "ecolon;": '\U00002255', 932 "ecy;": '\U0000044D', 933 "edot;": '\U00000117', 934 "ee;": '\U00002147', 935 "efDot;": '\U00002252', 936 "efr;": '\U0001D522', 937 "eg;": '\U00002A9A', 938 "egrave;": '\U000000E8', 939 "egs;": '\U00002A96', 940 "egsdot;": '\U00002A98', 941 "el;": '\U00002A99', 942 "elinters;": '\U000023E7', 943 "ell;": '\U00002113', 944 "els;": '\U00002A95', 945 "elsdot;": '\U00002A97', 946 "emacr;": '\U00000113', 947 "empty;": '\U00002205', 948 "emptyset;": '\U00002205', 949 "emptyv;": '\U00002205', 950 "emsp;": '\U00002003', 951 "emsp13;": '\U00002004', 952 "emsp14;": '\U00002005', 953 "eng;": '\U0000014B', 954 "ensp;": '\U00002002', 955 "eogon;": '\U00000119', 956 "eopf;": '\U0001D556', 957 "epar;": '\U000022D5', 958 "eparsl;": '\U000029E3', 959 "eplus;": '\U00002A71', 960 "epsi;": '\U000003B5', 961 "epsilon;": '\U000003B5', 962 "epsiv;": '\U000003F5', 963 "eqcirc;": '\U00002256', 964 "eqcolon;": '\U00002255', 965 "eqsim;": '\U00002242', 966 "eqslantgtr;": '\U00002A96', 967 "eqslantless;": '\U00002A95', 968 "equals;": '\U0000003D', 969 "equest;": '\U0000225F', 970 "equiv;": '\U00002261', 971 "equivDD;": '\U00002A78', 972 "eqvparsl;": '\U000029E5', 973 "erDot;": '\U00002253', 974 "erarr;": '\U00002971', 975 "escr;": '\U0000212F', 976 "esdot;": '\U00002250', 977 "esim;": '\U00002242', 978 "eta;": '\U000003B7', 979 "eth;": '\U000000F0', 980 "euml;": '\U000000EB', 981 "euro;": '\U000020AC', 982 "excl;": '\U00000021', 983 "exist;": '\U00002203', 984 "expectation;": '\U00002130', 985 "exponentiale;": '\U00002147', 986 "fallingdotseq;": '\U00002252', 987 "fcy;": '\U00000444', 988 "female;": '\U00002640', 989 "ffilig;": '\U0000FB03', 990 "fflig;": '\U0000FB00', 991 "ffllig;": '\U0000FB04', 992 "ffr;": '\U0001D523', 993 "filig;": '\U0000FB01', 994 "flat;": '\U0000266D', 995 "fllig;": '\U0000FB02', 996 "fltns;": '\U000025B1', 997 "fnof;": '\U00000192', 998 "fopf;": '\U0001D557', 999 "forall;": '\U00002200', 1000 "fork;": '\U000022D4', 1001 "forkv;": '\U00002AD9', 1002 "fpartint;": '\U00002A0D', 1003 "frac12;": '\U000000BD', 1004 "frac13;": '\U00002153', 1005 "frac14;": '\U000000BC', 1006 "frac15;": '\U00002155', 1007 "frac16;": '\U00002159', 1008 "frac18;": '\U0000215B', 1009 "frac23;": '\U00002154', 1010 "frac25;": '\U00002156', 1011 "frac34;": '\U000000BE', 1012 "frac35;": '\U00002157', 1013 "frac38;": '\U0000215C', 1014 "frac45;": '\U00002158', 1015 "frac56;": '\U0000215A', 1016 "frac58;": '\U0000215D', 1017 "frac78;": '\U0000215E', 1018 "frasl;": '\U00002044', 1019 "frown;": '\U00002322', 1020 "fscr;": '\U0001D4BB', 1021 "gE;": '\U00002267', 1022 "gEl;": '\U00002A8C', 1023 "gacute;": '\U000001F5', 1024 "gamma;": '\U000003B3', 1025 "gammad;": '\U000003DD', 1026 "gap;": '\U00002A86', 1027 "gbreve;": '\U0000011F', 1028 "gcirc;": '\U0000011D', 1029 "gcy;": '\U00000433', 1030 "gdot;": '\U00000121', 1031 "ge;": '\U00002265', 1032 "gel;": '\U000022DB', 1033 "geq;": '\U00002265', 1034 "geqq;": '\U00002267', 1035 "geqslant;": '\U00002A7E', 1036 "ges;": '\U00002A7E', 1037 "gescc;": '\U00002AA9', 1038 "gesdot;": '\U00002A80', 1039 "gesdoto;": '\U00002A82', 1040 "gesdotol;": '\U00002A84', 1041 "gesles;": '\U00002A94', 1042 "gfr;": '\U0001D524', 1043 "gg;": '\U0000226B', 1044 "ggg;": '\U000022D9', 1045 "gimel;": '\U00002137', 1046 "gjcy;": '\U00000453', 1047 "gl;": '\U00002277', 1048 "glE;": '\U00002A92', 1049 "gla;": '\U00002AA5', 1050 "glj;": '\U00002AA4', 1051 "gnE;": '\U00002269', 1052 "gnap;": '\U00002A8A', 1053 "gnapprox;": '\U00002A8A', 1054 "gne;": '\U00002A88', 1055 "gneq;": '\U00002A88', 1056 "gneqq;": '\U00002269', 1057 "gnsim;": '\U000022E7', 1058 "gopf;": '\U0001D558', 1059 "grave;": '\U00000060', 1060 "gscr;": '\U0000210A', 1061 "gsim;": '\U00002273', 1062 "gsime;": '\U00002A8E', 1063 "gsiml;": '\U00002A90', 1064 "gt;": '\U0000003E', 1065 "gtcc;": '\U00002AA7', 1066 "gtcir;": '\U00002A7A', 1067 "gtdot;": '\U000022D7', 1068 "gtlPar;": '\U00002995', 1069 "gtquest;": '\U00002A7C', 1070 "gtrapprox;": '\U00002A86', 1071 "gtrarr;": '\U00002978', 1072 "gtrdot;": '\U000022D7', 1073 "gtreqless;": '\U000022DB', 1074 "gtreqqless;": '\U00002A8C', 1075 "gtrless;": '\U00002277', 1076 "gtrsim;": '\U00002273', 1077 "hArr;": '\U000021D4', 1078 "hairsp;": '\U0000200A', 1079 "half;": '\U000000BD', 1080 "hamilt;": '\U0000210B', 1081 "hardcy;": '\U0000044A', 1082 "harr;": '\U00002194', 1083 "harrcir;": '\U00002948', 1084 "harrw;": '\U000021AD', 1085 "hbar;": '\U0000210F', 1086 "hcirc;": '\U00000125', 1087 "hearts;": '\U00002665', 1088 "heartsuit;": '\U00002665', 1089 "hellip;": '\U00002026', 1090 "hercon;": '\U000022B9', 1091 "hfr;": '\U0001D525', 1092 "hksearow;": '\U00002925', 1093 "hkswarow;": '\U00002926', 1094 "hoarr;": '\U000021FF', 1095 "homtht;": '\U0000223B', 1096 "hookleftarrow;": '\U000021A9', 1097 "hookrightarrow;": '\U000021AA', 1098 "hopf;": '\U0001D559', 1099 "horbar;": '\U00002015', 1100 "hscr;": '\U0001D4BD', 1101 "hslash;": '\U0000210F', 1102 "hstrok;": '\U00000127', 1103 "hybull;": '\U00002043', 1104 "hyphen;": '\U00002010', 1105 "iacute;": '\U000000ED', 1106 "ic;": '\U00002063', 1107 "icirc;": '\U000000EE', 1108 "icy;": '\U00000438', 1109 "iecy;": '\U00000435', 1110 "iexcl;": '\U000000A1', 1111 "iff;": '\U000021D4', 1112 "ifr;": '\U0001D526', 1113 "igrave;": '\U000000EC', 1114 "ii;": '\U00002148', 1115 "iiiint;": '\U00002A0C', 1116 "iiint;": '\U0000222D', 1117 "iinfin;": '\U000029DC', 1118 "iiota;": '\U00002129', 1119 "ijlig;": '\U00000133', 1120 "imacr;": '\U0000012B', 1121 "image;": '\U00002111', 1122 "imagline;": '\U00002110', 1123 "imagpart;": '\U00002111', 1124 "imath;": '\U00000131', 1125 "imof;": '\U000022B7', 1126 "imped;": '\U000001B5', 1127 "in;": '\U00002208', 1128 "incare;": '\U00002105', 1129 "infin;": '\U0000221E', 1130 "infintie;": '\U000029DD', 1131 "inodot;": '\U00000131', 1132 "int;": '\U0000222B', 1133 "intcal;": '\U000022BA', 1134 "integers;": '\U00002124', 1135 "intercal;": '\U000022BA', 1136 "intlarhk;": '\U00002A17', 1137 "intprod;": '\U00002A3C', 1138 "iocy;": '\U00000451', 1139 "iogon;": '\U0000012F', 1140 "iopf;": '\U0001D55A', 1141 "iota;": '\U000003B9', 1142 "iprod;": '\U00002A3C', 1143 "iquest;": '\U000000BF', 1144 "iscr;": '\U0001D4BE', 1145 "isin;": '\U00002208', 1146 "isinE;": '\U000022F9', 1147 "isindot;": '\U000022F5', 1148 "isins;": '\U000022F4', 1149 "isinsv;": '\U000022F3', 1150 "isinv;": '\U00002208', 1151 "it;": '\U00002062', 1152 "itilde;": '\U00000129', 1153 "iukcy;": '\U00000456', 1154 "iuml;": '\U000000EF', 1155 "jcirc;": '\U00000135', 1156 "jcy;": '\U00000439', 1157 "jfr;": '\U0001D527', 1158 "jmath;": '\U00000237', 1159 "jopf;": '\U0001D55B', 1160 "jscr;": '\U0001D4BF', 1161 "jsercy;": '\U00000458', 1162 "jukcy;": '\U00000454', 1163 "kappa;": '\U000003BA', 1164 "kappav;": '\U000003F0', 1165 "kcedil;": '\U00000137', 1166 "kcy;": '\U0000043A', 1167 "kfr;": '\U0001D528', 1168 "kgreen;": '\U00000138', 1169 "khcy;": '\U00000445', 1170 "kjcy;": '\U0000045C', 1171 "kopf;": '\U0001D55C', 1172 "kscr;": '\U0001D4C0', 1173 "lAarr;": '\U000021DA', 1174 "lArr;": '\U000021D0', 1175 "lAtail;": '\U0000291B', 1176 "lBarr;": '\U0000290E', 1177 "lE;": '\U00002266', 1178 "lEg;": '\U00002A8B', 1179 "lHar;": '\U00002962', 1180 "lacute;": '\U0000013A', 1181 "laemptyv;": '\U000029B4', 1182 "lagran;": '\U00002112', 1183 "lambda;": '\U000003BB', 1184 "lang;": '\U000027E8', 1185 "langd;": '\U00002991', 1186 "langle;": '\U000027E8', 1187 "lap;": '\U00002A85', 1188 "laquo;": '\U000000AB', 1189 "larr;": '\U00002190', 1190 "larrb;": '\U000021E4', 1191 "larrbfs;": '\U0000291F', 1192 "larrfs;": '\U0000291D', 1193 "larrhk;": '\U000021A9', 1194 "larrlp;": '\U000021AB', 1195 "larrpl;": '\U00002939', 1196 "larrsim;": '\U00002973', 1197 "larrtl;": '\U000021A2', 1198 "lat;": '\U00002AAB', 1199 "latail;": '\U00002919', 1200 "late;": '\U00002AAD', 1201 "lbarr;": '\U0000290C', 1202 "lbbrk;": '\U00002772', 1203 "lbrace;": '\U0000007B', 1204 "lbrack;": '\U0000005B', 1205 "lbrke;": '\U0000298B', 1206 "lbrksld;": '\U0000298F', 1207 "lbrkslu;": '\U0000298D', 1208 "lcaron;": '\U0000013E', 1209 "lcedil;": '\U0000013C', 1210 "lceil;": '\U00002308', 1211 "lcub;": '\U0000007B', 1212 "lcy;": '\U0000043B', 1213 "ldca;": '\U00002936', 1214 "ldquo;": '\U0000201C', 1215 "ldquor;": '\U0000201E', 1216 "ldrdhar;": '\U00002967', 1217 "ldrushar;": '\U0000294B', 1218 "ldsh;": '\U000021B2', 1219 "le;": '\U00002264', 1220 "leftarrow;": '\U00002190', 1221 "leftarrowtail;": '\U000021A2', 1222 "leftharpoondown;": '\U000021BD', 1223 "leftharpoonup;": '\U000021BC', 1224 "leftleftarrows;": '\U000021C7', 1225 "leftrightarrow;": '\U00002194', 1226 "leftrightarrows;": '\U000021C6', 1227 "leftrightharpoons;": '\U000021CB', 1228 "leftrightsquigarrow;": '\U000021AD', 1229 "leftthreetimes;": '\U000022CB', 1230 "leg;": '\U000022DA', 1231 "leq;": '\U00002264', 1232 "leqq;": '\U00002266', 1233 "leqslant;": '\U00002A7D', 1234 "les;": '\U00002A7D', 1235 "lescc;": '\U00002AA8', 1236 "lesdot;": '\U00002A7F', 1237 "lesdoto;": '\U00002A81', 1238 "lesdotor;": '\U00002A83', 1239 "lesges;": '\U00002A93', 1240 "lessapprox;": '\U00002A85', 1241 "lessdot;": '\U000022D6', 1242 "lesseqgtr;": '\U000022DA', 1243 "lesseqqgtr;": '\U00002A8B', 1244 "lessgtr;": '\U00002276', 1245 "lesssim;": '\U00002272', 1246 "lfisht;": '\U0000297C', 1247 "lfloor;": '\U0000230A', 1248 "lfr;": '\U0001D529', 1249 "lg;": '\U00002276', 1250 "lgE;": '\U00002A91', 1251 "lhard;": '\U000021BD', 1252 "lharu;": '\U000021BC', 1253 "lharul;": '\U0000296A', 1254 "lhblk;": '\U00002584', 1255 "ljcy;": '\U00000459', 1256 "ll;": '\U0000226A', 1257 "llarr;": '\U000021C7', 1258 "llcorner;": '\U0000231E', 1259 "llhard;": '\U0000296B', 1260 "lltri;": '\U000025FA', 1261 "lmidot;": '\U00000140', 1262 "lmoust;": '\U000023B0', 1263 "lmoustache;": '\U000023B0', 1264 "lnE;": '\U00002268', 1265 "lnap;": '\U00002A89', 1266 "lnapprox;": '\U00002A89', 1267 "lne;": '\U00002A87', 1268 "lneq;": '\U00002A87', 1269 "lneqq;": '\U00002268', 1270 "lnsim;": '\U000022E6', 1271 "loang;": '\U000027EC', 1272 "loarr;": '\U000021FD', 1273 "lobrk;": '\U000027E6', 1274 "longleftarrow;": '\U000027F5', 1275 "longleftrightarrow;": '\U000027F7', 1276 "longmapsto;": '\U000027FC', 1277 "longrightarrow;": '\U000027F6', 1278 "looparrowleft;": '\U000021AB', 1279 "looparrowright;": '\U000021AC', 1280 "lopar;": '\U00002985', 1281 "lopf;": '\U0001D55D', 1282 "loplus;": '\U00002A2D', 1283 "lotimes;": '\U00002A34', 1284 "lowast;": '\U00002217', 1285 "lowbar;": '\U0000005F', 1286 "loz;": '\U000025CA', 1287 "lozenge;": '\U000025CA', 1288 "lozf;": '\U000029EB', 1289 "lpar;": '\U00000028', 1290 "lparlt;": '\U00002993', 1291 "lrarr;": '\U000021C6', 1292 "lrcorner;": '\U0000231F', 1293 "lrhar;": '\U000021CB', 1294 "lrhard;": '\U0000296D', 1295 "lrm;": '\U0000200E', 1296 "lrtri;": '\U000022BF', 1297 "lsaquo;": '\U00002039', 1298 "lscr;": '\U0001D4C1', 1299 "lsh;": '\U000021B0', 1300 "lsim;": '\U00002272', 1301 "lsime;": '\U00002A8D', 1302 "lsimg;": '\U00002A8F', 1303 "lsqb;": '\U0000005B', 1304 "lsquo;": '\U00002018', 1305 "lsquor;": '\U0000201A', 1306 "lstrok;": '\U00000142', 1307 "lt;": '\U0000003C', 1308 "ltcc;": '\U00002AA6', 1309 "ltcir;": '\U00002A79', 1310 "ltdot;": '\U000022D6', 1311 "lthree;": '\U000022CB', 1312 "ltimes;": '\U000022C9', 1313 "ltlarr;": '\U00002976', 1314 "ltquest;": '\U00002A7B', 1315 "ltrPar;": '\U00002996', 1316 "ltri;": '\U000025C3', 1317 "ltrie;": '\U000022B4', 1318 "ltrif;": '\U000025C2', 1319 "lurdshar;": '\U0000294A', 1320 "luruhar;": '\U00002966', 1321 "mDDot;": '\U0000223A', 1322 "macr;": '\U000000AF', 1323 "male;": '\U00002642', 1324 "malt;": '\U00002720', 1325 "maltese;": '\U00002720', 1326 "map;": '\U000021A6', 1327 "mapsto;": '\U000021A6', 1328 "mapstodown;": '\U000021A7', 1329 "mapstoleft;": '\U000021A4', 1330 "mapstoup;": '\U000021A5', 1331 "marker;": '\U000025AE', 1332 "mcomma;": '\U00002A29', 1333 "mcy;": '\U0000043C', 1334 "mdash;": '\U00002014', 1335 "measuredangle;": '\U00002221', 1336 "mfr;": '\U0001D52A', 1337 "mho;": '\U00002127', 1338 "micro;": '\U000000B5', 1339 "mid;": '\U00002223', 1340 "midast;": '\U0000002A', 1341 "midcir;": '\U00002AF0', 1342 "middot;": '\U000000B7', 1343 "minus;": '\U00002212', 1344 "minusb;": '\U0000229F', 1345 "minusd;": '\U00002238', 1346 "minusdu;": '\U00002A2A', 1347 "mlcp;": '\U00002ADB', 1348 "mldr;": '\U00002026', 1349 "mnplus;": '\U00002213', 1350 "models;": '\U000022A7', 1351 "mopf;": '\U0001D55E', 1352 "mp;": '\U00002213', 1353 "mscr;": '\U0001D4C2', 1354 "mstpos;": '\U0000223E', 1355 "mu;": '\U000003BC', 1356 "multimap;": '\U000022B8', 1357 "mumap;": '\U000022B8', 1358 "nLeftarrow;": '\U000021CD', 1359 "nLeftrightarrow;": '\U000021CE', 1360 "nRightarrow;": '\U000021CF', 1361 "nVDash;": '\U000022AF', 1362 "nVdash;": '\U000022AE', 1363 "nabla;": '\U00002207', 1364 "nacute;": '\U00000144', 1365 "nap;": '\U00002249', 1366 "napos;": '\U00000149', 1367 "napprox;": '\U00002249', 1368 "natur;": '\U0000266E', 1369 "natural;": '\U0000266E', 1370 "naturals;": '\U00002115', 1371 "nbsp;": '\U000000A0', 1372 "ncap;": '\U00002A43', 1373 "ncaron;": '\U00000148', 1374 "ncedil;": '\U00000146', 1375 "ncong;": '\U00002247', 1376 "ncup;": '\U00002A42', 1377 "ncy;": '\U0000043D', 1378 "ndash;": '\U00002013', 1379 "ne;": '\U00002260', 1380 "neArr;": '\U000021D7', 1381 "nearhk;": '\U00002924', 1382 "nearr;": '\U00002197', 1383 "nearrow;": '\U00002197', 1384 "nequiv;": '\U00002262', 1385 "nesear;": '\U00002928', 1386 "nexist;": '\U00002204', 1387 "nexists;": '\U00002204', 1388 "nfr;": '\U0001D52B', 1389 "nge;": '\U00002271', 1390 "ngeq;": '\U00002271', 1391 "ngsim;": '\U00002275', 1392 "ngt;": '\U0000226F', 1393 "ngtr;": '\U0000226F', 1394 "nhArr;": '\U000021CE', 1395 "nharr;": '\U000021AE', 1396 "nhpar;": '\U00002AF2', 1397 "ni;": '\U0000220B', 1398 "nis;": '\U000022FC', 1399 "nisd;": '\U000022FA', 1400 "niv;": '\U0000220B', 1401 "njcy;": '\U0000045A', 1402 "nlArr;": '\U000021CD', 1403 "nlarr;": '\U0000219A', 1404 "nldr;": '\U00002025', 1405 "nle;": '\U00002270', 1406 "nleftarrow;": '\U0000219A', 1407 "nleftrightarrow;": '\U000021AE', 1408 "nleq;": '\U00002270', 1409 "nless;": '\U0000226E', 1410 "nlsim;": '\U00002274', 1411 "nlt;": '\U0000226E', 1412 "nltri;": '\U000022EA', 1413 "nltrie;": '\U000022EC', 1414 "nmid;": '\U00002224', 1415 "nopf;": '\U0001D55F', 1416 "not;": '\U000000AC', 1417 "notin;": '\U00002209', 1418 "notinva;": '\U00002209', 1419 "notinvb;": '\U000022F7', 1420 "notinvc;": '\U000022F6', 1421 "notni;": '\U0000220C', 1422 "notniva;": '\U0000220C', 1423 "notnivb;": '\U000022FE', 1424 "notnivc;": '\U000022FD', 1425 "npar;": '\U00002226', 1426 "nparallel;": '\U00002226', 1427 "npolint;": '\U00002A14', 1428 "npr;": '\U00002280', 1429 "nprcue;": '\U000022E0', 1430 "nprec;": '\U00002280', 1431 "nrArr;": '\U000021CF', 1432 "nrarr;": '\U0000219B', 1433 "nrightarrow;": '\U0000219B', 1434 "nrtri;": '\U000022EB', 1435 "nrtrie;": '\U000022ED', 1436 "nsc;": '\U00002281', 1437 "nsccue;": '\U000022E1', 1438 "nscr;": '\U0001D4C3', 1439 "nshortmid;": '\U00002224', 1440 "nshortparallel;": '\U00002226', 1441 "nsim;": '\U00002241', 1442 "nsime;": '\U00002244', 1443 "nsimeq;": '\U00002244', 1444 "nsmid;": '\U00002224', 1445 "nspar;": '\U00002226', 1446 "nsqsube;": '\U000022E2', 1447 "nsqsupe;": '\U000022E3', 1448 "nsub;": '\U00002284', 1449 "nsube;": '\U00002288', 1450 "nsubseteq;": '\U00002288', 1451 "nsucc;": '\U00002281', 1452 "nsup;": '\U00002285', 1453 "nsupe;": '\U00002289', 1454 "nsupseteq;": '\U00002289', 1455 "ntgl;": '\U00002279', 1456 "ntilde;": '\U000000F1', 1457 "ntlg;": '\U00002278', 1458 "ntriangleleft;": '\U000022EA', 1459 "ntrianglelefteq;": '\U000022EC', 1460 "ntriangleright;": '\U000022EB', 1461 "ntrianglerighteq;": '\U000022ED', 1462 "nu;": '\U000003BD', 1463 "num;": '\U00000023', 1464 "numero;": '\U00002116', 1465 "numsp;": '\U00002007', 1466 "nvDash;": '\U000022AD', 1467 "nvHarr;": '\U00002904', 1468 "nvdash;": '\U000022AC', 1469 "nvinfin;": '\U000029DE', 1470 "nvlArr;": '\U00002902', 1471 "nvrArr;": '\U00002903', 1472 "nwArr;": '\U000021D6', 1473 "nwarhk;": '\U00002923', 1474 "nwarr;": '\U00002196', 1475 "nwarrow;": '\U00002196', 1476 "nwnear;": '\U00002927', 1477 "oS;": '\U000024C8', 1478 "oacute;": '\U000000F3', 1479 "oast;": '\U0000229B', 1480 "ocir;": '\U0000229A', 1481 "ocirc;": '\U000000F4', 1482 "ocy;": '\U0000043E', 1483 "odash;": '\U0000229D', 1484 "odblac;": '\U00000151', 1485 "odiv;": '\U00002A38', 1486 "odot;": '\U00002299', 1487 "odsold;": '\U000029BC', 1488 "oelig;": '\U00000153', 1489 "ofcir;": '\U000029BF', 1490 "ofr;": '\U0001D52C', 1491 "ogon;": '\U000002DB', 1492 "ograve;": '\U000000F2', 1493 "ogt;": '\U000029C1', 1494 "ohbar;": '\U000029B5', 1495 "ohm;": '\U000003A9', 1496 "oint;": '\U0000222E', 1497 "olarr;": '\U000021BA', 1498 "olcir;": '\U000029BE', 1499 "olcross;": '\U000029BB', 1500 "oline;": '\U0000203E', 1501 "olt;": '\U000029C0', 1502 "omacr;": '\U0000014D', 1503 "omega;": '\U000003C9', 1504 "omicron;": '\U000003BF', 1505 "omid;": '\U000029B6', 1506 "ominus;": '\U00002296', 1507 "oopf;": '\U0001D560', 1508 "opar;": '\U000029B7', 1509 "operp;": '\U000029B9', 1510 "oplus;": '\U00002295', 1511 "or;": '\U00002228', 1512 "orarr;": '\U000021BB', 1513 "ord;": '\U00002A5D', 1514 "order;": '\U00002134', 1515 "orderof;": '\U00002134', 1516 "ordf;": '\U000000AA', 1517 "ordm;": '\U000000BA', 1518 "origof;": '\U000022B6', 1519 "oror;": '\U00002A56', 1520 "orslope;": '\U00002A57', 1521 "orv;": '\U00002A5B', 1522 "oscr;": '\U00002134', 1523 "oslash;": '\U000000F8', 1524 "osol;": '\U00002298', 1525 "otilde;": '\U000000F5', 1526 "otimes;": '\U00002297', 1527 "otimesas;": '\U00002A36', 1528 "ouml;": '\U000000F6', 1529 "ovbar;": '\U0000233D', 1530 "par;": '\U00002225', 1531 "para;": '\U000000B6', 1532 "parallel;": '\U00002225', 1533 "parsim;": '\U00002AF3', 1534 "parsl;": '\U00002AFD', 1535 "part;": '\U00002202', 1536 "pcy;": '\U0000043F', 1537 "percnt;": '\U00000025', 1538 "period;": '\U0000002E', 1539 "permil;": '\U00002030', 1540 "perp;": '\U000022A5', 1541 "pertenk;": '\U00002031', 1542 "pfr;": '\U0001D52D', 1543 "phi;": '\U000003C6', 1544 "phiv;": '\U000003D5', 1545 "phmmat;": '\U00002133', 1546 "phone;": '\U0000260E', 1547 "pi;": '\U000003C0', 1548 "pitchfork;": '\U000022D4', 1549 "piv;": '\U000003D6', 1550 "planck;": '\U0000210F', 1551 "planckh;": '\U0000210E', 1552 "plankv;": '\U0000210F', 1553 "plus;": '\U0000002B', 1554 "plusacir;": '\U00002A23', 1555 "plusb;": '\U0000229E', 1556 "pluscir;": '\U00002A22', 1557 "plusdo;": '\U00002214', 1558 "plusdu;": '\U00002A25', 1559 "pluse;": '\U00002A72', 1560 "plusmn;": '\U000000B1', 1561 "plussim;": '\U00002A26', 1562 "plustwo;": '\U00002A27', 1563 "pm;": '\U000000B1', 1564 "pointint;": '\U00002A15', 1565 "popf;": '\U0001D561', 1566 "pound;": '\U000000A3', 1567 "pr;": '\U0000227A', 1568 "prE;": '\U00002AB3', 1569 "prap;": '\U00002AB7', 1570 "prcue;": '\U0000227C', 1571 "pre;": '\U00002AAF', 1572 "prec;": '\U0000227A', 1573 "precapprox;": '\U00002AB7', 1574 "preccurlyeq;": '\U0000227C', 1575 "preceq;": '\U00002AAF', 1576 "precnapprox;": '\U00002AB9', 1577 "precneqq;": '\U00002AB5', 1578 "precnsim;": '\U000022E8', 1579 "precsim;": '\U0000227E', 1580 "prime;": '\U00002032', 1581 "primes;": '\U00002119', 1582 "prnE;": '\U00002AB5', 1583 "prnap;": '\U00002AB9', 1584 "prnsim;": '\U000022E8', 1585 "prod;": '\U0000220F', 1586 "profalar;": '\U0000232E', 1587 "profline;": '\U00002312', 1588 "profsurf;": '\U00002313', 1589 "prop;": '\U0000221D', 1590 "propto;": '\U0000221D', 1591 "prsim;": '\U0000227E', 1592 "prurel;": '\U000022B0', 1593 "pscr;": '\U0001D4C5', 1594 "psi;": '\U000003C8', 1595 "puncsp;": '\U00002008', 1596 "qfr;": '\U0001D52E', 1597 "qint;": '\U00002A0C', 1598 "qopf;": '\U0001D562', 1599 "qprime;": '\U00002057', 1600 "qscr;": '\U0001D4C6', 1601 "quaternions;": '\U0000210D', 1602 "quatint;": '\U00002A16', 1603 "quest;": '\U0000003F', 1604 "questeq;": '\U0000225F', 1605 "quot;": '\U00000022', 1606 "rAarr;": '\U000021DB', 1607 "rArr;": '\U000021D2', 1608 "rAtail;": '\U0000291C', 1609 "rBarr;": '\U0000290F', 1610 "rHar;": '\U00002964', 1611 "racute;": '\U00000155', 1612 "radic;": '\U0000221A', 1613 "raemptyv;": '\U000029B3', 1614 "rang;": '\U000027E9', 1615 "rangd;": '\U00002992', 1616 "range;": '\U000029A5', 1617 "rangle;": '\U000027E9', 1618 "raquo;": '\U000000BB', 1619 "rarr;": '\U00002192', 1620 "rarrap;": '\U00002975', 1621 "rarrb;": '\U000021E5', 1622 "rarrbfs;": '\U00002920', 1623 "rarrc;": '\U00002933', 1624 "rarrfs;": '\U0000291E', 1625 "rarrhk;": '\U000021AA', 1626 "rarrlp;": '\U000021AC', 1627 "rarrpl;": '\U00002945', 1628 "rarrsim;": '\U00002974', 1629 "rarrtl;": '\U000021A3', 1630 "rarrw;": '\U0000219D', 1631 "ratail;": '\U0000291A', 1632 "ratio;": '\U00002236', 1633 "rationals;": '\U0000211A', 1634 "rbarr;": '\U0000290D', 1635 "rbbrk;": '\U00002773', 1636 "rbrace;": '\U0000007D', 1637 "rbrack;": '\U0000005D', 1638 "rbrke;": '\U0000298C', 1639 "rbrksld;": '\U0000298E', 1640 "rbrkslu;": '\U00002990', 1641 "rcaron;": '\U00000159', 1642 "rcedil;": '\U00000157', 1643 "rceil;": '\U00002309', 1644 "rcub;": '\U0000007D', 1645 "rcy;": '\U00000440', 1646 "rdca;": '\U00002937', 1647 "rdldhar;": '\U00002969', 1648 "rdquo;": '\U0000201D', 1649 "rdquor;": '\U0000201D', 1650 "rdsh;": '\U000021B3', 1651 "real;": '\U0000211C', 1652 "realine;": '\U0000211B', 1653 "realpart;": '\U0000211C', 1654 "reals;": '\U0000211D', 1655 "rect;": '\U000025AD', 1656 "reg;": '\U000000AE', 1657 "rfisht;": '\U0000297D', 1658 "rfloor;": '\U0000230B', 1659 "rfr;": '\U0001D52F', 1660 "rhard;": '\U000021C1', 1661 "rharu;": '\U000021C0', 1662 "rharul;": '\U0000296C', 1663 "rho;": '\U000003C1', 1664 "rhov;": '\U000003F1', 1665 "rightarrow;": '\U00002192', 1666 "rightarrowtail;": '\U000021A3', 1667 "rightharpoondown;": '\U000021C1', 1668 "rightharpoonup;": '\U000021C0', 1669 "rightleftarrows;": '\U000021C4', 1670 "rightleftharpoons;": '\U000021CC', 1671 "rightrightarrows;": '\U000021C9', 1672 "rightsquigarrow;": '\U0000219D', 1673 "rightthreetimes;": '\U000022CC', 1674 "ring;": '\U000002DA', 1675 "risingdotseq;": '\U00002253', 1676 "rlarr;": '\U000021C4', 1677 "rlhar;": '\U000021CC', 1678 "rlm;": '\U0000200F', 1679 "rmoust;": '\U000023B1', 1680 "rmoustache;": '\U000023B1', 1681 "rnmid;": '\U00002AEE', 1682 "roang;": '\U000027ED', 1683 "roarr;": '\U000021FE', 1684 "robrk;": '\U000027E7', 1685 "ropar;": '\U00002986', 1686 "ropf;": '\U0001D563', 1687 "roplus;": '\U00002A2E', 1688 "rotimes;": '\U00002A35', 1689 "rpar;": '\U00000029', 1690 "rpargt;": '\U00002994', 1691 "rppolint;": '\U00002A12', 1692 "rrarr;": '\U000021C9', 1693 "rsaquo;": '\U0000203A', 1694 "rscr;": '\U0001D4C7', 1695 "rsh;": '\U000021B1', 1696 "rsqb;": '\U0000005D', 1697 "rsquo;": '\U00002019', 1698 "rsquor;": '\U00002019', 1699 "rthree;": '\U000022CC', 1700 "rtimes;": '\U000022CA', 1701 "rtri;": '\U000025B9', 1702 "rtrie;": '\U000022B5', 1703 "rtrif;": '\U000025B8', 1704 "rtriltri;": '\U000029CE', 1705 "ruluhar;": '\U00002968', 1706 "rx;": '\U0000211E', 1707 "sacute;": '\U0000015B', 1708 "sbquo;": '\U0000201A', 1709 "sc;": '\U0000227B', 1710 "scE;": '\U00002AB4', 1711 "scap;": '\U00002AB8', 1712 "scaron;": '\U00000161', 1713 "sccue;": '\U0000227D', 1714 "sce;": '\U00002AB0', 1715 "scedil;": '\U0000015F', 1716 "scirc;": '\U0000015D', 1717 "scnE;": '\U00002AB6', 1718 "scnap;": '\U00002ABA', 1719 "scnsim;": '\U000022E9', 1720 "scpolint;": '\U00002A13', 1721 "scsim;": '\U0000227F', 1722 "scy;": '\U00000441', 1723 "sdot;": '\U000022C5', 1724 "sdotb;": '\U000022A1', 1725 "sdote;": '\U00002A66', 1726 "seArr;": '\U000021D8', 1727 "searhk;": '\U00002925', 1728 "searr;": '\U00002198', 1729 "searrow;": '\U00002198', 1730 "sect;": '\U000000A7', 1731 "semi;": '\U0000003B', 1732 "seswar;": '\U00002929', 1733 "setminus;": '\U00002216', 1734 "setmn;": '\U00002216', 1735 "sext;": '\U00002736', 1736 "sfr;": '\U0001D530', 1737 "sfrown;": '\U00002322', 1738 "sharp;": '\U0000266F', 1739 "shchcy;": '\U00000449', 1740 "shcy;": '\U00000448', 1741 "shortmid;": '\U00002223', 1742 "shortparallel;": '\U00002225', 1743 "shy;": '\U000000AD', 1744 "sigma;": '\U000003C3', 1745 "sigmaf;": '\U000003C2', 1746 "sigmav;": '\U000003C2', 1747 "sim;": '\U0000223C', 1748 "simdot;": '\U00002A6A', 1749 "sime;": '\U00002243', 1750 "simeq;": '\U00002243', 1751 "simg;": '\U00002A9E', 1752 "simgE;": '\U00002AA0', 1753 "siml;": '\U00002A9D', 1754 "simlE;": '\U00002A9F', 1755 "simne;": '\U00002246', 1756 "simplus;": '\U00002A24', 1757 "simrarr;": '\U00002972', 1758 "slarr;": '\U00002190', 1759 "smallsetminus;": '\U00002216', 1760 "smashp;": '\U00002A33', 1761 "smeparsl;": '\U000029E4', 1762 "smid;": '\U00002223', 1763 "smile;": '\U00002323', 1764 "smt;": '\U00002AAA', 1765 "smte;": '\U00002AAC', 1766 "softcy;": '\U0000044C', 1767 "sol;": '\U0000002F', 1768 "solb;": '\U000029C4', 1769 "solbar;": '\U0000233F', 1770 "sopf;": '\U0001D564', 1771 "spades;": '\U00002660', 1772 "spadesuit;": '\U00002660', 1773 "spar;": '\U00002225', 1774 "sqcap;": '\U00002293', 1775 "sqcup;": '\U00002294', 1776 "sqsub;": '\U0000228F', 1777 "sqsube;": '\U00002291', 1778 "sqsubset;": '\U0000228F', 1779 "sqsubseteq;": '\U00002291', 1780 "sqsup;": '\U00002290', 1781 "sqsupe;": '\U00002292', 1782 "sqsupset;": '\U00002290', 1783 "sqsupseteq;": '\U00002292', 1784 "squ;": '\U000025A1', 1785 "square;": '\U000025A1', 1786 "squarf;": '\U000025AA', 1787 "squf;": '\U000025AA', 1788 "srarr;": '\U00002192', 1789 "sscr;": '\U0001D4C8', 1790 "ssetmn;": '\U00002216', 1791 "ssmile;": '\U00002323', 1792 "sstarf;": '\U000022C6', 1793 "star;": '\U00002606', 1794 "starf;": '\U00002605', 1795 "straightepsilon;": '\U000003F5', 1796 "straightphi;": '\U000003D5', 1797 "strns;": '\U000000AF', 1798 "sub;": '\U00002282', 1799 "subE;": '\U00002AC5', 1800 "subdot;": '\U00002ABD', 1801 "sube;": '\U00002286', 1802 "subedot;": '\U00002AC3', 1803 "submult;": '\U00002AC1', 1804 "subnE;": '\U00002ACB', 1805 "subne;": '\U0000228A', 1806 "subplus;": '\U00002ABF', 1807 "subrarr;": '\U00002979', 1808 "subset;": '\U00002282', 1809 "subseteq;": '\U00002286', 1810 "subseteqq;": '\U00002AC5', 1811 "subsetneq;": '\U0000228A', 1812 "subsetneqq;": '\U00002ACB', 1813 "subsim;": '\U00002AC7', 1814 "subsub;": '\U00002AD5', 1815 "subsup;": '\U00002AD3', 1816 "succ;": '\U0000227B', 1817 "succapprox;": '\U00002AB8', 1818 "succcurlyeq;": '\U0000227D', 1819 "succeq;": '\U00002AB0', 1820 "succnapprox;": '\U00002ABA', 1821 "succneqq;": '\U00002AB6', 1822 "succnsim;": '\U000022E9', 1823 "succsim;": '\U0000227F', 1824 "sum;": '\U00002211', 1825 "sung;": '\U0000266A', 1826 "sup;": '\U00002283', 1827 "sup1;": '\U000000B9', 1828 "sup2;": '\U000000B2', 1829 "sup3;": '\U000000B3', 1830 "supE;": '\U00002AC6', 1831 "supdot;": '\U00002ABE', 1832 "supdsub;": '\U00002AD8', 1833 "supe;": '\U00002287', 1834 "supedot;": '\U00002AC4', 1835 "suphsol;": '\U000027C9', 1836 "suphsub;": '\U00002AD7', 1837 "suplarr;": '\U0000297B', 1838 "supmult;": '\U00002AC2', 1839 "supnE;": '\U00002ACC', 1840 "supne;": '\U0000228B', 1841 "supplus;": '\U00002AC0', 1842 "supset;": '\U00002283', 1843 "supseteq;": '\U00002287', 1844 "supseteqq;": '\U00002AC6', 1845 "supsetneq;": '\U0000228B', 1846 "supsetneqq;": '\U00002ACC', 1847 "supsim;": '\U00002AC8', 1848 "supsub;": '\U00002AD4', 1849 "supsup;": '\U00002AD6', 1850 "swArr;": '\U000021D9', 1851 "swarhk;": '\U00002926', 1852 "swarr;": '\U00002199', 1853 "swarrow;": '\U00002199', 1854 "swnwar;": '\U0000292A', 1855 "szlig;": '\U000000DF', 1856 "target;": '\U00002316', 1857 "tau;": '\U000003C4', 1858 "tbrk;": '\U000023B4', 1859 "tcaron;": '\U00000165', 1860 "tcedil;": '\U00000163', 1861 "tcy;": '\U00000442', 1862 "tdot;": '\U000020DB', 1863 "telrec;": '\U00002315', 1864 "tfr;": '\U0001D531', 1865 "there4;": '\U00002234', 1866 "therefore;": '\U00002234', 1867 "theta;": '\U000003B8', 1868 "thetasym;": '\U000003D1', 1869 "thetav;": '\U000003D1', 1870 "thickapprox;": '\U00002248', 1871 "thicksim;": '\U0000223C', 1872 "thinsp;": '\U00002009', 1873 "thkap;": '\U00002248', 1874 "thksim;": '\U0000223C', 1875 "thorn;": '\U000000FE', 1876 "tilde;": '\U000002DC', 1877 "times;": '\U000000D7', 1878 "timesb;": '\U000022A0', 1879 "timesbar;": '\U00002A31', 1880 "timesd;": '\U00002A30', 1881 "tint;": '\U0000222D', 1882 "toea;": '\U00002928', 1883 "top;": '\U000022A4', 1884 "topbot;": '\U00002336', 1885 "topcir;": '\U00002AF1', 1886 "topf;": '\U0001D565', 1887 "topfork;": '\U00002ADA', 1888 "tosa;": '\U00002929', 1889 "tprime;": '\U00002034', 1890 "trade;": '\U00002122', 1891 "triangle;": '\U000025B5', 1892 "triangledown;": '\U000025BF', 1893 "triangleleft;": '\U000025C3', 1894 "trianglelefteq;": '\U000022B4', 1895 "triangleq;": '\U0000225C', 1896 "triangleright;": '\U000025B9', 1897 "trianglerighteq;": '\U000022B5', 1898 "tridot;": '\U000025EC', 1899 "trie;": '\U0000225C', 1900 "triminus;": '\U00002A3A', 1901 "triplus;": '\U00002A39', 1902 "trisb;": '\U000029CD', 1903 "tritime;": '\U00002A3B', 1904 "trpezium;": '\U000023E2', 1905 "tscr;": '\U0001D4C9', 1906 "tscy;": '\U00000446', 1907 "tshcy;": '\U0000045B', 1908 "tstrok;": '\U00000167', 1909 "twixt;": '\U0000226C', 1910 "twoheadleftarrow;": '\U0000219E', 1911 "twoheadrightarrow;": '\U000021A0', 1912 "uArr;": '\U000021D1', 1913 "uHar;": '\U00002963', 1914 "uacute;": '\U000000FA', 1915 "uarr;": '\U00002191', 1916 "ubrcy;": '\U0000045E', 1917 "ubreve;": '\U0000016D', 1918 "ucirc;": '\U000000FB', 1919 "ucy;": '\U00000443', 1920 "udarr;": '\U000021C5', 1921 "udblac;": '\U00000171', 1922 "udhar;": '\U0000296E', 1923 "ufisht;": '\U0000297E', 1924 "ufr;": '\U0001D532', 1925 "ugrave;": '\U000000F9', 1926 "uharl;": '\U000021BF', 1927 "uharr;": '\U000021BE', 1928 "uhblk;": '\U00002580', 1929 "ulcorn;": '\U0000231C', 1930 "ulcorner;": '\U0000231C', 1931 "ulcrop;": '\U0000230F', 1932 "ultri;": '\U000025F8', 1933 "umacr;": '\U0000016B', 1934 "uml;": '\U000000A8', 1935 "uogon;": '\U00000173', 1936 "uopf;": '\U0001D566', 1937 "uparrow;": '\U00002191', 1938 "updownarrow;": '\U00002195', 1939 "upharpoonleft;": '\U000021BF', 1940 "upharpoonright;": '\U000021BE', 1941 "uplus;": '\U0000228E', 1942 "upsi;": '\U000003C5', 1943 "upsih;": '\U000003D2', 1944 "upsilon;": '\U000003C5', 1945 "upuparrows;": '\U000021C8', 1946 "urcorn;": '\U0000231D', 1947 "urcorner;": '\U0000231D', 1948 "urcrop;": '\U0000230E', 1949 "uring;": '\U0000016F', 1950 "urtri;": '\U000025F9', 1951 "uscr;": '\U0001D4CA', 1952 "utdot;": '\U000022F0', 1953 "utilde;": '\U00000169', 1954 "utri;": '\U000025B5', 1955 "utrif;": '\U000025B4', 1956 "uuarr;": '\U000021C8', 1957 "uuml;": '\U000000FC', 1958 "uwangle;": '\U000029A7', 1959 "vArr;": '\U000021D5', 1960 "vBar;": '\U00002AE8', 1961 "vBarv;": '\U00002AE9', 1962 "vDash;": '\U000022A8', 1963 "vangrt;": '\U0000299C', 1964 "varepsilon;": '\U000003F5', 1965 "varkappa;": '\U000003F0', 1966 "varnothing;": '\U00002205', 1967 "varphi;": '\U000003D5', 1968 "varpi;": '\U000003D6', 1969 "varpropto;": '\U0000221D', 1970 "varr;": '\U00002195', 1971 "varrho;": '\U000003F1', 1972 "varsigma;": '\U000003C2', 1973 "vartheta;": '\U000003D1', 1974 "vartriangleleft;": '\U000022B2', 1975 "vartriangleright;": '\U000022B3', 1976 "vcy;": '\U00000432', 1977 "vdash;": '\U000022A2', 1978 "vee;": '\U00002228', 1979 "veebar;": '\U000022BB', 1980 "veeeq;": '\U0000225A', 1981 "vellip;": '\U000022EE', 1982 "verbar;": '\U0000007C', 1983 "vert;": '\U0000007C', 1984 "vfr;": '\U0001D533', 1985 "vltri;": '\U000022B2', 1986 "vopf;": '\U0001D567', 1987 "vprop;": '\U0000221D', 1988 "vrtri;": '\U000022B3', 1989 "vscr;": '\U0001D4CB', 1990 "vzigzag;": '\U0000299A', 1991 "wcirc;": '\U00000175', 1992 "wedbar;": '\U00002A5F', 1993 "wedge;": '\U00002227', 1994 "wedgeq;": '\U00002259', 1995 "weierp;": '\U00002118', 1996 "wfr;": '\U0001D534', 1997 "wopf;": '\U0001D568', 1998 "wp;": '\U00002118', 1999 "wr;": '\U00002240', 2000 "wreath;": '\U00002240', 2001 "wscr;": '\U0001D4CC', 2002 "xcap;": '\U000022C2', 2003 "xcirc;": '\U000025EF', 2004 "xcup;": '\U000022C3', 2005 "xdtri;": '\U000025BD', 2006 "xfr;": '\U0001D535', 2007 "xhArr;": '\U000027FA', 2008 "xharr;": '\U000027F7', 2009 "xi;": '\U000003BE', 2010 "xlArr;": '\U000027F8', 2011 "xlarr;": '\U000027F5', 2012 "xmap;": '\U000027FC', 2013 "xnis;": '\U000022FB', 2014 "xodot;": '\U00002A00', 2015 "xopf;": '\U0001D569', 2016 "xoplus;": '\U00002A01', 2017 "xotime;": '\U00002A02', 2018 "xrArr;": '\U000027F9', 2019 "xrarr;": '\U000027F6', 2020 "xscr;": '\U0001D4CD', 2021 "xsqcup;": '\U00002A06', 2022 "xuplus;": '\U00002A04', 2023 "xutri;": '\U000025B3', 2024 "xvee;": '\U000022C1', 2025 "xwedge;": '\U000022C0', 2026 "yacute;": '\U000000FD', 2027 "yacy;": '\U0000044F', 2028 "ycirc;": '\U00000177', 2029 "ycy;": '\U0000044B', 2030 "yen;": '\U000000A5', 2031 "yfr;": '\U0001D536', 2032 "yicy;": '\U00000457', 2033 "yopf;": '\U0001D56A', 2034 "yscr;": '\U0001D4CE', 2035 "yucy;": '\U0000044E', 2036 "yuml;": '\U000000FF', 2037 "zacute;": '\U0000017A', 2038 "zcaron;": '\U0000017E', 2039 "zcy;": '\U00000437', 2040 "zdot;": '\U0000017C', 2041 "zeetrf;": '\U00002128', 2042 "zeta;": '\U000003B6', 2043 "zfr;": '\U0001D537', 2044 "zhcy;": '\U00000436', 2045 "zigrarr;": '\U000021DD', 2046 "zopf;": '\U0001D56B', 2047 "zscr;": '\U0001D4CF', 2048 "zwj;": '\U0000200D', 2049 "zwnj;": '\U0000200C', 2050 "AElig": '\U000000C6', 2051 "AMP": '\U00000026', 2052 "Aacute": '\U000000C1', 2053 "Acirc": '\U000000C2', 2054 "Agrave": '\U000000C0', 2055 "Aring": '\U000000C5', 2056 "Atilde": '\U000000C3', 2057 "Auml": '\U000000C4', 2058 "COPY": '\U000000A9', 2059 "Ccedil": '\U000000C7', 2060 "ETH": '\U000000D0', 2061 "Eacute": '\U000000C9', 2062 "Ecirc": '\U000000CA', 2063 "Egrave": '\U000000C8', 2064 "Euml": '\U000000CB', 2065 "GT": '\U0000003E', 2066 "Iacute": '\U000000CD', 2067 "Icirc": '\U000000CE', 2068 "Igrave": '\U000000CC', 2069 "Iuml": '\U000000CF', 2070 "LT": '\U0000003C', 2071 "Ntilde": '\U000000D1', 2072 "Oacute": '\U000000D3', 2073 "Ocirc": '\U000000D4', 2074 "Ograve": '\U000000D2', 2075 "Oslash": '\U000000D8', 2076 "Otilde": '\U000000D5', 2077 "Ouml": '\U000000D6', 2078 "QUOT": '\U00000022', 2079 "REG": '\U000000AE', 2080 "THORN": '\U000000DE', 2081 "Uacute": '\U000000DA', 2082 "Ucirc": '\U000000DB', 2083 "Ugrave": '\U000000D9', 2084 "Uuml": '\U000000DC', 2085 "Yacute": '\U000000DD', 2086 "aacute": '\U000000E1', 2087 "acirc": '\U000000E2', 2088 "acute": '\U000000B4', 2089 "aelig": '\U000000E6', 2090 "agrave": '\U000000E0', 2091 "amp": '\U00000026', 2092 "aring": '\U000000E5', 2093 "atilde": '\U000000E3', 2094 "auml": '\U000000E4', 2095 "brvbar": '\U000000A6', 2096 "ccedil": '\U000000E7', 2097 "cedil": '\U000000B8', 2098 "cent": '\U000000A2', 2099 "copy": '\U000000A9', 2100 "curren": '\U000000A4', 2101 "deg": '\U000000B0', 2102 "divide": '\U000000F7', 2103 "eacute": '\U000000E9', 2104 "ecirc": '\U000000EA', 2105 "egrave": '\U000000E8', 2106 "eth": '\U000000F0', 2107 "euml": '\U000000EB', 2108 "frac12": '\U000000BD', 2109 "frac14": '\U000000BC', 2110 "frac34": '\U000000BE', 2111 "gt": '\U0000003E', 2112 "iacute": '\U000000ED', 2113 "icirc": '\U000000EE', 2114 "iexcl": '\U000000A1', 2115 "igrave": '\U000000EC', 2116 "iquest": '\U000000BF', 2117 "iuml": '\U000000EF', 2118 "laquo": '\U000000AB', 2119 "lt": '\U0000003C', 2120 "macr": '\U000000AF', 2121 "micro": '\U000000B5', 2122 "middot": '\U000000B7', 2123 "nbsp": '\U000000A0', 2124 "not": '\U000000AC', 2125 "ntilde": '\U000000F1', 2126 "oacute": '\U000000F3', 2127 "ocirc": '\U000000F4', 2128 "ograve": '\U000000F2', 2129 "ordf": '\U000000AA', 2130 "ordm": '\U000000BA', 2131 "oslash": '\U000000F8', 2132 "otilde": '\U000000F5', 2133 "ouml": '\U000000F6', 2134 "para": '\U000000B6', 2135 "plusmn": '\U000000B1', 2136 "pound": '\U000000A3', 2137 "quot": '\U00000022', 2138 "raquo": '\U000000BB', 2139 "reg": '\U000000AE', 2140 "sect": '\U000000A7', 2141 "shy": '\U000000AD', 2142 "sup1": '\U000000B9', 2143 "sup2": '\U000000B2', 2144 "sup3": '\U000000B3', 2145 "szlig": '\U000000DF', 2146 "thorn": '\U000000FE', 2147 "times": '\U000000D7', 2148 "uacute": '\U000000FA', 2149 "ucirc": '\U000000FB', 2150 "ugrave": '\U000000F9', 2151 "uml": '\U000000A8', 2152 "uuml": '\U000000FC', 2153 "yacute": '\U000000FD', 2154 "yen": '\U000000A5', 2155 "yuml": '\U000000FF', 2156 } 2157 2158 // HTML entities that are two unicode codepoints. 2159 var entity2 = map[string][2]rune{ 2160 "nLt;": {'\u226A', '\u20D2'}, 2161 "nGt;": {'\u226B', '\u20D2'}, 2162 "NotEqualTilde;": {'\u2242', '\u0338'}, 2163 "NotGreaterFullEqual;": {'\u2267', '\u0338'}, 2164 "NotGreaterGreater;": {'\u226B', '\u0338'}, 2165 "NotGreaterSlantEqual;": {'\u2A7E', '\u0338'}, 2166 "NotHumpDownHump;": {'\u224E', '\u0338'}, 2167 "NotHumpEqual;": {'\u224F', '\u0338'}, 2168 "NotLeftTriangleBar;": {'\u29CF', '\u0338'}, 2169 "NotLessLess;": {'\u226A', '\u0338'}, 2170 "NotLessSlantEqual;": {'\u2A7D', '\u0338'}, 2171 "NotNestedGreaterGreater;": {'\u2AA2', '\u0338'}, 2172 "NotNestedLessLess;": {'\u2AA1', '\u0338'}, 2173 "NotPrecedesEqual;": {'\u2AAF', '\u0338'}, 2174 "NotRightTriangleBar;": {'\u29D0', '\u0338'}, 2175 "NotSquareSubset;": {'\u228F', '\u0338'}, 2176 "NotSquareSuperset;": {'\u2290', '\u0338'}, 2177 "NotSubset;": {'\u2282', '\u20D2'}, 2178 "NotSucceedsEqual;": {'\u2AB0', '\u0338'}, 2179 "NotSucceedsTilde;": {'\u227F', '\u0338'}, 2180 "NotSuperset;": {'\u2283', '\u20D2'}, 2181 "ThickSpace;": {'\u205F', '\u200A'}, 2182 "acE;": {'\u223E', '\u0333'}, 2183 "bne;": {'\u003D', '\u20E5'}, 2184 "bnequiv;": {'\u2261', '\u20E5'}, 2185 "caps;": {'\u2229', '\uFE00'}, 2186 "cups;": {'\u222A', '\uFE00'}, 2187 "fjlig;": {'\u0066', '\u006A'}, 2188 "gesl;": {'\u22DB', '\uFE00'}, 2189 "gvertneqq;": {'\u2269', '\uFE00'}, 2190 "gvnE;": {'\u2269', '\uFE00'}, 2191 "lates;": {'\u2AAD', '\uFE00'}, 2192 "lesg;": {'\u22DA', '\uFE00'}, 2193 "lvertneqq;": {'\u2268', '\uFE00'}, 2194 "lvnE;": {'\u2268', '\uFE00'}, 2195 "nGg;": {'\u22D9', '\u0338'}, 2196 "nGtv;": {'\u226B', '\u0338'}, 2197 "nLl;": {'\u22D8', '\u0338'}, 2198 "nLtv;": {'\u226A', '\u0338'}, 2199 "nang;": {'\u2220', '\u20D2'}, 2200 "napE;": {'\u2A70', '\u0338'}, 2201 "napid;": {'\u224B', '\u0338'}, 2202 "nbump;": {'\u224E', '\u0338'}, 2203 "nbumpe;": {'\u224F', '\u0338'}, 2204 "ncongdot;": {'\u2A6D', '\u0338'}, 2205 "nedot;": {'\u2250', '\u0338'}, 2206 "nesim;": {'\u2242', '\u0338'}, 2207 "ngE;": {'\u2267', '\u0338'}, 2208 "ngeqq;": {'\u2267', '\u0338'}, 2209 "ngeqslant;": {'\u2A7E', '\u0338'}, 2210 "nges;": {'\u2A7E', '\u0338'}, 2211 "nlE;": {'\u2266', '\u0338'}, 2212 "nleqq;": {'\u2266', '\u0338'}, 2213 "nleqslant;": {'\u2A7D', '\u0338'}, 2214 "nles;": {'\u2A7D', '\u0338'}, 2215 "notinE;": {'\u22F9', '\u0338'}, 2216 "notindot;": {'\u22F5', '\u0338'}, 2217 "nparsl;": {'\u2AFD', '\u20E5'}, 2218 "npart;": {'\u2202', '\u0338'}, 2219 "npre;": {'\u2AAF', '\u0338'}, 2220 "npreceq;": {'\u2AAF', '\u0338'}, 2221 "nrarrc;": {'\u2933', '\u0338'}, 2222 "nrarrw;": {'\u219D', '\u0338'}, 2223 "nsce;": {'\u2AB0', '\u0338'}, 2224 "nsubE;": {'\u2AC5', '\u0338'}, 2225 "nsubset;": {'\u2282', '\u20D2'}, 2226 "nsubseteqq;": {'\u2AC5', '\u0338'}, 2227 "nsucceq;": {'\u2AB0', '\u0338'}, 2228 "nsupE;": {'\u2AC6', '\u0338'}, 2229 "nsupset;": {'\u2283', '\u20D2'}, 2230 "nsupseteqq;": {'\u2AC6', '\u0338'}, 2231 "nvap;": {'\u224D', '\u20D2'}, 2232 "nvge;": {'\u2265', '\u20D2'}, 2233 "nvgt;": {'\u003E', '\u20D2'}, 2234 "nvle;": {'\u2264', '\u20D2'}, 2235 "nvlt;": {'\u003C', '\u20D2'}, 2236 "nvltrie;": {'\u22B4', '\u20D2'}, 2237 "nvrtrie;": {'\u22B5', '\u20D2'}, 2238 "nvsim;": {'\u223C', '\u20D2'}, 2239 "race;": {'\u223D', '\u0331'}, 2240 "smtes;": {'\u2AAC', '\uFE00'}, 2241 "sqcaps;": {'\u2293', '\uFE00'}, 2242 "sqcups;": {'\u2294', '\uFE00'}, 2243 "varsubsetneq;": {'\u228A', '\uFE00'}, 2244 "varsubsetneqq;": {'\u2ACB', '\uFE00'}, 2245 "varsupsetneq;": {'\u228B', '\uFE00'}, 2246 "varsupsetneqq;": {'\u2ACC', '\uFE00'}, 2247 "vnsub;": {'\u2282', '\u20D2'}, 2248 "vnsup;": {'\u2283', '\u20D2'}, 2249 "vsubnE;": {'\u2ACB', '\uFE00'}, 2250 "vsubne;": {'\u228A', '\uFE00'}, 2251 "vsupnE;": {'\u2ACC', '\uFE00'}, 2252 "vsupne;": {'\u228B', '\uFE00'}, 2253 }