packages feed

texmath 0.11 → 0.13.2

raw patch · 7632 files changed

This diff is very large; some files are shown as “too large to diff”. Download the raw patch for the complete diff.

Files

− README.markdown
@@ -1,102 +0,0 @@-texmath-=======--texmath is a Haskell library for converting between formats used to-represent mathematics.  Currently it provides functions to read and-write TeX math, presentation MathML, and OMML (Office Math Markup-Language, used in Microsoft Office), and to write Gnu eqn and-[pandoc]'s native format (allowing conversion, using pandoc, to-a variety of different markup formats).  The TeX reader and-writer supports basic LaTeX and AMS extensions, and it can parse-and apply LaTeX macros.  The package also includes several-utility modules which may be useful for anyone looking to-manipulate either TeX math or MathML.  For example, a copy of-the MathML operator dictionary is included.--[pandoc]: http://github.com/jgm/pandoc--You can [try it out online here](http://johnmacfarlane.net/texmath.html).-(Note that the math it produces will be rendered correctly only-if your browser supports MathML. Firefox does; Safari and Chrome do not.)--By default, only the Haskell library is installed.  To install a-test program, `texmath`, use the `executable` Cabal flag:--    cabal install -fexecutable--To run the test suite, compile with `--enable-tests` and do `cabal test`.--Alternatively, texmath can be installed using-[stack](https://github.com/commercialhaskell/stack).  Install-the stack binary somewhere in your path.  Then, in the texmath-repository,--    stack setup-    stack install --flag texmath:executable--The `texmath` binary will be put in `~/.local/bin`.--Macro definitions may be included before a LaTeX formula.--`texmath` will behave as a CGI script when called under the name-`texmath-cgi` (e.g. through a symbolic link).--The file `cgi/texmath.html` contains an example of how it can-be used.--Generating lookup tables-=======================--There are three main lookup tables which are built form externally compiled lists.-This section contains information about how to modify and regenerate these tables.--In the `lib` direction there are two sub-directories which contain the-necessary files.--MMLDict.hs-------------The utility program `xsltproc` is required.-You can find these files in `lib/mmldict/`--  1. If desired replace `unicode.xml` with and updated version (you can download a copy from [here](http://www.w3.org/TR/xml-entity-names/#source)-  2. `xsltproc -o dictionary.xml operatorDictionary.xsl unicode.xml`-  3. `runghc generateMMLDict.hs`-  4. Replace the operator table at the bottom of `src/Text/TeXMath/Readers/MathML/MMLDict.hs` with the contents of `mmldict.hs`--ToTeXMath.hs---------------You can find these files in `lib/totexmath/`--  1. If desired, replace `unimathsymbols.txt` with an updated verson from [here](http://milde.users.sourceforge.net/LUCR/Math/)-  2. `runghc unicodetotex.hs`-  3. Replace the record table at the bottom of `src/Text/TeXMath/Unicode/ToTeXMath.hs` with the contents of `UnicodeToLaTeX.hs`--ToUnicode.hs---------------You can find these files in `lib/tounicode/`.--  1. If desired, replace `UnicodeData.txt` with an updated verson from-     [here](ftp://ftp.unicode.org/Public/UNIDATA/UnicodeData.txt).-  2. `runghc mkUnicodeTable.hs`-  3. Replace the table at the bottom of-     `src/Text/TeXMath/Unicode/ToUnicode.hs` with the output.--Editing the tables-==================--It is not necessary to edit the source files to add records to the tables.-To add to or modify a table it is easier to add modify either `unicodetotex.hs`-or `generateMMLDict.hs`. This is easily achieved by adding an item to the corresponding-`updates` lists. After making the changes, follow the above steps to regenerate-the table.--Authors-=======--John MacFarlane wrote the original TeX reader, MathML writer, and-OMML writer.  Matthew Pickering contributed the MathML reader, the TeX-writer, and many of the auxiliary modules.  Jesse Rosenthal contributed-the OMML reader.  Thanks also to John Lenz for many contributions.
+ README.md view
@@ -0,0 +1,175 @@+# texmath++[![CI+tests](https://github.com/jgm/texmath/workflows/CI%20tests/badge.svg)](https://github.com/jgm/texmath/actions)++texmath is a Haskell library for converting between formats used to+represent mathematics.  Currently it provides functions to read and+write TeX math, presentation MathML, and OMML (Office Math Markup+Language, used in Microsoft Office), and to write Gnu eqn, typst,+StarMath (used by LibreOffice), and [pandoc]'s native format+(allowing conversion, using pandoc, to a variety of different+markup formats). The TeX reader and writer supports basic LaTeX+and AMS extensions, and it can parse and apply LaTeX macros. The+package also includes several utility modules which may be useful+for anyone looking to manipulate either TeX math or MathML. For+example, a copy of the MathML operator dictionary is included.++[pandoc]: http://github.com/jgm/pandoc++You can [try it out online here](http://johnmacfarlane.net/texmath.html).++By default, only the Haskell library is installed.  To install a+test program, `texmath`, use the `executable` Cabal flag:++    cabal install -fexecutable++By default, the executable will be installed in `~/.cabal/bin`.++The `texmath` binary will be put in `~/.local/bin`.++Macro definitions may be included before a LaTeX formula.++# Running texmath as a server++`texmath` will behave as a CGI script when called under the name+`texmath-cgi` (e.g. through a symbolic link).++But it is also possible to compile a full webserver with a JSON+API.  To do this, set the `server` cabal flag, e.g.++    cabal install -fserver++To run the server on port 3000:++    texmath-server -p 3000++Sample of use, with `httpie`:++```+% http --verbose localhost:3000 text='2^2' from=tex to=mathml display:=false Accept:'text/plain'+POST /convert HTTP/1.1+Accept: text/plain+Accept-Encoding: gzip, deflate+Connection: keep-alive+Content-Length: 64+Content-Type: application/json+Host: localhost:3000+User-Agent: HTTPie/3.1.0++{+    "display": false,+    "from": "tex",+    "text": "2^2",+    "to": "mathml"+}+++HTTP/1.1 200 OK+Content-Type: text/plain;charset=utf-8+Date: Mon, 21 Mar 2022 18:29:26 GMT+Server: Warp/3.3.17+Transfer-Encoding: chunked++<math display="inline" xmlns="http://www.w3.org/1998/Math/MathML">+  <msup>+    <mn>2</mn>+    <mn>2</mn>+  </msup>+</math>+```++Possible values for `from` are `tex`, `mathml`, and `omml`.+Possible values for `to` are `tex`, `mathml`, `omml`, `eqn`,+`typst` and `pandoc` (JSON-encoded Pandoc).++Alternatively, you can use the `/batch` endpoint, passing+in in a JSON-encoded list of conversions and getting back a+JSON-encoded list of results.++If you rename `pandoc-server` to `pandoc-server.cgi`, it will+function as a CGI program that accepts POST requests.++# Generating lookup tables++There are three main lookup tables which are built form externally compiled lists.+This section contains information about how to modify and regenerate these tables.++In the `lib` direction there are two sub-directories which contain the+necessary files.++## MMLDict.hs++The utility program `xsltproc` is required.+You can find these files in `lib/mmldict/`++  1. If desired replace `unicode.xml` with and updated version (you can download a copy from [here](http://www.w3.org/TR/xml-entity-names/#source)+  2. `xsltproc -o dictionary.xml operatorDictionary.xsl unicode.xml`+  3. `runghc generateMMLDict.hs`+  4. Replace the operator table at the bottom of `src/Text/TeXMath/Readers/MathML/MMLDict.hs` with the contents of `mmldict.hs`++## ToTeXMath.hs++You can find these files in `lib/totexmath/`++  1. If desired, replace `unimathsymbols.txt` with an updated version from [here](http://milde.users.sourceforge.net/LUCR/Math/)+  2. `runghc unicodetotex.hs`+  3. Replace the record table at the bottom of `src/Text/TeXMath/Unicode/ToTeXMath.hs` with the contents of `UnicodeToLaTeX.hs`++## ToUnicode.hs++You can find these files in `lib/tounicode/`.++  1. If desired, replace `UnicodeData.txt` with an updated verson from+     [here](ftp://ftp.unicode.org/Public/UNIDATA/UnicodeData.txt).+  2. `runghc mkUnicodeTable.hs`+  3. Replace the table at the bottom of+     `src/Text/TeXMath/Unicode/ToUnicode.hs` with the output.++## Editing the tables++It is not necessary to edit the source files to add records to+the tables.  To add to or modify a table it is easier to add+modify either `unicodetotex.hs` or `generateMMLDict.hs`. This is+easily achieved by adding an item to the corresponding `updates`+lists. After making the changes, follow the above steps to+regenerate the table.++# The test suite++To run the test suite, do `cabal test`.++In its standard mode, the test suite will run golden tests of+the individual readers and writers.  Reader tests can be found+in `test/reader/{mml,omml,tex}`, and writer tests in+`test/writer/{eqn,mml,omml,tex}`.  Regression tests linked+to specific issues are in `test/regression`.++Each test file consists of an input and an expected output.+The input begins after a line `<<< FORMAT` and the output+begins after a line `>>> FORMAT`.++If many tests fail as a result of changes, but the test+failures are all because of improvements in the output,+you can pass `--accept` to the test suite (e.g., with+`--test-option=--accept` on `cabal test`), and the existing+golden files will be overwritten.  If you do this, inspect+the outputs very carefully to make sure they are correct.++If you pass the `--roundtrip` option into the test suite+(e.g., using `--test-option=--roundtrip` with `cabal test`),+round-trip tests will be run instead.  Many of these will+fail. In these tests, the native inputs in `test/roundtrip/*.native`+will be converted to (respectively) `mml`, `omml`, or `tex`,+then converted back, and the result will be compared with the+starting point.  Although we don't guarantee that this kind+of round-trip transformation will be the identity, looking+at cases where it fails can be a guide to improvements.++# Authors++John MacFarlane wrote the original TeX reader, MathML writer, Eq+writer, and OMML writer.  Matthew Pickering contributed the+MathML reader, the TeX writer, and many of the auxiliary+modules.  Jesse Rosenthal contributed the OMML reader.  Thanks+also to John Lenz for many contributions.
− cgi/texmath.html
@@ -1,154 +0,0 @@-<!doctype html>-<html lang="en">-<head>-  <meta charset="utf-8">-  <title>texmath demo</title>-  <script type="text/x-mathjax-config">-    MathJax.Hub.Config({-      config: ["MMLorHTML.js"],-      jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML"],-      extensions: ["tex2jax.js","mml2jax.js"],-      skipTags: ["script","noscript","style","textarea","pre","code"],-      TeX: {-        extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]-      }-    });-  </script>-  <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js"></script>-  <script src="//code.jquery.com/jquery-1.11.0.min.js"></script>-  <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>-  <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">-  <style type="text/css">-    ul.nav-tabs li { font-weight: bold; }-    label { margin-top:  1em; }-    input { margin-top: 0.5em; margin-bottom: 0.5em; }-    textarea { width: 100%; }-    pre { margin-top: 1em; background-color: transparent; border: none; color: blue; }-    #installing { padding: 1em; font-size: 120%; }-  </style>-  <script type="text/javascript">-     // Browsers do not always like self-closing tags-     function removeSelfClosingTags(s){-       return s.replace(/<([a-z][a-z0-9]*)([^<>]*?) *\/>/g, "<$1$2><\/$1>");-     };--      $(document).ready(function(){-        $('#convert-latex2mathml').click(function() {-          $.post("/cgi-bin/texmath-cgi",-                   { 'input' : $('#latex-input').val(),-                     'from': 'tex',-                     'to': 'mathml' },-            function(result){-                   if (result.success) {-                     var res = result.success;-                     $('#mathml-result').text(res);-                     $('#preview').html(removeSelfClosingTags(res));-                   } else {-                     $('#mathml-result').text(result.error);-                     $('#preview').html('');-                   };-                   MathJax.Hub.Queue(["Typeset",MathJax.Hub,"preview"]);-                }, 'json')-            });-        $('#convert-mathml2latex').click(function() {-          $.post("/cgi-bin/texmath-cgi",-                   { 'input' : $('#mathml-input').val(),-                     'from': 'mathml',-                     'to': 'tex' },-            function(result){-                   if (result.success) {-                     var res = result.success;-                     $('#latex-result').text(res);-                     $('#preview').text("\\[" + res + "\\]");-                   } else {-                     $('#latex-result').text(result.error);-                     $('#preview').text('');-                   };-                   MathJax.Hub.Queue(["Typeset",MathJax.Hub,"preview"]);-                }, 'json')-            });-        $('a[data-toggle="tab"]').click(function (e) {-          $('#preview').text(''); // clear preview-          MathJax.Hub.Queue(["Typeset",MathJax.Hub,"preview"]);-        });-      });-  </script>-</head>-<body>-<div class="container">- <div class="row">-    <div class="col-md-4">-      <h3><a href="http://github.com/jgm/texmath/tree/master">texmath</a>-      demo</h3>-    </div>-    <div id="preview" class="col-md-8"></div>-  </div>-  <div class="row">-    <div class="col-md-12">-      <ul class="nav nav-tabs" role="tablist">-        <li class="active"><a href="#tex2mathml" role="tab" data-toggle="tab">LaTeX &Rightarrow; MathML</a></li>-        <li><a href="#mathml2tex" role="tab" data-toggle="tab">MathML &Rightarrow; LaTeX</a></li>-        <li><a href="#installing" role="tab" data-toggle="tab">Installing</a></li>-      </ul>-    </div>-  </div>-  <div class="row tab-content">-    <div id="tex2mathml" class="tab-pane active">-      <div class="col-md-6">-        <label for="latex-input">Enter a LaTeX formula here. (You may precede it with macro definitions.)</label><br/>-        <textarea name="latex-input" rows="10" id="latex-input">\iiint_{0}^{1}f\left( x \right)\mathbb{d}x</textarea>-        <br/>-        <input type="submit" id="convert-latex2mathml" value="Convert to MathML" /> -      </div>-      <div class="col-md-6">-        <pre id="mathml-result"></pre>-      </div>-    </div>-    <div id="mathml2tex" class="tab-pane">-      <div class="col-md-6">-        <label for="mathml-input">Enter a MathML formula here.</label><br/>-        <textarea name="mathml-input" rows="10" id="mathml-input">&lt;math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot;&gt;-  &lt;mstyle displaystyle=&quot;true&quot;&gt;-    &lt;msubsup&gt;-      &lt;mo&gt;&amp;#x222D;&lt;/mo&gt;-      &lt;mn&gt;0&lt;/mn&gt;-      &lt;mn&gt;1&lt;/mn&gt;-    &lt;/msubsup&gt;-    &lt;mi&gt;f&lt;/mi&gt;-    &lt;mrow&gt;-      &lt;mo&gt;(&lt;/mo&gt;-      &lt;mi&gt;x&lt;/mi&gt;-      &lt;mo&gt;)&lt;/mo&gt;-     &lt;/mrow&gt;-    &lt;mtext&gt;&amp;#x200A;&lt;/mtext&gt;-    &lt;mo&gt;&amp;#x2146;&lt;/mo&gt;-    &lt;mi&gt;x&lt;/mi&gt;-  &lt;/mstyle&gt; &lt;/math&gt;</textarea>-        <br/>-        <input type="submit" id="convert-mathml2latex" value="Convert to LaTeX" />-      </div>-      <div class="col-md-6">-        <pre id="latex-result"></pre>-      </div>-    </div>-    <div id="installing" class="tab-pane">-      <div class="col-md-6">-        <ol>-          <li><p>Install the <a href="http://www.haskell.org/platform/">Haskell-            Platform</a>.</p></li>-          <li><p><code>cabal update &amp;&amp; cabal install texmath -fexecutable</code></p></li>-          <li><p><code>texmath --help</code></p></li>-        </ol>-        <p>If installation succeeds but <code>texmath</code> is not found,-        make sure your system PATH includes the cabal bindir, which by-        default is <code>~/.cabal</code> on linux-        and <code>~/Library/Haskell/bin</code> on Mac OS X.</p>-        <p>If you want to use texmath as a Haskell library, see-        the <a href="https://hackage.haskell.org/package/texmath">API-          documentation</a>.</p>-      </div>-    </div>-  </div>-</div>-</body>-</html>
− changelog
@@ -1,450 +0,0 @@-texmath (0.11)--  * Changed treatment of non-ASCII characters.-    Previously we ensured that the output of conversion to tex-    was pure ASCII.  This meant rendering "ä" as "a", for-    example, and it meant that many characters (e.g. Chinese)-    simply got replaced with an empty string, while others-    got replaced with "[?]".--    This was not a particularly helpful behavior.  Including-    the unicode characters verbatim doesn't interfere with-    latex compilation.  They often won't show up in the generated-    math, but that is no worse than what happened before.--    This change passes through unicode characters unchanged-    when they can't be converted to standard LaTeX commands.--    An important reason for including the unicode characters-    is that pandoc uses TeX to represent math in its AST.-    So, for example, if you convert HTML with mathml to docx,-    you'll currently lose all Chinese characters, since they'll-    disappear in the TeX intermediary, even though a direct-    mathml to ooml conversion would have passed them through.-    With this change, these conversions will work better-    (see jgm/pandoc#4642).--    + Removed Text.TeXMath.Unicode.ToASCII (API change).-    + Removed cbits that were needed for that module.-    + Modified Tex.TeXMath.Unicode.ToTeX to pass through-      unicode characters that can't be converted, rather-      than trying to asciify them or remove them.--  * Render degree symbol in tex as `{^\circ}`.--texmath (0.10.1.2)--  * eqn writer:  use uppercase letters in unicode escapes (jgm/pandoc#4597).--texmath (0.10.1.1)--  * Handle multicharacter operators better in Eqn, TeX, OMML (#109).--  * OMML reader: unwrap `<w:...>` tags immediately under `<m:oMath>`-    (#111, Jesse Rosenthal).--texmath (0.10.1)--  * Expose Text.TeXMath.TeX (TeX rendering functions) (#108).-    This is needed in order to use getTeXMath from Text.TeXMath.Unicode.ToTeX.-  * Pandoc writer: don't insert punctuation space before explicit space-    (#107).  E.g. in `2,\!4`.-  * Fix end-line command ('\\') in AMSmath environments (ARATA Mizuki).-    The end-line command in AMSmath environments does not allow spaces-    before its optional argument.-  * Use `\in` for SMALL ELEMENT OF in "base" (Vaclav Haisman).--texmath (0.10)--  * Use `\ni` in base for U+220D (#103).-  * Improved unicode -> tex symbol lookup.  Previously we had many-    cases where the lookup table would map a unicode character to-    the empty string for the base package, and this would print finding-    a good match in another package in the environment.-  * Added support for `\symbf` (#101).-  * Revert "migrating the lookup structures for Unicode/ToTex.hs to-    use C source files to accelerate builds."  This change gave us somewhat-    faster builds (using less memory), but at a huge cost of-    maintainability.-  * Removed AlignDefault from Alignment (API change, #102).-    AlignDefault doesn't make sense for a converter between-    formats that may have different defaults.  We now properly treat-    centering as the default in MathML and OMML input.--texmath (0.9.4.4)--  * Update tests that should have been updated for 0.9.4.3.--texmath (0.9.4.3)--  * MathML writer: put linethickness attribute directly on mfrac-    element. This fixes binomial rendering.--texmath (0.9.4.2)--  * Pandoc writer: better handle accented characters (jgm/pandoc#3922).--texmath (0.9.4.1)--  * Improved handling of accents and upper/lower delimiters (#98).-  * cgi: use cloudflare cdn for mathjax.--texmath (0.9.4)--  * Added writer for GNU eqn format (used with *roff).--    + New module Text.TeXMath.Writers.Eqn, exporting writeEqn.-    + Moved handleDownup to Shared.-    + Add eqn output option in texmath executable.-    + Add eqn writer tests.--texmath (0.9.3)--  * Expose pMacroDefinition in Text.TeXMath.Readers.TeX.Macros,-    with generalized type.--texmath (0.9.2)--  * Support `\newenvironment` and `\renewenvironment`.--texmath (0.9.1.1)--  * Added program to generate cbits/{key,val}ToASCII.c from a data file.-  * Migrate lookup structures for Unicode/ToTex.hs to use C-    source files to accelerate builds (Carter Tazio Schonwald).-  * Allow \boldsymbol + a token without braces.-    And same for other styling commands. Closes #94.-  * Better ghc-prof-options.--texmath (0.9.1)--  * Pandoc writer:  add thin space after math operators.-  * TeX reader: improve parsing of `\mathop` to allow-    multi-character operator names.-  * Minor optimizations.-  * Added Ord instances to Exp and associated types.--texmath (0.9)--  * OMML writer: Properly handle nary inside delimiters (#92).-    Previously under-overs inside delimiters didn't get-    converted to nary the way they did outside of delimiters.-  * TeX reader: Support bm, mathbold, pmd.-  * OMML reader: Handle w:sym (#65).-  * New module, Text.TeXMath.Unicode.Fonts, for MS font code point-    lookup.  Copied from pandoc Text.Pandoc.Readers.Docx.Fonts,-    which will be changed to import this.  [API change]-  * Fixed typo in test program for round-trip tests.-  * Parse math inside text constructions (#62).  E.g.-    `\text{if $y$ is greater than $0$}` Text and math can nest indefinitely.-  * Modify test suite so tests can be marked as "ought to raise error."-    So far this is only used in mml.  If the test is called foo-    and `readers/mml/foo.error` exists, then the test is expected-    to raise a parse error.-  * MathML reader err: Don't print colon after line number.-  * Restore proper error handling to MathML reader.  Note that the tests-    need to be redone, since they assumed the old behavior of just-    returning empty elements on parse errors.--texmath (0.8.6.7)--  * TeX reader: treat backslash + newline as like backslash + space.-    Previously this case gave an error.  See jgm/pandoc#3189.--texmath (0.8.6.6)--  * Allow pandoc-types 1.17.*.--texmath (0.8.6.5)--  * Fixed transposition of sub/super on operators (jgm/pandoc#3040).--texmath (0.8.6.4)--  * Support 'equation' environment, without the numbering of course.--texmath (0.8.6.3)--  * Use POST instead of GET for texmath-cgi.--texmath (0.8.6.2)--  * Fixed array alignment issues (jgm/pandoc#2864, jgm/pandoc#2310).-  * Use 1 and 0 for _Hide attributes, rather than on and off.-    Officially it seems that either 1/0 or true/false are wanted.-  * Fixed EUnderOver for omml output.  Previously both the under and-    the over part were being placed under (jgm/pandoc#2775).--texmath (0.8.6.1)--  * OMML writer:  Fixed rendering of roots, so that the degree appears-    in the right place.-  * OMML writer:  Don't include empty rPr elements.--texmath (0.8.6)--  * TeX reader: Support hundreds more math symbols (all of those defined in-    Text.TeXMath.Unicode.ToTeX), including `\nwarrow`, `\swarrow`,-    `\nearrow`, `\searrow` (#90).--texmath (0.8.5.1)--  * OMML writer: Fixed order of elements in nary formulas to conform-    to OMML spec (#88, Niko Weh).  `<e>` must follow the `<sup>` and `<sub>`-    parts of `<nary>`. This fixes rendering issues in LibreOffice-    (though Word copes with the incorrect order).-  * Added Paths_texmath to Other-Modules for texmath executable.--texmath (0.8.5)--  * TeX parser: Support limited styling inside \DeclareMathOperator (#85).-  * TeX reader: Correctly parse \mbox.  Its argument is text mode.-  * Updated mathml tests to use mo for operators.-  * TeX reader: support mathopen, mathclose, mathpunct.-  * MathML writer: render EMathOperator as mo, not mi (#86).-  * MathML: handle leading space in EText (#87).-  * Take --version in executable from cabal metadata.-  * Added Paths_texmath to other-modules.--texmath (0.8.4.2)--  * Fixed overbrace, underbrace (#82).  Previously we were using the wrong-    character: U+FE37 instead of U+23DE.  This didn't work in Word.-  * Support \mathop, \mathrel, \mathbin, \mathord-  * MathML - render Symbol Ord as mi, not mo (#83).-  * Handle align environments with > 2 cells per row (#84).--texmath (0.8.4.1)--  * Added stack install instructions.-  * Fixed bold-italic in OMML (#76).  Previously `\mathbfit` didn't work-    properly in OMML output.-  * Ignore `\nonumber` (#79).-  * Allow styling in `\operatorname` e.g. `\operatorname{\mathcal{L}}` (#80).-  * Fixed bug in `supHide` and `subHide` for OMML.  This  led to little-    empty boxes being displayed in integrals with subscripts but no-    superscripts.  See jgm/pandoc#2571.-  * Implemented `\mod` as a math operator (#81).  This doesn't capture all the-    spacing subtleties of the amsmath version, but should be good enough-    for most purposes.-  * Allow pandoc-types < 1.17.--texmath (0.8.4)--  * Improved symbol spacing in Pandoc output (jgm/pandoc#2261).-    This change avoids putting space around binary symbols that-    come at the beginning or end of a group, or appear on their-    own.  It also avoids spacing on a binary symbol that follows-    a Bin, Op, Rel, Open, or Punct atom, in accord with-    TeXBook Appendix G.  We could go farther towards exactly-    matching the TeXBook rules, but this simple change goes some of-    the way.-  * Added stack.yaml.--texmath (0.8.3)--  * Parse uppercase Greek letters as EIdentifier, not ESymbol Op.-    This fixes handling of things like `$Lambda^1$`, particularly in omml.--texmath (0.8.2.2)--  * Handle `.` after number with no following digits.--texmath (0.8.2.1)--  * Handle bare hyphen in `\text{...}`.  Closes jgm/pandoc#2274.-  * Support `\ltimes` and `\rtimes` in the TeX reader (Arata Mizuki).-  * Slightly more efficient number parser.--texmath (0.8.2)--  * Better handling of decimal points. Decimal points are now parsed-    as parts of numbers, not as separate symbols.  E.g. in MathML they-    now appear in `<mn>` elements.  Closes #74.--texmath (0.8.1)--  * OMML: Don't force everything into Roman font by default.-    This change ensures that variables will be italic by-    default in Word.  See jgm/pandoc#2075.--texmath (0.8.0.2)--  * Fixed typo in `defaultEnv` to include `amssymb` (#68).-  * Moved some lookup tables to C, and disabled aggressive-    profiling defaults, to avoid excessive memory usage in-    compiling with clang (#70).-  * Support `\newcommand*` in `parseMacroDefinition` (jgm/pandoc#2005).-  * Fixed order bug for over/under in OMML reader (#66).-  * Support `\boldsymbol` (#67).--texmath (0.8.0.1)--  * Added network-uri flag. This addresses the split of network-    and network-uri packages.-  * OMML reader: change default accent (Jesse Rosenthal).-    The default had previously been set as accute (possibly as a-    placeholder). It appears to be circumflex/hat instead.--texmath (0.8)--  * Added OMML reader (Jesse Rosenthal).-  * Support latex \substack (#57).-  * Added EBoxed and implemented in readers and writers (#58).-  * Handle latex \genfrac.  Use \genfrac for \brace, \brack,-    etc. when amsmath is available.-  * Improvements in handling of space characters.-  * Use ESpace rather than EText when a mathml mtext just contains-    a space.-  * Use \mspace when needed to get latex spaces with odd sizes, rather-    than finding the closest simple command.-  * Use Rational instead of Double in ESpaced, EScaled.-  * Shared: Export getSpaceWidth, getSpaceChars.-  * Shared: Export fixTree, isEmpty, empty (formerly in MathML reader).--texmath (0.7.0.2)--  * TeX reader:  further improvements in error reporting.-    Instead of reporting line and column, a snippet is printed-    with a caret indicating the position of the error.  Also-    fixed bad position information when control sequences are-    followed by a letter.--texmath (0.7.0.1)--  * TeX reader:--    + Improved error reporting.-    + Optimized parser.-    + Treat `\ ` as ESpaced rather than ESymbol.-    + Internal improvements, including using the parsec3 interface-      instead of the older parsec2 compatibility interface.--  * Added tests for phantom.--texmath (0.7)--  * Changes in Exp type:--    + Removed EUp, EDown, EDownup, EUnary, EBinary.-    + Added EFraction (and FractionType), ESqrt, Eroot, EPhantom.-    + Added boolean "convertible" parameter to EUnder, EOver, EUnderover.-    + Changed parameter of EScaled from String to Double.-    + Changed parameter of ESpace from String to Double.-    + Removed EStretchy.-    + Added EStyled, corresponding to mstyle in mathml, and \mathrm,-      \mathcal, etc. in TeX (which can contain arbitrary math content,-      not just text).-    + Changed the type of EDelimited.  The contents of an EDelimited are-      now either Right Exp or Left String (the latter case represents a-      fence in middle position, e.g. \mid| in LaTeX).--  * Module reorganisation:  the exposed interface has been completely-    changed, and modules for reading MathML and writing TeX math-    have been added:--    + All writers now reside in Text.TeXMath.Writers.-        - Text.TeXMath.MathML -> Text.TeXMath.Writers.MathML.-          toMathML and showExp are removed, writeMathML added.-        - Text.TeXMath.OMML -> Text.TeXMath.Writers.OMML.-          toOMML and showExp removed, writeOMML added.-        - Text.TeXMath.Pandoc -> Text.TeXMath.Writers.Pandoc.-          toPandoc removed, writePandoc added.-        - New module Text.TeXMath.Writers.TeX, exporting writeTeX,-          writeTeXWith, addLaTeXEnvironment (the latter giving control-          over which packages are assumed to be available).--    + All readers now reside in Text.TeXMath.Readers.-        - Text.TeXMath.MathMLParser -> Text.TeXMath.Readers.MathML,-	  exporting readMathML.-        - Text.TeXMath.Readers.TeX nows exports readTeX rather than-          parseFormula.--    + New modules for unicode conversion: Text.TeXMath.Unicode.ToASCII,-      Text.TeXMath.Unicode.ToTeX, Text.TeXMath.Unicode.ToUnicode.--    + Two MathML specific modules: Text.TeXMath.Readers.MathML.EntityMap,-      Text.TeXMath.Readers.MathML.MMLDict.--    + In Text.TeXMath, all the XtoY functions have been removed-      in favour of rexporting raw reader and writer functions. The-      data type Exp is now also exported.--  * Bug fixes and improvements.--    + TeX writer: Properly handle accents inside \text{}.-      Use real text environments for EText (\textrm, not \mathrm).-      Improved handling of scalers (\Big etc.).  Use amsmath matrix-      environments when appropriate.  Fixed \varepsilon.-    + MathML writer:  Omit superfluous outer mrows.  Add position-      information to fences.-    + OMML writer:  Handle \phantom.-    + Pandoc writer:  Use unicode characters to support Fraktur and-      other text styles.-    + TeX reader:  Use EUnder/Over for \stackrel, \overset, \underset.-      Improved handling of primes.  Fixed \notin.  Avoid superfluous-      grouping of single elements.  Improved handling of scalers (\Big etc.).-      Handle \choose, \brace, \brack, \bangle (#21).-    + Macros:  Don't raise an error if applying a macro fails to-      resolve to a fixed point; instead, just return the original string.--  * Rewrote test suite as a proper cabal test suite.  Added-    --regenerate-tests and --round-trip options.--  * Updated texmath online demo for bidirectional conversion.--  * Removed cgi and test flags.  Added executable flag to build texmath.--  * Modified texmath so it works like a cgi script when run as-    texmath-cgi (through symlink or renaming).  Removed dependency on-    the cgi package.--texmath (0.6.7)--  * New Module: Text.TeXMath.Unidecode, a module for approximating-    unicode characters in ASCII.-  * New Module: Text.TeXMath.Shared, a module for shared lookup-    tables between the various readers and writers-  * New Module: Text.TeXMath.MathMLParser, exporting readMathML.-  * New Module: Text.TeXMath.EntityMap, exporting getUnicode,-    a conversion table from MathML entities to unicode characters.-  * New Module: Text.TeXMath.UnicodeToLaTeX, exporting getLaTeX,-    converting a string of unicode characters to a string of equivalent LaTeX-    commands.-  * New Module: Text.TeXMath.LaTeX, replacing Text.TeXMath.Parser,-    exporting toTeXMath.-  * New Module: Text.TeXMath.MMLDict, implements a lookup table from-    operators to their default values as defined by the MML dictionary,-    exporting getOperator.-  * New Module: Text.TeXMath.Compat, maintaining compatibility with-    mtl < 2.2.1.-  * Modified Text.TeXMath to export the primitive readers, as well as-    mathMLTo{Writer} for all writers-  * Modified: Text.TeXMath.Types: added additional record types for-    Text.TeXMath.MMLDict and Text.TeXMath.UnicodeToLaTeX.-    New Exports: Operator(..), Record(..).-  * Modified test suite:  use cabal test, added significant number of tests.-  * Added recognition of the LaTeX command \phantom--texmath (0.6.6.3)--  * Use combining tilde accent for \tilde.  Closes pandoc #1324.--texmath (0.6.6.2)--  * Allow \left to be used with ), ], etc.  Ditto with \right.-    Previously only (, [, etc. were allowed with \left.  Closes pandoc #1319.--texmath (0.6.6.1)--  * Support \multline (previously it was mispelled "multiline")-  * Changed data-files to extra-source-files.--texmath (0.6.6)--  * Insert braces around macro expansions to prevent breakage (#7).-  * Support \operatorname and \DeclareMathOperator (rekka) (#17).-  * Support \providecommand (#15).-  * Fixed spacing bugs in pandoc rendering (#24).-  * Ignore \hline at end of array row instead of failing (#19).-
+ changelog.md view
@@ -0,0 +1,1121 @@+texmath (0.13.2)++  * Require typst-symbols 0.3++  * Add starmath as output format (#289, John Pye).+    [API change] New Text.TeXMath.Writers.StarMath module, exporting+    `writeStarMath`. The function is also exported by Text.TeXMath.+    Starmath is the format used by LibreOffice. Although LibreOffice+    supports equations in MathML, it converts these to starmath (often+    badly), and the starmath version is the user-editable one. The+    starmath writer is provided in order to better support math in ODT+    generated by pandoc. An extensive review (see the tools+    subdirectory for the scripts that produce it) shows that this+    writer's starmath produces better results in LibreOffice than the+    mathml writer.++texmath (0.13.1.2)++  * Typst writer: Avoid using deprecated symbols (#287).+    This requires depending on typst-symbols 0.2.*.++texmath (0.13.1.1)++  * Typst writer: don't add extra spaces around `|` or escaped+    symbols (#286).++texmath (0.13.1)++  * MathML writer: Keep mathvariant attribute in addition to finding+    unicode substitutes (#280). Previously, renderers didn't support+    mathvariant consistently, so we omitted this attribute. Tested in+    Safari, Firefox, and Chrome.++  * OMML writer: properly handle bold/italics on identifiers (#280).+    Identifiers marked as bold need to be marked as bold-italic.+    Special exception for uppercase Greek.++  * MathML writer: fix handling of italic (#280).++  * OMML reader: handle w:ins elements in math (#278).+    Previously we skipped these, which meant that content+    would disappear.++  * TeX reader: handle space commands in `\text{..}` (#277).++  * TeX reader: Allow text operators to take an unbracketed argument (#276).++texmath (0.13.0.2)++  * Escape ; in typst output (#275).++  * Update tests for latest typst symbols.++  * Require typst-symbols 0.1.9.1.++texmath (0.13.0.1)++  * TeX reader: fix parsing of primes (#273).+    We previously misparsed `a_i'` as `a_{i'}` rather than `{a_i}'`.++  * Typst writer: fix position of primes with ESubSup.+    In typst, unlike tex, the primes must come after the base.++texmath (0.13)++  * Add cancellation of terms for most formats. (#271, #251, #269).+    This adds support for LaTeX `\cancel`, `\bcancel`, `\xcancel`,+    and their equivalents in OMML, MathML, and Typst.++    [API change]: add StrokeType and ECancel constructor on Exp.++  * MathML writer: add `mathvariant="normal"` on math operators,+    unless a different style is specifically called for (#270).++  * Don't escape `*` in typst math output (#268).++  * TeX writer: Use `\underbracket` instead of `\underset` U+23B5 (#267).++texmath (0.12.10.3)++  * MathML writer: fix rendering of EScaled (#264, Ewan Davies).+    Use `%` values for `maxwidth` and `minwidth`, and set `stretchy` to+    `true`. Otherwise browsers do not rescale.++  * TeX reader: Support all r/l variants of `\big`, `\bigg`, `\Big` (#266).++  * Require typst-symbols >= 0.1.8.1.++texmath (0.12.10.2)++  * Use texmath-symbols 0.1.8 (supports typst 0.13 symbols).++texmath (0.12.10.1)++  * MathML writer: group function application with operator name (#262).+    This fixes an issue with munder/mover. Previously the mo+    with the U+2061 was being put under the 'lim' operator+    instead of 'n -> oo'. Grouping them ensures that munder/mover+    will work properly.++texmath (0.12.10)++  * texmath-server:++    + Change endpoints: `/convert` to root, and `/convert-batch` to `/batch`.+    + Allow running as CGI if renamed pandoc-server.cgi. In this mode it+      accepts JSON content with POST requests or parameters with GET requests,+      just like pandoc-server itself.++  * TeX reader:++    + Fix parsing bug with comment at beginning of braced (#258).+    + Support negative numbers in `\hspace` (#259).+    + Allow decimals in `\hspace` (#259).+    + Support `\quad` in `\text` (#260).++texmath (0.12.9)++  * Better handling of primes in eqn, typst, and tex writers.+    These writers now render a superscript containing prime+    characters using a sequence of `'` characters, e.g.+    `f''`. This syntax is supported by all three formats.++  * Use Planck constant for italic h in unicodeTable. There is no+    regular italic h in Unicode because this already existed in Planck+    constant.++  * Text.TeXMath.Shared: expose `isRLSequence` and `toPrimes` and+    new function `isUpppercaseGreek` [API change, non-breaking].++  * OMML reader: consolidate adjacent texts with same style.+    This affects EStyled and EText elements. This way we get+    `\mathbf{123abc456}` in LaTeX output instead of+    `\mathbf{123}\mathbf{abc}\mathbf{456}`. See+    https://github.com/jgm/pandoc/discussions/10560 for discussion.++  * OMML writer:++    + Use `m:eqArr` rather than `m:m` for arrays with alternating+      right, left alignments (#209). (In other writers, TeX and MathML,+      we presume that these are aligned equations.)+    + Fix order of `scr` and `sty` elements (#253).+    + Use upright style by default for uppercase Greek.++  * MathML reader: properly handle `mmultiscripts` (#252).++  * MathML writer:++    + Improve formatting of aligned equations (#207).+      An EArray with alternating R,L alignments will be assumed+      to be aligned equations and rendered without padding.+    + Use `mi` for EMathOperator. Also: insert the unicode 0x2061+      "function application" character after a math operator, unless+      it's already there. Ensure that all 0x2061 characters are in+      `mo` rather than `mi`.+    + Use upright style for uppercase Greek by default (#255).+    + Fix invalid `displaystyle` attribute. The attribute goes on+      enclosing mstyle, not directly on `mfrac`.++  * TeX reader:++    + Parse primes as superscripts (#254). This seems to be+      how TeX behaves under the hood: `f'` is equivalent to `f^{\prime}`.+    + Avoid implicit pairing of delimiters (reverts #172).+    + Use `EIdentifier` instead of `ESymbol Alpha` for `\ell`, etc (#256).+    + Use Pun for primes in TeX reader, revise type of `toPrimes`.+      This will ensure that `mo` is used for primes in MathML.++  * test-texmath: allow `mathml` in addition to `mml` to specify mathml.++  * Add `binpath` Makefile target.++texmath (0.12.8.13)++  * Remove special override for `\perp` in Text.TeXMath.Readers.TeX.Commands+    (#247). This caused `\perp` to be read as U+22A5 instead of U+27C2.  This+    addresses the mismatch with the TeX writer (which associates `\bot` with+    U+22A5 and `\perp` with U+27C2).++  * Typst writer:++    + Fix several issues with accents and attachments (#245).+    + Fix handling of some EOver with combining accents (#245).+    + Escape backslash in text context (#245).++texmath (0.12.8.12)++  * TeX writer: render prime and superscripted prime as `'` (#246).++  * TeX reader:++    + Don't crash on array with `\hline` before blank cell (#244).+    + Skip whitespace in array column specifier (#244).++  * OMML writer:++    + Fix order of dPr attributes (#243).++  * Typst writer:++    + Escape commas (#242). Otherwise we can get bad results e.g. in fractions,+      when the commas separate arguments.++  * Require typst-symbols 0.1.7, update tests.++texmath (0.12.8.11)++  * TeX reader: Ignore `@{..}` and `!{..}` in array alignment specifiers (#241).++  * TeX reader: ignore `\color` instead of crashing (#225).++texmath (0.12.8.10)++  * TeX reader: allow `\lVert .. \vVert` to create an EDelimited (#238).++  * Typst writer: improved handling of primes (#239).+    Use `'` instead of e.g. `prime`. Don't put a space before primes.++  * Typst writer: improve rendering of EDelimited (#238).++  * Typst writer: use `mid()` for middle delimiters (#238).++texmath (0.12.8.9)++  * Parse TeX `\mathbf` as both bold and upright (#236).++texmath (0.12.8.8)++  * TeX reader: support unicode-math Greek symbols, e.g. `\Alpha` (#235).+    This includes symbols like `\Alpha` and `\omicron` that weren't+    defined in original TeX.++  * Use typst-symbols 0.1.6++texmath (0.12.8.7)++  * TeX reader: convert Bin symbols to Ord when appropriate (#234).+    E.g. in '-3', we should have an Ord rather than a Bin, so+    the spacing will be appropriate.++  * Pandoc writer: fix spacing inside EDelimited (#234).+    Previously spaces around binary operators were omitted when+    they occurred inside parens or brackets.++  * test-texmath: allow pandoc output.++texmath (0.12.8.6)++  * Typst writer: avoid redundant `lr`s (#233).++texmath (0.12.8.5)++  * Typst writer: use ASCII symbols when possible instead of symbols (#232).+    E.g., `+` instead of `plus`. Add `\` to characters needing escape.+    Enhance list of characters that need escaping.++  * Typst writer: fixed EBoxed output so it includes a border.++  * Handle `\ddot` better in conversion to typst (#231).++  * Use typst-symbols 0.1.5++texmath (0.12.8.4)++  * TeX reader: ignore `\allowbreak` (#230).++  * TeX reader: handle `*{5}{lr}` in array column specifier (#229).++  * OMML reader: allow `m:e` to be missing in `m:nary` (#228).+    Technically this is not allowed, according to the spec, but+    Word and LibreOffice seem to tolerate it.++texmath (0.12.8.3)++  * OMML writer: use "on" and "off" instead of "1" and "0" for+    m:CT_OnOff type.  It is said that "1" and "0" work in Word+    but not Powerpoint.++texmath (0.12.8.2)++  * Typst writer: use binom instead of a fraction (jgm/pandoc#9063).++texmath (0.12.8.1)++  * Typst writer: several fixes (#223, Lleu Yang).++    + Escape quotes (") in inQuotes+    + Accent `\8407` corresponds to `arrow()`+    + Write `#none`'s for matrices with blanks at the beginning of a row++texmath (0.12.8)++  * Expose Text.TeXMath.Shared [API change]++  * Typst writer: Fix bug where 's' turned into 'space' (#219).++  * Typst writer: Fix handling of overline (#214).++  * Typst writer: Fix underbrace (#217).++  * Typst writer: Improve some accents (#216).++  * TeX writer: don't include \\ on last line of matrix.++  * TeX writer: Remove escaping of spaces inside \text{}.+    It isn't needed, and it causes problems in MathJax rendering.++  * TeX reader: allow empty matrices.++  * MathML writer: Fix rendering of vectors (#218).++  * Depend on external typst-symbols package.++texmath (0.12.7.1)++ * Typst writer:++   + Improve under/overbrace/bracket/line.+   + Fix bugs with super/subscript grouping (#212).+   + Fix case where super/subscript is on an empty element,+     by inserting a zws.++texmath (0.12.7)++  * Add typst writer. New module: Text.TeXMath.Writers.Typst.++  * TeX reader: Support multilined environment. Closes #210.++texmath (0.12.6)++  * MathML writer:++    + Use style with CSS as well as columnalign (#205).+      This seems to be needed by browser implementations of MathML.+    + Remove reliance on mstyle (#205). mstyle doesn't seem to be+      supported any more, at least in browser implementations of MathML,+      and the documentation indicates that it is treated like mrow now+      that styles can go directly on child elements. This commit removes+      our use of mstyle. Instead of using mstyle, we change mathvariant+      attributes on descendent elements (and displaystyle attributes on+      direct children, in the case of fractions).+    + Extend our existing use of unicode replacements, since many+      implementations don't properly handle mathvariant. We now get+      variant characters for mo, mn, and all elements that can sensibly+      take them, not just mi and mtext.+    + Omit mathvariant attribute unless we can't find appropriate Unicode.+      When MathML is displayed by ODT, having BOTH a bold math Unicode+      character and a mathvariant="bold" attribute seems to confuse it.+      (Browsers don't care either way.) This gives us more compact and+      readable output, as well.++texmath (0.12.5.5)++  * Allow pandoc-types 1.23.++  * TeX reader: remove false positives for isConvertible (#204).+    "Convertible" symbols are those in which subscripts render+    under the symbol in display environments, and as subscripts+    in inline environments. Previously the TeX parser recognized+    all relation and binary symbols as convertible, which does not+    match TeX's behavior.++  * TeX reader: Support `\enspace` (#203).++texmath (0.12.5.4)++  * OMML reader: fix treatment of `eqArr` (#196).+    This change also includes a change to the TeX writer: any array+    with an alternating sequence of R,L alignments will be rendered+    as an aligned environment (not just a single [R,L] as currently).++  * OOML Writer: Add low line char ("_") to `isBarChar` (#193, Hagb).+    Closes jgm/pandoc#8152.++  * Eqn writer: use `-` for minus, `cdots` for cdots (#200).++texmath (0.12.5.3)++  * Eqn writer: avoid empty `{}` (#198).+    This causes an error, along the lines of+    ```+    eqn:<standard input>:73: error: syntax error+     context is+            } above { >>> } <<<+    ```+    which can be avoided if we use `{""}`.++texmath (0.12.5.2)++  * Fix bug in implementation of `\mspace` (#195).++texmath (0.12.5.1)++  * Compile texmath-server with `-threaded`.+    This should fix the crashes we have experienced.++  * Add apache style logging to web server.++  * Add more strictness in Unicode.ToTeX.++texmath (0.12.5)++  * TeX reader: Improve treatment of `\operatorname` (#147).+    We can now handle spaces, as in `\operatorname{arg\,max}`.+    We also now have a better fallback when the operator name+    contains content that can't be turned into plain text.+    (In this case, we just pass through the contents, since EMathOperator+    takes a text argument.)++  * TeX: Support more `\var...` commands for greek letters (Albert+    Krewinkel). AMSmath defines `\varGamma`, `\varDelta`, `\varTheta`,+    `\varLambda`, `\varXi`, `\varPi`, `\varSigma`, `\varUpsilon`, `\varPhi`,+    `\varPsi`, and `\varOmega`, all of which are now parsed as unicode+    characters *MATHEMATICAL ITALIC CAPITAL ...*.  Also, `\varsigma` is+    now parsed as *MATHEMATICAL SMALL FINAL SIGMA*.++  * OMML writer: better handling for scaled delimeter symbols (#140).+    We now try to represent these using m:d when possible.+    This allows the parentheses to expand with the content;+    previously we'd often get small parentheses with large+    contents.++  * OMML reader:++    + Allow m:pos to be missing or lack an attribute in m:bar (#187).+    + Set the default value of pos to "bot" (Maximilian Meier).+    + Implement support for noBar fractions (#191, Meimax).++  * Add servant-based server with a JSON API.++  * Remove old cgi directory.++  * Improve test suite (#189).  The existing test suite was a complicated+    mess, so that it was hard to add new tests.  (One of the problems+    was that the same files were used as golden files for reader+    tests and as sources for writer tests.) This commit shifts+    the same tests to a new, easier to understand format, so that+    it will be simple to add new tests in the future.  We now use+    the tasty test framework, and we use pretty-show to make the+    native golden tests easier to comprehend.++  * Add regression tests.++texmath (0.12.4)++  * TeX reader: handle hyperref better (#186).  We don't parse it as a link,+    but we pass its contents through rather than failing.++  * Update scripts and data in `lib/` directory. These are not build+    dependencies, but they were used to produce some of the large+    tables in the source code.  Fixed the scripts and Makefile to work+    with recent texmath and cabal.  Removed two very large unicode data+    files that can be downloaded when needed.  (This reduces the size of+    the source tarball considerably.) Remove `lib/toascii` (no longer used).++  * Update MMLDict using latest unicode.xml.++  * TeX reader: support siunitx `\qty`, `\qtyrange`, `\unit` (#185).++  * Remove Text.TeXMath.Compat.  We can now safely require mtl >= 2.2.1.++  * Use symbolMap from ToTeX to shorten the long hardcoded symbols list.+    Now we only hard-code items that differ what what is in symbolMap.+    This reduces the code size by thousands of lines.++  * Unicode.ToTeX: export `symbolMap` [API change].  This uses the data in+  `records` to create a backwards mapping from TeX commands to Exps (ESymbol+      elements).  This can replace most of the hardcoded list in the current+  TeX reader.++  * Split out TeXMath.Readers.TeX.Commands internal module.+    This makes the TeX reader shorter and should help compile times.++  * OMML reader: better handling of m:t nodes (#151).+    Previously we parsed an m:t element as an EIdentifier if it contains a+    single letter, but an EText TextNormal if it contains more than one.  This+    gave bad results in some cases.  It is better to reserve EText for the+    case where the m:nor property is specified for "normal text."++  * Require base >= 4.11.++  * Remove `network-uri` flag from stack.yaml.+++texmath (0.12.3.3)++  * OMML writer: use nary only for operators supported by LibreOffice+    (Albert Krewinkel).  LibreOffice (and possibly Word, too) can handle+    only a small set of operators in an `nary` element.++  * TeX writer: use `\xleftarrow`, `\xrightarrow` where sensible+    (Albert Krewinkel).  The commands are generated for expressions over `←`+    or `→`. Besides being more idiomatic, this change also prevents the+    generation of invalid LaTeX, as `\leftarrow` and `\rightarrow` are not+    math operators and hence may not be followed by `\limit`.+    Both commands are part of amsmath.sty.++  * TeX reader:++    + Improve angled-bracket support (Albert Krewinkel).+      The amsmath package allows `\left<` and `\right>` as alternatives to+      `\left\langle` and `\right\rangle`, respectively.+    + Ignore stared version of `\tag` (Albert Krewinkel).+    + Support \dots{c,b,m,i,o} from amsmath (#179).+    + Change symbol returned for \dots{b,i,m} from `…` to `⋯`+      (Albert Krewinkel).++texmath (0.12.3.2)++  * OMML writer: remove m:nor element in math operators (#178).+    This caused the document's main font, rather than the math+    font, to be used in formatting operators, which is undesirable.++texmath (0.12.3.1)++  * MathML reader: don't allow mfenced attributes to inherit (#177).+    When open and close attributes aren't given on an mfenced,+    we should use defaults rather than inheriting these from a+    parent mfenced.++texmath (0.12.3)++  * TeX reader: implement logic to convert a Bin symbol to+    an Op to Op when it occurs at the beginning of a group,+    or after an Open, Pun, or Op symbol. This will give much+    better results for unary `-` (#176).++  * OMML writer: fixed rendering of EDelimited (#173).+    We now properly render "middles" (separators).++texmath (0.12.2)++  * MathML input: support mmultiscripts element (#158, #100).++  * Make MathML tag/attr recognition case-insensitive (#158).++  * Pandoc writer: better handling of styling such as `\mathrm` (#145).+    Previously identifiers were always italic, no matter what+    styling was applied.++  * Ignore `\tag` in TeX input (#162).++  * TeX writer: avoid unneeded `\left` and `\right` for delimited.+    We don't need `\left` and `\right` when the contents are+    "standard height."++  * TeX reader: parse implicit EDelimited sections (#172).+    We now parse `(x)` as EDelimited, even though `\right` and `\left`+    are not used.++texmath (0.12.1.1)++  * Fix compilation with GHC-9.0.1 (#169, Simon Jakobi).+    Background:+    https://gitlab.haskell.org/ghc/ghc/-/wikis/migration/9.0#simplified-subsumption+  * Add eqn to online demo.+  * Improve error messages for unknown control sequences, and restructure+    tex parser to be more efficient (#167).++texmath (0.12.1)++  * OMML writer: explicitly mark symbols as non-italic (#109).+    Otherwise, for some reason, they appear as italic by default.+  * Improve error messages in reading tex arrays.+  * Improve support for `\bmod`, `\mod`, etc. (#165).+    Allow them to take complex arguments like `\left( 1 \right)`.+  * Improve support for `\genfrac` (#164).+  * Ignore `\textstyle`, `\scriptstyle`, `\scriptscriptstyle`,+    as we currently ignore `\displaystyle`.+  * Parse siunitx commands in reading tex (#157).+  * Improve handling of `\not` in reading tex (#161).+    Previously we only handled `\not` in front of certain symbols.+  * Support `\pod` and `\pmod` and clean up spacing and font for+    `\mod` and `\bmod` (#160).++texmath (0.12.0.3)++  * Allow pandoc-types 1.22.++texmath (0.12.0.2)++  * Allow pandoc-types 1.21.+  * Pandoc output: omit empty Emph for sub/superscript without base (#155).+  * tex writer: Use `\overline{\overline{B}}` instead of unicode+    double line accent (#153).++texmath (0.12.0.1)++  * OMML writer: Fix overline and accent rendering (#152).+  * OMML reader: Fix dropped arrows (#153). Add tests.++texmath (0.12)++  * Use Text instead of String in data types and functions+    (Christian Despres) [API change].  Note that there are still a few+    places where we unpack Text to String with a view pattern:+    performance could likely be increased with further rewriting.+  * Avoid use of !! with negative index (jgm/pandoc#5853).++texmath (0.11.3)++  * Use error instead of fail to allow building with ghc 8.8.+  * Test output: remove superfluous spaces after control sequences,+    superfluous groups, and unicode VARIATION SELECTOR 1.+  * renderTeX: add space between control sequence and any non-ASCII+    character.  There are differences in behavior of isAlphaNum between+    different ghc versions that would affect test output otherwise.+  * charToLaTeXString: Ignore 65024 VARIATION SELECTOR 1 to avoid putting+    it literally in the output ; it is used in mathml output and occurs+    in many of the test cases.+  * Add cabal.project.+  * Use actions rather than travis for CI.++texmath (0.11.2.3)++  * OMML reader: properly distinguish normal text from math (#136).+    If `m:nor` or `m:lit` is set in `m:rPr`, we interpret the+    contents as literal text and not as math.+  * TeX reader: use different symbol (`_`) for `\underline` (#142).+    This gets the right accent properties on MathML output, so+    that the underline is not lower than it should be.+  * TeX reader: Treat `\bmod` as a relational symbol rather than+    an operator (#143).  This fixes spacing problems in several+    output formats.++texmath (0.11.2.2)++  * OMML writer: use m:nor for normal text (#135).++texmath (0.11.2.1)++  * OMML reader: Don't collapse `fName` to a string (#133).+    This fixes cases where fName has some complexity, e.g.+    a subscript or limit.++texmath (0.11.2)++  * Improved handling of \mathop etc (#126).  We now allow operators like+    `arg\,min`, converting the space into unicode.+  * Support \hspace (#126).+  * Support \hdots as synonym of \ldots (#126).+  * Support \mathds (#126).+  * In parsing array, ignore `|` in column specs (#127).+    We have no way to represent this in EArray, currently.+    Ignoring them seems better than failing altogether.++texmath (0.11.1.2)++  * Eqn writer: properly escape `{` and `}`.+  * Set more accurate bounds (Herbert Valerio Riedel).++texmath (0.11.1.1)++  * Fix building with ghc-8.6.1 by removing need for now missing+    MonadFail instances (Jonas Scholl).+  * TeX reader: Allow operators like `/` to be scaled (#120).+  * TeX reader: Improved efficiency of basicEnclosure.+  * TeX reader: Handle `\bmod` (#115).++texmath (0.11.1)++  * OMML writer: Use m:acc for accents in OMML (#119).  This fixes+    some spacing issues for e.g. the translation of `\dot{m}`.++texmath (0.11.0.1)++  * OMML writer: use zero-width space to avoid dashed box (#118).+    In Word, a dashed box shows up for empty text runs in+    exponents and bases, or empty exponents and bases.  So+    we use a zero-width space in these contexts.++texmath (0.11)++  * Changed treatment of non-ASCII characters.+    Previously we ensured that the output of conversion to tex+    was pure ASCII.  This meant rendering "ä" as "a", for+    example, and it meant that many characters (e.g. Chinese)+    simply got replaced with an empty string, while others+    got replaced with "[?]".++    This was not a particularly helpful behavior.  Including+    the unicode characters verbatim doesn't interfere with+    latex compilation.  They often won't show up in the generated+    math, but that is no worse than what happened before.++    This change passes through unicode characters unchanged+    when they can't be converted to standard LaTeX commands.++    An important reason for including the unicode characters+    is that pandoc uses TeX to represent math in its AST.+    So, for example, if you convert HTML with mathml to docx,+    you'll currently lose all Chinese characters, since they'll+    disappear in the TeX intermediary, even though a direct+    mathml to ooml conversion would have passed them through.+    With this change, these conversions will work better+    (see jgm/pandoc#4642).++    + Removed Text.TeXMath.Unicode.ToASCII (API change).+    + Removed cbits that were needed for that module.+    + Modified Tex.TeXMath.Unicode.ToTeX to pass through+      unicode characters that can't be converted, rather+      than trying to asciify them or remove them.++  * Render degree symbol in tex as `{^\circ}`.++texmath (0.10.1.2)++  * eqn writer:  use uppercase letters in unicode escapes (jgm/pandoc#4597).++texmath (0.10.1.1)++  * Handle multicharacter operators better in Eqn, TeX, OMML (#109).++  * OMML reader: unwrap `<w:...>` tags immediately under `<m:oMath>`+    (#111, Jesse Rosenthal).++texmath (0.10.1)++  * Expose Text.TeXMath.TeX (TeX rendering functions) (#108).+    This is needed in order to use getTeXMath from Text.TeXMath.Unicode.ToTeX.+  * Pandoc writer: don't insert punctuation space before explicit space+    (#107).  E.g. in `2,\!4`.+  * Fix end-line command ('\\') in AMSmath environments (ARATA Mizuki).+    The end-line command in AMSmath environments does not allow spaces+    before its optional argument.+  * Use `\in` for SMALL ELEMENT OF in "base" (Vaclav Haisman).++texmath (0.10)++  * Use `\ni` in base for U+220D (#103).+  * Improved unicode -> tex symbol lookup.  Previously we had many+    cases where the lookup table would map a unicode character to+    the empty string for the base package, and this would print finding+    a good match in another package in the environment.+  * Added support for `\symbf` (#101).+  * Revert "migrating the lookup structures for Unicode/ToTex.hs to+    use C source files to accelerate builds."  This change gave us somewhat+    faster builds (using less memory), but at a huge cost of+    maintainability.+  * Removed AlignDefault from Alignment (API change, #102).+    AlignDefault doesn't make sense for a converter between+    formats that may have different defaults.  We now properly treat+    centering as the default in MathML and OMML input.++texmath (0.9.4.4)++  * Update tests that should have been updated for 0.9.4.3.++texmath (0.9.4.3)++  * MathML writer: put linethickness attribute directly on mfrac+    element. This fixes binomial rendering.++texmath (0.9.4.2)++  * Pandoc writer: better handle accented characters (jgm/pandoc#3922).++texmath (0.9.4.1)++  * Improved handling of accents and upper/lower delimiters (#98).+  * cgi: use cloudflare cdn for mathjax.++texmath (0.9.4)++  * Added writer for GNU eqn format (used with *roff).++    + New module Text.TeXMath.Writers.Eqn, exporting writeEqn.+    + Moved handleDownup to Shared.+    + Add eqn output option in texmath executable.+    + Add eqn writer tests.++texmath (0.9.3)++  * Expose pMacroDefinition in Text.TeXMath.Readers.TeX.Macros,+    with generalized type.++texmath (0.9.2)++  * Support `\newenvironment` and `\renewenvironment`.++texmath (0.9.1.1)++  * Added program to generate cbits/{key,val}ToASCII.c from a data file.+  * Migrate lookup structures for Unicode/ToTex.hs to use C+    source files to accelerate builds (Carter Tazio Schonwald).+  * Allow \boldsymbol + a token without braces.+    And same for other styling commands. Closes #94.+  * Better ghc-prof-options.++texmath (0.9.1)++  * Pandoc writer:  add thin space after math operators.+  * TeX reader: improve parsing of `\mathop` to allow+    multi-character operator names.+  * Minor optimizations.+  * Added Ord instances to Exp and associated types.++texmath (0.9)++  * OMML writer: Properly handle nary inside delimiters (#92).+    Previously under-overs inside delimiters didn't get+    converted to nary the way they did outside of delimiters.+  * TeX reader: Support bm, mathbold, pmd.+  * OMML reader: Handle w:sym (#65).+  * New module, Text.TeXMath.Unicode.Fonts, for MS font code point+    lookup.  Copied from pandoc Text.Pandoc.Readers.Docx.Fonts,+    which will be changed to import this.  [API change]+  * Fixed typo in test program for round-trip tests.+  * Parse math inside text constructions (#62).  E.g.+    `\text{if $y$ is greater than $0$}` Text and math can nest indefinitely.+  * Modify test suite so tests can be marked as "ought to raise error."+    So far this is only used in mml.  If the test is called foo+    and `readers/mml/foo.error` exists, then the test is expected+    to raise a parse error.+  * MathML reader err: Don't print colon after line number.+  * Restore proper error handling to MathML reader.  Note that the tests+    need to be redone, since they assumed the old behavior of just+    returning empty elements on parse errors.++texmath (0.8.6.7)++  * TeX reader: treat backslash + newline as like backslash + space.+    Previously this case gave an error.  See jgm/pandoc#3189.++texmath (0.8.6.6)++  * Allow pandoc-types 1.17.*.++texmath (0.8.6.5)++  * Fixed transposition of sub/super on operators (jgm/pandoc#3040).++texmath (0.8.6.4)++  * Support 'equation' environment, without the numbering of course.++texmath (0.8.6.3)++  * Use POST instead of GET for texmath-cgi.++texmath (0.8.6.2)++  * Fixed array alignment issues (jgm/pandoc#2864, jgm/pandoc#2310).+  * Use 1 and 0 for _Hide attributes, rather than on and off.+    Officially it seems that either 1/0 or true/false are wanted.+  * Fixed EUnderOver for omml output.  Previously both the under and+    the over part were being placed under (jgm/pandoc#2775).++texmath (0.8.6.1)++  * OMML writer:  Fixed rendering of roots, so that the degree appears+    in the right place.+  * OMML writer:  Don't include empty rPr elements.++texmath (0.8.6)++  * TeX reader: Support hundreds more math symbols (all of those defined in+    Text.TeXMath.Unicode.ToTeX), including `\nwarrow`, `\swarrow`,+    `\nearrow`, `\searrow` (#90).++texmath (0.8.5.1)++  * OMML writer: Fixed order of elements in nary formulas to conform+    to OMML spec (#88, Niko Weh).  `<e>` must follow the `<sup>` and `<sub>`+    parts of `<nary>`. This fixes rendering issues in LibreOffice+    (though Word copes with the incorrect order).+  * Added Paths_texmath to Other-Modules for texmath executable.++texmath (0.8.5)++  * TeX parser: Support limited styling inside \DeclareMathOperator (#85).+  * TeX reader: Correctly parse \mbox.  Its argument is text mode.+  * Updated mathml tests to use mo for operators.+  * TeX reader: support mathopen, mathclose, mathpunct.+  * MathML writer: render EMathOperator as mo, not mi (#86).+  * MathML: handle leading space in EText (#87).+  * Take --version in executable from cabal metadata.+  * Added Paths_texmath to other-modules.++texmath (0.8.4.2)++  * Fixed overbrace, underbrace (#82).  Previously we were using the wrong+    character: U+FE37 instead of U+23DE.  This didn't work in Word.+  * Support \mathop, \mathrel, \mathbin, \mathord+  * MathML - render Symbol Ord as mi, not mo (#83).+  * Handle align environments with > 2 cells per row (#84).++texmath (0.8.4.1)++  * Added stack install instructions.+  * Fixed bold-italic in OMML (#76).  Previously `\mathbfit` didn't work+    properly in OMML output.+  * Ignore `\nonumber` (#79).+  * Allow styling in `\operatorname` e.g. `\operatorname{\mathcal{L}}` (#80).+  * Fixed bug in `supHide` and `subHide` for OMML.  This  led to little+    empty boxes being displayed in integrals with subscripts but no+    superscripts.  See jgm/pandoc#2571.+  * Implemented `\mod` as a math operator (#81).  This doesn't capture all the+    spacing subtleties of the amsmath version, but should be good enough+    for most purposes.+  * Allow pandoc-types < 1.17.++texmath (0.8.4)++  * Improved symbol spacing in Pandoc output (jgm/pandoc#2261).+    This change avoids putting space around binary symbols that+    come at the beginning or end of a group, or appear on their+    own.  It also avoids spacing on a binary symbol that follows+    a Bin, Op, Rel, Open, or Punct atom, in accord with+    TeXBook Appendix G.  We could go farther towards exactly+    matching the TeXBook rules, but this simple change goes some of+    the way.+  * Added stack.yaml.++texmath (0.8.3)++  * Parse uppercase Greek letters as EIdentifier, not ESymbol Op.+    This fixes handling of things like `$Lambda^1$`, particularly in omml.++texmath (0.8.2.2)++  * Handle `.` after number with no following digits.++texmath (0.8.2.1)++  * Handle bare hyphen in `\text{...}`.  Closes jgm/pandoc#2274.+  * Support `\ltimes` and `\rtimes` in the TeX reader (Arata Mizuki).+  * Slightly more efficient number parser.++texmath (0.8.2)++  * Better handling of decimal points. Decimal points are now parsed+    as parts of numbers, not as separate symbols.  E.g. in MathML they+    now appear in `<mn>` elements.  Closes #74.++texmath (0.8.1)++  * OMML: Don't force everything into Roman font by default.+    This change ensures that variables will be italic by+    default in Word.  See jgm/pandoc#2075.++texmath (0.8.0.2)++  * Fixed typo in `defaultEnv` to include `amssymb` (#68).+  * Moved some lookup tables to C, and disabled aggressive+    profiling defaults, to avoid excessive memory usage in+    compiling with clang (#70).+  * Support `\newcommand*` in `parseMacroDefinition` (jgm/pandoc#2005).+  * Fixed order bug for over/under in OMML reader (#66).+  * Support `\boldsymbol` (#67).++texmath (0.8.0.1)++  * Added network-uri flag. This addresses the split of network+    and network-uri packages.+  * OMML reader: change default accent (Jesse Rosenthal).+    The default had previously been set as accute (possibly as a+    placeholder). It appears to be circumflex/hat instead.++texmath (0.8)++  * Added OMML reader (Jesse Rosenthal).+  * Support latex \substack (#57).+  * Added EBoxed and implemented in readers and writers (#58).+  * Handle latex \genfrac.  Use \genfrac for \brace, \brack,+    etc. when amsmath is available.+  * Improvements in handling of space characters.+  * Use ESpace rather than EText when a mathml mtext just contains+    a space.+  * Use \mspace when needed to get latex spaces with odd sizes, rather+    than finding the closest simple command.+  * Use Rational instead of Double in ESpaced, EScaled.+  * Shared: Export getSpaceWidth, getSpaceChars.+  * Shared: Export fixTree, isEmpty, empty (formerly in MathML reader).++texmath (0.7.0.2)++  * TeX reader:  further improvements in error reporting.+    Instead of reporting line and column, a snippet is printed+    with a caret indicating the position of the error.  Also+    fixed bad position information when control sequences are+    followed by a letter.++texmath (0.7.0.1)++  * TeX reader:++    + Improved error reporting.+    + Optimized parser.+    + Treat `\ ` as ESpaced rather than ESymbol.+    + Internal improvements, including using the parsec3 interface+      instead of the older parsec2 compatibility interface.++  * Added tests for phantom.++texmath (0.7)++  * Changes in Exp type:++    + Removed EUp, EDown, EDownup, EUnary, EBinary.+    + Added EFraction (and FractionType), ESqrt, Eroot, EPhantom.+    + Added boolean "convertible" parameter to EUnder, EOver, EUnderover.+    + Changed parameter of EScaled from String to Double.+    + Changed parameter of ESpace from String to Double.+    + Removed EStretchy.+    + Added EStyled, corresponding to mstyle in mathml, and \mathrm,+      \mathcal, etc. in TeX (which can contain arbitrary math content,+      not just text).+    + Changed the type of EDelimited.  The contents of an EDelimited are+      now either Right Exp or Left String (the latter case represents a+      fence in middle position, e.g. \mid| in LaTeX).++  * Module reorganisation:  the exposed interface has been completely+    changed, and modules for reading MathML and writing TeX math+    have been added:++    + All writers now reside in Text.TeXMath.Writers.+        - Text.TeXMath.MathML -> Text.TeXMath.Writers.MathML.+          toMathML and showExp are removed, writeMathML added.+        - Text.TeXMath.OMML -> Text.TeXMath.Writers.OMML.+          toOMML and showExp removed, writeOMML added.+        - Text.TeXMath.Pandoc -> Text.TeXMath.Writers.Pandoc.+          toPandoc removed, writePandoc added.+        - New module Text.TeXMath.Writers.TeX, exporting writeTeX,+          writeTeXWith, addLaTeXEnvironment (the latter giving control+          over which packages are assumed to be available).++    + All readers now reside in Text.TeXMath.Readers.+        - Text.TeXMath.MathMLParser -> Text.TeXMath.Readers.MathML,+	  exporting readMathML.+        - Text.TeXMath.Readers.TeX nows exports readTeX rather than+          parseFormula.++    + New modules for unicode conversion: Text.TeXMath.Unicode.ToASCII,+      Text.TeXMath.Unicode.ToTeX, Text.TeXMath.Unicode.ToUnicode.++    + Two MathML specific modules: Text.TeXMath.Readers.MathML.EntityMap,+      Text.TeXMath.Readers.MathML.MMLDict.++    + In Text.TeXMath, all the XtoY functions have been removed+      in favour of rexporting raw reader and writer functions. The+      data type Exp is now also exported.++  * Bug fixes and improvements.++    + TeX writer: Properly handle accents inside \text{}.+      Use real text environments for EText (\textrm, not \mathrm).+      Improved handling of scalers (\Big etc.).  Use amsmath matrix+      environments when appropriate.  Fixed \varepsilon.+    + MathML writer:  Omit superfluous outer mrows.  Add position+      information to fences.+    + OMML writer:  Handle \phantom.+    + Pandoc writer:  Use unicode characters to support Fraktur and+      other text styles.+    + TeX reader:  Use EUnder/Over for \stackrel, \overset, \underset.+      Improved handling of primes.  Fixed \notin.  Avoid superfluous+      grouping of single elements.  Improved handling of scalers (\Big etc.).+      Handle \choose, \brace, \brack, \bangle (#21).+    + Macros:  Don't raise an error if applying a macro fails to+      resolve to a fixed point; instead, just return the original string.++  * Rewrote test suite as a proper cabal test suite.  Added+    --regenerate-tests and --round-trip options.++  * Updated texmath online demo for bidirectional conversion.++  * Removed cgi and test flags.  Added executable flag to build texmath.++  * Modified texmath so it works like a cgi script when run as+    texmath-cgi (through symlink or renaming).  Removed dependency on+    the cgi package.++texmath (0.6.7)++  * New Module: Text.TeXMath.Unidecode, a module for approximating+    unicode characters in ASCII.+  * New Module: Text.TeXMath.Shared, a module for shared lookup+    tables between the various readers and writers+  * New Module: Text.TeXMath.MathMLParser, exporting readMathML.+  * New Module: Text.TeXMath.EntityMap, exporting getUnicode,+    a conversion table from MathML entities to unicode characters.+  * New Module: Text.TeXMath.UnicodeToLaTeX, exporting getLaTeX,+    converting a string of unicode characters to a string of equivalent LaTeX+    commands.+  * New Module: Text.TeXMath.LaTeX, replacing Text.TeXMath.Parser,+    exporting toTeXMath.+  * New Module: Text.TeXMath.MMLDict, implements a lookup table from+    operators to their default values as defined by the MML dictionary,+    exporting getOperator.+  * New Module: Text.TeXMath.Compat, maintaining compatibility with+    mtl < 2.2.1.+  * Modified Text.TeXMath to export the primitive readers, as well as+    mathMLTo{Writer} for all writers+  * Modified: Text.TeXMath.Types: added additional record types for+    Text.TeXMath.MMLDict and Text.TeXMath.UnicodeToLaTeX.+    New Exports: Operator(..), Record(..).+  * Modified test suite:  use cabal test, added significant number of tests.+  * Added recognition of the LaTeX command \phantom++texmath (0.6.6.3)++  * Use combining tilde accent for \tilde.  Closes pandoc #1324.++texmath (0.6.6.2)++  * Allow \left to be used with ), ], etc.  Ditto with \right.+    Previously only (, [, etc. were allowed with \left.  Closes pandoc #1319.++texmath (0.6.6.1)++  * Support \multline (previously it was mispelled "multiline")+  * Changed data-files to extra-source-files.++texmath (0.6.6)++  * Insert braces around macro expansions to prevent breakage (#7).+  * Support \operatorname and \DeclareMathOperator (rekka) (#17).+  * Support \providecommand (#15).+  * Fixed spacing bugs in pandoc rendering (#24).+  * Ignore \hline at end of array row instead of failing (#19).+
extra/texmath.hs view
@@ -1,4 +1,6 @@ {-# LANGUAGE CPP #-}+{-# LANGUAGE OverloadedStrings #-}+ module Main where  import Text.TeXMath@@ -6,20 +8,22 @@ import Text.XML.Light import System.IO import System.Environment-import Control.Applicative import System.Console.GetOpt-import Data.List (intersperse) import System.Exit import Data.Maybe import Text.Pandoc.Definition import Network.URI (unEscapeString)-import Data.List.Split (splitOn) import Data.Aeson (encode, (.=), object) import qualified Data.ByteString.Lazy as B import qualified Data.Text as T+import qualified Data.Text.IO as T import Data.Version ( showVersion )+import Text.Show.Pretty (ppShow) import Paths_texmath (version) +tshow :: Show a => a -> T.Text+tshow = T.pack . ppShow+ inHtml :: Element -> Element inHtml e =   add_attr (Attr (unqual "xmlns") "http://www.w3.org/1999/xhtml") $@@ -30,39 +34,41 @@         unode "meta" ()     , unode "body" e ] -type Reader = String -> Either String [Exp]+type Reader = T.Text -> Either T.Text [Exp] data Writer = XMLWriter (DisplayType -> [Exp] -> Element)-            | StringWriter (DisplayType -> [Exp] -> String)+            | StringWriter (DisplayType -> [Exp] -> T.Text)             | PandocWriter (DisplayType -> [Exp] -> Maybe [Inline]) -readers :: [(String, Reader)]+readers :: [(T.Text, Reader)] readers = [     ("tex", readTeX)   , ("mathml", readMathML)   , ("omml", readOMML)   , ("native", readNative)] -readNative :: String -> Either String [Exp]+readNative :: T.Text -> Either T.Text [Exp] readNative s =-  case reads s of+  case reads (T.unpack s) of        ((exps, ws):_) | all isSpace ws -> Right exps        ((_, (_:_)):_) -> Left "Could not read whole input as native Exp"        _ -> Left "Could not read input as native Exp" -writers :: [(String, Writer)]+writers :: [(T.Text, Writer)] writers = [-    ("native", StringWriter (\_ es -> show es) )+    ("native", StringWriter (\_ es -> tshow es) )   , ("tex", StringWriter (\_ -> writeTeX))   , ("eqn", StringWriter writeEqn)+  , ("typst", StringWriter writeTypst)   , ("omml",  XMLWriter writeOMML)   , ("xhtml",   XMLWriter (\dt e -> inHtml (writeMathML dt e)))   , ("mathml",   XMLWriter writeMathML)+  , ("starmath", StringWriter writeStarMath)   , ("pandoc", PandocWriter writePandoc)]  data Options = Options {     optDisplay :: DisplayType-  , optIn :: String-  , optOut :: String }+  , optIn :: T.Text+  , optOut :: T.Text }  def :: Options def = Options DisplayBlock "tex" "mathml"@@ -73,48 +79,50 @@       (NoArg (\opts -> return opts {optDisplay = DisplayInline}))       "Use the inline display style"   , Option "f" ["from"]-      (ReqArg (\s opts -> return opts {optIn = s}) "FORMAT")-      ("Input format: " ++ (concat $ intersperse ", " (map fst readers)))+      (ReqArg (\s opts -> return opts {optIn = T.pack s}) "FORMAT")+      ("Input format: " <> T.unpack (T.intercalate ", " (map fst readers)))   , Option "t" ["to"]-      (ReqArg (\s opts -> return opts {optOut = s}) "FORMAT")-      ("Output format: " ++ (concat $ intersperse ", " (map fst writers)))+      (ReqArg (\s opts -> return opts {optOut = T.pack s}) "FORMAT")+      ("Output format: " <> T.unpack (T.intercalate ", " (map fst writers)))    , Option "v" ["version"]       (NoArg (\_ -> do-                      hPutStrLn stderr $ "Version " ++ showVersion version+                      hPutStrLn stderr $ "Version " <> showVersion version                       exitWith ExitSuccess))       "Print version"      , Option "h" ["help"]         (NoArg (\_ -> do                         prg <- getProgName-                        hPutStrLn stderr (usageInfo (prg ++ " [OPTIONS] [FILE*]") options)+                        hPutStrLn stderr (usageInfo (prg <> " [OPTIONS] [FILE*]") options)                         exitWith ExitSuccess))       "Show help"   ] -output :: DisplayType -> Writer -> [Exp] -> String-output dt (XMLWriter w) es    = output dt (StringWriter (\dt' -> ppElement . w dt' )) es+output :: DisplayType -> Writer -> [Exp] -> T.Text+output dt (XMLWriter w) es    = output dt (StringWriter (\dt' -> T.pack . ppElement . w dt' )) es output dt (StringWriter w) es = w dt es-output dt (PandocWriter w) es = show (fromMaybe fallback (w dt es))-  where fallback = [Math mt (writeTeX es)]+output dt (PandocWriter w) es = tshow (fromMaybe fallback (w dt es))+  where fallback = [Math mt $ writeTeX es]         mt = case dt of                   DisplayBlock  -> DisplayMath                   DisplayInline -> InlineMath -err :: Bool -> Int -> String -> IO a+err :: Bool -> Int -> T.Text -> IO a err cgi code msg = do   if cgi-     then B.putStr $ encode $ object [T.pack "error" .= msg]-     else hPutStrLn stderr msg+     then B.putStr $ encode $ object ["error" .= msg]+     else T.hPutStrLn stderr msg   exitWith $ ExitFailure code -ensureFinalNewline :: String -> String-ensureFinalNewline "" = ""-ensureFinalNewline xs = if last xs == '\n' then xs else xs ++ "\n"+ensureFinalNewline :: T.Text -> T.Text+ensureFinalNewline xs = case T.unsnoc xs of+  Nothing        -> xs+  Just (_, '\n') -> xs+  _              -> xs <> "\n" -urlUnencode :: String -> String-urlUnencode = unEscapeString . plusToSpace-  where plusToSpace ('+':xs) = "%20" ++ plusToSpace xs+urlUnencode :: T.Text -> T.Text+urlUnencode = T.pack . unEscapeString . plusToSpace . T.unpack+  where plusToSpace ('+':xs) = "%20" <> plusToSpace xs         plusToSpace (x:xs)   = x : plusToSpace xs         plusToSpace []       = [] @@ -132,8 +140,8 @@   let (actions, files, _) = getOpt RequireOrder options args   opts <- foldl (>>=) (return def) actions   inp <- case files of-              [] -> getContents-              _  -> concat <$> mapM readFile files+              [] -> T.getContents+              _  -> T.concat <$> mapM T.readFile files   reader <- case lookup (optIn opts) readers of                   Just r -> return r                   Nothing -> err False 3 "Unrecognised reader"@@ -142,17 +150,18 @@                   Nothing -> err False 5 "Unrecognised writer"   case reader inp of         Left msg -> err False 1 msg-        Right v  -> putStr $ ensureFinalNewline-                           $ output (optDisplay opts) writer v+        Right v  -> T.putStr $ ensureFinalNewline+                             $ output (optDisplay opts) writer v   exitWith ExitSuccess  runCGI :: IO () runCGI = do-  query <- getContents-  let topairs xs = case break (=='=') xs of-                        (ys,('=':zs)) -> (urlUnencode ys, urlUnencode zs)-                        (ys,_)        -> (urlUnencode ys,"")-  let pairs = map topairs $ splitOn "&" query+  query <- T.getContents+  let topairs xs = case T.break (=='=') xs of+                     (ys, zs) -> case T.uncons zs of+                       Just ('=', zs') -> (urlUnencode ys, urlUnencode zs')+                       _               -> (urlUnencode ys, "")+  let pairs = map topairs $ T.split (== '&') query   inp <- case lookup "input" pairs of                  Just x  -> return x                  Nothing -> err True 3 "Query missing 'input'"@@ -171,7 +180,7 @@   case reader inp of         Left msg -> err True 1 msg         Right v  -> B.putStr $ encode $ object-                       [ T.pack "success" .=+                       [ "success" .=                        ensureFinalNewline (output                         (if inline                             then DisplayInline
lib/mmldict/Makefile view
@@ -1,9 +1,12 @@ mmldict.hs: dictionary.xml-	runghc generateMMLDict.hs+	./generateMMLDict.hs +unicode.xml:+	curl -o $@ https://www.w3.org/2003/entities/2007xml/unicode.xml+ dictionary.xml: operatorDictionary.xsl unicode.xml 	xsltproc -o $@ $^  .PHONY: clean clean:-	-rm mmldict.hs dictionary.xml+	-rm mmldict.hs dictionary.xml unicode.xml
lib/mmldict/generateMMLDict.hs view
@@ -1,3 +1,9 @@+#!/usr/bin/env cabal+{-# LANGUAGE OverloadedStrings #-}+{- cabal:+    build-depends: base, texmath, text, xml, containers+-}+ import Text.XML.Light import Control.Applicative import Data.Maybe@@ -7,8 +13,10 @@ import Data.List (intersperse) import Data.Char import qualified Data.Map as M+import qualified Data.Text as T+import Data.Text (Text) -updates :: [M.Map (String, FormType) Operator -> M.Map (String, FormType) Operator]+updates :: [M.Map (Text, FormType) Operator -> M.Map (Text, FormType) Operator] updates =    [ M.insert ("\65079", FInfix) c65079   , M.insert ("\65080", FInfix) c65080@@ -19,7 +27,7 @@  applyChanges = foldr (.) id updates -mkMap :: [Operator] -> M.Map (String, FormType) Operator+mkMap :: [Operator] -> M.Map (Text, FormType) Operator mkMap operators = M.fromList (map (\o -> ((oper o, form o), o)) operators)  findAttrQ s = findAttr (QName s Nothing Nothing)@@ -43,7 +51,7 @@   f :: Element -> Maybe Operator-f e = Operator <$> c <*> d <*> f <*> p <*> ls <*> rs <*> ps+f e = Operator <$> (T.pack <$> c) <*> (T.pack <$> d) <*> f <*> p <*> ls <*> rs <*> ps   where     c = toChar e     d = findAttrQ "description" e @@ -51,7 +59,7 @@     p = read <$> findAttrQ "priority" e     ls = read <$> findAttrQ "lspace" e     rs = read <$> findAttrQ "rspace" e-    ps = return $ fromMaybe [] (words <$> findAttrQ "properties" e)+    ps = return $ fromMaybe [] (T.words . T.pack <$> findAttrQ "properties" e)  mapForm "prefix" = FPrefix mapForm "postfix" = FPostfix
− lib/mmldict/unicode.xml

file too large to diff

− lib/toascii/Data.txt
@@ -1,8923 +0,0 @@-9	"\\t"-10	"\\n"-32	" "-33	"!"-34	"\""-35	"#"-36	"$"-37	"%"-38	"&"-39	"'"-40	"("-41	")"-42	"*"-43	"+"-44	","-45	"-"-46	"."-47	"/"-48	"0"-49	"1"-50	"2"-51	"3"-52	"4"-53	"5"-54	"6"-55	"7"-56	"8"-57	"9"-58	":"-59	";"-60	"<"-61	"="-62	">"-63	"?"-64	"@"-65	"A"-66	"B"-67	"C"-68	"D"-69	"E"-70	"F"-71	"G"-72	"H"-73	"I"-74	"J"-75	"K"-76	"L"-77	"M"-78	"N"-79	"O"-80	"P"-81	"Q"-82	"R"-83	"S"-84	"T"-85	"U"-86	"V"-87	"W"-88	"X"-89	"Y"-90	"Z"-91	"["-92	"\\"-93	"]"-94	"^"-95	"_"-96	"`"-97	"a"-98	"b"-99	"c"-100	"d"-101	"e"-102	"f"-103	"g"-104	"h"-105	"i"-106	"j"-107	"k"-108	"l"-109	"m"-110	"n"-111	"o"-112	"p"-113	"q"-114	"r"-115	"s"-116	"t"-117	"u"-118	"v"-119	"w"-120	"x"-121	"y"-122	"z"-123	"{"-124	"|"-125	"}"-126	"~"-160	" "-161	"!"-162	"C/"-163	"PS"-164	"$?"-165	"Y="-166	"|"-167	"SS"-168	"\""-169	"(c)"-170	"a"-171	"<<"-172	"!"-174	"(r)"-175	"-"-176	"deg"-177	"+-"-178	"2"-179	"3"-180	"'"-181	"u"-182	"P"-183	"*"-184	","-185	"1"-186	"o"-187	">>"-188	"1/4"-189	"1/2"-190	"3/4"-191	"?"-192	"A"-193	"A"-194	"A"-195	"A"-196	"A"-197	"A"-198	"AE"-199	"C"-200	"E"-201	"E"-202	"E"-203	"E"-204	"I"-205	"I"-206	"I"-207	"I"-208	"D"-209	"N"-210	"O"-211	"O"-212	"O"-213	"O"-214	"O"-215	"x"-216	"O"-217	"U"-218	"U"-219	"U"-220	"U"-221	"Y"-222	"Th"-223	"ss"-224	"a"-225	"a"-226	"a"-227	"a"-228	"a"-229	"a"-230	"ae"-231	"c"-232	"e"-233	"e"-234	"e"-235	"e"-236	"i"-237	"i"-238	"i"-239	"i"-240	"d"-241	"n"-242	"o"-243	"o"-244	"o"-245	"o"-246	"o"-247	"/"-248	"o"-249	"u"-250	"u"-251	"u"-252	"u"-253	"y"-254	"th"-255	"y"-256	"A"-257	"a"-258	"A"-259	"a"-260	"A"-261	"a"-262	"C"-263	"c"-264	"C"-265	"c"-266	"C"-267	"c"-268	"C"-269	"c"-270	"D"-271	"d"-272	"D"-273	"d"-274	"E"-275	"e"-276	"E"-277	"e"-278	"E"-279	"e"-280	"E"-281	"e"-282	"E"-283	"e"-284	"G"-285	"g"-286	"G"-287	"g"-288	"G"-289	"g"-290	"G"-291	"g"-292	"H"-293	"h"-294	"H"-295	"h"-296	"I"-297	"i"-298	"I"-299	"i"-300	"I"-301	"i"-302	"I"-303	"i"-304	"I"-305	"i"-306	"IJ"-307	"ij"-308	"J"-309	"j"-310	"K"-311	"k"-312	"k"-313	"L"-314	"l"-315	"L"-316	"l"-317	"L"-318	"l"-319	"L"-320	"l"-321	"L"-322	"l"-323	"N"-324	"n"-325	"N"-326	"n"-327	"N"-328	"n"-329	"'n"-330	"ng"-331	"NG"-332	"O"-333	"o"-334	"O"-335	"o"-336	"O"-337	"o"-338	"OE"-339	"oe"-340	"R"-341	"r"-342	"R"-343	"r"-344	"R"-345	"r"-346	"S"-347	"s"-348	"S"-349	"s"-350	"S"-351	"s"-352	"S"-353	"s"-354	"T"-355	"t"-356	"T"-357	"t"-358	"T"-359	"t"-360	"U"-361	"u"-362	"U"-363	"u"-364	"U"-365	"u"-366	"U"-367	"u"-368	"U"-369	"u"-370	"U"-371	"u"-372	"W"-373	"w"-374	"Y"-375	"y"-376	"Y"-377	"Z"-378	"z"-379	"Z"-380	"z"-381	"Z"-382	"z"-383	"s"-384	"b"-385	"B"-386	"B"-387	"b"-388	"6"-389	"6"-390	"O"-391	"C"-392	"c"-393	"D"-394	"D"-395	"D"-396	"d"-397	"d"-398	"3"-399	"@"-400	"E"-401	"F"-402	"f"-403	"G"-404	"G"-405	"hv"-406	"I"-407	"I"-408	"K"-409	"k"-410	"l"-411	"l"-412	"W"-413	"N"-414	"n"-415	"O"-416	"O"-417	"o"-418	"OI"-419	"oi"-420	"P"-421	"p"-422	"YR"-423	"2"-424	"2"-425	"SH"-426	"sh"-427	"t"-428	"T"-429	"t"-430	"T"-431	"U"-432	"u"-433	"Y"-434	"V"-435	"Y"-436	"y"-437	"Z"-438	"z"-439	"ZH"-440	"ZH"-441	"zh"-442	"zh"-443	"2"-444	"5"-445	"5"-446	"ts"-447	"w"-448	"|"-449	"||"-450	"|="-451	"!"-452	"DZ"-453	"Dz"-454	"dz"-455	"LJ"-456	"Lj"-457	"lj"-458	"NJ"-459	"Nj"-460	"nj"-461	"A"-462	"a"-463	"I"-464	"i"-465	"O"-466	"o"-467	"U"-468	"u"-469	"U"-470	"u"-471	"U"-472	"u"-473	"U"-474	"u"-475	"U"-476	"u"-477	"@"-478	"A"-479	"a"-480	"A"-481	"a"-482	"AE"-483	"ae"-484	"G"-485	"g"-486	"G"-487	"g"-488	"K"-489	"k"-490	"O"-491	"o"-492	"O"-493	"o"-494	"ZH"-495	"zh"-496	"j"-497	"DZ"-498	"Dz"-499	"dz"-500	"G"-501	"g"-502	"HV"-503	"W"-504	"N"-505	"n"-506	"A"-507	"a"-508	"AE"-509	"ae"-510	"O"-511	"o"-512	"A"-513	"a"-514	"A"-515	"a"-516	"E"-517	"e"-518	"E"-519	"e"-520	"I"-521	"i"-522	"I"-523	"i"-524	"O"-525	"o"-526	"O"-527	"o"-528	"R"-529	"r"-530	"R"-531	"r"-532	"U"-533	"u"-534	"U"-535	"u"-536	"S"-537	"s"-538	"T"-539	"t"-540	"Y"-541	"y"-542	"H"-543	"h"-544	"N"-545	"d"-546	"OU"-547	"ou"-548	"Z"-549	"z"-550	"A"-551	"a"-552	"E"-553	"e"-554	"O"-555	"o"-556	"O"-557	"o"-558	"O"-559	"o"-560	"O"-561	"o"-562	"Y"-563	"y"-564	"l"-565	"n"-566	"t"-567	"j"-568	"db"-569	"qp"-570	"A"-571	"C"-572	"c"-573	"L"-574	"T"-575	"s"-576	"z"-577	"[?]"-578	"[?]"-579	"B"-580	"U"-581	"^"-582	"E"-583	"e"-584	"J"-585	"j"-586	"q"-587	"q"-588	"R"-589	"r"-590	"Y"-591	"y"-592	"a"-593	"a"-594	"a"-595	"b"-596	"o"-597	"c"-598	"d"-599	"d"-600	"e"-601	"@"-602	"@"-603	"e"-604	"e"-605	"e"-606	"e"-607	"j"-608	"g"-609	"g"-610	"g"-611	"g"-612	"u"-613	"Y"-614	"h"-615	"h"-616	"i"-617	"i"-618	"I"-619	"l"-620	"l"-621	"l"-622	"lZ"-623	"W"-624	"W"-625	"m"-626	"n"-627	"n"-628	"n"-629	"o"-630	"OE"-631	"O"-632	"F"-633	"r"-634	"r"-635	"r"-636	"r"-637	"r"-638	"r"-639	"r"-640	"R"-641	"R"-642	"s"-643	"S"-644	"j"-645	"S"-646	"S"-647	"t"-648	"t"-649	"u"-650	"U"-651	"v"-652	"^"-653	"w"-654	"y"-655	"Y"-656	"z"-657	"z"-658	"Z"-659	"Z"-660	"?"-661	"?"-662	"?"-663	"C"-664	"@"-665	"B"-666	"E"-667	"G"-668	"H"-669	"j"-670	"k"-671	"L"-672	"q"-673	"?"-674	"?"-675	"dz"-676	"dZ"-677	"dz"-678	"ts"-679	"tS"-680	"tC"-681	"fN"-682	"ls"-683	"lz"-684	"WW"-685	"]]"-686	"h"-687	"h"-688	"k"-689	"h"-690	"j"-691	"r"-692	"r"-693	"r"-694	"r"-695	"w"-696	"y"-697	"'"-698	"\""-699	"`"-700	"'"-701	"`"-702	"`"-703	"'"-704	"?"-705	"?"-706	"<"-707	">"-708	"^"-709	"V"-710	"^"-711	"V"-712	"'"-713	"-"-714	"/"-715	"\\"-716	","-717	"_"-718	"\\"-719	"/"-720	":"-721	"."-722	"`"-723	"'"-724	"^"-725	"V"-726	"+"-727	"-"-728	"V"-729	"."-730	"@"-731	","-732	"~"-733	"\""-734	"R"-735	"X"-736	"G"-737	"l"-738	"s"-739	"x"-740	"?"-748	"V"-749	"="-750	"\""-751	"[?]"-752	"[?]"-753	"[?]"-754	"[?]"-755	"[?]"-756	"[?]"-757	"[?]"-758	"[?]"-759	"[?]"-760	"[?]"-761	"[?]"-762	"[?]"-763	"[?]"-764	"[?]"-765	"[?]"-766	"[?]"-847	"[?]"-848	"[?]"-849	"[?]"-850	"[?]"-851	"[?]"-852	"[?]"-853	"[?]"-854	"[?]"-855	"[?]"-856	"[?]"-857	"[?]"-858	"[?]"-859	"[?]"-860	"[?]"-861	"[?]"-862	"[?]"-863	"[?]"-867	"a"-868	"e"-869	"i"-870	"o"-871	"u"-872	"c"-873	"d"-874	"h"-875	"m"-876	"r"-877	"t"-878	"v"-879	"x"-880	"[?]"-881	"[?]"-882	"[?]"-883	"[?]"-884	"'"-885	","-886	"[?]"-887	"[?]"-888	"[?]"-889	"[?]"-891	"[?]"-892	"[?]"-893	"[?]"-894	"?"-895	"[?]"-896	"[?]"-897	"[?]"-898	"[?]"-899	"[?]"-902	"A"-903	";"-904	"E"-905	"E"-906	"I"-907	"[?]"-908	"O"-909	"[?]"-910	"U"-911	"O"-912	"I"-913	"A"-914	"B"-915	"G"-916	"D"-917	"E"-918	"Z"-919	"E"-920	"Th"-921	"I"-922	"K"-923	"L"-924	"M"-925	"N"-926	"Ks"-927	"O"-928	"P"-929	"R"-930	"[?]"-931	"S"-932	"T"-933	"U"-934	"Ph"-935	"Kh"-936	"Ps"-937	"O"-938	"I"-939	"U"-940	"a"-941	"e"-942	"e"-943	"i"-944	"u"-945	"a"-946	"b"-947	"g"-948	"d"-949	"e"-950	"z"-951	"e"-952	"th"-953	"i"-954	"k"-955	"l"-956	"m"-957	"n"-958	"x"-959	"o"-960	"p"-961	"r"-962	"s"-963	"s"-964	"t"-965	"u"-966	"ph"-967	"kh"-968	"ps"-969	"o"-970	"i"-971	"u"-972	"o"-973	"u"-974	"o"-975	"[?]"-976	"b"-977	"th"-978	"U"-979	"U"-980	"U"-981	"ph"-982	"p"-983	"&"-984	"[?]"-985	"[?]"-986	"St"-987	"st"-988	"W"-989	"w"-990	"Q"-991	"q"-992	"Sp"-993	"sp"-994	"Sh"-995	"sh"-996	"F"-997	"f"-998	"Kh"-999	"kh"-1000	"H"-1001	"h"-1002	"G"-1003	"g"-1004	"CH"-1005	"ch"-1006	"Ti"-1007	"ti"-1008	"k"-1009	"r"-1010	"c"-1011	"j"-1012	"[?]"-1013	"[?]"-1014	"[?]"-1015	"[?]"-1016	"[?]"-1017	"[?]"-1018	"[?]"-1019	"[?]"-1020	"[?]"-1021	"[?]"-1022	"[?]"-1024	"Ie"-1025	"Io"-1026	"Dj"-1027	"Gj"-1028	"Ie"-1029	"Dz"-1030	"I"-1031	"Yi"-1032	"J"-1033	"Lj"-1034	"Nj"-1035	"Tsh"-1036	"Kj"-1037	"I"-1038	"U"-1039	"Dzh"-1040	"A"-1041	"B"-1042	"V"-1043	"G"-1044	"D"-1045	"E"-1046	"Zh"-1047	"Z"-1048	"I"-1049	"I"-1050	"K"-1051	"L"-1052	"M"-1053	"N"-1054	"O"-1055	"P"-1056	"R"-1057	"S"-1058	"T"-1059	"U"-1060	"F"-1061	"Kh"-1062	"Ts"-1063	"Ch"-1064	"Sh"-1065	"Shch"-1066	"'"-1067	"Y"-1068	"'"-1069	"E"-1070	"Iu"-1071	"Ia"-1072	"a"-1073	"b"-1074	"v"-1075	"g"-1076	"d"-1077	"e"-1078	"zh"-1079	"z"-1080	"i"-1081	"i"-1082	"k"-1083	"l"-1084	"m"-1085	"n"-1086	"o"-1087	"p"-1088	"r"-1089	"s"-1090	"t"-1091	"u"-1092	"f"-1093	"kh"-1094	"ts"-1095	"ch"-1096	"sh"-1097	"shch"-1098	"'"-1099	"y"-1100	"'"-1101	"e"-1102	"iu"-1103	"ia"-1104	"ie"-1105	"io"-1106	"dj"-1107	"gj"-1108	"ie"-1109	"dz"-1110	"i"-1111	"yi"-1112	"j"-1113	"lj"-1114	"nj"-1115	"tsh"-1116	"kj"-1117	"i"-1118	"u"-1119	"dzh"-1120	"O"-1121	"o"-1122	"E"-1123	"e"-1124	"Ie"-1125	"ie"-1126	"E"-1127	"e"-1128	"Ie"-1129	"ie"-1130	"O"-1131	"o"-1132	"Io"-1133	"io"-1134	"Ks"-1135	"ks"-1136	"Ps"-1137	"ps"-1138	"F"-1139	"f"-1140	"Y"-1141	"y"-1142	"Y"-1143	"y"-1144	"u"-1145	"u"-1146	"O"-1147	"o"-1148	"O"-1149	"o"-1150	"Ot"-1151	"ot"-1152	"Q"-1153	"q"-1154	"*1000*"-1159	"[?]"-1160	"*100.000*"-1161	"*1.000.000*"-1162	"[?]"-1163	"[?]"-1164	"\""-1165	"\""-1166	"R'"-1167	"r'"-1168	"G'"-1169	"g'"-1170	"G'"-1171	"g'"-1172	"G'"-1173	"g'"-1174	"Zh'"-1175	"zh'"-1176	"Z'"-1177	"z'"-1178	"K'"-1179	"k'"-1180	"K'"-1181	"k'"-1182	"K'"-1183	"k'"-1184	"K'"-1185	"k'"-1186	"N'"-1187	"n'"-1188	"Ng"-1189	"ng"-1190	"P'"-1191	"p'"-1192	"Kh"-1193	"kh"-1194	"S'"-1195	"s'"-1196	"T'"-1197	"t'"-1198	"U"-1199	"u"-1200	"U'"-1201	"u'"-1202	"Kh'"-1203	"kh'"-1204	"Tts"-1205	"tts"-1206	"Ch'"-1207	"ch'"-1208	"Ch'"-1209	"ch'"-1210	"H"-1211	"h"-1212	"Ch"-1213	"ch"-1214	"Ch'"-1215	"ch'"-1216	"`"-1217	"Zh"-1218	"zh"-1219	"K'"-1220	"k'"-1221	"[?]"-1222	"[?]"-1223	"N'"-1224	"n'"-1225	"[?]"-1226	"[?]"-1227	"Ch"-1228	"ch"-1229	"[?]"-1230	"[?]"-1231	"[?]"-1232	"a"-1233	"a"-1234	"A"-1235	"a"-1236	"Ae"-1237	"ae"-1238	"Ie"-1239	"ie"-1240	"@"-1241	"@"-1242	"@"-1243	"@"-1244	"Zh"-1245	"zh"-1246	"Z"-1247	"z"-1248	"Dz"-1249	"dz"-1250	"I"-1251	"i"-1252	"I"-1253	"i"-1254	"O"-1255	"o"-1256	"O"-1257	"o"-1258	"O"-1259	"o"-1260	"E"-1261	"e"-1262	"U"-1263	"u"-1264	"U"-1265	"u"-1266	"U"-1267	"u"-1268	"Ch"-1269	"ch"-1270	"[?]"-1271	"[?]"-1272	"Y"-1273	"y"-1274	"[?]"-1275	"[?]"-1276	"[?]"-1277	"[?]"-1278	"[?]"-1280	"[?]"-1281	"[?]"-1282	"[?]"-1283	"[?]"-1284	"[?]"-1285	"[?]"-1286	"[?]"-1287	"[?]"-1288	"[?]"-1289	"[?]"-1290	"[?]"-1291	"[?]"-1292	"[?]"-1293	"[?]"-1294	"[?]"-1295	"[?]"-1296	"[?]"-1297	"[?]"-1298	"[?]"-1299	"[?]"-1300	"[?]"-1301	"[?]"-1302	"[?]"-1303	"[?]"-1304	"[?]"-1305	"[?]"-1306	"[?]"-1307	"[?]"-1308	"[?]"-1309	"[?]"-1310	"[?]"-1311	"[?]"-1312	"[?]"-1313	"[?]"-1314	"[?]"-1315	"[?]"-1316	"[?]"-1317	"[?]"-1318	"[?]"-1319	"[?]"-1320	"[?]"-1321	"[?]"-1322	"[?]"-1323	"[?]"-1324	"[?]"-1325	"[?]"-1326	"[?]"-1327	"[?]"-1328	"[?]"-1329	"A"-1330	"B"-1331	"G"-1332	"D"-1333	"E"-1334	"Z"-1335	"E"-1336	"E"-1337	"T`"-1338	"Zh"-1339	"I"-1340	"L"-1341	"Kh"-1342	"Ts"-1343	"K"-1344	"H"-1345	"Dz"-1346	"Gh"-1347	"Ch"-1348	"M"-1349	"Y"-1350	"N"-1351	"Sh"-1352	"O"-1353	"Ch`"-1354	"P"-1355	"J"-1356	"Rh"-1357	"S"-1358	"V"-1359	"T"-1360	"R"-1361	"Ts`"-1362	"W"-1363	"P`"-1364	"K`"-1365	"O"-1366	"F"-1367	"[?]"-1368	"[?]"-1369	"<"-1370	"'"-1371	"/"-1372	"!"-1373	","-1374	"?"-1375	"."-1376	"[?]"-1377	"a"-1378	"b"-1379	"g"-1380	"d"-1381	"e"-1382	"z"-1383	"e"-1384	"e"-1385	"t`"-1386	"zh"-1387	"i"-1388	"l"-1389	"kh"-1390	"ts"-1391	"k"-1392	"h"-1393	"dz"-1394	"gh"-1395	"ch"-1396	"m"-1397	"y"-1398	"n"-1399	"sh"-1400	"o"-1401	"ch`"-1402	"p"-1403	"j"-1404	"rh"-1405	"s"-1406	"v"-1407	"t"-1408	"r"-1409	"ts`"-1410	"w"-1411	"p`"-1412	"k`"-1413	"o"-1414	"f"-1415	"ew"-1416	"[?]"-1417	":"-1418	"-"-1419	"[?]"-1420	"[?]"-1421	"[?]"-1422	"[?]"-1423	"[?]"-1424	"[?]"-1442	"[?]"-1456	"@"-1457	"e"-1458	"a"-1459	"o"-1460	"i"-1461	"e"-1462	"e"-1463	"a"-1464	"a"-1465	"o"-1466	"[?]"-1467	"u"-1468	"'"-1472	"|"-1475	":"-1477	"[?]"-1478	"[?]"-1479	"[?]"-1480	"[?]"-1481	"[?]"-1482	"[?]"-1483	"[?]"-1484	"[?]"-1485	"[?]"-1486	"[?]"-1487	"[?]"-1489	"b"-1490	"g"-1491	"d"-1492	"h"-1493	"v"-1494	"z"-1495	"kh"-1496	"t"-1497	"y"-1498	"k"-1499	"k"-1500	"l"-1501	"m"-1502	"m"-1503	"n"-1504	"n"-1505	"s"-1506	"`"-1507	"p"-1508	"p"-1509	"ts"-1510	"ts"-1511	"q"-1512	"r"-1513	"sh"-1514	"t"-1515	"[?]"-1516	"[?]"-1517	"[?]"-1518	"[?]"-1519	"[?]"-1520	"V"-1521	"oy"-1522	"i"-1523	"'"-1524	"\""-1525	"[?]"-1526	"[?]"-1527	"[?]"-1528	"[?]"-1529	"[?]"-1530	"[?]"-1531	"[?]"-1532	"[?]"-1533	"[?]"-1534	"[?]"-1536	"[?]"-1537	"[?]"-1538	"[?]"-1539	"[?]"-1540	"[?]"-1541	"[?]"-1542	"[?]"-1543	"[?]"-1544	"[?]"-1545	"[?]"-1546	"[?]"-1547	"[?]"-1548	","-1549	"[?]"-1550	"[?]"-1551	"[?]"-1552	"[?]"-1553	"[?]"-1554	"[?]"-1555	"[?]"-1556	"[?]"-1557	"[?]"-1558	"[?]"-1559	"[?]"-1560	"[?]"-1561	"[?]"-1562	"[?]"-1563	";"-1564	"[?]"-1565	"[?]"-1566	"[?]"-1567	"?"-1568	"[?]"-1570	"a"-1571	"'"-1572	"w'"-1574	"y'"-1576	"b"-1577	"@"-1578	"t"-1579	"th"-1580	"j"-1581	"H"-1582	"kh"-1583	"d"-1584	"dh"-1585	"r"-1586	"z"-1587	"s"-1588	"sh"-1589	"S"-1590	"D"-1591	"T"-1592	"Z"-1593	"`"-1594	"G"-1595	"[?]"-1596	"[?]"-1597	"[?]"-1598	"[?]"-1599	"[?]"-1601	"f"-1602	"q"-1603	"k"-1604	"l"-1605	"m"-1606	"n"-1607	"h"-1608	"w"-1609	"~"-1610	"y"-1611	"an"-1612	"un"-1613	"in"-1614	"a"-1615	"u"-1616	"i"-1617	"W"-1620	"'"-1621	"'"-1622	"[?]"-1623	"[?]"-1624	"[?]"-1625	"[?]"-1626	"[?]"-1627	"[?]"-1628	"[?]"-1629	"[?]"-1630	"[?]"-1631	"[?]"-1632	"0"-1633	"1"-1634	"2"-1635	"3"-1636	"4"-1637	"5"-1638	"6"-1639	"7"-1640	"8"-1641	"9"-1642	"%"-1643	"."-1644	","-1645	"*"-1646	"[?]"-1647	"[?]"-1649	"'"-1650	"'"-1651	"'"-1653	"'"-1654	"'w"-1655	"'u"-1656	"'y"-1657	"tt"-1658	"tth"-1659	"b"-1660	"t"-1661	"T"-1662	"p"-1663	"th"-1664	"bh"-1665	"'h"-1666	"H"-1667	"ny"-1668	"dy"-1669	"H"-1670	"ch"-1671	"cch"-1672	"dd"-1673	"D"-1674	"D"-1675	"Dt"-1676	"dh"-1677	"ddh"-1678	"d"-1679	"D"-1680	"D"-1681	"rr"-1682	"R"-1683	"R"-1684	"R"-1685	"R"-1686	"R"-1687	"R"-1688	"j"-1689	"R"-1690	"S"-1691	"S"-1692	"S"-1693	"S"-1694	"S"-1695	"T"-1696	"GH"-1697	"F"-1698	"F"-1699	"F"-1700	"v"-1701	"f"-1702	"ph"-1703	"Q"-1704	"Q"-1705	"kh"-1706	"k"-1707	"K"-1708	"K"-1709	"ng"-1710	"K"-1711	"g"-1712	"G"-1713	"N"-1714	"G"-1715	"G"-1716	"G"-1717	"L"-1718	"L"-1719	"L"-1720	"L"-1721	"N"-1722	"N"-1723	"N"-1724	"N"-1725	"N"-1726	"h"-1727	"Ch"-1728	"hy"-1729	"h"-1730	"H"-1731	"@"-1732	"W"-1733	"oe"-1734	"oe"-1735	"u"-1736	"yu"-1737	"yu"-1738	"W"-1739	"v"-1740	"y"-1741	"Y"-1742	"Y"-1743	"W"-1746	"y"-1747	"y'"-1748	"."-1749	"ae"-1757	"@"-1758	"#"-1769	"^"-1774	"[?]"-1775	"[?]"-1776	"0"-1777	"1"-1778	"2"-1779	"3"-1780	"4"-1781	"5"-1782	"6"-1783	"7"-1784	"8"-1785	"9"-1786	"Sh"-1787	"D"-1788	"Gh"-1789	"&"-1790	"+m"-1792	"//"-1793	"/"-1794	","-1795	"!"-1796	"!"-1797	"-"-1798	","-1799	","-1800	";"-1801	"?"-1802	"~"-1803	"{"-1804	"}"-1805	"*"-1806	"[?]"-1808	"'"-1810	"b"-1811	"g"-1812	"g"-1813	"d"-1814	"d"-1815	"h"-1816	"w"-1817	"z"-1818	"H"-1819	"t"-1820	"t"-1821	"y"-1822	"yh"-1823	"k"-1824	"l"-1825	"m"-1826	"n"-1827	"s"-1828	"s"-1829	"`"-1830	"p"-1831	"p"-1832	"S"-1833	"q"-1834	"r"-1835	"sh"-1836	"t"-1837	"[?]"-1838	"[?]"-1839	"[?]"-1840	"a"-1841	"a"-1842	"a"-1843	"A"-1844	"A"-1845	"A"-1846	"e"-1847	"e"-1848	"e"-1849	"E"-1850	"i"-1851	"i"-1852	"u"-1853	"u"-1854	"u"-1855	"o"-1857	"`"-1858	"'"-1861	"X"-1862	"Q"-1863	"@"-1864	"@"-1865	"|"-1866	"+"-1867	"[?]"-1868	"[?]"-1869	"[?]"-1870	"[?]"-1871	"[?]"-1872	"[?]"-1873	"[?]"-1874	"[?]"-1875	"[?]"-1876	"[?]"-1877	"[?]"-1878	"[?]"-1879	"[?]"-1880	"[?]"-1881	"[?]"-1882	"[?]"-1883	"[?]"-1884	"[?]"-1885	"[?]"-1886	"[?]"-1887	"[?]"-1888	"[?]"-1889	"[?]"-1890	"[?]"-1891	"[?]"-1892	"[?]"-1893	"[?]"-1894	"[?]"-1895	"[?]"-1896	"[?]"-1897	"[?]"-1898	"[?]"-1899	"[?]"-1900	"[?]"-1901	"[?]"-1902	"[?]"-1903	"[?]"-1904	"[?]"-1905	"[?]"-1906	"[?]"-1907	"[?]"-1908	"[?]"-1909	"[?]"-1910	"[?]"-1911	"[?]"-1912	"[?]"-1913	"[?]"-1914	"[?]"-1915	"[?]"-1916	"[?]"-1917	"[?]"-1918	"[?]"-1919	"[?]"-1920	"h"-1921	"sh"-1922	"n"-1923	"r"-1924	"b"-1925	"L"-1926	"k"-1927	"'"-1928	"v"-1929	"m"-1930	"f"-1931	"dh"-1932	"th"-1933	"l"-1934	"g"-1935	"ny"-1936	"s"-1937	"d"-1938	"z"-1939	"t"-1940	"y"-1941	"p"-1942	"j"-1943	"ch"-1944	"tt"-1945	"hh"-1946	"kh"-1947	"th"-1948	"z"-1949	"sh"-1950	"s"-1951	"d"-1952	"t"-1953	"z"-1954	"`"-1955	"gh"-1956	"q"-1957	"w"-1958	"a"-1959	"aa"-1960	"i"-1961	"ee"-1962	"u"-1963	"oo"-1964	"e"-1965	"ey"-1966	"o"-1967	"oa"-1969	"[?]"-1970	"[?]"-1971	"[?]"-1972	"[?]"-1973	"[?]"-1974	"[?]"-1975	"[?]"-1976	"[?]"-1977	"[?]"-1978	"[?]"-1979	"[?]"-1980	"[?]"-1981	"[?]"-1982	"[?]"-1983	"[?]"-1984	"[?]"-1985	"[?]"-1986	"[?]"-1987	"[?]"-1988	"[?]"-1989	"[?]"-1990	"[?]"-1991	"[?]"-1992	"[?]"-1993	"[?]"-1994	"[?]"-1995	"[?]"-1996	"[?]"-1997	"[?]"-1998	"[?]"-1999	"[?]"-2000	"[?]"-2001	"[?]"-2002	"[?]"-2003	"[?]"-2004	"[?]"-2005	"[?]"-2006	"[?]"-2007	"[?]"-2008	"[?]"-2009	"[?]"-2010	"[?]"-2011	"[?]"-2012	"[?]"-2013	"[?]"-2014	"[?]"-2015	"[?]"-2016	"[?]"-2017	"[?]"-2018	"[?]"-2019	"[?]"-2020	"[?]"-2021	"[?]"-2022	"[?]"-2023	"[?]"-2024	"[?]"-2025	"[?]"-2026	"[?]"-2027	"[?]"-2028	"[?]"-2029	"[?]"-2030	"[?]"-2031	"[?]"-2032	"[?]"-2033	"[?]"-2034	"[?]"-2035	"[?]"-2036	"[?]"-2037	"[?]"-2038	"[?]"-2039	"[?]"-2040	"[?]"-2041	"[?]"-2042	"[?]"-2043	"[?]"-2044	"[?]"-2045	"[?]"-2046	"[?]"-2304	"[?]"-2305	"N"-2306	"N"-2307	"H"-2308	"[?]"-2309	"a"-2310	"aa"-2311	"i"-2312	"ii"-2313	"u"-2314	"uu"-2315	"R"-2316	"L"-2317	"eN"-2318	"e"-2319	"e"-2320	"ai"-2321	"oN"-2322	"o"-2323	"o"-2324	"au"-2325	"k"-2326	"kh"-2327	"g"-2328	"gh"-2329	"ng"-2330	"c"-2331	"ch"-2332	"j"-2333	"jh"-2334	"ny"-2335	"tt"-2336	"tth"-2337	"dd"-2338	"ddh"-2339	"nn"-2340	"t"-2341	"th"-2342	"d"-2343	"dh"-2344	"n"-2345	"nnn"-2346	"p"-2347	"ph"-2348	"b"-2349	"bh"-2350	"m"-2351	"y"-2352	"r"-2353	"rr"-2354	"l"-2355	"l"-2356	"lll"-2357	"v"-2358	"sh"-2359	"ss"-2360	"s"-2361	"h"-2362	"[?]"-2363	"[?]"-2364	"'"-2365	"'"-2366	"aa"-2367	"i"-2368	"ii"-2369	"u"-2370	"uu"-2371	"R"-2372	"RR"-2373	"eN"-2374	"e"-2375	"e"-2376	"ai"-2377	"oN"-2378	"o"-2379	"o"-2380	"au"-2382	"[?]"-2383	"[?]"-2384	"AUM"-2385	"'"-2386	"'"-2387	"`"-2388	"'"-2389	"[?]"-2390	"[?]"-2391	"[?]"-2392	"q"-2393	"khh"-2394	"ghh"-2395	"z"-2396	"dddh"-2397	"rh"-2398	"f"-2399	"yy"-2400	"RR"-2401	"LL"-2402	"L"-2403	"LL"-2404	" / "-2405	" // "-2406	"0"-2407	"1"-2408	"2"-2409	"3"-2410	"4"-2411	"5"-2412	"6"-2413	"7"-2414	"8"-2415	"9"-2416	"."-2417	"[?]"-2418	"[?]"-2419	"[?]"-2420	"[?]"-2421	"[?]"-2422	"[?]"-2423	"[?]"-2424	"[?]"-2425	"[?]"-2426	"[?]"-2427	"[?]"-2428	"[?]"-2429	"[?]"-2430	"[?]"-2431	"[?]"-2432	"[?]"-2433	"N"-2434	"N"-2435	"H"-2436	"[?]"-2437	"a"-2438	"aa"-2439	"i"-2440	"ii"-2441	"u"-2442	"uu"-2443	"R"-2444	"RR"-2445	"[?]"-2446	"[?]"-2447	"e"-2448	"ai"-2449	"[?]"-2450	"[?]"-2451	"o"-2452	"au"-2453	"k"-2454	"kh"-2455	"g"-2456	"gh"-2457	"ng"-2458	"c"-2459	"ch"-2460	"j"-2461	"jh"-2462	"ny"-2463	"tt"-2464	"tth"-2465	"dd"-2466	"ddh"-2467	"nn"-2468	"t"-2469	"th"-2470	"d"-2471	"dh"-2472	"n"-2473	"[?]"-2474	"p"-2475	"ph"-2476	"b"-2477	"bh"-2478	"m"-2479	"y"-2480	"r"-2481	"[?]"-2482	"l"-2483	"[?]"-2484	"[?]"-2485	"[?]"-2486	"sh"-2487	"ss"-2488	"s"-2489	"h"-2490	"[?]"-2491	"[?]"-2492	"'"-2493	"[?]"-2494	"aa"-2495	"i"-2496	"ii"-2497	"u"-2498	"uu"-2499	"R"-2500	"RR"-2501	"[?]"-2502	"[?]"-2503	"e"-2504	"ai"-2505	"[?]"-2506	"[?]"-2507	"o"-2508	"au"-2510	"[?]"-2511	"[?]"-2512	"[?]"-2513	"[?]"-2514	"[?]"-2515	"[?]"-2516	"[?]"-2517	"[?]"-2518	"[?]"-2519	"+"-2520	"[?]"-2521	"[?]"-2522	"[?]"-2523	"[?]"-2524	"rr"-2525	"rh"-2526	"[?]"-2527	"yy"-2528	"RR"-2529	"LL"-2530	"L"-2531	"LL"-2532	"[?]"-2533	"[?]"-2534	"0"-2535	"1"-2536	"2"-2537	"3"-2538	"4"-2539	"5"-2540	"6"-2541	"7"-2542	"8"-2543	"9"-2544	"r'"-2545	"r`"-2546	"Rs"-2547	"Rs"-2548	"1/"-2549	"2/"-2550	"3/"-2551	"4/"-2552	" 1 - 1/"-2553	"/16"-2555	"[?]"-2556	"[?]"-2557	"[?]"-2558	"[?]"-2560	"[?]"-2561	"[?]"-2562	"N"-2563	"[?]"-2564	"[?]"-2565	"a"-2566	"aa"-2567	"i"-2568	"ii"-2569	"u"-2570	"uu"-2571	"[?]"-2572	"[?]"-2573	"[?]"-2574	"[?]"-2575	"ee"-2576	"ai"-2577	"[?]"-2578	"[?]"-2579	"oo"-2580	"au"-2581	"k"-2582	"kh"-2583	"g"-2584	"gh"-2585	"ng"-2586	"c"-2587	"ch"-2588	"j"-2589	"jh"-2590	"ny"-2591	"tt"-2592	"tth"-2593	"dd"-2594	"ddh"-2595	"nn"-2596	"t"-2597	"th"-2598	"d"-2599	"dh"-2600	"n"-2601	"[?]"-2602	"p"-2603	"ph"-2604	"b"-2605	"bb"-2606	"m"-2607	"y"-2608	"r"-2609	"[?]"-2610	"l"-2611	"ll"-2612	"[?]"-2613	"v"-2614	"sh"-2615	"[?]"-2616	"s"-2617	"h"-2618	"[?]"-2619	"[?]"-2620	"'"-2621	"[?]"-2622	"aa"-2623	"i"-2624	"ii"-2625	"u"-2626	"uu"-2627	"[?]"-2628	"[?]"-2629	"[?]"-2630	"[?]"-2631	"ee"-2632	"ai"-2633	"[?]"-2634	"[?]"-2635	"oo"-2636	"au"-2638	"[?]"-2639	"[?]"-2640	"[?]"-2641	"[?]"-2642	"[?]"-2643	"[?]"-2644	"[?]"-2645	"[?]"-2646	"[?]"-2647	"[?]"-2648	"[?]"-2649	"khh"-2650	"ghh"-2651	"z"-2652	"rr"-2653	"[?]"-2654	"f"-2655	"[?]"-2656	"[?]"-2657	"[?]"-2658	"[?]"-2659	"[?]"-2660	"[?]"-2661	"[?]"-2662	"0"-2663	"1"-2664	"2"-2665	"3"-2666	"4"-2667	"5"-2668	"6"-2669	"7"-2670	"8"-2671	"9"-2672	"N"-2673	"H"-2676	"G.E.O."-2677	"[?]"-2678	"[?]"-2679	"[?]"-2680	"[?]"-2681	"[?]"-2682	"[?]"-2683	"[?]"-2684	"[?]"-2685	"[?]"-2686	"[?]"-2687	"[?]"-2688	"[?]"-2689	"N"-2690	"N"-2691	"H"-2692	"[?]"-2693	"a"-2694	"aa"-2695	"i"-2696	"ii"-2697	"u"-2698	"uu"-2699	"R"-2700	"[?]"-2701	"eN"-2702	"[?]"-2703	"e"-2704	"ai"-2705	"oN"-2706	"[?]"-2707	"o"-2708	"au"-2709	"k"-2710	"kh"-2711	"g"-2712	"gh"-2713	"ng"-2714	"c"-2715	"ch"-2716	"j"-2717	"jh"-2718	"ny"-2719	"tt"-2720	"tth"-2721	"dd"-2722	"ddh"-2723	"nn"-2724	"t"-2725	"th"-2726	"d"-2727	"dh"-2728	"n"-2729	"[?]"-2730	"p"-2731	"ph"-2732	"b"-2733	"bh"-2734	"m"-2735	"ya"-2736	"r"-2737	"[?]"-2738	"l"-2739	"ll"-2740	"[?]"-2741	"v"-2742	"sh"-2743	"ss"-2744	"s"-2745	"h"-2746	"[?]"-2747	"[?]"-2748	"'"-2749	"'"-2750	"aa"-2751	"i"-2752	"ii"-2753	"u"-2754	"uu"-2755	"R"-2756	"RR"-2757	"eN"-2758	"[?]"-2759	"e"-2760	"ai"-2761	"oN"-2762	"[?]"-2763	"o"-2764	"au"-2766	"[?]"-2767	"[?]"-2768	"AUM"-2769	"[?]"-2770	"[?]"-2771	"[?]"-2772	"[?]"-2773	"[?]"-2774	"[?]"-2775	"[?]"-2776	"[?]"-2777	"[?]"-2778	"[?]"-2779	"[?]"-2780	"[?]"-2781	"[?]"-2782	"[?]"-2783	"[?]"-2784	"RR"-2785	"[?]"-2786	"[?]"-2787	"[?]"-2788	"[?]"-2789	"[?]"-2790	"0"-2791	"1"-2792	"2"-2793	"3"-2794	"4"-2795	"5"-2796	"6"-2797	"7"-2798	"8"-2799	"9"-2800	"[?]"-2801	"[?]"-2802	"[?]"-2803	"[?]"-2804	"[?]"-2805	"[?]"-2806	"[?]"-2807	"[?]"-2808	"[?]"-2809	"[?]"-2810	"[?]"-2811	"[?]"-2812	"[?]"-2813	"[?]"-2814	"[?]"-2816	"[?]"-2817	"N"-2818	"N"-2819	"H"-2820	"[?]"-2821	"a"-2822	"aa"-2823	"i"-2824	"ii"-2825	"u"-2826	"uu"-2827	"R"-2828	"L"-2829	"[?]"-2830	"[?]"-2831	"e"-2832	"ai"-2833	"[?]"-2834	"[?]"-2835	"o"-2836	"au"-2837	"k"-2838	"kh"-2839	"g"-2840	"gh"-2841	"ng"-2842	"c"-2843	"ch"-2844	"j"-2845	"jh"-2846	"ny"-2847	"tt"-2848	"tth"-2849	"dd"-2850	"ddh"-2851	"nn"-2852	"t"-2853	"th"-2854	"d"-2855	"dh"-2856	"n"-2857	"[?]"-2858	"p"-2859	"ph"-2860	"b"-2861	"bh"-2862	"m"-2863	"y"-2864	"r"-2865	"[?]"-2866	"l"-2867	"ll"-2868	"[?]"-2870	"sh"-2871	"ss"-2872	"s"-2873	"h"-2874	"[?]"-2875	"[?]"-2876	"'"-2877	"'"-2878	"aa"-2879	"i"-2880	"ii"-2881	"u"-2882	"uu"-2883	"R"-2884	"[?]"-2885	"[?]"-2886	"[?]"-2887	"e"-2888	"ai"-2889	"[?]"-2890	"[?]"-2891	"o"-2892	"au"-2894	"[?]"-2895	"[?]"-2896	"[?]"-2897	"[?]"-2898	"[?]"-2899	"[?]"-2900	"[?]"-2901	"[?]"-2902	"+"-2903	"+"-2904	"[?]"-2905	"[?]"-2906	"[?]"-2907	"[?]"-2908	"rr"-2909	"rh"-2910	"[?]"-2911	"yy"-2912	"RR"-2913	"LL"-2914	"[?]"-2915	"[?]"-2916	"[?]"-2917	"[?]"-2918	"0"-2919	"1"-2920	"2"-2921	"3"-2922	"4"-2923	"5"-2924	"6"-2925	"7"-2926	"8"-2927	"9"-2929	"[?]"-2930	"[?]"-2931	"[?]"-2932	"[?]"-2933	"[?]"-2934	"[?]"-2935	"[?]"-2936	"[?]"-2937	"[?]"-2938	"[?]"-2939	"[?]"-2940	"[?]"-2941	"[?]"-2942	"[?]"-2943	"[?]"-2944	"[?]"-2945	"[?]"-2946	"N"-2947	"H"-2948	"[?]"-2949	"a"-2950	"aa"-2951	"i"-2952	"ii"-2953	"u"-2954	"uu"-2955	"[?]"-2956	"[?]"-2957	"[?]"-2958	"e"-2959	"ee"-2960	"ai"-2961	"[?]"-2962	"o"-2963	"oo"-2964	"au"-2965	"k"-2966	"[?]"-2967	"[?]"-2968	"[?]"-2969	"ng"-2970	"c"-2971	"[?]"-2972	"j"-2973	"[?]"-2974	"ny"-2975	"tt"-2976	"[?]"-2977	"[?]"-2978	"[?]"-2979	"nn"-2980	"t"-2981	"[?]"-2982	"[?]"-2983	"[?]"-2984	"n"-2985	"nnn"-2986	"p"-2987	"[?]"-2988	"[?]"-2989	"[?]"-2990	"m"-2991	"y"-2992	"r"-2993	"rr"-2994	"l"-2995	"ll"-2996	"lll"-2997	"v"-2998	"[?]"-2999	"ss"-3000	"s"-3001	"h"-3002	"[?]"-3003	"[?]"-3004	"[?]"-3005	"[?]"-3006	"aa"-3007	"i"-3008	"ii"-3009	"u"-3010	"uu"-3011	"[?]"-3012	"[?]"-3013	"[?]"-3014	"e"-3015	"ee"-3016	"ai"-3017	"[?]"-3018	"o"-3019	"oo"-3020	"au"-3022	"[?]"-3023	"[?]"-3024	"[?]"-3025	"[?]"-3026	"[?]"-3027	"[?]"-3028	"[?]"-3029	"[?]"-3030	"[?]"-3031	"+"-3032	"[?]"-3033	"[?]"-3034	"[?]"-3035	"[?]"-3036	"[?]"-3037	"[?]"-3038	"[?]"-3039	"[?]"-3040	"[?]"-3041	"[?]"-3042	"[?]"-3043	"[?]"-3044	"[?]"-3045	"[?]"-3046	"0"-3047	"1"-3048	"2"-3049	"3"-3050	"4"-3051	"5"-3052	"6"-3053	"7"-3054	"8"-3055	"9"-3056	"+10+"-3057	"+100+"-3058	"+1000+"-3059	"[?]"-3060	"[?]"-3061	"[?]"-3062	"[?]"-3063	"[?]"-3064	"[?]"-3065	"[?]"-3066	"[?]"-3067	"[?]"-3068	"[?]"-3069	"[?]"-3070	"[?]"-3072	"[?]"-3073	"N"-3074	"N"-3075	"H"-3076	"[?]"-3077	"a"-3078	"aa"-3079	"i"-3080	"ii"-3081	"u"-3082	"uu"-3083	"R"-3084	"L"-3085	"[?]"-3086	"e"-3087	"ee"-3088	"ai"-3089	"[?]"-3090	"o"-3091	"oo"-3092	"au"-3093	"k"-3094	"kh"-3095	"g"-3096	"gh"-3097	"ng"-3098	"c"-3099	"ch"-3100	"j"-3101	"jh"-3102	"ny"-3103	"tt"-3104	"tth"-3105	"dd"-3106	"ddh"-3107	"nn"-3108	"t"-3109	"th"-3110	"d"-3111	"dh"-3112	"n"-3113	"[?]"-3114	"p"-3115	"ph"-3116	"b"-3117	"bh"-3118	"m"-3119	"y"-3120	"r"-3121	"rr"-3122	"l"-3123	"ll"-3124	"[?]"-3125	"v"-3126	"sh"-3127	"ss"-3128	"s"-3129	"h"-3130	"[?]"-3131	"[?]"-3132	"[?]"-3133	"[?]"-3134	"aa"-3135	"i"-3136	"ii"-3137	"u"-3138	"uu"-3139	"R"-3140	"RR"-3141	"[?]"-3142	"e"-3143	"ee"-3144	"ai"-3145	"[?]"-3146	"o"-3147	"oo"-3148	"au"-3150	"[?]"-3151	"[?]"-3152	"[?]"-3153	"[?]"-3154	"[?]"-3155	"[?]"-3156	"[?]"-3157	"+"-3158	"+"-3159	"[?]"-3160	"[?]"-3161	"[?]"-3162	"[?]"-3163	"[?]"-3164	"[?]"-3165	"[?]"-3166	"[?]"-3167	"[?]"-3168	"RR"-3169	"LL"-3170	"[?]"-3171	"[?]"-3172	"[?]"-3173	"[?]"-3174	"0"-3175	"1"-3176	"2"-3177	"3"-3178	"4"-3179	"5"-3180	"6"-3181	"7"-3182	"8"-3183	"9"-3184	"[?]"-3185	"[?]"-3186	"[?]"-3187	"[?]"-3188	"[?]"-3189	"[?]"-3190	"[?]"-3191	"[?]"-3192	"[?]"-3193	"[?]"-3194	"[?]"-3195	"[?]"-3196	"[?]"-3197	"[?]"-3198	"[?]"-3199	"[?]"-3200	"[?]"-3201	"[?]"-3202	"N"-3203	"H"-3204	"[?]"-3205	"a"-3206	"aa"-3207	"i"-3208	"ii"-3209	"u"-3210	"uu"-3211	"R"-3212	"L"-3213	"[?]"-3214	"e"-3215	"ee"-3216	"ai"-3217	"[?]"-3218	"o"-3219	"oo"-3220	"au"-3221	"k"-3222	"kh"-3223	"g"-3224	"gh"-3225	"ng"-3226	"c"-3227	"ch"-3228	"j"-3229	"jh"-3230	"ny"-3231	"tt"-3232	"tth"-3233	"dd"-3234	"ddh"-3235	"nn"-3236	"t"-3237	"th"-3238	"d"-3239	"dh"-3240	"n"-3241	"[?]"-3242	"p"-3243	"ph"-3244	"b"-3245	"bh"-3246	"m"-3247	"y"-3248	"r"-3249	"rr"-3250	"l"-3251	"ll"-3252	"[?]"-3253	"v"-3254	"sh"-3255	"ss"-3256	"s"-3257	"h"-3258	"[?]"-3259	"[?]"-3260	"[?]"-3261	"[?]"-3262	"aa"-3263	"i"-3264	"ii"-3265	"u"-3266	"uu"-3267	"R"-3268	"RR"-3269	"[?]"-3270	"e"-3271	"ee"-3272	"ai"-3273	"[?]"-3274	"o"-3275	"oo"-3276	"au"-3278	"[?]"-3279	"[?]"-3280	"[?]"-3281	"[?]"-3282	"[?]"-3283	"[?]"-3284	"[?]"-3285	"+"-3286	"+"-3287	"[?]"-3288	"[?]"-3289	"[?]"-3290	"[?]"-3291	"[?]"-3292	"[?]"-3293	"[?]"-3294	"lll"-3295	"[?]"-3296	"RR"-3297	"LL"-3298	"[?]"-3299	"[?]"-3300	"[?]"-3301	"[?]"-3302	"0"-3303	"1"-3304	"2"-3305	"3"-3306	"4"-3307	"5"-3308	"6"-3309	"7"-3310	"8"-3311	"9"-3312	"[?]"-3313	"[?]"-3314	"[?]"-3315	"[?]"-3316	"[?]"-3317	"[?]"-3318	"[?]"-3319	"[?]"-3320	"[?]"-3321	"[?]"-3322	"[?]"-3323	"[?]"-3324	"[?]"-3325	"[?]"-3326	"[?]"-3328	"[?]"-3329	"[?]"-3330	"N"-3331	"H"-3332	"[?]"-3333	"a"-3334	"aa"-3335	"i"-3336	"ii"-3337	"u"-3338	"uu"-3339	"R"-3340	"L"-3341	"[?]"-3342	"e"-3343	"ee"-3344	"ai"-3345	"[?]"-3346	"o"-3347	"oo"-3348	"au"-3349	"k"-3350	"kh"-3351	"g"-3352	"gh"-3353	"ng"-3354	"c"-3355	"ch"-3356	"j"-3357	"jh"-3358	"ny"-3359	"tt"-3360	"tth"-3361	"dd"-3362	"ddh"-3363	"nn"-3364	"t"-3365	"th"-3366	"d"-3367	"dh"-3368	"n"-3369	"[?]"-3370	"p"-3371	"ph"-3372	"b"-3373	"bh"-3374	"m"-3375	"y"-3376	"r"-3377	"rr"-3378	"l"-3379	"ll"-3380	"lll"-3381	"v"-3382	"sh"-3383	"ss"-3384	"s"-3385	"h"-3386	"[?]"-3387	"[?]"-3388	"[?]"-3389	"[?]"-3390	"aa"-3391	"i"-3392	"ii"-3393	"u"-3394	"uu"-3395	"R"-3396	"[?]"-3397	"[?]"-3398	"e"-3399	"ee"-3400	"ai"-3402	"o"-3403	"oo"-3404	"au"-3406	"[?]"-3407	"[?]"-3408	"[?]"-3409	"[?]"-3410	"[?]"-3411	"[?]"-3412	"[?]"-3413	"[?]"-3414	"[?]"-3415	"+"-3416	"[?]"-3417	"[?]"-3418	"[?]"-3419	"[?]"-3420	"[?]"-3421	"[?]"-3422	"[?]"-3423	"[?]"-3424	"RR"-3425	"LL"-3426	"[?]"-3427	"[?]"-3428	"[?]"-3429	"[?]"-3430	"0"-3431	"1"-3432	"2"-3433	"3"-3434	"4"-3435	"5"-3436	"6"-3437	"7"-3438	"8"-3439	"9"-3440	"[?]"-3441	"[?]"-3442	"[?]"-3443	"[?]"-3444	"[?]"-3445	"[?]"-3446	"[?]"-3447	"[?]"-3448	"[?]"-3449	"[?]"-3450	"[?]"-3451	"[?]"-3452	"[?]"-3453	"[?]"-3454	"[?]"-3455	"[?]"-3456	"[?]"-3457	"[?]"-3458	"N"-3459	"H"-3460	"[?]"-3461	"a"-3462	"aa"-3463	"ae"-3464	"aae"-3465	"i"-3466	"ii"-3467	"u"-3468	"uu"-3469	"R"-3470	"RR"-3471	"L"-3472	"LL"-3473	"e"-3474	"ee"-3475	"ai"-3476	"o"-3477	"oo"-3478	"au"-3479	"[?]"-3480	"[?]"-3481	"[?]"-3482	"k"-3483	"kh"-3484	"g"-3485	"gh"-3486	"ng"-3487	"nng"-3488	"c"-3489	"ch"-3490	"j"-3491	"jh"-3492	"ny"-3493	"jny"-3494	"nyj"-3495	"tt"-3496	"tth"-3497	"dd"-3498	"ddh"-3499	"nn"-3500	"nndd"-3501	"t"-3502	"th"-3503	"d"-3504	"dh"-3505	"n"-3506	"[?]"-3507	"nd"-3508	"p"-3509	"ph"-3510	"b"-3511	"bh"-3512	"m"-3513	"mb"-3514	"y"-3515	"r"-3516	"[?]"-3517	"l"-3518	"[?]"-3519	"[?]"-3520	"v"-3521	"sh"-3522	"ss"-3523	"s"-3524	"h"-3525	"ll"-3526	"f"-3527	"[?]"-3528	"[?]"-3529	"[?]"-3531	"[?]"-3532	"[?]"-3533	"[?]"-3534	"[?]"-3535	"aa"-3536	"ae"-3537	"aae"-3538	"i"-3539	"ii"-3540	"u"-3541	"[?]"-3542	"uu"-3543	"[?]"-3544	"R"-3545	"e"-3546	"ee"-3547	"ai"-3548	"o"-3549	"oo"-3550	"au"-3551	"L"-3552	"[?]"-3553	"[?]"-3554	"[?]"-3555	"[?]"-3556	"[?]"-3557	"[?]"-3558	"[?]"-3559	"[?]"-3560	"[?]"-3561	"[?]"-3562	"[?]"-3563	"[?]"-3564	"[?]"-3565	"[?]"-3566	"[?]"-3567	"[?]"-3568	"[?]"-3569	"[?]"-3570	"RR"-3571	"LL"-3572	" . "-3573	"[?]"-3574	"[?]"-3575	"[?]"-3576	"[?]"-3577	"[?]"-3578	"[?]"-3579	"[?]"-3580	"[?]"-3581	"[?]"-3582	"[?]"-3584	"[?]"-3585	"k"-3586	"kh"-3587	"kh"-3588	"kh"-3589	"kh"-3590	"kh"-3591	"ng"-3592	"cch"-3593	"ch"-3594	"ch"-3595	"ch"-3596	"ch"-3597	"y"-3598	"d"-3599	"t"-3600	"th"-3601	"th"-3602	"th"-3603	"n"-3604	"d"-3605	"t"-3606	"th"-3607	"th"-3608	"th"-3609	"n"-3610	"b"-3611	"p"-3612	"ph"-3613	"f"-3614	"ph"-3615	"f"-3616	"ph"-3617	"m"-3618	"y"-3619	"r"-3620	"R"-3621	"l"-3622	"L"-3623	"w"-3624	"s"-3625	"s"-3626	"s"-3627	"h"-3628	"l"-3629	"`"-3630	"h"-3631	"~"-3632	"a"-3633	"a"-3634	"aa"-3635	"am"-3636	"i"-3637	"ii"-3638	"ue"-3639	"uue"-3640	"u"-3641	"uu"-3642	"'"-3643	"[?]"-3644	"[?]"-3645	"[?]"-3646	"[?]"-3647	"Bh."-3648	"e"-3649	"ae"-3650	"o"-3651	"ai"-3652	"ai"-3653	"ao"-3654	"+"-3661	"M"-3663	" * "-3664	"0"-3665	"1"-3666	"2"-3667	"3"-3668	"4"-3669	"5"-3670	"6"-3671	"7"-3672	"8"-3673	"9"-3674	" // "-3675	" /// "-3676	"[?]"-3677	"[?]"-3678	"[?]"-3679	"[?]"-3680	"[?]"-3681	"[?]"-3682	"[?]"-3683	"[?]"-3684	"[?]"-3685	"[?]"-3686	"[?]"-3687	"[?]"-3688	"[?]"-3689	"[?]"-3690	"[?]"-3691	"[?]"-3692	"[?]"-3693	"[?]"-3694	"[?]"-3695	"[?]"-3696	"[?]"-3697	"[?]"-3698	"[?]"-3699	"[?]"-3700	"[?]"-3701	"[?]"-3702	"[?]"-3703	"[?]"-3704	"[?]"-3705	"[?]"-3706	"[?]"-3707	"[?]"-3708	"[?]"-3709	"[?]"-3710	"[?]"-3711	"[?]"-3712	"[?]"-3713	"k"-3714	"kh"-3715	"[?]"-3716	"kh"-3717	"[?]"-3718	"[?]"-3719	"ng"-3720	"ch"-3721	"[?]"-3722	"s"-3723	"[?]"-3724	"[?]"-3725	"ny"-3726	"[?]"-3727	"[?]"-3728	"[?]"-3729	"[?]"-3730	"[?]"-3731	"[?]"-3732	"d"-3733	"h"-3734	"th"-3735	"th"-3736	"[?]"-3737	"n"-3738	"b"-3739	"p"-3740	"ph"-3741	"f"-3742	"ph"-3743	"f"-3744	"[?]"-3745	"m"-3746	"y"-3747	"r"-3748	"[?]"-3749	"l"-3750	"[?]"-3751	"w"-3752	"[?]"-3753	"[?]"-3754	"s"-3755	"h"-3756	"[?]"-3757	"`"-3759	"~"-3760	"a"-3762	"aa"-3763	"am"-3764	"i"-3765	"ii"-3766	"y"-3767	"yy"-3768	"u"-3769	"uu"-3770	"[?]"-3771	"o"-3772	"l"-3773	"ny"-3774	"[?]"-3775	"[?]"-3776	"e"-3777	"ei"-3778	"o"-3779	"ay"-3780	"ai"-3781	"[?]"-3782	"+"-3783	"[?]"-3789	"M"-3790	"[?]"-3791	"[?]"-3792	"0"-3793	"1"-3794	"2"-3795	"3"-3796	"4"-3797	"5"-3798	"6"-3799	"7"-3800	"8"-3801	"9"-3802	"[?]"-3803	"[?]"-3804	"hn"-3805	"hm"-3806	"[?]"-3807	"[?]"-3808	"[?]"-3809	"[?]"-3810	"[?]"-3811	"[?]"-3812	"[?]"-3813	"[?]"-3814	"[?]"-3815	"[?]"-3816	"[?]"-3817	"[?]"-3818	"[?]"-3819	"[?]"-3820	"[?]"-3821	"[?]"-3822	"[?]"-3823	"[?]"-3824	"[?]"-3825	"[?]"-3826	"[?]"-3827	"[?]"-3828	"[?]"-3829	"[?]"-3830	"[?]"-3831	"[?]"-3832	"[?]"-3833	"[?]"-3834	"[?]"-3835	"[?]"-3836	"[?]"-3837	"[?]"-3838	"[?]"-3840	"AUM"-3848	" // "-3849	" * "-3851	"-"-3852	" / "-3853	" / "-3854	" // "-3855	" -/ "-3856	" +/ "-3857	" X/ "-3858	" /XX/ "-3859	" /X/ "-3860	", "-3872	"0"-3873	"1"-3874	"2"-3875	"3"-3876	"4"-3877	"5"-3878	"6"-3879	"7"-3880	"8"-3881	"9"-3882	".5"-3883	"1.5"-3884	"2.5"-3885	"3.5"-3886	"4.5"-3887	"5.5"-3888	"6.5"-3889	"7.5"-3890	"8.5"-3891	"-.5"-3892	"+"-3893	"*"-3894	"^"-3895	"_"-3897	"~"-3898	"[?]"-3899	"]"-3900	"[["-3901	"]]"-3904	"k"-3905	"kh"-3906	"g"-3907	"gh"-3908	"ng"-3909	"c"-3910	"ch"-3911	"j"-3912	"[?]"-3913	"ny"-3914	"tt"-3915	"tth"-3916	"dd"-3917	"ddh"-3918	"nn"-3919	"t"-3920	"th"-3921	"d"-3922	"dh"-3923	"n"-3924	"p"-3925	"ph"-3926	"b"-3927	"bh"-3928	"m"-3929	"ts"-3930	"tsh"-3931	"dz"-3932	"dzh"-3933	"w"-3934	"zh"-3935	"z"-3936	"'"-3937	"y"-3938	"r"-3939	"l"-3940	"sh"-3941	"ssh"-3942	"s"-3943	"h"-3944	"a"-3945	"kss"-3946	"r"-3947	"[?]"-3948	"[?]"-3949	"[?]"-3950	"[?]"-3951	"[?]"-3952	"[?]"-3953	"aa"-3954	"i"-3955	"ii"-3956	"u"-3957	"uu"-3958	"R"-3959	"RR"-3960	"L"-3961	"LL"-3962	"e"-3963	"ee"-3964	"o"-3965	"oo"-3966	"M"-3967	"H"-3968	"i"-3969	"ii"-3980	"[?]"-3981	"[?]"-3982	"[?]"-3983	"[?]"-3984	"k"-3985	"kh"-3986	"g"-3987	"gh"-3988	"ng"-3989	"c"-3990	"ch"-3991	"j"-3992	"[?]"-3993	"ny"-3994	"tt"-3995	"tth"-3996	"dd"-3997	"ddh"-3998	"nn"-3999	"t"-4000	"th"-4001	"d"-4002	"dh"-4003	"n"-4004	"p"-4005	"ph"-4006	"b"-4007	"bh"-4008	"m"-4009	"ts"-4010	"tsh"-4011	"dz"-4012	"dzh"-4013	"w"-4014	"zh"-4015	"z"-4016	"'"-4017	"y"-4018	"r"-4019	"l"-4020	"sh"-4021	"ss"-4022	"s"-4023	"h"-4024	"a"-4025	"kss"-4026	"w"-4027	"y"-4028	"r"-4029	"[?]"-4030	"X"-4031	" :X: "-4032	" /O/ "-4033	" /o/ "-4034	" \\o\\ "-4035	" (O) "-4045	"[?]"-4046	"[?]"-4048	"[?]"-4049	"[?]"-4050	"[?]"-4051	"[?]"-4052	"[?]"-4053	"[?]"-4054	"[?]"-4055	"[?]"-4056	"[?]"-4057	"[?]"-4058	"[?]"-4059	"[?]"-4060	"[?]"-4061	"[?]"-4062	"[?]"-4063	"[?]"-4064	"[?]"-4065	"[?]"-4066	"[?]"-4067	"[?]"-4068	"[?]"-4069	"[?]"-4070	"[?]"-4071	"[?]"-4072	"[?]"-4073	"[?]"-4074	"[?]"-4075	"[?]"-4076	"[?]"-4077	"[?]"-4078	"[?]"-4079	"[?]"-4080	"[?]"-4081	"[?]"-4082	"[?]"-4083	"[?]"-4084	"[?]"-4085	"[?]"-4086	"[?]"-4087	"[?]"-4088	"[?]"-4089	"[?]"-4090	"[?]"-4091	"[?]"-4092	"[?]"-4093	"[?]"-4094	"[?]"-4096	"k"-4097	"kh"-4098	"g"-4099	"gh"-4100	"ng"-4101	"c"-4102	"ch"-4103	"j"-4104	"jh"-4105	"ny"-4106	"nny"-4107	"tt"-4108	"tth"-4109	"dd"-4110	"ddh"-4111	"nn"-4112	"tt"-4113	"th"-4114	"d"-4115	"dh"-4116	"n"-4117	"p"-4118	"ph"-4119	"b"-4120	"bh"-4121	"m"-4122	"y"-4123	"r"-4124	"l"-4125	"w"-4126	"s"-4127	"h"-4128	"ll"-4129	"a"-4130	"[?]"-4131	"i"-4132	"ii"-4133	"u"-4134	"uu"-4135	"e"-4136	"[?]"-4137	"o"-4138	"au"-4139	"[?]"-4140	"aa"-4141	"i"-4142	"ii"-4143	"u"-4144	"uu"-4145	"e"-4146	"ai"-4147	"[?]"-4148	"[?]"-4149	"[?]"-4150	"N"-4151	"'"-4152	":"-4154	"[?]"-4155	"[?]"-4156	"[?]"-4157	"[?]"-4158	"[?]"-4159	"[?]"-4160	"0"-4161	"1"-4162	"2"-4163	"3"-4164	"4"-4165	"5"-4166	"6"-4167	"7"-4168	"8"-4169	"9"-4170	" / "-4171	" // "-4172	"n*"-4173	"r*"-4174	"l*"-4175	"e*"-4176	"sh"-4177	"ss"-4178	"R"-4179	"RR"-4180	"L"-4181	"LL"-4182	"R"-4183	"RR"-4184	"L"-4185	"LL"-4186	"[?]"-4187	"[?]"-4188	"[?]"-4189	"[?]"-4190	"[?]"-4191	"[?]"-4192	"[?]"-4193	"[?]"-4194	"[?]"-4195	"[?]"-4196	"[?]"-4197	"[?]"-4198	"[?]"-4199	"[?]"-4200	"[?]"-4201	"[?]"-4202	"[?]"-4203	"[?]"-4204	"[?]"-4205	"[?]"-4206	"[?]"-4207	"[?]"-4208	"[?]"-4209	"[?]"-4210	"[?]"-4211	"[?]"-4212	"[?]"-4213	"[?]"-4214	"[?]"-4215	"[?]"-4216	"[?]"-4217	"[?]"-4218	"[?]"-4219	"[?]"-4220	"[?]"-4221	"[?]"-4222	"[?]"-4223	"[?]"-4224	"[?]"-4225	"[?]"-4226	"[?]"-4227	"[?]"-4228	"[?]"-4229	"[?]"-4230	"[?]"-4231	"[?]"-4232	"[?]"-4233	"[?]"-4234	"[?]"-4235	"[?]"-4236	"[?]"-4237	"[?]"-4238	"[?]"-4239	"[?]"-4240	"[?]"-4241	"[?]"-4242	"[?]"-4243	"[?]"-4244	"[?]"-4245	"[?]"-4246	"[?]"-4247	"[?]"-4248	"[?]"-4249	"[?]"-4250	"[?]"-4251	"[?]"-4252	"[?]"-4253	"[?]"-4254	"[?]"-4255	"[?]"-4256	"A"-4257	"B"-4258	"G"-4259	"D"-4260	"E"-4261	"V"-4262	"Z"-4263	"T`"-4264	"I"-4265	"K"-4266	"L"-4267	"M"-4268	"N"-4269	"O"-4270	"P"-4271	"Zh"-4272	"R"-4273	"S"-4274	"T"-4275	"U"-4276	"P`"-4277	"K`"-4278	"G'"-4279	"Q"-4280	"Sh"-4281	"Ch`"-4282	"C`"-4283	"Z'"-4284	"C"-4285	"Ch"-4286	"X"-4287	"J"-4288	"H"-4289	"E"-4290	"Y"-4291	"W"-4292	"Xh"-4293	"OE"-4294	"[?]"-4295	"[?]"-4296	"[?]"-4297	"[?]"-4298	"[?]"-4299	"[?]"-4300	"[?]"-4301	"[?]"-4302	"[?]"-4303	"[?]"-4304	"a"-4305	"b"-4306	"g"-4307	"d"-4308	"e"-4309	"v"-4310	"z"-4311	"t`"-4312	"i"-4313	"k"-4314	"l"-4315	"m"-4316	"n"-4317	"o"-4318	"p"-4319	"zh"-4320	"r"-4321	"s"-4322	"t"-4323	"u"-4324	"p`"-4325	"k`"-4326	"g'"-4327	"q"-4328	"sh"-4329	"ch`"-4330	"c`"-4331	"z'"-4332	"c"-4333	"ch"-4334	"x"-4335	"j"-4336	"h"-4337	"e"-4338	"y"-4339	"w"-4340	"xh"-4341	"oe"-4342	"f"-4343	"[?]"-4344	"[?]"-4345	"[?]"-4346	"[?]"-4347	" // "-4348	"[?]"-4349	"[?]"-4350	"[?]"-4352	"g"-4353	"gg"-4354	"n"-4355	"d"-4356	"dd"-4357	"r"-4358	"m"-4359	"b"-4360	"bb"-4361	"s"-4362	"ss"-4364	"j"-4365	"jj"-4366	"c"-4367	"k"-4368	"t"-4369	"p"-4370	"h"-4371	"ng"-4372	"nn"-4373	"nd"-4374	"nb"-4375	"dg"-4376	"rn"-4377	"rr"-4378	"rh"-4379	"rN"-4380	"mb"-4381	"mN"-4382	"bg"-4383	"bn"-4385	"bs"-4386	"bsg"-4387	"bst"-4388	"bsb"-4389	"bss"-4390	"bsj"-4391	"bj"-4392	"bc"-4393	"bt"-4394	"bp"-4395	"bN"-4396	"bbN"-4397	"sg"-4398	"sn"-4399	"sd"-4400	"sr"-4401	"sm"-4402	"sb"-4403	"sbg"-4404	"sss"-4405	"s"-4406	"sj"-4407	"sc"-4408	"sk"-4409	"st"-4410	"sp"-4411	"sh"-4416	"Z"-4417	"g"-4418	"d"-4419	"m"-4420	"b"-4421	"s"-4422	"Z"-4424	"j"-4425	"c"-4426	"t"-4427	"p"-4428	"N"-4429	"j"-4434	"ck"-4435	"ch"-4438	"pb"-4439	"pN"-4440	"hh"-4441	"Q"-4442	"[?]"-4443	"[?]"-4444	"[?]"-4445	"[?]"-4446	"[?]"-4449	"a"-4450	"ae"-4451	"ya"-4452	"yae"-4453	"eo"-4454	"e"-4455	"yeo"-4456	"ye"-4457	"o"-4458	"wa"-4459	"wae"-4460	"oe"-4461	"yo"-4462	"u"-4463	"weo"-4464	"we"-4465	"wi"-4466	"yu"-4467	"eu"-4468	"yi"-4469	"i"-4470	"a-o"-4471	"a-u"-4472	"ya-o"-4473	"ya-yo"-4474	"eo-o"-4475	"eo-u"-4476	"eo-eu"-4477	"yeo-o"-4478	"yeo-u"-4479	"o-eo"-4480	"o-e"-4481	"o-ye"-4482	"o-o"-4483	"o-u"-4484	"yo-ya"-4485	"yo-yae"-4486	"yo-yeo"-4487	"yo-o"-4488	"yo-i"-4489	"u-a"-4490	"u-ae"-4491	"u-eo-eu"-4492	"u-ye"-4493	"u-u"-4494	"yu-a"-4495	"yu-eo"-4496	"yu-e"-4497	"yu-yeo"-4498	"yu-ye"-4499	"yu-u"-4500	"yu-i"-4501	"eu-u"-4502	"eu-eu"-4503	"yi-u"-4504	"i-a"-4505	"i-ya"-4506	"i-o"-4507	"i-u"-4508	"i-eu"-4509	"i-U"-4510	"U"-4511	"U-eo"-4512	"U-u"-4513	"U-i"-4514	"UU"-4515	"[?]"-4516	"[?]"-4517	"[?]"-4518	"[?]"-4519	"[?]"-4520	"g"-4521	"gg"-4522	"gs"-4523	"n"-4524	"nj"-4525	"nh"-4526	"d"-4527	"l"-4528	"lg"-4529	"lm"-4530	"lb"-4531	"ls"-4532	"lt"-4533	"lp"-4534	"lh"-4535	"m"-4536	"b"-4537	"bs"-4538	"s"-4539	"ss"-4540	"ng"-4541	"j"-4542	"c"-4543	"k"-4544	"t"-4545	"p"-4546	"h"-4547	"gl"-4548	"gsg"-4549	"ng"-4550	"nd"-4551	"ns"-4552	"nZ"-4553	"nt"-4554	"dg"-4555	"tl"-4556	"lgs"-4557	"ln"-4558	"ld"-4559	"lth"-4560	"ll"-4561	"lmg"-4562	"lms"-4563	"lbs"-4564	"lbh"-4565	"rNp"-4566	"lss"-4567	"lZ"-4568	"lk"-4569	"lQ"-4570	"mg"-4571	"ml"-4572	"mb"-4573	"ms"-4574	"mss"-4575	"mZ"-4576	"mc"-4577	"mh"-4578	"mN"-4579	"bl"-4580	"bp"-4581	"ph"-4582	"pN"-4583	"sg"-4584	"sd"-4585	"sl"-4586	"sb"-4587	"Z"-4588	"g"-4589	"ss"-4591	"kh"-4592	"N"-4593	"Ns"-4594	"NZ"-4595	"pb"-4596	"pN"-4597	"hn"-4598	"hl"-4599	"hm"-4600	"hb"-4601	"Q"-4602	"[?]"-4603	"[?]"-4604	"[?]"-4605	"[?]"-4606	"[?]"-4608	"ha"-4609	"hu"-4610	"hi"-4611	"haa"-4612	"hee"-4613	"he"-4614	"ho"-4615	"[?]"-4616	"la"-4617	"lu"-4618	"li"-4619	"laa"-4620	"lee"-4621	"le"-4622	"lo"-4623	"lwa"-4624	"hha"-4625	"hhu"-4626	"hhi"-4627	"hhaa"-4628	"hhee"-4629	"hhe"-4630	"hho"-4631	"hhwa"-4632	"ma"-4633	"mu"-4634	"mi"-4635	"maa"-4636	"mee"-4637	"me"-4638	"mo"-4639	"mwa"-4640	"sza"-4641	"szu"-4642	"szi"-4643	"szaa"-4644	"szee"-4645	"sze"-4646	"szo"-4647	"szwa"-4648	"ra"-4649	"ru"-4650	"ri"-4651	"raa"-4652	"ree"-4653	"re"-4654	"ro"-4655	"rwa"-4656	"sa"-4657	"su"-4658	"si"-4659	"saa"-4660	"see"-4661	"se"-4662	"so"-4663	"swa"-4664	"sha"-4665	"shu"-4666	"shi"-4667	"shaa"-4668	"shee"-4669	"she"-4670	"sho"-4671	"shwa"-4672	"qa"-4673	"qu"-4674	"qi"-4675	"qaa"-4676	"qee"-4677	"qe"-4678	"qo"-4679	"[?]"-4680	"qwa"-4681	"[?]"-4682	"qwi"-4683	"qwaa"-4684	"qwee"-4685	"qwe"-4686	"[?]"-4687	"[?]"-4688	"qha"-4689	"qhu"-4690	"qhi"-4691	"qhaa"-4692	"qhee"-4693	"qhe"-4694	"qho"-4695	"[?]"-4696	"qhwa"-4697	"[?]"-4698	"qhwi"-4699	"qhwaa"-4700	"qhwee"-4701	"qhwe"-4702	"[?]"-4703	"[?]"-4704	"ba"-4705	"bu"-4706	"bi"-4707	"baa"-4708	"bee"-4709	"be"-4710	"bo"-4711	"bwa"-4712	"va"-4713	"vu"-4714	"vi"-4715	"vaa"-4716	"vee"-4717	"ve"-4718	"vo"-4719	"vwa"-4720	"ta"-4721	"tu"-4722	"ti"-4723	"taa"-4724	"tee"-4725	"te"-4726	"to"-4727	"twa"-4728	"ca"-4729	"cu"-4730	"ci"-4731	"caa"-4732	"cee"-4733	"ce"-4734	"co"-4735	"cwa"-4736	"xa"-4737	"xu"-4738	"xi"-4739	"xaa"-4740	"xee"-4741	"xe"-4742	"xo"-4743	"[?]"-4744	"xwa"-4745	"[?]"-4746	"xwi"-4747	"xwaa"-4748	"xwee"-4749	"xwe"-4750	"[?]"-4751	"[?]"-4752	"na"-4753	"nu"-4754	"ni"-4755	"naa"-4756	"nee"-4757	"ne"-4758	"no"-4759	"nwa"-4760	"nya"-4761	"nyu"-4762	"nyi"-4763	"nyaa"-4764	"nyee"-4765	"nye"-4766	"nyo"-4767	"nywa"-4768	"'a"-4769	"'u"-4770	"[?]"-4771	"'aa"-4772	"'ee"-4773	"'e"-4774	"'o"-4775	"'wa"-4776	"ka"-4777	"ku"-4778	"ki"-4779	"kaa"-4780	"kee"-4781	"ke"-4782	"ko"-4783	"[?]"-4784	"kwa"-4785	"[?]"-4786	"kwi"-4787	"kwaa"-4788	"kwee"-4789	"kwe"-4790	"[?]"-4791	"[?]"-4792	"kxa"-4793	"kxu"-4794	"kxi"-4795	"kxaa"-4796	"kxee"-4797	"kxe"-4798	"kxo"-4799	"[?]"-4800	"kxwa"-4801	"[?]"-4802	"kxwi"-4803	"kxwaa"-4804	"kxwee"-4805	"kxwe"-4806	"[?]"-4807	"[?]"-4808	"wa"-4809	"wu"-4810	"wi"-4811	"waa"-4812	"wee"-4813	"we"-4814	"wo"-4815	"[?]"-4816	"`a"-4817	"`u"-4818	"`i"-4819	"`aa"-4820	"`ee"-4821	"`e"-4822	"`o"-4823	"[?]"-4824	"za"-4825	"zu"-4826	"zi"-4827	"zaa"-4828	"zee"-4829	"ze"-4830	"zo"-4831	"zwa"-4832	"zha"-4833	"zhu"-4834	"zhi"-4835	"zhaa"-4836	"zhee"-4837	"zhe"-4838	"zho"-4839	"zhwa"-4840	"ya"-4841	"yu"-4842	"yi"-4843	"yaa"-4844	"yee"-4845	"ye"-4846	"yo"-4847	"[?]"-4848	"da"-4849	"du"-4850	"di"-4851	"daa"-4852	"dee"-4853	"de"-4854	"do"-4855	"dwa"-4856	"dda"-4857	"ddu"-4858	"ddi"-4859	"ddaa"-4860	"ddee"-4861	"dde"-4862	"ddo"-4863	"ddwa"-4864	"ja"-4865	"ju"-4866	"ji"-4867	"jaa"-4868	"jee"-4869	"je"-4870	"jo"-4871	"jwa"-4872	"ga"-4873	"gu"-4874	"gi"-4875	"gaa"-4876	"gee"-4877	"ge"-4878	"go"-4879	"[?]"-4880	"gwa"-4881	"[?]"-4882	"gwi"-4883	"gwaa"-4884	"gwee"-4885	"gwe"-4886	"[?]"-4887	"[?]"-4888	"gga"-4889	"ggu"-4890	"ggi"-4891	"ggaa"-4892	"ggee"-4893	"gge"-4894	"ggo"-4895	"[?]"-4896	"tha"-4897	"thu"-4898	"thi"-4899	"thaa"-4900	"thee"-4901	"the"-4902	"tho"-4903	"thwa"-4904	"cha"-4905	"chu"-4906	"chi"-4907	"chaa"-4908	"chee"-4909	"che"-4910	"cho"-4911	"chwa"-4912	"pha"-4913	"phu"-4914	"phi"-4915	"phaa"-4916	"phee"-4917	"phe"-4918	"pho"-4919	"phwa"-4920	"tsa"-4921	"tsu"-4922	"tsi"-4923	"tsaa"-4924	"tsee"-4925	"tse"-4926	"tso"-4927	"tswa"-4928	"tza"-4929	"tzu"-4930	"tzi"-4931	"tzaa"-4932	"tzee"-4933	"tze"-4934	"tzo"-4935	"[?]"-4936	"fa"-4937	"fu"-4938	"fi"-4939	"faa"-4940	"fee"-4941	"fe"-4942	"fo"-4943	"fwa"-4944	"pa"-4945	"pu"-4946	"pi"-4947	"paa"-4948	"pee"-4949	"pe"-4950	"po"-4951	"pwa"-4952	"rya"-4953	"mya"-4954	"fya"-4955	"[?]"-4956	"[?]"-4957	"[?]"-4958	"[?]"-4959	"[?]"-4960	"[?]"-4961	" "-4962	"."-4963	","-4964	";"-4965	":"-4966	":: "-4967	"?"-4968	"//"-4969	"1"-4970	"2"-4971	"3"-4972	"4"-4973	"5"-4974	"6"-4975	"7"-4976	"8"-4977	"9"-4978	"10+"-4979	"20+"-4980	"30+"-4981	"40+"-4982	"50+"-4983	"60+"-4984	"70+"-4985	"80+"-4986	"90+"-4987	"100+"-4988	"10,000+"-4989	"[?]"-4990	"[?]"-4991	"[?]"-4992	"[?]"-4993	"[?]"-4994	"[?]"-4995	"[?]"-4996	"[?]"-4997	"[?]"-4998	"[?]"-4999	"[?]"-5000	"[?]"-5001	"[?]"-5002	"[?]"-5003	"[?]"-5004	"[?]"-5005	"[?]"-5006	"[?]"-5007	"[?]"-5008	"[?]"-5009	"[?]"-5010	"[?]"-5011	"[?]"-5012	"[?]"-5013	"[?]"-5014	"[?]"-5015	"[?]"-5016	"[?]"-5017	"[?]"-5018	"[?]"-5019	"[?]"-5020	"[?]"-5021	"[?]"-5022	"[?]"-5023	"[?]"-5024	"a"-5025	"e"-5026	"i"-5027	"o"-5028	"u"-5029	"v"-5030	"ga"-5031	"ka"-5032	"ge"-5033	"gi"-5034	"go"-5035	"gu"-5036	"gv"-5037	"ha"-5038	"he"-5039	"hi"-5040	"ho"-5041	"hu"-5042	"hv"-5043	"la"-5044	"le"-5045	"li"-5046	"lo"-5047	"lu"-5048	"lv"-5049	"ma"-5050	"me"-5051	"mi"-5052	"mo"-5053	"mu"-5054	"na"-5055	"hna"-5056	"nah"-5057	"ne"-5058	"ni"-5059	"no"-5060	"nu"-5061	"nv"-5062	"qua"-5063	"que"-5064	"qui"-5065	"quo"-5066	"quu"-5067	"quv"-5068	"sa"-5069	"s"-5070	"se"-5071	"si"-5072	"so"-5073	"su"-5074	"sv"-5075	"da"-5076	"ta"-5077	"de"-5078	"te"-5079	"di"-5080	"ti"-5081	"do"-5082	"du"-5083	"dv"-5084	"dla"-5085	"tla"-5086	"tle"-5087	"tli"-5088	"tlo"-5089	"tlu"-5090	"tlv"-5091	"tsa"-5092	"tse"-5093	"tsi"-5094	"tso"-5095	"tsu"-5096	"tsv"-5097	"wa"-5098	"we"-5099	"wi"-5100	"wo"-5101	"wu"-5102	"wv"-5103	"ya"-5104	"ye"-5105	"yi"-5106	"yo"-5107	"yu"-5108	"yv"-5109	"[?]"-5110	"[?]"-5111	"[?]"-5112	"[?]"-5113	"[?]"-5114	"[?]"-5115	"[?]"-5116	"[?]"-5117	"[?]"-5118	"[?]"-5120	"[?]"-5121	"e"-5122	"aai"-5123	"i"-5124	"ii"-5125	"o"-5126	"oo"-5127	"oo"-5128	"ee"-5129	"i"-5130	"a"-5131	"aa"-5132	"we"-5133	"we"-5134	"wi"-5135	"wi"-5136	"wii"-5137	"wii"-5138	"wo"-5139	"wo"-5140	"woo"-5141	"woo"-5142	"woo"-5143	"wa"-5144	"wa"-5145	"waa"-5146	"waa"-5147	"waa"-5148	"ai"-5149	"w"-5150	"'"-5151	"t"-5152	"k"-5153	"sh"-5154	"s"-5155	"n"-5156	"w"-5157	"n"-5158	"[?]"-5159	"w"-5160	"c"-5161	"?"-5162	"l"-5163	"en"-5164	"in"-5165	"on"-5166	"an"-5167	"pe"-5168	"paai"-5169	"pi"-5170	"pii"-5171	"po"-5172	"poo"-5173	"poo"-5174	"hee"-5175	"hi"-5176	"pa"-5177	"paa"-5178	"pwe"-5179	"pwe"-5180	"pwi"-5181	"pwi"-5182	"pwii"-5183	"pwii"-5184	"pwo"-5185	"pwo"-5186	"pwoo"-5187	"pwoo"-5188	"pwa"-5189	"pwa"-5190	"pwaa"-5191	"pwaa"-5192	"pwaa"-5193	"p"-5194	"p"-5195	"h"-5196	"te"-5197	"taai"-5198	"ti"-5199	"tii"-5200	"to"-5201	"too"-5202	"too"-5203	"dee"-5204	"di"-5205	"ta"-5206	"taa"-5207	"twe"-5208	"twe"-5209	"twi"-5210	"twi"-5211	"twii"-5212	"twii"-5213	"two"-5214	"two"-5215	"twoo"-5216	"twoo"-5217	"twa"-5218	"twa"-5219	"twaa"-5220	"twaa"-5221	"twaa"-5222	"t"-5223	"tte"-5224	"tti"-5225	"tto"-5226	"tta"-5227	"ke"-5228	"kaai"-5229	"ki"-5230	"kii"-5231	"ko"-5232	"koo"-5233	"koo"-5234	"ka"-5235	"kaa"-5236	"kwe"-5237	"kwe"-5238	"kwi"-5239	"kwi"-5240	"kwii"-5241	"kwii"-5242	"kwo"-5243	"kwo"-5244	"kwoo"-5245	"kwoo"-5246	"kwa"-5247	"kwa"-5248	"kwaa"-5249	"kwaa"-5250	"kwaa"-5251	"k"-5252	"kw"-5253	"keh"-5254	"kih"-5255	"koh"-5256	"kah"-5257	"ce"-5258	"caai"-5259	"ci"-5260	"cii"-5261	"co"-5262	"coo"-5263	"coo"-5264	"ca"-5265	"caa"-5266	"cwe"-5267	"cwe"-5268	"cwi"-5269	"cwi"-5270	"cwii"-5271	"cwii"-5272	"cwo"-5273	"cwo"-5274	"cwoo"-5275	"cwoo"-5276	"cwa"-5277	"cwa"-5278	"cwaa"-5279	"cwaa"-5280	"cwaa"-5281	"c"-5282	"th"-5283	"me"-5284	"maai"-5285	"mi"-5286	"mii"-5287	"mo"-5288	"moo"-5289	"moo"-5290	"ma"-5291	"maa"-5292	"mwe"-5293	"mwe"-5294	"mwi"-5295	"mwi"-5296	"mwii"-5297	"mwii"-5298	"mwo"-5299	"mwo"-5300	"mwoo"-5301	"mwoo"-5302	"mwa"-5303	"mwa"-5304	"mwaa"-5305	"mwaa"-5306	"mwaa"-5307	"m"-5308	"m"-5309	"mh"-5310	"m"-5311	"m"-5312	"ne"-5313	"naai"-5314	"ni"-5315	"nii"-5316	"no"-5317	"noo"-5318	"noo"-5319	"na"-5320	"naa"-5321	"nwe"-5322	"nwe"-5323	"nwa"-5324	"nwa"-5325	"nwaa"-5326	"nwaa"-5327	"nwaa"-5328	"n"-5329	"ng"-5330	"nh"-5331	"le"-5332	"laai"-5333	"li"-5334	"lii"-5335	"lo"-5336	"loo"-5337	"loo"-5338	"la"-5339	"laa"-5340	"lwe"-5341	"lwe"-5342	"lwi"-5343	"lwi"-5344	"lwii"-5345	"lwii"-5346	"lwo"-5347	"lwo"-5348	"lwoo"-5349	"lwoo"-5350	"lwa"-5351	"lwa"-5352	"lwaa"-5353	"lwaa"-5354	"l"-5355	"l"-5356	"l"-5357	"se"-5358	"saai"-5359	"si"-5360	"sii"-5361	"so"-5362	"soo"-5363	"soo"-5364	"sa"-5365	"saa"-5366	"swe"-5367	"swe"-5368	"swi"-5369	"swi"-5370	"swii"-5371	"swii"-5372	"swo"-5373	"swo"-5374	"swoo"-5375	"swoo"-5376	"swa"-5377	"swa"-5378	"swaa"-5379	"swaa"-5380	"swaa"-5381	"s"-5382	"s"-5383	"sw"-5384	"s"-5385	"sk"-5386	"skw"-5387	"sW"-5388	"spwa"-5389	"stwa"-5390	"skwa"-5391	"scwa"-5392	"she"-5393	"shi"-5394	"shii"-5395	"sho"-5396	"shoo"-5397	"sha"-5398	"shaa"-5399	"shwe"-5400	"shwe"-5401	"shwi"-5402	"shwi"-5403	"shwii"-5404	"shwii"-5405	"shwo"-5406	"shwo"-5407	"shwoo"-5408	"shwoo"-5409	"shwa"-5410	"shwa"-5411	"shwaa"-5412	"shwaa"-5413	"sh"-5414	"ye"-5415	"yaai"-5416	"yi"-5417	"yii"-5418	"yo"-5419	"yoo"-5420	"yoo"-5421	"ya"-5422	"yaa"-5423	"ywe"-5424	"ywe"-5425	"ywi"-5426	"ywi"-5427	"ywii"-5428	"ywii"-5429	"ywo"-5430	"ywo"-5431	"ywoo"-5432	"ywoo"-5433	"ywa"-5434	"ywa"-5435	"ywaa"-5436	"ywaa"-5437	"ywaa"-5438	"y"-5439	"y"-5440	"y"-5441	"yi"-5442	"re"-5443	"re"-5444	"le"-5445	"raai"-5446	"ri"-5447	"rii"-5448	"ro"-5449	"roo"-5450	"lo"-5451	"ra"-5452	"raa"-5453	"la"-5454	"rwaa"-5455	"rwaa"-5456	"r"-5457	"r"-5458	"r"-5459	"fe"-5460	"faai"-5461	"fi"-5462	"fii"-5463	"fo"-5464	"foo"-5465	"fa"-5466	"faa"-5467	"fwaa"-5468	"fwaa"-5469	"f"-5470	"the"-5471	"the"-5472	"thi"-5473	"thi"-5474	"thii"-5475	"thii"-5476	"tho"-5477	"thoo"-5478	"tha"-5479	"thaa"-5480	"thwaa"-5481	"thwaa"-5482	"th"-5483	"tthe"-5484	"tthi"-5485	"ttho"-5486	"ttha"-5487	"tth"-5488	"tye"-5489	"tyi"-5490	"tyo"-5491	"tya"-5492	"he"-5493	"hi"-5494	"hii"-5495	"ho"-5496	"hoo"-5497	"ha"-5498	"haa"-5499	"h"-5500	"h"-5501	"hk"-5502	"qaai"-5503	"qi"-5504	"qii"-5505	"qo"-5506	"qoo"-5507	"qa"-5508	"qaa"-5509	"q"-5510	"tlhe"-5511	"tlhi"-5512	"tlho"-5513	"tlha"-5514	"re"-5515	"ri"-5516	"ro"-5517	"ra"-5518	"ngaai"-5519	"ngi"-5520	"ngii"-5521	"ngo"-5522	"ngoo"-5523	"nga"-5524	"ngaa"-5525	"ng"-5526	"nng"-5527	"she"-5528	"shi"-5529	"sho"-5530	"sha"-5531	"the"-5532	"thi"-5533	"tho"-5534	"tha"-5535	"th"-5536	"lhi"-5537	"lhii"-5538	"lho"-5539	"lhoo"-5540	"lha"-5541	"lhaa"-5542	"lh"-5543	"the"-5544	"thi"-5545	"thii"-5546	"tho"-5547	"thoo"-5548	"tha"-5549	"thaa"-5550	"th"-5551	"b"-5552	"e"-5553	"i"-5554	"o"-5555	"a"-5556	"we"-5557	"wi"-5558	"wo"-5559	"wa"-5560	"ne"-5561	"ni"-5562	"no"-5563	"na"-5564	"ke"-5565	"ki"-5566	"ko"-5567	"ka"-5568	"he"-5569	"hi"-5570	"ho"-5571	"ha"-5572	"ghu"-5573	"gho"-5574	"ghe"-5575	"ghee"-5576	"ghi"-5577	"gha"-5578	"ru"-5579	"ro"-5580	"re"-5581	"ree"-5582	"ri"-5583	"ra"-5584	"wu"-5585	"wo"-5586	"we"-5587	"wee"-5588	"wi"-5589	"wa"-5590	"hwu"-5591	"hwo"-5592	"hwe"-5593	"hwee"-5594	"hwi"-5595	"hwa"-5596	"thu"-5597	"tho"-5598	"the"-5599	"thee"-5600	"thi"-5601	"tha"-5602	"ttu"-5603	"tto"-5604	"tte"-5605	"ttee"-5606	"tti"-5607	"tta"-5608	"pu"-5609	"po"-5610	"pe"-5611	"pee"-5612	"pi"-5613	"pa"-5614	"p"-5615	"gu"-5616	"go"-5617	"ge"-5618	"gee"-5619	"gi"-5620	"ga"-5621	"khu"-5622	"kho"-5623	"khe"-5624	"khee"-5625	"khi"-5626	"kha"-5627	"kku"-5628	"kko"-5629	"kke"-5630	"kkee"-5631	"kki"-5632	"kka"-5633	"kk"-5634	"nu"-5635	"no"-5636	"ne"-5637	"nee"-5638	"ni"-5639	"na"-5640	"mu"-5641	"mo"-5642	"me"-5643	"mee"-5644	"mi"-5645	"ma"-5646	"yu"-5647	"yo"-5648	"ye"-5649	"yee"-5650	"yi"-5651	"ya"-5652	"ju"-5653	"ju"-5654	"jo"-5655	"je"-5656	"jee"-5657	"ji"-5658	"ji"-5659	"ja"-5660	"jju"-5661	"jjo"-5662	"jje"-5663	"jjee"-5664	"jji"-5665	"jja"-5666	"lu"-5667	"lo"-5668	"le"-5669	"lee"-5670	"li"-5671	"la"-5672	"dlu"-5673	"dlo"-5674	"dle"-5675	"dlee"-5676	"dli"-5677	"dla"-5678	"lhu"-5679	"lho"-5680	"lhe"-5681	"lhee"-5682	"lhi"-5683	"lha"-5684	"tlhu"-5685	"tlho"-5686	"tlhe"-5687	"tlhee"-5688	"tlhi"-5689	"tlha"-5690	"tlu"-5691	"tlo"-5692	"tle"-5693	"tlee"-5694	"tli"-5695	"tla"-5696	"zu"-5697	"zo"-5698	"ze"-5699	"zee"-5700	"zi"-5701	"za"-5702	"z"-5703	"z"-5704	"dzu"-5705	"dzo"-5706	"dze"-5707	"dzee"-5708	"dzi"-5709	"dza"-5710	"su"-5711	"so"-5712	"se"-5713	"see"-5714	"si"-5715	"sa"-5716	"shu"-5717	"sho"-5718	"she"-5719	"shee"-5720	"shi"-5721	"sha"-5722	"sh"-5723	"tsu"-5724	"tso"-5725	"tse"-5726	"tsee"-5727	"tsi"-5728	"tsa"-5729	"chu"-5730	"cho"-5731	"che"-5732	"chee"-5733	"chi"-5734	"cha"-5735	"ttsu"-5736	"ttso"-5737	"ttse"-5738	"ttsee"-5739	"ttsi"-5740	"ttsa"-5741	"X"-5742	"."-5743	"qai"-5744	"ngai"-5745	"nngi"-5746	"nngii"-5747	"nngo"-5748	"nngoo"-5749	"nnga"-5750	"nngaa"-5751	"[?]"-5752	"[?]"-5753	"[?]"-5754	"[?]"-5755	"[?]"-5756	"[?]"-5757	"[?]"-5758	"[?]"-5759	"[?]"-5760	" "-5761	"b"-5762	"l"-5763	"f"-5764	"s"-5765	"n"-5766	"h"-5767	"d"-5768	"t"-5769	"c"-5770	"q"-5771	"m"-5772	"g"-5773	"ng"-5774	"z"-5775	"r"-5776	"a"-5777	"o"-5778	"u"-5779	"e"-5780	"i"-5781	"ch"-5782	"th"-5783	"ph"-5784	"p"-5785	"x"-5786	"p"-5787	"<"-5788	">"-5789	"[?]"-5790	"[?]"-5791	"[?]"-5792	"f"-5793	"v"-5794	"u"-5795	"yr"-5796	"y"-5797	"w"-5798	"th"-5799	"th"-5800	"a"-5801	"o"-5802	"ac"-5803	"ae"-5804	"o"-5805	"o"-5806	"o"-5807	"oe"-5808	"on"-5809	"r"-5810	"k"-5811	"c"-5812	"k"-5813	"g"-5814	"ng"-5815	"g"-5816	"g"-5817	"w"-5818	"h"-5819	"h"-5820	"h"-5821	"h"-5822	"n"-5823	"n"-5824	"n"-5825	"i"-5826	"e"-5827	"j"-5828	"g"-5829	"ae"-5830	"a"-5831	"eo"-5832	"p"-5833	"z"-5834	"s"-5835	"s"-5836	"s"-5837	"c"-5838	"z"-5839	"t"-5840	"t"-5841	"d"-5842	"b"-5843	"b"-5844	"p"-5845	"p"-5846	"e"-5847	"m"-5848	"m"-5849	"m"-5850	"l"-5851	"l"-5852	"ng"-5853	"ng"-5854	"d"-5855	"o"-5856	"ear"-5857	"ior"-5858	"qu"-5859	"qu"-5860	"qu"-5861	"s"-5862	"yr"-5863	"yr"-5864	"yr"-5865	"q"-5866	"x"-5867	"."-5868	":"-5869	"+"-5870	"17"-5871	"18"-5872	"19"-5873	"[?]"-5874	"[?]"-5875	"[?]"-5876	"[?]"-5877	"[?]"-5878	"[?]"-5879	"[?]"-5880	"[?]"-5881	"[?]"-5882	"[?]"-5883	"[?]"-5884	"[?]"-5885	"[?]"-5886	"[?]"-5888	"[?]"-5889	"[?]"-5890	"[?]"-5891	"[?]"-5892	"[?]"-5893	"[?]"-5894	"[?]"-5895	"[?]"-5896	"[?]"-5897	"[?]"-5898	"[?]"-5899	"[?]"-5900	"[?]"-5901	"[?]"-5902	"[?]"-5903	"[?]"-5904	"[?]"-5905	"[?]"-5906	"[?]"-5907	"[?]"-5908	"[?]"-5909	"[?]"-5910	"[?]"-5911	"[?]"-5912	"[?]"-5913	"[?]"-5914	"[?]"-5915	"[?]"-5916	"[?]"-5917	"[?]"-5918	"[?]"-5919	"[?]"-5920	"[?]"-5921	"[?]"-5922	"[?]"-5923	"[?]"-5924	"[?]"-5925	"[?]"-5926	"[?]"-5927	"[?]"-5928	"[?]"-5929	"[?]"-5930	"[?]"-5931	"[?]"-5932	"[?]"-5933	"[?]"-5934	"[?]"-5935	"[?]"-5936	"[?]"-5937	"[?]"-5938	"[?]"-5939	"[?]"-5940	"[?]"-5941	"[?]"-5942	"[?]"-5943	"[?]"-5944	"[?]"-5945	"[?]"-5946	"[?]"-5947	"[?]"-5948	"[?]"-5949	"[?]"-5950	"[?]"-5951	"[?]"-5952	"[?]"-5953	"[?]"-5954	"[?]"-5955	"[?]"-5956	"[?]"-5957	"[?]"-5958	"[?]"-5959	"[?]"-5960	"[?]"-5961	"[?]"-5962	"[?]"-5963	"[?]"-5964	"[?]"-5965	"[?]"-5966	"[?]"-5967	"[?]"-5968	"[?]"-5969	"[?]"-5970	"[?]"-5971	"[?]"-5972	"[?]"-5973	"[?]"-5974	"[?]"-5975	"[?]"-5976	"[?]"-5977	"[?]"-5978	"[?]"-5979	"[?]"-5980	"[?]"-5981	"[?]"-5982	"[?]"-5983	"[?]"-5984	"[?]"-5985	"[?]"-5986	"[?]"-5987	"[?]"-5988	"[?]"-5989	"[?]"-5990	"[?]"-5991	"[?]"-5992	"[?]"-5993	"[?]"-5994	"[?]"-5995	"[?]"-5996	"[?]"-5997	"[?]"-5998	"[?]"-5999	"[?]"-6000	"[?]"-6001	"[?]"-6002	"[?]"-6003	"[?]"-6004	"[?]"-6005	"[?]"-6006	"[?]"-6007	"[?]"-6008	"[?]"-6009	"[?]"-6010	"[?]"-6011	"[?]"-6012	"[?]"-6013	"[?]"-6014	"[?]"-6015	"[?]"-6016	"k"-6017	"kh"-6018	"g"-6019	"gh"-6020	"ng"-6021	"c"-6022	"ch"-6023	"j"-6024	"jh"-6025	"ny"-6026	"t"-6027	"tth"-6028	"d"-6029	"ddh"-6030	"nn"-6031	"t"-6032	"th"-6033	"d"-6034	"dh"-6035	"n"-6036	"p"-6037	"ph"-6038	"b"-6039	"bh"-6040	"m"-6041	"y"-6042	"r"-6043	"l"-6044	"v"-6045	"sh"-6046	"ss"-6047	"s"-6048	"h"-6049	"l"-6050	"q"-6051	"a"-6052	"aa"-6053	"i"-6054	"ii"-6055	"u"-6056	"uk"-6057	"uu"-6058	"uuv"-6059	"ry"-6060	"ryy"-6061	"ly"-6062	"lyy"-6063	"e"-6064	"ai"-6065	"oo"-6066	"oo"-6067	"au"-6068	"a"-6069	"aa"-6070	"aa"-6071	"i"-6072	"ii"-6073	"y"-6074	"yy"-6075	"u"-6076	"uu"-6077	"ua"-6078	"oe"-6079	"ya"-6080	"ie"-6081	"e"-6082	"ae"-6083	"ai"-6084	"oo"-6085	"au"-6086	"M"-6087	"H"-6088	"a`"-6092	"r"-6094	"!"-6100	"."-6101	" // "-6102	":"-6103	"+"-6104	"++"-6105	" * "-6106	" /// "-6107	"KR"-6108	"'"-6109	"[?]"-6110	"[?]"-6111	"[?]"-6112	"0"-6113	"1"-6114	"2"-6115	"3"-6116	"4"-6117	"5"-6118	"6"-6119	"7"-6120	"8"-6121	"9"-6122	"[?]"-6123	"[?]"-6124	"[?]"-6125	"[?]"-6126	"[?]"-6127	"[?]"-6128	"[?]"-6129	"[?]"-6130	"[?]"-6131	"[?]"-6132	"[?]"-6133	"[?]"-6134	"[?]"-6135	"[?]"-6136	"[?]"-6137	"[?]"-6138	"[?]"-6139	"[?]"-6140	"[?]"-6141	"[?]"-6142	"[?]"-6144	" @ "-6145	" ... "-6146	", "-6147	". "-6148	": "-6149	" // "-6151	"-"-6152	", "-6153	". "-6159	"[?]"-6160	"0"-6161	"1"-6162	"2"-6163	"3"-6164	"4"-6165	"5"-6166	"6"-6167	"7"-6168	"8"-6169	"9"-6170	"[?]"-6171	"[?]"-6172	"[?]"-6173	"[?]"-6174	"[?]"-6175	"[?]"-6176	"a"-6177	"e"-6178	"i"-6179	"o"-6180	"u"-6181	"O"-6182	"U"-6183	"ee"-6184	"n"-6185	"ng"-6186	"b"-6187	"p"-6188	"q"-6189	"g"-6190	"m"-6191	"l"-6192	"s"-6193	"sh"-6194	"t"-6195	"d"-6196	"ch"-6197	"j"-6198	"y"-6199	"r"-6200	"w"-6201	"f"-6202	"k"-6203	"kha"-6204	"ts"-6205	"z"-6206	"h"-6207	"zr"-6208	"lh"-6209	"zh"-6210	"ch"-6211	"-"-6212	"e"-6213	"i"-6214	"o"-6215	"u"-6216	"O"-6217	"U"-6218	"ng"-6219	"b"-6220	"p"-6221	"q"-6222	"g"-6223	"m"-6224	"t"-6225	"d"-6226	"ch"-6227	"j"-6228	"ts"-6229	"y"-6230	"w"-6231	"k"-6232	"g"-6233	"h"-6234	"jy"-6235	"ny"-6236	"dz"-6237	"e"-6238	"i"-6239	"iy"-6240	"U"-6241	"u"-6242	"ng"-6243	"k"-6244	"g"-6245	"h"-6246	"p"-6247	"sh"-6248	"t"-6249	"d"-6250	"j"-6251	"f"-6252	"g"-6253	"h"-6254	"ts"-6255	"z"-6256	"r"-6257	"ch"-6258	"zh"-6259	"i"-6260	"k"-6261	"r"-6262	"f"-6263	"zh"-6264	"[?]"-6265	"[?]"-6266	"[?]"-6267	"[?]"-6268	"[?]"-6269	"[?]"-6270	"[?]"-6271	"[?]"-6272	"[?]"-6273	"H"-6274	"X"-6275	"W"-6276	"M"-6277	" 3 "-6278	" 333 "-6279	"a"-6280	"i"-6281	"k"-6282	"ng"-6283	"c"-6284	"tt"-6285	"tth"-6286	"dd"-6287	"nn"-6288	"t"-6289	"d"-6290	"p"-6291	"ph"-6292	"ss"-6293	"zh"-6294	"z"-6295	"a"-6296	"t"-6297	"zh"-6298	"gh"-6299	"ng"-6300	"c"-6301	"jh"-6302	"tta"-6303	"ddh"-6304	"t"-6305	"dh"-6306	"ss"-6307	"cy"-6308	"zh"-6309	"z"-6310	"u"-6311	"y"-6312	"bh"-6313	"'"-6314	"[?]"-6315	"[?]"-6316	"[?]"-6317	"[?]"-6318	"[?]"-6319	"[?]"-6320	"[?]"-6321	"[?]"-6322	"[?]"-6323	"[?]"-6324	"[?]"-6325	"[?]"-6326	"[?]"-6327	"[?]"-6328	"[?]"-6329	"[?]"-6330	"[?]"-6331	"[?]"-6332	"[?]"-6333	"[?]"-6334	"[?]"-6335	"[?]"-6336	"[?]"-6337	"[?]"-6338	"[?]"-6339	"[?]"-6340	"[?]"-6341	"[?]"-6342	"[?]"-6343	"[?]"-6344	"[?]"-6345	"[?]"-6346	"[?]"-6347	"[?]"-6348	"[?]"-6349	"[?]"-6350	"[?]"-6351	"[?]"-6352	"[?]"-6353	"[?]"-6354	"[?]"-6355	"[?]"-6356	"[?]"-6357	"[?]"-6358	"[?]"-6359	"[?]"-6360	"[?]"-6361	"[?]"-6362	"[?]"-6363	"[?]"-6364	"[?]"-6365	"[?]"-6366	"[?]"-6367	"[?]"-6368	"[?]"-6369	"[?]"-6370	"[?]"-6371	"[?]"-6372	"[?]"-6373	"[?]"-6374	"[?]"-6375	"[?]"-6376	"[?]"-6377	"[?]"-6378	"[?]"-6379	"[?]"-6380	"[?]"-6381	"[?]"-6382	"[?]"-6383	"[?]"-6384	"[?]"-6385	"[?]"-6386	"[?]"-6387	"[?]"-6388	"[?]"-6389	"[?]"-6390	"[?]"-6391	"[?]"-6392	"[?]"-6393	"[?]"-6394	"[?]"-6395	"[?]"-6396	"[?]"-6397	"[?]"-6398	"[?]"-7532	"b"-7533	"d"-7534	"f"-7535	"m"-7536	"n"-7537	"p"-7538	"r"-7539	"r"-7540	"s"-7541	"t"-7542	"z"-7543	"g"-7549	"p"-7552	"b"-7553	"d"-7554	"f"-7555	"g"-7556	"k"-7557	"l"-7558	"m"-7559	"n"-7560	"p"-7561	"r"-7562	"s"-7564	"v"-7565	"x"-7566	"z"-7680	"A"-7681	"a"-7682	"B"-7683	"b"-7684	"B"-7685	"b"-7686	"B"-7687	"b"-7688	"C"-7689	"c"-7690	"D"-7691	"d"-7692	"D"-7693	"d"-7694	"D"-7695	"d"-7696	"D"-7697	"d"-7698	"D"-7699	"d"-7700	"E"-7701	"e"-7702	"E"-7703	"e"-7704	"E"-7705	"e"-7706	"E"-7707	"e"-7708	"E"-7709	"e"-7710	"F"-7711	"f"-7712	"G"-7713	"g"-7714	"H"-7715	"h"-7716	"H"-7717	"h"-7718	"H"-7719	"h"-7720	"H"-7721	"h"-7722	"H"-7723	"h"-7724	"I"-7725	"i"-7726	"I"-7727	"i"-7728	"K"-7729	"k"-7730	"K"-7731	"k"-7732	"K"-7733	"k"-7734	"L"-7735	"l"-7736	"L"-7737	"l"-7738	"L"-7739	"l"-7740	"L"-7741	"l"-7742	"M"-7743	"m"-7744	"M"-7745	"m"-7746	"M"-7747	"m"-7748	"N"-7749	"n"-7750	"N"-7751	"n"-7752	"N"-7753	"n"-7754	"N"-7755	"n"-7756	"O"-7757	"o"-7758	"O"-7759	"o"-7760	"O"-7761	"o"-7762	"O"-7763	"o"-7764	"P"-7765	"p"-7766	"P"-7767	"p"-7768	"R"-7769	"r"-7770	"R"-7771	"r"-7772	"R"-7773	"r"-7774	"R"-7775	"r"-7776	"S"-7777	"s"-7778	"S"-7779	"s"-7780	"S"-7781	"s"-7782	"S"-7783	"s"-7784	"S"-7785	"s"-7786	"T"-7787	"t"-7788	"T"-7789	"t"-7790	"T"-7791	"t"-7792	"T"-7793	"t"-7794	"U"-7795	"u"-7796	"U"-7797	"u"-7798	"U"-7799	"u"-7800	"U"-7801	"u"-7802	"U"-7803	"u"-7804	"V"-7805	"v"-7806	"V"-7807	"v"-7808	"W"-7809	"w"-7810	"W"-7811	"w"-7812	"W"-7813	"w"-7814	"W"-7815	"w"-7816	"W"-7817	"w"-7818	"X"-7819	"x"-7820	"X"-7821	"x"-7822	"Y"-7823	"y"-7824	"Z"-7825	"z"-7826	"Z"-7827	"z"-7828	"Z"-7829	"z"-7830	"h"-7831	"t"-7832	"w"-7833	"y"-7834	"a"-7835	"S"-7836	"[?]"-7837	"[?]"-7838	"Ss"-7839	"[?]"-7840	"A"-7841	"a"-7842	"A"-7843	"a"-7844	"A"-7845	"a"-7846	"A"-7847	"a"-7848	"A"-7849	"a"-7850	"A"-7851	"a"-7852	"A"-7853	"a"-7854	"A"-7855	"a"-7856	"A"-7857	"a"-7858	"A"-7859	"a"-7860	"A"-7861	"a"-7862	"A"-7863	"a"-7864	"E"-7865	"e"-7866	"E"-7867	"e"-7868	"E"-7869	"e"-7870	"E"-7871	"e"-7872	"E"-7873	"e"-7874	"E"-7875	"e"-7876	"E"-7877	"e"-7878	"E"-7879	"e"-7880	"I"-7881	"i"-7882	"I"-7883	"i"-7884	"O"-7885	"o"-7886	"O"-7887	"o"-7888	"O"-7889	"o"-7890	"O"-7891	"o"-7892	"O"-7893	"o"-7894	"O"-7895	"o"-7896	"O"-7897	"o"-7898	"O"-7899	"o"-7900	"O"-7901	"o"-7902	"O"-7903	"o"-7904	"O"-7905	"o"-7906	"O"-7907	"o"-7908	"U"-7909	"u"-7910	"U"-7911	"u"-7912	"U"-7913	"u"-7914	"U"-7915	"u"-7916	"U"-7917	"u"-7918	"U"-7919	"u"-7920	"U"-7921	"u"-7922	"Y"-7923	"y"-7924	"Y"-7925	"y"-7926	"Y"-7927	"y"-7928	"Y"-7929	"y"-7930	"[?]"-7931	"[?]"-7932	"[?]"-7933	"[?]"-7934	"[?]"-7936	"a"-7937	"a"-7938	"a"-7939	"a"-7940	"a"-7941	"a"-7942	"a"-7943	"a"-7944	"A"-7945	"A"-7946	"A"-7947	"A"-7948	"A"-7949	"A"-7950	"A"-7951	"A"-7952	"e"-7953	"e"-7954	"e"-7955	"e"-7956	"e"-7957	"e"-7958	"[?]"-7959	"[?]"-7960	"E"-7961	"E"-7962	"E"-7963	"E"-7964	"E"-7965	"E"-7966	"[?]"-7967	"[?]"-7968	"e"-7969	"e"-7970	"e"-7971	"e"-7972	"e"-7973	"e"-7974	"e"-7975	"e"-7976	"E"-7977	"E"-7978	"E"-7979	"E"-7980	"E"-7981	"E"-7982	"E"-7983	"E"-7984	"i"-7985	"i"-7986	"i"-7987	"i"-7988	"i"-7989	"i"-7990	"i"-7991	"i"-7992	"I"-7993	"I"-7994	"I"-7995	"I"-7996	"I"-7997	"I"-7998	"I"-7999	"I"-8000	"o"-8001	"o"-8002	"o"-8003	"o"-8004	"o"-8005	"o"-8006	"[?]"-8007	"[?]"-8008	"O"-8009	"O"-8010	"O"-8011	"O"-8012	"O"-8013	"O"-8014	"[?]"-8015	"[?]"-8016	"u"-8017	"u"-8018	"u"-8019	"u"-8020	"u"-8021	"u"-8022	"u"-8023	"u"-8024	"[?]"-8025	"U"-8026	"[?]"-8027	"U"-8028	"[?]"-8029	"U"-8030	"[?]"-8031	"U"-8032	"o"-8033	"o"-8034	"o"-8035	"o"-8036	"o"-8037	"o"-8038	"o"-8039	"o"-8040	"O"-8041	"O"-8042	"O"-8043	"O"-8044	"O"-8045	"O"-8046	"O"-8047	"O"-8048	"a"-8049	"a"-8050	"e"-8051	"e"-8052	"e"-8053	"e"-8054	"i"-8055	"i"-8056	"o"-8057	"o"-8058	"u"-8059	"u"-8060	"o"-8061	"o"-8062	"[?]"-8063	"[?]"-8064	"a"-8065	"a"-8066	"a"-8067	"a"-8068	"a"-8069	"a"-8070	"a"-8071	"a"-8072	"A"-8073	"A"-8074	"A"-8075	"A"-8076	"A"-8077	"A"-8078	"A"-8079	"A"-8080	"e"-8081	"e"-8082	"e"-8083	"e"-8084	"e"-8085	"e"-8086	"e"-8087	"e"-8088	"E"-8089	"E"-8090	"E"-8091	"E"-8092	"E"-8093	"E"-8094	"E"-8095	"E"-8096	"o"-8097	"o"-8098	"o"-8099	"o"-8100	"o"-8101	"o"-8102	"o"-8103	"o"-8104	"O"-8105	"O"-8106	"O"-8107	"O"-8108	"O"-8109	"O"-8110	"O"-8111	"O"-8112	"a"-8113	"a"-8114	"a"-8115	"a"-8116	"a"-8117	"[?]"-8118	"a"-8119	"a"-8120	"A"-8121	"A"-8122	"A"-8123	"A"-8124	"A"-8125	"'"-8126	"i"-8127	"'"-8128	"~"-8129	"\"~"-8130	"e"-8131	"e"-8132	"e"-8133	"[?]"-8134	"e"-8135	"e"-8136	"E"-8137	"E"-8138	"E"-8139	"E"-8140	"E"-8141	"'`"-8142	"''"-8143	"'~"-8144	"i"-8145	"i"-8146	"i"-8147	"i"-8148	"[?]"-8149	"[?]"-8150	"i"-8151	"i"-8152	"I"-8153	"I"-8154	"I"-8155	"I"-8156	"[?]"-8157	"`'"-8158	"`'"-8159	"`~"-8160	"u"-8161	"u"-8162	"u"-8163	"u"-8164	"R"-8165	"R"-8166	"u"-8167	"u"-8168	"U"-8169	"U"-8170	"U"-8171	"U"-8172	"R"-8173	"\"`"-8174	"\"'"-8175	"`"-8176	"[?]"-8177	"[?]"-8178	"o"-8179	"o"-8180	"o"-8181	"[?]"-8182	"o"-8183	"o"-8184	"O"-8185	"O"-8186	"O"-8187	"O"-8188	"O"-8189	"'"-8190	"`"-8192	" "-8193	" "-8194	" "-8195	" "-8196	" "-8197	" "-8198	" "-8199	" "-8200	" "-8201	" "-8202	" "-8203	" "-8208	"-"-8209	"-"-8210	"-"-8211	"-"-8212	"--"-8213	"--"-8214	"||"-8215	"_"-8216	"'"-8217	"'"-8218	","-8219	"'"-8220	"\""-8221	"\""-8222	",,"-8223	"\""-8224	"+"-8225	"++"-8226	"*"-8227	"*>"-8228	"."-8229	".."-8230	"..."-8231	"."-8232	"\n"-8233	"\n"-8239	" "-8240	"%0"-8241	"%00"-8242	"'"-8243	"''"-8244	"'''"-8245	"`"-8246	"``"-8247	"```"-8248	"^"-8249	"<"-8250	">"-8251	"*"-8252	"!!"-8253	"!?"-8254	"-"-8255	"_"-8256	"-"-8257	"^"-8258	"***"-8259	"--"-8260	"/"-8261	"-["-8262	"]-"-8263	"??"-8264	"?!"-8265	"!?"-8266	"7"-8267	"PP"-8268	"(]"-8269	"[)"-8270	"*"-8271	"[?]"-8272	"[?]"-8273	"[?]"-8274	"%"-8275	"~"-8276	"[?]"-8277	"[?]"-8278	"[?]"-8279	"''''"-8280	"[?]"-8281	"[?]"-8282	"[?]"-8283	"[?]"-8284	"[?]"-8285	"[?]"-8286	"[?]"-8287	"[?]"-8289	"[?]"-8290	"[?]"-8291	"[?]"-8292	"[?]"-8293	"[?]"-8294	"[?]"-8295	"[?]"-8296	"[?]"-8297	"[?]"-8304	"0"-8308	"4"-8309	"5"-8310	"6"-8311	"7"-8312	"8"-8313	"9"-8314	"+"-8315	"-"-8316	"="-8317	"("-8318	")"-8319	"n"-8320	"0"-8321	"1"-8322	"2"-8323	"3"-8324	"4"-8325	"5"-8326	"6"-8327	"7"-8328	"8"-8329	"9"-8330	"+"-8331	"-"-8332	"="-8333	"("-8334	")"-8335	"[?]"-8336	"[?]"-8337	"[?]"-8338	"[?]"-8339	"[?]"-8340	"[?]"-8341	"[?]"-8342	"[?]"-8343	"[?]"-8344	"[?]"-8345	"[?]"-8346	"[?]"-8347	"[?]"-8348	"[?]"-8349	"[?]"-8350	"[?]"-8351	"[?]"-8352	"ECU"-8353	"CL"-8354	"Cr"-8355	"FF"-8356	"L"-8357	"mil"-8358	"N"-8359	"Pts"-8360	"Rs"-8361	"W"-8362	"NS"-8363	"D"-8364	"EUR"-8365	"K"-8366	"T"-8367	"Dr"-8368	"[?]"-8369	"[?]"-8370	"[?]"-8371	"[?]"-8372	"[?]"-8373	"[?]"-8374	"[?]"-8375	"[?]"-8376	"[?]"-8377	"[?]"-8378	"[?]"-8379	"[?]"-8380	"[?]"-8381	"[?]"-8382	"[?]"-8383	"[?]"-8384	"[?]"-8385	"[?]"-8386	"[?]"-8387	"[?]"-8388	"[?]"-8389	"[?]"-8390	"[?]"-8391	"[?]"-8392	"[?]"-8393	"[?]"-8394	"[?]"-8395	"[?]"-8396	"[?]"-8397	"[?]"-8398	"[?]"-8399	"[?]"-8420	"[?]"-8422	"[?]"-8423	"[?]"-8519	"e"-8520	"i"-40961	"ix"-40962	"i"-40963	"ip"-40964	"iet"-40965	"iex"-40966	"ie"-40967	"iep"-40968	"at"-40969	"ax"-40970	"a"-40971	"ap"-40972	"uox"-40973	"uo"-40974	"uop"-40975	"ot"-40976	"ox"-40977	"o"-40978	"op"-40979	"ex"-40980	"e"-40981	"wu"-40982	"bit"-40983	"bix"-40984	"bi"-40985	"bip"-40986	"biet"-40987	"biex"-40988	"bie"-40989	"biep"-40990	"bat"-40991	"bax"-40992	"ba"-40993	"bap"-40994	"buox"-40995	"buo"-40996	"buop"-40997	"bot"-40998	"box"-40999	"bo"-41000	"bop"-41001	"bex"-41002	"be"-41003	"bep"-41004	"but"-41005	"bux"-41006	"bu"-41007	"bup"-41008	"burx"-41009	"bur"-41010	"byt"-41011	"byx"-41012	"by"-41013	"byp"-41014	"byrx"-41015	"byr"-41016	"pit"-41017	"pix"-41018	"pi"-41019	"pip"-41020	"piex"-41021	"pie"-41022	"piep"-41023	"pat"-41024	"pax"-41025	"pa"-41026	"pap"-41027	"puox"-41028	"puo"-41029	"puop"-41030	"pot"-41031	"pox"-41032	"po"-41033	"pop"-41034	"put"-41035	"pux"-41036	"pu"-41037	"pup"-41038	"purx"-41039	"pur"-41040	"pyt"-41041	"pyx"-41042	"py"-41043	"pyp"-41044	"pyrx"-41045	"pyr"-41046	"bbit"-41047	"bbix"-41048	"bbi"-41049	"bbip"-41050	"bbiet"-41051	"bbiex"-41052	"bbie"-41053	"bbiep"-41054	"bbat"-41055	"bbax"-41056	"bba"-41057	"bbap"-41058	"bbuox"-41059	"bbuo"-41060	"bbuop"-41061	"bbot"-41062	"bbox"-41063	"bbo"-41064	"bbop"-41065	"bbex"-41066	"bbe"-41067	"bbep"-41068	"bbut"-41069	"bbux"-41070	"bbu"-41071	"bbup"-41072	"bburx"-41073	"bbur"-41074	"bbyt"-41075	"bbyx"-41076	"bby"-41077	"bbyp"-41078	"nbit"-41079	"nbix"-41080	"nbi"-41081	"nbip"-41082	"nbiex"-41083	"nbie"-41084	"nbiep"-41085	"nbat"-41086	"nbax"-41087	"nba"-41088	"nbap"-41089	"nbot"-41090	"nbox"-41091	"nbo"-41092	"nbop"-41093	"nbut"-41094	"nbux"-41095	"nbu"-41096	"nbup"-41097	"nburx"-41098	"nbur"-41099	"nbyt"-41100	"nbyx"-41101	"nby"-41102	"nbyp"-41103	"nbyrx"-41104	"nbyr"-41105	"hmit"-41106	"hmix"-41107	"hmi"-41108	"hmip"-41109	"hmiex"-41110	"hmie"-41111	"hmiep"-41112	"hmat"-41113	"hmax"-41114	"hma"-41115	"hmap"-41116	"hmuox"-41117	"hmuo"-41118	"hmuop"-41119	"hmot"-41120	"hmox"-41121	"hmo"-41122	"hmop"-41123	"hmut"-41124	"hmux"-41125	"hmu"-41126	"hmup"-41127	"hmurx"-41128	"hmur"-41129	"hmyx"-41130	"hmy"-41131	"hmyp"-41132	"hmyrx"-41133	"hmyr"-41134	"mit"-41135	"mix"-41136	"mi"-41137	"mip"-41138	"miex"-41139	"mie"-41140	"miep"-41141	"mat"-41142	"max"-41143	"ma"-41144	"map"-41145	"muot"-41146	"muox"-41147	"muo"-41148	"muop"-41149	"mot"-41150	"mox"-41151	"mo"-41152	"mop"-41153	"mex"-41154	"me"-41155	"mut"-41156	"mux"-41157	"mu"-41158	"mup"-41159	"murx"-41160	"mur"-41161	"myt"-41162	"myx"-41163	"my"-41164	"myp"-41165	"fit"-41166	"fix"-41167	"fi"-41168	"fip"-41169	"fat"-41170	"fax"-41171	"fa"-41172	"fap"-41173	"fox"-41174	"fo"-41175	"fop"-41176	"fut"-41177	"fux"-41178	"fu"-41179	"fup"-41180	"furx"-41181	"fur"-41182	"fyt"-41183	"fyx"-41184	"fy"-41185	"fyp"-41186	"vit"-41187	"vix"-41188	"vi"-41189	"vip"-41190	"viet"-41191	"viex"-41192	"vie"-41193	"viep"-41194	"vat"-41195	"vax"-41196	"va"-41197	"vap"-41198	"vot"-41199	"vox"-41200	"vo"-41201	"vop"-41202	"vex"-41203	"vep"-41204	"vut"-41205	"vux"-41206	"vu"-41207	"vup"-41208	"vurx"-41209	"vur"-41210	"vyt"-41211	"vyx"-41212	"vy"-41213	"vyp"-41214	"vyrx"-41215	"vyr"-41216	"dit"-41217	"dix"-41218	"di"-41219	"dip"-41220	"diex"-41221	"die"-41222	"diep"-41223	"dat"-41224	"dax"-41225	"da"-41226	"dap"-41227	"duox"-41228	"duo"-41229	"dot"-41230	"dox"-41231	"do"-41232	"dop"-41233	"dex"-41234	"de"-41235	"dep"-41236	"dut"-41237	"dux"-41238	"du"-41239	"dup"-41240	"durx"-41241	"dur"-41242	"tit"-41243	"tix"-41244	"ti"-41245	"tip"-41246	"tiex"-41247	"tie"-41248	"tiep"-41249	"tat"-41250	"tax"-41251	"ta"-41252	"tap"-41253	"tuot"-41254	"tuox"-41255	"tuo"-41256	"tuop"-41257	"tot"-41258	"tox"-41259	"to"-41260	"top"-41261	"tex"-41262	"te"-41263	"tep"-41264	"tut"-41265	"tux"-41266	"tu"-41267	"tup"-41268	"turx"-41269	"tur"-41270	"ddit"-41271	"ddix"-41272	"ddi"-41273	"ddip"-41274	"ddiex"-41275	"ddie"-41276	"ddiep"-41277	"ddat"-41278	"ddax"-41279	"dda"-41280	"ddap"-41281	"dduox"-41282	"dduo"-41283	"dduop"-41284	"ddot"-41285	"ddox"-41286	"ddo"-41287	"ddop"-41288	"ddex"-41289	"dde"-41290	"ddep"-41291	"ddut"-41292	"ddux"-41293	"ddu"-41294	"ddup"-41295	"ddurx"-41296	"ddur"-41297	"ndit"-41298	"ndix"-41299	"ndi"-41300	"ndip"-41301	"ndiex"-41302	"ndie"-41303	"ndat"-41304	"ndax"-41305	"nda"-41306	"ndap"-41307	"ndot"-41308	"ndox"-41309	"ndo"-41310	"ndop"-41311	"ndex"-41312	"nde"-41313	"ndep"-41314	"ndut"-41315	"ndux"-41316	"ndu"-41317	"ndup"-41318	"ndurx"-41319	"ndur"-41320	"hnit"-41321	"hnix"-41322	"hni"-41323	"hnip"-41324	"hniet"-41325	"hniex"-41326	"hnie"-41327	"hniep"-41328	"hnat"-41329	"hnax"-41330	"hna"-41331	"hnap"-41332	"hnuox"-41333	"hnuo"-41334	"hnot"-41335	"hnox"-41336	"hnop"-41337	"hnex"-41338	"hne"-41339	"hnep"-41340	"hnut"-41341	"nit"-41342	"nix"-41343	"ni"-41344	"nip"-41345	"niex"-41346	"nie"-41347	"niep"-41348	"nax"-41349	"na"-41350	"nap"-41351	"nuox"-41352	"nuo"-41353	"nuop"-41354	"not"-41355	"nox"-41356	"no"-41357	"nop"-41358	"nex"-41359	"ne"-41360	"nep"-41361	"nut"-41362	"nux"-41363	"nu"-41364	"nup"-41365	"nurx"-41366	"nur"-41367	"hlit"-41368	"hlix"-41369	"hli"-41370	"hlip"-41371	"hliex"-41372	"hlie"-41373	"hliep"-41374	"hlat"-41375	"hlax"-41376	"hla"-41377	"hlap"-41378	"hluox"-41379	"hluo"-41380	"hluop"-41381	"hlox"-41382	"hlo"-41383	"hlop"-41384	"hlex"-41385	"hle"-41386	"hlep"-41387	"hlut"-41388	"hlux"-41389	"hlu"-41390	"hlup"-41391	"hlurx"-41392	"hlur"-41393	"hlyt"-41394	"hlyx"-41395	"hly"-41396	"hlyp"-41397	"hlyrx"-41398	"hlyr"-41399	"lit"-41400	"lix"-41401	"li"-41402	"lip"-41403	"liet"-41404	"liex"-41405	"lie"-41406	"liep"-41407	"lat"-41408	"lax"-41409	"la"-41410	"lap"-41411	"luot"-41412	"luox"-41413	"luo"-41414	"luop"-41415	"lot"-41416	"lox"-41417	"lo"-41418	"lop"-41419	"lex"-41420	"le"-41421	"lep"-41422	"lut"-41423	"lux"-41424	"lu"-41425	"lup"-41426	"lurx"-41427	"lur"-41428	"lyt"-41429	"lyx"-41430	"ly"-41431	"lyp"-41432	"lyrx"-41433	"lyr"-41434	"git"-41435	"gix"-41436	"gi"-41437	"gip"-41438	"giet"-41439	"giex"-41440	"gie"-41441	"giep"-41442	"gat"-41443	"gax"-41444	"ga"-41445	"gap"-41446	"guot"-41447	"guox"-41448	"guo"-41449	"guop"-41450	"got"-41451	"gox"-41452	"go"-41453	"gop"-41454	"get"-41455	"gex"-41456	"ge"-41457	"gep"-41458	"gut"-41459	"gux"-41460	"gu"-41461	"gup"-41462	"gurx"-41463	"gur"-41464	"kit"-41465	"kix"-41466	"ki"-41467	"kip"-41468	"kiex"-41469	"kie"-41470	"kiep"-41471	"kat"-41472	"kax"-41473	"ka"-41474	"kap"-41475	"kuox"-41476	"kuo"-41477	"kuop"-41478	"kot"-41479	"kox"-41480	"ko"-41481	"kop"-41482	"ket"-41483	"kex"-41484	"ke"-41485	"kep"-41486	"kut"-41487	"kux"-41488	"ku"-41489	"kup"-41490	"kurx"-41491	"kur"-41492	"ggit"-41493	"ggix"-41494	"ggi"-41495	"ggiex"-41496	"ggie"-41497	"ggiep"-41498	"ggat"-41499	"ggax"-41500	"gga"-41501	"ggap"-41502	"gguot"-41503	"gguox"-41504	"gguo"-41505	"gguop"-41506	"ggot"-41507	"ggox"-41508	"ggo"-41509	"ggop"-41510	"gget"-41511	"ggex"-41512	"gge"-41513	"ggep"-41514	"ggut"-41515	"ggux"-41516	"ggu"-41517	"ggup"-41518	"ggurx"-41519	"ggur"-41520	"mgiex"-41521	"mgie"-41522	"mgat"-41523	"mgax"-41524	"mga"-41525	"mgap"-41526	"mguox"-41527	"mguo"-41528	"mguop"-41529	"mgot"-41530	"mgox"-41531	"mgo"-41532	"mgop"-41533	"mgex"-41534	"mge"-41535	"mgep"-41536	"mgut"-41537	"mgux"-41538	"mgu"-41539	"mgup"-41540	"mgurx"-41541	"mgur"-41542	"hxit"-41543	"hxix"-41544	"hxi"-41545	"hxip"-41546	"hxiet"-41547	"hxiex"-41548	"hxie"-41549	"hxiep"-41550	"hxat"-41551	"hxax"-41552	"hxa"-41553	"hxap"-41554	"hxuot"-41555	"hxuox"-41556	"hxuo"-41557	"hxuop"-41558	"hxot"-41559	"hxox"-41560	"hxo"-41561	"hxop"-41562	"hxex"-41563	"hxe"-41564	"hxep"-41565	"ngiex"-41566	"ngie"-41567	"ngiep"-41568	"ngat"-41569	"ngax"-41570	"nga"-41571	"ngap"-41572	"nguot"-41573	"nguox"-41574	"nguo"-41575	"ngot"-41576	"ngox"-41577	"ngo"-41578	"ngop"-41579	"ngex"-41580	"nge"-41581	"ngep"-41582	"hit"-41583	"hiex"-41584	"hie"-41585	"hat"-41586	"hax"-41587	"ha"-41588	"hap"-41589	"huot"-41590	"huox"-41591	"huo"-41592	"huop"-41593	"hot"-41594	"hox"-41595	"ho"-41596	"hop"-41597	"hex"-41598	"he"-41599	"hep"-41600	"wat"-41601	"wax"-41602	"wa"-41603	"wap"-41604	"wuox"-41605	"wuo"-41606	"wuop"-41607	"wox"-41608	"wo"-41609	"wop"-41610	"wex"-41611	"we"-41612	"wep"-41613	"zit"-41614	"zix"-41615	"zi"-41616	"zip"-41617	"ziex"-41618	"zie"-41619	"ziep"-41620	"zat"-41621	"zax"-41622	"za"-41623	"zap"-41624	"zuox"-41625	"zuo"-41626	"zuop"-41627	"zot"-41628	"zox"-41629	"zo"-41630	"zop"-41631	"zex"-41632	"ze"-41633	"zep"-41634	"zut"-41635	"zux"-41636	"zu"-41637	"zup"-41638	"zurx"-41639	"zur"-41640	"zyt"-41641	"zyx"-41642	"zy"-41643	"zyp"-41644	"zyrx"-41645	"zyr"-41646	"cit"-41647	"cix"-41648	"ci"-41649	"cip"-41650	"ciet"-41651	"ciex"-41652	"cie"-41653	"ciep"-41654	"cat"-41655	"cax"-41656	"ca"-41657	"cap"-41658	"cuox"-41659	"cuo"-41660	"cuop"-41661	"cot"-41662	"cox"-41663	"co"-41664	"cop"-41665	"cex"-41666	"ce"-41667	"cep"-41668	"cut"-41669	"cux"-41670	"cu"-41671	"cup"-41672	"curx"-41673	"cur"-41674	"cyt"-41675	"cyx"-41676	"cy"-41677	"cyp"-41678	"cyrx"-41679	"cyr"-41680	"zzit"-41681	"zzix"-41682	"zzi"-41683	"zzip"-41684	"zziet"-41685	"zziex"-41686	"zzie"-41687	"zziep"-41688	"zzat"-41689	"zzax"-41690	"zza"-41691	"zzap"-41692	"zzox"-41693	"zzo"-41694	"zzop"-41695	"zzex"-41696	"zze"-41697	"zzep"-41698	"zzux"-41699	"zzu"-41700	"zzup"-41701	"zzurx"-41702	"zzur"-41703	"zzyt"-41704	"zzyx"-41705	"zzy"-41706	"zzyp"-41707	"zzyrx"-41708	"zzyr"-41709	"nzit"-41710	"nzix"-41711	"nzi"-41712	"nzip"-41713	"nziex"-41714	"nzie"-41715	"nziep"-41716	"nzat"-41717	"nzax"-41718	"nza"-41719	"nzap"-41720	"nzuox"-41721	"nzuo"-41722	"nzox"-41723	"nzop"-41724	"nzex"-41725	"nze"-41726	"nzux"-41727	"nzu"-41728	"nzup"-41729	"nzurx"-41730	"nzur"-41731	"nzyt"-41732	"nzyx"-41733	"nzy"-41734	"nzyp"-41735	"nzyrx"-41736	"nzyr"-41737	"sit"-41738	"six"-41739	"si"-41740	"sip"-41741	"siex"-41742	"sie"-41743	"siep"-41744	"sat"-41745	"sax"-41746	"sa"-41747	"sap"-41748	"suox"-41749	"suo"-41750	"suop"-41751	"sot"-41752	"sox"-41753	"so"-41754	"sop"-41755	"sex"-41756	"se"-41757	"sep"-41758	"sut"-41759	"sux"-41760	"su"-41761	"sup"-41762	"surx"-41763	"sur"-41764	"syt"-41765	"syx"-41766	"sy"-41767	"syp"-41768	"syrx"-41769	"syr"-41770	"ssit"-41771	"ssix"-41772	"ssi"-41773	"ssip"-41774	"ssiex"-41775	"ssie"-41776	"ssiep"-41777	"ssat"-41778	"ssax"-41779	"ssa"-41780	"ssap"-41781	"ssot"-41782	"ssox"-41783	"sso"-41784	"ssop"-41785	"ssex"-41786	"sse"-41787	"ssep"-41788	"ssut"-41789	"ssux"-41790	"ssu"-41791	"ssup"-41792	"ssyt"-41793	"ssyx"-41794	"ssy"-41795	"ssyp"-41796	"ssyrx"-41797	"ssyr"-41798	"zhat"-41799	"zhax"-41800	"zha"-41801	"zhap"-41802	"zhuox"-41803	"zhuo"-41804	"zhuop"-41805	"zhot"-41806	"zhox"-41807	"zho"-41808	"zhop"-41809	"zhet"-41810	"zhex"-41811	"zhe"-41812	"zhep"-41813	"zhut"-41814	"zhux"-41815	"zhu"-41816	"zhup"-41817	"zhurx"-41818	"zhur"-41819	"zhyt"-41820	"zhyx"-41821	"zhy"-41822	"zhyp"-41823	"zhyrx"-41824	"zhyr"-41825	"chat"-41826	"chax"-41827	"cha"-41828	"chap"-41829	"chuot"-41830	"chuox"-41831	"chuo"-41832	"chuop"-41833	"chot"-41834	"chox"-41835	"cho"-41836	"chop"-41837	"chet"-41838	"chex"-41839	"che"-41840	"chep"-41841	"chux"-41842	"chu"-41843	"chup"-41844	"churx"-41845	"chur"-41846	"chyt"-41847	"chyx"-41848	"chy"-41849	"chyp"-41850	"chyrx"-41851	"chyr"-41852	"rrax"-41853	"rra"-41854	"rruox"-41855	"rruo"-41856	"rrot"-41857	"rrox"-41858	"rro"-41859	"rrop"-41860	"rret"-41861	"rrex"-41862	"rre"-41863	"rrep"-41864	"rrut"-41865	"rrux"-41866	"rru"-41867	"rrup"-41868	"rrurx"-41869	"rrur"-41870	"rryt"-41871	"rryx"-41872	"rry"-41873	"rryp"-41874	"rryrx"-41875	"rryr"-41876	"nrat"-41877	"nrax"-41878	"nra"-41879	"nrap"-41880	"nrox"-41881	"nro"-41882	"nrop"-41883	"nret"-41884	"nrex"-41885	"nre"-41886	"nrep"-41887	"nrut"-41888	"nrux"-41889	"nru"-41890	"nrup"-41891	"nrurx"-41892	"nrur"-41893	"nryt"-41894	"nryx"-41895	"nry"-41896	"nryp"-41897	"nryrx"-41898	"nryr"-41899	"shat"-41900	"shax"-41901	"sha"-41902	"shap"-41903	"shuox"-41904	"shuo"-41905	"shuop"-41906	"shot"-41907	"shox"-41908	"sho"-41909	"shop"-41910	"shet"-41911	"shex"-41912	"she"-41913	"shep"-41914	"shut"-41915	"shux"-41916	"shu"-41917	"shup"-41918	"shurx"-41919	"shur"-41920	"shyt"-41921	"shyx"-41922	"shy"-41923	"shyp"-41924	"shyrx"-41925	"shyr"-41926	"rat"-41927	"rax"-41928	"ra"-41929	"rap"-41930	"ruox"-41931	"ruo"-41932	"ruop"-41933	"rot"-41934	"rox"-41935	"ro"-41936	"rop"-41937	"rex"-41938	"re"-41939	"rep"-41940	"rut"-41941	"rux"-41942	"ru"-41943	"rup"-41944	"rurx"-41945	"rur"-41946	"ryt"-41947	"ryx"-41948	"ry"-41949	"ryp"-41950	"ryrx"-41951	"ryr"-41952	"jit"-41953	"jix"-41954	"ji"-41955	"jip"-41956	"jiet"-41957	"jiex"-41958	"jie"-41959	"jiep"-41960	"juot"-41961	"juox"-41962	"juo"-41963	"juop"-41964	"jot"-41965	"jox"-41966	"jo"-41967	"jop"-41968	"jut"-41969	"jux"-41970	"ju"-41971	"jup"-41972	"jurx"-41973	"jur"-41974	"jyt"-41975	"jyx"-41976	"jy"-41977	"jyp"-41978	"jyrx"-41979	"jyr"-41980	"qit"-41981	"qix"-41982	"qi"-41983	"qip"-41984	"qiet"-41985	"qiex"-41986	"qie"-41987	"qiep"-41988	"quot"-41989	"quox"-41990	"quo"-41991	"quop"-41992	"qot"-41993	"qox"-41994	"qo"-41995	"qop"-41996	"qut"-41997	"qux"-41998	"qu"-41999	"qup"-42000	"qurx"-42001	"qur"-42002	"qyt"-42003	"qyx"-42004	"qy"-42005	"qyp"-42006	"qyrx"-42007	"qyr"-42008	"jjit"-42009	"jjix"-42010	"jji"-42011	"jjip"-42012	"jjiet"-42013	"jjiex"-42014	"jjie"-42015	"jjiep"-42016	"jjuox"-42017	"jjuo"-42018	"jjuop"-42019	"jjot"-42020	"jjox"-42021	"jjo"-42022	"jjop"-42023	"jjut"-42024	"jjux"-42025	"jju"-42026	"jjup"-42027	"jjurx"-42028	"jjur"-42029	"jjyt"-42030	"jjyx"-42031	"jjy"-42032	"jjyp"-42033	"njit"-42034	"njix"-42035	"nji"-42036	"njip"-42037	"njiet"-42038	"njiex"-42039	"njie"-42040	"njiep"-42041	"njuox"-42042	"njuo"-42043	"njot"-42044	"njox"-42045	"njo"-42046	"njop"-42047	"njux"-42048	"nju"-42049	"njup"-42050	"njurx"-42051	"njur"-42052	"njyt"-42053	"njyx"-42054	"njy"-42055	"njyp"-42056	"njyrx"-42057	"njyr"-42058	"nyit"-42059	"nyix"-42060	"nyi"-42061	"nyip"-42062	"nyiet"-42063	"nyiex"-42064	"nyie"-42065	"nyiep"-42066	"nyuox"-42067	"nyuo"-42068	"nyuop"-42069	"nyot"-42070	"nyox"-42071	"nyo"-42072	"nyop"-42073	"nyut"-42074	"nyux"-42075	"nyu"-42076	"nyup"-42077	"xit"-42078	"xix"-42079	"xi"-42080	"xip"-42081	"xiet"-42082	"xiex"-42083	"xie"-42084	"xiep"-42085	"xuox"-42086	"xuo"-42087	"xot"-42088	"xox"-42089	"xo"-42090	"xop"-42091	"xyt"-42092	"xyx"-42093	"xy"-42094	"xyp"-42095	"xyrx"-42096	"xyr"-42097	"yit"-42098	"yix"-42099	"yi"-42100	"yip"-42101	"yiet"-42102	"yiex"-42103	"yie"-42104	"yiep"-42105	"yuot"-42106	"yuox"-42107	"yuo"-42108	"yuop"-42109	"yot"-42110	"yox"-42111	"yo"-42112	"yop"-42113	"yut"-42114	"yux"-42115	"yu"-42116	"yup"-42117	"yurx"-42118	"yur"-42119	"yyt"-42120	"yyx"-42121	"yy"-42122	"yyp"-42123	"yyrx"-42124	"yyr"-42125	"[?]"-42126	"[?]"-42127	"[?]"-42128	"Qot"-42129	"Li"-42130	"Kit"-42131	"Nyip"-42132	"Cyp"-42133	"Ssi"-42134	"Ggop"-42135	"Gep"-42136	"Mi"-42137	"Hxit"-42138	"Lyr"-42139	"Bbut"-42140	"Mop"-42141	"Yo"-42142	"Put"-42143	"Hxuo"-42144	"Tat"-42145	"Ga"-42146	"[?]"-42147	"[?]"-42148	"Ddur"-42149	"Bur"-42150	"Gguo"-42151	"Nyop"-42152	"Tu"-42153	"Op"-42154	"Jjut"-42155	"Zot"-42156	"Pyt"-42157	"Hmo"-42158	"Yit"-42159	"Vur"-42160	"Shy"-42161	"Vep"-42162	"Za"-42163	"Jo"-42164	"[?]"-42165	"Jjy"-42166	"Got"-42167	"Jjie"-42168	"Wo"-42169	"Du"-42170	"Shur"-42171	"Lie"-42172	"Cy"-42173	"Cuop"-42174	"Cip"-42175	"Hxop"-42176	"Shat"-42177	"[?]"-42178	"Shop"-42179	"Che"-42180	"Zziet"-42181	"[?]"-42182	"Ke"-42183	"[?]"-42184	"[?]"-42185	"[?]"-42186	"[?]"-42187	"[?]"-42188	"[?]"-42189	"[?]"-42190	"[?]"-42191	"[?]"-42192	"[?]"-42193	"[?]"-42194	"[?]"-42195	"[?]"-42196	"[?]"-42197	"[?]"-42198	"[?]"-42199	"[?]"-42200	"[?]"-42201	"[?]"-42202	"[?]"-42203	"[?]"-42204	"[?]"-42205	"[?]"-42206	"[?]"-42207	"[?]"-42208	"[?]"-42209	"[?]"-42210	"[?]"-42211	"[?]"-42212	"[?]"-42213	"[?]"-42214	"[?]"-42215	"[?]"-42216	"[?]"-42217	"[?]"-42218	"[?]"-42219	"[?]"-42220	"[?]"-42221	"[?]"-42222	"[?]"-42223	"[?]"-42224	"[?]"-42225	"[?]"-42226	"[?]"-42227	"[?]"-42228	"[?]"-42229	"[?]"-42230	"[?]"-42231	"[?]"-42232	"[?]"-42233	"[?]"-42234	"[?]"-42235	"[?]"-42236	"[?]"-42237	"[?]"-42238	"[?]"-55204	"[?]"-55205	"[?]"-55206	"[?]"-55207	"[?]"-55208	"[?]"-55209	"[?]"-55210	"[?]"-55211	"[?]"-55212	"[?]"-55213	"[?]"-55214	"[?]"-55215	"[?]"-55216	"[?]"-55217	"[?]"-55218	"[?]"-55219	"[?]"-55220	"[?]"-55221	"[?]"-55222	"[?]"-55223	"[?]"-55224	"[?]"-55225	"[?]"-55226	"[?]"-55227	"[?]"-55228	"[?]"-55229	"[?]"-55230	"[?]"-55231	"[?]"-55232	"[?]"-55233	"[?]"-55234	"[?]"-55235	"[?]"-55236	"[?]"-55237	"[?]"-55238	"[?]"-55239	"[?]"-55240	"[?]"-55241	"[?]"-55242	"[?]"-55243	"[?]"-55244	"[?]"-55245	"[?]"-55246	"[?]"-55247	"[?]"-55248	"[?]"-55249	"[?]"-55250	"[?]"-55251	"[?]"-55252	"[?]"-55253	"[?]"-55254	"[?]"-55255	"[?]"-55256	"[?]"-55257	"[?]"-55258	"[?]"-55259	"[?]"-55260	"[?]"-55261	"[?]"-55262	"[?]"-55263	"[?]"-55264	"[?]"-55265	"[?]"-55266	"[?]"-55267	"[?]"-55268	"[?]"-55269	"[?]"-55270	"[?]"-55271	"[?]"-55272	"[?]"-55273	"[?]"-55274	"[?]"-55275	"[?]"-55276	"[?]"-55277	"[?]"-55278	"[?]"-55279	"[?]"-55280	"[?]"-55281	"[?]"-55282	"[?]"-55283	"[?]"-55284	"[?]"-55285	"[?]"-55286	"[?]"-55287	"[?]"-55288	"[?]"-55289	"[?]"-55290	"[?]"-55291	"[?]"-55292	"[?]"-55293	"[?]"-55294	"[?]"-63744	"Kay "-63745	"Kayng "-63746	"Ke "-63747	"Ko "-63748	"Kol "-63749	"Koc "-63750	"Kwi "-63751	"Kwi "-63752	"Kyun "-63753	"Kul "-63754	"Kum "-63755	"Na "-63756	"Na "-63757	"Na "-63758	"La "-63759	"Na "-63760	"Na "-63761	"Na "-63762	"Na "-63763	"Na "-63764	"Nak "-63765	"Nak "-63766	"Nak "-63767	"Nak "-63768	"Nak "-63769	"Nak "-63770	"Nak "-63771	"Nan "-63772	"Nan "-63773	"Nan "-63774	"Nan "-63775	"Nan "-63776	"Nan "-63777	"Nam "-63778	"Nam "-63779	"Nam "-63780	"Nam "-63781	"Nap "-63782	"Nap "-63783	"Nap "-63784	"Nang "-63785	"Nang "-63786	"Nang "-63787	"Nang "-63788	"Nang "-63789	"Nay "-63790	"Nayng "-63791	"No "-63792	"No "-63793	"No "-63794	"No "-63795	"No "-63796	"No "-63797	"No "-63798	"No "-63799	"No "-63800	"No "-63801	"No "-63802	"No "-63803	"Nok "-63804	"Nok "-63805	"Nok "-63806	"Nok "-63807	"Nok "-63808	"Nok "-63809	"Non "-63810	"Nong "-63811	"Nong "-63812	"Nong "-63813	"Nong "-63814	"Noy "-63815	"Noy "-63816	"Noy "-63817	"Noy "-63818	"Nwu "-63819	"Nwu "-63820	"Nwu "-63821	"Nwu "-63822	"Nwu "-63823	"Nwu "-63824	"Nwu "-63825	"Nwu "-63826	"Nuk "-63827	"Nuk "-63828	"Num "-63829	"Nung "-63830	"Nung "-63831	"Nung "-63832	"Nung "-63833	"Nung "-63834	"Twu "-63835	"La "-63836	"Lak "-63837	"Lak "-63838	"Lan "-63839	"Lyeng "-63840	"Lo "-63841	"Lyul "-63842	"Li "-63843	"Pey "-63844	"Pen "-63845	"Pyen "-63846	"Pwu "-63847	"Pwul "-63848	"Pi "-63849	"Sak "-63850	"Sak "-63851	"Sam "-63852	"Sayk "-63853	"Sayng "-63854	"Sep "-63855	"Sey "-63856	"Sway "-63857	"Sin "-63858	"Sim "-63859	"Sip "-63860	"Ya "-63861	"Yak "-63862	"Yak "-63863	"Yang "-63864	"Yang "-63865	"Yang "-63866	"Yang "-63867	"Yang "-63868	"Yang "-63869	"Yang "-63870	"Yang "-63871	"Ye "-63872	"Ye "-63873	"Ye "-63874	"Ye "-63875	"Ye "-63876	"Ye "-63877	"Ye "-63878	"Ye "-63879	"Ye "-63880	"Ye "-63881	"Ye "-63882	"Yek "-63883	"Yek "-63884	"Yek "-63885	"Yek "-63886	"Yen "-63887	"Yen "-63888	"Yen "-63889	"Yen "-63890	"Yen "-63891	"Yen "-63892	"Yen "-63893	"Yen "-63894	"Yen "-63895	"Yen "-63896	"Yen "-63897	"Yen "-63898	"Yen "-63899	"Yen "-63900	"Yel "-63901	"Yel "-63902	"Yel "-63903	"Yel "-63904	"Yel "-63905	"Yel "-63906	"Yem "-63907	"Yem "-63908	"Yem "-63909	"Yem "-63910	"Yem "-63911	"Yep "-63912	"Yeng "-63913	"Yeng "-63914	"Yeng "-63915	"Yeng "-63916	"Yeng "-63917	"Yeng "-63918	"Yeng "-63919	"Yeng "-63920	"Yeng "-63921	"Yeng "-63922	"Yeng "-63923	"Yeng "-63924	"Yeng "-63925	"Yey "-63926	"Yey "-63927	"Yey "-63928	"Yey "-63929	"O "-63930	"Yo "-63931	"Yo "-63932	"Yo "-63933	"Yo "-63934	"Yo "-63935	"Yo "-63936	"Yo "-63937	"Yo "-63938	"Yo "-63939	"Yo "-63940	"Yong "-63941	"Wun "-63942	"Wen "-63943	"Yu "-63944	"Yu "-63945	"Yu "-63946	"Yu "-63947	"Yu "-63948	"Yu "-63949	"Yu "-63950	"Yu "-63951	"Yu "-63952	"Yu "-63953	"Yuk "-63954	"Yuk "-63955	"Yuk "-63956	"Yun "-63957	"Yun "-63958	"Yun "-63959	"Yun "-63960	"Yul "-63961	"Yul "-63962	"Yul "-63963	"Yul "-63964	"Yung "-63965	"I "-63966	"I "-63967	"I "-63968	"I "-63969	"I "-63970	"I "-63971	"I "-63972	"I "-63973	"I "-63974	"I "-63975	"I "-63976	"I "-63977	"I "-63978	"I "-63979	"Ik "-63980	"Ik "-63981	"In "-63982	"In "-63983	"In "-63984	"In "-63985	"In "-63986	"In "-63987	"In "-63988	"Im "-63989	"Im "-63990	"Im "-63991	"Ip "-63992	"Ip "-63993	"Ip "-63994	"Cang "-63995	"Cek "-63996	"Ci "-63997	"Cip "-63998	"Cha "-63999	"Chek "-64000	"Chey "-64001	"Thak "-64002	"Thak "-64003	"Thang "-64004	"Thayk "-64005	"Thong "-64006	"Pho "-64007	"Phok "-64008	"Hang "-64009	"Hang "-64010	"Hyen "-64011	"Hwak "-64012	"Wu "-64013	"Huo "-64014	"[?] "-64015	"[?] "-64016	"Zhong "-64017	"[?] "-64018	"Qing "-64019	"[?] "-64020	"[?] "-64021	"Xi "-64022	"Zhu "-64023	"Yi "-64024	"Li "-64025	"Shen "-64026	"Xiang "-64027	"Fu "-64028	"Jing "-64029	"Jing "-64030	"Yu "-64031	"[?] "-64032	"Hagi "-64033	"[?] "-64034	"Zhu "-64035	"[?] "-64036	"[?] "-64037	"Yi "-64038	"Du "-64039	"[?] "-64040	"[?] "-64041	"[?] "-64042	"Fan "-64043	"Si "-64044	"Guan "-64045	"[?]"-64046	"[?]"-64047	"[?]"-64048	"[?]"-64049	"[?]"-64050	"[?]"-64051	"[?]"-64052	"[?]"-64053	"[?]"-64054	"[?]"-64055	"[?]"-64056	"[?]"-64057	"[?]"-64058	"[?]"-64059	"[?]"-64060	"[?]"-64061	"[?]"-64062	"[?]"-64063	"[?]"-64064	"[?]"-64065	"[?]"-64066	"[?]"-64067	"[?]"-64068	"[?]"-64069	"[?]"-64070	"[?]"-64071	"[?]"-64072	"[?]"-64073	"[?]"-64074	"[?]"-64075	"[?]"-64076	"[?]"-64077	"[?]"-64078	"[?]"-64079	"[?]"-64080	"[?]"-64081	"[?]"-64082	"[?]"-64083	"[?]"-64084	"[?]"-64085	"[?]"-64086	"[?]"-64087	"[?]"-64088	"[?]"-64089	"[?]"-64090	"[?]"-64091	"[?]"-64092	"[?]"-64093	"[?]"-64094	"[?]"-64095	"[?]"-64096	"[?]"-64097	"[?]"-64098	"[?]"-64099	"[?]"-64100	"[?]"-64101	"[?]"-64102	"[?]"-64103	"[?]"-64104	"[?]"-64105	"[?]"-64106	"[?]"-64107	"[?]"-64108	"[?]"-64109	"[?]"-64110	"[?]"-64111	"[?]"-64112	"[?]"-64113	"[?]"-64114	"[?]"-64115	"[?]"-64116	"[?]"-64117	"[?]"-64118	"[?]"-64119	"[?]"-64120	"[?]"-64121	"[?]"-64122	"[?]"-64123	"[?]"-64124	"[?]"-64125	"[?]"-64126	"[?]"-64127	"[?]"-64128	"[?]"-64129	"[?]"-64130	"[?]"-64131	"[?]"-64132	"[?]"-64133	"[?]"-64134	"[?]"-64135	"[?]"-64136	"[?]"-64137	"[?]"-64138	"[?]"-64139	"[?]"-64140	"[?]"-64141	"[?]"-64142	"[?]"-64143	"[?]"-64144	"[?]"-64145	"[?]"-64146	"[?]"-64147	"[?]"-64148	"[?]"-64149	"[?]"-64150	"[?]"-64151	"[?]"-64152	"[?]"-64153	"[?]"-64154	"[?]"-64155	"[?]"-64156	"[?]"-64157	"[?]"-64158	"[?]"-64159	"[?]"-64160	"[?]"-64161	"[?]"-64162	"[?]"-64163	"[?]"-64164	"[?]"-64165	"[?]"-64166	"[?]"-64167	"[?]"-64168	"[?]"-64169	"[?]"-64170	"[?]"-64171	"[?]"-64172	"[?]"-64173	"[?]"-64174	"[?]"-64175	"[?]"-64176	"[?]"-64177	"[?]"-64178	"[?]"-64179	"[?]"-64180	"[?]"-64181	"[?]"-64182	"[?]"-64183	"[?]"-64184	"[?]"-64185	"[?]"-64186	"[?]"-64187	"[?]"-64188	"[?]"-64189	"[?]"-64190	"[?]"-64191	"[?]"-64192	"[?]"-64193	"[?]"-64194	"[?]"-64195	"[?]"-64196	"[?]"-64197	"[?]"-64198	"[?]"-64199	"[?]"-64200	"[?]"-64201	"[?]"-64202	"[?]"-64203	"[?]"-64204	"[?]"-64205	"[?]"-64206	"[?]"-64207	"[?]"-64208	"[?]"-64209	"[?]"-64210	"[?]"-64211	"[?]"-64212	"[?]"-64213	"[?]"-64214	"[?]"-64215	"[?]"-64216	"[?]"-64217	"[?]"-64218	"[?]"-64219	"[?]"-64220	"[?]"-64221	"[?]"-64222	"[?]"-64223	"[?]"-64224	"[?]"-64225	"[?]"-64226	"[?]"-64227	"[?]"-64228	"[?]"-64229	"[?]"-64230	"[?]"-64231	"[?]"-64232	"[?]"-64233	"[?]"-64234	"[?]"-64235	"[?]"-64236	"[?]"-64237	"[?]"-64238	"[?]"-64239	"[?]"-64240	"[?]"-64241	"[?]"-64242	"[?]"-64243	"[?]"-64244	"[?]"-64245	"[?]"-64246	"[?]"-64247	"[?]"-64248	"[?]"-64249	"[?]"-64250	"[?]"-64251	"[?]"-64252	"[?]"-64253	"[?]"-64254	"[?]"-64256	"ff"-64257	"fi"-64258	"fl"-64259	"ffi"-64260	"ffl"-64261	"st"-64262	"st"-64263	"[?]"-64264	"[?]"-64265	"[?]"-64266	"[?]"-64267	"[?]"-64268	"[?]"-64269	"[?]"-64270	"[?]"-64271	"[?]"-64272	"[?]"-64273	"[?]"-64274	"[?]"-64275	"mn"-64276	"me"-64277	"mi"-64278	"vn"-64279	"mkh"-64280	"[?]"-64281	"[?]"-64282	"[?]"-64283	"[?]"-64284	"[?]"-64285	"yi"-64287	"ay"-64288	"`"-64290	"d"-64291	"h"-64292	"k"-64293	"l"-64294	"m"-64295	"m"-64296	"t"-64297	"+"-64298	"sh"-64299	"s"-64300	"sh"-64301	"s"-64302	"a"-64303	"a"-64305	"b"-64306	"g"-64307	"d"-64308	"h"-64309	"v"-64310	"z"-64311	"[?]"-64312	"t"-64313	"y"-64314	"k"-64315	"k"-64316	"l"-64317	"[?]"-64318	"l"-64319	"[?]"-64320	"n"-64321	"n"-64322	"[?]"-64323	"p"-64324	"p"-64325	"[?]"-64326	"ts"-64327	"ts"-64328	"r"-64329	"sh"-64330	"t"-64331	"vo"-64332	"b"-64333	"k"-64334	"p"-64335	"l"-64434	"[?]"-64435	"[?]"-64436	"[?]"-64437	"[?]"-64438	"[?]"-64439	"[?]"-64440	"[?]"-64441	"[?]"-64442	"[?]"-64443	"[?]"-64444	"[?]"-64445	"[?]"-64446	"[?]"-64447	"[?]"-64448	"[?]"-64449	"[?]"-64450	"[?]"-64451	"[?]"-64452	"[?]"-64453	"[?]"-64454	"[?]"-64455	"[?]"-64456	"[?]"-64457	"[?]"-64458	"[?]"-64459	"[?]"-64460	"[?]"-64461	"[?]"-64462	"[?]"-64463	"[?]"-64464	"[?]"-64465	"[?]"-64466	"[?]"-64832	"[?]"-64833	"[?]"-64834	"[?]"-64835	"[?]"-64836	"[?]"-64837	"[?]"-64838	"[?]"-64839	"[?]"-64840	"[?]"-64841	"[?]"-64842	"[?]"-64843	"[?]"-64844	"[?]"-64845	"[?]"-64846	"[?]"-64847	"[?]"-64912	"[?]"-64913	"[?]"-64968	"[?]"-64969	"[?]"-64970	"[?]"-64971	"[?]"-64972	"[?]"-64973	"[?]"-64974	"[?]"-64975	"[?]"-64976	"[?]"-64977	"[?]"-64978	"[?]"-64979	"[?]"-64980	"[?]"-64981	"[?]"-64982	"[?]"-64983	"[?]"-64984	"[?]"-64985	"[?]"-64986	"[?]"-64987	"[?]"-64988	"[?]"-64989	"[?]"-64990	"[?]"-64991	"[?]"-64992	"[?]"-64993	"[?]"-64994	"[?]"-64995	"[?]"-64996	"[?]"-64997	"[?]"-64998	"[?]"-64999	"[?]"-65000	"[?]"-65001	"[?]"-65002	"[?]"-65003	"[?]"-65004	"[?]"-65005	"[?]"-65006	"[?]"-65007	"[?]"-65020	"[?]"-65021	"[?]"-65022	"[?]"-65024	"[?]"-65025	"[?]"-65026	"[?]"-65027	"[?]"-65028	"[?]"-65029	"[?]"-65030	"[?]"-65031	"[?]"-65032	"[?]"-65033	"[?]"-65034	"[?]"-65035	"[?]"-65036	"[?]"-65037	"[?]"-65038	"[?]"-65039	"[?]"-65040	"[?]"-65041	"[?]"-65042	"[?]"-65043	"[?]"-65044	"[?]"-65045	"[?]"-65046	"[?]"-65047	"[?]"-65048	"[?]"-65049	"[?]"-65050	"[?]"-65051	"[?]"-65052	"[?]"-65053	"[?]"-65054	"[?]"-65055	"[?]"-65059	"~"-65060	"[?]"-65061	"[?]"-65062	"[?]"-65063	"[?]"-65064	"[?]"-65065	"[?]"-65066	"[?]"-65067	"[?]"-65068	"[?]"-65069	"[?]"-65070	"[?]"-65071	"[?]"-65072	".."-65073	"--"-65074	"-"-65075	"_"-65076	"_"-65077	"("-65078	") "-65079	"{"-65080	"} "-65081	"["-65082	"] "-65083	"[("-65084	")] "-65085	"<<"-65086	">> "-65087	"<"-65088	"> "-65089	"["-65090	"] "-65091	"{"-65092	"}"-65093	"[?]"-65094	"[?]"-65095	"[?]"-65096	"[?]"-65104	","-65105	","-65106	"."-65108	";"-65109	":"-65110	"?"-65111	"!"-65112	"-"-65113	"("-65114	")"-65115	"{"-65116	"}"-65117	"{"-65118	"}"-65119	"#"-65120	"&"-65121	"*"-65122	"+"-65123	"-"-65124	"<"-65125	">"-65126	"="-65128	"\\"-65129	"$"-65130	"%"-65131	"@"-65132	"[?]"-65133	"[?]"-65134	"[?]"-65135	"[?]"-65139	"[?]"-65141	"[?]"-65277	"[?]"-65278	"[?]"-65280	"[?]"-65281	"!"-65282	"\""-65283	"#"-65284	"$"-65285	"%"-65286	"&"-65287	"'"-65288	"("-65289	")"-65290	"*"-65291	"+"-65292	","-65293	"-"-65294	"."-65295	"/"-65296	"0"-65297	"1"-65298	"2"-65299	"3"-65300	"4"-65301	"5"-65302	"6"-65303	"7"-65304	"8"-65305	"9"-65306	":"-65307	";"-65308	"<"-65309	"="-65310	">"-65311	"?"-65312	"@"-65313	"A"-65314	"B"-65315	"C"-65316	"D"-65317	"E"-65318	"F"-65319	"G"-65320	"H"-65321	"I"-65322	"J"-65323	"K"-65324	"L"-65325	"M"-65326	"N"-65327	"O"-65328	"P"-65329	"Q"-65330	"R"-65331	"S"-65332	"T"-65333	"U"-65334	"V"-65335	"W"-65336	"X"-65337	"Y"-65338	"Z"-65339	"["-65340	"\\"-65341	"]"-65342	"^"-65343	"_"-65344	"`"-65345	"a"-65346	"b"-65347	"c"-65348	"d"-65349	"e"-65350	"f"-65351	"g"-65352	"h"-65353	"i"-65354	"j"-65355	"k"-65356	"l"-65357	"m"-65358	"n"-65359	"o"-65360	"p"-65361	"q"-65362	"r"-65363	"s"-65364	"t"-65365	"u"-65366	"v"-65367	"w"-65368	"x"-65369	"y"-65370	"z"-65371	"{"-65372	"|"-65373	"}"-65374	"~"-65375	"[?]"-65376	"[?]"-65377	"."-65378	"["-65379	"]"-65380	","-65381	"*"-65382	"wo"-65383	"a"-65384	"i"-65385	"u"-65386	"e"-65387	"o"-65388	"ya"-65389	"yu"-65390	"yo"-65391	"tu"-65392	"+"-65393	"a"-65394	"i"-65395	"u"-65396	"e"-65397	"o"-65398	"ka"-65399	"ki"-65400	"ku"-65401	"ke"-65402	"ko"-65403	"sa"-65404	"si"-65405	"su"-65406	"se"-65407	"so"-65408	"ta"-65409	"ti"-65410	"tu"-65411	"te"-65412	"to"-65413	"na"-65414	"ni"-65415	"nu"-65416	"ne"-65417	"no"-65418	"ha"-65419	"hi"-65420	"hu"-65421	"he"-65422	"ho"-65423	"ma"-65424	"mi"-65425	"mu"-65426	"me"-65427	"mo"-65428	"ya"-65429	"yu"-65430	"yo"-65431	"ra"-65432	"ri"-65433	"ru"-65434	"re"-65435	"ro"-65436	"wa"-65437	"n"-65438	":"-65439	";"-65441	"g"-65442	"gg"-65443	"gs"-65444	"n"-65445	"nj"-65446	"nh"-65447	"d"-65448	"dd"-65449	"r"-65450	"lg"-65451	"lm"-65452	"lb"-65453	"ls"-65454	"lt"-65455	"lp"-65456	"rh"-65457	"m"-65458	"b"-65459	"bb"-65460	"bs"-65461	"s"-65462	"ss"-65464	"j"-65465	"jj"-65466	"c"-65467	"k"-65468	"t"-65469	"p"-65470	"h"-65471	"[?]"-65472	"[?]"-65473	"[?]"-65474	"a"-65475	"ae"-65476	"ya"-65477	"yae"-65478	"eo"-65479	"e"-65480	"[?]"-65481	"[?]"-65482	"yeo"-65483	"ye"-65484	"o"-65485	"wa"-65486	"wae"-65487	"oe"-65488	"[?]"-65489	"[?]"-65490	"yo"-65491	"u"-65492	"weo"-65493	"we"-65494	"wi"-65495	"yu"-65496	"[?]"-65497	"[?]"-65498	"eu"-65499	"yi"-65500	"i"-65501	"[?]"-65502	"[?]"-65503	"[?]"-65504	"/C"-65505	"PS"-65506	"!"-65507	"-"-65508	"|"-65509	"Y="-65510	"W="-65511	"[?]"-65512	"|"-65513	"-"-65514	"|"-65515	"-"-65516	"|"-65517	"#"-65518	"O"-65519	"[?]"-65520	"[?]"-65521	"[?]"-65522	"[?]"-65523	"[?]"-65524	"[?]"-65525	"[?]"-65526	"[?]"-65527	"[?]"-65528	"[?]"-65529	"{"-65530	"|"-65531	"}"
− lib/toascii/Makefile
@@ -1,2 +0,0 @@-../../cbits/keyToASCII.c ../../cbits/valToASCII.c: Data.txt-	runghc generate-cbits.hs
− lib/toascii/generate-cbits.hs
@@ -1,29 +0,0 @@--- Generates cbits/keyToASCII.c and cbits/valToASCII.c--- from Data.txt.-import Control.Monad-import System.IO--main :: IO ()-main = do-  let topair s = case break (=='\t') s of-                      (x,'\t':y) -> (x,y)-                      _ -> error "no tab (topair)"-  keyvals <- (map topair . lines) <$> readFile "Data.txt"-  keytoascii <- openFile "../../cbits/keyToASCII.c" WriteMode-  valtoascii <- openFile "../../cbits/valToASCII.c" WriteMode-  let donotmodify = "/* DO NOT MODIFY MANUALLY */\n" ++-       "/* Modify lib/toascii/Data.txt and make -C lib/toascii */"-  hPutStrLn valtoascii donotmodify-  hPutStrLn valtoascii $-    "char *toASCIILut[8923] = {" ++ (snd $ head keyvals)-  hPutStrLn keytoascii donotmodify-  hPutStrLn keytoascii $-    "int keylookup[8923] = {" ++ (fst $ head keyvals)-  forM_ (tail keyvals) $ \(k, v) -> do-    hPutStrLn valtoascii (',':v)-    hPutStrLn keytoascii (',':k)-  hPutStrLn valtoascii "};"-  hPutStrLn keytoascii "};"-  hClose keytoascii-  hClose valtoascii-
lib/totexmath/Makefile view
@@ -1,5 +1,5 @@ UnicodeToLaTeX.hs: unimathsymbols.txt-	runghc unicodetotex.hs+	./unicodetotex.hs  .PHONY: clean clean:
lib/totexmath/unicodetotex.hs view
@@ -1,4 +1,10 @@+#!/usr/bin/env cabal+{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ViewPatterns #-}+{- cabal:+    build-depends: base, text, xml, texmath, containers, parsec+-}+ import Text.Parsec hiding (optional, (<|>)) import Control.Applicative hiding (many) import Data.List@@ -7,7 +13,8 @@ import Data.Char import Debug.Trace import qualified Data.Map as M-+import Data.Text (Text)+import qualified Data.Text as T  type Parser = Parsec String () @@ -37,7 +44,7 @@  -- DO NOT ALTER -addCommand :: (String, String) -> Record -> Record+addCommand :: (Text, Text) -> Record -> Record addCommand newcmd@(pkg,_) r@(filter ((/= pkg) . fst ) . commands -> cs) =   r {commands = newcmd : cs} @@ -86,15 +93,17 @@ row :: Parser Record row = do   hex <- field-  field-  defcmd <- field-  unicmd <- field-  uniclass <- field+  _ <- string "^^" <|> field+  defcmd <- T.pack <$> field+  unicmd <- T.pack <$> field+  _uniclass <- field   texclass <- field   reqs <- filter (\z -> head z /= '-') . words <$> field-  let reqs' = if null reqs then ["base"] else reqs+  let reqs' = if null reqs then ["base"] else map T.pack reqs   (alts, comment) <- parseComment-  let cmds = zip reqs' (repeat defcmd) ++ alts ++ [("unicode-math", unicmd)]+  let cmds = filter (\(_,x) -> not (T.null x)) $+               zip reqs' (repeat defcmd) ++ alts +++               [("unicode-math", unicmd)]   return (Record (readHex hex) cmds (getSymbolType texclass) comment)  readHex :: String -> Char@@ -103,14 +112,10 @@ field :: Parser String field = manyTill anyChar (char '^') --- Parses the comment field to find alternatives to commands-getAlternatives :: String ->  ([(String, String)], String)-getAlternatives s = either (error . show) id (parse parseComment "" s)--parseComment :: Parsec String () ([(String, String)], String)-parseComment  = (,) <$> (catMaybes <$> sepBy command (char ',')) <* optional (many $ char ' ') <*> manyTill anyChar (char '\n')+parseComment :: Parsec String () ([(Text, Text)], Text)+parseComment  = (,) <$> (catMaybes <$> sepBy command (char ',')) <* optional (many $ char ' ') <*> (T.pack <$> manyTill anyChar (char '\n')) -command :: Parsec String () (Maybe (String, String))+command :: Parsec String () (Maybe (Text, Text)) command = do   first <- lookAhead anyChar   case first of@@ -120,7 +125,7 @@     't'-> Nothing <$ skip     _ -> Nothing <$ return () -cmd :: Parsec String () (String, String)+cmd :: Parsec String () (Text, Text) cmd = do   anyChar   optional spaces@@ -130,7 +135,7 @@                 (many1 (satisfy (/= ')'))))   optional (many $ char ' ')   let package' = if null package then "base" else package-  return (package', alt)+  return (T.pack package', T.pack alt)  skip :: Parsec String () () skip = try $ do
lib/tounicode/Makefile view
@@ -1,6 +1,10 @@ UnicodeTable.hs: UnicodeData.txt mkUnicodeTable.hs-	runghc mkUnicodeTable.hs > $@+	./mkUnicodeTable.hs +UnicodeData.txt:+	curl https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt -o $@++ .PHONY: clean clean:-	-rm UnicodeTable.hs+	-rm UnicodeTable.hs UnicodeData.txt
− lib/tounicode/UnicodeData.txt
@@ -1,27268 +0,0 @@-0000;<control>;Cc;0;BN;;;;;N;NULL;;;;-0001;<control>;Cc;0;BN;;;;;N;START OF HEADING;;;;-0002;<control>;Cc;0;BN;;;;;N;START OF TEXT;;;;-0003;<control>;Cc;0;BN;;;;;N;END OF TEXT;;;;-0004;<control>;Cc;0;BN;;;;;N;END OF TRANSMISSION;;;;-0005;<control>;Cc;0;BN;;;;;N;ENQUIRY;;;;-0006;<control>;Cc;0;BN;;;;;N;ACKNOWLEDGE;;;;-0007;<control>;Cc;0;BN;;;;;N;BELL;;;;-0008;<control>;Cc;0;BN;;;;;N;BACKSPACE;;;;-0009;<control>;Cc;0;S;;;;;N;CHARACTER TABULATION;;;;-000A;<control>;Cc;0;B;;;;;N;LINE FEED (LF);;;;-000B;<control>;Cc;0;S;;;;;N;LINE TABULATION;;;;-000C;<control>;Cc;0;WS;;;;;N;FORM FEED (FF);;;;-000D;<control>;Cc;0;B;;;;;N;CARRIAGE RETURN (CR);;;;-000E;<control>;Cc;0;BN;;;;;N;SHIFT OUT;;;;-000F;<control>;Cc;0;BN;;;;;N;SHIFT IN;;;;-0010;<control>;Cc;0;BN;;;;;N;DATA LINK ESCAPE;;;;-0011;<control>;Cc;0;BN;;;;;N;DEVICE CONTROL ONE;;;;-0012;<control>;Cc;0;BN;;;;;N;DEVICE CONTROL TWO;;;;-0013;<control>;Cc;0;BN;;;;;N;DEVICE CONTROL THREE;;;;-0014;<control>;Cc;0;BN;;;;;N;DEVICE CONTROL FOUR;;;;-0015;<control>;Cc;0;BN;;;;;N;NEGATIVE ACKNOWLEDGE;;;;-0016;<control>;Cc;0;BN;;;;;N;SYNCHRONOUS IDLE;;;;-0017;<control>;Cc;0;BN;;;;;N;END OF TRANSMISSION BLOCK;;;;-0018;<control>;Cc;0;BN;;;;;N;CANCEL;;;;-0019;<control>;Cc;0;BN;;;;;N;END OF MEDIUM;;;;-001A;<control>;Cc;0;BN;;;;;N;SUBSTITUTE;;;;-001B;<control>;Cc;0;BN;;;;;N;ESCAPE;;;;-001C;<control>;Cc;0;B;;;;;N;INFORMATION SEPARATOR FOUR;;;;-001D;<control>;Cc;0;B;;;;;N;INFORMATION SEPARATOR THREE;;;;-001E;<control>;Cc;0;B;;;;;N;INFORMATION SEPARATOR TWO;;;;-001F;<control>;Cc;0;S;;;;;N;INFORMATION SEPARATOR ONE;;;;-0020;SPACE;Zs;0;WS;;;;;N;;;;;-0021;EXCLAMATION MARK;Po;0;ON;;;;;N;;;;;-0022;QUOTATION MARK;Po;0;ON;;;;;N;;;;;-0023;NUMBER SIGN;Po;0;ET;;;;;N;;;;;-0024;DOLLAR SIGN;Sc;0;ET;;;;;N;;;;;-0025;PERCENT SIGN;Po;0;ET;;;;;N;;;;;-0026;AMPERSAND;Po;0;ON;;;;;N;;;;;-0027;APOSTROPHE;Po;0;ON;;;;;N;APOSTROPHE-QUOTE;;;;-0028;LEFT PARENTHESIS;Ps;0;ON;;;;;Y;OPENING PARENTHESIS;;;;-0029;RIGHT PARENTHESIS;Pe;0;ON;;;;;Y;CLOSING PARENTHESIS;;;;-002A;ASTERISK;Po;0;ON;;;;;N;;;;;-002B;PLUS SIGN;Sm;0;ES;;;;;N;;;;;-002C;COMMA;Po;0;CS;;;;;N;;;;;-002D;HYPHEN-MINUS;Pd;0;ES;;;;;N;;;;;-002E;FULL STOP;Po;0;CS;;;;;N;PERIOD;;;;-002F;SOLIDUS;Po;0;CS;;;;;N;SLASH;;;;-0030;DIGIT ZERO;Nd;0;EN;;0;0;0;N;;;;;-0031;DIGIT ONE;Nd;0;EN;;1;1;1;N;;;;;-0032;DIGIT TWO;Nd;0;EN;;2;2;2;N;;;;;-0033;DIGIT THREE;Nd;0;EN;;3;3;3;N;;;;;-0034;DIGIT FOUR;Nd;0;EN;;4;4;4;N;;;;;-0035;DIGIT FIVE;Nd;0;EN;;5;5;5;N;;;;;-0036;DIGIT SIX;Nd;0;EN;;6;6;6;N;;;;;-0037;DIGIT SEVEN;Nd;0;EN;;7;7;7;N;;;;;-0038;DIGIT EIGHT;Nd;0;EN;;8;8;8;N;;;;;-0039;DIGIT NINE;Nd;0;EN;;9;9;9;N;;;;;-003A;COLON;Po;0;CS;;;;;N;;;;;-003B;SEMICOLON;Po;0;ON;;;;;N;;;;;-003C;LESS-THAN SIGN;Sm;0;ON;;;;;Y;;;;;-003D;EQUALS SIGN;Sm;0;ON;;;;;N;;;;;-003E;GREATER-THAN SIGN;Sm;0;ON;;;;;Y;;;;;-003F;QUESTION MARK;Po;0;ON;;;;;N;;;;;-0040;COMMERCIAL AT;Po;0;ON;;;;;N;;;;;-0041;LATIN CAPITAL LETTER A;Lu;0;L;;;;;N;;;;0061;-0042;LATIN CAPITAL LETTER B;Lu;0;L;;;;;N;;;;0062;-0043;LATIN CAPITAL LETTER C;Lu;0;L;;;;;N;;;;0063;-0044;LATIN CAPITAL LETTER D;Lu;0;L;;;;;N;;;;0064;-0045;LATIN CAPITAL LETTER E;Lu;0;L;;;;;N;;;;0065;-0046;LATIN CAPITAL LETTER F;Lu;0;L;;;;;N;;;;0066;-0047;LATIN CAPITAL LETTER G;Lu;0;L;;;;;N;;;;0067;-0048;LATIN CAPITAL LETTER H;Lu;0;L;;;;;N;;;;0068;-0049;LATIN CAPITAL LETTER I;Lu;0;L;;;;;N;;;;0069;-004A;LATIN CAPITAL LETTER J;Lu;0;L;;;;;N;;;;006A;-004B;LATIN CAPITAL LETTER K;Lu;0;L;;;;;N;;;;006B;-004C;LATIN CAPITAL LETTER L;Lu;0;L;;;;;N;;;;006C;-004D;LATIN CAPITAL LETTER M;Lu;0;L;;;;;N;;;;006D;-004E;LATIN CAPITAL LETTER N;Lu;0;L;;;;;N;;;;006E;-004F;LATIN CAPITAL LETTER O;Lu;0;L;;;;;N;;;;006F;-0050;LATIN CAPITAL LETTER P;Lu;0;L;;;;;N;;;;0070;-0051;LATIN CAPITAL LETTER Q;Lu;0;L;;;;;N;;;;0071;-0052;LATIN CAPITAL LETTER R;Lu;0;L;;;;;N;;;;0072;-0053;LATIN CAPITAL LETTER S;Lu;0;L;;;;;N;;;;0073;-0054;LATIN CAPITAL LETTER T;Lu;0;L;;;;;N;;;;0074;-0055;LATIN CAPITAL LETTER U;Lu;0;L;;;;;N;;;;0075;-0056;LATIN CAPITAL LETTER V;Lu;0;L;;;;;N;;;;0076;-0057;LATIN CAPITAL LETTER W;Lu;0;L;;;;;N;;;;0077;-0058;LATIN CAPITAL LETTER X;Lu;0;L;;;;;N;;;;0078;-0059;LATIN CAPITAL LETTER Y;Lu;0;L;;;;;N;;;;0079;-005A;LATIN CAPITAL LETTER Z;Lu;0;L;;;;;N;;;;007A;-005B;LEFT SQUARE BRACKET;Ps;0;ON;;;;;Y;OPENING SQUARE BRACKET;;;;-005C;REVERSE SOLIDUS;Po;0;ON;;;;;N;BACKSLASH;;;;-005D;RIGHT SQUARE BRACKET;Pe;0;ON;;;;;Y;CLOSING SQUARE BRACKET;;;;-005E;CIRCUMFLEX ACCENT;Sk;0;ON;;;;;N;SPACING CIRCUMFLEX;;;;-005F;LOW LINE;Pc;0;ON;;;;;N;SPACING UNDERSCORE;;;;-0060;GRAVE ACCENT;Sk;0;ON;;;;;N;SPACING GRAVE;;;;-0061;LATIN SMALL LETTER A;Ll;0;L;;;;;N;;;0041;;0041-0062;LATIN SMALL LETTER B;Ll;0;L;;;;;N;;;0042;;0042-0063;LATIN SMALL LETTER C;Ll;0;L;;;;;N;;;0043;;0043-0064;LATIN SMALL LETTER D;Ll;0;L;;;;;N;;;0044;;0044-0065;LATIN SMALL LETTER E;Ll;0;L;;;;;N;;;0045;;0045-0066;LATIN SMALL LETTER F;Ll;0;L;;;;;N;;;0046;;0046-0067;LATIN SMALL LETTER G;Ll;0;L;;;;;N;;;0047;;0047-0068;LATIN SMALL LETTER H;Ll;0;L;;;;;N;;;0048;;0048-0069;LATIN SMALL LETTER I;Ll;0;L;;;;;N;;;0049;;0049-006A;LATIN SMALL LETTER J;Ll;0;L;;;;;N;;;004A;;004A-006B;LATIN SMALL LETTER K;Ll;0;L;;;;;N;;;004B;;004B-006C;LATIN SMALL LETTER L;Ll;0;L;;;;;N;;;004C;;004C-006D;LATIN SMALL LETTER M;Ll;0;L;;;;;N;;;004D;;004D-006E;LATIN SMALL LETTER N;Ll;0;L;;;;;N;;;004E;;004E-006F;LATIN SMALL LETTER O;Ll;0;L;;;;;N;;;004F;;004F-0070;LATIN SMALL LETTER P;Ll;0;L;;;;;N;;;0050;;0050-0071;LATIN SMALL LETTER Q;Ll;0;L;;;;;N;;;0051;;0051-0072;LATIN SMALL LETTER R;Ll;0;L;;;;;N;;;0052;;0052-0073;LATIN SMALL LETTER S;Ll;0;L;;;;;N;;;0053;;0053-0074;LATIN SMALL LETTER T;Ll;0;L;;;;;N;;;0054;;0054-0075;LATIN SMALL LETTER U;Ll;0;L;;;;;N;;;0055;;0055-0076;LATIN SMALL LETTER V;Ll;0;L;;;;;N;;;0056;;0056-0077;LATIN SMALL LETTER W;Ll;0;L;;;;;N;;;0057;;0057-0078;LATIN SMALL LETTER X;Ll;0;L;;;;;N;;;0058;;0058-0079;LATIN SMALL LETTER Y;Ll;0;L;;;;;N;;;0059;;0059-007A;LATIN SMALL LETTER Z;Ll;0;L;;;;;N;;;005A;;005A-007B;LEFT CURLY BRACKET;Ps;0;ON;;;;;Y;OPENING CURLY BRACKET;;;;-007C;VERTICAL LINE;Sm;0;ON;;;;;N;VERTICAL BAR;;;;-007D;RIGHT CURLY BRACKET;Pe;0;ON;;;;;Y;CLOSING CURLY BRACKET;;;;-007E;TILDE;Sm;0;ON;;;;;N;;;;;-007F;<control>;Cc;0;BN;;;;;N;DELETE;;;;-0080;<control>;Cc;0;BN;;;;;N;;;;;-0081;<control>;Cc;0;BN;;;;;N;;;;;-0082;<control>;Cc;0;BN;;;;;N;BREAK PERMITTED HERE;;;;-0083;<control>;Cc;0;BN;;;;;N;NO BREAK HERE;;;;-0084;<control>;Cc;0;BN;;;;;N;;;;;-0085;<control>;Cc;0;B;;;;;N;NEXT LINE (NEL);;;;-0086;<control>;Cc;0;BN;;;;;N;START OF SELECTED AREA;;;;-0087;<control>;Cc;0;BN;;;;;N;END OF SELECTED AREA;;;;-0088;<control>;Cc;0;BN;;;;;N;CHARACTER TABULATION SET;;;;-0089;<control>;Cc;0;BN;;;;;N;CHARACTER TABULATION WITH JUSTIFICATION;;;;-008A;<control>;Cc;0;BN;;;;;N;LINE TABULATION SET;;;;-008B;<control>;Cc;0;BN;;;;;N;PARTIAL LINE FORWARD;;;;-008C;<control>;Cc;0;BN;;;;;N;PARTIAL LINE BACKWARD;;;;-008D;<control>;Cc;0;BN;;;;;N;REVERSE LINE FEED;;;;-008E;<control>;Cc;0;BN;;;;;N;SINGLE SHIFT TWO;;;;-008F;<control>;Cc;0;BN;;;;;N;SINGLE SHIFT THREE;;;;-0090;<control>;Cc;0;BN;;;;;N;DEVICE CONTROL STRING;;;;-0091;<control>;Cc;0;BN;;;;;N;PRIVATE USE ONE;;;;-0092;<control>;Cc;0;BN;;;;;N;PRIVATE USE TWO;;;;-0093;<control>;Cc;0;BN;;;;;N;SET TRANSMIT STATE;;;;-0094;<control>;Cc;0;BN;;;;;N;CANCEL CHARACTER;;;;-0095;<control>;Cc;0;BN;;;;;N;MESSAGE WAITING;;;;-0096;<control>;Cc;0;BN;;;;;N;START OF GUARDED AREA;;;;-0097;<control>;Cc;0;BN;;;;;N;END OF GUARDED AREA;;;;-0098;<control>;Cc;0;BN;;;;;N;START OF STRING;;;;-0099;<control>;Cc;0;BN;;;;;N;;;;;-009A;<control>;Cc;0;BN;;;;;N;SINGLE CHARACTER INTRODUCER;;;;-009B;<control>;Cc;0;BN;;;;;N;CONTROL SEQUENCE INTRODUCER;;;;-009C;<control>;Cc;0;BN;;;;;N;STRING TERMINATOR;;;;-009D;<control>;Cc;0;BN;;;;;N;OPERATING SYSTEM COMMAND;;;;-009E;<control>;Cc;0;BN;;;;;N;PRIVACY MESSAGE;;;;-009F;<control>;Cc;0;BN;;;;;N;APPLICATION PROGRAM COMMAND;;;;-00A0;NO-BREAK SPACE;Zs;0;CS;<noBreak> 0020;;;;N;NON-BREAKING SPACE;;;;-00A1;INVERTED EXCLAMATION MARK;Po;0;ON;;;;;N;;;;;-00A2;CENT SIGN;Sc;0;ET;;;;;N;;;;;-00A3;POUND SIGN;Sc;0;ET;;;;;N;;;;;-00A4;CURRENCY SIGN;Sc;0;ET;;;;;N;;;;;-00A5;YEN SIGN;Sc;0;ET;;;;;N;;;;;-00A6;BROKEN BAR;So;0;ON;;;;;N;BROKEN VERTICAL BAR;;;;-00A7;SECTION SIGN;Po;0;ON;;;;;N;;;;;-00A8;DIAERESIS;Sk;0;ON;<compat> 0020 0308;;;;N;SPACING DIAERESIS;;;;-00A9;COPYRIGHT SIGN;So;0;ON;;;;;N;;;;;-00AA;FEMININE ORDINAL INDICATOR;Lo;0;L;<super> 0061;;;;N;;;;;-00AB;LEFT-POINTING DOUBLE ANGLE QUOTATION MARK;Pi;0;ON;;;;;Y;LEFT POINTING GUILLEMET;;;;-00AC;NOT SIGN;Sm;0;ON;;;;;N;;;;;-00AD;SOFT HYPHEN;Cf;0;BN;;;;;N;;;;;-00AE;REGISTERED SIGN;So;0;ON;;;;;N;REGISTERED TRADE MARK SIGN;;;;-00AF;MACRON;Sk;0;ON;<compat> 0020 0304;;;;N;SPACING MACRON;;;;-00B0;DEGREE SIGN;So;0;ET;;;;;N;;;;;-00B1;PLUS-MINUS SIGN;Sm;0;ET;;;;;N;PLUS-OR-MINUS SIGN;;;;-00B2;SUPERSCRIPT TWO;No;0;EN;<super> 0032;;2;2;N;SUPERSCRIPT DIGIT TWO;;;;-00B3;SUPERSCRIPT THREE;No;0;EN;<super> 0033;;3;3;N;SUPERSCRIPT DIGIT THREE;;;;-00B4;ACUTE ACCENT;Sk;0;ON;<compat> 0020 0301;;;;N;SPACING ACUTE;;;;-00B5;MICRO SIGN;Ll;0;L;<compat> 03BC;;;;N;;;039C;;039C-00B6;PILCROW SIGN;Po;0;ON;;;;;N;PARAGRAPH SIGN;;;;-00B7;MIDDLE DOT;Po;0;ON;;;;;N;;;;;-00B8;CEDILLA;Sk;0;ON;<compat> 0020 0327;;;;N;SPACING CEDILLA;;;;-00B9;SUPERSCRIPT ONE;No;0;EN;<super> 0031;;1;1;N;SUPERSCRIPT DIGIT ONE;;;;-00BA;MASCULINE ORDINAL INDICATOR;Lo;0;L;<super> 006F;;;;N;;;;;-00BB;RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK;Pf;0;ON;;;;;Y;RIGHT POINTING GUILLEMET;;;;-00BC;VULGAR FRACTION ONE QUARTER;No;0;ON;<fraction> 0031 2044 0034;;;1/4;N;FRACTION ONE QUARTER;;;;-00BD;VULGAR FRACTION ONE HALF;No;0;ON;<fraction> 0031 2044 0032;;;1/2;N;FRACTION ONE HALF;;;;-00BE;VULGAR FRACTION THREE QUARTERS;No;0;ON;<fraction> 0033 2044 0034;;;3/4;N;FRACTION THREE QUARTERS;;;;-00BF;INVERTED QUESTION MARK;Po;0;ON;;;;;N;;;;;-00C0;LATIN CAPITAL LETTER A WITH GRAVE;Lu;0;L;0041 0300;;;;N;LATIN CAPITAL LETTER A GRAVE;;;00E0;-00C1;LATIN CAPITAL LETTER A WITH ACUTE;Lu;0;L;0041 0301;;;;N;LATIN CAPITAL LETTER A ACUTE;;;00E1;-00C2;LATIN CAPITAL LETTER A WITH CIRCUMFLEX;Lu;0;L;0041 0302;;;;N;LATIN CAPITAL LETTER A CIRCUMFLEX;;;00E2;-00C3;LATIN CAPITAL LETTER A WITH TILDE;Lu;0;L;0041 0303;;;;N;LATIN CAPITAL LETTER A TILDE;;;00E3;-00C4;LATIN CAPITAL LETTER A WITH DIAERESIS;Lu;0;L;0041 0308;;;;N;LATIN CAPITAL LETTER A DIAERESIS;;;00E4;-00C5;LATIN CAPITAL LETTER A WITH RING ABOVE;Lu;0;L;0041 030A;;;;N;LATIN CAPITAL LETTER A RING;;;00E5;-00C6;LATIN CAPITAL LETTER AE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER A E;;;00E6;-00C7;LATIN CAPITAL LETTER C WITH CEDILLA;Lu;0;L;0043 0327;;;;N;LATIN CAPITAL LETTER C CEDILLA;;;00E7;-00C8;LATIN CAPITAL LETTER E WITH GRAVE;Lu;0;L;0045 0300;;;;N;LATIN CAPITAL LETTER E GRAVE;;;00E8;-00C9;LATIN CAPITAL LETTER E WITH ACUTE;Lu;0;L;0045 0301;;;;N;LATIN CAPITAL LETTER E ACUTE;;;00E9;-00CA;LATIN CAPITAL LETTER E WITH CIRCUMFLEX;Lu;0;L;0045 0302;;;;N;LATIN CAPITAL LETTER E CIRCUMFLEX;;;00EA;-00CB;LATIN CAPITAL LETTER E WITH DIAERESIS;Lu;0;L;0045 0308;;;;N;LATIN CAPITAL LETTER E DIAERESIS;;;00EB;-00CC;LATIN CAPITAL LETTER I WITH GRAVE;Lu;0;L;0049 0300;;;;N;LATIN CAPITAL LETTER I GRAVE;;;00EC;-00CD;LATIN CAPITAL LETTER I WITH ACUTE;Lu;0;L;0049 0301;;;;N;LATIN CAPITAL LETTER I ACUTE;;;00ED;-00CE;LATIN CAPITAL LETTER I WITH CIRCUMFLEX;Lu;0;L;0049 0302;;;;N;LATIN CAPITAL LETTER I CIRCUMFLEX;;;00EE;-00CF;LATIN CAPITAL LETTER I WITH DIAERESIS;Lu;0;L;0049 0308;;;;N;LATIN CAPITAL LETTER I DIAERESIS;;;00EF;-00D0;LATIN CAPITAL LETTER ETH;Lu;0;L;;;;;N;;;;00F0;-00D1;LATIN CAPITAL LETTER N WITH TILDE;Lu;0;L;004E 0303;;;;N;LATIN CAPITAL LETTER N TILDE;;;00F1;-00D2;LATIN CAPITAL LETTER O WITH GRAVE;Lu;0;L;004F 0300;;;;N;LATIN CAPITAL LETTER O GRAVE;;;00F2;-00D3;LATIN CAPITAL LETTER O WITH ACUTE;Lu;0;L;004F 0301;;;;N;LATIN CAPITAL LETTER O ACUTE;;;00F3;-00D4;LATIN CAPITAL LETTER O WITH CIRCUMFLEX;Lu;0;L;004F 0302;;;;N;LATIN CAPITAL LETTER O CIRCUMFLEX;;;00F4;-00D5;LATIN CAPITAL LETTER O WITH TILDE;Lu;0;L;004F 0303;;;;N;LATIN CAPITAL LETTER O TILDE;;;00F5;-00D6;LATIN CAPITAL LETTER O WITH DIAERESIS;Lu;0;L;004F 0308;;;;N;LATIN CAPITAL LETTER O DIAERESIS;;;00F6;-00D7;MULTIPLICATION SIGN;Sm;0;ON;;;;;N;;;;;-00D8;LATIN CAPITAL LETTER O WITH STROKE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER O SLASH;;;00F8;-00D9;LATIN CAPITAL LETTER U WITH GRAVE;Lu;0;L;0055 0300;;;;N;LATIN CAPITAL LETTER U GRAVE;;;00F9;-00DA;LATIN CAPITAL LETTER U WITH ACUTE;Lu;0;L;0055 0301;;;;N;LATIN CAPITAL LETTER U ACUTE;;;00FA;-00DB;LATIN CAPITAL LETTER U WITH CIRCUMFLEX;Lu;0;L;0055 0302;;;;N;LATIN CAPITAL LETTER U CIRCUMFLEX;;;00FB;-00DC;LATIN CAPITAL LETTER U WITH DIAERESIS;Lu;0;L;0055 0308;;;;N;LATIN CAPITAL LETTER U DIAERESIS;;;00FC;-00DD;LATIN CAPITAL LETTER Y WITH ACUTE;Lu;0;L;0059 0301;;;;N;LATIN CAPITAL LETTER Y ACUTE;;;00FD;-00DE;LATIN CAPITAL LETTER THORN;Lu;0;L;;;;;N;;;;00FE;-00DF;LATIN SMALL LETTER SHARP S;Ll;0;L;;;;;N;;;;;-00E0;LATIN SMALL LETTER A WITH GRAVE;Ll;0;L;0061 0300;;;;N;LATIN SMALL LETTER A GRAVE;;00C0;;00C0-00E1;LATIN SMALL LETTER A WITH ACUTE;Ll;0;L;0061 0301;;;;N;LATIN SMALL LETTER A ACUTE;;00C1;;00C1-00E2;LATIN SMALL LETTER A WITH CIRCUMFLEX;Ll;0;L;0061 0302;;;;N;LATIN SMALL LETTER A CIRCUMFLEX;;00C2;;00C2-00E3;LATIN SMALL LETTER A WITH TILDE;Ll;0;L;0061 0303;;;;N;LATIN SMALL LETTER A TILDE;;00C3;;00C3-00E4;LATIN SMALL LETTER A WITH DIAERESIS;Ll;0;L;0061 0308;;;;N;LATIN SMALL LETTER A DIAERESIS;;00C4;;00C4-00E5;LATIN SMALL LETTER A WITH RING ABOVE;Ll;0;L;0061 030A;;;;N;LATIN SMALL LETTER A RING;;00C5;;00C5-00E6;LATIN SMALL LETTER AE;Ll;0;L;;;;;N;LATIN SMALL LETTER A E;;00C6;;00C6-00E7;LATIN SMALL LETTER C WITH CEDILLA;Ll;0;L;0063 0327;;;;N;LATIN SMALL LETTER C CEDILLA;;00C7;;00C7-00E8;LATIN SMALL LETTER E WITH GRAVE;Ll;0;L;0065 0300;;;;N;LATIN SMALL LETTER E GRAVE;;00C8;;00C8-00E9;LATIN SMALL LETTER E WITH ACUTE;Ll;0;L;0065 0301;;;;N;LATIN SMALL LETTER E ACUTE;;00C9;;00C9-00EA;LATIN SMALL LETTER E WITH CIRCUMFLEX;Ll;0;L;0065 0302;;;;N;LATIN SMALL LETTER E CIRCUMFLEX;;00CA;;00CA-00EB;LATIN SMALL LETTER E WITH DIAERESIS;Ll;0;L;0065 0308;;;;N;LATIN SMALL LETTER E DIAERESIS;;00CB;;00CB-00EC;LATIN SMALL LETTER I WITH GRAVE;Ll;0;L;0069 0300;;;;N;LATIN SMALL LETTER I GRAVE;;00CC;;00CC-00ED;LATIN SMALL LETTER I WITH ACUTE;Ll;0;L;0069 0301;;;;N;LATIN SMALL LETTER I ACUTE;;00CD;;00CD-00EE;LATIN SMALL LETTER I WITH CIRCUMFLEX;Ll;0;L;0069 0302;;;;N;LATIN SMALL LETTER I CIRCUMFLEX;;00CE;;00CE-00EF;LATIN SMALL LETTER I WITH DIAERESIS;Ll;0;L;0069 0308;;;;N;LATIN SMALL LETTER I DIAERESIS;;00CF;;00CF-00F0;LATIN SMALL LETTER ETH;Ll;0;L;;;;;N;;;00D0;;00D0-00F1;LATIN SMALL LETTER N WITH TILDE;Ll;0;L;006E 0303;;;;N;LATIN SMALL LETTER N TILDE;;00D1;;00D1-00F2;LATIN SMALL LETTER O WITH GRAVE;Ll;0;L;006F 0300;;;;N;LATIN SMALL LETTER O GRAVE;;00D2;;00D2-00F3;LATIN SMALL LETTER O WITH ACUTE;Ll;0;L;006F 0301;;;;N;LATIN SMALL LETTER O ACUTE;;00D3;;00D3-00F4;LATIN SMALL LETTER O WITH CIRCUMFLEX;Ll;0;L;006F 0302;;;;N;LATIN SMALL LETTER O CIRCUMFLEX;;00D4;;00D4-00F5;LATIN SMALL LETTER O WITH TILDE;Ll;0;L;006F 0303;;;;N;LATIN SMALL LETTER O TILDE;;00D5;;00D5-00F6;LATIN SMALL LETTER O WITH DIAERESIS;Ll;0;L;006F 0308;;;;N;LATIN SMALL LETTER O DIAERESIS;;00D6;;00D6-00F7;DIVISION SIGN;Sm;0;ON;;;;;N;;;;;-00F8;LATIN SMALL LETTER O WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER O SLASH;;00D8;;00D8-00F9;LATIN SMALL LETTER U WITH GRAVE;Ll;0;L;0075 0300;;;;N;LATIN SMALL LETTER U GRAVE;;00D9;;00D9-00FA;LATIN SMALL LETTER U WITH ACUTE;Ll;0;L;0075 0301;;;;N;LATIN SMALL LETTER U ACUTE;;00DA;;00DA-00FB;LATIN SMALL LETTER U WITH CIRCUMFLEX;Ll;0;L;0075 0302;;;;N;LATIN SMALL LETTER U CIRCUMFLEX;;00DB;;00DB-00FC;LATIN SMALL LETTER U WITH DIAERESIS;Ll;0;L;0075 0308;;;;N;LATIN SMALL LETTER U DIAERESIS;;00DC;;00DC-00FD;LATIN SMALL LETTER Y WITH ACUTE;Ll;0;L;0079 0301;;;;N;LATIN SMALL LETTER Y ACUTE;;00DD;;00DD-00FE;LATIN SMALL LETTER THORN;Ll;0;L;;;;;N;;;00DE;;00DE-00FF;LATIN SMALL LETTER Y WITH DIAERESIS;Ll;0;L;0079 0308;;;;N;LATIN SMALL LETTER Y DIAERESIS;;0178;;0178-0100;LATIN CAPITAL LETTER A WITH MACRON;Lu;0;L;0041 0304;;;;N;LATIN CAPITAL LETTER A MACRON;;;0101;-0101;LATIN SMALL LETTER A WITH MACRON;Ll;0;L;0061 0304;;;;N;LATIN SMALL LETTER A MACRON;;0100;;0100-0102;LATIN CAPITAL LETTER A WITH BREVE;Lu;0;L;0041 0306;;;;N;LATIN CAPITAL LETTER A BREVE;;;0103;-0103;LATIN SMALL LETTER A WITH BREVE;Ll;0;L;0061 0306;;;;N;LATIN SMALL LETTER A BREVE;;0102;;0102-0104;LATIN CAPITAL LETTER A WITH OGONEK;Lu;0;L;0041 0328;;;;N;LATIN CAPITAL LETTER A OGONEK;;;0105;-0105;LATIN SMALL LETTER A WITH OGONEK;Ll;0;L;0061 0328;;;;N;LATIN SMALL LETTER A OGONEK;;0104;;0104-0106;LATIN CAPITAL LETTER C WITH ACUTE;Lu;0;L;0043 0301;;;;N;LATIN CAPITAL LETTER C ACUTE;;;0107;-0107;LATIN SMALL LETTER C WITH ACUTE;Ll;0;L;0063 0301;;;;N;LATIN SMALL LETTER C ACUTE;;0106;;0106-0108;LATIN CAPITAL LETTER C WITH CIRCUMFLEX;Lu;0;L;0043 0302;;;;N;LATIN CAPITAL LETTER C CIRCUMFLEX;;;0109;-0109;LATIN SMALL LETTER C WITH CIRCUMFLEX;Ll;0;L;0063 0302;;;;N;LATIN SMALL LETTER C CIRCUMFLEX;;0108;;0108-010A;LATIN CAPITAL LETTER C WITH DOT ABOVE;Lu;0;L;0043 0307;;;;N;LATIN CAPITAL LETTER C DOT;;;010B;-010B;LATIN SMALL LETTER C WITH DOT ABOVE;Ll;0;L;0063 0307;;;;N;LATIN SMALL LETTER C DOT;;010A;;010A-010C;LATIN CAPITAL LETTER C WITH CARON;Lu;0;L;0043 030C;;;;N;LATIN CAPITAL LETTER C HACEK;;;010D;-010D;LATIN SMALL LETTER C WITH CARON;Ll;0;L;0063 030C;;;;N;LATIN SMALL LETTER C HACEK;;010C;;010C-010E;LATIN CAPITAL LETTER D WITH CARON;Lu;0;L;0044 030C;;;;N;LATIN CAPITAL LETTER D HACEK;;;010F;-010F;LATIN SMALL LETTER D WITH CARON;Ll;0;L;0064 030C;;;;N;LATIN SMALL LETTER D HACEK;;010E;;010E-0110;LATIN CAPITAL LETTER D WITH STROKE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER D BAR;;;0111;-0111;LATIN SMALL LETTER D WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER D BAR;;0110;;0110-0112;LATIN CAPITAL LETTER E WITH MACRON;Lu;0;L;0045 0304;;;;N;LATIN CAPITAL LETTER E MACRON;;;0113;-0113;LATIN SMALL LETTER E WITH MACRON;Ll;0;L;0065 0304;;;;N;LATIN SMALL LETTER E MACRON;;0112;;0112-0114;LATIN CAPITAL LETTER E WITH BREVE;Lu;0;L;0045 0306;;;;N;LATIN CAPITAL LETTER E BREVE;;;0115;-0115;LATIN SMALL LETTER E WITH BREVE;Ll;0;L;0065 0306;;;;N;LATIN SMALL LETTER E BREVE;;0114;;0114-0116;LATIN CAPITAL LETTER E WITH DOT ABOVE;Lu;0;L;0045 0307;;;;N;LATIN CAPITAL LETTER E DOT;;;0117;-0117;LATIN SMALL LETTER E WITH DOT ABOVE;Ll;0;L;0065 0307;;;;N;LATIN SMALL LETTER E DOT;;0116;;0116-0118;LATIN CAPITAL LETTER E WITH OGONEK;Lu;0;L;0045 0328;;;;N;LATIN CAPITAL LETTER E OGONEK;;;0119;-0119;LATIN SMALL LETTER E WITH OGONEK;Ll;0;L;0065 0328;;;;N;LATIN SMALL LETTER E OGONEK;;0118;;0118-011A;LATIN CAPITAL LETTER E WITH CARON;Lu;0;L;0045 030C;;;;N;LATIN CAPITAL LETTER E HACEK;;;011B;-011B;LATIN SMALL LETTER E WITH CARON;Ll;0;L;0065 030C;;;;N;LATIN SMALL LETTER E HACEK;;011A;;011A-011C;LATIN CAPITAL LETTER G WITH CIRCUMFLEX;Lu;0;L;0047 0302;;;;N;LATIN CAPITAL LETTER G CIRCUMFLEX;;;011D;-011D;LATIN SMALL LETTER G WITH CIRCUMFLEX;Ll;0;L;0067 0302;;;;N;LATIN SMALL LETTER G CIRCUMFLEX;;011C;;011C-011E;LATIN CAPITAL LETTER G WITH BREVE;Lu;0;L;0047 0306;;;;N;LATIN CAPITAL LETTER G BREVE;;;011F;-011F;LATIN SMALL LETTER G WITH BREVE;Ll;0;L;0067 0306;;;;N;LATIN SMALL LETTER G BREVE;;011E;;011E-0120;LATIN CAPITAL LETTER G WITH DOT ABOVE;Lu;0;L;0047 0307;;;;N;LATIN CAPITAL LETTER G DOT;;;0121;-0121;LATIN SMALL LETTER G WITH DOT ABOVE;Ll;0;L;0067 0307;;;;N;LATIN SMALL LETTER G DOT;;0120;;0120-0122;LATIN CAPITAL LETTER G WITH CEDILLA;Lu;0;L;0047 0327;;;;N;LATIN CAPITAL LETTER G CEDILLA;;;0123;-0123;LATIN SMALL LETTER G WITH CEDILLA;Ll;0;L;0067 0327;;;;N;LATIN SMALL LETTER G CEDILLA;;0122;;0122-0124;LATIN CAPITAL LETTER H WITH CIRCUMFLEX;Lu;0;L;0048 0302;;;;N;LATIN CAPITAL LETTER H CIRCUMFLEX;;;0125;-0125;LATIN SMALL LETTER H WITH CIRCUMFLEX;Ll;0;L;0068 0302;;;;N;LATIN SMALL LETTER H CIRCUMFLEX;;0124;;0124-0126;LATIN CAPITAL LETTER H WITH STROKE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER H BAR;;;0127;-0127;LATIN SMALL LETTER H WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER H BAR;;0126;;0126-0128;LATIN CAPITAL LETTER I WITH TILDE;Lu;0;L;0049 0303;;;;N;LATIN CAPITAL LETTER I TILDE;;;0129;-0129;LATIN SMALL LETTER I WITH TILDE;Ll;0;L;0069 0303;;;;N;LATIN SMALL LETTER I TILDE;;0128;;0128-012A;LATIN CAPITAL LETTER I WITH MACRON;Lu;0;L;0049 0304;;;;N;LATIN CAPITAL LETTER I MACRON;;;012B;-012B;LATIN SMALL LETTER I WITH MACRON;Ll;0;L;0069 0304;;;;N;LATIN SMALL LETTER I MACRON;;012A;;012A-012C;LATIN CAPITAL LETTER I WITH BREVE;Lu;0;L;0049 0306;;;;N;LATIN CAPITAL LETTER I BREVE;;;012D;-012D;LATIN SMALL LETTER I WITH BREVE;Ll;0;L;0069 0306;;;;N;LATIN SMALL LETTER I BREVE;;012C;;012C-012E;LATIN CAPITAL LETTER I WITH OGONEK;Lu;0;L;0049 0328;;;;N;LATIN CAPITAL LETTER I OGONEK;;;012F;-012F;LATIN SMALL LETTER I WITH OGONEK;Ll;0;L;0069 0328;;;;N;LATIN SMALL LETTER I OGONEK;;012E;;012E-0130;LATIN CAPITAL LETTER I WITH DOT ABOVE;Lu;0;L;0049 0307;;;;N;LATIN CAPITAL LETTER I DOT;;;0069;-0131;LATIN SMALL LETTER DOTLESS I;Ll;0;L;;;;;N;;;0049;;0049-0132;LATIN CAPITAL LIGATURE IJ;Lu;0;L;<compat> 0049 004A;;;;N;LATIN CAPITAL LETTER I J;;;0133;-0133;LATIN SMALL LIGATURE IJ;Ll;0;L;<compat> 0069 006A;;;;N;LATIN SMALL LETTER I J;;0132;;0132-0134;LATIN CAPITAL LETTER J WITH CIRCUMFLEX;Lu;0;L;004A 0302;;;;N;LATIN CAPITAL LETTER J CIRCUMFLEX;;;0135;-0135;LATIN SMALL LETTER J WITH CIRCUMFLEX;Ll;0;L;006A 0302;;;;N;LATIN SMALL LETTER J CIRCUMFLEX;;0134;;0134-0136;LATIN CAPITAL LETTER K WITH CEDILLA;Lu;0;L;004B 0327;;;;N;LATIN CAPITAL LETTER K CEDILLA;;;0137;-0137;LATIN SMALL LETTER K WITH CEDILLA;Ll;0;L;006B 0327;;;;N;LATIN SMALL LETTER K CEDILLA;;0136;;0136-0138;LATIN SMALL LETTER KRA;Ll;0;L;;;;;N;;;;;-0139;LATIN CAPITAL LETTER L WITH ACUTE;Lu;0;L;004C 0301;;;;N;LATIN CAPITAL LETTER L ACUTE;;;013A;-013A;LATIN SMALL LETTER L WITH ACUTE;Ll;0;L;006C 0301;;;;N;LATIN SMALL LETTER L ACUTE;;0139;;0139-013B;LATIN CAPITAL LETTER L WITH CEDILLA;Lu;0;L;004C 0327;;;;N;LATIN CAPITAL LETTER L CEDILLA;;;013C;-013C;LATIN SMALL LETTER L WITH CEDILLA;Ll;0;L;006C 0327;;;;N;LATIN SMALL LETTER L CEDILLA;;013B;;013B-013D;LATIN CAPITAL LETTER L WITH CARON;Lu;0;L;004C 030C;;;;N;LATIN CAPITAL LETTER L HACEK;;;013E;-013E;LATIN SMALL LETTER L WITH CARON;Ll;0;L;006C 030C;;;;N;LATIN SMALL LETTER L HACEK;;013D;;013D-013F;LATIN CAPITAL LETTER L WITH MIDDLE DOT;Lu;0;L;<compat> 004C 00B7;;;;N;;;;0140;-0140;LATIN SMALL LETTER L WITH MIDDLE DOT;Ll;0;L;<compat> 006C 00B7;;;;N;;;013F;;013F-0141;LATIN CAPITAL LETTER L WITH STROKE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER L SLASH;;;0142;-0142;LATIN SMALL LETTER L WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER L SLASH;;0141;;0141-0143;LATIN CAPITAL LETTER N WITH ACUTE;Lu;0;L;004E 0301;;;;N;LATIN CAPITAL LETTER N ACUTE;;;0144;-0144;LATIN SMALL LETTER N WITH ACUTE;Ll;0;L;006E 0301;;;;N;LATIN SMALL LETTER N ACUTE;;0143;;0143-0145;LATIN CAPITAL LETTER N WITH CEDILLA;Lu;0;L;004E 0327;;;;N;LATIN CAPITAL LETTER N CEDILLA;;;0146;-0146;LATIN SMALL LETTER N WITH CEDILLA;Ll;0;L;006E 0327;;;;N;LATIN SMALL LETTER N CEDILLA;;0145;;0145-0147;LATIN CAPITAL LETTER N WITH CARON;Lu;0;L;004E 030C;;;;N;LATIN CAPITAL LETTER N HACEK;;;0148;-0148;LATIN SMALL LETTER N WITH CARON;Ll;0;L;006E 030C;;;;N;LATIN SMALL LETTER N HACEK;;0147;;0147-0149;LATIN SMALL LETTER N PRECEDED BY APOSTROPHE;Ll;0;L;<compat> 02BC 006E;;;;N;LATIN SMALL LETTER APOSTROPHE N;;;;-014A;LATIN CAPITAL LETTER ENG;Lu;0;L;;;;;N;;;;014B;-014B;LATIN SMALL LETTER ENG;Ll;0;L;;;;;N;;;014A;;014A-014C;LATIN CAPITAL LETTER O WITH MACRON;Lu;0;L;004F 0304;;;;N;LATIN CAPITAL LETTER O MACRON;;;014D;-014D;LATIN SMALL LETTER O WITH MACRON;Ll;0;L;006F 0304;;;;N;LATIN SMALL LETTER O MACRON;;014C;;014C-014E;LATIN CAPITAL LETTER O WITH BREVE;Lu;0;L;004F 0306;;;;N;LATIN CAPITAL LETTER O BREVE;;;014F;-014F;LATIN SMALL LETTER O WITH BREVE;Ll;0;L;006F 0306;;;;N;LATIN SMALL LETTER O BREVE;;014E;;014E-0150;LATIN CAPITAL LETTER O WITH DOUBLE ACUTE;Lu;0;L;004F 030B;;;;N;LATIN CAPITAL LETTER O DOUBLE ACUTE;;;0151;-0151;LATIN SMALL LETTER O WITH DOUBLE ACUTE;Ll;0;L;006F 030B;;;;N;LATIN SMALL LETTER O DOUBLE ACUTE;;0150;;0150-0152;LATIN CAPITAL LIGATURE OE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER O E;;;0153;-0153;LATIN SMALL LIGATURE OE;Ll;0;L;;;;;N;LATIN SMALL LETTER O E;;0152;;0152-0154;LATIN CAPITAL LETTER R WITH ACUTE;Lu;0;L;0052 0301;;;;N;LATIN CAPITAL LETTER R ACUTE;;;0155;-0155;LATIN SMALL LETTER R WITH ACUTE;Ll;0;L;0072 0301;;;;N;LATIN SMALL LETTER R ACUTE;;0154;;0154-0156;LATIN CAPITAL LETTER R WITH CEDILLA;Lu;0;L;0052 0327;;;;N;LATIN CAPITAL LETTER R CEDILLA;;;0157;-0157;LATIN SMALL LETTER R WITH CEDILLA;Ll;0;L;0072 0327;;;;N;LATIN SMALL LETTER R CEDILLA;;0156;;0156-0158;LATIN CAPITAL LETTER R WITH CARON;Lu;0;L;0052 030C;;;;N;LATIN CAPITAL LETTER R HACEK;;;0159;-0159;LATIN SMALL LETTER R WITH CARON;Ll;0;L;0072 030C;;;;N;LATIN SMALL LETTER R HACEK;;0158;;0158-015A;LATIN CAPITAL LETTER S WITH ACUTE;Lu;0;L;0053 0301;;;;N;LATIN CAPITAL LETTER S ACUTE;;;015B;-015B;LATIN SMALL LETTER S WITH ACUTE;Ll;0;L;0073 0301;;;;N;LATIN SMALL LETTER S ACUTE;;015A;;015A-015C;LATIN CAPITAL LETTER S WITH CIRCUMFLEX;Lu;0;L;0053 0302;;;;N;LATIN CAPITAL LETTER S CIRCUMFLEX;;;015D;-015D;LATIN SMALL LETTER S WITH CIRCUMFLEX;Ll;0;L;0073 0302;;;;N;LATIN SMALL LETTER S CIRCUMFLEX;;015C;;015C-015E;LATIN CAPITAL LETTER S WITH CEDILLA;Lu;0;L;0053 0327;;;;N;LATIN CAPITAL LETTER S CEDILLA;;;015F;-015F;LATIN SMALL LETTER S WITH CEDILLA;Ll;0;L;0073 0327;;;;N;LATIN SMALL LETTER S CEDILLA;;015E;;015E-0160;LATIN CAPITAL LETTER S WITH CARON;Lu;0;L;0053 030C;;;;N;LATIN CAPITAL LETTER S HACEK;;;0161;-0161;LATIN SMALL LETTER S WITH CARON;Ll;0;L;0073 030C;;;;N;LATIN SMALL LETTER S HACEK;;0160;;0160-0162;LATIN CAPITAL LETTER T WITH CEDILLA;Lu;0;L;0054 0327;;;;N;LATIN CAPITAL LETTER T CEDILLA;;;0163;-0163;LATIN SMALL LETTER T WITH CEDILLA;Ll;0;L;0074 0327;;;;N;LATIN SMALL LETTER T CEDILLA;;0162;;0162-0164;LATIN CAPITAL LETTER T WITH CARON;Lu;0;L;0054 030C;;;;N;LATIN CAPITAL LETTER T HACEK;;;0165;-0165;LATIN SMALL LETTER T WITH CARON;Ll;0;L;0074 030C;;;;N;LATIN SMALL LETTER T HACEK;;0164;;0164-0166;LATIN CAPITAL LETTER T WITH STROKE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER T BAR;;;0167;-0167;LATIN SMALL LETTER T WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER T BAR;;0166;;0166-0168;LATIN CAPITAL LETTER U WITH TILDE;Lu;0;L;0055 0303;;;;N;LATIN CAPITAL LETTER U TILDE;;;0169;-0169;LATIN SMALL LETTER U WITH TILDE;Ll;0;L;0075 0303;;;;N;LATIN SMALL LETTER U TILDE;;0168;;0168-016A;LATIN CAPITAL LETTER U WITH MACRON;Lu;0;L;0055 0304;;;;N;LATIN CAPITAL LETTER U MACRON;;;016B;-016B;LATIN SMALL LETTER U WITH MACRON;Ll;0;L;0075 0304;;;;N;LATIN SMALL LETTER U MACRON;;016A;;016A-016C;LATIN CAPITAL LETTER U WITH BREVE;Lu;0;L;0055 0306;;;;N;LATIN CAPITAL LETTER U BREVE;;;016D;-016D;LATIN SMALL LETTER U WITH BREVE;Ll;0;L;0075 0306;;;;N;LATIN SMALL LETTER U BREVE;;016C;;016C-016E;LATIN CAPITAL LETTER U WITH RING ABOVE;Lu;0;L;0055 030A;;;;N;LATIN CAPITAL LETTER U RING;;;016F;-016F;LATIN SMALL LETTER U WITH RING ABOVE;Ll;0;L;0075 030A;;;;N;LATIN SMALL LETTER U RING;;016E;;016E-0170;LATIN CAPITAL LETTER U WITH DOUBLE ACUTE;Lu;0;L;0055 030B;;;;N;LATIN CAPITAL LETTER U DOUBLE ACUTE;;;0171;-0171;LATIN SMALL LETTER U WITH DOUBLE ACUTE;Ll;0;L;0075 030B;;;;N;LATIN SMALL LETTER U DOUBLE ACUTE;;0170;;0170-0172;LATIN CAPITAL LETTER U WITH OGONEK;Lu;0;L;0055 0328;;;;N;LATIN CAPITAL LETTER U OGONEK;;;0173;-0173;LATIN SMALL LETTER U WITH OGONEK;Ll;0;L;0075 0328;;;;N;LATIN SMALL LETTER U OGONEK;;0172;;0172-0174;LATIN CAPITAL LETTER W WITH CIRCUMFLEX;Lu;0;L;0057 0302;;;;N;LATIN CAPITAL LETTER W CIRCUMFLEX;;;0175;-0175;LATIN SMALL LETTER W WITH CIRCUMFLEX;Ll;0;L;0077 0302;;;;N;LATIN SMALL LETTER W CIRCUMFLEX;;0174;;0174-0176;LATIN CAPITAL LETTER Y WITH CIRCUMFLEX;Lu;0;L;0059 0302;;;;N;LATIN CAPITAL LETTER Y CIRCUMFLEX;;;0177;-0177;LATIN SMALL LETTER Y WITH CIRCUMFLEX;Ll;0;L;0079 0302;;;;N;LATIN SMALL LETTER Y CIRCUMFLEX;;0176;;0176-0178;LATIN CAPITAL LETTER Y WITH DIAERESIS;Lu;0;L;0059 0308;;;;N;LATIN CAPITAL LETTER Y DIAERESIS;;;00FF;-0179;LATIN CAPITAL LETTER Z WITH ACUTE;Lu;0;L;005A 0301;;;;N;LATIN CAPITAL LETTER Z ACUTE;;;017A;-017A;LATIN SMALL LETTER Z WITH ACUTE;Ll;0;L;007A 0301;;;;N;LATIN SMALL LETTER Z ACUTE;;0179;;0179-017B;LATIN CAPITAL LETTER Z WITH DOT ABOVE;Lu;0;L;005A 0307;;;;N;LATIN CAPITAL LETTER Z DOT;;;017C;-017C;LATIN SMALL LETTER Z WITH DOT ABOVE;Ll;0;L;007A 0307;;;;N;LATIN SMALL LETTER Z DOT;;017B;;017B-017D;LATIN CAPITAL LETTER Z WITH CARON;Lu;0;L;005A 030C;;;;N;LATIN CAPITAL LETTER Z HACEK;;;017E;-017E;LATIN SMALL LETTER Z WITH CARON;Ll;0;L;007A 030C;;;;N;LATIN SMALL LETTER Z HACEK;;017D;;017D-017F;LATIN SMALL LETTER LONG S;Ll;0;L;<compat> 0073;;;;N;;;0053;;0053-0180;LATIN SMALL LETTER B WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER B BAR;;0243;;0243-0181;LATIN CAPITAL LETTER B WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER B HOOK;;;0253;-0182;LATIN CAPITAL LETTER B WITH TOPBAR;Lu;0;L;;;;;N;LATIN CAPITAL LETTER B TOPBAR;;;0183;-0183;LATIN SMALL LETTER B WITH TOPBAR;Ll;0;L;;;;;N;LATIN SMALL LETTER B TOPBAR;;0182;;0182-0184;LATIN CAPITAL LETTER TONE SIX;Lu;0;L;;;;;N;;;;0185;-0185;LATIN SMALL LETTER TONE SIX;Ll;0;L;;;;;N;;;0184;;0184-0186;LATIN CAPITAL LETTER OPEN O;Lu;0;L;;;;;N;;;;0254;-0187;LATIN CAPITAL LETTER C WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER C HOOK;;;0188;-0188;LATIN SMALL LETTER C WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER C HOOK;;0187;;0187-0189;LATIN CAPITAL LETTER AFRICAN D;Lu;0;L;;;;;N;;;;0256;-018A;LATIN CAPITAL LETTER D WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER D HOOK;;;0257;-018B;LATIN CAPITAL LETTER D WITH TOPBAR;Lu;0;L;;;;;N;LATIN CAPITAL LETTER D TOPBAR;;;018C;-018C;LATIN SMALL LETTER D WITH TOPBAR;Ll;0;L;;;;;N;LATIN SMALL LETTER D TOPBAR;;018B;;018B-018D;LATIN SMALL LETTER TURNED DELTA;Ll;0;L;;;;;N;;;;;-018E;LATIN CAPITAL LETTER REVERSED E;Lu;0;L;;;;;N;LATIN CAPITAL LETTER TURNED E;;;01DD;-018F;LATIN CAPITAL LETTER SCHWA;Lu;0;L;;;;;N;;;;0259;-0190;LATIN CAPITAL LETTER OPEN E;Lu;0;L;;;;;N;LATIN CAPITAL LETTER EPSILON;;;025B;-0191;LATIN CAPITAL LETTER F WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER F HOOK;;;0192;-0192;LATIN SMALL LETTER F WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER SCRIPT F;;0191;;0191-0193;LATIN CAPITAL LETTER G WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER G HOOK;;;0260;-0194;LATIN CAPITAL LETTER GAMMA;Lu;0;L;;;;;N;;;;0263;-0195;LATIN SMALL LETTER HV;Ll;0;L;;;;;N;LATIN SMALL LETTER H V;;01F6;;01F6-0196;LATIN CAPITAL LETTER IOTA;Lu;0;L;;;;;N;;;;0269;-0197;LATIN CAPITAL LETTER I WITH STROKE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER BARRED I;;;0268;-0198;LATIN CAPITAL LETTER K WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER K HOOK;;;0199;-0199;LATIN SMALL LETTER K WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER K HOOK;;0198;;0198-019A;LATIN SMALL LETTER L WITH BAR;Ll;0;L;;;;;N;LATIN SMALL LETTER BARRED L;;023D;;023D-019B;LATIN SMALL LETTER LAMBDA WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER BARRED LAMBDA;;;;-019C;LATIN CAPITAL LETTER TURNED M;Lu;0;L;;;;;N;;;;026F;-019D;LATIN CAPITAL LETTER N WITH LEFT HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER N HOOK;;;0272;-019E;LATIN SMALL LETTER N WITH LONG RIGHT LEG;Ll;0;L;;;;;N;;;0220;;0220-019F;LATIN CAPITAL LETTER O WITH MIDDLE TILDE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER BARRED O;;;0275;-01A0;LATIN CAPITAL LETTER O WITH HORN;Lu;0;L;004F 031B;;;;N;LATIN CAPITAL LETTER O HORN;;;01A1;-01A1;LATIN SMALL LETTER O WITH HORN;Ll;0;L;006F 031B;;;;N;LATIN SMALL LETTER O HORN;;01A0;;01A0-01A2;LATIN CAPITAL LETTER OI;Lu;0;L;;;;;N;LATIN CAPITAL LETTER O I;;;01A3;-01A3;LATIN SMALL LETTER OI;Ll;0;L;;;;;N;LATIN SMALL LETTER O I;;01A2;;01A2-01A4;LATIN CAPITAL LETTER P WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER P HOOK;;;01A5;-01A5;LATIN SMALL LETTER P WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER P HOOK;;01A4;;01A4-01A6;LATIN LETTER YR;Lu;0;L;;;;;N;LATIN LETTER Y R;;;0280;-01A7;LATIN CAPITAL LETTER TONE TWO;Lu;0;L;;;;;N;;;;01A8;-01A8;LATIN SMALL LETTER TONE TWO;Ll;0;L;;;;;N;;;01A7;;01A7-01A9;LATIN CAPITAL LETTER ESH;Lu;0;L;;;;;N;;;;0283;-01AA;LATIN LETTER REVERSED ESH LOOP;Ll;0;L;;;;;N;;;;;-01AB;LATIN SMALL LETTER T WITH PALATAL HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER T PALATAL HOOK;;;;-01AC;LATIN CAPITAL LETTER T WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER T HOOK;;;01AD;-01AD;LATIN SMALL LETTER T WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER T HOOK;;01AC;;01AC-01AE;LATIN CAPITAL LETTER T WITH RETROFLEX HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER T RETROFLEX HOOK;;;0288;-01AF;LATIN CAPITAL LETTER U WITH HORN;Lu;0;L;0055 031B;;;;N;LATIN CAPITAL LETTER U HORN;;;01B0;-01B0;LATIN SMALL LETTER U WITH HORN;Ll;0;L;0075 031B;;;;N;LATIN SMALL LETTER U HORN;;01AF;;01AF-01B1;LATIN CAPITAL LETTER UPSILON;Lu;0;L;;;;;N;;;;028A;-01B2;LATIN CAPITAL LETTER V WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER SCRIPT V;;;028B;-01B3;LATIN CAPITAL LETTER Y WITH HOOK;Lu;0;L;;;;;N;LATIN CAPITAL LETTER Y HOOK;;;01B4;-01B4;LATIN SMALL LETTER Y WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER Y HOOK;;01B3;;01B3-01B5;LATIN CAPITAL LETTER Z WITH STROKE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER Z BAR;;;01B6;-01B6;LATIN SMALL LETTER Z WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER Z BAR;;01B5;;01B5-01B7;LATIN CAPITAL LETTER EZH;Lu;0;L;;;;;N;LATIN CAPITAL LETTER YOGH;;;0292;-01B8;LATIN CAPITAL LETTER EZH REVERSED;Lu;0;L;;;;;N;LATIN CAPITAL LETTER REVERSED YOGH;;;01B9;-01B9;LATIN SMALL LETTER EZH REVERSED;Ll;0;L;;;;;N;LATIN SMALL LETTER REVERSED YOGH;;01B8;;01B8-01BA;LATIN SMALL LETTER EZH WITH TAIL;Ll;0;L;;;;;N;LATIN SMALL LETTER YOGH WITH TAIL;;;;-01BB;LATIN LETTER TWO WITH STROKE;Lo;0;L;;;;;N;LATIN LETTER TWO BAR;;;;-01BC;LATIN CAPITAL LETTER TONE FIVE;Lu;0;L;;;;;N;;;;01BD;-01BD;LATIN SMALL LETTER TONE FIVE;Ll;0;L;;;;;N;;;01BC;;01BC-01BE;LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE;Ll;0;L;;;;;N;LATIN LETTER INVERTED GLOTTAL STOP BAR;;;;-01BF;LATIN LETTER WYNN;Ll;0;L;;;;;N;;;01F7;;01F7-01C0;LATIN LETTER DENTAL CLICK;Lo;0;L;;;;;N;LATIN LETTER PIPE;;;;-01C1;LATIN LETTER LATERAL CLICK;Lo;0;L;;;;;N;LATIN LETTER DOUBLE PIPE;;;;-01C2;LATIN LETTER ALVEOLAR CLICK;Lo;0;L;;;;;N;LATIN LETTER PIPE DOUBLE BAR;;;;-01C3;LATIN LETTER RETROFLEX CLICK;Lo;0;L;;;;;N;LATIN LETTER EXCLAMATION MARK;;;;-01C4;LATIN CAPITAL LETTER DZ WITH CARON;Lu;0;L;<compat> 0044 017D;;;;N;LATIN CAPITAL LETTER D Z HACEK;;;01C6;01C5-01C5;LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON;Lt;0;L;<compat> 0044 017E;;;;N;LATIN LETTER CAPITAL D SMALL Z HACEK;;01C4;01C6;01C5-01C6;LATIN SMALL LETTER DZ WITH CARON;Ll;0;L;<compat> 0064 017E;;;;N;LATIN SMALL LETTER D Z HACEK;;01C4;;01C5-01C7;LATIN CAPITAL LETTER LJ;Lu;0;L;<compat> 004C 004A;;;;N;LATIN CAPITAL LETTER L J;;;01C9;01C8-01C8;LATIN CAPITAL LETTER L WITH SMALL LETTER J;Lt;0;L;<compat> 004C 006A;;;;N;LATIN LETTER CAPITAL L SMALL J;;01C7;01C9;01C8-01C9;LATIN SMALL LETTER LJ;Ll;0;L;<compat> 006C 006A;;;;N;LATIN SMALL LETTER L J;;01C7;;01C8-01CA;LATIN CAPITAL LETTER NJ;Lu;0;L;<compat> 004E 004A;;;;N;LATIN CAPITAL LETTER N J;;;01CC;01CB-01CB;LATIN CAPITAL LETTER N WITH SMALL LETTER J;Lt;0;L;<compat> 004E 006A;;;;N;LATIN LETTER CAPITAL N SMALL J;;01CA;01CC;01CB-01CC;LATIN SMALL LETTER NJ;Ll;0;L;<compat> 006E 006A;;;;N;LATIN SMALL LETTER N J;;01CA;;01CB-01CD;LATIN CAPITAL LETTER A WITH CARON;Lu;0;L;0041 030C;;;;N;LATIN CAPITAL LETTER A HACEK;;;01CE;-01CE;LATIN SMALL LETTER A WITH CARON;Ll;0;L;0061 030C;;;;N;LATIN SMALL LETTER A HACEK;;01CD;;01CD-01CF;LATIN CAPITAL LETTER I WITH CARON;Lu;0;L;0049 030C;;;;N;LATIN CAPITAL LETTER I HACEK;;;01D0;-01D0;LATIN SMALL LETTER I WITH CARON;Ll;0;L;0069 030C;;;;N;LATIN SMALL LETTER I HACEK;;01CF;;01CF-01D1;LATIN CAPITAL LETTER O WITH CARON;Lu;0;L;004F 030C;;;;N;LATIN CAPITAL LETTER O HACEK;;;01D2;-01D2;LATIN SMALL LETTER O WITH CARON;Ll;0;L;006F 030C;;;;N;LATIN SMALL LETTER O HACEK;;01D1;;01D1-01D3;LATIN CAPITAL LETTER U WITH CARON;Lu;0;L;0055 030C;;;;N;LATIN CAPITAL LETTER U HACEK;;;01D4;-01D4;LATIN SMALL LETTER U WITH CARON;Ll;0;L;0075 030C;;;;N;LATIN SMALL LETTER U HACEK;;01D3;;01D3-01D5;LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON;Lu;0;L;00DC 0304;;;;N;LATIN CAPITAL LETTER U DIAERESIS MACRON;;;01D6;-01D6;LATIN SMALL LETTER U WITH DIAERESIS AND MACRON;Ll;0;L;00FC 0304;;;;N;LATIN SMALL LETTER U DIAERESIS MACRON;;01D5;;01D5-01D7;LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE;Lu;0;L;00DC 0301;;;;N;LATIN CAPITAL LETTER U DIAERESIS ACUTE;;;01D8;-01D8;LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE;Ll;0;L;00FC 0301;;;;N;LATIN SMALL LETTER U DIAERESIS ACUTE;;01D7;;01D7-01D9;LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON;Lu;0;L;00DC 030C;;;;N;LATIN CAPITAL LETTER U DIAERESIS HACEK;;;01DA;-01DA;LATIN SMALL LETTER U WITH DIAERESIS AND CARON;Ll;0;L;00FC 030C;;;;N;LATIN SMALL LETTER U DIAERESIS HACEK;;01D9;;01D9-01DB;LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE;Lu;0;L;00DC 0300;;;;N;LATIN CAPITAL LETTER U DIAERESIS GRAVE;;;01DC;-01DC;LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE;Ll;0;L;00FC 0300;;;;N;LATIN SMALL LETTER U DIAERESIS GRAVE;;01DB;;01DB-01DD;LATIN SMALL LETTER TURNED E;Ll;0;L;;;;;N;;;018E;;018E-01DE;LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON;Lu;0;L;00C4 0304;;;;N;LATIN CAPITAL LETTER A DIAERESIS MACRON;;;01DF;-01DF;LATIN SMALL LETTER A WITH DIAERESIS AND MACRON;Ll;0;L;00E4 0304;;;;N;LATIN SMALL LETTER A DIAERESIS MACRON;;01DE;;01DE-01E0;LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON;Lu;0;L;0226 0304;;;;N;LATIN CAPITAL LETTER A DOT MACRON;;;01E1;-01E1;LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON;Ll;0;L;0227 0304;;;;N;LATIN SMALL LETTER A DOT MACRON;;01E0;;01E0-01E2;LATIN CAPITAL LETTER AE WITH MACRON;Lu;0;L;00C6 0304;;;;N;LATIN CAPITAL LETTER A E MACRON;;;01E3;-01E3;LATIN SMALL LETTER AE WITH MACRON;Ll;0;L;00E6 0304;;;;N;LATIN SMALL LETTER A E MACRON;;01E2;;01E2-01E4;LATIN CAPITAL LETTER G WITH STROKE;Lu;0;L;;;;;N;LATIN CAPITAL LETTER G BAR;;;01E5;-01E5;LATIN SMALL LETTER G WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER G BAR;;01E4;;01E4-01E6;LATIN CAPITAL LETTER G WITH CARON;Lu;0;L;0047 030C;;;;N;LATIN CAPITAL LETTER G HACEK;;;01E7;-01E7;LATIN SMALL LETTER G WITH CARON;Ll;0;L;0067 030C;;;;N;LATIN SMALL LETTER G HACEK;;01E6;;01E6-01E8;LATIN CAPITAL LETTER K WITH CARON;Lu;0;L;004B 030C;;;;N;LATIN CAPITAL LETTER K HACEK;;;01E9;-01E9;LATIN SMALL LETTER K WITH CARON;Ll;0;L;006B 030C;;;;N;LATIN SMALL LETTER K HACEK;;01E8;;01E8-01EA;LATIN CAPITAL LETTER O WITH OGONEK;Lu;0;L;004F 0328;;;;N;LATIN CAPITAL LETTER O OGONEK;;;01EB;-01EB;LATIN SMALL LETTER O WITH OGONEK;Ll;0;L;006F 0328;;;;N;LATIN SMALL LETTER O OGONEK;;01EA;;01EA-01EC;LATIN CAPITAL LETTER O WITH OGONEK AND MACRON;Lu;0;L;01EA 0304;;;;N;LATIN CAPITAL LETTER O OGONEK MACRON;;;01ED;-01ED;LATIN SMALL LETTER O WITH OGONEK AND MACRON;Ll;0;L;01EB 0304;;;;N;LATIN SMALL LETTER O OGONEK MACRON;;01EC;;01EC-01EE;LATIN CAPITAL LETTER EZH WITH CARON;Lu;0;L;01B7 030C;;;;N;LATIN CAPITAL LETTER YOGH HACEK;;;01EF;-01EF;LATIN SMALL LETTER EZH WITH CARON;Ll;0;L;0292 030C;;;;N;LATIN SMALL LETTER YOGH HACEK;;01EE;;01EE-01F0;LATIN SMALL LETTER J WITH CARON;Ll;0;L;006A 030C;;;;N;LATIN SMALL LETTER J HACEK;;;;-01F1;LATIN CAPITAL LETTER DZ;Lu;0;L;<compat> 0044 005A;;;;N;;;;01F3;01F2-01F2;LATIN CAPITAL LETTER D WITH SMALL LETTER Z;Lt;0;L;<compat> 0044 007A;;;;N;;;01F1;01F3;01F2-01F3;LATIN SMALL LETTER DZ;Ll;0;L;<compat> 0064 007A;;;;N;;;01F1;;01F2-01F4;LATIN CAPITAL LETTER G WITH ACUTE;Lu;0;L;0047 0301;;;;N;;;;01F5;-01F5;LATIN SMALL LETTER G WITH ACUTE;Ll;0;L;0067 0301;;;;N;;;01F4;;01F4-01F6;LATIN CAPITAL LETTER HWAIR;Lu;0;L;;;;;N;;;;0195;-01F7;LATIN CAPITAL LETTER WYNN;Lu;0;L;;;;;N;;;;01BF;-01F8;LATIN CAPITAL LETTER N WITH GRAVE;Lu;0;L;004E 0300;;;;N;;;;01F9;-01F9;LATIN SMALL LETTER N WITH GRAVE;Ll;0;L;006E 0300;;;;N;;;01F8;;01F8-01FA;LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE;Lu;0;L;00C5 0301;;;;N;;;;01FB;-01FB;LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE;Ll;0;L;00E5 0301;;;;N;;;01FA;;01FA-01FC;LATIN CAPITAL LETTER AE WITH ACUTE;Lu;0;L;00C6 0301;;;;N;;;;01FD;-01FD;LATIN SMALL LETTER AE WITH ACUTE;Ll;0;L;00E6 0301;;;;N;;;01FC;;01FC-01FE;LATIN CAPITAL LETTER O WITH STROKE AND ACUTE;Lu;0;L;00D8 0301;;;;N;;;;01FF;-01FF;LATIN SMALL LETTER O WITH STROKE AND ACUTE;Ll;0;L;00F8 0301;;;;N;;;01FE;;01FE-0200;LATIN CAPITAL LETTER A WITH DOUBLE GRAVE;Lu;0;L;0041 030F;;;;N;;;;0201;-0201;LATIN SMALL LETTER A WITH DOUBLE GRAVE;Ll;0;L;0061 030F;;;;N;;;0200;;0200-0202;LATIN CAPITAL LETTER A WITH INVERTED BREVE;Lu;0;L;0041 0311;;;;N;;;;0203;-0203;LATIN SMALL LETTER A WITH INVERTED BREVE;Ll;0;L;0061 0311;;;;N;;;0202;;0202-0204;LATIN CAPITAL LETTER E WITH DOUBLE GRAVE;Lu;0;L;0045 030F;;;;N;;;;0205;-0205;LATIN SMALL LETTER E WITH DOUBLE GRAVE;Ll;0;L;0065 030F;;;;N;;;0204;;0204-0206;LATIN CAPITAL LETTER E WITH INVERTED BREVE;Lu;0;L;0045 0311;;;;N;;;;0207;-0207;LATIN SMALL LETTER E WITH INVERTED BREVE;Ll;0;L;0065 0311;;;;N;;;0206;;0206-0208;LATIN CAPITAL LETTER I WITH DOUBLE GRAVE;Lu;0;L;0049 030F;;;;N;;;;0209;-0209;LATIN SMALL LETTER I WITH DOUBLE GRAVE;Ll;0;L;0069 030F;;;;N;;;0208;;0208-020A;LATIN CAPITAL LETTER I WITH INVERTED BREVE;Lu;0;L;0049 0311;;;;N;;;;020B;-020B;LATIN SMALL LETTER I WITH INVERTED BREVE;Ll;0;L;0069 0311;;;;N;;;020A;;020A-020C;LATIN CAPITAL LETTER O WITH DOUBLE GRAVE;Lu;0;L;004F 030F;;;;N;;;;020D;-020D;LATIN SMALL LETTER O WITH DOUBLE GRAVE;Ll;0;L;006F 030F;;;;N;;;020C;;020C-020E;LATIN CAPITAL LETTER O WITH INVERTED BREVE;Lu;0;L;004F 0311;;;;N;;;;020F;-020F;LATIN SMALL LETTER O WITH INVERTED BREVE;Ll;0;L;006F 0311;;;;N;;;020E;;020E-0210;LATIN CAPITAL LETTER R WITH DOUBLE GRAVE;Lu;0;L;0052 030F;;;;N;;;;0211;-0211;LATIN SMALL LETTER R WITH DOUBLE GRAVE;Ll;0;L;0072 030F;;;;N;;;0210;;0210-0212;LATIN CAPITAL LETTER R WITH INVERTED BREVE;Lu;0;L;0052 0311;;;;N;;;;0213;-0213;LATIN SMALL LETTER R WITH INVERTED BREVE;Ll;0;L;0072 0311;;;;N;;;0212;;0212-0214;LATIN CAPITAL LETTER U WITH DOUBLE GRAVE;Lu;0;L;0055 030F;;;;N;;;;0215;-0215;LATIN SMALL LETTER U WITH DOUBLE GRAVE;Ll;0;L;0075 030F;;;;N;;;0214;;0214-0216;LATIN CAPITAL LETTER U WITH INVERTED BREVE;Lu;0;L;0055 0311;;;;N;;;;0217;-0217;LATIN SMALL LETTER U WITH INVERTED BREVE;Ll;0;L;0075 0311;;;;N;;;0216;;0216-0218;LATIN CAPITAL LETTER S WITH COMMA BELOW;Lu;0;L;0053 0326;;;;N;;;;0219;-0219;LATIN SMALL LETTER S WITH COMMA BELOW;Ll;0;L;0073 0326;;;;N;;;0218;;0218-021A;LATIN CAPITAL LETTER T WITH COMMA BELOW;Lu;0;L;0054 0326;;;;N;;;;021B;-021B;LATIN SMALL LETTER T WITH COMMA BELOW;Ll;0;L;0074 0326;;;;N;;;021A;;021A-021C;LATIN CAPITAL LETTER YOGH;Lu;0;L;;;;;N;;;;021D;-021D;LATIN SMALL LETTER YOGH;Ll;0;L;;;;;N;;;021C;;021C-021E;LATIN CAPITAL LETTER H WITH CARON;Lu;0;L;0048 030C;;;;N;;;;021F;-021F;LATIN SMALL LETTER H WITH CARON;Ll;0;L;0068 030C;;;;N;;;021E;;021E-0220;LATIN CAPITAL LETTER N WITH LONG RIGHT LEG;Lu;0;L;;;;;N;;;;019E;-0221;LATIN SMALL LETTER D WITH CURL;Ll;0;L;;;;;N;;;;;-0222;LATIN CAPITAL LETTER OU;Lu;0;L;;;;;N;;;;0223;-0223;LATIN SMALL LETTER OU;Ll;0;L;;;;;N;;;0222;;0222-0224;LATIN CAPITAL LETTER Z WITH HOOK;Lu;0;L;;;;;N;;;;0225;-0225;LATIN SMALL LETTER Z WITH HOOK;Ll;0;L;;;;;N;;;0224;;0224-0226;LATIN CAPITAL LETTER A WITH DOT ABOVE;Lu;0;L;0041 0307;;;;N;;;;0227;-0227;LATIN SMALL LETTER A WITH DOT ABOVE;Ll;0;L;0061 0307;;;;N;;;0226;;0226-0228;LATIN CAPITAL LETTER E WITH CEDILLA;Lu;0;L;0045 0327;;;;N;;;;0229;-0229;LATIN SMALL LETTER E WITH CEDILLA;Ll;0;L;0065 0327;;;;N;;;0228;;0228-022A;LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON;Lu;0;L;00D6 0304;;;;N;;;;022B;-022B;LATIN SMALL LETTER O WITH DIAERESIS AND MACRON;Ll;0;L;00F6 0304;;;;N;;;022A;;022A-022C;LATIN CAPITAL LETTER O WITH TILDE AND MACRON;Lu;0;L;00D5 0304;;;;N;;;;022D;-022D;LATIN SMALL LETTER O WITH TILDE AND MACRON;Ll;0;L;00F5 0304;;;;N;;;022C;;022C-022E;LATIN CAPITAL LETTER O WITH DOT ABOVE;Lu;0;L;004F 0307;;;;N;;;;022F;-022F;LATIN SMALL LETTER O WITH DOT ABOVE;Ll;0;L;006F 0307;;;;N;;;022E;;022E-0230;LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON;Lu;0;L;022E 0304;;;;N;;;;0231;-0231;LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON;Ll;0;L;022F 0304;;;;N;;;0230;;0230-0232;LATIN CAPITAL LETTER Y WITH MACRON;Lu;0;L;0059 0304;;;;N;;;;0233;-0233;LATIN SMALL LETTER Y WITH MACRON;Ll;0;L;0079 0304;;;;N;;;0232;;0232-0234;LATIN SMALL LETTER L WITH CURL;Ll;0;L;;;;;N;;;;;-0235;LATIN SMALL LETTER N WITH CURL;Ll;0;L;;;;;N;;;;;-0236;LATIN SMALL LETTER T WITH CURL;Ll;0;L;;;;;N;;;;;-0237;LATIN SMALL LETTER DOTLESS J;Ll;0;L;;;;;N;;;;;-0238;LATIN SMALL LETTER DB DIGRAPH;Ll;0;L;;;;;N;;;;;-0239;LATIN SMALL LETTER QP DIGRAPH;Ll;0;L;;;;;N;;;;;-023A;LATIN CAPITAL LETTER A WITH STROKE;Lu;0;L;;;;;N;;;;2C65;-023B;LATIN CAPITAL LETTER C WITH STROKE;Lu;0;L;;;;;N;;;;023C;-023C;LATIN SMALL LETTER C WITH STROKE;Ll;0;L;;;;;N;;;023B;;023B-023D;LATIN CAPITAL LETTER L WITH BAR;Lu;0;L;;;;;N;;;;019A;-023E;LATIN CAPITAL LETTER T WITH DIAGONAL STROKE;Lu;0;L;;;;;N;;;;2C66;-023F;LATIN SMALL LETTER S WITH SWASH TAIL;Ll;0;L;;;;;N;;;2C7E;;2C7E-0240;LATIN SMALL LETTER Z WITH SWASH TAIL;Ll;0;L;;;;;N;;;2C7F;;2C7F-0241;LATIN CAPITAL LETTER GLOTTAL STOP;Lu;0;L;;;;;N;;;;0242;-0242;LATIN SMALL LETTER GLOTTAL STOP;Ll;0;L;;;;;N;;;0241;;0241-0243;LATIN CAPITAL LETTER B WITH STROKE;Lu;0;L;;;;;N;;;;0180;-0244;LATIN CAPITAL LETTER U BAR;Lu;0;L;;;;;N;;;;0289;-0245;LATIN CAPITAL LETTER TURNED V;Lu;0;L;;;;;N;;;;028C;-0246;LATIN CAPITAL LETTER E WITH STROKE;Lu;0;L;;;;;N;;;;0247;-0247;LATIN SMALL LETTER E WITH STROKE;Ll;0;L;;;;;N;;;0246;;0246-0248;LATIN CAPITAL LETTER J WITH STROKE;Lu;0;L;;;;;N;;;;0249;-0249;LATIN SMALL LETTER J WITH STROKE;Ll;0;L;;;;;N;;;0248;;0248-024A;LATIN CAPITAL LETTER SMALL Q WITH HOOK TAIL;Lu;0;L;;;;;N;;;;024B;-024B;LATIN SMALL LETTER Q WITH HOOK TAIL;Ll;0;L;;;;;N;;;024A;;024A-024C;LATIN CAPITAL LETTER R WITH STROKE;Lu;0;L;;;;;N;;;;024D;-024D;LATIN SMALL LETTER R WITH STROKE;Ll;0;L;;;;;N;;;024C;;024C-024E;LATIN CAPITAL LETTER Y WITH STROKE;Lu;0;L;;;;;N;;;;024F;-024F;LATIN SMALL LETTER Y WITH STROKE;Ll;0;L;;;;;N;;;024E;;024E-0250;LATIN SMALL LETTER TURNED A;Ll;0;L;;;;;N;;;2C6F;;2C6F-0251;LATIN SMALL LETTER ALPHA;Ll;0;L;;;;;N;LATIN SMALL LETTER SCRIPT A;;2C6D;;2C6D-0252;LATIN SMALL LETTER TURNED ALPHA;Ll;0;L;;;;;N;LATIN SMALL LETTER TURNED SCRIPT A;;2C70;;2C70-0253;LATIN SMALL LETTER B WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER B HOOK;;0181;;0181-0254;LATIN SMALL LETTER OPEN O;Ll;0;L;;;;;N;;;0186;;0186-0255;LATIN SMALL LETTER C WITH CURL;Ll;0;L;;;;;N;LATIN SMALL LETTER C CURL;;;;-0256;LATIN SMALL LETTER D WITH TAIL;Ll;0;L;;;;;N;LATIN SMALL LETTER D RETROFLEX HOOK;;0189;;0189-0257;LATIN SMALL LETTER D WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER D HOOK;;018A;;018A-0258;LATIN SMALL LETTER REVERSED E;Ll;0;L;;;;;N;;;;;-0259;LATIN SMALL LETTER SCHWA;Ll;0;L;;;;;N;;;018F;;018F-025A;LATIN SMALL LETTER SCHWA WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER SCHWA HOOK;;;;-025B;LATIN SMALL LETTER OPEN E;Ll;0;L;;;;;N;LATIN SMALL LETTER EPSILON;;0190;;0190-025C;LATIN SMALL LETTER REVERSED OPEN E;Ll;0;L;;;;;N;LATIN SMALL LETTER REVERSED EPSILON;;A7AB;;A7AB-025D;LATIN SMALL LETTER REVERSED OPEN E WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER REVERSED EPSILON HOOK;;;;-025E;LATIN SMALL LETTER CLOSED REVERSED OPEN E;Ll;0;L;;;;;N;LATIN SMALL LETTER CLOSED REVERSED EPSILON;;;;-025F;LATIN SMALL LETTER DOTLESS J WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER DOTLESS J BAR;;;;-0260;LATIN SMALL LETTER G WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER G HOOK;;0193;;0193-0261;LATIN SMALL LETTER SCRIPT G;Ll;0;L;;;;;N;;;A7AC;;A7AC-0262;LATIN LETTER SMALL CAPITAL G;Ll;0;L;;;;;N;;;;;-0263;LATIN SMALL LETTER GAMMA;Ll;0;L;;;;;N;;;0194;;0194-0264;LATIN SMALL LETTER RAMS HORN;Ll;0;L;;;;;N;LATIN SMALL LETTER BABY GAMMA;;;;-0265;LATIN SMALL LETTER TURNED H;Ll;0;L;;;;;N;;;A78D;;A78D-0266;LATIN SMALL LETTER H WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER H HOOK;;A7AA;;A7AA-0267;LATIN SMALL LETTER HENG WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER HENG HOOK;;;;-0268;LATIN SMALL LETTER I WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER BARRED I;;0197;;0197-0269;LATIN SMALL LETTER IOTA;Ll;0;L;;;;;N;;;0196;;0196-026A;LATIN LETTER SMALL CAPITAL I;Ll;0;L;;;;;N;;;;;-026B;LATIN SMALL LETTER L WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;2C62;;2C62-026C;LATIN SMALL LETTER L WITH BELT;Ll;0;L;;;;;N;LATIN SMALL LETTER L BELT;;A7AD;;A7AD-026D;LATIN SMALL LETTER L WITH RETROFLEX HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER L RETROFLEX HOOK;;;;-026E;LATIN SMALL LETTER LEZH;Ll;0;L;;;;;N;LATIN SMALL LETTER L YOGH;;;;-026F;LATIN SMALL LETTER TURNED M;Ll;0;L;;;;;N;;;019C;;019C-0270;LATIN SMALL LETTER TURNED M WITH LONG LEG;Ll;0;L;;;;;N;;;;;-0271;LATIN SMALL LETTER M WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER M HOOK;;2C6E;;2C6E-0272;LATIN SMALL LETTER N WITH LEFT HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER N HOOK;;019D;;019D-0273;LATIN SMALL LETTER N WITH RETROFLEX HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER N RETROFLEX HOOK;;;;-0274;LATIN LETTER SMALL CAPITAL N;Ll;0;L;;;;;N;;;;;-0275;LATIN SMALL LETTER BARRED O;Ll;0;L;;;;;N;;;019F;;019F-0276;LATIN LETTER SMALL CAPITAL OE;Ll;0;L;;;;;N;LATIN LETTER SMALL CAPITAL O E;;;;-0277;LATIN SMALL LETTER CLOSED OMEGA;Ll;0;L;;;;;N;;;;;-0278;LATIN SMALL LETTER PHI;Ll;0;L;;;;;N;;;;;-0279;LATIN SMALL LETTER TURNED R;Ll;0;L;;;;;N;;;;;-027A;LATIN SMALL LETTER TURNED R WITH LONG LEG;Ll;0;L;;;;;N;;;;;-027B;LATIN SMALL LETTER TURNED R WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER TURNED R HOOK;;;;-027C;LATIN SMALL LETTER R WITH LONG LEG;Ll;0;L;;;;;N;;;;;-027D;LATIN SMALL LETTER R WITH TAIL;Ll;0;L;;;;;N;LATIN SMALL LETTER R HOOK;;2C64;;2C64-027E;LATIN SMALL LETTER R WITH FISHHOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER FISHHOOK R;;;;-027F;LATIN SMALL LETTER REVERSED R WITH FISHHOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER REVERSED FISHHOOK R;;;;-0280;LATIN LETTER SMALL CAPITAL R;Ll;0;L;;;;;N;;;01A6;;01A6-0281;LATIN LETTER SMALL CAPITAL INVERTED R;Ll;0;L;;;;;N;;;;;-0282;LATIN SMALL LETTER S WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER S HOOK;;;;-0283;LATIN SMALL LETTER ESH;Ll;0;L;;;;;N;;;01A9;;01A9-0284;LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER DOTLESS J BAR HOOK;;;;-0285;LATIN SMALL LETTER SQUAT REVERSED ESH;Ll;0;L;;;;;N;;;;;-0286;LATIN SMALL LETTER ESH WITH CURL;Ll;0;L;;;;;N;LATIN SMALL LETTER ESH CURL;;;;-0287;LATIN SMALL LETTER TURNED T;Ll;0;L;;;;;N;;;A7B1;;A7B1-0288;LATIN SMALL LETTER T WITH RETROFLEX HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER T RETROFLEX HOOK;;01AE;;01AE-0289;LATIN SMALL LETTER U BAR;Ll;0;L;;;;;N;;;0244;;0244-028A;LATIN SMALL LETTER UPSILON;Ll;0;L;;;;;N;;;01B1;;01B1-028B;LATIN SMALL LETTER V WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER SCRIPT V;;01B2;;01B2-028C;LATIN SMALL LETTER TURNED V;Ll;0;L;;;;;N;;;0245;;0245-028D;LATIN SMALL LETTER TURNED W;Ll;0;L;;;;;N;;;;;-028E;LATIN SMALL LETTER TURNED Y;Ll;0;L;;;;;N;;;;;-028F;LATIN LETTER SMALL CAPITAL Y;Ll;0;L;;;;;N;;;;;-0290;LATIN SMALL LETTER Z WITH RETROFLEX HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER Z RETROFLEX HOOK;;;;-0291;LATIN SMALL LETTER Z WITH CURL;Ll;0;L;;;;;N;LATIN SMALL LETTER Z CURL;;;;-0292;LATIN SMALL LETTER EZH;Ll;0;L;;;;;N;LATIN SMALL LETTER YOGH;;01B7;;01B7-0293;LATIN SMALL LETTER EZH WITH CURL;Ll;0;L;;;;;N;LATIN SMALL LETTER YOGH CURL;;;;-0294;LATIN LETTER GLOTTAL STOP;Lo;0;L;;;;;N;;;;;-0295;LATIN LETTER PHARYNGEAL VOICED FRICATIVE;Ll;0;L;;;;;N;LATIN LETTER REVERSED GLOTTAL STOP;;;;-0296;LATIN LETTER INVERTED GLOTTAL STOP;Ll;0;L;;;;;N;;;;;-0297;LATIN LETTER STRETCHED C;Ll;0;L;;;;;N;;;;;-0298;LATIN LETTER BILABIAL CLICK;Ll;0;L;;;;;N;LATIN LETTER BULLSEYE;;;;-0299;LATIN LETTER SMALL CAPITAL B;Ll;0;L;;;;;N;;;;;-029A;LATIN SMALL LETTER CLOSED OPEN E;Ll;0;L;;;;;N;LATIN SMALL LETTER CLOSED EPSILON;;;;-029B;LATIN LETTER SMALL CAPITAL G WITH HOOK;Ll;0;L;;;;;N;LATIN LETTER SMALL CAPITAL G HOOK;;;;-029C;LATIN LETTER SMALL CAPITAL H;Ll;0;L;;;;;N;;;;;-029D;LATIN SMALL LETTER J WITH CROSSED-TAIL;Ll;0;L;;;;;N;LATIN SMALL LETTER CROSSED-TAIL J;;;;-029E;LATIN SMALL LETTER TURNED K;Ll;0;L;;;;;N;;;A7B0;;A7B0-029F;LATIN LETTER SMALL CAPITAL L;Ll;0;L;;;;;N;;;;;-02A0;LATIN SMALL LETTER Q WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER Q HOOK;;;;-02A1;LATIN LETTER GLOTTAL STOP WITH STROKE;Ll;0;L;;;;;N;LATIN LETTER GLOTTAL STOP BAR;;;;-02A2;LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE;Ll;0;L;;;;;N;LATIN LETTER REVERSED GLOTTAL STOP BAR;;;;-02A3;LATIN SMALL LETTER DZ DIGRAPH;Ll;0;L;;;;;N;LATIN SMALL LETTER D Z;;;;-02A4;LATIN SMALL LETTER DEZH DIGRAPH;Ll;0;L;;;;;N;LATIN SMALL LETTER D YOGH;;;;-02A5;LATIN SMALL LETTER DZ DIGRAPH WITH CURL;Ll;0;L;;;;;N;LATIN SMALL LETTER D Z CURL;;;;-02A6;LATIN SMALL LETTER TS DIGRAPH;Ll;0;L;;;;;N;LATIN SMALL LETTER T S;;;;-02A7;LATIN SMALL LETTER TESH DIGRAPH;Ll;0;L;;;;;N;LATIN SMALL LETTER T ESH;;;;-02A8;LATIN SMALL LETTER TC DIGRAPH WITH CURL;Ll;0;L;;;;;N;LATIN SMALL LETTER T C CURL;;;;-02A9;LATIN SMALL LETTER FENG DIGRAPH;Ll;0;L;;;;;N;;;;;-02AA;LATIN SMALL LETTER LS DIGRAPH;Ll;0;L;;;;;N;;;;;-02AB;LATIN SMALL LETTER LZ DIGRAPH;Ll;0;L;;;;;N;;;;;-02AC;LATIN LETTER BILABIAL PERCUSSIVE;Ll;0;L;;;;;N;;;;;-02AD;LATIN LETTER BIDENTAL PERCUSSIVE;Ll;0;L;;;;;N;;;;;-02AE;LATIN SMALL LETTER TURNED H WITH FISHHOOK;Ll;0;L;;;;;N;;;;;-02AF;LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL;Ll;0;L;;;;;N;;;;;-02B0;MODIFIER LETTER SMALL H;Lm;0;L;<super> 0068;;;;N;;;;;-02B1;MODIFIER LETTER SMALL H WITH HOOK;Lm;0;L;<super> 0266;;;;N;MODIFIER LETTER SMALL H HOOK;;;;-02B2;MODIFIER LETTER SMALL J;Lm;0;L;<super> 006A;;;;N;;;;;-02B3;MODIFIER LETTER SMALL R;Lm;0;L;<super> 0072;;;;N;;;;;-02B4;MODIFIER LETTER SMALL TURNED R;Lm;0;L;<super> 0279;;;;N;;;;;-02B5;MODIFIER LETTER SMALL TURNED R WITH HOOK;Lm;0;L;<super> 027B;;;;N;MODIFIER LETTER SMALL TURNED R HOOK;;;;-02B6;MODIFIER LETTER SMALL CAPITAL INVERTED R;Lm;0;L;<super> 0281;;;;N;;;;;-02B7;MODIFIER LETTER SMALL W;Lm;0;L;<super> 0077;;;;N;;;;;-02B8;MODIFIER LETTER SMALL Y;Lm;0;L;<super> 0079;;;;N;;;;;-02B9;MODIFIER LETTER PRIME;Lm;0;ON;;;;;N;;;;;-02BA;MODIFIER LETTER DOUBLE PRIME;Lm;0;ON;;;;;N;;;;;-02BB;MODIFIER LETTER TURNED COMMA;Lm;0;L;;;;;N;;;;;-02BC;MODIFIER LETTER APOSTROPHE;Lm;0;L;;;;;N;;;;;-02BD;MODIFIER LETTER REVERSED COMMA;Lm;0;L;;;;;N;;;;;-02BE;MODIFIER LETTER RIGHT HALF RING;Lm;0;L;;;;;N;;;;;-02BF;MODIFIER LETTER LEFT HALF RING;Lm;0;L;;;;;N;;;;;-02C0;MODIFIER LETTER GLOTTAL STOP;Lm;0;L;;;;;N;;;;;-02C1;MODIFIER LETTER REVERSED GLOTTAL STOP;Lm;0;L;;;;;N;;;;;-02C2;MODIFIER LETTER LEFT ARROWHEAD;Sk;0;ON;;;;;N;;;;;-02C3;MODIFIER LETTER RIGHT ARROWHEAD;Sk;0;ON;;;;;N;;;;;-02C4;MODIFIER LETTER UP ARROWHEAD;Sk;0;ON;;;;;N;;;;;-02C5;MODIFIER LETTER DOWN ARROWHEAD;Sk;0;ON;;;;;N;;;;;-02C6;MODIFIER LETTER CIRCUMFLEX ACCENT;Lm;0;ON;;;;;N;MODIFIER LETTER CIRCUMFLEX;;;;-02C7;CARON;Lm;0;ON;;;;;N;MODIFIER LETTER HACEK;;;;-02C8;MODIFIER LETTER VERTICAL LINE;Lm;0;ON;;;;;N;;;;;-02C9;MODIFIER LETTER MACRON;Lm;0;ON;;;;;N;;;;;-02CA;MODIFIER LETTER ACUTE ACCENT;Lm;0;ON;;;;;N;MODIFIER LETTER ACUTE;;;;-02CB;MODIFIER LETTER GRAVE ACCENT;Lm;0;ON;;;;;N;MODIFIER LETTER GRAVE;;;;-02CC;MODIFIER LETTER LOW VERTICAL LINE;Lm;0;ON;;;;;N;;;;;-02CD;MODIFIER LETTER LOW MACRON;Lm;0;ON;;;;;N;;;;;-02CE;MODIFIER LETTER LOW GRAVE ACCENT;Lm;0;ON;;;;;N;MODIFIER LETTER LOW GRAVE;;;;-02CF;MODIFIER LETTER LOW ACUTE ACCENT;Lm;0;ON;;;;;N;MODIFIER LETTER LOW ACUTE;;;;-02D0;MODIFIER LETTER TRIANGULAR COLON;Lm;0;L;;;;;N;;;;;-02D1;MODIFIER LETTER HALF TRIANGULAR COLON;Lm;0;L;;;;;N;;;;;-02D2;MODIFIER LETTER CENTRED RIGHT HALF RING;Sk;0;ON;;;;;N;MODIFIER LETTER CENTERED RIGHT HALF RING;;;;-02D3;MODIFIER LETTER CENTRED LEFT HALF RING;Sk;0;ON;;;;;N;MODIFIER LETTER CENTERED LEFT HALF RING;;;;-02D4;MODIFIER LETTER UP TACK;Sk;0;ON;;;;;N;;;;;-02D5;MODIFIER LETTER DOWN TACK;Sk;0;ON;;;;;N;;;;;-02D6;MODIFIER LETTER PLUS SIGN;Sk;0;ON;;;;;N;;;;;-02D7;MODIFIER LETTER MINUS SIGN;Sk;0;ON;;;;;N;;;;;-02D8;BREVE;Sk;0;ON;<compat> 0020 0306;;;;N;SPACING BREVE;;;;-02D9;DOT ABOVE;Sk;0;ON;<compat> 0020 0307;;;;N;SPACING DOT ABOVE;;;;-02DA;RING ABOVE;Sk;0;ON;<compat> 0020 030A;;;;N;SPACING RING ABOVE;;;;-02DB;OGONEK;Sk;0;ON;<compat> 0020 0328;;;;N;SPACING OGONEK;;;;-02DC;SMALL TILDE;Sk;0;ON;<compat> 0020 0303;;;;N;SPACING TILDE;;;;-02DD;DOUBLE ACUTE ACCENT;Sk;0;ON;<compat> 0020 030B;;;;N;SPACING DOUBLE ACUTE;;;;-02DE;MODIFIER LETTER RHOTIC HOOK;Sk;0;ON;;;;;N;;;;;-02DF;MODIFIER LETTER CROSS ACCENT;Sk;0;ON;;;;;N;;;;;-02E0;MODIFIER LETTER SMALL GAMMA;Lm;0;L;<super> 0263;;;;N;;;;;-02E1;MODIFIER LETTER SMALL L;Lm;0;L;<super> 006C;;;;N;;;;;-02E2;MODIFIER LETTER SMALL S;Lm;0;L;<super> 0073;;;;N;;;;;-02E3;MODIFIER LETTER SMALL X;Lm;0;L;<super> 0078;;;;N;;;;;-02E4;MODIFIER LETTER SMALL REVERSED GLOTTAL STOP;Lm;0;L;<super> 0295;;;;N;;;;;-02E5;MODIFIER LETTER EXTRA-HIGH TONE BAR;Sk;0;ON;;;;;N;;;;;-02E6;MODIFIER LETTER HIGH TONE BAR;Sk;0;ON;;;;;N;;;;;-02E7;MODIFIER LETTER MID TONE BAR;Sk;0;ON;;;;;N;;;;;-02E8;MODIFIER LETTER LOW TONE BAR;Sk;0;ON;;;;;N;;;;;-02E9;MODIFIER LETTER EXTRA-LOW TONE BAR;Sk;0;ON;;;;;N;;;;;-02EA;MODIFIER LETTER YIN DEPARTING TONE MARK;Sk;0;ON;;;;;N;;;;;-02EB;MODIFIER LETTER YANG DEPARTING TONE MARK;Sk;0;ON;;;;;N;;;;;-02EC;MODIFIER LETTER VOICING;Lm;0;ON;;;;;N;;;;;-02ED;MODIFIER LETTER UNASPIRATED;Sk;0;ON;;;;;N;;;;;-02EE;MODIFIER LETTER DOUBLE APOSTROPHE;Lm;0;L;;;;;N;;;;;-02EF;MODIFIER LETTER LOW DOWN ARROWHEAD;Sk;0;ON;;;;;N;;;;;-02F0;MODIFIER LETTER LOW UP ARROWHEAD;Sk;0;ON;;;;;N;;;;;-02F1;MODIFIER LETTER LOW LEFT ARROWHEAD;Sk;0;ON;;;;;N;;;;;-02F2;MODIFIER LETTER LOW RIGHT ARROWHEAD;Sk;0;ON;;;;;N;;;;;-02F3;MODIFIER LETTER LOW RING;Sk;0;ON;;;;;N;;;;;-02F4;MODIFIER LETTER MIDDLE GRAVE ACCENT;Sk;0;ON;;;;;N;;;;;-02F5;MODIFIER LETTER MIDDLE DOUBLE GRAVE ACCENT;Sk;0;ON;;;;;N;;;;;-02F6;MODIFIER LETTER MIDDLE DOUBLE ACUTE ACCENT;Sk;0;ON;;;;;N;;;;;-02F7;MODIFIER LETTER LOW TILDE;Sk;0;ON;;;;;N;;;;;-02F8;MODIFIER LETTER RAISED COLON;Sk;0;ON;;;;;N;;;;;-02F9;MODIFIER LETTER BEGIN HIGH TONE;Sk;0;ON;;;;;N;;;;;-02FA;MODIFIER LETTER END HIGH TONE;Sk;0;ON;;;;;N;;;;;-02FB;MODIFIER LETTER BEGIN LOW TONE;Sk;0;ON;;;;;N;;;;;-02FC;MODIFIER LETTER END LOW TONE;Sk;0;ON;;;;;N;;;;;-02FD;MODIFIER LETTER SHELF;Sk;0;ON;;;;;N;;;;;-02FE;MODIFIER LETTER OPEN SHELF;Sk;0;ON;;;;;N;;;;;-02FF;MODIFIER LETTER LOW LEFT ARROW;Sk;0;ON;;;;;N;;;;;-0300;COMBINING GRAVE ACCENT;Mn;230;NSM;;;;;N;NON-SPACING GRAVE;;;;-0301;COMBINING ACUTE ACCENT;Mn;230;NSM;;;;;N;NON-SPACING ACUTE;;;;-0302;COMBINING CIRCUMFLEX ACCENT;Mn;230;NSM;;;;;N;NON-SPACING CIRCUMFLEX;;;;-0303;COMBINING TILDE;Mn;230;NSM;;;;;N;NON-SPACING TILDE;;;;-0304;COMBINING MACRON;Mn;230;NSM;;;;;N;NON-SPACING MACRON;;;;-0305;COMBINING OVERLINE;Mn;230;NSM;;;;;N;NON-SPACING OVERSCORE;;;;-0306;COMBINING BREVE;Mn;230;NSM;;;;;N;NON-SPACING BREVE;;;;-0307;COMBINING DOT ABOVE;Mn;230;NSM;;;;;N;NON-SPACING DOT ABOVE;;;;-0308;COMBINING DIAERESIS;Mn;230;NSM;;;;;N;NON-SPACING DIAERESIS;;;;-0309;COMBINING HOOK ABOVE;Mn;230;NSM;;;;;N;NON-SPACING HOOK ABOVE;;;;-030A;COMBINING RING ABOVE;Mn;230;NSM;;;;;N;NON-SPACING RING ABOVE;;;;-030B;COMBINING DOUBLE ACUTE ACCENT;Mn;230;NSM;;;;;N;NON-SPACING DOUBLE ACUTE;;;;-030C;COMBINING CARON;Mn;230;NSM;;;;;N;NON-SPACING HACEK;;;;-030D;COMBINING VERTICAL LINE ABOVE;Mn;230;NSM;;;;;N;NON-SPACING VERTICAL LINE ABOVE;;;;-030E;COMBINING DOUBLE VERTICAL LINE ABOVE;Mn;230;NSM;;;;;N;NON-SPACING DOUBLE VERTICAL LINE ABOVE;;;;-030F;COMBINING DOUBLE GRAVE ACCENT;Mn;230;NSM;;;;;N;NON-SPACING DOUBLE GRAVE;;;;-0310;COMBINING CANDRABINDU;Mn;230;NSM;;;;;N;NON-SPACING CANDRABINDU;;;;-0311;COMBINING INVERTED BREVE;Mn;230;NSM;;;;;N;NON-SPACING INVERTED BREVE;;;;-0312;COMBINING TURNED COMMA ABOVE;Mn;230;NSM;;;;;N;NON-SPACING TURNED COMMA ABOVE;;;;-0313;COMBINING COMMA ABOVE;Mn;230;NSM;;;;;N;NON-SPACING COMMA ABOVE;;;;-0314;COMBINING REVERSED COMMA ABOVE;Mn;230;NSM;;;;;N;NON-SPACING REVERSED COMMA ABOVE;;;;-0315;COMBINING COMMA ABOVE RIGHT;Mn;232;NSM;;;;;N;NON-SPACING COMMA ABOVE RIGHT;;;;-0316;COMBINING GRAVE ACCENT BELOW;Mn;220;NSM;;;;;N;NON-SPACING GRAVE BELOW;;;;-0317;COMBINING ACUTE ACCENT BELOW;Mn;220;NSM;;;;;N;NON-SPACING ACUTE BELOW;;;;-0318;COMBINING LEFT TACK BELOW;Mn;220;NSM;;;;;N;NON-SPACING LEFT TACK BELOW;;;;-0319;COMBINING RIGHT TACK BELOW;Mn;220;NSM;;;;;N;NON-SPACING RIGHT TACK BELOW;;;;-031A;COMBINING LEFT ANGLE ABOVE;Mn;232;NSM;;;;;N;NON-SPACING LEFT ANGLE ABOVE;;;;-031B;COMBINING HORN;Mn;216;NSM;;;;;N;NON-SPACING HORN;;;;-031C;COMBINING LEFT HALF RING BELOW;Mn;220;NSM;;;;;N;NON-SPACING LEFT HALF RING BELOW;;;;-031D;COMBINING UP TACK BELOW;Mn;220;NSM;;;;;N;NON-SPACING UP TACK BELOW;;;;-031E;COMBINING DOWN TACK BELOW;Mn;220;NSM;;;;;N;NON-SPACING DOWN TACK BELOW;;;;-031F;COMBINING PLUS SIGN BELOW;Mn;220;NSM;;;;;N;NON-SPACING PLUS SIGN BELOW;;;;-0320;COMBINING MINUS SIGN BELOW;Mn;220;NSM;;;;;N;NON-SPACING MINUS SIGN BELOW;;;;-0321;COMBINING PALATALIZED HOOK BELOW;Mn;202;NSM;;;;;N;NON-SPACING PALATALIZED HOOK BELOW;;;;-0322;COMBINING RETROFLEX HOOK BELOW;Mn;202;NSM;;;;;N;NON-SPACING RETROFLEX HOOK BELOW;;;;-0323;COMBINING DOT BELOW;Mn;220;NSM;;;;;N;NON-SPACING DOT BELOW;;;;-0324;COMBINING DIAERESIS BELOW;Mn;220;NSM;;;;;N;NON-SPACING DOUBLE DOT BELOW;;;;-0325;COMBINING RING BELOW;Mn;220;NSM;;;;;N;NON-SPACING RING BELOW;;;;-0326;COMBINING COMMA BELOW;Mn;220;NSM;;;;;N;NON-SPACING COMMA BELOW;;;;-0327;COMBINING CEDILLA;Mn;202;NSM;;;;;N;NON-SPACING CEDILLA;;;;-0328;COMBINING OGONEK;Mn;202;NSM;;;;;N;NON-SPACING OGONEK;;;;-0329;COMBINING VERTICAL LINE BELOW;Mn;220;NSM;;;;;N;NON-SPACING VERTICAL LINE BELOW;;;;-032A;COMBINING BRIDGE BELOW;Mn;220;NSM;;;;;N;NON-SPACING BRIDGE BELOW;;;;-032B;COMBINING INVERTED DOUBLE ARCH BELOW;Mn;220;NSM;;;;;N;NON-SPACING INVERTED DOUBLE ARCH BELOW;;;;-032C;COMBINING CARON BELOW;Mn;220;NSM;;;;;N;NON-SPACING HACEK BELOW;;;;-032D;COMBINING CIRCUMFLEX ACCENT BELOW;Mn;220;NSM;;;;;N;NON-SPACING CIRCUMFLEX BELOW;;;;-032E;COMBINING BREVE BELOW;Mn;220;NSM;;;;;N;NON-SPACING BREVE BELOW;;;;-032F;COMBINING INVERTED BREVE BELOW;Mn;220;NSM;;;;;N;NON-SPACING INVERTED BREVE BELOW;;;;-0330;COMBINING TILDE BELOW;Mn;220;NSM;;;;;N;NON-SPACING TILDE BELOW;;;;-0331;COMBINING MACRON BELOW;Mn;220;NSM;;;;;N;NON-SPACING MACRON BELOW;;;;-0332;COMBINING LOW LINE;Mn;220;NSM;;;;;N;NON-SPACING UNDERSCORE;;;;-0333;COMBINING DOUBLE LOW LINE;Mn;220;NSM;;;;;N;NON-SPACING DOUBLE UNDERSCORE;;;;-0334;COMBINING TILDE OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING TILDE OVERLAY;;;;-0335;COMBINING SHORT STROKE OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING SHORT BAR OVERLAY;;;;-0336;COMBINING LONG STROKE OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING LONG BAR OVERLAY;;;;-0337;COMBINING SHORT SOLIDUS OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING SHORT SLASH OVERLAY;;;;-0338;COMBINING LONG SOLIDUS OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING LONG SLASH OVERLAY;;;;-0339;COMBINING RIGHT HALF RING BELOW;Mn;220;NSM;;;;;N;NON-SPACING RIGHT HALF RING BELOW;;;;-033A;COMBINING INVERTED BRIDGE BELOW;Mn;220;NSM;;;;;N;NON-SPACING INVERTED BRIDGE BELOW;;;;-033B;COMBINING SQUARE BELOW;Mn;220;NSM;;;;;N;NON-SPACING SQUARE BELOW;;;;-033C;COMBINING SEAGULL BELOW;Mn;220;NSM;;;;;N;NON-SPACING SEAGULL BELOW;;;;-033D;COMBINING X ABOVE;Mn;230;NSM;;;;;N;NON-SPACING X ABOVE;;;;-033E;COMBINING VERTICAL TILDE;Mn;230;NSM;;;;;N;NON-SPACING VERTICAL TILDE;;;;-033F;COMBINING DOUBLE OVERLINE;Mn;230;NSM;;;;;N;NON-SPACING DOUBLE OVERSCORE;;;;-0340;COMBINING GRAVE TONE MARK;Mn;230;NSM;0300;;;;N;NON-SPACING GRAVE TONE MARK;;;;-0341;COMBINING ACUTE TONE MARK;Mn;230;NSM;0301;;;;N;NON-SPACING ACUTE TONE MARK;;;;-0342;COMBINING GREEK PERISPOMENI;Mn;230;NSM;;;;;N;;;;;-0343;COMBINING GREEK KORONIS;Mn;230;NSM;0313;;;;N;;;;;-0344;COMBINING GREEK DIALYTIKA TONOS;Mn;230;NSM;0308 0301;;;;N;GREEK NON-SPACING DIAERESIS TONOS;;;;-0345;COMBINING GREEK YPOGEGRAMMENI;Mn;240;NSM;;;;;N;GREEK NON-SPACING IOTA BELOW;;0399;;0399-0346;COMBINING BRIDGE ABOVE;Mn;230;NSM;;;;;N;;;;;-0347;COMBINING EQUALS SIGN BELOW;Mn;220;NSM;;;;;N;;;;;-0348;COMBINING DOUBLE VERTICAL LINE BELOW;Mn;220;NSM;;;;;N;;;;;-0349;COMBINING LEFT ANGLE BELOW;Mn;220;NSM;;;;;N;;;;;-034A;COMBINING NOT TILDE ABOVE;Mn;230;NSM;;;;;N;;;;;-034B;COMBINING HOMOTHETIC ABOVE;Mn;230;NSM;;;;;N;;;;;-034C;COMBINING ALMOST EQUAL TO ABOVE;Mn;230;NSM;;;;;N;;;;;-034D;COMBINING LEFT RIGHT ARROW BELOW;Mn;220;NSM;;;;;N;;;;;-034E;COMBINING UPWARDS ARROW BELOW;Mn;220;NSM;;;;;N;;;;;-034F;COMBINING GRAPHEME JOINER;Mn;0;NSM;;;;;N;;;;;-0350;COMBINING RIGHT ARROWHEAD ABOVE;Mn;230;NSM;;;;;N;;;;;-0351;COMBINING LEFT HALF RING ABOVE;Mn;230;NSM;;;;;N;;;;;-0352;COMBINING FERMATA;Mn;230;NSM;;;;;N;;;;;-0353;COMBINING X BELOW;Mn;220;NSM;;;;;N;;;;;-0354;COMBINING LEFT ARROWHEAD BELOW;Mn;220;NSM;;;;;N;;;;;-0355;COMBINING RIGHT ARROWHEAD BELOW;Mn;220;NSM;;;;;N;;;;;-0356;COMBINING RIGHT ARROWHEAD AND UP ARROWHEAD BELOW;Mn;220;NSM;;;;;N;;;;;-0357;COMBINING RIGHT HALF RING ABOVE;Mn;230;NSM;;;;;N;;;;;-0358;COMBINING DOT ABOVE RIGHT;Mn;232;NSM;;;;;N;;;;;-0359;COMBINING ASTERISK BELOW;Mn;220;NSM;;;;;N;;;;;-035A;COMBINING DOUBLE RING BELOW;Mn;220;NSM;;;;;N;;;;;-035B;COMBINING ZIGZAG ABOVE;Mn;230;NSM;;;;;N;;;;;-035C;COMBINING DOUBLE BREVE BELOW;Mn;233;NSM;;;;;N;;;;;-035D;COMBINING DOUBLE BREVE;Mn;234;NSM;;;;;N;;;;;-035E;COMBINING DOUBLE MACRON;Mn;234;NSM;;;;;N;;;;;-035F;COMBINING DOUBLE MACRON BELOW;Mn;233;NSM;;;;;N;;;;;-0360;COMBINING DOUBLE TILDE;Mn;234;NSM;;;;;N;;;;;-0361;COMBINING DOUBLE INVERTED BREVE;Mn;234;NSM;;;;;N;;;;;-0362;COMBINING DOUBLE RIGHTWARDS ARROW BELOW;Mn;233;NSM;;;;;N;;;;;-0363;COMBINING LATIN SMALL LETTER A;Mn;230;NSM;;;;;N;;;;;-0364;COMBINING LATIN SMALL LETTER E;Mn;230;NSM;;;;;N;;;;;-0365;COMBINING LATIN SMALL LETTER I;Mn;230;NSM;;;;;N;;;;;-0366;COMBINING LATIN SMALL LETTER O;Mn;230;NSM;;;;;N;;;;;-0367;COMBINING LATIN SMALL LETTER U;Mn;230;NSM;;;;;N;;;;;-0368;COMBINING LATIN SMALL LETTER C;Mn;230;NSM;;;;;N;;;;;-0369;COMBINING LATIN SMALL LETTER D;Mn;230;NSM;;;;;N;;;;;-036A;COMBINING LATIN SMALL LETTER H;Mn;230;NSM;;;;;N;;;;;-036B;COMBINING LATIN SMALL LETTER M;Mn;230;NSM;;;;;N;;;;;-036C;COMBINING LATIN SMALL LETTER R;Mn;230;NSM;;;;;N;;;;;-036D;COMBINING LATIN SMALL LETTER T;Mn;230;NSM;;;;;N;;;;;-036E;COMBINING LATIN SMALL LETTER V;Mn;230;NSM;;;;;N;;;;;-036F;COMBINING LATIN SMALL LETTER X;Mn;230;NSM;;;;;N;;;;;-0370;GREEK CAPITAL LETTER HETA;Lu;0;L;;;;;N;;;;0371;-0371;GREEK SMALL LETTER HETA;Ll;0;L;;;;;N;;;0370;;0370-0372;GREEK CAPITAL LETTER ARCHAIC SAMPI;Lu;0;L;;;;;N;;;;0373;-0373;GREEK SMALL LETTER ARCHAIC SAMPI;Ll;0;L;;;;;N;;;0372;;0372-0374;GREEK NUMERAL SIGN;Lm;0;ON;02B9;;;;N;GREEK UPPER NUMERAL SIGN;;;;-0375;GREEK LOWER NUMERAL SIGN;Sk;0;ON;;;;;N;;;;;-0376;GREEK CAPITAL LETTER PAMPHYLIAN DIGAMMA;Lu;0;L;;;;;N;;;;0377;-0377;GREEK SMALL LETTER PAMPHYLIAN DIGAMMA;Ll;0;L;;;;;N;;;0376;;0376-037A;GREEK YPOGEGRAMMENI;Lm;0;L;<compat> 0020 0345;;;;N;GREEK SPACING IOTA BELOW;;;;-037B;GREEK SMALL REVERSED LUNATE SIGMA SYMBOL;Ll;0;L;;;;;N;;;03FD;;03FD-037C;GREEK SMALL DOTTED LUNATE SIGMA SYMBOL;Ll;0;L;;;;;N;;;03FE;;03FE-037D;GREEK SMALL REVERSED DOTTED LUNATE SIGMA SYMBOL;Ll;0;L;;;;;N;;;03FF;;03FF-037E;GREEK QUESTION MARK;Po;0;ON;003B;;;;N;;;;;-037F;GREEK CAPITAL LETTER YOT;Lu;0;L;;;;;N;;;;03F3;-0384;GREEK TONOS;Sk;0;ON;<compat> 0020 0301;;;;N;GREEK SPACING TONOS;;;;-0385;GREEK DIALYTIKA TONOS;Sk;0;ON;00A8 0301;;;;N;GREEK SPACING DIAERESIS TONOS;;;;-0386;GREEK CAPITAL LETTER ALPHA WITH TONOS;Lu;0;L;0391 0301;;;;N;GREEK CAPITAL LETTER ALPHA TONOS;;;03AC;-0387;GREEK ANO TELEIA;Po;0;ON;00B7;;;;N;;;;;-0388;GREEK CAPITAL LETTER EPSILON WITH TONOS;Lu;0;L;0395 0301;;;;N;GREEK CAPITAL LETTER EPSILON TONOS;;;03AD;-0389;GREEK CAPITAL LETTER ETA WITH TONOS;Lu;0;L;0397 0301;;;;N;GREEK CAPITAL LETTER ETA TONOS;;;03AE;-038A;GREEK CAPITAL LETTER IOTA WITH TONOS;Lu;0;L;0399 0301;;;;N;GREEK CAPITAL LETTER IOTA TONOS;;;03AF;-038C;GREEK CAPITAL LETTER OMICRON WITH TONOS;Lu;0;L;039F 0301;;;;N;GREEK CAPITAL LETTER OMICRON TONOS;;;03CC;-038E;GREEK CAPITAL LETTER UPSILON WITH TONOS;Lu;0;L;03A5 0301;;;;N;GREEK CAPITAL LETTER UPSILON TONOS;;;03CD;-038F;GREEK CAPITAL LETTER OMEGA WITH TONOS;Lu;0;L;03A9 0301;;;;N;GREEK CAPITAL LETTER OMEGA TONOS;;;03CE;-0390;GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS;Ll;0;L;03CA 0301;;;;N;GREEK SMALL LETTER IOTA DIAERESIS TONOS;;;;-0391;GREEK CAPITAL LETTER ALPHA;Lu;0;L;;;;;N;;;;03B1;-0392;GREEK CAPITAL LETTER BETA;Lu;0;L;;;;;N;;;;03B2;-0393;GREEK CAPITAL LETTER GAMMA;Lu;0;L;;;;;N;;;;03B3;-0394;GREEK CAPITAL LETTER DELTA;Lu;0;L;;;;;N;;;;03B4;-0395;GREEK CAPITAL LETTER EPSILON;Lu;0;L;;;;;N;;;;03B5;-0396;GREEK CAPITAL LETTER ZETA;Lu;0;L;;;;;N;;;;03B6;-0397;GREEK CAPITAL LETTER ETA;Lu;0;L;;;;;N;;;;03B7;-0398;GREEK CAPITAL LETTER THETA;Lu;0;L;;;;;N;;;;03B8;-0399;GREEK CAPITAL LETTER IOTA;Lu;0;L;;;;;N;;;;03B9;-039A;GREEK CAPITAL LETTER KAPPA;Lu;0;L;;;;;N;;;;03BA;-039B;GREEK CAPITAL LETTER LAMDA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER LAMBDA;;;03BB;-039C;GREEK CAPITAL LETTER MU;Lu;0;L;;;;;N;;;;03BC;-039D;GREEK CAPITAL LETTER NU;Lu;0;L;;;;;N;;;;03BD;-039E;GREEK CAPITAL LETTER XI;Lu;0;L;;;;;N;;;;03BE;-039F;GREEK CAPITAL LETTER OMICRON;Lu;0;L;;;;;N;;;;03BF;-03A0;GREEK CAPITAL LETTER PI;Lu;0;L;;;;;N;;;;03C0;-03A1;GREEK CAPITAL LETTER RHO;Lu;0;L;;;;;N;;;;03C1;-03A3;GREEK CAPITAL LETTER SIGMA;Lu;0;L;;;;;N;;;;03C3;-03A4;GREEK CAPITAL LETTER TAU;Lu;0;L;;;;;N;;;;03C4;-03A5;GREEK CAPITAL LETTER UPSILON;Lu;0;L;;;;;N;;;;03C5;-03A6;GREEK CAPITAL LETTER PHI;Lu;0;L;;;;;N;;;;03C6;-03A7;GREEK CAPITAL LETTER CHI;Lu;0;L;;;;;N;;;;03C7;-03A8;GREEK CAPITAL LETTER PSI;Lu;0;L;;;;;N;;;;03C8;-03A9;GREEK CAPITAL LETTER OMEGA;Lu;0;L;;;;;N;;;;03C9;-03AA;GREEK CAPITAL LETTER IOTA WITH DIALYTIKA;Lu;0;L;0399 0308;;;;N;GREEK CAPITAL LETTER IOTA DIAERESIS;;;03CA;-03AB;GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA;Lu;0;L;03A5 0308;;;;N;GREEK CAPITAL LETTER UPSILON DIAERESIS;;;03CB;-03AC;GREEK SMALL LETTER ALPHA WITH TONOS;Ll;0;L;03B1 0301;;;;N;GREEK SMALL LETTER ALPHA TONOS;;0386;;0386-03AD;GREEK SMALL LETTER EPSILON WITH TONOS;Ll;0;L;03B5 0301;;;;N;GREEK SMALL LETTER EPSILON TONOS;;0388;;0388-03AE;GREEK SMALL LETTER ETA WITH TONOS;Ll;0;L;03B7 0301;;;;N;GREEK SMALL LETTER ETA TONOS;;0389;;0389-03AF;GREEK SMALL LETTER IOTA WITH TONOS;Ll;0;L;03B9 0301;;;;N;GREEK SMALL LETTER IOTA TONOS;;038A;;038A-03B0;GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS;Ll;0;L;03CB 0301;;;;N;GREEK SMALL LETTER UPSILON DIAERESIS TONOS;;;;-03B1;GREEK SMALL LETTER ALPHA;Ll;0;L;;;;;N;;;0391;;0391-03B2;GREEK SMALL LETTER BETA;Ll;0;L;;;;;N;;;0392;;0392-03B3;GREEK SMALL LETTER GAMMA;Ll;0;L;;;;;N;;;0393;;0393-03B4;GREEK SMALL LETTER DELTA;Ll;0;L;;;;;N;;;0394;;0394-03B5;GREEK SMALL LETTER EPSILON;Ll;0;L;;;;;N;;;0395;;0395-03B6;GREEK SMALL LETTER ZETA;Ll;0;L;;;;;N;;;0396;;0396-03B7;GREEK SMALL LETTER ETA;Ll;0;L;;;;;N;;;0397;;0397-03B8;GREEK SMALL LETTER THETA;Ll;0;L;;;;;N;;;0398;;0398-03B9;GREEK SMALL LETTER IOTA;Ll;0;L;;;;;N;;;0399;;0399-03BA;GREEK SMALL LETTER KAPPA;Ll;0;L;;;;;N;;;039A;;039A-03BB;GREEK SMALL LETTER LAMDA;Ll;0;L;;;;;N;GREEK SMALL LETTER LAMBDA;;039B;;039B-03BC;GREEK SMALL LETTER MU;Ll;0;L;;;;;N;;;039C;;039C-03BD;GREEK SMALL LETTER NU;Ll;0;L;;;;;N;;;039D;;039D-03BE;GREEK SMALL LETTER XI;Ll;0;L;;;;;N;;;039E;;039E-03BF;GREEK SMALL LETTER OMICRON;Ll;0;L;;;;;N;;;039F;;039F-03C0;GREEK SMALL LETTER PI;Ll;0;L;;;;;N;;;03A0;;03A0-03C1;GREEK SMALL LETTER RHO;Ll;0;L;;;;;N;;;03A1;;03A1-03C2;GREEK SMALL LETTER FINAL SIGMA;Ll;0;L;;;;;N;;;03A3;;03A3-03C3;GREEK SMALL LETTER SIGMA;Ll;0;L;;;;;N;;;03A3;;03A3-03C4;GREEK SMALL LETTER TAU;Ll;0;L;;;;;N;;;03A4;;03A4-03C5;GREEK SMALL LETTER UPSILON;Ll;0;L;;;;;N;;;03A5;;03A5-03C6;GREEK SMALL LETTER PHI;Ll;0;L;;;;;N;;;03A6;;03A6-03C7;GREEK SMALL LETTER CHI;Ll;0;L;;;;;N;;;03A7;;03A7-03C8;GREEK SMALL LETTER PSI;Ll;0;L;;;;;N;;;03A8;;03A8-03C9;GREEK SMALL LETTER OMEGA;Ll;0;L;;;;;N;;;03A9;;03A9-03CA;GREEK SMALL LETTER IOTA WITH DIALYTIKA;Ll;0;L;03B9 0308;;;;N;GREEK SMALL LETTER IOTA DIAERESIS;;03AA;;03AA-03CB;GREEK SMALL LETTER UPSILON WITH DIALYTIKA;Ll;0;L;03C5 0308;;;;N;GREEK SMALL LETTER UPSILON DIAERESIS;;03AB;;03AB-03CC;GREEK SMALL LETTER OMICRON WITH TONOS;Ll;0;L;03BF 0301;;;;N;GREEK SMALL LETTER OMICRON TONOS;;038C;;038C-03CD;GREEK SMALL LETTER UPSILON WITH TONOS;Ll;0;L;03C5 0301;;;;N;GREEK SMALL LETTER UPSILON TONOS;;038E;;038E-03CE;GREEK SMALL LETTER OMEGA WITH TONOS;Ll;0;L;03C9 0301;;;;N;GREEK SMALL LETTER OMEGA TONOS;;038F;;038F-03CF;GREEK CAPITAL KAI SYMBOL;Lu;0;L;;;;;N;;;;03D7;-03D0;GREEK BETA SYMBOL;Ll;0;L;<compat> 03B2;;;;N;GREEK SMALL LETTER CURLED BETA;;0392;;0392-03D1;GREEK THETA SYMBOL;Ll;0;L;<compat> 03B8;;;;N;GREEK SMALL LETTER SCRIPT THETA;;0398;;0398-03D2;GREEK UPSILON WITH HOOK SYMBOL;Lu;0;L;<compat> 03A5;;;;N;GREEK CAPITAL LETTER UPSILON HOOK;;;;-03D3;GREEK UPSILON WITH ACUTE AND HOOK SYMBOL;Lu;0;L;03D2 0301;;;;N;GREEK CAPITAL LETTER UPSILON HOOK TONOS;;;;-03D4;GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL;Lu;0;L;03D2 0308;;;;N;GREEK CAPITAL LETTER UPSILON HOOK DIAERESIS;;;;-03D5;GREEK PHI SYMBOL;Ll;0;L;<compat> 03C6;;;;N;GREEK SMALL LETTER SCRIPT PHI;;03A6;;03A6-03D6;GREEK PI SYMBOL;Ll;0;L;<compat> 03C0;;;;N;GREEK SMALL LETTER OMEGA PI;;03A0;;03A0-03D7;GREEK KAI SYMBOL;Ll;0;L;;;;;N;;;03CF;;03CF-03D8;GREEK LETTER ARCHAIC KOPPA;Lu;0;L;;;;;N;;;;03D9;-03D9;GREEK SMALL LETTER ARCHAIC KOPPA;Ll;0;L;;;;;N;;;03D8;;03D8-03DA;GREEK LETTER STIGMA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER STIGMA;;;03DB;-03DB;GREEK SMALL LETTER STIGMA;Ll;0;L;;;;;N;;;03DA;;03DA-03DC;GREEK LETTER DIGAMMA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER DIGAMMA;;;03DD;-03DD;GREEK SMALL LETTER DIGAMMA;Ll;0;L;;;;;N;;;03DC;;03DC-03DE;GREEK LETTER KOPPA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER KOPPA;;;03DF;-03DF;GREEK SMALL LETTER KOPPA;Ll;0;L;;;;;N;;;03DE;;03DE-03E0;GREEK LETTER SAMPI;Lu;0;L;;;;;N;GREEK CAPITAL LETTER SAMPI;;;03E1;-03E1;GREEK SMALL LETTER SAMPI;Ll;0;L;;;;;N;;;03E0;;03E0-03E2;COPTIC CAPITAL LETTER SHEI;Lu;0;L;;;;;N;GREEK CAPITAL LETTER SHEI;;;03E3;-03E3;COPTIC SMALL LETTER SHEI;Ll;0;L;;;;;N;GREEK SMALL LETTER SHEI;;03E2;;03E2-03E4;COPTIC CAPITAL LETTER FEI;Lu;0;L;;;;;N;GREEK CAPITAL LETTER FEI;;;03E5;-03E5;COPTIC SMALL LETTER FEI;Ll;0;L;;;;;N;GREEK SMALL LETTER FEI;;03E4;;03E4-03E6;COPTIC CAPITAL LETTER KHEI;Lu;0;L;;;;;N;GREEK CAPITAL LETTER KHEI;;;03E7;-03E7;COPTIC SMALL LETTER KHEI;Ll;0;L;;;;;N;GREEK SMALL LETTER KHEI;;03E6;;03E6-03E8;COPTIC CAPITAL LETTER HORI;Lu;0;L;;;;;N;GREEK CAPITAL LETTER HORI;;;03E9;-03E9;COPTIC SMALL LETTER HORI;Ll;0;L;;;;;N;GREEK SMALL LETTER HORI;;03E8;;03E8-03EA;COPTIC CAPITAL LETTER GANGIA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER GANGIA;;;03EB;-03EB;COPTIC SMALL LETTER GANGIA;Ll;0;L;;;;;N;GREEK SMALL LETTER GANGIA;;03EA;;03EA-03EC;COPTIC CAPITAL LETTER SHIMA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER SHIMA;;;03ED;-03ED;COPTIC SMALL LETTER SHIMA;Ll;0;L;;;;;N;GREEK SMALL LETTER SHIMA;;03EC;;03EC-03EE;COPTIC CAPITAL LETTER DEI;Lu;0;L;;;;;N;GREEK CAPITAL LETTER DEI;;;03EF;-03EF;COPTIC SMALL LETTER DEI;Ll;0;L;;;;;N;GREEK SMALL LETTER DEI;;03EE;;03EE-03F0;GREEK KAPPA SYMBOL;Ll;0;L;<compat> 03BA;;;;N;GREEK SMALL LETTER SCRIPT KAPPA;;039A;;039A-03F1;GREEK RHO SYMBOL;Ll;0;L;<compat> 03C1;;;;N;GREEK SMALL LETTER TAILED RHO;;03A1;;03A1-03F2;GREEK LUNATE SIGMA SYMBOL;Ll;0;L;<compat> 03C2;;;;N;GREEK SMALL LETTER LUNATE SIGMA;;03F9;;03F9-03F3;GREEK LETTER YOT;Ll;0;L;;;;;N;;;037F;;037F-03F4;GREEK CAPITAL THETA SYMBOL;Lu;0;L;<compat> 0398;;;;N;;;;03B8;-03F5;GREEK LUNATE EPSILON SYMBOL;Ll;0;L;<compat> 03B5;;;;N;;;0395;;0395-03F6;GREEK REVERSED LUNATE EPSILON SYMBOL;Sm;0;ON;;;;;N;;;;;-03F7;GREEK CAPITAL LETTER SHO;Lu;0;L;;;;;N;;;;03F8;-03F8;GREEK SMALL LETTER SHO;Ll;0;L;;;;;N;;;03F7;;03F7-03F9;GREEK CAPITAL LUNATE SIGMA SYMBOL;Lu;0;L;<compat> 03A3;;;;N;;;;03F2;-03FA;GREEK CAPITAL LETTER SAN;Lu;0;L;;;;;N;;;;03FB;-03FB;GREEK SMALL LETTER SAN;Ll;0;L;;;;;N;;;03FA;;03FA-03FC;GREEK RHO WITH STROKE SYMBOL;Ll;0;L;;;;;N;;;;;-03FD;GREEK CAPITAL REVERSED LUNATE SIGMA SYMBOL;Lu;0;L;;;;;N;;;;037B;-03FE;GREEK CAPITAL DOTTED LUNATE SIGMA SYMBOL;Lu;0;L;;;;;N;;;;037C;-03FF;GREEK CAPITAL REVERSED DOTTED LUNATE SIGMA SYMBOL;Lu;0;L;;;;;N;;;;037D;-0400;CYRILLIC CAPITAL LETTER IE WITH GRAVE;Lu;0;L;0415 0300;;;;N;;;;0450;-0401;CYRILLIC CAPITAL LETTER IO;Lu;0;L;0415 0308;;;;N;;;;0451;-0402;CYRILLIC CAPITAL LETTER DJE;Lu;0;L;;;;;N;;;;0452;-0403;CYRILLIC CAPITAL LETTER GJE;Lu;0;L;0413 0301;;;;N;;;;0453;-0404;CYRILLIC CAPITAL LETTER UKRAINIAN IE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER E;;;0454;-0405;CYRILLIC CAPITAL LETTER DZE;Lu;0;L;;;;;N;;;;0455;-0406;CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER I;;;0456;-0407;CYRILLIC CAPITAL LETTER YI;Lu;0;L;0406 0308;;;;N;;;;0457;-0408;CYRILLIC CAPITAL LETTER JE;Lu;0;L;;;;;N;;;;0458;-0409;CYRILLIC CAPITAL LETTER LJE;Lu;0;L;;;;;N;;;;0459;-040A;CYRILLIC CAPITAL LETTER NJE;Lu;0;L;;;;;N;;;;045A;-040B;CYRILLIC CAPITAL LETTER TSHE;Lu;0;L;;;;;N;;;;045B;-040C;CYRILLIC CAPITAL LETTER KJE;Lu;0;L;041A 0301;;;;N;;;;045C;-040D;CYRILLIC CAPITAL LETTER I WITH GRAVE;Lu;0;L;0418 0300;;;;N;;;;045D;-040E;CYRILLIC CAPITAL LETTER SHORT U;Lu;0;L;0423 0306;;;;N;;;;045E;-040F;CYRILLIC CAPITAL LETTER DZHE;Lu;0;L;;;;;N;;;;045F;-0410;CYRILLIC CAPITAL LETTER A;Lu;0;L;;;;;N;;;;0430;-0411;CYRILLIC CAPITAL LETTER BE;Lu;0;L;;;;;N;;;;0431;-0412;CYRILLIC CAPITAL LETTER VE;Lu;0;L;;;;;N;;;;0432;-0413;CYRILLIC CAPITAL LETTER GHE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER GE;;;0433;-0414;CYRILLIC CAPITAL LETTER DE;Lu;0;L;;;;;N;;;;0434;-0415;CYRILLIC CAPITAL LETTER IE;Lu;0;L;;;;;N;;;;0435;-0416;CYRILLIC CAPITAL LETTER ZHE;Lu;0;L;;;;;N;;;;0436;-0417;CYRILLIC CAPITAL LETTER ZE;Lu;0;L;;;;;N;;;;0437;-0418;CYRILLIC CAPITAL LETTER I;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER II;;;0438;-0419;CYRILLIC CAPITAL LETTER SHORT I;Lu;0;L;0418 0306;;;;N;CYRILLIC CAPITAL LETTER SHORT II;;;0439;-041A;CYRILLIC CAPITAL LETTER KA;Lu;0;L;;;;;N;;;;043A;-041B;CYRILLIC CAPITAL LETTER EL;Lu;0;L;;;;;N;;;;043B;-041C;CYRILLIC CAPITAL LETTER EM;Lu;0;L;;;;;N;;;;043C;-041D;CYRILLIC CAPITAL LETTER EN;Lu;0;L;;;;;N;;;;043D;-041E;CYRILLIC CAPITAL LETTER O;Lu;0;L;;;;;N;;;;043E;-041F;CYRILLIC CAPITAL LETTER PE;Lu;0;L;;;;;N;;;;043F;-0420;CYRILLIC CAPITAL LETTER ER;Lu;0;L;;;;;N;;;;0440;-0421;CYRILLIC CAPITAL LETTER ES;Lu;0;L;;;;;N;;;;0441;-0422;CYRILLIC CAPITAL LETTER TE;Lu;0;L;;;;;N;;;;0442;-0423;CYRILLIC CAPITAL LETTER U;Lu;0;L;;;;;N;;;;0443;-0424;CYRILLIC CAPITAL LETTER EF;Lu;0;L;;;;;N;;;;0444;-0425;CYRILLIC CAPITAL LETTER HA;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER KHA;;;0445;-0426;CYRILLIC CAPITAL LETTER TSE;Lu;0;L;;;;;N;;;;0446;-0427;CYRILLIC CAPITAL LETTER CHE;Lu;0;L;;;;;N;;;;0447;-0428;CYRILLIC CAPITAL LETTER SHA;Lu;0;L;;;;;N;;;;0448;-0429;CYRILLIC CAPITAL LETTER SHCHA;Lu;0;L;;;;;N;;;;0449;-042A;CYRILLIC CAPITAL LETTER HARD SIGN;Lu;0;L;;;;;N;;;;044A;-042B;CYRILLIC CAPITAL LETTER YERU;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER YERI;;;044B;-042C;CYRILLIC CAPITAL LETTER SOFT SIGN;Lu;0;L;;;;;N;;;;044C;-042D;CYRILLIC CAPITAL LETTER E;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER REVERSED E;;;044D;-042E;CYRILLIC CAPITAL LETTER YU;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER IU;;;044E;-042F;CYRILLIC CAPITAL LETTER YA;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER IA;;;044F;-0430;CYRILLIC SMALL LETTER A;Ll;0;L;;;;;N;;;0410;;0410-0431;CYRILLIC SMALL LETTER BE;Ll;0;L;;;;;N;;;0411;;0411-0432;CYRILLIC SMALL LETTER VE;Ll;0;L;;;;;N;;;0412;;0412-0433;CYRILLIC SMALL LETTER GHE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER GE;;0413;;0413-0434;CYRILLIC SMALL LETTER DE;Ll;0;L;;;;;N;;;0414;;0414-0435;CYRILLIC SMALL LETTER IE;Ll;0;L;;;;;N;;;0415;;0415-0436;CYRILLIC SMALL LETTER ZHE;Ll;0;L;;;;;N;;;0416;;0416-0437;CYRILLIC SMALL LETTER ZE;Ll;0;L;;;;;N;;;0417;;0417-0438;CYRILLIC SMALL LETTER I;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER II;;0418;;0418-0439;CYRILLIC SMALL LETTER SHORT I;Ll;0;L;0438 0306;;;;N;CYRILLIC SMALL LETTER SHORT II;;0419;;0419-043A;CYRILLIC SMALL LETTER KA;Ll;0;L;;;;;N;;;041A;;041A-043B;CYRILLIC SMALL LETTER EL;Ll;0;L;;;;;N;;;041B;;041B-043C;CYRILLIC SMALL LETTER EM;Ll;0;L;;;;;N;;;041C;;041C-043D;CYRILLIC SMALL LETTER EN;Ll;0;L;;;;;N;;;041D;;041D-043E;CYRILLIC SMALL LETTER O;Ll;0;L;;;;;N;;;041E;;041E-043F;CYRILLIC SMALL LETTER PE;Ll;0;L;;;;;N;;;041F;;041F-0440;CYRILLIC SMALL LETTER ER;Ll;0;L;;;;;N;;;0420;;0420-0441;CYRILLIC SMALL LETTER ES;Ll;0;L;;;;;N;;;0421;;0421-0442;CYRILLIC SMALL LETTER TE;Ll;0;L;;;;;N;;;0422;;0422-0443;CYRILLIC SMALL LETTER U;Ll;0;L;;;;;N;;;0423;;0423-0444;CYRILLIC SMALL LETTER EF;Ll;0;L;;;;;N;;;0424;;0424-0445;CYRILLIC SMALL LETTER HA;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER KHA;;0425;;0425-0446;CYRILLIC SMALL LETTER TSE;Ll;0;L;;;;;N;;;0426;;0426-0447;CYRILLIC SMALL LETTER CHE;Ll;0;L;;;;;N;;;0427;;0427-0448;CYRILLIC SMALL LETTER SHA;Ll;0;L;;;;;N;;;0428;;0428-0449;CYRILLIC SMALL LETTER SHCHA;Ll;0;L;;;;;N;;;0429;;0429-044A;CYRILLIC SMALL LETTER HARD SIGN;Ll;0;L;;;;;N;;;042A;;042A-044B;CYRILLIC SMALL LETTER YERU;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER YERI;;042B;;042B-044C;CYRILLIC SMALL LETTER SOFT SIGN;Ll;0;L;;;;;N;;;042C;;042C-044D;CYRILLIC SMALL LETTER E;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER REVERSED E;;042D;;042D-044E;CYRILLIC SMALL LETTER YU;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER IU;;042E;;042E-044F;CYRILLIC SMALL LETTER YA;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER IA;;042F;;042F-0450;CYRILLIC SMALL LETTER IE WITH GRAVE;Ll;0;L;0435 0300;;;;N;;;0400;;0400-0451;CYRILLIC SMALL LETTER IO;Ll;0;L;0435 0308;;;;N;;;0401;;0401-0452;CYRILLIC SMALL LETTER DJE;Ll;0;L;;;;;N;;;0402;;0402-0453;CYRILLIC SMALL LETTER GJE;Ll;0;L;0433 0301;;;;N;;;0403;;0403-0454;CYRILLIC SMALL LETTER UKRAINIAN IE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER E;;0404;;0404-0455;CYRILLIC SMALL LETTER DZE;Ll;0;L;;;;;N;;;0405;;0405-0456;CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER I;;0406;;0406-0457;CYRILLIC SMALL LETTER YI;Ll;0;L;0456 0308;;;;N;;;0407;;0407-0458;CYRILLIC SMALL LETTER JE;Ll;0;L;;;;;N;;;0408;;0408-0459;CYRILLIC SMALL LETTER LJE;Ll;0;L;;;;;N;;;0409;;0409-045A;CYRILLIC SMALL LETTER NJE;Ll;0;L;;;;;N;;;040A;;040A-045B;CYRILLIC SMALL LETTER TSHE;Ll;0;L;;;;;N;;;040B;;040B-045C;CYRILLIC SMALL LETTER KJE;Ll;0;L;043A 0301;;;;N;;;040C;;040C-045D;CYRILLIC SMALL LETTER I WITH GRAVE;Ll;0;L;0438 0300;;;;N;;;040D;;040D-045E;CYRILLIC SMALL LETTER SHORT U;Ll;0;L;0443 0306;;;;N;;;040E;;040E-045F;CYRILLIC SMALL LETTER DZHE;Ll;0;L;;;;;N;;;040F;;040F-0460;CYRILLIC CAPITAL LETTER OMEGA;Lu;0;L;;;;;N;;;;0461;-0461;CYRILLIC SMALL LETTER OMEGA;Ll;0;L;;;;;N;;;0460;;0460-0462;CYRILLIC CAPITAL LETTER YAT;Lu;0;L;;;;;N;;;;0463;-0463;CYRILLIC SMALL LETTER YAT;Ll;0;L;;;;;N;;;0462;;0462-0464;CYRILLIC CAPITAL LETTER IOTIFIED E;Lu;0;L;;;;;N;;;;0465;-0465;CYRILLIC SMALL LETTER IOTIFIED E;Ll;0;L;;;;;N;;;0464;;0464-0466;CYRILLIC CAPITAL LETTER LITTLE YUS;Lu;0;L;;;;;N;;;;0467;-0467;CYRILLIC SMALL LETTER LITTLE YUS;Ll;0;L;;;;;N;;;0466;;0466-0468;CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS;Lu;0;L;;;;;N;;;;0469;-0469;CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS;Ll;0;L;;;;;N;;;0468;;0468-046A;CYRILLIC CAPITAL LETTER BIG YUS;Lu;0;L;;;;;N;;;;046B;-046B;CYRILLIC SMALL LETTER BIG YUS;Ll;0;L;;;;;N;;;046A;;046A-046C;CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS;Lu;0;L;;;;;N;;;;046D;-046D;CYRILLIC SMALL LETTER IOTIFIED BIG YUS;Ll;0;L;;;;;N;;;046C;;046C-046E;CYRILLIC CAPITAL LETTER KSI;Lu;0;L;;;;;N;;;;046F;-046F;CYRILLIC SMALL LETTER KSI;Ll;0;L;;;;;N;;;046E;;046E-0470;CYRILLIC CAPITAL LETTER PSI;Lu;0;L;;;;;N;;;;0471;-0471;CYRILLIC SMALL LETTER PSI;Ll;0;L;;;;;N;;;0470;;0470-0472;CYRILLIC CAPITAL LETTER FITA;Lu;0;L;;;;;N;;;;0473;-0473;CYRILLIC SMALL LETTER FITA;Ll;0;L;;;;;N;;;0472;;0472-0474;CYRILLIC CAPITAL LETTER IZHITSA;Lu;0;L;;;;;N;;;;0475;-0475;CYRILLIC SMALL LETTER IZHITSA;Ll;0;L;;;;;N;;;0474;;0474-0476;CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT;Lu;0;L;0474 030F;;;;N;CYRILLIC CAPITAL LETTER IZHITSA DOUBLE GRAVE;;;0477;-0477;CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT;Ll;0;L;0475 030F;;;;N;CYRILLIC SMALL LETTER IZHITSA DOUBLE GRAVE;;0476;;0476-0478;CYRILLIC CAPITAL LETTER UK;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER UK DIGRAPH;;;0479;-0479;CYRILLIC SMALL LETTER UK;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER UK DIGRAPH;;0478;;0478-047A;CYRILLIC CAPITAL LETTER ROUND OMEGA;Lu;0;L;;;;;N;;;;047B;-047B;CYRILLIC SMALL LETTER ROUND OMEGA;Ll;0;L;;;;;N;;;047A;;047A-047C;CYRILLIC CAPITAL LETTER OMEGA WITH TITLO;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER OMEGA TITLO;;;047D;-047D;CYRILLIC SMALL LETTER OMEGA WITH TITLO;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER OMEGA TITLO;;047C;;047C-047E;CYRILLIC CAPITAL LETTER OT;Lu;0;L;;;;;N;;;;047F;-047F;CYRILLIC SMALL LETTER OT;Ll;0;L;;;;;N;;;047E;;047E-0480;CYRILLIC CAPITAL LETTER KOPPA;Lu;0;L;;;;;N;;;;0481;-0481;CYRILLIC SMALL LETTER KOPPA;Ll;0;L;;;;;N;;;0480;;0480-0482;CYRILLIC THOUSANDS SIGN;So;0;L;;;;;N;;;;;-0483;COMBINING CYRILLIC TITLO;Mn;230;NSM;;;;;N;CYRILLIC NON-SPACING TITLO;;;;-0484;COMBINING CYRILLIC PALATALIZATION;Mn;230;NSM;;;;;N;CYRILLIC NON-SPACING PALATALIZATION;;;;-0485;COMBINING CYRILLIC DASIA PNEUMATA;Mn;230;NSM;;;;;N;CYRILLIC NON-SPACING DASIA PNEUMATA;;;;-0486;COMBINING CYRILLIC PSILI PNEUMATA;Mn;230;NSM;;;;;N;CYRILLIC NON-SPACING PSILI PNEUMATA;;;;-0487;COMBINING CYRILLIC POKRYTIE;Mn;230;NSM;;;;;N;;;;;-0488;COMBINING CYRILLIC HUNDRED THOUSANDS SIGN;Me;0;NSM;;;;;N;;;;;-0489;COMBINING CYRILLIC MILLIONS SIGN;Me;0;NSM;;;;;N;;;;;-048A;CYRILLIC CAPITAL LETTER SHORT I WITH TAIL;Lu;0;L;;;;;N;;;;048B;-048B;CYRILLIC SMALL LETTER SHORT I WITH TAIL;Ll;0;L;;;;;N;;;048A;;048A-048C;CYRILLIC CAPITAL LETTER SEMISOFT SIGN;Lu;0;L;;;;;N;;;;048D;-048D;CYRILLIC SMALL LETTER SEMISOFT SIGN;Ll;0;L;;;;;N;;;048C;;048C-048E;CYRILLIC CAPITAL LETTER ER WITH TICK;Lu;0;L;;;;;N;;;;048F;-048F;CYRILLIC SMALL LETTER ER WITH TICK;Ll;0;L;;;;;N;;;048E;;048E-0490;CYRILLIC CAPITAL LETTER GHE WITH UPTURN;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER GE WITH UPTURN;;;0491;-0491;CYRILLIC SMALL LETTER GHE WITH UPTURN;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER GE WITH UPTURN;;0490;;0490-0492;CYRILLIC CAPITAL LETTER GHE WITH STROKE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER GE BAR;;;0493;-0493;CYRILLIC SMALL LETTER GHE WITH STROKE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER GE BAR;;0492;;0492-0494;CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER GE HOOK;;;0495;-0495;CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER GE HOOK;;0494;;0494-0496;CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER ZHE WITH RIGHT DESCENDER;;;0497;-0497;CYRILLIC SMALL LETTER ZHE WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER ZHE WITH RIGHT DESCENDER;;0496;;0496-0498;CYRILLIC CAPITAL LETTER ZE WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER ZE CEDILLA;;;0499;-0499;CYRILLIC SMALL LETTER ZE WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER ZE CEDILLA;;0498;;0498-049A;CYRILLIC CAPITAL LETTER KA WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER KA WITH RIGHT DESCENDER;;;049B;-049B;CYRILLIC SMALL LETTER KA WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER KA WITH RIGHT DESCENDER;;049A;;049A-049C;CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER KA VERTICAL BAR;;;049D;-049D;CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER KA VERTICAL BAR;;049C;;049C-049E;CYRILLIC CAPITAL LETTER KA WITH STROKE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER KA BAR;;;049F;-049F;CYRILLIC SMALL LETTER KA WITH STROKE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER KA BAR;;049E;;049E-04A0;CYRILLIC CAPITAL LETTER BASHKIR KA;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER REVERSED GE KA;;;04A1;-04A1;CYRILLIC SMALL LETTER BASHKIR KA;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER REVERSED GE KA;;04A0;;04A0-04A2;CYRILLIC CAPITAL LETTER EN WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER EN WITH RIGHT DESCENDER;;;04A3;-04A3;CYRILLIC SMALL LETTER EN WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER EN WITH RIGHT DESCENDER;;04A2;;04A2-04A4;CYRILLIC CAPITAL LIGATURE EN GHE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER EN GE;;;04A5;-04A5;CYRILLIC SMALL LIGATURE EN GHE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER EN GE;;04A4;;04A4-04A6;CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER PE HOOK;;;04A7;-04A7;CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER PE HOOK;;04A6;;04A6-04A8;CYRILLIC CAPITAL LETTER ABKHASIAN HA;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER O HOOK;;;04A9;-04A9;CYRILLIC SMALL LETTER ABKHASIAN HA;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER O HOOK;;04A8;;04A8-04AA;CYRILLIC CAPITAL LETTER ES WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER ES CEDILLA;;;04AB;-04AB;CYRILLIC SMALL LETTER ES WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER ES CEDILLA;;04AA;;04AA-04AC;CYRILLIC CAPITAL LETTER TE WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER TE WITH RIGHT DESCENDER;;;04AD;-04AD;CYRILLIC SMALL LETTER TE WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER TE WITH RIGHT DESCENDER;;04AC;;04AC-04AE;CYRILLIC CAPITAL LETTER STRAIGHT U;Lu;0;L;;;;;N;;;;04AF;-04AF;CYRILLIC SMALL LETTER STRAIGHT U;Ll;0;L;;;;;N;;;04AE;;04AE-04B0;CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER STRAIGHT U BAR;;;04B1;-04B1;CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER STRAIGHT U BAR;;04B0;;04B0-04B2;CYRILLIC CAPITAL LETTER HA WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER KHA WITH RIGHT DESCENDER;;;04B3;-04B3;CYRILLIC SMALL LETTER HA WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER KHA WITH RIGHT DESCENDER;;04B2;;04B2-04B4;CYRILLIC CAPITAL LIGATURE TE TSE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER TE TSE;;;04B5;-04B5;CYRILLIC SMALL LIGATURE TE TSE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER TE TSE;;04B4;;04B4-04B6;CYRILLIC CAPITAL LETTER CHE WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER CHE WITH RIGHT DESCENDER;;;04B7;-04B7;CYRILLIC SMALL LETTER CHE WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER CHE WITH RIGHT DESCENDER;;04B6;;04B6-04B8;CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER CHE VERTICAL BAR;;;04B9;-04B9;CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER CHE VERTICAL BAR;;04B8;;04B8-04BA;CYRILLIC CAPITAL LETTER SHHA;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER H;;;04BB;-04BB;CYRILLIC SMALL LETTER SHHA;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER H;;04BA;;04BA-04BC;CYRILLIC CAPITAL LETTER ABKHASIAN CHE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER IE HOOK;;;04BD;-04BD;CYRILLIC SMALL LETTER ABKHASIAN CHE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER IE HOOK;;04BC;;04BC-04BE;CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER IE HOOK OGONEK;;;04BF;-04BF;CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER IE HOOK OGONEK;;04BE;;04BE-04C0;CYRILLIC LETTER PALOCHKA;Lu;0;L;;;;;N;CYRILLIC LETTER I;;;04CF;-04C1;CYRILLIC CAPITAL LETTER ZHE WITH BREVE;Lu;0;L;0416 0306;;;;N;CYRILLIC CAPITAL LETTER SHORT ZHE;;;04C2;-04C2;CYRILLIC SMALL LETTER ZHE WITH BREVE;Ll;0;L;0436 0306;;;;N;CYRILLIC SMALL LETTER SHORT ZHE;;04C1;;04C1-04C3;CYRILLIC CAPITAL LETTER KA WITH HOOK;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER KA HOOK;;;04C4;-04C4;CYRILLIC SMALL LETTER KA WITH HOOK;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER KA HOOK;;04C3;;04C3-04C5;CYRILLIC CAPITAL LETTER EL WITH TAIL;Lu;0;L;;;;;N;;;;04C6;-04C6;CYRILLIC SMALL LETTER EL WITH TAIL;Ll;0;L;;;;;N;;;04C5;;04C5-04C7;CYRILLIC CAPITAL LETTER EN WITH HOOK;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER EN HOOK;;;04C8;-04C8;CYRILLIC SMALL LETTER EN WITH HOOK;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER EN HOOK;;04C7;;04C7-04C9;CYRILLIC CAPITAL LETTER EN WITH TAIL;Lu;0;L;;;;;N;;;;04CA;-04CA;CYRILLIC SMALL LETTER EN WITH TAIL;Ll;0;L;;;;;N;;;04C9;;04C9-04CB;CYRILLIC CAPITAL LETTER KHAKASSIAN CHE;Lu;0;L;;;;;N;CYRILLIC CAPITAL LETTER CHE WITH LEFT DESCENDER;;;04CC;-04CC;CYRILLIC SMALL LETTER KHAKASSIAN CHE;Ll;0;L;;;;;N;CYRILLIC SMALL LETTER CHE WITH LEFT DESCENDER;;04CB;;04CB-04CD;CYRILLIC CAPITAL LETTER EM WITH TAIL;Lu;0;L;;;;;N;;;;04CE;-04CE;CYRILLIC SMALL LETTER EM WITH TAIL;Ll;0;L;;;;;N;;;04CD;;04CD-04CF;CYRILLIC SMALL LETTER PALOCHKA;Ll;0;L;;;;;N;;;04C0;;04C0-04D0;CYRILLIC CAPITAL LETTER A WITH BREVE;Lu;0;L;0410 0306;;;;N;;;;04D1;-04D1;CYRILLIC SMALL LETTER A WITH BREVE;Ll;0;L;0430 0306;;;;N;;;04D0;;04D0-04D2;CYRILLIC CAPITAL LETTER A WITH DIAERESIS;Lu;0;L;0410 0308;;;;N;;;;04D3;-04D3;CYRILLIC SMALL LETTER A WITH DIAERESIS;Ll;0;L;0430 0308;;;;N;;;04D2;;04D2-04D4;CYRILLIC CAPITAL LIGATURE A IE;Lu;0;L;;;;;N;;;;04D5;-04D5;CYRILLIC SMALL LIGATURE A IE;Ll;0;L;;;;;N;;;04D4;;04D4-04D6;CYRILLIC CAPITAL LETTER IE WITH BREVE;Lu;0;L;0415 0306;;;;N;;;;04D7;-04D7;CYRILLIC SMALL LETTER IE WITH BREVE;Ll;0;L;0435 0306;;;;N;;;04D6;;04D6-04D8;CYRILLIC CAPITAL LETTER SCHWA;Lu;0;L;;;;;N;;;;04D9;-04D9;CYRILLIC SMALL LETTER SCHWA;Ll;0;L;;;;;N;;;04D8;;04D8-04DA;CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS;Lu;0;L;04D8 0308;;;;N;;;;04DB;-04DB;CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS;Ll;0;L;04D9 0308;;;;N;;;04DA;;04DA-04DC;CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS;Lu;0;L;0416 0308;;;;N;;;;04DD;-04DD;CYRILLIC SMALL LETTER ZHE WITH DIAERESIS;Ll;0;L;0436 0308;;;;N;;;04DC;;04DC-04DE;CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS;Lu;0;L;0417 0308;;;;N;;;;04DF;-04DF;CYRILLIC SMALL LETTER ZE WITH DIAERESIS;Ll;0;L;0437 0308;;;;N;;;04DE;;04DE-04E0;CYRILLIC CAPITAL LETTER ABKHASIAN DZE;Lu;0;L;;;;;N;;;;04E1;-04E1;CYRILLIC SMALL LETTER ABKHASIAN DZE;Ll;0;L;;;;;N;;;04E0;;04E0-04E2;CYRILLIC CAPITAL LETTER I WITH MACRON;Lu;0;L;0418 0304;;;;N;;;;04E3;-04E3;CYRILLIC SMALL LETTER I WITH MACRON;Ll;0;L;0438 0304;;;;N;;;04E2;;04E2-04E4;CYRILLIC CAPITAL LETTER I WITH DIAERESIS;Lu;0;L;0418 0308;;;;N;;;;04E5;-04E5;CYRILLIC SMALL LETTER I WITH DIAERESIS;Ll;0;L;0438 0308;;;;N;;;04E4;;04E4-04E6;CYRILLIC CAPITAL LETTER O WITH DIAERESIS;Lu;0;L;041E 0308;;;;N;;;;04E7;-04E7;CYRILLIC SMALL LETTER O WITH DIAERESIS;Ll;0;L;043E 0308;;;;N;;;04E6;;04E6-04E8;CYRILLIC CAPITAL LETTER BARRED O;Lu;0;L;;;;;N;;;;04E9;-04E9;CYRILLIC SMALL LETTER BARRED O;Ll;0;L;;;;;N;;;04E8;;04E8-04EA;CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS;Lu;0;L;04E8 0308;;;;N;;;;04EB;-04EB;CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS;Ll;0;L;04E9 0308;;;;N;;;04EA;;04EA-04EC;CYRILLIC CAPITAL LETTER E WITH DIAERESIS;Lu;0;L;042D 0308;;;;N;;;;04ED;-04ED;CYRILLIC SMALL LETTER E WITH DIAERESIS;Ll;0;L;044D 0308;;;;N;;;04EC;;04EC-04EE;CYRILLIC CAPITAL LETTER U WITH MACRON;Lu;0;L;0423 0304;;;;N;;;;04EF;-04EF;CYRILLIC SMALL LETTER U WITH MACRON;Ll;0;L;0443 0304;;;;N;;;04EE;;04EE-04F0;CYRILLIC CAPITAL LETTER U WITH DIAERESIS;Lu;0;L;0423 0308;;;;N;;;;04F1;-04F1;CYRILLIC SMALL LETTER U WITH DIAERESIS;Ll;0;L;0443 0308;;;;N;;;04F0;;04F0-04F2;CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE;Lu;0;L;0423 030B;;;;N;;;;04F3;-04F3;CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE;Ll;0;L;0443 030B;;;;N;;;04F2;;04F2-04F4;CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS;Lu;0;L;0427 0308;;;;N;;;;04F5;-04F5;CYRILLIC SMALL LETTER CHE WITH DIAERESIS;Ll;0;L;0447 0308;;;;N;;;04F4;;04F4-04F6;CYRILLIC CAPITAL LETTER GHE WITH DESCENDER;Lu;0;L;;;;;N;;;;04F7;-04F7;CYRILLIC SMALL LETTER GHE WITH DESCENDER;Ll;0;L;;;;;N;;;04F6;;04F6-04F8;CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS;Lu;0;L;042B 0308;;;;N;;;;04F9;-04F9;CYRILLIC SMALL LETTER YERU WITH DIAERESIS;Ll;0;L;044B 0308;;;;N;;;04F8;;04F8-04FA;CYRILLIC CAPITAL LETTER GHE WITH STROKE AND HOOK;Lu;0;L;;;;;N;;;;04FB;-04FB;CYRILLIC SMALL LETTER GHE WITH STROKE AND HOOK;Ll;0;L;;;;;N;;;04FA;;04FA-04FC;CYRILLIC CAPITAL LETTER HA WITH HOOK;Lu;0;L;;;;;N;;;;04FD;-04FD;CYRILLIC SMALL LETTER HA WITH HOOK;Ll;0;L;;;;;N;;;04FC;;04FC-04FE;CYRILLIC CAPITAL LETTER HA WITH STROKE;Lu;0;L;;;;;N;;;;04FF;-04FF;CYRILLIC SMALL LETTER HA WITH STROKE;Ll;0;L;;;;;N;;;04FE;;04FE-0500;CYRILLIC CAPITAL LETTER KOMI DE;Lu;0;L;;;;;N;;;;0501;-0501;CYRILLIC SMALL LETTER KOMI DE;Ll;0;L;;;;;N;;;0500;;0500-0502;CYRILLIC CAPITAL LETTER KOMI DJE;Lu;0;L;;;;;N;;;;0503;-0503;CYRILLIC SMALL LETTER KOMI DJE;Ll;0;L;;;;;N;;;0502;;0502-0504;CYRILLIC CAPITAL LETTER KOMI ZJE;Lu;0;L;;;;;N;;;;0505;-0505;CYRILLIC SMALL LETTER KOMI ZJE;Ll;0;L;;;;;N;;;0504;;0504-0506;CYRILLIC CAPITAL LETTER KOMI DZJE;Lu;0;L;;;;;N;;;;0507;-0507;CYRILLIC SMALL LETTER KOMI DZJE;Ll;0;L;;;;;N;;;0506;;0506-0508;CYRILLIC CAPITAL LETTER KOMI LJE;Lu;0;L;;;;;N;;;;0509;-0509;CYRILLIC SMALL LETTER KOMI LJE;Ll;0;L;;;;;N;;;0508;;0508-050A;CYRILLIC CAPITAL LETTER KOMI NJE;Lu;0;L;;;;;N;;;;050B;-050B;CYRILLIC SMALL LETTER KOMI NJE;Ll;0;L;;;;;N;;;050A;;050A-050C;CYRILLIC CAPITAL LETTER KOMI SJE;Lu;0;L;;;;;N;;;;050D;-050D;CYRILLIC SMALL LETTER KOMI SJE;Ll;0;L;;;;;N;;;050C;;050C-050E;CYRILLIC CAPITAL LETTER KOMI TJE;Lu;0;L;;;;;N;;;;050F;-050F;CYRILLIC SMALL LETTER KOMI TJE;Ll;0;L;;;;;N;;;050E;;050E-0510;CYRILLIC CAPITAL LETTER REVERSED ZE;Lu;0;L;;;;;N;;;;0511;-0511;CYRILLIC SMALL LETTER REVERSED ZE;Ll;0;L;;;;;N;;;0510;;0510-0512;CYRILLIC CAPITAL LETTER EL WITH HOOK;Lu;0;L;;;;;N;;;;0513;-0513;CYRILLIC SMALL LETTER EL WITH HOOK;Ll;0;L;;;;;N;;;0512;;0512-0514;CYRILLIC CAPITAL LETTER LHA;Lu;0;L;;;;;N;;;;0515;-0515;CYRILLIC SMALL LETTER LHA;Ll;0;L;;;;;N;;;0514;;0514-0516;CYRILLIC CAPITAL LETTER RHA;Lu;0;L;;;;;N;;;;0517;-0517;CYRILLIC SMALL LETTER RHA;Ll;0;L;;;;;N;;;0516;;0516-0518;CYRILLIC CAPITAL LETTER YAE;Lu;0;L;;;;;N;;;;0519;-0519;CYRILLIC SMALL LETTER YAE;Ll;0;L;;;;;N;;;0518;;0518-051A;CYRILLIC CAPITAL LETTER QA;Lu;0;L;;;;;N;;;;051B;-051B;CYRILLIC SMALL LETTER QA;Ll;0;L;;;;;N;;;051A;;051A-051C;CYRILLIC CAPITAL LETTER WE;Lu;0;L;;;;;N;;;;051D;-051D;CYRILLIC SMALL LETTER WE;Ll;0;L;;;;;N;;;051C;;051C-051E;CYRILLIC CAPITAL LETTER ALEUT KA;Lu;0;L;;;;;N;;;;051F;-051F;CYRILLIC SMALL LETTER ALEUT KA;Ll;0;L;;;;;N;;;051E;;051E-0520;CYRILLIC CAPITAL LETTER EL WITH MIDDLE HOOK;Lu;0;L;;;;;N;;;;0521;-0521;CYRILLIC SMALL LETTER EL WITH MIDDLE HOOK;Ll;0;L;;;;;N;;;0520;;0520-0522;CYRILLIC CAPITAL LETTER EN WITH MIDDLE HOOK;Lu;0;L;;;;;N;;;;0523;-0523;CYRILLIC SMALL LETTER EN WITH MIDDLE HOOK;Ll;0;L;;;;;N;;;0522;;0522-0524;CYRILLIC CAPITAL LETTER PE WITH DESCENDER;Lu;0;L;;;;;N;;;;0525;-0525;CYRILLIC SMALL LETTER PE WITH DESCENDER;Ll;0;L;;;;;N;;;0524;;0524-0526;CYRILLIC CAPITAL LETTER SHHA WITH DESCENDER;Lu;0;L;;;;;N;;;;0527;-0527;CYRILLIC SMALL LETTER SHHA WITH DESCENDER;Ll;0;L;;;;;N;;;0526;;0526-0528;CYRILLIC CAPITAL LETTER EN WITH LEFT HOOK;Lu;0;L;;;;;N;;;;0529;-0529;CYRILLIC SMALL LETTER EN WITH LEFT HOOK;Ll;0;L;;;;;N;;;0528;;0528-052A;CYRILLIC CAPITAL LETTER DZZHE;Lu;0;L;;;;;N;;;;052B;-052B;CYRILLIC SMALL LETTER DZZHE;Ll;0;L;;;;;N;;;052A;;052A-052C;CYRILLIC CAPITAL LETTER DCHE;Lu;0;L;;;;;N;;;;052D;-052D;CYRILLIC SMALL LETTER DCHE;Ll;0;L;;;;;N;;;052C;;052C-052E;CYRILLIC CAPITAL LETTER EL WITH DESCENDER;Lu;0;L;;;;;N;;;;052F;-052F;CYRILLIC SMALL LETTER EL WITH DESCENDER;Ll;0;L;;;;;N;;;052E;;052E-0531;ARMENIAN CAPITAL LETTER AYB;Lu;0;L;;;;;N;;;;0561;-0532;ARMENIAN CAPITAL LETTER BEN;Lu;0;L;;;;;N;;;;0562;-0533;ARMENIAN CAPITAL LETTER GIM;Lu;0;L;;;;;N;;;;0563;-0534;ARMENIAN CAPITAL LETTER DA;Lu;0;L;;;;;N;;;;0564;-0535;ARMENIAN CAPITAL LETTER ECH;Lu;0;L;;;;;N;;;;0565;-0536;ARMENIAN CAPITAL LETTER ZA;Lu;0;L;;;;;N;;;;0566;-0537;ARMENIAN CAPITAL LETTER EH;Lu;0;L;;;;;N;;;;0567;-0538;ARMENIAN CAPITAL LETTER ET;Lu;0;L;;;;;N;;;;0568;-0539;ARMENIAN CAPITAL LETTER TO;Lu;0;L;;;;;N;;;;0569;-053A;ARMENIAN CAPITAL LETTER ZHE;Lu;0;L;;;;;N;;;;056A;-053B;ARMENIAN CAPITAL LETTER INI;Lu;0;L;;;;;N;;;;056B;-053C;ARMENIAN CAPITAL LETTER LIWN;Lu;0;L;;;;;N;;;;056C;-053D;ARMENIAN CAPITAL LETTER XEH;Lu;0;L;;;;;N;;;;056D;-053E;ARMENIAN CAPITAL LETTER CA;Lu;0;L;;;;;N;;;;056E;-053F;ARMENIAN CAPITAL LETTER KEN;Lu;0;L;;;;;N;;;;056F;-0540;ARMENIAN CAPITAL LETTER HO;Lu;0;L;;;;;N;;;;0570;-0541;ARMENIAN CAPITAL LETTER JA;Lu;0;L;;;;;N;;;;0571;-0542;ARMENIAN CAPITAL LETTER GHAD;Lu;0;L;;;;;N;ARMENIAN CAPITAL LETTER LAD;;;0572;-0543;ARMENIAN CAPITAL LETTER CHEH;Lu;0;L;;;;;N;;;;0573;-0544;ARMENIAN CAPITAL LETTER MEN;Lu;0;L;;;;;N;;;;0574;-0545;ARMENIAN CAPITAL LETTER YI;Lu;0;L;;;;;N;;;;0575;-0546;ARMENIAN CAPITAL LETTER NOW;Lu;0;L;;;;;N;;;;0576;-0547;ARMENIAN CAPITAL LETTER SHA;Lu;0;L;;;;;N;;;;0577;-0548;ARMENIAN CAPITAL LETTER VO;Lu;0;L;;;;;N;;;;0578;-0549;ARMENIAN CAPITAL LETTER CHA;Lu;0;L;;;;;N;;;;0579;-054A;ARMENIAN CAPITAL LETTER PEH;Lu;0;L;;;;;N;;;;057A;-054B;ARMENIAN CAPITAL LETTER JHEH;Lu;0;L;;;;;N;;;;057B;-054C;ARMENIAN CAPITAL LETTER RA;Lu;0;L;;;;;N;;;;057C;-054D;ARMENIAN CAPITAL LETTER SEH;Lu;0;L;;;;;N;;;;057D;-054E;ARMENIAN CAPITAL LETTER VEW;Lu;0;L;;;;;N;;;;057E;-054F;ARMENIAN CAPITAL LETTER TIWN;Lu;0;L;;;;;N;;;;057F;-0550;ARMENIAN CAPITAL LETTER REH;Lu;0;L;;;;;N;;;;0580;-0551;ARMENIAN CAPITAL LETTER CO;Lu;0;L;;;;;N;;;;0581;-0552;ARMENIAN CAPITAL LETTER YIWN;Lu;0;L;;;;;N;;;;0582;-0553;ARMENIAN CAPITAL LETTER PIWR;Lu;0;L;;;;;N;;;;0583;-0554;ARMENIAN CAPITAL LETTER KEH;Lu;0;L;;;;;N;;;;0584;-0555;ARMENIAN CAPITAL LETTER OH;Lu;0;L;;;;;N;;;;0585;-0556;ARMENIAN CAPITAL LETTER FEH;Lu;0;L;;;;;N;;;;0586;-0559;ARMENIAN MODIFIER LETTER LEFT HALF RING;Lm;0;L;;;;;N;;;;;-055A;ARMENIAN APOSTROPHE;Po;0;L;;;;;N;ARMENIAN MODIFIER LETTER RIGHT HALF RING;;;;-055B;ARMENIAN EMPHASIS MARK;Po;0;L;;;;;N;;;;;-055C;ARMENIAN EXCLAMATION MARK;Po;0;L;;;;;N;;;;;-055D;ARMENIAN COMMA;Po;0;L;;;;;N;;;;;-055E;ARMENIAN QUESTION MARK;Po;0;L;;;;;N;;;;;-055F;ARMENIAN ABBREVIATION MARK;Po;0;L;;;;;N;;;;;-0561;ARMENIAN SMALL LETTER AYB;Ll;0;L;;;;;N;;;0531;;0531-0562;ARMENIAN SMALL LETTER BEN;Ll;0;L;;;;;N;;;0532;;0532-0563;ARMENIAN SMALL LETTER GIM;Ll;0;L;;;;;N;;;0533;;0533-0564;ARMENIAN SMALL LETTER DA;Ll;0;L;;;;;N;;;0534;;0534-0565;ARMENIAN SMALL LETTER ECH;Ll;0;L;;;;;N;;;0535;;0535-0566;ARMENIAN SMALL LETTER ZA;Ll;0;L;;;;;N;;;0536;;0536-0567;ARMENIAN SMALL LETTER EH;Ll;0;L;;;;;N;;;0537;;0537-0568;ARMENIAN SMALL LETTER ET;Ll;0;L;;;;;N;;;0538;;0538-0569;ARMENIAN SMALL LETTER TO;Ll;0;L;;;;;N;;;0539;;0539-056A;ARMENIAN SMALL LETTER ZHE;Ll;0;L;;;;;N;;;053A;;053A-056B;ARMENIAN SMALL LETTER INI;Ll;0;L;;;;;N;;;053B;;053B-056C;ARMENIAN SMALL LETTER LIWN;Ll;0;L;;;;;N;;;053C;;053C-056D;ARMENIAN SMALL LETTER XEH;Ll;0;L;;;;;N;;;053D;;053D-056E;ARMENIAN SMALL LETTER CA;Ll;0;L;;;;;N;;;053E;;053E-056F;ARMENIAN SMALL LETTER KEN;Ll;0;L;;;;;N;;;053F;;053F-0570;ARMENIAN SMALL LETTER HO;Ll;0;L;;;;;N;;;0540;;0540-0571;ARMENIAN SMALL LETTER JA;Ll;0;L;;;;;N;;;0541;;0541-0572;ARMENIAN SMALL LETTER GHAD;Ll;0;L;;;;;N;ARMENIAN SMALL LETTER LAD;;0542;;0542-0573;ARMENIAN SMALL LETTER CHEH;Ll;0;L;;;;;N;;;0543;;0543-0574;ARMENIAN SMALL LETTER MEN;Ll;0;L;;;;;N;;;0544;;0544-0575;ARMENIAN SMALL LETTER YI;Ll;0;L;;;;;N;;;0545;;0545-0576;ARMENIAN SMALL LETTER NOW;Ll;0;L;;;;;N;;;0546;;0546-0577;ARMENIAN SMALL LETTER SHA;Ll;0;L;;;;;N;;;0547;;0547-0578;ARMENIAN SMALL LETTER VO;Ll;0;L;;;;;N;;;0548;;0548-0579;ARMENIAN SMALL LETTER CHA;Ll;0;L;;;;;N;;;0549;;0549-057A;ARMENIAN SMALL LETTER PEH;Ll;0;L;;;;;N;;;054A;;054A-057B;ARMENIAN SMALL LETTER JHEH;Ll;0;L;;;;;N;;;054B;;054B-057C;ARMENIAN SMALL LETTER RA;Ll;0;L;;;;;N;;;054C;;054C-057D;ARMENIAN SMALL LETTER SEH;Ll;0;L;;;;;N;;;054D;;054D-057E;ARMENIAN SMALL LETTER VEW;Ll;0;L;;;;;N;;;054E;;054E-057F;ARMENIAN SMALL LETTER TIWN;Ll;0;L;;;;;N;;;054F;;054F-0580;ARMENIAN SMALL LETTER REH;Ll;0;L;;;;;N;;;0550;;0550-0581;ARMENIAN SMALL LETTER CO;Ll;0;L;;;;;N;;;0551;;0551-0582;ARMENIAN SMALL LETTER YIWN;Ll;0;L;;;;;N;;;0552;;0552-0583;ARMENIAN SMALL LETTER PIWR;Ll;0;L;;;;;N;;;0553;;0553-0584;ARMENIAN SMALL LETTER KEH;Ll;0;L;;;;;N;;;0554;;0554-0585;ARMENIAN SMALL LETTER OH;Ll;0;L;;;;;N;;;0555;;0555-0586;ARMENIAN SMALL LETTER FEH;Ll;0;L;;;;;N;;;0556;;0556-0587;ARMENIAN SMALL LIGATURE ECH YIWN;Ll;0;L;<compat> 0565 0582;;;;N;;;;;-0589;ARMENIAN FULL STOP;Po;0;L;;;;;N;ARMENIAN PERIOD;;;;-058A;ARMENIAN HYPHEN;Pd;0;ON;;;;;N;;;;;-058D;RIGHT-FACING ARMENIAN ETERNITY SIGN;So;0;ON;;;;;N;;;;;-058E;LEFT-FACING ARMENIAN ETERNITY SIGN;So;0;ON;;;;;N;;;;;-058F;ARMENIAN DRAM SIGN;Sc;0;ET;;;;;N;;;;;-0591;HEBREW ACCENT ETNAHTA;Mn;220;NSM;;;;;N;;;;;-0592;HEBREW ACCENT SEGOL;Mn;230;NSM;;;;;N;;;;;-0593;HEBREW ACCENT SHALSHELET;Mn;230;NSM;;;;;N;;;;;-0594;HEBREW ACCENT ZAQEF QATAN;Mn;230;NSM;;;;;N;;;;;-0595;HEBREW ACCENT ZAQEF GADOL;Mn;230;NSM;;;;;N;;;;;-0596;HEBREW ACCENT TIPEHA;Mn;220;NSM;;;;;N;;;;;-0597;HEBREW ACCENT REVIA;Mn;230;NSM;;;;;N;;;;;-0598;HEBREW ACCENT ZARQA;Mn;230;NSM;;;;;N;;;;;-0599;HEBREW ACCENT PASHTA;Mn;230;NSM;;;;;N;;;;;-059A;HEBREW ACCENT YETIV;Mn;222;NSM;;;;;N;;;;;-059B;HEBREW ACCENT TEVIR;Mn;220;NSM;;;;;N;;;;;-059C;HEBREW ACCENT GERESH;Mn;230;NSM;;;;;N;;;;;-059D;HEBREW ACCENT GERESH MUQDAM;Mn;230;NSM;;;;;N;;;;;-059E;HEBREW ACCENT GERSHAYIM;Mn;230;NSM;;;;;N;;;;;-059F;HEBREW ACCENT QARNEY PARA;Mn;230;NSM;;;;;N;;;;;-05A0;HEBREW ACCENT TELISHA GEDOLA;Mn;230;NSM;;;;;N;;;;;-05A1;HEBREW ACCENT PAZER;Mn;230;NSM;;;;;N;;;;;-05A2;HEBREW ACCENT ATNAH HAFUKH;Mn;220;NSM;;;;;N;;;;;-05A3;HEBREW ACCENT MUNAH;Mn;220;NSM;;;;;N;;;;;-05A4;HEBREW ACCENT MAHAPAKH;Mn;220;NSM;;;;;N;;;;;-05A5;HEBREW ACCENT MERKHA;Mn;220;NSM;;;;;N;;;;;-05A6;HEBREW ACCENT MERKHA KEFULA;Mn;220;NSM;;;;;N;;;;;-05A7;HEBREW ACCENT DARGA;Mn;220;NSM;;;;;N;;;;;-05A8;HEBREW ACCENT QADMA;Mn;230;NSM;;;;;N;;;;;-05A9;HEBREW ACCENT TELISHA QETANA;Mn;230;NSM;;;;;N;;;;;-05AA;HEBREW ACCENT YERAH BEN YOMO;Mn;220;NSM;;;;;N;;;;;-05AB;HEBREW ACCENT OLE;Mn;230;NSM;;;;;N;;;;;-05AC;HEBREW ACCENT ILUY;Mn;230;NSM;;;;;N;;;;;-05AD;HEBREW ACCENT DEHI;Mn;222;NSM;;;;;N;;;;;-05AE;HEBREW ACCENT ZINOR;Mn;228;NSM;;;;;N;;;;;-05AF;HEBREW MARK MASORA CIRCLE;Mn;230;NSM;;;;;N;;;;;-05B0;HEBREW POINT SHEVA;Mn;10;NSM;;;;;N;;;;;-05B1;HEBREW POINT HATAF SEGOL;Mn;11;NSM;;;;;N;;;;;-05B2;HEBREW POINT HATAF PATAH;Mn;12;NSM;;;;;N;;;;;-05B3;HEBREW POINT HATAF QAMATS;Mn;13;NSM;;;;;N;;;;;-05B4;HEBREW POINT HIRIQ;Mn;14;NSM;;;;;N;;;;;-05B5;HEBREW POINT TSERE;Mn;15;NSM;;;;;N;;;;;-05B6;HEBREW POINT SEGOL;Mn;16;NSM;;;;;N;;;;;-05B7;HEBREW POINT PATAH;Mn;17;NSM;;;;;N;;;;;-05B8;HEBREW POINT QAMATS;Mn;18;NSM;;;;;N;;;;;-05B9;HEBREW POINT HOLAM;Mn;19;NSM;;;;;N;;;;;-05BA;HEBREW POINT HOLAM HASER FOR VAV;Mn;19;NSM;;;;;N;;;;;-05BB;HEBREW POINT QUBUTS;Mn;20;NSM;;;;;N;;;;;-05BC;HEBREW POINT DAGESH OR MAPIQ;Mn;21;NSM;;;;;N;HEBREW POINT DAGESH;;;;-05BD;HEBREW POINT METEG;Mn;22;NSM;;;;;N;;;;;-05BE;HEBREW PUNCTUATION MAQAF;Pd;0;R;;;;;N;;;;;-05BF;HEBREW POINT RAFE;Mn;23;NSM;;;;;N;;;;;-05C0;HEBREW PUNCTUATION PASEQ;Po;0;R;;;;;N;HEBREW POINT PASEQ;;;;-05C1;HEBREW POINT SHIN DOT;Mn;24;NSM;;;;;N;;;;;-05C2;HEBREW POINT SIN DOT;Mn;25;NSM;;;;;N;;;;;-05C3;HEBREW PUNCTUATION SOF PASUQ;Po;0;R;;;;;N;;;;;-05C4;HEBREW MARK UPPER DOT;Mn;230;NSM;;;;;N;;;;;-05C5;HEBREW MARK LOWER DOT;Mn;220;NSM;;;;;N;;;;;-05C6;HEBREW PUNCTUATION NUN HAFUKHA;Po;0;R;;;;;N;;;;;-05C7;HEBREW POINT QAMATS QATAN;Mn;18;NSM;;;;;N;;;;;-05D0;HEBREW LETTER ALEF;Lo;0;R;;;;;N;;;;;-05D1;HEBREW LETTER BET;Lo;0;R;;;;;N;;;;;-05D2;HEBREW LETTER GIMEL;Lo;0;R;;;;;N;;;;;-05D3;HEBREW LETTER DALET;Lo;0;R;;;;;N;;;;;-05D4;HEBREW LETTER HE;Lo;0;R;;;;;N;;;;;-05D5;HEBREW LETTER VAV;Lo;0;R;;;;;N;;;;;-05D6;HEBREW LETTER ZAYIN;Lo;0;R;;;;;N;;;;;-05D7;HEBREW LETTER HET;Lo;0;R;;;;;N;;;;;-05D8;HEBREW LETTER TET;Lo;0;R;;;;;N;;;;;-05D9;HEBREW LETTER YOD;Lo;0;R;;;;;N;;;;;-05DA;HEBREW LETTER FINAL KAF;Lo;0;R;;;;;N;;;;;-05DB;HEBREW LETTER KAF;Lo;0;R;;;;;N;;;;;-05DC;HEBREW LETTER LAMED;Lo;0;R;;;;;N;;;;;-05DD;HEBREW LETTER FINAL MEM;Lo;0;R;;;;;N;;;;;-05DE;HEBREW LETTER MEM;Lo;0;R;;;;;N;;;;;-05DF;HEBREW LETTER FINAL NUN;Lo;0;R;;;;;N;;;;;-05E0;HEBREW LETTER NUN;Lo;0;R;;;;;N;;;;;-05E1;HEBREW LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-05E2;HEBREW LETTER AYIN;Lo;0;R;;;;;N;;;;;-05E3;HEBREW LETTER FINAL PE;Lo;0;R;;;;;N;;;;;-05E4;HEBREW LETTER PE;Lo;0;R;;;;;N;;;;;-05E5;HEBREW LETTER FINAL TSADI;Lo;0;R;;;;;N;;;;;-05E6;HEBREW LETTER TSADI;Lo;0;R;;;;;N;;;;;-05E7;HEBREW LETTER QOF;Lo;0;R;;;;;N;;;;;-05E8;HEBREW LETTER RESH;Lo;0;R;;;;;N;;;;;-05E9;HEBREW LETTER SHIN;Lo;0;R;;;;;N;;;;;-05EA;HEBREW LETTER TAV;Lo;0;R;;;;;N;;;;;-05F0;HEBREW LIGATURE YIDDISH DOUBLE VAV;Lo;0;R;;;;;N;HEBREW LETTER DOUBLE VAV;;;;-05F1;HEBREW LIGATURE YIDDISH VAV YOD;Lo;0;R;;;;;N;HEBREW LETTER VAV YOD;;;;-05F2;HEBREW LIGATURE YIDDISH DOUBLE YOD;Lo;0;R;;;;;N;HEBREW LETTER DOUBLE YOD;;;;-05F3;HEBREW PUNCTUATION GERESH;Po;0;R;;;;;N;;;;;-05F4;HEBREW PUNCTUATION GERSHAYIM;Po;0;R;;;;;N;;;;;-0600;ARABIC NUMBER SIGN;Cf;0;AN;;;;;N;;;;;-0601;ARABIC SIGN SANAH;Cf;0;AN;;;;;N;;;;;-0602;ARABIC FOOTNOTE MARKER;Cf;0;AN;;;;;N;;;;;-0603;ARABIC SIGN SAFHA;Cf;0;AN;;;;;N;;;;;-0604;ARABIC SIGN SAMVAT;Cf;0;AN;;;;;N;;;;;-0605;ARABIC NUMBER MARK ABOVE;Cf;0;AN;;;;;N;;;;;-0606;ARABIC-INDIC CUBE ROOT;Sm;0;ON;;;;;N;;;;;-0607;ARABIC-INDIC FOURTH ROOT;Sm;0;ON;;;;;N;;;;;-0608;ARABIC RAY;Sm;0;AL;;;;;N;;;;;-0609;ARABIC-INDIC PER MILLE SIGN;Po;0;ET;;;;;N;;;;;-060A;ARABIC-INDIC PER TEN THOUSAND SIGN;Po;0;ET;;;;;N;;;;;-060B;AFGHANI SIGN;Sc;0;AL;;;;;N;;;;;-060C;ARABIC COMMA;Po;0;CS;;;;;N;;;;;-060D;ARABIC DATE SEPARATOR;Po;0;AL;;;;;N;;;;;-060E;ARABIC POETIC VERSE SIGN;So;0;ON;;;;;N;;;;;-060F;ARABIC SIGN MISRA;So;0;ON;;;;;N;;;;;-0610;ARABIC SIGN SALLALLAHOU ALAYHE WASSALLAM;Mn;230;NSM;;;;;N;;;;;-0611;ARABIC SIGN ALAYHE ASSALLAM;Mn;230;NSM;;;;;N;;;;;-0612;ARABIC SIGN RAHMATULLAH ALAYHE;Mn;230;NSM;;;;;N;;;;;-0613;ARABIC SIGN RADI ALLAHOU ANHU;Mn;230;NSM;;;;;N;;;;;-0614;ARABIC SIGN TAKHALLUS;Mn;230;NSM;;;;;N;;;;;-0615;ARABIC SMALL HIGH TAH;Mn;230;NSM;;;;;N;;;;;-0616;ARABIC SMALL HIGH LIGATURE ALEF WITH LAM WITH YEH;Mn;230;NSM;;;;;N;;;;;-0617;ARABIC SMALL HIGH ZAIN;Mn;230;NSM;;;;;N;;;;;-0618;ARABIC SMALL FATHA;Mn;30;NSM;;;;;N;;;;;-0619;ARABIC SMALL DAMMA;Mn;31;NSM;;;;;N;;;;;-061A;ARABIC SMALL KASRA;Mn;32;NSM;;;;;N;;;;;-061B;ARABIC SEMICOLON;Po;0;AL;;;;;N;;;;;-061C;ARABIC LETTER MARK;Cf;0;AL;;;;;N;;;;;-061E;ARABIC TRIPLE DOT PUNCTUATION MARK;Po;0;AL;;;;;N;;;;;-061F;ARABIC QUESTION MARK;Po;0;AL;;;;;N;;;;;-0620;ARABIC LETTER KASHMIRI YEH;Lo;0;AL;;;;;N;;;;;-0621;ARABIC LETTER HAMZA;Lo;0;AL;;;;;N;ARABIC LETTER HAMZAH;;;;-0622;ARABIC LETTER ALEF WITH MADDA ABOVE;Lo;0;AL;0627 0653;;;;N;ARABIC LETTER MADDAH ON ALEF;;;;-0623;ARABIC LETTER ALEF WITH HAMZA ABOVE;Lo;0;AL;0627 0654;;;;N;ARABIC LETTER HAMZAH ON ALEF;;;;-0624;ARABIC LETTER WAW WITH HAMZA ABOVE;Lo;0;AL;0648 0654;;;;N;ARABIC LETTER HAMZAH ON WAW;;;;-0625;ARABIC LETTER ALEF WITH HAMZA BELOW;Lo;0;AL;0627 0655;;;;N;ARABIC LETTER HAMZAH UNDER ALEF;;;;-0626;ARABIC LETTER YEH WITH HAMZA ABOVE;Lo;0;AL;064A 0654;;;;N;ARABIC LETTER HAMZAH ON YA;;;;-0627;ARABIC LETTER ALEF;Lo;0;AL;;;;;N;;;;;-0628;ARABIC LETTER BEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA;;;;-0629;ARABIC LETTER TEH MARBUTA;Lo;0;AL;;;;;N;ARABIC LETTER TAA MARBUTAH;;;;-062A;ARABIC LETTER TEH;Lo;0;AL;;;;;N;ARABIC LETTER TAA;;;;-062B;ARABIC LETTER THEH;Lo;0;AL;;;;;N;ARABIC LETTER THAA;;;;-062C;ARABIC LETTER JEEM;Lo;0;AL;;;;;N;;;;;-062D;ARABIC LETTER HAH;Lo;0;AL;;;;;N;ARABIC LETTER HAA;;;;-062E;ARABIC LETTER KHAH;Lo;0;AL;;;;;N;ARABIC LETTER KHAA;;;;-062F;ARABIC LETTER DAL;Lo;0;AL;;;;;N;;;;;-0630;ARABIC LETTER THAL;Lo;0;AL;;;;;N;;;;;-0631;ARABIC LETTER REH;Lo;0;AL;;;;;N;ARABIC LETTER RA;;;;-0632;ARABIC LETTER ZAIN;Lo;0;AL;;;;;N;;;;;-0633;ARABIC LETTER SEEN;Lo;0;AL;;;;;N;;;;;-0634;ARABIC LETTER SHEEN;Lo;0;AL;;;;;N;;;;;-0635;ARABIC LETTER SAD;Lo;0;AL;;;;;N;;;;;-0636;ARABIC LETTER DAD;Lo;0;AL;;;;;N;;;;;-0637;ARABIC LETTER TAH;Lo;0;AL;;;;;N;;;;;-0638;ARABIC LETTER ZAH;Lo;0;AL;;;;;N;ARABIC LETTER DHAH;;;;-0639;ARABIC LETTER AIN;Lo;0;AL;;;;;N;;;;;-063A;ARABIC LETTER GHAIN;Lo;0;AL;;;;;N;;;;;-063B;ARABIC LETTER KEHEH WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-063C;ARABIC LETTER KEHEH WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;;;;;-063D;ARABIC LETTER FARSI YEH WITH INVERTED V;Lo;0;AL;;;;;N;;;;;-063E;ARABIC LETTER FARSI YEH WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-063F;ARABIC LETTER FARSI YEH WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-0640;ARABIC TATWEEL;Lm;0;AL;;;;;N;;;;;-0641;ARABIC LETTER FEH;Lo;0;AL;;;;;N;ARABIC LETTER FA;;;;-0642;ARABIC LETTER QAF;Lo;0;AL;;;;;N;;;;;-0643;ARABIC LETTER KAF;Lo;0;AL;;;;;N;ARABIC LETTER CAF;;;;-0644;ARABIC LETTER LAM;Lo;0;AL;;;;;N;;;;;-0645;ARABIC LETTER MEEM;Lo;0;AL;;;;;N;;;;;-0646;ARABIC LETTER NOON;Lo;0;AL;;;;;N;;;;;-0647;ARABIC LETTER HEH;Lo;0;AL;;;;;N;ARABIC LETTER HA;;;;-0648;ARABIC LETTER WAW;Lo;0;AL;;;;;N;;;;;-0649;ARABIC LETTER ALEF MAKSURA;Lo;0;AL;;;;;N;ARABIC LETTER ALEF MAQSURAH;;;;-064A;ARABIC LETTER YEH;Lo;0;AL;;;;;N;ARABIC LETTER YA;;;;-064B;ARABIC FATHATAN;Mn;27;NSM;;;;;N;;;;;-064C;ARABIC DAMMATAN;Mn;28;NSM;;;;;N;;;;;-064D;ARABIC KASRATAN;Mn;29;NSM;;;;;N;;;;;-064E;ARABIC FATHA;Mn;30;NSM;;;;;N;ARABIC FATHAH;;;;-064F;ARABIC DAMMA;Mn;31;NSM;;;;;N;ARABIC DAMMAH;;;;-0650;ARABIC KASRA;Mn;32;NSM;;;;;N;ARABIC KASRAH;;;;-0651;ARABIC SHADDA;Mn;33;NSM;;;;;N;ARABIC SHADDAH;;;;-0652;ARABIC SUKUN;Mn;34;NSM;;;;;N;;;;;-0653;ARABIC MADDAH ABOVE;Mn;230;NSM;;;;;N;;;;;-0654;ARABIC HAMZA ABOVE;Mn;230;NSM;;;;;N;;;;;-0655;ARABIC HAMZA BELOW;Mn;220;NSM;;;;;N;;;;;-0656;ARABIC SUBSCRIPT ALEF;Mn;220;NSM;;;;;N;;;;;-0657;ARABIC INVERTED DAMMA;Mn;230;NSM;;;;;N;;;;;-0658;ARABIC MARK NOON GHUNNA;Mn;230;NSM;;;;;N;;;;;-0659;ARABIC ZWARAKAY;Mn;230;NSM;;;;;N;;;;;-065A;ARABIC VOWEL SIGN SMALL V ABOVE;Mn;230;NSM;;;;;N;;;;;-065B;ARABIC VOWEL SIGN INVERTED SMALL V ABOVE;Mn;230;NSM;;;;;N;;;;;-065C;ARABIC VOWEL SIGN DOT BELOW;Mn;220;NSM;;;;;N;;;;;-065D;ARABIC REVERSED DAMMA;Mn;230;NSM;;;;;N;;;;;-065E;ARABIC FATHA WITH TWO DOTS;Mn;230;NSM;;;;;N;;;;;-065F;ARABIC WAVY HAMZA BELOW;Mn;220;NSM;;;;;N;;;;;-0660;ARABIC-INDIC DIGIT ZERO;Nd;0;AN;;0;0;0;N;;;;;-0661;ARABIC-INDIC DIGIT ONE;Nd;0;AN;;1;1;1;N;;;;;-0662;ARABIC-INDIC DIGIT TWO;Nd;0;AN;;2;2;2;N;;;;;-0663;ARABIC-INDIC DIGIT THREE;Nd;0;AN;;3;3;3;N;;;;;-0664;ARABIC-INDIC DIGIT FOUR;Nd;0;AN;;4;4;4;N;;;;;-0665;ARABIC-INDIC DIGIT FIVE;Nd;0;AN;;5;5;5;N;;;;;-0666;ARABIC-INDIC DIGIT SIX;Nd;0;AN;;6;6;6;N;;;;;-0667;ARABIC-INDIC DIGIT SEVEN;Nd;0;AN;;7;7;7;N;;;;;-0668;ARABIC-INDIC DIGIT EIGHT;Nd;0;AN;;8;8;8;N;;;;;-0669;ARABIC-INDIC DIGIT NINE;Nd;0;AN;;9;9;9;N;;;;;-066A;ARABIC PERCENT SIGN;Po;0;ET;;;;;N;;;;;-066B;ARABIC DECIMAL SEPARATOR;Po;0;AN;;;;;N;;;;;-066C;ARABIC THOUSANDS SEPARATOR;Po;0;AN;;;;;N;;;;;-066D;ARABIC FIVE POINTED STAR;Po;0;AL;;;;;N;;;;;-066E;ARABIC LETTER DOTLESS BEH;Lo;0;AL;;;;;N;;;;;-066F;ARABIC LETTER DOTLESS QAF;Lo;0;AL;;;;;N;;;;;-0670;ARABIC LETTER SUPERSCRIPT ALEF;Mn;35;NSM;;;;;N;ARABIC ALEF ABOVE;;;;-0671;ARABIC LETTER ALEF WASLA;Lo;0;AL;;;;;N;ARABIC LETTER HAMZAT WASL ON ALEF;;;;-0672;ARABIC LETTER ALEF WITH WAVY HAMZA ABOVE;Lo;0;AL;;;;;N;ARABIC LETTER WAVY HAMZAH ON ALEF;;;;-0673;ARABIC LETTER ALEF WITH WAVY HAMZA BELOW;Lo;0;AL;;;;;N;ARABIC LETTER WAVY HAMZAH UNDER ALEF;;;;-0674;ARABIC LETTER HIGH HAMZA;Lo;0;AL;;;;;N;ARABIC LETTER HIGH HAMZAH;;;;-0675;ARABIC LETTER HIGH HAMZA ALEF;Lo;0;AL;<compat> 0627 0674;;;;N;ARABIC LETTER HIGH HAMZAH ALEF;;;;-0676;ARABIC LETTER HIGH HAMZA WAW;Lo;0;AL;<compat> 0648 0674;;;;N;ARABIC LETTER HIGH HAMZAH WAW;;;;-0677;ARABIC LETTER U WITH HAMZA ABOVE;Lo;0;AL;<compat> 06C7 0674;;;;N;ARABIC LETTER HIGH HAMZAH WAW WITH DAMMAH;;;;-0678;ARABIC LETTER HIGH HAMZA YEH;Lo;0;AL;<compat> 064A 0674;;;;N;ARABIC LETTER HIGH HAMZAH YA;;;;-0679;ARABIC LETTER TTEH;Lo;0;AL;;;;;N;ARABIC LETTER TAA WITH SMALL TAH;;;;-067A;ARABIC LETTER TTEHEH;Lo;0;AL;;;;;N;ARABIC LETTER TAA WITH TWO DOTS VERTICAL ABOVE;;;;-067B;ARABIC LETTER BEEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA WITH TWO DOTS VERTICAL BELOW;;;;-067C;ARABIC LETTER TEH WITH RING;Lo;0;AL;;;;;N;ARABIC LETTER TAA WITH RING;;;;-067D;ARABIC LETTER TEH WITH THREE DOTS ABOVE DOWNWARDS;Lo;0;AL;;;;;N;ARABIC LETTER TAA WITH THREE DOTS ABOVE DOWNWARD;;;;-067E;ARABIC LETTER PEH;Lo;0;AL;;;;;N;ARABIC LETTER TAA WITH THREE DOTS BELOW;;;;-067F;ARABIC LETTER TEHEH;Lo;0;AL;;;;;N;ARABIC LETTER TAA WITH FOUR DOTS ABOVE;;;;-0680;ARABIC LETTER BEHEH;Lo;0;AL;;;;;N;ARABIC LETTER BAA WITH FOUR DOTS BELOW;;;;-0681;ARABIC LETTER HAH WITH HAMZA ABOVE;Lo;0;AL;;;;;N;ARABIC LETTER HAMZAH ON HAA;;;;-0682;ARABIC LETTER HAH WITH TWO DOTS VERTICAL ABOVE;Lo;0;AL;;;;;N;ARABIC LETTER HAA WITH TWO DOTS VERTICAL ABOVE;;;;-0683;ARABIC LETTER NYEH;Lo;0;AL;;;;;N;ARABIC LETTER HAA WITH MIDDLE TWO DOTS;;;;-0684;ARABIC LETTER DYEH;Lo;0;AL;;;;;N;ARABIC LETTER HAA WITH MIDDLE TWO DOTS VERTICAL;;;;-0685;ARABIC LETTER HAH WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;ARABIC LETTER HAA WITH THREE DOTS ABOVE;;;;-0686;ARABIC LETTER TCHEH;Lo;0;AL;;;;;N;ARABIC LETTER HAA WITH MIDDLE THREE DOTS DOWNWARD;;;;-0687;ARABIC LETTER TCHEHEH;Lo;0;AL;;;;;N;ARABIC LETTER HAA WITH MIDDLE FOUR DOTS;;;;-0688;ARABIC LETTER DDAL;Lo;0;AL;;;;;N;ARABIC LETTER DAL WITH SMALL TAH;;;;-0689;ARABIC LETTER DAL WITH RING;Lo;0;AL;;;;;N;;;;;-068A;ARABIC LETTER DAL WITH DOT BELOW;Lo;0;AL;;;;;N;;;;;-068B;ARABIC LETTER DAL WITH DOT BELOW AND SMALL TAH;Lo;0;AL;;;;;N;;;;;-068C;ARABIC LETTER DAHAL;Lo;0;AL;;;;;N;ARABIC LETTER DAL WITH TWO DOTS ABOVE;;;;-068D;ARABIC LETTER DDAHAL;Lo;0;AL;;;;;N;ARABIC LETTER DAL WITH TWO DOTS BELOW;;;;-068E;ARABIC LETTER DUL;Lo;0;AL;;;;;N;ARABIC LETTER DAL WITH THREE DOTS ABOVE;;;;-068F;ARABIC LETTER DAL WITH THREE DOTS ABOVE DOWNWARDS;Lo;0;AL;;;;;N;ARABIC LETTER DAL WITH THREE DOTS ABOVE DOWNWARD;;;;-0690;ARABIC LETTER DAL WITH FOUR DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-0691;ARABIC LETTER RREH;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH SMALL TAH;;;;-0692;ARABIC LETTER REH WITH SMALL V;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH SMALL V;;;;-0693;ARABIC LETTER REH WITH RING;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH RING;;;;-0694;ARABIC LETTER REH WITH DOT BELOW;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH DOT BELOW;;;;-0695;ARABIC LETTER REH WITH SMALL V BELOW;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH SMALL V BELOW;;;;-0696;ARABIC LETTER REH WITH DOT BELOW AND DOT ABOVE;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH DOT BELOW AND DOT ABOVE;;;;-0697;ARABIC LETTER REH WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH TWO DOTS ABOVE;;;;-0698;ARABIC LETTER JEH;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH THREE DOTS ABOVE;;;;-0699;ARABIC LETTER REH WITH FOUR DOTS ABOVE;Lo;0;AL;;;;;N;ARABIC LETTER RA WITH FOUR DOTS ABOVE;;;;-069A;ARABIC LETTER SEEN WITH DOT BELOW AND DOT ABOVE;Lo;0;AL;;;;;N;;;;;-069B;ARABIC LETTER SEEN WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;;;;;-069C;ARABIC LETTER SEEN WITH THREE DOTS BELOW AND THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-069D;ARABIC LETTER SAD WITH TWO DOTS BELOW;Lo;0;AL;;;;;N;;;;;-069E;ARABIC LETTER SAD WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-069F;ARABIC LETTER TAH WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-06A0;ARABIC LETTER AIN WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-06A1;ARABIC LETTER DOTLESS FEH;Lo;0;AL;;;;;N;ARABIC LETTER DOTLESS FA;;;;-06A2;ARABIC LETTER FEH WITH DOT MOVED BELOW;Lo;0;AL;;;;;N;ARABIC LETTER FA WITH DOT MOVED BELOW;;;;-06A3;ARABIC LETTER FEH WITH DOT BELOW;Lo;0;AL;;;;;N;ARABIC LETTER FA WITH DOT BELOW;;;;-06A4;ARABIC LETTER VEH;Lo;0;AL;;;;;N;ARABIC LETTER FA WITH THREE DOTS ABOVE;;;;-06A5;ARABIC LETTER FEH WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;ARABIC LETTER FA WITH THREE DOTS BELOW;;;;-06A6;ARABIC LETTER PEHEH;Lo;0;AL;;;;;N;ARABIC LETTER FA WITH FOUR DOTS ABOVE;;;;-06A7;ARABIC LETTER QAF WITH DOT ABOVE;Lo;0;AL;;;;;N;;;;;-06A8;ARABIC LETTER QAF WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-06A9;ARABIC LETTER KEHEH;Lo;0;AL;;;;;N;ARABIC LETTER OPEN CAF;;;;-06AA;ARABIC LETTER SWASH KAF;Lo;0;AL;;;;;N;ARABIC LETTER SWASH CAF;;;;-06AB;ARABIC LETTER KAF WITH RING;Lo;0;AL;;;;;N;ARABIC LETTER CAF WITH RING;;;;-06AC;ARABIC LETTER KAF WITH DOT ABOVE;Lo;0;AL;;;;;N;ARABIC LETTER CAF WITH DOT ABOVE;;;;-06AD;ARABIC LETTER NG;Lo;0;AL;;;;;N;ARABIC LETTER CAF WITH THREE DOTS ABOVE;;;;-06AE;ARABIC LETTER KAF WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;ARABIC LETTER CAF WITH THREE DOTS BELOW;;;;-06AF;ARABIC LETTER GAF;Lo;0;AL;;;;;N;;;;;-06B0;ARABIC LETTER GAF WITH RING;Lo;0;AL;;;;;N;;;;;-06B1;ARABIC LETTER NGOEH;Lo;0;AL;;;;;N;ARABIC LETTER GAF WITH TWO DOTS ABOVE;;;;-06B2;ARABIC LETTER GAF WITH TWO DOTS BELOW;Lo;0;AL;;;;;N;;;;;-06B3;ARABIC LETTER GUEH;Lo;0;AL;;;;;N;ARABIC LETTER GAF WITH TWO DOTS VERTICAL BELOW;;;;-06B4;ARABIC LETTER GAF WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-06B5;ARABIC LETTER LAM WITH SMALL V;Lo;0;AL;;;;;N;;;;;-06B6;ARABIC LETTER LAM WITH DOT ABOVE;Lo;0;AL;;;;;N;;;;;-06B7;ARABIC LETTER LAM WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-06B8;ARABIC LETTER LAM WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;;;;;-06B9;ARABIC LETTER NOON WITH DOT BELOW;Lo;0;AL;;;;;N;;;;;-06BA;ARABIC LETTER NOON GHUNNA;Lo;0;AL;;;;;N;ARABIC LETTER DOTLESS NOON;;;;-06BB;ARABIC LETTER RNOON;Lo;0;AL;;;;;N;ARABIC LETTER DOTLESS NOON WITH SMALL TAH;;;;-06BC;ARABIC LETTER NOON WITH RING;Lo;0;AL;;;;;N;;;;;-06BD;ARABIC LETTER NOON WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-06BE;ARABIC LETTER HEH DOACHASHMEE;Lo;0;AL;;;;;N;ARABIC LETTER KNOTTED HA;;;;-06BF;ARABIC LETTER TCHEH WITH DOT ABOVE;Lo;0;AL;;;;;N;;;;;-06C0;ARABIC LETTER HEH WITH YEH ABOVE;Lo;0;AL;06D5 0654;;;;N;ARABIC LETTER HAMZAH ON HA;;;;-06C1;ARABIC LETTER HEH GOAL;Lo;0;AL;;;;;N;ARABIC LETTER HA GOAL;;;;-06C2;ARABIC LETTER HEH GOAL WITH HAMZA ABOVE;Lo;0;AL;06C1 0654;;;;N;ARABIC LETTER HAMZAH ON HA GOAL;;;;-06C3;ARABIC LETTER TEH MARBUTA GOAL;Lo;0;AL;;;;;N;ARABIC LETTER TAA MARBUTAH GOAL;;;;-06C4;ARABIC LETTER WAW WITH RING;Lo;0;AL;;;;;N;;;;;-06C5;ARABIC LETTER KIRGHIZ OE;Lo;0;AL;;;;;N;ARABIC LETTER WAW WITH BAR;;;;-06C6;ARABIC LETTER OE;Lo;0;AL;;;;;N;ARABIC LETTER WAW WITH SMALL V;;;;-06C7;ARABIC LETTER U;Lo;0;AL;;;;;N;ARABIC LETTER WAW WITH DAMMAH;;;;-06C8;ARABIC LETTER YU;Lo;0;AL;;;;;N;ARABIC LETTER WAW WITH ALEF ABOVE;;;;-06C9;ARABIC LETTER KIRGHIZ YU;Lo;0;AL;;;;;N;ARABIC LETTER WAW WITH INVERTED SMALL V;;;;-06CA;ARABIC LETTER WAW WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-06CB;ARABIC LETTER VE;Lo;0;AL;;;;;N;ARABIC LETTER WAW WITH THREE DOTS ABOVE;;;;-06CC;ARABIC LETTER FARSI YEH;Lo;0;AL;;;;;N;ARABIC LETTER DOTLESS YA;;;;-06CD;ARABIC LETTER YEH WITH TAIL;Lo;0;AL;;;;;N;ARABIC LETTER YA WITH TAIL;;;;-06CE;ARABIC LETTER YEH WITH SMALL V;Lo;0;AL;;;;;N;ARABIC LETTER YA WITH SMALL V;;;;-06CF;ARABIC LETTER WAW WITH DOT ABOVE;Lo;0;AL;;;;;N;;;;;-06D0;ARABIC LETTER E;Lo;0;AL;;;;;N;ARABIC LETTER YA WITH TWO DOTS VERTICAL BELOW;;;;-06D1;ARABIC LETTER YEH WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;ARABIC LETTER YA WITH THREE DOTS BELOW;;;;-06D2;ARABIC LETTER YEH BARREE;Lo;0;AL;;;;;N;ARABIC LETTER YA BARREE;;;;-06D3;ARABIC LETTER YEH BARREE WITH HAMZA ABOVE;Lo;0;AL;06D2 0654;;;;N;ARABIC LETTER HAMZAH ON YA BARREE;;;;-06D4;ARABIC FULL STOP;Po;0;AL;;;;;N;ARABIC PERIOD;;;;-06D5;ARABIC LETTER AE;Lo;0;AL;;;;;N;;;;;-06D6;ARABIC SMALL HIGH LIGATURE SAD WITH LAM WITH ALEF MAKSURA;Mn;230;NSM;;;;;N;;;;;-06D7;ARABIC SMALL HIGH LIGATURE QAF WITH LAM WITH ALEF MAKSURA;Mn;230;NSM;;;;;N;;;;;-06D8;ARABIC SMALL HIGH MEEM INITIAL FORM;Mn;230;NSM;;;;;N;;;;;-06D9;ARABIC SMALL HIGH LAM ALEF;Mn;230;NSM;;;;;N;;;;;-06DA;ARABIC SMALL HIGH JEEM;Mn;230;NSM;;;;;N;;;;;-06DB;ARABIC SMALL HIGH THREE DOTS;Mn;230;NSM;;;;;N;;;;;-06DC;ARABIC SMALL HIGH SEEN;Mn;230;NSM;;;;;N;;;;;-06DD;ARABIC END OF AYAH;Cf;0;AN;;;;;N;;;;;-06DE;ARABIC START OF RUB EL HIZB;So;0;ON;;;;;N;;;;;-06DF;ARABIC SMALL HIGH ROUNDED ZERO;Mn;230;NSM;;;;;N;;;;;-06E0;ARABIC SMALL HIGH UPRIGHT RECTANGULAR ZERO;Mn;230;NSM;;;;;N;;;;;-06E1;ARABIC SMALL HIGH DOTLESS HEAD OF KHAH;Mn;230;NSM;;;;;N;;;;;-06E2;ARABIC SMALL HIGH MEEM ISOLATED FORM;Mn;230;NSM;;;;;N;;;;;-06E3;ARABIC SMALL LOW SEEN;Mn;220;NSM;;;;;N;;;;;-06E4;ARABIC SMALL HIGH MADDA;Mn;230;NSM;;;;;N;;;;;-06E5;ARABIC SMALL WAW;Lm;0;AL;;;;;N;;;;;-06E6;ARABIC SMALL YEH;Lm;0;AL;;;;;N;;;;;-06E7;ARABIC SMALL HIGH YEH;Mn;230;NSM;;;;;N;;;;;-06E8;ARABIC SMALL HIGH NOON;Mn;230;NSM;;;;;N;;;;;-06E9;ARABIC PLACE OF SAJDAH;So;0;ON;;;;;N;;;;;-06EA;ARABIC EMPTY CENTRE LOW STOP;Mn;220;NSM;;;;;N;;;;;-06EB;ARABIC EMPTY CENTRE HIGH STOP;Mn;230;NSM;;;;;N;;;;;-06EC;ARABIC ROUNDED HIGH STOP WITH FILLED CENTRE;Mn;230;NSM;;;;;N;;;;;-06ED;ARABIC SMALL LOW MEEM;Mn;220;NSM;;;;;N;;;;;-06EE;ARABIC LETTER DAL WITH INVERTED V;Lo;0;AL;;;;;N;;;;;-06EF;ARABIC LETTER REH WITH INVERTED V;Lo;0;AL;;;;;N;;;;;-06F0;EXTENDED ARABIC-INDIC DIGIT ZERO;Nd;0;EN;;0;0;0;N;EASTERN ARABIC-INDIC DIGIT ZERO;;;;-06F1;EXTENDED ARABIC-INDIC DIGIT ONE;Nd;0;EN;;1;1;1;N;EASTERN ARABIC-INDIC DIGIT ONE;;;;-06F2;EXTENDED ARABIC-INDIC DIGIT TWO;Nd;0;EN;;2;2;2;N;EASTERN ARABIC-INDIC DIGIT TWO;;;;-06F3;EXTENDED ARABIC-INDIC DIGIT THREE;Nd;0;EN;;3;3;3;N;EASTERN ARABIC-INDIC DIGIT THREE;;;;-06F4;EXTENDED ARABIC-INDIC DIGIT FOUR;Nd;0;EN;;4;4;4;N;EASTERN ARABIC-INDIC DIGIT FOUR;;;;-06F5;EXTENDED ARABIC-INDIC DIGIT FIVE;Nd;0;EN;;5;5;5;N;EASTERN ARABIC-INDIC DIGIT FIVE;;;;-06F6;EXTENDED ARABIC-INDIC DIGIT SIX;Nd;0;EN;;6;6;6;N;EASTERN ARABIC-INDIC DIGIT SIX;;;;-06F7;EXTENDED ARABIC-INDIC DIGIT SEVEN;Nd;0;EN;;7;7;7;N;EASTERN ARABIC-INDIC DIGIT SEVEN;;;;-06F8;EXTENDED ARABIC-INDIC DIGIT EIGHT;Nd;0;EN;;8;8;8;N;EASTERN ARABIC-INDIC DIGIT EIGHT;;;;-06F9;EXTENDED ARABIC-INDIC DIGIT NINE;Nd;0;EN;;9;9;9;N;EASTERN ARABIC-INDIC DIGIT NINE;;;;-06FA;ARABIC LETTER SHEEN WITH DOT BELOW;Lo;0;AL;;;;;N;;;;;-06FB;ARABIC LETTER DAD WITH DOT BELOW;Lo;0;AL;;;;;N;;;;;-06FC;ARABIC LETTER GHAIN WITH DOT BELOW;Lo;0;AL;;;;;N;;;;;-06FD;ARABIC SIGN SINDHI AMPERSAND;So;0;AL;;;;;N;;;;;-06FE;ARABIC SIGN SINDHI POSTPOSITION MEN;So;0;AL;;;;;N;;;;;-06FF;ARABIC LETTER HEH WITH INVERTED V;Lo;0;AL;;;;;N;;;;;-0700;SYRIAC END OF PARAGRAPH;Po;0;AL;;;;;N;;;;;-0701;SYRIAC SUPRALINEAR FULL STOP;Po;0;AL;;;;;N;;;;;-0702;SYRIAC SUBLINEAR FULL STOP;Po;0;AL;;;;;N;;;;;-0703;SYRIAC SUPRALINEAR COLON;Po;0;AL;;;;;N;;;;;-0704;SYRIAC SUBLINEAR COLON;Po;0;AL;;;;;N;;;;;-0705;SYRIAC HORIZONTAL COLON;Po;0;AL;;;;;N;;;;;-0706;SYRIAC COLON SKEWED LEFT;Po;0;AL;;;;;N;;;;;-0707;SYRIAC COLON SKEWED RIGHT;Po;0;AL;;;;;N;;;;;-0708;SYRIAC SUPRALINEAR COLON SKEWED LEFT;Po;0;AL;;;;;N;;;;;-0709;SYRIAC SUBLINEAR COLON SKEWED RIGHT;Po;0;AL;;;;;N;;;;;-070A;SYRIAC CONTRACTION;Po;0;AL;;;;;N;;;;;-070B;SYRIAC HARKLEAN OBELUS;Po;0;AL;;;;;N;;;;;-070C;SYRIAC HARKLEAN METOBELUS;Po;0;AL;;;;;N;;;;;-070D;SYRIAC HARKLEAN ASTERISCUS;Po;0;AL;;;;;N;;;;;-070F;SYRIAC ABBREVIATION MARK;Cf;0;AL;;;;;N;;;;;-0710;SYRIAC LETTER ALAPH;Lo;0;AL;;;;;N;;;;;-0711;SYRIAC LETTER SUPERSCRIPT ALAPH;Mn;36;NSM;;;;;N;;;;;-0712;SYRIAC LETTER BETH;Lo;0;AL;;;;;N;;;;;-0713;SYRIAC LETTER GAMAL;Lo;0;AL;;;;;N;;;;;-0714;SYRIAC LETTER GAMAL GARSHUNI;Lo;0;AL;;;;;N;;;;;-0715;SYRIAC LETTER DALATH;Lo;0;AL;;;;;N;;;;;-0716;SYRIAC LETTER DOTLESS DALATH RISH;Lo;0;AL;;;;;N;;;;;-0717;SYRIAC LETTER HE;Lo;0;AL;;;;;N;;;;;-0718;SYRIAC LETTER WAW;Lo;0;AL;;;;;N;;;;;-0719;SYRIAC LETTER ZAIN;Lo;0;AL;;;;;N;;;;;-071A;SYRIAC LETTER HETH;Lo;0;AL;;;;;N;;;;;-071B;SYRIAC LETTER TETH;Lo;0;AL;;;;;N;;;;;-071C;SYRIAC LETTER TETH GARSHUNI;Lo;0;AL;;;;;N;;;;;-071D;SYRIAC LETTER YUDH;Lo;0;AL;;;;;N;;;;;-071E;SYRIAC LETTER YUDH HE;Lo;0;AL;;;;;N;;;;;-071F;SYRIAC LETTER KAPH;Lo;0;AL;;;;;N;;;;;-0720;SYRIAC LETTER LAMADH;Lo;0;AL;;;;;N;;;;;-0721;SYRIAC LETTER MIM;Lo;0;AL;;;;;N;;;;;-0722;SYRIAC LETTER NUN;Lo;0;AL;;;;;N;;;;;-0723;SYRIAC LETTER SEMKATH;Lo;0;AL;;;;;N;;;;;-0724;SYRIAC LETTER FINAL SEMKATH;Lo;0;AL;;;;;N;;;;;-0725;SYRIAC LETTER E;Lo;0;AL;;;;;N;;;;;-0726;SYRIAC LETTER PE;Lo;0;AL;;;;;N;;;;;-0727;SYRIAC LETTER REVERSED PE;Lo;0;AL;;;;;N;;;;;-0728;SYRIAC LETTER SADHE;Lo;0;AL;;;;;N;;;;;-0729;SYRIAC LETTER QAPH;Lo;0;AL;;;;;N;;;;;-072A;SYRIAC LETTER RISH;Lo;0;AL;;;;;N;;;;;-072B;SYRIAC LETTER SHIN;Lo;0;AL;;;;;N;;;;;-072C;SYRIAC LETTER TAW;Lo;0;AL;;;;;N;;;;;-072D;SYRIAC LETTER PERSIAN BHETH;Lo;0;AL;;;;;N;;;;;-072E;SYRIAC LETTER PERSIAN GHAMAL;Lo;0;AL;;;;;N;;;;;-072F;SYRIAC LETTER PERSIAN DHALATH;Lo;0;AL;;;;;N;;;;;-0730;SYRIAC PTHAHA ABOVE;Mn;230;NSM;;;;;N;;;;;-0731;SYRIAC PTHAHA BELOW;Mn;220;NSM;;;;;N;;;;;-0732;SYRIAC PTHAHA DOTTED;Mn;230;NSM;;;;;N;;;;;-0733;SYRIAC ZQAPHA ABOVE;Mn;230;NSM;;;;;N;;;;;-0734;SYRIAC ZQAPHA BELOW;Mn;220;NSM;;;;;N;;;;;-0735;SYRIAC ZQAPHA DOTTED;Mn;230;NSM;;;;;N;;;;;-0736;SYRIAC RBASA ABOVE;Mn;230;NSM;;;;;N;;;;;-0737;SYRIAC RBASA BELOW;Mn;220;NSM;;;;;N;;;;;-0738;SYRIAC DOTTED ZLAMA HORIZONTAL;Mn;220;NSM;;;;;N;;;;;-0739;SYRIAC DOTTED ZLAMA ANGULAR;Mn;220;NSM;;;;;N;;;;;-073A;SYRIAC HBASA ABOVE;Mn;230;NSM;;;;;N;;;;;-073B;SYRIAC HBASA BELOW;Mn;220;NSM;;;;;N;;;;;-073C;SYRIAC HBASA-ESASA DOTTED;Mn;220;NSM;;;;;N;;;;;-073D;SYRIAC ESASA ABOVE;Mn;230;NSM;;;;;N;;;;;-073E;SYRIAC ESASA BELOW;Mn;220;NSM;;;;;N;;;;;-073F;SYRIAC RWAHA;Mn;230;NSM;;;;;N;;;;;-0740;SYRIAC FEMININE DOT;Mn;230;NSM;;;;;N;;;;;-0741;SYRIAC QUSHSHAYA;Mn;230;NSM;;;;;N;;;;;-0742;SYRIAC RUKKAKHA;Mn;220;NSM;;;;;N;;;;;-0743;SYRIAC TWO VERTICAL DOTS ABOVE;Mn;230;NSM;;;;;N;;;;;-0744;SYRIAC TWO VERTICAL DOTS BELOW;Mn;220;NSM;;;;;N;;;;;-0745;SYRIAC THREE DOTS ABOVE;Mn;230;NSM;;;;;N;;;;;-0746;SYRIAC THREE DOTS BELOW;Mn;220;NSM;;;;;N;;;;;-0747;SYRIAC OBLIQUE LINE ABOVE;Mn;230;NSM;;;;;N;;;;;-0748;SYRIAC OBLIQUE LINE BELOW;Mn;220;NSM;;;;;N;;;;;-0749;SYRIAC MUSIC;Mn;230;NSM;;;;;N;;;;;-074A;SYRIAC BARREKH;Mn;230;NSM;;;;;N;;;;;-074D;SYRIAC LETTER SOGDIAN ZHAIN;Lo;0;AL;;;;;N;;;;;-074E;SYRIAC LETTER SOGDIAN KHAPH;Lo;0;AL;;;;;N;;;;;-074F;SYRIAC LETTER SOGDIAN FE;Lo;0;AL;;;;;N;;;;;-0750;ARABIC LETTER BEH WITH THREE DOTS HORIZONTALLY BELOW;Lo;0;AL;;;;;N;;;;;-0751;ARABIC LETTER BEH WITH DOT BELOW AND THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-0752;ARABIC LETTER BEH WITH THREE DOTS POINTING UPWARDS BELOW;Lo;0;AL;;;;;N;;;;;-0753;ARABIC LETTER BEH WITH THREE DOTS POINTING UPWARDS BELOW AND TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-0754;ARABIC LETTER BEH WITH TWO DOTS BELOW AND DOT ABOVE;Lo;0;AL;;;;;N;;;;;-0755;ARABIC LETTER BEH WITH INVERTED SMALL V BELOW;Lo;0;AL;;;;;N;;;;;-0756;ARABIC LETTER BEH WITH SMALL V;Lo;0;AL;;;;;N;;;;;-0757;ARABIC LETTER HAH WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-0758;ARABIC LETTER HAH WITH THREE DOTS POINTING UPWARDS BELOW;Lo;0;AL;;;;;N;;;;;-0759;ARABIC LETTER DAL WITH TWO DOTS VERTICALLY BELOW AND SMALL TAH;Lo;0;AL;;;;;N;;;;;-075A;ARABIC LETTER DAL WITH INVERTED SMALL V BELOW;Lo;0;AL;;;;;N;;;;;-075B;ARABIC LETTER REH WITH STROKE;Lo;0;AL;;;;;N;;;;;-075C;ARABIC LETTER SEEN WITH FOUR DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-075D;ARABIC LETTER AIN WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-075E;ARABIC LETTER AIN WITH THREE DOTS POINTING DOWNWARDS ABOVE;Lo;0;AL;;;;;N;;;;;-075F;ARABIC LETTER AIN WITH TWO DOTS VERTICALLY ABOVE;Lo;0;AL;;;;;N;;;;;-0760;ARABIC LETTER FEH WITH TWO DOTS BELOW;Lo;0;AL;;;;;N;;;;;-0761;ARABIC LETTER FEH WITH THREE DOTS POINTING UPWARDS BELOW;Lo;0;AL;;;;;N;;;;;-0762;ARABIC LETTER KEHEH WITH DOT ABOVE;Lo;0;AL;;;;;N;;;;;-0763;ARABIC LETTER KEHEH WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-0764;ARABIC LETTER KEHEH WITH THREE DOTS POINTING UPWARDS BELOW;Lo;0;AL;;;;;N;;;;;-0765;ARABIC LETTER MEEM WITH DOT ABOVE;Lo;0;AL;;;;;N;;;;;-0766;ARABIC LETTER MEEM WITH DOT BELOW;Lo;0;AL;;;;;N;;;;;-0767;ARABIC LETTER NOON WITH TWO DOTS BELOW;Lo;0;AL;;;;;N;;;;;-0768;ARABIC LETTER NOON WITH SMALL TAH;Lo;0;AL;;;;;N;;;;;-0769;ARABIC LETTER NOON WITH SMALL V;Lo;0;AL;;;;;N;;;;;-076A;ARABIC LETTER LAM WITH BAR;Lo;0;AL;;;;;N;;;;;-076B;ARABIC LETTER REH WITH TWO DOTS VERTICALLY ABOVE;Lo;0;AL;;;;;N;;;;;-076C;ARABIC LETTER REH WITH HAMZA ABOVE;Lo;0;AL;;;;;N;;;;;-076D;ARABIC LETTER SEEN WITH TWO DOTS VERTICALLY ABOVE;Lo;0;AL;;;;;N;;;;;-076E;ARABIC LETTER HAH WITH SMALL ARABIC LETTER TAH BELOW;Lo;0;AL;;;;;N;;;;;-076F;ARABIC LETTER HAH WITH SMALL ARABIC LETTER TAH AND TWO DOTS;Lo;0;AL;;;;;N;;;;;-0770;ARABIC LETTER SEEN WITH SMALL ARABIC LETTER TAH AND TWO DOTS;Lo;0;AL;;;;;N;;;;;-0771;ARABIC LETTER REH WITH SMALL ARABIC LETTER TAH AND TWO DOTS;Lo;0;AL;;;;;N;;;;;-0772;ARABIC LETTER HAH WITH SMALL ARABIC LETTER TAH ABOVE;Lo;0;AL;;;;;N;;;;;-0773;ARABIC LETTER ALEF WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE;Lo;0;AL;;;;;N;;;;;-0774;ARABIC LETTER ALEF WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE;Lo;0;AL;;;;;N;;;;;-0775;ARABIC LETTER FARSI YEH WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE;Lo;0;AL;;;;;N;;;;;-0776;ARABIC LETTER FARSI YEH WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE;Lo;0;AL;;;;;N;;;;;-0777;ARABIC LETTER FARSI YEH WITH EXTENDED ARABIC-INDIC DIGIT FOUR BELOW;Lo;0;AL;;;;;N;;;;;-0778;ARABIC LETTER WAW WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE;Lo;0;AL;;;;;N;;;;;-0779;ARABIC LETTER WAW WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE;Lo;0;AL;;;;;N;;;;;-077A;ARABIC LETTER YEH BARREE WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE;Lo;0;AL;;;;;N;;;;;-077B;ARABIC LETTER YEH BARREE WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE;Lo;0;AL;;;;;N;;;;;-077C;ARABIC LETTER HAH WITH EXTENDED ARABIC-INDIC DIGIT FOUR BELOW;Lo;0;AL;;;;;N;;;;;-077D;ARABIC LETTER SEEN WITH EXTENDED ARABIC-INDIC DIGIT FOUR ABOVE;Lo;0;AL;;;;;N;;;;;-077E;ARABIC LETTER SEEN WITH INVERTED V;Lo;0;AL;;;;;N;;;;;-077F;ARABIC LETTER KAF WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-0780;THAANA LETTER HAA;Lo;0;AL;;;;;N;;;;;-0781;THAANA LETTER SHAVIYANI;Lo;0;AL;;;;;N;;;;;-0782;THAANA LETTER NOONU;Lo;0;AL;;;;;N;;;;;-0783;THAANA LETTER RAA;Lo;0;AL;;;;;N;;;;;-0784;THAANA LETTER BAA;Lo;0;AL;;;;;N;;;;;-0785;THAANA LETTER LHAVIYANI;Lo;0;AL;;;;;N;;;;;-0786;THAANA LETTER KAAFU;Lo;0;AL;;;;;N;;;;;-0787;THAANA LETTER ALIFU;Lo;0;AL;;;;;N;;;;;-0788;THAANA LETTER VAAVU;Lo;0;AL;;;;;N;;;;;-0789;THAANA LETTER MEEMU;Lo;0;AL;;;;;N;;;;;-078A;THAANA LETTER FAAFU;Lo;0;AL;;;;;N;;;;;-078B;THAANA LETTER DHAALU;Lo;0;AL;;;;;N;;;;;-078C;THAANA LETTER THAA;Lo;0;AL;;;;;N;;;;;-078D;THAANA LETTER LAAMU;Lo;0;AL;;;;;N;;;;;-078E;THAANA LETTER GAAFU;Lo;0;AL;;;;;N;;;;;-078F;THAANA LETTER GNAVIYANI;Lo;0;AL;;;;;N;;;;;-0790;THAANA LETTER SEENU;Lo;0;AL;;;;;N;;;;;-0791;THAANA LETTER DAVIYANI;Lo;0;AL;;;;;N;;;;;-0792;THAANA LETTER ZAVIYANI;Lo;0;AL;;;;;N;;;;;-0793;THAANA LETTER TAVIYANI;Lo;0;AL;;;;;N;;;;;-0794;THAANA LETTER YAA;Lo;0;AL;;;;;N;;;;;-0795;THAANA LETTER PAVIYANI;Lo;0;AL;;;;;N;;;;;-0796;THAANA LETTER JAVIYANI;Lo;0;AL;;;;;N;;;;;-0797;THAANA LETTER CHAVIYANI;Lo;0;AL;;;;;N;;;;;-0798;THAANA LETTER TTAA;Lo;0;AL;;;;;N;;;;;-0799;THAANA LETTER HHAA;Lo;0;AL;;;;;N;;;;;-079A;THAANA LETTER KHAA;Lo;0;AL;;;;;N;;;;;-079B;THAANA LETTER THAALU;Lo;0;AL;;;;;N;;;;;-079C;THAANA LETTER ZAA;Lo;0;AL;;;;;N;;;;;-079D;THAANA LETTER SHEENU;Lo;0;AL;;;;;N;;;;;-079E;THAANA LETTER SAADHU;Lo;0;AL;;;;;N;;;;;-079F;THAANA LETTER DAADHU;Lo;0;AL;;;;;N;;;;;-07A0;THAANA LETTER TO;Lo;0;AL;;;;;N;;;;;-07A1;THAANA LETTER ZO;Lo;0;AL;;;;;N;;;;;-07A2;THAANA LETTER AINU;Lo;0;AL;;;;;N;;;;;-07A3;THAANA LETTER GHAINU;Lo;0;AL;;;;;N;;;;;-07A4;THAANA LETTER QAAFU;Lo;0;AL;;;;;N;;;;;-07A5;THAANA LETTER WAAVU;Lo;0;AL;;;;;N;;;;;-07A6;THAANA ABAFILI;Mn;0;NSM;;;;;N;;;;;-07A7;THAANA AABAAFILI;Mn;0;NSM;;;;;N;;;;;-07A8;THAANA IBIFILI;Mn;0;NSM;;;;;N;;;;;-07A9;THAANA EEBEEFILI;Mn;0;NSM;;;;;N;;;;;-07AA;THAANA UBUFILI;Mn;0;NSM;;;;;N;;;;;-07AB;THAANA OOBOOFILI;Mn;0;NSM;;;;;N;;;;;-07AC;THAANA EBEFILI;Mn;0;NSM;;;;;N;;;;;-07AD;THAANA EYBEYFILI;Mn;0;NSM;;;;;N;;;;;-07AE;THAANA OBOFILI;Mn;0;NSM;;;;;N;;;;;-07AF;THAANA OABOAFILI;Mn;0;NSM;;;;;N;;;;;-07B0;THAANA SUKUN;Mn;0;NSM;;;;;N;;;;;-07B1;THAANA LETTER NAA;Lo;0;AL;;;;;N;;;;;-07C0;NKO DIGIT ZERO;Nd;0;R;;0;0;0;N;;;;;-07C1;NKO DIGIT ONE;Nd;0;R;;1;1;1;N;;;;;-07C2;NKO DIGIT TWO;Nd;0;R;;2;2;2;N;;;;;-07C3;NKO DIGIT THREE;Nd;0;R;;3;3;3;N;;;;;-07C4;NKO DIGIT FOUR;Nd;0;R;;4;4;4;N;;;;;-07C5;NKO DIGIT FIVE;Nd;0;R;;5;5;5;N;;;;;-07C6;NKO DIGIT SIX;Nd;0;R;;6;6;6;N;;;;;-07C7;NKO DIGIT SEVEN;Nd;0;R;;7;7;7;N;;;;;-07C8;NKO DIGIT EIGHT;Nd;0;R;;8;8;8;N;;;;;-07C9;NKO DIGIT NINE;Nd;0;R;;9;9;9;N;;;;;-07CA;NKO LETTER A;Lo;0;R;;;;;N;;;;;-07CB;NKO LETTER EE;Lo;0;R;;;;;N;;;;;-07CC;NKO LETTER I;Lo;0;R;;;;;N;;;;;-07CD;NKO LETTER E;Lo;0;R;;;;;N;;;;;-07CE;NKO LETTER U;Lo;0;R;;;;;N;;;;;-07CF;NKO LETTER OO;Lo;0;R;;;;;N;;;;;-07D0;NKO LETTER O;Lo;0;R;;;;;N;;;;;-07D1;NKO LETTER DAGBASINNA;Lo;0;R;;;;;N;;;;;-07D2;NKO LETTER N;Lo;0;R;;;;;N;;;;;-07D3;NKO LETTER BA;Lo;0;R;;;;;N;;;;;-07D4;NKO LETTER PA;Lo;0;R;;;;;N;;;;;-07D5;NKO LETTER TA;Lo;0;R;;;;;N;;;;;-07D6;NKO LETTER JA;Lo;0;R;;;;;N;;;;;-07D7;NKO LETTER CHA;Lo;0;R;;;;;N;;;;;-07D8;NKO LETTER DA;Lo;0;R;;;;;N;;;;;-07D9;NKO LETTER RA;Lo;0;R;;;;;N;;;;;-07DA;NKO LETTER RRA;Lo;0;R;;;;;N;;;;;-07DB;NKO LETTER SA;Lo;0;R;;;;;N;;;;;-07DC;NKO LETTER GBA;Lo;0;R;;;;;N;;;;;-07DD;NKO LETTER FA;Lo;0;R;;;;;N;;;;;-07DE;NKO LETTER KA;Lo;0;R;;;;;N;;;;;-07DF;NKO LETTER LA;Lo;0;R;;;;;N;;;;;-07E0;NKO LETTER NA WOLOSO;Lo;0;R;;;;;N;;;;;-07E1;NKO LETTER MA;Lo;0;R;;;;;N;;;;;-07E2;NKO LETTER NYA;Lo;0;R;;;;;N;;;;;-07E3;NKO LETTER NA;Lo;0;R;;;;;N;;;;;-07E4;NKO LETTER HA;Lo;0;R;;;;;N;;;;;-07E5;NKO LETTER WA;Lo;0;R;;;;;N;;;;;-07E6;NKO LETTER YA;Lo;0;R;;;;;N;;;;;-07E7;NKO LETTER NYA WOLOSO;Lo;0;R;;;;;N;;;;;-07E8;NKO LETTER JONA JA;Lo;0;R;;;;;N;;;;;-07E9;NKO LETTER JONA CHA;Lo;0;R;;;;;N;;;;;-07EA;NKO LETTER JONA RA;Lo;0;R;;;;;N;;;;;-07EB;NKO COMBINING SHORT HIGH TONE;Mn;230;NSM;;;;;N;;;;;-07EC;NKO COMBINING SHORT LOW TONE;Mn;230;NSM;;;;;N;;;;;-07ED;NKO COMBINING SHORT RISING TONE;Mn;230;NSM;;;;;N;;;;;-07EE;NKO COMBINING LONG DESCENDING TONE;Mn;230;NSM;;;;;N;;;;;-07EF;NKO COMBINING LONG HIGH TONE;Mn;230;NSM;;;;;N;;;;;-07F0;NKO COMBINING LONG LOW TONE;Mn;230;NSM;;;;;N;;;;;-07F1;NKO COMBINING LONG RISING TONE;Mn;230;NSM;;;;;N;;;;;-07F2;NKO COMBINING NASALIZATION MARK;Mn;220;NSM;;;;;N;;;;;-07F3;NKO COMBINING DOUBLE DOT ABOVE;Mn;230;NSM;;;;;N;;;;;-07F4;NKO HIGH TONE APOSTROPHE;Lm;0;R;;;;;N;;;;;-07F5;NKO LOW TONE APOSTROPHE;Lm;0;R;;;;;N;;;;;-07F6;NKO SYMBOL OO DENNEN;So;0;ON;;;;;N;;;;;-07F7;NKO SYMBOL GBAKURUNEN;Po;0;ON;;;;;N;;;;;-07F8;NKO COMMA;Po;0;ON;;;;;N;;;;;-07F9;NKO EXCLAMATION MARK;Po;0;ON;;;;;N;;;;;-07FA;NKO LAJANYALAN;Lm;0;R;;;;;N;;;;;-0800;SAMARITAN LETTER ALAF;Lo;0;R;;;;;N;;;;;-0801;SAMARITAN LETTER BIT;Lo;0;R;;;;;N;;;;;-0802;SAMARITAN LETTER GAMAN;Lo;0;R;;;;;N;;;;;-0803;SAMARITAN LETTER DALAT;Lo;0;R;;;;;N;;;;;-0804;SAMARITAN LETTER IY;Lo;0;R;;;;;N;;;;;-0805;SAMARITAN LETTER BAA;Lo;0;R;;;;;N;;;;;-0806;SAMARITAN LETTER ZEN;Lo;0;R;;;;;N;;;;;-0807;SAMARITAN LETTER IT;Lo;0;R;;;;;N;;;;;-0808;SAMARITAN LETTER TIT;Lo;0;R;;;;;N;;;;;-0809;SAMARITAN LETTER YUT;Lo;0;R;;;;;N;;;;;-080A;SAMARITAN LETTER KAAF;Lo;0;R;;;;;N;;;;;-080B;SAMARITAN LETTER LABAT;Lo;0;R;;;;;N;;;;;-080C;SAMARITAN LETTER MIM;Lo;0;R;;;;;N;;;;;-080D;SAMARITAN LETTER NUN;Lo;0;R;;;;;N;;;;;-080E;SAMARITAN LETTER SINGAAT;Lo;0;R;;;;;N;;;;;-080F;SAMARITAN LETTER IN;Lo;0;R;;;;;N;;;;;-0810;SAMARITAN LETTER FI;Lo;0;R;;;;;N;;;;;-0811;SAMARITAN LETTER TSAADIY;Lo;0;R;;;;;N;;;;;-0812;SAMARITAN LETTER QUF;Lo;0;R;;;;;N;;;;;-0813;SAMARITAN LETTER RISH;Lo;0;R;;;;;N;;;;;-0814;SAMARITAN LETTER SHAN;Lo;0;R;;;;;N;;;;;-0815;SAMARITAN LETTER TAAF;Lo;0;R;;;;;N;;;;;-0816;SAMARITAN MARK IN;Mn;230;NSM;;;;;N;;;;;-0817;SAMARITAN MARK IN-ALAF;Mn;230;NSM;;;;;N;;;;;-0818;SAMARITAN MARK OCCLUSION;Mn;230;NSM;;;;;N;;;;;-0819;SAMARITAN MARK DAGESH;Mn;230;NSM;;;;;N;;;;;-081A;SAMARITAN MODIFIER LETTER EPENTHETIC YUT;Lm;0;R;;;;;N;;;;;-081B;SAMARITAN MARK EPENTHETIC YUT;Mn;230;NSM;;;;;N;;;;;-081C;SAMARITAN VOWEL SIGN LONG E;Mn;230;NSM;;;;;N;;;;;-081D;SAMARITAN VOWEL SIGN E;Mn;230;NSM;;;;;N;;;;;-081E;SAMARITAN VOWEL SIGN OVERLONG AA;Mn;230;NSM;;;;;N;;;;;-081F;SAMARITAN VOWEL SIGN LONG AA;Mn;230;NSM;;;;;N;;;;;-0820;SAMARITAN VOWEL SIGN AA;Mn;230;NSM;;;;;N;;;;;-0821;SAMARITAN VOWEL SIGN OVERLONG A;Mn;230;NSM;;;;;N;;;;;-0822;SAMARITAN VOWEL SIGN LONG A;Mn;230;NSM;;;;;N;;;;;-0823;SAMARITAN VOWEL SIGN A;Mn;230;NSM;;;;;N;;;;;-0824;SAMARITAN MODIFIER LETTER SHORT A;Lm;0;R;;;;;N;;;;;-0825;SAMARITAN VOWEL SIGN SHORT A;Mn;230;NSM;;;;;N;;;;;-0826;SAMARITAN VOWEL SIGN LONG U;Mn;230;NSM;;;;;N;;;;;-0827;SAMARITAN VOWEL SIGN U;Mn;230;NSM;;;;;N;;;;;-0828;SAMARITAN MODIFIER LETTER I;Lm;0;R;;;;;N;;;;;-0829;SAMARITAN VOWEL SIGN LONG I;Mn;230;NSM;;;;;N;;;;;-082A;SAMARITAN VOWEL SIGN I;Mn;230;NSM;;;;;N;;;;;-082B;SAMARITAN VOWEL SIGN O;Mn;230;NSM;;;;;N;;;;;-082C;SAMARITAN VOWEL SIGN SUKUN;Mn;230;NSM;;;;;N;;;;;-082D;SAMARITAN MARK NEQUDAA;Mn;230;NSM;;;;;N;;;;;-0830;SAMARITAN PUNCTUATION NEQUDAA;Po;0;R;;;;;N;;;;;-0831;SAMARITAN PUNCTUATION AFSAAQ;Po;0;R;;;;;N;;;;;-0832;SAMARITAN PUNCTUATION ANGED;Po;0;R;;;;;N;;;;;-0833;SAMARITAN PUNCTUATION BAU;Po;0;R;;;;;N;;;;;-0834;SAMARITAN PUNCTUATION ATMAAU;Po;0;R;;;;;N;;;;;-0835;SAMARITAN PUNCTUATION SHIYYAALAA;Po;0;R;;;;;N;;;;;-0836;SAMARITAN ABBREVIATION MARK;Po;0;R;;;;;N;;;;;-0837;SAMARITAN PUNCTUATION MELODIC QITSA;Po;0;R;;;;;N;;;;;-0838;SAMARITAN PUNCTUATION ZIQAA;Po;0;R;;;;;N;;;;;-0839;SAMARITAN PUNCTUATION QITSA;Po;0;R;;;;;N;;;;;-083A;SAMARITAN PUNCTUATION ZAEF;Po;0;R;;;;;N;;;;;-083B;SAMARITAN PUNCTUATION TURU;Po;0;R;;;;;N;;;;;-083C;SAMARITAN PUNCTUATION ARKAANU;Po;0;R;;;;;N;;;;;-083D;SAMARITAN PUNCTUATION SOF MASHFAAT;Po;0;R;;;;;N;;;;;-083E;SAMARITAN PUNCTUATION ANNAAU;Po;0;R;;;;;N;;;;;-0840;MANDAIC LETTER HALQA;Lo;0;R;;;;;N;;;;;-0841;MANDAIC LETTER AB;Lo;0;R;;;;;N;;;;;-0842;MANDAIC LETTER AG;Lo;0;R;;;;;N;;;;;-0843;MANDAIC LETTER AD;Lo;0;R;;;;;N;;;;;-0844;MANDAIC LETTER AH;Lo;0;R;;;;;N;;;;;-0845;MANDAIC LETTER USHENNA;Lo;0;R;;;;;N;;;;;-0846;MANDAIC LETTER AZ;Lo;0;R;;;;;N;;;;;-0847;MANDAIC LETTER IT;Lo;0;R;;;;;N;;;;;-0848;MANDAIC LETTER ATT;Lo;0;R;;;;;N;;;;;-0849;MANDAIC LETTER AKSA;Lo;0;R;;;;;N;;;;;-084A;MANDAIC LETTER AK;Lo;0;R;;;;;N;;;;;-084B;MANDAIC LETTER AL;Lo;0;R;;;;;N;;;;;-084C;MANDAIC LETTER AM;Lo;0;R;;;;;N;;;;;-084D;MANDAIC LETTER AN;Lo;0;R;;;;;N;;;;;-084E;MANDAIC LETTER AS;Lo;0;R;;;;;N;;;;;-084F;MANDAIC LETTER IN;Lo;0;R;;;;;N;;;;;-0850;MANDAIC LETTER AP;Lo;0;R;;;;;N;;;;;-0851;MANDAIC LETTER ASZ;Lo;0;R;;;;;N;;;;;-0852;MANDAIC LETTER AQ;Lo;0;R;;;;;N;;;;;-0853;MANDAIC LETTER AR;Lo;0;R;;;;;N;;;;;-0854;MANDAIC LETTER ASH;Lo;0;R;;;;;N;;;;;-0855;MANDAIC LETTER AT;Lo;0;R;;;;;N;;;;;-0856;MANDAIC LETTER DUSHENNA;Lo;0;R;;;;;N;;;;;-0857;MANDAIC LETTER KAD;Lo;0;R;;;;;N;;;;;-0858;MANDAIC LETTER AIN;Lo;0;R;;;;;N;;;;;-0859;MANDAIC AFFRICATION MARK;Mn;220;NSM;;;;;N;;;;;-085A;MANDAIC VOCALIZATION MARK;Mn;220;NSM;;;;;N;;;;;-085B;MANDAIC GEMINATION MARK;Mn;220;NSM;;;;;N;;;;;-085E;MANDAIC PUNCTUATION;Po;0;R;;;;;N;;;;;-08A0;ARABIC LETTER BEH WITH SMALL V BELOW;Lo;0;AL;;;;;N;;;;;-08A1;ARABIC LETTER BEH WITH HAMZA ABOVE;Lo;0;AL;;;;;N;;;;;-08A2;ARABIC LETTER JEEM WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-08A3;ARABIC LETTER TAH WITH TWO DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-08A4;ARABIC LETTER FEH WITH DOT BELOW AND THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-08A5;ARABIC LETTER QAF WITH DOT BELOW;Lo;0;AL;;;;;N;;;;;-08A6;ARABIC LETTER LAM WITH DOUBLE BAR;Lo;0;AL;;;;;N;;;;;-08A7;ARABIC LETTER MEEM WITH THREE DOTS ABOVE;Lo;0;AL;;;;;N;;;;;-08A8;ARABIC LETTER YEH WITH TWO DOTS BELOW AND HAMZA ABOVE;Lo;0;AL;;;;;N;;;;;-08A9;ARABIC LETTER YEH WITH TWO DOTS BELOW AND DOT ABOVE;Lo;0;AL;;;;;N;;;;;-08AA;ARABIC LETTER REH WITH LOOP;Lo;0;AL;;;;;N;;;;;-08AB;ARABIC LETTER WAW WITH DOT WITHIN;Lo;0;AL;;;;;N;;;;;-08AC;ARABIC LETTER ROHINGYA YEH;Lo;0;AL;;;;;N;;;;;-08AD;ARABIC LETTER LOW ALEF;Lo;0;AL;;;;;N;;;;;-08AE;ARABIC LETTER DAL WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;;;;;-08AF;ARABIC LETTER SAD WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;;;;;-08B0;ARABIC LETTER GAF WITH INVERTED STROKE;Lo;0;AL;;;;;N;;;;;-08B1;ARABIC LETTER STRAIGHT WAW;Lo;0;AL;;;;;N;;;;;-08B2;ARABIC LETTER ZAIN WITH INVERTED V ABOVE;Lo;0;AL;;;;;N;;;;;-08E4;ARABIC CURLY FATHA;Mn;230;NSM;;;;;N;;;;;-08E5;ARABIC CURLY DAMMA;Mn;230;NSM;;;;;N;;;;;-08E6;ARABIC CURLY KASRA;Mn;220;NSM;;;;;N;;;;;-08E7;ARABIC CURLY FATHATAN;Mn;230;NSM;;;;;N;;;;;-08E8;ARABIC CURLY DAMMATAN;Mn;230;NSM;;;;;N;;;;;-08E9;ARABIC CURLY KASRATAN;Mn;220;NSM;;;;;N;;;;;-08EA;ARABIC TONE ONE DOT ABOVE;Mn;230;NSM;;;;;N;;;;;-08EB;ARABIC TONE TWO DOTS ABOVE;Mn;230;NSM;;;;;N;;;;;-08EC;ARABIC TONE LOOP ABOVE;Mn;230;NSM;;;;;N;;;;;-08ED;ARABIC TONE ONE DOT BELOW;Mn;220;NSM;;;;;N;;;;;-08EE;ARABIC TONE TWO DOTS BELOW;Mn;220;NSM;;;;;N;;;;;-08EF;ARABIC TONE LOOP BELOW;Mn;220;NSM;;;;;N;;;;;-08F0;ARABIC OPEN FATHATAN;Mn;27;NSM;;;;;N;;;;;-08F1;ARABIC OPEN DAMMATAN;Mn;28;NSM;;;;;N;;;;;-08F2;ARABIC OPEN KASRATAN;Mn;29;NSM;;;;;N;;;;;-08F3;ARABIC SMALL HIGH WAW;Mn;230;NSM;;;;;N;;;;;-08F4;ARABIC FATHA WITH RING;Mn;230;NSM;;;;;N;;;;;-08F5;ARABIC FATHA WITH DOT ABOVE;Mn;230;NSM;;;;;N;;;;;-08F6;ARABIC KASRA WITH DOT BELOW;Mn;220;NSM;;;;;N;;;;;-08F7;ARABIC LEFT ARROWHEAD ABOVE;Mn;230;NSM;;;;;N;;;;;-08F8;ARABIC RIGHT ARROWHEAD ABOVE;Mn;230;NSM;;;;;N;;;;;-08F9;ARABIC LEFT ARROWHEAD BELOW;Mn;220;NSM;;;;;N;;;;;-08FA;ARABIC RIGHT ARROWHEAD BELOW;Mn;220;NSM;;;;;N;;;;;-08FB;ARABIC DOUBLE RIGHT ARROWHEAD ABOVE;Mn;230;NSM;;;;;N;;;;;-08FC;ARABIC DOUBLE RIGHT ARROWHEAD ABOVE WITH DOT;Mn;230;NSM;;;;;N;;;;;-08FD;ARABIC RIGHT ARROWHEAD ABOVE WITH DOT;Mn;230;NSM;;;;;N;;;;;-08FE;ARABIC DAMMA WITH DOT;Mn;230;NSM;;;;;N;;;;;-08FF;ARABIC MARK SIDEWAYS NOON GHUNNA;Mn;230;NSM;;;;;N;;;;;-0900;DEVANAGARI SIGN INVERTED CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-0901;DEVANAGARI SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-0902;DEVANAGARI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-0903;DEVANAGARI SIGN VISARGA;Mc;0;L;;;;;N;;;;;-0904;DEVANAGARI LETTER SHORT A;Lo;0;L;;;;;N;;;;;-0905;DEVANAGARI LETTER A;Lo;0;L;;;;;N;;;;;-0906;DEVANAGARI LETTER AA;Lo;0;L;;;;;N;;;;;-0907;DEVANAGARI LETTER I;Lo;0;L;;;;;N;;;;;-0908;DEVANAGARI LETTER II;Lo;0;L;;;;;N;;;;;-0909;DEVANAGARI LETTER U;Lo;0;L;;;;;N;;;;;-090A;DEVANAGARI LETTER UU;Lo;0;L;;;;;N;;;;;-090B;DEVANAGARI LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-090C;DEVANAGARI LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-090D;DEVANAGARI LETTER CANDRA E;Lo;0;L;;;;;N;;;;;-090E;DEVANAGARI LETTER SHORT E;Lo;0;L;;;;;N;;;;;-090F;DEVANAGARI LETTER E;Lo;0;L;;;;;N;;;;;-0910;DEVANAGARI LETTER AI;Lo;0;L;;;;;N;;;;;-0911;DEVANAGARI LETTER CANDRA O;Lo;0;L;;;;;N;;;;;-0912;DEVANAGARI LETTER SHORT O;Lo;0;L;;;;;N;;;;;-0913;DEVANAGARI LETTER O;Lo;0;L;;;;;N;;;;;-0914;DEVANAGARI LETTER AU;Lo;0;L;;;;;N;;;;;-0915;DEVANAGARI LETTER KA;Lo;0;L;;;;;N;;;;;-0916;DEVANAGARI LETTER KHA;Lo;0;L;;;;;N;;;;;-0917;DEVANAGARI LETTER GA;Lo;0;L;;;;;N;;;;;-0918;DEVANAGARI LETTER GHA;Lo;0;L;;;;;N;;;;;-0919;DEVANAGARI LETTER NGA;Lo;0;L;;;;;N;;;;;-091A;DEVANAGARI LETTER CA;Lo;0;L;;;;;N;;;;;-091B;DEVANAGARI LETTER CHA;Lo;0;L;;;;;N;;;;;-091C;DEVANAGARI LETTER JA;Lo;0;L;;;;;N;;;;;-091D;DEVANAGARI LETTER JHA;Lo;0;L;;;;;N;;;;;-091E;DEVANAGARI LETTER NYA;Lo;0;L;;;;;N;;;;;-091F;DEVANAGARI LETTER TTA;Lo;0;L;;;;;N;;;;;-0920;DEVANAGARI LETTER TTHA;Lo;0;L;;;;;N;;;;;-0921;DEVANAGARI LETTER DDA;Lo;0;L;;;;;N;;;;;-0922;DEVANAGARI LETTER DDHA;Lo;0;L;;;;;N;;;;;-0923;DEVANAGARI LETTER NNA;Lo;0;L;;;;;N;;;;;-0924;DEVANAGARI LETTER TA;Lo;0;L;;;;;N;;;;;-0925;DEVANAGARI LETTER THA;Lo;0;L;;;;;N;;;;;-0926;DEVANAGARI LETTER DA;Lo;0;L;;;;;N;;;;;-0927;DEVANAGARI LETTER DHA;Lo;0;L;;;;;N;;;;;-0928;DEVANAGARI LETTER NA;Lo;0;L;;;;;N;;;;;-0929;DEVANAGARI LETTER NNNA;Lo;0;L;0928 093C;;;;N;;;;;-092A;DEVANAGARI LETTER PA;Lo;0;L;;;;;N;;;;;-092B;DEVANAGARI LETTER PHA;Lo;0;L;;;;;N;;;;;-092C;DEVANAGARI LETTER BA;Lo;0;L;;;;;N;;;;;-092D;DEVANAGARI LETTER BHA;Lo;0;L;;;;;N;;;;;-092E;DEVANAGARI LETTER MA;Lo;0;L;;;;;N;;;;;-092F;DEVANAGARI LETTER YA;Lo;0;L;;;;;N;;;;;-0930;DEVANAGARI LETTER RA;Lo;0;L;;;;;N;;;;;-0931;DEVANAGARI LETTER RRA;Lo;0;L;0930 093C;;;;N;;;;;-0932;DEVANAGARI LETTER LA;Lo;0;L;;;;;N;;;;;-0933;DEVANAGARI LETTER LLA;Lo;0;L;;;;;N;;;;;-0934;DEVANAGARI LETTER LLLA;Lo;0;L;0933 093C;;;;N;;;;;-0935;DEVANAGARI LETTER VA;Lo;0;L;;;;;N;;;;;-0936;DEVANAGARI LETTER SHA;Lo;0;L;;;;;N;;;;;-0937;DEVANAGARI LETTER SSA;Lo;0;L;;;;;N;;;;;-0938;DEVANAGARI LETTER SA;Lo;0;L;;;;;N;;;;;-0939;DEVANAGARI LETTER HA;Lo;0;L;;;;;N;;;;;-093A;DEVANAGARI VOWEL SIGN OE;Mn;0;NSM;;;;;N;;;;;-093B;DEVANAGARI VOWEL SIGN OOE;Mc;0;L;;;;;N;;;;;-093C;DEVANAGARI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-093D;DEVANAGARI SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-093E;DEVANAGARI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-093F;DEVANAGARI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-0940;DEVANAGARI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-0941;DEVANAGARI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-0942;DEVANAGARI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-0943;DEVANAGARI VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-0944;DEVANAGARI VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-0945;DEVANAGARI VOWEL SIGN CANDRA E;Mn;0;NSM;;;;;N;;;;;-0946;DEVANAGARI VOWEL SIGN SHORT E;Mn;0;NSM;;;;;N;;;;;-0947;DEVANAGARI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-0948;DEVANAGARI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-0949;DEVANAGARI VOWEL SIGN CANDRA O;Mc;0;L;;;;;N;;;;;-094A;DEVANAGARI VOWEL SIGN SHORT O;Mc;0;L;;;;;N;;;;;-094B;DEVANAGARI VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-094C;DEVANAGARI VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-094D;DEVANAGARI SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-094E;DEVANAGARI VOWEL SIGN PRISHTHAMATRA E;Mc;0;L;;;;;N;;;;;-094F;DEVANAGARI VOWEL SIGN AW;Mc;0;L;;;;;N;;;;;-0950;DEVANAGARI OM;Lo;0;L;;;;;N;;;;;-0951;DEVANAGARI STRESS SIGN UDATTA;Mn;230;NSM;;;;;N;;;;;-0952;DEVANAGARI STRESS SIGN ANUDATTA;Mn;220;NSM;;;;;N;;;;;-0953;DEVANAGARI GRAVE ACCENT;Mn;230;NSM;;;;;N;;;;;-0954;DEVANAGARI ACUTE ACCENT;Mn;230;NSM;;;;;N;;;;;-0955;DEVANAGARI VOWEL SIGN CANDRA LONG E;Mn;0;NSM;;;;;N;;;;;-0956;DEVANAGARI VOWEL SIGN UE;Mn;0;NSM;;;;;N;;;;;-0957;DEVANAGARI VOWEL SIGN UUE;Mn;0;NSM;;;;;N;;;;;-0958;DEVANAGARI LETTER QA;Lo;0;L;0915 093C;;;;N;;;;;-0959;DEVANAGARI LETTER KHHA;Lo;0;L;0916 093C;;;;N;;;;;-095A;DEVANAGARI LETTER GHHA;Lo;0;L;0917 093C;;;;N;;;;;-095B;DEVANAGARI LETTER ZA;Lo;0;L;091C 093C;;;;N;;;;;-095C;DEVANAGARI LETTER DDDHA;Lo;0;L;0921 093C;;;;N;;;;;-095D;DEVANAGARI LETTER RHA;Lo;0;L;0922 093C;;;;N;;;;;-095E;DEVANAGARI LETTER FA;Lo;0;L;092B 093C;;;;N;;;;;-095F;DEVANAGARI LETTER YYA;Lo;0;L;092F 093C;;;;N;;;;;-0960;DEVANAGARI LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-0961;DEVANAGARI LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-0962;DEVANAGARI VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-0963;DEVANAGARI VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-0964;DEVANAGARI DANDA;Po;0;L;;;;;N;;;;;-0965;DEVANAGARI DOUBLE DANDA;Po;0;L;;;;;N;;;;;-0966;DEVANAGARI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0967;DEVANAGARI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0968;DEVANAGARI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0969;DEVANAGARI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-096A;DEVANAGARI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-096B;DEVANAGARI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-096C;DEVANAGARI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-096D;DEVANAGARI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-096E;DEVANAGARI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-096F;DEVANAGARI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0970;DEVANAGARI ABBREVIATION SIGN;Po;0;L;;;;;N;;;;;-0971;DEVANAGARI SIGN HIGH SPACING DOT;Lm;0;L;;;;;N;;;;;-0972;DEVANAGARI LETTER CANDRA A;Lo;0;L;;;;;N;;;;;-0973;DEVANAGARI LETTER OE;Lo;0;L;;;;;N;;;;;-0974;DEVANAGARI LETTER OOE;Lo;0;L;;;;;N;;;;;-0975;DEVANAGARI LETTER AW;Lo;0;L;;;;;N;;;;;-0976;DEVANAGARI LETTER UE;Lo;0;L;;;;;N;;;;;-0977;DEVANAGARI LETTER UUE;Lo;0;L;;;;;N;;;;;-0978;DEVANAGARI LETTER MARWARI DDA;Lo;0;L;;;;;N;;;;;-0979;DEVANAGARI LETTER ZHA;Lo;0;L;;;;;N;;;;;-097A;DEVANAGARI LETTER HEAVY YA;Lo;0;L;;;;;N;;;;;-097B;DEVANAGARI LETTER GGA;Lo;0;L;;;;;N;;;;;-097C;DEVANAGARI LETTER JJA;Lo;0;L;;;;;N;;;;;-097D;DEVANAGARI LETTER GLOTTAL STOP;Lo;0;L;;;;;N;;;;;-097E;DEVANAGARI LETTER DDDA;Lo;0;L;;;;;N;;;;;-097F;DEVANAGARI LETTER BBA;Lo;0;L;;;;;N;;;;;-0980;BENGALI ANJI;Lo;0;L;;;;;N;;;;;-0981;BENGALI SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-0982;BENGALI SIGN ANUSVARA;Mc;0;L;;;;;N;;;;;-0983;BENGALI SIGN VISARGA;Mc;0;L;;;;;N;;;;;-0985;BENGALI LETTER A;Lo;0;L;;;;;N;;;;;-0986;BENGALI LETTER AA;Lo;0;L;;;;;N;;;;;-0987;BENGALI LETTER I;Lo;0;L;;;;;N;;;;;-0988;BENGALI LETTER II;Lo;0;L;;;;;N;;;;;-0989;BENGALI LETTER U;Lo;0;L;;;;;N;;;;;-098A;BENGALI LETTER UU;Lo;0;L;;;;;N;;;;;-098B;BENGALI LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-098C;BENGALI LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-098F;BENGALI LETTER E;Lo;0;L;;;;;N;;;;;-0990;BENGALI LETTER AI;Lo;0;L;;;;;N;;;;;-0993;BENGALI LETTER O;Lo;0;L;;;;;N;;;;;-0994;BENGALI LETTER AU;Lo;0;L;;;;;N;;;;;-0995;BENGALI LETTER KA;Lo;0;L;;;;;N;;;;;-0996;BENGALI LETTER KHA;Lo;0;L;;;;;N;;;;;-0997;BENGALI LETTER GA;Lo;0;L;;;;;N;;;;;-0998;BENGALI LETTER GHA;Lo;0;L;;;;;N;;;;;-0999;BENGALI LETTER NGA;Lo;0;L;;;;;N;;;;;-099A;BENGALI LETTER CA;Lo;0;L;;;;;N;;;;;-099B;BENGALI LETTER CHA;Lo;0;L;;;;;N;;;;;-099C;BENGALI LETTER JA;Lo;0;L;;;;;N;;;;;-099D;BENGALI LETTER JHA;Lo;0;L;;;;;N;;;;;-099E;BENGALI LETTER NYA;Lo;0;L;;;;;N;;;;;-099F;BENGALI LETTER TTA;Lo;0;L;;;;;N;;;;;-09A0;BENGALI LETTER TTHA;Lo;0;L;;;;;N;;;;;-09A1;BENGALI LETTER DDA;Lo;0;L;;;;;N;;;;;-09A2;BENGALI LETTER DDHA;Lo;0;L;;;;;N;;;;;-09A3;BENGALI LETTER NNA;Lo;0;L;;;;;N;;;;;-09A4;BENGALI LETTER TA;Lo;0;L;;;;;N;;;;;-09A5;BENGALI LETTER THA;Lo;0;L;;;;;N;;;;;-09A6;BENGALI LETTER DA;Lo;0;L;;;;;N;;;;;-09A7;BENGALI LETTER DHA;Lo;0;L;;;;;N;;;;;-09A8;BENGALI LETTER NA;Lo;0;L;;;;;N;;;;;-09AA;BENGALI LETTER PA;Lo;0;L;;;;;N;;;;;-09AB;BENGALI LETTER PHA;Lo;0;L;;;;;N;;;;;-09AC;BENGALI LETTER BA;Lo;0;L;;;;;N;;;;;-09AD;BENGALI LETTER BHA;Lo;0;L;;;;;N;;;;;-09AE;BENGALI LETTER MA;Lo;0;L;;;;;N;;;;;-09AF;BENGALI LETTER YA;Lo;0;L;;;;;N;;;;;-09B0;BENGALI LETTER RA;Lo;0;L;;;;;N;;;;;-09B2;BENGALI LETTER LA;Lo;0;L;;;;;N;;;;;-09B6;BENGALI LETTER SHA;Lo;0;L;;;;;N;;;;;-09B7;BENGALI LETTER SSA;Lo;0;L;;;;;N;;;;;-09B8;BENGALI LETTER SA;Lo;0;L;;;;;N;;;;;-09B9;BENGALI LETTER HA;Lo;0;L;;;;;N;;;;;-09BC;BENGALI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-09BD;BENGALI SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-09BE;BENGALI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-09BF;BENGALI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-09C0;BENGALI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-09C1;BENGALI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-09C2;BENGALI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-09C3;BENGALI VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-09C4;BENGALI VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-09C7;BENGALI VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-09C8;BENGALI VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-09CB;BENGALI VOWEL SIGN O;Mc;0;L;09C7 09BE;;;;N;;;;;-09CC;BENGALI VOWEL SIGN AU;Mc;0;L;09C7 09D7;;;;N;;;;;-09CD;BENGALI SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-09CE;BENGALI LETTER KHANDA TA;Lo;0;L;;;;;N;;;;;-09D7;BENGALI AU LENGTH MARK;Mc;0;L;;;;;N;;;;;-09DC;BENGALI LETTER RRA;Lo;0;L;09A1 09BC;;;;N;;;;;-09DD;BENGALI LETTER RHA;Lo;0;L;09A2 09BC;;;;N;;;;;-09DF;BENGALI LETTER YYA;Lo;0;L;09AF 09BC;;;;N;;;;;-09E0;BENGALI LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-09E1;BENGALI LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-09E2;BENGALI VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-09E3;BENGALI VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-09E6;BENGALI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-09E7;BENGALI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-09E8;BENGALI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-09E9;BENGALI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-09EA;BENGALI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-09EB;BENGALI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-09EC;BENGALI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-09ED;BENGALI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-09EE;BENGALI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-09EF;BENGALI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-09F0;BENGALI LETTER RA WITH MIDDLE DIAGONAL;Lo;0;L;;;;;N;;;;;-09F1;BENGALI LETTER RA WITH LOWER DIAGONAL;Lo;0;L;;;;;N;BENGALI LETTER VA WITH LOWER DIAGONAL;;;;-09F2;BENGALI RUPEE MARK;Sc;0;ET;;;;;N;;;;;-09F3;BENGALI RUPEE SIGN;Sc;0;ET;;;;;N;;;;;-09F4;BENGALI CURRENCY NUMERATOR ONE;No;0;L;;;;1/16;N;;;;;-09F5;BENGALI CURRENCY NUMERATOR TWO;No;0;L;;;;1/8;N;;;;;-09F6;BENGALI CURRENCY NUMERATOR THREE;No;0;L;;;;3/16;N;;;;;-09F7;BENGALI CURRENCY NUMERATOR FOUR;No;0;L;;;;1/4;N;;;;;-09F8;BENGALI CURRENCY NUMERATOR ONE LESS THAN THE DENOMINATOR;No;0;L;;;;3/4;N;;;;;-09F9;BENGALI CURRENCY DENOMINATOR SIXTEEN;No;0;L;;;;16;N;;;;;-09FA;BENGALI ISSHAR;So;0;L;;;;;N;;;;;-09FB;BENGALI GANDA MARK;Sc;0;ET;;;;;N;;;;;-0A01;GURMUKHI SIGN ADAK BINDI;Mn;0;NSM;;;;;N;;;;;-0A02;GURMUKHI SIGN BINDI;Mn;0;NSM;;;;;N;;;;;-0A03;GURMUKHI SIGN VISARGA;Mc;0;L;;;;;N;;;;;-0A05;GURMUKHI LETTER A;Lo;0;L;;;;;N;;;;;-0A06;GURMUKHI LETTER AA;Lo;0;L;;;;;N;;;;;-0A07;GURMUKHI LETTER I;Lo;0;L;;;;;N;;;;;-0A08;GURMUKHI LETTER II;Lo;0;L;;;;;N;;;;;-0A09;GURMUKHI LETTER U;Lo;0;L;;;;;N;;;;;-0A0A;GURMUKHI LETTER UU;Lo;0;L;;;;;N;;;;;-0A0F;GURMUKHI LETTER EE;Lo;0;L;;;;;N;;;;;-0A10;GURMUKHI LETTER AI;Lo;0;L;;;;;N;;;;;-0A13;GURMUKHI LETTER OO;Lo;0;L;;;;;N;;;;;-0A14;GURMUKHI LETTER AU;Lo;0;L;;;;;N;;;;;-0A15;GURMUKHI LETTER KA;Lo;0;L;;;;;N;;;;;-0A16;GURMUKHI LETTER KHA;Lo;0;L;;;;;N;;;;;-0A17;GURMUKHI LETTER GA;Lo;0;L;;;;;N;;;;;-0A18;GURMUKHI LETTER GHA;Lo;0;L;;;;;N;;;;;-0A19;GURMUKHI LETTER NGA;Lo;0;L;;;;;N;;;;;-0A1A;GURMUKHI LETTER CA;Lo;0;L;;;;;N;;;;;-0A1B;GURMUKHI LETTER CHA;Lo;0;L;;;;;N;;;;;-0A1C;GURMUKHI LETTER JA;Lo;0;L;;;;;N;;;;;-0A1D;GURMUKHI LETTER JHA;Lo;0;L;;;;;N;;;;;-0A1E;GURMUKHI LETTER NYA;Lo;0;L;;;;;N;;;;;-0A1F;GURMUKHI LETTER TTA;Lo;0;L;;;;;N;;;;;-0A20;GURMUKHI LETTER TTHA;Lo;0;L;;;;;N;;;;;-0A21;GURMUKHI LETTER DDA;Lo;0;L;;;;;N;;;;;-0A22;GURMUKHI LETTER DDHA;Lo;0;L;;;;;N;;;;;-0A23;GURMUKHI LETTER NNA;Lo;0;L;;;;;N;;;;;-0A24;GURMUKHI LETTER TA;Lo;0;L;;;;;N;;;;;-0A25;GURMUKHI LETTER THA;Lo;0;L;;;;;N;;;;;-0A26;GURMUKHI LETTER DA;Lo;0;L;;;;;N;;;;;-0A27;GURMUKHI LETTER DHA;Lo;0;L;;;;;N;;;;;-0A28;GURMUKHI LETTER NA;Lo;0;L;;;;;N;;;;;-0A2A;GURMUKHI LETTER PA;Lo;0;L;;;;;N;;;;;-0A2B;GURMUKHI LETTER PHA;Lo;0;L;;;;;N;;;;;-0A2C;GURMUKHI LETTER BA;Lo;0;L;;;;;N;;;;;-0A2D;GURMUKHI LETTER BHA;Lo;0;L;;;;;N;;;;;-0A2E;GURMUKHI LETTER MA;Lo;0;L;;;;;N;;;;;-0A2F;GURMUKHI LETTER YA;Lo;0;L;;;;;N;;;;;-0A30;GURMUKHI LETTER RA;Lo;0;L;;;;;N;;;;;-0A32;GURMUKHI LETTER LA;Lo;0;L;;;;;N;;;;;-0A33;GURMUKHI LETTER LLA;Lo;0;L;0A32 0A3C;;;;N;;;;;-0A35;GURMUKHI LETTER VA;Lo;0;L;;;;;N;;;;;-0A36;GURMUKHI LETTER SHA;Lo;0;L;0A38 0A3C;;;;N;;;;;-0A38;GURMUKHI LETTER SA;Lo;0;L;;;;;N;;;;;-0A39;GURMUKHI LETTER HA;Lo;0;L;;;;;N;;;;;-0A3C;GURMUKHI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-0A3E;GURMUKHI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-0A3F;GURMUKHI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-0A40;GURMUKHI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-0A41;GURMUKHI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-0A42;GURMUKHI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-0A47;GURMUKHI VOWEL SIGN EE;Mn;0;NSM;;;;;N;;;;;-0A48;GURMUKHI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-0A4B;GURMUKHI VOWEL SIGN OO;Mn;0;NSM;;;;;N;;;;;-0A4C;GURMUKHI VOWEL SIGN AU;Mn;0;NSM;;;;;N;;;;;-0A4D;GURMUKHI SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-0A51;GURMUKHI SIGN UDAAT;Mn;0;NSM;;;;;N;;;;;-0A59;GURMUKHI LETTER KHHA;Lo;0;L;0A16 0A3C;;;;N;;;;;-0A5A;GURMUKHI LETTER GHHA;Lo;0;L;0A17 0A3C;;;;N;;;;;-0A5B;GURMUKHI LETTER ZA;Lo;0;L;0A1C 0A3C;;;;N;;;;;-0A5C;GURMUKHI LETTER RRA;Lo;0;L;;;;;N;;;;;-0A5E;GURMUKHI LETTER FA;Lo;0;L;0A2B 0A3C;;;;N;;;;;-0A66;GURMUKHI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0A67;GURMUKHI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0A68;GURMUKHI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0A69;GURMUKHI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0A6A;GURMUKHI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0A6B;GURMUKHI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0A6C;GURMUKHI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0A6D;GURMUKHI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0A6E;GURMUKHI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0A6F;GURMUKHI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0A70;GURMUKHI TIPPI;Mn;0;NSM;;;;;N;;;;;-0A71;GURMUKHI ADDAK;Mn;0;NSM;;;;;N;;;;;-0A72;GURMUKHI IRI;Lo;0;L;;;;;N;;;;;-0A73;GURMUKHI URA;Lo;0;L;;;;;N;;;;;-0A74;GURMUKHI EK ONKAR;Lo;0;L;;;;;N;;;;;-0A75;GURMUKHI SIGN YAKASH;Mn;0;NSM;;;;;N;;;;;-0A81;GUJARATI SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-0A82;GUJARATI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-0A83;GUJARATI SIGN VISARGA;Mc;0;L;;;;;N;;;;;-0A85;GUJARATI LETTER A;Lo;0;L;;;;;N;;;;;-0A86;GUJARATI LETTER AA;Lo;0;L;;;;;N;;;;;-0A87;GUJARATI LETTER I;Lo;0;L;;;;;N;;;;;-0A88;GUJARATI LETTER II;Lo;0;L;;;;;N;;;;;-0A89;GUJARATI LETTER U;Lo;0;L;;;;;N;;;;;-0A8A;GUJARATI LETTER UU;Lo;0;L;;;;;N;;;;;-0A8B;GUJARATI LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-0A8C;GUJARATI LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-0A8D;GUJARATI VOWEL CANDRA E;Lo;0;L;;;;;N;;;;;-0A8F;GUJARATI LETTER E;Lo;0;L;;;;;N;;;;;-0A90;GUJARATI LETTER AI;Lo;0;L;;;;;N;;;;;-0A91;GUJARATI VOWEL CANDRA O;Lo;0;L;;;;;N;;;;;-0A93;GUJARATI LETTER O;Lo;0;L;;;;;N;;;;;-0A94;GUJARATI LETTER AU;Lo;0;L;;;;;N;;;;;-0A95;GUJARATI LETTER KA;Lo;0;L;;;;;N;;;;;-0A96;GUJARATI LETTER KHA;Lo;0;L;;;;;N;;;;;-0A97;GUJARATI LETTER GA;Lo;0;L;;;;;N;;;;;-0A98;GUJARATI LETTER GHA;Lo;0;L;;;;;N;;;;;-0A99;GUJARATI LETTER NGA;Lo;0;L;;;;;N;;;;;-0A9A;GUJARATI LETTER CA;Lo;0;L;;;;;N;;;;;-0A9B;GUJARATI LETTER CHA;Lo;0;L;;;;;N;;;;;-0A9C;GUJARATI LETTER JA;Lo;0;L;;;;;N;;;;;-0A9D;GUJARATI LETTER JHA;Lo;0;L;;;;;N;;;;;-0A9E;GUJARATI LETTER NYA;Lo;0;L;;;;;N;;;;;-0A9F;GUJARATI LETTER TTA;Lo;0;L;;;;;N;;;;;-0AA0;GUJARATI LETTER TTHA;Lo;0;L;;;;;N;;;;;-0AA1;GUJARATI LETTER DDA;Lo;0;L;;;;;N;;;;;-0AA2;GUJARATI LETTER DDHA;Lo;0;L;;;;;N;;;;;-0AA3;GUJARATI LETTER NNA;Lo;0;L;;;;;N;;;;;-0AA4;GUJARATI LETTER TA;Lo;0;L;;;;;N;;;;;-0AA5;GUJARATI LETTER THA;Lo;0;L;;;;;N;;;;;-0AA6;GUJARATI LETTER DA;Lo;0;L;;;;;N;;;;;-0AA7;GUJARATI LETTER DHA;Lo;0;L;;;;;N;;;;;-0AA8;GUJARATI LETTER NA;Lo;0;L;;;;;N;;;;;-0AAA;GUJARATI LETTER PA;Lo;0;L;;;;;N;;;;;-0AAB;GUJARATI LETTER PHA;Lo;0;L;;;;;N;;;;;-0AAC;GUJARATI LETTER BA;Lo;0;L;;;;;N;;;;;-0AAD;GUJARATI LETTER BHA;Lo;0;L;;;;;N;;;;;-0AAE;GUJARATI LETTER MA;Lo;0;L;;;;;N;;;;;-0AAF;GUJARATI LETTER YA;Lo;0;L;;;;;N;;;;;-0AB0;GUJARATI LETTER RA;Lo;0;L;;;;;N;;;;;-0AB2;GUJARATI LETTER LA;Lo;0;L;;;;;N;;;;;-0AB3;GUJARATI LETTER LLA;Lo;0;L;;;;;N;;;;;-0AB5;GUJARATI LETTER VA;Lo;0;L;;;;;N;;;;;-0AB6;GUJARATI LETTER SHA;Lo;0;L;;;;;N;;;;;-0AB7;GUJARATI LETTER SSA;Lo;0;L;;;;;N;;;;;-0AB8;GUJARATI LETTER SA;Lo;0;L;;;;;N;;;;;-0AB9;GUJARATI LETTER HA;Lo;0;L;;;;;N;;;;;-0ABC;GUJARATI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-0ABD;GUJARATI SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-0ABE;GUJARATI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-0ABF;GUJARATI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-0AC0;GUJARATI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-0AC1;GUJARATI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-0AC2;GUJARATI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-0AC3;GUJARATI VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-0AC4;GUJARATI VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-0AC5;GUJARATI VOWEL SIGN CANDRA E;Mn;0;NSM;;;;;N;;;;;-0AC7;GUJARATI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-0AC8;GUJARATI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-0AC9;GUJARATI VOWEL SIGN CANDRA O;Mc;0;L;;;;;N;;;;;-0ACB;GUJARATI VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-0ACC;GUJARATI VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-0ACD;GUJARATI SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-0AD0;GUJARATI OM;Lo;0;L;;;;;N;;;;;-0AE0;GUJARATI LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-0AE1;GUJARATI LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-0AE2;GUJARATI VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-0AE3;GUJARATI VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-0AE6;GUJARATI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0AE7;GUJARATI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0AE8;GUJARATI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0AE9;GUJARATI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0AEA;GUJARATI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0AEB;GUJARATI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0AEC;GUJARATI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0AED;GUJARATI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0AEE;GUJARATI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0AEF;GUJARATI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0AF0;GUJARATI ABBREVIATION SIGN;Po;0;L;;;;;N;;;;;-0AF1;GUJARATI RUPEE SIGN;Sc;0;ET;;;;;N;;;;;-0B01;ORIYA SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-0B02;ORIYA SIGN ANUSVARA;Mc;0;L;;;;;N;;;;;-0B03;ORIYA SIGN VISARGA;Mc;0;L;;;;;N;;;;;-0B05;ORIYA LETTER A;Lo;0;L;;;;;N;;;;;-0B06;ORIYA LETTER AA;Lo;0;L;;;;;N;;;;;-0B07;ORIYA LETTER I;Lo;0;L;;;;;N;;;;;-0B08;ORIYA LETTER II;Lo;0;L;;;;;N;;;;;-0B09;ORIYA LETTER U;Lo;0;L;;;;;N;;;;;-0B0A;ORIYA LETTER UU;Lo;0;L;;;;;N;;;;;-0B0B;ORIYA LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-0B0C;ORIYA LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-0B0F;ORIYA LETTER E;Lo;0;L;;;;;N;;;;;-0B10;ORIYA LETTER AI;Lo;0;L;;;;;N;;;;;-0B13;ORIYA LETTER O;Lo;0;L;;;;;N;;;;;-0B14;ORIYA LETTER AU;Lo;0;L;;;;;N;;;;;-0B15;ORIYA LETTER KA;Lo;0;L;;;;;N;;;;;-0B16;ORIYA LETTER KHA;Lo;0;L;;;;;N;;;;;-0B17;ORIYA LETTER GA;Lo;0;L;;;;;N;;;;;-0B18;ORIYA LETTER GHA;Lo;0;L;;;;;N;;;;;-0B19;ORIYA LETTER NGA;Lo;0;L;;;;;N;;;;;-0B1A;ORIYA LETTER CA;Lo;0;L;;;;;N;;;;;-0B1B;ORIYA LETTER CHA;Lo;0;L;;;;;N;;;;;-0B1C;ORIYA LETTER JA;Lo;0;L;;;;;N;;;;;-0B1D;ORIYA LETTER JHA;Lo;0;L;;;;;N;;;;;-0B1E;ORIYA LETTER NYA;Lo;0;L;;;;;N;;;;;-0B1F;ORIYA LETTER TTA;Lo;0;L;;;;;N;;;;;-0B20;ORIYA LETTER TTHA;Lo;0;L;;;;;N;;;;;-0B21;ORIYA LETTER DDA;Lo;0;L;;;;;N;;;;;-0B22;ORIYA LETTER DDHA;Lo;0;L;;;;;N;;;;;-0B23;ORIYA LETTER NNA;Lo;0;L;;;;;N;;;;;-0B24;ORIYA LETTER TA;Lo;0;L;;;;;N;;;;;-0B25;ORIYA LETTER THA;Lo;0;L;;;;;N;;;;;-0B26;ORIYA LETTER DA;Lo;0;L;;;;;N;;;;;-0B27;ORIYA LETTER DHA;Lo;0;L;;;;;N;;;;;-0B28;ORIYA LETTER NA;Lo;0;L;;;;;N;;;;;-0B2A;ORIYA LETTER PA;Lo;0;L;;;;;N;;;;;-0B2B;ORIYA LETTER PHA;Lo;0;L;;;;;N;;;;;-0B2C;ORIYA LETTER BA;Lo;0;L;;;;;N;;;;;-0B2D;ORIYA LETTER BHA;Lo;0;L;;;;;N;;;;;-0B2E;ORIYA LETTER MA;Lo;0;L;;;;;N;;;;;-0B2F;ORIYA LETTER YA;Lo;0;L;;;;;N;;;;;-0B30;ORIYA LETTER RA;Lo;0;L;;;;;N;;;;;-0B32;ORIYA LETTER LA;Lo;0;L;;;;;N;;;;;-0B33;ORIYA LETTER LLA;Lo;0;L;;;;;N;;;;;-0B35;ORIYA LETTER VA;Lo;0;L;;;;;N;;;;;-0B36;ORIYA LETTER SHA;Lo;0;L;;;;;N;;;;;-0B37;ORIYA LETTER SSA;Lo;0;L;;;;;N;;;;;-0B38;ORIYA LETTER SA;Lo;0;L;;;;;N;;;;;-0B39;ORIYA LETTER HA;Lo;0;L;;;;;N;;;;;-0B3C;ORIYA SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-0B3D;ORIYA SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-0B3E;ORIYA VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-0B3F;ORIYA VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-0B40;ORIYA VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-0B41;ORIYA VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-0B42;ORIYA VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-0B43;ORIYA VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-0B44;ORIYA VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-0B47;ORIYA VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-0B48;ORIYA VOWEL SIGN AI;Mc;0;L;0B47 0B56;;;;N;;;;;-0B4B;ORIYA VOWEL SIGN O;Mc;0;L;0B47 0B3E;;;;N;;;;;-0B4C;ORIYA VOWEL SIGN AU;Mc;0;L;0B47 0B57;;;;N;;;;;-0B4D;ORIYA SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-0B56;ORIYA AI LENGTH MARK;Mn;0;NSM;;;;;N;;;;;-0B57;ORIYA AU LENGTH MARK;Mc;0;L;;;;;N;;;;;-0B5C;ORIYA LETTER RRA;Lo;0;L;0B21 0B3C;;;;N;;;;;-0B5D;ORIYA LETTER RHA;Lo;0;L;0B22 0B3C;;;;N;;;;;-0B5F;ORIYA LETTER YYA;Lo;0;L;;;;;N;;;;;-0B60;ORIYA LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-0B61;ORIYA LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-0B62;ORIYA VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-0B63;ORIYA VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-0B66;ORIYA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0B67;ORIYA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0B68;ORIYA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0B69;ORIYA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0B6A;ORIYA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0B6B;ORIYA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0B6C;ORIYA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0B6D;ORIYA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0B6E;ORIYA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0B6F;ORIYA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0B70;ORIYA ISSHAR;So;0;L;;;;;N;;;;;-0B71;ORIYA LETTER WA;Lo;0;L;;;;;N;;;;;-0B72;ORIYA FRACTION ONE QUARTER;No;0;L;;;;1/4;N;;;;;-0B73;ORIYA FRACTION ONE HALF;No;0;L;;;;1/2;N;;;;;-0B74;ORIYA FRACTION THREE QUARTERS;No;0;L;;;;3/4;N;;;;;-0B75;ORIYA FRACTION ONE SIXTEENTH;No;0;L;;;;1/16;N;;;;;-0B76;ORIYA FRACTION ONE EIGHTH;No;0;L;;;;1/8;N;;;;;-0B77;ORIYA FRACTION THREE SIXTEENTHS;No;0;L;;;;3/16;N;;;;;-0B82;TAMIL SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-0B83;TAMIL SIGN VISARGA;Lo;0;L;;;;;N;;;;;-0B85;TAMIL LETTER A;Lo;0;L;;;;;N;;;;;-0B86;TAMIL LETTER AA;Lo;0;L;;;;;N;;;;;-0B87;TAMIL LETTER I;Lo;0;L;;;;;N;;;;;-0B88;TAMIL LETTER II;Lo;0;L;;;;;N;;;;;-0B89;TAMIL LETTER U;Lo;0;L;;;;;N;;;;;-0B8A;TAMIL LETTER UU;Lo;0;L;;;;;N;;;;;-0B8E;TAMIL LETTER E;Lo;0;L;;;;;N;;;;;-0B8F;TAMIL LETTER EE;Lo;0;L;;;;;N;;;;;-0B90;TAMIL LETTER AI;Lo;0;L;;;;;N;;;;;-0B92;TAMIL LETTER O;Lo;0;L;;;;;N;;;;;-0B93;TAMIL LETTER OO;Lo;0;L;;;;;N;;;;;-0B94;TAMIL LETTER AU;Lo;0;L;0B92 0BD7;;;;N;;;;;-0B95;TAMIL LETTER KA;Lo;0;L;;;;;N;;;;;-0B99;TAMIL LETTER NGA;Lo;0;L;;;;;N;;;;;-0B9A;TAMIL LETTER CA;Lo;0;L;;;;;N;;;;;-0B9C;TAMIL LETTER JA;Lo;0;L;;;;;N;;;;;-0B9E;TAMIL LETTER NYA;Lo;0;L;;;;;N;;;;;-0B9F;TAMIL LETTER TTA;Lo;0;L;;;;;N;;;;;-0BA3;TAMIL LETTER NNA;Lo;0;L;;;;;N;;;;;-0BA4;TAMIL LETTER TA;Lo;0;L;;;;;N;;;;;-0BA8;TAMIL LETTER NA;Lo;0;L;;;;;N;;;;;-0BA9;TAMIL LETTER NNNA;Lo;0;L;;;;;N;;;;;-0BAA;TAMIL LETTER PA;Lo;0;L;;;;;N;;;;;-0BAE;TAMIL LETTER MA;Lo;0;L;;;;;N;;;;;-0BAF;TAMIL LETTER YA;Lo;0;L;;;;;N;;;;;-0BB0;TAMIL LETTER RA;Lo;0;L;;;;;N;;;;;-0BB1;TAMIL LETTER RRA;Lo;0;L;;;;;N;;;;;-0BB2;TAMIL LETTER LA;Lo;0;L;;;;;N;;;;;-0BB3;TAMIL LETTER LLA;Lo;0;L;;;;;N;;;;;-0BB4;TAMIL LETTER LLLA;Lo;0;L;;;;;N;;;;;-0BB5;TAMIL LETTER VA;Lo;0;L;;;;;N;;;;;-0BB6;TAMIL LETTER SHA;Lo;0;L;;;;;N;;;;;-0BB7;TAMIL LETTER SSA;Lo;0;L;;;;;N;;;;;-0BB8;TAMIL LETTER SA;Lo;0;L;;;;;N;;;;;-0BB9;TAMIL LETTER HA;Lo;0;L;;;;;N;;;;;-0BBE;TAMIL VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-0BBF;TAMIL VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-0BC0;TAMIL VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-0BC1;TAMIL VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-0BC2;TAMIL VOWEL SIGN UU;Mc;0;L;;;;;N;;;;;-0BC6;TAMIL VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-0BC7;TAMIL VOWEL SIGN EE;Mc;0;L;;;;;N;;;;;-0BC8;TAMIL VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-0BCA;TAMIL VOWEL SIGN O;Mc;0;L;0BC6 0BBE;;;;N;;;;;-0BCB;TAMIL VOWEL SIGN OO;Mc;0;L;0BC7 0BBE;;;;N;;;;;-0BCC;TAMIL VOWEL SIGN AU;Mc;0;L;0BC6 0BD7;;;;N;;;;;-0BCD;TAMIL SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-0BD0;TAMIL OM;Lo;0;L;;;;;N;;;;;-0BD7;TAMIL AU LENGTH MARK;Mc;0;L;;;;;N;;;;;-0BE6;TAMIL DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0BE7;TAMIL DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0BE8;TAMIL DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0BE9;TAMIL DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0BEA;TAMIL DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0BEB;TAMIL DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0BEC;TAMIL DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0BED;TAMIL DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0BEE;TAMIL DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0BEF;TAMIL DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0BF0;TAMIL NUMBER TEN;No;0;L;;;;10;N;;;;;-0BF1;TAMIL NUMBER ONE HUNDRED;No;0;L;;;;100;N;;;;;-0BF2;TAMIL NUMBER ONE THOUSAND;No;0;L;;;;1000;N;;;;;-0BF3;TAMIL DAY SIGN;So;0;ON;;;;;N;;;;;-0BF4;TAMIL MONTH SIGN;So;0;ON;;;;;N;;;;;-0BF5;TAMIL YEAR SIGN;So;0;ON;;;;;N;;;;;-0BF6;TAMIL DEBIT SIGN;So;0;ON;;;;;N;;;;;-0BF7;TAMIL CREDIT SIGN;So;0;ON;;;;;N;;;;;-0BF8;TAMIL AS ABOVE SIGN;So;0;ON;;;;;N;;;;;-0BF9;TAMIL RUPEE SIGN;Sc;0;ET;;;;;N;;;;;-0BFA;TAMIL NUMBER SIGN;So;0;ON;;;;;N;;;;;-0C00;TELUGU SIGN COMBINING CANDRABINDU ABOVE;Mn;0;NSM;;;;;N;;;;;-0C01;TELUGU SIGN CANDRABINDU;Mc;0;L;;;;;N;;;;;-0C02;TELUGU SIGN ANUSVARA;Mc;0;L;;;;;N;;;;;-0C03;TELUGU SIGN VISARGA;Mc;0;L;;;;;N;;;;;-0C05;TELUGU LETTER A;Lo;0;L;;;;;N;;;;;-0C06;TELUGU LETTER AA;Lo;0;L;;;;;N;;;;;-0C07;TELUGU LETTER I;Lo;0;L;;;;;N;;;;;-0C08;TELUGU LETTER II;Lo;0;L;;;;;N;;;;;-0C09;TELUGU LETTER U;Lo;0;L;;;;;N;;;;;-0C0A;TELUGU LETTER UU;Lo;0;L;;;;;N;;;;;-0C0B;TELUGU LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-0C0C;TELUGU LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-0C0E;TELUGU LETTER E;Lo;0;L;;;;;N;;;;;-0C0F;TELUGU LETTER EE;Lo;0;L;;;;;N;;;;;-0C10;TELUGU LETTER AI;Lo;0;L;;;;;N;;;;;-0C12;TELUGU LETTER O;Lo;0;L;;;;;N;;;;;-0C13;TELUGU LETTER OO;Lo;0;L;;;;;N;;;;;-0C14;TELUGU LETTER AU;Lo;0;L;;;;;N;;;;;-0C15;TELUGU LETTER KA;Lo;0;L;;;;;N;;;;;-0C16;TELUGU LETTER KHA;Lo;0;L;;;;;N;;;;;-0C17;TELUGU LETTER GA;Lo;0;L;;;;;N;;;;;-0C18;TELUGU LETTER GHA;Lo;0;L;;;;;N;;;;;-0C19;TELUGU LETTER NGA;Lo;0;L;;;;;N;;;;;-0C1A;TELUGU LETTER CA;Lo;0;L;;;;;N;;;;;-0C1B;TELUGU LETTER CHA;Lo;0;L;;;;;N;;;;;-0C1C;TELUGU LETTER JA;Lo;0;L;;;;;N;;;;;-0C1D;TELUGU LETTER JHA;Lo;0;L;;;;;N;;;;;-0C1E;TELUGU LETTER NYA;Lo;0;L;;;;;N;;;;;-0C1F;TELUGU LETTER TTA;Lo;0;L;;;;;N;;;;;-0C20;TELUGU LETTER TTHA;Lo;0;L;;;;;N;;;;;-0C21;TELUGU LETTER DDA;Lo;0;L;;;;;N;;;;;-0C22;TELUGU LETTER DDHA;Lo;0;L;;;;;N;;;;;-0C23;TELUGU LETTER NNA;Lo;0;L;;;;;N;;;;;-0C24;TELUGU LETTER TA;Lo;0;L;;;;;N;;;;;-0C25;TELUGU LETTER THA;Lo;0;L;;;;;N;;;;;-0C26;TELUGU LETTER DA;Lo;0;L;;;;;N;;;;;-0C27;TELUGU LETTER DHA;Lo;0;L;;;;;N;;;;;-0C28;TELUGU LETTER NA;Lo;0;L;;;;;N;;;;;-0C2A;TELUGU LETTER PA;Lo;0;L;;;;;N;;;;;-0C2B;TELUGU LETTER PHA;Lo;0;L;;;;;N;;;;;-0C2C;TELUGU LETTER BA;Lo;0;L;;;;;N;;;;;-0C2D;TELUGU LETTER BHA;Lo;0;L;;;;;N;;;;;-0C2E;TELUGU LETTER MA;Lo;0;L;;;;;N;;;;;-0C2F;TELUGU LETTER YA;Lo;0;L;;;;;N;;;;;-0C30;TELUGU LETTER RA;Lo;0;L;;;;;N;;;;;-0C31;TELUGU LETTER RRA;Lo;0;L;;;;;N;;;;;-0C32;TELUGU LETTER LA;Lo;0;L;;;;;N;;;;;-0C33;TELUGU LETTER LLA;Lo;0;L;;;;;N;;;;;-0C34;TELUGU LETTER LLLA;Lo;0;L;;;;;N;;;;;-0C35;TELUGU LETTER VA;Lo;0;L;;;;;N;;;;;-0C36;TELUGU LETTER SHA;Lo;0;L;;;;;N;;;;;-0C37;TELUGU LETTER SSA;Lo;0;L;;;;;N;;;;;-0C38;TELUGU LETTER SA;Lo;0;L;;;;;N;;;;;-0C39;TELUGU LETTER HA;Lo;0;L;;;;;N;;;;;-0C3D;TELUGU SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-0C3E;TELUGU VOWEL SIGN AA;Mn;0;NSM;;;;;N;;;;;-0C3F;TELUGU VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-0C40;TELUGU VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-0C41;TELUGU VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-0C42;TELUGU VOWEL SIGN UU;Mc;0;L;;;;;N;;;;;-0C43;TELUGU VOWEL SIGN VOCALIC R;Mc;0;L;;;;;N;;;;;-0C44;TELUGU VOWEL SIGN VOCALIC RR;Mc;0;L;;;;;N;;;;;-0C46;TELUGU VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-0C47;TELUGU VOWEL SIGN EE;Mn;0;NSM;;;;;N;;;;;-0C48;TELUGU VOWEL SIGN AI;Mn;0;NSM;0C46 0C56;;;;N;;;;;-0C4A;TELUGU VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-0C4B;TELUGU VOWEL SIGN OO;Mn;0;NSM;;;;;N;;;;;-0C4C;TELUGU VOWEL SIGN AU;Mn;0;NSM;;;;;N;;;;;-0C4D;TELUGU SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-0C55;TELUGU LENGTH MARK;Mn;84;NSM;;;;;N;;;;;-0C56;TELUGU AI LENGTH MARK;Mn;91;NSM;;;;;N;;;;;-0C58;TELUGU LETTER TSA;Lo;0;L;;;;;N;;;;;-0C59;TELUGU LETTER DZA;Lo;0;L;;;;;N;;;;;-0C60;TELUGU LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-0C61;TELUGU LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-0C62;TELUGU VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-0C63;TELUGU VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-0C66;TELUGU DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0C67;TELUGU DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0C68;TELUGU DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0C69;TELUGU DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0C6A;TELUGU DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0C6B;TELUGU DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0C6C;TELUGU DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0C6D;TELUGU DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0C6E;TELUGU DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0C6F;TELUGU DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0C78;TELUGU FRACTION DIGIT ZERO FOR ODD POWERS OF FOUR;No;0;ON;;;;0;N;;;;;-0C79;TELUGU FRACTION DIGIT ONE FOR ODD POWERS OF FOUR;No;0;ON;;;;1;N;;;;;-0C7A;TELUGU FRACTION DIGIT TWO FOR ODD POWERS OF FOUR;No;0;ON;;;;2;N;;;;;-0C7B;TELUGU FRACTION DIGIT THREE FOR ODD POWERS OF FOUR;No;0;ON;;;;3;N;;;;;-0C7C;TELUGU FRACTION DIGIT ONE FOR EVEN POWERS OF FOUR;No;0;ON;;;;1;N;;;;;-0C7D;TELUGU FRACTION DIGIT TWO FOR EVEN POWERS OF FOUR;No;0;ON;;;;2;N;;;;;-0C7E;TELUGU FRACTION DIGIT THREE FOR EVEN POWERS OF FOUR;No;0;ON;;;;3;N;;;;;-0C7F;TELUGU SIGN TUUMU;So;0;L;;;;;N;;;;;-0C81;KANNADA SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-0C82;KANNADA SIGN ANUSVARA;Mc;0;L;;;;;N;;;;;-0C83;KANNADA SIGN VISARGA;Mc;0;L;;;;;N;;;;;-0C85;KANNADA LETTER A;Lo;0;L;;;;;N;;;;;-0C86;KANNADA LETTER AA;Lo;0;L;;;;;N;;;;;-0C87;KANNADA LETTER I;Lo;0;L;;;;;N;;;;;-0C88;KANNADA LETTER II;Lo;0;L;;;;;N;;;;;-0C89;KANNADA LETTER U;Lo;0;L;;;;;N;;;;;-0C8A;KANNADA LETTER UU;Lo;0;L;;;;;N;;;;;-0C8B;KANNADA LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-0C8C;KANNADA LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-0C8E;KANNADA LETTER E;Lo;0;L;;;;;N;;;;;-0C8F;KANNADA LETTER EE;Lo;0;L;;;;;N;;;;;-0C90;KANNADA LETTER AI;Lo;0;L;;;;;N;;;;;-0C92;KANNADA LETTER O;Lo;0;L;;;;;N;;;;;-0C93;KANNADA LETTER OO;Lo;0;L;;;;;N;;;;;-0C94;KANNADA LETTER AU;Lo;0;L;;;;;N;;;;;-0C95;KANNADA LETTER KA;Lo;0;L;;;;;N;;;;;-0C96;KANNADA LETTER KHA;Lo;0;L;;;;;N;;;;;-0C97;KANNADA LETTER GA;Lo;0;L;;;;;N;;;;;-0C98;KANNADA LETTER GHA;Lo;0;L;;;;;N;;;;;-0C99;KANNADA LETTER NGA;Lo;0;L;;;;;N;;;;;-0C9A;KANNADA LETTER CA;Lo;0;L;;;;;N;;;;;-0C9B;KANNADA LETTER CHA;Lo;0;L;;;;;N;;;;;-0C9C;KANNADA LETTER JA;Lo;0;L;;;;;N;;;;;-0C9D;KANNADA LETTER JHA;Lo;0;L;;;;;N;;;;;-0C9E;KANNADA LETTER NYA;Lo;0;L;;;;;N;;;;;-0C9F;KANNADA LETTER TTA;Lo;0;L;;;;;N;;;;;-0CA0;KANNADA LETTER TTHA;Lo;0;L;;;;;N;;;;;-0CA1;KANNADA LETTER DDA;Lo;0;L;;;;;N;;;;;-0CA2;KANNADA LETTER DDHA;Lo;0;L;;;;;N;;;;;-0CA3;KANNADA LETTER NNA;Lo;0;L;;;;;N;;;;;-0CA4;KANNADA LETTER TA;Lo;0;L;;;;;N;;;;;-0CA5;KANNADA LETTER THA;Lo;0;L;;;;;N;;;;;-0CA6;KANNADA LETTER DA;Lo;0;L;;;;;N;;;;;-0CA7;KANNADA LETTER DHA;Lo;0;L;;;;;N;;;;;-0CA8;KANNADA LETTER NA;Lo;0;L;;;;;N;;;;;-0CAA;KANNADA LETTER PA;Lo;0;L;;;;;N;;;;;-0CAB;KANNADA LETTER PHA;Lo;0;L;;;;;N;;;;;-0CAC;KANNADA LETTER BA;Lo;0;L;;;;;N;;;;;-0CAD;KANNADA LETTER BHA;Lo;0;L;;;;;N;;;;;-0CAE;KANNADA LETTER MA;Lo;0;L;;;;;N;;;;;-0CAF;KANNADA LETTER YA;Lo;0;L;;;;;N;;;;;-0CB0;KANNADA LETTER RA;Lo;0;L;;;;;N;;;;;-0CB1;KANNADA LETTER RRA;Lo;0;L;;;;;N;;;;;-0CB2;KANNADA LETTER LA;Lo;0;L;;;;;N;;;;;-0CB3;KANNADA LETTER LLA;Lo;0;L;;;;;N;;;;;-0CB5;KANNADA LETTER VA;Lo;0;L;;;;;N;;;;;-0CB6;KANNADA LETTER SHA;Lo;0;L;;;;;N;;;;;-0CB7;KANNADA LETTER SSA;Lo;0;L;;;;;N;;;;;-0CB8;KANNADA LETTER SA;Lo;0;L;;;;;N;;;;;-0CB9;KANNADA LETTER HA;Lo;0;L;;;;;N;;;;;-0CBC;KANNADA SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-0CBD;KANNADA SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-0CBE;KANNADA VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-0CBF;KANNADA VOWEL SIGN I;Mn;0;L;;;;;N;;;;;-0CC0;KANNADA VOWEL SIGN II;Mc;0;L;0CBF 0CD5;;;;N;;;;;-0CC1;KANNADA VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-0CC2;KANNADA VOWEL SIGN UU;Mc;0;L;;;;;N;;;;;-0CC3;KANNADA VOWEL SIGN VOCALIC R;Mc;0;L;;;;;N;;;;;-0CC4;KANNADA VOWEL SIGN VOCALIC RR;Mc;0;L;;;;;N;;;;;-0CC6;KANNADA VOWEL SIGN E;Mn;0;L;;;;;N;;;;;-0CC7;KANNADA VOWEL SIGN EE;Mc;0;L;0CC6 0CD5;;;;N;;;;;-0CC8;KANNADA VOWEL SIGN AI;Mc;0;L;0CC6 0CD6;;;;N;;;;;-0CCA;KANNADA VOWEL SIGN O;Mc;0;L;0CC6 0CC2;;;;N;;;;;-0CCB;KANNADA VOWEL SIGN OO;Mc;0;L;0CCA 0CD5;;;;N;;;;;-0CCC;KANNADA VOWEL SIGN AU;Mn;0;NSM;;;;;N;;;;;-0CCD;KANNADA SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-0CD5;KANNADA LENGTH MARK;Mc;0;L;;;;;N;;;;;-0CD6;KANNADA AI LENGTH MARK;Mc;0;L;;;;;N;;;;;-0CDE;KANNADA LETTER FA;Lo;0;L;;;;;N;;;;;-0CE0;KANNADA LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-0CE1;KANNADA LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-0CE2;KANNADA VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-0CE3;KANNADA VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-0CE6;KANNADA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0CE7;KANNADA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0CE8;KANNADA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0CE9;KANNADA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0CEA;KANNADA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0CEB;KANNADA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0CEC;KANNADA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0CED;KANNADA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0CEE;KANNADA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0CEF;KANNADA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0CF1;KANNADA SIGN JIHVAMULIYA;Lo;0;L;;;;;N;;;;;-0CF2;KANNADA SIGN UPADHMANIYA;Lo;0;L;;;;;N;;;;;-0D01;MALAYALAM SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-0D02;MALAYALAM SIGN ANUSVARA;Mc;0;L;;;;;N;;;;;-0D03;MALAYALAM SIGN VISARGA;Mc;0;L;;;;;N;;;;;-0D05;MALAYALAM LETTER A;Lo;0;L;;;;;N;;;;;-0D06;MALAYALAM LETTER AA;Lo;0;L;;;;;N;;;;;-0D07;MALAYALAM LETTER I;Lo;0;L;;;;;N;;;;;-0D08;MALAYALAM LETTER II;Lo;0;L;;;;;N;;;;;-0D09;MALAYALAM LETTER U;Lo;0;L;;;;;N;;;;;-0D0A;MALAYALAM LETTER UU;Lo;0;L;;;;;N;;;;;-0D0B;MALAYALAM LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-0D0C;MALAYALAM LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-0D0E;MALAYALAM LETTER E;Lo;0;L;;;;;N;;;;;-0D0F;MALAYALAM LETTER EE;Lo;0;L;;;;;N;;;;;-0D10;MALAYALAM LETTER AI;Lo;0;L;;;;;N;;;;;-0D12;MALAYALAM LETTER O;Lo;0;L;;;;;N;;;;;-0D13;MALAYALAM LETTER OO;Lo;0;L;;;;;N;;;;;-0D14;MALAYALAM LETTER AU;Lo;0;L;;;;;N;;;;;-0D15;MALAYALAM LETTER KA;Lo;0;L;;;;;N;;;;;-0D16;MALAYALAM LETTER KHA;Lo;0;L;;;;;N;;;;;-0D17;MALAYALAM LETTER GA;Lo;0;L;;;;;N;;;;;-0D18;MALAYALAM LETTER GHA;Lo;0;L;;;;;N;;;;;-0D19;MALAYALAM LETTER NGA;Lo;0;L;;;;;N;;;;;-0D1A;MALAYALAM LETTER CA;Lo;0;L;;;;;N;;;;;-0D1B;MALAYALAM LETTER CHA;Lo;0;L;;;;;N;;;;;-0D1C;MALAYALAM LETTER JA;Lo;0;L;;;;;N;;;;;-0D1D;MALAYALAM LETTER JHA;Lo;0;L;;;;;N;;;;;-0D1E;MALAYALAM LETTER NYA;Lo;0;L;;;;;N;;;;;-0D1F;MALAYALAM LETTER TTA;Lo;0;L;;;;;N;;;;;-0D20;MALAYALAM LETTER TTHA;Lo;0;L;;;;;N;;;;;-0D21;MALAYALAM LETTER DDA;Lo;0;L;;;;;N;;;;;-0D22;MALAYALAM LETTER DDHA;Lo;0;L;;;;;N;;;;;-0D23;MALAYALAM LETTER NNA;Lo;0;L;;;;;N;;;;;-0D24;MALAYALAM LETTER TA;Lo;0;L;;;;;N;;;;;-0D25;MALAYALAM LETTER THA;Lo;0;L;;;;;N;;;;;-0D26;MALAYALAM LETTER DA;Lo;0;L;;;;;N;;;;;-0D27;MALAYALAM LETTER DHA;Lo;0;L;;;;;N;;;;;-0D28;MALAYALAM LETTER NA;Lo;0;L;;;;;N;;;;;-0D29;MALAYALAM LETTER NNNA;Lo;0;L;;;;;N;;;;;-0D2A;MALAYALAM LETTER PA;Lo;0;L;;;;;N;;;;;-0D2B;MALAYALAM LETTER PHA;Lo;0;L;;;;;N;;;;;-0D2C;MALAYALAM LETTER BA;Lo;0;L;;;;;N;;;;;-0D2D;MALAYALAM LETTER BHA;Lo;0;L;;;;;N;;;;;-0D2E;MALAYALAM LETTER MA;Lo;0;L;;;;;N;;;;;-0D2F;MALAYALAM LETTER YA;Lo;0;L;;;;;N;;;;;-0D30;MALAYALAM LETTER RA;Lo;0;L;;;;;N;;;;;-0D31;MALAYALAM LETTER RRA;Lo;0;L;;;;;N;;;;;-0D32;MALAYALAM LETTER LA;Lo;0;L;;;;;N;;;;;-0D33;MALAYALAM LETTER LLA;Lo;0;L;;;;;N;;;;;-0D34;MALAYALAM LETTER LLLA;Lo;0;L;;;;;N;;;;;-0D35;MALAYALAM LETTER VA;Lo;0;L;;;;;N;;;;;-0D36;MALAYALAM LETTER SHA;Lo;0;L;;;;;N;;;;;-0D37;MALAYALAM LETTER SSA;Lo;0;L;;;;;N;;;;;-0D38;MALAYALAM LETTER SA;Lo;0;L;;;;;N;;;;;-0D39;MALAYALAM LETTER HA;Lo;0;L;;;;;N;;;;;-0D3A;MALAYALAM LETTER TTTA;Lo;0;L;;;;;N;;;;;-0D3D;MALAYALAM SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-0D3E;MALAYALAM VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-0D3F;MALAYALAM VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-0D40;MALAYALAM VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-0D41;MALAYALAM VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-0D42;MALAYALAM VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-0D43;MALAYALAM VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-0D44;MALAYALAM VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-0D46;MALAYALAM VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-0D47;MALAYALAM VOWEL SIGN EE;Mc;0;L;;;;;N;;;;;-0D48;MALAYALAM VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-0D4A;MALAYALAM VOWEL SIGN O;Mc;0;L;0D46 0D3E;;;;N;;;;;-0D4B;MALAYALAM VOWEL SIGN OO;Mc;0;L;0D47 0D3E;;;;N;;;;;-0D4C;MALAYALAM VOWEL SIGN AU;Mc;0;L;0D46 0D57;;;;N;;;;;-0D4D;MALAYALAM SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-0D4E;MALAYALAM LETTER DOT REPH;Lo;0;L;;;;;N;;;;;-0D57;MALAYALAM AU LENGTH MARK;Mc;0;L;;;;;N;;;;;-0D60;MALAYALAM LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-0D61;MALAYALAM LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-0D62;MALAYALAM VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-0D63;MALAYALAM VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-0D66;MALAYALAM DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0D67;MALAYALAM DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0D68;MALAYALAM DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0D69;MALAYALAM DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0D6A;MALAYALAM DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0D6B;MALAYALAM DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0D6C;MALAYALAM DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0D6D;MALAYALAM DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0D6E;MALAYALAM DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0D6F;MALAYALAM DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0D70;MALAYALAM NUMBER TEN;No;0;L;;;;10;N;;;;;-0D71;MALAYALAM NUMBER ONE HUNDRED;No;0;L;;;;100;N;;;;;-0D72;MALAYALAM NUMBER ONE THOUSAND;No;0;L;;;;1000;N;;;;;-0D73;MALAYALAM FRACTION ONE QUARTER;No;0;L;;;;1/4;N;;;;;-0D74;MALAYALAM FRACTION ONE HALF;No;0;L;;;;1/2;N;;;;;-0D75;MALAYALAM FRACTION THREE QUARTERS;No;0;L;;;;3/4;N;;;;;-0D79;MALAYALAM DATE MARK;So;0;L;;;;;N;;;;;-0D7A;MALAYALAM LETTER CHILLU NN;Lo;0;L;;;;;N;;;;;-0D7B;MALAYALAM LETTER CHILLU N;Lo;0;L;;;;;N;;;;;-0D7C;MALAYALAM LETTER CHILLU RR;Lo;0;L;;;;;N;;;;;-0D7D;MALAYALAM LETTER CHILLU L;Lo;0;L;;;;;N;;;;;-0D7E;MALAYALAM LETTER CHILLU LL;Lo;0;L;;;;;N;;;;;-0D7F;MALAYALAM LETTER CHILLU K;Lo;0;L;;;;;N;;;;;-0D82;SINHALA SIGN ANUSVARAYA;Mc;0;L;;;;;N;;;;;-0D83;SINHALA SIGN VISARGAYA;Mc;0;L;;;;;N;;;;;-0D85;SINHALA LETTER AYANNA;Lo;0;L;;;;;N;;;;;-0D86;SINHALA LETTER AAYANNA;Lo;0;L;;;;;N;;;;;-0D87;SINHALA LETTER AEYANNA;Lo;0;L;;;;;N;;;;;-0D88;SINHALA LETTER AEEYANNA;Lo;0;L;;;;;N;;;;;-0D89;SINHALA LETTER IYANNA;Lo;0;L;;;;;N;;;;;-0D8A;SINHALA LETTER IIYANNA;Lo;0;L;;;;;N;;;;;-0D8B;SINHALA LETTER UYANNA;Lo;0;L;;;;;N;;;;;-0D8C;SINHALA LETTER UUYANNA;Lo;0;L;;;;;N;;;;;-0D8D;SINHALA LETTER IRUYANNA;Lo;0;L;;;;;N;;;;;-0D8E;SINHALA LETTER IRUUYANNA;Lo;0;L;;;;;N;;;;;-0D8F;SINHALA LETTER ILUYANNA;Lo;0;L;;;;;N;;;;;-0D90;SINHALA LETTER ILUUYANNA;Lo;0;L;;;;;N;;;;;-0D91;SINHALA LETTER EYANNA;Lo;0;L;;;;;N;;;;;-0D92;SINHALA LETTER EEYANNA;Lo;0;L;;;;;N;;;;;-0D93;SINHALA LETTER AIYANNA;Lo;0;L;;;;;N;;;;;-0D94;SINHALA LETTER OYANNA;Lo;0;L;;;;;N;;;;;-0D95;SINHALA LETTER OOYANNA;Lo;0;L;;;;;N;;;;;-0D96;SINHALA LETTER AUYANNA;Lo;0;L;;;;;N;;;;;-0D9A;SINHALA LETTER ALPAPRAANA KAYANNA;Lo;0;L;;;;;N;;;;;-0D9B;SINHALA LETTER MAHAAPRAANA KAYANNA;Lo;0;L;;;;;N;;;;;-0D9C;SINHALA LETTER ALPAPRAANA GAYANNA;Lo;0;L;;;;;N;;;;;-0D9D;SINHALA LETTER MAHAAPRAANA GAYANNA;Lo;0;L;;;;;N;;;;;-0D9E;SINHALA LETTER KANTAJA NAASIKYAYA;Lo;0;L;;;;;N;;;;;-0D9F;SINHALA LETTER SANYAKA GAYANNA;Lo;0;L;;;;;N;;;;;-0DA0;SINHALA LETTER ALPAPRAANA CAYANNA;Lo;0;L;;;;;N;;;;;-0DA1;SINHALA LETTER MAHAAPRAANA CAYANNA;Lo;0;L;;;;;N;;;;;-0DA2;SINHALA LETTER ALPAPRAANA JAYANNA;Lo;0;L;;;;;N;;;;;-0DA3;SINHALA LETTER MAHAAPRAANA JAYANNA;Lo;0;L;;;;;N;;;;;-0DA4;SINHALA LETTER TAALUJA NAASIKYAYA;Lo;0;L;;;;;N;;;;;-0DA5;SINHALA LETTER TAALUJA SANYOOGA NAAKSIKYAYA;Lo;0;L;;;;;N;;;;;-0DA6;SINHALA LETTER SANYAKA JAYANNA;Lo;0;L;;;;;N;;;;;-0DA7;SINHALA LETTER ALPAPRAANA TTAYANNA;Lo;0;L;;;;;N;;;;;-0DA8;SINHALA LETTER MAHAAPRAANA TTAYANNA;Lo;0;L;;;;;N;;;;;-0DA9;SINHALA LETTER ALPAPRAANA DDAYANNA;Lo;0;L;;;;;N;;;;;-0DAA;SINHALA LETTER MAHAAPRAANA DDAYANNA;Lo;0;L;;;;;N;;;;;-0DAB;SINHALA LETTER MUURDHAJA NAYANNA;Lo;0;L;;;;;N;;;;;-0DAC;SINHALA LETTER SANYAKA DDAYANNA;Lo;0;L;;;;;N;;;;;-0DAD;SINHALA LETTER ALPAPRAANA TAYANNA;Lo;0;L;;;;;N;;;;;-0DAE;SINHALA LETTER MAHAAPRAANA TAYANNA;Lo;0;L;;;;;N;;;;;-0DAF;SINHALA LETTER ALPAPRAANA DAYANNA;Lo;0;L;;;;;N;;;;;-0DB0;SINHALA LETTER MAHAAPRAANA DAYANNA;Lo;0;L;;;;;N;;;;;-0DB1;SINHALA LETTER DANTAJA NAYANNA;Lo;0;L;;;;;N;;;;;-0DB3;SINHALA LETTER SANYAKA DAYANNA;Lo;0;L;;;;;N;;;;;-0DB4;SINHALA LETTER ALPAPRAANA PAYANNA;Lo;0;L;;;;;N;;;;;-0DB5;SINHALA LETTER MAHAAPRAANA PAYANNA;Lo;0;L;;;;;N;;;;;-0DB6;SINHALA LETTER ALPAPRAANA BAYANNA;Lo;0;L;;;;;N;;;;;-0DB7;SINHALA LETTER MAHAAPRAANA BAYANNA;Lo;0;L;;;;;N;;;;;-0DB8;SINHALA LETTER MAYANNA;Lo;0;L;;;;;N;;;;;-0DB9;SINHALA LETTER AMBA BAYANNA;Lo;0;L;;;;;N;;;;;-0DBA;SINHALA LETTER YAYANNA;Lo;0;L;;;;;N;;;;;-0DBB;SINHALA LETTER RAYANNA;Lo;0;L;;;;;N;;;;;-0DBD;SINHALA LETTER DANTAJA LAYANNA;Lo;0;L;;;;;N;;;;;-0DC0;SINHALA LETTER VAYANNA;Lo;0;L;;;;;N;;;;;-0DC1;SINHALA LETTER TAALUJA SAYANNA;Lo;0;L;;;;;N;;;;;-0DC2;SINHALA LETTER MUURDHAJA SAYANNA;Lo;0;L;;;;;N;;;;;-0DC3;SINHALA LETTER DANTAJA SAYANNA;Lo;0;L;;;;;N;;;;;-0DC4;SINHALA LETTER HAYANNA;Lo;0;L;;;;;N;;;;;-0DC5;SINHALA LETTER MUURDHAJA LAYANNA;Lo;0;L;;;;;N;;;;;-0DC6;SINHALA LETTER FAYANNA;Lo;0;L;;;;;N;;;;;-0DCA;SINHALA SIGN AL-LAKUNA;Mn;9;NSM;;;;;N;;;;;-0DCF;SINHALA VOWEL SIGN AELA-PILLA;Mc;0;L;;;;;N;;;;;-0DD0;SINHALA VOWEL SIGN KETTI AEDA-PILLA;Mc;0;L;;;;;N;;;;;-0DD1;SINHALA VOWEL SIGN DIGA AEDA-PILLA;Mc;0;L;;;;;N;;;;;-0DD2;SINHALA VOWEL SIGN KETTI IS-PILLA;Mn;0;NSM;;;;;N;;;;;-0DD3;SINHALA VOWEL SIGN DIGA IS-PILLA;Mn;0;NSM;;;;;N;;;;;-0DD4;SINHALA VOWEL SIGN KETTI PAA-PILLA;Mn;0;NSM;;;;;N;;;;;-0DD6;SINHALA VOWEL SIGN DIGA PAA-PILLA;Mn;0;NSM;;;;;N;;;;;-0DD8;SINHALA VOWEL SIGN GAETTA-PILLA;Mc;0;L;;;;;N;;;;;-0DD9;SINHALA VOWEL SIGN KOMBUVA;Mc;0;L;;;;;N;;;;;-0DDA;SINHALA VOWEL SIGN DIGA KOMBUVA;Mc;0;L;0DD9 0DCA;;;;N;;;;;-0DDB;SINHALA VOWEL SIGN KOMBU DEKA;Mc;0;L;;;;;N;;;;;-0DDC;SINHALA VOWEL SIGN KOMBUVA HAA AELA-PILLA;Mc;0;L;0DD9 0DCF;;;;N;;;;;-0DDD;SINHALA VOWEL SIGN KOMBUVA HAA DIGA AELA-PILLA;Mc;0;L;0DDC 0DCA;;;;N;;;;;-0DDE;SINHALA VOWEL SIGN KOMBUVA HAA GAYANUKITTA;Mc;0;L;0DD9 0DDF;;;;N;;;;;-0DDF;SINHALA VOWEL SIGN GAYANUKITTA;Mc;0;L;;;;;N;;;;;-0DE6;SINHALA LITH DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0DE7;SINHALA LITH DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0DE8;SINHALA LITH DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0DE9;SINHALA LITH DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0DEA;SINHALA LITH DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0DEB;SINHALA LITH DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0DEC;SINHALA LITH DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0DED;SINHALA LITH DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0DEE;SINHALA LITH DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0DEF;SINHALA LITH DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0DF2;SINHALA VOWEL SIGN DIGA GAETTA-PILLA;Mc;0;L;;;;;N;;;;;-0DF3;SINHALA VOWEL SIGN DIGA GAYANUKITTA;Mc;0;L;;;;;N;;;;;-0DF4;SINHALA PUNCTUATION KUNDDALIYA;Po;0;L;;;;;N;;;;;-0E01;THAI CHARACTER KO KAI;Lo;0;L;;;;;N;THAI LETTER KO KAI;;;;-0E02;THAI CHARACTER KHO KHAI;Lo;0;L;;;;;N;THAI LETTER KHO KHAI;;;;-0E03;THAI CHARACTER KHO KHUAT;Lo;0;L;;;;;N;THAI LETTER KHO KHUAT;;;;-0E04;THAI CHARACTER KHO KHWAI;Lo;0;L;;;;;N;THAI LETTER KHO KHWAI;;;;-0E05;THAI CHARACTER KHO KHON;Lo;0;L;;;;;N;THAI LETTER KHO KHON;;;;-0E06;THAI CHARACTER KHO RAKHANG;Lo;0;L;;;;;N;THAI LETTER KHO RAKHANG;;;;-0E07;THAI CHARACTER NGO NGU;Lo;0;L;;;;;N;THAI LETTER NGO NGU;;;;-0E08;THAI CHARACTER CHO CHAN;Lo;0;L;;;;;N;THAI LETTER CHO CHAN;;;;-0E09;THAI CHARACTER CHO CHING;Lo;0;L;;;;;N;THAI LETTER CHO CHING;;;;-0E0A;THAI CHARACTER CHO CHANG;Lo;0;L;;;;;N;THAI LETTER CHO CHANG;;;;-0E0B;THAI CHARACTER SO SO;Lo;0;L;;;;;N;THAI LETTER SO SO;;;;-0E0C;THAI CHARACTER CHO CHOE;Lo;0;L;;;;;N;THAI LETTER CHO CHOE;;;;-0E0D;THAI CHARACTER YO YING;Lo;0;L;;;;;N;THAI LETTER YO YING;;;;-0E0E;THAI CHARACTER DO CHADA;Lo;0;L;;;;;N;THAI LETTER DO CHADA;;;;-0E0F;THAI CHARACTER TO PATAK;Lo;0;L;;;;;N;THAI LETTER TO PATAK;;;;-0E10;THAI CHARACTER THO THAN;Lo;0;L;;;;;N;THAI LETTER THO THAN;;;;-0E11;THAI CHARACTER THO NANGMONTHO;Lo;0;L;;;;;N;THAI LETTER THO NANGMONTHO;;;;-0E12;THAI CHARACTER THO PHUTHAO;Lo;0;L;;;;;N;THAI LETTER THO PHUTHAO;;;;-0E13;THAI CHARACTER NO NEN;Lo;0;L;;;;;N;THAI LETTER NO NEN;;;;-0E14;THAI CHARACTER DO DEK;Lo;0;L;;;;;N;THAI LETTER DO DEK;;;;-0E15;THAI CHARACTER TO TAO;Lo;0;L;;;;;N;THAI LETTER TO TAO;;;;-0E16;THAI CHARACTER THO THUNG;Lo;0;L;;;;;N;THAI LETTER THO THUNG;;;;-0E17;THAI CHARACTER THO THAHAN;Lo;0;L;;;;;N;THAI LETTER THO THAHAN;;;;-0E18;THAI CHARACTER THO THONG;Lo;0;L;;;;;N;THAI LETTER THO THONG;;;;-0E19;THAI CHARACTER NO NU;Lo;0;L;;;;;N;THAI LETTER NO NU;;;;-0E1A;THAI CHARACTER BO BAIMAI;Lo;0;L;;;;;N;THAI LETTER BO BAIMAI;;;;-0E1B;THAI CHARACTER PO PLA;Lo;0;L;;;;;N;THAI LETTER PO PLA;;;;-0E1C;THAI CHARACTER PHO PHUNG;Lo;0;L;;;;;N;THAI LETTER PHO PHUNG;;;;-0E1D;THAI CHARACTER FO FA;Lo;0;L;;;;;N;THAI LETTER FO FA;;;;-0E1E;THAI CHARACTER PHO PHAN;Lo;0;L;;;;;N;THAI LETTER PHO PHAN;;;;-0E1F;THAI CHARACTER FO FAN;Lo;0;L;;;;;N;THAI LETTER FO FAN;;;;-0E20;THAI CHARACTER PHO SAMPHAO;Lo;0;L;;;;;N;THAI LETTER PHO SAMPHAO;;;;-0E21;THAI CHARACTER MO MA;Lo;0;L;;;;;N;THAI LETTER MO MA;;;;-0E22;THAI CHARACTER YO YAK;Lo;0;L;;;;;N;THAI LETTER YO YAK;;;;-0E23;THAI CHARACTER RO RUA;Lo;0;L;;;;;N;THAI LETTER RO RUA;;;;-0E24;THAI CHARACTER RU;Lo;0;L;;;;;N;THAI LETTER RU;;;;-0E25;THAI CHARACTER LO LING;Lo;0;L;;;;;N;THAI LETTER LO LING;;;;-0E26;THAI CHARACTER LU;Lo;0;L;;;;;N;THAI LETTER LU;;;;-0E27;THAI CHARACTER WO WAEN;Lo;0;L;;;;;N;THAI LETTER WO WAEN;;;;-0E28;THAI CHARACTER SO SALA;Lo;0;L;;;;;N;THAI LETTER SO SALA;;;;-0E29;THAI CHARACTER SO RUSI;Lo;0;L;;;;;N;THAI LETTER SO RUSI;;;;-0E2A;THAI CHARACTER SO SUA;Lo;0;L;;;;;N;THAI LETTER SO SUA;;;;-0E2B;THAI CHARACTER HO HIP;Lo;0;L;;;;;N;THAI LETTER HO HIP;;;;-0E2C;THAI CHARACTER LO CHULA;Lo;0;L;;;;;N;THAI LETTER LO CHULA;;;;-0E2D;THAI CHARACTER O ANG;Lo;0;L;;;;;N;THAI LETTER O ANG;;;;-0E2E;THAI CHARACTER HO NOKHUK;Lo;0;L;;;;;N;THAI LETTER HO NOK HUK;;;;-0E2F;THAI CHARACTER PAIYANNOI;Lo;0;L;;;;;N;THAI PAI YAN NOI;;;;-0E30;THAI CHARACTER SARA A;Lo;0;L;;;;;N;THAI VOWEL SIGN SARA A;;;;-0E31;THAI CHARACTER MAI HAN-AKAT;Mn;0;NSM;;;;;N;THAI VOWEL SIGN MAI HAN-AKAT;;;;-0E32;THAI CHARACTER SARA AA;Lo;0;L;;;;;N;THAI VOWEL SIGN SARA AA;;;;-0E33;THAI CHARACTER SARA AM;Lo;0;L;<compat> 0E4D 0E32;;;;N;THAI VOWEL SIGN SARA AM;;;;-0E34;THAI CHARACTER SARA I;Mn;0;NSM;;;;;N;THAI VOWEL SIGN SARA I;;;;-0E35;THAI CHARACTER SARA II;Mn;0;NSM;;;;;N;THAI VOWEL SIGN SARA II;;;;-0E36;THAI CHARACTER SARA UE;Mn;0;NSM;;;;;N;THAI VOWEL SIGN SARA UE;;;;-0E37;THAI CHARACTER SARA UEE;Mn;0;NSM;;;;;N;THAI VOWEL SIGN SARA UEE;;;;-0E38;THAI CHARACTER SARA U;Mn;103;NSM;;;;;N;THAI VOWEL SIGN SARA U;;;;-0E39;THAI CHARACTER SARA UU;Mn;103;NSM;;;;;N;THAI VOWEL SIGN SARA UU;;;;-0E3A;THAI CHARACTER PHINTHU;Mn;9;NSM;;;;;N;THAI VOWEL SIGN PHINTHU;;;;-0E3F;THAI CURRENCY SYMBOL BAHT;Sc;0;ET;;;;;N;THAI BAHT SIGN;;;;-0E40;THAI CHARACTER SARA E;Lo;0;L;;;;;N;THAI VOWEL SIGN SARA E;;;;-0E41;THAI CHARACTER SARA AE;Lo;0;L;;;;;N;THAI VOWEL SIGN SARA AE;;;;-0E42;THAI CHARACTER SARA O;Lo;0;L;;;;;N;THAI VOWEL SIGN SARA O;;;;-0E43;THAI CHARACTER SARA AI MAIMUAN;Lo;0;L;;;;;N;THAI VOWEL SIGN SARA MAI MUAN;;;;-0E44;THAI CHARACTER SARA AI MAIMALAI;Lo;0;L;;;;;N;THAI VOWEL SIGN SARA MAI MALAI;;;;-0E45;THAI CHARACTER LAKKHANGYAO;Lo;0;L;;;;;N;THAI LAK KHANG YAO;;;;-0E46;THAI CHARACTER MAIYAMOK;Lm;0;L;;;;;N;THAI MAI YAMOK;;;;-0E47;THAI CHARACTER MAITAIKHU;Mn;0;NSM;;;;;N;THAI VOWEL SIGN MAI TAI KHU;;;;-0E48;THAI CHARACTER MAI EK;Mn;107;NSM;;;;;N;THAI TONE MAI EK;;;;-0E49;THAI CHARACTER MAI THO;Mn;107;NSM;;;;;N;THAI TONE MAI THO;;;;-0E4A;THAI CHARACTER MAI TRI;Mn;107;NSM;;;;;N;THAI TONE MAI TRI;;;;-0E4B;THAI CHARACTER MAI CHATTAWA;Mn;107;NSM;;;;;N;THAI TONE MAI CHATTAWA;;;;-0E4C;THAI CHARACTER THANTHAKHAT;Mn;0;NSM;;;;;N;THAI THANTHAKHAT;;;;-0E4D;THAI CHARACTER NIKHAHIT;Mn;0;NSM;;;;;N;THAI NIKKHAHIT;;;;-0E4E;THAI CHARACTER YAMAKKAN;Mn;0;NSM;;;;;N;THAI YAMAKKAN;;;;-0E4F;THAI CHARACTER FONGMAN;Po;0;L;;;;;N;THAI FONGMAN;;;;-0E50;THAI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0E51;THAI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0E52;THAI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0E53;THAI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0E54;THAI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0E55;THAI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0E56;THAI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0E57;THAI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0E58;THAI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0E59;THAI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0E5A;THAI CHARACTER ANGKHANKHU;Po;0;L;;;;;N;THAI ANGKHANKHU;;;;-0E5B;THAI CHARACTER KHOMUT;Po;0;L;;;;;N;THAI KHOMUT;;;;-0E81;LAO LETTER KO;Lo;0;L;;;;;N;;;;;-0E82;LAO LETTER KHO SUNG;Lo;0;L;;;;;N;;;;;-0E84;LAO LETTER KHO TAM;Lo;0;L;;;;;N;;;;;-0E87;LAO LETTER NGO;Lo;0;L;;;;;N;;;;;-0E88;LAO LETTER CO;Lo;0;L;;;;;N;;;;;-0E8A;LAO LETTER SO TAM;Lo;0;L;;;;;N;;;;;-0E8D;LAO LETTER NYO;Lo;0;L;;;;;N;;;;;-0E94;LAO LETTER DO;Lo;0;L;;;;;N;;;;;-0E95;LAO LETTER TO;Lo;0;L;;;;;N;;;;;-0E96;LAO LETTER THO SUNG;Lo;0;L;;;;;N;;;;;-0E97;LAO LETTER THO TAM;Lo;0;L;;;;;N;;;;;-0E99;LAO LETTER NO;Lo;0;L;;;;;N;;;;;-0E9A;LAO LETTER BO;Lo;0;L;;;;;N;;;;;-0E9B;LAO LETTER PO;Lo;0;L;;;;;N;;;;;-0E9C;LAO LETTER PHO SUNG;Lo;0;L;;;;;N;;;;;-0E9D;LAO LETTER FO TAM;Lo;0;L;;;;;N;;;;;-0E9E;LAO LETTER PHO TAM;Lo;0;L;;;;;N;;;;;-0E9F;LAO LETTER FO SUNG;Lo;0;L;;;;;N;;;;;-0EA1;LAO LETTER MO;Lo;0;L;;;;;N;;;;;-0EA2;LAO LETTER YO;Lo;0;L;;;;;N;;;;;-0EA3;LAO LETTER LO LING;Lo;0;L;;;;;N;;;;;-0EA5;LAO LETTER LO LOOT;Lo;0;L;;;;;N;;;;;-0EA7;LAO LETTER WO;Lo;0;L;;;;;N;;;;;-0EAA;LAO LETTER SO SUNG;Lo;0;L;;;;;N;;;;;-0EAB;LAO LETTER HO SUNG;Lo;0;L;;;;;N;;;;;-0EAD;LAO LETTER O;Lo;0;L;;;;;N;;;;;-0EAE;LAO LETTER HO TAM;Lo;0;L;;;;;N;;;;;-0EAF;LAO ELLIPSIS;Lo;0;L;;;;;N;;;;;-0EB0;LAO VOWEL SIGN A;Lo;0;L;;;;;N;;;;;-0EB1;LAO VOWEL SIGN MAI KAN;Mn;0;NSM;;;;;N;;;;;-0EB2;LAO VOWEL SIGN AA;Lo;0;L;;;;;N;;;;;-0EB3;LAO VOWEL SIGN AM;Lo;0;L;<compat> 0ECD 0EB2;;;;N;;;;;-0EB4;LAO VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-0EB5;LAO VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-0EB6;LAO VOWEL SIGN Y;Mn;0;NSM;;;;;N;;;;;-0EB7;LAO VOWEL SIGN YY;Mn;0;NSM;;;;;N;;;;;-0EB8;LAO VOWEL SIGN U;Mn;118;NSM;;;;;N;;;;;-0EB9;LAO VOWEL SIGN UU;Mn;118;NSM;;;;;N;;;;;-0EBB;LAO VOWEL SIGN MAI KON;Mn;0;NSM;;;;;N;;;;;-0EBC;LAO SEMIVOWEL SIGN LO;Mn;0;NSM;;;;;N;;;;;-0EBD;LAO SEMIVOWEL SIGN NYO;Lo;0;L;;;;;N;;;;;-0EC0;LAO VOWEL SIGN E;Lo;0;L;;;;;N;;;;;-0EC1;LAO VOWEL SIGN EI;Lo;0;L;;;;;N;;;;;-0EC2;LAO VOWEL SIGN O;Lo;0;L;;;;;N;;;;;-0EC3;LAO VOWEL SIGN AY;Lo;0;L;;;;;N;;;;;-0EC4;LAO VOWEL SIGN AI;Lo;0;L;;;;;N;;;;;-0EC6;LAO KO LA;Lm;0;L;;;;;N;;;;;-0EC8;LAO TONE MAI EK;Mn;122;NSM;;;;;N;;;;;-0EC9;LAO TONE MAI THO;Mn;122;NSM;;;;;N;;;;;-0ECA;LAO TONE MAI TI;Mn;122;NSM;;;;;N;;;;;-0ECB;LAO TONE MAI CATAWA;Mn;122;NSM;;;;;N;;;;;-0ECC;LAO CANCELLATION MARK;Mn;0;NSM;;;;;N;;;;;-0ECD;LAO NIGGAHITA;Mn;0;NSM;;;;;N;;;;;-0ED0;LAO DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0ED1;LAO DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0ED2;LAO DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0ED3;LAO DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0ED4;LAO DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0ED5;LAO DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0ED6;LAO DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0ED7;LAO DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0ED8;LAO DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0ED9;LAO DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0EDC;LAO HO NO;Lo;0;L;<compat> 0EAB 0E99;;;;N;;;;;-0EDD;LAO HO MO;Lo;0;L;<compat> 0EAB 0EA1;;;;N;;;;;-0EDE;LAO LETTER KHMU GO;Lo;0;L;;;;;N;;;;;-0EDF;LAO LETTER KHMU NYO;Lo;0;L;;;;;N;;;;;-0F00;TIBETAN SYLLABLE OM;Lo;0;L;;;;;N;;;;;-0F01;TIBETAN MARK GTER YIG MGO TRUNCATED A;So;0;L;;;;;N;;;;;-0F02;TIBETAN MARK GTER YIG MGO -UM RNAM BCAD MA;So;0;L;;;;;N;;;;;-0F03;TIBETAN MARK GTER YIG MGO -UM GTER TSHEG MA;So;0;L;;;;;N;;;;;-0F04;TIBETAN MARK INITIAL YIG MGO MDUN MA;Po;0;L;;;;;N;TIBETAN SINGLE ORNAMENT;;;;-0F05;TIBETAN MARK CLOSING YIG MGO SGAB MA;Po;0;L;;;;;N;;;;;-0F06;TIBETAN MARK CARET YIG MGO PHUR SHAD MA;Po;0;L;;;;;N;;;;;-0F07;TIBETAN MARK YIG MGO TSHEG SHAD MA;Po;0;L;;;;;N;;;;;-0F08;TIBETAN MARK SBRUL SHAD;Po;0;L;;;;;N;TIBETAN RGYANSHAD;;;;-0F09;TIBETAN MARK BSKUR YIG MGO;Po;0;L;;;;;N;;;;;-0F0A;TIBETAN MARK BKA- SHOG YIG MGO;Po;0;L;;;;;N;;;;;-0F0B;TIBETAN MARK INTERSYLLABIC TSHEG;Po;0;L;;;;;N;TIBETAN TSEG;;;;-0F0C;TIBETAN MARK DELIMITER TSHEG BSTAR;Po;0;L;<noBreak> 0F0B;;;;N;;;;;-0F0D;TIBETAN MARK SHAD;Po;0;L;;;;;N;TIBETAN SHAD;;;;-0F0E;TIBETAN MARK NYIS SHAD;Po;0;L;;;;;N;TIBETAN DOUBLE SHAD;;;;-0F0F;TIBETAN MARK TSHEG SHAD;Po;0;L;;;;;N;;;;;-0F10;TIBETAN MARK NYIS TSHEG SHAD;Po;0;L;;;;;N;;;;;-0F11;TIBETAN MARK RIN CHEN SPUNGS SHAD;Po;0;L;;;;;N;TIBETAN RINCHANPHUNGSHAD;;;;-0F12;TIBETAN MARK RGYA GRAM SHAD;Po;0;L;;;;;N;;;;;-0F13;TIBETAN MARK CARET -DZUD RTAGS ME LONG CAN;So;0;L;;;;;N;;;;;-0F14;TIBETAN MARK GTER TSHEG;Po;0;L;;;;;N;TIBETAN COMMA;;;;-0F15;TIBETAN LOGOTYPE SIGN CHAD RTAGS;So;0;L;;;;;N;;;;;-0F16;TIBETAN LOGOTYPE SIGN LHAG RTAGS;So;0;L;;;;;N;;;;;-0F17;TIBETAN ASTROLOGICAL SIGN SGRA GCAN -CHAR RTAGS;So;0;L;;;;;N;;;;;-0F18;TIBETAN ASTROLOGICAL SIGN -KHYUD PA;Mn;220;NSM;;;;;N;;;;;-0F19;TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS;Mn;220;NSM;;;;;N;;;;;-0F1A;TIBETAN SIGN RDEL DKAR GCIG;So;0;L;;;;;N;;;;;-0F1B;TIBETAN SIGN RDEL DKAR GNYIS;So;0;L;;;;;N;;;;;-0F1C;TIBETAN SIGN RDEL DKAR GSUM;So;0;L;;;;;N;;;;;-0F1D;TIBETAN SIGN RDEL NAG GCIG;So;0;L;;;;;N;;;;;-0F1E;TIBETAN SIGN RDEL NAG GNYIS;So;0;L;;;;;N;;;;;-0F1F;TIBETAN SIGN RDEL DKAR RDEL NAG;So;0;L;;;;;N;;;;;-0F20;TIBETAN DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-0F21;TIBETAN DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-0F22;TIBETAN DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-0F23;TIBETAN DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-0F24;TIBETAN DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-0F25;TIBETAN DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-0F26;TIBETAN DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-0F27;TIBETAN DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-0F28;TIBETAN DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-0F29;TIBETAN DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-0F2A;TIBETAN DIGIT HALF ONE;No;0;L;;;;1/2;N;;;;;-0F2B;TIBETAN DIGIT HALF TWO;No;0;L;;;;3/2;N;;;;;-0F2C;TIBETAN DIGIT HALF THREE;No;0;L;;;;5/2;N;;;;;-0F2D;TIBETAN DIGIT HALF FOUR;No;0;L;;;;7/2;N;;;;;-0F2E;TIBETAN DIGIT HALF FIVE;No;0;L;;;;9/2;N;;;;;-0F2F;TIBETAN DIGIT HALF SIX;No;0;L;;;;11/2;N;;;;;-0F30;TIBETAN DIGIT HALF SEVEN;No;0;L;;;;13/2;N;;;;;-0F31;TIBETAN DIGIT HALF EIGHT;No;0;L;;;;15/2;N;;;;;-0F32;TIBETAN DIGIT HALF NINE;No;0;L;;;;17/2;N;;;;;-0F33;TIBETAN DIGIT HALF ZERO;No;0;L;;;;-1/2;N;;;;;-0F34;TIBETAN MARK BSDUS RTAGS;So;0;L;;;;;N;;;;;-0F35;TIBETAN MARK NGAS BZUNG NYI ZLA;Mn;220;NSM;;;;;N;TIBETAN HONORIFIC UNDER RING;;;;-0F36;TIBETAN MARK CARET -DZUD RTAGS BZHI MIG CAN;So;0;L;;;;;N;;;;;-0F37;TIBETAN MARK NGAS BZUNG SGOR RTAGS;Mn;220;NSM;;;;;N;TIBETAN UNDER RING;;;;-0F38;TIBETAN MARK CHE MGO;So;0;L;;;;;N;;;;;-0F39;TIBETAN MARK TSA -PHRU;Mn;216;NSM;;;;;N;TIBETAN LENITION MARK;;;;-0F3A;TIBETAN MARK GUG RTAGS GYON;Ps;0;ON;;;;;Y;;;;;-0F3B;TIBETAN MARK GUG RTAGS GYAS;Pe;0;ON;;;;;Y;;;;;-0F3C;TIBETAN MARK ANG KHANG GYON;Ps;0;ON;;;;;Y;TIBETAN LEFT BRACE;;;;-0F3D;TIBETAN MARK ANG KHANG GYAS;Pe;0;ON;;;;;Y;TIBETAN RIGHT BRACE;;;;-0F3E;TIBETAN SIGN YAR TSHES;Mc;0;L;;;;;N;;;;;-0F3F;TIBETAN SIGN MAR TSHES;Mc;0;L;;;;;N;;;;;-0F40;TIBETAN LETTER KA;Lo;0;L;;;;;N;;;;;-0F41;TIBETAN LETTER KHA;Lo;0;L;;;;;N;;;;;-0F42;TIBETAN LETTER GA;Lo;0;L;;;;;N;;;;;-0F43;TIBETAN LETTER GHA;Lo;0;L;0F42 0FB7;;;;N;;;;;-0F44;TIBETAN LETTER NGA;Lo;0;L;;;;;N;;;;;-0F45;TIBETAN LETTER CA;Lo;0;L;;;;;N;;;;;-0F46;TIBETAN LETTER CHA;Lo;0;L;;;;;N;;;;;-0F47;TIBETAN LETTER JA;Lo;0;L;;;;;N;;;;;-0F49;TIBETAN LETTER NYA;Lo;0;L;;;;;N;;;;;-0F4A;TIBETAN LETTER TTA;Lo;0;L;;;;;N;TIBETAN LETTER REVERSED TA;;;;-0F4B;TIBETAN LETTER TTHA;Lo;0;L;;;;;N;TIBETAN LETTER REVERSED THA;;;;-0F4C;TIBETAN LETTER DDA;Lo;0;L;;;;;N;TIBETAN LETTER REVERSED DA;;;;-0F4D;TIBETAN LETTER DDHA;Lo;0;L;0F4C 0FB7;;;;N;;;;;-0F4E;TIBETAN LETTER NNA;Lo;0;L;;;;;N;TIBETAN LETTER REVERSED NA;;;;-0F4F;TIBETAN LETTER TA;Lo;0;L;;;;;N;;;;;-0F50;TIBETAN LETTER THA;Lo;0;L;;;;;N;;;;;-0F51;TIBETAN LETTER DA;Lo;0;L;;;;;N;;;;;-0F52;TIBETAN LETTER DHA;Lo;0;L;0F51 0FB7;;;;N;;;;;-0F53;TIBETAN LETTER NA;Lo;0;L;;;;;N;;;;;-0F54;TIBETAN LETTER PA;Lo;0;L;;;;;N;;;;;-0F55;TIBETAN LETTER PHA;Lo;0;L;;;;;N;;;;;-0F56;TIBETAN LETTER BA;Lo;0;L;;;;;N;;;;;-0F57;TIBETAN LETTER BHA;Lo;0;L;0F56 0FB7;;;;N;;;;;-0F58;TIBETAN LETTER MA;Lo;0;L;;;;;N;;;;;-0F59;TIBETAN LETTER TSA;Lo;0;L;;;;;N;;;;;-0F5A;TIBETAN LETTER TSHA;Lo;0;L;;;;;N;;;;;-0F5B;TIBETAN LETTER DZA;Lo;0;L;;;;;N;;;;;-0F5C;TIBETAN LETTER DZHA;Lo;0;L;0F5B 0FB7;;;;N;;;;;-0F5D;TIBETAN LETTER WA;Lo;0;L;;;;;N;;;;;-0F5E;TIBETAN LETTER ZHA;Lo;0;L;;;;;N;;;;;-0F5F;TIBETAN LETTER ZA;Lo;0;L;;;;;N;;;;;-0F60;TIBETAN LETTER -A;Lo;0;L;;;;;N;TIBETAN LETTER AA;;;;-0F61;TIBETAN LETTER YA;Lo;0;L;;;;;N;;;;;-0F62;TIBETAN LETTER RA;Lo;0;L;;;;;N;;;;;-0F63;TIBETAN LETTER LA;Lo;0;L;;;;;N;;;;;-0F64;TIBETAN LETTER SHA;Lo;0;L;;;;;N;;;;;-0F65;TIBETAN LETTER SSA;Lo;0;L;;;;;N;TIBETAN LETTER REVERSED SHA;;;;-0F66;TIBETAN LETTER SA;Lo;0;L;;;;;N;;;;;-0F67;TIBETAN LETTER HA;Lo;0;L;;;;;N;;;;;-0F68;TIBETAN LETTER A;Lo;0;L;;;;;N;;;;;-0F69;TIBETAN LETTER KSSA;Lo;0;L;0F40 0FB5;;;;N;;;;;-0F6A;TIBETAN LETTER FIXED-FORM RA;Lo;0;L;;;;;N;;;;;-0F6B;TIBETAN LETTER KKA;Lo;0;L;;;;;N;;;;;-0F6C;TIBETAN LETTER RRA;Lo;0;L;;;;;N;;;;;-0F71;TIBETAN VOWEL SIGN AA;Mn;129;NSM;;;;;N;;;;;-0F72;TIBETAN VOWEL SIGN I;Mn;130;NSM;;;;;N;;;;;-0F73;TIBETAN VOWEL SIGN II;Mn;0;NSM;0F71 0F72;;;;N;;;;;-0F74;TIBETAN VOWEL SIGN U;Mn;132;NSM;;;;;N;;;;;-0F75;TIBETAN VOWEL SIGN UU;Mn;0;NSM;0F71 0F74;;;;N;;;;;-0F76;TIBETAN VOWEL SIGN VOCALIC R;Mn;0;NSM;0FB2 0F80;;;;N;;;;;-0F77;TIBETAN VOWEL SIGN VOCALIC RR;Mn;0;NSM;<compat> 0FB2 0F81;;;;N;;;;;-0F78;TIBETAN VOWEL SIGN VOCALIC L;Mn;0;NSM;0FB3 0F80;;;;N;;;;;-0F79;TIBETAN VOWEL SIGN VOCALIC LL;Mn;0;NSM;<compat> 0FB3 0F81;;;;N;;;;;-0F7A;TIBETAN VOWEL SIGN E;Mn;130;NSM;;;;;N;;;;;-0F7B;TIBETAN VOWEL SIGN EE;Mn;130;NSM;;;;;N;TIBETAN VOWEL SIGN AI;;;;-0F7C;TIBETAN VOWEL SIGN O;Mn;130;NSM;;;;;N;;;;;-0F7D;TIBETAN VOWEL SIGN OO;Mn;130;NSM;;;;;N;TIBETAN VOWEL SIGN AU;;;;-0F7E;TIBETAN SIGN RJES SU NGA RO;Mn;0;NSM;;;;;N;TIBETAN ANUSVARA;;;;-0F7F;TIBETAN SIGN RNAM BCAD;Mc;0;L;;;;;N;TIBETAN VISARGA;;;;-0F80;TIBETAN VOWEL SIGN REVERSED I;Mn;130;NSM;;;;;N;TIBETAN VOWEL SIGN SHORT I;;;;-0F81;TIBETAN VOWEL SIGN REVERSED II;Mn;0;NSM;0F71 0F80;;;;N;;;;;-0F82;TIBETAN SIGN NYI ZLA NAA DA;Mn;230;NSM;;;;;N;TIBETAN CANDRABINDU WITH ORNAMENT;;;;-0F83;TIBETAN SIGN SNA LDAN;Mn;230;NSM;;;;;N;TIBETAN CANDRABINDU;;;;-0F84;TIBETAN MARK HALANTA;Mn;9;NSM;;;;;N;TIBETAN VIRAMA;;;;-0F85;TIBETAN MARK PALUTA;Po;0;L;;;;;N;TIBETAN CHUCHENYIGE;;;;-0F86;TIBETAN SIGN LCI RTAGS;Mn;230;NSM;;;;;N;;;;;-0F87;TIBETAN SIGN YANG RTAGS;Mn;230;NSM;;;;;N;;;;;-0F88;TIBETAN SIGN LCE TSA CAN;Lo;0;L;;;;;N;;;;;-0F89;TIBETAN SIGN MCHU CAN;Lo;0;L;;;;;N;;;;;-0F8A;TIBETAN SIGN GRU CAN RGYINGS;Lo;0;L;;;;;N;;;;;-0F8B;TIBETAN SIGN GRU MED RGYINGS;Lo;0;L;;;;;N;;;;;-0F8C;TIBETAN SIGN INVERTED MCHU CAN;Lo;0;L;;;;;N;;;;;-0F8D;TIBETAN SUBJOINED SIGN LCE TSA CAN;Mn;0;NSM;;;;;N;;;;;-0F8E;TIBETAN SUBJOINED SIGN MCHU CAN;Mn;0;NSM;;;;;N;;;;;-0F8F;TIBETAN SUBJOINED SIGN INVERTED MCHU CAN;Mn;0;NSM;;;;;N;;;;;-0F90;TIBETAN SUBJOINED LETTER KA;Mn;0;NSM;;;;;N;;;;;-0F91;TIBETAN SUBJOINED LETTER KHA;Mn;0;NSM;;;;;N;;;;;-0F92;TIBETAN SUBJOINED LETTER GA;Mn;0;NSM;;;;;N;;;;;-0F93;TIBETAN SUBJOINED LETTER GHA;Mn;0;NSM;0F92 0FB7;;;;N;;;;;-0F94;TIBETAN SUBJOINED LETTER NGA;Mn;0;NSM;;;;;N;;;;;-0F95;TIBETAN SUBJOINED LETTER CA;Mn;0;NSM;;;;;N;;;;;-0F96;TIBETAN SUBJOINED LETTER CHA;Mn;0;NSM;;;;;N;;;;;-0F97;TIBETAN SUBJOINED LETTER JA;Mn;0;NSM;;;;;N;;;;;-0F99;TIBETAN SUBJOINED LETTER NYA;Mn;0;NSM;;;;;N;;;;;-0F9A;TIBETAN SUBJOINED LETTER TTA;Mn;0;NSM;;;;;N;;;;;-0F9B;TIBETAN SUBJOINED LETTER TTHA;Mn;0;NSM;;;;;N;;;;;-0F9C;TIBETAN SUBJOINED LETTER DDA;Mn;0;NSM;;;;;N;;;;;-0F9D;TIBETAN SUBJOINED LETTER DDHA;Mn;0;NSM;0F9C 0FB7;;;;N;;;;;-0F9E;TIBETAN SUBJOINED LETTER NNA;Mn;0;NSM;;;;;N;;;;;-0F9F;TIBETAN SUBJOINED LETTER TA;Mn;0;NSM;;;;;N;;;;;-0FA0;TIBETAN SUBJOINED LETTER THA;Mn;0;NSM;;;;;N;;;;;-0FA1;TIBETAN SUBJOINED LETTER DA;Mn;0;NSM;;;;;N;;;;;-0FA2;TIBETAN SUBJOINED LETTER DHA;Mn;0;NSM;0FA1 0FB7;;;;N;;;;;-0FA3;TIBETAN SUBJOINED LETTER NA;Mn;0;NSM;;;;;N;;;;;-0FA4;TIBETAN SUBJOINED LETTER PA;Mn;0;NSM;;;;;N;;;;;-0FA5;TIBETAN SUBJOINED LETTER PHA;Mn;0;NSM;;;;;N;;;;;-0FA6;TIBETAN SUBJOINED LETTER BA;Mn;0;NSM;;;;;N;;;;;-0FA7;TIBETAN SUBJOINED LETTER BHA;Mn;0;NSM;0FA6 0FB7;;;;N;;;;;-0FA8;TIBETAN SUBJOINED LETTER MA;Mn;0;NSM;;;;;N;;;;;-0FA9;TIBETAN SUBJOINED LETTER TSA;Mn;0;NSM;;;;;N;;;;;-0FAA;TIBETAN SUBJOINED LETTER TSHA;Mn;0;NSM;;;;;N;;;;;-0FAB;TIBETAN SUBJOINED LETTER DZA;Mn;0;NSM;;;;;N;;;;;-0FAC;TIBETAN SUBJOINED LETTER DZHA;Mn;0;NSM;0FAB 0FB7;;;;N;;;;;-0FAD;TIBETAN SUBJOINED LETTER WA;Mn;0;NSM;;;;;N;;;;;-0FAE;TIBETAN SUBJOINED LETTER ZHA;Mn;0;NSM;;;;;N;;;;;-0FAF;TIBETAN SUBJOINED LETTER ZA;Mn;0;NSM;;;;;N;;;;;-0FB0;TIBETAN SUBJOINED LETTER -A;Mn;0;NSM;;;;;N;;;;;-0FB1;TIBETAN SUBJOINED LETTER YA;Mn;0;NSM;;;;;N;;;;;-0FB2;TIBETAN SUBJOINED LETTER RA;Mn;0;NSM;;;;;N;;;;;-0FB3;TIBETAN SUBJOINED LETTER LA;Mn;0;NSM;;;;;N;;;;;-0FB4;TIBETAN SUBJOINED LETTER SHA;Mn;0;NSM;;;;;N;;;;;-0FB5;TIBETAN SUBJOINED LETTER SSA;Mn;0;NSM;;;;;N;;;;;-0FB6;TIBETAN SUBJOINED LETTER SA;Mn;0;NSM;;;;;N;;;;;-0FB7;TIBETAN SUBJOINED LETTER HA;Mn;0;NSM;;;;;N;;;;;-0FB8;TIBETAN SUBJOINED LETTER A;Mn;0;NSM;;;;;N;;;;;-0FB9;TIBETAN SUBJOINED LETTER KSSA;Mn;0;NSM;0F90 0FB5;;;;N;;;;;-0FBA;TIBETAN SUBJOINED LETTER FIXED-FORM WA;Mn;0;NSM;;;;;N;;;;;-0FBB;TIBETAN SUBJOINED LETTER FIXED-FORM YA;Mn;0;NSM;;;;;N;;;;;-0FBC;TIBETAN SUBJOINED LETTER FIXED-FORM RA;Mn;0;NSM;;;;;N;;;;;-0FBE;TIBETAN KU RU KHA;So;0;L;;;;;N;;;;;-0FBF;TIBETAN KU RU KHA BZHI MIG CAN;So;0;L;;;;;N;;;;;-0FC0;TIBETAN CANTILLATION SIGN HEAVY BEAT;So;0;L;;;;;N;;;;;-0FC1;TIBETAN CANTILLATION SIGN LIGHT BEAT;So;0;L;;;;;N;;;;;-0FC2;TIBETAN CANTILLATION SIGN CANG TE-U;So;0;L;;;;;N;;;;;-0FC3;TIBETAN CANTILLATION SIGN SBUB -CHAL;So;0;L;;;;;N;;;;;-0FC4;TIBETAN SYMBOL DRIL BU;So;0;L;;;;;N;;;;;-0FC5;TIBETAN SYMBOL RDO RJE;So;0;L;;;;;N;;;;;-0FC6;TIBETAN SYMBOL PADMA GDAN;Mn;220;NSM;;;;;N;;;;;-0FC7;TIBETAN SYMBOL RDO RJE RGYA GRAM;So;0;L;;;;;N;;;;;-0FC8;TIBETAN SYMBOL PHUR PA;So;0;L;;;;;N;;;;;-0FC9;TIBETAN SYMBOL NOR BU;So;0;L;;;;;N;;;;;-0FCA;TIBETAN SYMBOL NOR BU NYIS -KHYIL;So;0;L;;;;;N;;;;;-0FCB;TIBETAN SYMBOL NOR BU GSUM -KHYIL;So;0;L;;;;;N;;;;;-0FCC;TIBETAN SYMBOL NOR BU BZHI -KHYIL;So;0;L;;;;;N;;;;;-0FCE;TIBETAN SIGN RDEL NAG RDEL DKAR;So;0;L;;;;;N;;;;;-0FCF;TIBETAN SIGN RDEL NAG GSUM;So;0;L;;;;;N;;;;;-0FD0;TIBETAN MARK BSKA- SHOG GI MGO RGYAN;Po;0;L;;;;;N;;;;;-0FD1;TIBETAN MARK MNYAM YIG GI MGO RGYAN;Po;0;L;;;;;N;;;;;-0FD2;TIBETAN MARK NYIS TSHEG;Po;0;L;;;;;N;;;;;-0FD3;TIBETAN MARK INITIAL BRDA RNYING YIG MGO MDUN MA;Po;0;L;;;;;N;;;;;-0FD4;TIBETAN MARK CLOSING BRDA RNYING YIG MGO SGAB MA;Po;0;L;;;;;N;;;;;-0FD5;RIGHT-FACING SVASTI SIGN;So;0;L;;;;;N;;;;;-0FD6;LEFT-FACING SVASTI SIGN;So;0;L;;;;;N;;;;;-0FD7;RIGHT-FACING SVASTI SIGN WITH DOTS;So;0;L;;;;;N;;;;;-0FD8;LEFT-FACING SVASTI SIGN WITH DOTS;So;0;L;;;;;N;;;;;-0FD9;TIBETAN MARK LEADING MCHAN RTAGS;Po;0;L;;;;;N;;;;;-0FDA;TIBETAN MARK TRAILING MCHAN RTAGS;Po;0;L;;;;;N;;;;;-1000;MYANMAR LETTER KA;Lo;0;L;;;;;N;;;;;-1001;MYANMAR LETTER KHA;Lo;0;L;;;;;N;;;;;-1002;MYANMAR LETTER GA;Lo;0;L;;;;;N;;;;;-1003;MYANMAR LETTER GHA;Lo;0;L;;;;;N;;;;;-1004;MYANMAR LETTER NGA;Lo;0;L;;;;;N;;;;;-1005;MYANMAR LETTER CA;Lo;0;L;;;;;N;;;;;-1006;MYANMAR LETTER CHA;Lo;0;L;;;;;N;;;;;-1007;MYANMAR LETTER JA;Lo;0;L;;;;;N;;;;;-1008;MYANMAR LETTER JHA;Lo;0;L;;;;;N;;;;;-1009;MYANMAR LETTER NYA;Lo;0;L;;;;;N;;;;;-100A;MYANMAR LETTER NNYA;Lo;0;L;;;;;N;;;;;-100B;MYANMAR LETTER TTA;Lo;0;L;;;;;N;;;;;-100C;MYANMAR LETTER TTHA;Lo;0;L;;;;;N;;;;;-100D;MYANMAR LETTER DDA;Lo;0;L;;;;;N;;;;;-100E;MYANMAR LETTER DDHA;Lo;0;L;;;;;N;;;;;-100F;MYANMAR LETTER NNA;Lo;0;L;;;;;N;;;;;-1010;MYANMAR LETTER TA;Lo;0;L;;;;;N;;;;;-1011;MYANMAR LETTER THA;Lo;0;L;;;;;N;;;;;-1012;MYANMAR LETTER DA;Lo;0;L;;;;;N;;;;;-1013;MYANMAR LETTER DHA;Lo;0;L;;;;;N;;;;;-1014;MYANMAR LETTER NA;Lo;0;L;;;;;N;;;;;-1015;MYANMAR LETTER PA;Lo;0;L;;;;;N;;;;;-1016;MYANMAR LETTER PHA;Lo;0;L;;;;;N;;;;;-1017;MYANMAR LETTER BA;Lo;0;L;;;;;N;;;;;-1018;MYANMAR LETTER BHA;Lo;0;L;;;;;N;;;;;-1019;MYANMAR LETTER MA;Lo;0;L;;;;;N;;;;;-101A;MYANMAR LETTER YA;Lo;0;L;;;;;N;;;;;-101B;MYANMAR LETTER RA;Lo;0;L;;;;;N;;;;;-101C;MYANMAR LETTER LA;Lo;0;L;;;;;N;;;;;-101D;MYANMAR LETTER WA;Lo;0;L;;;;;N;;;;;-101E;MYANMAR LETTER SA;Lo;0;L;;;;;N;;;;;-101F;MYANMAR LETTER HA;Lo;0;L;;;;;N;;;;;-1020;MYANMAR LETTER LLA;Lo;0;L;;;;;N;;;;;-1021;MYANMAR LETTER A;Lo;0;L;;;;;N;;;;;-1022;MYANMAR LETTER SHAN A;Lo;0;L;;;;;N;;;;;-1023;MYANMAR LETTER I;Lo;0;L;;;;;N;;;;;-1024;MYANMAR LETTER II;Lo;0;L;;;;;N;;;;;-1025;MYANMAR LETTER U;Lo;0;L;;;;;N;;;;;-1026;MYANMAR LETTER UU;Lo;0;L;1025 102E;;;;N;;;;;-1027;MYANMAR LETTER E;Lo;0;L;;;;;N;;;;;-1028;MYANMAR LETTER MON E;Lo;0;L;;;;;N;;;;;-1029;MYANMAR LETTER O;Lo;0;L;;;;;N;;;;;-102A;MYANMAR LETTER AU;Lo;0;L;;;;;N;;;;;-102B;MYANMAR VOWEL SIGN TALL AA;Mc;0;L;;;;;N;;;;;-102C;MYANMAR VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-102D;MYANMAR VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-102E;MYANMAR VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-102F;MYANMAR VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1030;MYANMAR VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-1031;MYANMAR VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-1032;MYANMAR VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-1033;MYANMAR VOWEL SIGN MON II;Mn;0;NSM;;;;;N;;;;;-1034;MYANMAR VOWEL SIGN MON O;Mn;0;NSM;;;;;N;;;;;-1035;MYANMAR VOWEL SIGN E ABOVE;Mn;0;NSM;;;;;N;;;;;-1036;MYANMAR SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-1037;MYANMAR SIGN DOT BELOW;Mn;7;NSM;;;;;N;;;;;-1038;MYANMAR SIGN VISARGA;Mc;0;L;;;;;N;;;;;-1039;MYANMAR SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-103A;MYANMAR SIGN ASAT;Mn;9;NSM;;;;;N;;;;;-103B;MYANMAR CONSONANT SIGN MEDIAL YA;Mc;0;L;;;;;N;;;;;-103C;MYANMAR CONSONANT SIGN MEDIAL RA;Mc;0;L;;;;;N;;;;;-103D;MYANMAR CONSONANT SIGN MEDIAL WA;Mn;0;NSM;;;;;N;;;;;-103E;MYANMAR CONSONANT SIGN MEDIAL HA;Mn;0;NSM;;;;;N;;;;;-103F;MYANMAR LETTER GREAT SA;Lo;0;L;;;;;N;;;;;-1040;MYANMAR DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1041;MYANMAR DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1042;MYANMAR DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1043;MYANMAR DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1044;MYANMAR DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1045;MYANMAR DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1046;MYANMAR DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1047;MYANMAR DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1048;MYANMAR DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1049;MYANMAR DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-104A;MYANMAR SIGN LITTLE SECTION;Po;0;L;;;;;N;;;;;-104B;MYANMAR SIGN SECTION;Po;0;L;;;;;N;;;;;-104C;MYANMAR SYMBOL LOCATIVE;Po;0;L;;;;;N;;;;;-104D;MYANMAR SYMBOL COMPLETED;Po;0;L;;;;;N;;;;;-104E;MYANMAR SYMBOL AFOREMENTIONED;Po;0;L;;;;;N;;;;;-104F;MYANMAR SYMBOL GENITIVE;Po;0;L;;;;;N;;;;;-1050;MYANMAR LETTER SHA;Lo;0;L;;;;;N;;;;;-1051;MYANMAR LETTER SSA;Lo;0;L;;;;;N;;;;;-1052;MYANMAR LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-1053;MYANMAR LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-1054;MYANMAR LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-1055;MYANMAR LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-1056;MYANMAR VOWEL SIGN VOCALIC R;Mc;0;L;;;;;N;;;;;-1057;MYANMAR VOWEL SIGN VOCALIC RR;Mc;0;L;;;;;N;;;;;-1058;MYANMAR VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-1059;MYANMAR VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-105A;MYANMAR LETTER MON NGA;Lo;0;L;;;;;N;;;;;-105B;MYANMAR LETTER MON JHA;Lo;0;L;;;;;N;;;;;-105C;MYANMAR LETTER MON BBA;Lo;0;L;;;;;N;;;;;-105D;MYANMAR LETTER MON BBE;Lo;0;L;;;;;N;;;;;-105E;MYANMAR CONSONANT SIGN MON MEDIAL NA;Mn;0;NSM;;;;;N;;;;;-105F;MYANMAR CONSONANT SIGN MON MEDIAL MA;Mn;0;NSM;;;;;N;;;;;-1060;MYANMAR CONSONANT SIGN MON MEDIAL LA;Mn;0;NSM;;;;;N;;;;;-1061;MYANMAR LETTER SGAW KAREN SHA;Lo;0;L;;;;;N;;;;;-1062;MYANMAR VOWEL SIGN SGAW KAREN EU;Mc;0;L;;;;;N;;;;;-1063;MYANMAR TONE MARK SGAW KAREN HATHI;Mc;0;L;;;;;N;;;;;-1064;MYANMAR TONE MARK SGAW KAREN KE PHO;Mc;0;L;;;;;N;;;;;-1065;MYANMAR LETTER WESTERN PWO KAREN THA;Lo;0;L;;;;;N;;;;;-1066;MYANMAR LETTER WESTERN PWO KAREN PWA;Lo;0;L;;;;;N;;;;;-1067;MYANMAR VOWEL SIGN WESTERN PWO KAREN EU;Mc;0;L;;;;;N;;;;;-1068;MYANMAR VOWEL SIGN WESTERN PWO KAREN UE;Mc;0;L;;;;;N;;;;;-1069;MYANMAR SIGN WESTERN PWO KAREN TONE-1;Mc;0;L;;;;;N;;;;;-106A;MYANMAR SIGN WESTERN PWO KAREN TONE-2;Mc;0;L;;;;;N;;;;;-106B;MYANMAR SIGN WESTERN PWO KAREN TONE-3;Mc;0;L;;;;;N;;;;;-106C;MYANMAR SIGN WESTERN PWO KAREN TONE-4;Mc;0;L;;;;;N;;;;;-106D;MYANMAR SIGN WESTERN PWO KAREN TONE-5;Mc;0;L;;;;;N;;;;;-106E;MYANMAR LETTER EASTERN PWO KAREN NNA;Lo;0;L;;;;;N;;;;;-106F;MYANMAR LETTER EASTERN PWO KAREN YWA;Lo;0;L;;;;;N;;;;;-1070;MYANMAR LETTER EASTERN PWO KAREN GHWA;Lo;0;L;;;;;N;;;;;-1071;MYANMAR VOWEL SIGN GEBA KAREN I;Mn;0;NSM;;;;;N;;;;;-1072;MYANMAR VOWEL SIGN KAYAH OE;Mn;0;NSM;;;;;N;;;;;-1073;MYANMAR VOWEL SIGN KAYAH U;Mn;0;NSM;;;;;N;;;;;-1074;MYANMAR VOWEL SIGN KAYAH EE;Mn;0;NSM;;;;;N;;;;;-1075;MYANMAR LETTER SHAN KA;Lo;0;L;;;;;N;;;;;-1076;MYANMAR LETTER SHAN KHA;Lo;0;L;;;;;N;;;;;-1077;MYANMAR LETTER SHAN GA;Lo;0;L;;;;;N;;;;;-1078;MYANMAR LETTER SHAN CA;Lo;0;L;;;;;N;;;;;-1079;MYANMAR LETTER SHAN ZA;Lo;0;L;;;;;N;;;;;-107A;MYANMAR LETTER SHAN NYA;Lo;0;L;;;;;N;;;;;-107B;MYANMAR LETTER SHAN DA;Lo;0;L;;;;;N;;;;;-107C;MYANMAR LETTER SHAN NA;Lo;0;L;;;;;N;;;;;-107D;MYANMAR LETTER SHAN PHA;Lo;0;L;;;;;N;;;;;-107E;MYANMAR LETTER SHAN FA;Lo;0;L;;;;;N;;;;;-107F;MYANMAR LETTER SHAN BA;Lo;0;L;;;;;N;;;;;-1080;MYANMAR LETTER SHAN THA;Lo;0;L;;;;;N;;;;;-1081;MYANMAR LETTER SHAN HA;Lo;0;L;;;;;N;;;;;-1082;MYANMAR CONSONANT SIGN SHAN MEDIAL WA;Mn;0;NSM;;;;;N;;;;;-1083;MYANMAR VOWEL SIGN SHAN AA;Mc;0;L;;;;;N;;;;;-1084;MYANMAR VOWEL SIGN SHAN E;Mc;0;L;;;;;N;;;;;-1085;MYANMAR VOWEL SIGN SHAN E ABOVE;Mn;0;NSM;;;;;N;;;;;-1086;MYANMAR VOWEL SIGN SHAN FINAL Y;Mn;0;NSM;;;;;N;;;;;-1087;MYANMAR SIGN SHAN TONE-2;Mc;0;L;;;;;N;;;;;-1088;MYANMAR SIGN SHAN TONE-3;Mc;0;L;;;;;N;;;;;-1089;MYANMAR SIGN SHAN TONE-5;Mc;0;L;;;;;N;;;;;-108A;MYANMAR SIGN SHAN TONE-6;Mc;0;L;;;;;N;;;;;-108B;MYANMAR SIGN SHAN COUNCIL TONE-2;Mc;0;L;;;;;N;;;;;-108C;MYANMAR SIGN SHAN COUNCIL TONE-3;Mc;0;L;;;;;N;;;;;-108D;MYANMAR SIGN SHAN COUNCIL EMPHATIC TONE;Mn;220;NSM;;;;;N;;;;;-108E;MYANMAR LETTER RUMAI PALAUNG FA;Lo;0;L;;;;;N;;;;;-108F;MYANMAR SIGN RUMAI PALAUNG TONE-5;Mc;0;L;;;;;N;;;;;-1090;MYANMAR SHAN DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1091;MYANMAR SHAN DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1092;MYANMAR SHAN DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1093;MYANMAR SHAN DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1094;MYANMAR SHAN DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1095;MYANMAR SHAN DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1096;MYANMAR SHAN DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1097;MYANMAR SHAN DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1098;MYANMAR SHAN DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1099;MYANMAR SHAN DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-109A;MYANMAR SIGN KHAMTI TONE-1;Mc;0;L;;;;;N;;;;;-109B;MYANMAR SIGN KHAMTI TONE-3;Mc;0;L;;;;;N;;;;;-109C;MYANMAR VOWEL SIGN AITON A;Mc;0;L;;;;;N;;;;;-109D;MYANMAR VOWEL SIGN AITON AI;Mn;0;NSM;;;;;N;;;;;-109E;MYANMAR SYMBOL SHAN ONE;So;0;L;;;;;N;;;;;-109F;MYANMAR SYMBOL SHAN EXCLAMATION;So;0;L;;;;;N;;;;;-10A0;GEORGIAN CAPITAL LETTER AN;Lu;0;L;;;;;N;;;;2D00;-10A1;GEORGIAN CAPITAL LETTER BAN;Lu;0;L;;;;;N;;;;2D01;-10A2;GEORGIAN CAPITAL LETTER GAN;Lu;0;L;;;;;N;;;;2D02;-10A3;GEORGIAN CAPITAL LETTER DON;Lu;0;L;;;;;N;;;;2D03;-10A4;GEORGIAN CAPITAL LETTER EN;Lu;0;L;;;;;N;;;;2D04;-10A5;GEORGIAN CAPITAL LETTER VIN;Lu;0;L;;;;;N;;;;2D05;-10A6;GEORGIAN CAPITAL LETTER ZEN;Lu;0;L;;;;;N;;;;2D06;-10A7;GEORGIAN CAPITAL LETTER TAN;Lu;0;L;;;;;N;;;;2D07;-10A8;GEORGIAN CAPITAL LETTER IN;Lu;0;L;;;;;N;;;;2D08;-10A9;GEORGIAN CAPITAL LETTER KAN;Lu;0;L;;;;;N;;;;2D09;-10AA;GEORGIAN CAPITAL LETTER LAS;Lu;0;L;;;;;N;;;;2D0A;-10AB;GEORGIAN CAPITAL LETTER MAN;Lu;0;L;;;;;N;;;;2D0B;-10AC;GEORGIAN CAPITAL LETTER NAR;Lu;0;L;;;;;N;;;;2D0C;-10AD;GEORGIAN CAPITAL LETTER ON;Lu;0;L;;;;;N;;;;2D0D;-10AE;GEORGIAN CAPITAL LETTER PAR;Lu;0;L;;;;;N;;;;2D0E;-10AF;GEORGIAN CAPITAL LETTER ZHAR;Lu;0;L;;;;;N;;;;2D0F;-10B0;GEORGIAN CAPITAL LETTER RAE;Lu;0;L;;;;;N;;;;2D10;-10B1;GEORGIAN CAPITAL LETTER SAN;Lu;0;L;;;;;N;;;;2D11;-10B2;GEORGIAN CAPITAL LETTER TAR;Lu;0;L;;;;;N;;;;2D12;-10B3;GEORGIAN CAPITAL LETTER UN;Lu;0;L;;;;;N;;;;2D13;-10B4;GEORGIAN CAPITAL LETTER PHAR;Lu;0;L;;;;;N;;;;2D14;-10B5;GEORGIAN CAPITAL LETTER KHAR;Lu;0;L;;;;;N;;;;2D15;-10B6;GEORGIAN CAPITAL LETTER GHAN;Lu;0;L;;;;;N;;;;2D16;-10B7;GEORGIAN CAPITAL LETTER QAR;Lu;0;L;;;;;N;;;;2D17;-10B8;GEORGIAN CAPITAL LETTER SHIN;Lu;0;L;;;;;N;;;;2D18;-10B9;GEORGIAN CAPITAL LETTER CHIN;Lu;0;L;;;;;N;;;;2D19;-10BA;GEORGIAN CAPITAL LETTER CAN;Lu;0;L;;;;;N;;;;2D1A;-10BB;GEORGIAN CAPITAL LETTER JIL;Lu;0;L;;;;;N;;;;2D1B;-10BC;GEORGIAN CAPITAL LETTER CIL;Lu;0;L;;;;;N;;;;2D1C;-10BD;GEORGIAN CAPITAL LETTER CHAR;Lu;0;L;;;;;N;;;;2D1D;-10BE;GEORGIAN CAPITAL LETTER XAN;Lu;0;L;;;;;N;;;;2D1E;-10BF;GEORGIAN CAPITAL LETTER JHAN;Lu;0;L;;;;;N;;;;2D1F;-10C0;GEORGIAN CAPITAL LETTER HAE;Lu;0;L;;;;;N;;;;2D20;-10C1;GEORGIAN CAPITAL LETTER HE;Lu;0;L;;;;;N;;;;2D21;-10C2;GEORGIAN CAPITAL LETTER HIE;Lu;0;L;;;;;N;;;;2D22;-10C3;GEORGIAN CAPITAL LETTER WE;Lu;0;L;;;;;N;;;;2D23;-10C4;GEORGIAN CAPITAL LETTER HAR;Lu;0;L;;;;;N;;;;2D24;-10C5;GEORGIAN CAPITAL LETTER HOE;Lu;0;L;;;;;N;;;;2D25;-10C7;GEORGIAN CAPITAL LETTER YN;Lu;0;L;;;;;N;;;;2D27;-10CD;GEORGIAN CAPITAL LETTER AEN;Lu;0;L;;;;;N;;;;2D2D;-10D0;GEORGIAN LETTER AN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER AN;;;;-10D1;GEORGIAN LETTER BAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER BAN;;;;-10D2;GEORGIAN LETTER GAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER GAN;;;;-10D3;GEORGIAN LETTER DON;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER DON;;;;-10D4;GEORGIAN LETTER EN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER EN;;;;-10D5;GEORGIAN LETTER VIN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER VIN;;;;-10D6;GEORGIAN LETTER ZEN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER ZEN;;;;-10D7;GEORGIAN LETTER TAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER TAN;;;;-10D8;GEORGIAN LETTER IN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER IN;;;;-10D9;GEORGIAN LETTER KAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER KAN;;;;-10DA;GEORGIAN LETTER LAS;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER LAS;;;;-10DB;GEORGIAN LETTER MAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER MAN;;;;-10DC;GEORGIAN LETTER NAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER NAR;;;;-10DD;GEORGIAN LETTER ON;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER ON;;;;-10DE;GEORGIAN LETTER PAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER PAR;;;;-10DF;GEORGIAN LETTER ZHAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER ZHAR;;;;-10E0;GEORGIAN LETTER RAE;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER RAE;;;;-10E1;GEORGIAN LETTER SAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER SAN;;;;-10E2;GEORGIAN LETTER TAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER TAR;;;;-10E3;GEORGIAN LETTER UN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER UN;;;;-10E4;GEORGIAN LETTER PHAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER PHAR;;;;-10E5;GEORGIAN LETTER KHAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER KHAR;;;;-10E6;GEORGIAN LETTER GHAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER GHAN;;;;-10E7;GEORGIAN LETTER QAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER QAR;;;;-10E8;GEORGIAN LETTER SHIN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER SHIN;;;;-10E9;GEORGIAN LETTER CHIN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER CHIN;;;;-10EA;GEORGIAN LETTER CAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER CAN;;;;-10EB;GEORGIAN LETTER JIL;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER JIL;;;;-10EC;GEORGIAN LETTER CIL;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER CIL;;;;-10ED;GEORGIAN LETTER CHAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER CHAR;;;;-10EE;GEORGIAN LETTER XAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER XAN;;;;-10EF;GEORGIAN LETTER JHAN;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER JHAN;;;;-10F0;GEORGIAN LETTER HAE;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER HAE;;;;-10F1;GEORGIAN LETTER HE;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER HE;;;;-10F2;GEORGIAN LETTER HIE;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER HIE;;;;-10F3;GEORGIAN LETTER WE;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER WE;;;;-10F4;GEORGIAN LETTER HAR;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER HAR;;;;-10F5;GEORGIAN LETTER HOE;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER HOE;;;;-10F6;GEORGIAN LETTER FI;Lo;0;L;;;;;N;GEORGIAN SMALL LETTER FI;;;;-10F7;GEORGIAN LETTER YN;Lo;0;L;;;;;N;;;;;-10F8;GEORGIAN LETTER ELIFI;Lo;0;L;;;;;N;;;;;-10F9;GEORGIAN LETTER TURNED GAN;Lo;0;L;;;;;N;;;;;-10FA;GEORGIAN LETTER AIN;Lo;0;L;;;;;N;;;;;-10FB;GEORGIAN PARAGRAPH SEPARATOR;Po;0;L;;;;;N;;;;;-10FC;MODIFIER LETTER GEORGIAN NAR;Lm;0;L;<super> 10DC;;;;N;;;;;-10FD;GEORGIAN LETTER AEN;Lo;0;L;;;;;N;;;;;-10FE;GEORGIAN LETTER HARD SIGN;Lo;0;L;;;;;N;;;;;-10FF;GEORGIAN LETTER LABIAL SIGN;Lo;0;L;;;;;N;;;;;-1100;HANGUL CHOSEONG KIYEOK;Lo;0;L;;;;;N;;;;;-1101;HANGUL CHOSEONG SSANGKIYEOK;Lo;0;L;;;;;N;;;;;-1102;HANGUL CHOSEONG NIEUN;Lo;0;L;;;;;N;;;;;-1103;HANGUL CHOSEONG TIKEUT;Lo;0;L;;;;;N;;;;;-1104;HANGUL CHOSEONG SSANGTIKEUT;Lo;0;L;;;;;N;;;;;-1105;HANGUL CHOSEONG RIEUL;Lo;0;L;;;;;N;;;;;-1106;HANGUL CHOSEONG MIEUM;Lo;0;L;;;;;N;;;;;-1107;HANGUL CHOSEONG PIEUP;Lo;0;L;;;;;N;;;;;-1108;HANGUL CHOSEONG SSANGPIEUP;Lo;0;L;;;;;N;;;;;-1109;HANGUL CHOSEONG SIOS;Lo;0;L;;;;;N;;;;;-110A;HANGUL CHOSEONG SSANGSIOS;Lo;0;L;;;;;N;;;;;-110B;HANGUL CHOSEONG IEUNG;Lo;0;L;;;;;N;;;;;-110C;HANGUL CHOSEONG CIEUC;Lo;0;L;;;;;N;;;;;-110D;HANGUL CHOSEONG SSANGCIEUC;Lo;0;L;;;;;N;;;;;-110E;HANGUL CHOSEONG CHIEUCH;Lo;0;L;;;;;N;;;;;-110F;HANGUL CHOSEONG KHIEUKH;Lo;0;L;;;;;N;;;;;-1110;HANGUL CHOSEONG THIEUTH;Lo;0;L;;;;;N;;;;;-1111;HANGUL CHOSEONG PHIEUPH;Lo;0;L;;;;;N;;;;;-1112;HANGUL CHOSEONG HIEUH;Lo;0;L;;;;;N;;;;;-1113;HANGUL CHOSEONG NIEUN-KIYEOK;Lo;0;L;;;;;N;;;;;-1114;HANGUL CHOSEONG SSANGNIEUN;Lo;0;L;;;;;N;;;;;-1115;HANGUL CHOSEONG NIEUN-TIKEUT;Lo;0;L;;;;;N;;;;;-1116;HANGUL CHOSEONG NIEUN-PIEUP;Lo;0;L;;;;;N;;;;;-1117;HANGUL CHOSEONG TIKEUT-KIYEOK;Lo;0;L;;;;;N;;;;;-1118;HANGUL CHOSEONG RIEUL-NIEUN;Lo;0;L;;;;;N;;;;;-1119;HANGUL CHOSEONG SSANGRIEUL;Lo;0;L;;;;;N;;;;;-111A;HANGUL CHOSEONG RIEUL-HIEUH;Lo;0;L;;;;;N;;;;;-111B;HANGUL CHOSEONG KAPYEOUNRIEUL;Lo;0;L;;;;;N;;;;;-111C;HANGUL CHOSEONG MIEUM-PIEUP;Lo;0;L;;;;;N;;;;;-111D;HANGUL CHOSEONG KAPYEOUNMIEUM;Lo;0;L;;;;;N;;;;;-111E;HANGUL CHOSEONG PIEUP-KIYEOK;Lo;0;L;;;;;N;;;;;-111F;HANGUL CHOSEONG PIEUP-NIEUN;Lo;0;L;;;;;N;;;;;-1120;HANGUL CHOSEONG PIEUP-TIKEUT;Lo;0;L;;;;;N;;;;;-1121;HANGUL CHOSEONG PIEUP-SIOS;Lo;0;L;;;;;N;;;;;-1122;HANGUL CHOSEONG PIEUP-SIOS-KIYEOK;Lo;0;L;;;;;N;;;;;-1123;HANGUL CHOSEONG PIEUP-SIOS-TIKEUT;Lo;0;L;;;;;N;;;;;-1124;HANGUL CHOSEONG PIEUP-SIOS-PIEUP;Lo;0;L;;;;;N;;;;;-1125;HANGUL CHOSEONG PIEUP-SSANGSIOS;Lo;0;L;;;;;N;;;;;-1126;HANGUL CHOSEONG PIEUP-SIOS-CIEUC;Lo;0;L;;;;;N;;;;;-1127;HANGUL CHOSEONG PIEUP-CIEUC;Lo;0;L;;;;;N;;;;;-1128;HANGUL CHOSEONG PIEUP-CHIEUCH;Lo;0;L;;;;;N;;;;;-1129;HANGUL CHOSEONG PIEUP-THIEUTH;Lo;0;L;;;;;N;;;;;-112A;HANGUL CHOSEONG PIEUP-PHIEUPH;Lo;0;L;;;;;N;;;;;-112B;HANGUL CHOSEONG KAPYEOUNPIEUP;Lo;0;L;;;;;N;;;;;-112C;HANGUL CHOSEONG KAPYEOUNSSANGPIEUP;Lo;0;L;;;;;N;;;;;-112D;HANGUL CHOSEONG SIOS-KIYEOK;Lo;0;L;;;;;N;;;;;-112E;HANGUL CHOSEONG SIOS-NIEUN;Lo;0;L;;;;;N;;;;;-112F;HANGUL CHOSEONG SIOS-TIKEUT;Lo;0;L;;;;;N;;;;;-1130;HANGUL CHOSEONG SIOS-RIEUL;Lo;0;L;;;;;N;;;;;-1131;HANGUL CHOSEONG SIOS-MIEUM;Lo;0;L;;;;;N;;;;;-1132;HANGUL CHOSEONG SIOS-PIEUP;Lo;0;L;;;;;N;;;;;-1133;HANGUL CHOSEONG SIOS-PIEUP-KIYEOK;Lo;0;L;;;;;N;;;;;-1134;HANGUL CHOSEONG SIOS-SSANGSIOS;Lo;0;L;;;;;N;;;;;-1135;HANGUL CHOSEONG SIOS-IEUNG;Lo;0;L;;;;;N;;;;;-1136;HANGUL CHOSEONG SIOS-CIEUC;Lo;0;L;;;;;N;;;;;-1137;HANGUL CHOSEONG SIOS-CHIEUCH;Lo;0;L;;;;;N;;;;;-1138;HANGUL CHOSEONG SIOS-KHIEUKH;Lo;0;L;;;;;N;;;;;-1139;HANGUL CHOSEONG SIOS-THIEUTH;Lo;0;L;;;;;N;;;;;-113A;HANGUL CHOSEONG SIOS-PHIEUPH;Lo;0;L;;;;;N;;;;;-113B;HANGUL CHOSEONG SIOS-HIEUH;Lo;0;L;;;;;N;;;;;-113C;HANGUL CHOSEONG CHITUEUMSIOS;Lo;0;L;;;;;N;;;;;-113D;HANGUL CHOSEONG CHITUEUMSSANGSIOS;Lo;0;L;;;;;N;;;;;-113E;HANGUL CHOSEONG CEONGCHIEUMSIOS;Lo;0;L;;;;;N;;;;;-113F;HANGUL CHOSEONG CEONGCHIEUMSSANGSIOS;Lo;0;L;;;;;N;;;;;-1140;HANGUL CHOSEONG PANSIOS;Lo;0;L;;;;;N;;;;;-1141;HANGUL CHOSEONG IEUNG-KIYEOK;Lo;0;L;;;;;N;;;;;-1142;HANGUL CHOSEONG IEUNG-TIKEUT;Lo;0;L;;;;;N;;;;;-1143;HANGUL CHOSEONG IEUNG-MIEUM;Lo;0;L;;;;;N;;;;;-1144;HANGUL CHOSEONG IEUNG-PIEUP;Lo;0;L;;;;;N;;;;;-1145;HANGUL CHOSEONG IEUNG-SIOS;Lo;0;L;;;;;N;;;;;-1146;HANGUL CHOSEONG IEUNG-PANSIOS;Lo;0;L;;;;;N;;;;;-1147;HANGUL CHOSEONG SSANGIEUNG;Lo;0;L;;;;;N;;;;;-1148;HANGUL CHOSEONG IEUNG-CIEUC;Lo;0;L;;;;;N;;;;;-1149;HANGUL CHOSEONG IEUNG-CHIEUCH;Lo;0;L;;;;;N;;;;;-114A;HANGUL CHOSEONG IEUNG-THIEUTH;Lo;0;L;;;;;N;;;;;-114B;HANGUL CHOSEONG IEUNG-PHIEUPH;Lo;0;L;;;;;N;;;;;-114C;HANGUL CHOSEONG YESIEUNG;Lo;0;L;;;;;N;;;;;-114D;HANGUL CHOSEONG CIEUC-IEUNG;Lo;0;L;;;;;N;;;;;-114E;HANGUL CHOSEONG CHITUEUMCIEUC;Lo;0;L;;;;;N;;;;;-114F;HANGUL CHOSEONG CHITUEUMSSANGCIEUC;Lo;0;L;;;;;N;;;;;-1150;HANGUL CHOSEONG CEONGCHIEUMCIEUC;Lo;0;L;;;;;N;;;;;-1151;HANGUL CHOSEONG CEONGCHIEUMSSANGCIEUC;Lo;0;L;;;;;N;;;;;-1152;HANGUL CHOSEONG CHIEUCH-KHIEUKH;Lo;0;L;;;;;N;;;;;-1153;HANGUL CHOSEONG CHIEUCH-HIEUH;Lo;0;L;;;;;N;;;;;-1154;HANGUL CHOSEONG CHITUEUMCHIEUCH;Lo;0;L;;;;;N;;;;;-1155;HANGUL CHOSEONG CEONGCHIEUMCHIEUCH;Lo;0;L;;;;;N;;;;;-1156;HANGUL CHOSEONG PHIEUPH-PIEUP;Lo;0;L;;;;;N;;;;;-1157;HANGUL CHOSEONG KAPYEOUNPHIEUPH;Lo;0;L;;;;;N;;;;;-1158;HANGUL CHOSEONG SSANGHIEUH;Lo;0;L;;;;;N;;;;;-1159;HANGUL CHOSEONG YEORINHIEUH;Lo;0;L;;;;;N;;;;;-115A;HANGUL CHOSEONG KIYEOK-TIKEUT;Lo;0;L;;;;;N;;;;;-115B;HANGUL CHOSEONG NIEUN-SIOS;Lo;0;L;;;;;N;;;;;-115C;HANGUL CHOSEONG NIEUN-CIEUC;Lo;0;L;;;;;N;;;;;-115D;HANGUL CHOSEONG NIEUN-HIEUH;Lo;0;L;;;;;N;;;;;-115E;HANGUL CHOSEONG TIKEUT-RIEUL;Lo;0;L;;;;;N;;;;;-115F;HANGUL CHOSEONG FILLER;Lo;0;L;;;;;N;;;;;-1160;HANGUL JUNGSEONG FILLER;Lo;0;L;;;;;N;;;;;-1161;HANGUL JUNGSEONG A;Lo;0;L;;;;;N;;;;;-1162;HANGUL JUNGSEONG AE;Lo;0;L;;;;;N;;;;;-1163;HANGUL JUNGSEONG YA;Lo;0;L;;;;;N;;;;;-1164;HANGUL JUNGSEONG YAE;Lo;0;L;;;;;N;;;;;-1165;HANGUL JUNGSEONG EO;Lo;0;L;;;;;N;;;;;-1166;HANGUL JUNGSEONG E;Lo;0;L;;;;;N;;;;;-1167;HANGUL JUNGSEONG YEO;Lo;0;L;;;;;N;;;;;-1168;HANGUL JUNGSEONG YE;Lo;0;L;;;;;N;;;;;-1169;HANGUL JUNGSEONG O;Lo;0;L;;;;;N;;;;;-116A;HANGUL JUNGSEONG WA;Lo;0;L;;;;;N;;;;;-116B;HANGUL JUNGSEONG WAE;Lo;0;L;;;;;N;;;;;-116C;HANGUL JUNGSEONG OE;Lo;0;L;;;;;N;;;;;-116D;HANGUL JUNGSEONG YO;Lo;0;L;;;;;N;;;;;-116E;HANGUL JUNGSEONG U;Lo;0;L;;;;;N;;;;;-116F;HANGUL JUNGSEONG WEO;Lo;0;L;;;;;N;;;;;-1170;HANGUL JUNGSEONG WE;Lo;0;L;;;;;N;;;;;-1171;HANGUL JUNGSEONG WI;Lo;0;L;;;;;N;;;;;-1172;HANGUL JUNGSEONG YU;Lo;0;L;;;;;N;;;;;-1173;HANGUL JUNGSEONG EU;Lo;0;L;;;;;N;;;;;-1174;HANGUL JUNGSEONG YI;Lo;0;L;;;;;N;;;;;-1175;HANGUL JUNGSEONG I;Lo;0;L;;;;;N;;;;;-1176;HANGUL JUNGSEONG A-O;Lo;0;L;;;;;N;;;;;-1177;HANGUL JUNGSEONG A-U;Lo;0;L;;;;;N;;;;;-1178;HANGUL JUNGSEONG YA-O;Lo;0;L;;;;;N;;;;;-1179;HANGUL JUNGSEONG YA-YO;Lo;0;L;;;;;N;;;;;-117A;HANGUL JUNGSEONG EO-O;Lo;0;L;;;;;N;;;;;-117B;HANGUL JUNGSEONG EO-U;Lo;0;L;;;;;N;;;;;-117C;HANGUL JUNGSEONG EO-EU;Lo;0;L;;;;;N;;;;;-117D;HANGUL JUNGSEONG YEO-O;Lo;0;L;;;;;N;;;;;-117E;HANGUL JUNGSEONG YEO-U;Lo;0;L;;;;;N;;;;;-117F;HANGUL JUNGSEONG O-EO;Lo;0;L;;;;;N;;;;;-1180;HANGUL JUNGSEONG O-E;Lo;0;L;;;;;N;;;;;-1181;HANGUL JUNGSEONG O-YE;Lo;0;L;;;;;N;;;;;-1182;HANGUL JUNGSEONG O-O;Lo;0;L;;;;;N;;;;;-1183;HANGUL JUNGSEONG O-U;Lo;0;L;;;;;N;;;;;-1184;HANGUL JUNGSEONG YO-YA;Lo;0;L;;;;;N;;;;;-1185;HANGUL JUNGSEONG YO-YAE;Lo;0;L;;;;;N;;;;;-1186;HANGUL JUNGSEONG YO-YEO;Lo;0;L;;;;;N;;;;;-1187;HANGUL JUNGSEONG YO-O;Lo;0;L;;;;;N;;;;;-1188;HANGUL JUNGSEONG YO-I;Lo;0;L;;;;;N;;;;;-1189;HANGUL JUNGSEONG U-A;Lo;0;L;;;;;N;;;;;-118A;HANGUL JUNGSEONG U-AE;Lo;0;L;;;;;N;;;;;-118B;HANGUL JUNGSEONG U-EO-EU;Lo;0;L;;;;;N;;;;;-118C;HANGUL JUNGSEONG U-YE;Lo;0;L;;;;;N;;;;;-118D;HANGUL JUNGSEONG U-U;Lo;0;L;;;;;N;;;;;-118E;HANGUL JUNGSEONG YU-A;Lo;0;L;;;;;N;;;;;-118F;HANGUL JUNGSEONG YU-EO;Lo;0;L;;;;;N;;;;;-1190;HANGUL JUNGSEONG YU-E;Lo;0;L;;;;;N;;;;;-1191;HANGUL JUNGSEONG YU-YEO;Lo;0;L;;;;;N;;;;;-1192;HANGUL JUNGSEONG YU-YE;Lo;0;L;;;;;N;;;;;-1193;HANGUL JUNGSEONG YU-U;Lo;0;L;;;;;N;;;;;-1194;HANGUL JUNGSEONG YU-I;Lo;0;L;;;;;N;;;;;-1195;HANGUL JUNGSEONG EU-U;Lo;0;L;;;;;N;;;;;-1196;HANGUL JUNGSEONG EU-EU;Lo;0;L;;;;;N;;;;;-1197;HANGUL JUNGSEONG YI-U;Lo;0;L;;;;;N;;;;;-1198;HANGUL JUNGSEONG I-A;Lo;0;L;;;;;N;;;;;-1199;HANGUL JUNGSEONG I-YA;Lo;0;L;;;;;N;;;;;-119A;HANGUL JUNGSEONG I-O;Lo;0;L;;;;;N;;;;;-119B;HANGUL JUNGSEONG I-U;Lo;0;L;;;;;N;;;;;-119C;HANGUL JUNGSEONG I-EU;Lo;0;L;;;;;N;;;;;-119D;HANGUL JUNGSEONG I-ARAEA;Lo;0;L;;;;;N;;;;;-119E;HANGUL JUNGSEONG ARAEA;Lo;0;L;;;;;N;;;;;-119F;HANGUL JUNGSEONG ARAEA-EO;Lo;0;L;;;;;N;;;;;-11A0;HANGUL JUNGSEONG ARAEA-U;Lo;0;L;;;;;N;;;;;-11A1;HANGUL JUNGSEONG ARAEA-I;Lo;0;L;;;;;N;;;;;-11A2;HANGUL JUNGSEONG SSANGARAEA;Lo;0;L;;;;;N;;;;;-11A3;HANGUL JUNGSEONG A-EU;Lo;0;L;;;;;N;;;;;-11A4;HANGUL JUNGSEONG YA-U;Lo;0;L;;;;;N;;;;;-11A5;HANGUL JUNGSEONG YEO-YA;Lo;0;L;;;;;N;;;;;-11A6;HANGUL JUNGSEONG O-YA;Lo;0;L;;;;;N;;;;;-11A7;HANGUL JUNGSEONG O-YAE;Lo;0;L;;;;;N;;;;;-11A8;HANGUL JONGSEONG KIYEOK;Lo;0;L;;;;;N;;;;;-11A9;HANGUL JONGSEONG SSANGKIYEOK;Lo;0;L;;;;;N;;;;;-11AA;HANGUL JONGSEONG KIYEOK-SIOS;Lo;0;L;;;;;N;;;;;-11AB;HANGUL JONGSEONG NIEUN;Lo;0;L;;;;;N;;;;;-11AC;HANGUL JONGSEONG NIEUN-CIEUC;Lo;0;L;;;;;N;;;;;-11AD;HANGUL JONGSEONG NIEUN-HIEUH;Lo;0;L;;;;;N;;;;;-11AE;HANGUL JONGSEONG TIKEUT;Lo;0;L;;;;;N;;;;;-11AF;HANGUL JONGSEONG RIEUL;Lo;0;L;;;;;N;;;;;-11B0;HANGUL JONGSEONG RIEUL-KIYEOK;Lo;0;L;;;;;N;;;;;-11B1;HANGUL JONGSEONG RIEUL-MIEUM;Lo;0;L;;;;;N;;;;;-11B2;HANGUL JONGSEONG RIEUL-PIEUP;Lo;0;L;;;;;N;;;;;-11B3;HANGUL JONGSEONG RIEUL-SIOS;Lo;0;L;;;;;N;;;;;-11B4;HANGUL JONGSEONG RIEUL-THIEUTH;Lo;0;L;;;;;N;;;;;-11B5;HANGUL JONGSEONG RIEUL-PHIEUPH;Lo;0;L;;;;;N;;;;;-11B6;HANGUL JONGSEONG RIEUL-HIEUH;Lo;0;L;;;;;N;;;;;-11B7;HANGUL JONGSEONG MIEUM;Lo;0;L;;;;;N;;;;;-11B8;HANGUL JONGSEONG PIEUP;Lo;0;L;;;;;N;;;;;-11B9;HANGUL JONGSEONG PIEUP-SIOS;Lo;0;L;;;;;N;;;;;-11BA;HANGUL JONGSEONG SIOS;Lo;0;L;;;;;N;;;;;-11BB;HANGUL JONGSEONG SSANGSIOS;Lo;0;L;;;;;N;;;;;-11BC;HANGUL JONGSEONG IEUNG;Lo;0;L;;;;;N;;;;;-11BD;HANGUL JONGSEONG CIEUC;Lo;0;L;;;;;N;;;;;-11BE;HANGUL JONGSEONG CHIEUCH;Lo;0;L;;;;;N;;;;;-11BF;HANGUL JONGSEONG KHIEUKH;Lo;0;L;;;;;N;;;;;-11C0;HANGUL JONGSEONG THIEUTH;Lo;0;L;;;;;N;;;;;-11C1;HANGUL JONGSEONG PHIEUPH;Lo;0;L;;;;;N;;;;;-11C2;HANGUL JONGSEONG HIEUH;Lo;0;L;;;;;N;;;;;-11C3;HANGUL JONGSEONG KIYEOK-RIEUL;Lo;0;L;;;;;N;;;;;-11C4;HANGUL JONGSEONG KIYEOK-SIOS-KIYEOK;Lo;0;L;;;;;N;;;;;-11C5;HANGUL JONGSEONG NIEUN-KIYEOK;Lo;0;L;;;;;N;;;;;-11C6;HANGUL JONGSEONG NIEUN-TIKEUT;Lo;0;L;;;;;N;;;;;-11C7;HANGUL JONGSEONG NIEUN-SIOS;Lo;0;L;;;;;N;;;;;-11C8;HANGUL JONGSEONG NIEUN-PANSIOS;Lo;0;L;;;;;N;;;;;-11C9;HANGUL JONGSEONG NIEUN-THIEUTH;Lo;0;L;;;;;N;;;;;-11CA;HANGUL JONGSEONG TIKEUT-KIYEOK;Lo;0;L;;;;;N;;;;;-11CB;HANGUL JONGSEONG TIKEUT-RIEUL;Lo;0;L;;;;;N;;;;;-11CC;HANGUL JONGSEONG RIEUL-KIYEOK-SIOS;Lo;0;L;;;;;N;;;;;-11CD;HANGUL JONGSEONG RIEUL-NIEUN;Lo;0;L;;;;;N;;;;;-11CE;HANGUL JONGSEONG RIEUL-TIKEUT;Lo;0;L;;;;;N;;;;;-11CF;HANGUL JONGSEONG RIEUL-TIKEUT-HIEUH;Lo;0;L;;;;;N;;;;;-11D0;HANGUL JONGSEONG SSANGRIEUL;Lo;0;L;;;;;N;;;;;-11D1;HANGUL JONGSEONG RIEUL-MIEUM-KIYEOK;Lo;0;L;;;;;N;;;;;-11D2;HANGUL JONGSEONG RIEUL-MIEUM-SIOS;Lo;0;L;;;;;N;;;;;-11D3;HANGUL JONGSEONG RIEUL-PIEUP-SIOS;Lo;0;L;;;;;N;;;;;-11D4;HANGUL JONGSEONG RIEUL-PIEUP-HIEUH;Lo;0;L;;;;;N;;;;;-11D5;HANGUL JONGSEONG RIEUL-KAPYEOUNPIEUP;Lo;0;L;;;;;N;;;;;-11D6;HANGUL JONGSEONG RIEUL-SSANGSIOS;Lo;0;L;;;;;N;;;;;-11D7;HANGUL JONGSEONG RIEUL-PANSIOS;Lo;0;L;;;;;N;;;;;-11D8;HANGUL JONGSEONG RIEUL-KHIEUKH;Lo;0;L;;;;;N;;;;;-11D9;HANGUL JONGSEONG RIEUL-YEORINHIEUH;Lo;0;L;;;;;N;;;;;-11DA;HANGUL JONGSEONG MIEUM-KIYEOK;Lo;0;L;;;;;N;;;;;-11DB;HANGUL JONGSEONG MIEUM-RIEUL;Lo;0;L;;;;;N;;;;;-11DC;HANGUL JONGSEONG MIEUM-PIEUP;Lo;0;L;;;;;N;;;;;-11DD;HANGUL JONGSEONG MIEUM-SIOS;Lo;0;L;;;;;N;;;;;-11DE;HANGUL JONGSEONG MIEUM-SSANGSIOS;Lo;0;L;;;;;N;;;;;-11DF;HANGUL JONGSEONG MIEUM-PANSIOS;Lo;0;L;;;;;N;;;;;-11E0;HANGUL JONGSEONG MIEUM-CHIEUCH;Lo;0;L;;;;;N;;;;;-11E1;HANGUL JONGSEONG MIEUM-HIEUH;Lo;0;L;;;;;N;;;;;-11E2;HANGUL JONGSEONG KAPYEOUNMIEUM;Lo;0;L;;;;;N;;;;;-11E3;HANGUL JONGSEONG PIEUP-RIEUL;Lo;0;L;;;;;N;;;;;-11E4;HANGUL JONGSEONG PIEUP-PHIEUPH;Lo;0;L;;;;;N;;;;;-11E5;HANGUL JONGSEONG PIEUP-HIEUH;Lo;0;L;;;;;N;;;;;-11E6;HANGUL JONGSEONG KAPYEOUNPIEUP;Lo;0;L;;;;;N;;;;;-11E7;HANGUL JONGSEONG SIOS-KIYEOK;Lo;0;L;;;;;N;;;;;-11E8;HANGUL JONGSEONG SIOS-TIKEUT;Lo;0;L;;;;;N;;;;;-11E9;HANGUL JONGSEONG SIOS-RIEUL;Lo;0;L;;;;;N;;;;;-11EA;HANGUL JONGSEONG SIOS-PIEUP;Lo;0;L;;;;;N;;;;;-11EB;HANGUL JONGSEONG PANSIOS;Lo;0;L;;;;;N;;;;;-11EC;HANGUL JONGSEONG IEUNG-KIYEOK;Lo;0;L;;;;;N;;;;;-11ED;HANGUL JONGSEONG IEUNG-SSANGKIYEOK;Lo;0;L;;;;;N;;;;;-11EE;HANGUL JONGSEONG SSANGIEUNG;Lo;0;L;;;;;N;;;;;-11EF;HANGUL JONGSEONG IEUNG-KHIEUKH;Lo;0;L;;;;;N;;;;;-11F0;HANGUL JONGSEONG YESIEUNG;Lo;0;L;;;;;N;;;;;-11F1;HANGUL JONGSEONG YESIEUNG-SIOS;Lo;0;L;;;;;N;;;;;-11F2;HANGUL JONGSEONG YESIEUNG-PANSIOS;Lo;0;L;;;;;N;;;;;-11F3;HANGUL JONGSEONG PHIEUPH-PIEUP;Lo;0;L;;;;;N;;;;;-11F4;HANGUL JONGSEONG KAPYEOUNPHIEUPH;Lo;0;L;;;;;N;;;;;-11F5;HANGUL JONGSEONG HIEUH-NIEUN;Lo;0;L;;;;;N;;;;;-11F6;HANGUL JONGSEONG HIEUH-RIEUL;Lo;0;L;;;;;N;;;;;-11F7;HANGUL JONGSEONG HIEUH-MIEUM;Lo;0;L;;;;;N;;;;;-11F8;HANGUL JONGSEONG HIEUH-PIEUP;Lo;0;L;;;;;N;;;;;-11F9;HANGUL JONGSEONG YEORINHIEUH;Lo;0;L;;;;;N;;;;;-11FA;HANGUL JONGSEONG KIYEOK-NIEUN;Lo;0;L;;;;;N;;;;;-11FB;HANGUL JONGSEONG KIYEOK-PIEUP;Lo;0;L;;;;;N;;;;;-11FC;HANGUL JONGSEONG KIYEOK-CHIEUCH;Lo;0;L;;;;;N;;;;;-11FD;HANGUL JONGSEONG KIYEOK-KHIEUKH;Lo;0;L;;;;;N;;;;;-11FE;HANGUL JONGSEONG KIYEOK-HIEUH;Lo;0;L;;;;;N;;;;;-11FF;HANGUL JONGSEONG SSANGNIEUN;Lo;0;L;;;;;N;;;;;-1200;ETHIOPIC SYLLABLE HA;Lo;0;L;;;;;N;;;;;-1201;ETHIOPIC SYLLABLE HU;Lo;0;L;;;;;N;;;;;-1202;ETHIOPIC SYLLABLE HI;Lo;0;L;;;;;N;;;;;-1203;ETHIOPIC SYLLABLE HAA;Lo;0;L;;;;;N;;;;;-1204;ETHIOPIC SYLLABLE HEE;Lo;0;L;;;;;N;;;;;-1205;ETHIOPIC SYLLABLE HE;Lo;0;L;;;;;N;;;;;-1206;ETHIOPIC SYLLABLE HO;Lo;0;L;;;;;N;;;;;-1207;ETHIOPIC SYLLABLE HOA;Lo;0;L;;;;;N;;;;;-1208;ETHIOPIC SYLLABLE LA;Lo;0;L;;;;;N;;;;;-1209;ETHIOPIC SYLLABLE LU;Lo;0;L;;;;;N;;;;;-120A;ETHIOPIC SYLLABLE LI;Lo;0;L;;;;;N;;;;;-120B;ETHIOPIC SYLLABLE LAA;Lo;0;L;;;;;N;;;;;-120C;ETHIOPIC SYLLABLE LEE;Lo;0;L;;;;;N;;;;;-120D;ETHIOPIC SYLLABLE LE;Lo;0;L;;;;;N;;;;;-120E;ETHIOPIC SYLLABLE LO;Lo;0;L;;;;;N;;;;;-120F;ETHIOPIC SYLLABLE LWA;Lo;0;L;;;;;N;;;;;-1210;ETHIOPIC SYLLABLE HHA;Lo;0;L;;;;;N;;;;;-1211;ETHIOPIC SYLLABLE HHU;Lo;0;L;;;;;N;;;;;-1212;ETHIOPIC SYLLABLE HHI;Lo;0;L;;;;;N;;;;;-1213;ETHIOPIC SYLLABLE HHAA;Lo;0;L;;;;;N;;;;;-1214;ETHIOPIC SYLLABLE HHEE;Lo;0;L;;;;;N;;;;;-1215;ETHIOPIC SYLLABLE HHE;Lo;0;L;;;;;N;;;;;-1216;ETHIOPIC SYLLABLE HHO;Lo;0;L;;;;;N;;;;;-1217;ETHIOPIC SYLLABLE HHWA;Lo;0;L;;;;;N;;;;;-1218;ETHIOPIC SYLLABLE MA;Lo;0;L;;;;;N;;;;;-1219;ETHIOPIC SYLLABLE MU;Lo;0;L;;;;;N;;;;;-121A;ETHIOPIC SYLLABLE MI;Lo;0;L;;;;;N;;;;;-121B;ETHIOPIC SYLLABLE MAA;Lo;0;L;;;;;N;;;;;-121C;ETHIOPIC SYLLABLE MEE;Lo;0;L;;;;;N;;;;;-121D;ETHIOPIC SYLLABLE ME;Lo;0;L;;;;;N;;;;;-121E;ETHIOPIC SYLLABLE MO;Lo;0;L;;;;;N;;;;;-121F;ETHIOPIC SYLLABLE MWA;Lo;0;L;;;;;N;;;;;-1220;ETHIOPIC SYLLABLE SZA;Lo;0;L;;;;;N;;;;;-1221;ETHIOPIC SYLLABLE SZU;Lo;0;L;;;;;N;;;;;-1222;ETHIOPIC SYLLABLE SZI;Lo;0;L;;;;;N;;;;;-1223;ETHIOPIC SYLLABLE SZAA;Lo;0;L;;;;;N;;;;;-1224;ETHIOPIC SYLLABLE SZEE;Lo;0;L;;;;;N;;;;;-1225;ETHIOPIC SYLLABLE SZE;Lo;0;L;;;;;N;;;;;-1226;ETHIOPIC SYLLABLE SZO;Lo;0;L;;;;;N;;;;;-1227;ETHIOPIC SYLLABLE SZWA;Lo;0;L;;;;;N;;;;;-1228;ETHIOPIC SYLLABLE RA;Lo;0;L;;;;;N;;;;;-1229;ETHIOPIC SYLLABLE RU;Lo;0;L;;;;;N;;;;;-122A;ETHIOPIC SYLLABLE RI;Lo;0;L;;;;;N;;;;;-122B;ETHIOPIC SYLLABLE RAA;Lo;0;L;;;;;N;;;;;-122C;ETHIOPIC SYLLABLE REE;Lo;0;L;;;;;N;;;;;-122D;ETHIOPIC SYLLABLE RE;Lo;0;L;;;;;N;;;;;-122E;ETHIOPIC SYLLABLE RO;Lo;0;L;;;;;N;;;;;-122F;ETHIOPIC SYLLABLE RWA;Lo;0;L;;;;;N;;;;;-1230;ETHIOPIC SYLLABLE SA;Lo;0;L;;;;;N;;;;;-1231;ETHIOPIC SYLLABLE SU;Lo;0;L;;;;;N;;;;;-1232;ETHIOPIC SYLLABLE SI;Lo;0;L;;;;;N;;;;;-1233;ETHIOPIC SYLLABLE SAA;Lo;0;L;;;;;N;;;;;-1234;ETHIOPIC SYLLABLE SEE;Lo;0;L;;;;;N;;;;;-1235;ETHIOPIC SYLLABLE SE;Lo;0;L;;;;;N;;;;;-1236;ETHIOPIC SYLLABLE SO;Lo;0;L;;;;;N;;;;;-1237;ETHIOPIC SYLLABLE SWA;Lo;0;L;;;;;N;;;;;-1238;ETHIOPIC SYLLABLE SHA;Lo;0;L;;;;;N;;;;;-1239;ETHIOPIC SYLLABLE SHU;Lo;0;L;;;;;N;;;;;-123A;ETHIOPIC SYLLABLE SHI;Lo;0;L;;;;;N;;;;;-123B;ETHIOPIC SYLLABLE SHAA;Lo;0;L;;;;;N;;;;;-123C;ETHIOPIC SYLLABLE SHEE;Lo;0;L;;;;;N;;;;;-123D;ETHIOPIC SYLLABLE SHE;Lo;0;L;;;;;N;;;;;-123E;ETHIOPIC SYLLABLE SHO;Lo;0;L;;;;;N;;;;;-123F;ETHIOPIC SYLLABLE SHWA;Lo;0;L;;;;;N;;;;;-1240;ETHIOPIC SYLLABLE QA;Lo;0;L;;;;;N;;;;;-1241;ETHIOPIC SYLLABLE QU;Lo;0;L;;;;;N;;;;;-1242;ETHIOPIC SYLLABLE QI;Lo;0;L;;;;;N;;;;;-1243;ETHIOPIC SYLLABLE QAA;Lo;0;L;;;;;N;;;;;-1244;ETHIOPIC SYLLABLE QEE;Lo;0;L;;;;;N;;;;;-1245;ETHIOPIC SYLLABLE QE;Lo;0;L;;;;;N;;;;;-1246;ETHIOPIC SYLLABLE QO;Lo;0;L;;;;;N;;;;;-1247;ETHIOPIC SYLLABLE QOA;Lo;0;L;;;;;N;;;;;-1248;ETHIOPIC SYLLABLE QWA;Lo;0;L;;;;;N;;;;;-124A;ETHIOPIC SYLLABLE QWI;Lo;0;L;;;;;N;;;;;-124B;ETHIOPIC SYLLABLE QWAA;Lo;0;L;;;;;N;;;;;-124C;ETHIOPIC SYLLABLE QWEE;Lo;0;L;;;;;N;;;;;-124D;ETHIOPIC SYLLABLE QWE;Lo;0;L;;;;;N;;;;;-1250;ETHIOPIC SYLLABLE QHA;Lo;0;L;;;;;N;;;;;-1251;ETHIOPIC SYLLABLE QHU;Lo;0;L;;;;;N;;;;;-1252;ETHIOPIC SYLLABLE QHI;Lo;0;L;;;;;N;;;;;-1253;ETHIOPIC SYLLABLE QHAA;Lo;0;L;;;;;N;;;;;-1254;ETHIOPIC SYLLABLE QHEE;Lo;0;L;;;;;N;;;;;-1255;ETHIOPIC SYLLABLE QHE;Lo;0;L;;;;;N;;;;;-1256;ETHIOPIC SYLLABLE QHO;Lo;0;L;;;;;N;;;;;-1258;ETHIOPIC SYLLABLE QHWA;Lo;0;L;;;;;N;;;;;-125A;ETHIOPIC SYLLABLE QHWI;Lo;0;L;;;;;N;;;;;-125B;ETHIOPIC SYLLABLE QHWAA;Lo;0;L;;;;;N;;;;;-125C;ETHIOPIC SYLLABLE QHWEE;Lo;0;L;;;;;N;;;;;-125D;ETHIOPIC SYLLABLE QHWE;Lo;0;L;;;;;N;;;;;-1260;ETHIOPIC SYLLABLE BA;Lo;0;L;;;;;N;;;;;-1261;ETHIOPIC SYLLABLE BU;Lo;0;L;;;;;N;;;;;-1262;ETHIOPIC SYLLABLE BI;Lo;0;L;;;;;N;;;;;-1263;ETHIOPIC SYLLABLE BAA;Lo;0;L;;;;;N;;;;;-1264;ETHIOPIC SYLLABLE BEE;Lo;0;L;;;;;N;;;;;-1265;ETHIOPIC SYLLABLE BE;Lo;0;L;;;;;N;;;;;-1266;ETHIOPIC SYLLABLE BO;Lo;0;L;;;;;N;;;;;-1267;ETHIOPIC SYLLABLE BWA;Lo;0;L;;;;;N;;;;;-1268;ETHIOPIC SYLLABLE VA;Lo;0;L;;;;;N;;;;;-1269;ETHIOPIC SYLLABLE VU;Lo;0;L;;;;;N;;;;;-126A;ETHIOPIC SYLLABLE VI;Lo;0;L;;;;;N;;;;;-126B;ETHIOPIC SYLLABLE VAA;Lo;0;L;;;;;N;;;;;-126C;ETHIOPIC SYLLABLE VEE;Lo;0;L;;;;;N;;;;;-126D;ETHIOPIC SYLLABLE VE;Lo;0;L;;;;;N;;;;;-126E;ETHIOPIC SYLLABLE VO;Lo;0;L;;;;;N;;;;;-126F;ETHIOPIC SYLLABLE VWA;Lo;0;L;;;;;N;;;;;-1270;ETHIOPIC SYLLABLE TA;Lo;0;L;;;;;N;;;;;-1271;ETHIOPIC SYLLABLE TU;Lo;0;L;;;;;N;;;;;-1272;ETHIOPIC SYLLABLE TI;Lo;0;L;;;;;N;;;;;-1273;ETHIOPIC SYLLABLE TAA;Lo;0;L;;;;;N;;;;;-1274;ETHIOPIC SYLLABLE TEE;Lo;0;L;;;;;N;;;;;-1275;ETHIOPIC SYLLABLE TE;Lo;0;L;;;;;N;;;;;-1276;ETHIOPIC SYLLABLE TO;Lo;0;L;;;;;N;;;;;-1277;ETHIOPIC SYLLABLE TWA;Lo;0;L;;;;;N;;;;;-1278;ETHIOPIC SYLLABLE CA;Lo;0;L;;;;;N;;;;;-1279;ETHIOPIC SYLLABLE CU;Lo;0;L;;;;;N;;;;;-127A;ETHIOPIC SYLLABLE CI;Lo;0;L;;;;;N;;;;;-127B;ETHIOPIC SYLLABLE CAA;Lo;0;L;;;;;N;;;;;-127C;ETHIOPIC SYLLABLE CEE;Lo;0;L;;;;;N;;;;;-127D;ETHIOPIC SYLLABLE CE;Lo;0;L;;;;;N;;;;;-127E;ETHIOPIC SYLLABLE CO;Lo;0;L;;;;;N;;;;;-127F;ETHIOPIC SYLLABLE CWA;Lo;0;L;;;;;N;;;;;-1280;ETHIOPIC SYLLABLE XA;Lo;0;L;;;;;N;;;;;-1281;ETHIOPIC SYLLABLE XU;Lo;0;L;;;;;N;;;;;-1282;ETHIOPIC SYLLABLE XI;Lo;0;L;;;;;N;;;;;-1283;ETHIOPIC SYLLABLE XAA;Lo;0;L;;;;;N;;;;;-1284;ETHIOPIC SYLLABLE XEE;Lo;0;L;;;;;N;;;;;-1285;ETHIOPIC SYLLABLE XE;Lo;0;L;;;;;N;;;;;-1286;ETHIOPIC SYLLABLE XO;Lo;0;L;;;;;N;;;;;-1287;ETHIOPIC SYLLABLE XOA;Lo;0;L;;;;;N;;;;;-1288;ETHIOPIC SYLLABLE XWA;Lo;0;L;;;;;N;;;;;-128A;ETHIOPIC SYLLABLE XWI;Lo;0;L;;;;;N;;;;;-128B;ETHIOPIC SYLLABLE XWAA;Lo;0;L;;;;;N;;;;;-128C;ETHIOPIC SYLLABLE XWEE;Lo;0;L;;;;;N;;;;;-128D;ETHIOPIC SYLLABLE XWE;Lo;0;L;;;;;N;;;;;-1290;ETHIOPIC SYLLABLE NA;Lo;0;L;;;;;N;;;;;-1291;ETHIOPIC SYLLABLE NU;Lo;0;L;;;;;N;;;;;-1292;ETHIOPIC SYLLABLE NI;Lo;0;L;;;;;N;;;;;-1293;ETHIOPIC SYLLABLE NAA;Lo;0;L;;;;;N;;;;;-1294;ETHIOPIC SYLLABLE NEE;Lo;0;L;;;;;N;;;;;-1295;ETHIOPIC SYLLABLE NE;Lo;0;L;;;;;N;;;;;-1296;ETHIOPIC SYLLABLE NO;Lo;0;L;;;;;N;;;;;-1297;ETHIOPIC SYLLABLE NWA;Lo;0;L;;;;;N;;;;;-1298;ETHIOPIC SYLLABLE NYA;Lo;0;L;;;;;N;;;;;-1299;ETHIOPIC SYLLABLE NYU;Lo;0;L;;;;;N;;;;;-129A;ETHIOPIC SYLLABLE NYI;Lo;0;L;;;;;N;;;;;-129B;ETHIOPIC SYLLABLE NYAA;Lo;0;L;;;;;N;;;;;-129C;ETHIOPIC SYLLABLE NYEE;Lo;0;L;;;;;N;;;;;-129D;ETHIOPIC SYLLABLE NYE;Lo;0;L;;;;;N;;;;;-129E;ETHIOPIC SYLLABLE NYO;Lo;0;L;;;;;N;;;;;-129F;ETHIOPIC SYLLABLE NYWA;Lo;0;L;;;;;N;;;;;-12A0;ETHIOPIC SYLLABLE GLOTTAL A;Lo;0;L;;;;;N;;;;;-12A1;ETHIOPIC SYLLABLE GLOTTAL U;Lo;0;L;;;;;N;;;;;-12A2;ETHIOPIC SYLLABLE GLOTTAL I;Lo;0;L;;;;;N;;;;;-12A3;ETHIOPIC SYLLABLE GLOTTAL AA;Lo;0;L;;;;;N;;;;;-12A4;ETHIOPIC SYLLABLE GLOTTAL EE;Lo;0;L;;;;;N;;;;;-12A5;ETHIOPIC SYLLABLE GLOTTAL E;Lo;0;L;;;;;N;;;;;-12A6;ETHIOPIC SYLLABLE GLOTTAL O;Lo;0;L;;;;;N;;;;;-12A7;ETHIOPIC SYLLABLE GLOTTAL WA;Lo;0;L;;;;;N;;;;;-12A8;ETHIOPIC SYLLABLE KA;Lo;0;L;;;;;N;;;;;-12A9;ETHIOPIC SYLLABLE KU;Lo;0;L;;;;;N;;;;;-12AA;ETHIOPIC SYLLABLE KI;Lo;0;L;;;;;N;;;;;-12AB;ETHIOPIC SYLLABLE KAA;Lo;0;L;;;;;N;;;;;-12AC;ETHIOPIC SYLLABLE KEE;Lo;0;L;;;;;N;;;;;-12AD;ETHIOPIC SYLLABLE KE;Lo;0;L;;;;;N;;;;;-12AE;ETHIOPIC SYLLABLE KO;Lo;0;L;;;;;N;;;;;-12AF;ETHIOPIC SYLLABLE KOA;Lo;0;L;;;;;N;;;;;-12B0;ETHIOPIC SYLLABLE KWA;Lo;0;L;;;;;N;;;;;-12B2;ETHIOPIC SYLLABLE KWI;Lo;0;L;;;;;N;;;;;-12B3;ETHIOPIC SYLLABLE KWAA;Lo;0;L;;;;;N;;;;;-12B4;ETHIOPIC SYLLABLE KWEE;Lo;0;L;;;;;N;;;;;-12B5;ETHIOPIC SYLLABLE KWE;Lo;0;L;;;;;N;;;;;-12B8;ETHIOPIC SYLLABLE KXA;Lo;0;L;;;;;N;;;;;-12B9;ETHIOPIC SYLLABLE KXU;Lo;0;L;;;;;N;;;;;-12BA;ETHIOPIC SYLLABLE KXI;Lo;0;L;;;;;N;;;;;-12BB;ETHIOPIC SYLLABLE KXAA;Lo;0;L;;;;;N;;;;;-12BC;ETHIOPIC SYLLABLE KXEE;Lo;0;L;;;;;N;;;;;-12BD;ETHIOPIC SYLLABLE KXE;Lo;0;L;;;;;N;;;;;-12BE;ETHIOPIC SYLLABLE KXO;Lo;0;L;;;;;N;;;;;-12C0;ETHIOPIC SYLLABLE KXWA;Lo;0;L;;;;;N;;;;;-12C2;ETHIOPIC SYLLABLE KXWI;Lo;0;L;;;;;N;;;;;-12C3;ETHIOPIC SYLLABLE KXWAA;Lo;0;L;;;;;N;;;;;-12C4;ETHIOPIC SYLLABLE KXWEE;Lo;0;L;;;;;N;;;;;-12C5;ETHIOPIC SYLLABLE KXWE;Lo;0;L;;;;;N;;;;;-12C8;ETHIOPIC SYLLABLE WA;Lo;0;L;;;;;N;;;;;-12C9;ETHIOPIC SYLLABLE WU;Lo;0;L;;;;;N;;;;;-12CA;ETHIOPIC SYLLABLE WI;Lo;0;L;;;;;N;;;;;-12CB;ETHIOPIC SYLLABLE WAA;Lo;0;L;;;;;N;;;;;-12CC;ETHIOPIC SYLLABLE WEE;Lo;0;L;;;;;N;;;;;-12CD;ETHIOPIC SYLLABLE WE;Lo;0;L;;;;;N;;;;;-12CE;ETHIOPIC SYLLABLE WO;Lo;0;L;;;;;N;;;;;-12CF;ETHIOPIC SYLLABLE WOA;Lo;0;L;;;;;N;;;;;-12D0;ETHIOPIC SYLLABLE PHARYNGEAL A;Lo;0;L;;;;;N;;;;;-12D1;ETHIOPIC SYLLABLE PHARYNGEAL U;Lo;0;L;;;;;N;;;;;-12D2;ETHIOPIC SYLLABLE PHARYNGEAL I;Lo;0;L;;;;;N;;;;;-12D3;ETHIOPIC SYLLABLE PHARYNGEAL AA;Lo;0;L;;;;;N;;;;;-12D4;ETHIOPIC SYLLABLE PHARYNGEAL EE;Lo;0;L;;;;;N;;;;;-12D5;ETHIOPIC SYLLABLE PHARYNGEAL E;Lo;0;L;;;;;N;;;;;-12D6;ETHIOPIC SYLLABLE PHARYNGEAL O;Lo;0;L;;;;;N;;;;;-12D8;ETHIOPIC SYLLABLE ZA;Lo;0;L;;;;;N;;;;;-12D9;ETHIOPIC SYLLABLE ZU;Lo;0;L;;;;;N;;;;;-12DA;ETHIOPIC SYLLABLE ZI;Lo;0;L;;;;;N;;;;;-12DB;ETHIOPIC SYLLABLE ZAA;Lo;0;L;;;;;N;;;;;-12DC;ETHIOPIC SYLLABLE ZEE;Lo;0;L;;;;;N;;;;;-12DD;ETHIOPIC SYLLABLE ZE;Lo;0;L;;;;;N;;;;;-12DE;ETHIOPIC SYLLABLE ZO;Lo;0;L;;;;;N;;;;;-12DF;ETHIOPIC SYLLABLE ZWA;Lo;0;L;;;;;N;;;;;-12E0;ETHIOPIC SYLLABLE ZHA;Lo;0;L;;;;;N;;;;;-12E1;ETHIOPIC SYLLABLE ZHU;Lo;0;L;;;;;N;;;;;-12E2;ETHIOPIC SYLLABLE ZHI;Lo;0;L;;;;;N;;;;;-12E3;ETHIOPIC SYLLABLE ZHAA;Lo;0;L;;;;;N;;;;;-12E4;ETHIOPIC SYLLABLE ZHEE;Lo;0;L;;;;;N;;;;;-12E5;ETHIOPIC SYLLABLE ZHE;Lo;0;L;;;;;N;;;;;-12E6;ETHIOPIC SYLLABLE ZHO;Lo;0;L;;;;;N;;;;;-12E7;ETHIOPIC SYLLABLE ZHWA;Lo;0;L;;;;;N;;;;;-12E8;ETHIOPIC SYLLABLE YA;Lo;0;L;;;;;N;;;;;-12E9;ETHIOPIC SYLLABLE YU;Lo;0;L;;;;;N;;;;;-12EA;ETHIOPIC SYLLABLE YI;Lo;0;L;;;;;N;;;;;-12EB;ETHIOPIC SYLLABLE YAA;Lo;0;L;;;;;N;;;;;-12EC;ETHIOPIC SYLLABLE YEE;Lo;0;L;;;;;N;;;;;-12ED;ETHIOPIC SYLLABLE YE;Lo;0;L;;;;;N;;;;;-12EE;ETHIOPIC SYLLABLE YO;Lo;0;L;;;;;N;;;;;-12EF;ETHIOPIC SYLLABLE YOA;Lo;0;L;;;;;N;;;;;-12F0;ETHIOPIC SYLLABLE DA;Lo;0;L;;;;;N;;;;;-12F1;ETHIOPIC SYLLABLE DU;Lo;0;L;;;;;N;;;;;-12F2;ETHIOPIC SYLLABLE DI;Lo;0;L;;;;;N;;;;;-12F3;ETHIOPIC SYLLABLE DAA;Lo;0;L;;;;;N;;;;;-12F4;ETHIOPIC SYLLABLE DEE;Lo;0;L;;;;;N;;;;;-12F5;ETHIOPIC SYLLABLE DE;Lo;0;L;;;;;N;;;;;-12F6;ETHIOPIC SYLLABLE DO;Lo;0;L;;;;;N;;;;;-12F7;ETHIOPIC SYLLABLE DWA;Lo;0;L;;;;;N;;;;;-12F8;ETHIOPIC SYLLABLE DDA;Lo;0;L;;;;;N;;;;;-12F9;ETHIOPIC SYLLABLE DDU;Lo;0;L;;;;;N;;;;;-12FA;ETHIOPIC SYLLABLE DDI;Lo;0;L;;;;;N;;;;;-12FB;ETHIOPIC SYLLABLE DDAA;Lo;0;L;;;;;N;;;;;-12FC;ETHIOPIC SYLLABLE DDEE;Lo;0;L;;;;;N;;;;;-12FD;ETHIOPIC SYLLABLE DDE;Lo;0;L;;;;;N;;;;;-12FE;ETHIOPIC SYLLABLE DDO;Lo;0;L;;;;;N;;;;;-12FF;ETHIOPIC SYLLABLE DDWA;Lo;0;L;;;;;N;;;;;-1300;ETHIOPIC SYLLABLE JA;Lo;0;L;;;;;N;;;;;-1301;ETHIOPIC SYLLABLE JU;Lo;0;L;;;;;N;;;;;-1302;ETHIOPIC SYLLABLE JI;Lo;0;L;;;;;N;;;;;-1303;ETHIOPIC SYLLABLE JAA;Lo;0;L;;;;;N;;;;;-1304;ETHIOPIC SYLLABLE JEE;Lo;0;L;;;;;N;;;;;-1305;ETHIOPIC SYLLABLE JE;Lo;0;L;;;;;N;;;;;-1306;ETHIOPIC SYLLABLE JO;Lo;0;L;;;;;N;;;;;-1307;ETHIOPIC SYLLABLE JWA;Lo;0;L;;;;;N;;;;;-1308;ETHIOPIC SYLLABLE GA;Lo;0;L;;;;;N;;;;;-1309;ETHIOPIC SYLLABLE GU;Lo;0;L;;;;;N;;;;;-130A;ETHIOPIC SYLLABLE GI;Lo;0;L;;;;;N;;;;;-130B;ETHIOPIC SYLLABLE GAA;Lo;0;L;;;;;N;;;;;-130C;ETHIOPIC SYLLABLE GEE;Lo;0;L;;;;;N;;;;;-130D;ETHIOPIC SYLLABLE GE;Lo;0;L;;;;;N;;;;;-130E;ETHIOPIC SYLLABLE GO;Lo;0;L;;;;;N;;;;;-130F;ETHIOPIC SYLLABLE GOA;Lo;0;L;;;;;N;;;;;-1310;ETHIOPIC SYLLABLE GWA;Lo;0;L;;;;;N;;;;;-1312;ETHIOPIC SYLLABLE GWI;Lo;0;L;;;;;N;;;;;-1313;ETHIOPIC SYLLABLE GWAA;Lo;0;L;;;;;N;;;;;-1314;ETHIOPIC SYLLABLE GWEE;Lo;0;L;;;;;N;;;;;-1315;ETHIOPIC SYLLABLE GWE;Lo;0;L;;;;;N;;;;;-1318;ETHIOPIC SYLLABLE GGA;Lo;0;L;;;;;N;;;;;-1319;ETHIOPIC SYLLABLE GGU;Lo;0;L;;;;;N;;;;;-131A;ETHIOPIC SYLLABLE GGI;Lo;0;L;;;;;N;;;;;-131B;ETHIOPIC SYLLABLE GGAA;Lo;0;L;;;;;N;;;;;-131C;ETHIOPIC SYLLABLE GGEE;Lo;0;L;;;;;N;;;;;-131D;ETHIOPIC SYLLABLE GGE;Lo;0;L;;;;;N;;;;;-131E;ETHIOPIC SYLLABLE GGO;Lo;0;L;;;;;N;;;;;-131F;ETHIOPIC SYLLABLE GGWAA;Lo;0;L;;;;;N;;;;;-1320;ETHIOPIC SYLLABLE THA;Lo;0;L;;;;;N;;;;;-1321;ETHIOPIC SYLLABLE THU;Lo;0;L;;;;;N;;;;;-1322;ETHIOPIC SYLLABLE THI;Lo;0;L;;;;;N;;;;;-1323;ETHIOPIC SYLLABLE THAA;Lo;0;L;;;;;N;;;;;-1324;ETHIOPIC SYLLABLE THEE;Lo;0;L;;;;;N;;;;;-1325;ETHIOPIC SYLLABLE THE;Lo;0;L;;;;;N;;;;;-1326;ETHIOPIC SYLLABLE THO;Lo;0;L;;;;;N;;;;;-1327;ETHIOPIC SYLLABLE THWA;Lo;0;L;;;;;N;;;;;-1328;ETHIOPIC SYLLABLE CHA;Lo;0;L;;;;;N;;;;;-1329;ETHIOPIC SYLLABLE CHU;Lo;0;L;;;;;N;;;;;-132A;ETHIOPIC SYLLABLE CHI;Lo;0;L;;;;;N;;;;;-132B;ETHIOPIC SYLLABLE CHAA;Lo;0;L;;;;;N;;;;;-132C;ETHIOPIC SYLLABLE CHEE;Lo;0;L;;;;;N;;;;;-132D;ETHIOPIC SYLLABLE CHE;Lo;0;L;;;;;N;;;;;-132E;ETHIOPIC SYLLABLE CHO;Lo;0;L;;;;;N;;;;;-132F;ETHIOPIC SYLLABLE CHWA;Lo;0;L;;;;;N;;;;;-1330;ETHIOPIC SYLLABLE PHA;Lo;0;L;;;;;N;;;;;-1331;ETHIOPIC SYLLABLE PHU;Lo;0;L;;;;;N;;;;;-1332;ETHIOPIC SYLLABLE PHI;Lo;0;L;;;;;N;;;;;-1333;ETHIOPIC SYLLABLE PHAA;Lo;0;L;;;;;N;;;;;-1334;ETHIOPIC SYLLABLE PHEE;Lo;0;L;;;;;N;;;;;-1335;ETHIOPIC SYLLABLE PHE;Lo;0;L;;;;;N;;;;;-1336;ETHIOPIC SYLLABLE PHO;Lo;0;L;;;;;N;;;;;-1337;ETHIOPIC SYLLABLE PHWA;Lo;0;L;;;;;N;;;;;-1338;ETHIOPIC SYLLABLE TSA;Lo;0;L;;;;;N;;;;;-1339;ETHIOPIC SYLLABLE TSU;Lo;0;L;;;;;N;;;;;-133A;ETHIOPIC SYLLABLE TSI;Lo;0;L;;;;;N;;;;;-133B;ETHIOPIC SYLLABLE TSAA;Lo;0;L;;;;;N;;;;;-133C;ETHIOPIC SYLLABLE TSEE;Lo;0;L;;;;;N;;;;;-133D;ETHIOPIC SYLLABLE TSE;Lo;0;L;;;;;N;;;;;-133E;ETHIOPIC SYLLABLE TSO;Lo;0;L;;;;;N;;;;;-133F;ETHIOPIC SYLLABLE TSWA;Lo;0;L;;;;;N;;;;;-1340;ETHIOPIC SYLLABLE TZA;Lo;0;L;;;;;N;;;;;-1341;ETHIOPIC SYLLABLE TZU;Lo;0;L;;;;;N;;;;;-1342;ETHIOPIC SYLLABLE TZI;Lo;0;L;;;;;N;;;;;-1343;ETHIOPIC SYLLABLE TZAA;Lo;0;L;;;;;N;;;;;-1344;ETHIOPIC SYLLABLE TZEE;Lo;0;L;;;;;N;;;;;-1345;ETHIOPIC SYLLABLE TZE;Lo;0;L;;;;;N;;;;;-1346;ETHIOPIC SYLLABLE TZO;Lo;0;L;;;;;N;;;;;-1347;ETHIOPIC SYLLABLE TZOA;Lo;0;L;;;;;N;;;;;-1348;ETHIOPIC SYLLABLE FA;Lo;0;L;;;;;N;;;;;-1349;ETHIOPIC SYLLABLE FU;Lo;0;L;;;;;N;;;;;-134A;ETHIOPIC SYLLABLE FI;Lo;0;L;;;;;N;;;;;-134B;ETHIOPIC SYLLABLE FAA;Lo;0;L;;;;;N;;;;;-134C;ETHIOPIC SYLLABLE FEE;Lo;0;L;;;;;N;;;;;-134D;ETHIOPIC SYLLABLE FE;Lo;0;L;;;;;N;;;;;-134E;ETHIOPIC SYLLABLE FO;Lo;0;L;;;;;N;;;;;-134F;ETHIOPIC SYLLABLE FWA;Lo;0;L;;;;;N;;;;;-1350;ETHIOPIC SYLLABLE PA;Lo;0;L;;;;;N;;;;;-1351;ETHIOPIC SYLLABLE PU;Lo;0;L;;;;;N;;;;;-1352;ETHIOPIC SYLLABLE PI;Lo;0;L;;;;;N;;;;;-1353;ETHIOPIC SYLLABLE PAA;Lo;0;L;;;;;N;;;;;-1354;ETHIOPIC SYLLABLE PEE;Lo;0;L;;;;;N;;;;;-1355;ETHIOPIC SYLLABLE PE;Lo;0;L;;;;;N;;;;;-1356;ETHIOPIC SYLLABLE PO;Lo;0;L;;;;;N;;;;;-1357;ETHIOPIC SYLLABLE PWA;Lo;0;L;;;;;N;;;;;-1358;ETHIOPIC SYLLABLE RYA;Lo;0;L;;;;;N;;;;;-1359;ETHIOPIC SYLLABLE MYA;Lo;0;L;;;;;N;;;;;-135A;ETHIOPIC SYLLABLE FYA;Lo;0;L;;;;;N;;;;;-135D;ETHIOPIC COMBINING GEMINATION AND VOWEL LENGTH MARK;Mn;230;NSM;;;;;N;;;;;-135E;ETHIOPIC COMBINING VOWEL LENGTH MARK;Mn;230;NSM;;;;;N;;;;;-135F;ETHIOPIC COMBINING GEMINATION MARK;Mn;230;NSM;;;;;N;;;;;-1360;ETHIOPIC SECTION MARK;Po;0;L;;;;;N;;;;;-1361;ETHIOPIC WORDSPACE;Po;0;L;;;;;N;;;;;-1362;ETHIOPIC FULL STOP;Po;0;L;;;;;N;;;;;-1363;ETHIOPIC COMMA;Po;0;L;;;;;N;;;;;-1364;ETHIOPIC SEMICOLON;Po;0;L;;;;;N;;;;;-1365;ETHIOPIC COLON;Po;0;L;;;;;N;;;;;-1366;ETHIOPIC PREFACE COLON;Po;0;L;;;;;N;;;;;-1367;ETHIOPIC QUESTION MARK;Po;0;L;;;;;N;;;;;-1368;ETHIOPIC PARAGRAPH SEPARATOR;Po;0;L;;;;;N;;;;;-1369;ETHIOPIC DIGIT ONE;No;0;L;;;1;1;N;;;;;-136A;ETHIOPIC DIGIT TWO;No;0;L;;;2;2;N;;;;;-136B;ETHIOPIC DIGIT THREE;No;0;L;;;3;3;N;;;;;-136C;ETHIOPIC DIGIT FOUR;No;0;L;;;4;4;N;;;;;-136D;ETHIOPIC DIGIT FIVE;No;0;L;;;5;5;N;;;;;-136E;ETHIOPIC DIGIT SIX;No;0;L;;;6;6;N;;;;;-136F;ETHIOPIC DIGIT SEVEN;No;0;L;;;7;7;N;;;;;-1370;ETHIOPIC DIGIT EIGHT;No;0;L;;;8;8;N;;;;;-1371;ETHIOPIC DIGIT NINE;No;0;L;;;9;9;N;;;;;-1372;ETHIOPIC NUMBER TEN;No;0;L;;;;10;N;;;;;-1373;ETHIOPIC NUMBER TWENTY;No;0;L;;;;20;N;;;;;-1374;ETHIOPIC NUMBER THIRTY;No;0;L;;;;30;N;;;;;-1375;ETHIOPIC NUMBER FORTY;No;0;L;;;;40;N;;;;;-1376;ETHIOPIC NUMBER FIFTY;No;0;L;;;;50;N;;;;;-1377;ETHIOPIC NUMBER SIXTY;No;0;L;;;;60;N;;;;;-1378;ETHIOPIC NUMBER SEVENTY;No;0;L;;;;70;N;;;;;-1379;ETHIOPIC NUMBER EIGHTY;No;0;L;;;;80;N;;;;;-137A;ETHIOPIC NUMBER NINETY;No;0;L;;;;90;N;;;;;-137B;ETHIOPIC NUMBER HUNDRED;No;0;L;;;;100;N;;;;;-137C;ETHIOPIC NUMBER TEN THOUSAND;No;0;L;;;;10000;N;;;;;-1380;ETHIOPIC SYLLABLE SEBATBEIT MWA;Lo;0;L;;;;;N;;;;;-1381;ETHIOPIC SYLLABLE MWI;Lo;0;L;;;;;N;;;;;-1382;ETHIOPIC SYLLABLE MWEE;Lo;0;L;;;;;N;;;;;-1383;ETHIOPIC SYLLABLE MWE;Lo;0;L;;;;;N;;;;;-1384;ETHIOPIC SYLLABLE SEBATBEIT BWA;Lo;0;L;;;;;N;;;;;-1385;ETHIOPIC SYLLABLE BWI;Lo;0;L;;;;;N;;;;;-1386;ETHIOPIC SYLLABLE BWEE;Lo;0;L;;;;;N;;;;;-1387;ETHIOPIC SYLLABLE BWE;Lo;0;L;;;;;N;;;;;-1388;ETHIOPIC SYLLABLE SEBATBEIT FWA;Lo;0;L;;;;;N;;;;;-1389;ETHIOPIC SYLLABLE FWI;Lo;0;L;;;;;N;;;;;-138A;ETHIOPIC SYLLABLE FWEE;Lo;0;L;;;;;N;;;;;-138B;ETHIOPIC SYLLABLE FWE;Lo;0;L;;;;;N;;;;;-138C;ETHIOPIC SYLLABLE SEBATBEIT PWA;Lo;0;L;;;;;N;;;;;-138D;ETHIOPIC SYLLABLE PWI;Lo;0;L;;;;;N;;;;;-138E;ETHIOPIC SYLLABLE PWEE;Lo;0;L;;;;;N;;;;;-138F;ETHIOPIC SYLLABLE PWE;Lo;0;L;;;;;N;;;;;-1390;ETHIOPIC TONAL MARK YIZET;So;0;ON;;;;;N;;;;;-1391;ETHIOPIC TONAL MARK DERET;So;0;ON;;;;;N;;;;;-1392;ETHIOPIC TONAL MARK RIKRIK;So;0;ON;;;;;N;;;;;-1393;ETHIOPIC TONAL MARK SHORT RIKRIK;So;0;ON;;;;;N;;;;;-1394;ETHIOPIC TONAL MARK DIFAT;So;0;ON;;;;;N;;;;;-1395;ETHIOPIC TONAL MARK KENAT;So;0;ON;;;;;N;;;;;-1396;ETHIOPIC TONAL MARK CHIRET;So;0;ON;;;;;N;;;;;-1397;ETHIOPIC TONAL MARK HIDET;So;0;ON;;;;;N;;;;;-1398;ETHIOPIC TONAL MARK DERET-HIDET;So;0;ON;;;;;N;;;;;-1399;ETHIOPIC TONAL MARK KURT;So;0;ON;;;;;N;;;;;-13A0;CHEROKEE LETTER A;Lo;0;L;;;;;N;;;;;-13A1;CHEROKEE LETTER E;Lo;0;L;;;;;N;;;;;-13A2;CHEROKEE LETTER I;Lo;0;L;;;;;N;;;;;-13A3;CHEROKEE LETTER O;Lo;0;L;;;;;N;;;;;-13A4;CHEROKEE LETTER U;Lo;0;L;;;;;N;;;;;-13A5;CHEROKEE LETTER V;Lo;0;L;;;;;N;;;;;-13A6;CHEROKEE LETTER GA;Lo;0;L;;;;;N;;;;;-13A7;CHEROKEE LETTER KA;Lo;0;L;;;;;N;;;;;-13A8;CHEROKEE LETTER GE;Lo;0;L;;;;;N;;;;;-13A9;CHEROKEE LETTER GI;Lo;0;L;;;;;N;;;;;-13AA;CHEROKEE LETTER GO;Lo;0;L;;;;;N;;;;;-13AB;CHEROKEE LETTER GU;Lo;0;L;;;;;N;;;;;-13AC;CHEROKEE LETTER GV;Lo;0;L;;;;;N;;;;;-13AD;CHEROKEE LETTER HA;Lo;0;L;;;;;N;;;;;-13AE;CHEROKEE LETTER HE;Lo;0;L;;;;;N;;;;;-13AF;CHEROKEE LETTER HI;Lo;0;L;;;;;N;;;;;-13B0;CHEROKEE LETTER HO;Lo;0;L;;;;;N;;;;;-13B1;CHEROKEE LETTER HU;Lo;0;L;;;;;N;;;;;-13B2;CHEROKEE LETTER HV;Lo;0;L;;;;;N;;;;;-13B3;CHEROKEE LETTER LA;Lo;0;L;;;;;N;;;;;-13B4;CHEROKEE LETTER LE;Lo;0;L;;;;;N;;;;;-13B5;CHEROKEE LETTER LI;Lo;0;L;;;;;N;;;;;-13B6;CHEROKEE LETTER LO;Lo;0;L;;;;;N;;;;;-13B7;CHEROKEE LETTER LU;Lo;0;L;;;;;N;;;;;-13B8;CHEROKEE LETTER LV;Lo;0;L;;;;;N;;;;;-13B9;CHEROKEE LETTER MA;Lo;0;L;;;;;N;;;;;-13BA;CHEROKEE LETTER ME;Lo;0;L;;;;;N;;;;;-13BB;CHEROKEE LETTER MI;Lo;0;L;;;;;N;;;;;-13BC;CHEROKEE LETTER MO;Lo;0;L;;;;;N;;;;;-13BD;CHEROKEE LETTER MU;Lo;0;L;;;;;N;;;;;-13BE;CHEROKEE LETTER NA;Lo;0;L;;;;;N;;;;;-13BF;CHEROKEE LETTER HNA;Lo;0;L;;;;;N;;;;;-13C0;CHEROKEE LETTER NAH;Lo;0;L;;;;;N;;;;;-13C1;CHEROKEE LETTER NE;Lo;0;L;;;;;N;;;;;-13C2;CHEROKEE LETTER NI;Lo;0;L;;;;;N;;;;;-13C3;CHEROKEE LETTER NO;Lo;0;L;;;;;N;;;;;-13C4;CHEROKEE LETTER NU;Lo;0;L;;;;;N;;;;;-13C5;CHEROKEE LETTER NV;Lo;0;L;;;;;N;;;;;-13C6;CHEROKEE LETTER QUA;Lo;0;L;;;;;N;;;;;-13C7;CHEROKEE LETTER QUE;Lo;0;L;;;;;N;;;;;-13C8;CHEROKEE LETTER QUI;Lo;0;L;;;;;N;;;;;-13C9;CHEROKEE LETTER QUO;Lo;0;L;;;;;N;;;;;-13CA;CHEROKEE LETTER QUU;Lo;0;L;;;;;N;;;;;-13CB;CHEROKEE LETTER QUV;Lo;0;L;;;;;N;;;;;-13CC;CHEROKEE LETTER SA;Lo;0;L;;;;;N;;;;;-13CD;CHEROKEE LETTER S;Lo;0;L;;;;;N;;;;;-13CE;CHEROKEE LETTER SE;Lo;0;L;;;;;N;;;;;-13CF;CHEROKEE LETTER SI;Lo;0;L;;;;;N;;;;;-13D0;CHEROKEE LETTER SO;Lo;0;L;;;;;N;;;;;-13D1;CHEROKEE LETTER SU;Lo;0;L;;;;;N;;;;;-13D2;CHEROKEE LETTER SV;Lo;0;L;;;;;N;;;;;-13D3;CHEROKEE LETTER DA;Lo;0;L;;;;;N;;;;;-13D4;CHEROKEE LETTER TA;Lo;0;L;;;;;N;;;;;-13D5;CHEROKEE LETTER DE;Lo;0;L;;;;;N;;;;;-13D6;CHEROKEE LETTER TE;Lo;0;L;;;;;N;;;;;-13D7;CHEROKEE LETTER DI;Lo;0;L;;;;;N;;;;;-13D8;CHEROKEE LETTER TI;Lo;0;L;;;;;N;;;;;-13D9;CHEROKEE LETTER DO;Lo;0;L;;;;;N;;;;;-13DA;CHEROKEE LETTER DU;Lo;0;L;;;;;N;;;;;-13DB;CHEROKEE LETTER DV;Lo;0;L;;;;;N;;;;;-13DC;CHEROKEE LETTER DLA;Lo;0;L;;;;;N;;;;;-13DD;CHEROKEE LETTER TLA;Lo;0;L;;;;;N;;;;;-13DE;CHEROKEE LETTER TLE;Lo;0;L;;;;;N;;;;;-13DF;CHEROKEE LETTER TLI;Lo;0;L;;;;;N;;;;;-13E0;CHEROKEE LETTER TLO;Lo;0;L;;;;;N;;;;;-13E1;CHEROKEE LETTER TLU;Lo;0;L;;;;;N;;;;;-13E2;CHEROKEE LETTER TLV;Lo;0;L;;;;;N;;;;;-13E3;CHEROKEE LETTER TSA;Lo;0;L;;;;;N;;;;;-13E4;CHEROKEE LETTER TSE;Lo;0;L;;;;;N;;;;;-13E5;CHEROKEE LETTER TSI;Lo;0;L;;;;;N;;;;;-13E6;CHEROKEE LETTER TSO;Lo;0;L;;;;;N;;;;;-13E7;CHEROKEE LETTER TSU;Lo;0;L;;;;;N;;;;;-13E8;CHEROKEE LETTER TSV;Lo;0;L;;;;;N;;;;;-13E9;CHEROKEE LETTER WA;Lo;0;L;;;;;N;;;;;-13EA;CHEROKEE LETTER WE;Lo;0;L;;;;;N;;;;;-13EB;CHEROKEE LETTER WI;Lo;0;L;;;;;N;;;;;-13EC;CHEROKEE LETTER WO;Lo;0;L;;;;;N;;;;;-13ED;CHEROKEE LETTER WU;Lo;0;L;;;;;N;;;;;-13EE;CHEROKEE LETTER WV;Lo;0;L;;;;;N;;;;;-13EF;CHEROKEE LETTER YA;Lo;0;L;;;;;N;;;;;-13F0;CHEROKEE LETTER YE;Lo;0;L;;;;;N;;;;;-13F1;CHEROKEE LETTER YI;Lo;0;L;;;;;N;;;;;-13F2;CHEROKEE LETTER YO;Lo;0;L;;;;;N;;;;;-13F3;CHEROKEE LETTER YU;Lo;0;L;;;;;N;;;;;-13F4;CHEROKEE LETTER YV;Lo;0;L;;;;;N;;;;;-1400;CANADIAN SYLLABICS HYPHEN;Pd;0;ON;;;;;N;;;;;-1401;CANADIAN SYLLABICS E;Lo;0;L;;;;;N;;;;;-1402;CANADIAN SYLLABICS AAI;Lo;0;L;;;;;N;;;;;-1403;CANADIAN SYLLABICS I;Lo;0;L;;;;;N;;;;;-1404;CANADIAN SYLLABICS II;Lo;0;L;;;;;N;;;;;-1405;CANADIAN SYLLABICS O;Lo;0;L;;;;;N;;;;;-1406;CANADIAN SYLLABICS OO;Lo;0;L;;;;;N;;;;;-1407;CANADIAN SYLLABICS Y-CREE OO;Lo;0;L;;;;;N;;;;;-1408;CANADIAN SYLLABICS CARRIER EE;Lo;0;L;;;;;N;;;;;-1409;CANADIAN SYLLABICS CARRIER I;Lo;0;L;;;;;N;;;;;-140A;CANADIAN SYLLABICS A;Lo;0;L;;;;;N;;;;;-140B;CANADIAN SYLLABICS AA;Lo;0;L;;;;;N;;;;;-140C;CANADIAN SYLLABICS WE;Lo;0;L;;;;;N;;;;;-140D;CANADIAN SYLLABICS WEST-CREE WE;Lo;0;L;;;;;N;;;;;-140E;CANADIAN SYLLABICS WI;Lo;0;L;;;;;N;;;;;-140F;CANADIAN SYLLABICS WEST-CREE WI;Lo;0;L;;;;;N;;;;;-1410;CANADIAN SYLLABICS WII;Lo;0;L;;;;;N;;;;;-1411;CANADIAN SYLLABICS WEST-CREE WII;Lo;0;L;;;;;N;;;;;-1412;CANADIAN SYLLABICS WO;Lo;0;L;;;;;N;;;;;-1413;CANADIAN SYLLABICS WEST-CREE WO;Lo;0;L;;;;;N;;;;;-1414;CANADIAN SYLLABICS WOO;Lo;0;L;;;;;N;;;;;-1415;CANADIAN SYLLABICS WEST-CREE WOO;Lo;0;L;;;;;N;;;;;-1416;CANADIAN SYLLABICS NASKAPI WOO;Lo;0;L;;;;;N;;;;;-1417;CANADIAN SYLLABICS WA;Lo;0;L;;;;;N;;;;;-1418;CANADIAN SYLLABICS WEST-CREE WA;Lo;0;L;;;;;N;;;;;-1419;CANADIAN SYLLABICS WAA;Lo;0;L;;;;;N;;;;;-141A;CANADIAN SYLLABICS WEST-CREE WAA;Lo;0;L;;;;;N;;;;;-141B;CANADIAN SYLLABICS NASKAPI WAA;Lo;0;L;;;;;N;;;;;-141C;CANADIAN SYLLABICS AI;Lo;0;L;;;;;N;;;;;-141D;CANADIAN SYLLABICS Y-CREE W;Lo;0;L;;;;;N;;;;;-141E;CANADIAN SYLLABICS GLOTTAL STOP;Lo;0;L;;;;;N;;;;;-141F;CANADIAN SYLLABICS FINAL ACUTE;Lo;0;L;;;;;N;;;;;-1420;CANADIAN SYLLABICS FINAL GRAVE;Lo;0;L;;;;;N;;;;;-1421;CANADIAN SYLLABICS FINAL BOTTOM HALF RING;Lo;0;L;;;;;N;;;;;-1422;CANADIAN SYLLABICS FINAL TOP HALF RING;Lo;0;L;;;;;N;;;;;-1423;CANADIAN SYLLABICS FINAL RIGHT HALF RING;Lo;0;L;;;;;N;;;;;-1424;CANADIAN SYLLABICS FINAL RING;Lo;0;L;;;;;N;;;;;-1425;CANADIAN SYLLABICS FINAL DOUBLE ACUTE;Lo;0;L;;;;;N;;;;;-1426;CANADIAN SYLLABICS FINAL DOUBLE SHORT VERTICAL STROKES;Lo;0;L;;;;;N;;;;;-1427;CANADIAN SYLLABICS FINAL MIDDLE DOT;Lo;0;L;;;;;N;;;;;-1428;CANADIAN SYLLABICS FINAL SHORT HORIZONTAL STROKE;Lo;0;L;;;;;N;;;;;-1429;CANADIAN SYLLABICS FINAL PLUS;Lo;0;L;;;;;N;;;;;-142A;CANADIAN SYLLABICS FINAL DOWN TACK;Lo;0;L;;;;;N;;;;;-142B;CANADIAN SYLLABICS EN;Lo;0;L;;;;;N;;;;;-142C;CANADIAN SYLLABICS IN;Lo;0;L;;;;;N;;;;;-142D;CANADIAN SYLLABICS ON;Lo;0;L;;;;;N;;;;;-142E;CANADIAN SYLLABICS AN;Lo;0;L;;;;;N;;;;;-142F;CANADIAN SYLLABICS PE;Lo;0;L;;;;;N;;;;;-1430;CANADIAN SYLLABICS PAAI;Lo;0;L;;;;;N;;;;;-1431;CANADIAN SYLLABICS PI;Lo;0;L;;;;;N;;;;;-1432;CANADIAN SYLLABICS PII;Lo;0;L;;;;;N;;;;;-1433;CANADIAN SYLLABICS PO;Lo;0;L;;;;;N;;;;;-1434;CANADIAN SYLLABICS POO;Lo;0;L;;;;;N;;;;;-1435;CANADIAN SYLLABICS Y-CREE POO;Lo;0;L;;;;;N;;;;;-1436;CANADIAN SYLLABICS CARRIER HEE;Lo;0;L;;;;;N;;;;;-1437;CANADIAN SYLLABICS CARRIER HI;Lo;0;L;;;;;N;;;;;-1438;CANADIAN SYLLABICS PA;Lo;0;L;;;;;N;;;;;-1439;CANADIAN SYLLABICS PAA;Lo;0;L;;;;;N;;;;;-143A;CANADIAN SYLLABICS PWE;Lo;0;L;;;;;N;;;;;-143B;CANADIAN SYLLABICS WEST-CREE PWE;Lo;0;L;;;;;N;;;;;-143C;CANADIAN SYLLABICS PWI;Lo;0;L;;;;;N;;;;;-143D;CANADIAN SYLLABICS WEST-CREE PWI;Lo;0;L;;;;;N;;;;;-143E;CANADIAN SYLLABICS PWII;Lo;0;L;;;;;N;;;;;-143F;CANADIAN SYLLABICS WEST-CREE PWII;Lo;0;L;;;;;N;;;;;-1440;CANADIAN SYLLABICS PWO;Lo;0;L;;;;;N;;;;;-1441;CANADIAN SYLLABICS WEST-CREE PWO;Lo;0;L;;;;;N;;;;;-1442;CANADIAN SYLLABICS PWOO;Lo;0;L;;;;;N;;;;;-1443;CANADIAN SYLLABICS WEST-CREE PWOO;Lo;0;L;;;;;N;;;;;-1444;CANADIAN SYLLABICS PWA;Lo;0;L;;;;;N;;;;;-1445;CANADIAN SYLLABICS WEST-CREE PWA;Lo;0;L;;;;;N;;;;;-1446;CANADIAN SYLLABICS PWAA;Lo;0;L;;;;;N;;;;;-1447;CANADIAN SYLLABICS WEST-CREE PWAA;Lo;0;L;;;;;N;;;;;-1448;CANADIAN SYLLABICS Y-CREE PWAA;Lo;0;L;;;;;N;;;;;-1449;CANADIAN SYLLABICS P;Lo;0;L;;;;;N;;;;;-144A;CANADIAN SYLLABICS WEST-CREE P;Lo;0;L;;;;;N;;;;;-144B;CANADIAN SYLLABICS CARRIER H;Lo;0;L;;;;;N;;;;;-144C;CANADIAN SYLLABICS TE;Lo;0;L;;;;;N;;;;;-144D;CANADIAN SYLLABICS TAAI;Lo;0;L;;;;;N;;;;;-144E;CANADIAN SYLLABICS TI;Lo;0;L;;;;;N;;;;;-144F;CANADIAN SYLLABICS TII;Lo;0;L;;;;;N;;;;;-1450;CANADIAN SYLLABICS TO;Lo;0;L;;;;;N;;;;;-1451;CANADIAN SYLLABICS TOO;Lo;0;L;;;;;N;;;;;-1452;CANADIAN SYLLABICS Y-CREE TOO;Lo;0;L;;;;;N;;;;;-1453;CANADIAN SYLLABICS CARRIER DEE;Lo;0;L;;;;;N;;;;;-1454;CANADIAN SYLLABICS CARRIER DI;Lo;0;L;;;;;N;;;;;-1455;CANADIAN SYLLABICS TA;Lo;0;L;;;;;N;;;;;-1456;CANADIAN SYLLABICS TAA;Lo;0;L;;;;;N;;;;;-1457;CANADIAN SYLLABICS TWE;Lo;0;L;;;;;N;;;;;-1458;CANADIAN SYLLABICS WEST-CREE TWE;Lo;0;L;;;;;N;;;;;-1459;CANADIAN SYLLABICS TWI;Lo;0;L;;;;;N;;;;;-145A;CANADIAN SYLLABICS WEST-CREE TWI;Lo;0;L;;;;;N;;;;;-145B;CANADIAN SYLLABICS TWII;Lo;0;L;;;;;N;;;;;-145C;CANADIAN SYLLABICS WEST-CREE TWII;Lo;0;L;;;;;N;;;;;-145D;CANADIAN SYLLABICS TWO;Lo;0;L;;;;;N;;;;;-145E;CANADIAN SYLLABICS WEST-CREE TWO;Lo;0;L;;;;;N;;;;;-145F;CANADIAN SYLLABICS TWOO;Lo;0;L;;;;;N;;;;;-1460;CANADIAN SYLLABICS WEST-CREE TWOO;Lo;0;L;;;;;N;;;;;-1461;CANADIAN SYLLABICS TWA;Lo;0;L;;;;;N;;;;;-1462;CANADIAN SYLLABICS WEST-CREE TWA;Lo;0;L;;;;;N;;;;;-1463;CANADIAN SYLLABICS TWAA;Lo;0;L;;;;;N;;;;;-1464;CANADIAN SYLLABICS WEST-CREE TWAA;Lo;0;L;;;;;N;;;;;-1465;CANADIAN SYLLABICS NASKAPI TWAA;Lo;0;L;;;;;N;;;;;-1466;CANADIAN SYLLABICS T;Lo;0;L;;;;;N;;;;;-1467;CANADIAN SYLLABICS TTE;Lo;0;L;;;;;N;;;;;-1468;CANADIAN SYLLABICS TTI;Lo;0;L;;;;;N;;;;;-1469;CANADIAN SYLLABICS TTO;Lo;0;L;;;;;N;;;;;-146A;CANADIAN SYLLABICS TTA;Lo;0;L;;;;;N;;;;;-146B;CANADIAN SYLLABICS KE;Lo;0;L;;;;;N;;;;;-146C;CANADIAN SYLLABICS KAAI;Lo;0;L;;;;;N;;;;;-146D;CANADIAN SYLLABICS KI;Lo;0;L;;;;;N;;;;;-146E;CANADIAN SYLLABICS KII;Lo;0;L;;;;;N;;;;;-146F;CANADIAN SYLLABICS KO;Lo;0;L;;;;;N;;;;;-1470;CANADIAN SYLLABICS KOO;Lo;0;L;;;;;N;;;;;-1471;CANADIAN SYLLABICS Y-CREE KOO;Lo;0;L;;;;;N;;;;;-1472;CANADIAN SYLLABICS KA;Lo;0;L;;;;;N;;;;;-1473;CANADIAN SYLLABICS KAA;Lo;0;L;;;;;N;;;;;-1474;CANADIAN SYLLABICS KWE;Lo;0;L;;;;;N;;;;;-1475;CANADIAN SYLLABICS WEST-CREE KWE;Lo;0;L;;;;;N;;;;;-1476;CANADIAN SYLLABICS KWI;Lo;0;L;;;;;N;;;;;-1477;CANADIAN SYLLABICS WEST-CREE KWI;Lo;0;L;;;;;N;;;;;-1478;CANADIAN SYLLABICS KWII;Lo;0;L;;;;;N;;;;;-1479;CANADIAN SYLLABICS WEST-CREE KWII;Lo;0;L;;;;;N;;;;;-147A;CANADIAN SYLLABICS KWO;Lo;0;L;;;;;N;;;;;-147B;CANADIAN SYLLABICS WEST-CREE KWO;Lo;0;L;;;;;N;;;;;-147C;CANADIAN SYLLABICS KWOO;Lo;0;L;;;;;N;;;;;-147D;CANADIAN SYLLABICS WEST-CREE KWOO;Lo;0;L;;;;;N;;;;;-147E;CANADIAN SYLLABICS KWA;Lo;0;L;;;;;N;;;;;-147F;CANADIAN SYLLABICS WEST-CREE KWA;Lo;0;L;;;;;N;;;;;-1480;CANADIAN SYLLABICS KWAA;Lo;0;L;;;;;N;;;;;-1481;CANADIAN SYLLABICS WEST-CREE KWAA;Lo;0;L;;;;;N;;;;;-1482;CANADIAN SYLLABICS NASKAPI KWAA;Lo;0;L;;;;;N;;;;;-1483;CANADIAN SYLLABICS K;Lo;0;L;;;;;N;;;;;-1484;CANADIAN SYLLABICS KW;Lo;0;L;;;;;N;;;;;-1485;CANADIAN SYLLABICS SOUTH-SLAVEY KEH;Lo;0;L;;;;;N;;;;;-1486;CANADIAN SYLLABICS SOUTH-SLAVEY KIH;Lo;0;L;;;;;N;;;;;-1487;CANADIAN SYLLABICS SOUTH-SLAVEY KOH;Lo;0;L;;;;;N;;;;;-1488;CANADIAN SYLLABICS SOUTH-SLAVEY KAH;Lo;0;L;;;;;N;;;;;-1489;CANADIAN SYLLABICS CE;Lo;0;L;;;;;N;;;;;-148A;CANADIAN SYLLABICS CAAI;Lo;0;L;;;;;N;;;;;-148B;CANADIAN SYLLABICS CI;Lo;0;L;;;;;N;;;;;-148C;CANADIAN SYLLABICS CII;Lo;0;L;;;;;N;;;;;-148D;CANADIAN SYLLABICS CO;Lo;0;L;;;;;N;;;;;-148E;CANADIAN SYLLABICS COO;Lo;0;L;;;;;N;;;;;-148F;CANADIAN SYLLABICS Y-CREE COO;Lo;0;L;;;;;N;;;;;-1490;CANADIAN SYLLABICS CA;Lo;0;L;;;;;N;;;;;-1491;CANADIAN SYLLABICS CAA;Lo;0;L;;;;;N;;;;;-1492;CANADIAN SYLLABICS CWE;Lo;0;L;;;;;N;;;;;-1493;CANADIAN SYLLABICS WEST-CREE CWE;Lo;0;L;;;;;N;;;;;-1494;CANADIAN SYLLABICS CWI;Lo;0;L;;;;;N;;;;;-1495;CANADIAN SYLLABICS WEST-CREE CWI;Lo;0;L;;;;;N;;;;;-1496;CANADIAN SYLLABICS CWII;Lo;0;L;;;;;N;;;;;-1497;CANADIAN SYLLABICS WEST-CREE CWII;Lo;0;L;;;;;N;;;;;-1498;CANADIAN SYLLABICS CWO;Lo;0;L;;;;;N;;;;;-1499;CANADIAN SYLLABICS WEST-CREE CWO;Lo;0;L;;;;;N;;;;;-149A;CANADIAN SYLLABICS CWOO;Lo;0;L;;;;;N;;;;;-149B;CANADIAN SYLLABICS WEST-CREE CWOO;Lo;0;L;;;;;N;;;;;-149C;CANADIAN SYLLABICS CWA;Lo;0;L;;;;;N;;;;;-149D;CANADIAN SYLLABICS WEST-CREE CWA;Lo;0;L;;;;;N;;;;;-149E;CANADIAN SYLLABICS CWAA;Lo;0;L;;;;;N;;;;;-149F;CANADIAN SYLLABICS WEST-CREE CWAA;Lo;0;L;;;;;N;;;;;-14A0;CANADIAN SYLLABICS NASKAPI CWAA;Lo;0;L;;;;;N;;;;;-14A1;CANADIAN SYLLABICS C;Lo;0;L;;;;;N;;;;;-14A2;CANADIAN SYLLABICS SAYISI TH;Lo;0;L;;;;;N;;;;;-14A3;CANADIAN SYLLABICS ME;Lo;0;L;;;;;N;;;;;-14A4;CANADIAN SYLLABICS MAAI;Lo;0;L;;;;;N;;;;;-14A5;CANADIAN SYLLABICS MI;Lo;0;L;;;;;N;;;;;-14A6;CANADIAN SYLLABICS MII;Lo;0;L;;;;;N;;;;;-14A7;CANADIAN SYLLABICS MO;Lo;0;L;;;;;N;;;;;-14A8;CANADIAN SYLLABICS MOO;Lo;0;L;;;;;N;;;;;-14A9;CANADIAN SYLLABICS Y-CREE MOO;Lo;0;L;;;;;N;;;;;-14AA;CANADIAN SYLLABICS MA;Lo;0;L;;;;;N;;;;;-14AB;CANADIAN SYLLABICS MAA;Lo;0;L;;;;;N;;;;;-14AC;CANADIAN SYLLABICS MWE;Lo;0;L;;;;;N;;;;;-14AD;CANADIAN SYLLABICS WEST-CREE MWE;Lo;0;L;;;;;N;;;;;-14AE;CANADIAN SYLLABICS MWI;Lo;0;L;;;;;N;;;;;-14AF;CANADIAN SYLLABICS WEST-CREE MWI;Lo;0;L;;;;;N;;;;;-14B0;CANADIAN SYLLABICS MWII;Lo;0;L;;;;;N;;;;;-14B1;CANADIAN SYLLABICS WEST-CREE MWII;Lo;0;L;;;;;N;;;;;-14B2;CANADIAN SYLLABICS MWO;Lo;0;L;;;;;N;;;;;-14B3;CANADIAN SYLLABICS WEST-CREE MWO;Lo;0;L;;;;;N;;;;;-14B4;CANADIAN SYLLABICS MWOO;Lo;0;L;;;;;N;;;;;-14B5;CANADIAN SYLLABICS WEST-CREE MWOO;Lo;0;L;;;;;N;;;;;-14B6;CANADIAN SYLLABICS MWA;Lo;0;L;;;;;N;;;;;-14B7;CANADIAN SYLLABICS WEST-CREE MWA;Lo;0;L;;;;;N;;;;;-14B8;CANADIAN SYLLABICS MWAA;Lo;0;L;;;;;N;;;;;-14B9;CANADIAN SYLLABICS WEST-CREE MWAA;Lo;0;L;;;;;N;;;;;-14BA;CANADIAN SYLLABICS NASKAPI MWAA;Lo;0;L;;;;;N;;;;;-14BB;CANADIAN SYLLABICS M;Lo;0;L;;;;;N;;;;;-14BC;CANADIAN SYLLABICS WEST-CREE M;Lo;0;L;;;;;N;;;;;-14BD;CANADIAN SYLLABICS MH;Lo;0;L;;;;;N;;;;;-14BE;CANADIAN SYLLABICS ATHAPASCAN M;Lo;0;L;;;;;N;;;;;-14BF;CANADIAN SYLLABICS SAYISI M;Lo;0;L;;;;;N;;;;;-14C0;CANADIAN SYLLABICS NE;Lo;0;L;;;;;N;;;;;-14C1;CANADIAN SYLLABICS NAAI;Lo;0;L;;;;;N;;;;;-14C2;CANADIAN SYLLABICS NI;Lo;0;L;;;;;N;;;;;-14C3;CANADIAN SYLLABICS NII;Lo;0;L;;;;;N;;;;;-14C4;CANADIAN SYLLABICS NO;Lo;0;L;;;;;N;;;;;-14C5;CANADIAN SYLLABICS NOO;Lo;0;L;;;;;N;;;;;-14C6;CANADIAN SYLLABICS Y-CREE NOO;Lo;0;L;;;;;N;;;;;-14C7;CANADIAN SYLLABICS NA;Lo;0;L;;;;;N;;;;;-14C8;CANADIAN SYLLABICS NAA;Lo;0;L;;;;;N;;;;;-14C9;CANADIAN SYLLABICS NWE;Lo;0;L;;;;;N;;;;;-14CA;CANADIAN SYLLABICS WEST-CREE NWE;Lo;0;L;;;;;N;;;;;-14CB;CANADIAN SYLLABICS NWA;Lo;0;L;;;;;N;;;;;-14CC;CANADIAN SYLLABICS WEST-CREE NWA;Lo;0;L;;;;;N;;;;;-14CD;CANADIAN SYLLABICS NWAA;Lo;0;L;;;;;N;;;;;-14CE;CANADIAN SYLLABICS WEST-CREE NWAA;Lo;0;L;;;;;N;;;;;-14CF;CANADIAN SYLLABICS NASKAPI NWAA;Lo;0;L;;;;;N;;;;;-14D0;CANADIAN SYLLABICS N;Lo;0;L;;;;;N;;;;;-14D1;CANADIAN SYLLABICS CARRIER NG;Lo;0;L;;;;;N;;;;;-14D2;CANADIAN SYLLABICS NH;Lo;0;L;;;;;N;;;;;-14D3;CANADIAN SYLLABICS LE;Lo;0;L;;;;;N;;;;;-14D4;CANADIAN SYLLABICS LAAI;Lo;0;L;;;;;N;;;;;-14D5;CANADIAN SYLLABICS LI;Lo;0;L;;;;;N;;;;;-14D6;CANADIAN SYLLABICS LII;Lo;0;L;;;;;N;;;;;-14D7;CANADIAN SYLLABICS LO;Lo;0;L;;;;;N;;;;;-14D8;CANADIAN SYLLABICS LOO;Lo;0;L;;;;;N;;;;;-14D9;CANADIAN SYLLABICS Y-CREE LOO;Lo;0;L;;;;;N;;;;;-14DA;CANADIAN SYLLABICS LA;Lo;0;L;;;;;N;;;;;-14DB;CANADIAN SYLLABICS LAA;Lo;0;L;;;;;N;;;;;-14DC;CANADIAN SYLLABICS LWE;Lo;0;L;;;;;N;;;;;-14DD;CANADIAN SYLLABICS WEST-CREE LWE;Lo;0;L;;;;;N;;;;;-14DE;CANADIAN SYLLABICS LWI;Lo;0;L;;;;;N;;;;;-14DF;CANADIAN SYLLABICS WEST-CREE LWI;Lo;0;L;;;;;N;;;;;-14E0;CANADIAN SYLLABICS LWII;Lo;0;L;;;;;N;;;;;-14E1;CANADIAN SYLLABICS WEST-CREE LWII;Lo;0;L;;;;;N;;;;;-14E2;CANADIAN SYLLABICS LWO;Lo;0;L;;;;;N;;;;;-14E3;CANADIAN SYLLABICS WEST-CREE LWO;Lo;0;L;;;;;N;;;;;-14E4;CANADIAN SYLLABICS LWOO;Lo;0;L;;;;;N;;;;;-14E5;CANADIAN SYLLABICS WEST-CREE LWOO;Lo;0;L;;;;;N;;;;;-14E6;CANADIAN SYLLABICS LWA;Lo;0;L;;;;;N;;;;;-14E7;CANADIAN SYLLABICS WEST-CREE LWA;Lo;0;L;;;;;N;;;;;-14E8;CANADIAN SYLLABICS LWAA;Lo;0;L;;;;;N;;;;;-14E9;CANADIAN SYLLABICS WEST-CREE LWAA;Lo;0;L;;;;;N;;;;;-14EA;CANADIAN SYLLABICS L;Lo;0;L;;;;;N;;;;;-14EB;CANADIAN SYLLABICS WEST-CREE L;Lo;0;L;;;;;N;;;;;-14EC;CANADIAN SYLLABICS MEDIAL L;Lo;0;L;;;;;N;;;;;-14ED;CANADIAN SYLLABICS SE;Lo;0;L;;;;;N;;;;;-14EE;CANADIAN SYLLABICS SAAI;Lo;0;L;;;;;N;;;;;-14EF;CANADIAN SYLLABICS SI;Lo;0;L;;;;;N;;;;;-14F0;CANADIAN SYLLABICS SII;Lo;0;L;;;;;N;;;;;-14F1;CANADIAN SYLLABICS SO;Lo;0;L;;;;;N;;;;;-14F2;CANADIAN SYLLABICS SOO;Lo;0;L;;;;;N;;;;;-14F3;CANADIAN SYLLABICS Y-CREE SOO;Lo;0;L;;;;;N;;;;;-14F4;CANADIAN SYLLABICS SA;Lo;0;L;;;;;N;;;;;-14F5;CANADIAN SYLLABICS SAA;Lo;0;L;;;;;N;;;;;-14F6;CANADIAN SYLLABICS SWE;Lo;0;L;;;;;N;;;;;-14F7;CANADIAN SYLLABICS WEST-CREE SWE;Lo;0;L;;;;;N;;;;;-14F8;CANADIAN SYLLABICS SWI;Lo;0;L;;;;;N;;;;;-14F9;CANADIAN SYLLABICS WEST-CREE SWI;Lo;0;L;;;;;N;;;;;-14FA;CANADIAN SYLLABICS SWII;Lo;0;L;;;;;N;;;;;-14FB;CANADIAN SYLLABICS WEST-CREE SWII;Lo;0;L;;;;;N;;;;;-14FC;CANADIAN SYLLABICS SWO;Lo;0;L;;;;;N;;;;;-14FD;CANADIAN SYLLABICS WEST-CREE SWO;Lo;0;L;;;;;N;;;;;-14FE;CANADIAN SYLLABICS SWOO;Lo;0;L;;;;;N;;;;;-14FF;CANADIAN SYLLABICS WEST-CREE SWOO;Lo;0;L;;;;;N;;;;;-1500;CANADIAN SYLLABICS SWA;Lo;0;L;;;;;N;;;;;-1501;CANADIAN SYLLABICS WEST-CREE SWA;Lo;0;L;;;;;N;;;;;-1502;CANADIAN SYLLABICS SWAA;Lo;0;L;;;;;N;;;;;-1503;CANADIAN SYLLABICS WEST-CREE SWAA;Lo;0;L;;;;;N;;;;;-1504;CANADIAN SYLLABICS NASKAPI SWAA;Lo;0;L;;;;;N;;;;;-1505;CANADIAN SYLLABICS S;Lo;0;L;;;;;N;;;;;-1506;CANADIAN SYLLABICS ATHAPASCAN S;Lo;0;L;;;;;N;;;;;-1507;CANADIAN SYLLABICS SW;Lo;0;L;;;;;N;;;;;-1508;CANADIAN SYLLABICS BLACKFOOT S;Lo;0;L;;;;;N;;;;;-1509;CANADIAN SYLLABICS MOOSE-CREE SK;Lo;0;L;;;;;N;;;;;-150A;CANADIAN SYLLABICS NASKAPI SKW;Lo;0;L;;;;;N;;;;;-150B;CANADIAN SYLLABICS NASKAPI S-W;Lo;0;L;;;;;N;;;;;-150C;CANADIAN SYLLABICS NASKAPI SPWA;Lo;0;L;;;;;N;;;;;-150D;CANADIAN SYLLABICS NASKAPI STWA;Lo;0;L;;;;;N;;;;;-150E;CANADIAN SYLLABICS NASKAPI SKWA;Lo;0;L;;;;;N;;;;;-150F;CANADIAN SYLLABICS NASKAPI SCWA;Lo;0;L;;;;;N;;;;;-1510;CANADIAN SYLLABICS SHE;Lo;0;L;;;;;N;;;;;-1511;CANADIAN SYLLABICS SHI;Lo;0;L;;;;;N;;;;;-1512;CANADIAN SYLLABICS SHII;Lo;0;L;;;;;N;;;;;-1513;CANADIAN SYLLABICS SHO;Lo;0;L;;;;;N;;;;;-1514;CANADIAN SYLLABICS SHOO;Lo;0;L;;;;;N;;;;;-1515;CANADIAN SYLLABICS SHA;Lo;0;L;;;;;N;;;;;-1516;CANADIAN SYLLABICS SHAA;Lo;0;L;;;;;N;;;;;-1517;CANADIAN SYLLABICS SHWE;Lo;0;L;;;;;N;;;;;-1518;CANADIAN SYLLABICS WEST-CREE SHWE;Lo;0;L;;;;;N;;;;;-1519;CANADIAN SYLLABICS SHWI;Lo;0;L;;;;;N;;;;;-151A;CANADIAN SYLLABICS WEST-CREE SHWI;Lo;0;L;;;;;N;;;;;-151B;CANADIAN SYLLABICS SHWII;Lo;0;L;;;;;N;;;;;-151C;CANADIAN SYLLABICS WEST-CREE SHWII;Lo;0;L;;;;;N;;;;;-151D;CANADIAN SYLLABICS SHWO;Lo;0;L;;;;;N;;;;;-151E;CANADIAN SYLLABICS WEST-CREE SHWO;Lo;0;L;;;;;N;;;;;-151F;CANADIAN SYLLABICS SHWOO;Lo;0;L;;;;;N;;;;;-1520;CANADIAN SYLLABICS WEST-CREE SHWOO;Lo;0;L;;;;;N;;;;;-1521;CANADIAN SYLLABICS SHWA;Lo;0;L;;;;;N;;;;;-1522;CANADIAN SYLLABICS WEST-CREE SHWA;Lo;0;L;;;;;N;;;;;-1523;CANADIAN SYLLABICS SHWAA;Lo;0;L;;;;;N;;;;;-1524;CANADIAN SYLLABICS WEST-CREE SHWAA;Lo;0;L;;;;;N;;;;;-1525;CANADIAN SYLLABICS SH;Lo;0;L;;;;;N;;;;;-1526;CANADIAN SYLLABICS YE;Lo;0;L;;;;;N;;;;;-1527;CANADIAN SYLLABICS YAAI;Lo;0;L;;;;;N;;;;;-1528;CANADIAN SYLLABICS YI;Lo;0;L;;;;;N;;;;;-1529;CANADIAN SYLLABICS YII;Lo;0;L;;;;;N;;;;;-152A;CANADIAN SYLLABICS YO;Lo;0;L;;;;;N;;;;;-152B;CANADIAN SYLLABICS YOO;Lo;0;L;;;;;N;;;;;-152C;CANADIAN SYLLABICS Y-CREE YOO;Lo;0;L;;;;;N;;;;;-152D;CANADIAN SYLLABICS YA;Lo;0;L;;;;;N;;;;;-152E;CANADIAN SYLLABICS YAA;Lo;0;L;;;;;N;;;;;-152F;CANADIAN SYLLABICS YWE;Lo;0;L;;;;;N;;;;;-1530;CANADIAN SYLLABICS WEST-CREE YWE;Lo;0;L;;;;;N;;;;;-1531;CANADIAN SYLLABICS YWI;Lo;0;L;;;;;N;;;;;-1532;CANADIAN SYLLABICS WEST-CREE YWI;Lo;0;L;;;;;N;;;;;-1533;CANADIAN SYLLABICS YWII;Lo;0;L;;;;;N;;;;;-1534;CANADIAN SYLLABICS WEST-CREE YWII;Lo;0;L;;;;;N;;;;;-1535;CANADIAN SYLLABICS YWO;Lo;0;L;;;;;N;;;;;-1536;CANADIAN SYLLABICS WEST-CREE YWO;Lo;0;L;;;;;N;;;;;-1537;CANADIAN SYLLABICS YWOO;Lo;0;L;;;;;N;;;;;-1538;CANADIAN SYLLABICS WEST-CREE YWOO;Lo;0;L;;;;;N;;;;;-1539;CANADIAN SYLLABICS YWA;Lo;0;L;;;;;N;;;;;-153A;CANADIAN SYLLABICS WEST-CREE YWA;Lo;0;L;;;;;N;;;;;-153B;CANADIAN SYLLABICS YWAA;Lo;0;L;;;;;N;;;;;-153C;CANADIAN SYLLABICS WEST-CREE YWAA;Lo;0;L;;;;;N;;;;;-153D;CANADIAN SYLLABICS NASKAPI YWAA;Lo;0;L;;;;;N;;;;;-153E;CANADIAN SYLLABICS Y;Lo;0;L;;;;;N;;;;;-153F;CANADIAN SYLLABICS BIBLE-CREE Y;Lo;0;L;;;;;N;;;;;-1540;CANADIAN SYLLABICS WEST-CREE Y;Lo;0;L;;;;;N;;;;;-1541;CANADIAN SYLLABICS SAYISI YI;Lo;0;L;;;;;N;;;;;-1542;CANADIAN SYLLABICS RE;Lo;0;L;;;;;N;;;;;-1543;CANADIAN SYLLABICS R-CREE RE;Lo;0;L;;;;;N;;;;;-1544;CANADIAN SYLLABICS WEST-CREE LE;Lo;0;L;;;;;N;;;;;-1545;CANADIAN SYLLABICS RAAI;Lo;0;L;;;;;N;;;;;-1546;CANADIAN SYLLABICS RI;Lo;0;L;;;;;N;;;;;-1547;CANADIAN SYLLABICS RII;Lo;0;L;;;;;N;;;;;-1548;CANADIAN SYLLABICS RO;Lo;0;L;;;;;N;;;;;-1549;CANADIAN SYLLABICS ROO;Lo;0;L;;;;;N;;;;;-154A;CANADIAN SYLLABICS WEST-CREE LO;Lo;0;L;;;;;N;;;;;-154B;CANADIAN SYLLABICS RA;Lo;0;L;;;;;N;;;;;-154C;CANADIAN SYLLABICS RAA;Lo;0;L;;;;;N;;;;;-154D;CANADIAN SYLLABICS WEST-CREE LA;Lo;0;L;;;;;N;;;;;-154E;CANADIAN SYLLABICS RWAA;Lo;0;L;;;;;N;;;;;-154F;CANADIAN SYLLABICS WEST-CREE RWAA;Lo;0;L;;;;;N;;;;;-1550;CANADIAN SYLLABICS R;Lo;0;L;;;;;N;;;;;-1551;CANADIAN SYLLABICS WEST-CREE R;Lo;0;L;;;;;N;;;;;-1552;CANADIAN SYLLABICS MEDIAL R;Lo;0;L;;;;;N;;;;;-1553;CANADIAN SYLLABICS FE;Lo;0;L;;;;;N;;;;;-1554;CANADIAN SYLLABICS FAAI;Lo;0;L;;;;;N;;;;;-1555;CANADIAN SYLLABICS FI;Lo;0;L;;;;;N;;;;;-1556;CANADIAN SYLLABICS FII;Lo;0;L;;;;;N;;;;;-1557;CANADIAN SYLLABICS FO;Lo;0;L;;;;;N;;;;;-1558;CANADIAN SYLLABICS FOO;Lo;0;L;;;;;N;;;;;-1559;CANADIAN SYLLABICS FA;Lo;0;L;;;;;N;;;;;-155A;CANADIAN SYLLABICS FAA;Lo;0;L;;;;;N;;;;;-155B;CANADIAN SYLLABICS FWAA;Lo;0;L;;;;;N;;;;;-155C;CANADIAN SYLLABICS WEST-CREE FWAA;Lo;0;L;;;;;N;;;;;-155D;CANADIAN SYLLABICS F;Lo;0;L;;;;;N;;;;;-155E;CANADIAN SYLLABICS THE;Lo;0;L;;;;;N;;;;;-155F;CANADIAN SYLLABICS N-CREE THE;Lo;0;L;;;;;N;;;;;-1560;CANADIAN SYLLABICS THI;Lo;0;L;;;;;N;;;;;-1561;CANADIAN SYLLABICS N-CREE THI;Lo;0;L;;;;;N;;;;;-1562;CANADIAN SYLLABICS THII;Lo;0;L;;;;;N;;;;;-1563;CANADIAN SYLLABICS N-CREE THII;Lo;0;L;;;;;N;;;;;-1564;CANADIAN SYLLABICS THO;Lo;0;L;;;;;N;;;;;-1565;CANADIAN SYLLABICS THOO;Lo;0;L;;;;;N;;;;;-1566;CANADIAN SYLLABICS THA;Lo;0;L;;;;;N;;;;;-1567;CANADIAN SYLLABICS THAA;Lo;0;L;;;;;N;;;;;-1568;CANADIAN SYLLABICS THWAA;Lo;0;L;;;;;N;;;;;-1569;CANADIAN SYLLABICS WEST-CREE THWAA;Lo;0;L;;;;;N;;;;;-156A;CANADIAN SYLLABICS TH;Lo;0;L;;;;;N;;;;;-156B;CANADIAN SYLLABICS TTHE;Lo;0;L;;;;;N;;;;;-156C;CANADIAN SYLLABICS TTHI;Lo;0;L;;;;;N;;;;;-156D;CANADIAN SYLLABICS TTHO;Lo;0;L;;;;;N;;;;;-156E;CANADIAN SYLLABICS TTHA;Lo;0;L;;;;;N;;;;;-156F;CANADIAN SYLLABICS TTH;Lo;0;L;;;;;N;;;;;-1570;CANADIAN SYLLABICS TYE;Lo;0;L;;;;;N;;;;;-1571;CANADIAN SYLLABICS TYI;Lo;0;L;;;;;N;;;;;-1572;CANADIAN SYLLABICS TYO;Lo;0;L;;;;;N;;;;;-1573;CANADIAN SYLLABICS TYA;Lo;0;L;;;;;N;;;;;-1574;CANADIAN SYLLABICS NUNAVIK HE;Lo;0;L;;;;;N;;;;;-1575;CANADIAN SYLLABICS NUNAVIK HI;Lo;0;L;;;;;N;;;;;-1576;CANADIAN SYLLABICS NUNAVIK HII;Lo;0;L;;;;;N;;;;;-1577;CANADIAN SYLLABICS NUNAVIK HO;Lo;0;L;;;;;N;;;;;-1578;CANADIAN SYLLABICS NUNAVIK HOO;Lo;0;L;;;;;N;;;;;-1579;CANADIAN SYLLABICS NUNAVIK HA;Lo;0;L;;;;;N;;;;;-157A;CANADIAN SYLLABICS NUNAVIK HAA;Lo;0;L;;;;;N;;;;;-157B;CANADIAN SYLLABICS NUNAVIK H;Lo;0;L;;;;;N;;;;;-157C;CANADIAN SYLLABICS NUNAVUT H;Lo;0;L;;;;;N;;;;;-157D;CANADIAN SYLLABICS HK;Lo;0;L;;;;;N;;;;;-157E;CANADIAN SYLLABICS QAAI;Lo;0;L;;;;;N;;;;;-157F;CANADIAN SYLLABICS QI;Lo;0;L;;;;;N;;;;;-1580;CANADIAN SYLLABICS QII;Lo;0;L;;;;;N;;;;;-1581;CANADIAN SYLLABICS QO;Lo;0;L;;;;;N;;;;;-1582;CANADIAN SYLLABICS QOO;Lo;0;L;;;;;N;;;;;-1583;CANADIAN SYLLABICS QA;Lo;0;L;;;;;N;;;;;-1584;CANADIAN SYLLABICS QAA;Lo;0;L;;;;;N;;;;;-1585;CANADIAN SYLLABICS Q;Lo;0;L;;;;;N;;;;;-1586;CANADIAN SYLLABICS TLHE;Lo;0;L;;;;;N;;;;;-1587;CANADIAN SYLLABICS TLHI;Lo;0;L;;;;;N;;;;;-1588;CANADIAN SYLLABICS TLHO;Lo;0;L;;;;;N;;;;;-1589;CANADIAN SYLLABICS TLHA;Lo;0;L;;;;;N;;;;;-158A;CANADIAN SYLLABICS WEST-CREE RE;Lo;0;L;;;;;N;;;;;-158B;CANADIAN SYLLABICS WEST-CREE RI;Lo;0;L;;;;;N;;;;;-158C;CANADIAN SYLLABICS WEST-CREE RO;Lo;0;L;;;;;N;;;;;-158D;CANADIAN SYLLABICS WEST-CREE RA;Lo;0;L;;;;;N;;;;;-158E;CANADIAN SYLLABICS NGAAI;Lo;0;L;;;;;N;;;;;-158F;CANADIAN SYLLABICS NGI;Lo;0;L;;;;;N;;;;;-1590;CANADIAN SYLLABICS NGII;Lo;0;L;;;;;N;;;;;-1591;CANADIAN SYLLABICS NGO;Lo;0;L;;;;;N;;;;;-1592;CANADIAN SYLLABICS NGOO;Lo;0;L;;;;;N;;;;;-1593;CANADIAN SYLLABICS NGA;Lo;0;L;;;;;N;;;;;-1594;CANADIAN SYLLABICS NGAA;Lo;0;L;;;;;N;;;;;-1595;CANADIAN SYLLABICS NG;Lo;0;L;;;;;N;;;;;-1596;CANADIAN SYLLABICS NNG;Lo;0;L;;;;;N;;;;;-1597;CANADIAN SYLLABICS SAYISI SHE;Lo;0;L;;;;;N;;;;;-1598;CANADIAN SYLLABICS SAYISI SHI;Lo;0;L;;;;;N;;;;;-1599;CANADIAN SYLLABICS SAYISI SHO;Lo;0;L;;;;;N;;;;;-159A;CANADIAN SYLLABICS SAYISI SHA;Lo;0;L;;;;;N;;;;;-159B;CANADIAN SYLLABICS WOODS-CREE THE;Lo;0;L;;;;;N;;;;;-159C;CANADIAN SYLLABICS WOODS-CREE THI;Lo;0;L;;;;;N;;;;;-159D;CANADIAN SYLLABICS WOODS-CREE THO;Lo;0;L;;;;;N;;;;;-159E;CANADIAN SYLLABICS WOODS-CREE THA;Lo;0;L;;;;;N;;;;;-159F;CANADIAN SYLLABICS WOODS-CREE TH;Lo;0;L;;;;;N;;;;;-15A0;CANADIAN SYLLABICS LHI;Lo;0;L;;;;;N;;;;;-15A1;CANADIAN SYLLABICS LHII;Lo;0;L;;;;;N;;;;;-15A2;CANADIAN SYLLABICS LHO;Lo;0;L;;;;;N;;;;;-15A3;CANADIAN SYLLABICS LHOO;Lo;0;L;;;;;N;;;;;-15A4;CANADIAN SYLLABICS LHA;Lo;0;L;;;;;N;;;;;-15A5;CANADIAN SYLLABICS LHAA;Lo;0;L;;;;;N;;;;;-15A6;CANADIAN SYLLABICS LH;Lo;0;L;;;;;N;;;;;-15A7;CANADIAN SYLLABICS TH-CREE THE;Lo;0;L;;;;;N;;;;;-15A8;CANADIAN SYLLABICS TH-CREE THI;Lo;0;L;;;;;N;;;;;-15A9;CANADIAN SYLLABICS TH-CREE THII;Lo;0;L;;;;;N;;;;;-15AA;CANADIAN SYLLABICS TH-CREE THO;Lo;0;L;;;;;N;;;;;-15AB;CANADIAN SYLLABICS TH-CREE THOO;Lo;0;L;;;;;N;;;;;-15AC;CANADIAN SYLLABICS TH-CREE THA;Lo;0;L;;;;;N;;;;;-15AD;CANADIAN SYLLABICS TH-CREE THAA;Lo;0;L;;;;;N;;;;;-15AE;CANADIAN SYLLABICS TH-CREE TH;Lo;0;L;;;;;N;;;;;-15AF;CANADIAN SYLLABICS AIVILIK B;Lo;0;L;;;;;N;;;;;-15B0;CANADIAN SYLLABICS BLACKFOOT E;Lo;0;L;;;;;N;;;;;-15B1;CANADIAN SYLLABICS BLACKFOOT I;Lo;0;L;;;;;N;;;;;-15B2;CANADIAN SYLLABICS BLACKFOOT O;Lo;0;L;;;;;N;;;;;-15B3;CANADIAN SYLLABICS BLACKFOOT A;Lo;0;L;;;;;N;;;;;-15B4;CANADIAN SYLLABICS BLACKFOOT WE;Lo;0;L;;;;;N;;;;;-15B5;CANADIAN SYLLABICS BLACKFOOT WI;Lo;0;L;;;;;N;;;;;-15B6;CANADIAN SYLLABICS BLACKFOOT WO;Lo;0;L;;;;;N;;;;;-15B7;CANADIAN SYLLABICS BLACKFOOT WA;Lo;0;L;;;;;N;;;;;-15B8;CANADIAN SYLLABICS BLACKFOOT NE;Lo;0;L;;;;;N;;;;;-15B9;CANADIAN SYLLABICS BLACKFOOT NI;Lo;0;L;;;;;N;;;;;-15BA;CANADIAN SYLLABICS BLACKFOOT NO;Lo;0;L;;;;;N;;;;;-15BB;CANADIAN SYLLABICS BLACKFOOT NA;Lo;0;L;;;;;N;;;;;-15BC;CANADIAN SYLLABICS BLACKFOOT KE;Lo;0;L;;;;;N;;;;;-15BD;CANADIAN SYLLABICS BLACKFOOT KI;Lo;0;L;;;;;N;;;;;-15BE;CANADIAN SYLLABICS BLACKFOOT KO;Lo;0;L;;;;;N;;;;;-15BF;CANADIAN SYLLABICS BLACKFOOT KA;Lo;0;L;;;;;N;;;;;-15C0;CANADIAN SYLLABICS SAYISI HE;Lo;0;L;;;;;N;;;;;-15C1;CANADIAN SYLLABICS SAYISI HI;Lo;0;L;;;;;N;;;;;-15C2;CANADIAN SYLLABICS SAYISI HO;Lo;0;L;;;;;N;;;;;-15C3;CANADIAN SYLLABICS SAYISI HA;Lo;0;L;;;;;N;;;;;-15C4;CANADIAN SYLLABICS CARRIER GHU;Lo;0;L;;;;;N;;;;;-15C5;CANADIAN SYLLABICS CARRIER GHO;Lo;0;L;;;;;N;;;;;-15C6;CANADIAN SYLLABICS CARRIER GHE;Lo;0;L;;;;;N;;;;;-15C7;CANADIAN SYLLABICS CARRIER GHEE;Lo;0;L;;;;;N;;;;;-15C8;CANADIAN SYLLABICS CARRIER GHI;Lo;0;L;;;;;N;;;;;-15C9;CANADIAN SYLLABICS CARRIER GHA;Lo;0;L;;;;;N;;;;;-15CA;CANADIAN SYLLABICS CARRIER RU;Lo;0;L;;;;;N;;;;;-15CB;CANADIAN SYLLABICS CARRIER RO;Lo;0;L;;;;;N;;;;;-15CC;CANADIAN SYLLABICS CARRIER RE;Lo;0;L;;;;;N;;;;;-15CD;CANADIAN SYLLABICS CARRIER REE;Lo;0;L;;;;;N;;;;;-15CE;CANADIAN SYLLABICS CARRIER RI;Lo;0;L;;;;;N;;;;;-15CF;CANADIAN SYLLABICS CARRIER RA;Lo;0;L;;;;;N;;;;;-15D0;CANADIAN SYLLABICS CARRIER WU;Lo;0;L;;;;;N;;;;;-15D1;CANADIAN SYLLABICS CARRIER WO;Lo;0;L;;;;;N;;;;;-15D2;CANADIAN SYLLABICS CARRIER WE;Lo;0;L;;;;;N;;;;;-15D3;CANADIAN SYLLABICS CARRIER WEE;Lo;0;L;;;;;N;;;;;-15D4;CANADIAN SYLLABICS CARRIER WI;Lo;0;L;;;;;N;;;;;-15D5;CANADIAN SYLLABICS CARRIER WA;Lo;0;L;;;;;N;;;;;-15D6;CANADIAN SYLLABICS CARRIER HWU;Lo;0;L;;;;;N;;;;;-15D7;CANADIAN SYLLABICS CARRIER HWO;Lo;0;L;;;;;N;;;;;-15D8;CANADIAN SYLLABICS CARRIER HWE;Lo;0;L;;;;;N;;;;;-15D9;CANADIAN SYLLABICS CARRIER HWEE;Lo;0;L;;;;;N;;;;;-15DA;CANADIAN SYLLABICS CARRIER HWI;Lo;0;L;;;;;N;;;;;-15DB;CANADIAN SYLLABICS CARRIER HWA;Lo;0;L;;;;;N;;;;;-15DC;CANADIAN SYLLABICS CARRIER THU;Lo;0;L;;;;;N;;;;;-15DD;CANADIAN SYLLABICS CARRIER THO;Lo;0;L;;;;;N;;;;;-15DE;CANADIAN SYLLABICS CARRIER THE;Lo;0;L;;;;;N;;;;;-15DF;CANADIAN SYLLABICS CARRIER THEE;Lo;0;L;;;;;N;;;;;-15E0;CANADIAN SYLLABICS CARRIER THI;Lo;0;L;;;;;N;;;;;-15E1;CANADIAN SYLLABICS CARRIER THA;Lo;0;L;;;;;N;;;;;-15E2;CANADIAN SYLLABICS CARRIER TTU;Lo;0;L;;;;;N;;;;;-15E3;CANADIAN SYLLABICS CARRIER TTO;Lo;0;L;;;;;N;;;;;-15E4;CANADIAN SYLLABICS CARRIER TTE;Lo;0;L;;;;;N;;;;;-15E5;CANADIAN SYLLABICS CARRIER TTEE;Lo;0;L;;;;;N;;;;;-15E6;CANADIAN SYLLABICS CARRIER TTI;Lo;0;L;;;;;N;;;;;-15E7;CANADIAN SYLLABICS CARRIER TTA;Lo;0;L;;;;;N;;;;;-15E8;CANADIAN SYLLABICS CARRIER PU;Lo;0;L;;;;;N;;;;;-15E9;CANADIAN SYLLABICS CARRIER PO;Lo;0;L;;;;;N;;;;;-15EA;CANADIAN SYLLABICS CARRIER PE;Lo;0;L;;;;;N;;;;;-15EB;CANADIAN SYLLABICS CARRIER PEE;Lo;0;L;;;;;N;;;;;-15EC;CANADIAN SYLLABICS CARRIER PI;Lo;0;L;;;;;N;;;;;-15ED;CANADIAN SYLLABICS CARRIER PA;Lo;0;L;;;;;N;;;;;-15EE;CANADIAN SYLLABICS CARRIER P;Lo;0;L;;;;;N;;;;;-15EF;CANADIAN SYLLABICS CARRIER GU;Lo;0;L;;;;;N;;;;;-15F0;CANADIAN SYLLABICS CARRIER GO;Lo;0;L;;;;;N;;;;;-15F1;CANADIAN SYLLABICS CARRIER GE;Lo;0;L;;;;;N;;;;;-15F2;CANADIAN SYLLABICS CARRIER GEE;Lo;0;L;;;;;N;;;;;-15F3;CANADIAN SYLLABICS CARRIER GI;Lo;0;L;;;;;N;;;;;-15F4;CANADIAN SYLLABICS CARRIER GA;Lo;0;L;;;;;N;;;;;-15F5;CANADIAN SYLLABICS CARRIER KHU;Lo;0;L;;;;;N;;;;;-15F6;CANADIAN SYLLABICS CARRIER KHO;Lo;0;L;;;;;N;;;;;-15F7;CANADIAN SYLLABICS CARRIER KHE;Lo;0;L;;;;;N;;;;;-15F8;CANADIAN SYLLABICS CARRIER KHEE;Lo;0;L;;;;;N;;;;;-15F9;CANADIAN SYLLABICS CARRIER KHI;Lo;0;L;;;;;N;;;;;-15FA;CANADIAN SYLLABICS CARRIER KHA;Lo;0;L;;;;;N;;;;;-15FB;CANADIAN SYLLABICS CARRIER KKU;Lo;0;L;;;;;N;;;;;-15FC;CANADIAN SYLLABICS CARRIER KKO;Lo;0;L;;;;;N;;;;;-15FD;CANADIAN SYLLABICS CARRIER KKE;Lo;0;L;;;;;N;;;;;-15FE;CANADIAN SYLLABICS CARRIER KKEE;Lo;0;L;;;;;N;;;;;-15FF;CANADIAN SYLLABICS CARRIER KKI;Lo;0;L;;;;;N;;;;;-1600;CANADIAN SYLLABICS CARRIER KKA;Lo;0;L;;;;;N;;;;;-1601;CANADIAN SYLLABICS CARRIER KK;Lo;0;L;;;;;N;;;;;-1602;CANADIAN SYLLABICS CARRIER NU;Lo;0;L;;;;;N;;;;;-1603;CANADIAN SYLLABICS CARRIER NO;Lo;0;L;;;;;N;;;;;-1604;CANADIAN SYLLABICS CARRIER NE;Lo;0;L;;;;;N;;;;;-1605;CANADIAN SYLLABICS CARRIER NEE;Lo;0;L;;;;;N;;;;;-1606;CANADIAN SYLLABICS CARRIER NI;Lo;0;L;;;;;N;;;;;-1607;CANADIAN SYLLABICS CARRIER NA;Lo;0;L;;;;;N;;;;;-1608;CANADIAN SYLLABICS CARRIER MU;Lo;0;L;;;;;N;;;;;-1609;CANADIAN SYLLABICS CARRIER MO;Lo;0;L;;;;;N;;;;;-160A;CANADIAN SYLLABICS CARRIER ME;Lo;0;L;;;;;N;;;;;-160B;CANADIAN SYLLABICS CARRIER MEE;Lo;0;L;;;;;N;;;;;-160C;CANADIAN SYLLABICS CARRIER MI;Lo;0;L;;;;;N;;;;;-160D;CANADIAN SYLLABICS CARRIER MA;Lo;0;L;;;;;N;;;;;-160E;CANADIAN SYLLABICS CARRIER YU;Lo;0;L;;;;;N;;;;;-160F;CANADIAN SYLLABICS CARRIER YO;Lo;0;L;;;;;N;;;;;-1610;CANADIAN SYLLABICS CARRIER YE;Lo;0;L;;;;;N;;;;;-1611;CANADIAN SYLLABICS CARRIER YEE;Lo;0;L;;;;;N;;;;;-1612;CANADIAN SYLLABICS CARRIER YI;Lo;0;L;;;;;N;;;;;-1613;CANADIAN SYLLABICS CARRIER YA;Lo;0;L;;;;;N;;;;;-1614;CANADIAN SYLLABICS CARRIER JU;Lo;0;L;;;;;N;;;;;-1615;CANADIAN SYLLABICS SAYISI JU;Lo;0;L;;;;;N;;;;;-1616;CANADIAN SYLLABICS CARRIER JO;Lo;0;L;;;;;N;;;;;-1617;CANADIAN SYLLABICS CARRIER JE;Lo;0;L;;;;;N;;;;;-1618;CANADIAN SYLLABICS CARRIER JEE;Lo;0;L;;;;;N;;;;;-1619;CANADIAN SYLLABICS CARRIER JI;Lo;0;L;;;;;N;;;;;-161A;CANADIAN SYLLABICS SAYISI JI;Lo;0;L;;;;;N;;;;;-161B;CANADIAN SYLLABICS CARRIER JA;Lo;0;L;;;;;N;;;;;-161C;CANADIAN SYLLABICS CARRIER JJU;Lo;0;L;;;;;N;;;;;-161D;CANADIAN SYLLABICS CARRIER JJO;Lo;0;L;;;;;N;;;;;-161E;CANADIAN SYLLABICS CARRIER JJE;Lo;0;L;;;;;N;;;;;-161F;CANADIAN SYLLABICS CARRIER JJEE;Lo;0;L;;;;;N;;;;;-1620;CANADIAN SYLLABICS CARRIER JJI;Lo;0;L;;;;;N;;;;;-1621;CANADIAN SYLLABICS CARRIER JJA;Lo;0;L;;;;;N;;;;;-1622;CANADIAN SYLLABICS CARRIER LU;Lo;0;L;;;;;N;;;;;-1623;CANADIAN SYLLABICS CARRIER LO;Lo;0;L;;;;;N;;;;;-1624;CANADIAN SYLLABICS CARRIER LE;Lo;0;L;;;;;N;;;;;-1625;CANADIAN SYLLABICS CARRIER LEE;Lo;0;L;;;;;N;;;;;-1626;CANADIAN SYLLABICS CARRIER LI;Lo;0;L;;;;;N;;;;;-1627;CANADIAN SYLLABICS CARRIER LA;Lo;0;L;;;;;N;;;;;-1628;CANADIAN SYLLABICS CARRIER DLU;Lo;0;L;;;;;N;;;;;-1629;CANADIAN SYLLABICS CARRIER DLO;Lo;0;L;;;;;N;;;;;-162A;CANADIAN SYLLABICS CARRIER DLE;Lo;0;L;;;;;N;;;;;-162B;CANADIAN SYLLABICS CARRIER DLEE;Lo;0;L;;;;;N;;;;;-162C;CANADIAN SYLLABICS CARRIER DLI;Lo;0;L;;;;;N;;;;;-162D;CANADIAN SYLLABICS CARRIER DLA;Lo;0;L;;;;;N;;;;;-162E;CANADIAN SYLLABICS CARRIER LHU;Lo;0;L;;;;;N;;;;;-162F;CANADIAN SYLLABICS CARRIER LHO;Lo;0;L;;;;;N;;;;;-1630;CANADIAN SYLLABICS CARRIER LHE;Lo;0;L;;;;;N;;;;;-1631;CANADIAN SYLLABICS CARRIER LHEE;Lo;0;L;;;;;N;;;;;-1632;CANADIAN SYLLABICS CARRIER LHI;Lo;0;L;;;;;N;;;;;-1633;CANADIAN SYLLABICS CARRIER LHA;Lo;0;L;;;;;N;;;;;-1634;CANADIAN SYLLABICS CARRIER TLHU;Lo;0;L;;;;;N;;;;;-1635;CANADIAN SYLLABICS CARRIER TLHO;Lo;0;L;;;;;N;;;;;-1636;CANADIAN SYLLABICS CARRIER TLHE;Lo;0;L;;;;;N;;;;;-1637;CANADIAN SYLLABICS CARRIER TLHEE;Lo;0;L;;;;;N;;;;;-1638;CANADIAN SYLLABICS CARRIER TLHI;Lo;0;L;;;;;N;;;;;-1639;CANADIAN SYLLABICS CARRIER TLHA;Lo;0;L;;;;;N;;;;;-163A;CANADIAN SYLLABICS CARRIER TLU;Lo;0;L;;;;;N;;;;;-163B;CANADIAN SYLLABICS CARRIER TLO;Lo;0;L;;;;;N;;;;;-163C;CANADIAN SYLLABICS CARRIER TLE;Lo;0;L;;;;;N;;;;;-163D;CANADIAN SYLLABICS CARRIER TLEE;Lo;0;L;;;;;N;;;;;-163E;CANADIAN SYLLABICS CARRIER TLI;Lo;0;L;;;;;N;;;;;-163F;CANADIAN SYLLABICS CARRIER TLA;Lo;0;L;;;;;N;;;;;-1640;CANADIAN SYLLABICS CARRIER ZU;Lo;0;L;;;;;N;;;;;-1641;CANADIAN SYLLABICS CARRIER ZO;Lo;0;L;;;;;N;;;;;-1642;CANADIAN SYLLABICS CARRIER ZE;Lo;0;L;;;;;N;;;;;-1643;CANADIAN SYLLABICS CARRIER ZEE;Lo;0;L;;;;;N;;;;;-1644;CANADIAN SYLLABICS CARRIER ZI;Lo;0;L;;;;;N;;;;;-1645;CANADIAN SYLLABICS CARRIER ZA;Lo;0;L;;;;;N;;;;;-1646;CANADIAN SYLLABICS CARRIER Z;Lo;0;L;;;;;N;;;;;-1647;CANADIAN SYLLABICS CARRIER INITIAL Z;Lo;0;L;;;;;N;;;;;-1648;CANADIAN SYLLABICS CARRIER DZU;Lo;0;L;;;;;N;;;;;-1649;CANADIAN SYLLABICS CARRIER DZO;Lo;0;L;;;;;N;;;;;-164A;CANADIAN SYLLABICS CARRIER DZE;Lo;0;L;;;;;N;;;;;-164B;CANADIAN SYLLABICS CARRIER DZEE;Lo;0;L;;;;;N;;;;;-164C;CANADIAN SYLLABICS CARRIER DZI;Lo;0;L;;;;;N;;;;;-164D;CANADIAN SYLLABICS CARRIER DZA;Lo;0;L;;;;;N;;;;;-164E;CANADIAN SYLLABICS CARRIER SU;Lo;0;L;;;;;N;;;;;-164F;CANADIAN SYLLABICS CARRIER SO;Lo;0;L;;;;;N;;;;;-1650;CANADIAN SYLLABICS CARRIER SE;Lo;0;L;;;;;N;;;;;-1651;CANADIAN SYLLABICS CARRIER SEE;Lo;0;L;;;;;N;;;;;-1652;CANADIAN SYLLABICS CARRIER SI;Lo;0;L;;;;;N;;;;;-1653;CANADIAN SYLLABICS CARRIER SA;Lo;0;L;;;;;N;;;;;-1654;CANADIAN SYLLABICS CARRIER SHU;Lo;0;L;;;;;N;;;;;-1655;CANADIAN SYLLABICS CARRIER SHO;Lo;0;L;;;;;N;;;;;-1656;CANADIAN SYLLABICS CARRIER SHE;Lo;0;L;;;;;N;;;;;-1657;CANADIAN SYLLABICS CARRIER SHEE;Lo;0;L;;;;;N;;;;;-1658;CANADIAN SYLLABICS CARRIER SHI;Lo;0;L;;;;;N;;;;;-1659;CANADIAN SYLLABICS CARRIER SHA;Lo;0;L;;;;;N;;;;;-165A;CANADIAN SYLLABICS CARRIER SH;Lo;0;L;;;;;N;;;;;-165B;CANADIAN SYLLABICS CARRIER TSU;Lo;0;L;;;;;N;;;;;-165C;CANADIAN SYLLABICS CARRIER TSO;Lo;0;L;;;;;N;;;;;-165D;CANADIAN SYLLABICS CARRIER TSE;Lo;0;L;;;;;N;;;;;-165E;CANADIAN SYLLABICS CARRIER TSEE;Lo;0;L;;;;;N;;;;;-165F;CANADIAN SYLLABICS CARRIER TSI;Lo;0;L;;;;;N;;;;;-1660;CANADIAN SYLLABICS CARRIER TSA;Lo;0;L;;;;;N;;;;;-1661;CANADIAN SYLLABICS CARRIER CHU;Lo;0;L;;;;;N;;;;;-1662;CANADIAN SYLLABICS CARRIER CHO;Lo;0;L;;;;;N;;;;;-1663;CANADIAN SYLLABICS CARRIER CHE;Lo;0;L;;;;;N;;;;;-1664;CANADIAN SYLLABICS CARRIER CHEE;Lo;0;L;;;;;N;;;;;-1665;CANADIAN SYLLABICS CARRIER CHI;Lo;0;L;;;;;N;;;;;-1666;CANADIAN SYLLABICS CARRIER CHA;Lo;0;L;;;;;N;;;;;-1667;CANADIAN SYLLABICS CARRIER TTSU;Lo;0;L;;;;;N;;;;;-1668;CANADIAN SYLLABICS CARRIER TTSO;Lo;0;L;;;;;N;;;;;-1669;CANADIAN SYLLABICS CARRIER TTSE;Lo;0;L;;;;;N;;;;;-166A;CANADIAN SYLLABICS CARRIER TTSEE;Lo;0;L;;;;;N;;;;;-166B;CANADIAN SYLLABICS CARRIER TTSI;Lo;0;L;;;;;N;;;;;-166C;CANADIAN SYLLABICS CARRIER TTSA;Lo;0;L;;;;;N;;;;;-166D;CANADIAN SYLLABICS CHI SIGN;Po;0;L;;;;;N;;;;;-166E;CANADIAN SYLLABICS FULL STOP;Po;0;L;;;;;N;;;;;-166F;CANADIAN SYLLABICS QAI;Lo;0;L;;;;;N;;;;;-1670;CANADIAN SYLLABICS NGAI;Lo;0;L;;;;;N;;;;;-1671;CANADIAN SYLLABICS NNGI;Lo;0;L;;;;;N;;;;;-1672;CANADIAN SYLLABICS NNGII;Lo;0;L;;;;;N;;;;;-1673;CANADIAN SYLLABICS NNGO;Lo;0;L;;;;;N;;;;;-1674;CANADIAN SYLLABICS NNGOO;Lo;0;L;;;;;N;;;;;-1675;CANADIAN SYLLABICS NNGA;Lo;0;L;;;;;N;;;;;-1676;CANADIAN SYLLABICS NNGAA;Lo;0;L;;;;;N;;;;;-1677;CANADIAN SYLLABICS WOODS-CREE THWEE;Lo;0;L;;;;;N;;;;;-1678;CANADIAN SYLLABICS WOODS-CREE THWI;Lo;0;L;;;;;N;;;;;-1679;CANADIAN SYLLABICS WOODS-CREE THWII;Lo;0;L;;;;;N;;;;;-167A;CANADIAN SYLLABICS WOODS-CREE THWO;Lo;0;L;;;;;N;;;;;-167B;CANADIAN SYLLABICS WOODS-CREE THWOO;Lo;0;L;;;;;N;;;;;-167C;CANADIAN SYLLABICS WOODS-CREE THWA;Lo;0;L;;;;;N;;;;;-167D;CANADIAN SYLLABICS WOODS-CREE THWAA;Lo;0;L;;;;;N;;;;;-167E;CANADIAN SYLLABICS WOODS-CREE FINAL TH;Lo;0;L;;;;;N;;;;;-167F;CANADIAN SYLLABICS BLACKFOOT W;Lo;0;L;;;;;N;;;;;-1680;OGHAM SPACE MARK;Zs;0;WS;;;;;N;;;;;-1681;OGHAM LETTER BEITH;Lo;0;L;;;;;N;;;;;-1682;OGHAM LETTER LUIS;Lo;0;L;;;;;N;;;;;-1683;OGHAM LETTER FEARN;Lo;0;L;;;;;N;;;;;-1684;OGHAM LETTER SAIL;Lo;0;L;;;;;N;;;;;-1685;OGHAM LETTER NION;Lo;0;L;;;;;N;;;;;-1686;OGHAM LETTER UATH;Lo;0;L;;;;;N;;;;;-1687;OGHAM LETTER DAIR;Lo;0;L;;;;;N;;;;;-1688;OGHAM LETTER TINNE;Lo;0;L;;;;;N;;;;;-1689;OGHAM LETTER COLL;Lo;0;L;;;;;N;;;;;-168A;OGHAM LETTER CEIRT;Lo;0;L;;;;;N;;;;;-168B;OGHAM LETTER MUIN;Lo;0;L;;;;;N;;;;;-168C;OGHAM LETTER GORT;Lo;0;L;;;;;N;;;;;-168D;OGHAM LETTER NGEADAL;Lo;0;L;;;;;N;;;;;-168E;OGHAM LETTER STRAIF;Lo;0;L;;;;;N;;;;;-168F;OGHAM LETTER RUIS;Lo;0;L;;;;;N;;;;;-1690;OGHAM LETTER AILM;Lo;0;L;;;;;N;;;;;-1691;OGHAM LETTER ONN;Lo;0;L;;;;;N;;;;;-1692;OGHAM LETTER UR;Lo;0;L;;;;;N;;;;;-1693;OGHAM LETTER EADHADH;Lo;0;L;;;;;N;;;;;-1694;OGHAM LETTER IODHADH;Lo;0;L;;;;;N;;;;;-1695;OGHAM LETTER EABHADH;Lo;0;L;;;;;N;;;;;-1696;OGHAM LETTER OR;Lo;0;L;;;;;N;;;;;-1697;OGHAM LETTER UILLEANN;Lo;0;L;;;;;N;;;;;-1698;OGHAM LETTER IFIN;Lo;0;L;;;;;N;;;;;-1699;OGHAM LETTER EAMHANCHOLL;Lo;0;L;;;;;N;;;;;-169A;OGHAM LETTER PEITH;Lo;0;L;;;;;N;;;;;-169B;OGHAM FEATHER MARK;Ps;0;ON;;;;;Y;;;;;-169C;OGHAM REVERSED FEATHER MARK;Pe;0;ON;;;;;Y;;;;;-16A0;RUNIC LETTER FEHU FEOH FE F;Lo;0;L;;;;;N;;;;;-16A1;RUNIC LETTER V;Lo;0;L;;;;;N;;;;;-16A2;RUNIC LETTER URUZ UR U;Lo;0;L;;;;;N;;;;;-16A3;RUNIC LETTER YR;Lo;0;L;;;;;N;;;;;-16A4;RUNIC LETTER Y;Lo;0;L;;;;;N;;;;;-16A5;RUNIC LETTER W;Lo;0;L;;;;;N;;;;;-16A6;RUNIC LETTER THURISAZ THURS THORN;Lo;0;L;;;;;N;;;;;-16A7;RUNIC LETTER ETH;Lo;0;L;;;;;N;;;;;-16A8;RUNIC LETTER ANSUZ A;Lo;0;L;;;;;N;;;;;-16A9;RUNIC LETTER OS O;Lo;0;L;;;;;N;;;;;-16AA;RUNIC LETTER AC A;Lo;0;L;;;;;N;;;;;-16AB;RUNIC LETTER AESC;Lo;0;L;;;;;N;;;;;-16AC;RUNIC LETTER LONG-BRANCH-OSS O;Lo;0;L;;;;;N;;;;;-16AD;RUNIC LETTER SHORT-TWIG-OSS O;Lo;0;L;;;;;N;;;;;-16AE;RUNIC LETTER O;Lo;0;L;;;;;N;;;;;-16AF;RUNIC LETTER OE;Lo;0;L;;;;;N;;;;;-16B0;RUNIC LETTER ON;Lo;0;L;;;;;N;;;;;-16B1;RUNIC LETTER RAIDO RAD REID R;Lo;0;L;;;;;N;;;;;-16B2;RUNIC LETTER KAUNA;Lo;0;L;;;;;N;;;;;-16B3;RUNIC LETTER CEN;Lo;0;L;;;;;N;;;;;-16B4;RUNIC LETTER KAUN K;Lo;0;L;;;;;N;;;;;-16B5;RUNIC LETTER G;Lo;0;L;;;;;N;;;;;-16B6;RUNIC LETTER ENG;Lo;0;L;;;;;N;;;;;-16B7;RUNIC LETTER GEBO GYFU G;Lo;0;L;;;;;N;;;;;-16B8;RUNIC LETTER GAR;Lo;0;L;;;;;N;;;;;-16B9;RUNIC LETTER WUNJO WYNN W;Lo;0;L;;;;;N;;;;;-16BA;RUNIC LETTER HAGLAZ H;Lo;0;L;;;;;N;;;;;-16BB;RUNIC LETTER HAEGL H;Lo;0;L;;;;;N;;;;;-16BC;RUNIC LETTER LONG-BRANCH-HAGALL H;Lo;0;L;;;;;N;;;;;-16BD;RUNIC LETTER SHORT-TWIG-HAGALL H;Lo;0;L;;;;;N;;;;;-16BE;RUNIC LETTER NAUDIZ NYD NAUD N;Lo;0;L;;;;;N;;;;;-16BF;RUNIC LETTER SHORT-TWIG-NAUD N;Lo;0;L;;;;;N;;;;;-16C0;RUNIC LETTER DOTTED-N;Lo;0;L;;;;;N;;;;;-16C1;RUNIC LETTER ISAZ IS ISS I;Lo;0;L;;;;;N;;;;;-16C2;RUNIC LETTER E;Lo;0;L;;;;;N;;;;;-16C3;RUNIC LETTER JERAN J;Lo;0;L;;;;;N;;;;;-16C4;RUNIC LETTER GER;Lo;0;L;;;;;N;;;;;-16C5;RUNIC LETTER LONG-BRANCH-AR AE;Lo;0;L;;;;;N;;;;;-16C6;RUNIC LETTER SHORT-TWIG-AR A;Lo;0;L;;;;;N;;;;;-16C7;RUNIC LETTER IWAZ EOH;Lo;0;L;;;;;N;;;;;-16C8;RUNIC LETTER PERTHO PEORTH P;Lo;0;L;;;;;N;;;;;-16C9;RUNIC LETTER ALGIZ EOLHX;Lo;0;L;;;;;N;;;;;-16CA;RUNIC LETTER SOWILO S;Lo;0;L;;;;;N;;;;;-16CB;RUNIC LETTER SIGEL LONG-BRANCH-SOL S;Lo;0;L;;;;;N;;;;;-16CC;RUNIC LETTER SHORT-TWIG-SOL S;Lo;0;L;;;;;N;;;;;-16CD;RUNIC LETTER C;Lo;0;L;;;;;N;;;;;-16CE;RUNIC LETTER Z;Lo;0;L;;;;;N;;;;;-16CF;RUNIC LETTER TIWAZ TIR TYR T;Lo;0;L;;;;;N;;;;;-16D0;RUNIC LETTER SHORT-TWIG-TYR T;Lo;0;L;;;;;N;;;;;-16D1;RUNIC LETTER D;Lo;0;L;;;;;N;;;;;-16D2;RUNIC LETTER BERKANAN BEORC BJARKAN B;Lo;0;L;;;;;N;;;;;-16D3;RUNIC LETTER SHORT-TWIG-BJARKAN B;Lo;0;L;;;;;N;;;;;-16D4;RUNIC LETTER DOTTED-P;Lo;0;L;;;;;N;;;;;-16D5;RUNIC LETTER OPEN-P;Lo;0;L;;;;;N;;;;;-16D6;RUNIC LETTER EHWAZ EH E;Lo;0;L;;;;;N;;;;;-16D7;RUNIC LETTER MANNAZ MAN M;Lo;0;L;;;;;N;;;;;-16D8;RUNIC LETTER LONG-BRANCH-MADR M;Lo;0;L;;;;;N;;;;;-16D9;RUNIC LETTER SHORT-TWIG-MADR M;Lo;0;L;;;;;N;;;;;-16DA;RUNIC LETTER LAUKAZ LAGU LOGR L;Lo;0;L;;;;;N;;;;;-16DB;RUNIC LETTER DOTTED-L;Lo;0;L;;;;;N;;;;;-16DC;RUNIC LETTER INGWAZ;Lo;0;L;;;;;N;;;;;-16DD;RUNIC LETTER ING;Lo;0;L;;;;;N;;;;;-16DE;RUNIC LETTER DAGAZ DAEG D;Lo;0;L;;;;;N;;;;;-16DF;RUNIC LETTER OTHALAN ETHEL O;Lo;0;L;;;;;N;;;;;-16E0;RUNIC LETTER EAR;Lo;0;L;;;;;N;;;;;-16E1;RUNIC LETTER IOR;Lo;0;L;;;;;N;;;;;-16E2;RUNIC LETTER CWEORTH;Lo;0;L;;;;;N;;;;;-16E3;RUNIC LETTER CALC;Lo;0;L;;;;;N;;;;;-16E4;RUNIC LETTER CEALC;Lo;0;L;;;;;N;;;;;-16E5;RUNIC LETTER STAN;Lo;0;L;;;;;N;;;;;-16E6;RUNIC LETTER LONG-BRANCH-YR;Lo;0;L;;;;;N;;;;;-16E7;RUNIC LETTER SHORT-TWIG-YR;Lo;0;L;;;;;N;;;;;-16E8;RUNIC LETTER ICELANDIC-YR;Lo;0;L;;;;;N;;;;;-16E9;RUNIC LETTER Q;Lo;0;L;;;;;N;;;;;-16EA;RUNIC LETTER X;Lo;0;L;;;;;N;;;;;-16EB;RUNIC SINGLE PUNCTUATION;Po;0;L;;;;;N;;;;;-16EC;RUNIC MULTIPLE PUNCTUATION;Po;0;L;;;;;N;;;;;-16ED;RUNIC CROSS PUNCTUATION;Po;0;L;;;;;N;;;;;-16EE;RUNIC ARLAUG SYMBOL;Nl;0;L;;;;17;N;;;;;-16EF;RUNIC TVIMADUR SYMBOL;Nl;0;L;;;;18;N;;;;;-16F0;RUNIC BELGTHOR SYMBOL;Nl;0;L;;;;19;N;;;;;-16F1;RUNIC LETTER K;Lo;0;L;;;;;N;;;;;-16F2;RUNIC LETTER SH;Lo;0;L;;;;;N;;;;;-16F3;RUNIC LETTER OO;Lo;0;L;;;;;N;;;;;-16F4;RUNIC LETTER FRANKS CASKET OS;Lo;0;L;;;;;N;;;;;-16F5;RUNIC LETTER FRANKS CASKET IS;Lo;0;L;;;;;N;;;;;-16F6;RUNIC LETTER FRANKS CASKET EH;Lo;0;L;;;;;N;;;;;-16F7;RUNIC LETTER FRANKS CASKET AC;Lo;0;L;;;;;N;;;;;-16F8;RUNIC LETTER FRANKS CASKET AESC;Lo;0;L;;;;;N;;;;;-1700;TAGALOG LETTER A;Lo;0;L;;;;;N;;;;;-1701;TAGALOG LETTER I;Lo;0;L;;;;;N;;;;;-1702;TAGALOG LETTER U;Lo;0;L;;;;;N;;;;;-1703;TAGALOG LETTER KA;Lo;0;L;;;;;N;;;;;-1704;TAGALOG LETTER GA;Lo;0;L;;;;;N;;;;;-1705;TAGALOG LETTER NGA;Lo;0;L;;;;;N;;;;;-1706;TAGALOG LETTER TA;Lo;0;L;;;;;N;;;;;-1707;TAGALOG LETTER DA;Lo;0;L;;;;;N;;;;;-1708;TAGALOG LETTER NA;Lo;0;L;;;;;N;;;;;-1709;TAGALOG LETTER PA;Lo;0;L;;;;;N;;;;;-170A;TAGALOG LETTER BA;Lo;0;L;;;;;N;;;;;-170B;TAGALOG LETTER MA;Lo;0;L;;;;;N;;;;;-170C;TAGALOG LETTER YA;Lo;0;L;;;;;N;;;;;-170E;TAGALOG LETTER LA;Lo;0;L;;;;;N;;;;;-170F;TAGALOG LETTER WA;Lo;0;L;;;;;N;;;;;-1710;TAGALOG LETTER SA;Lo;0;L;;;;;N;;;;;-1711;TAGALOG LETTER HA;Lo;0;L;;;;;N;;;;;-1712;TAGALOG VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-1713;TAGALOG VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1714;TAGALOG SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-1720;HANUNOO LETTER A;Lo;0;L;;;;;N;;;;;-1721;HANUNOO LETTER I;Lo;0;L;;;;;N;;;;;-1722;HANUNOO LETTER U;Lo;0;L;;;;;N;;;;;-1723;HANUNOO LETTER KA;Lo;0;L;;;;;N;;;;;-1724;HANUNOO LETTER GA;Lo;0;L;;;;;N;;;;;-1725;HANUNOO LETTER NGA;Lo;0;L;;;;;N;;;;;-1726;HANUNOO LETTER TA;Lo;0;L;;;;;N;;;;;-1727;HANUNOO LETTER DA;Lo;0;L;;;;;N;;;;;-1728;HANUNOO LETTER NA;Lo;0;L;;;;;N;;;;;-1729;HANUNOO LETTER PA;Lo;0;L;;;;;N;;;;;-172A;HANUNOO LETTER BA;Lo;0;L;;;;;N;;;;;-172B;HANUNOO LETTER MA;Lo;0;L;;;;;N;;;;;-172C;HANUNOO LETTER YA;Lo;0;L;;;;;N;;;;;-172D;HANUNOO LETTER RA;Lo;0;L;;;;;N;;;;;-172E;HANUNOO LETTER LA;Lo;0;L;;;;;N;;;;;-172F;HANUNOO LETTER WA;Lo;0;L;;;;;N;;;;;-1730;HANUNOO LETTER SA;Lo;0;L;;;;;N;;;;;-1731;HANUNOO LETTER HA;Lo;0;L;;;;;N;;;;;-1732;HANUNOO VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-1733;HANUNOO VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1734;HANUNOO SIGN PAMUDPOD;Mn;9;NSM;;;;;N;;;;;-1735;PHILIPPINE SINGLE PUNCTUATION;Po;0;L;;;;;N;;;;;-1736;PHILIPPINE DOUBLE PUNCTUATION;Po;0;L;;;;;N;;;;;-1740;BUHID LETTER A;Lo;0;L;;;;;N;;;;;-1741;BUHID LETTER I;Lo;0;L;;;;;N;;;;;-1742;BUHID LETTER U;Lo;0;L;;;;;N;;;;;-1743;BUHID LETTER KA;Lo;0;L;;;;;N;;;;;-1744;BUHID LETTER GA;Lo;0;L;;;;;N;;;;;-1745;BUHID LETTER NGA;Lo;0;L;;;;;N;;;;;-1746;BUHID LETTER TA;Lo;0;L;;;;;N;;;;;-1747;BUHID LETTER DA;Lo;0;L;;;;;N;;;;;-1748;BUHID LETTER NA;Lo;0;L;;;;;N;;;;;-1749;BUHID LETTER PA;Lo;0;L;;;;;N;;;;;-174A;BUHID LETTER BA;Lo;0;L;;;;;N;;;;;-174B;BUHID LETTER MA;Lo;0;L;;;;;N;;;;;-174C;BUHID LETTER YA;Lo;0;L;;;;;N;;;;;-174D;BUHID LETTER RA;Lo;0;L;;;;;N;;;;;-174E;BUHID LETTER LA;Lo;0;L;;;;;N;;;;;-174F;BUHID LETTER WA;Lo;0;L;;;;;N;;;;;-1750;BUHID LETTER SA;Lo;0;L;;;;;N;;;;;-1751;BUHID LETTER HA;Lo;0;L;;;;;N;;;;;-1752;BUHID VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-1753;BUHID VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1760;TAGBANWA LETTER A;Lo;0;L;;;;;N;;;;;-1761;TAGBANWA LETTER I;Lo;0;L;;;;;N;;;;;-1762;TAGBANWA LETTER U;Lo;0;L;;;;;N;;;;;-1763;TAGBANWA LETTER KA;Lo;0;L;;;;;N;;;;;-1764;TAGBANWA LETTER GA;Lo;0;L;;;;;N;;;;;-1765;TAGBANWA LETTER NGA;Lo;0;L;;;;;N;;;;;-1766;TAGBANWA LETTER TA;Lo;0;L;;;;;N;;;;;-1767;TAGBANWA LETTER DA;Lo;0;L;;;;;N;;;;;-1768;TAGBANWA LETTER NA;Lo;0;L;;;;;N;;;;;-1769;TAGBANWA LETTER PA;Lo;0;L;;;;;N;;;;;-176A;TAGBANWA LETTER BA;Lo;0;L;;;;;N;;;;;-176B;TAGBANWA LETTER MA;Lo;0;L;;;;;N;;;;;-176C;TAGBANWA LETTER YA;Lo;0;L;;;;;N;;;;;-176E;TAGBANWA LETTER LA;Lo;0;L;;;;;N;;;;;-176F;TAGBANWA LETTER WA;Lo;0;L;;;;;N;;;;;-1770;TAGBANWA LETTER SA;Lo;0;L;;;;;N;;;;;-1772;TAGBANWA VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-1773;TAGBANWA VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1780;KHMER LETTER KA;Lo;0;L;;;;;N;;;;;-1781;KHMER LETTER KHA;Lo;0;L;;;;;N;;;;;-1782;KHMER LETTER KO;Lo;0;L;;;;;N;;;;;-1783;KHMER LETTER KHO;Lo;0;L;;;;;N;;;;;-1784;KHMER LETTER NGO;Lo;0;L;;;;;N;;;;;-1785;KHMER LETTER CA;Lo;0;L;;;;;N;;;;;-1786;KHMER LETTER CHA;Lo;0;L;;;;;N;;;;;-1787;KHMER LETTER CO;Lo;0;L;;;;;N;;;;;-1788;KHMER LETTER CHO;Lo;0;L;;;;;N;;;;;-1789;KHMER LETTER NYO;Lo;0;L;;;;;N;;;;;-178A;KHMER LETTER DA;Lo;0;L;;;;;N;;;;;-178B;KHMER LETTER TTHA;Lo;0;L;;;;;N;;;;;-178C;KHMER LETTER DO;Lo;0;L;;;;;N;;;;;-178D;KHMER LETTER TTHO;Lo;0;L;;;;;N;;;;;-178E;KHMER LETTER NNO;Lo;0;L;;;;;N;;;;;-178F;KHMER LETTER TA;Lo;0;L;;;;;N;;;;;-1790;KHMER LETTER THA;Lo;0;L;;;;;N;;;;;-1791;KHMER LETTER TO;Lo;0;L;;;;;N;;;;;-1792;KHMER LETTER THO;Lo;0;L;;;;;N;;;;;-1793;KHMER LETTER NO;Lo;0;L;;;;;N;;;;;-1794;KHMER LETTER BA;Lo;0;L;;;;;N;;;;;-1795;KHMER LETTER PHA;Lo;0;L;;;;;N;;;;;-1796;KHMER LETTER PO;Lo;0;L;;;;;N;;;;;-1797;KHMER LETTER PHO;Lo;0;L;;;;;N;;;;;-1798;KHMER LETTER MO;Lo;0;L;;;;;N;;;;;-1799;KHMER LETTER YO;Lo;0;L;;;;;N;;;;;-179A;KHMER LETTER RO;Lo;0;L;;;;;N;;;;;-179B;KHMER LETTER LO;Lo;0;L;;;;;N;;;;;-179C;KHMER LETTER VO;Lo;0;L;;;;;N;;;;;-179D;KHMER LETTER SHA;Lo;0;L;;;;;N;;;;;-179E;KHMER LETTER SSO;Lo;0;L;;;;;N;;;;;-179F;KHMER LETTER SA;Lo;0;L;;;;;N;;;;;-17A0;KHMER LETTER HA;Lo;0;L;;;;;N;;;;;-17A1;KHMER LETTER LA;Lo;0;L;;;;;N;;;;;-17A2;KHMER LETTER QA;Lo;0;L;;;;;N;;;;;-17A3;KHMER INDEPENDENT VOWEL QAQ;Lo;0;L;;;;;N;;;;;-17A4;KHMER INDEPENDENT VOWEL QAA;Lo;0;L;;;;;N;;;;;-17A5;KHMER INDEPENDENT VOWEL QI;Lo;0;L;;;;;N;;;;;-17A6;KHMER INDEPENDENT VOWEL QII;Lo;0;L;;;;;N;;;;;-17A7;KHMER INDEPENDENT VOWEL QU;Lo;0;L;;;;;N;;;;;-17A8;KHMER INDEPENDENT VOWEL QUK;Lo;0;L;;;;;N;;;;;-17A9;KHMER INDEPENDENT VOWEL QUU;Lo;0;L;;;;;N;;;;;-17AA;KHMER INDEPENDENT VOWEL QUUV;Lo;0;L;;;;;N;;;;;-17AB;KHMER INDEPENDENT VOWEL RY;Lo;0;L;;;;;N;;;;;-17AC;KHMER INDEPENDENT VOWEL RYY;Lo;0;L;;;;;N;;;;;-17AD;KHMER INDEPENDENT VOWEL LY;Lo;0;L;;;;;N;;;;;-17AE;KHMER INDEPENDENT VOWEL LYY;Lo;0;L;;;;;N;;;;;-17AF;KHMER INDEPENDENT VOWEL QE;Lo;0;L;;;;;N;;;;;-17B0;KHMER INDEPENDENT VOWEL QAI;Lo;0;L;;;;;N;;;;;-17B1;KHMER INDEPENDENT VOWEL QOO TYPE ONE;Lo;0;L;;;;;N;;;;;-17B2;KHMER INDEPENDENT VOWEL QOO TYPE TWO;Lo;0;L;;;;;N;;;;;-17B3;KHMER INDEPENDENT VOWEL QAU;Lo;0;L;;;;;N;;;;;-17B4;KHMER VOWEL INHERENT AQ;Mn;0;NSM;;;;;N;;;;;-17B5;KHMER VOWEL INHERENT AA;Mn;0;NSM;;;;;N;;;;;-17B6;KHMER VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-17B7;KHMER VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-17B8;KHMER VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-17B9;KHMER VOWEL SIGN Y;Mn;0;NSM;;;;;N;;;;;-17BA;KHMER VOWEL SIGN YY;Mn;0;NSM;;;;;N;;;;;-17BB;KHMER VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-17BC;KHMER VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-17BD;KHMER VOWEL SIGN UA;Mn;0;NSM;;;;;N;;;;;-17BE;KHMER VOWEL SIGN OE;Mc;0;L;;;;;N;;;;;-17BF;KHMER VOWEL SIGN YA;Mc;0;L;;;;;N;;;;;-17C0;KHMER VOWEL SIGN IE;Mc;0;L;;;;;N;;;;;-17C1;KHMER VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-17C2;KHMER VOWEL SIGN AE;Mc;0;L;;;;;N;;;;;-17C3;KHMER VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-17C4;KHMER VOWEL SIGN OO;Mc;0;L;;;;;N;;;;;-17C5;KHMER VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-17C6;KHMER SIGN NIKAHIT;Mn;0;NSM;;;;;N;;;;;-17C7;KHMER SIGN REAHMUK;Mc;0;L;;;;;N;;;;;-17C8;KHMER SIGN YUUKALEAPINTU;Mc;0;L;;;;;N;;;;;-17C9;KHMER SIGN MUUSIKATOAN;Mn;0;NSM;;;;;N;;;;;-17CA;KHMER SIGN TRIISAP;Mn;0;NSM;;;;;N;;;;;-17CB;KHMER SIGN BANTOC;Mn;0;NSM;;;;;N;;;;;-17CC;KHMER SIGN ROBAT;Mn;0;NSM;;;;;N;;;;;-17CD;KHMER SIGN TOANDAKHIAT;Mn;0;NSM;;;;;N;;;;;-17CE;KHMER SIGN KAKABAT;Mn;0;NSM;;;;;N;;;;;-17CF;KHMER SIGN AHSDA;Mn;0;NSM;;;;;N;;;;;-17D0;KHMER SIGN SAMYOK SANNYA;Mn;0;NSM;;;;;N;;;;;-17D1;KHMER SIGN VIRIAM;Mn;0;NSM;;;;;N;;;;;-17D2;KHMER SIGN COENG;Mn;9;NSM;;;;;N;;;;;-17D3;KHMER SIGN BATHAMASAT;Mn;0;NSM;;;;;N;;;;;-17D4;KHMER SIGN KHAN;Po;0;L;;;;;N;;;;;-17D5;KHMER SIGN BARIYOOSAN;Po;0;L;;;;;N;;;;;-17D6;KHMER SIGN CAMNUC PII KUUH;Po;0;L;;;;;N;;;;;-17D7;KHMER SIGN LEK TOO;Lm;0;L;;;;;N;;;;;-17D8;KHMER SIGN BEYYAL;Po;0;L;;;;;N;;;;;-17D9;KHMER SIGN PHNAEK MUAN;Po;0;L;;;;;N;;;;;-17DA;KHMER SIGN KOOMUUT;Po;0;L;;;;;N;;;;;-17DB;KHMER CURRENCY SYMBOL RIEL;Sc;0;ET;;;;;N;;;;;-17DC;KHMER SIGN AVAKRAHASANYA;Lo;0;L;;;;;N;;;;;-17DD;KHMER SIGN ATTHACAN;Mn;230;NSM;;;;;N;;;;;-17E0;KHMER DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-17E1;KHMER DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-17E2;KHMER DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-17E3;KHMER DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-17E4;KHMER DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-17E5;KHMER DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-17E6;KHMER DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-17E7;KHMER DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-17E8;KHMER DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-17E9;KHMER DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-17F0;KHMER SYMBOL LEK ATTAK SON;No;0;ON;;;;0;N;;;;;-17F1;KHMER SYMBOL LEK ATTAK MUOY;No;0;ON;;;;1;N;;;;;-17F2;KHMER SYMBOL LEK ATTAK PII;No;0;ON;;;;2;N;;;;;-17F3;KHMER SYMBOL LEK ATTAK BEI;No;0;ON;;;;3;N;;;;;-17F4;KHMER SYMBOL LEK ATTAK BUON;No;0;ON;;;;4;N;;;;;-17F5;KHMER SYMBOL LEK ATTAK PRAM;No;0;ON;;;;5;N;;;;;-17F6;KHMER SYMBOL LEK ATTAK PRAM-MUOY;No;0;ON;;;;6;N;;;;;-17F7;KHMER SYMBOL LEK ATTAK PRAM-PII;No;0;ON;;;;7;N;;;;;-17F8;KHMER SYMBOL LEK ATTAK PRAM-BEI;No;0;ON;;;;8;N;;;;;-17F9;KHMER SYMBOL LEK ATTAK PRAM-BUON;No;0;ON;;;;9;N;;;;;-1800;MONGOLIAN BIRGA;Po;0;ON;;;;;N;;;;;-1801;MONGOLIAN ELLIPSIS;Po;0;ON;;;;;N;;;;;-1802;MONGOLIAN COMMA;Po;0;ON;;;;;N;;;;;-1803;MONGOLIAN FULL STOP;Po;0;ON;;;;;N;;;;;-1804;MONGOLIAN COLON;Po;0;ON;;;;;N;;;;;-1805;MONGOLIAN FOUR DOTS;Po;0;ON;;;;;N;;;;;-1806;MONGOLIAN TODO SOFT HYPHEN;Pd;0;ON;;;;;N;;;;;-1807;MONGOLIAN SIBE SYLLABLE BOUNDARY MARKER;Po;0;ON;;;;;N;;;;;-1808;MONGOLIAN MANCHU COMMA;Po;0;ON;;;;;N;;;;;-1809;MONGOLIAN MANCHU FULL STOP;Po;0;ON;;;;;N;;;;;-180A;MONGOLIAN NIRUGU;Po;0;ON;;;;;N;;;;;-180B;MONGOLIAN FREE VARIATION SELECTOR ONE;Mn;0;NSM;;;;;N;;;;;-180C;MONGOLIAN FREE VARIATION SELECTOR TWO;Mn;0;NSM;;;;;N;;;;;-180D;MONGOLIAN FREE VARIATION SELECTOR THREE;Mn;0;NSM;;;;;N;;;;;-180E;MONGOLIAN VOWEL SEPARATOR;Cf;0;BN;;;;;N;;;;;-1810;MONGOLIAN DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1811;MONGOLIAN DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1812;MONGOLIAN DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1813;MONGOLIAN DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1814;MONGOLIAN DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1815;MONGOLIAN DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1816;MONGOLIAN DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1817;MONGOLIAN DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1818;MONGOLIAN DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1819;MONGOLIAN DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1820;MONGOLIAN LETTER A;Lo;0;L;;;;;N;;;;;-1821;MONGOLIAN LETTER E;Lo;0;L;;;;;N;;;;;-1822;MONGOLIAN LETTER I;Lo;0;L;;;;;N;;;;;-1823;MONGOLIAN LETTER O;Lo;0;L;;;;;N;;;;;-1824;MONGOLIAN LETTER U;Lo;0;L;;;;;N;;;;;-1825;MONGOLIAN LETTER OE;Lo;0;L;;;;;N;;;;;-1826;MONGOLIAN LETTER UE;Lo;0;L;;;;;N;;;;;-1827;MONGOLIAN LETTER EE;Lo;0;L;;;;;N;;;;;-1828;MONGOLIAN LETTER NA;Lo;0;L;;;;;N;;;;;-1829;MONGOLIAN LETTER ANG;Lo;0;L;;;;;N;;;;;-182A;MONGOLIAN LETTER BA;Lo;0;L;;;;;N;;;;;-182B;MONGOLIAN LETTER PA;Lo;0;L;;;;;N;;;;;-182C;MONGOLIAN LETTER QA;Lo;0;L;;;;;N;;;;;-182D;MONGOLIAN LETTER GA;Lo;0;L;;;;;N;;;;;-182E;MONGOLIAN LETTER MA;Lo;0;L;;;;;N;;;;;-182F;MONGOLIAN LETTER LA;Lo;0;L;;;;;N;;;;;-1830;MONGOLIAN LETTER SA;Lo;0;L;;;;;N;;;;;-1831;MONGOLIAN LETTER SHA;Lo;0;L;;;;;N;;;;;-1832;MONGOLIAN LETTER TA;Lo;0;L;;;;;N;;;;;-1833;MONGOLIAN LETTER DA;Lo;0;L;;;;;N;;;;;-1834;MONGOLIAN LETTER CHA;Lo;0;L;;;;;N;;;;;-1835;MONGOLIAN LETTER JA;Lo;0;L;;;;;N;;;;;-1836;MONGOLIAN LETTER YA;Lo;0;L;;;;;N;;;;;-1837;MONGOLIAN LETTER RA;Lo;0;L;;;;;N;;;;;-1838;MONGOLIAN LETTER WA;Lo;0;L;;;;;N;;;;;-1839;MONGOLIAN LETTER FA;Lo;0;L;;;;;N;;;;;-183A;MONGOLIAN LETTER KA;Lo;0;L;;;;;N;;;;;-183B;MONGOLIAN LETTER KHA;Lo;0;L;;;;;N;;;;;-183C;MONGOLIAN LETTER TSA;Lo;0;L;;;;;N;;;;;-183D;MONGOLIAN LETTER ZA;Lo;0;L;;;;;N;;;;;-183E;MONGOLIAN LETTER HAA;Lo;0;L;;;;;N;;;;;-183F;MONGOLIAN LETTER ZRA;Lo;0;L;;;;;N;;;;;-1840;MONGOLIAN LETTER LHA;Lo;0;L;;;;;N;;;;;-1841;MONGOLIAN LETTER ZHI;Lo;0;L;;;;;N;;;;;-1842;MONGOLIAN LETTER CHI;Lo;0;L;;;;;N;;;;;-1843;MONGOLIAN LETTER TODO LONG VOWEL SIGN;Lm;0;L;;;;;N;;;;;-1844;MONGOLIAN LETTER TODO E;Lo;0;L;;;;;N;;;;;-1845;MONGOLIAN LETTER TODO I;Lo;0;L;;;;;N;;;;;-1846;MONGOLIAN LETTER TODO O;Lo;0;L;;;;;N;;;;;-1847;MONGOLIAN LETTER TODO U;Lo;0;L;;;;;N;;;;;-1848;MONGOLIAN LETTER TODO OE;Lo;0;L;;;;;N;;;;;-1849;MONGOLIAN LETTER TODO UE;Lo;0;L;;;;;N;;;;;-184A;MONGOLIAN LETTER TODO ANG;Lo;0;L;;;;;N;;;;;-184B;MONGOLIAN LETTER TODO BA;Lo;0;L;;;;;N;;;;;-184C;MONGOLIAN LETTER TODO PA;Lo;0;L;;;;;N;;;;;-184D;MONGOLIAN LETTER TODO QA;Lo;0;L;;;;;N;;;;;-184E;MONGOLIAN LETTER TODO GA;Lo;0;L;;;;;N;;;;;-184F;MONGOLIAN LETTER TODO MA;Lo;0;L;;;;;N;;;;;-1850;MONGOLIAN LETTER TODO TA;Lo;0;L;;;;;N;;;;;-1851;MONGOLIAN LETTER TODO DA;Lo;0;L;;;;;N;;;;;-1852;MONGOLIAN LETTER TODO CHA;Lo;0;L;;;;;N;;;;;-1853;MONGOLIAN LETTER TODO JA;Lo;0;L;;;;;N;;;;;-1854;MONGOLIAN LETTER TODO TSA;Lo;0;L;;;;;N;;;;;-1855;MONGOLIAN LETTER TODO YA;Lo;0;L;;;;;N;;;;;-1856;MONGOLIAN LETTER TODO WA;Lo;0;L;;;;;N;;;;;-1857;MONGOLIAN LETTER TODO KA;Lo;0;L;;;;;N;;;;;-1858;MONGOLIAN LETTER TODO GAA;Lo;0;L;;;;;N;;;;;-1859;MONGOLIAN LETTER TODO HAA;Lo;0;L;;;;;N;;;;;-185A;MONGOLIAN LETTER TODO JIA;Lo;0;L;;;;;N;;;;;-185B;MONGOLIAN LETTER TODO NIA;Lo;0;L;;;;;N;;;;;-185C;MONGOLIAN LETTER TODO DZA;Lo;0;L;;;;;N;;;;;-185D;MONGOLIAN LETTER SIBE E;Lo;0;L;;;;;N;;;;;-185E;MONGOLIAN LETTER SIBE I;Lo;0;L;;;;;N;;;;;-185F;MONGOLIAN LETTER SIBE IY;Lo;0;L;;;;;N;;;;;-1860;MONGOLIAN LETTER SIBE UE;Lo;0;L;;;;;N;;;;;-1861;MONGOLIAN LETTER SIBE U;Lo;0;L;;;;;N;;;;;-1862;MONGOLIAN LETTER SIBE ANG;Lo;0;L;;;;;N;;;;;-1863;MONGOLIAN LETTER SIBE KA;Lo;0;L;;;;;N;;;;;-1864;MONGOLIAN LETTER SIBE GA;Lo;0;L;;;;;N;;;;;-1865;MONGOLIAN LETTER SIBE HA;Lo;0;L;;;;;N;;;;;-1866;MONGOLIAN LETTER SIBE PA;Lo;0;L;;;;;N;;;;;-1867;MONGOLIAN LETTER SIBE SHA;Lo;0;L;;;;;N;;;;;-1868;MONGOLIAN LETTER SIBE TA;Lo;0;L;;;;;N;;;;;-1869;MONGOLIAN LETTER SIBE DA;Lo;0;L;;;;;N;;;;;-186A;MONGOLIAN LETTER SIBE JA;Lo;0;L;;;;;N;;;;;-186B;MONGOLIAN LETTER SIBE FA;Lo;0;L;;;;;N;;;;;-186C;MONGOLIAN LETTER SIBE GAA;Lo;0;L;;;;;N;;;;;-186D;MONGOLIAN LETTER SIBE HAA;Lo;0;L;;;;;N;;;;;-186E;MONGOLIAN LETTER SIBE TSA;Lo;0;L;;;;;N;;;;;-186F;MONGOLIAN LETTER SIBE ZA;Lo;0;L;;;;;N;;;;;-1870;MONGOLIAN LETTER SIBE RAA;Lo;0;L;;;;;N;;;;;-1871;MONGOLIAN LETTER SIBE CHA;Lo;0;L;;;;;N;;;;;-1872;MONGOLIAN LETTER SIBE ZHA;Lo;0;L;;;;;N;;;;;-1873;MONGOLIAN LETTER MANCHU I;Lo;0;L;;;;;N;;;;;-1874;MONGOLIAN LETTER MANCHU KA;Lo;0;L;;;;;N;;;;;-1875;MONGOLIAN LETTER MANCHU RA;Lo;0;L;;;;;N;;;;;-1876;MONGOLIAN LETTER MANCHU FA;Lo;0;L;;;;;N;;;;;-1877;MONGOLIAN LETTER MANCHU ZHA;Lo;0;L;;;;;N;;;;;-1880;MONGOLIAN LETTER ALI GALI ANUSVARA ONE;Lo;0;L;;;;;N;;;;;-1881;MONGOLIAN LETTER ALI GALI VISARGA ONE;Lo;0;L;;;;;N;;;;;-1882;MONGOLIAN LETTER ALI GALI DAMARU;Lo;0;L;;;;;N;;;;;-1883;MONGOLIAN LETTER ALI GALI UBADAMA;Lo;0;L;;;;;N;;;;;-1884;MONGOLIAN LETTER ALI GALI INVERTED UBADAMA;Lo;0;L;;;;;N;;;;;-1885;MONGOLIAN LETTER ALI GALI BALUDA;Lo;0;L;;;;;N;;;;;-1886;MONGOLIAN LETTER ALI GALI THREE BALUDA;Lo;0;L;;;;;N;;;;;-1887;MONGOLIAN LETTER ALI GALI A;Lo;0;L;;;;;N;;;;;-1888;MONGOLIAN LETTER ALI GALI I;Lo;0;L;;;;;N;;;;;-1889;MONGOLIAN LETTER ALI GALI KA;Lo;0;L;;;;;N;;;;;-188A;MONGOLIAN LETTER ALI GALI NGA;Lo;0;L;;;;;N;;;;;-188B;MONGOLIAN LETTER ALI GALI CA;Lo;0;L;;;;;N;;;;;-188C;MONGOLIAN LETTER ALI GALI TTA;Lo;0;L;;;;;N;;;;;-188D;MONGOLIAN LETTER ALI GALI TTHA;Lo;0;L;;;;;N;;;;;-188E;MONGOLIAN LETTER ALI GALI DDA;Lo;0;L;;;;;N;;;;;-188F;MONGOLIAN LETTER ALI GALI NNA;Lo;0;L;;;;;N;;;;;-1890;MONGOLIAN LETTER ALI GALI TA;Lo;0;L;;;;;N;;;;;-1891;MONGOLIAN LETTER ALI GALI DA;Lo;0;L;;;;;N;;;;;-1892;MONGOLIAN LETTER ALI GALI PA;Lo;0;L;;;;;N;;;;;-1893;MONGOLIAN LETTER ALI GALI PHA;Lo;0;L;;;;;N;;;;;-1894;MONGOLIAN LETTER ALI GALI SSA;Lo;0;L;;;;;N;;;;;-1895;MONGOLIAN LETTER ALI GALI ZHA;Lo;0;L;;;;;N;;;;;-1896;MONGOLIAN LETTER ALI GALI ZA;Lo;0;L;;;;;N;;;;;-1897;MONGOLIAN LETTER ALI GALI AH;Lo;0;L;;;;;N;;;;;-1898;MONGOLIAN LETTER TODO ALI GALI TA;Lo;0;L;;;;;N;;;;;-1899;MONGOLIAN LETTER TODO ALI GALI ZHA;Lo;0;L;;;;;N;;;;;-189A;MONGOLIAN LETTER MANCHU ALI GALI GHA;Lo;0;L;;;;;N;;;;;-189B;MONGOLIAN LETTER MANCHU ALI GALI NGA;Lo;0;L;;;;;N;;;;;-189C;MONGOLIAN LETTER MANCHU ALI GALI CA;Lo;0;L;;;;;N;;;;;-189D;MONGOLIAN LETTER MANCHU ALI GALI JHA;Lo;0;L;;;;;N;;;;;-189E;MONGOLIAN LETTER MANCHU ALI GALI TTA;Lo;0;L;;;;;N;;;;;-189F;MONGOLIAN LETTER MANCHU ALI GALI DDHA;Lo;0;L;;;;;N;;;;;-18A0;MONGOLIAN LETTER MANCHU ALI GALI TA;Lo;0;L;;;;;N;;;;;-18A1;MONGOLIAN LETTER MANCHU ALI GALI DHA;Lo;0;L;;;;;N;;;;;-18A2;MONGOLIAN LETTER MANCHU ALI GALI SSA;Lo;0;L;;;;;N;;;;;-18A3;MONGOLIAN LETTER MANCHU ALI GALI CYA;Lo;0;L;;;;;N;;;;;-18A4;MONGOLIAN LETTER MANCHU ALI GALI ZHA;Lo;0;L;;;;;N;;;;;-18A5;MONGOLIAN LETTER MANCHU ALI GALI ZA;Lo;0;L;;;;;N;;;;;-18A6;MONGOLIAN LETTER ALI GALI HALF U;Lo;0;L;;;;;N;;;;;-18A7;MONGOLIAN LETTER ALI GALI HALF YA;Lo;0;L;;;;;N;;;;;-18A8;MONGOLIAN LETTER MANCHU ALI GALI BHA;Lo;0;L;;;;;N;;;;;-18A9;MONGOLIAN LETTER ALI GALI DAGALGA;Mn;228;NSM;;;;;N;;;;;-18AA;MONGOLIAN LETTER MANCHU ALI GALI LHA;Lo;0;L;;;;;N;;;;;-18B0;CANADIAN SYLLABICS OY;Lo;0;L;;;;;N;;;;;-18B1;CANADIAN SYLLABICS AY;Lo;0;L;;;;;N;;;;;-18B2;CANADIAN SYLLABICS AAY;Lo;0;L;;;;;N;;;;;-18B3;CANADIAN SYLLABICS WAY;Lo;0;L;;;;;N;;;;;-18B4;CANADIAN SYLLABICS POY;Lo;0;L;;;;;N;;;;;-18B5;CANADIAN SYLLABICS PAY;Lo;0;L;;;;;N;;;;;-18B6;CANADIAN SYLLABICS PWOY;Lo;0;L;;;;;N;;;;;-18B7;CANADIAN SYLLABICS TAY;Lo;0;L;;;;;N;;;;;-18B8;CANADIAN SYLLABICS KAY;Lo;0;L;;;;;N;;;;;-18B9;CANADIAN SYLLABICS KWAY;Lo;0;L;;;;;N;;;;;-18BA;CANADIAN SYLLABICS MAY;Lo;0;L;;;;;N;;;;;-18BB;CANADIAN SYLLABICS NOY;Lo;0;L;;;;;N;;;;;-18BC;CANADIAN SYLLABICS NAY;Lo;0;L;;;;;N;;;;;-18BD;CANADIAN SYLLABICS LAY;Lo;0;L;;;;;N;;;;;-18BE;CANADIAN SYLLABICS SOY;Lo;0;L;;;;;N;;;;;-18BF;CANADIAN SYLLABICS SAY;Lo;0;L;;;;;N;;;;;-18C0;CANADIAN SYLLABICS SHOY;Lo;0;L;;;;;N;;;;;-18C1;CANADIAN SYLLABICS SHAY;Lo;0;L;;;;;N;;;;;-18C2;CANADIAN SYLLABICS SHWOY;Lo;0;L;;;;;N;;;;;-18C3;CANADIAN SYLLABICS YOY;Lo;0;L;;;;;N;;;;;-18C4;CANADIAN SYLLABICS YAY;Lo;0;L;;;;;N;;;;;-18C5;CANADIAN SYLLABICS RAY;Lo;0;L;;;;;N;;;;;-18C6;CANADIAN SYLLABICS NWI;Lo;0;L;;;;;N;;;;;-18C7;CANADIAN SYLLABICS OJIBWAY NWI;Lo;0;L;;;;;N;;;;;-18C8;CANADIAN SYLLABICS NWII;Lo;0;L;;;;;N;;;;;-18C9;CANADIAN SYLLABICS OJIBWAY NWII;Lo;0;L;;;;;N;;;;;-18CA;CANADIAN SYLLABICS NWO;Lo;0;L;;;;;N;;;;;-18CB;CANADIAN SYLLABICS OJIBWAY NWO;Lo;0;L;;;;;N;;;;;-18CC;CANADIAN SYLLABICS NWOO;Lo;0;L;;;;;N;;;;;-18CD;CANADIAN SYLLABICS OJIBWAY NWOO;Lo;0;L;;;;;N;;;;;-18CE;CANADIAN SYLLABICS RWEE;Lo;0;L;;;;;N;;;;;-18CF;CANADIAN SYLLABICS RWI;Lo;0;L;;;;;N;;;;;-18D0;CANADIAN SYLLABICS RWII;Lo;0;L;;;;;N;;;;;-18D1;CANADIAN SYLLABICS RWO;Lo;0;L;;;;;N;;;;;-18D2;CANADIAN SYLLABICS RWOO;Lo;0;L;;;;;N;;;;;-18D3;CANADIAN SYLLABICS RWA;Lo;0;L;;;;;N;;;;;-18D4;CANADIAN SYLLABICS OJIBWAY P;Lo;0;L;;;;;N;;;;;-18D5;CANADIAN SYLLABICS OJIBWAY T;Lo;0;L;;;;;N;;;;;-18D6;CANADIAN SYLLABICS OJIBWAY K;Lo;0;L;;;;;N;;;;;-18D7;CANADIAN SYLLABICS OJIBWAY C;Lo;0;L;;;;;N;;;;;-18D8;CANADIAN SYLLABICS OJIBWAY M;Lo;0;L;;;;;N;;;;;-18D9;CANADIAN SYLLABICS OJIBWAY N;Lo;0;L;;;;;N;;;;;-18DA;CANADIAN SYLLABICS OJIBWAY S;Lo;0;L;;;;;N;;;;;-18DB;CANADIAN SYLLABICS OJIBWAY SH;Lo;0;L;;;;;N;;;;;-18DC;CANADIAN SYLLABICS EASTERN W;Lo;0;L;;;;;N;;;;;-18DD;CANADIAN SYLLABICS WESTERN W;Lo;0;L;;;;;N;;;;;-18DE;CANADIAN SYLLABICS FINAL SMALL RING;Lo;0;L;;;;;N;;;;;-18DF;CANADIAN SYLLABICS FINAL RAISED DOT;Lo;0;L;;;;;N;;;;;-18E0;CANADIAN SYLLABICS R-CREE RWE;Lo;0;L;;;;;N;;;;;-18E1;CANADIAN SYLLABICS WEST-CREE LOO;Lo;0;L;;;;;N;;;;;-18E2;CANADIAN SYLLABICS WEST-CREE LAA;Lo;0;L;;;;;N;;;;;-18E3;CANADIAN SYLLABICS THWE;Lo;0;L;;;;;N;;;;;-18E4;CANADIAN SYLLABICS THWA;Lo;0;L;;;;;N;;;;;-18E5;CANADIAN SYLLABICS TTHWE;Lo;0;L;;;;;N;;;;;-18E6;CANADIAN SYLLABICS TTHOO;Lo;0;L;;;;;N;;;;;-18E7;CANADIAN SYLLABICS TTHAA;Lo;0;L;;;;;N;;;;;-18E8;CANADIAN SYLLABICS TLHWE;Lo;0;L;;;;;N;;;;;-18E9;CANADIAN SYLLABICS TLHOO;Lo;0;L;;;;;N;;;;;-18EA;CANADIAN SYLLABICS SAYISI SHWE;Lo;0;L;;;;;N;;;;;-18EB;CANADIAN SYLLABICS SAYISI SHOO;Lo;0;L;;;;;N;;;;;-18EC;CANADIAN SYLLABICS SAYISI HOO;Lo;0;L;;;;;N;;;;;-18ED;CANADIAN SYLLABICS CARRIER GWU;Lo;0;L;;;;;N;;;;;-18EE;CANADIAN SYLLABICS CARRIER DENE GEE;Lo;0;L;;;;;N;;;;;-18EF;CANADIAN SYLLABICS CARRIER GAA;Lo;0;L;;;;;N;;;;;-18F0;CANADIAN SYLLABICS CARRIER GWA;Lo;0;L;;;;;N;;;;;-18F1;CANADIAN SYLLABICS SAYISI JUU;Lo;0;L;;;;;N;;;;;-18F2;CANADIAN SYLLABICS CARRIER JWA;Lo;0;L;;;;;N;;;;;-18F3;CANADIAN SYLLABICS BEAVER DENE L;Lo;0;L;;;;;N;;;;;-18F4;CANADIAN SYLLABICS BEAVER DENE R;Lo;0;L;;;;;N;;;;;-18F5;CANADIAN SYLLABICS CARRIER DENTAL S;Lo;0;L;;;;;N;;;;;-1900;LIMBU VOWEL-CARRIER LETTER;Lo;0;L;;;;;N;;;;;-1901;LIMBU LETTER KA;Lo;0;L;;;;;N;;;;;-1902;LIMBU LETTER KHA;Lo;0;L;;;;;N;;;;;-1903;LIMBU LETTER GA;Lo;0;L;;;;;N;;;;;-1904;LIMBU LETTER GHA;Lo;0;L;;;;;N;;;;;-1905;LIMBU LETTER NGA;Lo;0;L;;;;;N;;;;;-1906;LIMBU LETTER CA;Lo;0;L;;;;;N;;;;;-1907;LIMBU LETTER CHA;Lo;0;L;;;;;N;;;;;-1908;LIMBU LETTER JA;Lo;0;L;;;;;N;;;;;-1909;LIMBU LETTER JHA;Lo;0;L;;;;;N;;;;;-190A;LIMBU LETTER YAN;Lo;0;L;;;;;N;;;;;-190B;LIMBU LETTER TA;Lo;0;L;;;;;N;;;;;-190C;LIMBU LETTER THA;Lo;0;L;;;;;N;;;;;-190D;LIMBU LETTER DA;Lo;0;L;;;;;N;;;;;-190E;LIMBU LETTER DHA;Lo;0;L;;;;;N;;;;;-190F;LIMBU LETTER NA;Lo;0;L;;;;;N;;;;;-1910;LIMBU LETTER PA;Lo;0;L;;;;;N;;;;;-1911;LIMBU LETTER PHA;Lo;0;L;;;;;N;;;;;-1912;LIMBU LETTER BA;Lo;0;L;;;;;N;;;;;-1913;LIMBU LETTER BHA;Lo;0;L;;;;;N;;;;;-1914;LIMBU LETTER MA;Lo;0;L;;;;;N;;;;;-1915;LIMBU LETTER YA;Lo;0;L;;;;;N;;;;;-1916;LIMBU LETTER RA;Lo;0;L;;;;;N;;;;;-1917;LIMBU LETTER LA;Lo;0;L;;;;;N;;;;;-1918;LIMBU LETTER WA;Lo;0;L;;;;;N;;;;;-1919;LIMBU LETTER SHA;Lo;0;L;;;;;N;;;;;-191A;LIMBU LETTER SSA;Lo;0;L;;;;;N;;;;;-191B;LIMBU LETTER SA;Lo;0;L;;;;;N;;;;;-191C;LIMBU LETTER HA;Lo;0;L;;;;;N;;;;;-191D;LIMBU LETTER GYAN;Lo;0;L;;;;;N;;;;;-191E;LIMBU LETTER TRA;Lo;0;L;;;;;N;;;;;-1920;LIMBU VOWEL SIGN A;Mn;0;NSM;;;;;N;;;;;-1921;LIMBU VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-1922;LIMBU VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1923;LIMBU VOWEL SIGN EE;Mc;0;L;;;;;N;;;;;-1924;LIMBU VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-1925;LIMBU VOWEL SIGN OO;Mc;0;L;;;;;N;;;;;-1926;LIMBU VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-1927;LIMBU VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-1928;LIMBU VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-1929;LIMBU SUBJOINED LETTER YA;Mc;0;L;;;;;N;;;;;-192A;LIMBU SUBJOINED LETTER RA;Mc;0;L;;;;;N;;;;;-192B;LIMBU SUBJOINED LETTER WA;Mc;0;L;;;;;N;;;;;-1930;LIMBU SMALL LETTER KA;Mc;0;L;;;;;N;;;;;-1931;LIMBU SMALL LETTER NGA;Mc;0;L;;;;;N;;;;;-1932;LIMBU SMALL LETTER ANUSVARA;Mn;0;NSM;;;;;N;;;;;-1933;LIMBU SMALL LETTER TA;Mc;0;L;;;;;N;;;;;-1934;LIMBU SMALL LETTER NA;Mc;0;L;;;;;N;;;;;-1935;LIMBU SMALL LETTER PA;Mc;0;L;;;;;N;;;;;-1936;LIMBU SMALL LETTER MA;Mc;0;L;;;;;N;;;;;-1937;LIMBU SMALL LETTER RA;Mc;0;L;;;;;N;;;;;-1938;LIMBU SMALL LETTER LA;Mc;0;L;;;;;N;;;;;-1939;LIMBU SIGN MUKPHRENG;Mn;222;NSM;;;;;N;;;;;-193A;LIMBU SIGN KEMPHRENG;Mn;230;NSM;;;;;N;;;;;-193B;LIMBU SIGN SA-I;Mn;220;NSM;;;;;N;;;;;-1940;LIMBU SIGN LOO;So;0;ON;;;;;N;;;;;-1944;LIMBU EXCLAMATION MARK;Po;0;ON;;;;;N;;;;;-1945;LIMBU QUESTION MARK;Po;0;ON;;;;;N;;;;;-1946;LIMBU DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1947;LIMBU DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1948;LIMBU DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1949;LIMBU DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-194A;LIMBU DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-194B;LIMBU DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-194C;LIMBU DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-194D;LIMBU DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-194E;LIMBU DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-194F;LIMBU DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1950;TAI LE LETTER KA;Lo;0;L;;;;;N;;;;;-1951;TAI LE LETTER XA;Lo;0;L;;;;;N;;;;;-1952;TAI LE LETTER NGA;Lo;0;L;;;;;N;;;;;-1953;TAI LE LETTER TSA;Lo;0;L;;;;;N;;;;;-1954;TAI LE LETTER SA;Lo;0;L;;;;;N;;;;;-1955;TAI LE LETTER YA;Lo;0;L;;;;;N;;;;;-1956;TAI LE LETTER TA;Lo;0;L;;;;;N;;;;;-1957;TAI LE LETTER THA;Lo;0;L;;;;;N;;;;;-1958;TAI LE LETTER LA;Lo;0;L;;;;;N;;;;;-1959;TAI LE LETTER PA;Lo;0;L;;;;;N;;;;;-195A;TAI LE LETTER PHA;Lo;0;L;;;;;N;;;;;-195B;TAI LE LETTER MA;Lo;0;L;;;;;N;;;;;-195C;TAI LE LETTER FA;Lo;0;L;;;;;N;;;;;-195D;TAI LE LETTER VA;Lo;0;L;;;;;N;;;;;-195E;TAI LE LETTER HA;Lo;0;L;;;;;N;;;;;-195F;TAI LE LETTER QA;Lo;0;L;;;;;N;;;;;-1960;TAI LE LETTER KHA;Lo;0;L;;;;;N;;;;;-1961;TAI LE LETTER TSHA;Lo;0;L;;;;;N;;;;;-1962;TAI LE LETTER NA;Lo;0;L;;;;;N;;;;;-1963;TAI LE LETTER A;Lo;0;L;;;;;N;;;;;-1964;TAI LE LETTER I;Lo;0;L;;;;;N;;;;;-1965;TAI LE LETTER EE;Lo;0;L;;;;;N;;;;;-1966;TAI LE LETTER EH;Lo;0;L;;;;;N;;;;;-1967;TAI LE LETTER U;Lo;0;L;;;;;N;;;;;-1968;TAI LE LETTER OO;Lo;0;L;;;;;N;;;;;-1969;TAI LE LETTER O;Lo;0;L;;;;;N;;;;;-196A;TAI LE LETTER UE;Lo;0;L;;;;;N;;;;;-196B;TAI LE LETTER E;Lo;0;L;;;;;N;;;;;-196C;TAI LE LETTER AUE;Lo;0;L;;;;;N;;;;;-196D;TAI LE LETTER AI;Lo;0;L;;;;;N;;;;;-1970;TAI LE LETTER TONE-2;Lo;0;L;;;;;N;;;;;-1971;TAI LE LETTER TONE-3;Lo;0;L;;;;;N;;;;;-1972;TAI LE LETTER TONE-4;Lo;0;L;;;;;N;;;;;-1973;TAI LE LETTER TONE-5;Lo;0;L;;;;;N;;;;;-1974;TAI LE LETTER TONE-6;Lo;0;L;;;;;N;;;;;-1980;NEW TAI LUE LETTER HIGH QA;Lo;0;L;;;;;N;;;;;-1981;NEW TAI LUE LETTER LOW QA;Lo;0;L;;;;;N;;;;;-1982;NEW TAI LUE LETTER HIGH KA;Lo;0;L;;;;;N;;;;;-1983;NEW TAI LUE LETTER HIGH XA;Lo;0;L;;;;;N;;;;;-1984;NEW TAI LUE LETTER HIGH NGA;Lo;0;L;;;;;N;;;;;-1985;NEW TAI LUE LETTER LOW KA;Lo;0;L;;;;;N;;;;;-1986;NEW TAI LUE LETTER LOW XA;Lo;0;L;;;;;N;;;;;-1987;NEW TAI LUE LETTER LOW NGA;Lo;0;L;;;;;N;;;;;-1988;NEW TAI LUE LETTER HIGH TSA;Lo;0;L;;;;;N;;;;;-1989;NEW TAI LUE LETTER HIGH SA;Lo;0;L;;;;;N;;;;;-198A;NEW TAI LUE LETTER HIGH YA;Lo;0;L;;;;;N;;;;;-198B;NEW TAI LUE LETTER LOW TSA;Lo;0;L;;;;;N;;;;;-198C;NEW TAI LUE LETTER LOW SA;Lo;0;L;;;;;N;;;;;-198D;NEW TAI LUE LETTER LOW YA;Lo;0;L;;;;;N;;;;;-198E;NEW TAI LUE LETTER HIGH TA;Lo;0;L;;;;;N;;;;;-198F;NEW TAI LUE LETTER HIGH THA;Lo;0;L;;;;;N;;;;;-1990;NEW TAI LUE LETTER HIGH NA;Lo;0;L;;;;;N;;;;;-1991;NEW TAI LUE LETTER LOW TA;Lo;0;L;;;;;N;;;;;-1992;NEW TAI LUE LETTER LOW THA;Lo;0;L;;;;;N;;;;;-1993;NEW TAI LUE LETTER LOW NA;Lo;0;L;;;;;N;;;;;-1994;NEW TAI LUE LETTER HIGH PA;Lo;0;L;;;;;N;;;;;-1995;NEW TAI LUE LETTER HIGH PHA;Lo;0;L;;;;;N;;;;;-1996;NEW TAI LUE LETTER HIGH MA;Lo;0;L;;;;;N;;;;;-1997;NEW TAI LUE LETTER LOW PA;Lo;0;L;;;;;N;;;;;-1998;NEW TAI LUE LETTER LOW PHA;Lo;0;L;;;;;N;;;;;-1999;NEW TAI LUE LETTER LOW MA;Lo;0;L;;;;;N;;;;;-199A;NEW TAI LUE LETTER HIGH FA;Lo;0;L;;;;;N;;;;;-199B;NEW TAI LUE LETTER HIGH VA;Lo;0;L;;;;;N;;;;;-199C;NEW TAI LUE LETTER HIGH LA;Lo;0;L;;;;;N;;;;;-199D;NEW TAI LUE LETTER LOW FA;Lo;0;L;;;;;N;;;;;-199E;NEW TAI LUE LETTER LOW VA;Lo;0;L;;;;;N;;;;;-199F;NEW TAI LUE LETTER LOW LA;Lo;0;L;;;;;N;;;;;-19A0;NEW TAI LUE LETTER HIGH HA;Lo;0;L;;;;;N;;;;;-19A1;NEW TAI LUE LETTER HIGH DA;Lo;0;L;;;;;N;;;;;-19A2;NEW TAI LUE LETTER HIGH BA;Lo;0;L;;;;;N;;;;;-19A3;NEW TAI LUE LETTER LOW HA;Lo;0;L;;;;;N;;;;;-19A4;NEW TAI LUE LETTER LOW DA;Lo;0;L;;;;;N;;;;;-19A5;NEW TAI LUE LETTER LOW BA;Lo;0;L;;;;;N;;;;;-19A6;NEW TAI LUE LETTER HIGH KVA;Lo;0;L;;;;;N;;;;;-19A7;NEW TAI LUE LETTER HIGH XVA;Lo;0;L;;;;;N;;;;;-19A8;NEW TAI LUE LETTER LOW KVA;Lo;0;L;;;;;N;;;;;-19A9;NEW TAI LUE LETTER LOW XVA;Lo;0;L;;;;;N;;;;;-19AA;NEW TAI LUE LETTER HIGH SUA;Lo;0;L;;;;;N;;;;;-19AB;NEW TAI LUE LETTER LOW SUA;Lo;0;L;;;;;N;;;;;-19B0;NEW TAI LUE VOWEL SIGN VOWEL SHORTENER;Mc;0;L;;;;;N;;;;;-19B1;NEW TAI LUE VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-19B2;NEW TAI LUE VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-19B3;NEW TAI LUE VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-19B4;NEW TAI LUE VOWEL SIGN UU;Mc;0;L;;;;;N;;;;;-19B5;NEW TAI LUE VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-19B6;NEW TAI LUE VOWEL SIGN AE;Mc;0;L;;;;;N;;;;;-19B7;NEW TAI LUE VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-19B8;NEW TAI LUE VOWEL SIGN OA;Mc;0;L;;;;;N;;;;;-19B9;NEW TAI LUE VOWEL SIGN UE;Mc;0;L;;;;;N;;;;;-19BA;NEW TAI LUE VOWEL SIGN AY;Mc;0;L;;;;;N;;;;;-19BB;NEW TAI LUE VOWEL SIGN AAY;Mc;0;L;;;;;N;;;;;-19BC;NEW TAI LUE VOWEL SIGN UY;Mc;0;L;;;;;N;;;;;-19BD;NEW TAI LUE VOWEL SIGN OY;Mc;0;L;;;;;N;;;;;-19BE;NEW TAI LUE VOWEL SIGN OAY;Mc;0;L;;;;;N;;;;;-19BF;NEW TAI LUE VOWEL SIGN UEY;Mc;0;L;;;;;N;;;;;-19C0;NEW TAI LUE VOWEL SIGN IY;Mc;0;L;;;;;N;;;;;-19C1;NEW TAI LUE LETTER FINAL V;Lo;0;L;;;;;N;;;;;-19C2;NEW TAI LUE LETTER FINAL NG;Lo;0;L;;;;;N;;;;;-19C3;NEW TAI LUE LETTER FINAL N;Lo;0;L;;;;;N;;;;;-19C4;NEW TAI LUE LETTER FINAL M;Lo;0;L;;;;;N;;;;;-19C5;NEW TAI LUE LETTER FINAL K;Lo;0;L;;;;;N;;;;;-19C6;NEW TAI LUE LETTER FINAL D;Lo;0;L;;;;;N;;;;;-19C7;NEW TAI LUE LETTER FINAL B;Lo;0;L;;;;;N;;;;;-19C8;NEW TAI LUE TONE MARK-1;Mc;0;L;;;;;N;;;;;-19C9;NEW TAI LUE TONE MARK-2;Mc;0;L;;;;;N;;;;;-19D0;NEW TAI LUE DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-19D1;NEW TAI LUE DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-19D2;NEW TAI LUE DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-19D3;NEW TAI LUE DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-19D4;NEW TAI LUE DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-19D5;NEW TAI LUE DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-19D6;NEW TAI LUE DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-19D7;NEW TAI LUE DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-19D8;NEW TAI LUE DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-19D9;NEW TAI LUE DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-19DA;NEW TAI LUE THAM DIGIT ONE;No;0;L;;;1;1;N;;;;;-19DE;NEW TAI LUE SIGN LAE;So;0;ON;;;;;N;;;;;-19DF;NEW TAI LUE SIGN LAEV;So;0;ON;;;;;N;;;;;-19E0;KHMER SYMBOL PATHAMASAT;So;0;ON;;;;;N;;;;;-19E1;KHMER SYMBOL MUOY KOET;So;0;ON;;;;;N;;;;;-19E2;KHMER SYMBOL PII KOET;So;0;ON;;;;;N;;;;;-19E3;KHMER SYMBOL BEI KOET;So;0;ON;;;;;N;;;;;-19E4;KHMER SYMBOL BUON KOET;So;0;ON;;;;;N;;;;;-19E5;KHMER SYMBOL PRAM KOET;So;0;ON;;;;;N;;;;;-19E6;KHMER SYMBOL PRAM-MUOY KOET;So;0;ON;;;;;N;;;;;-19E7;KHMER SYMBOL PRAM-PII KOET;So;0;ON;;;;;N;;;;;-19E8;KHMER SYMBOL PRAM-BEI KOET;So;0;ON;;;;;N;;;;;-19E9;KHMER SYMBOL PRAM-BUON KOET;So;0;ON;;;;;N;;;;;-19EA;KHMER SYMBOL DAP KOET;So;0;ON;;;;;N;;;;;-19EB;KHMER SYMBOL DAP-MUOY KOET;So;0;ON;;;;;N;;;;;-19EC;KHMER SYMBOL DAP-PII KOET;So;0;ON;;;;;N;;;;;-19ED;KHMER SYMBOL DAP-BEI KOET;So;0;ON;;;;;N;;;;;-19EE;KHMER SYMBOL DAP-BUON KOET;So;0;ON;;;;;N;;;;;-19EF;KHMER SYMBOL DAP-PRAM KOET;So;0;ON;;;;;N;;;;;-19F0;KHMER SYMBOL TUTEYASAT;So;0;ON;;;;;N;;;;;-19F1;KHMER SYMBOL MUOY ROC;So;0;ON;;;;;N;;;;;-19F2;KHMER SYMBOL PII ROC;So;0;ON;;;;;N;;;;;-19F3;KHMER SYMBOL BEI ROC;So;0;ON;;;;;N;;;;;-19F4;KHMER SYMBOL BUON ROC;So;0;ON;;;;;N;;;;;-19F5;KHMER SYMBOL PRAM ROC;So;0;ON;;;;;N;;;;;-19F6;KHMER SYMBOL PRAM-MUOY ROC;So;0;ON;;;;;N;;;;;-19F7;KHMER SYMBOL PRAM-PII ROC;So;0;ON;;;;;N;;;;;-19F8;KHMER SYMBOL PRAM-BEI ROC;So;0;ON;;;;;N;;;;;-19F9;KHMER SYMBOL PRAM-BUON ROC;So;0;ON;;;;;N;;;;;-19FA;KHMER SYMBOL DAP ROC;So;0;ON;;;;;N;;;;;-19FB;KHMER SYMBOL DAP-MUOY ROC;So;0;ON;;;;;N;;;;;-19FC;KHMER SYMBOL DAP-PII ROC;So;0;ON;;;;;N;;;;;-19FD;KHMER SYMBOL DAP-BEI ROC;So;0;ON;;;;;N;;;;;-19FE;KHMER SYMBOL DAP-BUON ROC;So;0;ON;;;;;N;;;;;-19FF;KHMER SYMBOL DAP-PRAM ROC;So;0;ON;;;;;N;;;;;-1A00;BUGINESE LETTER KA;Lo;0;L;;;;;N;;;;;-1A01;BUGINESE LETTER GA;Lo;0;L;;;;;N;;;;;-1A02;BUGINESE LETTER NGA;Lo;0;L;;;;;N;;;;;-1A03;BUGINESE LETTER NGKA;Lo;0;L;;;;;N;;;;;-1A04;BUGINESE LETTER PA;Lo;0;L;;;;;N;;;;;-1A05;BUGINESE LETTER BA;Lo;0;L;;;;;N;;;;;-1A06;BUGINESE LETTER MA;Lo;0;L;;;;;N;;;;;-1A07;BUGINESE LETTER MPA;Lo;0;L;;;;;N;;;;;-1A08;BUGINESE LETTER TA;Lo;0;L;;;;;N;;;;;-1A09;BUGINESE LETTER DA;Lo;0;L;;;;;N;;;;;-1A0A;BUGINESE LETTER NA;Lo;0;L;;;;;N;;;;;-1A0B;BUGINESE LETTER NRA;Lo;0;L;;;;;N;;;;;-1A0C;BUGINESE LETTER CA;Lo;0;L;;;;;N;;;;;-1A0D;BUGINESE LETTER JA;Lo;0;L;;;;;N;;;;;-1A0E;BUGINESE LETTER NYA;Lo;0;L;;;;;N;;;;;-1A0F;BUGINESE LETTER NYCA;Lo;0;L;;;;;N;;;;;-1A10;BUGINESE LETTER YA;Lo;0;L;;;;;N;;;;;-1A11;BUGINESE LETTER RA;Lo;0;L;;;;;N;;;;;-1A12;BUGINESE LETTER LA;Lo;0;L;;;;;N;;;;;-1A13;BUGINESE LETTER VA;Lo;0;L;;;;;N;;;;;-1A14;BUGINESE LETTER SA;Lo;0;L;;;;;N;;;;;-1A15;BUGINESE LETTER A;Lo;0;L;;;;;N;;;;;-1A16;BUGINESE LETTER HA;Lo;0;L;;;;;N;;;;;-1A17;BUGINESE VOWEL SIGN I;Mn;230;NSM;;;;;N;;;;;-1A18;BUGINESE VOWEL SIGN U;Mn;220;NSM;;;;;N;;;;;-1A19;BUGINESE VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-1A1A;BUGINESE VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-1A1B;BUGINESE VOWEL SIGN AE;Mn;0;NSM;;;;;N;;;;;-1A1E;BUGINESE PALLAWA;Po;0;L;;;;;N;;;;;-1A1F;BUGINESE END OF SECTION;Po;0;L;;;;;N;;;;;-1A20;TAI THAM LETTER HIGH KA;Lo;0;L;;;;;N;;;;;-1A21;TAI THAM LETTER HIGH KHA;Lo;0;L;;;;;N;;;;;-1A22;TAI THAM LETTER HIGH KXA;Lo;0;L;;;;;N;;;;;-1A23;TAI THAM LETTER LOW KA;Lo;0;L;;;;;N;;;;;-1A24;TAI THAM LETTER LOW KXA;Lo;0;L;;;;;N;;;;;-1A25;TAI THAM LETTER LOW KHA;Lo;0;L;;;;;N;;;;;-1A26;TAI THAM LETTER NGA;Lo;0;L;;;;;N;;;;;-1A27;TAI THAM LETTER HIGH CA;Lo;0;L;;;;;N;;;;;-1A28;TAI THAM LETTER HIGH CHA;Lo;0;L;;;;;N;;;;;-1A29;TAI THAM LETTER LOW CA;Lo;0;L;;;;;N;;;;;-1A2A;TAI THAM LETTER LOW SA;Lo;0;L;;;;;N;;;;;-1A2B;TAI THAM LETTER LOW CHA;Lo;0;L;;;;;N;;;;;-1A2C;TAI THAM LETTER NYA;Lo;0;L;;;;;N;;;;;-1A2D;TAI THAM LETTER RATA;Lo;0;L;;;;;N;;;;;-1A2E;TAI THAM LETTER HIGH RATHA;Lo;0;L;;;;;N;;;;;-1A2F;TAI THAM LETTER DA;Lo;0;L;;;;;N;;;;;-1A30;TAI THAM LETTER LOW RATHA;Lo;0;L;;;;;N;;;;;-1A31;TAI THAM LETTER RANA;Lo;0;L;;;;;N;;;;;-1A32;TAI THAM LETTER HIGH TA;Lo;0;L;;;;;N;;;;;-1A33;TAI THAM LETTER HIGH THA;Lo;0;L;;;;;N;;;;;-1A34;TAI THAM LETTER LOW TA;Lo;0;L;;;;;N;;;;;-1A35;TAI THAM LETTER LOW THA;Lo;0;L;;;;;N;;;;;-1A36;TAI THAM LETTER NA;Lo;0;L;;;;;N;;;;;-1A37;TAI THAM LETTER BA;Lo;0;L;;;;;N;;;;;-1A38;TAI THAM LETTER HIGH PA;Lo;0;L;;;;;N;;;;;-1A39;TAI THAM LETTER HIGH PHA;Lo;0;L;;;;;N;;;;;-1A3A;TAI THAM LETTER HIGH FA;Lo;0;L;;;;;N;;;;;-1A3B;TAI THAM LETTER LOW PA;Lo;0;L;;;;;N;;;;;-1A3C;TAI THAM LETTER LOW FA;Lo;0;L;;;;;N;;;;;-1A3D;TAI THAM LETTER LOW PHA;Lo;0;L;;;;;N;;;;;-1A3E;TAI THAM LETTER MA;Lo;0;L;;;;;N;;;;;-1A3F;TAI THAM LETTER LOW YA;Lo;0;L;;;;;N;;;;;-1A40;TAI THAM LETTER HIGH YA;Lo;0;L;;;;;N;;;;;-1A41;TAI THAM LETTER RA;Lo;0;L;;;;;N;;;;;-1A42;TAI THAM LETTER RUE;Lo;0;L;;;;;N;;;;;-1A43;TAI THAM LETTER LA;Lo;0;L;;;;;N;;;;;-1A44;TAI THAM LETTER LUE;Lo;0;L;;;;;N;;;;;-1A45;TAI THAM LETTER WA;Lo;0;L;;;;;N;;;;;-1A46;TAI THAM LETTER HIGH SHA;Lo;0;L;;;;;N;;;;;-1A47;TAI THAM LETTER HIGH SSA;Lo;0;L;;;;;N;;;;;-1A48;TAI THAM LETTER HIGH SA;Lo;0;L;;;;;N;;;;;-1A49;TAI THAM LETTER HIGH HA;Lo;0;L;;;;;N;;;;;-1A4A;TAI THAM LETTER LLA;Lo;0;L;;;;;N;;;;;-1A4B;TAI THAM LETTER A;Lo;0;L;;;;;N;;;;;-1A4C;TAI THAM LETTER LOW HA;Lo;0;L;;;;;N;;;;;-1A4D;TAI THAM LETTER I;Lo;0;L;;;;;N;;;;;-1A4E;TAI THAM LETTER II;Lo;0;L;;;;;N;;;;;-1A4F;TAI THAM LETTER U;Lo;0;L;;;;;N;;;;;-1A50;TAI THAM LETTER UU;Lo;0;L;;;;;N;;;;;-1A51;TAI THAM LETTER EE;Lo;0;L;;;;;N;;;;;-1A52;TAI THAM LETTER OO;Lo;0;L;;;;;N;;;;;-1A53;TAI THAM LETTER LAE;Lo;0;L;;;;;N;;;;;-1A54;TAI THAM LETTER GREAT SA;Lo;0;L;;;;;N;;;;;-1A55;TAI THAM CONSONANT SIGN MEDIAL RA;Mc;0;L;;;;;N;;;;;-1A56;TAI THAM CONSONANT SIGN MEDIAL LA;Mn;0;NSM;;;;;N;;;;;-1A57;TAI THAM CONSONANT SIGN LA TANG LAI;Mc;0;L;;;;;N;;;;;-1A58;TAI THAM SIGN MAI KANG LAI;Mn;0;NSM;;;;;N;;;;;-1A59;TAI THAM CONSONANT SIGN FINAL NGA;Mn;0;NSM;;;;;N;;;;;-1A5A;TAI THAM CONSONANT SIGN LOW PA;Mn;0;NSM;;;;;N;;;;;-1A5B;TAI THAM CONSONANT SIGN HIGH RATHA OR LOW PA;Mn;0;NSM;;;;;N;;;;;-1A5C;TAI THAM CONSONANT SIGN MA;Mn;0;NSM;;;;;N;;;;;-1A5D;TAI THAM CONSONANT SIGN BA;Mn;0;NSM;;;;;N;;;;;-1A5E;TAI THAM CONSONANT SIGN SA;Mn;0;NSM;;;;;N;;;;;-1A60;TAI THAM SIGN SAKOT;Mn;9;NSM;;;;;N;;;;;-1A61;TAI THAM VOWEL SIGN A;Mc;0;L;;;;;N;;;;;-1A62;TAI THAM VOWEL SIGN MAI SAT;Mn;0;NSM;;;;;N;;;;;-1A63;TAI THAM VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-1A64;TAI THAM VOWEL SIGN TALL AA;Mc;0;L;;;;;N;;;;;-1A65;TAI THAM VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-1A66;TAI THAM VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-1A67;TAI THAM VOWEL SIGN UE;Mn;0;NSM;;;;;N;;;;;-1A68;TAI THAM VOWEL SIGN UUE;Mn;0;NSM;;;;;N;;;;;-1A69;TAI THAM VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1A6A;TAI THAM VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-1A6B;TAI THAM VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-1A6C;TAI THAM VOWEL SIGN OA BELOW;Mn;0;NSM;;;;;N;;;;;-1A6D;TAI THAM VOWEL SIGN OY;Mc;0;L;;;;;N;;;;;-1A6E;TAI THAM VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-1A6F;TAI THAM VOWEL SIGN AE;Mc;0;L;;;;;N;;;;;-1A70;TAI THAM VOWEL SIGN OO;Mc;0;L;;;;;N;;;;;-1A71;TAI THAM VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-1A72;TAI THAM VOWEL SIGN THAM AI;Mc;0;L;;;;;N;;;;;-1A73;TAI THAM VOWEL SIGN OA ABOVE;Mn;0;NSM;;;;;N;;;;;-1A74;TAI THAM SIGN MAI KANG;Mn;0;NSM;;;;;N;;;;;-1A75;TAI THAM SIGN TONE-1;Mn;230;NSM;;;;;N;;;;;-1A76;TAI THAM SIGN TONE-2;Mn;230;NSM;;;;;N;;;;;-1A77;TAI THAM SIGN KHUEN TONE-3;Mn;230;NSM;;;;;N;;;;;-1A78;TAI THAM SIGN KHUEN TONE-4;Mn;230;NSM;;;;;N;;;;;-1A79;TAI THAM SIGN KHUEN TONE-5;Mn;230;NSM;;;;;N;;;;;-1A7A;TAI THAM SIGN RA HAAM;Mn;230;NSM;;;;;N;;;;;-1A7B;TAI THAM SIGN MAI SAM;Mn;230;NSM;;;;;N;;;;;-1A7C;TAI THAM SIGN KHUEN-LUE KARAN;Mn;230;NSM;;;;;N;;;;;-1A7F;TAI THAM COMBINING CRYPTOGRAMMIC DOT;Mn;220;NSM;;;;;N;;;;;-1A80;TAI THAM HORA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1A81;TAI THAM HORA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1A82;TAI THAM HORA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1A83;TAI THAM HORA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1A84;TAI THAM HORA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1A85;TAI THAM HORA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1A86;TAI THAM HORA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1A87;TAI THAM HORA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1A88;TAI THAM HORA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1A89;TAI THAM HORA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1A90;TAI THAM THAM DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1A91;TAI THAM THAM DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1A92;TAI THAM THAM DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1A93;TAI THAM THAM DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1A94;TAI THAM THAM DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1A95;TAI THAM THAM DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1A96;TAI THAM THAM DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1A97;TAI THAM THAM DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1A98;TAI THAM THAM DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1A99;TAI THAM THAM DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1AA0;TAI THAM SIGN WIANG;Po;0;L;;;;;N;;;;;-1AA1;TAI THAM SIGN WIANGWAAK;Po;0;L;;;;;N;;;;;-1AA2;TAI THAM SIGN SAWAN;Po;0;L;;;;;N;;;;;-1AA3;TAI THAM SIGN KEOW;Po;0;L;;;;;N;;;;;-1AA4;TAI THAM SIGN HOY;Po;0;L;;;;;N;;;;;-1AA5;TAI THAM SIGN DOKMAI;Po;0;L;;;;;N;;;;;-1AA6;TAI THAM SIGN REVERSED ROTATED RANA;Po;0;L;;;;;N;;;;;-1AA7;TAI THAM SIGN MAI YAMOK;Lm;0;L;;;;;N;;;;;-1AA8;TAI THAM SIGN KAAN;Po;0;L;;;;;N;;;;;-1AA9;TAI THAM SIGN KAANKUU;Po;0;L;;;;;N;;;;;-1AAA;TAI THAM SIGN SATKAAN;Po;0;L;;;;;N;;;;;-1AAB;TAI THAM SIGN SATKAANKUU;Po;0;L;;;;;N;;;;;-1AAC;TAI THAM SIGN HANG;Po;0;L;;;;;N;;;;;-1AAD;TAI THAM SIGN CAANG;Po;0;L;;;;;N;;;;;-1AB0;COMBINING DOUBLED CIRCUMFLEX ACCENT;Mn;230;NSM;;;;;N;;;;;-1AB1;COMBINING DIAERESIS-RING;Mn;230;NSM;;;;;N;;;;;-1AB2;COMBINING INFINITY;Mn;230;NSM;;;;;N;;;;;-1AB3;COMBINING DOWNWARDS ARROW;Mn;230;NSM;;;;;N;;;;;-1AB4;COMBINING TRIPLE DOT;Mn;230;NSM;;;;;N;;;;;-1AB5;COMBINING X-X BELOW;Mn;220;NSM;;;;;N;;;;;-1AB6;COMBINING WIGGLY LINE BELOW;Mn;220;NSM;;;;;N;;;;;-1AB7;COMBINING OPEN MARK BELOW;Mn;220;NSM;;;;;N;;;;;-1AB8;COMBINING DOUBLE OPEN MARK BELOW;Mn;220;NSM;;;;;N;;;;;-1AB9;COMBINING LIGHT CENTRALIZATION STROKE BELOW;Mn;220;NSM;;;;;N;;;;;-1ABA;COMBINING STRONG CENTRALIZATION STROKE BELOW;Mn;220;NSM;;;;;N;;;;;-1ABB;COMBINING PARENTHESES ABOVE;Mn;230;NSM;;;;;N;;;;;-1ABC;COMBINING DOUBLE PARENTHESES ABOVE;Mn;230;NSM;;;;;N;;;;;-1ABD;COMBINING PARENTHESES BELOW;Mn;220;NSM;;;;;N;;;;;-1ABE;COMBINING PARENTHESES OVERLAY;Me;0;NSM;;;;;N;;;;;-1B00;BALINESE SIGN ULU RICEM;Mn;0;NSM;;;;;N;;;;;-1B01;BALINESE SIGN ULU CANDRA;Mn;0;NSM;;;;;N;;;;;-1B02;BALINESE SIGN CECEK;Mn;0;NSM;;;;;N;;;;;-1B03;BALINESE SIGN SURANG;Mn;0;NSM;;;;;N;;;;;-1B04;BALINESE SIGN BISAH;Mc;0;L;;;;;N;;;;;-1B05;BALINESE LETTER AKARA;Lo;0;L;;;;;N;;;;;-1B06;BALINESE LETTER AKARA TEDUNG;Lo;0;L;1B05 1B35;;;;N;;;;;-1B07;BALINESE LETTER IKARA;Lo;0;L;;;;;N;;;;;-1B08;BALINESE LETTER IKARA TEDUNG;Lo;0;L;1B07 1B35;;;;N;;;;;-1B09;BALINESE LETTER UKARA;Lo;0;L;;;;;N;;;;;-1B0A;BALINESE LETTER UKARA TEDUNG;Lo;0;L;1B09 1B35;;;;N;;;;;-1B0B;BALINESE LETTER RA REPA;Lo;0;L;;;;;N;;;;;-1B0C;BALINESE LETTER RA REPA TEDUNG;Lo;0;L;1B0B 1B35;;;;N;;;;;-1B0D;BALINESE LETTER LA LENGA;Lo;0;L;;;;;N;;;;;-1B0E;BALINESE LETTER LA LENGA TEDUNG;Lo;0;L;1B0D 1B35;;;;N;;;;;-1B0F;BALINESE LETTER EKARA;Lo;0;L;;;;;N;;;;;-1B10;BALINESE LETTER AIKARA;Lo;0;L;;;;;N;;;;;-1B11;BALINESE LETTER OKARA;Lo;0;L;;;;;N;;;;;-1B12;BALINESE LETTER OKARA TEDUNG;Lo;0;L;1B11 1B35;;;;N;;;;;-1B13;BALINESE LETTER KA;Lo;0;L;;;;;N;;;;;-1B14;BALINESE LETTER KA MAHAPRANA;Lo;0;L;;;;;N;;;;;-1B15;BALINESE LETTER GA;Lo;0;L;;;;;N;;;;;-1B16;BALINESE LETTER GA GORA;Lo;0;L;;;;;N;;;;;-1B17;BALINESE LETTER NGA;Lo;0;L;;;;;N;;;;;-1B18;BALINESE LETTER CA;Lo;0;L;;;;;N;;;;;-1B19;BALINESE LETTER CA LACA;Lo;0;L;;;;;N;;;;;-1B1A;BALINESE LETTER JA;Lo;0;L;;;;;N;;;;;-1B1B;BALINESE LETTER JA JERA;Lo;0;L;;;;;N;;;;;-1B1C;BALINESE LETTER NYA;Lo;0;L;;;;;N;;;;;-1B1D;BALINESE LETTER TA LATIK;Lo;0;L;;;;;N;;;;;-1B1E;BALINESE LETTER TA MURDA MAHAPRANA;Lo;0;L;;;;;N;;;;;-1B1F;BALINESE LETTER DA MURDA ALPAPRANA;Lo;0;L;;;;;N;;;;;-1B20;BALINESE LETTER DA MURDA MAHAPRANA;Lo;0;L;;;;;N;;;;;-1B21;BALINESE LETTER NA RAMBAT;Lo;0;L;;;;;N;;;;;-1B22;BALINESE LETTER TA;Lo;0;L;;;;;N;;;;;-1B23;BALINESE LETTER TA TAWA;Lo;0;L;;;;;N;;;;;-1B24;BALINESE LETTER DA;Lo;0;L;;;;;N;;;;;-1B25;BALINESE LETTER DA MADU;Lo;0;L;;;;;N;;;;;-1B26;BALINESE LETTER NA;Lo;0;L;;;;;N;;;;;-1B27;BALINESE LETTER PA;Lo;0;L;;;;;N;;;;;-1B28;BALINESE LETTER PA KAPAL;Lo;0;L;;;;;N;;;;;-1B29;BALINESE LETTER BA;Lo;0;L;;;;;N;;;;;-1B2A;BALINESE LETTER BA KEMBANG;Lo;0;L;;;;;N;;;;;-1B2B;BALINESE LETTER MA;Lo;0;L;;;;;N;;;;;-1B2C;BALINESE LETTER YA;Lo;0;L;;;;;N;;;;;-1B2D;BALINESE LETTER RA;Lo;0;L;;;;;N;;;;;-1B2E;BALINESE LETTER LA;Lo;0;L;;;;;N;;;;;-1B2F;BALINESE LETTER WA;Lo;0;L;;;;;N;;;;;-1B30;BALINESE LETTER SA SAGA;Lo;0;L;;;;;N;;;;;-1B31;BALINESE LETTER SA SAPA;Lo;0;L;;;;;N;;;;;-1B32;BALINESE LETTER SA;Lo;0;L;;;;;N;;;;;-1B33;BALINESE LETTER HA;Lo;0;L;;;;;N;;;;;-1B34;BALINESE SIGN REREKAN;Mn;7;NSM;;;;;N;;;;;-1B35;BALINESE VOWEL SIGN TEDUNG;Mc;0;L;;;;;N;;;;;-1B36;BALINESE VOWEL SIGN ULU;Mn;0;NSM;;;;;N;;;;;-1B37;BALINESE VOWEL SIGN ULU SARI;Mn;0;NSM;;;;;N;;;;;-1B38;BALINESE VOWEL SIGN SUKU;Mn;0;NSM;;;;;N;;;;;-1B39;BALINESE VOWEL SIGN SUKU ILUT;Mn;0;NSM;;;;;N;;;;;-1B3A;BALINESE VOWEL SIGN RA REPA;Mn;0;NSM;;;;;N;;;;;-1B3B;BALINESE VOWEL SIGN RA REPA TEDUNG;Mc;0;L;1B3A 1B35;;;;N;;;;;-1B3C;BALINESE VOWEL SIGN LA LENGA;Mn;0;NSM;;;;;N;;;;;-1B3D;BALINESE VOWEL SIGN LA LENGA TEDUNG;Mc;0;L;1B3C 1B35;;;;N;;;;;-1B3E;BALINESE VOWEL SIGN TALING;Mc;0;L;;;;;N;;;;;-1B3F;BALINESE VOWEL SIGN TALING REPA;Mc;0;L;;;;;N;;;;;-1B40;BALINESE VOWEL SIGN TALING TEDUNG;Mc;0;L;1B3E 1B35;;;;N;;;;;-1B41;BALINESE VOWEL SIGN TALING REPA TEDUNG;Mc;0;L;1B3F 1B35;;;;N;;;;;-1B42;BALINESE VOWEL SIGN PEPET;Mn;0;NSM;;;;;N;;;;;-1B43;BALINESE VOWEL SIGN PEPET TEDUNG;Mc;0;L;1B42 1B35;;;;N;;;;;-1B44;BALINESE ADEG ADEG;Mc;9;L;;;;;N;;;;;-1B45;BALINESE LETTER KAF SASAK;Lo;0;L;;;;;N;;;;;-1B46;BALINESE LETTER KHOT SASAK;Lo;0;L;;;;;N;;;;;-1B47;BALINESE LETTER TZIR SASAK;Lo;0;L;;;;;N;;;;;-1B48;BALINESE LETTER EF SASAK;Lo;0;L;;;;;N;;;;;-1B49;BALINESE LETTER VE SASAK;Lo;0;L;;;;;N;;;;;-1B4A;BALINESE LETTER ZAL SASAK;Lo;0;L;;;;;N;;;;;-1B4B;BALINESE LETTER ASYURA SASAK;Lo;0;L;;;;;N;;;;;-1B50;BALINESE DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1B51;BALINESE DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1B52;BALINESE DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1B53;BALINESE DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1B54;BALINESE DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1B55;BALINESE DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1B56;BALINESE DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1B57;BALINESE DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1B58;BALINESE DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1B59;BALINESE DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1B5A;BALINESE PANTI;Po;0;L;;;;;N;;;;;-1B5B;BALINESE PAMADA;Po;0;L;;;;;N;;;;;-1B5C;BALINESE WINDU;Po;0;L;;;;;N;;;;;-1B5D;BALINESE CARIK PAMUNGKAH;Po;0;L;;;;;N;;;;;-1B5E;BALINESE CARIK SIKI;Po;0;L;;;;;N;;;;;-1B5F;BALINESE CARIK PAREREN;Po;0;L;;;;;N;;;;;-1B60;BALINESE PAMENENG;Po;0;L;;;;;N;;;;;-1B61;BALINESE MUSICAL SYMBOL DONG;So;0;L;;;;;N;;;;;-1B62;BALINESE MUSICAL SYMBOL DENG;So;0;L;;;;;N;;;;;-1B63;BALINESE MUSICAL SYMBOL DUNG;So;0;L;;;;;N;;;;;-1B64;BALINESE MUSICAL SYMBOL DANG;So;0;L;;;;;N;;;;;-1B65;BALINESE MUSICAL SYMBOL DANG SURANG;So;0;L;;;;;N;;;;;-1B66;BALINESE MUSICAL SYMBOL DING;So;0;L;;;;;N;;;;;-1B67;BALINESE MUSICAL SYMBOL DAENG;So;0;L;;;;;N;;;;;-1B68;BALINESE MUSICAL SYMBOL DEUNG;So;0;L;;;;;N;;;;;-1B69;BALINESE MUSICAL SYMBOL DAING;So;0;L;;;;;N;;;;;-1B6A;BALINESE MUSICAL SYMBOL DANG GEDE;So;0;L;;;;;N;;;;;-1B6B;BALINESE MUSICAL SYMBOL COMBINING TEGEH;Mn;230;NSM;;;;;N;;;;;-1B6C;BALINESE MUSICAL SYMBOL COMBINING ENDEP;Mn;220;NSM;;;;;N;;;;;-1B6D;BALINESE MUSICAL SYMBOL COMBINING KEMPUL;Mn;230;NSM;;;;;N;;;;;-1B6E;BALINESE MUSICAL SYMBOL COMBINING KEMPLI;Mn;230;NSM;;;;;N;;;;;-1B6F;BALINESE MUSICAL SYMBOL COMBINING JEGOGAN;Mn;230;NSM;;;;;N;;;;;-1B70;BALINESE MUSICAL SYMBOL COMBINING KEMPUL WITH JEGOGAN;Mn;230;NSM;;;;;N;;;;;-1B71;BALINESE MUSICAL SYMBOL COMBINING KEMPLI WITH JEGOGAN;Mn;230;NSM;;;;;N;;;;;-1B72;BALINESE MUSICAL SYMBOL COMBINING BENDE;Mn;230;NSM;;;;;N;;;;;-1B73;BALINESE MUSICAL SYMBOL COMBINING GONG;Mn;230;NSM;;;;;N;;;;;-1B74;BALINESE MUSICAL SYMBOL RIGHT-HAND OPEN DUG;So;0;L;;;;;N;;;;;-1B75;BALINESE MUSICAL SYMBOL RIGHT-HAND OPEN DAG;So;0;L;;;;;N;;;;;-1B76;BALINESE MUSICAL SYMBOL RIGHT-HAND CLOSED TUK;So;0;L;;;;;N;;;;;-1B77;BALINESE MUSICAL SYMBOL RIGHT-HAND CLOSED TAK;So;0;L;;;;;N;;;;;-1B78;BALINESE MUSICAL SYMBOL LEFT-HAND OPEN PANG;So;0;L;;;;;N;;;;;-1B79;BALINESE MUSICAL SYMBOL LEFT-HAND OPEN PUNG;So;0;L;;;;;N;;;;;-1B7A;BALINESE MUSICAL SYMBOL LEFT-HAND CLOSED PLAK;So;0;L;;;;;N;;;;;-1B7B;BALINESE MUSICAL SYMBOL LEFT-HAND CLOSED PLUK;So;0;L;;;;;N;;;;;-1B7C;BALINESE MUSICAL SYMBOL LEFT-HAND OPEN PING;So;0;L;;;;;N;;;;;-1B80;SUNDANESE SIGN PANYECEK;Mn;0;NSM;;;;;N;;;;;-1B81;SUNDANESE SIGN PANGLAYAR;Mn;0;NSM;;;;;N;;;;;-1B82;SUNDANESE SIGN PANGWISAD;Mc;0;L;;;;;N;;;;;-1B83;SUNDANESE LETTER A;Lo;0;L;;;;;N;;;;;-1B84;SUNDANESE LETTER I;Lo;0;L;;;;;N;;;;;-1B85;SUNDANESE LETTER U;Lo;0;L;;;;;N;;;;;-1B86;SUNDANESE LETTER AE;Lo;0;L;;;;;N;;;;;-1B87;SUNDANESE LETTER O;Lo;0;L;;;;;N;;;;;-1B88;SUNDANESE LETTER E;Lo;0;L;;;;;N;;;;;-1B89;SUNDANESE LETTER EU;Lo;0;L;;;;;N;;;;;-1B8A;SUNDANESE LETTER KA;Lo;0;L;;;;;N;;;;;-1B8B;SUNDANESE LETTER QA;Lo;0;L;;;;;N;;;;;-1B8C;SUNDANESE LETTER GA;Lo;0;L;;;;;N;;;;;-1B8D;SUNDANESE LETTER NGA;Lo;0;L;;;;;N;;;;;-1B8E;SUNDANESE LETTER CA;Lo;0;L;;;;;N;;;;;-1B8F;SUNDANESE LETTER JA;Lo;0;L;;;;;N;;;;;-1B90;SUNDANESE LETTER ZA;Lo;0;L;;;;;N;;;;;-1B91;SUNDANESE LETTER NYA;Lo;0;L;;;;;N;;;;;-1B92;SUNDANESE LETTER TA;Lo;0;L;;;;;N;;;;;-1B93;SUNDANESE LETTER DA;Lo;0;L;;;;;N;;;;;-1B94;SUNDANESE LETTER NA;Lo;0;L;;;;;N;;;;;-1B95;SUNDANESE LETTER PA;Lo;0;L;;;;;N;;;;;-1B96;SUNDANESE LETTER FA;Lo;0;L;;;;;N;;;;;-1B97;SUNDANESE LETTER VA;Lo;0;L;;;;;N;;;;;-1B98;SUNDANESE LETTER BA;Lo;0;L;;;;;N;;;;;-1B99;SUNDANESE LETTER MA;Lo;0;L;;;;;N;;;;;-1B9A;SUNDANESE LETTER YA;Lo;0;L;;;;;N;;;;;-1B9B;SUNDANESE LETTER RA;Lo;0;L;;;;;N;;;;;-1B9C;SUNDANESE LETTER LA;Lo;0;L;;;;;N;;;;;-1B9D;SUNDANESE LETTER WA;Lo;0;L;;;;;N;;;;;-1B9E;SUNDANESE LETTER SA;Lo;0;L;;;;;N;;;;;-1B9F;SUNDANESE LETTER XA;Lo;0;L;;;;;N;;;;;-1BA0;SUNDANESE LETTER HA;Lo;0;L;;;;;N;;;;;-1BA1;SUNDANESE CONSONANT SIGN PAMINGKAL;Mc;0;L;;;;;N;;;;;-1BA2;SUNDANESE CONSONANT SIGN PANYAKRA;Mn;0;NSM;;;;;N;;;;;-1BA3;SUNDANESE CONSONANT SIGN PANYIKU;Mn;0;NSM;;;;;N;;;;;-1BA4;SUNDANESE VOWEL SIGN PANGHULU;Mn;0;NSM;;;;;N;;;;;-1BA5;SUNDANESE VOWEL SIGN PANYUKU;Mn;0;NSM;;;;;N;;;;;-1BA6;SUNDANESE VOWEL SIGN PANAELAENG;Mc;0;L;;;;;N;;;;;-1BA7;SUNDANESE VOWEL SIGN PANOLONG;Mc;0;L;;;;;N;;;;;-1BA8;SUNDANESE VOWEL SIGN PAMEPET;Mn;0;NSM;;;;;N;;;;;-1BA9;SUNDANESE VOWEL SIGN PANEULEUNG;Mn;0;NSM;;;;;N;;;;;-1BAA;SUNDANESE SIGN PAMAAEH;Mc;9;L;;;;;N;;;;;-1BAB;SUNDANESE SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-1BAC;SUNDANESE CONSONANT SIGN PASANGAN MA;Mn;0;NSM;;;;;N;;;;;-1BAD;SUNDANESE CONSONANT SIGN PASANGAN WA;Mn;0;NSM;;;;;N;;;;;-1BAE;SUNDANESE LETTER KHA;Lo;0;L;;;;;N;;;;;-1BAF;SUNDANESE LETTER SYA;Lo;0;L;;;;;N;;;;;-1BB0;SUNDANESE DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1BB1;SUNDANESE DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1BB2;SUNDANESE DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1BB3;SUNDANESE DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1BB4;SUNDANESE DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1BB5;SUNDANESE DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1BB6;SUNDANESE DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1BB7;SUNDANESE DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1BB8;SUNDANESE DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1BB9;SUNDANESE DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1BBA;SUNDANESE AVAGRAHA;Lo;0;L;;;;;N;;;;;-1BBB;SUNDANESE LETTER REU;Lo;0;L;;;;;N;;;;;-1BBC;SUNDANESE LETTER LEU;Lo;0;L;;;;;N;;;;;-1BBD;SUNDANESE LETTER BHA;Lo;0;L;;;;;N;;;;;-1BBE;SUNDANESE LETTER FINAL K;Lo;0;L;;;;;N;;;;;-1BBF;SUNDANESE LETTER FINAL M;Lo;0;L;;;;;N;;;;;-1BC0;BATAK LETTER A;Lo;0;L;;;;;N;;;;;-1BC1;BATAK LETTER SIMALUNGUN A;Lo;0;L;;;;;N;;;;;-1BC2;BATAK LETTER HA;Lo;0;L;;;;;N;;;;;-1BC3;BATAK LETTER SIMALUNGUN HA;Lo;0;L;;;;;N;;;;;-1BC4;BATAK LETTER MANDAILING HA;Lo;0;L;;;;;N;;;;;-1BC5;BATAK LETTER BA;Lo;0;L;;;;;N;;;;;-1BC6;BATAK LETTER KARO BA;Lo;0;L;;;;;N;;;;;-1BC7;BATAK LETTER PA;Lo;0;L;;;;;N;;;;;-1BC8;BATAK LETTER SIMALUNGUN PA;Lo;0;L;;;;;N;;;;;-1BC9;BATAK LETTER NA;Lo;0;L;;;;;N;;;;;-1BCA;BATAK LETTER MANDAILING NA;Lo;0;L;;;;;N;;;;;-1BCB;BATAK LETTER WA;Lo;0;L;;;;;N;;;;;-1BCC;BATAK LETTER SIMALUNGUN WA;Lo;0;L;;;;;N;;;;;-1BCD;BATAK LETTER PAKPAK WA;Lo;0;L;;;;;N;;;;;-1BCE;BATAK LETTER GA;Lo;0;L;;;;;N;;;;;-1BCF;BATAK LETTER SIMALUNGUN GA;Lo;0;L;;;;;N;;;;;-1BD0;BATAK LETTER JA;Lo;0;L;;;;;N;;;;;-1BD1;BATAK LETTER DA;Lo;0;L;;;;;N;;;;;-1BD2;BATAK LETTER RA;Lo;0;L;;;;;N;;;;;-1BD3;BATAK LETTER SIMALUNGUN RA;Lo;0;L;;;;;N;;;;;-1BD4;BATAK LETTER MA;Lo;0;L;;;;;N;;;;;-1BD5;BATAK LETTER SIMALUNGUN MA;Lo;0;L;;;;;N;;;;;-1BD6;BATAK LETTER SOUTHERN TA;Lo;0;L;;;;;N;;;;;-1BD7;BATAK LETTER NORTHERN TA;Lo;0;L;;;;;N;;;;;-1BD8;BATAK LETTER SA;Lo;0;L;;;;;N;;;;;-1BD9;BATAK LETTER SIMALUNGUN SA;Lo;0;L;;;;;N;;;;;-1BDA;BATAK LETTER MANDAILING SA;Lo;0;L;;;;;N;;;;;-1BDB;BATAK LETTER YA;Lo;0;L;;;;;N;;;;;-1BDC;BATAK LETTER SIMALUNGUN YA;Lo;0;L;;;;;N;;;;;-1BDD;BATAK LETTER NGA;Lo;0;L;;;;;N;;;;;-1BDE;BATAK LETTER LA;Lo;0;L;;;;;N;;;;;-1BDF;BATAK LETTER SIMALUNGUN LA;Lo;0;L;;;;;N;;;;;-1BE0;BATAK LETTER NYA;Lo;0;L;;;;;N;;;;;-1BE1;BATAK LETTER CA;Lo;0;L;;;;;N;;;;;-1BE2;BATAK LETTER NDA;Lo;0;L;;;;;N;;;;;-1BE3;BATAK LETTER MBA;Lo;0;L;;;;;N;;;;;-1BE4;BATAK LETTER I;Lo;0;L;;;;;N;;;;;-1BE5;BATAK LETTER U;Lo;0;L;;;;;N;;;;;-1BE6;BATAK SIGN TOMPI;Mn;7;NSM;;;;;N;;;;;-1BE7;BATAK VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-1BE8;BATAK VOWEL SIGN PAKPAK E;Mn;0;NSM;;;;;N;;;;;-1BE9;BATAK VOWEL SIGN EE;Mn;0;NSM;;;;;N;;;;;-1BEA;BATAK VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-1BEB;BATAK VOWEL SIGN KARO I;Mc;0;L;;;;;N;;;;;-1BEC;BATAK VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-1BED;BATAK VOWEL SIGN KARO O;Mn;0;NSM;;;;;N;;;;;-1BEE;BATAK VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-1BEF;BATAK VOWEL SIGN U FOR SIMALUNGUN SA;Mn;0;NSM;;;;;N;;;;;-1BF0;BATAK CONSONANT SIGN NG;Mn;0;NSM;;;;;N;;;;;-1BF1;BATAK CONSONANT SIGN H;Mn;0;NSM;;;;;N;;;;;-1BF2;BATAK PANGOLAT;Mc;9;L;;;;;N;;;;;-1BF3;BATAK PANONGONAN;Mc;9;L;;;;;N;;;;;-1BFC;BATAK SYMBOL BINDU NA METEK;Po;0;L;;;;;N;;;;;-1BFD;BATAK SYMBOL BINDU PINARBORAS;Po;0;L;;;;;N;;;;;-1BFE;BATAK SYMBOL BINDU JUDUL;Po;0;L;;;;;N;;;;;-1BFF;BATAK SYMBOL BINDU PANGOLAT;Po;0;L;;;;;N;;;;;-1C00;LEPCHA LETTER KA;Lo;0;L;;;;;N;;;;;-1C01;LEPCHA LETTER KLA;Lo;0;L;;;;;N;;;;;-1C02;LEPCHA LETTER KHA;Lo;0;L;;;;;N;;;;;-1C03;LEPCHA LETTER GA;Lo;0;L;;;;;N;;;;;-1C04;LEPCHA LETTER GLA;Lo;0;L;;;;;N;;;;;-1C05;LEPCHA LETTER NGA;Lo;0;L;;;;;N;;;;;-1C06;LEPCHA LETTER CA;Lo;0;L;;;;;N;;;;;-1C07;LEPCHA LETTER CHA;Lo;0;L;;;;;N;;;;;-1C08;LEPCHA LETTER JA;Lo;0;L;;;;;N;;;;;-1C09;LEPCHA LETTER NYA;Lo;0;L;;;;;N;;;;;-1C0A;LEPCHA LETTER TA;Lo;0;L;;;;;N;;;;;-1C0B;LEPCHA LETTER THA;Lo;0;L;;;;;N;;;;;-1C0C;LEPCHA LETTER DA;Lo;0;L;;;;;N;;;;;-1C0D;LEPCHA LETTER NA;Lo;0;L;;;;;N;;;;;-1C0E;LEPCHA LETTER PA;Lo;0;L;;;;;N;;;;;-1C0F;LEPCHA LETTER PLA;Lo;0;L;;;;;N;;;;;-1C10;LEPCHA LETTER PHA;Lo;0;L;;;;;N;;;;;-1C11;LEPCHA LETTER FA;Lo;0;L;;;;;N;;;;;-1C12;LEPCHA LETTER FLA;Lo;0;L;;;;;N;;;;;-1C13;LEPCHA LETTER BA;Lo;0;L;;;;;N;;;;;-1C14;LEPCHA LETTER BLA;Lo;0;L;;;;;N;;;;;-1C15;LEPCHA LETTER MA;Lo;0;L;;;;;N;;;;;-1C16;LEPCHA LETTER MLA;Lo;0;L;;;;;N;;;;;-1C17;LEPCHA LETTER TSA;Lo;0;L;;;;;N;;;;;-1C18;LEPCHA LETTER TSHA;Lo;0;L;;;;;N;;;;;-1C19;LEPCHA LETTER DZA;Lo;0;L;;;;;N;;;;;-1C1A;LEPCHA LETTER YA;Lo;0;L;;;;;N;;;;;-1C1B;LEPCHA LETTER RA;Lo;0;L;;;;;N;;;;;-1C1C;LEPCHA LETTER LA;Lo;0;L;;;;;N;;;;;-1C1D;LEPCHA LETTER HA;Lo;0;L;;;;;N;;;;;-1C1E;LEPCHA LETTER HLA;Lo;0;L;;;;;N;;;;;-1C1F;LEPCHA LETTER VA;Lo;0;L;;;;;N;;;;;-1C20;LEPCHA LETTER SA;Lo;0;L;;;;;N;;;;;-1C21;LEPCHA LETTER SHA;Lo;0;L;;;;;N;;;;;-1C22;LEPCHA LETTER WA;Lo;0;L;;;;;N;;;;;-1C23;LEPCHA LETTER A;Lo;0;L;;;;;N;;;;;-1C24;LEPCHA SUBJOINED LETTER YA;Mc;0;L;;;;;N;;;;;-1C25;LEPCHA SUBJOINED LETTER RA;Mc;0;L;;;;;N;;;;;-1C26;LEPCHA VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-1C27;LEPCHA VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-1C28;LEPCHA VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-1C29;LEPCHA VOWEL SIGN OO;Mc;0;L;;;;;N;;;;;-1C2A;LEPCHA VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-1C2B;LEPCHA VOWEL SIGN UU;Mc;0;L;;;;;N;;;;;-1C2C;LEPCHA VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-1C2D;LEPCHA CONSONANT SIGN K;Mn;0;NSM;;;;;N;;;;;-1C2E;LEPCHA CONSONANT SIGN M;Mn;0;NSM;;;;;N;;;;;-1C2F;LEPCHA CONSONANT SIGN L;Mn;0;NSM;;;;;N;;;;;-1C30;LEPCHA CONSONANT SIGN N;Mn;0;NSM;;;;;N;;;;;-1C31;LEPCHA CONSONANT SIGN P;Mn;0;NSM;;;;;N;;;;;-1C32;LEPCHA CONSONANT SIGN R;Mn;0;NSM;;;;;N;;;;;-1C33;LEPCHA CONSONANT SIGN T;Mn;0;NSM;;;;;N;;;;;-1C34;LEPCHA CONSONANT SIGN NYIN-DO;Mc;0;L;;;;;N;;;;;-1C35;LEPCHA CONSONANT SIGN KANG;Mc;0;L;;;;;N;;;;;-1C36;LEPCHA SIGN RAN;Mn;0;NSM;;;;;N;;;;;-1C37;LEPCHA SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-1C3B;LEPCHA PUNCTUATION TA-ROL;Po;0;L;;;;;N;;;;;-1C3C;LEPCHA PUNCTUATION NYET THYOOM TA-ROL;Po;0;L;;;;;N;;;;;-1C3D;LEPCHA PUNCTUATION CER-WA;Po;0;L;;;;;N;;;;;-1C3E;LEPCHA PUNCTUATION TSHOOK CER-WA;Po;0;L;;;;;N;;;;;-1C3F;LEPCHA PUNCTUATION TSHOOK;Po;0;L;;;;;N;;;;;-1C40;LEPCHA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1C41;LEPCHA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1C42;LEPCHA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1C43;LEPCHA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1C44;LEPCHA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1C45;LEPCHA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1C46;LEPCHA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1C47;LEPCHA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1C48;LEPCHA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1C49;LEPCHA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1C4D;LEPCHA LETTER TTA;Lo;0;L;;;;;N;;;;;-1C4E;LEPCHA LETTER TTHA;Lo;0;L;;;;;N;;;;;-1C4F;LEPCHA LETTER DDA;Lo;0;L;;;;;N;;;;;-1C50;OL CHIKI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-1C51;OL CHIKI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-1C52;OL CHIKI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-1C53;OL CHIKI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1C54;OL CHIKI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1C55;OL CHIKI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1C56;OL CHIKI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1C57;OL CHIKI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1C58;OL CHIKI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1C59;OL CHIKI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1C5A;OL CHIKI LETTER LA;Lo;0;L;;;;;N;;;;;-1C5B;OL CHIKI LETTER AT;Lo;0;L;;;;;N;;;;;-1C5C;OL CHIKI LETTER AG;Lo;0;L;;;;;N;;;;;-1C5D;OL CHIKI LETTER ANG;Lo;0;L;;;;;N;;;;;-1C5E;OL CHIKI LETTER AL;Lo;0;L;;;;;N;;;;;-1C5F;OL CHIKI LETTER LAA;Lo;0;L;;;;;N;;;;;-1C60;OL CHIKI LETTER AAK;Lo;0;L;;;;;N;;;;;-1C61;OL CHIKI LETTER AAJ;Lo;0;L;;;;;N;;;;;-1C62;OL CHIKI LETTER AAM;Lo;0;L;;;;;N;;;;;-1C63;OL CHIKI LETTER AAW;Lo;0;L;;;;;N;;;;;-1C64;OL CHIKI LETTER LI;Lo;0;L;;;;;N;;;;;-1C65;OL CHIKI LETTER IS;Lo;0;L;;;;;N;;;;;-1C66;OL CHIKI LETTER IH;Lo;0;L;;;;;N;;;;;-1C67;OL CHIKI LETTER INY;Lo;0;L;;;;;N;;;;;-1C68;OL CHIKI LETTER IR;Lo;0;L;;;;;N;;;;;-1C69;OL CHIKI LETTER LU;Lo;0;L;;;;;N;;;;;-1C6A;OL CHIKI LETTER UC;Lo;0;L;;;;;N;;;;;-1C6B;OL CHIKI LETTER UD;Lo;0;L;;;;;N;;;;;-1C6C;OL CHIKI LETTER UNN;Lo;0;L;;;;;N;;;;;-1C6D;OL CHIKI LETTER UY;Lo;0;L;;;;;N;;;;;-1C6E;OL CHIKI LETTER LE;Lo;0;L;;;;;N;;;;;-1C6F;OL CHIKI LETTER EP;Lo;0;L;;;;;N;;;;;-1C70;OL CHIKI LETTER EDD;Lo;0;L;;;;;N;;;;;-1C71;OL CHIKI LETTER EN;Lo;0;L;;;;;N;;;;;-1C72;OL CHIKI LETTER ERR;Lo;0;L;;;;;N;;;;;-1C73;OL CHIKI LETTER LO;Lo;0;L;;;;;N;;;;;-1C74;OL CHIKI LETTER OTT;Lo;0;L;;;;;N;;;;;-1C75;OL CHIKI LETTER OB;Lo;0;L;;;;;N;;;;;-1C76;OL CHIKI LETTER OV;Lo;0;L;;;;;N;;;;;-1C77;OL CHIKI LETTER OH;Lo;0;L;;;;;N;;;;;-1C78;OL CHIKI MU TTUDDAG;Lm;0;L;;;;;N;;;;;-1C79;OL CHIKI GAAHLAA TTUDDAAG;Lm;0;L;;;;;N;;;;;-1C7A;OL CHIKI MU-GAAHLAA TTUDDAAG;Lm;0;L;;;;;N;;;;;-1C7B;OL CHIKI RELAA;Lm;0;L;;;;;N;;;;;-1C7C;OL CHIKI PHAARKAA;Lm;0;L;;;;;N;;;;;-1C7D;OL CHIKI AHAD;Lm;0;L;;;;;N;;;;;-1C7E;OL CHIKI PUNCTUATION MUCAAD;Po;0;L;;;;;N;;;;;-1C7F;OL CHIKI PUNCTUATION DOUBLE MUCAAD;Po;0;L;;;;;N;;;;;-1CC0;SUNDANESE PUNCTUATION BINDU SURYA;Po;0;L;;;;;N;;;;;-1CC1;SUNDANESE PUNCTUATION BINDU PANGLONG;Po;0;L;;;;;N;;;;;-1CC2;SUNDANESE PUNCTUATION BINDU PURNAMA;Po;0;L;;;;;N;;;;;-1CC3;SUNDANESE PUNCTUATION BINDU CAKRA;Po;0;L;;;;;N;;;;;-1CC4;SUNDANESE PUNCTUATION BINDU LEU SATANGA;Po;0;L;;;;;N;;;;;-1CC5;SUNDANESE PUNCTUATION BINDU KA SATANGA;Po;0;L;;;;;N;;;;;-1CC6;SUNDANESE PUNCTUATION BINDU DA SATANGA;Po;0;L;;;;;N;;;;;-1CC7;SUNDANESE PUNCTUATION BINDU BA SATANGA;Po;0;L;;;;;N;;;;;-1CD0;VEDIC TONE KARSHANA;Mn;230;NSM;;;;;N;;;;;-1CD1;VEDIC TONE SHARA;Mn;230;NSM;;;;;N;;;;;-1CD2;VEDIC TONE PRENKHA;Mn;230;NSM;;;;;N;;;;;-1CD3;VEDIC SIGN NIHSHVASA;Po;0;L;;;;;N;;;;;-1CD4;VEDIC SIGN YAJURVEDIC MIDLINE SVARITA;Mn;1;NSM;;;;;N;;;;;-1CD5;VEDIC TONE YAJURVEDIC AGGRAVATED INDEPENDENT SVARITA;Mn;220;NSM;;;;;N;;;;;-1CD6;VEDIC TONE YAJURVEDIC INDEPENDENT SVARITA;Mn;220;NSM;;;;;N;;;;;-1CD7;VEDIC TONE YAJURVEDIC KATHAKA INDEPENDENT SVARITA;Mn;220;NSM;;;;;N;;;;;-1CD8;VEDIC TONE CANDRA BELOW;Mn;220;NSM;;;;;N;;;;;-1CD9;VEDIC TONE YAJURVEDIC KATHAKA INDEPENDENT SVARITA SCHROEDER;Mn;220;NSM;;;;;N;;;;;-1CDA;VEDIC TONE DOUBLE SVARITA;Mn;230;NSM;;;;;N;;;;;-1CDB;VEDIC TONE TRIPLE SVARITA;Mn;230;NSM;;;;;N;;;;;-1CDC;VEDIC TONE KATHAKA ANUDATTA;Mn;220;NSM;;;;;N;;;;;-1CDD;VEDIC TONE DOT BELOW;Mn;220;NSM;;;;;N;;;;;-1CDE;VEDIC TONE TWO DOTS BELOW;Mn;220;NSM;;;;;N;;;;;-1CDF;VEDIC TONE THREE DOTS BELOW;Mn;220;NSM;;;;;N;;;;;-1CE0;VEDIC TONE RIGVEDIC KASHMIRI INDEPENDENT SVARITA;Mn;230;NSM;;;;;N;;;;;-1CE1;VEDIC TONE ATHARVAVEDIC INDEPENDENT SVARITA;Mc;0;L;;;;;N;;;;;-1CE2;VEDIC SIGN VISARGA SVARITA;Mn;1;NSM;;;;;N;;;;;-1CE3;VEDIC SIGN VISARGA UDATTA;Mn;1;NSM;;;;;N;;;;;-1CE4;VEDIC SIGN REVERSED VISARGA UDATTA;Mn;1;NSM;;;;;N;;;;;-1CE5;VEDIC SIGN VISARGA ANUDATTA;Mn;1;NSM;;;;;N;;;;;-1CE6;VEDIC SIGN REVERSED VISARGA ANUDATTA;Mn;1;NSM;;;;;N;;;;;-1CE7;VEDIC SIGN VISARGA UDATTA WITH TAIL;Mn;1;NSM;;;;;N;;;;;-1CE8;VEDIC SIGN VISARGA ANUDATTA WITH TAIL;Mn;1;NSM;;;;;N;;;;;-1CE9;VEDIC SIGN ANUSVARA ANTARGOMUKHA;Lo;0;L;;;;;N;;;;;-1CEA;VEDIC SIGN ANUSVARA BAHIRGOMUKHA;Lo;0;L;;;;;N;;;;;-1CEB;VEDIC SIGN ANUSVARA VAMAGOMUKHA;Lo;0;L;;;;;N;;;;;-1CEC;VEDIC SIGN ANUSVARA VAMAGOMUKHA WITH TAIL;Lo;0;L;;;;;N;;;;;-1CED;VEDIC SIGN TIRYAK;Mn;220;NSM;;;;;N;;;;;-1CEE;VEDIC SIGN HEXIFORM LONG ANUSVARA;Lo;0;L;;;;;N;;;;;-1CEF;VEDIC SIGN LONG ANUSVARA;Lo;0;L;;;;;N;;;;;-1CF0;VEDIC SIGN RTHANG LONG ANUSVARA;Lo;0;L;;;;;N;;;;;-1CF1;VEDIC SIGN ANUSVARA UBHAYATO MUKHA;Lo;0;L;;;;;N;;;;;-1CF2;VEDIC SIGN ARDHAVISARGA;Mc;0;L;;;;;N;;;;;-1CF3;VEDIC SIGN ROTATED ARDHAVISARGA;Mc;0;L;;;;;N;;;;;-1CF4;VEDIC TONE CANDRA ABOVE;Mn;230;NSM;;;;;N;;;;;-1CF5;VEDIC SIGN JIHVAMULIYA;Lo;0;L;;;;;N;;;;;-1CF6;VEDIC SIGN UPADHMANIYA;Lo;0;L;;;;;N;;;;;-1CF8;VEDIC TONE RING ABOVE;Mn;230;NSM;;;;;N;;;;;-1CF9;VEDIC TONE DOUBLE RING ABOVE;Mn;230;NSM;;;;;N;;;;;-1D00;LATIN LETTER SMALL CAPITAL A;Ll;0;L;;;;;N;;;;;-1D01;LATIN LETTER SMALL CAPITAL AE;Ll;0;L;;;;;N;;;;;-1D02;LATIN SMALL LETTER TURNED AE;Ll;0;L;;;;;N;;;;;-1D03;LATIN LETTER SMALL CAPITAL BARRED B;Ll;0;L;;;;;N;;;;;-1D04;LATIN LETTER SMALL CAPITAL C;Ll;0;L;;;;;N;;;;;-1D05;LATIN LETTER SMALL CAPITAL D;Ll;0;L;;;;;N;;;;;-1D06;LATIN LETTER SMALL CAPITAL ETH;Ll;0;L;;;;;N;;;;;-1D07;LATIN LETTER SMALL CAPITAL E;Ll;0;L;;;;;N;;;;;-1D08;LATIN SMALL LETTER TURNED OPEN E;Ll;0;L;;;;;N;;;;;-1D09;LATIN SMALL LETTER TURNED I;Ll;0;L;;;;;N;;;;;-1D0A;LATIN LETTER SMALL CAPITAL J;Ll;0;L;;;;;N;;;;;-1D0B;LATIN LETTER SMALL CAPITAL K;Ll;0;L;;;;;N;;;;;-1D0C;LATIN LETTER SMALL CAPITAL L WITH STROKE;Ll;0;L;;;;;N;;;;;-1D0D;LATIN LETTER SMALL CAPITAL M;Ll;0;L;;;;;N;;;;;-1D0E;LATIN LETTER SMALL CAPITAL REVERSED N;Ll;0;L;;;;;N;;;;;-1D0F;LATIN LETTER SMALL CAPITAL O;Ll;0;L;;;;;N;;;;;-1D10;LATIN LETTER SMALL CAPITAL OPEN O;Ll;0;L;;;;;N;;;;;-1D11;LATIN SMALL LETTER SIDEWAYS O;Ll;0;L;;;;;N;;;;;-1D12;LATIN SMALL LETTER SIDEWAYS OPEN O;Ll;0;L;;;;;N;;;;;-1D13;LATIN SMALL LETTER SIDEWAYS O WITH STROKE;Ll;0;L;;;;;N;;;;;-1D14;LATIN SMALL LETTER TURNED OE;Ll;0;L;;;;;N;;;;;-1D15;LATIN LETTER SMALL CAPITAL OU;Ll;0;L;;;;;N;;;;;-1D16;LATIN SMALL LETTER TOP HALF O;Ll;0;L;;;;;N;;;;;-1D17;LATIN SMALL LETTER BOTTOM HALF O;Ll;0;L;;;;;N;;;;;-1D18;LATIN LETTER SMALL CAPITAL P;Ll;0;L;;;;;N;;;;;-1D19;LATIN LETTER SMALL CAPITAL REVERSED R;Ll;0;L;;;;;N;;;;;-1D1A;LATIN LETTER SMALL CAPITAL TURNED R;Ll;0;L;;;;;N;;;;;-1D1B;LATIN LETTER SMALL CAPITAL T;Ll;0;L;;;;;N;;;;;-1D1C;LATIN LETTER SMALL CAPITAL U;Ll;0;L;;;;;N;;;;;-1D1D;LATIN SMALL LETTER SIDEWAYS U;Ll;0;L;;;;;N;;;;;-1D1E;LATIN SMALL LETTER SIDEWAYS DIAERESIZED U;Ll;0;L;;;;;N;;;;;-1D1F;LATIN SMALL LETTER SIDEWAYS TURNED M;Ll;0;L;;;;;N;;;;;-1D20;LATIN LETTER SMALL CAPITAL V;Ll;0;L;;;;;N;;;;;-1D21;LATIN LETTER SMALL CAPITAL W;Ll;0;L;;;;;N;;;;;-1D22;LATIN LETTER SMALL CAPITAL Z;Ll;0;L;;;;;N;;;;;-1D23;LATIN LETTER SMALL CAPITAL EZH;Ll;0;L;;;;;N;;;;;-1D24;LATIN LETTER VOICED LARYNGEAL SPIRANT;Ll;0;L;;;;;N;;;;;-1D25;LATIN LETTER AIN;Ll;0;L;;;;;N;;;;;-1D26;GREEK LETTER SMALL CAPITAL GAMMA;Ll;0;L;;;;;N;;;;;-1D27;GREEK LETTER SMALL CAPITAL LAMDA;Ll;0;L;;;;;N;;;;;-1D28;GREEK LETTER SMALL CAPITAL PI;Ll;0;L;;;;;N;;;;;-1D29;GREEK LETTER SMALL CAPITAL RHO;Ll;0;L;;;;;N;;;;;-1D2A;GREEK LETTER SMALL CAPITAL PSI;Ll;0;L;;;;;N;;;;;-1D2B;CYRILLIC LETTER SMALL CAPITAL EL;Ll;0;L;;;;;N;;;;;-1D2C;MODIFIER LETTER CAPITAL A;Lm;0;L;<super> 0041;;;;N;;;;;-1D2D;MODIFIER LETTER CAPITAL AE;Lm;0;L;<super> 00C6;;;;N;;;;;-1D2E;MODIFIER LETTER CAPITAL B;Lm;0;L;<super> 0042;;;;N;;;;;-1D2F;MODIFIER LETTER CAPITAL BARRED B;Lm;0;L;;;;;N;;;;;-1D30;MODIFIER LETTER CAPITAL D;Lm;0;L;<super> 0044;;;;N;;;;;-1D31;MODIFIER LETTER CAPITAL E;Lm;0;L;<super> 0045;;;;N;;;;;-1D32;MODIFIER LETTER CAPITAL REVERSED E;Lm;0;L;<super> 018E;;;;N;;;;;-1D33;MODIFIER LETTER CAPITAL G;Lm;0;L;<super> 0047;;;;N;;;;;-1D34;MODIFIER LETTER CAPITAL H;Lm;0;L;<super> 0048;;;;N;;;;;-1D35;MODIFIER LETTER CAPITAL I;Lm;0;L;<super> 0049;;;;N;;;;;-1D36;MODIFIER LETTER CAPITAL J;Lm;0;L;<super> 004A;;;;N;;;;;-1D37;MODIFIER LETTER CAPITAL K;Lm;0;L;<super> 004B;;;;N;;;;;-1D38;MODIFIER LETTER CAPITAL L;Lm;0;L;<super> 004C;;;;N;;;;;-1D39;MODIFIER LETTER CAPITAL M;Lm;0;L;<super> 004D;;;;N;;;;;-1D3A;MODIFIER LETTER CAPITAL N;Lm;0;L;<super> 004E;;;;N;;;;;-1D3B;MODIFIER LETTER CAPITAL REVERSED N;Lm;0;L;;;;;N;;;;;-1D3C;MODIFIER LETTER CAPITAL O;Lm;0;L;<super> 004F;;;;N;;;;;-1D3D;MODIFIER LETTER CAPITAL OU;Lm;0;L;<super> 0222;;;;N;;;;;-1D3E;MODIFIER LETTER CAPITAL P;Lm;0;L;<super> 0050;;;;N;;;;;-1D3F;MODIFIER LETTER CAPITAL R;Lm;0;L;<super> 0052;;;;N;;;;;-1D40;MODIFIER LETTER CAPITAL T;Lm;0;L;<super> 0054;;;;N;;;;;-1D41;MODIFIER LETTER CAPITAL U;Lm;0;L;<super> 0055;;;;N;;;;;-1D42;MODIFIER LETTER CAPITAL W;Lm;0;L;<super> 0057;;;;N;;;;;-1D43;MODIFIER LETTER SMALL A;Lm;0;L;<super> 0061;;;;N;;;;;-1D44;MODIFIER LETTER SMALL TURNED A;Lm;0;L;<super> 0250;;;;N;;;;;-1D45;MODIFIER LETTER SMALL ALPHA;Lm;0;L;<super> 0251;;;;N;;;;;-1D46;MODIFIER LETTER SMALL TURNED AE;Lm;0;L;<super> 1D02;;;;N;;;;;-1D47;MODIFIER LETTER SMALL B;Lm;0;L;<super> 0062;;;;N;;;;;-1D48;MODIFIER LETTER SMALL D;Lm;0;L;<super> 0064;;;;N;;;;;-1D49;MODIFIER LETTER SMALL E;Lm;0;L;<super> 0065;;;;N;;;;;-1D4A;MODIFIER LETTER SMALL SCHWA;Lm;0;L;<super> 0259;;;;N;;;;;-1D4B;MODIFIER LETTER SMALL OPEN E;Lm;0;L;<super> 025B;;;;N;;;;;-1D4C;MODIFIER LETTER SMALL TURNED OPEN E;Lm;0;L;<super> 025C;;;;N;;;;;-1D4D;MODIFIER LETTER SMALL G;Lm;0;L;<super> 0067;;;;N;;;;;-1D4E;MODIFIER LETTER SMALL TURNED I;Lm;0;L;;;;;N;;;;;-1D4F;MODIFIER LETTER SMALL K;Lm;0;L;<super> 006B;;;;N;;;;;-1D50;MODIFIER LETTER SMALL M;Lm;0;L;<super> 006D;;;;N;;;;;-1D51;MODIFIER LETTER SMALL ENG;Lm;0;L;<super> 014B;;;;N;;;;;-1D52;MODIFIER LETTER SMALL O;Lm;0;L;<super> 006F;;;;N;;;;;-1D53;MODIFIER LETTER SMALL OPEN O;Lm;0;L;<super> 0254;;;;N;;;;;-1D54;MODIFIER LETTER SMALL TOP HALF O;Lm;0;L;<super> 1D16;;;;N;;;;;-1D55;MODIFIER LETTER SMALL BOTTOM HALF O;Lm;0;L;<super> 1D17;;;;N;;;;;-1D56;MODIFIER LETTER SMALL P;Lm;0;L;<super> 0070;;;;N;;;;;-1D57;MODIFIER LETTER SMALL T;Lm;0;L;<super> 0074;;;;N;;;;;-1D58;MODIFIER LETTER SMALL U;Lm;0;L;<super> 0075;;;;N;;;;;-1D59;MODIFIER LETTER SMALL SIDEWAYS U;Lm;0;L;<super> 1D1D;;;;N;;;;;-1D5A;MODIFIER LETTER SMALL TURNED M;Lm;0;L;<super> 026F;;;;N;;;;;-1D5B;MODIFIER LETTER SMALL V;Lm;0;L;<super> 0076;;;;N;;;;;-1D5C;MODIFIER LETTER SMALL AIN;Lm;0;L;<super> 1D25;;;;N;;;;;-1D5D;MODIFIER LETTER SMALL BETA;Lm;0;L;<super> 03B2;;;;N;;;;;-1D5E;MODIFIER LETTER SMALL GREEK GAMMA;Lm;0;L;<super> 03B3;;;;N;;;;;-1D5F;MODIFIER LETTER SMALL DELTA;Lm;0;L;<super> 03B4;;;;N;;;;;-1D60;MODIFIER LETTER SMALL GREEK PHI;Lm;0;L;<super> 03C6;;;;N;;;;;-1D61;MODIFIER LETTER SMALL CHI;Lm;0;L;<super> 03C7;;;;N;;;;;-1D62;LATIN SUBSCRIPT SMALL LETTER I;Lm;0;L;<sub> 0069;;;;N;;;;;-1D63;LATIN SUBSCRIPT SMALL LETTER R;Lm;0;L;<sub> 0072;;;;N;;;;;-1D64;LATIN SUBSCRIPT SMALL LETTER U;Lm;0;L;<sub> 0075;;;;N;;;;;-1D65;LATIN SUBSCRIPT SMALL LETTER V;Lm;0;L;<sub> 0076;;;;N;;;;;-1D66;GREEK SUBSCRIPT SMALL LETTER BETA;Lm;0;L;<sub> 03B2;;;;N;;;;;-1D67;GREEK SUBSCRIPT SMALL LETTER GAMMA;Lm;0;L;<sub> 03B3;;;;N;;;;;-1D68;GREEK SUBSCRIPT SMALL LETTER RHO;Lm;0;L;<sub> 03C1;;;;N;;;;;-1D69;GREEK SUBSCRIPT SMALL LETTER PHI;Lm;0;L;<sub> 03C6;;;;N;;;;;-1D6A;GREEK SUBSCRIPT SMALL LETTER CHI;Lm;0;L;<sub> 03C7;;;;N;;;;;-1D6B;LATIN SMALL LETTER UE;Ll;0;L;;;;;N;;;;;-1D6C;LATIN SMALL LETTER B WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D6D;LATIN SMALL LETTER D WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D6E;LATIN SMALL LETTER F WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D6F;LATIN SMALL LETTER M WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D70;LATIN SMALL LETTER N WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D71;LATIN SMALL LETTER P WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D72;LATIN SMALL LETTER R WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D73;LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D74;LATIN SMALL LETTER S WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D75;LATIN SMALL LETTER T WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D76;LATIN SMALL LETTER Z WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-1D77;LATIN SMALL LETTER TURNED G;Ll;0;L;;;;;N;;;;;-1D78;MODIFIER LETTER CYRILLIC EN;Lm;0;L;<super> 043D;;;;N;;;;;-1D79;LATIN SMALL LETTER INSULAR G;Ll;0;L;;;;;N;;;A77D;;A77D-1D7A;LATIN SMALL LETTER TH WITH STRIKETHROUGH;Ll;0;L;;;;;N;;;;;-1D7B;LATIN SMALL CAPITAL LETTER I WITH STROKE;Ll;0;L;;;;;N;;;;;-1D7C;LATIN SMALL LETTER IOTA WITH STROKE;Ll;0;L;;;;;N;;;;;-1D7D;LATIN SMALL LETTER P WITH STROKE;Ll;0;L;;;;;N;;;2C63;;2C63-1D7E;LATIN SMALL CAPITAL LETTER U WITH STROKE;Ll;0;L;;;;;N;;;;;-1D7F;LATIN SMALL LETTER UPSILON WITH STROKE;Ll;0;L;;;;;N;;;;;-1D80;LATIN SMALL LETTER B WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D81;LATIN SMALL LETTER D WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D82;LATIN SMALL LETTER F WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D83;LATIN SMALL LETTER G WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D84;LATIN SMALL LETTER K WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D85;LATIN SMALL LETTER L WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D86;LATIN SMALL LETTER M WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D87;LATIN SMALL LETTER N WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D88;LATIN SMALL LETTER P WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D89;LATIN SMALL LETTER R WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D8A;LATIN SMALL LETTER S WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D8B;LATIN SMALL LETTER ESH WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D8C;LATIN SMALL LETTER V WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D8D;LATIN SMALL LETTER X WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D8E;LATIN SMALL LETTER Z WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-1D8F;LATIN SMALL LETTER A WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D90;LATIN SMALL LETTER ALPHA WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D91;LATIN SMALL LETTER D WITH HOOK AND TAIL;Ll;0;L;;;;;N;;;;;-1D92;LATIN SMALL LETTER E WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D93;LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D94;LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D95;LATIN SMALL LETTER SCHWA WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D96;LATIN SMALL LETTER I WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D97;LATIN SMALL LETTER OPEN O WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D98;LATIN SMALL LETTER ESH WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D99;LATIN SMALL LETTER U WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D9A;LATIN SMALL LETTER EZH WITH RETROFLEX HOOK;Ll;0;L;;;;;N;;;;;-1D9B;MODIFIER LETTER SMALL TURNED ALPHA;Lm;0;L;<super> 0252;;;;N;;;;;-1D9C;MODIFIER LETTER SMALL C;Lm;0;L;<super> 0063;;;;N;;;;;-1D9D;MODIFIER LETTER SMALL C WITH CURL;Lm;0;L;<super> 0255;;;;N;;;;;-1D9E;MODIFIER LETTER SMALL ETH;Lm;0;L;<super> 00F0;;;;N;;;;;-1D9F;MODIFIER LETTER SMALL REVERSED OPEN E;Lm;0;L;<super> 025C;;;;N;;;;;-1DA0;MODIFIER LETTER SMALL F;Lm;0;L;<super> 0066;;;;N;;;;;-1DA1;MODIFIER LETTER SMALL DOTLESS J WITH STROKE;Lm;0;L;<super> 025F;;;;N;;;;;-1DA2;MODIFIER LETTER SMALL SCRIPT G;Lm;0;L;<super> 0261;;;;N;;;;;-1DA3;MODIFIER LETTER SMALL TURNED H;Lm;0;L;<super> 0265;;;;N;;;;;-1DA4;MODIFIER LETTER SMALL I WITH STROKE;Lm;0;L;<super> 0268;;;;N;;;;;-1DA5;MODIFIER LETTER SMALL IOTA;Lm;0;L;<super> 0269;;;;N;;;;;-1DA6;MODIFIER LETTER SMALL CAPITAL I;Lm;0;L;<super> 026A;;;;N;;;;;-1DA7;MODIFIER LETTER SMALL CAPITAL I WITH STROKE;Lm;0;L;<super> 1D7B;;;;N;;;;;-1DA8;MODIFIER LETTER SMALL J WITH CROSSED-TAIL;Lm;0;L;<super> 029D;;;;N;;;;;-1DA9;MODIFIER LETTER SMALL L WITH RETROFLEX HOOK;Lm;0;L;<super> 026D;;;;N;;;;;-1DAA;MODIFIER LETTER SMALL L WITH PALATAL HOOK;Lm;0;L;<super> 1D85;;;;N;;;;;-1DAB;MODIFIER LETTER SMALL CAPITAL L;Lm;0;L;<super> 029F;;;;N;;;;;-1DAC;MODIFIER LETTER SMALL M WITH HOOK;Lm;0;L;<super> 0271;;;;N;;;;;-1DAD;MODIFIER LETTER SMALL TURNED M WITH LONG LEG;Lm;0;L;<super> 0270;;;;N;;;;;-1DAE;MODIFIER LETTER SMALL N WITH LEFT HOOK;Lm;0;L;<super> 0272;;;;N;;;;;-1DAF;MODIFIER LETTER SMALL N WITH RETROFLEX HOOK;Lm;0;L;<super> 0273;;;;N;;;;;-1DB0;MODIFIER LETTER SMALL CAPITAL N;Lm;0;L;<super> 0274;;;;N;;;;;-1DB1;MODIFIER LETTER SMALL BARRED O;Lm;0;L;<super> 0275;;;;N;;;;;-1DB2;MODIFIER LETTER SMALL PHI;Lm;0;L;<super> 0278;;;;N;;;;;-1DB3;MODIFIER LETTER SMALL S WITH HOOK;Lm;0;L;<super> 0282;;;;N;;;;;-1DB4;MODIFIER LETTER SMALL ESH;Lm;0;L;<super> 0283;;;;N;;;;;-1DB5;MODIFIER LETTER SMALL T WITH PALATAL HOOK;Lm;0;L;<super> 01AB;;;;N;;;;;-1DB6;MODIFIER LETTER SMALL U BAR;Lm;0;L;<super> 0289;;;;N;;;;;-1DB7;MODIFIER LETTER SMALL UPSILON;Lm;0;L;<super> 028A;;;;N;;;;;-1DB8;MODIFIER LETTER SMALL CAPITAL U;Lm;0;L;<super> 1D1C;;;;N;;;;;-1DB9;MODIFIER LETTER SMALL V WITH HOOK;Lm;0;L;<super> 028B;;;;N;;;;;-1DBA;MODIFIER LETTER SMALL TURNED V;Lm;0;L;<super> 028C;;;;N;;;;;-1DBB;MODIFIER LETTER SMALL Z;Lm;0;L;<super> 007A;;;;N;;;;;-1DBC;MODIFIER LETTER SMALL Z WITH RETROFLEX HOOK;Lm;0;L;<super> 0290;;;;N;;;;;-1DBD;MODIFIER LETTER SMALL Z WITH CURL;Lm;0;L;<super> 0291;;;;N;;;;;-1DBE;MODIFIER LETTER SMALL EZH;Lm;0;L;<super> 0292;;;;N;;;;;-1DBF;MODIFIER LETTER SMALL THETA;Lm;0;L;<super> 03B8;;;;N;;;;;-1DC0;COMBINING DOTTED GRAVE ACCENT;Mn;230;NSM;;;;;N;;;;;-1DC1;COMBINING DOTTED ACUTE ACCENT;Mn;230;NSM;;;;;N;;;;;-1DC2;COMBINING SNAKE BELOW;Mn;220;NSM;;;;;N;;;;;-1DC3;COMBINING SUSPENSION MARK;Mn;230;NSM;;;;;N;;;;;-1DC4;COMBINING MACRON-ACUTE;Mn;230;NSM;;;;;N;;;;;-1DC5;COMBINING GRAVE-MACRON;Mn;230;NSM;;;;;N;;;;;-1DC6;COMBINING MACRON-GRAVE;Mn;230;NSM;;;;;N;;;;;-1DC7;COMBINING ACUTE-MACRON;Mn;230;NSM;;;;;N;;;;;-1DC8;COMBINING GRAVE-ACUTE-GRAVE;Mn;230;NSM;;;;;N;;;;;-1DC9;COMBINING ACUTE-GRAVE-ACUTE;Mn;230;NSM;;;;;N;;;;;-1DCA;COMBINING LATIN SMALL LETTER R BELOW;Mn;220;NSM;;;;;N;;;;;-1DCB;COMBINING BREVE-MACRON;Mn;230;NSM;;;;;N;;;;;-1DCC;COMBINING MACRON-BREVE;Mn;230;NSM;;;;;N;;;;;-1DCD;COMBINING DOUBLE CIRCUMFLEX ABOVE;Mn;234;NSM;;;;;N;;;;;-1DCE;COMBINING OGONEK ABOVE;Mn;214;NSM;;;;;N;;;;;-1DCF;COMBINING ZIGZAG BELOW;Mn;220;NSM;;;;;N;;;;;-1DD0;COMBINING IS BELOW;Mn;202;NSM;;;;;N;;;;;-1DD1;COMBINING UR ABOVE;Mn;230;NSM;;;;;N;;;;;-1DD2;COMBINING US ABOVE;Mn;230;NSM;;;;;N;;;;;-1DD3;COMBINING LATIN SMALL LETTER FLATTENED OPEN A ABOVE;Mn;230;NSM;;;;;N;;;;;-1DD4;COMBINING LATIN SMALL LETTER AE;Mn;230;NSM;;;;;N;;;;;-1DD5;COMBINING LATIN SMALL LETTER AO;Mn;230;NSM;;;;;N;;;;;-1DD6;COMBINING LATIN SMALL LETTER AV;Mn;230;NSM;;;;;N;;;;;-1DD7;COMBINING LATIN SMALL LETTER C CEDILLA;Mn;230;NSM;;;;;N;;;;;-1DD8;COMBINING LATIN SMALL LETTER INSULAR D;Mn;230;NSM;;;;;N;;;;;-1DD9;COMBINING LATIN SMALL LETTER ETH;Mn;230;NSM;;;;;N;;;;;-1DDA;COMBINING LATIN SMALL LETTER G;Mn;230;NSM;;;;;N;;;;;-1DDB;COMBINING LATIN LETTER SMALL CAPITAL G;Mn;230;NSM;;;;;N;;;;;-1DDC;COMBINING LATIN SMALL LETTER K;Mn;230;NSM;;;;;N;;;;;-1DDD;COMBINING LATIN SMALL LETTER L;Mn;230;NSM;;;;;N;;;;;-1DDE;COMBINING LATIN LETTER SMALL CAPITAL L;Mn;230;NSM;;;;;N;;;;;-1DDF;COMBINING LATIN LETTER SMALL CAPITAL M;Mn;230;NSM;;;;;N;;;;;-1DE0;COMBINING LATIN SMALL LETTER N;Mn;230;NSM;;;;;N;;;;;-1DE1;COMBINING LATIN LETTER SMALL CAPITAL N;Mn;230;NSM;;;;;N;;;;;-1DE2;COMBINING LATIN LETTER SMALL CAPITAL R;Mn;230;NSM;;;;;N;;;;;-1DE3;COMBINING LATIN SMALL LETTER R ROTUNDA;Mn;230;NSM;;;;;N;;;;;-1DE4;COMBINING LATIN SMALL LETTER S;Mn;230;NSM;;;;;N;;;;;-1DE5;COMBINING LATIN SMALL LETTER LONG S;Mn;230;NSM;;;;;N;;;;;-1DE6;COMBINING LATIN SMALL LETTER Z;Mn;230;NSM;;;;;N;;;;;-1DE7;COMBINING LATIN SMALL LETTER ALPHA;Mn;230;NSM;;;;;N;;;;;-1DE8;COMBINING LATIN SMALL LETTER B;Mn;230;NSM;;;;;N;;;;;-1DE9;COMBINING LATIN SMALL LETTER BETA;Mn;230;NSM;;;;;N;;;;;-1DEA;COMBINING LATIN SMALL LETTER SCHWA;Mn;230;NSM;;;;;N;;;;;-1DEB;COMBINING LATIN SMALL LETTER F;Mn;230;NSM;;;;;N;;;;;-1DEC;COMBINING LATIN SMALL LETTER L WITH DOUBLE MIDDLE TILDE;Mn;230;NSM;;;;;N;;;;;-1DED;COMBINING LATIN SMALL LETTER O WITH LIGHT CENTRALIZATION STROKE;Mn;230;NSM;;;;;N;;;;;-1DEE;COMBINING LATIN SMALL LETTER P;Mn;230;NSM;;;;;N;;;;;-1DEF;COMBINING LATIN SMALL LETTER ESH;Mn;230;NSM;;;;;N;;;;;-1DF0;COMBINING LATIN SMALL LETTER U WITH LIGHT CENTRALIZATION STROKE;Mn;230;NSM;;;;;N;;;;;-1DF1;COMBINING LATIN SMALL LETTER W;Mn;230;NSM;;;;;N;;;;;-1DF2;COMBINING LATIN SMALL LETTER A WITH DIAERESIS;Mn;230;NSM;;;;;N;;;;;-1DF3;COMBINING LATIN SMALL LETTER O WITH DIAERESIS;Mn;230;NSM;;;;;N;;;;;-1DF4;COMBINING LATIN SMALL LETTER U WITH DIAERESIS;Mn;230;NSM;;;;;N;;;;;-1DF5;COMBINING UP TACK ABOVE;Mn;230;NSM;;;;;N;;;;;-1DFC;COMBINING DOUBLE INVERTED BREVE BELOW;Mn;233;NSM;;;;;N;;;;;-1DFD;COMBINING ALMOST EQUAL TO BELOW;Mn;220;NSM;;;;;N;;;;;-1DFE;COMBINING LEFT ARROWHEAD ABOVE;Mn;230;NSM;;;;;N;;;;;-1DFF;COMBINING RIGHT ARROWHEAD AND DOWN ARROWHEAD BELOW;Mn;220;NSM;;;;;N;;;;;-1E00;LATIN CAPITAL LETTER A WITH RING BELOW;Lu;0;L;0041 0325;;;;N;;;;1E01;-1E01;LATIN SMALL LETTER A WITH RING BELOW;Ll;0;L;0061 0325;;;;N;;;1E00;;1E00-1E02;LATIN CAPITAL LETTER B WITH DOT ABOVE;Lu;0;L;0042 0307;;;;N;;;;1E03;-1E03;LATIN SMALL LETTER B WITH DOT ABOVE;Ll;0;L;0062 0307;;;;N;;;1E02;;1E02-1E04;LATIN CAPITAL LETTER B WITH DOT BELOW;Lu;0;L;0042 0323;;;;N;;;;1E05;-1E05;LATIN SMALL LETTER B WITH DOT BELOW;Ll;0;L;0062 0323;;;;N;;;1E04;;1E04-1E06;LATIN CAPITAL LETTER B WITH LINE BELOW;Lu;0;L;0042 0331;;;;N;;;;1E07;-1E07;LATIN SMALL LETTER B WITH LINE BELOW;Ll;0;L;0062 0331;;;;N;;;1E06;;1E06-1E08;LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE;Lu;0;L;00C7 0301;;;;N;;;;1E09;-1E09;LATIN SMALL LETTER C WITH CEDILLA AND ACUTE;Ll;0;L;00E7 0301;;;;N;;;1E08;;1E08-1E0A;LATIN CAPITAL LETTER D WITH DOT ABOVE;Lu;0;L;0044 0307;;;;N;;;;1E0B;-1E0B;LATIN SMALL LETTER D WITH DOT ABOVE;Ll;0;L;0064 0307;;;;N;;;1E0A;;1E0A-1E0C;LATIN CAPITAL LETTER D WITH DOT BELOW;Lu;0;L;0044 0323;;;;N;;;;1E0D;-1E0D;LATIN SMALL LETTER D WITH DOT BELOW;Ll;0;L;0064 0323;;;;N;;;1E0C;;1E0C-1E0E;LATIN CAPITAL LETTER D WITH LINE BELOW;Lu;0;L;0044 0331;;;;N;;;;1E0F;-1E0F;LATIN SMALL LETTER D WITH LINE BELOW;Ll;0;L;0064 0331;;;;N;;;1E0E;;1E0E-1E10;LATIN CAPITAL LETTER D WITH CEDILLA;Lu;0;L;0044 0327;;;;N;;;;1E11;-1E11;LATIN SMALL LETTER D WITH CEDILLA;Ll;0;L;0064 0327;;;;N;;;1E10;;1E10-1E12;LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW;Lu;0;L;0044 032D;;;;N;;;;1E13;-1E13;LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW;Ll;0;L;0064 032D;;;;N;;;1E12;;1E12-1E14;LATIN CAPITAL LETTER E WITH MACRON AND GRAVE;Lu;0;L;0112 0300;;;;N;;;;1E15;-1E15;LATIN SMALL LETTER E WITH MACRON AND GRAVE;Ll;0;L;0113 0300;;;;N;;;1E14;;1E14-1E16;LATIN CAPITAL LETTER E WITH MACRON AND ACUTE;Lu;0;L;0112 0301;;;;N;;;;1E17;-1E17;LATIN SMALL LETTER E WITH MACRON AND ACUTE;Ll;0;L;0113 0301;;;;N;;;1E16;;1E16-1E18;LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW;Lu;0;L;0045 032D;;;;N;;;;1E19;-1E19;LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW;Ll;0;L;0065 032D;;;;N;;;1E18;;1E18-1E1A;LATIN CAPITAL LETTER E WITH TILDE BELOW;Lu;0;L;0045 0330;;;;N;;;;1E1B;-1E1B;LATIN SMALL LETTER E WITH TILDE BELOW;Ll;0;L;0065 0330;;;;N;;;1E1A;;1E1A-1E1C;LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE;Lu;0;L;0228 0306;;;;N;;;;1E1D;-1E1D;LATIN SMALL LETTER E WITH CEDILLA AND BREVE;Ll;0;L;0229 0306;;;;N;;;1E1C;;1E1C-1E1E;LATIN CAPITAL LETTER F WITH DOT ABOVE;Lu;0;L;0046 0307;;;;N;;;;1E1F;-1E1F;LATIN SMALL LETTER F WITH DOT ABOVE;Ll;0;L;0066 0307;;;;N;;;1E1E;;1E1E-1E20;LATIN CAPITAL LETTER G WITH MACRON;Lu;0;L;0047 0304;;;;N;;;;1E21;-1E21;LATIN SMALL LETTER G WITH MACRON;Ll;0;L;0067 0304;;;;N;;;1E20;;1E20-1E22;LATIN CAPITAL LETTER H WITH DOT ABOVE;Lu;0;L;0048 0307;;;;N;;;;1E23;-1E23;LATIN SMALL LETTER H WITH DOT ABOVE;Ll;0;L;0068 0307;;;;N;;;1E22;;1E22-1E24;LATIN CAPITAL LETTER H WITH DOT BELOW;Lu;0;L;0048 0323;;;;N;;;;1E25;-1E25;LATIN SMALL LETTER H WITH DOT BELOW;Ll;0;L;0068 0323;;;;N;;;1E24;;1E24-1E26;LATIN CAPITAL LETTER H WITH DIAERESIS;Lu;0;L;0048 0308;;;;N;;;;1E27;-1E27;LATIN SMALL LETTER H WITH DIAERESIS;Ll;0;L;0068 0308;;;;N;;;1E26;;1E26-1E28;LATIN CAPITAL LETTER H WITH CEDILLA;Lu;0;L;0048 0327;;;;N;;;;1E29;-1E29;LATIN SMALL LETTER H WITH CEDILLA;Ll;0;L;0068 0327;;;;N;;;1E28;;1E28-1E2A;LATIN CAPITAL LETTER H WITH BREVE BELOW;Lu;0;L;0048 032E;;;;N;;;;1E2B;-1E2B;LATIN SMALL LETTER H WITH BREVE BELOW;Ll;0;L;0068 032E;;;;N;;;1E2A;;1E2A-1E2C;LATIN CAPITAL LETTER I WITH TILDE BELOW;Lu;0;L;0049 0330;;;;N;;;;1E2D;-1E2D;LATIN SMALL LETTER I WITH TILDE BELOW;Ll;0;L;0069 0330;;;;N;;;1E2C;;1E2C-1E2E;LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE;Lu;0;L;00CF 0301;;;;N;;;;1E2F;-1E2F;LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE;Ll;0;L;00EF 0301;;;;N;;;1E2E;;1E2E-1E30;LATIN CAPITAL LETTER K WITH ACUTE;Lu;0;L;004B 0301;;;;N;;;;1E31;-1E31;LATIN SMALL LETTER K WITH ACUTE;Ll;0;L;006B 0301;;;;N;;;1E30;;1E30-1E32;LATIN CAPITAL LETTER K WITH DOT BELOW;Lu;0;L;004B 0323;;;;N;;;;1E33;-1E33;LATIN SMALL LETTER K WITH DOT BELOW;Ll;0;L;006B 0323;;;;N;;;1E32;;1E32-1E34;LATIN CAPITAL LETTER K WITH LINE BELOW;Lu;0;L;004B 0331;;;;N;;;;1E35;-1E35;LATIN SMALL LETTER K WITH LINE BELOW;Ll;0;L;006B 0331;;;;N;;;1E34;;1E34-1E36;LATIN CAPITAL LETTER L WITH DOT BELOW;Lu;0;L;004C 0323;;;;N;;;;1E37;-1E37;LATIN SMALL LETTER L WITH DOT BELOW;Ll;0;L;006C 0323;;;;N;;;1E36;;1E36-1E38;LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON;Lu;0;L;1E36 0304;;;;N;;;;1E39;-1E39;LATIN SMALL LETTER L WITH DOT BELOW AND MACRON;Ll;0;L;1E37 0304;;;;N;;;1E38;;1E38-1E3A;LATIN CAPITAL LETTER L WITH LINE BELOW;Lu;0;L;004C 0331;;;;N;;;;1E3B;-1E3B;LATIN SMALL LETTER L WITH LINE BELOW;Ll;0;L;006C 0331;;;;N;;;1E3A;;1E3A-1E3C;LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW;Lu;0;L;004C 032D;;;;N;;;;1E3D;-1E3D;LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW;Ll;0;L;006C 032D;;;;N;;;1E3C;;1E3C-1E3E;LATIN CAPITAL LETTER M WITH ACUTE;Lu;0;L;004D 0301;;;;N;;;;1E3F;-1E3F;LATIN SMALL LETTER M WITH ACUTE;Ll;0;L;006D 0301;;;;N;;;1E3E;;1E3E-1E40;LATIN CAPITAL LETTER M WITH DOT ABOVE;Lu;0;L;004D 0307;;;;N;;;;1E41;-1E41;LATIN SMALL LETTER M WITH DOT ABOVE;Ll;0;L;006D 0307;;;;N;;;1E40;;1E40-1E42;LATIN CAPITAL LETTER M WITH DOT BELOW;Lu;0;L;004D 0323;;;;N;;;;1E43;-1E43;LATIN SMALL LETTER M WITH DOT BELOW;Ll;0;L;006D 0323;;;;N;;;1E42;;1E42-1E44;LATIN CAPITAL LETTER N WITH DOT ABOVE;Lu;0;L;004E 0307;;;;N;;;;1E45;-1E45;LATIN SMALL LETTER N WITH DOT ABOVE;Ll;0;L;006E 0307;;;;N;;;1E44;;1E44-1E46;LATIN CAPITAL LETTER N WITH DOT BELOW;Lu;0;L;004E 0323;;;;N;;;;1E47;-1E47;LATIN SMALL LETTER N WITH DOT BELOW;Ll;0;L;006E 0323;;;;N;;;1E46;;1E46-1E48;LATIN CAPITAL LETTER N WITH LINE BELOW;Lu;0;L;004E 0331;;;;N;;;;1E49;-1E49;LATIN SMALL LETTER N WITH LINE BELOW;Ll;0;L;006E 0331;;;;N;;;1E48;;1E48-1E4A;LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW;Lu;0;L;004E 032D;;;;N;;;;1E4B;-1E4B;LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW;Ll;0;L;006E 032D;;;;N;;;1E4A;;1E4A-1E4C;LATIN CAPITAL LETTER O WITH TILDE AND ACUTE;Lu;0;L;00D5 0301;;;;N;;;;1E4D;-1E4D;LATIN SMALL LETTER O WITH TILDE AND ACUTE;Ll;0;L;00F5 0301;;;;N;;;1E4C;;1E4C-1E4E;LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS;Lu;0;L;00D5 0308;;;;N;;;;1E4F;-1E4F;LATIN SMALL LETTER O WITH TILDE AND DIAERESIS;Ll;0;L;00F5 0308;;;;N;;;1E4E;;1E4E-1E50;LATIN CAPITAL LETTER O WITH MACRON AND GRAVE;Lu;0;L;014C 0300;;;;N;;;;1E51;-1E51;LATIN SMALL LETTER O WITH MACRON AND GRAVE;Ll;0;L;014D 0300;;;;N;;;1E50;;1E50-1E52;LATIN CAPITAL LETTER O WITH MACRON AND ACUTE;Lu;0;L;014C 0301;;;;N;;;;1E53;-1E53;LATIN SMALL LETTER O WITH MACRON AND ACUTE;Ll;0;L;014D 0301;;;;N;;;1E52;;1E52-1E54;LATIN CAPITAL LETTER P WITH ACUTE;Lu;0;L;0050 0301;;;;N;;;;1E55;-1E55;LATIN SMALL LETTER P WITH ACUTE;Ll;0;L;0070 0301;;;;N;;;1E54;;1E54-1E56;LATIN CAPITAL LETTER P WITH DOT ABOVE;Lu;0;L;0050 0307;;;;N;;;;1E57;-1E57;LATIN SMALL LETTER P WITH DOT ABOVE;Ll;0;L;0070 0307;;;;N;;;1E56;;1E56-1E58;LATIN CAPITAL LETTER R WITH DOT ABOVE;Lu;0;L;0052 0307;;;;N;;;;1E59;-1E59;LATIN SMALL LETTER R WITH DOT ABOVE;Ll;0;L;0072 0307;;;;N;;;1E58;;1E58-1E5A;LATIN CAPITAL LETTER R WITH DOT BELOW;Lu;0;L;0052 0323;;;;N;;;;1E5B;-1E5B;LATIN SMALL LETTER R WITH DOT BELOW;Ll;0;L;0072 0323;;;;N;;;1E5A;;1E5A-1E5C;LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON;Lu;0;L;1E5A 0304;;;;N;;;;1E5D;-1E5D;LATIN SMALL LETTER R WITH DOT BELOW AND MACRON;Ll;0;L;1E5B 0304;;;;N;;;1E5C;;1E5C-1E5E;LATIN CAPITAL LETTER R WITH LINE BELOW;Lu;0;L;0052 0331;;;;N;;;;1E5F;-1E5F;LATIN SMALL LETTER R WITH LINE BELOW;Ll;0;L;0072 0331;;;;N;;;1E5E;;1E5E-1E60;LATIN CAPITAL LETTER S WITH DOT ABOVE;Lu;0;L;0053 0307;;;;N;;;;1E61;-1E61;LATIN SMALL LETTER S WITH DOT ABOVE;Ll;0;L;0073 0307;;;;N;;;1E60;;1E60-1E62;LATIN CAPITAL LETTER S WITH DOT BELOW;Lu;0;L;0053 0323;;;;N;;;;1E63;-1E63;LATIN SMALL LETTER S WITH DOT BELOW;Ll;0;L;0073 0323;;;;N;;;1E62;;1E62-1E64;LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE;Lu;0;L;015A 0307;;;;N;;;;1E65;-1E65;LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE;Ll;0;L;015B 0307;;;;N;;;1E64;;1E64-1E66;LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE;Lu;0;L;0160 0307;;;;N;;;;1E67;-1E67;LATIN SMALL LETTER S WITH CARON AND DOT ABOVE;Ll;0;L;0161 0307;;;;N;;;1E66;;1E66-1E68;LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE;Lu;0;L;1E62 0307;;;;N;;;;1E69;-1E69;LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE;Ll;0;L;1E63 0307;;;;N;;;1E68;;1E68-1E6A;LATIN CAPITAL LETTER T WITH DOT ABOVE;Lu;0;L;0054 0307;;;;N;;;;1E6B;-1E6B;LATIN SMALL LETTER T WITH DOT ABOVE;Ll;0;L;0074 0307;;;;N;;;1E6A;;1E6A-1E6C;LATIN CAPITAL LETTER T WITH DOT BELOW;Lu;0;L;0054 0323;;;;N;;;;1E6D;-1E6D;LATIN SMALL LETTER T WITH DOT BELOW;Ll;0;L;0074 0323;;;;N;;;1E6C;;1E6C-1E6E;LATIN CAPITAL LETTER T WITH LINE BELOW;Lu;0;L;0054 0331;;;;N;;;;1E6F;-1E6F;LATIN SMALL LETTER T WITH LINE BELOW;Ll;0;L;0074 0331;;;;N;;;1E6E;;1E6E-1E70;LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW;Lu;0;L;0054 032D;;;;N;;;;1E71;-1E71;LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW;Ll;0;L;0074 032D;;;;N;;;1E70;;1E70-1E72;LATIN CAPITAL LETTER U WITH DIAERESIS BELOW;Lu;0;L;0055 0324;;;;N;;;;1E73;-1E73;LATIN SMALL LETTER U WITH DIAERESIS BELOW;Ll;0;L;0075 0324;;;;N;;;1E72;;1E72-1E74;LATIN CAPITAL LETTER U WITH TILDE BELOW;Lu;0;L;0055 0330;;;;N;;;;1E75;-1E75;LATIN SMALL LETTER U WITH TILDE BELOW;Ll;0;L;0075 0330;;;;N;;;1E74;;1E74-1E76;LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW;Lu;0;L;0055 032D;;;;N;;;;1E77;-1E77;LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW;Ll;0;L;0075 032D;;;;N;;;1E76;;1E76-1E78;LATIN CAPITAL LETTER U WITH TILDE AND ACUTE;Lu;0;L;0168 0301;;;;N;;;;1E79;-1E79;LATIN SMALL LETTER U WITH TILDE AND ACUTE;Ll;0;L;0169 0301;;;;N;;;1E78;;1E78-1E7A;LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS;Lu;0;L;016A 0308;;;;N;;;;1E7B;-1E7B;LATIN SMALL LETTER U WITH MACRON AND DIAERESIS;Ll;0;L;016B 0308;;;;N;;;1E7A;;1E7A-1E7C;LATIN CAPITAL LETTER V WITH TILDE;Lu;0;L;0056 0303;;;;N;;;;1E7D;-1E7D;LATIN SMALL LETTER V WITH TILDE;Ll;0;L;0076 0303;;;;N;;;1E7C;;1E7C-1E7E;LATIN CAPITAL LETTER V WITH DOT BELOW;Lu;0;L;0056 0323;;;;N;;;;1E7F;-1E7F;LATIN SMALL LETTER V WITH DOT BELOW;Ll;0;L;0076 0323;;;;N;;;1E7E;;1E7E-1E80;LATIN CAPITAL LETTER W WITH GRAVE;Lu;0;L;0057 0300;;;;N;;;;1E81;-1E81;LATIN SMALL LETTER W WITH GRAVE;Ll;0;L;0077 0300;;;;N;;;1E80;;1E80-1E82;LATIN CAPITAL LETTER W WITH ACUTE;Lu;0;L;0057 0301;;;;N;;;;1E83;-1E83;LATIN SMALL LETTER W WITH ACUTE;Ll;0;L;0077 0301;;;;N;;;1E82;;1E82-1E84;LATIN CAPITAL LETTER W WITH DIAERESIS;Lu;0;L;0057 0308;;;;N;;;;1E85;-1E85;LATIN SMALL LETTER W WITH DIAERESIS;Ll;0;L;0077 0308;;;;N;;;1E84;;1E84-1E86;LATIN CAPITAL LETTER W WITH DOT ABOVE;Lu;0;L;0057 0307;;;;N;;;;1E87;-1E87;LATIN SMALL LETTER W WITH DOT ABOVE;Ll;0;L;0077 0307;;;;N;;;1E86;;1E86-1E88;LATIN CAPITAL LETTER W WITH DOT BELOW;Lu;0;L;0057 0323;;;;N;;;;1E89;-1E89;LATIN SMALL LETTER W WITH DOT BELOW;Ll;0;L;0077 0323;;;;N;;;1E88;;1E88-1E8A;LATIN CAPITAL LETTER X WITH DOT ABOVE;Lu;0;L;0058 0307;;;;N;;;;1E8B;-1E8B;LATIN SMALL LETTER X WITH DOT ABOVE;Ll;0;L;0078 0307;;;;N;;;1E8A;;1E8A-1E8C;LATIN CAPITAL LETTER X WITH DIAERESIS;Lu;0;L;0058 0308;;;;N;;;;1E8D;-1E8D;LATIN SMALL LETTER X WITH DIAERESIS;Ll;0;L;0078 0308;;;;N;;;1E8C;;1E8C-1E8E;LATIN CAPITAL LETTER Y WITH DOT ABOVE;Lu;0;L;0059 0307;;;;N;;;;1E8F;-1E8F;LATIN SMALL LETTER Y WITH DOT ABOVE;Ll;0;L;0079 0307;;;;N;;;1E8E;;1E8E-1E90;LATIN CAPITAL LETTER Z WITH CIRCUMFLEX;Lu;0;L;005A 0302;;;;N;;;;1E91;-1E91;LATIN SMALL LETTER Z WITH CIRCUMFLEX;Ll;0;L;007A 0302;;;;N;;;1E90;;1E90-1E92;LATIN CAPITAL LETTER Z WITH DOT BELOW;Lu;0;L;005A 0323;;;;N;;;;1E93;-1E93;LATIN SMALL LETTER Z WITH DOT BELOW;Ll;0;L;007A 0323;;;;N;;;1E92;;1E92-1E94;LATIN CAPITAL LETTER Z WITH LINE BELOW;Lu;0;L;005A 0331;;;;N;;;;1E95;-1E95;LATIN SMALL LETTER Z WITH LINE BELOW;Ll;0;L;007A 0331;;;;N;;;1E94;;1E94-1E96;LATIN SMALL LETTER H WITH LINE BELOW;Ll;0;L;0068 0331;;;;N;;;;;-1E97;LATIN SMALL LETTER T WITH DIAERESIS;Ll;0;L;0074 0308;;;;N;;;;;-1E98;LATIN SMALL LETTER W WITH RING ABOVE;Ll;0;L;0077 030A;;;;N;;;;;-1E99;LATIN SMALL LETTER Y WITH RING ABOVE;Ll;0;L;0079 030A;;;;N;;;;;-1E9A;LATIN SMALL LETTER A WITH RIGHT HALF RING;Ll;0;L;<compat> 0061 02BE;;;;N;;;;;-1E9B;LATIN SMALL LETTER LONG S WITH DOT ABOVE;Ll;0;L;017F 0307;;;;N;;;1E60;;1E60-1E9C;LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE;Ll;0;L;;;;;N;;;;;-1E9D;LATIN SMALL LETTER LONG S WITH HIGH STROKE;Ll;0;L;;;;;N;;;;;-1E9E;LATIN CAPITAL LETTER SHARP S;Lu;0;L;;;;;N;;;;00DF;-1E9F;LATIN SMALL LETTER DELTA;Ll;0;L;;;;;N;;;;;-1EA0;LATIN CAPITAL LETTER A WITH DOT BELOW;Lu;0;L;0041 0323;;;;N;;;;1EA1;-1EA1;LATIN SMALL LETTER A WITH DOT BELOW;Ll;0;L;0061 0323;;;;N;;;1EA0;;1EA0-1EA2;LATIN CAPITAL LETTER A WITH HOOK ABOVE;Lu;0;L;0041 0309;;;;N;;;;1EA3;-1EA3;LATIN SMALL LETTER A WITH HOOK ABOVE;Ll;0;L;0061 0309;;;;N;;;1EA2;;1EA2-1EA4;LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE;Lu;0;L;00C2 0301;;;;N;;;;1EA5;-1EA5;LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE;Ll;0;L;00E2 0301;;;;N;;;1EA4;;1EA4-1EA6;LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE;Lu;0;L;00C2 0300;;;;N;;;;1EA7;-1EA7;LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE;Ll;0;L;00E2 0300;;;;N;;;1EA6;;1EA6-1EA8;LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE;Lu;0;L;00C2 0309;;;;N;;;;1EA9;-1EA9;LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE;Ll;0;L;00E2 0309;;;;N;;;1EA8;;1EA8-1EAA;LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE;Lu;0;L;00C2 0303;;;;N;;;;1EAB;-1EAB;LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE;Ll;0;L;00E2 0303;;;;N;;;1EAA;;1EAA-1EAC;LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW;Lu;0;L;1EA0 0302;;;;N;;;;1EAD;-1EAD;LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW;Ll;0;L;1EA1 0302;;;;N;;;1EAC;;1EAC-1EAE;LATIN CAPITAL LETTER A WITH BREVE AND ACUTE;Lu;0;L;0102 0301;;;;N;;;;1EAF;-1EAF;LATIN SMALL LETTER A WITH BREVE AND ACUTE;Ll;0;L;0103 0301;;;;N;;;1EAE;;1EAE-1EB0;LATIN CAPITAL LETTER A WITH BREVE AND GRAVE;Lu;0;L;0102 0300;;;;N;;;;1EB1;-1EB1;LATIN SMALL LETTER A WITH BREVE AND GRAVE;Ll;0;L;0103 0300;;;;N;;;1EB0;;1EB0-1EB2;LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE;Lu;0;L;0102 0309;;;;N;;;;1EB3;-1EB3;LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE;Ll;0;L;0103 0309;;;;N;;;1EB2;;1EB2-1EB4;LATIN CAPITAL LETTER A WITH BREVE AND TILDE;Lu;0;L;0102 0303;;;;N;;;;1EB5;-1EB5;LATIN SMALL LETTER A WITH BREVE AND TILDE;Ll;0;L;0103 0303;;;;N;;;1EB4;;1EB4-1EB6;LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW;Lu;0;L;1EA0 0306;;;;N;;;;1EB7;-1EB7;LATIN SMALL LETTER A WITH BREVE AND DOT BELOW;Ll;0;L;1EA1 0306;;;;N;;;1EB6;;1EB6-1EB8;LATIN CAPITAL LETTER E WITH DOT BELOW;Lu;0;L;0045 0323;;;;N;;;;1EB9;-1EB9;LATIN SMALL LETTER E WITH DOT BELOW;Ll;0;L;0065 0323;;;;N;;;1EB8;;1EB8-1EBA;LATIN CAPITAL LETTER E WITH HOOK ABOVE;Lu;0;L;0045 0309;;;;N;;;;1EBB;-1EBB;LATIN SMALL LETTER E WITH HOOK ABOVE;Ll;0;L;0065 0309;;;;N;;;1EBA;;1EBA-1EBC;LATIN CAPITAL LETTER E WITH TILDE;Lu;0;L;0045 0303;;;;N;;;;1EBD;-1EBD;LATIN SMALL LETTER E WITH TILDE;Ll;0;L;0065 0303;;;;N;;;1EBC;;1EBC-1EBE;LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE;Lu;0;L;00CA 0301;;;;N;;;;1EBF;-1EBF;LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE;Ll;0;L;00EA 0301;;;;N;;;1EBE;;1EBE-1EC0;LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE;Lu;0;L;00CA 0300;;;;N;;;;1EC1;-1EC1;LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE;Ll;0;L;00EA 0300;;;;N;;;1EC0;;1EC0-1EC2;LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE;Lu;0;L;00CA 0309;;;;N;;;;1EC3;-1EC3;LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE;Ll;0;L;00EA 0309;;;;N;;;1EC2;;1EC2-1EC4;LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE;Lu;0;L;00CA 0303;;;;N;;;;1EC5;-1EC5;LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE;Ll;0;L;00EA 0303;;;;N;;;1EC4;;1EC4-1EC6;LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW;Lu;0;L;1EB8 0302;;;;N;;;;1EC7;-1EC7;LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW;Ll;0;L;1EB9 0302;;;;N;;;1EC6;;1EC6-1EC8;LATIN CAPITAL LETTER I WITH HOOK ABOVE;Lu;0;L;0049 0309;;;;N;;;;1EC9;-1EC9;LATIN SMALL LETTER I WITH HOOK ABOVE;Ll;0;L;0069 0309;;;;N;;;1EC8;;1EC8-1ECA;LATIN CAPITAL LETTER I WITH DOT BELOW;Lu;0;L;0049 0323;;;;N;;;;1ECB;-1ECB;LATIN SMALL LETTER I WITH DOT BELOW;Ll;0;L;0069 0323;;;;N;;;1ECA;;1ECA-1ECC;LATIN CAPITAL LETTER O WITH DOT BELOW;Lu;0;L;004F 0323;;;;N;;;;1ECD;-1ECD;LATIN SMALL LETTER O WITH DOT BELOW;Ll;0;L;006F 0323;;;;N;;;1ECC;;1ECC-1ECE;LATIN CAPITAL LETTER O WITH HOOK ABOVE;Lu;0;L;004F 0309;;;;N;;;;1ECF;-1ECF;LATIN SMALL LETTER O WITH HOOK ABOVE;Ll;0;L;006F 0309;;;;N;;;1ECE;;1ECE-1ED0;LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE;Lu;0;L;00D4 0301;;;;N;;;;1ED1;-1ED1;LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE;Ll;0;L;00F4 0301;;;;N;;;1ED0;;1ED0-1ED2;LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE;Lu;0;L;00D4 0300;;;;N;;;;1ED3;-1ED3;LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE;Ll;0;L;00F4 0300;;;;N;;;1ED2;;1ED2-1ED4;LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE;Lu;0;L;00D4 0309;;;;N;;;;1ED5;-1ED5;LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE;Ll;0;L;00F4 0309;;;;N;;;1ED4;;1ED4-1ED6;LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE;Lu;0;L;00D4 0303;;;;N;;;;1ED7;-1ED7;LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE;Ll;0;L;00F4 0303;;;;N;;;1ED6;;1ED6-1ED8;LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW;Lu;0;L;1ECC 0302;;;;N;;;;1ED9;-1ED9;LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW;Ll;0;L;1ECD 0302;;;;N;;;1ED8;;1ED8-1EDA;LATIN CAPITAL LETTER O WITH HORN AND ACUTE;Lu;0;L;01A0 0301;;;;N;;;;1EDB;-1EDB;LATIN SMALL LETTER O WITH HORN AND ACUTE;Ll;0;L;01A1 0301;;;;N;;;1EDA;;1EDA-1EDC;LATIN CAPITAL LETTER O WITH HORN AND GRAVE;Lu;0;L;01A0 0300;;;;N;;;;1EDD;-1EDD;LATIN SMALL LETTER O WITH HORN AND GRAVE;Ll;0;L;01A1 0300;;;;N;;;1EDC;;1EDC-1EDE;LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE;Lu;0;L;01A0 0309;;;;N;;;;1EDF;-1EDF;LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE;Ll;0;L;01A1 0309;;;;N;;;1EDE;;1EDE-1EE0;LATIN CAPITAL LETTER O WITH HORN AND TILDE;Lu;0;L;01A0 0303;;;;N;;;;1EE1;-1EE1;LATIN SMALL LETTER O WITH HORN AND TILDE;Ll;0;L;01A1 0303;;;;N;;;1EE0;;1EE0-1EE2;LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW;Lu;0;L;01A0 0323;;;;N;;;;1EE3;-1EE3;LATIN SMALL LETTER O WITH HORN AND DOT BELOW;Ll;0;L;01A1 0323;;;;N;;;1EE2;;1EE2-1EE4;LATIN CAPITAL LETTER U WITH DOT BELOW;Lu;0;L;0055 0323;;;;N;;;;1EE5;-1EE5;LATIN SMALL LETTER U WITH DOT BELOW;Ll;0;L;0075 0323;;;;N;;;1EE4;;1EE4-1EE6;LATIN CAPITAL LETTER U WITH HOOK ABOVE;Lu;0;L;0055 0309;;;;N;;;;1EE7;-1EE7;LATIN SMALL LETTER U WITH HOOK ABOVE;Ll;0;L;0075 0309;;;;N;;;1EE6;;1EE6-1EE8;LATIN CAPITAL LETTER U WITH HORN AND ACUTE;Lu;0;L;01AF 0301;;;;N;;;;1EE9;-1EE9;LATIN SMALL LETTER U WITH HORN AND ACUTE;Ll;0;L;01B0 0301;;;;N;;;1EE8;;1EE8-1EEA;LATIN CAPITAL LETTER U WITH HORN AND GRAVE;Lu;0;L;01AF 0300;;;;N;;;;1EEB;-1EEB;LATIN SMALL LETTER U WITH HORN AND GRAVE;Ll;0;L;01B0 0300;;;;N;;;1EEA;;1EEA-1EEC;LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE;Lu;0;L;01AF 0309;;;;N;;;;1EED;-1EED;LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE;Ll;0;L;01B0 0309;;;;N;;;1EEC;;1EEC-1EEE;LATIN CAPITAL LETTER U WITH HORN AND TILDE;Lu;0;L;01AF 0303;;;;N;;;;1EEF;-1EEF;LATIN SMALL LETTER U WITH HORN AND TILDE;Ll;0;L;01B0 0303;;;;N;;;1EEE;;1EEE-1EF0;LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW;Lu;0;L;01AF 0323;;;;N;;;;1EF1;-1EF1;LATIN SMALL LETTER U WITH HORN AND DOT BELOW;Ll;0;L;01B0 0323;;;;N;;;1EF0;;1EF0-1EF2;LATIN CAPITAL LETTER Y WITH GRAVE;Lu;0;L;0059 0300;;;;N;;;;1EF3;-1EF3;LATIN SMALL LETTER Y WITH GRAVE;Ll;0;L;0079 0300;;;;N;;;1EF2;;1EF2-1EF4;LATIN CAPITAL LETTER Y WITH DOT BELOW;Lu;0;L;0059 0323;;;;N;;;;1EF5;-1EF5;LATIN SMALL LETTER Y WITH DOT BELOW;Ll;0;L;0079 0323;;;;N;;;1EF4;;1EF4-1EF6;LATIN CAPITAL LETTER Y WITH HOOK ABOVE;Lu;0;L;0059 0309;;;;N;;;;1EF7;-1EF7;LATIN SMALL LETTER Y WITH HOOK ABOVE;Ll;0;L;0079 0309;;;;N;;;1EF6;;1EF6-1EF8;LATIN CAPITAL LETTER Y WITH TILDE;Lu;0;L;0059 0303;;;;N;;;;1EF9;-1EF9;LATIN SMALL LETTER Y WITH TILDE;Ll;0;L;0079 0303;;;;N;;;1EF8;;1EF8-1EFA;LATIN CAPITAL LETTER MIDDLE-WELSH LL;Lu;0;L;;;;;N;;;;1EFB;-1EFB;LATIN SMALL LETTER MIDDLE-WELSH LL;Ll;0;L;;;;;N;;;1EFA;;1EFA-1EFC;LATIN CAPITAL LETTER MIDDLE-WELSH V;Lu;0;L;;;;;N;;;;1EFD;-1EFD;LATIN SMALL LETTER MIDDLE-WELSH V;Ll;0;L;;;;;N;;;1EFC;;1EFC-1EFE;LATIN CAPITAL LETTER Y WITH LOOP;Lu;0;L;;;;;N;;;;1EFF;-1EFF;LATIN SMALL LETTER Y WITH LOOP;Ll;0;L;;;;;N;;;1EFE;;1EFE-1F00;GREEK SMALL LETTER ALPHA WITH PSILI;Ll;0;L;03B1 0313;;;;N;;;1F08;;1F08-1F01;GREEK SMALL LETTER ALPHA WITH DASIA;Ll;0;L;03B1 0314;;;;N;;;1F09;;1F09-1F02;GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA;Ll;0;L;1F00 0300;;;;N;;;1F0A;;1F0A-1F03;GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA;Ll;0;L;1F01 0300;;;;N;;;1F0B;;1F0B-1F04;GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA;Ll;0;L;1F00 0301;;;;N;;;1F0C;;1F0C-1F05;GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA;Ll;0;L;1F01 0301;;;;N;;;1F0D;;1F0D-1F06;GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI;Ll;0;L;1F00 0342;;;;N;;;1F0E;;1F0E-1F07;GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI;Ll;0;L;1F01 0342;;;;N;;;1F0F;;1F0F-1F08;GREEK CAPITAL LETTER ALPHA WITH PSILI;Lu;0;L;0391 0313;;;;N;;;;1F00;-1F09;GREEK CAPITAL LETTER ALPHA WITH DASIA;Lu;0;L;0391 0314;;;;N;;;;1F01;-1F0A;GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA;Lu;0;L;1F08 0300;;;;N;;;;1F02;-1F0B;GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA;Lu;0;L;1F09 0300;;;;N;;;;1F03;-1F0C;GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA;Lu;0;L;1F08 0301;;;;N;;;;1F04;-1F0D;GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA;Lu;0;L;1F09 0301;;;;N;;;;1F05;-1F0E;GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI;Lu;0;L;1F08 0342;;;;N;;;;1F06;-1F0F;GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI;Lu;0;L;1F09 0342;;;;N;;;;1F07;-1F10;GREEK SMALL LETTER EPSILON WITH PSILI;Ll;0;L;03B5 0313;;;;N;;;1F18;;1F18-1F11;GREEK SMALL LETTER EPSILON WITH DASIA;Ll;0;L;03B5 0314;;;;N;;;1F19;;1F19-1F12;GREEK SMALL LETTER EPSILON WITH PSILI AND VARIA;Ll;0;L;1F10 0300;;;;N;;;1F1A;;1F1A-1F13;GREEK SMALL LETTER EPSILON WITH DASIA AND VARIA;Ll;0;L;1F11 0300;;;;N;;;1F1B;;1F1B-1F14;GREEK SMALL LETTER EPSILON WITH PSILI AND OXIA;Ll;0;L;1F10 0301;;;;N;;;1F1C;;1F1C-1F15;GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA;Ll;0;L;1F11 0301;;;;N;;;1F1D;;1F1D-1F18;GREEK CAPITAL LETTER EPSILON WITH PSILI;Lu;0;L;0395 0313;;;;N;;;;1F10;-1F19;GREEK CAPITAL LETTER EPSILON WITH DASIA;Lu;0;L;0395 0314;;;;N;;;;1F11;-1F1A;GREEK CAPITAL LETTER EPSILON WITH PSILI AND VARIA;Lu;0;L;1F18 0300;;;;N;;;;1F12;-1F1B;GREEK CAPITAL LETTER EPSILON WITH DASIA AND VARIA;Lu;0;L;1F19 0300;;;;N;;;;1F13;-1F1C;GREEK CAPITAL LETTER EPSILON WITH PSILI AND OXIA;Lu;0;L;1F18 0301;;;;N;;;;1F14;-1F1D;GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA;Lu;0;L;1F19 0301;;;;N;;;;1F15;-1F20;GREEK SMALL LETTER ETA WITH PSILI;Ll;0;L;03B7 0313;;;;N;;;1F28;;1F28-1F21;GREEK SMALL LETTER ETA WITH DASIA;Ll;0;L;03B7 0314;;;;N;;;1F29;;1F29-1F22;GREEK SMALL LETTER ETA WITH PSILI AND VARIA;Ll;0;L;1F20 0300;;;;N;;;1F2A;;1F2A-1F23;GREEK SMALL LETTER ETA WITH DASIA AND VARIA;Ll;0;L;1F21 0300;;;;N;;;1F2B;;1F2B-1F24;GREEK SMALL LETTER ETA WITH PSILI AND OXIA;Ll;0;L;1F20 0301;;;;N;;;1F2C;;1F2C-1F25;GREEK SMALL LETTER ETA WITH DASIA AND OXIA;Ll;0;L;1F21 0301;;;;N;;;1F2D;;1F2D-1F26;GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI;Ll;0;L;1F20 0342;;;;N;;;1F2E;;1F2E-1F27;GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI;Ll;0;L;1F21 0342;;;;N;;;1F2F;;1F2F-1F28;GREEK CAPITAL LETTER ETA WITH PSILI;Lu;0;L;0397 0313;;;;N;;;;1F20;-1F29;GREEK CAPITAL LETTER ETA WITH DASIA;Lu;0;L;0397 0314;;;;N;;;;1F21;-1F2A;GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA;Lu;0;L;1F28 0300;;;;N;;;;1F22;-1F2B;GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA;Lu;0;L;1F29 0300;;;;N;;;;1F23;-1F2C;GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA;Lu;0;L;1F28 0301;;;;N;;;;1F24;-1F2D;GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA;Lu;0;L;1F29 0301;;;;N;;;;1F25;-1F2E;GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI;Lu;0;L;1F28 0342;;;;N;;;;1F26;-1F2F;GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI;Lu;0;L;1F29 0342;;;;N;;;;1F27;-1F30;GREEK SMALL LETTER IOTA WITH PSILI;Ll;0;L;03B9 0313;;;;N;;;1F38;;1F38-1F31;GREEK SMALL LETTER IOTA WITH DASIA;Ll;0;L;03B9 0314;;;;N;;;1F39;;1F39-1F32;GREEK SMALL LETTER IOTA WITH PSILI AND VARIA;Ll;0;L;1F30 0300;;;;N;;;1F3A;;1F3A-1F33;GREEK SMALL LETTER IOTA WITH DASIA AND VARIA;Ll;0;L;1F31 0300;;;;N;;;1F3B;;1F3B-1F34;GREEK SMALL LETTER IOTA WITH PSILI AND OXIA;Ll;0;L;1F30 0301;;;;N;;;1F3C;;1F3C-1F35;GREEK SMALL LETTER IOTA WITH DASIA AND OXIA;Ll;0;L;1F31 0301;;;;N;;;1F3D;;1F3D-1F36;GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI;Ll;0;L;1F30 0342;;;;N;;;1F3E;;1F3E-1F37;GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI;Ll;0;L;1F31 0342;;;;N;;;1F3F;;1F3F-1F38;GREEK CAPITAL LETTER IOTA WITH PSILI;Lu;0;L;0399 0313;;;;N;;;;1F30;-1F39;GREEK CAPITAL LETTER IOTA WITH DASIA;Lu;0;L;0399 0314;;;;N;;;;1F31;-1F3A;GREEK CAPITAL LETTER IOTA WITH PSILI AND VARIA;Lu;0;L;1F38 0300;;;;N;;;;1F32;-1F3B;GREEK CAPITAL LETTER IOTA WITH DASIA AND VARIA;Lu;0;L;1F39 0300;;;;N;;;;1F33;-1F3C;GREEK CAPITAL LETTER IOTA WITH PSILI AND OXIA;Lu;0;L;1F38 0301;;;;N;;;;1F34;-1F3D;GREEK CAPITAL LETTER IOTA WITH DASIA AND OXIA;Lu;0;L;1F39 0301;;;;N;;;;1F35;-1F3E;GREEK CAPITAL LETTER IOTA WITH PSILI AND PERISPOMENI;Lu;0;L;1F38 0342;;;;N;;;;1F36;-1F3F;GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI;Lu;0;L;1F39 0342;;;;N;;;;1F37;-1F40;GREEK SMALL LETTER OMICRON WITH PSILI;Ll;0;L;03BF 0313;;;;N;;;1F48;;1F48-1F41;GREEK SMALL LETTER OMICRON WITH DASIA;Ll;0;L;03BF 0314;;;;N;;;1F49;;1F49-1F42;GREEK SMALL LETTER OMICRON WITH PSILI AND VARIA;Ll;0;L;1F40 0300;;;;N;;;1F4A;;1F4A-1F43;GREEK SMALL LETTER OMICRON WITH DASIA AND VARIA;Ll;0;L;1F41 0300;;;;N;;;1F4B;;1F4B-1F44;GREEK SMALL LETTER OMICRON WITH PSILI AND OXIA;Ll;0;L;1F40 0301;;;;N;;;1F4C;;1F4C-1F45;GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA;Ll;0;L;1F41 0301;;;;N;;;1F4D;;1F4D-1F48;GREEK CAPITAL LETTER OMICRON WITH PSILI;Lu;0;L;039F 0313;;;;N;;;;1F40;-1F49;GREEK CAPITAL LETTER OMICRON WITH DASIA;Lu;0;L;039F 0314;;;;N;;;;1F41;-1F4A;GREEK CAPITAL LETTER OMICRON WITH PSILI AND VARIA;Lu;0;L;1F48 0300;;;;N;;;;1F42;-1F4B;GREEK CAPITAL LETTER OMICRON WITH DASIA AND VARIA;Lu;0;L;1F49 0300;;;;N;;;;1F43;-1F4C;GREEK CAPITAL LETTER OMICRON WITH PSILI AND OXIA;Lu;0;L;1F48 0301;;;;N;;;;1F44;-1F4D;GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA;Lu;0;L;1F49 0301;;;;N;;;;1F45;-1F50;GREEK SMALL LETTER UPSILON WITH PSILI;Ll;0;L;03C5 0313;;;;N;;;;;-1F51;GREEK SMALL LETTER UPSILON WITH DASIA;Ll;0;L;03C5 0314;;;;N;;;1F59;;1F59-1F52;GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA;Ll;0;L;1F50 0300;;;;N;;;;;-1F53;GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA;Ll;0;L;1F51 0300;;;;N;;;1F5B;;1F5B-1F54;GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA;Ll;0;L;1F50 0301;;;;N;;;;;-1F55;GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA;Ll;0;L;1F51 0301;;;;N;;;1F5D;;1F5D-1F56;GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI;Ll;0;L;1F50 0342;;;;N;;;;;-1F57;GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI;Ll;0;L;1F51 0342;;;;N;;;1F5F;;1F5F-1F59;GREEK CAPITAL LETTER UPSILON WITH DASIA;Lu;0;L;03A5 0314;;;;N;;;;1F51;-1F5B;GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA;Lu;0;L;1F59 0300;;;;N;;;;1F53;-1F5D;GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA;Lu;0;L;1F59 0301;;;;N;;;;1F55;-1F5F;GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI;Lu;0;L;1F59 0342;;;;N;;;;1F57;-1F60;GREEK SMALL LETTER OMEGA WITH PSILI;Ll;0;L;03C9 0313;;;;N;;;1F68;;1F68-1F61;GREEK SMALL LETTER OMEGA WITH DASIA;Ll;0;L;03C9 0314;;;;N;;;1F69;;1F69-1F62;GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA;Ll;0;L;1F60 0300;;;;N;;;1F6A;;1F6A-1F63;GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA;Ll;0;L;1F61 0300;;;;N;;;1F6B;;1F6B-1F64;GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA;Ll;0;L;1F60 0301;;;;N;;;1F6C;;1F6C-1F65;GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA;Ll;0;L;1F61 0301;;;;N;;;1F6D;;1F6D-1F66;GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI;Ll;0;L;1F60 0342;;;;N;;;1F6E;;1F6E-1F67;GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI;Ll;0;L;1F61 0342;;;;N;;;1F6F;;1F6F-1F68;GREEK CAPITAL LETTER OMEGA WITH PSILI;Lu;0;L;03A9 0313;;;;N;;;;1F60;-1F69;GREEK CAPITAL LETTER OMEGA WITH DASIA;Lu;0;L;03A9 0314;;;;N;;;;1F61;-1F6A;GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA;Lu;0;L;1F68 0300;;;;N;;;;1F62;-1F6B;GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA;Lu;0;L;1F69 0300;;;;N;;;;1F63;-1F6C;GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA;Lu;0;L;1F68 0301;;;;N;;;;1F64;-1F6D;GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA;Lu;0;L;1F69 0301;;;;N;;;;1F65;-1F6E;GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI;Lu;0;L;1F68 0342;;;;N;;;;1F66;-1F6F;GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI;Lu;0;L;1F69 0342;;;;N;;;;1F67;-1F70;GREEK SMALL LETTER ALPHA WITH VARIA;Ll;0;L;03B1 0300;;;;N;;;1FBA;;1FBA-1F71;GREEK SMALL LETTER ALPHA WITH OXIA;Ll;0;L;03AC;;;;N;;;1FBB;;1FBB-1F72;GREEK SMALL LETTER EPSILON WITH VARIA;Ll;0;L;03B5 0300;;;;N;;;1FC8;;1FC8-1F73;GREEK SMALL LETTER EPSILON WITH OXIA;Ll;0;L;03AD;;;;N;;;1FC9;;1FC9-1F74;GREEK SMALL LETTER ETA WITH VARIA;Ll;0;L;03B7 0300;;;;N;;;1FCA;;1FCA-1F75;GREEK SMALL LETTER ETA WITH OXIA;Ll;0;L;03AE;;;;N;;;1FCB;;1FCB-1F76;GREEK SMALL LETTER IOTA WITH VARIA;Ll;0;L;03B9 0300;;;;N;;;1FDA;;1FDA-1F77;GREEK SMALL LETTER IOTA WITH OXIA;Ll;0;L;03AF;;;;N;;;1FDB;;1FDB-1F78;GREEK SMALL LETTER OMICRON WITH VARIA;Ll;0;L;03BF 0300;;;;N;;;1FF8;;1FF8-1F79;GREEK SMALL LETTER OMICRON WITH OXIA;Ll;0;L;03CC;;;;N;;;1FF9;;1FF9-1F7A;GREEK SMALL LETTER UPSILON WITH VARIA;Ll;0;L;03C5 0300;;;;N;;;1FEA;;1FEA-1F7B;GREEK SMALL LETTER UPSILON WITH OXIA;Ll;0;L;03CD;;;;N;;;1FEB;;1FEB-1F7C;GREEK SMALL LETTER OMEGA WITH VARIA;Ll;0;L;03C9 0300;;;;N;;;1FFA;;1FFA-1F7D;GREEK SMALL LETTER OMEGA WITH OXIA;Ll;0;L;03CE;;;;N;;;1FFB;;1FFB-1F80;GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI;Ll;0;L;1F00 0345;;;;N;;;1F88;;1F88-1F81;GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI;Ll;0;L;1F01 0345;;;;N;;;1F89;;1F89-1F82;GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI;Ll;0;L;1F02 0345;;;;N;;;1F8A;;1F8A-1F83;GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI;Ll;0;L;1F03 0345;;;;N;;;1F8B;;1F8B-1F84;GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI;Ll;0;L;1F04 0345;;;;N;;;1F8C;;1F8C-1F85;GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI;Ll;0;L;1F05 0345;;;;N;;;1F8D;;1F8D-1F86;GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1F06 0345;;;;N;;;1F8E;;1F8E-1F87;GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1F07 0345;;;;N;;;1F8F;;1F8F-1F88;GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI;Lt;0;L;1F08 0345;;;;N;;;;1F80;-1F89;GREEK CAPITAL LETTER ALPHA WITH DASIA AND PROSGEGRAMMENI;Lt;0;L;1F09 0345;;;;N;;;;1F81;-1F8A;GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA AND PROSGEGRAMMENI;Lt;0;L;1F0A 0345;;;;N;;;;1F82;-1F8B;GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA AND PROSGEGRAMMENI;Lt;0;L;1F0B 0345;;;;N;;;;1F83;-1F8C;GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA AND PROSGEGRAMMENI;Lt;0;L;1F0C 0345;;;;N;;;;1F84;-1F8D;GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA AND PROSGEGRAMMENI;Lt;0;L;1F0D 0345;;;;N;;;;1F85;-1F8E;GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI;Lt;0;L;1F0E 0345;;;;N;;;;1F86;-1F8F;GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI;Lt;0;L;1F0F 0345;;;;N;;;;1F87;-1F90;GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI;Ll;0;L;1F20 0345;;;;N;;;1F98;;1F98-1F91;GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI;Ll;0;L;1F21 0345;;;;N;;;1F99;;1F99-1F92;GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI;Ll;0;L;1F22 0345;;;;N;;;1F9A;;1F9A-1F93;GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI;Ll;0;L;1F23 0345;;;;N;;;1F9B;;1F9B-1F94;GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI;Ll;0;L;1F24 0345;;;;N;;;1F9C;;1F9C-1F95;GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI;Ll;0;L;1F25 0345;;;;N;;;1F9D;;1F9D-1F96;GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1F26 0345;;;;N;;;1F9E;;1F9E-1F97;GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1F27 0345;;;;N;;;1F9F;;1F9F-1F98;GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI;Lt;0;L;1F28 0345;;;;N;;;;1F90;-1F99;GREEK CAPITAL LETTER ETA WITH DASIA AND PROSGEGRAMMENI;Lt;0;L;1F29 0345;;;;N;;;;1F91;-1F9A;GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA AND PROSGEGRAMMENI;Lt;0;L;1F2A 0345;;;;N;;;;1F92;-1F9B;GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA AND PROSGEGRAMMENI;Lt;0;L;1F2B 0345;;;;N;;;;1F93;-1F9C;GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA AND PROSGEGRAMMENI;Lt;0;L;1F2C 0345;;;;N;;;;1F94;-1F9D;GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI;Lt;0;L;1F2D 0345;;;;N;;;;1F95;-1F9E;GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI;Lt;0;L;1F2E 0345;;;;N;;;;1F96;-1F9F;GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI;Lt;0;L;1F2F 0345;;;;N;;;;1F97;-1FA0;GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI;Ll;0;L;1F60 0345;;;;N;;;1FA8;;1FA8-1FA1;GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI;Ll;0;L;1F61 0345;;;;N;;;1FA9;;1FA9-1FA2;GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI;Ll;0;L;1F62 0345;;;;N;;;1FAA;;1FAA-1FA3;GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI;Ll;0;L;1F63 0345;;;;N;;;1FAB;;1FAB-1FA4;GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI;Ll;0;L;1F64 0345;;;;N;;;1FAC;;1FAC-1FA5;GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI;Ll;0;L;1F65 0345;;;;N;;;1FAD;;1FAD-1FA6;GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1F66 0345;;;;N;;;1FAE;;1FAE-1FA7;GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1F67 0345;;;;N;;;1FAF;;1FAF-1FA8;GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI;Lt;0;L;1F68 0345;;;;N;;;;1FA0;-1FA9;GREEK CAPITAL LETTER OMEGA WITH DASIA AND PROSGEGRAMMENI;Lt;0;L;1F69 0345;;;;N;;;;1FA1;-1FAA;GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI;Lt;0;L;1F6A 0345;;;;N;;;;1FA2;-1FAB;GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA AND PROSGEGRAMMENI;Lt;0;L;1F6B 0345;;;;N;;;;1FA3;-1FAC;GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA AND PROSGEGRAMMENI;Lt;0;L;1F6C 0345;;;;N;;;;1FA4;-1FAD;GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA AND PROSGEGRAMMENI;Lt;0;L;1F6D 0345;;;;N;;;;1FA5;-1FAE;GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI;Lt;0;L;1F6E 0345;;;;N;;;;1FA6;-1FAF;GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI;Lt;0;L;1F6F 0345;;;;N;;;;1FA7;-1FB0;GREEK SMALL LETTER ALPHA WITH VRACHY;Ll;0;L;03B1 0306;;;;N;;;1FB8;;1FB8-1FB1;GREEK SMALL LETTER ALPHA WITH MACRON;Ll;0;L;03B1 0304;;;;N;;;1FB9;;1FB9-1FB2;GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI;Ll;0;L;1F70 0345;;;;N;;;;;-1FB3;GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI;Ll;0;L;03B1 0345;;;;N;;;1FBC;;1FBC-1FB4;GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI;Ll;0;L;03AC 0345;;;;N;;;;;-1FB6;GREEK SMALL LETTER ALPHA WITH PERISPOMENI;Ll;0;L;03B1 0342;;;;N;;;;;-1FB7;GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1FB6 0345;;;;N;;;;;-1FB8;GREEK CAPITAL LETTER ALPHA WITH VRACHY;Lu;0;L;0391 0306;;;;N;;;;1FB0;-1FB9;GREEK CAPITAL LETTER ALPHA WITH MACRON;Lu;0;L;0391 0304;;;;N;;;;1FB1;-1FBA;GREEK CAPITAL LETTER ALPHA WITH VARIA;Lu;0;L;0391 0300;;;;N;;;;1F70;-1FBB;GREEK CAPITAL LETTER ALPHA WITH OXIA;Lu;0;L;0386;;;;N;;;;1F71;-1FBC;GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI;Lt;0;L;0391 0345;;;;N;;;;1FB3;-1FBD;GREEK KORONIS;Sk;0;ON;<compat> 0020 0313;;;;N;;;;;-1FBE;GREEK PROSGEGRAMMENI;Ll;0;L;03B9;;;;N;;;0399;;0399-1FBF;GREEK PSILI;Sk;0;ON;<compat> 0020 0313;;;;N;;;;;-1FC0;GREEK PERISPOMENI;Sk;0;ON;<compat> 0020 0342;;;;N;;;;;-1FC1;GREEK DIALYTIKA AND PERISPOMENI;Sk;0;ON;00A8 0342;;;;N;;;;;-1FC2;GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI;Ll;0;L;1F74 0345;;;;N;;;;;-1FC3;GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI;Ll;0;L;03B7 0345;;;;N;;;1FCC;;1FCC-1FC4;GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI;Ll;0;L;03AE 0345;;;;N;;;;;-1FC6;GREEK SMALL LETTER ETA WITH PERISPOMENI;Ll;0;L;03B7 0342;;;;N;;;;;-1FC7;GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1FC6 0345;;;;N;;;;;-1FC8;GREEK CAPITAL LETTER EPSILON WITH VARIA;Lu;0;L;0395 0300;;;;N;;;;1F72;-1FC9;GREEK CAPITAL LETTER EPSILON WITH OXIA;Lu;0;L;0388;;;;N;;;;1F73;-1FCA;GREEK CAPITAL LETTER ETA WITH VARIA;Lu;0;L;0397 0300;;;;N;;;;1F74;-1FCB;GREEK CAPITAL LETTER ETA WITH OXIA;Lu;0;L;0389;;;;N;;;;1F75;-1FCC;GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI;Lt;0;L;0397 0345;;;;N;;;;1FC3;-1FCD;GREEK PSILI AND VARIA;Sk;0;ON;1FBF 0300;;;;N;;;;;-1FCE;GREEK PSILI AND OXIA;Sk;0;ON;1FBF 0301;;;;N;;;;;-1FCF;GREEK PSILI AND PERISPOMENI;Sk;0;ON;1FBF 0342;;;;N;;;;;-1FD0;GREEK SMALL LETTER IOTA WITH VRACHY;Ll;0;L;03B9 0306;;;;N;;;1FD8;;1FD8-1FD1;GREEK SMALL LETTER IOTA WITH MACRON;Ll;0;L;03B9 0304;;;;N;;;1FD9;;1FD9-1FD2;GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA;Ll;0;L;03CA 0300;;;;N;;;;;-1FD3;GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA;Ll;0;L;0390;;;;N;;;;;-1FD6;GREEK SMALL LETTER IOTA WITH PERISPOMENI;Ll;0;L;03B9 0342;;;;N;;;;;-1FD7;GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI;Ll;0;L;03CA 0342;;;;N;;;;;-1FD8;GREEK CAPITAL LETTER IOTA WITH VRACHY;Lu;0;L;0399 0306;;;;N;;;;1FD0;-1FD9;GREEK CAPITAL LETTER IOTA WITH MACRON;Lu;0;L;0399 0304;;;;N;;;;1FD1;-1FDA;GREEK CAPITAL LETTER IOTA WITH VARIA;Lu;0;L;0399 0300;;;;N;;;;1F76;-1FDB;GREEK CAPITAL LETTER IOTA WITH OXIA;Lu;0;L;038A;;;;N;;;;1F77;-1FDD;GREEK DASIA AND VARIA;Sk;0;ON;1FFE 0300;;;;N;;;;;-1FDE;GREEK DASIA AND OXIA;Sk;0;ON;1FFE 0301;;;;N;;;;;-1FDF;GREEK DASIA AND PERISPOMENI;Sk;0;ON;1FFE 0342;;;;N;;;;;-1FE0;GREEK SMALL LETTER UPSILON WITH VRACHY;Ll;0;L;03C5 0306;;;;N;;;1FE8;;1FE8-1FE1;GREEK SMALL LETTER UPSILON WITH MACRON;Ll;0;L;03C5 0304;;;;N;;;1FE9;;1FE9-1FE2;GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA;Ll;0;L;03CB 0300;;;;N;;;;;-1FE3;GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA;Ll;0;L;03B0;;;;N;;;;;-1FE4;GREEK SMALL LETTER RHO WITH PSILI;Ll;0;L;03C1 0313;;;;N;;;;;-1FE5;GREEK SMALL LETTER RHO WITH DASIA;Ll;0;L;03C1 0314;;;;N;;;1FEC;;1FEC-1FE6;GREEK SMALL LETTER UPSILON WITH PERISPOMENI;Ll;0;L;03C5 0342;;;;N;;;;;-1FE7;GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI;Ll;0;L;03CB 0342;;;;N;;;;;-1FE8;GREEK CAPITAL LETTER UPSILON WITH VRACHY;Lu;0;L;03A5 0306;;;;N;;;;1FE0;-1FE9;GREEK CAPITAL LETTER UPSILON WITH MACRON;Lu;0;L;03A5 0304;;;;N;;;;1FE1;-1FEA;GREEK CAPITAL LETTER UPSILON WITH VARIA;Lu;0;L;03A5 0300;;;;N;;;;1F7A;-1FEB;GREEK CAPITAL LETTER UPSILON WITH OXIA;Lu;0;L;038E;;;;N;;;;1F7B;-1FEC;GREEK CAPITAL LETTER RHO WITH DASIA;Lu;0;L;03A1 0314;;;;N;;;;1FE5;-1FED;GREEK DIALYTIKA AND VARIA;Sk;0;ON;00A8 0300;;;;N;;;;;-1FEE;GREEK DIALYTIKA AND OXIA;Sk;0;ON;0385;;;;N;;;;;-1FEF;GREEK VARIA;Sk;0;ON;0060;;;;N;;;;;-1FF2;GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI;Ll;0;L;1F7C 0345;;;;N;;;;;-1FF3;GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI;Ll;0;L;03C9 0345;;;;N;;;1FFC;;1FFC-1FF4;GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI;Ll;0;L;03CE 0345;;;;N;;;;;-1FF6;GREEK SMALL LETTER OMEGA WITH PERISPOMENI;Ll;0;L;03C9 0342;;;;N;;;;;-1FF7;GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI;Ll;0;L;1FF6 0345;;;;N;;;;;-1FF8;GREEK CAPITAL LETTER OMICRON WITH VARIA;Lu;0;L;039F 0300;;;;N;;;;1F78;-1FF9;GREEK CAPITAL LETTER OMICRON WITH OXIA;Lu;0;L;038C;;;;N;;;;1F79;-1FFA;GREEK CAPITAL LETTER OMEGA WITH VARIA;Lu;0;L;03A9 0300;;;;N;;;;1F7C;-1FFB;GREEK CAPITAL LETTER OMEGA WITH OXIA;Lu;0;L;038F;;;;N;;;;1F7D;-1FFC;GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI;Lt;0;L;03A9 0345;;;;N;;;;1FF3;-1FFD;GREEK OXIA;Sk;0;ON;00B4;;;;N;;;;;-1FFE;GREEK DASIA;Sk;0;ON;<compat> 0020 0314;;;;N;;;;;-2000;EN QUAD;Zs;0;WS;2002;;;;N;;;;;-2001;EM QUAD;Zs;0;WS;2003;;;;N;;;;;-2002;EN SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-2003;EM SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-2004;THREE-PER-EM SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-2005;FOUR-PER-EM SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-2006;SIX-PER-EM SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-2007;FIGURE SPACE;Zs;0;WS;<noBreak> 0020;;;;N;;;;;-2008;PUNCTUATION SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-2009;THIN SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-200A;HAIR SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-200B;ZERO WIDTH SPACE;Cf;0;BN;;;;;N;;;;;-200C;ZERO WIDTH NON-JOINER;Cf;0;BN;;;;;N;;;;;-200D;ZERO WIDTH JOINER;Cf;0;BN;;;;;N;;;;;-200E;LEFT-TO-RIGHT MARK;Cf;0;L;;;;;N;;;;;-200F;RIGHT-TO-LEFT MARK;Cf;0;R;;;;;N;;;;;-2010;HYPHEN;Pd;0;ON;;;;;N;;;;;-2011;NON-BREAKING HYPHEN;Pd;0;ON;<noBreak> 2010;;;;N;;;;;-2012;FIGURE DASH;Pd;0;ON;;;;;N;;;;;-2013;EN DASH;Pd;0;ON;;;;;N;;;;;-2014;EM DASH;Pd;0;ON;;;;;N;;;;;-2015;HORIZONTAL BAR;Pd;0;ON;;;;;N;QUOTATION DASH;;;;-2016;DOUBLE VERTICAL LINE;Po;0;ON;;;;;N;DOUBLE VERTICAL BAR;;;;-2017;DOUBLE LOW LINE;Po;0;ON;<compat> 0020 0333;;;;N;SPACING DOUBLE UNDERSCORE;;;;-2018;LEFT SINGLE QUOTATION MARK;Pi;0;ON;;;;;N;SINGLE TURNED COMMA QUOTATION MARK;;;;-2019;RIGHT SINGLE QUOTATION MARK;Pf;0;ON;;;;;N;SINGLE COMMA QUOTATION MARK;;;;-201A;SINGLE LOW-9 QUOTATION MARK;Ps;0;ON;;;;;N;LOW SINGLE COMMA QUOTATION MARK;;;;-201B;SINGLE HIGH-REVERSED-9 QUOTATION MARK;Pi;0;ON;;;;;N;SINGLE REVERSED COMMA QUOTATION MARK;;;;-201C;LEFT DOUBLE QUOTATION MARK;Pi;0;ON;;;;;N;DOUBLE TURNED COMMA QUOTATION MARK;;;;-201D;RIGHT DOUBLE QUOTATION MARK;Pf;0;ON;;;;;N;DOUBLE COMMA QUOTATION MARK;;;;-201E;DOUBLE LOW-9 QUOTATION MARK;Ps;0;ON;;;;;N;LOW DOUBLE COMMA QUOTATION MARK;;;;-201F;DOUBLE HIGH-REVERSED-9 QUOTATION MARK;Pi;0;ON;;;;;N;DOUBLE REVERSED COMMA QUOTATION MARK;;;;-2020;DAGGER;Po;0;ON;;;;;N;;;;;-2021;DOUBLE DAGGER;Po;0;ON;;;;;N;;;;;-2022;BULLET;Po;0;ON;;;;;N;;;;;-2023;TRIANGULAR BULLET;Po;0;ON;;;;;N;;;;;-2024;ONE DOT LEADER;Po;0;ON;<compat> 002E;;;;N;;;;;-2025;TWO DOT LEADER;Po;0;ON;<compat> 002E 002E;;;;N;;;;;-2026;HORIZONTAL ELLIPSIS;Po;0;ON;<compat> 002E 002E 002E;;;;N;;;;;-2027;HYPHENATION POINT;Po;0;ON;;;;;N;;;;;-2028;LINE SEPARATOR;Zl;0;WS;;;;;N;;;;;-2029;PARAGRAPH SEPARATOR;Zp;0;B;;;;;N;;;;;-202A;LEFT-TO-RIGHT EMBEDDING;Cf;0;LRE;;;;;N;;;;;-202B;RIGHT-TO-LEFT EMBEDDING;Cf;0;RLE;;;;;N;;;;;-202C;POP DIRECTIONAL FORMATTING;Cf;0;PDF;;;;;N;;;;;-202D;LEFT-TO-RIGHT OVERRIDE;Cf;0;LRO;;;;;N;;;;;-202E;RIGHT-TO-LEFT OVERRIDE;Cf;0;RLO;;;;;N;;;;;-202F;NARROW NO-BREAK SPACE;Zs;0;CS;<noBreak> 0020;;;;N;;;;;-2030;PER MILLE SIGN;Po;0;ET;;;;;N;;;;;-2031;PER TEN THOUSAND SIGN;Po;0;ET;;;;;N;;;;;-2032;PRIME;Po;0;ET;;;;;N;;;;;-2033;DOUBLE PRIME;Po;0;ET;<compat> 2032 2032;;;;N;;;;;-2034;TRIPLE PRIME;Po;0;ET;<compat> 2032 2032 2032;;;;N;;;;;-2035;REVERSED PRIME;Po;0;ON;;;;;N;;;;;-2036;REVERSED DOUBLE PRIME;Po;0;ON;<compat> 2035 2035;;;;N;;;;;-2037;REVERSED TRIPLE PRIME;Po;0;ON;<compat> 2035 2035 2035;;;;N;;;;;-2038;CARET;Po;0;ON;;;;;N;;;;;-2039;SINGLE LEFT-POINTING ANGLE QUOTATION MARK;Pi;0;ON;;;;;Y;LEFT POINTING SINGLE GUILLEMET;;;;-203A;SINGLE RIGHT-POINTING ANGLE QUOTATION MARK;Pf;0;ON;;;;;Y;RIGHT POINTING SINGLE GUILLEMET;;;;-203B;REFERENCE MARK;Po;0;ON;;;;;N;;;;;-203C;DOUBLE EXCLAMATION MARK;Po;0;ON;<compat> 0021 0021;;;;N;;;;;-203D;INTERROBANG;Po;0;ON;;;;;N;;;;;-203E;OVERLINE;Po;0;ON;<compat> 0020 0305;;;;N;SPACING OVERSCORE;;;;-203F;UNDERTIE;Pc;0;ON;;;;;N;;;;;-2040;CHARACTER TIE;Pc;0;ON;;;;;N;;;;;-2041;CARET INSERTION POINT;Po;0;ON;;;;;N;;;;;-2042;ASTERISM;Po;0;ON;;;;;N;;;;;-2043;HYPHEN BULLET;Po;0;ON;;;;;N;;;;;-2044;FRACTION SLASH;Sm;0;CS;;;;;N;;;;;-2045;LEFT SQUARE BRACKET WITH QUILL;Ps;0;ON;;;;;Y;;;;;-2046;RIGHT SQUARE BRACKET WITH QUILL;Pe;0;ON;;;;;Y;;;;;-2047;DOUBLE QUESTION MARK;Po;0;ON;<compat> 003F 003F;;;;N;;;;;-2048;QUESTION EXCLAMATION MARK;Po;0;ON;<compat> 003F 0021;;;;N;;;;;-2049;EXCLAMATION QUESTION MARK;Po;0;ON;<compat> 0021 003F;;;;N;;;;;-204A;TIRONIAN SIGN ET;Po;0;ON;;;;;N;;;;;-204B;REVERSED PILCROW SIGN;Po;0;ON;;;;;N;;;;;-204C;BLACK LEFTWARDS BULLET;Po;0;ON;;;;;N;;;;;-204D;BLACK RIGHTWARDS BULLET;Po;0;ON;;;;;N;;;;;-204E;LOW ASTERISK;Po;0;ON;;;;;N;;;;;-204F;REVERSED SEMICOLON;Po;0;ON;;;;;N;;;;;-2050;CLOSE UP;Po;0;ON;;;;;N;;;;;-2051;TWO ASTERISKS ALIGNED VERTICALLY;Po;0;ON;;;;;N;;;;;-2052;COMMERCIAL MINUS SIGN;Sm;0;ON;;;;;N;;;;;-2053;SWUNG DASH;Po;0;ON;;;;;N;;;;;-2054;INVERTED UNDERTIE;Pc;0;ON;;;;;N;;;;;-2055;FLOWER PUNCTUATION MARK;Po;0;ON;;;;;N;;;;;-2056;THREE DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-2057;QUADRUPLE PRIME;Po;0;ON;<compat> 2032 2032 2032 2032;;;;N;;;;;-2058;FOUR DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-2059;FIVE DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-205A;TWO DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-205B;FOUR DOT MARK;Po;0;ON;;;;;N;;;;;-205C;DOTTED CROSS;Po;0;ON;;;;;N;;;;;-205D;TRICOLON;Po;0;ON;;;;;N;;;;;-205E;VERTICAL FOUR DOTS;Po;0;ON;;;;;N;;;;;-205F;MEDIUM MATHEMATICAL SPACE;Zs;0;WS;<compat> 0020;;;;N;;;;;-2060;WORD JOINER;Cf;0;BN;;;;;N;;;;;-2061;FUNCTION APPLICATION;Cf;0;BN;;;;;N;;;;;-2062;INVISIBLE TIMES;Cf;0;BN;;;;;N;;;;;-2063;INVISIBLE SEPARATOR;Cf;0;BN;;;;;N;;;;;-2064;INVISIBLE PLUS;Cf;0;BN;;;;;N;;;;;-2066;LEFT-TO-RIGHT ISOLATE;Cf;0;LRI;;;;;N;;;;;-2067;RIGHT-TO-LEFT ISOLATE;Cf;0;RLI;;;;;N;;;;;-2068;FIRST STRONG ISOLATE;Cf;0;FSI;;;;;N;;;;;-2069;POP DIRECTIONAL ISOLATE;Cf;0;PDI;;;;;N;;;;;-206A;INHIBIT SYMMETRIC SWAPPING;Cf;0;BN;;;;;N;;;;;-206B;ACTIVATE SYMMETRIC SWAPPING;Cf;0;BN;;;;;N;;;;;-206C;INHIBIT ARABIC FORM SHAPING;Cf;0;BN;;;;;N;;;;;-206D;ACTIVATE ARABIC FORM SHAPING;Cf;0;BN;;;;;N;;;;;-206E;NATIONAL DIGIT SHAPES;Cf;0;BN;;;;;N;;;;;-206F;NOMINAL DIGIT SHAPES;Cf;0;BN;;;;;N;;;;;-2070;SUPERSCRIPT ZERO;No;0;EN;<super> 0030;;0;0;N;SUPERSCRIPT DIGIT ZERO;;;;-2071;SUPERSCRIPT LATIN SMALL LETTER I;Lm;0;L;<super> 0069;;;;N;;;;;-2074;SUPERSCRIPT FOUR;No;0;EN;<super> 0034;;4;4;N;SUPERSCRIPT DIGIT FOUR;;;;-2075;SUPERSCRIPT FIVE;No;0;EN;<super> 0035;;5;5;N;SUPERSCRIPT DIGIT FIVE;;;;-2076;SUPERSCRIPT SIX;No;0;EN;<super> 0036;;6;6;N;SUPERSCRIPT DIGIT SIX;;;;-2077;SUPERSCRIPT SEVEN;No;0;EN;<super> 0037;;7;7;N;SUPERSCRIPT DIGIT SEVEN;;;;-2078;SUPERSCRIPT EIGHT;No;0;EN;<super> 0038;;8;8;N;SUPERSCRIPT DIGIT EIGHT;;;;-2079;SUPERSCRIPT NINE;No;0;EN;<super> 0039;;9;9;N;SUPERSCRIPT DIGIT NINE;;;;-207A;SUPERSCRIPT PLUS SIGN;Sm;0;ES;<super> 002B;;;;N;;;;;-207B;SUPERSCRIPT MINUS;Sm;0;ES;<super> 2212;;;;N;SUPERSCRIPT HYPHEN-MINUS;;;;-207C;SUPERSCRIPT EQUALS SIGN;Sm;0;ON;<super> 003D;;;;N;;;;;-207D;SUPERSCRIPT LEFT PARENTHESIS;Ps;0;ON;<super> 0028;;;;Y;SUPERSCRIPT OPENING PARENTHESIS;;;;-207E;SUPERSCRIPT RIGHT PARENTHESIS;Pe;0;ON;<super> 0029;;;;Y;SUPERSCRIPT CLOSING PARENTHESIS;;;;-207F;SUPERSCRIPT LATIN SMALL LETTER N;Lm;0;L;<super> 006E;;;;N;;;;;-2080;SUBSCRIPT ZERO;No;0;EN;<sub> 0030;;0;0;N;SUBSCRIPT DIGIT ZERO;;;;-2081;SUBSCRIPT ONE;No;0;EN;<sub> 0031;;1;1;N;SUBSCRIPT DIGIT ONE;;;;-2082;SUBSCRIPT TWO;No;0;EN;<sub> 0032;;2;2;N;SUBSCRIPT DIGIT TWO;;;;-2083;SUBSCRIPT THREE;No;0;EN;<sub> 0033;;3;3;N;SUBSCRIPT DIGIT THREE;;;;-2084;SUBSCRIPT FOUR;No;0;EN;<sub> 0034;;4;4;N;SUBSCRIPT DIGIT FOUR;;;;-2085;SUBSCRIPT FIVE;No;0;EN;<sub> 0035;;5;5;N;SUBSCRIPT DIGIT FIVE;;;;-2086;SUBSCRIPT SIX;No;0;EN;<sub> 0036;;6;6;N;SUBSCRIPT DIGIT SIX;;;;-2087;SUBSCRIPT SEVEN;No;0;EN;<sub> 0037;;7;7;N;SUBSCRIPT DIGIT SEVEN;;;;-2088;SUBSCRIPT EIGHT;No;0;EN;<sub> 0038;;8;8;N;SUBSCRIPT DIGIT EIGHT;;;;-2089;SUBSCRIPT NINE;No;0;EN;<sub> 0039;;9;9;N;SUBSCRIPT DIGIT NINE;;;;-208A;SUBSCRIPT PLUS SIGN;Sm;0;ES;<sub> 002B;;;;N;;;;;-208B;SUBSCRIPT MINUS;Sm;0;ES;<sub> 2212;;;;N;SUBSCRIPT HYPHEN-MINUS;;;;-208C;SUBSCRIPT EQUALS SIGN;Sm;0;ON;<sub> 003D;;;;N;;;;;-208D;SUBSCRIPT LEFT PARENTHESIS;Ps;0;ON;<sub> 0028;;;;Y;SUBSCRIPT OPENING PARENTHESIS;;;;-208E;SUBSCRIPT RIGHT PARENTHESIS;Pe;0;ON;<sub> 0029;;;;Y;SUBSCRIPT CLOSING PARENTHESIS;;;;-2090;LATIN SUBSCRIPT SMALL LETTER A;Lm;0;L;<sub> 0061;;;;N;;;;;-2091;LATIN SUBSCRIPT SMALL LETTER E;Lm;0;L;<sub> 0065;;;;N;;;;;-2092;LATIN SUBSCRIPT SMALL LETTER O;Lm;0;L;<sub> 006F;;;;N;;;;;-2093;LATIN SUBSCRIPT SMALL LETTER X;Lm;0;L;<sub> 0078;;;;N;;;;;-2094;LATIN SUBSCRIPT SMALL LETTER SCHWA;Lm;0;L;<sub> 0259;;;;N;;;;;-2095;LATIN SUBSCRIPT SMALL LETTER H;Lm;0;L;<sub> 0068;;;;N;;;;;-2096;LATIN SUBSCRIPT SMALL LETTER K;Lm;0;L;<sub> 006B;;;;N;;;;;-2097;LATIN SUBSCRIPT SMALL LETTER L;Lm;0;L;<sub> 006C;;;;N;;;;;-2098;LATIN SUBSCRIPT SMALL LETTER M;Lm;0;L;<sub> 006D;;;;N;;;;;-2099;LATIN SUBSCRIPT SMALL LETTER N;Lm;0;L;<sub> 006E;;;;N;;;;;-209A;LATIN SUBSCRIPT SMALL LETTER P;Lm;0;L;<sub> 0070;;;;N;;;;;-209B;LATIN SUBSCRIPT SMALL LETTER S;Lm;0;L;<sub> 0073;;;;N;;;;;-209C;LATIN SUBSCRIPT SMALL LETTER T;Lm;0;L;<sub> 0074;;;;N;;;;;-20A0;EURO-CURRENCY SIGN;Sc;0;ET;;;;;N;;;;;-20A1;COLON SIGN;Sc;0;ET;;;;;N;;;;;-20A2;CRUZEIRO SIGN;Sc;0;ET;;;;;N;;;;;-20A3;FRENCH FRANC SIGN;Sc;0;ET;;;;;N;;;;;-20A4;LIRA SIGN;Sc;0;ET;;;;;N;;;;;-20A5;MILL SIGN;Sc;0;ET;;;;;N;;;;;-20A6;NAIRA SIGN;Sc;0;ET;;;;;N;;;;;-20A7;PESETA SIGN;Sc;0;ET;;;;;N;;;;;-20A8;RUPEE SIGN;Sc;0;ET;<compat> 0052 0073;;;;N;;;;;-20A9;WON SIGN;Sc;0;ET;;;;;N;;;;;-20AA;NEW SHEQEL SIGN;Sc;0;ET;;;;;N;;;;;-20AB;DONG SIGN;Sc;0;ET;;;;;N;;;;;-20AC;EURO SIGN;Sc;0;ET;;;;;N;;;;;-20AD;KIP SIGN;Sc;0;ET;;;;;N;;;;;-20AE;TUGRIK SIGN;Sc;0;ET;;;;;N;;;;;-20AF;DRACHMA SIGN;Sc;0;ET;;;;;N;;;;;-20B0;GERMAN PENNY SIGN;Sc;0;ET;;;;;N;;;;;-20B1;PESO SIGN;Sc;0;ET;;;;;N;;;;;-20B2;GUARANI SIGN;Sc;0;ET;;;;;N;;;;;-20B3;AUSTRAL SIGN;Sc;0;ET;;;;;N;;;;;-20B4;HRYVNIA SIGN;Sc;0;ET;;;;;N;;;;;-20B5;CEDI SIGN;Sc;0;ET;;;;;N;;;;;-20B6;LIVRE TOURNOIS SIGN;Sc;0;ET;;;;;N;;;;;-20B7;SPESMILO SIGN;Sc;0;ET;;;;;N;;;;;-20B8;TENGE SIGN;Sc;0;ET;;;;;N;;;;;-20B9;INDIAN RUPEE SIGN;Sc;0;ET;;;;;N;;;;;-20BA;TURKISH LIRA SIGN;Sc;0;ET;;;;;N;;;;;-20BB;NORDIC MARK SIGN;Sc;0;ET;;;;;N;;;;;-20BC;MANAT SIGN;Sc;0;ET;;;;;N;;;;;-20BD;RUBLE SIGN;Sc;0;ET;;;;;N;;;;;-20D0;COMBINING LEFT HARPOON ABOVE;Mn;230;NSM;;;;;N;NON-SPACING LEFT HARPOON ABOVE;;;;-20D1;COMBINING RIGHT HARPOON ABOVE;Mn;230;NSM;;;;;N;NON-SPACING RIGHT HARPOON ABOVE;;;;-20D2;COMBINING LONG VERTICAL LINE OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING LONG VERTICAL BAR OVERLAY;;;;-20D3;COMBINING SHORT VERTICAL LINE OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING SHORT VERTICAL BAR OVERLAY;;;;-20D4;COMBINING ANTICLOCKWISE ARROW ABOVE;Mn;230;NSM;;;;;N;NON-SPACING ANTICLOCKWISE ARROW ABOVE;;;;-20D5;COMBINING CLOCKWISE ARROW ABOVE;Mn;230;NSM;;;;;N;NON-SPACING CLOCKWISE ARROW ABOVE;;;;-20D6;COMBINING LEFT ARROW ABOVE;Mn;230;NSM;;;;;N;NON-SPACING LEFT ARROW ABOVE;;;;-20D7;COMBINING RIGHT ARROW ABOVE;Mn;230;NSM;;;;;N;NON-SPACING RIGHT ARROW ABOVE;;;;-20D8;COMBINING RING OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING RING OVERLAY;;;;-20D9;COMBINING CLOCKWISE RING OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING CLOCKWISE RING OVERLAY;;;;-20DA;COMBINING ANTICLOCKWISE RING OVERLAY;Mn;1;NSM;;;;;N;NON-SPACING ANTICLOCKWISE RING OVERLAY;;;;-20DB;COMBINING THREE DOTS ABOVE;Mn;230;NSM;;;;;N;NON-SPACING THREE DOTS ABOVE;;;;-20DC;COMBINING FOUR DOTS ABOVE;Mn;230;NSM;;;;;N;NON-SPACING FOUR DOTS ABOVE;;;;-20DD;COMBINING ENCLOSING CIRCLE;Me;0;NSM;;;;;N;ENCLOSING CIRCLE;;;;-20DE;COMBINING ENCLOSING SQUARE;Me;0;NSM;;;;;N;ENCLOSING SQUARE;;;;-20DF;COMBINING ENCLOSING DIAMOND;Me;0;NSM;;;;;N;ENCLOSING DIAMOND;;;;-20E0;COMBINING ENCLOSING CIRCLE BACKSLASH;Me;0;NSM;;;;;N;ENCLOSING CIRCLE SLASH;;;;-20E1;COMBINING LEFT RIGHT ARROW ABOVE;Mn;230;NSM;;;;;N;NON-SPACING LEFT RIGHT ARROW ABOVE;;;;-20E2;COMBINING ENCLOSING SCREEN;Me;0;NSM;;;;;N;;;;;-20E3;COMBINING ENCLOSING KEYCAP;Me;0;NSM;;;;;N;;;;;-20E4;COMBINING ENCLOSING UPWARD POINTING TRIANGLE;Me;0;NSM;;;;;N;;;;;-20E5;COMBINING REVERSE SOLIDUS OVERLAY;Mn;1;NSM;;;;;N;;;;;-20E6;COMBINING DOUBLE VERTICAL STROKE OVERLAY;Mn;1;NSM;;;;;N;;;;;-20E7;COMBINING ANNUITY SYMBOL;Mn;230;NSM;;;;;N;;;;;-20E8;COMBINING TRIPLE UNDERDOT;Mn;220;NSM;;;;;N;;;;;-20E9;COMBINING WIDE BRIDGE ABOVE;Mn;230;NSM;;;;;N;;;;;-20EA;COMBINING LEFTWARDS ARROW OVERLAY;Mn;1;NSM;;;;;N;;;;;-20EB;COMBINING LONG DOUBLE SOLIDUS OVERLAY;Mn;1;NSM;;;;;N;;;;;-20EC;COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS;Mn;220;NSM;;;;;N;;;;;-20ED;COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS;Mn;220;NSM;;;;;N;;;;;-20EE;COMBINING LEFT ARROW BELOW;Mn;220;NSM;;;;;N;;;;;-20EF;COMBINING RIGHT ARROW BELOW;Mn;220;NSM;;;;;N;;;;;-20F0;COMBINING ASTERISK ABOVE;Mn;230;NSM;;;;;N;;;;;-2100;ACCOUNT OF;So;0;ON;<compat> 0061 002F 0063;;;;N;;;;;-2101;ADDRESSED TO THE SUBJECT;So;0;ON;<compat> 0061 002F 0073;;;;N;;;;;-2102;DOUBLE-STRUCK CAPITAL C;Lu;0;L;<font> 0043;;;;N;DOUBLE-STRUCK C;;;;-2103;DEGREE CELSIUS;So;0;ON;<compat> 00B0 0043;;;;N;DEGREES CENTIGRADE;;;;-2104;CENTRE LINE SYMBOL;So;0;ON;;;;;N;C L SYMBOL;;;;-2105;CARE OF;So;0;ON;<compat> 0063 002F 006F;;;;N;;;;;-2106;CADA UNA;So;0;ON;<compat> 0063 002F 0075;;;;N;;;;;-2107;EULER CONSTANT;Lu;0;L;<compat> 0190;;;;N;EULERS;;;;-2108;SCRUPLE;So;0;ON;;;;;N;;;;;-2109;DEGREE FAHRENHEIT;So;0;ON;<compat> 00B0 0046;;;;N;DEGREES FAHRENHEIT;;;;-210A;SCRIPT SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-210B;SCRIPT CAPITAL H;Lu;0;L;<font> 0048;;;;N;SCRIPT H;;;;-210C;BLACK-LETTER CAPITAL H;Lu;0;L;<font> 0048;;;;N;BLACK-LETTER H;;;;-210D;DOUBLE-STRUCK CAPITAL H;Lu;0;L;<font> 0048;;;;N;DOUBLE-STRUCK H;;;;-210E;PLANCK CONSTANT;Ll;0;L;<font> 0068;;;;N;;;;;-210F;PLANCK CONSTANT OVER TWO PI;Ll;0;L;<font> 0127;;;;N;PLANCK CONSTANT OVER 2 PI;;;;-2110;SCRIPT CAPITAL I;Lu;0;L;<font> 0049;;;;N;SCRIPT I;;;;-2111;BLACK-LETTER CAPITAL I;Lu;0;L;<font> 0049;;;;N;BLACK-LETTER I;;;;-2112;SCRIPT CAPITAL L;Lu;0;L;<font> 004C;;;;N;SCRIPT L;;;;-2113;SCRIPT SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-2114;L B BAR SYMBOL;So;0;ON;;;;;N;;;;;-2115;DOUBLE-STRUCK CAPITAL N;Lu;0;L;<font> 004E;;;;N;DOUBLE-STRUCK N;;;;-2116;NUMERO SIGN;So;0;ON;<compat> 004E 006F;;;;N;NUMERO;;;;-2117;SOUND RECORDING COPYRIGHT;So;0;ON;;;;;N;;;;;-2118;SCRIPT CAPITAL P;Sm;0;ON;;;;;N;SCRIPT P;;;;-2119;DOUBLE-STRUCK CAPITAL P;Lu;0;L;<font> 0050;;;;N;DOUBLE-STRUCK P;;;;-211A;DOUBLE-STRUCK CAPITAL Q;Lu;0;L;<font> 0051;;;;N;DOUBLE-STRUCK Q;;;;-211B;SCRIPT CAPITAL R;Lu;0;L;<font> 0052;;;;N;SCRIPT R;;;;-211C;BLACK-LETTER CAPITAL R;Lu;0;L;<font> 0052;;;;N;BLACK-LETTER R;;;;-211D;DOUBLE-STRUCK CAPITAL R;Lu;0;L;<font> 0052;;;;N;DOUBLE-STRUCK R;;;;-211E;PRESCRIPTION TAKE;So;0;ON;;;;;N;;;;;-211F;RESPONSE;So;0;ON;;;;;N;;;;;-2120;SERVICE MARK;So;0;ON;<super> 0053 004D;;;;N;;;;;-2121;TELEPHONE SIGN;So;0;ON;<compat> 0054 0045 004C;;;;N;T E L SYMBOL;;;;-2122;TRADE MARK SIGN;So;0;ON;<super> 0054 004D;;;;N;TRADEMARK;;;;-2123;VERSICLE;So;0;ON;;;;;N;;;;;-2124;DOUBLE-STRUCK CAPITAL Z;Lu;0;L;<font> 005A;;;;N;DOUBLE-STRUCK Z;;;;-2125;OUNCE SIGN;So;0;ON;;;;;N;OUNCE;;;;-2126;OHM SIGN;Lu;0;L;03A9;;;;N;OHM;;;03C9;-2127;INVERTED OHM SIGN;So;0;ON;;;;;N;MHO;;;;-2128;BLACK-LETTER CAPITAL Z;Lu;0;L;<font> 005A;;;;N;BLACK-LETTER Z;;;;-2129;TURNED GREEK SMALL LETTER IOTA;So;0;ON;;;;;N;;;;;-212A;KELVIN SIGN;Lu;0;L;004B;;;;N;DEGREES KELVIN;;;006B;-212B;ANGSTROM SIGN;Lu;0;L;00C5;;;;N;ANGSTROM UNIT;;;00E5;-212C;SCRIPT CAPITAL B;Lu;0;L;<font> 0042;;;;N;SCRIPT B;;;;-212D;BLACK-LETTER CAPITAL C;Lu;0;L;<font> 0043;;;;N;BLACK-LETTER C;;;;-212E;ESTIMATED SYMBOL;So;0;ET;;;;;N;;;;;-212F;SCRIPT SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-2130;SCRIPT CAPITAL E;Lu;0;L;<font> 0045;;;;N;SCRIPT E;;;;-2131;SCRIPT CAPITAL F;Lu;0;L;<font> 0046;;;;N;SCRIPT F;;;;-2132;TURNED CAPITAL F;Lu;0;L;;;;;N;TURNED F;;;214E;-2133;SCRIPT CAPITAL M;Lu;0;L;<font> 004D;;;;N;SCRIPT M;;;;-2134;SCRIPT SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-2135;ALEF SYMBOL;Lo;0;L;<compat> 05D0;;;;N;FIRST TRANSFINITE CARDINAL;;;;-2136;BET SYMBOL;Lo;0;L;<compat> 05D1;;;;N;SECOND TRANSFINITE CARDINAL;;;;-2137;GIMEL SYMBOL;Lo;0;L;<compat> 05D2;;;;N;THIRD TRANSFINITE CARDINAL;;;;-2138;DALET SYMBOL;Lo;0;L;<compat> 05D3;;;;N;FOURTH TRANSFINITE CARDINAL;;;;-2139;INFORMATION SOURCE;Ll;0;L;<font> 0069;;;;N;;;;;-213A;ROTATED CAPITAL Q;So;0;ON;;;;;N;;;;;-213B;FACSIMILE SIGN;So;0;ON;<compat> 0046 0041 0058;;;;N;;;;;-213C;DOUBLE-STRUCK SMALL PI;Ll;0;L;<font> 03C0;;;;N;;;;;-213D;DOUBLE-STRUCK SMALL GAMMA;Ll;0;L;<font> 03B3;;;;N;;;;;-213E;DOUBLE-STRUCK CAPITAL GAMMA;Lu;0;L;<font> 0393;;;;N;;;;;-213F;DOUBLE-STRUCK CAPITAL PI;Lu;0;L;<font> 03A0;;;;N;;;;;-2140;DOUBLE-STRUCK N-ARY SUMMATION;Sm;0;ON;<font> 2211;;;;Y;;;;;-2141;TURNED SANS-SERIF CAPITAL G;Sm;0;ON;;;;;N;;;;;-2142;TURNED SANS-SERIF CAPITAL L;Sm;0;ON;;;;;N;;;;;-2143;REVERSED SANS-SERIF CAPITAL L;Sm;0;ON;;;;;N;;;;;-2144;TURNED SANS-SERIF CAPITAL Y;Sm;0;ON;;;;;N;;;;;-2145;DOUBLE-STRUCK ITALIC CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-2146;DOUBLE-STRUCK ITALIC SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-2147;DOUBLE-STRUCK ITALIC SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-2148;DOUBLE-STRUCK ITALIC SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-2149;DOUBLE-STRUCK ITALIC SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-214A;PROPERTY LINE;So;0;ON;;;;;N;;;;;-214B;TURNED AMPERSAND;Sm;0;ON;;;;;N;;;;;-214C;PER SIGN;So;0;ON;;;;;N;;;;;-214D;AKTIESELSKAB;So;0;ON;;;;;N;;;;;-214E;TURNED SMALL F;Ll;0;L;;;;;N;;;2132;;2132-214F;SYMBOL FOR SAMARITAN SOURCE;So;0;L;;;;;N;;;;;-2150;VULGAR FRACTION ONE SEVENTH;No;0;ON;<fraction> 0031 2044 0037;;;1/7;N;;;;;-2151;VULGAR FRACTION ONE NINTH;No;0;ON;<fraction> 0031 2044 0039;;;1/9;N;;;;;-2152;VULGAR FRACTION ONE TENTH;No;0;ON;<fraction> 0031 2044 0031 0030;;;1/10;N;;;;;-2153;VULGAR FRACTION ONE THIRD;No;0;ON;<fraction> 0031 2044 0033;;;1/3;N;FRACTION ONE THIRD;;;;-2154;VULGAR FRACTION TWO THIRDS;No;0;ON;<fraction> 0032 2044 0033;;;2/3;N;FRACTION TWO THIRDS;;;;-2155;VULGAR FRACTION ONE FIFTH;No;0;ON;<fraction> 0031 2044 0035;;;1/5;N;FRACTION ONE FIFTH;;;;-2156;VULGAR FRACTION TWO FIFTHS;No;0;ON;<fraction> 0032 2044 0035;;;2/5;N;FRACTION TWO FIFTHS;;;;-2157;VULGAR FRACTION THREE FIFTHS;No;0;ON;<fraction> 0033 2044 0035;;;3/5;N;FRACTION THREE FIFTHS;;;;-2158;VULGAR FRACTION FOUR FIFTHS;No;0;ON;<fraction> 0034 2044 0035;;;4/5;N;FRACTION FOUR FIFTHS;;;;-2159;VULGAR FRACTION ONE SIXTH;No;0;ON;<fraction> 0031 2044 0036;;;1/6;N;FRACTION ONE SIXTH;;;;-215A;VULGAR FRACTION FIVE SIXTHS;No;0;ON;<fraction> 0035 2044 0036;;;5/6;N;FRACTION FIVE SIXTHS;;;;-215B;VULGAR FRACTION ONE EIGHTH;No;0;ON;<fraction> 0031 2044 0038;;;1/8;N;FRACTION ONE EIGHTH;;;;-215C;VULGAR FRACTION THREE EIGHTHS;No;0;ON;<fraction> 0033 2044 0038;;;3/8;N;FRACTION THREE EIGHTHS;;;;-215D;VULGAR FRACTION FIVE EIGHTHS;No;0;ON;<fraction> 0035 2044 0038;;;5/8;N;FRACTION FIVE EIGHTHS;;;;-215E;VULGAR FRACTION SEVEN EIGHTHS;No;0;ON;<fraction> 0037 2044 0038;;;7/8;N;FRACTION SEVEN EIGHTHS;;;;-215F;FRACTION NUMERATOR ONE;No;0;ON;<fraction> 0031 2044;;;1;N;;;;;-2160;ROMAN NUMERAL ONE;Nl;0;L;<compat> 0049;;;1;N;;;;2170;-2161;ROMAN NUMERAL TWO;Nl;0;L;<compat> 0049 0049;;;2;N;;;;2171;-2162;ROMAN NUMERAL THREE;Nl;0;L;<compat> 0049 0049 0049;;;3;N;;;;2172;-2163;ROMAN NUMERAL FOUR;Nl;0;L;<compat> 0049 0056;;;4;N;;;;2173;-2164;ROMAN NUMERAL FIVE;Nl;0;L;<compat> 0056;;;5;N;;;;2174;-2165;ROMAN NUMERAL SIX;Nl;0;L;<compat> 0056 0049;;;6;N;;;;2175;-2166;ROMAN NUMERAL SEVEN;Nl;0;L;<compat> 0056 0049 0049;;;7;N;;;;2176;-2167;ROMAN NUMERAL EIGHT;Nl;0;L;<compat> 0056 0049 0049 0049;;;8;N;;;;2177;-2168;ROMAN NUMERAL NINE;Nl;0;L;<compat> 0049 0058;;;9;N;;;;2178;-2169;ROMAN NUMERAL TEN;Nl;0;L;<compat> 0058;;;10;N;;;;2179;-216A;ROMAN NUMERAL ELEVEN;Nl;0;L;<compat> 0058 0049;;;11;N;;;;217A;-216B;ROMAN NUMERAL TWELVE;Nl;0;L;<compat> 0058 0049 0049;;;12;N;;;;217B;-216C;ROMAN NUMERAL FIFTY;Nl;0;L;<compat> 004C;;;50;N;;;;217C;-216D;ROMAN NUMERAL ONE HUNDRED;Nl;0;L;<compat> 0043;;;100;N;;;;217D;-216E;ROMAN NUMERAL FIVE HUNDRED;Nl;0;L;<compat> 0044;;;500;N;;;;217E;-216F;ROMAN NUMERAL ONE THOUSAND;Nl;0;L;<compat> 004D;;;1000;N;;;;217F;-2170;SMALL ROMAN NUMERAL ONE;Nl;0;L;<compat> 0069;;;1;N;;;2160;;2160-2171;SMALL ROMAN NUMERAL TWO;Nl;0;L;<compat> 0069 0069;;;2;N;;;2161;;2161-2172;SMALL ROMAN NUMERAL THREE;Nl;0;L;<compat> 0069 0069 0069;;;3;N;;;2162;;2162-2173;SMALL ROMAN NUMERAL FOUR;Nl;0;L;<compat> 0069 0076;;;4;N;;;2163;;2163-2174;SMALL ROMAN NUMERAL FIVE;Nl;0;L;<compat> 0076;;;5;N;;;2164;;2164-2175;SMALL ROMAN NUMERAL SIX;Nl;0;L;<compat> 0076 0069;;;6;N;;;2165;;2165-2176;SMALL ROMAN NUMERAL SEVEN;Nl;0;L;<compat> 0076 0069 0069;;;7;N;;;2166;;2166-2177;SMALL ROMAN NUMERAL EIGHT;Nl;0;L;<compat> 0076 0069 0069 0069;;;8;N;;;2167;;2167-2178;SMALL ROMAN NUMERAL NINE;Nl;0;L;<compat> 0069 0078;;;9;N;;;2168;;2168-2179;SMALL ROMAN NUMERAL TEN;Nl;0;L;<compat> 0078;;;10;N;;;2169;;2169-217A;SMALL ROMAN NUMERAL ELEVEN;Nl;0;L;<compat> 0078 0069;;;11;N;;;216A;;216A-217B;SMALL ROMAN NUMERAL TWELVE;Nl;0;L;<compat> 0078 0069 0069;;;12;N;;;216B;;216B-217C;SMALL ROMAN NUMERAL FIFTY;Nl;0;L;<compat> 006C;;;50;N;;;216C;;216C-217D;SMALL ROMAN NUMERAL ONE HUNDRED;Nl;0;L;<compat> 0063;;;100;N;;;216D;;216D-217E;SMALL ROMAN NUMERAL FIVE HUNDRED;Nl;0;L;<compat> 0064;;;500;N;;;216E;;216E-217F;SMALL ROMAN NUMERAL ONE THOUSAND;Nl;0;L;<compat> 006D;;;1000;N;;;216F;;216F-2180;ROMAN NUMERAL ONE THOUSAND C D;Nl;0;L;;;;1000;N;;;;;-2181;ROMAN NUMERAL FIVE THOUSAND;Nl;0;L;;;;5000;N;;;;;-2182;ROMAN NUMERAL TEN THOUSAND;Nl;0;L;;;;10000;N;;;;;-2183;ROMAN NUMERAL REVERSED ONE HUNDRED;Lu;0;L;;;;;N;;;;2184;-2184;LATIN SMALL LETTER REVERSED C;Ll;0;L;;;;;N;;;2183;;2183-2185;ROMAN NUMERAL SIX LATE FORM;Nl;0;L;;;;6;N;;;;;-2186;ROMAN NUMERAL FIFTY EARLY FORM;Nl;0;L;;;;50;N;;;;;-2187;ROMAN NUMERAL FIFTY THOUSAND;Nl;0;L;;;;50000;N;;;;;-2188;ROMAN NUMERAL ONE HUNDRED THOUSAND;Nl;0;L;;;;100000;N;;;;;-2189;VULGAR FRACTION ZERO THIRDS;No;0;ON;<fraction> 0030 2044 0033;;;0;N;;;;;-2190;LEFTWARDS ARROW;Sm;0;ON;;;;;N;LEFT ARROW;;;;-2191;UPWARDS ARROW;Sm;0;ON;;;;;N;UP ARROW;;;;-2192;RIGHTWARDS ARROW;Sm;0;ON;;;;;N;RIGHT ARROW;;;;-2193;DOWNWARDS ARROW;Sm;0;ON;;;;;N;DOWN ARROW;;;;-2194;LEFT RIGHT ARROW;Sm;0;ON;;;;;N;;;;;-2195;UP DOWN ARROW;So;0;ON;;;;;N;;;;;-2196;NORTH WEST ARROW;So;0;ON;;;;;N;UPPER LEFT ARROW;;;;-2197;NORTH EAST ARROW;So;0;ON;;;;;N;UPPER RIGHT ARROW;;;;-2198;SOUTH EAST ARROW;So;0;ON;;;;;N;LOWER RIGHT ARROW;;;;-2199;SOUTH WEST ARROW;So;0;ON;;;;;N;LOWER LEFT ARROW;;;;-219A;LEFTWARDS ARROW WITH STROKE;Sm;0;ON;2190 0338;;;;N;LEFT ARROW WITH STROKE;;;;-219B;RIGHTWARDS ARROW WITH STROKE;Sm;0;ON;2192 0338;;;;N;RIGHT ARROW WITH STROKE;;;;-219C;LEFTWARDS WAVE ARROW;So;0;ON;;;;;N;LEFT WAVE ARROW;;;;-219D;RIGHTWARDS WAVE ARROW;So;0;ON;;;;;N;RIGHT WAVE ARROW;;;;-219E;LEFTWARDS TWO HEADED ARROW;So;0;ON;;;;;N;LEFT TWO HEADED ARROW;;;;-219F;UPWARDS TWO HEADED ARROW;So;0;ON;;;;;N;UP TWO HEADED ARROW;;;;-21A0;RIGHTWARDS TWO HEADED ARROW;Sm;0;ON;;;;;N;RIGHT TWO HEADED ARROW;;;;-21A1;DOWNWARDS TWO HEADED ARROW;So;0;ON;;;;;N;DOWN TWO HEADED ARROW;;;;-21A2;LEFTWARDS ARROW WITH TAIL;So;0;ON;;;;;N;LEFT ARROW WITH TAIL;;;;-21A3;RIGHTWARDS ARROW WITH TAIL;Sm;0;ON;;;;;N;RIGHT ARROW WITH TAIL;;;;-21A4;LEFTWARDS ARROW FROM BAR;So;0;ON;;;;;N;LEFT ARROW FROM BAR;;;;-21A5;UPWARDS ARROW FROM BAR;So;0;ON;;;;;N;UP ARROW FROM BAR;;;;-21A6;RIGHTWARDS ARROW FROM BAR;Sm;0;ON;;;;;N;RIGHT ARROW FROM BAR;;;;-21A7;DOWNWARDS ARROW FROM BAR;So;0;ON;;;;;N;DOWN ARROW FROM BAR;;;;-21A8;UP DOWN ARROW WITH BASE;So;0;ON;;;;;N;;;;;-21A9;LEFTWARDS ARROW WITH HOOK;So;0;ON;;;;;N;LEFT ARROW WITH HOOK;;;;-21AA;RIGHTWARDS ARROW WITH HOOK;So;0;ON;;;;;N;RIGHT ARROW WITH HOOK;;;;-21AB;LEFTWARDS ARROW WITH LOOP;So;0;ON;;;;;N;LEFT ARROW WITH LOOP;;;;-21AC;RIGHTWARDS ARROW WITH LOOP;So;0;ON;;;;;N;RIGHT ARROW WITH LOOP;;;;-21AD;LEFT RIGHT WAVE ARROW;So;0;ON;;;;;N;;;;;-21AE;LEFT RIGHT ARROW WITH STROKE;Sm;0;ON;2194 0338;;;;N;;;;;-21AF;DOWNWARDS ZIGZAG ARROW;So;0;ON;;;;;N;DOWN ZIGZAG ARROW;;;;-21B0;UPWARDS ARROW WITH TIP LEFTWARDS;So;0;ON;;;;;N;UP ARROW WITH TIP LEFT;;;;-21B1;UPWARDS ARROW WITH TIP RIGHTWARDS;So;0;ON;;;;;N;UP ARROW WITH TIP RIGHT;;;;-21B2;DOWNWARDS ARROW WITH TIP LEFTWARDS;So;0;ON;;;;;N;DOWN ARROW WITH TIP LEFT;;;;-21B3;DOWNWARDS ARROW WITH TIP RIGHTWARDS;So;0;ON;;;;;N;DOWN ARROW WITH TIP RIGHT;;;;-21B4;RIGHTWARDS ARROW WITH CORNER DOWNWARDS;So;0;ON;;;;;N;RIGHT ARROW WITH CORNER DOWN;;;;-21B5;DOWNWARDS ARROW WITH CORNER LEFTWARDS;So;0;ON;;;;;N;DOWN ARROW WITH CORNER LEFT;;;;-21B6;ANTICLOCKWISE TOP SEMICIRCLE ARROW;So;0;ON;;;;;N;;;;;-21B7;CLOCKWISE TOP SEMICIRCLE ARROW;So;0;ON;;;;;N;;;;;-21B8;NORTH WEST ARROW TO LONG BAR;So;0;ON;;;;;N;UPPER LEFT ARROW TO LONG BAR;;;;-21B9;LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR;So;0;ON;;;;;N;LEFT ARROW TO BAR OVER RIGHT ARROW TO BAR;;;;-21BA;ANTICLOCKWISE OPEN CIRCLE ARROW;So;0;ON;;;;;N;;;;;-21BB;CLOCKWISE OPEN CIRCLE ARROW;So;0;ON;;;;;N;;;;;-21BC;LEFTWARDS HARPOON WITH BARB UPWARDS;So;0;ON;;;;;N;LEFT HARPOON WITH BARB UP;;;;-21BD;LEFTWARDS HARPOON WITH BARB DOWNWARDS;So;0;ON;;;;;N;LEFT HARPOON WITH BARB DOWN;;;;-21BE;UPWARDS HARPOON WITH BARB RIGHTWARDS;So;0;ON;;;;;N;UP HARPOON WITH BARB RIGHT;;;;-21BF;UPWARDS HARPOON WITH BARB LEFTWARDS;So;0;ON;;;;;N;UP HARPOON WITH BARB LEFT;;;;-21C0;RIGHTWARDS HARPOON WITH BARB UPWARDS;So;0;ON;;;;;N;RIGHT HARPOON WITH BARB UP;;;;-21C1;RIGHTWARDS HARPOON WITH BARB DOWNWARDS;So;0;ON;;;;;N;RIGHT HARPOON WITH BARB DOWN;;;;-21C2;DOWNWARDS HARPOON WITH BARB RIGHTWARDS;So;0;ON;;;;;N;DOWN HARPOON WITH BARB RIGHT;;;;-21C3;DOWNWARDS HARPOON WITH BARB LEFTWARDS;So;0;ON;;;;;N;DOWN HARPOON WITH BARB LEFT;;;;-21C4;RIGHTWARDS ARROW OVER LEFTWARDS ARROW;So;0;ON;;;;;N;RIGHT ARROW OVER LEFT ARROW;;;;-21C5;UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW;So;0;ON;;;;;N;UP ARROW LEFT OF DOWN ARROW;;;;-21C6;LEFTWARDS ARROW OVER RIGHTWARDS ARROW;So;0;ON;;;;;N;LEFT ARROW OVER RIGHT ARROW;;;;-21C7;LEFTWARDS PAIRED ARROWS;So;0;ON;;;;;N;LEFT PAIRED ARROWS;;;;-21C8;UPWARDS PAIRED ARROWS;So;0;ON;;;;;N;UP PAIRED ARROWS;;;;-21C9;RIGHTWARDS PAIRED ARROWS;So;0;ON;;;;;N;RIGHT PAIRED ARROWS;;;;-21CA;DOWNWARDS PAIRED ARROWS;So;0;ON;;;;;N;DOWN PAIRED ARROWS;;;;-21CB;LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON;So;0;ON;;;;;N;LEFT HARPOON OVER RIGHT HARPOON;;;;-21CC;RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON;So;0;ON;;;;;N;RIGHT HARPOON OVER LEFT HARPOON;;;;-21CD;LEFTWARDS DOUBLE ARROW WITH STROKE;So;0;ON;21D0 0338;;;;N;LEFT DOUBLE ARROW WITH STROKE;;;;-21CE;LEFT RIGHT DOUBLE ARROW WITH STROKE;Sm;0;ON;21D4 0338;;;;N;;;;;-21CF;RIGHTWARDS DOUBLE ARROW WITH STROKE;Sm;0;ON;21D2 0338;;;;N;RIGHT DOUBLE ARROW WITH STROKE;;;;-21D0;LEFTWARDS DOUBLE ARROW;So;0;ON;;;;;N;LEFT DOUBLE ARROW;;;;-21D1;UPWARDS DOUBLE ARROW;So;0;ON;;;;;N;UP DOUBLE ARROW;;;;-21D2;RIGHTWARDS DOUBLE ARROW;Sm;0;ON;;;;;N;RIGHT DOUBLE ARROW;;;;-21D3;DOWNWARDS DOUBLE ARROW;So;0;ON;;;;;N;DOWN DOUBLE ARROW;;;;-21D4;LEFT RIGHT DOUBLE ARROW;Sm;0;ON;;;;;N;;;;;-21D5;UP DOWN DOUBLE ARROW;So;0;ON;;;;;N;;;;;-21D6;NORTH WEST DOUBLE ARROW;So;0;ON;;;;;N;UPPER LEFT DOUBLE ARROW;;;;-21D7;NORTH EAST DOUBLE ARROW;So;0;ON;;;;;N;UPPER RIGHT DOUBLE ARROW;;;;-21D8;SOUTH EAST DOUBLE ARROW;So;0;ON;;;;;N;LOWER RIGHT DOUBLE ARROW;;;;-21D9;SOUTH WEST DOUBLE ARROW;So;0;ON;;;;;N;LOWER LEFT DOUBLE ARROW;;;;-21DA;LEFTWARDS TRIPLE ARROW;So;0;ON;;;;;N;LEFT TRIPLE ARROW;;;;-21DB;RIGHTWARDS TRIPLE ARROW;So;0;ON;;;;;N;RIGHT TRIPLE ARROW;;;;-21DC;LEFTWARDS SQUIGGLE ARROW;So;0;ON;;;;;N;LEFT SQUIGGLE ARROW;;;;-21DD;RIGHTWARDS SQUIGGLE ARROW;So;0;ON;;;;;N;RIGHT SQUIGGLE ARROW;;;;-21DE;UPWARDS ARROW WITH DOUBLE STROKE;So;0;ON;;;;;N;UP ARROW WITH DOUBLE STROKE;;;;-21DF;DOWNWARDS ARROW WITH DOUBLE STROKE;So;0;ON;;;;;N;DOWN ARROW WITH DOUBLE STROKE;;;;-21E0;LEFTWARDS DASHED ARROW;So;0;ON;;;;;N;LEFT DASHED ARROW;;;;-21E1;UPWARDS DASHED ARROW;So;0;ON;;;;;N;UP DASHED ARROW;;;;-21E2;RIGHTWARDS DASHED ARROW;So;0;ON;;;;;N;RIGHT DASHED ARROW;;;;-21E3;DOWNWARDS DASHED ARROW;So;0;ON;;;;;N;DOWN DASHED ARROW;;;;-21E4;LEFTWARDS ARROW TO BAR;So;0;ON;;;;;N;LEFT ARROW TO BAR;;;;-21E5;RIGHTWARDS ARROW TO BAR;So;0;ON;;;;;N;RIGHT ARROW TO BAR;;;;-21E6;LEFTWARDS WHITE ARROW;So;0;ON;;;;;N;WHITE LEFT ARROW;;;;-21E7;UPWARDS WHITE ARROW;So;0;ON;;;;;N;WHITE UP ARROW;;;;-21E8;RIGHTWARDS WHITE ARROW;So;0;ON;;;;;N;WHITE RIGHT ARROW;;;;-21E9;DOWNWARDS WHITE ARROW;So;0;ON;;;;;N;WHITE DOWN ARROW;;;;-21EA;UPWARDS WHITE ARROW FROM BAR;So;0;ON;;;;;N;WHITE UP ARROW FROM BAR;;;;-21EB;UPWARDS WHITE ARROW ON PEDESTAL;So;0;ON;;;;;N;;;;;-21EC;UPWARDS WHITE ARROW ON PEDESTAL WITH HORIZONTAL BAR;So;0;ON;;;;;N;;;;;-21ED;UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR;So;0;ON;;;;;N;;;;;-21EE;UPWARDS WHITE DOUBLE ARROW;So;0;ON;;;;;N;;;;;-21EF;UPWARDS WHITE DOUBLE ARROW ON PEDESTAL;So;0;ON;;;;;N;;;;;-21F0;RIGHTWARDS WHITE ARROW FROM WALL;So;0;ON;;;;;N;;;;;-21F1;NORTH WEST ARROW TO CORNER;So;0;ON;;;;;N;;;;;-21F2;SOUTH EAST ARROW TO CORNER;So;0;ON;;;;;N;;;;;-21F3;UP DOWN WHITE ARROW;So;0;ON;;;;;N;;;;;-21F4;RIGHT ARROW WITH SMALL CIRCLE;Sm;0;ON;;;;;N;;;;;-21F5;DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW;Sm;0;ON;;;;;N;;;;;-21F6;THREE RIGHTWARDS ARROWS;Sm;0;ON;;;;;N;;;;;-21F7;LEFTWARDS ARROW WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-21F8;RIGHTWARDS ARROW WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-21F9;LEFT RIGHT ARROW WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-21FA;LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-21FB;RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-21FC;LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-21FD;LEFTWARDS OPEN-HEADED ARROW;Sm;0;ON;;;;;N;;;;;-21FE;RIGHTWARDS OPEN-HEADED ARROW;Sm;0;ON;;;;;N;;;;;-21FF;LEFT RIGHT OPEN-HEADED ARROW;Sm;0;ON;;;;;N;;;;;-2200;FOR ALL;Sm;0;ON;;;;;N;;;;;-2201;COMPLEMENT;Sm;0;ON;;;;;Y;;;;;-2202;PARTIAL DIFFERENTIAL;Sm;0;ON;;;;;Y;;;;;-2203;THERE EXISTS;Sm;0;ON;;;;;Y;;;;;-2204;THERE DOES NOT EXIST;Sm;0;ON;2203 0338;;;;Y;;;;;-2205;EMPTY SET;Sm;0;ON;;;;;N;;;;;-2206;INCREMENT;Sm;0;ON;;;;;N;;;;;-2207;NABLA;Sm;0;ON;;;;;N;;;;;-2208;ELEMENT OF;Sm;0;ON;;;;;Y;;;;;-2209;NOT AN ELEMENT OF;Sm;0;ON;2208 0338;;;;Y;;;;;-220A;SMALL ELEMENT OF;Sm;0;ON;;;;;Y;;;;;-220B;CONTAINS AS MEMBER;Sm;0;ON;;;;;Y;;;;;-220C;DOES NOT CONTAIN AS MEMBER;Sm;0;ON;220B 0338;;;;Y;;;;;-220D;SMALL CONTAINS AS MEMBER;Sm;0;ON;;;;;Y;;;;;-220E;END OF PROOF;Sm;0;ON;;;;;N;;;;;-220F;N-ARY PRODUCT;Sm;0;ON;;;;;N;;;;;-2210;N-ARY COPRODUCT;Sm;0;ON;;;;;N;;;;;-2211;N-ARY SUMMATION;Sm;0;ON;;;;;Y;;;;;-2212;MINUS SIGN;Sm;0;ES;;;;;N;;;;;-2213;MINUS-OR-PLUS SIGN;Sm;0;ET;;;;;N;;;;;-2214;DOT PLUS;Sm;0;ON;;;;;N;;;;;-2215;DIVISION SLASH;Sm;0;ON;;;;;Y;;;;;-2216;SET MINUS;Sm;0;ON;;;;;Y;;;;;-2217;ASTERISK OPERATOR;Sm;0;ON;;;;;N;;;;;-2218;RING OPERATOR;Sm;0;ON;;;;;N;;;;;-2219;BULLET OPERATOR;Sm;0;ON;;;;;N;;;;;-221A;SQUARE ROOT;Sm;0;ON;;;;;Y;;;;;-221B;CUBE ROOT;Sm;0;ON;;;;;Y;;;;;-221C;FOURTH ROOT;Sm;0;ON;;;;;Y;;;;;-221D;PROPORTIONAL TO;Sm;0;ON;;;;;Y;;;;;-221E;INFINITY;Sm;0;ON;;;;;N;;;;;-221F;RIGHT ANGLE;Sm;0;ON;;;;;Y;;;;;-2220;ANGLE;Sm;0;ON;;;;;Y;;;;;-2221;MEASURED ANGLE;Sm;0;ON;;;;;Y;;;;;-2222;SPHERICAL ANGLE;Sm;0;ON;;;;;Y;;;;;-2223;DIVIDES;Sm;0;ON;;;;;N;;;;;-2224;DOES NOT DIVIDE;Sm;0;ON;2223 0338;;;;Y;;;;;-2225;PARALLEL TO;Sm;0;ON;;;;;N;;;;;-2226;NOT PARALLEL TO;Sm;0;ON;2225 0338;;;;Y;;;;;-2227;LOGICAL AND;Sm;0;ON;;;;;N;;;;;-2228;LOGICAL OR;Sm;0;ON;;;;;N;;;;;-2229;INTERSECTION;Sm;0;ON;;;;;N;;;;;-222A;UNION;Sm;0;ON;;;;;N;;;;;-222B;INTEGRAL;Sm;0;ON;;;;;Y;;;;;-222C;DOUBLE INTEGRAL;Sm;0;ON;<compat> 222B 222B;;;;Y;;;;;-222D;TRIPLE INTEGRAL;Sm;0;ON;<compat> 222B 222B 222B;;;;Y;;;;;-222E;CONTOUR INTEGRAL;Sm;0;ON;;;;;Y;;;;;-222F;SURFACE INTEGRAL;Sm;0;ON;<compat> 222E 222E;;;;Y;;;;;-2230;VOLUME INTEGRAL;Sm;0;ON;<compat> 222E 222E 222E;;;;Y;;;;;-2231;CLOCKWISE INTEGRAL;Sm;0;ON;;;;;Y;;;;;-2232;CLOCKWISE CONTOUR INTEGRAL;Sm;0;ON;;;;;Y;;;;;-2233;ANTICLOCKWISE CONTOUR INTEGRAL;Sm;0;ON;;;;;Y;;;;;-2234;THEREFORE;Sm;0;ON;;;;;N;;;;;-2235;BECAUSE;Sm;0;ON;;;;;N;;;;;-2236;RATIO;Sm;0;ON;;;;;N;;;;;-2237;PROPORTION;Sm;0;ON;;;;;N;;;;;-2238;DOT MINUS;Sm;0;ON;;;;;N;;;;;-2239;EXCESS;Sm;0;ON;;;;;Y;;;;;-223A;GEOMETRIC PROPORTION;Sm;0;ON;;;;;N;;;;;-223B;HOMOTHETIC;Sm;0;ON;;;;;Y;;;;;-223C;TILDE OPERATOR;Sm;0;ON;;;;;Y;;;;;-223D;REVERSED TILDE;Sm;0;ON;;;;;Y;;;;;-223E;INVERTED LAZY S;Sm;0;ON;;;;;Y;;;;;-223F;SINE WAVE;Sm;0;ON;;;;;Y;;;;;-2240;WREATH PRODUCT;Sm;0;ON;;;;;Y;;;;;-2241;NOT TILDE;Sm;0;ON;223C 0338;;;;Y;;;;;-2242;MINUS TILDE;Sm;0;ON;;;;;Y;;;;;-2243;ASYMPTOTICALLY EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2244;NOT ASYMPTOTICALLY EQUAL TO;Sm;0;ON;2243 0338;;;;Y;;;;;-2245;APPROXIMATELY EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2246;APPROXIMATELY BUT NOT ACTUALLY EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2247;NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO;Sm;0;ON;2245 0338;;;;Y;;;;;-2248;ALMOST EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2249;NOT ALMOST EQUAL TO;Sm;0;ON;2248 0338;;;;Y;;;;;-224A;ALMOST EQUAL OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-224B;TRIPLE TILDE;Sm;0;ON;;;;;Y;;;;;-224C;ALL EQUAL TO;Sm;0;ON;;;;;Y;;;;;-224D;EQUIVALENT TO;Sm;0;ON;;;;;N;;;;;-224E;GEOMETRICALLY EQUIVALENT TO;Sm;0;ON;;;;;N;;;;;-224F;DIFFERENCE BETWEEN;Sm;0;ON;;;;;N;;;;;-2250;APPROACHES THE LIMIT;Sm;0;ON;;;;;N;;;;;-2251;GEOMETRICALLY EQUAL TO;Sm;0;ON;;;;;N;;;;;-2252;APPROXIMATELY EQUAL TO OR THE IMAGE OF;Sm;0;ON;;;;;Y;;;;;-2253;IMAGE OF OR APPROXIMATELY EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2254;COLON EQUALS;Sm;0;ON;;;;;Y;COLON EQUAL;;;;-2255;EQUALS COLON;Sm;0;ON;;;;;Y;EQUAL COLON;;;;-2256;RING IN EQUAL TO;Sm;0;ON;;;;;N;;;;;-2257;RING EQUAL TO;Sm;0;ON;;;;;N;;;;;-2258;CORRESPONDS TO;Sm;0;ON;;;;;N;;;;;-2259;ESTIMATES;Sm;0;ON;;;;;N;;;;;-225A;EQUIANGULAR TO;Sm;0;ON;;;;;N;;;;;-225B;STAR EQUALS;Sm;0;ON;;;;;N;;;;;-225C;DELTA EQUAL TO;Sm;0;ON;;;;;N;;;;;-225D;EQUAL TO BY DEFINITION;Sm;0;ON;;;;;N;;;;;-225E;MEASURED BY;Sm;0;ON;;;;;N;;;;;-225F;QUESTIONED EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2260;NOT EQUAL TO;Sm;0;ON;003D 0338;;;;Y;;;;;-2261;IDENTICAL TO;Sm;0;ON;;;;;N;;;;;-2262;NOT IDENTICAL TO;Sm;0;ON;2261 0338;;;;Y;;;;;-2263;STRICTLY EQUIVALENT TO;Sm;0;ON;;;;;N;;;;;-2264;LESS-THAN OR EQUAL TO;Sm;0;ON;;;;;Y;LESS THAN OR EQUAL TO;;;;-2265;GREATER-THAN OR EQUAL TO;Sm;0;ON;;;;;Y;GREATER THAN OR EQUAL TO;;;;-2266;LESS-THAN OVER EQUAL TO;Sm;0;ON;;;;;Y;LESS THAN OVER EQUAL TO;;;;-2267;GREATER-THAN OVER EQUAL TO;Sm;0;ON;;;;;Y;GREATER THAN OVER EQUAL TO;;;;-2268;LESS-THAN BUT NOT EQUAL TO;Sm;0;ON;;;;;Y;LESS THAN BUT NOT EQUAL TO;;;;-2269;GREATER-THAN BUT NOT EQUAL TO;Sm;0;ON;;;;;Y;GREATER THAN BUT NOT EQUAL TO;;;;-226A;MUCH LESS-THAN;Sm;0;ON;;;;;Y;MUCH LESS THAN;;;;-226B;MUCH GREATER-THAN;Sm;0;ON;;;;;Y;MUCH GREATER THAN;;;;-226C;BETWEEN;Sm;0;ON;;;;;N;;;;;-226D;NOT EQUIVALENT TO;Sm;0;ON;224D 0338;;;;N;;;;;-226E;NOT LESS-THAN;Sm;0;ON;003C 0338;;;;Y;NOT LESS THAN;;;;-226F;NOT GREATER-THAN;Sm;0;ON;003E 0338;;;;Y;NOT GREATER THAN;;;;-2270;NEITHER LESS-THAN NOR EQUAL TO;Sm;0;ON;2264 0338;;;;Y;NEITHER LESS THAN NOR EQUAL TO;;;;-2271;NEITHER GREATER-THAN NOR EQUAL TO;Sm;0;ON;2265 0338;;;;Y;NEITHER GREATER THAN NOR EQUAL TO;;;;-2272;LESS-THAN OR EQUIVALENT TO;Sm;0;ON;;;;;Y;LESS THAN OR EQUIVALENT TO;;;;-2273;GREATER-THAN OR EQUIVALENT TO;Sm;0;ON;;;;;Y;GREATER THAN OR EQUIVALENT TO;;;;-2274;NEITHER LESS-THAN NOR EQUIVALENT TO;Sm;0;ON;2272 0338;;;;Y;NEITHER LESS THAN NOR EQUIVALENT TO;;;;-2275;NEITHER GREATER-THAN NOR EQUIVALENT TO;Sm;0;ON;2273 0338;;;;Y;NEITHER GREATER THAN NOR EQUIVALENT TO;;;;-2276;LESS-THAN OR GREATER-THAN;Sm;0;ON;;;;;Y;LESS THAN OR GREATER THAN;;;;-2277;GREATER-THAN OR LESS-THAN;Sm;0;ON;;;;;Y;GREATER THAN OR LESS THAN;;;;-2278;NEITHER LESS-THAN NOR GREATER-THAN;Sm;0;ON;2276 0338;;;;Y;NEITHER LESS THAN NOR GREATER THAN;;;;-2279;NEITHER GREATER-THAN NOR LESS-THAN;Sm;0;ON;2277 0338;;;;Y;NEITHER GREATER THAN NOR LESS THAN;;;;-227A;PRECEDES;Sm;0;ON;;;;;Y;;;;;-227B;SUCCEEDS;Sm;0;ON;;;;;Y;;;;;-227C;PRECEDES OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-227D;SUCCEEDS OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-227E;PRECEDES OR EQUIVALENT TO;Sm;0;ON;;;;;Y;;;;;-227F;SUCCEEDS OR EQUIVALENT TO;Sm;0;ON;;;;;Y;;;;;-2280;DOES NOT PRECEDE;Sm;0;ON;227A 0338;;;;Y;;;;;-2281;DOES NOT SUCCEED;Sm;0;ON;227B 0338;;;;Y;;;;;-2282;SUBSET OF;Sm;0;ON;;;;;Y;;;;;-2283;SUPERSET OF;Sm;0;ON;;;;;Y;;;;;-2284;NOT A SUBSET OF;Sm;0;ON;2282 0338;;;;Y;;;;;-2285;NOT A SUPERSET OF;Sm;0;ON;2283 0338;;;;Y;;;;;-2286;SUBSET OF OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2287;SUPERSET OF OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2288;NEITHER A SUBSET OF NOR EQUAL TO;Sm;0;ON;2286 0338;;;;Y;;;;;-2289;NEITHER A SUPERSET OF NOR EQUAL TO;Sm;0;ON;2287 0338;;;;Y;;;;;-228A;SUBSET OF WITH NOT EQUAL TO;Sm;0;ON;;;;;Y;SUBSET OF OR NOT EQUAL TO;;;;-228B;SUPERSET OF WITH NOT EQUAL TO;Sm;0;ON;;;;;Y;SUPERSET OF OR NOT EQUAL TO;;;;-228C;MULTISET;Sm;0;ON;;;;;Y;;;;;-228D;MULTISET MULTIPLICATION;Sm;0;ON;;;;;N;;;;;-228E;MULTISET UNION;Sm;0;ON;;;;;N;;;;;-228F;SQUARE IMAGE OF;Sm;0;ON;;;;;Y;;;;;-2290;SQUARE ORIGINAL OF;Sm;0;ON;;;;;Y;;;;;-2291;SQUARE IMAGE OF OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2292;SQUARE ORIGINAL OF OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2293;SQUARE CAP;Sm;0;ON;;;;;N;;;;;-2294;SQUARE CUP;Sm;0;ON;;;;;N;;;;;-2295;CIRCLED PLUS;Sm;0;ON;;;;;N;;;;;-2296;CIRCLED MINUS;Sm;0;ON;;;;;N;;;;;-2297;CIRCLED TIMES;Sm;0;ON;;;;;N;;;;;-2298;CIRCLED DIVISION SLASH;Sm;0;ON;;;;;Y;;;;;-2299;CIRCLED DOT OPERATOR;Sm;0;ON;;;;;N;;;;;-229A;CIRCLED RING OPERATOR;Sm;0;ON;;;;;N;;;;;-229B;CIRCLED ASTERISK OPERATOR;Sm;0;ON;;;;;N;;;;;-229C;CIRCLED EQUALS;Sm;0;ON;;;;;N;;;;;-229D;CIRCLED DASH;Sm;0;ON;;;;;N;;;;;-229E;SQUARED PLUS;Sm;0;ON;;;;;N;;;;;-229F;SQUARED MINUS;Sm;0;ON;;;;;N;;;;;-22A0;SQUARED TIMES;Sm;0;ON;;;;;N;;;;;-22A1;SQUARED DOT OPERATOR;Sm;0;ON;;;;;N;;;;;-22A2;RIGHT TACK;Sm;0;ON;;;;;Y;;;;;-22A3;LEFT TACK;Sm;0;ON;;;;;Y;;;;;-22A4;DOWN TACK;Sm;0;ON;;;;;N;;;;;-22A5;UP TACK;Sm;0;ON;;;;;N;;;;;-22A6;ASSERTION;Sm;0;ON;;;;;Y;;;;;-22A7;MODELS;Sm;0;ON;;;;;Y;;;;;-22A8;TRUE;Sm;0;ON;;;;;Y;;;;;-22A9;FORCES;Sm;0;ON;;;;;Y;;;;;-22AA;TRIPLE VERTICAL BAR RIGHT TURNSTILE;Sm;0;ON;;;;;Y;;;;;-22AB;DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE;Sm;0;ON;;;;;Y;;;;;-22AC;DOES NOT PROVE;Sm;0;ON;22A2 0338;;;;Y;;;;;-22AD;NOT TRUE;Sm;0;ON;22A8 0338;;;;Y;;;;;-22AE;DOES NOT FORCE;Sm;0;ON;22A9 0338;;;;Y;;;;;-22AF;NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE;Sm;0;ON;22AB 0338;;;;Y;;;;;-22B0;PRECEDES UNDER RELATION;Sm;0;ON;;;;;Y;;;;;-22B1;SUCCEEDS UNDER RELATION;Sm;0;ON;;;;;Y;;;;;-22B2;NORMAL SUBGROUP OF;Sm;0;ON;;;;;Y;;;;;-22B3;CONTAINS AS NORMAL SUBGROUP;Sm;0;ON;;;;;Y;;;;;-22B4;NORMAL SUBGROUP OF OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-22B5;CONTAINS AS NORMAL SUBGROUP OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-22B6;ORIGINAL OF;Sm;0;ON;;;;;Y;;;;;-22B7;IMAGE OF;Sm;0;ON;;;;;Y;;;;;-22B8;MULTIMAP;Sm;0;ON;;;;;Y;;;;;-22B9;HERMITIAN CONJUGATE MATRIX;Sm;0;ON;;;;;N;;;;;-22BA;INTERCALATE;Sm;0;ON;;;;;N;;;;;-22BB;XOR;Sm;0;ON;;;;;N;;;;;-22BC;NAND;Sm;0;ON;;;;;N;;;;;-22BD;NOR;Sm;0;ON;;;;;N;;;;;-22BE;RIGHT ANGLE WITH ARC;Sm;0;ON;;;;;Y;;;;;-22BF;RIGHT TRIANGLE;Sm;0;ON;;;;;Y;;;;;-22C0;N-ARY LOGICAL AND;Sm;0;ON;;;;;N;;;;;-22C1;N-ARY LOGICAL OR;Sm;0;ON;;;;;N;;;;;-22C2;N-ARY INTERSECTION;Sm;0;ON;;;;;N;;;;;-22C3;N-ARY UNION;Sm;0;ON;;;;;N;;;;;-22C4;DIAMOND OPERATOR;Sm;0;ON;;;;;N;;;;;-22C5;DOT OPERATOR;Sm;0;ON;;;;;N;;;;;-22C6;STAR OPERATOR;Sm;0;ON;;;;;N;;;;;-22C7;DIVISION TIMES;Sm;0;ON;;;;;N;;;;;-22C8;BOWTIE;Sm;0;ON;;;;;N;;;;;-22C9;LEFT NORMAL FACTOR SEMIDIRECT PRODUCT;Sm;0;ON;;;;;Y;;;;;-22CA;RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT;Sm;0;ON;;;;;Y;;;;;-22CB;LEFT SEMIDIRECT PRODUCT;Sm;0;ON;;;;;Y;;;;;-22CC;RIGHT SEMIDIRECT PRODUCT;Sm;0;ON;;;;;Y;;;;;-22CD;REVERSED TILDE EQUALS;Sm;0;ON;;;;;Y;;;;;-22CE;CURLY LOGICAL OR;Sm;0;ON;;;;;N;;;;;-22CF;CURLY LOGICAL AND;Sm;0;ON;;;;;N;;;;;-22D0;DOUBLE SUBSET;Sm;0;ON;;;;;Y;;;;;-22D1;DOUBLE SUPERSET;Sm;0;ON;;;;;Y;;;;;-22D2;DOUBLE INTERSECTION;Sm;0;ON;;;;;N;;;;;-22D3;DOUBLE UNION;Sm;0;ON;;;;;N;;;;;-22D4;PITCHFORK;Sm;0;ON;;;;;N;;;;;-22D5;EQUAL AND PARALLEL TO;Sm;0;ON;;;;;N;;;;;-22D6;LESS-THAN WITH DOT;Sm;0;ON;;;;;Y;LESS THAN WITH DOT;;;;-22D7;GREATER-THAN WITH DOT;Sm;0;ON;;;;;Y;GREATER THAN WITH DOT;;;;-22D8;VERY MUCH LESS-THAN;Sm;0;ON;;;;;Y;VERY MUCH LESS THAN;;;;-22D9;VERY MUCH GREATER-THAN;Sm;0;ON;;;;;Y;VERY MUCH GREATER THAN;;;;-22DA;LESS-THAN EQUAL TO OR GREATER-THAN;Sm;0;ON;;;;;Y;LESS THAN EQUAL TO OR GREATER THAN;;;;-22DB;GREATER-THAN EQUAL TO OR LESS-THAN;Sm;0;ON;;;;;Y;GREATER THAN EQUAL TO OR LESS THAN;;;;-22DC;EQUAL TO OR LESS-THAN;Sm;0;ON;;;;;Y;EQUAL TO OR LESS THAN;;;;-22DD;EQUAL TO OR GREATER-THAN;Sm;0;ON;;;;;Y;EQUAL TO OR GREATER THAN;;;;-22DE;EQUAL TO OR PRECEDES;Sm;0;ON;;;;;Y;;;;;-22DF;EQUAL TO OR SUCCEEDS;Sm;0;ON;;;;;Y;;;;;-22E0;DOES NOT PRECEDE OR EQUAL;Sm;0;ON;227C 0338;;;;Y;;;;;-22E1;DOES NOT SUCCEED OR EQUAL;Sm;0;ON;227D 0338;;;;Y;;;;;-22E2;NOT SQUARE IMAGE OF OR EQUAL TO;Sm;0;ON;2291 0338;;;;Y;;;;;-22E3;NOT SQUARE ORIGINAL OF OR EQUAL TO;Sm;0;ON;2292 0338;;;;Y;;;;;-22E4;SQUARE IMAGE OF OR NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-22E5;SQUARE ORIGINAL OF OR NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-22E6;LESS-THAN BUT NOT EQUIVALENT TO;Sm;0;ON;;;;;Y;LESS THAN BUT NOT EQUIVALENT TO;;;;-22E7;GREATER-THAN BUT NOT EQUIVALENT TO;Sm;0;ON;;;;;Y;GREATER THAN BUT NOT EQUIVALENT TO;;;;-22E8;PRECEDES BUT NOT EQUIVALENT TO;Sm;0;ON;;;;;Y;;;;;-22E9;SUCCEEDS BUT NOT EQUIVALENT TO;Sm;0;ON;;;;;Y;;;;;-22EA;NOT NORMAL SUBGROUP OF;Sm;0;ON;22B2 0338;;;;Y;;;;;-22EB;DOES NOT CONTAIN AS NORMAL SUBGROUP;Sm;0;ON;22B3 0338;;;;Y;;;;;-22EC;NOT NORMAL SUBGROUP OF OR EQUAL TO;Sm;0;ON;22B4 0338;;;;Y;;;;;-22ED;DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL;Sm;0;ON;22B5 0338;;;;Y;;;;;-22EE;VERTICAL ELLIPSIS;Sm;0;ON;;;;;N;;;;;-22EF;MIDLINE HORIZONTAL ELLIPSIS;Sm;0;ON;;;;;N;;;;;-22F0;UP RIGHT DIAGONAL ELLIPSIS;Sm;0;ON;;;;;Y;;;;;-22F1;DOWN RIGHT DIAGONAL ELLIPSIS;Sm;0;ON;;;;;Y;;;;;-22F2;ELEMENT OF WITH LONG HORIZONTAL STROKE;Sm;0;ON;;;;;Y;;;;;-22F3;ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE;Sm;0;ON;;;;;Y;;;;;-22F4;SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE;Sm;0;ON;;;;;Y;;;;;-22F5;ELEMENT OF WITH DOT ABOVE;Sm;0;ON;;;;;Y;;;;;-22F6;ELEMENT OF WITH OVERBAR;Sm;0;ON;;;;;Y;;;;;-22F7;SMALL ELEMENT OF WITH OVERBAR;Sm;0;ON;;;;;Y;;;;;-22F8;ELEMENT OF WITH UNDERBAR;Sm;0;ON;;;;;Y;;;;;-22F9;ELEMENT OF WITH TWO HORIZONTAL STROKES;Sm;0;ON;;;;;Y;;;;;-22FA;CONTAINS WITH LONG HORIZONTAL STROKE;Sm;0;ON;;;;;Y;;;;;-22FB;CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE;Sm;0;ON;;;;;Y;;;;;-22FC;SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE;Sm;0;ON;;;;;Y;;;;;-22FD;CONTAINS WITH OVERBAR;Sm;0;ON;;;;;Y;;;;;-22FE;SMALL CONTAINS WITH OVERBAR;Sm;0;ON;;;;;Y;;;;;-22FF;Z NOTATION BAG MEMBERSHIP;Sm;0;ON;;;;;Y;;;;;-2300;DIAMETER SIGN;So;0;ON;;;;;N;;;;;-2301;ELECTRIC ARROW;So;0;ON;;;;;N;;;;;-2302;HOUSE;So;0;ON;;;;;N;;;;;-2303;UP ARROWHEAD;So;0;ON;;;;;N;;;;;-2304;DOWN ARROWHEAD;So;0;ON;;;;;N;;;;;-2305;PROJECTIVE;So;0;ON;;;;;N;;;;;-2306;PERSPECTIVE;So;0;ON;;;;;N;;;;;-2307;WAVY LINE;So;0;ON;;;;;N;;;;;-2308;LEFT CEILING;Ps;0;ON;;;;;Y;;;;;-2309;RIGHT CEILING;Pe;0;ON;;;;;Y;;;;;-230A;LEFT FLOOR;Ps;0;ON;;;;;Y;;;;;-230B;RIGHT FLOOR;Pe;0;ON;;;;;Y;;;;;-230C;BOTTOM RIGHT CROP;So;0;ON;;;;;N;;;;;-230D;BOTTOM LEFT CROP;So;0;ON;;;;;N;;;;;-230E;TOP RIGHT CROP;So;0;ON;;;;;N;;;;;-230F;TOP LEFT CROP;So;0;ON;;;;;N;;;;;-2310;REVERSED NOT SIGN;So;0;ON;;;;;N;;;;;-2311;SQUARE LOZENGE;So;0;ON;;;;;N;;;;;-2312;ARC;So;0;ON;;;;;N;;;;;-2313;SEGMENT;So;0;ON;;;;;N;;;;;-2314;SECTOR;So;0;ON;;;;;N;;;;;-2315;TELEPHONE RECORDER;So;0;ON;;;;;N;;;;;-2316;POSITION INDICATOR;So;0;ON;;;;;N;;;;;-2317;VIEWDATA SQUARE;So;0;ON;;;;;N;;;;;-2318;PLACE OF INTEREST SIGN;So;0;ON;;;;;N;COMMAND KEY;;;;-2319;TURNED NOT SIGN;So;0;ON;;;;;N;;;;;-231A;WATCH;So;0;ON;;;;;N;;;;;-231B;HOURGLASS;So;0;ON;;;;;N;;;;;-231C;TOP LEFT CORNER;So;0;ON;;;;;N;;;;;-231D;TOP RIGHT CORNER;So;0;ON;;;;;N;;;;;-231E;BOTTOM LEFT CORNER;So;0;ON;;;;;N;;;;;-231F;BOTTOM RIGHT CORNER;So;0;ON;;;;;N;;;;;-2320;TOP HALF INTEGRAL;Sm;0;ON;;;;;Y;;;;;-2321;BOTTOM HALF INTEGRAL;Sm;0;ON;;;;;Y;;;;;-2322;FROWN;So;0;ON;;;;;N;;;;;-2323;SMILE;So;0;ON;;;;;N;;;;;-2324;UP ARROWHEAD BETWEEN TWO HORIZONTAL BARS;So;0;ON;;;;;N;ENTER KEY;;;;-2325;OPTION KEY;So;0;ON;;;;;N;;;;;-2326;ERASE TO THE RIGHT;So;0;ON;;;;;N;DELETE TO THE RIGHT KEY;;;;-2327;X IN A RECTANGLE BOX;So;0;ON;;;;;N;CLEAR KEY;;;;-2328;KEYBOARD;So;0;ON;;;;;N;;;;;-2329;LEFT-POINTING ANGLE BRACKET;Ps;0;ON;3008;;;;Y;BRA;;;;-232A;RIGHT-POINTING ANGLE BRACKET;Pe;0;ON;3009;;;;Y;KET;;;;-232B;ERASE TO THE LEFT;So;0;ON;;;;;N;DELETE TO THE LEFT KEY;;;;-232C;BENZENE RING;So;0;ON;;;;;N;;;;;-232D;CYLINDRICITY;So;0;ON;;;;;N;;;;;-232E;ALL AROUND-PROFILE;So;0;ON;;;;;N;;;;;-232F;SYMMETRY;So;0;ON;;;;;N;;;;;-2330;TOTAL RUNOUT;So;0;ON;;;;;N;;;;;-2331;DIMENSION ORIGIN;So;0;ON;;;;;N;;;;;-2332;CONICAL TAPER;So;0;ON;;;;;N;;;;;-2333;SLOPE;So;0;ON;;;;;N;;;;;-2334;COUNTERBORE;So;0;ON;;;;;N;;;;;-2335;COUNTERSINK;So;0;ON;;;;;N;;;;;-2336;APL FUNCTIONAL SYMBOL I-BEAM;So;0;L;;;;;N;;;;;-2337;APL FUNCTIONAL SYMBOL SQUISH QUAD;So;0;L;;;;;N;;;;;-2338;APL FUNCTIONAL SYMBOL QUAD EQUAL;So;0;L;;;;;N;;;;;-2339;APL FUNCTIONAL SYMBOL QUAD DIVIDE;So;0;L;;;;;N;;;;;-233A;APL FUNCTIONAL SYMBOL QUAD DIAMOND;So;0;L;;;;;N;;;;;-233B;APL FUNCTIONAL SYMBOL QUAD JOT;So;0;L;;;;;N;;;;;-233C;APL FUNCTIONAL SYMBOL QUAD CIRCLE;So;0;L;;;;;N;;;;;-233D;APL FUNCTIONAL SYMBOL CIRCLE STILE;So;0;L;;;;;N;;;;;-233E;APL FUNCTIONAL SYMBOL CIRCLE JOT;So;0;L;;;;;N;;;;;-233F;APL FUNCTIONAL SYMBOL SLASH BAR;So;0;L;;;;;N;;;;;-2340;APL FUNCTIONAL SYMBOL BACKSLASH BAR;So;0;L;;;;;N;;;;;-2341;APL FUNCTIONAL SYMBOL QUAD SLASH;So;0;L;;;;;N;;;;;-2342;APL FUNCTIONAL SYMBOL QUAD BACKSLASH;So;0;L;;;;;N;;;;;-2343;APL FUNCTIONAL SYMBOL QUAD LESS-THAN;So;0;L;;;;;N;;;;;-2344;APL FUNCTIONAL SYMBOL QUAD GREATER-THAN;So;0;L;;;;;N;;;;;-2345;APL FUNCTIONAL SYMBOL LEFTWARDS VANE;So;0;L;;;;;N;;;;;-2346;APL FUNCTIONAL SYMBOL RIGHTWARDS VANE;So;0;L;;;;;N;;;;;-2347;APL FUNCTIONAL SYMBOL QUAD LEFTWARDS ARROW;So;0;L;;;;;N;;;;;-2348;APL FUNCTIONAL SYMBOL QUAD RIGHTWARDS ARROW;So;0;L;;;;;N;;;;;-2349;APL FUNCTIONAL SYMBOL CIRCLE BACKSLASH;So;0;L;;;;;N;;;;;-234A;APL FUNCTIONAL SYMBOL DOWN TACK UNDERBAR;So;0;L;;;;;N;;;;;-234B;APL FUNCTIONAL SYMBOL DELTA STILE;So;0;L;;;;;N;;;;;-234C;APL FUNCTIONAL SYMBOL QUAD DOWN CARET;So;0;L;;;;;N;;;;;-234D;APL FUNCTIONAL SYMBOL QUAD DELTA;So;0;L;;;;;N;;;;;-234E;APL FUNCTIONAL SYMBOL DOWN TACK JOT;So;0;L;;;;;N;;;;;-234F;APL FUNCTIONAL SYMBOL UPWARDS VANE;So;0;L;;;;;N;;;;;-2350;APL FUNCTIONAL SYMBOL QUAD UPWARDS ARROW;So;0;L;;;;;N;;;;;-2351;APL FUNCTIONAL SYMBOL UP TACK OVERBAR;So;0;L;;;;;N;;;;;-2352;APL FUNCTIONAL SYMBOL DEL STILE;So;0;L;;;;;N;;;;;-2353;APL FUNCTIONAL SYMBOL QUAD UP CARET;So;0;L;;;;;N;;;;;-2354;APL FUNCTIONAL SYMBOL QUAD DEL;So;0;L;;;;;N;;;;;-2355;APL FUNCTIONAL SYMBOL UP TACK JOT;So;0;L;;;;;N;;;;;-2356;APL FUNCTIONAL SYMBOL DOWNWARDS VANE;So;0;L;;;;;N;;;;;-2357;APL FUNCTIONAL SYMBOL QUAD DOWNWARDS ARROW;So;0;L;;;;;N;;;;;-2358;APL FUNCTIONAL SYMBOL QUOTE UNDERBAR;So;0;L;;;;;N;;;;;-2359;APL FUNCTIONAL SYMBOL DELTA UNDERBAR;So;0;L;;;;;N;;;;;-235A;APL FUNCTIONAL SYMBOL DIAMOND UNDERBAR;So;0;L;;;;;N;;;;;-235B;APL FUNCTIONAL SYMBOL JOT UNDERBAR;So;0;L;;;;;N;;;;;-235C;APL FUNCTIONAL SYMBOL CIRCLE UNDERBAR;So;0;L;;;;;N;;;;;-235D;APL FUNCTIONAL SYMBOL UP SHOE JOT;So;0;L;;;;;N;;;;;-235E;APL FUNCTIONAL SYMBOL QUOTE QUAD;So;0;L;;;;;N;;;;;-235F;APL FUNCTIONAL SYMBOL CIRCLE STAR;So;0;L;;;;;N;;;;;-2360;APL FUNCTIONAL SYMBOL QUAD COLON;So;0;L;;;;;N;;;;;-2361;APL FUNCTIONAL SYMBOL UP TACK DIAERESIS;So;0;L;;;;;N;;;;;-2362;APL FUNCTIONAL SYMBOL DEL DIAERESIS;So;0;L;;;;;N;;;;;-2363;APL FUNCTIONAL SYMBOL STAR DIAERESIS;So;0;L;;;;;N;;;;;-2364;APL FUNCTIONAL SYMBOL JOT DIAERESIS;So;0;L;;;;;N;;;;;-2365;APL FUNCTIONAL SYMBOL CIRCLE DIAERESIS;So;0;L;;;;;N;;;;;-2366;APL FUNCTIONAL SYMBOL DOWN SHOE STILE;So;0;L;;;;;N;;;;;-2367;APL FUNCTIONAL SYMBOL LEFT SHOE STILE;So;0;L;;;;;N;;;;;-2368;APL FUNCTIONAL SYMBOL TILDE DIAERESIS;So;0;L;;;;;N;;;;;-2369;APL FUNCTIONAL SYMBOL GREATER-THAN DIAERESIS;So;0;L;;;;;N;;;;;-236A;APL FUNCTIONAL SYMBOL COMMA BAR;So;0;L;;;;;N;;;;;-236B;APL FUNCTIONAL SYMBOL DEL TILDE;So;0;L;;;;;N;;;;;-236C;APL FUNCTIONAL SYMBOL ZILDE;So;0;L;;;;;N;;;;;-236D;APL FUNCTIONAL SYMBOL STILE TILDE;So;0;L;;;;;N;;;;;-236E;APL FUNCTIONAL SYMBOL SEMICOLON UNDERBAR;So;0;L;;;;;N;;;;;-236F;APL FUNCTIONAL SYMBOL QUAD NOT EQUAL;So;0;L;;;;;N;;;;;-2370;APL FUNCTIONAL SYMBOL QUAD QUESTION;So;0;L;;;;;N;;;;;-2371;APL FUNCTIONAL SYMBOL DOWN CARET TILDE;So;0;L;;;;;N;;;;;-2372;APL FUNCTIONAL SYMBOL UP CARET TILDE;So;0;L;;;;;N;;;;;-2373;APL FUNCTIONAL SYMBOL IOTA;So;0;L;;;;;N;;;;;-2374;APL FUNCTIONAL SYMBOL RHO;So;0;L;;;;;N;;;;;-2375;APL FUNCTIONAL SYMBOL OMEGA;So;0;L;;;;;N;;;;;-2376;APL FUNCTIONAL SYMBOL ALPHA UNDERBAR;So;0;L;;;;;N;;;;;-2377;APL FUNCTIONAL SYMBOL EPSILON UNDERBAR;So;0;L;;;;;N;;;;;-2378;APL FUNCTIONAL SYMBOL IOTA UNDERBAR;So;0;L;;;;;N;;;;;-2379;APL FUNCTIONAL SYMBOL OMEGA UNDERBAR;So;0;L;;;;;N;;;;;-237A;APL FUNCTIONAL SYMBOL ALPHA;So;0;L;;;;;N;;;;;-237B;NOT CHECK MARK;So;0;ON;;;;;N;;;;;-237C;RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW;Sm;0;ON;;;;;N;;;;;-237D;SHOULDERED OPEN BOX;So;0;ON;;;;;N;;;;;-237E;BELL SYMBOL;So;0;ON;;;;;N;;;;;-237F;VERTICAL LINE WITH MIDDLE DOT;So;0;ON;;;;;N;;;;;-2380;INSERTION SYMBOL;So;0;ON;;;;;N;;;;;-2381;CONTINUOUS UNDERLINE SYMBOL;So;0;ON;;;;;N;;;;;-2382;DISCONTINUOUS UNDERLINE SYMBOL;So;0;ON;;;;;N;;;;;-2383;EMPHASIS SYMBOL;So;0;ON;;;;;N;;;;;-2384;COMPOSITION SYMBOL;So;0;ON;;;;;N;;;;;-2385;WHITE SQUARE WITH CENTRE VERTICAL LINE;So;0;ON;;;;;N;;;;;-2386;ENTER SYMBOL;So;0;ON;;;;;N;;;;;-2387;ALTERNATIVE KEY SYMBOL;So;0;ON;;;;;N;;;;;-2388;HELM SYMBOL;So;0;ON;;;;;N;;;;;-2389;CIRCLED HORIZONTAL BAR WITH NOTCH;So;0;ON;;;;;N;;;;;-238A;CIRCLED TRIANGLE DOWN;So;0;ON;;;;;N;;;;;-238B;BROKEN CIRCLE WITH NORTHWEST ARROW;So;0;ON;;;;;N;;;;;-238C;UNDO SYMBOL;So;0;ON;;;;;N;;;;;-238D;MONOSTABLE SYMBOL;So;0;ON;;;;;N;;;;;-238E;HYSTERESIS SYMBOL;So;0;ON;;;;;N;;;;;-238F;OPEN-CIRCUIT-OUTPUT H-TYPE SYMBOL;So;0;ON;;;;;N;;;;;-2390;OPEN-CIRCUIT-OUTPUT L-TYPE SYMBOL;So;0;ON;;;;;N;;;;;-2391;PASSIVE-PULL-DOWN-OUTPUT SYMBOL;So;0;ON;;;;;N;;;;;-2392;PASSIVE-PULL-UP-OUTPUT SYMBOL;So;0;ON;;;;;N;;;;;-2393;DIRECT CURRENT SYMBOL FORM TWO;So;0;ON;;;;;N;;;;;-2394;SOFTWARE-FUNCTION SYMBOL;So;0;ON;;;;;N;;;;;-2395;APL FUNCTIONAL SYMBOL QUAD;So;0;L;;;;;N;;;;;-2396;DECIMAL SEPARATOR KEY SYMBOL;So;0;ON;;;;;N;;;;;-2397;PREVIOUS PAGE;So;0;ON;;;;;N;;;;;-2398;NEXT PAGE;So;0;ON;;;;;N;;;;;-2399;PRINT SCREEN SYMBOL;So;0;ON;;;;;N;;;;;-239A;CLEAR SCREEN SYMBOL;So;0;ON;;;;;N;;;;;-239B;LEFT PARENTHESIS UPPER HOOK;Sm;0;ON;;;;;N;;;;;-239C;LEFT PARENTHESIS EXTENSION;Sm;0;ON;;;;;N;;;;;-239D;LEFT PARENTHESIS LOWER HOOK;Sm;0;ON;;;;;N;;;;;-239E;RIGHT PARENTHESIS UPPER HOOK;Sm;0;ON;;;;;N;;;;;-239F;RIGHT PARENTHESIS EXTENSION;Sm;0;ON;;;;;N;;;;;-23A0;RIGHT PARENTHESIS LOWER HOOK;Sm;0;ON;;;;;N;;;;;-23A1;LEFT SQUARE BRACKET UPPER CORNER;Sm;0;ON;;;;;N;;;;;-23A2;LEFT SQUARE BRACKET EXTENSION;Sm;0;ON;;;;;N;;;;;-23A3;LEFT SQUARE BRACKET LOWER CORNER;Sm;0;ON;;;;;N;;;;;-23A4;RIGHT SQUARE BRACKET UPPER CORNER;Sm;0;ON;;;;;N;;;;;-23A5;RIGHT SQUARE BRACKET EXTENSION;Sm;0;ON;;;;;N;;;;;-23A6;RIGHT SQUARE BRACKET LOWER CORNER;Sm;0;ON;;;;;N;;;;;-23A7;LEFT CURLY BRACKET UPPER HOOK;Sm;0;ON;;;;;N;;;;;-23A8;LEFT CURLY BRACKET MIDDLE PIECE;Sm;0;ON;;;;;N;;;;;-23A9;LEFT CURLY BRACKET LOWER HOOK;Sm;0;ON;;;;;N;;;;;-23AA;CURLY BRACKET EXTENSION;Sm;0;ON;;;;;N;;;;;-23AB;RIGHT CURLY BRACKET UPPER HOOK;Sm;0;ON;;;;;N;;;;;-23AC;RIGHT CURLY BRACKET MIDDLE PIECE;Sm;0;ON;;;;;N;;;;;-23AD;RIGHT CURLY BRACKET LOWER HOOK;Sm;0;ON;;;;;N;;;;;-23AE;INTEGRAL EXTENSION;Sm;0;ON;;;;;N;;;;;-23AF;HORIZONTAL LINE EXTENSION;Sm;0;ON;;;;;N;;;;;-23B0;UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION;Sm;0;ON;;;;;N;;;;;-23B1;UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION;Sm;0;ON;;;;;N;;;;;-23B2;SUMMATION TOP;Sm;0;ON;;;;;N;;;;;-23B3;SUMMATION BOTTOM;Sm;0;ON;;;;;N;;;;;-23B4;TOP SQUARE BRACKET;So;0;ON;;;;;N;;;;;-23B5;BOTTOM SQUARE BRACKET;So;0;ON;;;;;N;;;;;-23B6;BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET;So;0;ON;;;;;N;;;;;-23B7;RADICAL SYMBOL BOTTOM;So;0;ON;;;;;N;;;;;-23B8;LEFT VERTICAL BOX LINE;So;0;ON;;;;;N;;;;;-23B9;RIGHT VERTICAL BOX LINE;So;0;ON;;;;;N;;;;;-23BA;HORIZONTAL SCAN LINE-1;So;0;ON;;;;;N;;;;;-23BB;HORIZONTAL SCAN LINE-3;So;0;ON;;;;;N;;;;;-23BC;HORIZONTAL SCAN LINE-7;So;0;ON;;;;;N;;;;;-23BD;HORIZONTAL SCAN LINE-9;So;0;ON;;;;;N;;;;;-23BE;DENTISTRY SYMBOL LIGHT VERTICAL AND TOP RIGHT;So;0;ON;;;;;N;;;;;-23BF;DENTISTRY SYMBOL LIGHT VERTICAL AND BOTTOM RIGHT;So;0;ON;;;;;N;;;;;-23C0;DENTISTRY SYMBOL LIGHT VERTICAL WITH CIRCLE;So;0;ON;;;;;N;;;;;-23C1;DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH CIRCLE;So;0;ON;;;;;N;;;;;-23C2;DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH CIRCLE;So;0;ON;;;;;N;;;;;-23C3;DENTISTRY SYMBOL LIGHT VERTICAL WITH TRIANGLE;So;0;ON;;;;;N;;;;;-23C4;DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH TRIANGLE;So;0;ON;;;;;N;;;;;-23C5;DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH TRIANGLE;So;0;ON;;;;;N;;;;;-23C6;DENTISTRY SYMBOL LIGHT VERTICAL AND WAVE;So;0;ON;;;;;N;;;;;-23C7;DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH WAVE;So;0;ON;;;;;N;;;;;-23C8;DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH WAVE;So;0;ON;;;;;N;;;;;-23C9;DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL;So;0;ON;;;;;N;;;;;-23CA;DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL;So;0;ON;;;;;N;;;;;-23CB;DENTISTRY SYMBOL LIGHT VERTICAL AND TOP LEFT;So;0;ON;;;;;N;;;;;-23CC;DENTISTRY SYMBOL LIGHT VERTICAL AND BOTTOM LEFT;So;0;ON;;;;;N;;;;;-23CD;SQUARE FOOT;So;0;ON;;;;;N;;;;;-23CE;RETURN SYMBOL;So;0;ON;;;;;N;;;;;-23CF;EJECT SYMBOL;So;0;ON;;;;;N;;;;;-23D0;VERTICAL LINE EXTENSION;So;0;ON;;;;;N;;;;;-23D1;METRICAL BREVE;So;0;ON;;;;;N;;;;;-23D2;METRICAL LONG OVER SHORT;So;0;ON;;;;;N;;;;;-23D3;METRICAL SHORT OVER LONG;So;0;ON;;;;;N;;;;;-23D4;METRICAL LONG OVER TWO SHORTS;So;0;ON;;;;;N;;;;;-23D5;METRICAL TWO SHORTS OVER LONG;So;0;ON;;;;;N;;;;;-23D6;METRICAL TWO SHORTS JOINED;So;0;ON;;;;;N;;;;;-23D7;METRICAL TRISEME;So;0;ON;;;;;N;;;;;-23D8;METRICAL TETRASEME;So;0;ON;;;;;N;;;;;-23D9;METRICAL PENTASEME;So;0;ON;;;;;N;;;;;-23DA;EARTH GROUND;So;0;ON;;;;;N;;;;;-23DB;FUSE;So;0;ON;;;;;N;;;;;-23DC;TOP PARENTHESIS;Sm;0;ON;;;;;N;;;;;-23DD;BOTTOM PARENTHESIS;Sm;0;ON;;;;;N;;;;;-23DE;TOP CURLY BRACKET;Sm;0;ON;;;;;N;;;;;-23DF;BOTTOM CURLY BRACKET;Sm;0;ON;;;;;N;;;;;-23E0;TOP TORTOISE SHELL BRACKET;Sm;0;ON;;;;;N;;;;;-23E1;BOTTOM TORTOISE SHELL BRACKET;Sm;0;ON;;;;;N;;;;;-23E2;WHITE TRAPEZIUM;So;0;ON;;;;;N;;;;;-23E3;BENZENE RING WITH CIRCLE;So;0;ON;;;;;N;;;;;-23E4;STRAIGHTNESS;So;0;ON;;;;;N;;;;;-23E5;FLATNESS;So;0;ON;;;;;N;;;;;-23E6;AC CURRENT;So;0;ON;;;;;N;;;;;-23E7;ELECTRICAL INTERSECTION;So;0;ON;;;;;N;;;;;-23E8;DECIMAL EXPONENT SYMBOL;So;0;ON;;;;;N;;;;;-23E9;BLACK RIGHT-POINTING DOUBLE TRIANGLE;So;0;ON;;;;;N;;;;;-23EA;BLACK LEFT-POINTING DOUBLE TRIANGLE;So;0;ON;;;;;N;;;;;-23EB;BLACK UP-POINTING DOUBLE TRIANGLE;So;0;ON;;;;;N;;;;;-23EC;BLACK DOWN-POINTING DOUBLE TRIANGLE;So;0;ON;;;;;N;;;;;-23ED;BLACK RIGHT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR;So;0;ON;;;;;N;;;;;-23EE;BLACK LEFT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR;So;0;ON;;;;;N;;;;;-23EF;BLACK RIGHT-POINTING TRIANGLE WITH DOUBLE VERTICAL BAR;So;0;ON;;;;;N;;;;;-23F0;ALARM CLOCK;So;0;ON;;;;;N;;;;;-23F1;STOPWATCH;So;0;ON;;;;;N;;;;;-23F2;TIMER CLOCK;So;0;ON;;;;;N;;;;;-23F3;HOURGLASS WITH FLOWING SAND;So;0;ON;;;;;N;;;;;-23F4;BLACK MEDIUM LEFT-POINTING TRIANGLE;So;0;ON;;;;;N;;;;;-23F5;BLACK MEDIUM RIGHT-POINTING TRIANGLE;So;0;ON;;;;;N;;;;;-23F6;BLACK MEDIUM UP-POINTING TRIANGLE;So;0;ON;;;;;N;;;;;-23F7;BLACK MEDIUM DOWN-POINTING TRIANGLE;So;0;ON;;;;;N;;;;;-23F8;DOUBLE VERTICAL BAR;So;0;ON;;;;;N;;;;;-23F9;BLACK SQUARE FOR STOP;So;0;ON;;;;;N;;;;;-23FA;BLACK CIRCLE FOR RECORD;So;0;ON;;;;;N;;;;;-2400;SYMBOL FOR NULL;So;0;ON;;;;;N;GRAPHIC FOR NULL;;;;-2401;SYMBOL FOR START OF HEADING;So;0;ON;;;;;N;GRAPHIC FOR START OF HEADING;;;;-2402;SYMBOL FOR START OF TEXT;So;0;ON;;;;;N;GRAPHIC FOR START OF TEXT;;;;-2403;SYMBOL FOR END OF TEXT;So;0;ON;;;;;N;GRAPHIC FOR END OF TEXT;;;;-2404;SYMBOL FOR END OF TRANSMISSION;So;0;ON;;;;;N;GRAPHIC FOR END OF TRANSMISSION;;;;-2405;SYMBOL FOR ENQUIRY;So;0;ON;;;;;N;GRAPHIC FOR ENQUIRY;;;;-2406;SYMBOL FOR ACKNOWLEDGE;So;0;ON;;;;;N;GRAPHIC FOR ACKNOWLEDGE;;;;-2407;SYMBOL FOR BELL;So;0;ON;;;;;N;GRAPHIC FOR BELL;;;;-2408;SYMBOL FOR BACKSPACE;So;0;ON;;;;;N;GRAPHIC FOR BACKSPACE;;;;-2409;SYMBOL FOR HORIZONTAL TABULATION;So;0;ON;;;;;N;GRAPHIC FOR HORIZONTAL TABULATION;;;;-240A;SYMBOL FOR LINE FEED;So;0;ON;;;;;N;GRAPHIC FOR LINE FEED;;;;-240B;SYMBOL FOR VERTICAL TABULATION;So;0;ON;;;;;N;GRAPHIC FOR VERTICAL TABULATION;;;;-240C;SYMBOL FOR FORM FEED;So;0;ON;;;;;N;GRAPHIC FOR FORM FEED;;;;-240D;SYMBOL FOR CARRIAGE RETURN;So;0;ON;;;;;N;GRAPHIC FOR CARRIAGE RETURN;;;;-240E;SYMBOL FOR SHIFT OUT;So;0;ON;;;;;N;GRAPHIC FOR SHIFT OUT;;;;-240F;SYMBOL FOR SHIFT IN;So;0;ON;;;;;N;GRAPHIC FOR SHIFT IN;;;;-2410;SYMBOL FOR DATA LINK ESCAPE;So;0;ON;;;;;N;GRAPHIC FOR DATA LINK ESCAPE;;;;-2411;SYMBOL FOR DEVICE CONTROL ONE;So;0;ON;;;;;N;GRAPHIC FOR DEVICE CONTROL ONE;;;;-2412;SYMBOL FOR DEVICE CONTROL TWO;So;0;ON;;;;;N;GRAPHIC FOR DEVICE CONTROL TWO;;;;-2413;SYMBOL FOR DEVICE CONTROL THREE;So;0;ON;;;;;N;GRAPHIC FOR DEVICE CONTROL THREE;;;;-2414;SYMBOL FOR DEVICE CONTROL FOUR;So;0;ON;;;;;N;GRAPHIC FOR DEVICE CONTROL FOUR;;;;-2415;SYMBOL FOR NEGATIVE ACKNOWLEDGE;So;0;ON;;;;;N;GRAPHIC FOR NEGATIVE ACKNOWLEDGE;;;;-2416;SYMBOL FOR SYNCHRONOUS IDLE;So;0;ON;;;;;N;GRAPHIC FOR SYNCHRONOUS IDLE;;;;-2417;SYMBOL FOR END OF TRANSMISSION BLOCK;So;0;ON;;;;;N;GRAPHIC FOR END OF TRANSMISSION BLOCK;;;;-2418;SYMBOL FOR CANCEL;So;0;ON;;;;;N;GRAPHIC FOR CANCEL;;;;-2419;SYMBOL FOR END OF MEDIUM;So;0;ON;;;;;N;GRAPHIC FOR END OF MEDIUM;;;;-241A;SYMBOL FOR SUBSTITUTE;So;0;ON;;;;;N;GRAPHIC FOR SUBSTITUTE;;;;-241B;SYMBOL FOR ESCAPE;So;0;ON;;;;;N;GRAPHIC FOR ESCAPE;;;;-241C;SYMBOL FOR FILE SEPARATOR;So;0;ON;;;;;N;GRAPHIC FOR FILE SEPARATOR;;;;-241D;SYMBOL FOR GROUP SEPARATOR;So;0;ON;;;;;N;GRAPHIC FOR GROUP SEPARATOR;;;;-241E;SYMBOL FOR RECORD SEPARATOR;So;0;ON;;;;;N;GRAPHIC FOR RECORD SEPARATOR;;;;-241F;SYMBOL FOR UNIT SEPARATOR;So;0;ON;;;;;N;GRAPHIC FOR UNIT SEPARATOR;;;;-2420;SYMBOL FOR SPACE;So;0;ON;;;;;N;GRAPHIC FOR SPACE;;;;-2421;SYMBOL FOR DELETE;So;0;ON;;;;;N;GRAPHIC FOR DELETE;;;;-2422;BLANK SYMBOL;So;0;ON;;;;;N;BLANK;;;;-2423;OPEN BOX;So;0;ON;;;;;N;;;;;-2424;SYMBOL FOR NEWLINE;So;0;ON;;;;;N;GRAPHIC FOR NEWLINE;;;;-2425;SYMBOL FOR DELETE FORM TWO;So;0;ON;;;;;N;;;;;-2426;SYMBOL FOR SUBSTITUTE FORM TWO;So;0;ON;;;;;N;;;;;-2440;OCR HOOK;So;0;ON;;;;;N;;;;;-2441;OCR CHAIR;So;0;ON;;;;;N;;;;;-2442;OCR FORK;So;0;ON;;;;;N;;;;;-2443;OCR INVERTED FORK;So;0;ON;;;;;N;;;;;-2444;OCR BELT BUCKLE;So;0;ON;;;;;N;;;;;-2445;OCR BOW TIE;So;0;ON;;;;;N;;;;;-2446;OCR BRANCH BANK IDENTIFICATION;So;0;ON;;;;;N;;;;;-2447;OCR AMOUNT OF CHECK;So;0;ON;;;;;N;;;;;-2448;OCR DASH;So;0;ON;;;;;N;;;;;-2449;OCR CUSTOMER ACCOUNT NUMBER;So;0;ON;;;;;N;;;;;-244A;OCR DOUBLE BACKSLASH;So;0;ON;;;;;N;;;;;-2460;CIRCLED DIGIT ONE;No;0;ON;<circle> 0031;;1;1;N;;;;;-2461;CIRCLED DIGIT TWO;No;0;ON;<circle> 0032;;2;2;N;;;;;-2462;CIRCLED DIGIT THREE;No;0;ON;<circle> 0033;;3;3;N;;;;;-2463;CIRCLED DIGIT FOUR;No;0;ON;<circle> 0034;;4;4;N;;;;;-2464;CIRCLED DIGIT FIVE;No;0;ON;<circle> 0035;;5;5;N;;;;;-2465;CIRCLED DIGIT SIX;No;0;ON;<circle> 0036;;6;6;N;;;;;-2466;CIRCLED DIGIT SEVEN;No;0;ON;<circle> 0037;;7;7;N;;;;;-2467;CIRCLED DIGIT EIGHT;No;0;ON;<circle> 0038;;8;8;N;;;;;-2468;CIRCLED DIGIT NINE;No;0;ON;<circle> 0039;;9;9;N;;;;;-2469;CIRCLED NUMBER TEN;No;0;ON;<circle> 0031 0030;;;10;N;;;;;-246A;CIRCLED NUMBER ELEVEN;No;0;ON;<circle> 0031 0031;;;11;N;;;;;-246B;CIRCLED NUMBER TWELVE;No;0;ON;<circle> 0031 0032;;;12;N;;;;;-246C;CIRCLED NUMBER THIRTEEN;No;0;ON;<circle> 0031 0033;;;13;N;;;;;-246D;CIRCLED NUMBER FOURTEEN;No;0;ON;<circle> 0031 0034;;;14;N;;;;;-246E;CIRCLED NUMBER FIFTEEN;No;0;ON;<circle> 0031 0035;;;15;N;;;;;-246F;CIRCLED NUMBER SIXTEEN;No;0;ON;<circle> 0031 0036;;;16;N;;;;;-2470;CIRCLED NUMBER SEVENTEEN;No;0;ON;<circle> 0031 0037;;;17;N;;;;;-2471;CIRCLED NUMBER EIGHTEEN;No;0;ON;<circle> 0031 0038;;;18;N;;;;;-2472;CIRCLED NUMBER NINETEEN;No;0;ON;<circle> 0031 0039;;;19;N;;;;;-2473;CIRCLED NUMBER TWENTY;No;0;ON;<circle> 0032 0030;;;20;N;;;;;-2474;PARENTHESIZED DIGIT ONE;No;0;ON;<compat> 0028 0031 0029;;1;1;N;;;;;-2475;PARENTHESIZED DIGIT TWO;No;0;ON;<compat> 0028 0032 0029;;2;2;N;;;;;-2476;PARENTHESIZED DIGIT THREE;No;0;ON;<compat> 0028 0033 0029;;3;3;N;;;;;-2477;PARENTHESIZED DIGIT FOUR;No;0;ON;<compat> 0028 0034 0029;;4;4;N;;;;;-2478;PARENTHESIZED DIGIT FIVE;No;0;ON;<compat> 0028 0035 0029;;5;5;N;;;;;-2479;PARENTHESIZED DIGIT SIX;No;0;ON;<compat> 0028 0036 0029;;6;6;N;;;;;-247A;PARENTHESIZED DIGIT SEVEN;No;0;ON;<compat> 0028 0037 0029;;7;7;N;;;;;-247B;PARENTHESIZED DIGIT EIGHT;No;0;ON;<compat> 0028 0038 0029;;8;8;N;;;;;-247C;PARENTHESIZED DIGIT NINE;No;0;ON;<compat> 0028 0039 0029;;9;9;N;;;;;-247D;PARENTHESIZED NUMBER TEN;No;0;ON;<compat> 0028 0031 0030 0029;;;10;N;;;;;-247E;PARENTHESIZED NUMBER ELEVEN;No;0;ON;<compat> 0028 0031 0031 0029;;;11;N;;;;;-247F;PARENTHESIZED NUMBER TWELVE;No;0;ON;<compat> 0028 0031 0032 0029;;;12;N;;;;;-2480;PARENTHESIZED NUMBER THIRTEEN;No;0;ON;<compat> 0028 0031 0033 0029;;;13;N;;;;;-2481;PARENTHESIZED NUMBER FOURTEEN;No;0;ON;<compat> 0028 0031 0034 0029;;;14;N;;;;;-2482;PARENTHESIZED NUMBER FIFTEEN;No;0;ON;<compat> 0028 0031 0035 0029;;;15;N;;;;;-2483;PARENTHESIZED NUMBER SIXTEEN;No;0;ON;<compat> 0028 0031 0036 0029;;;16;N;;;;;-2484;PARENTHESIZED NUMBER SEVENTEEN;No;0;ON;<compat> 0028 0031 0037 0029;;;17;N;;;;;-2485;PARENTHESIZED NUMBER EIGHTEEN;No;0;ON;<compat> 0028 0031 0038 0029;;;18;N;;;;;-2486;PARENTHESIZED NUMBER NINETEEN;No;0;ON;<compat> 0028 0031 0039 0029;;;19;N;;;;;-2487;PARENTHESIZED NUMBER TWENTY;No;0;ON;<compat> 0028 0032 0030 0029;;;20;N;;;;;-2488;DIGIT ONE FULL STOP;No;0;EN;<compat> 0031 002E;;1;1;N;DIGIT ONE PERIOD;;;;-2489;DIGIT TWO FULL STOP;No;0;EN;<compat> 0032 002E;;2;2;N;DIGIT TWO PERIOD;;;;-248A;DIGIT THREE FULL STOP;No;0;EN;<compat> 0033 002E;;3;3;N;DIGIT THREE PERIOD;;;;-248B;DIGIT FOUR FULL STOP;No;0;EN;<compat> 0034 002E;;4;4;N;DIGIT FOUR PERIOD;;;;-248C;DIGIT FIVE FULL STOP;No;0;EN;<compat> 0035 002E;;5;5;N;DIGIT FIVE PERIOD;;;;-248D;DIGIT SIX FULL STOP;No;0;EN;<compat> 0036 002E;;6;6;N;DIGIT SIX PERIOD;;;;-248E;DIGIT SEVEN FULL STOP;No;0;EN;<compat> 0037 002E;;7;7;N;DIGIT SEVEN PERIOD;;;;-248F;DIGIT EIGHT FULL STOP;No;0;EN;<compat> 0038 002E;;8;8;N;DIGIT EIGHT PERIOD;;;;-2490;DIGIT NINE FULL STOP;No;0;EN;<compat> 0039 002E;;9;9;N;DIGIT NINE PERIOD;;;;-2491;NUMBER TEN FULL STOP;No;0;EN;<compat> 0031 0030 002E;;;10;N;NUMBER TEN PERIOD;;;;-2492;NUMBER ELEVEN FULL STOP;No;0;EN;<compat> 0031 0031 002E;;;11;N;NUMBER ELEVEN PERIOD;;;;-2493;NUMBER TWELVE FULL STOP;No;0;EN;<compat> 0031 0032 002E;;;12;N;NUMBER TWELVE PERIOD;;;;-2494;NUMBER THIRTEEN FULL STOP;No;0;EN;<compat> 0031 0033 002E;;;13;N;NUMBER THIRTEEN PERIOD;;;;-2495;NUMBER FOURTEEN FULL STOP;No;0;EN;<compat> 0031 0034 002E;;;14;N;NUMBER FOURTEEN PERIOD;;;;-2496;NUMBER FIFTEEN FULL STOP;No;0;EN;<compat> 0031 0035 002E;;;15;N;NUMBER FIFTEEN PERIOD;;;;-2497;NUMBER SIXTEEN FULL STOP;No;0;EN;<compat> 0031 0036 002E;;;16;N;NUMBER SIXTEEN PERIOD;;;;-2498;NUMBER SEVENTEEN FULL STOP;No;0;EN;<compat> 0031 0037 002E;;;17;N;NUMBER SEVENTEEN PERIOD;;;;-2499;NUMBER EIGHTEEN FULL STOP;No;0;EN;<compat> 0031 0038 002E;;;18;N;NUMBER EIGHTEEN PERIOD;;;;-249A;NUMBER NINETEEN FULL STOP;No;0;EN;<compat> 0031 0039 002E;;;19;N;NUMBER NINETEEN PERIOD;;;;-249B;NUMBER TWENTY FULL STOP;No;0;EN;<compat> 0032 0030 002E;;;20;N;NUMBER TWENTY PERIOD;;;;-249C;PARENTHESIZED LATIN SMALL LETTER A;So;0;L;<compat> 0028 0061 0029;;;;N;;;;;-249D;PARENTHESIZED LATIN SMALL LETTER B;So;0;L;<compat> 0028 0062 0029;;;;N;;;;;-249E;PARENTHESIZED LATIN SMALL LETTER C;So;0;L;<compat> 0028 0063 0029;;;;N;;;;;-249F;PARENTHESIZED LATIN SMALL LETTER D;So;0;L;<compat> 0028 0064 0029;;;;N;;;;;-24A0;PARENTHESIZED LATIN SMALL LETTER E;So;0;L;<compat> 0028 0065 0029;;;;N;;;;;-24A1;PARENTHESIZED LATIN SMALL LETTER F;So;0;L;<compat> 0028 0066 0029;;;;N;;;;;-24A2;PARENTHESIZED LATIN SMALL LETTER G;So;0;L;<compat> 0028 0067 0029;;;;N;;;;;-24A3;PARENTHESIZED LATIN SMALL LETTER H;So;0;L;<compat> 0028 0068 0029;;;;N;;;;;-24A4;PARENTHESIZED LATIN SMALL LETTER I;So;0;L;<compat> 0028 0069 0029;;;;N;;;;;-24A5;PARENTHESIZED LATIN SMALL LETTER J;So;0;L;<compat> 0028 006A 0029;;;;N;;;;;-24A6;PARENTHESIZED LATIN SMALL LETTER K;So;0;L;<compat> 0028 006B 0029;;;;N;;;;;-24A7;PARENTHESIZED LATIN SMALL LETTER L;So;0;L;<compat> 0028 006C 0029;;;;N;;;;;-24A8;PARENTHESIZED LATIN SMALL LETTER M;So;0;L;<compat> 0028 006D 0029;;;;N;;;;;-24A9;PARENTHESIZED LATIN SMALL LETTER N;So;0;L;<compat> 0028 006E 0029;;;;N;;;;;-24AA;PARENTHESIZED LATIN SMALL LETTER O;So;0;L;<compat> 0028 006F 0029;;;;N;;;;;-24AB;PARENTHESIZED LATIN SMALL LETTER P;So;0;L;<compat> 0028 0070 0029;;;;N;;;;;-24AC;PARENTHESIZED LATIN SMALL LETTER Q;So;0;L;<compat> 0028 0071 0029;;;;N;;;;;-24AD;PARENTHESIZED LATIN SMALL LETTER R;So;0;L;<compat> 0028 0072 0029;;;;N;;;;;-24AE;PARENTHESIZED LATIN SMALL LETTER S;So;0;L;<compat> 0028 0073 0029;;;;N;;;;;-24AF;PARENTHESIZED LATIN SMALL LETTER T;So;0;L;<compat> 0028 0074 0029;;;;N;;;;;-24B0;PARENTHESIZED LATIN SMALL LETTER U;So;0;L;<compat> 0028 0075 0029;;;;N;;;;;-24B1;PARENTHESIZED LATIN SMALL LETTER V;So;0;L;<compat> 0028 0076 0029;;;;N;;;;;-24B2;PARENTHESIZED LATIN SMALL LETTER W;So;0;L;<compat> 0028 0077 0029;;;;N;;;;;-24B3;PARENTHESIZED LATIN SMALL LETTER X;So;0;L;<compat> 0028 0078 0029;;;;N;;;;;-24B4;PARENTHESIZED LATIN SMALL LETTER Y;So;0;L;<compat> 0028 0079 0029;;;;N;;;;;-24B5;PARENTHESIZED LATIN SMALL LETTER Z;So;0;L;<compat> 0028 007A 0029;;;;N;;;;;-24B6;CIRCLED LATIN CAPITAL LETTER A;So;0;L;<circle> 0041;;;;N;;;;24D0;-24B7;CIRCLED LATIN CAPITAL LETTER B;So;0;L;<circle> 0042;;;;N;;;;24D1;-24B8;CIRCLED LATIN CAPITAL LETTER C;So;0;L;<circle> 0043;;;;N;;;;24D2;-24B9;CIRCLED LATIN CAPITAL LETTER D;So;0;L;<circle> 0044;;;;N;;;;24D3;-24BA;CIRCLED LATIN CAPITAL LETTER E;So;0;L;<circle> 0045;;;;N;;;;24D4;-24BB;CIRCLED LATIN CAPITAL LETTER F;So;0;L;<circle> 0046;;;;N;;;;24D5;-24BC;CIRCLED LATIN CAPITAL LETTER G;So;0;L;<circle> 0047;;;;N;;;;24D6;-24BD;CIRCLED LATIN CAPITAL LETTER H;So;0;L;<circle> 0048;;;;N;;;;24D7;-24BE;CIRCLED LATIN CAPITAL LETTER I;So;0;L;<circle> 0049;;;;N;;;;24D8;-24BF;CIRCLED LATIN CAPITAL LETTER J;So;0;L;<circle> 004A;;;;N;;;;24D9;-24C0;CIRCLED LATIN CAPITAL LETTER K;So;0;L;<circle> 004B;;;;N;;;;24DA;-24C1;CIRCLED LATIN CAPITAL LETTER L;So;0;L;<circle> 004C;;;;N;;;;24DB;-24C2;CIRCLED LATIN CAPITAL LETTER M;So;0;L;<circle> 004D;;;;N;;;;24DC;-24C3;CIRCLED LATIN CAPITAL LETTER N;So;0;L;<circle> 004E;;;;N;;;;24DD;-24C4;CIRCLED LATIN CAPITAL LETTER O;So;0;L;<circle> 004F;;;;N;;;;24DE;-24C5;CIRCLED LATIN CAPITAL LETTER P;So;0;L;<circle> 0050;;;;N;;;;24DF;-24C6;CIRCLED LATIN CAPITAL LETTER Q;So;0;L;<circle> 0051;;;;N;;;;24E0;-24C7;CIRCLED LATIN CAPITAL LETTER R;So;0;L;<circle> 0052;;;;N;;;;24E1;-24C8;CIRCLED LATIN CAPITAL LETTER S;So;0;L;<circle> 0053;;;;N;;;;24E2;-24C9;CIRCLED LATIN CAPITAL LETTER T;So;0;L;<circle> 0054;;;;N;;;;24E3;-24CA;CIRCLED LATIN CAPITAL LETTER U;So;0;L;<circle> 0055;;;;N;;;;24E4;-24CB;CIRCLED LATIN CAPITAL LETTER V;So;0;L;<circle> 0056;;;;N;;;;24E5;-24CC;CIRCLED LATIN CAPITAL LETTER W;So;0;L;<circle> 0057;;;;N;;;;24E6;-24CD;CIRCLED LATIN CAPITAL LETTER X;So;0;L;<circle> 0058;;;;N;;;;24E7;-24CE;CIRCLED LATIN CAPITAL LETTER Y;So;0;L;<circle> 0059;;;;N;;;;24E8;-24CF;CIRCLED LATIN CAPITAL LETTER Z;So;0;L;<circle> 005A;;;;N;;;;24E9;-24D0;CIRCLED LATIN SMALL LETTER A;So;0;L;<circle> 0061;;;;N;;;24B6;;24B6-24D1;CIRCLED LATIN SMALL LETTER B;So;0;L;<circle> 0062;;;;N;;;24B7;;24B7-24D2;CIRCLED LATIN SMALL LETTER C;So;0;L;<circle> 0063;;;;N;;;24B8;;24B8-24D3;CIRCLED LATIN SMALL LETTER D;So;0;L;<circle> 0064;;;;N;;;24B9;;24B9-24D4;CIRCLED LATIN SMALL LETTER E;So;0;L;<circle> 0065;;;;N;;;24BA;;24BA-24D5;CIRCLED LATIN SMALL LETTER F;So;0;L;<circle> 0066;;;;N;;;24BB;;24BB-24D6;CIRCLED LATIN SMALL LETTER G;So;0;L;<circle> 0067;;;;N;;;24BC;;24BC-24D7;CIRCLED LATIN SMALL LETTER H;So;0;L;<circle> 0068;;;;N;;;24BD;;24BD-24D8;CIRCLED LATIN SMALL LETTER I;So;0;L;<circle> 0069;;;;N;;;24BE;;24BE-24D9;CIRCLED LATIN SMALL LETTER J;So;0;L;<circle> 006A;;;;N;;;24BF;;24BF-24DA;CIRCLED LATIN SMALL LETTER K;So;0;L;<circle> 006B;;;;N;;;24C0;;24C0-24DB;CIRCLED LATIN SMALL LETTER L;So;0;L;<circle> 006C;;;;N;;;24C1;;24C1-24DC;CIRCLED LATIN SMALL LETTER M;So;0;L;<circle> 006D;;;;N;;;24C2;;24C2-24DD;CIRCLED LATIN SMALL LETTER N;So;0;L;<circle> 006E;;;;N;;;24C3;;24C3-24DE;CIRCLED LATIN SMALL LETTER O;So;0;L;<circle> 006F;;;;N;;;24C4;;24C4-24DF;CIRCLED LATIN SMALL LETTER P;So;0;L;<circle> 0070;;;;N;;;24C5;;24C5-24E0;CIRCLED LATIN SMALL LETTER Q;So;0;L;<circle> 0071;;;;N;;;24C6;;24C6-24E1;CIRCLED LATIN SMALL LETTER R;So;0;L;<circle> 0072;;;;N;;;24C7;;24C7-24E2;CIRCLED LATIN SMALL LETTER S;So;0;L;<circle> 0073;;;;N;;;24C8;;24C8-24E3;CIRCLED LATIN SMALL LETTER T;So;0;L;<circle> 0074;;;;N;;;24C9;;24C9-24E4;CIRCLED LATIN SMALL LETTER U;So;0;L;<circle> 0075;;;;N;;;24CA;;24CA-24E5;CIRCLED LATIN SMALL LETTER V;So;0;L;<circle> 0076;;;;N;;;24CB;;24CB-24E6;CIRCLED LATIN SMALL LETTER W;So;0;L;<circle> 0077;;;;N;;;24CC;;24CC-24E7;CIRCLED LATIN SMALL LETTER X;So;0;L;<circle> 0078;;;;N;;;24CD;;24CD-24E8;CIRCLED LATIN SMALL LETTER Y;So;0;L;<circle> 0079;;;;N;;;24CE;;24CE-24E9;CIRCLED LATIN SMALL LETTER Z;So;0;L;<circle> 007A;;;;N;;;24CF;;24CF-24EA;CIRCLED DIGIT ZERO;No;0;ON;<circle> 0030;;0;0;N;;;;;-24EB;NEGATIVE CIRCLED NUMBER ELEVEN;No;0;ON;;;;11;N;;;;;-24EC;NEGATIVE CIRCLED NUMBER TWELVE;No;0;ON;;;;12;N;;;;;-24ED;NEGATIVE CIRCLED NUMBER THIRTEEN;No;0;ON;;;;13;N;;;;;-24EE;NEGATIVE CIRCLED NUMBER FOURTEEN;No;0;ON;;;;14;N;;;;;-24EF;NEGATIVE CIRCLED NUMBER FIFTEEN;No;0;ON;;;;15;N;;;;;-24F0;NEGATIVE CIRCLED NUMBER SIXTEEN;No;0;ON;;;;16;N;;;;;-24F1;NEGATIVE CIRCLED NUMBER SEVENTEEN;No;0;ON;;;;17;N;;;;;-24F2;NEGATIVE CIRCLED NUMBER EIGHTEEN;No;0;ON;;;;18;N;;;;;-24F3;NEGATIVE CIRCLED NUMBER NINETEEN;No;0;ON;;;;19;N;;;;;-24F4;NEGATIVE CIRCLED NUMBER TWENTY;No;0;ON;;;;20;N;;;;;-24F5;DOUBLE CIRCLED DIGIT ONE;No;0;ON;;;1;1;N;;;;;-24F6;DOUBLE CIRCLED DIGIT TWO;No;0;ON;;;2;2;N;;;;;-24F7;DOUBLE CIRCLED DIGIT THREE;No;0;ON;;;3;3;N;;;;;-24F8;DOUBLE CIRCLED DIGIT FOUR;No;0;ON;;;4;4;N;;;;;-24F9;DOUBLE CIRCLED DIGIT FIVE;No;0;ON;;;5;5;N;;;;;-24FA;DOUBLE CIRCLED DIGIT SIX;No;0;ON;;;6;6;N;;;;;-24FB;DOUBLE CIRCLED DIGIT SEVEN;No;0;ON;;;7;7;N;;;;;-24FC;DOUBLE CIRCLED DIGIT EIGHT;No;0;ON;;;8;8;N;;;;;-24FD;DOUBLE CIRCLED DIGIT NINE;No;0;ON;;;9;9;N;;;;;-24FE;DOUBLE CIRCLED NUMBER TEN;No;0;ON;;;;10;N;;;;;-24FF;NEGATIVE CIRCLED DIGIT ZERO;No;0;ON;;;0;0;N;;;;;-2500;BOX DRAWINGS LIGHT HORIZONTAL;So;0;ON;;;;;N;FORMS LIGHT HORIZONTAL;;;;-2501;BOX DRAWINGS HEAVY HORIZONTAL;So;0;ON;;;;;N;FORMS HEAVY HORIZONTAL;;;;-2502;BOX DRAWINGS LIGHT VERTICAL;So;0;ON;;;;;N;FORMS LIGHT VERTICAL;;;;-2503;BOX DRAWINGS HEAVY VERTICAL;So;0;ON;;;;;N;FORMS HEAVY VERTICAL;;;;-2504;BOX DRAWINGS LIGHT TRIPLE DASH HORIZONTAL;So;0;ON;;;;;N;FORMS LIGHT TRIPLE DASH HORIZONTAL;;;;-2505;BOX DRAWINGS HEAVY TRIPLE DASH HORIZONTAL;So;0;ON;;;;;N;FORMS HEAVY TRIPLE DASH HORIZONTAL;;;;-2506;BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL;So;0;ON;;;;;N;FORMS LIGHT TRIPLE DASH VERTICAL;;;;-2507;BOX DRAWINGS HEAVY TRIPLE DASH VERTICAL;So;0;ON;;;;;N;FORMS HEAVY TRIPLE DASH VERTICAL;;;;-2508;BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL;So;0;ON;;;;;N;FORMS LIGHT QUADRUPLE DASH HORIZONTAL;;;;-2509;BOX DRAWINGS HEAVY QUADRUPLE DASH HORIZONTAL;So;0;ON;;;;;N;FORMS HEAVY QUADRUPLE DASH HORIZONTAL;;;;-250A;BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL;So;0;ON;;;;;N;FORMS LIGHT QUADRUPLE DASH VERTICAL;;;;-250B;BOX DRAWINGS HEAVY QUADRUPLE DASH VERTICAL;So;0;ON;;;;;N;FORMS HEAVY QUADRUPLE DASH VERTICAL;;;;-250C;BOX DRAWINGS LIGHT DOWN AND RIGHT;So;0;ON;;;;;N;FORMS LIGHT DOWN AND RIGHT;;;;-250D;BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY;So;0;ON;;;;;N;FORMS DOWN LIGHT AND RIGHT HEAVY;;;;-250E;BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT;So;0;ON;;;;;N;FORMS DOWN HEAVY AND RIGHT LIGHT;;;;-250F;BOX DRAWINGS HEAVY DOWN AND RIGHT;So;0;ON;;;;;N;FORMS HEAVY DOWN AND RIGHT;;;;-2510;BOX DRAWINGS LIGHT DOWN AND LEFT;So;0;ON;;;;;N;FORMS LIGHT DOWN AND LEFT;;;;-2511;BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY;So;0;ON;;;;;N;FORMS DOWN LIGHT AND LEFT HEAVY;;;;-2512;BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT;So;0;ON;;;;;N;FORMS DOWN HEAVY AND LEFT LIGHT;;;;-2513;BOX DRAWINGS HEAVY DOWN AND LEFT;So;0;ON;;;;;N;FORMS HEAVY DOWN AND LEFT;;;;-2514;BOX DRAWINGS LIGHT UP AND RIGHT;So;0;ON;;;;;N;FORMS LIGHT UP AND RIGHT;;;;-2515;BOX DRAWINGS UP LIGHT AND RIGHT HEAVY;So;0;ON;;;;;N;FORMS UP LIGHT AND RIGHT HEAVY;;;;-2516;BOX DRAWINGS UP HEAVY AND RIGHT LIGHT;So;0;ON;;;;;N;FORMS UP HEAVY AND RIGHT LIGHT;;;;-2517;BOX DRAWINGS HEAVY UP AND RIGHT;So;0;ON;;;;;N;FORMS HEAVY UP AND RIGHT;;;;-2518;BOX DRAWINGS LIGHT UP AND LEFT;So;0;ON;;;;;N;FORMS LIGHT UP AND LEFT;;;;-2519;BOX DRAWINGS UP LIGHT AND LEFT HEAVY;So;0;ON;;;;;N;FORMS UP LIGHT AND LEFT HEAVY;;;;-251A;BOX DRAWINGS UP HEAVY AND LEFT LIGHT;So;0;ON;;;;;N;FORMS UP HEAVY AND LEFT LIGHT;;;;-251B;BOX DRAWINGS HEAVY UP AND LEFT;So;0;ON;;;;;N;FORMS HEAVY UP AND LEFT;;;;-251C;BOX DRAWINGS LIGHT VERTICAL AND RIGHT;So;0;ON;;;;;N;FORMS LIGHT VERTICAL AND RIGHT;;;;-251D;BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY;So;0;ON;;;;;N;FORMS VERTICAL LIGHT AND RIGHT HEAVY;;;;-251E;BOX DRAWINGS UP HEAVY AND RIGHT DOWN LIGHT;So;0;ON;;;;;N;FORMS UP HEAVY AND RIGHT DOWN LIGHT;;;;-251F;BOX DRAWINGS DOWN HEAVY AND RIGHT UP LIGHT;So;0;ON;;;;;N;FORMS DOWN HEAVY AND RIGHT UP LIGHT;;;;-2520;BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT;So;0;ON;;;;;N;FORMS VERTICAL HEAVY AND RIGHT LIGHT;;;;-2521;BOX DRAWINGS DOWN LIGHT AND RIGHT UP HEAVY;So;0;ON;;;;;N;FORMS DOWN LIGHT AND RIGHT UP HEAVY;;;;-2522;BOX DRAWINGS UP LIGHT AND RIGHT DOWN HEAVY;So;0;ON;;;;;N;FORMS UP LIGHT AND RIGHT DOWN HEAVY;;;;-2523;BOX DRAWINGS HEAVY VERTICAL AND RIGHT;So;0;ON;;;;;N;FORMS HEAVY VERTICAL AND RIGHT;;;;-2524;BOX DRAWINGS LIGHT VERTICAL AND LEFT;So;0;ON;;;;;N;FORMS LIGHT VERTICAL AND LEFT;;;;-2525;BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY;So;0;ON;;;;;N;FORMS VERTICAL LIGHT AND LEFT HEAVY;;;;-2526;BOX DRAWINGS UP HEAVY AND LEFT DOWN LIGHT;So;0;ON;;;;;N;FORMS UP HEAVY AND LEFT DOWN LIGHT;;;;-2527;BOX DRAWINGS DOWN HEAVY AND LEFT UP LIGHT;So;0;ON;;;;;N;FORMS DOWN HEAVY AND LEFT UP LIGHT;;;;-2528;BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT;So;0;ON;;;;;N;FORMS VERTICAL HEAVY AND LEFT LIGHT;;;;-2529;BOX DRAWINGS DOWN LIGHT AND LEFT UP HEAVY;So;0;ON;;;;;N;FORMS DOWN LIGHT AND LEFT UP HEAVY;;;;-252A;BOX DRAWINGS UP LIGHT AND LEFT DOWN HEAVY;So;0;ON;;;;;N;FORMS UP LIGHT AND LEFT DOWN HEAVY;;;;-252B;BOX DRAWINGS HEAVY VERTICAL AND LEFT;So;0;ON;;;;;N;FORMS HEAVY VERTICAL AND LEFT;;;;-252C;BOX DRAWINGS LIGHT DOWN AND HORIZONTAL;So;0;ON;;;;;N;FORMS LIGHT DOWN AND HORIZONTAL;;;;-252D;BOX DRAWINGS LEFT HEAVY AND RIGHT DOWN LIGHT;So;0;ON;;;;;N;FORMS LEFT HEAVY AND RIGHT DOWN LIGHT;;;;-252E;BOX DRAWINGS RIGHT HEAVY AND LEFT DOWN LIGHT;So;0;ON;;;;;N;FORMS RIGHT HEAVY AND LEFT DOWN LIGHT;;;;-252F;BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY;So;0;ON;;;;;N;FORMS DOWN LIGHT AND HORIZONTAL HEAVY;;;;-2530;BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT;So;0;ON;;;;;N;FORMS DOWN HEAVY AND HORIZONTAL LIGHT;;;;-2531;BOX DRAWINGS RIGHT LIGHT AND LEFT DOWN HEAVY;So;0;ON;;;;;N;FORMS RIGHT LIGHT AND LEFT DOWN HEAVY;;;;-2532;BOX DRAWINGS LEFT LIGHT AND RIGHT DOWN HEAVY;So;0;ON;;;;;N;FORMS LEFT LIGHT AND RIGHT DOWN HEAVY;;;;-2533;BOX DRAWINGS HEAVY DOWN AND HORIZONTAL;So;0;ON;;;;;N;FORMS HEAVY DOWN AND HORIZONTAL;;;;-2534;BOX DRAWINGS LIGHT UP AND HORIZONTAL;So;0;ON;;;;;N;FORMS LIGHT UP AND HORIZONTAL;;;;-2535;BOX DRAWINGS LEFT HEAVY AND RIGHT UP LIGHT;So;0;ON;;;;;N;FORMS LEFT HEAVY AND RIGHT UP LIGHT;;;;-2536;BOX DRAWINGS RIGHT HEAVY AND LEFT UP LIGHT;So;0;ON;;;;;N;FORMS RIGHT HEAVY AND LEFT UP LIGHT;;;;-2537;BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY;So;0;ON;;;;;N;FORMS UP LIGHT AND HORIZONTAL HEAVY;;;;-2538;BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT;So;0;ON;;;;;N;FORMS UP HEAVY AND HORIZONTAL LIGHT;;;;-2539;BOX DRAWINGS RIGHT LIGHT AND LEFT UP HEAVY;So;0;ON;;;;;N;FORMS RIGHT LIGHT AND LEFT UP HEAVY;;;;-253A;BOX DRAWINGS LEFT LIGHT AND RIGHT UP HEAVY;So;0;ON;;;;;N;FORMS LEFT LIGHT AND RIGHT UP HEAVY;;;;-253B;BOX DRAWINGS HEAVY UP AND HORIZONTAL;So;0;ON;;;;;N;FORMS HEAVY UP AND HORIZONTAL;;;;-253C;BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL;So;0;ON;;;;;N;FORMS LIGHT VERTICAL AND HORIZONTAL;;;;-253D;BOX DRAWINGS LEFT HEAVY AND RIGHT VERTICAL LIGHT;So;0;ON;;;;;N;FORMS LEFT HEAVY AND RIGHT VERTICAL LIGHT;;;;-253E;BOX DRAWINGS RIGHT HEAVY AND LEFT VERTICAL LIGHT;So;0;ON;;;;;N;FORMS RIGHT HEAVY AND LEFT VERTICAL LIGHT;;;;-253F;BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY;So;0;ON;;;;;N;FORMS VERTICAL LIGHT AND HORIZONTAL HEAVY;;;;-2540;BOX DRAWINGS UP HEAVY AND DOWN HORIZONTAL LIGHT;So;0;ON;;;;;N;FORMS UP HEAVY AND DOWN HORIZONTAL LIGHT;;;;-2541;BOX DRAWINGS DOWN HEAVY AND UP HORIZONTAL LIGHT;So;0;ON;;;;;N;FORMS DOWN HEAVY AND UP HORIZONTAL LIGHT;;;;-2542;BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT;So;0;ON;;;;;N;FORMS VERTICAL HEAVY AND HORIZONTAL LIGHT;;;;-2543;BOX DRAWINGS LEFT UP HEAVY AND RIGHT DOWN LIGHT;So;0;ON;;;;;N;FORMS LEFT UP HEAVY AND RIGHT DOWN LIGHT;;;;-2544;BOX DRAWINGS RIGHT UP HEAVY AND LEFT DOWN LIGHT;So;0;ON;;;;;N;FORMS RIGHT UP HEAVY AND LEFT DOWN LIGHT;;;;-2545;BOX DRAWINGS LEFT DOWN HEAVY AND RIGHT UP LIGHT;So;0;ON;;;;;N;FORMS LEFT DOWN HEAVY AND RIGHT UP LIGHT;;;;-2546;BOX DRAWINGS RIGHT DOWN HEAVY AND LEFT UP LIGHT;So;0;ON;;;;;N;FORMS RIGHT DOWN HEAVY AND LEFT UP LIGHT;;;;-2547;BOX DRAWINGS DOWN LIGHT AND UP HORIZONTAL HEAVY;So;0;ON;;;;;N;FORMS DOWN LIGHT AND UP HORIZONTAL HEAVY;;;;-2548;BOX DRAWINGS UP LIGHT AND DOWN HORIZONTAL HEAVY;So;0;ON;;;;;N;FORMS UP LIGHT AND DOWN HORIZONTAL HEAVY;;;;-2549;BOX DRAWINGS RIGHT LIGHT AND LEFT VERTICAL HEAVY;So;0;ON;;;;;N;FORMS RIGHT LIGHT AND LEFT VERTICAL HEAVY;;;;-254A;BOX DRAWINGS LEFT LIGHT AND RIGHT VERTICAL HEAVY;So;0;ON;;;;;N;FORMS LEFT LIGHT AND RIGHT VERTICAL HEAVY;;;;-254B;BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL;So;0;ON;;;;;N;FORMS HEAVY VERTICAL AND HORIZONTAL;;;;-254C;BOX DRAWINGS LIGHT DOUBLE DASH HORIZONTAL;So;0;ON;;;;;N;FORMS LIGHT DOUBLE DASH HORIZONTAL;;;;-254D;BOX DRAWINGS HEAVY DOUBLE DASH HORIZONTAL;So;0;ON;;;;;N;FORMS HEAVY DOUBLE DASH HORIZONTAL;;;;-254E;BOX DRAWINGS LIGHT DOUBLE DASH VERTICAL;So;0;ON;;;;;N;FORMS LIGHT DOUBLE DASH VERTICAL;;;;-254F;BOX DRAWINGS HEAVY DOUBLE DASH VERTICAL;So;0;ON;;;;;N;FORMS HEAVY DOUBLE DASH VERTICAL;;;;-2550;BOX DRAWINGS DOUBLE HORIZONTAL;So;0;ON;;;;;N;FORMS DOUBLE HORIZONTAL;;;;-2551;BOX DRAWINGS DOUBLE VERTICAL;So;0;ON;;;;;N;FORMS DOUBLE VERTICAL;;;;-2552;BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE;So;0;ON;;;;;N;FORMS DOWN SINGLE AND RIGHT DOUBLE;;;;-2553;BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE;So;0;ON;;;;;N;FORMS DOWN DOUBLE AND RIGHT SINGLE;;;;-2554;BOX DRAWINGS DOUBLE DOWN AND RIGHT;So;0;ON;;;;;N;FORMS DOUBLE DOWN AND RIGHT;;;;-2555;BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE;So;0;ON;;;;;N;FORMS DOWN SINGLE AND LEFT DOUBLE;;;;-2556;BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE;So;0;ON;;;;;N;FORMS DOWN DOUBLE AND LEFT SINGLE;;;;-2557;BOX DRAWINGS DOUBLE DOWN AND LEFT;So;0;ON;;;;;N;FORMS DOUBLE DOWN AND LEFT;;;;-2558;BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE;So;0;ON;;;;;N;FORMS UP SINGLE AND RIGHT DOUBLE;;;;-2559;BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE;So;0;ON;;;;;N;FORMS UP DOUBLE AND RIGHT SINGLE;;;;-255A;BOX DRAWINGS DOUBLE UP AND RIGHT;So;0;ON;;;;;N;FORMS DOUBLE UP AND RIGHT;;;;-255B;BOX DRAWINGS UP SINGLE AND LEFT DOUBLE;So;0;ON;;;;;N;FORMS UP SINGLE AND LEFT DOUBLE;;;;-255C;BOX DRAWINGS UP DOUBLE AND LEFT SINGLE;So;0;ON;;;;;N;FORMS UP DOUBLE AND LEFT SINGLE;;;;-255D;BOX DRAWINGS DOUBLE UP AND LEFT;So;0;ON;;;;;N;FORMS DOUBLE UP AND LEFT;;;;-255E;BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE;So;0;ON;;;;;N;FORMS VERTICAL SINGLE AND RIGHT DOUBLE;;;;-255F;BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE;So;0;ON;;;;;N;FORMS VERTICAL DOUBLE AND RIGHT SINGLE;;;;-2560;BOX DRAWINGS DOUBLE VERTICAL AND RIGHT;So;0;ON;;;;;N;FORMS DOUBLE VERTICAL AND RIGHT;;;;-2561;BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE;So;0;ON;;;;;N;FORMS VERTICAL SINGLE AND LEFT DOUBLE;;;;-2562;BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE;So;0;ON;;;;;N;FORMS VERTICAL DOUBLE AND LEFT SINGLE;;;;-2563;BOX DRAWINGS DOUBLE VERTICAL AND LEFT;So;0;ON;;;;;N;FORMS DOUBLE VERTICAL AND LEFT;;;;-2564;BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE;So;0;ON;;;;;N;FORMS DOWN SINGLE AND HORIZONTAL DOUBLE;;;;-2565;BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE;So;0;ON;;;;;N;FORMS DOWN DOUBLE AND HORIZONTAL SINGLE;;;;-2566;BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL;So;0;ON;;;;;N;FORMS DOUBLE DOWN AND HORIZONTAL;;;;-2567;BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE;So;0;ON;;;;;N;FORMS UP SINGLE AND HORIZONTAL DOUBLE;;;;-2568;BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE;So;0;ON;;;;;N;FORMS UP DOUBLE AND HORIZONTAL SINGLE;;;;-2569;BOX DRAWINGS DOUBLE UP AND HORIZONTAL;So;0;ON;;;;;N;FORMS DOUBLE UP AND HORIZONTAL;;;;-256A;BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE;So;0;ON;;;;;N;FORMS VERTICAL SINGLE AND HORIZONTAL DOUBLE;;;;-256B;BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE;So;0;ON;;;;;N;FORMS VERTICAL DOUBLE AND HORIZONTAL SINGLE;;;;-256C;BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL;So;0;ON;;;;;N;FORMS DOUBLE VERTICAL AND HORIZONTAL;;;;-256D;BOX DRAWINGS LIGHT ARC DOWN AND RIGHT;So;0;ON;;;;;N;FORMS LIGHT ARC DOWN AND RIGHT;;;;-256E;BOX DRAWINGS LIGHT ARC DOWN AND LEFT;So;0;ON;;;;;N;FORMS LIGHT ARC DOWN AND LEFT;;;;-256F;BOX DRAWINGS LIGHT ARC UP AND LEFT;So;0;ON;;;;;N;FORMS LIGHT ARC UP AND LEFT;;;;-2570;BOX DRAWINGS LIGHT ARC UP AND RIGHT;So;0;ON;;;;;N;FORMS LIGHT ARC UP AND RIGHT;;;;-2571;BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT;So;0;ON;;;;;N;FORMS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT;;;;-2572;BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT;So;0;ON;;;;;N;FORMS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT;;;;-2573;BOX DRAWINGS LIGHT DIAGONAL CROSS;So;0;ON;;;;;N;FORMS LIGHT DIAGONAL CROSS;;;;-2574;BOX DRAWINGS LIGHT LEFT;So;0;ON;;;;;N;FORMS LIGHT LEFT;;;;-2575;BOX DRAWINGS LIGHT UP;So;0;ON;;;;;N;FORMS LIGHT UP;;;;-2576;BOX DRAWINGS LIGHT RIGHT;So;0;ON;;;;;N;FORMS LIGHT RIGHT;;;;-2577;BOX DRAWINGS LIGHT DOWN;So;0;ON;;;;;N;FORMS LIGHT DOWN;;;;-2578;BOX DRAWINGS HEAVY LEFT;So;0;ON;;;;;N;FORMS HEAVY LEFT;;;;-2579;BOX DRAWINGS HEAVY UP;So;0;ON;;;;;N;FORMS HEAVY UP;;;;-257A;BOX DRAWINGS HEAVY RIGHT;So;0;ON;;;;;N;FORMS HEAVY RIGHT;;;;-257B;BOX DRAWINGS HEAVY DOWN;So;0;ON;;;;;N;FORMS HEAVY DOWN;;;;-257C;BOX DRAWINGS LIGHT LEFT AND HEAVY RIGHT;So;0;ON;;;;;N;FORMS LIGHT LEFT AND HEAVY RIGHT;;;;-257D;BOX DRAWINGS LIGHT UP AND HEAVY DOWN;So;0;ON;;;;;N;FORMS LIGHT UP AND HEAVY DOWN;;;;-257E;BOX DRAWINGS HEAVY LEFT AND LIGHT RIGHT;So;0;ON;;;;;N;FORMS HEAVY LEFT AND LIGHT RIGHT;;;;-257F;BOX DRAWINGS HEAVY UP AND LIGHT DOWN;So;0;ON;;;;;N;FORMS HEAVY UP AND LIGHT DOWN;;;;-2580;UPPER HALF BLOCK;So;0;ON;;;;;N;;;;;-2581;LOWER ONE EIGHTH BLOCK;So;0;ON;;;;;N;;;;;-2582;LOWER ONE QUARTER BLOCK;So;0;ON;;;;;N;;;;;-2583;LOWER THREE EIGHTHS BLOCK;So;0;ON;;;;;N;;;;;-2584;LOWER HALF BLOCK;So;0;ON;;;;;N;;;;;-2585;LOWER FIVE EIGHTHS BLOCK;So;0;ON;;;;;N;;;;;-2586;LOWER THREE QUARTERS BLOCK;So;0;ON;;;;;N;LOWER THREE QUARTER BLOCK;;;;-2587;LOWER SEVEN EIGHTHS BLOCK;So;0;ON;;;;;N;;;;;-2588;FULL BLOCK;So;0;ON;;;;;N;;;;;-2589;LEFT SEVEN EIGHTHS BLOCK;So;0;ON;;;;;N;;;;;-258A;LEFT THREE QUARTERS BLOCK;So;0;ON;;;;;N;LEFT THREE QUARTER BLOCK;;;;-258B;LEFT FIVE EIGHTHS BLOCK;So;0;ON;;;;;N;;;;;-258C;LEFT HALF BLOCK;So;0;ON;;;;;N;;;;;-258D;LEFT THREE EIGHTHS BLOCK;So;0;ON;;;;;N;;;;;-258E;LEFT ONE QUARTER BLOCK;So;0;ON;;;;;N;;;;;-258F;LEFT ONE EIGHTH BLOCK;So;0;ON;;;;;N;;;;;-2590;RIGHT HALF BLOCK;So;0;ON;;;;;N;;;;;-2591;LIGHT SHADE;So;0;ON;;;;;N;;;;;-2592;MEDIUM SHADE;So;0;ON;;;;;N;;;;;-2593;DARK SHADE;So;0;ON;;;;;N;;;;;-2594;UPPER ONE EIGHTH BLOCK;So;0;ON;;;;;N;;;;;-2595;RIGHT ONE EIGHTH BLOCK;So;0;ON;;;;;N;;;;;-2596;QUADRANT LOWER LEFT;So;0;ON;;;;;N;;;;;-2597;QUADRANT LOWER RIGHT;So;0;ON;;;;;N;;;;;-2598;QUADRANT UPPER LEFT;So;0;ON;;;;;N;;;;;-2599;QUADRANT UPPER LEFT AND LOWER LEFT AND LOWER RIGHT;So;0;ON;;;;;N;;;;;-259A;QUADRANT UPPER LEFT AND LOWER RIGHT;So;0;ON;;;;;N;;;;;-259B;QUADRANT UPPER LEFT AND UPPER RIGHT AND LOWER LEFT;So;0;ON;;;;;N;;;;;-259C;QUADRANT UPPER LEFT AND UPPER RIGHT AND LOWER RIGHT;So;0;ON;;;;;N;;;;;-259D;QUADRANT UPPER RIGHT;So;0;ON;;;;;N;;;;;-259E;QUADRANT UPPER RIGHT AND LOWER LEFT;So;0;ON;;;;;N;;;;;-259F;QUADRANT UPPER RIGHT AND LOWER LEFT AND LOWER RIGHT;So;0;ON;;;;;N;;;;;-25A0;BLACK SQUARE;So;0;ON;;;;;N;;;;;-25A1;WHITE SQUARE;So;0;ON;;;;;N;;;;;-25A2;WHITE SQUARE WITH ROUNDED CORNERS;So;0;ON;;;;;N;;;;;-25A3;WHITE SQUARE CONTAINING BLACK SMALL SQUARE;So;0;ON;;;;;N;;;;;-25A4;SQUARE WITH HORIZONTAL FILL;So;0;ON;;;;;N;;;;;-25A5;SQUARE WITH VERTICAL FILL;So;0;ON;;;;;N;;;;;-25A6;SQUARE WITH ORTHOGONAL CROSSHATCH FILL;So;0;ON;;;;;N;;;;;-25A7;SQUARE WITH UPPER LEFT TO LOWER RIGHT FILL;So;0;ON;;;;;N;;;;;-25A8;SQUARE WITH UPPER RIGHT TO LOWER LEFT FILL;So;0;ON;;;;;N;;;;;-25A9;SQUARE WITH DIAGONAL CROSSHATCH FILL;So;0;ON;;;;;N;;;;;-25AA;BLACK SMALL SQUARE;So;0;ON;;;;;N;;;;;-25AB;WHITE SMALL SQUARE;So;0;ON;;;;;N;;;;;-25AC;BLACK RECTANGLE;So;0;ON;;;;;N;;;;;-25AD;WHITE RECTANGLE;So;0;ON;;;;;N;;;;;-25AE;BLACK VERTICAL RECTANGLE;So;0;ON;;;;;N;;;;;-25AF;WHITE VERTICAL RECTANGLE;So;0;ON;;;;;N;;;;;-25B0;BLACK PARALLELOGRAM;So;0;ON;;;;;N;;;;;-25B1;WHITE PARALLELOGRAM;So;0;ON;;;;;N;;;;;-25B2;BLACK UP-POINTING TRIANGLE;So;0;ON;;;;;N;BLACK UP POINTING TRIANGLE;;;;-25B3;WHITE UP-POINTING TRIANGLE;So;0;ON;;;;;N;WHITE UP POINTING TRIANGLE;;;;-25B4;BLACK UP-POINTING SMALL TRIANGLE;So;0;ON;;;;;N;BLACK UP POINTING SMALL TRIANGLE;;;;-25B5;WHITE UP-POINTING SMALL TRIANGLE;So;0;ON;;;;;N;WHITE UP POINTING SMALL TRIANGLE;;;;-25B6;BLACK RIGHT-POINTING TRIANGLE;So;0;ON;;;;;N;BLACK RIGHT POINTING TRIANGLE;;;;-25B7;WHITE RIGHT-POINTING TRIANGLE;Sm;0;ON;;;;;N;WHITE RIGHT POINTING TRIANGLE;;;;-25B8;BLACK RIGHT-POINTING SMALL TRIANGLE;So;0;ON;;;;;N;BLACK RIGHT POINTING SMALL TRIANGLE;;;;-25B9;WHITE RIGHT-POINTING SMALL TRIANGLE;So;0;ON;;;;;N;WHITE RIGHT POINTING SMALL TRIANGLE;;;;-25BA;BLACK RIGHT-POINTING POINTER;So;0;ON;;;;;N;BLACK RIGHT POINTING POINTER;;;;-25BB;WHITE RIGHT-POINTING POINTER;So;0;ON;;;;;N;WHITE RIGHT POINTING POINTER;;;;-25BC;BLACK DOWN-POINTING TRIANGLE;So;0;ON;;;;;N;BLACK DOWN POINTING TRIANGLE;;;;-25BD;WHITE DOWN-POINTING TRIANGLE;So;0;ON;;;;;N;WHITE DOWN POINTING TRIANGLE;;;;-25BE;BLACK DOWN-POINTING SMALL TRIANGLE;So;0;ON;;;;;N;BLACK DOWN POINTING SMALL TRIANGLE;;;;-25BF;WHITE DOWN-POINTING SMALL TRIANGLE;So;0;ON;;;;;N;WHITE DOWN POINTING SMALL TRIANGLE;;;;-25C0;BLACK LEFT-POINTING TRIANGLE;So;0;ON;;;;;N;BLACK LEFT POINTING TRIANGLE;;;;-25C1;WHITE LEFT-POINTING TRIANGLE;Sm;0;ON;;;;;N;WHITE LEFT POINTING TRIANGLE;;;;-25C2;BLACK LEFT-POINTING SMALL TRIANGLE;So;0;ON;;;;;N;BLACK LEFT POINTING SMALL TRIANGLE;;;;-25C3;WHITE LEFT-POINTING SMALL TRIANGLE;So;0;ON;;;;;N;WHITE LEFT POINTING SMALL TRIANGLE;;;;-25C4;BLACK LEFT-POINTING POINTER;So;0;ON;;;;;N;BLACK LEFT POINTING POINTER;;;;-25C5;WHITE LEFT-POINTING POINTER;So;0;ON;;;;;N;WHITE LEFT POINTING POINTER;;;;-25C6;BLACK DIAMOND;So;0;ON;;;;;N;;;;;-25C7;WHITE DIAMOND;So;0;ON;;;;;N;;;;;-25C8;WHITE DIAMOND CONTAINING BLACK SMALL DIAMOND;So;0;ON;;;;;N;;;;;-25C9;FISHEYE;So;0;ON;;;;;N;;;;;-25CA;LOZENGE;So;0;ON;;;;;N;;;;;-25CB;WHITE CIRCLE;So;0;ON;;;;;N;;;;;-25CC;DOTTED CIRCLE;So;0;ON;;;;;N;;;;;-25CD;CIRCLE WITH VERTICAL FILL;So;0;ON;;;;;N;;;;;-25CE;BULLSEYE;So;0;ON;;;;;N;;;;;-25CF;BLACK CIRCLE;So;0;ON;;;;;N;;;;;-25D0;CIRCLE WITH LEFT HALF BLACK;So;0;ON;;;;;N;;;;;-25D1;CIRCLE WITH RIGHT HALF BLACK;So;0;ON;;;;;N;;;;;-25D2;CIRCLE WITH LOWER HALF BLACK;So;0;ON;;;;;N;;;;;-25D3;CIRCLE WITH UPPER HALF BLACK;So;0;ON;;;;;N;;;;;-25D4;CIRCLE WITH UPPER RIGHT QUADRANT BLACK;So;0;ON;;;;;N;;;;;-25D5;CIRCLE WITH ALL BUT UPPER LEFT QUADRANT BLACK;So;0;ON;;;;;N;;;;;-25D6;LEFT HALF BLACK CIRCLE;So;0;ON;;;;;N;;;;;-25D7;RIGHT HALF BLACK CIRCLE;So;0;ON;;;;;N;;;;;-25D8;INVERSE BULLET;So;0;ON;;;;;N;;;;;-25D9;INVERSE WHITE CIRCLE;So;0;ON;;;;;N;;;;;-25DA;UPPER HALF INVERSE WHITE CIRCLE;So;0;ON;;;;;N;;;;;-25DB;LOWER HALF INVERSE WHITE CIRCLE;So;0;ON;;;;;N;;;;;-25DC;UPPER LEFT QUADRANT CIRCULAR ARC;So;0;ON;;;;;N;;;;;-25DD;UPPER RIGHT QUADRANT CIRCULAR ARC;So;0;ON;;;;;N;;;;;-25DE;LOWER RIGHT QUADRANT CIRCULAR ARC;So;0;ON;;;;;N;;;;;-25DF;LOWER LEFT QUADRANT CIRCULAR ARC;So;0;ON;;;;;N;;;;;-25E0;UPPER HALF CIRCLE;So;0;ON;;;;;N;;;;;-25E1;LOWER HALF CIRCLE;So;0;ON;;;;;N;;;;;-25E2;BLACK LOWER RIGHT TRIANGLE;So;0;ON;;;;;N;;;;;-25E3;BLACK LOWER LEFT TRIANGLE;So;0;ON;;;;;N;;;;;-25E4;BLACK UPPER LEFT TRIANGLE;So;0;ON;;;;;N;;;;;-25E5;BLACK UPPER RIGHT TRIANGLE;So;0;ON;;;;;N;;;;;-25E6;WHITE BULLET;So;0;ON;;;;;N;;;;;-25E7;SQUARE WITH LEFT HALF BLACK;So;0;ON;;;;;N;;;;;-25E8;SQUARE WITH RIGHT HALF BLACK;So;0;ON;;;;;N;;;;;-25E9;SQUARE WITH UPPER LEFT DIAGONAL HALF BLACK;So;0;ON;;;;;N;;;;;-25EA;SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK;So;0;ON;;;;;N;;;;;-25EB;WHITE SQUARE WITH VERTICAL BISECTING LINE;So;0;ON;;;;;N;;;;;-25EC;WHITE UP-POINTING TRIANGLE WITH DOT;So;0;ON;;;;;N;WHITE UP POINTING TRIANGLE WITH DOT;;;;-25ED;UP-POINTING TRIANGLE WITH LEFT HALF BLACK;So;0;ON;;;;;N;UP POINTING TRIANGLE WITH LEFT HALF BLACK;;;;-25EE;UP-POINTING TRIANGLE WITH RIGHT HALF BLACK;So;0;ON;;;;;N;UP POINTING TRIANGLE WITH RIGHT HALF BLACK;;;;-25EF;LARGE CIRCLE;So;0;ON;;;;;N;;;;;-25F0;WHITE SQUARE WITH UPPER LEFT QUADRANT;So;0;ON;;;;;N;;;;;-25F1;WHITE SQUARE WITH LOWER LEFT QUADRANT;So;0;ON;;;;;N;;;;;-25F2;WHITE SQUARE WITH LOWER RIGHT QUADRANT;So;0;ON;;;;;N;;;;;-25F3;WHITE SQUARE WITH UPPER RIGHT QUADRANT;So;0;ON;;;;;N;;;;;-25F4;WHITE CIRCLE WITH UPPER LEFT QUADRANT;So;0;ON;;;;;N;;;;;-25F5;WHITE CIRCLE WITH LOWER LEFT QUADRANT;So;0;ON;;;;;N;;;;;-25F6;WHITE CIRCLE WITH LOWER RIGHT QUADRANT;So;0;ON;;;;;N;;;;;-25F7;WHITE CIRCLE WITH UPPER RIGHT QUADRANT;So;0;ON;;;;;N;;;;;-25F8;UPPER LEFT TRIANGLE;Sm;0;ON;;;;;N;;;;;-25F9;UPPER RIGHT TRIANGLE;Sm;0;ON;;;;;N;;;;;-25FA;LOWER LEFT TRIANGLE;Sm;0;ON;;;;;N;;;;;-25FB;WHITE MEDIUM SQUARE;Sm;0;ON;;;;;N;;;;;-25FC;BLACK MEDIUM SQUARE;Sm;0;ON;;;;;N;;;;;-25FD;WHITE MEDIUM SMALL SQUARE;Sm;0;ON;;;;;N;;;;;-25FE;BLACK MEDIUM SMALL SQUARE;Sm;0;ON;;;;;N;;;;;-25FF;LOWER RIGHT TRIANGLE;Sm;0;ON;;;;;N;;;;;-2600;BLACK SUN WITH RAYS;So;0;ON;;;;;N;;;;;-2601;CLOUD;So;0;ON;;;;;N;;;;;-2602;UMBRELLA;So;0;ON;;;;;N;;;;;-2603;SNOWMAN;So;0;ON;;;;;N;;;;;-2604;COMET;So;0;ON;;;;;N;;;;;-2605;BLACK STAR;So;0;ON;;;;;N;;;;;-2606;WHITE STAR;So;0;ON;;;;;N;;;;;-2607;LIGHTNING;So;0;ON;;;;;N;;;;;-2608;THUNDERSTORM;So;0;ON;;;;;N;;;;;-2609;SUN;So;0;ON;;;;;N;;;;;-260A;ASCENDING NODE;So;0;ON;;;;;N;;;;;-260B;DESCENDING NODE;So;0;ON;;;;;N;;;;;-260C;CONJUNCTION;So;0;ON;;;;;N;;;;;-260D;OPPOSITION;So;0;ON;;;;;N;;;;;-260E;BLACK TELEPHONE;So;0;ON;;;;;N;;;;;-260F;WHITE TELEPHONE;So;0;ON;;;;;N;;;;;-2610;BALLOT BOX;So;0;ON;;;;;N;;;;;-2611;BALLOT BOX WITH CHECK;So;0;ON;;;;;N;;;;;-2612;BALLOT BOX WITH X;So;0;ON;;;;;N;;;;;-2613;SALTIRE;So;0;ON;;;;;N;;;;;-2614;UMBRELLA WITH RAIN DROPS;So;0;ON;;;;;N;;;;;-2615;HOT BEVERAGE;So;0;ON;;;;;N;;;;;-2616;WHITE SHOGI PIECE;So;0;ON;;;;;N;;;;;-2617;BLACK SHOGI PIECE;So;0;ON;;;;;N;;;;;-2618;SHAMROCK;So;0;ON;;;;;N;;;;;-2619;REVERSED ROTATED FLORAL HEART BULLET;So;0;ON;;;;;N;;;;;-261A;BLACK LEFT POINTING INDEX;So;0;ON;;;;;N;;;;;-261B;BLACK RIGHT POINTING INDEX;So;0;ON;;;;;N;;;;;-261C;WHITE LEFT POINTING INDEX;So;0;ON;;;;;N;;;;;-261D;WHITE UP POINTING INDEX;So;0;ON;;;;;N;;;;;-261E;WHITE RIGHT POINTING INDEX;So;0;ON;;;;;N;;;;;-261F;WHITE DOWN POINTING INDEX;So;0;ON;;;;;N;;;;;-2620;SKULL AND CROSSBONES;So;0;ON;;;;;N;;;;;-2621;CAUTION SIGN;So;0;ON;;;;;N;;;;;-2622;RADIOACTIVE SIGN;So;0;ON;;;;;N;;;;;-2623;BIOHAZARD SIGN;So;0;ON;;;;;N;;;;;-2624;CADUCEUS;So;0;ON;;;;;N;;;;;-2625;ANKH;So;0;ON;;;;;N;;;;;-2626;ORTHODOX CROSS;So;0;ON;;;;;N;;;;;-2627;CHI RHO;So;0;ON;;;;;N;;;;;-2628;CROSS OF LORRAINE;So;0;ON;;;;;N;;;;;-2629;CROSS OF JERUSALEM;So;0;ON;;;;;N;;;;;-262A;STAR AND CRESCENT;So;0;ON;;;;;N;;;;;-262B;FARSI SYMBOL;So;0;ON;;;;;N;SYMBOL OF IRAN;;;;-262C;ADI SHAKTI;So;0;ON;;;;;N;;;;;-262D;HAMMER AND SICKLE;So;0;ON;;;;;N;;;;;-262E;PEACE SYMBOL;So;0;ON;;;;;N;;;;;-262F;YIN YANG;So;0;ON;;;;;N;;;;;-2630;TRIGRAM FOR HEAVEN;So;0;ON;;;;;N;;;;;-2631;TRIGRAM FOR LAKE;So;0;ON;;;;;N;;;;;-2632;TRIGRAM FOR FIRE;So;0;ON;;;;;N;;;;;-2633;TRIGRAM FOR THUNDER;So;0;ON;;;;;N;;;;;-2634;TRIGRAM FOR WIND;So;0;ON;;;;;N;;;;;-2635;TRIGRAM FOR WATER;So;0;ON;;;;;N;;;;;-2636;TRIGRAM FOR MOUNTAIN;So;0;ON;;;;;N;;;;;-2637;TRIGRAM FOR EARTH;So;0;ON;;;;;N;;;;;-2638;WHEEL OF DHARMA;So;0;ON;;;;;N;;;;;-2639;WHITE FROWNING FACE;So;0;ON;;;;;N;;;;;-263A;WHITE SMILING FACE;So;0;ON;;;;;N;;;;;-263B;BLACK SMILING FACE;So;0;ON;;;;;N;;;;;-263C;WHITE SUN WITH RAYS;So;0;ON;;;;;N;;;;;-263D;FIRST QUARTER MOON;So;0;ON;;;;;N;;;;;-263E;LAST QUARTER MOON;So;0;ON;;;;;N;;;;;-263F;MERCURY;So;0;ON;;;;;N;;;;;-2640;FEMALE SIGN;So;0;ON;;;;;N;;;;;-2641;EARTH;So;0;ON;;;;;N;;;;;-2642;MALE SIGN;So;0;ON;;;;;N;;;;;-2643;JUPITER;So;0;ON;;;;;N;;;;;-2644;SATURN;So;0;ON;;;;;N;;;;;-2645;URANUS;So;0;ON;;;;;N;;;;;-2646;NEPTUNE;So;0;ON;;;;;N;;;;;-2647;PLUTO;So;0;ON;;;;;N;;;;;-2648;ARIES;So;0;ON;;;;;N;;;;;-2649;TAURUS;So;0;ON;;;;;N;;;;;-264A;GEMINI;So;0;ON;;;;;N;;;;;-264B;CANCER;So;0;ON;;;;;N;;;;;-264C;LEO;So;0;ON;;;;;N;;;;;-264D;VIRGO;So;0;ON;;;;;N;;;;;-264E;LIBRA;So;0;ON;;;;;N;;;;;-264F;SCORPIUS;So;0;ON;;;;;N;;;;;-2650;SAGITTARIUS;So;0;ON;;;;;N;;;;;-2651;CAPRICORN;So;0;ON;;;;;N;;;;;-2652;AQUARIUS;So;0;ON;;;;;N;;;;;-2653;PISCES;So;0;ON;;;;;N;;;;;-2654;WHITE CHESS KING;So;0;ON;;;;;N;;;;;-2655;WHITE CHESS QUEEN;So;0;ON;;;;;N;;;;;-2656;WHITE CHESS ROOK;So;0;ON;;;;;N;;;;;-2657;WHITE CHESS BISHOP;So;0;ON;;;;;N;;;;;-2658;WHITE CHESS KNIGHT;So;0;ON;;;;;N;;;;;-2659;WHITE CHESS PAWN;So;0;ON;;;;;N;;;;;-265A;BLACK CHESS KING;So;0;ON;;;;;N;;;;;-265B;BLACK CHESS QUEEN;So;0;ON;;;;;N;;;;;-265C;BLACK CHESS ROOK;So;0;ON;;;;;N;;;;;-265D;BLACK CHESS BISHOP;So;0;ON;;;;;N;;;;;-265E;BLACK CHESS KNIGHT;So;0;ON;;;;;N;;;;;-265F;BLACK CHESS PAWN;So;0;ON;;;;;N;;;;;-2660;BLACK SPADE SUIT;So;0;ON;;;;;N;;;;;-2661;WHITE HEART SUIT;So;0;ON;;;;;N;;;;;-2662;WHITE DIAMOND SUIT;So;0;ON;;;;;N;;;;;-2663;BLACK CLUB SUIT;So;0;ON;;;;;N;;;;;-2664;WHITE SPADE SUIT;So;0;ON;;;;;N;;;;;-2665;BLACK HEART SUIT;So;0;ON;;;;;N;;;;;-2666;BLACK DIAMOND SUIT;So;0;ON;;;;;N;;;;;-2667;WHITE CLUB SUIT;So;0;ON;;;;;N;;;;;-2668;HOT SPRINGS;So;0;ON;;;;;N;;;;;-2669;QUARTER NOTE;So;0;ON;;;;;N;;;;;-266A;EIGHTH NOTE;So;0;ON;;;;;N;;;;;-266B;BEAMED EIGHTH NOTES;So;0;ON;;;;;N;BARRED EIGHTH NOTES;;;;-266C;BEAMED SIXTEENTH NOTES;So;0;ON;;;;;N;BARRED SIXTEENTH NOTES;;;;-266D;MUSIC FLAT SIGN;So;0;ON;;;;;N;FLAT;;;;-266E;MUSIC NATURAL SIGN;So;0;ON;;;;;N;NATURAL;;;;-266F;MUSIC SHARP SIGN;Sm;0;ON;;;;;N;SHARP;;;;-2670;WEST SYRIAC CROSS;So;0;ON;;;;;N;;;;;-2671;EAST SYRIAC CROSS;So;0;ON;;;;;N;;;;;-2672;UNIVERSAL RECYCLING SYMBOL;So;0;ON;;;;;N;;;;;-2673;RECYCLING SYMBOL FOR TYPE-1 PLASTICS;So;0;ON;;;;;N;;;;;-2674;RECYCLING SYMBOL FOR TYPE-2 PLASTICS;So;0;ON;;;;;N;;;;;-2675;RECYCLING SYMBOL FOR TYPE-3 PLASTICS;So;0;ON;;;;;N;;;;;-2676;RECYCLING SYMBOL FOR TYPE-4 PLASTICS;So;0;ON;;;;;N;;;;;-2677;RECYCLING SYMBOL FOR TYPE-5 PLASTICS;So;0;ON;;;;;N;;;;;-2678;RECYCLING SYMBOL FOR TYPE-6 PLASTICS;So;0;ON;;;;;N;;;;;-2679;RECYCLING SYMBOL FOR TYPE-7 PLASTICS;So;0;ON;;;;;N;;;;;-267A;RECYCLING SYMBOL FOR GENERIC MATERIALS;So;0;ON;;;;;N;;;;;-267B;BLACK UNIVERSAL RECYCLING SYMBOL;So;0;ON;;;;;N;;;;;-267C;RECYCLED PAPER SYMBOL;So;0;ON;;;;;N;;;;;-267D;PARTIALLY-RECYCLED PAPER SYMBOL;So;0;ON;;;;;N;;;;;-267E;PERMANENT PAPER SIGN;So;0;ON;;;;;N;;;;;-267F;WHEELCHAIR SYMBOL;So;0;ON;;;;;N;;;;;-2680;DIE FACE-1;So;0;ON;;;;;N;;;;;-2681;DIE FACE-2;So;0;ON;;;;;N;;;;;-2682;DIE FACE-3;So;0;ON;;;;;N;;;;;-2683;DIE FACE-4;So;0;ON;;;;;N;;;;;-2684;DIE FACE-5;So;0;ON;;;;;N;;;;;-2685;DIE FACE-6;So;0;ON;;;;;N;;;;;-2686;WHITE CIRCLE WITH DOT RIGHT;So;0;ON;;;;;N;;;;;-2687;WHITE CIRCLE WITH TWO DOTS;So;0;ON;;;;;N;;;;;-2688;BLACK CIRCLE WITH WHITE DOT RIGHT;So;0;ON;;;;;N;;;;;-2689;BLACK CIRCLE WITH TWO WHITE DOTS;So;0;ON;;;;;N;;;;;-268A;MONOGRAM FOR YANG;So;0;ON;;;;;N;;;;;-268B;MONOGRAM FOR YIN;So;0;ON;;;;;N;;;;;-268C;DIGRAM FOR GREATER YANG;So;0;ON;;;;;N;;;;;-268D;DIGRAM FOR LESSER YIN;So;0;ON;;;;;N;;;;;-268E;DIGRAM FOR LESSER YANG;So;0;ON;;;;;N;;;;;-268F;DIGRAM FOR GREATER YIN;So;0;ON;;;;;N;;;;;-2690;WHITE FLAG;So;0;ON;;;;;N;;;;;-2691;BLACK FLAG;So;0;ON;;;;;N;;;;;-2692;HAMMER AND PICK;So;0;ON;;;;;N;;;;;-2693;ANCHOR;So;0;ON;;;;;N;;;;;-2694;CROSSED SWORDS;So;0;ON;;;;;N;;;;;-2695;STAFF OF AESCULAPIUS;So;0;ON;;;;;N;;;;;-2696;SCALES;So;0;ON;;;;;N;;;;;-2697;ALEMBIC;So;0;ON;;;;;N;;;;;-2698;FLOWER;So;0;ON;;;;;N;;;;;-2699;GEAR;So;0;ON;;;;;N;;;;;-269A;STAFF OF HERMES;So;0;ON;;;;;N;;;;;-269B;ATOM SYMBOL;So;0;ON;;;;;N;;;;;-269C;FLEUR-DE-LIS;So;0;ON;;;;;N;;;;;-269D;OUTLINED WHITE STAR;So;0;ON;;;;;N;;;;;-269E;THREE LINES CONVERGING RIGHT;So;0;ON;;;;;N;;;;;-269F;THREE LINES CONVERGING LEFT;So;0;ON;;;;;N;;;;;-26A0;WARNING SIGN;So;0;ON;;;;;N;;;;;-26A1;HIGH VOLTAGE SIGN;So;0;ON;;;;;N;;;;;-26A2;DOUBLED FEMALE SIGN;So;0;ON;;;;;N;;;;;-26A3;DOUBLED MALE SIGN;So;0;ON;;;;;N;;;;;-26A4;INTERLOCKED FEMALE AND MALE SIGN;So;0;ON;;;;;N;;;;;-26A5;MALE AND FEMALE SIGN;So;0;ON;;;;;N;;;;;-26A6;MALE WITH STROKE SIGN;So;0;ON;;;;;N;;;;;-26A7;MALE WITH STROKE AND MALE AND FEMALE SIGN;So;0;ON;;;;;N;;;;;-26A8;VERTICAL MALE WITH STROKE SIGN;So;0;ON;;;;;N;;;;;-26A9;HORIZONTAL MALE WITH STROKE SIGN;So;0;ON;;;;;N;;;;;-26AA;MEDIUM WHITE CIRCLE;So;0;ON;;;;;N;;;;;-26AB;MEDIUM BLACK CIRCLE;So;0;ON;;;;;N;;;;;-26AC;MEDIUM SMALL WHITE CIRCLE;So;0;L;;;;;N;;;;;-26AD;MARRIAGE SYMBOL;So;0;ON;;;;;N;;;;;-26AE;DIVORCE SYMBOL;So;0;ON;;;;;N;;;;;-26AF;UNMARRIED PARTNERSHIP SYMBOL;So;0;ON;;;;;N;;;;;-26B0;COFFIN;So;0;ON;;;;;N;;;;;-26B1;FUNERAL URN;So;0;ON;;;;;N;;;;;-26B2;NEUTER;So;0;ON;;;;;N;;;;;-26B3;CERES;So;0;ON;;;;;N;;;;;-26B4;PALLAS;So;0;ON;;;;;N;;;;;-26B5;JUNO;So;0;ON;;;;;N;;;;;-26B6;VESTA;So;0;ON;;;;;N;;;;;-26B7;CHIRON;So;0;ON;;;;;N;;;;;-26B8;BLACK MOON LILITH;So;0;ON;;;;;N;;;;;-26B9;SEXTILE;So;0;ON;;;;;N;;;;;-26BA;SEMISEXTILE;So;0;ON;;;;;N;;;;;-26BB;QUINCUNX;So;0;ON;;;;;N;;;;;-26BC;SESQUIQUADRATE;So;0;ON;;;;;N;;;;;-26BD;SOCCER BALL;So;0;ON;;;;;N;;;;;-26BE;BASEBALL;So;0;ON;;;;;N;;;;;-26BF;SQUARED KEY;So;0;ON;;;;;N;;;;;-26C0;WHITE DRAUGHTS MAN;So;0;ON;;;;;N;;;;;-26C1;WHITE DRAUGHTS KING;So;0;ON;;;;;N;;;;;-26C2;BLACK DRAUGHTS MAN;So;0;ON;;;;;N;;;;;-26C3;BLACK DRAUGHTS KING;So;0;ON;;;;;N;;;;;-26C4;SNOWMAN WITHOUT SNOW;So;0;ON;;;;;N;;;;;-26C5;SUN BEHIND CLOUD;So;0;ON;;;;;N;;;;;-26C6;RAIN;So;0;ON;;;;;N;;;;;-26C7;BLACK SNOWMAN;So;0;ON;;;;;N;;;;;-26C8;THUNDER CLOUD AND RAIN;So;0;ON;;;;;N;;;;;-26C9;TURNED WHITE SHOGI PIECE;So;0;ON;;;;;N;;;;;-26CA;TURNED BLACK SHOGI PIECE;So;0;ON;;;;;N;;;;;-26CB;WHITE DIAMOND IN SQUARE;So;0;ON;;;;;N;;;;;-26CC;CROSSING LANES;So;0;ON;;;;;N;;;;;-26CD;DISABLED CAR;So;0;ON;;;;;N;;;;;-26CE;OPHIUCHUS;So;0;ON;;;;;N;;;;;-26CF;PICK;So;0;ON;;;;;N;;;;;-26D0;CAR SLIDING;So;0;ON;;;;;N;;;;;-26D1;HELMET WITH WHITE CROSS;So;0;ON;;;;;N;;;;;-26D2;CIRCLED CROSSING LANES;So;0;ON;;;;;N;;;;;-26D3;CHAINS;So;0;ON;;;;;N;;;;;-26D4;NO ENTRY;So;0;ON;;;;;N;;;;;-26D5;ALTERNATE ONE-WAY LEFT WAY TRAFFIC;So;0;ON;;;;;N;;;;;-26D6;BLACK TWO-WAY LEFT WAY TRAFFIC;So;0;ON;;;;;N;;;;;-26D7;WHITE TWO-WAY LEFT WAY TRAFFIC;So;0;ON;;;;;N;;;;;-26D8;BLACK LEFT LANE MERGE;So;0;ON;;;;;N;;;;;-26D9;WHITE LEFT LANE MERGE;So;0;ON;;;;;N;;;;;-26DA;DRIVE SLOW SIGN;So;0;ON;;;;;N;;;;;-26DB;HEAVY WHITE DOWN-POINTING TRIANGLE;So;0;ON;;;;;N;;;;;-26DC;LEFT CLOSED ENTRY;So;0;ON;;;;;N;;;;;-26DD;SQUARED SALTIRE;So;0;ON;;;;;N;;;;;-26DE;FALLING DIAGONAL IN WHITE CIRCLE IN BLACK SQUARE;So;0;ON;;;;;N;;;;;-26DF;BLACK TRUCK;So;0;ON;;;;;N;;;;;-26E0;RESTRICTED LEFT ENTRY-1;So;0;ON;;;;;N;;;;;-26E1;RESTRICTED LEFT ENTRY-2;So;0;ON;;;;;N;;;;;-26E2;ASTRONOMICAL SYMBOL FOR URANUS;So;0;ON;;;;;N;;;;;-26E3;HEAVY CIRCLE WITH STROKE AND TWO DOTS ABOVE;So;0;ON;;;;;N;;;;;-26E4;PENTAGRAM;So;0;ON;;;;;N;;;;;-26E5;RIGHT-HANDED INTERLACED PENTAGRAM;So;0;ON;;;;;N;;;;;-26E6;LEFT-HANDED INTERLACED PENTAGRAM;So;0;ON;;;;;N;;;;;-26E7;INVERTED PENTAGRAM;So;0;ON;;;;;N;;;;;-26E8;BLACK CROSS ON SHIELD;So;0;ON;;;;;N;;;;;-26E9;SHINTO SHRINE;So;0;ON;;;;;N;;;;;-26EA;CHURCH;So;0;ON;;;;;N;;;;;-26EB;CASTLE;So;0;ON;;;;;N;;;;;-26EC;HISTORIC SITE;So;0;ON;;;;;N;;;;;-26ED;GEAR WITHOUT HUB;So;0;ON;;;;;N;;;;;-26EE;GEAR WITH HANDLES;So;0;ON;;;;;N;;;;;-26EF;MAP SYMBOL FOR LIGHTHOUSE;So;0;ON;;;;;N;;;;;-26F0;MOUNTAIN;So;0;ON;;;;;N;;;;;-26F1;UMBRELLA ON GROUND;So;0;ON;;;;;N;;;;;-26F2;FOUNTAIN;So;0;ON;;;;;N;;;;;-26F3;FLAG IN HOLE;So;0;ON;;;;;N;;;;;-26F4;FERRY;So;0;ON;;;;;N;;;;;-26F5;SAILBOAT;So;0;ON;;;;;N;;;;;-26F6;SQUARE FOUR CORNERS;So;0;ON;;;;;N;;;;;-26F7;SKIER;So;0;ON;;;;;N;;;;;-26F8;ICE SKATE;So;0;ON;;;;;N;;;;;-26F9;PERSON WITH BALL;So;0;ON;;;;;N;;;;;-26FA;TENT;So;0;ON;;;;;N;;;;;-26FB;JAPANESE BANK SYMBOL;So;0;ON;;;;;N;;;;;-26FC;HEADSTONE GRAVEYARD SYMBOL;So;0;ON;;;;;N;;;;;-26FD;FUEL PUMP;So;0;ON;;;;;N;;;;;-26FE;CUP ON BLACK SQUARE;So;0;ON;;;;;N;;;;;-26FF;WHITE FLAG WITH HORIZONTAL MIDDLE BLACK STRIPE;So;0;ON;;;;;N;;;;;-2700;BLACK SAFETY SCISSORS;So;0;ON;;;;;N;;;;;-2701;UPPER BLADE SCISSORS;So;0;ON;;;;;N;;;;;-2702;BLACK SCISSORS;So;0;ON;;;;;N;;;;;-2703;LOWER BLADE SCISSORS;So;0;ON;;;;;N;;;;;-2704;WHITE SCISSORS;So;0;ON;;;;;N;;;;;-2705;WHITE HEAVY CHECK MARK;So;0;ON;;;;;N;;;;;-2706;TELEPHONE LOCATION SIGN;So;0;ON;;;;;N;;;;;-2707;TAPE DRIVE;So;0;ON;;;;;N;;;;;-2708;AIRPLANE;So;0;ON;;;;;N;;;;;-2709;ENVELOPE;So;0;ON;;;;;N;;;;;-270A;RAISED FIST;So;0;ON;;;;;N;;;;;-270B;RAISED HAND;So;0;ON;;;;;N;;;;;-270C;VICTORY HAND;So;0;ON;;;;;N;;;;;-270D;WRITING HAND;So;0;ON;;;;;N;;;;;-270E;LOWER RIGHT PENCIL;So;0;ON;;;;;N;;;;;-270F;PENCIL;So;0;ON;;;;;N;;;;;-2710;UPPER RIGHT PENCIL;So;0;ON;;;;;N;;;;;-2711;WHITE NIB;So;0;ON;;;;;N;;;;;-2712;BLACK NIB;So;0;ON;;;;;N;;;;;-2713;CHECK MARK;So;0;ON;;;;;N;;;;;-2714;HEAVY CHECK MARK;So;0;ON;;;;;N;;;;;-2715;MULTIPLICATION X;So;0;ON;;;;;N;;;;;-2716;HEAVY MULTIPLICATION X;So;0;ON;;;;;N;;;;;-2717;BALLOT X;So;0;ON;;;;;N;;;;;-2718;HEAVY BALLOT X;So;0;ON;;;;;N;;;;;-2719;OUTLINED GREEK CROSS;So;0;ON;;;;;N;;;;;-271A;HEAVY GREEK CROSS;So;0;ON;;;;;N;;;;;-271B;OPEN CENTRE CROSS;So;0;ON;;;;;N;OPEN CENTER CROSS;;;;-271C;HEAVY OPEN CENTRE CROSS;So;0;ON;;;;;N;HEAVY OPEN CENTER CROSS;;;;-271D;LATIN CROSS;So;0;ON;;;;;N;;;;;-271E;SHADOWED WHITE LATIN CROSS;So;0;ON;;;;;N;;;;;-271F;OUTLINED LATIN CROSS;So;0;ON;;;;;N;;;;;-2720;MALTESE CROSS;So;0;ON;;;;;N;;;;;-2721;STAR OF DAVID;So;0;ON;;;;;N;;;;;-2722;FOUR TEARDROP-SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-2723;FOUR BALLOON-SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-2724;HEAVY FOUR BALLOON-SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-2725;FOUR CLUB-SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-2726;BLACK FOUR POINTED STAR;So;0;ON;;;;;N;;;;;-2727;WHITE FOUR POINTED STAR;So;0;ON;;;;;N;;;;;-2728;SPARKLES;So;0;ON;;;;;N;;;;;-2729;STRESS OUTLINED WHITE STAR;So;0;ON;;;;;N;;;;;-272A;CIRCLED WHITE STAR;So;0;ON;;;;;N;;;;;-272B;OPEN CENTRE BLACK STAR;So;0;ON;;;;;N;OPEN CENTER BLACK STAR;;;;-272C;BLACK CENTRE WHITE STAR;So;0;ON;;;;;N;BLACK CENTER WHITE STAR;;;;-272D;OUTLINED BLACK STAR;So;0;ON;;;;;N;;;;;-272E;HEAVY OUTLINED BLACK STAR;So;0;ON;;;;;N;;;;;-272F;PINWHEEL STAR;So;0;ON;;;;;N;;;;;-2730;SHADOWED WHITE STAR;So;0;ON;;;;;N;;;;;-2731;HEAVY ASTERISK;So;0;ON;;;;;N;;;;;-2732;OPEN CENTRE ASTERISK;So;0;ON;;;;;N;OPEN CENTER ASTERISK;;;;-2733;EIGHT SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-2734;EIGHT POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-2735;EIGHT POINTED PINWHEEL STAR;So;0;ON;;;;;N;;;;;-2736;SIX POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-2737;EIGHT POINTED RECTILINEAR BLACK STAR;So;0;ON;;;;;N;;;;;-2738;HEAVY EIGHT POINTED RECTILINEAR BLACK STAR;So;0;ON;;;;;N;;;;;-2739;TWELVE POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-273A;SIXTEEN POINTED ASTERISK;So;0;ON;;;;;N;;;;;-273B;TEARDROP-SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-273C;OPEN CENTRE TEARDROP-SPOKED ASTERISK;So;0;ON;;;;;N;OPEN CENTER TEARDROP-SPOKED ASTERISK;;;;-273D;HEAVY TEARDROP-SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-273E;SIX PETALLED BLACK AND WHITE FLORETTE;So;0;ON;;;;;N;;;;;-273F;BLACK FLORETTE;So;0;ON;;;;;N;;;;;-2740;WHITE FLORETTE;So;0;ON;;;;;N;;;;;-2741;EIGHT PETALLED OUTLINED BLACK FLORETTE;So;0;ON;;;;;N;;;;;-2742;CIRCLED OPEN CENTRE EIGHT POINTED STAR;So;0;ON;;;;;N;CIRCLED OPEN CENTER EIGHT POINTED STAR;;;;-2743;HEAVY TEARDROP-SPOKED PINWHEEL ASTERISK;So;0;ON;;;;;N;;;;;-2744;SNOWFLAKE;So;0;ON;;;;;N;;;;;-2745;TIGHT TRIFOLIATE SNOWFLAKE;So;0;ON;;;;;N;;;;;-2746;HEAVY CHEVRON SNOWFLAKE;So;0;ON;;;;;N;;;;;-2747;SPARKLE;So;0;ON;;;;;N;;;;;-2748;HEAVY SPARKLE;So;0;ON;;;;;N;;;;;-2749;BALLOON-SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-274A;EIGHT TEARDROP-SPOKED PROPELLER ASTERISK;So;0;ON;;;;;N;;;;;-274B;HEAVY EIGHT TEARDROP-SPOKED PROPELLER ASTERISK;So;0;ON;;;;;N;;;;;-274C;CROSS MARK;So;0;ON;;;;;N;;;;;-274D;SHADOWED WHITE CIRCLE;So;0;ON;;;;;N;;;;;-274E;NEGATIVE SQUARED CROSS MARK;So;0;ON;;;;;N;;;;;-274F;LOWER RIGHT DROP-SHADOWED WHITE SQUARE;So;0;ON;;;;;N;;;;;-2750;UPPER RIGHT DROP-SHADOWED WHITE SQUARE;So;0;ON;;;;;N;;;;;-2751;LOWER RIGHT SHADOWED WHITE SQUARE;So;0;ON;;;;;N;;;;;-2752;UPPER RIGHT SHADOWED WHITE SQUARE;So;0;ON;;;;;N;;;;;-2753;BLACK QUESTION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-2754;WHITE QUESTION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-2755;WHITE EXCLAMATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-2756;BLACK DIAMOND MINUS WHITE X;So;0;ON;;;;;N;;;;;-2757;HEAVY EXCLAMATION MARK SYMBOL;So;0;ON;;;;;N;;;;;-2758;LIGHT VERTICAL BAR;So;0;ON;;;;;N;;;;;-2759;MEDIUM VERTICAL BAR;So;0;ON;;;;;N;;;;;-275A;HEAVY VERTICAL BAR;So;0;ON;;;;;N;;;;;-275B;HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-275C;HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-275D;HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-275E;HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-275F;HEAVY LOW SINGLE COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-2760;HEAVY LOW DOUBLE COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-2761;CURVED STEM PARAGRAPH SIGN ORNAMENT;So;0;ON;;;;;N;;;;;-2762;HEAVY EXCLAMATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-2763;HEAVY HEART EXCLAMATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-2764;HEAVY BLACK HEART;So;0;ON;;;;;N;;;;;-2765;ROTATED HEAVY BLACK HEART BULLET;So;0;ON;;;;;N;;;;;-2766;FLORAL HEART;So;0;ON;;;;;N;;;;;-2767;ROTATED FLORAL HEART BULLET;So;0;ON;;;;;N;;;;;-2768;MEDIUM LEFT PARENTHESIS ORNAMENT;Ps;0;ON;;;;;Y;;;;;-2769;MEDIUM RIGHT PARENTHESIS ORNAMENT;Pe;0;ON;;;;;Y;;;;;-276A;MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT;Ps;0;ON;;;;;Y;;;;;-276B;MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT;Pe;0;ON;;;;;Y;;;;;-276C;MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT;Ps;0;ON;;;;;Y;;;;;-276D;MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT;Pe;0;ON;;;;;Y;;;;;-276E;HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT;Ps;0;ON;;;;;Y;;;;;-276F;HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT;Pe;0;ON;;;;;Y;;;;;-2770;HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT;Ps;0;ON;;;;;Y;;;;;-2771;HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT;Pe;0;ON;;;;;Y;;;;;-2772;LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT;Ps;0;ON;;;;;Y;;;;;-2773;LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT;Pe;0;ON;;;;;Y;;;;;-2774;MEDIUM LEFT CURLY BRACKET ORNAMENT;Ps;0;ON;;;;;Y;;;;;-2775;MEDIUM RIGHT CURLY BRACKET ORNAMENT;Pe;0;ON;;;;;Y;;;;;-2776;DINGBAT NEGATIVE CIRCLED DIGIT ONE;No;0;ON;;;1;1;N;INVERSE CIRCLED DIGIT ONE;;;;-2777;DINGBAT NEGATIVE CIRCLED DIGIT TWO;No;0;ON;;;2;2;N;INVERSE CIRCLED DIGIT TWO;;;;-2778;DINGBAT NEGATIVE CIRCLED DIGIT THREE;No;0;ON;;;3;3;N;INVERSE CIRCLED DIGIT THREE;;;;-2779;DINGBAT NEGATIVE CIRCLED DIGIT FOUR;No;0;ON;;;4;4;N;INVERSE CIRCLED DIGIT FOUR;;;;-277A;DINGBAT NEGATIVE CIRCLED DIGIT FIVE;No;0;ON;;;5;5;N;INVERSE CIRCLED DIGIT FIVE;;;;-277B;DINGBAT NEGATIVE CIRCLED DIGIT SIX;No;0;ON;;;6;6;N;INVERSE CIRCLED DIGIT SIX;;;;-277C;DINGBAT NEGATIVE CIRCLED DIGIT SEVEN;No;0;ON;;;7;7;N;INVERSE CIRCLED DIGIT SEVEN;;;;-277D;DINGBAT NEGATIVE CIRCLED DIGIT EIGHT;No;0;ON;;;8;8;N;INVERSE CIRCLED DIGIT EIGHT;;;;-277E;DINGBAT NEGATIVE CIRCLED DIGIT NINE;No;0;ON;;;9;9;N;INVERSE CIRCLED DIGIT NINE;;;;-277F;DINGBAT NEGATIVE CIRCLED NUMBER TEN;No;0;ON;;;;10;N;INVERSE CIRCLED NUMBER TEN;;;;-2780;DINGBAT CIRCLED SANS-SERIF DIGIT ONE;No;0;ON;;;1;1;N;CIRCLED SANS-SERIF DIGIT ONE;;;;-2781;DINGBAT CIRCLED SANS-SERIF DIGIT TWO;No;0;ON;;;2;2;N;CIRCLED SANS-SERIF DIGIT TWO;;;;-2782;DINGBAT CIRCLED SANS-SERIF DIGIT THREE;No;0;ON;;;3;3;N;CIRCLED SANS-SERIF DIGIT THREE;;;;-2783;DINGBAT CIRCLED SANS-SERIF DIGIT FOUR;No;0;ON;;;4;4;N;CIRCLED SANS-SERIF DIGIT FOUR;;;;-2784;DINGBAT CIRCLED SANS-SERIF DIGIT FIVE;No;0;ON;;;5;5;N;CIRCLED SANS-SERIF DIGIT FIVE;;;;-2785;DINGBAT CIRCLED SANS-SERIF DIGIT SIX;No;0;ON;;;6;6;N;CIRCLED SANS-SERIF DIGIT SIX;;;;-2786;DINGBAT CIRCLED SANS-SERIF DIGIT SEVEN;No;0;ON;;;7;7;N;CIRCLED SANS-SERIF DIGIT SEVEN;;;;-2787;DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT;No;0;ON;;;8;8;N;CIRCLED SANS-SERIF DIGIT EIGHT;;;;-2788;DINGBAT CIRCLED SANS-SERIF DIGIT NINE;No;0;ON;;;9;9;N;CIRCLED SANS-SERIF DIGIT NINE;;;;-2789;DINGBAT CIRCLED SANS-SERIF NUMBER TEN;No;0;ON;;;;10;N;CIRCLED SANS-SERIF NUMBER TEN;;;;-278A;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ONE;No;0;ON;;;1;1;N;INVERSE CIRCLED SANS-SERIF DIGIT ONE;;;;-278B;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT TWO;No;0;ON;;;2;2;N;INVERSE CIRCLED SANS-SERIF DIGIT TWO;;;;-278C;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT THREE;No;0;ON;;;3;3;N;INVERSE CIRCLED SANS-SERIF DIGIT THREE;;;;-278D;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FOUR;No;0;ON;;;4;4;N;INVERSE CIRCLED SANS-SERIF DIGIT FOUR;;;;-278E;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FIVE;No;0;ON;;;5;5;N;INVERSE CIRCLED SANS-SERIF DIGIT FIVE;;;;-278F;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SIX;No;0;ON;;;6;6;N;INVERSE CIRCLED SANS-SERIF DIGIT SIX;;;;-2790;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN;No;0;ON;;;7;7;N;INVERSE CIRCLED SANS-SERIF DIGIT SEVEN;;;;-2791;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT EIGHT;No;0;ON;;;8;8;N;INVERSE CIRCLED SANS-SERIF DIGIT EIGHT;;;;-2792;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT NINE;No;0;ON;;;9;9;N;INVERSE CIRCLED SANS-SERIF DIGIT NINE;;;;-2793;DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN;No;0;ON;;;;10;N;INVERSE CIRCLED SANS-SERIF NUMBER TEN;;;;-2794;HEAVY WIDE-HEADED RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY WIDE-HEADED RIGHT ARROW;;;;-2795;HEAVY PLUS SIGN;So;0;ON;;;;;N;;;;;-2796;HEAVY MINUS SIGN;So;0;ON;;;;;N;;;;;-2797;HEAVY DIVISION SIGN;So;0;ON;;;;;N;;;;;-2798;HEAVY SOUTH EAST ARROW;So;0;ON;;;;;N;HEAVY LOWER RIGHT ARROW;;;;-2799;HEAVY RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY RIGHT ARROW;;;;-279A;HEAVY NORTH EAST ARROW;So;0;ON;;;;;N;HEAVY UPPER RIGHT ARROW;;;;-279B;DRAFTING POINT RIGHTWARDS ARROW;So;0;ON;;;;;N;DRAFTING POINT RIGHT ARROW;;;;-279C;HEAVY ROUND-TIPPED RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY ROUND-TIPPED RIGHT ARROW;;;;-279D;TRIANGLE-HEADED RIGHTWARDS ARROW;So;0;ON;;;;;N;TRIANGLE-HEADED RIGHT ARROW;;;;-279E;HEAVY TRIANGLE-HEADED RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY TRIANGLE-HEADED RIGHT ARROW;;;;-279F;DASHED TRIANGLE-HEADED RIGHTWARDS ARROW;So;0;ON;;;;;N;DASHED TRIANGLE-HEADED RIGHT ARROW;;;;-27A0;HEAVY DASHED TRIANGLE-HEADED RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY DASHED TRIANGLE-HEADED RIGHT ARROW;;;;-27A1;BLACK RIGHTWARDS ARROW;So;0;ON;;;;;N;BLACK RIGHT ARROW;;;;-27A2;THREE-D TOP-LIGHTED RIGHTWARDS ARROWHEAD;So;0;ON;;;;;N;THREE-D TOP-LIGHTED RIGHT ARROWHEAD;;;;-27A3;THREE-D BOTTOM-LIGHTED RIGHTWARDS ARROWHEAD;So;0;ON;;;;;N;THREE-D BOTTOM-LIGHTED RIGHT ARROWHEAD;;;;-27A4;BLACK RIGHTWARDS ARROWHEAD;So;0;ON;;;;;N;BLACK RIGHT ARROWHEAD;;;;-27A5;HEAVY BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY BLACK CURVED DOWN AND RIGHT ARROW;;;;-27A6;HEAVY BLACK CURVED UPWARDS AND RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY BLACK CURVED UP AND RIGHT ARROW;;;;-27A7;SQUAT BLACK RIGHTWARDS ARROW;So;0;ON;;;;;N;SQUAT BLACK RIGHT ARROW;;;;-27A8;HEAVY CONCAVE-POINTED BLACK RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY CONCAVE-POINTED BLACK RIGHT ARROW;;;;-27A9;RIGHT-SHADED WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;RIGHT-SHADED WHITE RIGHT ARROW;;;;-27AA;LEFT-SHADED WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;LEFT-SHADED WHITE RIGHT ARROW;;;;-27AB;BACK-TILTED SHADOWED WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;BACK-TILTED SHADOWED WHITE RIGHT ARROW;;;;-27AC;FRONT-TILTED SHADOWED WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;FRONT-TILTED SHADOWED WHITE RIGHT ARROW;;;;-27AD;HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY LOWER RIGHT-SHADOWED WHITE RIGHT ARROW;;;;-27AE;HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY UPPER RIGHT-SHADOWED WHITE RIGHT ARROW;;;;-27AF;NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHT ARROW;;;;-27B0;CURLY LOOP;So;0;ON;;;;;N;;;;;-27B1;NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHT ARROW;;;;-27B2;CIRCLED HEAVY WHITE RIGHTWARDS ARROW;So;0;ON;;;;;N;CIRCLED HEAVY WHITE RIGHT ARROW;;;;-27B3;WHITE-FEATHERED RIGHTWARDS ARROW;So;0;ON;;;;;N;WHITE-FEATHERED RIGHT ARROW;;;;-27B4;BLACK-FEATHERED SOUTH EAST ARROW;So;0;ON;;;;;N;BLACK-FEATHERED LOWER RIGHT ARROW;;;;-27B5;BLACK-FEATHERED RIGHTWARDS ARROW;So;0;ON;;;;;N;BLACK-FEATHERED RIGHT ARROW;;;;-27B6;BLACK-FEATHERED NORTH EAST ARROW;So;0;ON;;;;;N;BLACK-FEATHERED UPPER RIGHT ARROW;;;;-27B7;HEAVY BLACK-FEATHERED SOUTH EAST ARROW;So;0;ON;;;;;N;HEAVY BLACK-FEATHERED LOWER RIGHT ARROW;;;;-27B8;HEAVY BLACK-FEATHERED RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY BLACK-FEATHERED RIGHT ARROW;;;;-27B9;HEAVY BLACK-FEATHERED NORTH EAST ARROW;So;0;ON;;;;;N;HEAVY BLACK-FEATHERED UPPER RIGHT ARROW;;;;-27BA;TEARDROP-BARBED RIGHTWARDS ARROW;So;0;ON;;;;;N;TEARDROP-BARBED RIGHT ARROW;;;;-27BB;HEAVY TEARDROP-SHANKED RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY TEARDROP-SHANKED RIGHT ARROW;;;;-27BC;WEDGE-TAILED RIGHTWARDS ARROW;So;0;ON;;;;;N;WEDGE-TAILED RIGHT ARROW;;;;-27BD;HEAVY WEDGE-TAILED RIGHTWARDS ARROW;So;0;ON;;;;;N;HEAVY WEDGE-TAILED RIGHT ARROW;;;;-27BE;OPEN-OUTLINED RIGHTWARDS ARROW;So;0;ON;;;;;N;OPEN-OUTLINED RIGHT ARROW;;;;-27BF;DOUBLE CURLY LOOP;So;0;ON;;;;;N;;;;;-27C0;THREE DIMENSIONAL ANGLE;Sm;0;ON;;;;;Y;;;;;-27C1;WHITE TRIANGLE CONTAINING SMALL WHITE TRIANGLE;Sm;0;ON;;;;;N;;;;;-27C2;PERPENDICULAR;Sm;0;ON;;;;;N;;;;;-27C3;OPEN SUBSET;Sm;0;ON;;;;;Y;;;;;-27C4;OPEN SUPERSET;Sm;0;ON;;;;;Y;;;;;-27C5;LEFT S-SHAPED BAG DELIMITER;Ps;0;ON;;;;;Y;;;;;-27C6;RIGHT S-SHAPED BAG DELIMITER;Pe;0;ON;;;;;Y;;;;;-27C7;OR WITH DOT INSIDE;Sm;0;ON;;;;;N;;;;;-27C8;REVERSE SOLIDUS PRECEDING SUBSET;Sm;0;ON;;;;;Y;;;;;-27C9;SUPERSET PRECEDING SOLIDUS;Sm;0;ON;;;;;Y;;;;;-27CA;VERTICAL BAR WITH HORIZONTAL STROKE;Sm;0;ON;;;;;N;;;;;-27CB;MATHEMATICAL RISING DIAGONAL;Sm;0;ON;;;;;Y;;;;;-27CC;LONG DIVISION;Sm;0;ON;;;;;Y;;;;;-27CD;MATHEMATICAL FALLING DIAGONAL;Sm;0;ON;;;;;Y;;;;;-27CE;SQUARED LOGICAL AND;Sm;0;ON;;;;;N;;;;;-27CF;SQUARED LOGICAL OR;Sm;0;ON;;;;;N;;;;;-27D0;WHITE DIAMOND WITH CENTRED DOT;Sm;0;ON;;;;;N;;;;;-27D1;AND WITH DOT;Sm;0;ON;;;;;N;;;;;-27D2;ELEMENT OF OPENING UPWARDS;Sm;0;ON;;;;;N;;;;;-27D3;LOWER RIGHT CORNER WITH DOT;Sm;0;ON;;;;;Y;;;;;-27D4;UPPER LEFT CORNER WITH DOT;Sm;0;ON;;;;;Y;;;;;-27D5;LEFT OUTER JOIN;Sm;0;ON;;;;;Y;;;;;-27D6;RIGHT OUTER JOIN;Sm;0;ON;;;;;Y;;;;;-27D7;FULL OUTER JOIN;Sm;0;ON;;;;;N;;;;;-27D8;LARGE UP TACK;Sm;0;ON;;;;;N;;;;;-27D9;LARGE DOWN TACK;Sm;0;ON;;;;;N;;;;;-27DA;LEFT AND RIGHT DOUBLE TURNSTILE;Sm;0;ON;;;;;N;;;;;-27DB;LEFT AND RIGHT TACK;Sm;0;ON;;;;;N;;;;;-27DC;LEFT MULTIMAP;Sm;0;ON;;;;;Y;;;;;-27DD;LONG RIGHT TACK;Sm;0;ON;;;;;Y;;;;;-27DE;LONG LEFT TACK;Sm;0;ON;;;;;Y;;;;;-27DF;UP TACK WITH CIRCLE ABOVE;Sm;0;ON;;;;;N;;;;;-27E0;LOZENGE DIVIDED BY HORIZONTAL RULE;Sm;0;ON;;;;;N;;;;;-27E1;WHITE CONCAVE-SIDED DIAMOND;Sm;0;ON;;;;;N;;;;;-27E2;WHITE CONCAVE-SIDED DIAMOND WITH LEFTWARDS TICK;Sm;0;ON;;;;;Y;;;;;-27E3;WHITE CONCAVE-SIDED DIAMOND WITH RIGHTWARDS TICK;Sm;0;ON;;;;;Y;;;;;-27E4;WHITE SQUARE WITH LEFTWARDS TICK;Sm;0;ON;;;;;Y;;;;;-27E5;WHITE SQUARE WITH RIGHTWARDS TICK;Sm;0;ON;;;;;Y;;;;;-27E6;MATHEMATICAL LEFT WHITE SQUARE BRACKET;Ps;0;ON;;;;;Y;;;;;-27E7;MATHEMATICAL RIGHT WHITE SQUARE BRACKET;Pe;0;ON;;;;;Y;;;;;-27E8;MATHEMATICAL LEFT ANGLE BRACKET;Ps;0;ON;;;;;Y;;;;;-27E9;MATHEMATICAL RIGHT ANGLE BRACKET;Pe;0;ON;;;;;Y;;;;;-27EA;MATHEMATICAL LEFT DOUBLE ANGLE BRACKET;Ps;0;ON;;;;;Y;;;;;-27EB;MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET;Pe;0;ON;;;;;Y;;;;;-27EC;MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET;Ps;0;ON;;;;;Y;;;;;-27ED;MATHEMATICAL RIGHT WHITE TORTOISE SHELL BRACKET;Pe;0;ON;;;;;Y;;;;;-27EE;MATHEMATICAL LEFT FLATTENED PARENTHESIS;Ps;0;ON;;;;;Y;;;;;-27EF;MATHEMATICAL RIGHT FLATTENED PARENTHESIS;Pe;0;ON;;;;;Y;;;;;-27F0;UPWARDS QUADRUPLE ARROW;Sm;0;ON;;;;;N;;;;;-27F1;DOWNWARDS QUADRUPLE ARROW;Sm;0;ON;;;;;N;;;;;-27F2;ANTICLOCKWISE GAPPED CIRCLE ARROW;Sm;0;ON;;;;;N;;;;;-27F3;CLOCKWISE GAPPED CIRCLE ARROW;Sm;0;ON;;;;;N;;;;;-27F4;RIGHT ARROW WITH CIRCLED PLUS;Sm;0;ON;;;;;N;;;;;-27F5;LONG LEFTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-27F6;LONG RIGHTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-27F7;LONG LEFT RIGHT ARROW;Sm;0;ON;;;;;N;;;;;-27F8;LONG LEFTWARDS DOUBLE ARROW;Sm;0;ON;;;;;N;;;;;-27F9;LONG RIGHTWARDS DOUBLE ARROW;Sm;0;ON;;;;;N;;;;;-27FA;LONG LEFT RIGHT DOUBLE ARROW;Sm;0;ON;;;;;N;;;;;-27FB;LONG LEFTWARDS ARROW FROM BAR;Sm;0;ON;;;;;N;;;;;-27FC;LONG RIGHTWARDS ARROW FROM BAR;Sm;0;ON;;;;;N;;;;;-27FD;LONG LEFTWARDS DOUBLE ARROW FROM BAR;Sm;0;ON;;;;;N;;;;;-27FE;LONG RIGHTWARDS DOUBLE ARROW FROM BAR;Sm;0;ON;;;;;N;;;;;-27FF;LONG RIGHTWARDS SQUIGGLE ARROW;Sm;0;ON;;;;;N;;;;;-2800;BRAILLE PATTERN BLANK;So;0;L;;;;;N;;;;;-2801;BRAILLE PATTERN DOTS-1;So;0;L;;;;;N;;;;;-2802;BRAILLE PATTERN DOTS-2;So;0;L;;;;;N;;;;;-2803;BRAILLE PATTERN DOTS-12;So;0;L;;;;;N;;;;;-2804;BRAILLE PATTERN DOTS-3;So;0;L;;;;;N;;;;;-2805;BRAILLE PATTERN DOTS-13;So;0;L;;;;;N;;;;;-2806;BRAILLE PATTERN DOTS-23;So;0;L;;;;;N;;;;;-2807;BRAILLE PATTERN DOTS-123;So;0;L;;;;;N;;;;;-2808;BRAILLE PATTERN DOTS-4;So;0;L;;;;;N;;;;;-2809;BRAILLE PATTERN DOTS-14;So;0;L;;;;;N;;;;;-280A;BRAILLE PATTERN DOTS-24;So;0;L;;;;;N;;;;;-280B;BRAILLE PATTERN DOTS-124;So;0;L;;;;;N;;;;;-280C;BRAILLE PATTERN DOTS-34;So;0;L;;;;;N;;;;;-280D;BRAILLE PATTERN DOTS-134;So;0;L;;;;;N;;;;;-280E;BRAILLE PATTERN DOTS-234;So;0;L;;;;;N;;;;;-280F;BRAILLE PATTERN DOTS-1234;So;0;L;;;;;N;;;;;-2810;BRAILLE PATTERN DOTS-5;So;0;L;;;;;N;;;;;-2811;BRAILLE PATTERN DOTS-15;So;0;L;;;;;N;;;;;-2812;BRAILLE PATTERN DOTS-25;So;0;L;;;;;N;;;;;-2813;BRAILLE PATTERN DOTS-125;So;0;L;;;;;N;;;;;-2814;BRAILLE PATTERN DOTS-35;So;0;L;;;;;N;;;;;-2815;BRAILLE PATTERN DOTS-135;So;0;L;;;;;N;;;;;-2816;BRAILLE PATTERN DOTS-235;So;0;L;;;;;N;;;;;-2817;BRAILLE PATTERN DOTS-1235;So;0;L;;;;;N;;;;;-2818;BRAILLE PATTERN DOTS-45;So;0;L;;;;;N;;;;;-2819;BRAILLE PATTERN DOTS-145;So;0;L;;;;;N;;;;;-281A;BRAILLE PATTERN DOTS-245;So;0;L;;;;;N;;;;;-281B;BRAILLE PATTERN DOTS-1245;So;0;L;;;;;N;;;;;-281C;BRAILLE PATTERN DOTS-345;So;0;L;;;;;N;;;;;-281D;BRAILLE PATTERN DOTS-1345;So;0;L;;;;;N;;;;;-281E;BRAILLE PATTERN DOTS-2345;So;0;L;;;;;N;;;;;-281F;BRAILLE PATTERN DOTS-12345;So;0;L;;;;;N;;;;;-2820;BRAILLE PATTERN DOTS-6;So;0;L;;;;;N;;;;;-2821;BRAILLE PATTERN DOTS-16;So;0;L;;;;;N;;;;;-2822;BRAILLE PATTERN DOTS-26;So;0;L;;;;;N;;;;;-2823;BRAILLE PATTERN DOTS-126;So;0;L;;;;;N;;;;;-2824;BRAILLE PATTERN DOTS-36;So;0;L;;;;;N;;;;;-2825;BRAILLE PATTERN DOTS-136;So;0;L;;;;;N;;;;;-2826;BRAILLE PATTERN DOTS-236;So;0;L;;;;;N;;;;;-2827;BRAILLE PATTERN DOTS-1236;So;0;L;;;;;N;;;;;-2828;BRAILLE PATTERN DOTS-46;So;0;L;;;;;N;;;;;-2829;BRAILLE PATTERN DOTS-146;So;0;L;;;;;N;;;;;-282A;BRAILLE PATTERN DOTS-246;So;0;L;;;;;N;;;;;-282B;BRAILLE PATTERN DOTS-1246;So;0;L;;;;;N;;;;;-282C;BRAILLE PATTERN DOTS-346;So;0;L;;;;;N;;;;;-282D;BRAILLE PATTERN DOTS-1346;So;0;L;;;;;N;;;;;-282E;BRAILLE PATTERN DOTS-2346;So;0;L;;;;;N;;;;;-282F;BRAILLE PATTERN DOTS-12346;So;0;L;;;;;N;;;;;-2830;BRAILLE PATTERN DOTS-56;So;0;L;;;;;N;;;;;-2831;BRAILLE PATTERN DOTS-156;So;0;L;;;;;N;;;;;-2832;BRAILLE PATTERN DOTS-256;So;0;L;;;;;N;;;;;-2833;BRAILLE PATTERN DOTS-1256;So;0;L;;;;;N;;;;;-2834;BRAILLE PATTERN DOTS-356;So;0;L;;;;;N;;;;;-2835;BRAILLE PATTERN DOTS-1356;So;0;L;;;;;N;;;;;-2836;BRAILLE PATTERN DOTS-2356;So;0;L;;;;;N;;;;;-2837;BRAILLE PATTERN DOTS-12356;So;0;L;;;;;N;;;;;-2838;BRAILLE PATTERN DOTS-456;So;0;L;;;;;N;;;;;-2839;BRAILLE PATTERN DOTS-1456;So;0;L;;;;;N;;;;;-283A;BRAILLE PATTERN DOTS-2456;So;0;L;;;;;N;;;;;-283B;BRAILLE PATTERN DOTS-12456;So;0;L;;;;;N;;;;;-283C;BRAILLE PATTERN DOTS-3456;So;0;L;;;;;N;;;;;-283D;BRAILLE PATTERN DOTS-13456;So;0;L;;;;;N;;;;;-283E;BRAILLE PATTERN DOTS-23456;So;0;L;;;;;N;;;;;-283F;BRAILLE PATTERN DOTS-123456;So;0;L;;;;;N;;;;;-2840;BRAILLE PATTERN DOTS-7;So;0;L;;;;;N;;;;;-2841;BRAILLE PATTERN DOTS-17;So;0;L;;;;;N;;;;;-2842;BRAILLE PATTERN DOTS-27;So;0;L;;;;;N;;;;;-2843;BRAILLE PATTERN DOTS-127;So;0;L;;;;;N;;;;;-2844;BRAILLE PATTERN DOTS-37;So;0;L;;;;;N;;;;;-2845;BRAILLE PATTERN DOTS-137;So;0;L;;;;;N;;;;;-2846;BRAILLE PATTERN DOTS-237;So;0;L;;;;;N;;;;;-2847;BRAILLE PATTERN DOTS-1237;So;0;L;;;;;N;;;;;-2848;BRAILLE PATTERN DOTS-47;So;0;L;;;;;N;;;;;-2849;BRAILLE PATTERN DOTS-147;So;0;L;;;;;N;;;;;-284A;BRAILLE PATTERN DOTS-247;So;0;L;;;;;N;;;;;-284B;BRAILLE PATTERN DOTS-1247;So;0;L;;;;;N;;;;;-284C;BRAILLE PATTERN DOTS-347;So;0;L;;;;;N;;;;;-284D;BRAILLE PATTERN DOTS-1347;So;0;L;;;;;N;;;;;-284E;BRAILLE PATTERN DOTS-2347;So;0;L;;;;;N;;;;;-284F;BRAILLE PATTERN DOTS-12347;So;0;L;;;;;N;;;;;-2850;BRAILLE PATTERN DOTS-57;So;0;L;;;;;N;;;;;-2851;BRAILLE PATTERN DOTS-157;So;0;L;;;;;N;;;;;-2852;BRAILLE PATTERN DOTS-257;So;0;L;;;;;N;;;;;-2853;BRAILLE PATTERN DOTS-1257;So;0;L;;;;;N;;;;;-2854;BRAILLE PATTERN DOTS-357;So;0;L;;;;;N;;;;;-2855;BRAILLE PATTERN DOTS-1357;So;0;L;;;;;N;;;;;-2856;BRAILLE PATTERN DOTS-2357;So;0;L;;;;;N;;;;;-2857;BRAILLE PATTERN DOTS-12357;So;0;L;;;;;N;;;;;-2858;BRAILLE PATTERN DOTS-457;So;0;L;;;;;N;;;;;-2859;BRAILLE PATTERN DOTS-1457;So;0;L;;;;;N;;;;;-285A;BRAILLE PATTERN DOTS-2457;So;0;L;;;;;N;;;;;-285B;BRAILLE PATTERN DOTS-12457;So;0;L;;;;;N;;;;;-285C;BRAILLE PATTERN DOTS-3457;So;0;L;;;;;N;;;;;-285D;BRAILLE PATTERN DOTS-13457;So;0;L;;;;;N;;;;;-285E;BRAILLE PATTERN DOTS-23457;So;0;L;;;;;N;;;;;-285F;BRAILLE PATTERN DOTS-123457;So;0;L;;;;;N;;;;;-2860;BRAILLE PATTERN DOTS-67;So;0;L;;;;;N;;;;;-2861;BRAILLE PATTERN DOTS-167;So;0;L;;;;;N;;;;;-2862;BRAILLE PATTERN DOTS-267;So;0;L;;;;;N;;;;;-2863;BRAILLE PATTERN DOTS-1267;So;0;L;;;;;N;;;;;-2864;BRAILLE PATTERN DOTS-367;So;0;L;;;;;N;;;;;-2865;BRAILLE PATTERN DOTS-1367;So;0;L;;;;;N;;;;;-2866;BRAILLE PATTERN DOTS-2367;So;0;L;;;;;N;;;;;-2867;BRAILLE PATTERN DOTS-12367;So;0;L;;;;;N;;;;;-2868;BRAILLE PATTERN DOTS-467;So;0;L;;;;;N;;;;;-2869;BRAILLE PATTERN DOTS-1467;So;0;L;;;;;N;;;;;-286A;BRAILLE PATTERN DOTS-2467;So;0;L;;;;;N;;;;;-286B;BRAILLE PATTERN DOTS-12467;So;0;L;;;;;N;;;;;-286C;BRAILLE PATTERN DOTS-3467;So;0;L;;;;;N;;;;;-286D;BRAILLE PATTERN DOTS-13467;So;0;L;;;;;N;;;;;-286E;BRAILLE PATTERN DOTS-23467;So;0;L;;;;;N;;;;;-286F;BRAILLE PATTERN DOTS-123467;So;0;L;;;;;N;;;;;-2870;BRAILLE PATTERN DOTS-567;So;0;L;;;;;N;;;;;-2871;BRAILLE PATTERN DOTS-1567;So;0;L;;;;;N;;;;;-2872;BRAILLE PATTERN DOTS-2567;So;0;L;;;;;N;;;;;-2873;BRAILLE PATTERN DOTS-12567;So;0;L;;;;;N;;;;;-2874;BRAILLE PATTERN DOTS-3567;So;0;L;;;;;N;;;;;-2875;BRAILLE PATTERN DOTS-13567;So;0;L;;;;;N;;;;;-2876;BRAILLE PATTERN DOTS-23567;So;0;L;;;;;N;;;;;-2877;BRAILLE PATTERN DOTS-123567;So;0;L;;;;;N;;;;;-2878;BRAILLE PATTERN DOTS-4567;So;0;L;;;;;N;;;;;-2879;BRAILLE PATTERN DOTS-14567;So;0;L;;;;;N;;;;;-287A;BRAILLE PATTERN DOTS-24567;So;0;L;;;;;N;;;;;-287B;BRAILLE PATTERN DOTS-124567;So;0;L;;;;;N;;;;;-287C;BRAILLE PATTERN DOTS-34567;So;0;L;;;;;N;;;;;-287D;BRAILLE PATTERN DOTS-134567;So;0;L;;;;;N;;;;;-287E;BRAILLE PATTERN DOTS-234567;So;0;L;;;;;N;;;;;-287F;BRAILLE PATTERN DOTS-1234567;So;0;L;;;;;N;;;;;-2880;BRAILLE PATTERN DOTS-8;So;0;L;;;;;N;;;;;-2881;BRAILLE PATTERN DOTS-18;So;0;L;;;;;N;;;;;-2882;BRAILLE PATTERN DOTS-28;So;0;L;;;;;N;;;;;-2883;BRAILLE PATTERN DOTS-128;So;0;L;;;;;N;;;;;-2884;BRAILLE PATTERN DOTS-38;So;0;L;;;;;N;;;;;-2885;BRAILLE PATTERN DOTS-138;So;0;L;;;;;N;;;;;-2886;BRAILLE PATTERN DOTS-238;So;0;L;;;;;N;;;;;-2887;BRAILLE PATTERN DOTS-1238;So;0;L;;;;;N;;;;;-2888;BRAILLE PATTERN DOTS-48;So;0;L;;;;;N;;;;;-2889;BRAILLE PATTERN DOTS-148;So;0;L;;;;;N;;;;;-288A;BRAILLE PATTERN DOTS-248;So;0;L;;;;;N;;;;;-288B;BRAILLE PATTERN DOTS-1248;So;0;L;;;;;N;;;;;-288C;BRAILLE PATTERN DOTS-348;So;0;L;;;;;N;;;;;-288D;BRAILLE PATTERN DOTS-1348;So;0;L;;;;;N;;;;;-288E;BRAILLE PATTERN DOTS-2348;So;0;L;;;;;N;;;;;-288F;BRAILLE PATTERN DOTS-12348;So;0;L;;;;;N;;;;;-2890;BRAILLE PATTERN DOTS-58;So;0;L;;;;;N;;;;;-2891;BRAILLE PATTERN DOTS-158;So;0;L;;;;;N;;;;;-2892;BRAILLE PATTERN DOTS-258;So;0;L;;;;;N;;;;;-2893;BRAILLE PATTERN DOTS-1258;So;0;L;;;;;N;;;;;-2894;BRAILLE PATTERN DOTS-358;So;0;L;;;;;N;;;;;-2895;BRAILLE PATTERN DOTS-1358;So;0;L;;;;;N;;;;;-2896;BRAILLE PATTERN DOTS-2358;So;0;L;;;;;N;;;;;-2897;BRAILLE PATTERN DOTS-12358;So;0;L;;;;;N;;;;;-2898;BRAILLE PATTERN DOTS-458;So;0;L;;;;;N;;;;;-2899;BRAILLE PATTERN DOTS-1458;So;0;L;;;;;N;;;;;-289A;BRAILLE PATTERN DOTS-2458;So;0;L;;;;;N;;;;;-289B;BRAILLE PATTERN DOTS-12458;So;0;L;;;;;N;;;;;-289C;BRAILLE PATTERN DOTS-3458;So;0;L;;;;;N;;;;;-289D;BRAILLE PATTERN DOTS-13458;So;0;L;;;;;N;;;;;-289E;BRAILLE PATTERN DOTS-23458;So;0;L;;;;;N;;;;;-289F;BRAILLE PATTERN DOTS-123458;So;0;L;;;;;N;;;;;-28A0;BRAILLE PATTERN DOTS-68;So;0;L;;;;;N;;;;;-28A1;BRAILLE PATTERN DOTS-168;So;0;L;;;;;N;;;;;-28A2;BRAILLE PATTERN DOTS-268;So;0;L;;;;;N;;;;;-28A3;BRAILLE PATTERN DOTS-1268;So;0;L;;;;;N;;;;;-28A4;BRAILLE PATTERN DOTS-368;So;0;L;;;;;N;;;;;-28A5;BRAILLE PATTERN DOTS-1368;So;0;L;;;;;N;;;;;-28A6;BRAILLE PATTERN DOTS-2368;So;0;L;;;;;N;;;;;-28A7;BRAILLE PATTERN DOTS-12368;So;0;L;;;;;N;;;;;-28A8;BRAILLE PATTERN DOTS-468;So;0;L;;;;;N;;;;;-28A9;BRAILLE PATTERN DOTS-1468;So;0;L;;;;;N;;;;;-28AA;BRAILLE PATTERN DOTS-2468;So;0;L;;;;;N;;;;;-28AB;BRAILLE PATTERN DOTS-12468;So;0;L;;;;;N;;;;;-28AC;BRAILLE PATTERN DOTS-3468;So;0;L;;;;;N;;;;;-28AD;BRAILLE PATTERN DOTS-13468;So;0;L;;;;;N;;;;;-28AE;BRAILLE PATTERN DOTS-23468;So;0;L;;;;;N;;;;;-28AF;BRAILLE PATTERN DOTS-123468;So;0;L;;;;;N;;;;;-28B0;BRAILLE PATTERN DOTS-568;So;0;L;;;;;N;;;;;-28B1;BRAILLE PATTERN DOTS-1568;So;0;L;;;;;N;;;;;-28B2;BRAILLE PATTERN DOTS-2568;So;0;L;;;;;N;;;;;-28B3;BRAILLE PATTERN DOTS-12568;So;0;L;;;;;N;;;;;-28B4;BRAILLE PATTERN DOTS-3568;So;0;L;;;;;N;;;;;-28B5;BRAILLE PATTERN DOTS-13568;So;0;L;;;;;N;;;;;-28B6;BRAILLE PATTERN DOTS-23568;So;0;L;;;;;N;;;;;-28B7;BRAILLE PATTERN DOTS-123568;So;0;L;;;;;N;;;;;-28B8;BRAILLE PATTERN DOTS-4568;So;0;L;;;;;N;;;;;-28B9;BRAILLE PATTERN DOTS-14568;So;0;L;;;;;N;;;;;-28BA;BRAILLE PATTERN DOTS-24568;So;0;L;;;;;N;;;;;-28BB;BRAILLE PATTERN DOTS-124568;So;0;L;;;;;N;;;;;-28BC;BRAILLE PATTERN DOTS-34568;So;0;L;;;;;N;;;;;-28BD;BRAILLE PATTERN DOTS-134568;So;0;L;;;;;N;;;;;-28BE;BRAILLE PATTERN DOTS-234568;So;0;L;;;;;N;;;;;-28BF;BRAILLE PATTERN DOTS-1234568;So;0;L;;;;;N;;;;;-28C0;BRAILLE PATTERN DOTS-78;So;0;L;;;;;N;;;;;-28C1;BRAILLE PATTERN DOTS-178;So;0;L;;;;;N;;;;;-28C2;BRAILLE PATTERN DOTS-278;So;0;L;;;;;N;;;;;-28C3;BRAILLE PATTERN DOTS-1278;So;0;L;;;;;N;;;;;-28C4;BRAILLE PATTERN DOTS-378;So;0;L;;;;;N;;;;;-28C5;BRAILLE PATTERN DOTS-1378;So;0;L;;;;;N;;;;;-28C6;BRAILLE PATTERN DOTS-2378;So;0;L;;;;;N;;;;;-28C7;BRAILLE PATTERN DOTS-12378;So;0;L;;;;;N;;;;;-28C8;BRAILLE PATTERN DOTS-478;So;0;L;;;;;N;;;;;-28C9;BRAILLE PATTERN DOTS-1478;So;0;L;;;;;N;;;;;-28CA;BRAILLE PATTERN DOTS-2478;So;0;L;;;;;N;;;;;-28CB;BRAILLE PATTERN DOTS-12478;So;0;L;;;;;N;;;;;-28CC;BRAILLE PATTERN DOTS-3478;So;0;L;;;;;N;;;;;-28CD;BRAILLE PATTERN DOTS-13478;So;0;L;;;;;N;;;;;-28CE;BRAILLE PATTERN DOTS-23478;So;0;L;;;;;N;;;;;-28CF;BRAILLE PATTERN DOTS-123478;So;0;L;;;;;N;;;;;-28D0;BRAILLE PATTERN DOTS-578;So;0;L;;;;;N;;;;;-28D1;BRAILLE PATTERN DOTS-1578;So;0;L;;;;;N;;;;;-28D2;BRAILLE PATTERN DOTS-2578;So;0;L;;;;;N;;;;;-28D3;BRAILLE PATTERN DOTS-12578;So;0;L;;;;;N;;;;;-28D4;BRAILLE PATTERN DOTS-3578;So;0;L;;;;;N;;;;;-28D5;BRAILLE PATTERN DOTS-13578;So;0;L;;;;;N;;;;;-28D6;BRAILLE PATTERN DOTS-23578;So;0;L;;;;;N;;;;;-28D7;BRAILLE PATTERN DOTS-123578;So;0;L;;;;;N;;;;;-28D8;BRAILLE PATTERN DOTS-4578;So;0;L;;;;;N;;;;;-28D9;BRAILLE PATTERN DOTS-14578;So;0;L;;;;;N;;;;;-28DA;BRAILLE PATTERN DOTS-24578;So;0;L;;;;;N;;;;;-28DB;BRAILLE PATTERN DOTS-124578;So;0;L;;;;;N;;;;;-28DC;BRAILLE PATTERN DOTS-34578;So;0;L;;;;;N;;;;;-28DD;BRAILLE PATTERN DOTS-134578;So;0;L;;;;;N;;;;;-28DE;BRAILLE PATTERN DOTS-234578;So;0;L;;;;;N;;;;;-28DF;BRAILLE PATTERN DOTS-1234578;So;0;L;;;;;N;;;;;-28E0;BRAILLE PATTERN DOTS-678;So;0;L;;;;;N;;;;;-28E1;BRAILLE PATTERN DOTS-1678;So;0;L;;;;;N;;;;;-28E2;BRAILLE PATTERN DOTS-2678;So;0;L;;;;;N;;;;;-28E3;BRAILLE PATTERN DOTS-12678;So;0;L;;;;;N;;;;;-28E4;BRAILLE PATTERN DOTS-3678;So;0;L;;;;;N;;;;;-28E5;BRAILLE PATTERN DOTS-13678;So;0;L;;;;;N;;;;;-28E6;BRAILLE PATTERN DOTS-23678;So;0;L;;;;;N;;;;;-28E7;BRAILLE PATTERN DOTS-123678;So;0;L;;;;;N;;;;;-28E8;BRAILLE PATTERN DOTS-4678;So;0;L;;;;;N;;;;;-28E9;BRAILLE PATTERN DOTS-14678;So;0;L;;;;;N;;;;;-28EA;BRAILLE PATTERN DOTS-24678;So;0;L;;;;;N;;;;;-28EB;BRAILLE PATTERN DOTS-124678;So;0;L;;;;;N;;;;;-28EC;BRAILLE PATTERN DOTS-34678;So;0;L;;;;;N;;;;;-28ED;BRAILLE PATTERN DOTS-134678;So;0;L;;;;;N;;;;;-28EE;BRAILLE PATTERN DOTS-234678;So;0;L;;;;;N;;;;;-28EF;BRAILLE PATTERN DOTS-1234678;So;0;L;;;;;N;;;;;-28F0;BRAILLE PATTERN DOTS-5678;So;0;L;;;;;N;;;;;-28F1;BRAILLE PATTERN DOTS-15678;So;0;L;;;;;N;;;;;-28F2;BRAILLE PATTERN DOTS-25678;So;0;L;;;;;N;;;;;-28F3;BRAILLE PATTERN DOTS-125678;So;0;L;;;;;N;;;;;-28F4;BRAILLE PATTERN DOTS-35678;So;0;L;;;;;N;;;;;-28F5;BRAILLE PATTERN DOTS-135678;So;0;L;;;;;N;;;;;-28F6;BRAILLE PATTERN DOTS-235678;So;0;L;;;;;N;;;;;-28F7;BRAILLE PATTERN DOTS-1235678;So;0;L;;;;;N;;;;;-28F8;BRAILLE PATTERN DOTS-45678;So;0;L;;;;;N;;;;;-28F9;BRAILLE PATTERN DOTS-145678;So;0;L;;;;;N;;;;;-28FA;BRAILLE PATTERN DOTS-245678;So;0;L;;;;;N;;;;;-28FB;BRAILLE PATTERN DOTS-1245678;So;0;L;;;;;N;;;;;-28FC;BRAILLE PATTERN DOTS-345678;So;0;L;;;;;N;;;;;-28FD;BRAILLE PATTERN DOTS-1345678;So;0;L;;;;;N;;;;;-28FE;BRAILLE PATTERN DOTS-2345678;So;0;L;;;;;N;;;;;-28FF;BRAILLE PATTERN DOTS-12345678;So;0;L;;;;;N;;;;;-2900;RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2901;RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2902;LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2903;RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2904;LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2905;RIGHTWARDS TWO-HEADED ARROW FROM BAR;Sm;0;ON;;;;;N;;;;;-2906;LEFTWARDS DOUBLE ARROW FROM BAR;Sm;0;ON;;;;;N;;;;;-2907;RIGHTWARDS DOUBLE ARROW FROM BAR;Sm;0;ON;;;;;N;;;;;-2908;DOWNWARDS ARROW WITH HORIZONTAL STROKE;Sm;0;ON;;;;;N;;;;;-2909;UPWARDS ARROW WITH HORIZONTAL STROKE;Sm;0;ON;;;;;N;;;;;-290A;UPWARDS TRIPLE ARROW;Sm;0;ON;;;;;N;;;;;-290B;DOWNWARDS TRIPLE ARROW;Sm;0;ON;;;;;N;;;;;-290C;LEFTWARDS DOUBLE DASH ARROW;Sm;0;ON;;;;;N;;;;;-290D;RIGHTWARDS DOUBLE DASH ARROW;Sm;0;ON;;;;;N;;;;;-290E;LEFTWARDS TRIPLE DASH ARROW;Sm;0;ON;;;;;N;;;;;-290F;RIGHTWARDS TRIPLE DASH ARROW;Sm;0;ON;;;;;N;;;;;-2910;RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW;Sm;0;ON;;;;;N;;;;;-2911;RIGHTWARDS ARROW WITH DOTTED STEM;Sm;0;ON;;;;;N;;;;;-2912;UPWARDS ARROW TO BAR;Sm;0;ON;;;;;N;;;;;-2913;DOWNWARDS ARROW TO BAR;Sm;0;ON;;;;;N;;;;;-2914;RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2915;RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2916;RIGHTWARDS TWO-HEADED ARROW WITH TAIL;Sm;0;ON;;;;;N;;;;;-2917;RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2918;RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2919;LEFTWARDS ARROW-TAIL;Sm;0;ON;;;;;N;;;;;-291A;RIGHTWARDS ARROW-TAIL;Sm;0;ON;;;;;N;;;;;-291B;LEFTWARDS DOUBLE ARROW-TAIL;Sm;0;ON;;;;;N;;;;;-291C;RIGHTWARDS DOUBLE ARROW-TAIL;Sm;0;ON;;;;;N;;;;;-291D;LEFTWARDS ARROW TO BLACK DIAMOND;Sm;0;ON;;;;;N;;;;;-291E;RIGHTWARDS ARROW TO BLACK DIAMOND;Sm;0;ON;;;;;N;;;;;-291F;LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND;Sm;0;ON;;;;;N;;;;;-2920;RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND;Sm;0;ON;;;;;N;;;;;-2921;NORTH WEST AND SOUTH EAST ARROW;Sm;0;ON;;;;;N;;;;;-2922;NORTH EAST AND SOUTH WEST ARROW;Sm;0;ON;;;;;N;;;;;-2923;NORTH WEST ARROW WITH HOOK;Sm;0;ON;;;;;N;;;;;-2924;NORTH EAST ARROW WITH HOOK;Sm;0;ON;;;;;N;;;;;-2925;SOUTH EAST ARROW WITH HOOK;Sm;0;ON;;;;;N;;;;;-2926;SOUTH WEST ARROW WITH HOOK;Sm;0;ON;;;;;N;;;;;-2927;NORTH WEST ARROW AND NORTH EAST ARROW;Sm;0;ON;;;;;N;;;;;-2928;NORTH EAST ARROW AND SOUTH EAST ARROW;Sm;0;ON;;;;;N;;;;;-2929;SOUTH EAST ARROW AND SOUTH WEST ARROW;Sm;0;ON;;;;;N;;;;;-292A;SOUTH WEST ARROW AND NORTH WEST ARROW;Sm;0;ON;;;;;N;;;;;-292B;RISING DIAGONAL CROSSING FALLING DIAGONAL;Sm;0;ON;;;;;N;;;;;-292C;FALLING DIAGONAL CROSSING RISING DIAGONAL;Sm;0;ON;;;;;N;;;;;-292D;SOUTH EAST ARROW CROSSING NORTH EAST ARROW;Sm;0;ON;;;;;N;;;;;-292E;NORTH EAST ARROW CROSSING SOUTH EAST ARROW;Sm;0;ON;;;;;N;;;;;-292F;FALLING DIAGONAL CROSSING NORTH EAST ARROW;Sm;0;ON;;;;;N;;;;;-2930;RISING DIAGONAL CROSSING SOUTH EAST ARROW;Sm;0;ON;;;;;N;;;;;-2931;NORTH EAST ARROW CROSSING NORTH WEST ARROW;Sm;0;ON;;;;;N;;;;;-2932;NORTH WEST ARROW CROSSING NORTH EAST ARROW;Sm;0;ON;;;;;N;;;;;-2933;WAVE ARROW POINTING DIRECTLY RIGHT;Sm;0;ON;;;;;N;;;;;-2934;ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS;Sm;0;ON;;;;;N;;;;;-2935;ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS;Sm;0;ON;;;;;N;;;;;-2936;ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS;Sm;0;ON;;;;;N;;;;;-2937;ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS;Sm;0;ON;;;;;N;;;;;-2938;RIGHT-SIDE ARC CLOCKWISE ARROW;Sm;0;ON;;;;;N;;;;;-2939;LEFT-SIDE ARC ANTICLOCKWISE ARROW;Sm;0;ON;;;;;N;;;;;-293A;TOP ARC ANTICLOCKWISE ARROW;Sm;0;ON;;;;;N;;;;;-293B;BOTTOM ARC ANTICLOCKWISE ARROW;Sm;0;ON;;;;;N;;;;;-293C;TOP ARC CLOCKWISE ARROW WITH MINUS;Sm;0;ON;;;;;N;;;;;-293D;TOP ARC ANTICLOCKWISE ARROW WITH PLUS;Sm;0;ON;;;;;N;;;;;-293E;LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW;Sm;0;ON;;;;;N;;;;;-293F;LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW;Sm;0;ON;;;;;N;;;;;-2940;ANTICLOCKWISE CLOSED CIRCLE ARROW;Sm;0;ON;;;;;N;;;;;-2941;CLOCKWISE CLOSED CIRCLE ARROW;Sm;0;ON;;;;;N;;;;;-2942;RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2943;LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2944;SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2945;RIGHTWARDS ARROW WITH PLUS BELOW;Sm;0;ON;;;;;N;;;;;-2946;LEFTWARDS ARROW WITH PLUS BELOW;Sm;0;ON;;;;;N;;;;;-2947;RIGHTWARDS ARROW THROUGH X;Sm;0;ON;;;;;N;;;;;-2948;LEFT RIGHT ARROW THROUGH SMALL CIRCLE;Sm;0;ON;;;;;N;;;;;-2949;UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE;Sm;0;ON;;;;;N;;;;;-294A;LEFT BARB UP RIGHT BARB DOWN HARPOON;Sm;0;ON;;;;;N;;;;;-294B;LEFT BARB DOWN RIGHT BARB UP HARPOON;Sm;0;ON;;;;;N;;;;;-294C;UP BARB RIGHT DOWN BARB LEFT HARPOON;Sm;0;ON;;;;;N;;;;;-294D;UP BARB LEFT DOWN BARB RIGHT HARPOON;Sm;0;ON;;;;;N;;;;;-294E;LEFT BARB UP RIGHT BARB UP HARPOON;Sm;0;ON;;;;;N;;;;;-294F;UP BARB RIGHT DOWN BARB RIGHT HARPOON;Sm;0;ON;;;;;N;;;;;-2950;LEFT BARB DOWN RIGHT BARB DOWN HARPOON;Sm;0;ON;;;;;N;;;;;-2951;UP BARB LEFT DOWN BARB LEFT HARPOON;Sm;0;ON;;;;;N;;;;;-2952;LEFTWARDS HARPOON WITH BARB UP TO BAR;Sm;0;ON;;;;;N;;;;;-2953;RIGHTWARDS HARPOON WITH BARB UP TO BAR;Sm;0;ON;;;;;N;;;;;-2954;UPWARDS HARPOON WITH BARB RIGHT TO BAR;Sm;0;ON;;;;;N;;;;;-2955;DOWNWARDS HARPOON WITH BARB RIGHT TO BAR;Sm;0;ON;;;;;N;;;;;-2956;LEFTWARDS HARPOON WITH BARB DOWN TO BAR;Sm;0;ON;;;;;N;;;;;-2957;RIGHTWARDS HARPOON WITH BARB DOWN TO BAR;Sm;0;ON;;;;;N;;;;;-2958;UPWARDS HARPOON WITH BARB LEFT TO BAR;Sm;0;ON;;;;;N;;;;;-2959;DOWNWARDS HARPOON WITH BARB LEFT TO BAR;Sm;0;ON;;;;;N;;;;;-295A;LEFTWARDS HARPOON WITH BARB UP FROM BAR;Sm;0;ON;;;;;N;;;;;-295B;RIGHTWARDS HARPOON WITH BARB UP FROM BAR;Sm;0;ON;;;;;N;;;;;-295C;UPWARDS HARPOON WITH BARB RIGHT FROM BAR;Sm;0;ON;;;;;N;;;;;-295D;DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR;Sm;0;ON;;;;;N;;;;;-295E;LEFTWARDS HARPOON WITH BARB DOWN FROM BAR;Sm;0;ON;;;;;N;;;;;-295F;RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR;Sm;0;ON;;;;;N;;;;;-2960;UPWARDS HARPOON WITH BARB LEFT FROM BAR;Sm;0;ON;;;;;N;;;;;-2961;DOWNWARDS HARPOON WITH BARB LEFT FROM BAR;Sm;0;ON;;;;;N;;;;;-2962;LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN;Sm;0;ON;;;;;N;;;;;-2963;UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT;Sm;0;ON;;;;;N;;;;;-2964;RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN;Sm;0;ON;;;;;N;;;;;-2965;DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT;Sm;0;ON;;;;;N;;;;;-2966;LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP;Sm;0;ON;;;;;N;;;;;-2967;LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN;Sm;0;ON;;;;;N;;;;;-2968;RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP;Sm;0;ON;;;;;N;;;;;-2969;RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN;Sm;0;ON;;;;;N;;;;;-296A;LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH;Sm;0;ON;;;;;N;;;;;-296B;LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH;Sm;0;ON;;;;;N;;;;;-296C;RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH;Sm;0;ON;;;;;N;;;;;-296D;RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH;Sm;0;ON;;;;;N;;;;;-296E;UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT;Sm;0;ON;;;;;N;;;;;-296F;DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT;Sm;0;ON;;;;;N;;;;;-2970;RIGHT DOUBLE ARROW WITH ROUNDED HEAD;Sm;0;ON;;;;;N;;;;;-2971;EQUALS SIGN ABOVE RIGHTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2972;TILDE OPERATOR ABOVE RIGHTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2973;LEFTWARDS ARROW ABOVE TILDE OPERATOR;Sm;0;ON;;;;;N;;;;;-2974;RIGHTWARDS ARROW ABOVE TILDE OPERATOR;Sm;0;ON;;;;;N;;;;;-2975;RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO;Sm;0;ON;;;;;N;;;;;-2976;LESS-THAN ABOVE LEFTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2977;LEFTWARDS ARROW THROUGH LESS-THAN;Sm;0;ON;;;;;N;;;;;-2978;GREATER-THAN ABOVE RIGHTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2979;SUBSET ABOVE RIGHTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-297A;LEFTWARDS ARROW THROUGH SUBSET;Sm;0;ON;;;;;N;;;;;-297B;SUPERSET ABOVE LEFTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-297C;LEFT FISH TAIL;Sm;0;ON;;;;;N;;;;;-297D;RIGHT FISH TAIL;Sm;0;ON;;;;;N;;;;;-297E;UP FISH TAIL;Sm;0;ON;;;;;N;;;;;-297F;DOWN FISH TAIL;Sm;0;ON;;;;;N;;;;;-2980;TRIPLE VERTICAL BAR DELIMITER;Sm;0;ON;;;;;N;;;;;-2981;Z NOTATION SPOT;Sm;0;ON;;;;;N;;;;;-2982;Z NOTATION TYPE COLON;Sm;0;ON;;;;;N;;;;;-2983;LEFT WHITE CURLY BRACKET;Ps;0;ON;;;;;Y;;;;;-2984;RIGHT WHITE CURLY BRACKET;Pe;0;ON;;;;;Y;;;;;-2985;LEFT WHITE PARENTHESIS;Ps;0;ON;;;;;Y;;;;;-2986;RIGHT WHITE PARENTHESIS;Pe;0;ON;;;;;Y;;;;;-2987;Z NOTATION LEFT IMAGE BRACKET;Ps;0;ON;;;;;Y;;;;;-2988;Z NOTATION RIGHT IMAGE BRACKET;Pe;0;ON;;;;;Y;;;;;-2989;Z NOTATION LEFT BINDING BRACKET;Ps;0;ON;;;;;Y;;;;;-298A;Z NOTATION RIGHT BINDING BRACKET;Pe;0;ON;;;;;Y;;;;;-298B;LEFT SQUARE BRACKET WITH UNDERBAR;Ps;0;ON;;;;;Y;;;;;-298C;RIGHT SQUARE BRACKET WITH UNDERBAR;Pe;0;ON;;;;;Y;;;;;-298D;LEFT SQUARE BRACKET WITH TICK IN TOP CORNER;Ps;0;ON;;;;;Y;;;;;-298E;RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER;Pe;0;ON;;;;;Y;;;;;-298F;LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER;Ps;0;ON;;;;;Y;;;;;-2990;RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER;Pe;0;ON;;;;;Y;;;;;-2991;LEFT ANGLE BRACKET WITH DOT;Ps;0;ON;;;;;Y;;;;;-2992;RIGHT ANGLE BRACKET WITH DOT;Pe;0;ON;;;;;Y;;;;;-2993;LEFT ARC LESS-THAN BRACKET;Ps;0;ON;;;;;Y;;;;;-2994;RIGHT ARC GREATER-THAN BRACKET;Pe;0;ON;;;;;Y;;;;;-2995;DOUBLE LEFT ARC GREATER-THAN BRACKET;Ps;0;ON;;;;;Y;;;;;-2996;DOUBLE RIGHT ARC LESS-THAN BRACKET;Pe;0;ON;;;;;Y;;;;;-2997;LEFT BLACK TORTOISE SHELL BRACKET;Ps;0;ON;;;;;Y;;;;;-2998;RIGHT BLACK TORTOISE SHELL BRACKET;Pe;0;ON;;;;;Y;;;;;-2999;DOTTED FENCE;Sm;0;ON;;;;;N;;;;;-299A;VERTICAL ZIGZAG LINE;Sm;0;ON;;;;;N;;;;;-299B;MEASURED ANGLE OPENING LEFT;Sm;0;ON;;;;;Y;;;;;-299C;RIGHT ANGLE VARIANT WITH SQUARE;Sm;0;ON;;;;;Y;;;;;-299D;MEASURED RIGHT ANGLE WITH DOT;Sm;0;ON;;;;;Y;;;;;-299E;ANGLE WITH S INSIDE;Sm;0;ON;;;;;Y;;;;;-299F;ACUTE ANGLE;Sm;0;ON;;;;;Y;;;;;-29A0;SPHERICAL ANGLE OPENING LEFT;Sm;0;ON;;;;;Y;;;;;-29A1;SPHERICAL ANGLE OPENING UP;Sm;0;ON;;;;;Y;;;;;-29A2;TURNED ANGLE;Sm;0;ON;;;;;Y;;;;;-29A3;REVERSED ANGLE;Sm;0;ON;;;;;Y;;;;;-29A4;ANGLE WITH UNDERBAR;Sm;0;ON;;;;;Y;;;;;-29A5;REVERSED ANGLE WITH UNDERBAR;Sm;0;ON;;;;;Y;;;;;-29A6;OBLIQUE ANGLE OPENING UP;Sm;0;ON;;;;;Y;;;;;-29A7;OBLIQUE ANGLE OPENING DOWN;Sm;0;ON;;;;;Y;;;;;-29A8;MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT;Sm;0;ON;;;;;Y;;;;;-29A9;MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT;Sm;0;ON;;;;;Y;;;;;-29AA;MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT;Sm;0;ON;;;;;Y;;;;;-29AB;MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT;Sm;0;ON;;;;;Y;;;;;-29AC;MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP;Sm;0;ON;;;;;Y;;;;;-29AD;MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP;Sm;0;ON;;;;;Y;;;;;-29AE;MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN;Sm;0;ON;;;;;Y;;;;;-29AF;MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN;Sm;0;ON;;;;;Y;;;;;-29B0;REVERSED EMPTY SET;Sm;0;ON;;;;;N;;;;;-29B1;EMPTY SET WITH OVERBAR;Sm;0;ON;;;;;N;;;;;-29B2;EMPTY SET WITH SMALL CIRCLE ABOVE;Sm;0;ON;;;;;N;;;;;-29B3;EMPTY SET WITH RIGHT ARROW ABOVE;Sm;0;ON;;;;;N;;;;;-29B4;EMPTY SET WITH LEFT ARROW ABOVE;Sm;0;ON;;;;;N;;;;;-29B5;CIRCLE WITH HORIZONTAL BAR;Sm;0;ON;;;;;N;;;;;-29B6;CIRCLED VERTICAL BAR;Sm;0;ON;;;;;N;;;;;-29B7;CIRCLED PARALLEL;Sm;0;ON;;;;;N;;;;;-29B8;CIRCLED REVERSE SOLIDUS;Sm;0;ON;;;;;Y;;;;;-29B9;CIRCLED PERPENDICULAR;Sm;0;ON;;;;;N;;;;;-29BA;CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR;Sm;0;ON;;;;;N;;;;;-29BB;CIRCLE WITH SUPERIMPOSED X;Sm;0;ON;;;;;N;;;;;-29BC;CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN;Sm;0;ON;;;;;N;;;;;-29BD;UP ARROW THROUGH CIRCLE;Sm;0;ON;;;;;N;;;;;-29BE;CIRCLED WHITE BULLET;Sm;0;ON;;;;;N;;;;;-29BF;CIRCLED BULLET;Sm;0;ON;;;;;N;;;;;-29C0;CIRCLED LESS-THAN;Sm;0;ON;;;;;Y;;;;;-29C1;CIRCLED GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-29C2;CIRCLE WITH SMALL CIRCLE TO THE RIGHT;Sm;0;ON;;;;;Y;;;;;-29C3;CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT;Sm;0;ON;;;;;Y;;;;;-29C4;SQUARED RISING DIAGONAL SLASH;Sm;0;ON;;;;;Y;;;;;-29C5;SQUARED FALLING DIAGONAL SLASH;Sm;0;ON;;;;;Y;;;;;-29C6;SQUARED ASTERISK;Sm;0;ON;;;;;N;;;;;-29C7;SQUARED SMALL CIRCLE;Sm;0;ON;;;;;N;;;;;-29C8;SQUARED SQUARE;Sm;0;ON;;;;;N;;;;;-29C9;TWO JOINED SQUARES;Sm;0;ON;;;;;Y;;;;;-29CA;TRIANGLE WITH DOT ABOVE;Sm;0;ON;;;;;N;;;;;-29CB;TRIANGLE WITH UNDERBAR;Sm;0;ON;;;;;N;;;;;-29CC;S IN TRIANGLE;Sm;0;ON;;;;;N;;;;;-29CD;TRIANGLE WITH SERIFS AT BOTTOM;Sm;0;ON;;;;;N;;;;;-29CE;RIGHT TRIANGLE ABOVE LEFT TRIANGLE;Sm;0;ON;;;;;Y;;;;;-29CF;LEFT TRIANGLE BESIDE VERTICAL BAR;Sm;0;ON;;;;;Y;;;;;-29D0;VERTICAL BAR BESIDE RIGHT TRIANGLE;Sm;0;ON;;;;;Y;;;;;-29D1;BOWTIE WITH LEFT HALF BLACK;Sm;0;ON;;;;;Y;;;;;-29D2;BOWTIE WITH RIGHT HALF BLACK;Sm;0;ON;;;;;Y;;;;;-29D3;BLACK BOWTIE;Sm;0;ON;;;;;N;;;;;-29D4;TIMES WITH LEFT HALF BLACK;Sm;0;ON;;;;;Y;;;;;-29D5;TIMES WITH RIGHT HALF BLACK;Sm;0;ON;;;;;Y;;;;;-29D6;WHITE HOURGLASS;Sm;0;ON;;;;;N;;;;;-29D7;BLACK HOURGLASS;Sm;0;ON;;;;;N;;;;;-29D8;LEFT WIGGLY FENCE;Ps;0;ON;;;;;Y;;;;;-29D9;RIGHT WIGGLY FENCE;Pe;0;ON;;;;;Y;;;;;-29DA;LEFT DOUBLE WIGGLY FENCE;Ps;0;ON;;;;;Y;;;;;-29DB;RIGHT DOUBLE WIGGLY FENCE;Pe;0;ON;;;;;Y;;;;;-29DC;INCOMPLETE INFINITY;Sm;0;ON;;;;;Y;;;;;-29DD;TIE OVER INFINITY;Sm;0;ON;;;;;N;;;;;-29DE;INFINITY NEGATED WITH VERTICAL BAR;Sm;0;ON;;;;;N;;;;;-29DF;DOUBLE-ENDED MULTIMAP;Sm;0;ON;;;;;N;;;;;-29E0;SQUARE WITH CONTOURED OUTLINE;Sm;0;ON;;;;;N;;;;;-29E1;INCREASES AS;Sm;0;ON;;;;;Y;;;;;-29E2;SHUFFLE PRODUCT;Sm;0;ON;;;;;N;;;;;-29E3;EQUALS SIGN AND SLANTED PARALLEL;Sm;0;ON;;;;;Y;;;;;-29E4;EQUALS SIGN AND SLANTED PARALLEL WITH TILDE ABOVE;Sm;0;ON;;;;;Y;;;;;-29E5;IDENTICAL TO AND SLANTED PARALLEL;Sm;0;ON;;;;;Y;;;;;-29E6;GLEICH STARK;Sm;0;ON;;;;;N;;;;;-29E7;THERMODYNAMIC;Sm;0;ON;;;;;N;;;;;-29E8;DOWN-POINTING TRIANGLE WITH LEFT HALF BLACK;Sm;0;ON;;;;;Y;;;;;-29E9;DOWN-POINTING TRIANGLE WITH RIGHT HALF BLACK;Sm;0;ON;;;;;Y;;;;;-29EA;BLACK DIAMOND WITH DOWN ARROW;Sm;0;ON;;;;;N;;;;;-29EB;BLACK LOZENGE;Sm;0;ON;;;;;N;;;;;-29EC;WHITE CIRCLE WITH DOWN ARROW;Sm;0;ON;;;;;N;;;;;-29ED;BLACK CIRCLE WITH DOWN ARROW;Sm;0;ON;;;;;N;;;;;-29EE;ERROR-BARRED WHITE SQUARE;Sm;0;ON;;;;;N;;;;;-29EF;ERROR-BARRED BLACK SQUARE;Sm;0;ON;;;;;N;;;;;-29F0;ERROR-BARRED WHITE DIAMOND;Sm;0;ON;;;;;N;;;;;-29F1;ERROR-BARRED BLACK DIAMOND;Sm;0;ON;;;;;N;;;;;-29F2;ERROR-BARRED WHITE CIRCLE;Sm;0;ON;;;;;N;;;;;-29F3;ERROR-BARRED BLACK CIRCLE;Sm;0;ON;;;;;N;;;;;-29F4;RULE-DELAYED;Sm;0;ON;;;;;Y;;;;;-29F5;REVERSE SOLIDUS OPERATOR;Sm;0;ON;;;;;Y;;;;;-29F6;SOLIDUS WITH OVERBAR;Sm;0;ON;;;;;Y;;;;;-29F7;REVERSE SOLIDUS WITH HORIZONTAL STROKE;Sm;0;ON;;;;;Y;;;;;-29F8;BIG SOLIDUS;Sm;0;ON;;;;;Y;;;;;-29F9;BIG REVERSE SOLIDUS;Sm;0;ON;;;;;Y;;;;;-29FA;DOUBLE PLUS;Sm;0;ON;;;;;N;;;;;-29FB;TRIPLE PLUS;Sm;0;ON;;;;;N;;;;;-29FC;LEFT-POINTING CURVED ANGLE BRACKET;Ps;0;ON;;;;;Y;;;;;-29FD;RIGHT-POINTING CURVED ANGLE BRACKET;Pe;0;ON;;;;;Y;;;;;-29FE;TINY;Sm;0;ON;;;;;N;;;;;-29FF;MINY;Sm;0;ON;;;;;N;;;;;-2A00;N-ARY CIRCLED DOT OPERATOR;Sm;0;ON;;;;;N;;;;;-2A01;N-ARY CIRCLED PLUS OPERATOR;Sm;0;ON;;;;;N;;;;;-2A02;N-ARY CIRCLED TIMES OPERATOR;Sm;0;ON;;;;;N;;;;;-2A03;N-ARY UNION OPERATOR WITH DOT;Sm;0;ON;;;;;N;;;;;-2A04;N-ARY UNION OPERATOR WITH PLUS;Sm;0;ON;;;;;N;;;;;-2A05;N-ARY SQUARE INTERSECTION OPERATOR;Sm;0;ON;;;;;N;;;;;-2A06;N-ARY SQUARE UNION OPERATOR;Sm;0;ON;;;;;N;;;;;-2A07;TWO LOGICAL AND OPERATOR;Sm;0;ON;;;;;N;;;;;-2A08;TWO LOGICAL OR OPERATOR;Sm;0;ON;;;;;N;;;;;-2A09;N-ARY TIMES OPERATOR;Sm;0;ON;;;;;N;;;;;-2A0A;MODULO TWO SUM;Sm;0;ON;;;;;Y;;;;;-2A0B;SUMMATION WITH INTEGRAL;Sm;0;ON;;;;;Y;;;;;-2A0C;QUADRUPLE INTEGRAL OPERATOR;Sm;0;ON;<compat> 222B 222B 222B 222B;;;;Y;;;;;-2A0D;FINITE PART INTEGRAL;Sm;0;ON;;;;;Y;;;;;-2A0E;INTEGRAL WITH DOUBLE STROKE;Sm;0;ON;;;;;Y;;;;;-2A0F;INTEGRAL AVERAGE WITH SLASH;Sm;0;ON;;;;;Y;;;;;-2A10;CIRCULATION FUNCTION;Sm;0;ON;;;;;Y;;;;;-2A11;ANTICLOCKWISE INTEGRATION;Sm;0;ON;;;;;Y;;;;;-2A12;LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE;Sm;0;ON;;;;;Y;;;;;-2A13;LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE;Sm;0;ON;;;;;Y;;;;;-2A14;LINE INTEGRATION NOT INCLUDING THE POLE;Sm;0;ON;;;;;Y;;;;;-2A15;INTEGRAL AROUND A POINT OPERATOR;Sm;0;ON;;;;;Y;;;;;-2A16;QUATERNION INTEGRAL OPERATOR;Sm;0;ON;;;;;Y;;;;;-2A17;INTEGRAL WITH LEFTWARDS ARROW WITH HOOK;Sm;0;ON;;;;;Y;;;;;-2A18;INTEGRAL WITH TIMES SIGN;Sm;0;ON;;;;;Y;;;;;-2A19;INTEGRAL WITH INTERSECTION;Sm;0;ON;;;;;Y;;;;;-2A1A;INTEGRAL WITH UNION;Sm;0;ON;;;;;Y;;;;;-2A1B;INTEGRAL WITH OVERBAR;Sm;0;ON;;;;;Y;;;;;-2A1C;INTEGRAL WITH UNDERBAR;Sm;0;ON;;;;;Y;;;;;-2A1D;JOIN;Sm;0;ON;;;;;N;;;;;-2A1E;LARGE LEFT TRIANGLE OPERATOR;Sm;0;ON;;;;;Y;;;;;-2A1F;Z NOTATION SCHEMA COMPOSITION;Sm;0;ON;;;;;Y;;;;;-2A20;Z NOTATION SCHEMA PIPING;Sm;0;ON;;;;;Y;;;;;-2A21;Z NOTATION SCHEMA PROJECTION;Sm;0;ON;;;;;Y;;;;;-2A22;PLUS SIGN WITH SMALL CIRCLE ABOVE;Sm;0;ON;;;;;N;;;;;-2A23;PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE;Sm;0;ON;;;;;N;;;;;-2A24;PLUS SIGN WITH TILDE ABOVE;Sm;0;ON;;;;;Y;;;;;-2A25;PLUS SIGN WITH DOT BELOW;Sm;0;ON;;;;;N;;;;;-2A26;PLUS SIGN WITH TILDE BELOW;Sm;0;ON;;;;;Y;;;;;-2A27;PLUS SIGN WITH SUBSCRIPT TWO;Sm;0;ON;;;;;N;;;;;-2A28;PLUS SIGN WITH BLACK TRIANGLE;Sm;0;ON;;;;;N;;;;;-2A29;MINUS SIGN WITH COMMA ABOVE;Sm;0;ON;;;;;Y;;;;;-2A2A;MINUS SIGN WITH DOT BELOW;Sm;0;ON;;;;;N;;;;;-2A2B;MINUS SIGN WITH FALLING DOTS;Sm;0;ON;;;;;Y;;;;;-2A2C;MINUS SIGN WITH RISING DOTS;Sm;0;ON;;;;;Y;;;;;-2A2D;PLUS SIGN IN LEFT HALF CIRCLE;Sm;0;ON;;;;;Y;;;;;-2A2E;PLUS SIGN IN RIGHT HALF CIRCLE;Sm;0;ON;;;;;Y;;;;;-2A2F;VECTOR OR CROSS PRODUCT;Sm;0;ON;;;;;N;;;;;-2A30;MULTIPLICATION SIGN WITH DOT ABOVE;Sm;0;ON;;;;;N;;;;;-2A31;MULTIPLICATION SIGN WITH UNDERBAR;Sm;0;ON;;;;;N;;;;;-2A32;SEMIDIRECT PRODUCT WITH BOTTOM CLOSED;Sm;0;ON;;;;;N;;;;;-2A33;SMASH PRODUCT;Sm;0;ON;;;;;N;;;;;-2A34;MULTIPLICATION SIGN IN LEFT HALF CIRCLE;Sm;0;ON;;;;;Y;;;;;-2A35;MULTIPLICATION SIGN IN RIGHT HALF CIRCLE;Sm;0;ON;;;;;Y;;;;;-2A36;CIRCLED MULTIPLICATION SIGN WITH CIRCUMFLEX ACCENT;Sm;0;ON;;;;;N;;;;;-2A37;MULTIPLICATION SIGN IN DOUBLE CIRCLE;Sm;0;ON;;;;;N;;;;;-2A38;CIRCLED DIVISION SIGN;Sm;0;ON;;;;;N;;;;;-2A39;PLUS SIGN IN TRIANGLE;Sm;0;ON;;;;;N;;;;;-2A3A;MINUS SIGN IN TRIANGLE;Sm;0;ON;;;;;N;;;;;-2A3B;MULTIPLICATION SIGN IN TRIANGLE;Sm;0;ON;;;;;N;;;;;-2A3C;INTERIOR PRODUCT;Sm;0;ON;;;;;Y;;;;;-2A3D;RIGHTHAND INTERIOR PRODUCT;Sm;0;ON;;;;;Y;;;;;-2A3E;Z NOTATION RELATIONAL COMPOSITION;Sm;0;ON;;;;;Y;;;;;-2A3F;AMALGAMATION OR COPRODUCT;Sm;0;ON;;;;;N;;;;;-2A40;INTERSECTION WITH DOT;Sm;0;ON;;;;;N;;;;;-2A41;UNION WITH MINUS SIGN;Sm;0;ON;;;;;N;;;;;-2A42;UNION WITH OVERBAR;Sm;0;ON;;;;;N;;;;;-2A43;INTERSECTION WITH OVERBAR;Sm;0;ON;;;;;N;;;;;-2A44;INTERSECTION WITH LOGICAL AND;Sm;0;ON;;;;;N;;;;;-2A45;UNION WITH LOGICAL OR;Sm;0;ON;;;;;N;;;;;-2A46;UNION ABOVE INTERSECTION;Sm;0;ON;;;;;N;;;;;-2A47;INTERSECTION ABOVE UNION;Sm;0;ON;;;;;N;;;;;-2A48;UNION ABOVE BAR ABOVE INTERSECTION;Sm;0;ON;;;;;N;;;;;-2A49;INTERSECTION ABOVE BAR ABOVE UNION;Sm;0;ON;;;;;N;;;;;-2A4A;UNION BESIDE AND JOINED WITH UNION;Sm;0;ON;;;;;N;;;;;-2A4B;INTERSECTION BESIDE AND JOINED WITH INTERSECTION;Sm;0;ON;;;;;N;;;;;-2A4C;CLOSED UNION WITH SERIFS;Sm;0;ON;;;;;N;;;;;-2A4D;CLOSED INTERSECTION WITH SERIFS;Sm;0;ON;;;;;N;;;;;-2A4E;DOUBLE SQUARE INTERSECTION;Sm;0;ON;;;;;N;;;;;-2A4F;DOUBLE SQUARE UNION;Sm;0;ON;;;;;N;;;;;-2A50;CLOSED UNION WITH SERIFS AND SMASH PRODUCT;Sm;0;ON;;;;;N;;;;;-2A51;LOGICAL AND WITH DOT ABOVE;Sm;0;ON;;;;;N;;;;;-2A52;LOGICAL OR WITH DOT ABOVE;Sm;0;ON;;;;;N;;;;;-2A53;DOUBLE LOGICAL AND;Sm;0;ON;;;;;N;;;;;-2A54;DOUBLE LOGICAL OR;Sm;0;ON;;;;;N;;;;;-2A55;TWO INTERSECTING LOGICAL AND;Sm;0;ON;;;;;N;;;;;-2A56;TWO INTERSECTING LOGICAL OR;Sm;0;ON;;;;;N;;;;;-2A57;SLOPING LARGE OR;Sm;0;ON;;;;;Y;;;;;-2A58;SLOPING LARGE AND;Sm;0;ON;;;;;Y;;;;;-2A59;LOGICAL OR OVERLAPPING LOGICAL AND;Sm;0;ON;;;;;N;;;;;-2A5A;LOGICAL AND WITH MIDDLE STEM;Sm;0;ON;;;;;N;;;;;-2A5B;LOGICAL OR WITH MIDDLE STEM;Sm;0;ON;;;;;N;;;;;-2A5C;LOGICAL AND WITH HORIZONTAL DASH;Sm;0;ON;;;;;N;;;;;-2A5D;LOGICAL OR WITH HORIZONTAL DASH;Sm;0;ON;;;;;N;;;;;-2A5E;LOGICAL AND WITH DOUBLE OVERBAR;Sm;0;ON;;;;;N;;;;;-2A5F;LOGICAL AND WITH UNDERBAR;Sm;0;ON;;;;;N;;;;;-2A60;LOGICAL AND WITH DOUBLE UNDERBAR;Sm;0;ON;;;;;N;;;;;-2A61;SMALL VEE WITH UNDERBAR;Sm;0;ON;;;;;N;;;;;-2A62;LOGICAL OR WITH DOUBLE OVERBAR;Sm;0;ON;;;;;N;;;;;-2A63;LOGICAL OR WITH DOUBLE UNDERBAR;Sm;0;ON;;;;;N;;;;;-2A64;Z NOTATION DOMAIN ANTIRESTRICTION;Sm;0;ON;;;;;Y;;;;;-2A65;Z NOTATION RANGE ANTIRESTRICTION;Sm;0;ON;;;;;Y;;;;;-2A66;EQUALS SIGN WITH DOT BELOW;Sm;0;ON;;;;;N;;;;;-2A67;IDENTICAL WITH DOT ABOVE;Sm;0;ON;;;;;N;;;;;-2A68;TRIPLE HORIZONTAL BAR WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2A69;TRIPLE HORIZONTAL BAR WITH TRIPLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2A6A;TILDE OPERATOR WITH DOT ABOVE;Sm;0;ON;;;;;Y;;;;;-2A6B;TILDE OPERATOR WITH RISING DOTS;Sm;0;ON;;;;;Y;;;;;-2A6C;SIMILAR MINUS SIMILAR;Sm;0;ON;;;;;Y;;;;;-2A6D;CONGRUENT WITH DOT ABOVE;Sm;0;ON;;;;;Y;;;;;-2A6E;EQUALS WITH ASTERISK;Sm;0;ON;;;;;N;;;;;-2A6F;ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT;Sm;0;ON;;;;;Y;;;;;-2A70;APPROXIMATELY EQUAL OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2A71;EQUALS SIGN ABOVE PLUS SIGN;Sm;0;ON;;;;;N;;;;;-2A72;PLUS SIGN ABOVE EQUALS SIGN;Sm;0;ON;;;;;N;;;;;-2A73;EQUALS SIGN ABOVE TILDE OPERATOR;Sm;0;ON;;;;;Y;;;;;-2A74;DOUBLE COLON EQUAL;Sm;0;ON;<compat> 003A 003A 003D;;;;Y;;;;;-2A75;TWO CONSECUTIVE EQUALS SIGNS;Sm;0;ON;<compat> 003D 003D;;;;N;;;;;-2A76;THREE CONSECUTIVE EQUALS SIGNS;Sm;0;ON;<compat> 003D 003D 003D;;;;N;;;;;-2A77;EQUALS SIGN WITH TWO DOTS ABOVE AND TWO DOTS BELOW;Sm;0;ON;;;;;N;;;;;-2A78;EQUIVALENT WITH FOUR DOTS ABOVE;Sm;0;ON;;;;;N;;;;;-2A79;LESS-THAN WITH CIRCLE INSIDE;Sm;0;ON;;;;;Y;;;;;-2A7A;GREATER-THAN WITH CIRCLE INSIDE;Sm;0;ON;;;;;Y;;;;;-2A7B;LESS-THAN WITH QUESTION MARK ABOVE;Sm;0;ON;;;;;Y;;;;;-2A7C;GREATER-THAN WITH QUESTION MARK ABOVE;Sm;0;ON;;;;;Y;;;;;-2A7D;LESS-THAN OR SLANTED EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2A7E;GREATER-THAN OR SLANTED EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2A7F;LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE;Sm;0;ON;;;;;Y;;;;;-2A80;GREATER-THAN OR SLANTED EQUAL TO WITH DOT INSIDE;Sm;0;ON;;;;;Y;;;;;-2A81;LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE;Sm;0;ON;;;;;Y;;;;;-2A82;GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE;Sm;0;ON;;;;;Y;;;;;-2A83;LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT;Sm;0;ON;;;;;Y;;;;;-2A84;GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT;Sm;0;ON;;;;;Y;;;;;-2A85;LESS-THAN OR APPROXIMATE;Sm;0;ON;;;;;Y;;;;;-2A86;GREATER-THAN OR APPROXIMATE;Sm;0;ON;;;;;Y;;;;;-2A87;LESS-THAN AND SINGLE-LINE NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2A88;GREATER-THAN AND SINGLE-LINE NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2A89;LESS-THAN AND NOT APPROXIMATE;Sm;0;ON;;;;;Y;;;;;-2A8A;GREATER-THAN AND NOT APPROXIMATE;Sm;0;ON;;;;;Y;;;;;-2A8B;LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-2A8C;GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN;Sm;0;ON;;;;;Y;;;;;-2A8D;LESS-THAN ABOVE SIMILAR OR EQUAL;Sm;0;ON;;;;;Y;;;;;-2A8E;GREATER-THAN ABOVE SIMILAR OR EQUAL;Sm;0;ON;;;;;Y;;;;;-2A8F;LESS-THAN ABOVE SIMILAR ABOVE GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-2A90;GREATER-THAN ABOVE SIMILAR ABOVE LESS-THAN;Sm;0;ON;;;;;Y;;;;;-2A91;LESS-THAN ABOVE GREATER-THAN ABOVE DOUBLE-LINE EQUAL;Sm;0;ON;;;;;Y;;;;;-2A92;GREATER-THAN ABOVE LESS-THAN ABOVE DOUBLE-LINE EQUAL;Sm;0;ON;;;;;Y;;;;;-2A93;LESS-THAN ABOVE SLANTED EQUAL ABOVE GREATER-THAN ABOVE SLANTED EQUAL;Sm;0;ON;;;;;Y;;;;;-2A94;GREATER-THAN ABOVE SLANTED EQUAL ABOVE LESS-THAN ABOVE SLANTED EQUAL;Sm;0;ON;;;;;Y;;;;;-2A95;SLANTED EQUAL TO OR LESS-THAN;Sm;0;ON;;;;;Y;;;;;-2A96;SLANTED EQUAL TO OR GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-2A97;SLANTED EQUAL TO OR LESS-THAN WITH DOT INSIDE;Sm;0;ON;;;;;Y;;;;;-2A98;SLANTED EQUAL TO OR GREATER-THAN WITH DOT INSIDE;Sm;0;ON;;;;;Y;;;;;-2A99;DOUBLE-LINE EQUAL TO OR LESS-THAN;Sm;0;ON;;;;;Y;;;;;-2A9A;DOUBLE-LINE EQUAL TO OR GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-2A9B;DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN;Sm;0;ON;;;;;Y;;;;;-2A9C;DOUBLE-LINE SLANTED EQUAL TO OR GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-2A9D;SIMILAR OR LESS-THAN;Sm;0;ON;;;;;Y;;;;;-2A9E;SIMILAR OR GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-2A9F;SIMILAR ABOVE LESS-THAN ABOVE EQUALS SIGN;Sm;0;ON;;;;;Y;;;;;-2AA0;SIMILAR ABOVE GREATER-THAN ABOVE EQUALS SIGN;Sm;0;ON;;;;;Y;;;;;-2AA1;DOUBLE NESTED LESS-THAN;Sm;0;ON;;;;;Y;;;;;-2AA2;DOUBLE NESTED GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-2AA3;DOUBLE NESTED LESS-THAN WITH UNDERBAR;Sm;0;ON;;;;;Y;;;;;-2AA4;GREATER-THAN OVERLAPPING LESS-THAN;Sm;0;ON;;;;;N;;;;;-2AA5;GREATER-THAN BESIDE LESS-THAN;Sm;0;ON;;;;;N;;;;;-2AA6;LESS-THAN CLOSED BY CURVE;Sm;0;ON;;;;;Y;;;;;-2AA7;GREATER-THAN CLOSED BY CURVE;Sm;0;ON;;;;;Y;;;;;-2AA8;LESS-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL;Sm;0;ON;;;;;Y;;;;;-2AA9;GREATER-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL;Sm;0;ON;;;;;Y;;;;;-2AAA;SMALLER THAN;Sm;0;ON;;;;;Y;;;;;-2AAB;LARGER THAN;Sm;0;ON;;;;;Y;;;;;-2AAC;SMALLER THAN OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AAD;LARGER THAN OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AAE;EQUALS SIGN WITH BUMPY ABOVE;Sm;0;ON;;;;;N;;;;;-2AAF;PRECEDES ABOVE SINGLE-LINE EQUALS SIGN;Sm;0;ON;;;;;Y;;;;;-2AB0;SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN;Sm;0;ON;;;;;Y;;;;;-2AB1;PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AB2;SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AB3;PRECEDES ABOVE EQUALS SIGN;Sm;0;ON;;;;;Y;;;;;-2AB4;SUCCEEDS ABOVE EQUALS SIGN;Sm;0;ON;;;;;Y;;;;;-2AB5;PRECEDES ABOVE NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AB6;SUCCEEDS ABOVE NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AB7;PRECEDES ABOVE ALMOST EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AB8;SUCCEEDS ABOVE ALMOST EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AB9;PRECEDES ABOVE NOT ALMOST EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2ABA;SUCCEEDS ABOVE NOT ALMOST EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2ABB;DOUBLE PRECEDES;Sm;0;ON;;;;;Y;;;;;-2ABC;DOUBLE SUCCEEDS;Sm;0;ON;;;;;Y;;;;;-2ABD;SUBSET WITH DOT;Sm;0;ON;;;;;Y;;;;;-2ABE;SUPERSET WITH DOT;Sm;0;ON;;;;;Y;;;;;-2ABF;SUBSET WITH PLUS SIGN BELOW;Sm;0;ON;;;;;Y;;;;;-2AC0;SUPERSET WITH PLUS SIGN BELOW;Sm;0;ON;;;;;Y;;;;;-2AC1;SUBSET WITH MULTIPLICATION SIGN BELOW;Sm;0;ON;;;;;Y;;;;;-2AC2;SUPERSET WITH MULTIPLICATION SIGN BELOW;Sm;0;ON;;;;;Y;;;;;-2AC3;SUBSET OF OR EQUAL TO WITH DOT ABOVE;Sm;0;ON;;;;;Y;;;;;-2AC4;SUPERSET OF OR EQUAL TO WITH DOT ABOVE;Sm;0;ON;;;;;Y;;;;;-2AC5;SUBSET OF ABOVE EQUALS SIGN;Sm;0;ON;;;;;Y;;;;;-2AC6;SUPERSET OF ABOVE EQUALS SIGN;Sm;0;ON;;;;;Y;;;;;-2AC7;SUBSET OF ABOVE TILDE OPERATOR;Sm;0;ON;;;;;Y;;;;;-2AC8;SUPERSET OF ABOVE TILDE OPERATOR;Sm;0;ON;;;;;Y;;;;;-2AC9;SUBSET OF ABOVE ALMOST EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2ACA;SUPERSET OF ABOVE ALMOST EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2ACB;SUBSET OF ABOVE NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2ACC;SUPERSET OF ABOVE NOT EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2ACD;SQUARE LEFT OPEN BOX OPERATOR;Sm;0;ON;;;;;Y;;;;;-2ACE;SQUARE RIGHT OPEN BOX OPERATOR;Sm;0;ON;;;;;Y;;;;;-2ACF;CLOSED SUBSET;Sm;0;ON;;;;;Y;;;;;-2AD0;CLOSED SUPERSET;Sm;0;ON;;;;;Y;;;;;-2AD1;CLOSED SUBSET OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AD2;CLOSED SUPERSET OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AD3;SUBSET ABOVE SUPERSET;Sm;0;ON;;;;;Y;;;;;-2AD4;SUPERSET ABOVE SUBSET;Sm;0;ON;;;;;Y;;;;;-2AD5;SUBSET ABOVE SUBSET;Sm;0;ON;;;;;Y;;;;;-2AD6;SUPERSET ABOVE SUPERSET;Sm;0;ON;;;;;Y;;;;;-2AD7;SUPERSET BESIDE SUBSET;Sm;0;ON;;;;;N;;;;;-2AD8;SUPERSET BESIDE AND JOINED BY DASH WITH SUBSET;Sm;0;ON;;;;;N;;;;;-2AD9;ELEMENT OF OPENING DOWNWARDS;Sm;0;ON;;;;;N;;;;;-2ADA;PITCHFORK WITH TEE TOP;Sm;0;ON;;;;;N;;;;;-2ADB;TRANSVERSAL INTERSECTION;Sm;0;ON;;;;;N;;;;;-2ADC;FORKING;Sm;0;ON;2ADD 0338;;;;Y;;;;;-2ADD;NONFORKING;Sm;0;ON;;;;;N;;;;;-2ADE;SHORT LEFT TACK;Sm;0;ON;;;;;Y;;;;;-2ADF;SHORT DOWN TACK;Sm;0;ON;;;;;N;;;;;-2AE0;SHORT UP TACK;Sm;0;ON;;;;;N;;;;;-2AE1;PERPENDICULAR WITH S;Sm;0;ON;;;;;N;;;;;-2AE2;VERTICAL BAR TRIPLE RIGHT TURNSTILE;Sm;0;ON;;;;;Y;;;;;-2AE3;DOUBLE VERTICAL BAR LEFT TURNSTILE;Sm;0;ON;;;;;Y;;;;;-2AE4;VERTICAL BAR DOUBLE LEFT TURNSTILE;Sm;0;ON;;;;;Y;;;;;-2AE5;DOUBLE VERTICAL BAR DOUBLE LEFT TURNSTILE;Sm;0;ON;;;;;Y;;;;;-2AE6;LONG DASH FROM LEFT MEMBER OF DOUBLE VERTICAL;Sm;0;ON;;;;;Y;;;;;-2AE7;SHORT DOWN TACK WITH OVERBAR;Sm;0;ON;;;;;N;;;;;-2AE8;SHORT UP TACK WITH UNDERBAR;Sm;0;ON;;;;;N;;;;;-2AE9;SHORT UP TACK ABOVE SHORT DOWN TACK;Sm;0;ON;;;;;N;;;;;-2AEA;DOUBLE DOWN TACK;Sm;0;ON;;;;;N;;;;;-2AEB;DOUBLE UP TACK;Sm;0;ON;;;;;N;;;;;-2AEC;DOUBLE STROKE NOT SIGN;Sm;0;ON;;;;;Y;;;;;-2AED;REVERSED DOUBLE STROKE NOT SIGN;Sm;0;ON;;;;;Y;;;;;-2AEE;DOES NOT DIVIDE WITH REVERSED NEGATION SLASH;Sm;0;ON;;;;;Y;;;;;-2AEF;VERTICAL LINE WITH CIRCLE ABOVE;Sm;0;ON;;;;;N;;;;;-2AF0;VERTICAL LINE WITH CIRCLE BELOW;Sm;0;ON;;;;;N;;;;;-2AF1;DOWN TACK WITH CIRCLE BELOW;Sm;0;ON;;;;;N;;;;;-2AF2;PARALLEL WITH HORIZONTAL STROKE;Sm;0;ON;;;;;N;;;;;-2AF3;PARALLEL WITH TILDE OPERATOR;Sm;0;ON;;;;;Y;;;;;-2AF4;TRIPLE VERTICAL BAR BINARY RELATION;Sm;0;ON;;;;;N;;;;;-2AF5;TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE;Sm;0;ON;;;;;N;;;;;-2AF6;TRIPLE COLON OPERATOR;Sm;0;ON;;;;;N;;;;;-2AF7;TRIPLE NESTED LESS-THAN;Sm;0;ON;;;;;Y;;;;;-2AF8;TRIPLE NESTED GREATER-THAN;Sm;0;ON;;;;;Y;;;;;-2AF9;DOUBLE-LINE SLANTED LESS-THAN OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AFA;DOUBLE-LINE SLANTED GREATER-THAN OR EQUAL TO;Sm;0;ON;;;;;Y;;;;;-2AFB;TRIPLE SOLIDUS BINARY RELATION;Sm;0;ON;;;;;Y;;;;;-2AFC;LARGE TRIPLE VERTICAL BAR OPERATOR;Sm;0;ON;;;;;N;;;;;-2AFD;DOUBLE SOLIDUS OPERATOR;Sm;0;ON;;;;;Y;;;;;-2AFE;WHITE VERTICAL BAR;Sm;0;ON;;;;;N;;;;;-2AFF;N-ARY WHITE VERTICAL BAR;Sm;0;ON;;;;;N;;;;;-2B00;NORTH EAST WHITE ARROW;So;0;ON;;;;;N;;;;;-2B01;NORTH WEST WHITE ARROW;So;0;ON;;;;;N;;;;;-2B02;SOUTH EAST WHITE ARROW;So;0;ON;;;;;N;;;;;-2B03;SOUTH WEST WHITE ARROW;So;0;ON;;;;;N;;;;;-2B04;LEFT RIGHT WHITE ARROW;So;0;ON;;;;;N;;;;;-2B05;LEFTWARDS BLACK ARROW;So;0;ON;;;;;N;;;;;-2B06;UPWARDS BLACK ARROW;So;0;ON;;;;;N;;;;;-2B07;DOWNWARDS BLACK ARROW;So;0;ON;;;;;N;;;;;-2B08;NORTH EAST BLACK ARROW;So;0;ON;;;;;N;;;;;-2B09;NORTH WEST BLACK ARROW;So;0;ON;;;;;N;;;;;-2B0A;SOUTH EAST BLACK ARROW;So;0;ON;;;;;N;;;;;-2B0B;SOUTH WEST BLACK ARROW;So;0;ON;;;;;N;;;;;-2B0C;LEFT RIGHT BLACK ARROW;So;0;ON;;;;;N;;;;;-2B0D;UP DOWN BLACK ARROW;So;0;ON;;;;;N;;;;;-2B0E;RIGHTWARDS ARROW WITH TIP DOWNWARDS;So;0;ON;;;;;N;;;;;-2B0F;RIGHTWARDS ARROW WITH TIP UPWARDS;So;0;ON;;;;;N;;;;;-2B10;LEFTWARDS ARROW WITH TIP DOWNWARDS;So;0;ON;;;;;N;;;;;-2B11;LEFTWARDS ARROW WITH TIP UPWARDS;So;0;ON;;;;;N;;;;;-2B12;SQUARE WITH TOP HALF BLACK;So;0;ON;;;;;N;;;;;-2B13;SQUARE WITH BOTTOM HALF BLACK;So;0;ON;;;;;N;;;;;-2B14;SQUARE WITH UPPER RIGHT DIAGONAL HALF BLACK;So;0;ON;;;;;N;;;;;-2B15;SQUARE WITH LOWER LEFT DIAGONAL HALF BLACK;So;0;ON;;;;;N;;;;;-2B16;DIAMOND WITH LEFT HALF BLACK;So;0;ON;;;;;N;;;;;-2B17;DIAMOND WITH RIGHT HALF BLACK;So;0;ON;;;;;N;;;;;-2B18;DIAMOND WITH TOP HALF BLACK;So;0;ON;;;;;N;;;;;-2B19;DIAMOND WITH BOTTOM HALF BLACK;So;0;ON;;;;;N;;;;;-2B1A;DOTTED SQUARE;So;0;ON;;;;;N;;;;;-2B1B;BLACK LARGE SQUARE;So;0;ON;;;;;N;;;;;-2B1C;WHITE LARGE SQUARE;So;0;ON;;;;;N;;;;;-2B1D;BLACK VERY SMALL SQUARE;So;0;ON;;;;;N;;;;;-2B1E;WHITE VERY SMALL SQUARE;So;0;ON;;;;;N;;;;;-2B1F;BLACK PENTAGON;So;0;ON;;;;;N;;;;;-2B20;WHITE PENTAGON;So;0;ON;;;;;N;;;;;-2B21;WHITE HEXAGON;So;0;ON;;;;;N;;;;;-2B22;BLACK HEXAGON;So;0;ON;;;;;N;;;;;-2B23;HORIZONTAL BLACK HEXAGON;So;0;ON;;;;;N;;;;;-2B24;BLACK LARGE CIRCLE;So;0;ON;;;;;N;;;;;-2B25;BLACK MEDIUM DIAMOND;So;0;ON;;;;;N;;;;;-2B26;WHITE MEDIUM DIAMOND;So;0;ON;;;;;N;;;;;-2B27;BLACK MEDIUM LOZENGE;So;0;ON;;;;;N;;;;;-2B28;WHITE MEDIUM LOZENGE;So;0;ON;;;;;N;;;;;-2B29;BLACK SMALL DIAMOND;So;0;ON;;;;;N;;;;;-2B2A;BLACK SMALL LOZENGE;So;0;ON;;;;;N;;;;;-2B2B;WHITE SMALL LOZENGE;So;0;ON;;;;;N;;;;;-2B2C;BLACK HORIZONTAL ELLIPSE;So;0;ON;;;;;N;;;;;-2B2D;WHITE HORIZONTAL ELLIPSE;So;0;ON;;;;;N;;;;;-2B2E;BLACK VERTICAL ELLIPSE;So;0;ON;;;;;N;;;;;-2B2F;WHITE VERTICAL ELLIPSE;So;0;ON;;;;;N;;;;;-2B30;LEFT ARROW WITH SMALL CIRCLE;Sm;0;ON;;;;;N;;;;;-2B31;THREE LEFTWARDS ARROWS;Sm;0;ON;;;;;N;;;;;-2B32;LEFT ARROW WITH CIRCLED PLUS;Sm;0;ON;;;;;N;;;;;-2B33;LONG LEFTWARDS SQUIGGLE ARROW;Sm;0;ON;;;;;N;;;;;-2B34;LEFTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2B35;LEFTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2B36;LEFTWARDS TWO-HEADED ARROW FROM BAR;Sm;0;ON;;;;;N;;;;;-2B37;LEFTWARDS TWO-HEADED TRIPLE DASH ARROW;Sm;0;ON;;;;;N;;;;;-2B38;LEFTWARDS ARROW WITH DOTTED STEM;Sm;0;ON;;;;;N;;;;;-2B39;LEFTWARDS ARROW WITH TAIL WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2B3A;LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2B3B;LEFTWARDS TWO-HEADED ARROW WITH TAIL;Sm;0;ON;;;;;N;;;;;-2B3C;LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2B3D;LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE;Sm;0;ON;;;;;N;;;;;-2B3E;LEFTWARDS ARROW THROUGH X;Sm;0;ON;;;;;N;;;;;-2B3F;WAVE ARROW POINTING DIRECTLY LEFT;Sm;0;ON;;;;;N;;;;;-2B40;EQUALS SIGN ABOVE LEFTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2B41;REVERSE TILDE OPERATOR ABOVE LEFTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2B42;LEFTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO;Sm;0;ON;;;;;N;;;;;-2B43;RIGHTWARDS ARROW THROUGH GREATER-THAN;Sm;0;ON;;;;;N;;;;;-2B44;RIGHTWARDS ARROW THROUGH SUPERSET;Sm;0;ON;;;;;N;;;;;-2B45;LEFTWARDS QUADRUPLE ARROW;So;0;ON;;;;;N;;;;;-2B46;RIGHTWARDS QUADRUPLE ARROW;So;0;ON;;;;;N;;;;;-2B47;REVERSE TILDE OPERATOR ABOVE RIGHTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2B48;RIGHTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO;Sm;0;ON;;;;;N;;;;;-2B49;TILDE OPERATOR ABOVE LEFTWARDS ARROW;Sm;0;ON;;;;;N;;;;;-2B4A;LEFTWARDS ARROW ABOVE ALMOST EQUAL TO;Sm;0;ON;;;;;N;;;;;-2B4B;LEFTWARDS ARROW ABOVE REVERSE TILDE OPERATOR;Sm;0;ON;;;;;N;;;;;-2B4C;RIGHTWARDS ARROW ABOVE REVERSE TILDE OPERATOR;Sm;0;ON;;;;;N;;;;;-2B4D;DOWNWARDS TRIANGLE-HEADED ZIGZAG ARROW;So;0;ON;;;;;N;;;;;-2B4E;SHORT SLANTED NORTH ARROW;So;0;ON;;;;;N;;;;;-2B4F;SHORT BACKSLANTED SOUTH ARROW;So;0;ON;;;;;N;;;;;-2B50;WHITE MEDIUM STAR;So;0;ON;;;;;N;;;;;-2B51;BLACK SMALL STAR;So;0;ON;;;;;N;;;;;-2B52;WHITE SMALL STAR;So;0;ON;;;;;N;;;;;-2B53;BLACK RIGHT-POINTING PENTAGON;So;0;ON;;;;;N;;;;;-2B54;WHITE RIGHT-POINTING PENTAGON;So;0;ON;;;;;N;;;;;-2B55;HEAVY LARGE CIRCLE;So;0;ON;;;;;N;;;;;-2B56;HEAVY OVAL WITH OVAL INSIDE;So;0;ON;;;;;N;;;;;-2B57;HEAVY CIRCLE WITH CIRCLE INSIDE;So;0;ON;;;;;N;;;;;-2B58;HEAVY CIRCLE;So;0;ON;;;;;N;;;;;-2B59;HEAVY CIRCLED SALTIRE;So;0;ON;;;;;N;;;;;-2B5A;SLANTED NORTH ARROW WITH HOOKED HEAD;So;0;ON;;;;;N;;;;;-2B5B;BACKSLANTED SOUTH ARROW WITH HOOKED TAIL;So;0;ON;;;;;N;;;;;-2B5C;SLANTED NORTH ARROW WITH HORIZONTAL TAIL;So;0;ON;;;;;N;;;;;-2B5D;BACKSLANTED SOUTH ARROW WITH HORIZONTAL TAIL;So;0;ON;;;;;N;;;;;-2B5E;BENT ARROW POINTING DOWNWARDS THEN NORTH EAST;So;0;ON;;;;;N;;;;;-2B5F;SHORT BENT ARROW POINTING DOWNWARDS THEN NORTH EAST;So;0;ON;;;;;N;;;;;-2B60;LEFTWARDS TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B61;UPWARDS TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B62;RIGHTWARDS TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B63;DOWNWARDS TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B64;LEFT RIGHT TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B65;UP DOWN TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B66;NORTH WEST TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B67;NORTH EAST TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B68;SOUTH EAST TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B69;SOUTH WEST TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B6A;LEFTWARDS TRIANGLE-HEADED DASHED ARROW;So;0;ON;;;;;N;;;;;-2B6B;UPWARDS TRIANGLE-HEADED DASHED ARROW;So;0;ON;;;;;N;;;;;-2B6C;RIGHTWARDS TRIANGLE-HEADED DASHED ARROW;So;0;ON;;;;;N;;;;;-2B6D;DOWNWARDS TRIANGLE-HEADED DASHED ARROW;So;0;ON;;;;;N;;;;;-2B6E;CLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW;So;0;ON;;;;;N;;;;;-2B6F;ANTICLOCKWISE TRIANGLE-HEADED OPEN CIRCLE ARROW;So;0;ON;;;;;N;;;;;-2B70;LEFTWARDS TRIANGLE-HEADED ARROW TO BAR;So;0;ON;;;;;N;;;;;-2B71;UPWARDS TRIANGLE-HEADED ARROW TO BAR;So;0;ON;;;;;N;;;;;-2B72;RIGHTWARDS TRIANGLE-HEADED ARROW TO BAR;So;0;ON;;;;;N;;;;;-2B73;DOWNWARDS TRIANGLE-HEADED ARROW TO BAR;So;0;ON;;;;;N;;;;;-2B76;NORTH WEST TRIANGLE-HEADED ARROW TO BAR;So;0;ON;;;;;N;;;;;-2B77;NORTH EAST TRIANGLE-HEADED ARROW TO BAR;So;0;ON;;;;;N;;;;;-2B78;SOUTH EAST TRIANGLE-HEADED ARROW TO BAR;So;0;ON;;;;;N;;;;;-2B79;SOUTH WEST TRIANGLE-HEADED ARROW TO BAR;So;0;ON;;;;;N;;;;;-2B7A;LEFTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE;So;0;ON;;;;;N;;;;;-2B7B;UPWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE;So;0;ON;;;;;N;;;;;-2B7C;RIGHTWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE;So;0;ON;;;;;N;;;;;-2B7D;DOWNWARDS TRIANGLE-HEADED ARROW WITH DOUBLE HORIZONTAL STROKE;So;0;ON;;;;;N;;;;;-2B7E;HORIZONTAL TAB KEY;So;0;ON;;;;;N;;;;;-2B7F;VERTICAL TAB KEY;So;0;ON;;;;;N;;;;;-2B80;LEFTWARDS TRIANGLE-HEADED ARROW OVER RIGHTWARDS TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B81;UPWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF DOWNWARDS TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B82;RIGHTWARDS TRIANGLE-HEADED ARROW OVER LEFTWARDS TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B83;DOWNWARDS TRIANGLE-HEADED ARROW LEFTWARDS OF UPWARDS TRIANGLE-HEADED ARROW;So;0;ON;;;;;N;;;;;-2B84;LEFTWARDS TRIANGLE-HEADED PAIRED ARROWS;So;0;ON;;;;;N;;;;;-2B85;UPWARDS TRIANGLE-HEADED PAIRED ARROWS;So;0;ON;;;;;N;;;;;-2B86;RIGHTWARDS TRIANGLE-HEADED PAIRED ARROWS;So;0;ON;;;;;N;;;;;-2B87;DOWNWARDS TRIANGLE-HEADED PAIRED ARROWS;So;0;ON;;;;;N;;;;;-2B88;LEFTWARDS BLACK CIRCLED WHITE ARROW;So;0;ON;;;;;N;;;;;-2B89;UPWARDS BLACK CIRCLED WHITE ARROW;So;0;ON;;;;;N;;;;;-2B8A;RIGHTWARDS BLACK CIRCLED WHITE ARROW;So;0;ON;;;;;N;;;;;-2B8B;DOWNWARDS BLACK CIRCLED WHITE ARROW;So;0;ON;;;;;N;;;;;-2B8C;ANTICLOCKWISE TRIANGLE-HEADED RIGHT U-SHAPED ARROW;So;0;ON;;;;;N;;;;;-2B8D;ANTICLOCKWISE TRIANGLE-HEADED BOTTOM U-SHAPED ARROW;So;0;ON;;;;;N;;;;;-2B8E;ANTICLOCKWISE TRIANGLE-HEADED LEFT U-SHAPED ARROW;So;0;ON;;;;;N;;;;;-2B8F;ANTICLOCKWISE TRIANGLE-HEADED TOP U-SHAPED ARROW;So;0;ON;;;;;N;;;;;-2B90;RETURN LEFT;So;0;ON;;;;;N;;;;;-2B91;RETURN RIGHT;So;0;ON;;;;;N;;;;;-2B92;NEWLINE LEFT;So;0;ON;;;;;N;;;;;-2B93;NEWLINE RIGHT;So;0;ON;;;;;N;;;;;-2B94;FOUR CORNER ARROWS CIRCLING ANTICLOCKWISE;So;0;ON;;;;;N;;;;;-2B95;RIGHTWARDS BLACK ARROW;So;0;ON;;;;;N;;;;;-2B98;THREE-D TOP-LIGHTED LEFTWARDS EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-2B99;THREE-D RIGHT-LIGHTED UPWARDS EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-2B9A;THREE-D TOP-LIGHTED RIGHTWARDS EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-2B9B;THREE-D LEFT-LIGHTED DOWNWARDS EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-2B9C;BLACK LEFTWARDS EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-2B9D;BLACK UPWARDS EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-2B9E;BLACK RIGHTWARDS EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-2B9F;BLACK DOWNWARDS EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-2BA0;DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS;So;0;ON;;;;;N;;;;;-2BA1;DOWNWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS;So;0;ON;;;;;N;;;;;-2BA2;UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP LEFTWARDS;So;0;ON;;;;;N;;;;;-2BA3;UPWARDS TRIANGLE-HEADED ARROW WITH LONG TIP RIGHTWARDS;So;0;ON;;;;;N;;;;;-2BA4;LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS;So;0;ON;;;;;N;;;;;-2BA5;RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP UPWARDS;So;0;ON;;;;;N;;;;;-2BA6;LEFTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS;So;0;ON;;;;;N;;;;;-2BA7;RIGHTWARDS TRIANGLE-HEADED ARROW WITH LONG TIP DOWNWARDS;So;0;ON;;;;;N;;;;;-2BA8;BLACK CURVED DOWNWARDS AND LEFTWARDS ARROW;So;0;ON;;;;;N;;;;;-2BA9;BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW;So;0;ON;;;;;N;;;;;-2BAA;BLACK CURVED UPWARDS AND LEFTWARDS ARROW;So;0;ON;;;;;N;;;;;-2BAB;BLACK CURVED UPWARDS AND RIGHTWARDS ARROW;So;0;ON;;;;;N;;;;;-2BAC;BLACK CURVED LEFTWARDS AND UPWARDS ARROW;So;0;ON;;;;;N;;;;;-2BAD;BLACK CURVED RIGHTWARDS AND UPWARDS ARROW;So;0;ON;;;;;N;;;;;-2BAE;BLACK CURVED LEFTWARDS AND DOWNWARDS ARROW;So;0;ON;;;;;N;;;;;-2BAF;BLACK CURVED RIGHTWARDS AND DOWNWARDS ARROW;So;0;ON;;;;;N;;;;;-2BB0;RIBBON ARROW DOWN LEFT;So;0;ON;;;;;N;;;;;-2BB1;RIBBON ARROW DOWN RIGHT;So;0;ON;;;;;N;;;;;-2BB2;RIBBON ARROW UP LEFT;So;0;ON;;;;;N;;;;;-2BB3;RIBBON ARROW UP RIGHT;So;0;ON;;;;;N;;;;;-2BB4;RIBBON ARROW LEFT UP;So;0;ON;;;;;N;;;;;-2BB5;RIBBON ARROW RIGHT UP;So;0;ON;;;;;N;;;;;-2BB6;RIBBON ARROW LEFT DOWN;So;0;ON;;;;;N;;;;;-2BB7;RIBBON ARROW RIGHT DOWN;So;0;ON;;;;;N;;;;;-2BB8;UPWARDS WHITE ARROW FROM BAR WITH HORIZONTAL BAR;So;0;ON;;;;;N;;;;;-2BB9;UP ARROWHEAD IN A RECTANGLE BOX;So;0;ON;;;;;N;;;;;-2BBD;BALLOT BOX WITH LIGHT X;So;0;ON;;;;;N;;;;;-2BBE;CIRCLED X;So;0;ON;;;;;N;;;;;-2BBF;CIRCLED BOLD X;So;0;ON;;;;;N;;;;;-2BC0;BLACK SQUARE CENTRED;So;0;ON;;;;;N;;;;;-2BC1;BLACK DIAMOND CENTRED;So;0;ON;;;;;N;;;;;-2BC2;TURNED BLACK PENTAGON;So;0;ON;;;;;N;;;;;-2BC3;HORIZONTAL BLACK OCTAGON;So;0;ON;;;;;N;;;;;-2BC4;BLACK OCTAGON;So;0;ON;;;;;N;;;;;-2BC5;BLACK MEDIUM UP-POINTING TRIANGLE CENTRED;So;0;ON;;;;;N;;;;;-2BC6;BLACK MEDIUM DOWN-POINTING TRIANGLE CENTRED;So;0;ON;;;;;N;;;;;-2BC7;BLACK MEDIUM LEFT-POINTING TRIANGLE CENTRED;So;0;ON;;;;;N;;;;;-2BC8;BLACK MEDIUM RIGHT-POINTING TRIANGLE CENTRED;So;0;ON;;;;;N;;;;;-2BCA;TOP HALF BLACK CIRCLE;So;0;ON;;;;;N;;;;;-2BCB;BOTTOM HALF BLACK CIRCLE;So;0;ON;;;;;N;;;;;-2BCC;LIGHT FOUR POINTED BLACK CUSP;So;0;ON;;;;;N;;;;;-2BCD;ROTATED LIGHT FOUR POINTED BLACK CUSP;So;0;ON;;;;;N;;;;;-2BCE;WHITE FOUR POINTED CUSP;So;0;ON;;;;;N;;;;;-2BCF;ROTATED WHITE FOUR POINTED CUSP;So;0;ON;;;;;N;;;;;-2BD0;SQUARE POSITION INDICATOR;So;0;ON;;;;;N;;;;;-2BD1;UNCERTAINTY SIGN;So;0;ON;;;;;N;;;;;-2C00;GLAGOLITIC CAPITAL LETTER AZU;Lu;0;L;;;;;N;;;;2C30;-2C01;GLAGOLITIC CAPITAL LETTER BUKY;Lu;0;L;;;;;N;;;;2C31;-2C02;GLAGOLITIC CAPITAL LETTER VEDE;Lu;0;L;;;;;N;;;;2C32;-2C03;GLAGOLITIC CAPITAL LETTER GLAGOLI;Lu;0;L;;;;;N;;;;2C33;-2C04;GLAGOLITIC CAPITAL LETTER DOBRO;Lu;0;L;;;;;N;;;;2C34;-2C05;GLAGOLITIC CAPITAL LETTER YESTU;Lu;0;L;;;;;N;;;;2C35;-2C06;GLAGOLITIC CAPITAL LETTER ZHIVETE;Lu;0;L;;;;;N;;;;2C36;-2C07;GLAGOLITIC CAPITAL LETTER DZELO;Lu;0;L;;;;;N;;;;2C37;-2C08;GLAGOLITIC CAPITAL LETTER ZEMLJA;Lu;0;L;;;;;N;;;;2C38;-2C09;GLAGOLITIC CAPITAL LETTER IZHE;Lu;0;L;;;;;N;;;;2C39;-2C0A;GLAGOLITIC CAPITAL LETTER INITIAL IZHE;Lu;0;L;;;;;N;;;;2C3A;-2C0B;GLAGOLITIC CAPITAL LETTER I;Lu;0;L;;;;;N;;;;2C3B;-2C0C;GLAGOLITIC CAPITAL LETTER DJERVI;Lu;0;L;;;;;N;;;;2C3C;-2C0D;GLAGOLITIC CAPITAL LETTER KAKO;Lu;0;L;;;;;N;;;;2C3D;-2C0E;GLAGOLITIC CAPITAL LETTER LJUDIJE;Lu;0;L;;;;;N;;;;2C3E;-2C0F;GLAGOLITIC CAPITAL LETTER MYSLITE;Lu;0;L;;;;;N;;;;2C3F;-2C10;GLAGOLITIC CAPITAL LETTER NASHI;Lu;0;L;;;;;N;;;;2C40;-2C11;GLAGOLITIC CAPITAL LETTER ONU;Lu;0;L;;;;;N;;;;2C41;-2C12;GLAGOLITIC CAPITAL LETTER POKOJI;Lu;0;L;;;;;N;;;;2C42;-2C13;GLAGOLITIC CAPITAL LETTER RITSI;Lu;0;L;;;;;N;;;;2C43;-2C14;GLAGOLITIC CAPITAL LETTER SLOVO;Lu;0;L;;;;;N;;;;2C44;-2C15;GLAGOLITIC CAPITAL LETTER TVRIDO;Lu;0;L;;;;;N;;;;2C45;-2C16;GLAGOLITIC CAPITAL LETTER UKU;Lu;0;L;;;;;N;;;;2C46;-2C17;GLAGOLITIC CAPITAL LETTER FRITU;Lu;0;L;;;;;N;;;;2C47;-2C18;GLAGOLITIC CAPITAL LETTER HERU;Lu;0;L;;;;;N;;;;2C48;-2C19;GLAGOLITIC CAPITAL LETTER OTU;Lu;0;L;;;;;N;;;;2C49;-2C1A;GLAGOLITIC CAPITAL LETTER PE;Lu;0;L;;;;;N;;;;2C4A;-2C1B;GLAGOLITIC CAPITAL LETTER SHTA;Lu;0;L;;;;;N;;;;2C4B;-2C1C;GLAGOLITIC CAPITAL LETTER TSI;Lu;0;L;;;;;N;;;;2C4C;-2C1D;GLAGOLITIC CAPITAL LETTER CHRIVI;Lu;0;L;;;;;N;;;;2C4D;-2C1E;GLAGOLITIC CAPITAL LETTER SHA;Lu;0;L;;;;;N;;;;2C4E;-2C1F;GLAGOLITIC CAPITAL LETTER YERU;Lu;0;L;;;;;N;;;;2C4F;-2C20;GLAGOLITIC CAPITAL LETTER YERI;Lu;0;L;;;;;N;;;;2C50;-2C21;GLAGOLITIC CAPITAL LETTER YATI;Lu;0;L;;;;;N;;;;2C51;-2C22;GLAGOLITIC CAPITAL LETTER SPIDERY HA;Lu;0;L;;;;;N;;;;2C52;-2C23;GLAGOLITIC CAPITAL LETTER YU;Lu;0;L;;;;;N;;;;2C53;-2C24;GLAGOLITIC CAPITAL LETTER SMALL YUS;Lu;0;L;;;;;N;;;;2C54;-2C25;GLAGOLITIC CAPITAL LETTER SMALL YUS WITH TAIL;Lu;0;L;;;;;N;;;;2C55;-2C26;GLAGOLITIC CAPITAL LETTER YO;Lu;0;L;;;;;N;;;;2C56;-2C27;GLAGOLITIC CAPITAL LETTER IOTATED SMALL YUS;Lu;0;L;;;;;N;;;;2C57;-2C28;GLAGOLITIC CAPITAL LETTER BIG YUS;Lu;0;L;;;;;N;;;;2C58;-2C29;GLAGOLITIC CAPITAL LETTER IOTATED BIG YUS;Lu;0;L;;;;;N;;;;2C59;-2C2A;GLAGOLITIC CAPITAL LETTER FITA;Lu;0;L;;;;;N;;;;2C5A;-2C2B;GLAGOLITIC CAPITAL LETTER IZHITSA;Lu;0;L;;;;;N;;;;2C5B;-2C2C;GLAGOLITIC CAPITAL LETTER SHTAPIC;Lu;0;L;;;;;N;;;;2C5C;-2C2D;GLAGOLITIC CAPITAL LETTER TROKUTASTI A;Lu;0;L;;;;;N;;;;2C5D;-2C2E;GLAGOLITIC CAPITAL LETTER LATINATE MYSLITE;Lu;0;L;;;;;N;;;;2C5E;-2C30;GLAGOLITIC SMALL LETTER AZU;Ll;0;L;;;;;N;;;2C00;;2C00-2C31;GLAGOLITIC SMALL LETTER BUKY;Ll;0;L;;;;;N;;;2C01;;2C01-2C32;GLAGOLITIC SMALL LETTER VEDE;Ll;0;L;;;;;N;;;2C02;;2C02-2C33;GLAGOLITIC SMALL LETTER GLAGOLI;Ll;0;L;;;;;N;;;2C03;;2C03-2C34;GLAGOLITIC SMALL LETTER DOBRO;Ll;0;L;;;;;N;;;2C04;;2C04-2C35;GLAGOLITIC SMALL LETTER YESTU;Ll;0;L;;;;;N;;;2C05;;2C05-2C36;GLAGOLITIC SMALL LETTER ZHIVETE;Ll;0;L;;;;;N;;;2C06;;2C06-2C37;GLAGOLITIC SMALL LETTER DZELO;Ll;0;L;;;;;N;;;2C07;;2C07-2C38;GLAGOLITIC SMALL LETTER ZEMLJA;Ll;0;L;;;;;N;;;2C08;;2C08-2C39;GLAGOLITIC SMALL LETTER IZHE;Ll;0;L;;;;;N;;;2C09;;2C09-2C3A;GLAGOLITIC SMALL LETTER INITIAL IZHE;Ll;0;L;;;;;N;;;2C0A;;2C0A-2C3B;GLAGOLITIC SMALL LETTER I;Ll;0;L;;;;;N;;;2C0B;;2C0B-2C3C;GLAGOLITIC SMALL LETTER DJERVI;Ll;0;L;;;;;N;;;2C0C;;2C0C-2C3D;GLAGOLITIC SMALL LETTER KAKO;Ll;0;L;;;;;N;;;2C0D;;2C0D-2C3E;GLAGOLITIC SMALL LETTER LJUDIJE;Ll;0;L;;;;;N;;;2C0E;;2C0E-2C3F;GLAGOLITIC SMALL LETTER MYSLITE;Ll;0;L;;;;;N;;;2C0F;;2C0F-2C40;GLAGOLITIC SMALL LETTER NASHI;Ll;0;L;;;;;N;;;2C10;;2C10-2C41;GLAGOLITIC SMALL LETTER ONU;Ll;0;L;;;;;N;;;2C11;;2C11-2C42;GLAGOLITIC SMALL LETTER POKOJI;Ll;0;L;;;;;N;;;2C12;;2C12-2C43;GLAGOLITIC SMALL LETTER RITSI;Ll;0;L;;;;;N;;;2C13;;2C13-2C44;GLAGOLITIC SMALL LETTER SLOVO;Ll;0;L;;;;;N;;;2C14;;2C14-2C45;GLAGOLITIC SMALL LETTER TVRIDO;Ll;0;L;;;;;N;;;2C15;;2C15-2C46;GLAGOLITIC SMALL LETTER UKU;Ll;0;L;;;;;N;;;2C16;;2C16-2C47;GLAGOLITIC SMALL LETTER FRITU;Ll;0;L;;;;;N;;;2C17;;2C17-2C48;GLAGOLITIC SMALL LETTER HERU;Ll;0;L;;;;;N;;;2C18;;2C18-2C49;GLAGOLITIC SMALL LETTER OTU;Ll;0;L;;;;;N;;;2C19;;2C19-2C4A;GLAGOLITIC SMALL LETTER PE;Ll;0;L;;;;;N;;;2C1A;;2C1A-2C4B;GLAGOLITIC SMALL LETTER SHTA;Ll;0;L;;;;;N;;;2C1B;;2C1B-2C4C;GLAGOLITIC SMALL LETTER TSI;Ll;0;L;;;;;N;;;2C1C;;2C1C-2C4D;GLAGOLITIC SMALL LETTER CHRIVI;Ll;0;L;;;;;N;;;2C1D;;2C1D-2C4E;GLAGOLITIC SMALL LETTER SHA;Ll;0;L;;;;;N;;;2C1E;;2C1E-2C4F;GLAGOLITIC SMALL LETTER YERU;Ll;0;L;;;;;N;;;2C1F;;2C1F-2C50;GLAGOLITIC SMALL LETTER YERI;Ll;0;L;;;;;N;;;2C20;;2C20-2C51;GLAGOLITIC SMALL LETTER YATI;Ll;0;L;;;;;N;;;2C21;;2C21-2C52;GLAGOLITIC SMALL LETTER SPIDERY HA;Ll;0;L;;;;;N;;;2C22;;2C22-2C53;GLAGOLITIC SMALL LETTER YU;Ll;0;L;;;;;N;;;2C23;;2C23-2C54;GLAGOLITIC SMALL LETTER SMALL YUS;Ll;0;L;;;;;N;;;2C24;;2C24-2C55;GLAGOLITIC SMALL LETTER SMALL YUS WITH TAIL;Ll;0;L;;;;;N;;;2C25;;2C25-2C56;GLAGOLITIC SMALL LETTER YO;Ll;0;L;;;;;N;;;2C26;;2C26-2C57;GLAGOLITIC SMALL LETTER IOTATED SMALL YUS;Ll;0;L;;;;;N;;;2C27;;2C27-2C58;GLAGOLITIC SMALL LETTER BIG YUS;Ll;0;L;;;;;N;;;2C28;;2C28-2C59;GLAGOLITIC SMALL LETTER IOTATED BIG YUS;Ll;0;L;;;;;N;;;2C29;;2C29-2C5A;GLAGOLITIC SMALL LETTER FITA;Ll;0;L;;;;;N;;;2C2A;;2C2A-2C5B;GLAGOLITIC SMALL LETTER IZHITSA;Ll;0;L;;;;;N;;;2C2B;;2C2B-2C5C;GLAGOLITIC SMALL LETTER SHTAPIC;Ll;0;L;;;;;N;;;2C2C;;2C2C-2C5D;GLAGOLITIC SMALL LETTER TROKUTASTI A;Ll;0;L;;;;;N;;;2C2D;;2C2D-2C5E;GLAGOLITIC SMALL LETTER LATINATE MYSLITE;Ll;0;L;;;;;N;;;2C2E;;2C2E-2C60;LATIN CAPITAL LETTER L WITH DOUBLE BAR;Lu;0;L;;;;;N;;;;2C61;-2C61;LATIN SMALL LETTER L WITH DOUBLE BAR;Ll;0;L;;;;;N;;;2C60;;2C60-2C62;LATIN CAPITAL LETTER L WITH MIDDLE TILDE;Lu;0;L;;;;;N;;;;026B;-2C63;LATIN CAPITAL LETTER P WITH STROKE;Lu;0;L;;;;;N;;;;1D7D;-2C64;LATIN CAPITAL LETTER R WITH TAIL;Lu;0;L;;;;;N;;;;027D;-2C65;LATIN SMALL LETTER A WITH STROKE;Ll;0;L;;;;;N;;;023A;;023A-2C66;LATIN SMALL LETTER T WITH DIAGONAL STROKE;Ll;0;L;;;;;N;;;023E;;023E-2C67;LATIN CAPITAL LETTER H WITH DESCENDER;Lu;0;L;;;;;N;;;;2C68;-2C68;LATIN SMALL LETTER H WITH DESCENDER;Ll;0;L;;;;;N;;;2C67;;2C67-2C69;LATIN CAPITAL LETTER K WITH DESCENDER;Lu;0;L;;;;;N;;;;2C6A;-2C6A;LATIN SMALL LETTER K WITH DESCENDER;Ll;0;L;;;;;N;;;2C69;;2C69-2C6B;LATIN CAPITAL LETTER Z WITH DESCENDER;Lu;0;L;;;;;N;;;;2C6C;-2C6C;LATIN SMALL LETTER Z WITH DESCENDER;Ll;0;L;;;;;N;;;2C6B;;2C6B-2C6D;LATIN CAPITAL LETTER ALPHA;Lu;0;L;;;;;N;;;;0251;-2C6E;LATIN CAPITAL LETTER M WITH HOOK;Lu;0;L;;;;;N;;;;0271;-2C6F;LATIN CAPITAL LETTER TURNED A;Lu;0;L;;;;;N;;;;0250;-2C70;LATIN CAPITAL LETTER TURNED ALPHA;Lu;0;L;;;;;N;;;;0252;-2C71;LATIN SMALL LETTER V WITH RIGHT HOOK;Ll;0;L;;;;;N;;;;;-2C72;LATIN CAPITAL LETTER W WITH HOOK;Lu;0;L;;;;;N;;;;2C73;-2C73;LATIN SMALL LETTER W WITH HOOK;Ll;0;L;;;;;N;;;2C72;;2C72-2C74;LATIN SMALL LETTER V WITH CURL;Ll;0;L;;;;;N;;;;;-2C75;LATIN CAPITAL LETTER HALF H;Lu;0;L;;;;;N;;;;2C76;-2C76;LATIN SMALL LETTER HALF H;Ll;0;L;;;;;N;;;2C75;;2C75-2C77;LATIN SMALL LETTER TAILLESS PHI;Ll;0;L;;;;;N;;;;;-2C78;LATIN SMALL LETTER E WITH NOTCH;Ll;0;L;;;;;N;;;;;-2C79;LATIN SMALL LETTER TURNED R WITH TAIL;Ll;0;L;;;;;N;;;;;-2C7A;LATIN SMALL LETTER O WITH LOW RING INSIDE;Ll;0;L;;;;;N;;;;;-2C7B;LATIN LETTER SMALL CAPITAL TURNED E;Ll;0;L;;;;;N;;;;;-2C7C;LATIN SUBSCRIPT SMALL LETTER J;Lm;0;L;<sub> 006A;;;;N;;;;;-2C7D;MODIFIER LETTER CAPITAL V;Lm;0;L;<super> 0056;;;;N;;;;;-2C7E;LATIN CAPITAL LETTER S WITH SWASH TAIL;Lu;0;L;;;;;N;;;;023F;-2C7F;LATIN CAPITAL LETTER Z WITH SWASH TAIL;Lu;0;L;;;;;N;;;;0240;-2C80;COPTIC CAPITAL LETTER ALFA;Lu;0;L;;;;;N;;;;2C81;-2C81;COPTIC SMALL LETTER ALFA;Ll;0;L;;;;;N;;;2C80;;2C80-2C82;COPTIC CAPITAL LETTER VIDA;Lu;0;L;;;;;N;;;;2C83;-2C83;COPTIC SMALL LETTER VIDA;Ll;0;L;;;;;N;;;2C82;;2C82-2C84;COPTIC CAPITAL LETTER GAMMA;Lu;0;L;;;;;N;;;;2C85;-2C85;COPTIC SMALL LETTER GAMMA;Ll;0;L;;;;;N;;;2C84;;2C84-2C86;COPTIC CAPITAL LETTER DALDA;Lu;0;L;;;;;N;;;;2C87;-2C87;COPTIC SMALL LETTER DALDA;Ll;0;L;;;;;N;;;2C86;;2C86-2C88;COPTIC CAPITAL LETTER EIE;Lu;0;L;;;;;N;;;;2C89;-2C89;COPTIC SMALL LETTER EIE;Ll;0;L;;;;;N;;;2C88;;2C88-2C8A;COPTIC CAPITAL LETTER SOU;Lu;0;L;;;;;N;;;;2C8B;-2C8B;COPTIC SMALL LETTER SOU;Ll;0;L;;;;;N;;;2C8A;;2C8A-2C8C;COPTIC CAPITAL LETTER ZATA;Lu;0;L;;;;;N;;;;2C8D;-2C8D;COPTIC SMALL LETTER ZATA;Ll;0;L;;;;;N;;;2C8C;;2C8C-2C8E;COPTIC CAPITAL LETTER HATE;Lu;0;L;;;;;N;;;;2C8F;-2C8F;COPTIC SMALL LETTER HATE;Ll;0;L;;;;;N;;;2C8E;;2C8E-2C90;COPTIC CAPITAL LETTER THETHE;Lu;0;L;;;;;N;;;;2C91;-2C91;COPTIC SMALL LETTER THETHE;Ll;0;L;;;;;N;;;2C90;;2C90-2C92;COPTIC CAPITAL LETTER IAUDA;Lu;0;L;;;;;N;;;;2C93;-2C93;COPTIC SMALL LETTER IAUDA;Ll;0;L;;;;;N;;;2C92;;2C92-2C94;COPTIC CAPITAL LETTER KAPA;Lu;0;L;;;;;N;;;;2C95;-2C95;COPTIC SMALL LETTER KAPA;Ll;0;L;;;;;N;;;2C94;;2C94-2C96;COPTIC CAPITAL LETTER LAULA;Lu;0;L;;;;;N;;;;2C97;-2C97;COPTIC SMALL LETTER LAULA;Ll;0;L;;;;;N;;;2C96;;2C96-2C98;COPTIC CAPITAL LETTER MI;Lu;0;L;;;;;N;;;;2C99;-2C99;COPTIC SMALL LETTER MI;Ll;0;L;;;;;N;;;2C98;;2C98-2C9A;COPTIC CAPITAL LETTER NI;Lu;0;L;;;;;N;;;;2C9B;-2C9B;COPTIC SMALL LETTER NI;Ll;0;L;;;;;N;;;2C9A;;2C9A-2C9C;COPTIC CAPITAL LETTER KSI;Lu;0;L;;;;;N;;;;2C9D;-2C9D;COPTIC SMALL LETTER KSI;Ll;0;L;;;;;N;;;2C9C;;2C9C-2C9E;COPTIC CAPITAL LETTER O;Lu;0;L;;;;;N;;;;2C9F;-2C9F;COPTIC SMALL LETTER O;Ll;0;L;;;;;N;;;2C9E;;2C9E-2CA0;COPTIC CAPITAL LETTER PI;Lu;0;L;;;;;N;;;;2CA1;-2CA1;COPTIC SMALL LETTER PI;Ll;0;L;;;;;N;;;2CA0;;2CA0-2CA2;COPTIC CAPITAL LETTER RO;Lu;0;L;;;;;N;;;;2CA3;-2CA3;COPTIC SMALL LETTER RO;Ll;0;L;;;;;N;;;2CA2;;2CA2-2CA4;COPTIC CAPITAL LETTER SIMA;Lu;0;L;;;;;N;;;;2CA5;-2CA5;COPTIC SMALL LETTER SIMA;Ll;0;L;;;;;N;;;2CA4;;2CA4-2CA6;COPTIC CAPITAL LETTER TAU;Lu;0;L;;;;;N;;;;2CA7;-2CA7;COPTIC SMALL LETTER TAU;Ll;0;L;;;;;N;;;2CA6;;2CA6-2CA8;COPTIC CAPITAL LETTER UA;Lu;0;L;;;;;N;;;;2CA9;-2CA9;COPTIC SMALL LETTER UA;Ll;0;L;;;;;N;;;2CA8;;2CA8-2CAA;COPTIC CAPITAL LETTER FI;Lu;0;L;;;;;N;;;;2CAB;-2CAB;COPTIC SMALL LETTER FI;Ll;0;L;;;;;N;;;2CAA;;2CAA-2CAC;COPTIC CAPITAL LETTER KHI;Lu;0;L;;;;;N;;;;2CAD;-2CAD;COPTIC SMALL LETTER KHI;Ll;0;L;;;;;N;;;2CAC;;2CAC-2CAE;COPTIC CAPITAL LETTER PSI;Lu;0;L;;;;;N;;;;2CAF;-2CAF;COPTIC SMALL LETTER PSI;Ll;0;L;;;;;N;;;2CAE;;2CAE-2CB0;COPTIC CAPITAL LETTER OOU;Lu;0;L;;;;;N;;;;2CB1;-2CB1;COPTIC SMALL LETTER OOU;Ll;0;L;;;;;N;;;2CB0;;2CB0-2CB2;COPTIC CAPITAL LETTER DIALECT-P ALEF;Lu;0;L;;;;;N;;;;2CB3;-2CB3;COPTIC SMALL LETTER DIALECT-P ALEF;Ll;0;L;;;;;N;;;2CB2;;2CB2-2CB4;COPTIC CAPITAL LETTER OLD COPTIC AIN;Lu;0;L;;;;;N;;;;2CB5;-2CB5;COPTIC SMALL LETTER OLD COPTIC AIN;Ll;0;L;;;;;N;;;2CB4;;2CB4-2CB6;COPTIC CAPITAL LETTER CRYPTOGRAMMIC EIE;Lu;0;L;;;;;N;;;;2CB7;-2CB7;COPTIC SMALL LETTER CRYPTOGRAMMIC EIE;Ll;0;L;;;;;N;;;2CB6;;2CB6-2CB8;COPTIC CAPITAL LETTER DIALECT-P KAPA;Lu;0;L;;;;;N;;;;2CB9;-2CB9;COPTIC SMALL LETTER DIALECT-P KAPA;Ll;0;L;;;;;N;;;2CB8;;2CB8-2CBA;COPTIC CAPITAL LETTER DIALECT-P NI;Lu;0;L;;;;;N;;;;2CBB;-2CBB;COPTIC SMALL LETTER DIALECT-P NI;Ll;0;L;;;;;N;;;2CBA;;2CBA-2CBC;COPTIC CAPITAL LETTER CRYPTOGRAMMIC NI;Lu;0;L;;;;;N;;;;2CBD;-2CBD;COPTIC SMALL LETTER CRYPTOGRAMMIC NI;Ll;0;L;;;;;N;;;2CBC;;2CBC-2CBE;COPTIC CAPITAL LETTER OLD COPTIC OOU;Lu;0;L;;;;;N;;;;2CBF;-2CBF;COPTIC SMALL LETTER OLD COPTIC OOU;Ll;0;L;;;;;N;;;2CBE;;2CBE-2CC0;COPTIC CAPITAL LETTER SAMPI;Lu;0;L;;;;;N;;;;2CC1;-2CC1;COPTIC SMALL LETTER SAMPI;Ll;0;L;;;;;N;;;2CC0;;2CC0-2CC2;COPTIC CAPITAL LETTER CROSSED SHEI;Lu;0;L;;;;;N;;;;2CC3;-2CC3;COPTIC SMALL LETTER CROSSED SHEI;Ll;0;L;;;;;N;;;2CC2;;2CC2-2CC4;COPTIC CAPITAL LETTER OLD COPTIC SHEI;Lu;0;L;;;;;N;;;;2CC5;-2CC5;COPTIC SMALL LETTER OLD COPTIC SHEI;Ll;0;L;;;;;N;;;2CC4;;2CC4-2CC6;COPTIC CAPITAL LETTER OLD COPTIC ESH;Lu;0;L;;;;;N;;;;2CC7;-2CC7;COPTIC SMALL LETTER OLD COPTIC ESH;Ll;0;L;;;;;N;;;2CC6;;2CC6-2CC8;COPTIC CAPITAL LETTER AKHMIMIC KHEI;Lu;0;L;;;;;N;;;;2CC9;-2CC9;COPTIC SMALL LETTER AKHMIMIC KHEI;Ll;0;L;;;;;N;;;2CC8;;2CC8-2CCA;COPTIC CAPITAL LETTER DIALECT-P HORI;Lu;0;L;;;;;N;;;;2CCB;-2CCB;COPTIC SMALL LETTER DIALECT-P HORI;Ll;0;L;;;;;N;;;2CCA;;2CCA-2CCC;COPTIC CAPITAL LETTER OLD COPTIC HORI;Lu;0;L;;;;;N;;;;2CCD;-2CCD;COPTIC SMALL LETTER OLD COPTIC HORI;Ll;0;L;;;;;N;;;2CCC;;2CCC-2CCE;COPTIC CAPITAL LETTER OLD COPTIC HA;Lu;0;L;;;;;N;;;;2CCF;-2CCF;COPTIC SMALL LETTER OLD COPTIC HA;Ll;0;L;;;;;N;;;2CCE;;2CCE-2CD0;COPTIC CAPITAL LETTER L-SHAPED HA;Lu;0;L;;;;;N;;;;2CD1;-2CD1;COPTIC SMALL LETTER L-SHAPED HA;Ll;0;L;;;;;N;;;2CD0;;2CD0-2CD2;COPTIC CAPITAL LETTER OLD COPTIC HEI;Lu;0;L;;;;;N;;;;2CD3;-2CD3;COPTIC SMALL LETTER OLD COPTIC HEI;Ll;0;L;;;;;N;;;2CD2;;2CD2-2CD4;COPTIC CAPITAL LETTER OLD COPTIC HAT;Lu;0;L;;;;;N;;;;2CD5;-2CD5;COPTIC SMALL LETTER OLD COPTIC HAT;Ll;0;L;;;;;N;;;2CD4;;2CD4-2CD6;COPTIC CAPITAL LETTER OLD COPTIC GANGIA;Lu;0;L;;;;;N;;;;2CD7;-2CD7;COPTIC SMALL LETTER OLD COPTIC GANGIA;Ll;0;L;;;;;N;;;2CD6;;2CD6-2CD8;COPTIC CAPITAL LETTER OLD COPTIC DJA;Lu;0;L;;;;;N;;;;2CD9;-2CD9;COPTIC SMALL LETTER OLD COPTIC DJA;Ll;0;L;;;;;N;;;2CD8;;2CD8-2CDA;COPTIC CAPITAL LETTER OLD COPTIC SHIMA;Lu;0;L;;;;;N;;;;2CDB;-2CDB;COPTIC SMALL LETTER OLD COPTIC SHIMA;Ll;0;L;;;;;N;;;2CDA;;2CDA-2CDC;COPTIC CAPITAL LETTER OLD NUBIAN SHIMA;Lu;0;L;;;;;N;;;;2CDD;-2CDD;COPTIC SMALL LETTER OLD NUBIAN SHIMA;Ll;0;L;;;;;N;;;2CDC;;2CDC-2CDE;COPTIC CAPITAL LETTER OLD NUBIAN NGI;Lu;0;L;;;;;N;;;;2CDF;-2CDF;COPTIC SMALL LETTER OLD NUBIAN NGI;Ll;0;L;;;;;N;;;2CDE;;2CDE-2CE0;COPTIC CAPITAL LETTER OLD NUBIAN NYI;Lu;0;L;;;;;N;;;;2CE1;-2CE1;COPTIC SMALL LETTER OLD NUBIAN NYI;Ll;0;L;;;;;N;;;2CE0;;2CE0-2CE2;COPTIC CAPITAL LETTER OLD NUBIAN WAU;Lu;0;L;;;;;N;;;;2CE3;-2CE3;COPTIC SMALL LETTER OLD NUBIAN WAU;Ll;0;L;;;;;N;;;2CE2;;2CE2-2CE4;COPTIC SYMBOL KAI;Ll;0;L;;;;;N;;;;;-2CE5;COPTIC SYMBOL MI RO;So;0;ON;;;;;N;;;;;-2CE6;COPTIC SYMBOL PI RO;So;0;ON;;;;;N;;;;;-2CE7;COPTIC SYMBOL STAUROS;So;0;ON;;;;;N;;;;;-2CE8;COPTIC SYMBOL TAU RO;So;0;ON;;;;;N;;;;;-2CE9;COPTIC SYMBOL KHI RO;So;0;ON;;;;;N;;;;;-2CEA;COPTIC SYMBOL SHIMA SIMA;So;0;ON;;;;;N;;;;;-2CEB;COPTIC CAPITAL LETTER CRYPTOGRAMMIC SHEI;Lu;0;L;;;;;N;;;;2CEC;-2CEC;COPTIC SMALL LETTER CRYPTOGRAMMIC SHEI;Ll;0;L;;;;;N;;;2CEB;;2CEB-2CED;COPTIC CAPITAL LETTER CRYPTOGRAMMIC GANGIA;Lu;0;L;;;;;N;;;;2CEE;-2CEE;COPTIC SMALL LETTER CRYPTOGRAMMIC GANGIA;Ll;0;L;;;;;N;;;2CED;;2CED-2CEF;COPTIC COMBINING NI ABOVE;Mn;230;NSM;;;;;N;;;;;-2CF0;COPTIC COMBINING SPIRITUS ASPER;Mn;230;NSM;;;;;N;;;;;-2CF1;COPTIC COMBINING SPIRITUS LENIS;Mn;230;NSM;;;;;N;;;;;-2CF2;COPTIC CAPITAL LETTER BOHAIRIC KHEI;Lu;0;L;;;;;N;;;;2CF3;-2CF3;COPTIC SMALL LETTER BOHAIRIC KHEI;Ll;0;L;;;;;N;;;2CF2;;2CF2-2CF9;COPTIC OLD NUBIAN FULL STOP;Po;0;ON;;;;;N;;;;;-2CFA;COPTIC OLD NUBIAN DIRECT QUESTION MARK;Po;0;ON;;;;;N;;;;;-2CFB;COPTIC OLD NUBIAN INDIRECT QUESTION MARK;Po;0;ON;;;;;N;;;;;-2CFC;COPTIC OLD NUBIAN VERSE DIVIDER;Po;0;ON;;;;;N;;;;;-2CFD;COPTIC FRACTION ONE HALF;No;0;ON;;;;1/2;N;;;;;-2CFE;COPTIC FULL STOP;Po;0;ON;;;;;N;;;;;-2CFF;COPTIC MORPHOLOGICAL DIVIDER;Po;0;ON;;;;;N;;;;;-2D00;GEORGIAN SMALL LETTER AN;Ll;0;L;;;;;N;;;10A0;;10A0-2D01;GEORGIAN SMALL LETTER BAN;Ll;0;L;;;;;N;;;10A1;;10A1-2D02;GEORGIAN SMALL LETTER GAN;Ll;0;L;;;;;N;;;10A2;;10A2-2D03;GEORGIAN SMALL LETTER DON;Ll;0;L;;;;;N;;;10A3;;10A3-2D04;GEORGIAN SMALL LETTER EN;Ll;0;L;;;;;N;;;10A4;;10A4-2D05;GEORGIAN SMALL LETTER VIN;Ll;0;L;;;;;N;;;10A5;;10A5-2D06;GEORGIAN SMALL LETTER ZEN;Ll;0;L;;;;;N;;;10A6;;10A6-2D07;GEORGIAN SMALL LETTER TAN;Ll;0;L;;;;;N;;;10A7;;10A7-2D08;GEORGIAN SMALL LETTER IN;Ll;0;L;;;;;N;;;10A8;;10A8-2D09;GEORGIAN SMALL LETTER KAN;Ll;0;L;;;;;N;;;10A9;;10A9-2D0A;GEORGIAN SMALL LETTER LAS;Ll;0;L;;;;;N;;;10AA;;10AA-2D0B;GEORGIAN SMALL LETTER MAN;Ll;0;L;;;;;N;;;10AB;;10AB-2D0C;GEORGIAN SMALL LETTER NAR;Ll;0;L;;;;;N;;;10AC;;10AC-2D0D;GEORGIAN SMALL LETTER ON;Ll;0;L;;;;;N;;;10AD;;10AD-2D0E;GEORGIAN SMALL LETTER PAR;Ll;0;L;;;;;N;;;10AE;;10AE-2D0F;GEORGIAN SMALL LETTER ZHAR;Ll;0;L;;;;;N;;;10AF;;10AF-2D10;GEORGIAN SMALL LETTER RAE;Ll;0;L;;;;;N;;;10B0;;10B0-2D11;GEORGIAN SMALL LETTER SAN;Ll;0;L;;;;;N;;;10B1;;10B1-2D12;GEORGIAN SMALL LETTER TAR;Ll;0;L;;;;;N;;;10B2;;10B2-2D13;GEORGIAN SMALL LETTER UN;Ll;0;L;;;;;N;;;10B3;;10B3-2D14;GEORGIAN SMALL LETTER PHAR;Ll;0;L;;;;;N;;;10B4;;10B4-2D15;GEORGIAN SMALL LETTER KHAR;Ll;0;L;;;;;N;;;10B5;;10B5-2D16;GEORGIAN SMALL LETTER GHAN;Ll;0;L;;;;;N;;;10B6;;10B6-2D17;GEORGIAN SMALL LETTER QAR;Ll;0;L;;;;;N;;;10B7;;10B7-2D18;GEORGIAN SMALL LETTER SHIN;Ll;0;L;;;;;N;;;10B8;;10B8-2D19;GEORGIAN SMALL LETTER CHIN;Ll;0;L;;;;;N;;;10B9;;10B9-2D1A;GEORGIAN SMALL LETTER CAN;Ll;0;L;;;;;N;;;10BA;;10BA-2D1B;GEORGIAN SMALL LETTER JIL;Ll;0;L;;;;;N;;;10BB;;10BB-2D1C;GEORGIAN SMALL LETTER CIL;Ll;0;L;;;;;N;;;10BC;;10BC-2D1D;GEORGIAN SMALL LETTER CHAR;Ll;0;L;;;;;N;;;10BD;;10BD-2D1E;GEORGIAN SMALL LETTER XAN;Ll;0;L;;;;;N;;;10BE;;10BE-2D1F;GEORGIAN SMALL LETTER JHAN;Ll;0;L;;;;;N;;;10BF;;10BF-2D20;GEORGIAN SMALL LETTER HAE;Ll;0;L;;;;;N;;;10C0;;10C0-2D21;GEORGIAN SMALL LETTER HE;Ll;0;L;;;;;N;;;10C1;;10C1-2D22;GEORGIAN SMALL LETTER HIE;Ll;0;L;;;;;N;;;10C2;;10C2-2D23;GEORGIAN SMALL LETTER WE;Ll;0;L;;;;;N;;;10C3;;10C3-2D24;GEORGIAN SMALL LETTER HAR;Ll;0;L;;;;;N;;;10C4;;10C4-2D25;GEORGIAN SMALL LETTER HOE;Ll;0;L;;;;;N;;;10C5;;10C5-2D27;GEORGIAN SMALL LETTER YN;Ll;0;L;;;;;N;;;10C7;;10C7-2D2D;GEORGIAN SMALL LETTER AEN;Ll;0;L;;;;;N;;;10CD;;10CD-2D30;TIFINAGH LETTER YA;Lo;0;L;;;;;N;;;;;-2D31;TIFINAGH LETTER YAB;Lo;0;L;;;;;N;;;;;-2D32;TIFINAGH LETTER YABH;Lo;0;L;;;;;N;;;;;-2D33;TIFINAGH LETTER YAG;Lo;0;L;;;;;N;;;;;-2D34;TIFINAGH LETTER YAGHH;Lo;0;L;;;;;N;;;;;-2D35;TIFINAGH LETTER BERBER ACADEMY YAJ;Lo;0;L;;;;;N;;;;;-2D36;TIFINAGH LETTER YAJ;Lo;0;L;;;;;N;;;;;-2D37;TIFINAGH LETTER YAD;Lo;0;L;;;;;N;;;;;-2D38;TIFINAGH LETTER YADH;Lo;0;L;;;;;N;;;;;-2D39;TIFINAGH LETTER YADD;Lo;0;L;;;;;N;;;;;-2D3A;TIFINAGH LETTER YADDH;Lo;0;L;;;;;N;;;;;-2D3B;TIFINAGH LETTER YEY;Lo;0;L;;;;;N;;;;;-2D3C;TIFINAGH LETTER YAF;Lo;0;L;;;;;N;;;;;-2D3D;TIFINAGH LETTER YAK;Lo;0;L;;;;;N;;;;;-2D3E;TIFINAGH LETTER TUAREG YAK;Lo;0;L;;;;;N;;;;;-2D3F;TIFINAGH LETTER YAKHH;Lo;0;L;;;;;N;;;;;-2D40;TIFINAGH LETTER YAH;Lo;0;L;;;;;N;;;;;-2D41;TIFINAGH LETTER BERBER ACADEMY YAH;Lo;0;L;;;;;N;;;;;-2D42;TIFINAGH LETTER TUAREG YAH;Lo;0;L;;;;;N;;;;;-2D43;TIFINAGH LETTER YAHH;Lo;0;L;;;;;N;;;;;-2D44;TIFINAGH LETTER YAA;Lo;0;L;;;;;N;;;;;-2D45;TIFINAGH LETTER YAKH;Lo;0;L;;;;;N;;;;;-2D46;TIFINAGH LETTER TUAREG YAKH;Lo;0;L;;;;;N;;;;;-2D47;TIFINAGH LETTER YAQ;Lo;0;L;;;;;N;;;;;-2D48;TIFINAGH LETTER TUAREG YAQ;Lo;0;L;;;;;N;;;;;-2D49;TIFINAGH LETTER YI;Lo;0;L;;;;;N;;;;;-2D4A;TIFINAGH LETTER YAZH;Lo;0;L;;;;;N;;;;;-2D4B;TIFINAGH LETTER AHAGGAR YAZH;Lo;0;L;;;;;N;;;;;-2D4C;TIFINAGH LETTER TUAREG YAZH;Lo;0;L;;;;;N;;;;;-2D4D;TIFINAGH LETTER YAL;Lo;0;L;;;;;N;;;;;-2D4E;TIFINAGH LETTER YAM;Lo;0;L;;;;;N;;;;;-2D4F;TIFINAGH LETTER YAN;Lo;0;L;;;;;N;;;;;-2D50;TIFINAGH LETTER TUAREG YAGN;Lo;0;L;;;;;N;;;;;-2D51;TIFINAGH LETTER TUAREG YANG;Lo;0;L;;;;;N;;;;;-2D52;TIFINAGH LETTER YAP;Lo;0;L;;;;;N;;;;;-2D53;TIFINAGH LETTER YU;Lo;0;L;;;;;N;;;;;-2D54;TIFINAGH LETTER YAR;Lo;0;L;;;;;N;;;;;-2D55;TIFINAGH LETTER YARR;Lo;0;L;;;;;N;;;;;-2D56;TIFINAGH LETTER YAGH;Lo;0;L;;;;;N;;;;;-2D57;TIFINAGH LETTER TUAREG YAGH;Lo;0;L;;;;;N;;;;;-2D58;TIFINAGH LETTER AYER YAGH;Lo;0;L;;;;;N;;;;;-2D59;TIFINAGH LETTER YAS;Lo;0;L;;;;;N;;;;;-2D5A;TIFINAGH LETTER YASS;Lo;0;L;;;;;N;;;;;-2D5B;TIFINAGH LETTER YASH;Lo;0;L;;;;;N;;;;;-2D5C;TIFINAGH LETTER YAT;Lo;0;L;;;;;N;;;;;-2D5D;TIFINAGH LETTER YATH;Lo;0;L;;;;;N;;;;;-2D5E;TIFINAGH LETTER YACH;Lo;0;L;;;;;N;;;;;-2D5F;TIFINAGH LETTER YATT;Lo;0;L;;;;;N;;;;;-2D60;TIFINAGH LETTER YAV;Lo;0;L;;;;;N;;;;;-2D61;TIFINAGH LETTER YAW;Lo;0;L;;;;;N;;;;;-2D62;TIFINAGH LETTER YAY;Lo;0;L;;;;;N;;;;;-2D63;TIFINAGH LETTER YAZ;Lo;0;L;;;;;N;;;;;-2D64;TIFINAGH LETTER TAWELLEMET YAZ;Lo;0;L;;;;;N;;;;;-2D65;TIFINAGH LETTER YAZZ;Lo;0;L;;;;;N;;;;;-2D66;TIFINAGH LETTER YE;Lo;0;L;;;;;N;;;;;-2D67;TIFINAGH LETTER YO;Lo;0;L;;;;;N;;;;;-2D6F;TIFINAGH MODIFIER LETTER LABIALIZATION MARK;Lm;0;L;<super> 2D61;;;;N;;;;;-2D70;TIFINAGH SEPARATOR MARK;Po;0;L;;;;;N;;;;;-2D7F;TIFINAGH CONSONANT JOINER;Mn;9;NSM;;;;;N;;;;;-2D80;ETHIOPIC SYLLABLE LOA;Lo;0;L;;;;;N;;;;;-2D81;ETHIOPIC SYLLABLE MOA;Lo;0;L;;;;;N;;;;;-2D82;ETHIOPIC SYLLABLE ROA;Lo;0;L;;;;;N;;;;;-2D83;ETHIOPIC SYLLABLE SOA;Lo;0;L;;;;;N;;;;;-2D84;ETHIOPIC SYLLABLE SHOA;Lo;0;L;;;;;N;;;;;-2D85;ETHIOPIC SYLLABLE BOA;Lo;0;L;;;;;N;;;;;-2D86;ETHIOPIC SYLLABLE TOA;Lo;0;L;;;;;N;;;;;-2D87;ETHIOPIC SYLLABLE COA;Lo;0;L;;;;;N;;;;;-2D88;ETHIOPIC SYLLABLE NOA;Lo;0;L;;;;;N;;;;;-2D89;ETHIOPIC SYLLABLE NYOA;Lo;0;L;;;;;N;;;;;-2D8A;ETHIOPIC SYLLABLE GLOTTAL OA;Lo;0;L;;;;;N;;;;;-2D8B;ETHIOPIC SYLLABLE ZOA;Lo;0;L;;;;;N;;;;;-2D8C;ETHIOPIC SYLLABLE DOA;Lo;0;L;;;;;N;;;;;-2D8D;ETHIOPIC SYLLABLE DDOA;Lo;0;L;;;;;N;;;;;-2D8E;ETHIOPIC SYLLABLE JOA;Lo;0;L;;;;;N;;;;;-2D8F;ETHIOPIC SYLLABLE THOA;Lo;0;L;;;;;N;;;;;-2D90;ETHIOPIC SYLLABLE CHOA;Lo;0;L;;;;;N;;;;;-2D91;ETHIOPIC SYLLABLE PHOA;Lo;0;L;;;;;N;;;;;-2D92;ETHIOPIC SYLLABLE POA;Lo;0;L;;;;;N;;;;;-2D93;ETHIOPIC SYLLABLE GGWA;Lo;0;L;;;;;N;;;;;-2D94;ETHIOPIC SYLLABLE GGWI;Lo;0;L;;;;;N;;;;;-2D95;ETHIOPIC SYLLABLE GGWEE;Lo;0;L;;;;;N;;;;;-2D96;ETHIOPIC SYLLABLE GGWE;Lo;0;L;;;;;N;;;;;-2DA0;ETHIOPIC SYLLABLE SSA;Lo;0;L;;;;;N;;;;;-2DA1;ETHIOPIC SYLLABLE SSU;Lo;0;L;;;;;N;;;;;-2DA2;ETHIOPIC SYLLABLE SSI;Lo;0;L;;;;;N;;;;;-2DA3;ETHIOPIC SYLLABLE SSAA;Lo;0;L;;;;;N;;;;;-2DA4;ETHIOPIC SYLLABLE SSEE;Lo;0;L;;;;;N;;;;;-2DA5;ETHIOPIC SYLLABLE SSE;Lo;0;L;;;;;N;;;;;-2DA6;ETHIOPIC SYLLABLE SSO;Lo;0;L;;;;;N;;;;;-2DA8;ETHIOPIC SYLLABLE CCA;Lo;0;L;;;;;N;;;;;-2DA9;ETHIOPIC SYLLABLE CCU;Lo;0;L;;;;;N;;;;;-2DAA;ETHIOPIC SYLLABLE CCI;Lo;0;L;;;;;N;;;;;-2DAB;ETHIOPIC SYLLABLE CCAA;Lo;0;L;;;;;N;;;;;-2DAC;ETHIOPIC SYLLABLE CCEE;Lo;0;L;;;;;N;;;;;-2DAD;ETHIOPIC SYLLABLE CCE;Lo;0;L;;;;;N;;;;;-2DAE;ETHIOPIC SYLLABLE CCO;Lo;0;L;;;;;N;;;;;-2DB0;ETHIOPIC SYLLABLE ZZA;Lo;0;L;;;;;N;;;;;-2DB1;ETHIOPIC SYLLABLE ZZU;Lo;0;L;;;;;N;;;;;-2DB2;ETHIOPIC SYLLABLE ZZI;Lo;0;L;;;;;N;;;;;-2DB3;ETHIOPIC SYLLABLE ZZAA;Lo;0;L;;;;;N;;;;;-2DB4;ETHIOPIC SYLLABLE ZZEE;Lo;0;L;;;;;N;;;;;-2DB5;ETHIOPIC SYLLABLE ZZE;Lo;0;L;;;;;N;;;;;-2DB6;ETHIOPIC SYLLABLE ZZO;Lo;0;L;;;;;N;;;;;-2DB8;ETHIOPIC SYLLABLE CCHA;Lo;0;L;;;;;N;;;;;-2DB9;ETHIOPIC SYLLABLE CCHU;Lo;0;L;;;;;N;;;;;-2DBA;ETHIOPIC SYLLABLE CCHI;Lo;0;L;;;;;N;;;;;-2DBB;ETHIOPIC SYLLABLE CCHAA;Lo;0;L;;;;;N;;;;;-2DBC;ETHIOPIC SYLLABLE CCHEE;Lo;0;L;;;;;N;;;;;-2DBD;ETHIOPIC SYLLABLE CCHE;Lo;0;L;;;;;N;;;;;-2DBE;ETHIOPIC SYLLABLE CCHO;Lo;0;L;;;;;N;;;;;-2DC0;ETHIOPIC SYLLABLE QYA;Lo;0;L;;;;;N;;;;;-2DC1;ETHIOPIC SYLLABLE QYU;Lo;0;L;;;;;N;;;;;-2DC2;ETHIOPIC SYLLABLE QYI;Lo;0;L;;;;;N;;;;;-2DC3;ETHIOPIC SYLLABLE QYAA;Lo;0;L;;;;;N;;;;;-2DC4;ETHIOPIC SYLLABLE QYEE;Lo;0;L;;;;;N;;;;;-2DC5;ETHIOPIC SYLLABLE QYE;Lo;0;L;;;;;N;;;;;-2DC6;ETHIOPIC SYLLABLE QYO;Lo;0;L;;;;;N;;;;;-2DC8;ETHIOPIC SYLLABLE KYA;Lo;0;L;;;;;N;;;;;-2DC9;ETHIOPIC SYLLABLE KYU;Lo;0;L;;;;;N;;;;;-2DCA;ETHIOPIC SYLLABLE KYI;Lo;0;L;;;;;N;;;;;-2DCB;ETHIOPIC SYLLABLE KYAA;Lo;0;L;;;;;N;;;;;-2DCC;ETHIOPIC SYLLABLE KYEE;Lo;0;L;;;;;N;;;;;-2DCD;ETHIOPIC SYLLABLE KYE;Lo;0;L;;;;;N;;;;;-2DCE;ETHIOPIC SYLLABLE KYO;Lo;0;L;;;;;N;;;;;-2DD0;ETHIOPIC SYLLABLE XYA;Lo;0;L;;;;;N;;;;;-2DD1;ETHIOPIC SYLLABLE XYU;Lo;0;L;;;;;N;;;;;-2DD2;ETHIOPIC SYLLABLE XYI;Lo;0;L;;;;;N;;;;;-2DD3;ETHIOPIC SYLLABLE XYAA;Lo;0;L;;;;;N;;;;;-2DD4;ETHIOPIC SYLLABLE XYEE;Lo;0;L;;;;;N;;;;;-2DD5;ETHIOPIC SYLLABLE XYE;Lo;0;L;;;;;N;;;;;-2DD6;ETHIOPIC SYLLABLE XYO;Lo;0;L;;;;;N;;;;;-2DD8;ETHIOPIC SYLLABLE GYA;Lo;0;L;;;;;N;;;;;-2DD9;ETHIOPIC SYLLABLE GYU;Lo;0;L;;;;;N;;;;;-2DDA;ETHIOPIC SYLLABLE GYI;Lo;0;L;;;;;N;;;;;-2DDB;ETHIOPIC SYLLABLE GYAA;Lo;0;L;;;;;N;;;;;-2DDC;ETHIOPIC SYLLABLE GYEE;Lo;0;L;;;;;N;;;;;-2DDD;ETHIOPIC SYLLABLE GYE;Lo;0;L;;;;;N;;;;;-2DDE;ETHIOPIC SYLLABLE GYO;Lo;0;L;;;;;N;;;;;-2DE0;COMBINING CYRILLIC LETTER BE;Mn;230;NSM;;;;;N;;;;;-2DE1;COMBINING CYRILLIC LETTER VE;Mn;230;NSM;;;;;N;;;;;-2DE2;COMBINING CYRILLIC LETTER GHE;Mn;230;NSM;;;;;N;;;;;-2DE3;COMBINING CYRILLIC LETTER DE;Mn;230;NSM;;;;;N;;;;;-2DE4;COMBINING CYRILLIC LETTER ZHE;Mn;230;NSM;;;;;N;;;;;-2DE5;COMBINING CYRILLIC LETTER ZE;Mn;230;NSM;;;;;N;;;;;-2DE6;COMBINING CYRILLIC LETTER KA;Mn;230;NSM;;;;;N;;;;;-2DE7;COMBINING CYRILLIC LETTER EL;Mn;230;NSM;;;;;N;;;;;-2DE8;COMBINING CYRILLIC LETTER EM;Mn;230;NSM;;;;;N;;;;;-2DE9;COMBINING CYRILLIC LETTER EN;Mn;230;NSM;;;;;N;;;;;-2DEA;COMBINING CYRILLIC LETTER O;Mn;230;NSM;;;;;N;;;;;-2DEB;COMBINING CYRILLIC LETTER PE;Mn;230;NSM;;;;;N;;;;;-2DEC;COMBINING CYRILLIC LETTER ER;Mn;230;NSM;;;;;N;;;;;-2DED;COMBINING CYRILLIC LETTER ES;Mn;230;NSM;;;;;N;;;;;-2DEE;COMBINING CYRILLIC LETTER TE;Mn;230;NSM;;;;;N;;;;;-2DEF;COMBINING CYRILLIC LETTER HA;Mn;230;NSM;;;;;N;;;;;-2DF0;COMBINING CYRILLIC LETTER TSE;Mn;230;NSM;;;;;N;;;;;-2DF1;COMBINING CYRILLIC LETTER CHE;Mn;230;NSM;;;;;N;;;;;-2DF2;COMBINING CYRILLIC LETTER SHA;Mn;230;NSM;;;;;N;;;;;-2DF3;COMBINING CYRILLIC LETTER SHCHA;Mn;230;NSM;;;;;N;;;;;-2DF4;COMBINING CYRILLIC LETTER FITA;Mn;230;NSM;;;;;N;;;;;-2DF5;COMBINING CYRILLIC LETTER ES-TE;Mn;230;NSM;;;;;N;;;;;-2DF6;COMBINING CYRILLIC LETTER A;Mn;230;NSM;;;;;N;;;;;-2DF7;COMBINING CYRILLIC LETTER IE;Mn;230;NSM;;;;;N;;;;;-2DF8;COMBINING CYRILLIC LETTER DJERV;Mn;230;NSM;;;;;N;;;;;-2DF9;COMBINING CYRILLIC LETTER MONOGRAPH UK;Mn;230;NSM;;;;;N;;;;;-2DFA;COMBINING CYRILLIC LETTER YAT;Mn;230;NSM;;;;;N;;;;;-2DFB;COMBINING CYRILLIC LETTER YU;Mn;230;NSM;;;;;N;;;;;-2DFC;COMBINING CYRILLIC LETTER IOTIFIED A;Mn;230;NSM;;;;;N;;;;;-2DFD;COMBINING CYRILLIC LETTER LITTLE YUS;Mn;230;NSM;;;;;N;;;;;-2DFE;COMBINING CYRILLIC LETTER BIG YUS;Mn;230;NSM;;;;;N;;;;;-2DFF;COMBINING CYRILLIC LETTER IOTIFIED BIG YUS;Mn;230;NSM;;;;;N;;;;;-2E00;RIGHT ANGLE SUBSTITUTION MARKER;Po;0;ON;;;;;N;;;;;-2E01;RIGHT ANGLE DOTTED SUBSTITUTION MARKER;Po;0;ON;;;;;N;;;;;-2E02;LEFT SUBSTITUTION BRACKET;Pi;0;ON;;;;;Y;;;;;-2E03;RIGHT SUBSTITUTION BRACKET;Pf;0;ON;;;;;Y;;;;;-2E04;LEFT DOTTED SUBSTITUTION BRACKET;Pi;0;ON;;;;;Y;;;;;-2E05;RIGHT DOTTED SUBSTITUTION BRACKET;Pf;0;ON;;;;;Y;;;;;-2E06;RAISED INTERPOLATION MARKER;Po;0;ON;;;;;N;;;;;-2E07;RAISED DOTTED INTERPOLATION MARKER;Po;0;ON;;;;;N;;;;;-2E08;DOTTED TRANSPOSITION MARKER;Po;0;ON;;;;;N;;;;;-2E09;LEFT TRANSPOSITION BRACKET;Pi;0;ON;;;;;Y;;;;;-2E0A;RIGHT TRANSPOSITION BRACKET;Pf;0;ON;;;;;Y;;;;;-2E0B;RAISED SQUARE;Po;0;ON;;;;;N;;;;;-2E0C;LEFT RAISED OMISSION BRACKET;Pi;0;ON;;;;;Y;;;;;-2E0D;RIGHT RAISED OMISSION BRACKET;Pf;0;ON;;;;;Y;;;;;-2E0E;EDITORIAL CORONIS;Po;0;ON;;;;;N;;;;;-2E0F;PARAGRAPHOS;Po;0;ON;;;;;N;;;;;-2E10;FORKED PARAGRAPHOS;Po;0;ON;;;;;N;;;;;-2E11;REVERSED FORKED PARAGRAPHOS;Po;0;ON;;;;;N;;;;;-2E12;HYPODIASTOLE;Po;0;ON;;;;;N;;;;;-2E13;DOTTED OBELOS;Po;0;ON;;;;;N;;;;;-2E14;DOWNWARDS ANCORA;Po;0;ON;;;;;N;;;;;-2E15;UPWARDS ANCORA;Po;0;ON;;;;;N;;;;;-2E16;DOTTED RIGHT-POINTING ANGLE;Po;0;ON;;;;;N;;;;;-2E17;DOUBLE OBLIQUE HYPHEN;Pd;0;ON;;;;;N;;;;;-2E18;INVERTED INTERROBANG;Po;0;ON;;;;;N;;;;;-2E19;PALM BRANCH;Po;0;ON;;;;;N;;;;;-2E1A;HYPHEN WITH DIAERESIS;Pd;0;ON;;;;;N;;;;;-2E1B;TILDE WITH RING ABOVE;Po;0;ON;;;;;N;;;;;-2E1C;LEFT LOW PARAPHRASE BRACKET;Pi;0;ON;;;;;Y;;;;;-2E1D;RIGHT LOW PARAPHRASE BRACKET;Pf;0;ON;;;;;Y;;;;;-2E1E;TILDE WITH DOT ABOVE;Po;0;ON;;;;;N;;;;;-2E1F;TILDE WITH DOT BELOW;Po;0;ON;;;;;N;;;;;-2E20;LEFT VERTICAL BAR WITH QUILL;Pi;0;ON;;;;;Y;;;;;-2E21;RIGHT VERTICAL BAR WITH QUILL;Pf;0;ON;;;;;Y;;;;;-2E22;TOP LEFT HALF BRACKET;Ps;0;ON;;;;;Y;;;;;-2E23;TOP RIGHT HALF BRACKET;Pe;0;ON;;;;;Y;;;;;-2E24;BOTTOM LEFT HALF BRACKET;Ps;0;ON;;;;;Y;;;;;-2E25;BOTTOM RIGHT HALF BRACKET;Pe;0;ON;;;;;Y;;;;;-2E26;LEFT SIDEWAYS U BRACKET;Ps;0;ON;;;;;Y;;;;;-2E27;RIGHT SIDEWAYS U BRACKET;Pe;0;ON;;;;;Y;;;;;-2E28;LEFT DOUBLE PARENTHESIS;Ps;0;ON;;;;;Y;;;;;-2E29;RIGHT DOUBLE PARENTHESIS;Pe;0;ON;;;;;Y;;;;;-2E2A;TWO DOTS OVER ONE DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-2E2B;ONE DOT OVER TWO DOTS PUNCTUATION;Po;0;ON;;;;;N;;;;;-2E2C;SQUARED FOUR DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-2E2D;FIVE DOT MARK;Po;0;ON;;;;;N;;;;;-2E2E;REVERSED QUESTION MARK;Po;0;ON;;;;;N;;;;;-2E2F;VERTICAL TILDE;Lm;0;ON;;;;;N;;;;;-2E30;RING POINT;Po;0;ON;;;;;N;;;;;-2E31;WORD SEPARATOR MIDDLE DOT;Po;0;ON;;;;;N;;;;;-2E32;TURNED COMMA;Po;0;ON;;;;;N;;;;;-2E33;RAISED DOT;Po;0;ON;;;;;N;;;;;-2E34;RAISED COMMA;Po;0;ON;;;;;N;;;;;-2E35;TURNED SEMICOLON;Po;0;ON;;;;;N;;;;;-2E36;DAGGER WITH LEFT GUARD;Po;0;ON;;;;;N;;;;;-2E37;DAGGER WITH RIGHT GUARD;Po;0;ON;;;;;N;;;;;-2E38;TURNED DAGGER;Po;0;ON;;;;;N;;;;;-2E39;TOP HALF SECTION SIGN;Po;0;ON;;;;;N;;;;;-2E3A;TWO-EM DASH;Pd;0;ON;;;;;N;;;;;-2E3B;THREE-EM DASH;Pd;0;ON;;;;;N;;;;;-2E3C;STENOGRAPHIC FULL STOP;Po;0;ON;;;;;N;;;;;-2E3D;VERTICAL SIX DOTS;Po;0;ON;;;;;N;;;;;-2E3E;WIGGLY VERTICAL LINE;Po;0;ON;;;;;N;;;;;-2E3F;CAPITULUM;Po;0;ON;;;;;N;;;;;-2E40;DOUBLE HYPHEN;Pd;0;ON;;;;;N;;;;;-2E41;REVERSED COMMA;Po;0;ON;;;;;N;;;;;-2E42;DOUBLE LOW-REVERSED-9 QUOTATION MARK;Ps;0;ON;;;;;N;;;;;-2E80;CJK RADICAL REPEAT;So;0;ON;;;;;N;;;;;-2E81;CJK RADICAL CLIFF;So;0;ON;;;;;N;;;;;-2E82;CJK RADICAL SECOND ONE;So;0;ON;;;;;N;;;;;-2E83;CJK RADICAL SECOND TWO;So;0;ON;;;;;N;;;;;-2E84;CJK RADICAL SECOND THREE;So;0;ON;;;;;N;;;;;-2E85;CJK RADICAL PERSON;So;0;ON;;;;;N;;;;;-2E86;CJK RADICAL BOX;So;0;ON;;;;;N;;;;;-2E87;CJK RADICAL TABLE;So;0;ON;;;;;N;;;;;-2E88;CJK RADICAL KNIFE ONE;So;0;ON;;;;;N;;;;;-2E89;CJK RADICAL KNIFE TWO;So;0;ON;;;;;N;;;;;-2E8A;CJK RADICAL DIVINATION;So;0;ON;;;;;N;;;;;-2E8B;CJK RADICAL SEAL;So;0;ON;;;;;N;;;;;-2E8C;CJK RADICAL SMALL ONE;So;0;ON;;;;;N;;;;;-2E8D;CJK RADICAL SMALL TWO;So;0;ON;;;;;N;;;;;-2E8E;CJK RADICAL LAME ONE;So;0;ON;;;;;N;;;;;-2E8F;CJK RADICAL LAME TWO;So;0;ON;;;;;N;;;;;-2E90;CJK RADICAL LAME THREE;So;0;ON;;;;;N;;;;;-2E91;CJK RADICAL LAME FOUR;So;0;ON;;;;;N;;;;;-2E92;CJK RADICAL SNAKE;So;0;ON;;;;;N;;;;;-2E93;CJK RADICAL THREAD;So;0;ON;;;;;N;;;;;-2E94;CJK RADICAL SNOUT ONE;So;0;ON;;;;;N;;;;;-2E95;CJK RADICAL SNOUT TWO;So;0;ON;;;;;N;;;;;-2E96;CJK RADICAL HEART ONE;So;0;ON;;;;;N;;;;;-2E97;CJK RADICAL HEART TWO;So;0;ON;;;;;N;;;;;-2E98;CJK RADICAL HAND;So;0;ON;;;;;N;;;;;-2E99;CJK RADICAL RAP;So;0;ON;;;;;N;;;;;-2E9B;CJK RADICAL CHOKE;So;0;ON;;;;;N;;;;;-2E9C;CJK RADICAL SUN;So;0;ON;;;;;N;;;;;-2E9D;CJK RADICAL MOON;So;0;ON;;;;;N;;;;;-2E9E;CJK RADICAL DEATH;So;0;ON;;;;;N;;;;;-2E9F;CJK RADICAL MOTHER;So;0;ON;<compat> 6BCD;;;;N;;;;;-2EA0;CJK RADICAL CIVILIAN;So;0;ON;;;;;N;;;;;-2EA1;CJK RADICAL WATER ONE;So;0;ON;;;;;N;;;;;-2EA2;CJK RADICAL WATER TWO;So;0;ON;;;;;N;;;;;-2EA3;CJK RADICAL FIRE;So;0;ON;;;;;N;;;;;-2EA4;CJK RADICAL PAW ONE;So;0;ON;;;;;N;;;;;-2EA5;CJK RADICAL PAW TWO;So;0;ON;;;;;N;;;;;-2EA6;CJK RADICAL SIMPLIFIED HALF TREE TRUNK;So;0;ON;;;;;N;;;;;-2EA7;CJK RADICAL COW;So;0;ON;;;;;N;;;;;-2EA8;CJK RADICAL DOG;So;0;ON;;;;;N;;;;;-2EA9;CJK RADICAL JADE;So;0;ON;;;;;N;;;;;-2EAA;CJK RADICAL BOLT OF CLOTH;So;0;ON;;;;;N;;;;;-2EAB;CJK RADICAL EYE;So;0;ON;;;;;N;;;;;-2EAC;CJK RADICAL SPIRIT ONE;So;0;ON;;;;;N;;;;;-2EAD;CJK RADICAL SPIRIT TWO;So;0;ON;;;;;N;;;;;-2EAE;CJK RADICAL BAMBOO;So;0;ON;;;;;N;;;;;-2EAF;CJK RADICAL SILK;So;0;ON;;;;;N;;;;;-2EB0;CJK RADICAL C-SIMPLIFIED SILK;So;0;ON;;;;;N;;;;;-2EB1;CJK RADICAL NET ONE;So;0;ON;;;;;N;;;;;-2EB2;CJK RADICAL NET TWO;So;0;ON;;;;;N;;;;;-2EB3;CJK RADICAL NET THREE;So;0;ON;;;;;N;;;;;-2EB4;CJK RADICAL NET FOUR;So;0;ON;;;;;N;;;;;-2EB5;CJK RADICAL MESH;So;0;ON;;;;;N;;;;;-2EB6;CJK RADICAL SHEEP;So;0;ON;;;;;N;;;;;-2EB7;CJK RADICAL RAM;So;0;ON;;;;;N;;;;;-2EB8;CJK RADICAL EWE;So;0;ON;;;;;N;;;;;-2EB9;CJK RADICAL OLD;So;0;ON;;;;;N;;;;;-2EBA;CJK RADICAL BRUSH ONE;So;0;ON;;;;;N;;;;;-2EBB;CJK RADICAL BRUSH TWO;So;0;ON;;;;;N;;;;;-2EBC;CJK RADICAL MEAT;So;0;ON;;;;;N;;;;;-2EBD;CJK RADICAL MORTAR;So;0;ON;;;;;N;;;;;-2EBE;CJK RADICAL GRASS ONE;So;0;ON;;;;;N;;;;;-2EBF;CJK RADICAL GRASS TWO;So;0;ON;;;;;N;;;;;-2EC0;CJK RADICAL GRASS THREE;So;0;ON;;;;;N;;;;;-2EC1;CJK RADICAL TIGER;So;0;ON;;;;;N;;;;;-2EC2;CJK RADICAL CLOTHES;So;0;ON;;;;;N;;;;;-2EC3;CJK RADICAL WEST ONE;So;0;ON;;;;;N;;;;;-2EC4;CJK RADICAL WEST TWO;So;0;ON;;;;;N;;;;;-2EC5;CJK RADICAL C-SIMPLIFIED SEE;So;0;ON;;;;;N;;;;;-2EC6;CJK RADICAL SIMPLIFIED HORN;So;0;ON;;;;;N;;;;;-2EC7;CJK RADICAL HORN;So;0;ON;;;;;N;;;;;-2EC8;CJK RADICAL C-SIMPLIFIED SPEECH;So;0;ON;;;;;N;;;;;-2EC9;CJK RADICAL C-SIMPLIFIED SHELL;So;0;ON;;;;;N;;;;;-2ECA;CJK RADICAL FOOT;So;0;ON;;;;;N;;;;;-2ECB;CJK RADICAL C-SIMPLIFIED CART;So;0;ON;;;;;N;;;;;-2ECC;CJK RADICAL SIMPLIFIED WALK;So;0;ON;;;;;N;;;;;-2ECD;CJK RADICAL WALK ONE;So;0;ON;;;;;N;;;;;-2ECE;CJK RADICAL WALK TWO;So;0;ON;;;;;N;;;;;-2ECF;CJK RADICAL CITY;So;0;ON;;;;;N;;;;;-2ED0;CJK RADICAL C-SIMPLIFIED GOLD;So;0;ON;;;;;N;;;;;-2ED1;CJK RADICAL LONG ONE;So;0;ON;;;;;N;;;;;-2ED2;CJK RADICAL LONG TWO;So;0;ON;;;;;N;;;;;-2ED3;CJK RADICAL C-SIMPLIFIED LONG;So;0;ON;;;;;N;;;;;-2ED4;CJK RADICAL C-SIMPLIFIED GATE;So;0;ON;;;;;N;;;;;-2ED5;CJK RADICAL MOUND ONE;So;0;ON;;;;;N;;;;;-2ED6;CJK RADICAL MOUND TWO;So;0;ON;;;;;N;;;;;-2ED7;CJK RADICAL RAIN;So;0;ON;;;;;N;;;;;-2ED8;CJK RADICAL BLUE;So;0;ON;;;;;N;;;;;-2ED9;CJK RADICAL C-SIMPLIFIED TANNED LEATHER;So;0;ON;;;;;N;;;;;-2EDA;CJK RADICAL C-SIMPLIFIED LEAF;So;0;ON;;;;;N;;;;;-2EDB;CJK RADICAL C-SIMPLIFIED WIND;So;0;ON;;;;;N;;;;;-2EDC;CJK RADICAL C-SIMPLIFIED FLY;So;0;ON;;;;;N;;;;;-2EDD;CJK RADICAL EAT ONE;So;0;ON;;;;;N;;;;;-2EDE;CJK RADICAL EAT TWO;So;0;ON;;;;;N;;;;;-2EDF;CJK RADICAL EAT THREE;So;0;ON;;;;;N;;;;;-2EE0;CJK RADICAL C-SIMPLIFIED EAT;So;0;ON;;;;;N;;;;;-2EE1;CJK RADICAL HEAD;So;0;ON;;;;;N;;;;;-2EE2;CJK RADICAL C-SIMPLIFIED HORSE;So;0;ON;;;;;N;;;;;-2EE3;CJK RADICAL BONE;So;0;ON;;;;;N;;;;;-2EE4;CJK RADICAL GHOST;So;0;ON;;;;;N;;;;;-2EE5;CJK RADICAL C-SIMPLIFIED FISH;So;0;ON;;;;;N;;;;;-2EE6;CJK RADICAL C-SIMPLIFIED BIRD;So;0;ON;;;;;N;;;;;-2EE7;CJK RADICAL C-SIMPLIFIED SALT;So;0;ON;;;;;N;;;;;-2EE8;CJK RADICAL SIMPLIFIED WHEAT;So;0;ON;;;;;N;;;;;-2EE9;CJK RADICAL SIMPLIFIED YELLOW;So;0;ON;;;;;N;;;;;-2EEA;CJK RADICAL C-SIMPLIFIED FROG;So;0;ON;;;;;N;;;;;-2EEB;CJK RADICAL J-SIMPLIFIED EVEN;So;0;ON;;;;;N;;;;;-2EEC;CJK RADICAL C-SIMPLIFIED EVEN;So;0;ON;;;;;N;;;;;-2EED;CJK RADICAL J-SIMPLIFIED TOOTH;So;0;ON;;;;;N;;;;;-2EEE;CJK RADICAL C-SIMPLIFIED TOOTH;So;0;ON;;;;;N;;;;;-2EEF;CJK RADICAL J-SIMPLIFIED DRAGON;So;0;ON;;;;;N;;;;;-2EF0;CJK RADICAL C-SIMPLIFIED DRAGON;So;0;ON;;;;;N;;;;;-2EF1;CJK RADICAL TURTLE;So;0;ON;;;;;N;;;;;-2EF2;CJK RADICAL J-SIMPLIFIED TURTLE;So;0;ON;;;;;N;;;;;-2EF3;CJK RADICAL C-SIMPLIFIED TURTLE;So;0;ON;<compat> 9F9F;;;;N;;;;;-2F00;KANGXI RADICAL ONE;So;0;ON;<compat> 4E00;;;;N;;;;;-2F01;KANGXI RADICAL LINE;So;0;ON;<compat> 4E28;;;;N;;;;;-2F02;KANGXI RADICAL DOT;So;0;ON;<compat> 4E36;;;;N;;;;;-2F03;KANGXI RADICAL SLASH;So;0;ON;<compat> 4E3F;;;;N;;;;;-2F04;KANGXI RADICAL SECOND;So;0;ON;<compat> 4E59;;;;N;;;;;-2F05;KANGXI RADICAL HOOK;So;0;ON;<compat> 4E85;;;;N;;;;;-2F06;KANGXI RADICAL TWO;So;0;ON;<compat> 4E8C;;;;N;;;;;-2F07;KANGXI RADICAL LID;So;0;ON;<compat> 4EA0;;;;N;;;;;-2F08;KANGXI RADICAL MAN;So;0;ON;<compat> 4EBA;;;;N;;;;;-2F09;KANGXI RADICAL LEGS;So;0;ON;<compat> 513F;;;;N;;;;;-2F0A;KANGXI RADICAL ENTER;So;0;ON;<compat> 5165;;;;N;;;;;-2F0B;KANGXI RADICAL EIGHT;So;0;ON;<compat> 516B;;;;N;;;;;-2F0C;KANGXI RADICAL DOWN BOX;So;0;ON;<compat> 5182;;;;N;;;;;-2F0D;KANGXI RADICAL COVER;So;0;ON;<compat> 5196;;;;N;;;;;-2F0E;KANGXI RADICAL ICE;So;0;ON;<compat> 51AB;;;;N;;;;;-2F0F;KANGXI RADICAL TABLE;So;0;ON;<compat> 51E0;;;;N;;;;;-2F10;KANGXI RADICAL OPEN BOX;So;0;ON;<compat> 51F5;;;;N;;;;;-2F11;KANGXI RADICAL KNIFE;So;0;ON;<compat> 5200;;;;N;;;;;-2F12;KANGXI RADICAL POWER;So;0;ON;<compat> 529B;;;;N;;;;;-2F13;KANGXI RADICAL WRAP;So;0;ON;<compat> 52F9;;;;N;;;;;-2F14;KANGXI RADICAL SPOON;So;0;ON;<compat> 5315;;;;N;;;;;-2F15;KANGXI RADICAL RIGHT OPEN BOX;So;0;ON;<compat> 531A;;;;N;;;;;-2F16;KANGXI RADICAL HIDING ENCLOSURE;So;0;ON;<compat> 5338;;;;N;;;;;-2F17;KANGXI RADICAL TEN;So;0;ON;<compat> 5341;;;;N;;;;;-2F18;KANGXI RADICAL DIVINATION;So;0;ON;<compat> 535C;;;;N;;;;;-2F19;KANGXI RADICAL SEAL;So;0;ON;<compat> 5369;;;;N;;;;;-2F1A;KANGXI RADICAL CLIFF;So;0;ON;<compat> 5382;;;;N;;;;;-2F1B;KANGXI RADICAL PRIVATE;So;0;ON;<compat> 53B6;;;;N;;;;;-2F1C;KANGXI RADICAL AGAIN;So;0;ON;<compat> 53C8;;;;N;;;;;-2F1D;KANGXI RADICAL MOUTH;So;0;ON;<compat> 53E3;;;;N;;;;;-2F1E;KANGXI RADICAL ENCLOSURE;So;0;ON;<compat> 56D7;;;;N;;;;;-2F1F;KANGXI RADICAL EARTH;So;0;ON;<compat> 571F;;;;N;;;;;-2F20;KANGXI RADICAL SCHOLAR;So;0;ON;<compat> 58EB;;;;N;;;;;-2F21;KANGXI RADICAL GO;So;0;ON;<compat> 5902;;;;N;;;;;-2F22;KANGXI RADICAL GO SLOWLY;So;0;ON;<compat> 590A;;;;N;;;;;-2F23;KANGXI RADICAL EVENING;So;0;ON;<compat> 5915;;;;N;;;;;-2F24;KANGXI RADICAL BIG;So;0;ON;<compat> 5927;;;;N;;;;;-2F25;KANGXI RADICAL WOMAN;So;0;ON;<compat> 5973;;;;N;;;;;-2F26;KANGXI RADICAL CHILD;So;0;ON;<compat> 5B50;;;;N;;;;;-2F27;KANGXI RADICAL ROOF;So;0;ON;<compat> 5B80;;;;N;;;;;-2F28;KANGXI RADICAL INCH;So;0;ON;<compat> 5BF8;;;;N;;;;;-2F29;KANGXI RADICAL SMALL;So;0;ON;<compat> 5C0F;;;;N;;;;;-2F2A;KANGXI RADICAL LAME;So;0;ON;<compat> 5C22;;;;N;;;;;-2F2B;KANGXI RADICAL CORPSE;So;0;ON;<compat> 5C38;;;;N;;;;;-2F2C;KANGXI RADICAL SPROUT;So;0;ON;<compat> 5C6E;;;;N;;;;;-2F2D;KANGXI RADICAL MOUNTAIN;So;0;ON;<compat> 5C71;;;;N;;;;;-2F2E;KANGXI RADICAL RIVER;So;0;ON;<compat> 5DDB;;;;N;;;;;-2F2F;KANGXI RADICAL WORK;So;0;ON;<compat> 5DE5;;;;N;;;;;-2F30;KANGXI RADICAL ONESELF;So;0;ON;<compat> 5DF1;;;;N;;;;;-2F31;KANGXI RADICAL TURBAN;So;0;ON;<compat> 5DFE;;;;N;;;;;-2F32;KANGXI RADICAL DRY;So;0;ON;<compat> 5E72;;;;N;;;;;-2F33;KANGXI RADICAL SHORT THREAD;So;0;ON;<compat> 5E7A;;;;N;;;;;-2F34;KANGXI RADICAL DOTTED CLIFF;So;0;ON;<compat> 5E7F;;;;N;;;;;-2F35;KANGXI RADICAL LONG STRIDE;So;0;ON;<compat> 5EF4;;;;N;;;;;-2F36;KANGXI RADICAL TWO HANDS;So;0;ON;<compat> 5EFE;;;;N;;;;;-2F37;KANGXI RADICAL SHOOT;So;0;ON;<compat> 5F0B;;;;N;;;;;-2F38;KANGXI RADICAL BOW;So;0;ON;<compat> 5F13;;;;N;;;;;-2F39;KANGXI RADICAL SNOUT;So;0;ON;<compat> 5F50;;;;N;;;;;-2F3A;KANGXI RADICAL BRISTLE;So;0;ON;<compat> 5F61;;;;N;;;;;-2F3B;KANGXI RADICAL STEP;So;0;ON;<compat> 5F73;;;;N;;;;;-2F3C;KANGXI RADICAL HEART;So;0;ON;<compat> 5FC3;;;;N;;;;;-2F3D;KANGXI RADICAL HALBERD;So;0;ON;<compat> 6208;;;;N;;;;;-2F3E;KANGXI RADICAL DOOR;So;0;ON;<compat> 6236;;;;N;;;;;-2F3F;KANGXI RADICAL HAND;So;0;ON;<compat> 624B;;;;N;;;;;-2F40;KANGXI RADICAL BRANCH;So;0;ON;<compat> 652F;;;;N;;;;;-2F41;KANGXI RADICAL RAP;So;0;ON;<compat> 6534;;;;N;;;;;-2F42;KANGXI RADICAL SCRIPT;So;0;ON;<compat> 6587;;;;N;;;;;-2F43;KANGXI RADICAL DIPPER;So;0;ON;<compat> 6597;;;;N;;;;;-2F44;KANGXI RADICAL AXE;So;0;ON;<compat> 65A4;;;;N;;;;;-2F45;KANGXI RADICAL SQUARE;So;0;ON;<compat> 65B9;;;;N;;;;;-2F46;KANGXI RADICAL NOT;So;0;ON;<compat> 65E0;;;;N;;;;;-2F47;KANGXI RADICAL SUN;So;0;ON;<compat> 65E5;;;;N;;;;;-2F48;KANGXI RADICAL SAY;So;0;ON;<compat> 66F0;;;;N;;;;;-2F49;KANGXI RADICAL MOON;So;0;ON;<compat> 6708;;;;N;;;;;-2F4A;KANGXI RADICAL TREE;So;0;ON;<compat> 6728;;;;N;;;;;-2F4B;KANGXI RADICAL LACK;So;0;ON;<compat> 6B20;;;;N;;;;;-2F4C;KANGXI RADICAL STOP;So;0;ON;<compat> 6B62;;;;N;;;;;-2F4D;KANGXI RADICAL DEATH;So;0;ON;<compat> 6B79;;;;N;;;;;-2F4E;KANGXI RADICAL WEAPON;So;0;ON;<compat> 6BB3;;;;N;;;;;-2F4F;KANGXI RADICAL DO NOT;So;0;ON;<compat> 6BCB;;;;N;;;;;-2F50;KANGXI RADICAL COMPARE;So;0;ON;<compat> 6BD4;;;;N;;;;;-2F51;KANGXI RADICAL FUR;So;0;ON;<compat> 6BDB;;;;N;;;;;-2F52;KANGXI RADICAL CLAN;So;0;ON;<compat> 6C0F;;;;N;;;;;-2F53;KANGXI RADICAL STEAM;So;0;ON;<compat> 6C14;;;;N;;;;;-2F54;KANGXI RADICAL WATER;So;0;ON;<compat> 6C34;;;;N;;;;;-2F55;KANGXI RADICAL FIRE;So;0;ON;<compat> 706B;;;;N;;;;;-2F56;KANGXI RADICAL CLAW;So;0;ON;<compat> 722A;;;;N;;;;;-2F57;KANGXI RADICAL FATHER;So;0;ON;<compat> 7236;;;;N;;;;;-2F58;KANGXI RADICAL DOUBLE X;So;0;ON;<compat> 723B;;;;N;;;;;-2F59;KANGXI RADICAL HALF TREE TRUNK;So;0;ON;<compat> 723F;;;;N;;;;;-2F5A;KANGXI RADICAL SLICE;So;0;ON;<compat> 7247;;;;N;;;;;-2F5B;KANGXI RADICAL FANG;So;0;ON;<compat> 7259;;;;N;;;;;-2F5C;KANGXI RADICAL COW;So;0;ON;<compat> 725B;;;;N;;;;;-2F5D;KANGXI RADICAL DOG;So;0;ON;<compat> 72AC;;;;N;;;;;-2F5E;KANGXI RADICAL PROFOUND;So;0;ON;<compat> 7384;;;;N;;;;;-2F5F;KANGXI RADICAL JADE;So;0;ON;<compat> 7389;;;;N;;;;;-2F60;KANGXI RADICAL MELON;So;0;ON;<compat> 74DC;;;;N;;;;;-2F61;KANGXI RADICAL TILE;So;0;ON;<compat> 74E6;;;;N;;;;;-2F62;KANGXI RADICAL SWEET;So;0;ON;<compat> 7518;;;;N;;;;;-2F63;KANGXI RADICAL LIFE;So;0;ON;<compat> 751F;;;;N;;;;;-2F64;KANGXI RADICAL USE;So;0;ON;<compat> 7528;;;;N;;;;;-2F65;KANGXI RADICAL FIELD;So;0;ON;<compat> 7530;;;;N;;;;;-2F66;KANGXI RADICAL BOLT OF CLOTH;So;0;ON;<compat> 758B;;;;N;;;;;-2F67;KANGXI RADICAL SICKNESS;So;0;ON;<compat> 7592;;;;N;;;;;-2F68;KANGXI RADICAL DOTTED TENT;So;0;ON;<compat> 7676;;;;N;;;;;-2F69;KANGXI RADICAL WHITE;So;0;ON;<compat> 767D;;;;N;;;;;-2F6A;KANGXI RADICAL SKIN;So;0;ON;<compat> 76AE;;;;N;;;;;-2F6B;KANGXI RADICAL DISH;So;0;ON;<compat> 76BF;;;;N;;;;;-2F6C;KANGXI RADICAL EYE;So;0;ON;<compat> 76EE;;;;N;;;;;-2F6D;KANGXI RADICAL SPEAR;So;0;ON;<compat> 77DB;;;;N;;;;;-2F6E;KANGXI RADICAL ARROW;So;0;ON;<compat> 77E2;;;;N;;;;;-2F6F;KANGXI RADICAL STONE;So;0;ON;<compat> 77F3;;;;N;;;;;-2F70;KANGXI RADICAL SPIRIT;So;0;ON;<compat> 793A;;;;N;;;;;-2F71;KANGXI RADICAL TRACK;So;0;ON;<compat> 79B8;;;;N;;;;;-2F72;KANGXI RADICAL GRAIN;So;0;ON;<compat> 79BE;;;;N;;;;;-2F73;KANGXI RADICAL CAVE;So;0;ON;<compat> 7A74;;;;N;;;;;-2F74;KANGXI RADICAL STAND;So;0;ON;<compat> 7ACB;;;;N;;;;;-2F75;KANGXI RADICAL BAMBOO;So;0;ON;<compat> 7AF9;;;;N;;;;;-2F76;KANGXI RADICAL RICE;So;0;ON;<compat> 7C73;;;;N;;;;;-2F77;KANGXI RADICAL SILK;So;0;ON;<compat> 7CF8;;;;N;;;;;-2F78;KANGXI RADICAL JAR;So;0;ON;<compat> 7F36;;;;N;;;;;-2F79;KANGXI RADICAL NET;So;0;ON;<compat> 7F51;;;;N;;;;;-2F7A;KANGXI RADICAL SHEEP;So;0;ON;<compat> 7F8A;;;;N;;;;;-2F7B;KANGXI RADICAL FEATHER;So;0;ON;<compat> 7FBD;;;;N;;;;;-2F7C;KANGXI RADICAL OLD;So;0;ON;<compat> 8001;;;;N;;;;;-2F7D;KANGXI RADICAL AND;So;0;ON;<compat> 800C;;;;N;;;;;-2F7E;KANGXI RADICAL PLOW;So;0;ON;<compat> 8012;;;;N;;;;;-2F7F;KANGXI RADICAL EAR;So;0;ON;<compat> 8033;;;;N;;;;;-2F80;KANGXI RADICAL BRUSH;So;0;ON;<compat> 807F;;;;N;;;;;-2F81;KANGXI RADICAL MEAT;So;0;ON;<compat> 8089;;;;N;;;;;-2F82;KANGXI RADICAL MINISTER;So;0;ON;<compat> 81E3;;;;N;;;;;-2F83;KANGXI RADICAL SELF;So;0;ON;<compat> 81EA;;;;N;;;;;-2F84;KANGXI RADICAL ARRIVE;So;0;ON;<compat> 81F3;;;;N;;;;;-2F85;KANGXI RADICAL MORTAR;So;0;ON;<compat> 81FC;;;;N;;;;;-2F86;KANGXI RADICAL TONGUE;So;0;ON;<compat> 820C;;;;N;;;;;-2F87;KANGXI RADICAL OPPOSE;So;0;ON;<compat> 821B;;;;N;;;;;-2F88;KANGXI RADICAL BOAT;So;0;ON;<compat> 821F;;;;N;;;;;-2F89;KANGXI RADICAL STOPPING;So;0;ON;<compat> 826E;;;;N;;;;;-2F8A;KANGXI RADICAL COLOR;So;0;ON;<compat> 8272;;;;N;;;;;-2F8B;KANGXI RADICAL GRASS;So;0;ON;<compat> 8278;;;;N;;;;;-2F8C;KANGXI RADICAL TIGER;So;0;ON;<compat> 864D;;;;N;;;;;-2F8D;KANGXI RADICAL INSECT;So;0;ON;<compat> 866B;;;;N;;;;;-2F8E;KANGXI RADICAL BLOOD;So;0;ON;<compat> 8840;;;;N;;;;;-2F8F;KANGXI RADICAL WALK ENCLOSURE;So;0;ON;<compat> 884C;;;;N;;;;;-2F90;KANGXI RADICAL CLOTHES;So;0;ON;<compat> 8863;;;;N;;;;;-2F91;KANGXI RADICAL WEST;So;0;ON;<compat> 897E;;;;N;;;;;-2F92;KANGXI RADICAL SEE;So;0;ON;<compat> 898B;;;;N;;;;;-2F93;KANGXI RADICAL HORN;So;0;ON;<compat> 89D2;;;;N;;;;;-2F94;KANGXI RADICAL SPEECH;So;0;ON;<compat> 8A00;;;;N;;;;;-2F95;KANGXI RADICAL VALLEY;So;0;ON;<compat> 8C37;;;;N;;;;;-2F96;KANGXI RADICAL BEAN;So;0;ON;<compat> 8C46;;;;N;;;;;-2F97;KANGXI RADICAL PIG;So;0;ON;<compat> 8C55;;;;N;;;;;-2F98;KANGXI RADICAL BADGER;So;0;ON;<compat> 8C78;;;;N;;;;;-2F99;KANGXI RADICAL SHELL;So;0;ON;<compat> 8C9D;;;;N;;;;;-2F9A;KANGXI RADICAL RED;So;0;ON;<compat> 8D64;;;;N;;;;;-2F9B;KANGXI RADICAL RUN;So;0;ON;<compat> 8D70;;;;N;;;;;-2F9C;KANGXI RADICAL FOOT;So;0;ON;<compat> 8DB3;;;;N;;;;;-2F9D;KANGXI RADICAL BODY;So;0;ON;<compat> 8EAB;;;;N;;;;;-2F9E;KANGXI RADICAL CART;So;0;ON;<compat> 8ECA;;;;N;;;;;-2F9F;KANGXI RADICAL BITTER;So;0;ON;<compat> 8F9B;;;;N;;;;;-2FA0;KANGXI RADICAL MORNING;So;0;ON;<compat> 8FB0;;;;N;;;;;-2FA1;KANGXI RADICAL WALK;So;0;ON;<compat> 8FB5;;;;N;;;;;-2FA2;KANGXI RADICAL CITY;So;0;ON;<compat> 9091;;;;N;;;;;-2FA3;KANGXI RADICAL WINE;So;0;ON;<compat> 9149;;;;N;;;;;-2FA4;KANGXI RADICAL DISTINGUISH;So;0;ON;<compat> 91C6;;;;N;;;;;-2FA5;KANGXI RADICAL VILLAGE;So;0;ON;<compat> 91CC;;;;N;;;;;-2FA6;KANGXI RADICAL GOLD;So;0;ON;<compat> 91D1;;;;N;;;;;-2FA7;KANGXI RADICAL LONG;So;0;ON;<compat> 9577;;;;N;;;;;-2FA8;KANGXI RADICAL GATE;So;0;ON;<compat> 9580;;;;N;;;;;-2FA9;KANGXI RADICAL MOUND;So;0;ON;<compat> 961C;;;;N;;;;;-2FAA;KANGXI RADICAL SLAVE;So;0;ON;<compat> 96B6;;;;N;;;;;-2FAB;KANGXI RADICAL SHORT TAILED BIRD;So;0;ON;<compat> 96B9;;;;N;;;;;-2FAC;KANGXI RADICAL RAIN;So;0;ON;<compat> 96E8;;;;N;;;;;-2FAD;KANGXI RADICAL BLUE;So;0;ON;<compat> 9751;;;;N;;;;;-2FAE;KANGXI RADICAL WRONG;So;0;ON;<compat> 975E;;;;N;;;;;-2FAF;KANGXI RADICAL FACE;So;0;ON;<compat> 9762;;;;N;;;;;-2FB0;KANGXI RADICAL LEATHER;So;0;ON;<compat> 9769;;;;N;;;;;-2FB1;KANGXI RADICAL TANNED LEATHER;So;0;ON;<compat> 97CB;;;;N;;;;;-2FB2;KANGXI RADICAL LEEK;So;0;ON;<compat> 97ED;;;;N;;;;;-2FB3;KANGXI RADICAL SOUND;So;0;ON;<compat> 97F3;;;;N;;;;;-2FB4;KANGXI RADICAL LEAF;So;0;ON;<compat> 9801;;;;N;;;;;-2FB5;KANGXI RADICAL WIND;So;0;ON;<compat> 98A8;;;;N;;;;;-2FB6;KANGXI RADICAL FLY;So;0;ON;<compat> 98DB;;;;N;;;;;-2FB7;KANGXI RADICAL EAT;So;0;ON;<compat> 98DF;;;;N;;;;;-2FB8;KANGXI RADICAL HEAD;So;0;ON;<compat> 9996;;;;N;;;;;-2FB9;KANGXI RADICAL FRAGRANT;So;0;ON;<compat> 9999;;;;N;;;;;-2FBA;KANGXI RADICAL HORSE;So;0;ON;<compat> 99AC;;;;N;;;;;-2FBB;KANGXI RADICAL BONE;So;0;ON;<compat> 9AA8;;;;N;;;;;-2FBC;KANGXI RADICAL TALL;So;0;ON;<compat> 9AD8;;;;N;;;;;-2FBD;KANGXI RADICAL HAIR;So;0;ON;<compat> 9ADF;;;;N;;;;;-2FBE;KANGXI RADICAL FIGHT;So;0;ON;<compat> 9B25;;;;N;;;;;-2FBF;KANGXI RADICAL SACRIFICIAL WINE;So;0;ON;<compat> 9B2F;;;;N;;;;;-2FC0;KANGXI RADICAL CAULDRON;So;0;ON;<compat> 9B32;;;;N;;;;;-2FC1;KANGXI RADICAL GHOST;So;0;ON;<compat> 9B3C;;;;N;;;;;-2FC2;KANGXI RADICAL FISH;So;0;ON;<compat> 9B5A;;;;N;;;;;-2FC3;KANGXI RADICAL BIRD;So;0;ON;<compat> 9CE5;;;;N;;;;;-2FC4;KANGXI RADICAL SALT;So;0;ON;<compat> 9E75;;;;N;;;;;-2FC5;KANGXI RADICAL DEER;So;0;ON;<compat> 9E7F;;;;N;;;;;-2FC6;KANGXI RADICAL WHEAT;So;0;ON;<compat> 9EA5;;;;N;;;;;-2FC7;KANGXI RADICAL HEMP;So;0;ON;<compat> 9EBB;;;;N;;;;;-2FC8;KANGXI RADICAL YELLOW;So;0;ON;<compat> 9EC3;;;;N;;;;;-2FC9;KANGXI RADICAL MILLET;So;0;ON;<compat> 9ECD;;;;N;;;;;-2FCA;KANGXI RADICAL BLACK;So;0;ON;<compat> 9ED1;;;;N;;;;;-2FCB;KANGXI RADICAL EMBROIDERY;So;0;ON;<compat> 9EF9;;;;N;;;;;-2FCC;KANGXI RADICAL FROG;So;0;ON;<compat> 9EFD;;;;N;;;;;-2FCD;KANGXI RADICAL TRIPOD;So;0;ON;<compat> 9F0E;;;;N;;;;;-2FCE;KANGXI RADICAL DRUM;So;0;ON;<compat> 9F13;;;;N;;;;;-2FCF;KANGXI RADICAL RAT;So;0;ON;<compat> 9F20;;;;N;;;;;-2FD0;KANGXI RADICAL NOSE;So;0;ON;<compat> 9F3B;;;;N;;;;;-2FD1;KANGXI RADICAL EVEN;So;0;ON;<compat> 9F4A;;;;N;;;;;-2FD2;KANGXI RADICAL TOOTH;So;0;ON;<compat> 9F52;;;;N;;;;;-2FD3;KANGXI RADICAL DRAGON;So;0;ON;<compat> 9F8D;;;;N;;;;;-2FD4;KANGXI RADICAL TURTLE;So;0;ON;<compat> 9F9C;;;;N;;;;;-2FD5;KANGXI RADICAL FLUTE;So;0;ON;<compat> 9FA0;;;;N;;;;;-2FF0;IDEOGRAPHIC DESCRIPTION CHARACTER LEFT TO RIGHT;So;0;ON;;;;;N;;;;;-2FF1;IDEOGRAPHIC DESCRIPTION CHARACTER ABOVE TO BELOW;So;0;ON;;;;;N;;;;;-2FF2;IDEOGRAPHIC DESCRIPTION CHARACTER LEFT TO MIDDLE AND RIGHT;So;0;ON;;;;;N;;;;;-2FF3;IDEOGRAPHIC DESCRIPTION CHARACTER ABOVE TO MIDDLE AND BELOW;So;0;ON;;;;;N;;;;;-2FF4;IDEOGRAPHIC DESCRIPTION CHARACTER FULL SURROUND;So;0;ON;;;;;N;;;;;-2FF5;IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM ABOVE;So;0;ON;;;;;N;;;;;-2FF6;IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM BELOW;So;0;ON;;;;;N;;;;;-2FF7;IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM LEFT;So;0;ON;;;;;N;;;;;-2FF8;IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM UPPER LEFT;So;0;ON;;;;;N;;;;;-2FF9;IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM UPPER RIGHT;So;0;ON;;;;;N;;;;;-2FFA;IDEOGRAPHIC DESCRIPTION CHARACTER SURROUND FROM LOWER LEFT;So;0;ON;;;;;N;;;;;-2FFB;IDEOGRAPHIC DESCRIPTION CHARACTER OVERLAID;So;0;ON;;;;;N;;;;;-3000;IDEOGRAPHIC SPACE;Zs;0;WS;<wide> 0020;;;;N;;;;;-3001;IDEOGRAPHIC COMMA;Po;0;ON;;;;;N;;;;;-3002;IDEOGRAPHIC FULL STOP;Po;0;ON;;;;;N;IDEOGRAPHIC PERIOD;;;;-3003;DITTO MARK;Po;0;ON;;;;;N;;;;;-3004;JAPANESE INDUSTRIAL STANDARD SYMBOL;So;0;ON;;;;;N;;;;;-3005;IDEOGRAPHIC ITERATION MARK;Lm;0;L;;;;;N;;;;;-3006;IDEOGRAPHIC CLOSING MARK;Lo;0;L;;;;;N;;;;;-3007;IDEOGRAPHIC NUMBER ZERO;Nl;0;L;;;;0;N;;;;;-3008;LEFT ANGLE BRACKET;Ps;0;ON;;;;;Y;OPENING ANGLE BRACKET;;;;-3009;RIGHT ANGLE BRACKET;Pe;0;ON;;;;;Y;CLOSING ANGLE BRACKET;;;;-300A;LEFT DOUBLE ANGLE BRACKET;Ps;0;ON;;;;;Y;OPENING DOUBLE ANGLE BRACKET;;;;-300B;RIGHT DOUBLE ANGLE BRACKET;Pe;0;ON;;;;;Y;CLOSING DOUBLE ANGLE BRACKET;;;;-300C;LEFT CORNER BRACKET;Ps;0;ON;;;;;Y;OPENING CORNER BRACKET;;;;-300D;RIGHT CORNER BRACKET;Pe;0;ON;;;;;Y;CLOSING CORNER BRACKET;;;;-300E;LEFT WHITE CORNER BRACKET;Ps;0;ON;;;;;Y;OPENING WHITE CORNER BRACKET;;;;-300F;RIGHT WHITE CORNER BRACKET;Pe;0;ON;;;;;Y;CLOSING WHITE CORNER BRACKET;;;;-3010;LEFT BLACK LENTICULAR BRACKET;Ps;0;ON;;;;;Y;OPENING BLACK LENTICULAR BRACKET;;;;-3011;RIGHT BLACK LENTICULAR BRACKET;Pe;0;ON;;;;;Y;CLOSING BLACK LENTICULAR BRACKET;;;;-3012;POSTAL MARK;So;0;ON;;;;;N;;;;;-3013;GETA MARK;So;0;ON;;;;;N;;;;;-3014;LEFT TORTOISE SHELL BRACKET;Ps;0;ON;;;;;Y;OPENING TORTOISE SHELL BRACKET;;;;-3015;RIGHT TORTOISE SHELL BRACKET;Pe;0;ON;;;;;Y;CLOSING TORTOISE SHELL BRACKET;;;;-3016;LEFT WHITE LENTICULAR BRACKET;Ps;0;ON;;;;;Y;OPENING WHITE LENTICULAR BRACKET;;;;-3017;RIGHT WHITE LENTICULAR BRACKET;Pe;0;ON;;;;;Y;CLOSING WHITE LENTICULAR BRACKET;;;;-3018;LEFT WHITE TORTOISE SHELL BRACKET;Ps;0;ON;;;;;Y;OPENING WHITE TORTOISE SHELL BRACKET;;;;-3019;RIGHT WHITE TORTOISE SHELL BRACKET;Pe;0;ON;;;;;Y;CLOSING WHITE TORTOISE SHELL BRACKET;;;;-301A;LEFT WHITE SQUARE BRACKET;Ps;0;ON;;;;;Y;OPENING WHITE SQUARE BRACKET;;;;-301B;RIGHT WHITE SQUARE BRACKET;Pe;0;ON;;;;;Y;CLOSING WHITE SQUARE BRACKET;;;;-301C;WAVE DASH;Pd;0;ON;;;;;N;;;;;-301D;REVERSED DOUBLE PRIME QUOTATION MARK;Ps;0;ON;;;;;N;;;;;-301E;DOUBLE PRIME QUOTATION MARK;Pe;0;ON;;;;;N;;;;;-301F;LOW DOUBLE PRIME QUOTATION MARK;Pe;0;ON;;;;;N;;;;;-3020;POSTAL MARK FACE;So;0;ON;;;;;N;;;;;-3021;HANGZHOU NUMERAL ONE;Nl;0;L;;;;1;N;;;;;-3022;HANGZHOU NUMERAL TWO;Nl;0;L;;;;2;N;;;;;-3023;HANGZHOU NUMERAL THREE;Nl;0;L;;;;3;N;;;;;-3024;HANGZHOU NUMERAL FOUR;Nl;0;L;;;;4;N;;;;;-3025;HANGZHOU NUMERAL FIVE;Nl;0;L;;;;5;N;;;;;-3026;HANGZHOU NUMERAL SIX;Nl;0;L;;;;6;N;;;;;-3027;HANGZHOU NUMERAL SEVEN;Nl;0;L;;;;7;N;;;;;-3028;HANGZHOU NUMERAL EIGHT;Nl;0;L;;;;8;N;;;;;-3029;HANGZHOU NUMERAL NINE;Nl;0;L;;;;9;N;;;;;-302A;IDEOGRAPHIC LEVEL TONE MARK;Mn;218;NSM;;;;;N;;;;;-302B;IDEOGRAPHIC RISING TONE MARK;Mn;228;NSM;;;;;N;;;;;-302C;IDEOGRAPHIC DEPARTING TONE MARK;Mn;232;NSM;;;;;N;;;;;-302D;IDEOGRAPHIC ENTERING TONE MARK;Mn;222;NSM;;;;;N;;;;;-302E;HANGUL SINGLE DOT TONE MARK;Mc;224;L;;;;;N;;;;;-302F;HANGUL DOUBLE DOT TONE MARK;Mc;224;L;;;;;N;;;;;-3030;WAVY DASH;Pd;0;ON;;;;;N;;;;;-3031;VERTICAL KANA REPEAT MARK;Lm;0;L;;;;;N;;;;;-3032;VERTICAL KANA REPEAT WITH VOICED SOUND MARK;Lm;0;L;;;;;N;;;;;-3033;VERTICAL KANA REPEAT MARK UPPER HALF;Lm;0;L;;;;;N;;;;;-3034;VERTICAL KANA REPEAT WITH VOICED SOUND MARK UPPER HALF;Lm;0;L;;;;;N;;;;;-3035;VERTICAL KANA REPEAT MARK LOWER HALF;Lm;0;L;;;;;N;;;;;-3036;CIRCLED POSTAL MARK;So;0;ON;<compat> 3012;;;;N;;;;;-3037;IDEOGRAPHIC TELEGRAPH LINE FEED SEPARATOR SYMBOL;So;0;ON;;;;;N;;;;;-3038;HANGZHOU NUMERAL TEN;Nl;0;L;<compat> 5341;;;10;N;;;;;-3039;HANGZHOU NUMERAL TWENTY;Nl;0;L;<compat> 5344;;;20;N;;;;;-303A;HANGZHOU NUMERAL THIRTY;Nl;0;L;<compat> 5345;;;30;N;;;;;-303B;VERTICAL IDEOGRAPHIC ITERATION MARK;Lm;0;L;;;;;N;;;;;-303C;MASU MARK;Lo;0;L;;;;;N;;;;;-303D;PART ALTERNATION MARK;Po;0;ON;;;;;N;;;;;-303E;IDEOGRAPHIC VARIATION INDICATOR;So;0;ON;;;;;N;;;;;-303F;IDEOGRAPHIC HALF FILL SPACE;So;0;ON;;;;;N;;;;;-3041;HIRAGANA LETTER SMALL A;Lo;0;L;;;;;N;;;;;-3042;HIRAGANA LETTER A;Lo;0;L;;;;;N;;;;;-3043;HIRAGANA LETTER SMALL I;Lo;0;L;;;;;N;;;;;-3044;HIRAGANA LETTER I;Lo;0;L;;;;;N;;;;;-3045;HIRAGANA LETTER SMALL U;Lo;0;L;;;;;N;;;;;-3046;HIRAGANA LETTER U;Lo;0;L;;;;;N;;;;;-3047;HIRAGANA LETTER SMALL E;Lo;0;L;;;;;N;;;;;-3048;HIRAGANA LETTER E;Lo;0;L;;;;;N;;;;;-3049;HIRAGANA LETTER SMALL O;Lo;0;L;;;;;N;;;;;-304A;HIRAGANA LETTER O;Lo;0;L;;;;;N;;;;;-304B;HIRAGANA LETTER KA;Lo;0;L;;;;;N;;;;;-304C;HIRAGANA LETTER GA;Lo;0;L;304B 3099;;;;N;;;;;-304D;HIRAGANA LETTER KI;Lo;0;L;;;;;N;;;;;-304E;HIRAGANA LETTER GI;Lo;0;L;304D 3099;;;;N;;;;;-304F;HIRAGANA LETTER KU;Lo;0;L;;;;;N;;;;;-3050;HIRAGANA LETTER GU;Lo;0;L;304F 3099;;;;N;;;;;-3051;HIRAGANA LETTER KE;Lo;0;L;;;;;N;;;;;-3052;HIRAGANA LETTER GE;Lo;0;L;3051 3099;;;;N;;;;;-3053;HIRAGANA LETTER KO;Lo;0;L;;;;;N;;;;;-3054;HIRAGANA LETTER GO;Lo;0;L;3053 3099;;;;N;;;;;-3055;HIRAGANA LETTER SA;Lo;0;L;;;;;N;;;;;-3056;HIRAGANA LETTER ZA;Lo;0;L;3055 3099;;;;N;;;;;-3057;HIRAGANA LETTER SI;Lo;0;L;;;;;N;;;;;-3058;HIRAGANA LETTER ZI;Lo;0;L;3057 3099;;;;N;;;;;-3059;HIRAGANA LETTER SU;Lo;0;L;;;;;N;;;;;-305A;HIRAGANA LETTER ZU;Lo;0;L;3059 3099;;;;N;;;;;-305B;HIRAGANA LETTER SE;Lo;0;L;;;;;N;;;;;-305C;HIRAGANA LETTER ZE;Lo;0;L;305B 3099;;;;N;;;;;-305D;HIRAGANA LETTER SO;Lo;0;L;;;;;N;;;;;-305E;HIRAGANA LETTER ZO;Lo;0;L;305D 3099;;;;N;;;;;-305F;HIRAGANA LETTER TA;Lo;0;L;;;;;N;;;;;-3060;HIRAGANA LETTER DA;Lo;0;L;305F 3099;;;;N;;;;;-3061;HIRAGANA LETTER TI;Lo;0;L;;;;;N;;;;;-3062;HIRAGANA LETTER DI;Lo;0;L;3061 3099;;;;N;;;;;-3063;HIRAGANA LETTER SMALL TU;Lo;0;L;;;;;N;;;;;-3064;HIRAGANA LETTER TU;Lo;0;L;;;;;N;;;;;-3065;HIRAGANA LETTER DU;Lo;0;L;3064 3099;;;;N;;;;;-3066;HIRAGANA LETTER TE;Lo;0;L;;;;;N;;;;;-3067;HIRAGANA LETTER DE;Lo;0;L;3066 3099;;;;N;;;;;-3068;HIRAGANA LETTER TO;Lo;0;L;;;;;N;;;;;-3069;HIRAGANA LETTER DO;Lo;0;L;3068 3099;;;;N;;;;;-306A;HIRAGANA LETTER NA;Lo;0;L;;;;;N;;;;;-306B;HIRAGANA LETTER NI;Lo;0;L;;;;;N;;;;;-306C;HIRAGANA LETTER NU;Lo;0;L;;;;;N;;;;;-306D;HIRAGANA LETTER NE;Lo;0;L;;;;;N;;;;;-306E;HIRAGANA LETTER NO;Lo;0;L;;;;;N;;;;;-306F;HIRAGANA LETTER HA;Lo;0;L;;;;;N;;;;;-3070;HIRAGANA LETTER BA;Lo;0;L;306F 3099;;;;N;;;;;-3071;HIRAGANA LETTER PA;Lo;0;L;306F 309A;;;;N;;;;;-3072;HIRAGANA LETTER HI;Lo;0;L;;;;;N;;;;;-3073;HIRAGANA LETTER BI;Lo;0;L;3072 3099;;;;N;;;;;-3074;HIRAGANA LETTER PI;Lo;0;L;3072 309A;;;;N;;;;;-3075;HIRAGANA LETTER HU;Lo;0;L;;;;;N;;;;;-3076;HIRAGANA LETTER BU;Lo;0;L;3075 3099;;;;N;;;;;-3077;HIRAGANA LETTER PU;Lo;0;L;3075 309A;;;;N;;;;;-3078;HIRAGANA LETTER HE;Lo;0;L;;;;;N;;;;;-3079;HIRAGANA LETTER BE;Lo;0;L;3078 3099;;;;N;;;;;-307A;HIRAGANA LETTER PE;Lo;0;L;3078 309A;;;;N;;;;;-307B;HIRAGANA LETTER HO;Lo;0;L;;;;;N;;;;;-307C;HIRAGANA LETTER BO;Lo;0;L;307B 3099;;;;N;;;;;-307D;HIRAGANA LETTER PO;Lo;0;L;307B 309A;;;;N;;;;;-307E;HIRAGANA LETTER MA;Lo;0;L;;;;;N;;;;;-307F;HIRAGANA LETTER MI;Lo;0;L;;;;;N;;;;;-3080;HIRAGANA LETTER MU;Lo;0;L;;;;;N;;;;;-3081;HIRAGANA LETTER ME;Lo;0;L;;;;;N;;;;;-3082;HIRAGANA LETTER MO;Lo;0;L;;;;;N;;;;;-3083;HIRAGANA LETTER SMALL YA;Lo;0;L;;;;;N;;;;;-3084;HIRAGANA LETTER YA;Lo;0;L;;;;;N;;;;;-3085;HIRAGANA LETTER SMALL YU;Lo;0;L;;;;;N;;;;;-3086;HIRAGANA LETTER YU;Lo;0;L;;;;;N;;;;;-3087;HIRAGANA LETTER SMALL YO;Lo;0;L;;;;;N;;;;;-3088;HIRAGANA LETTER YO;Lo;0;L;;;;;N;;;;;-3089;HIRAGANA LETTER RA;Lo;0;L;;;;;N;;;;;-308A;HIRAGANA LETTER RI;Lo;0;L;;;;;N;;;;;-308B;HIRAGANA LETTER RU;Lo;0;L;;;;;N;;;;;-308C;HIRAGANA LETTER RE;Lo;0;L;;;;;N;;;;;-308D;HIRAGANA LETTER RO;Lo;0;L;;;;;N;;;;;-308E;HIRAGANA LETTER SMALL WA;Lo;0;L;;;;;N;;;;;-308F;HIRAGANA LETTER WA;Lo;0;L;;;;;N;;;;;-3090;HIRAGANA LETTER WI;Lo;0;L;;;;;N;;;;;-3091;HIRAGANA LETTER WE;Lo;0;L;;;;;N;;;;;-3092;HIRAGANA LETTER WO;Lo;0;L;;;;;N;;;;;-3093;HIRAGANA LETTER N;Lo;0;L;;;;;N;;;;;-3094;HIRAGANA LETTER VU;Lo;0;L;3046 3099;;;;N;;;;;-3095;HIRAGANA LETTER SMALL KA;Lo;0;L;;;;;N;;;;;-3096;HIRAGANA LETTER SMALL KE;Lo;0;L;;;;;N;;;;;-3099;COMBINING KATAKANA-HIRAGANA VOICED SOUND MARK;Mn;8;NSM;;;;;N;NON-SPACING KATAKANA-HIRAGANA VOICED SOUND MARK;;;;-309A;COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK;Mn;8;NSM;;;;;N;NON-SPACING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK;;;;-309B;KATAKANA-HIRAGANA VOICED SOUND MARK;Sk;0;ON;<compat> 0020 3099;;;;N;;;;;-309C;KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK;Sk;0;ON;<compat> 0020 309A;;;;N;;;;;-309D;HIRAGANA ITERATION MARK;Lm;0;L;;;;;N;;;;;-309E;HIRAGANA VOICED ITERATION MARK;Lm;0;L;309D 3099;;;;N;;;;;-309F;HIRAGANA DIGRAPH YORI;Lo;0;L;<vertical> 3088 308A;;;;N;;;;;-30A0;KATAKANA-HIRAGANA DOUBLE HYPHEN;Pd;0;ON;;;;;N;;;;;-30A1;KATAKANA LETTER SMALL A;Lo;0;L;;;;;N;;;;;-30A2;KATAKANA LETTER A;Lo;0;L;;;;;N;;;;;-30A3;KATAKANA LETTER SMALL I;Lo;0;L;;;;;N;;;;;-30A4;KATAKANA LETTER I;Lo;0;L;;;;;N;;;;;-30A5;KATAKANA LETTER SMALL U;Lo;0;L;;;;;N;;;;;-30A6;KATAKANA LETTER U;Lo;0;L;;;;;N;;;;;-30A7;KATAKANA LETTER SMALL E;Lo;0;L;;;;;N;;;;;-30A8;KATAKANA LETTER E;Lo;0;L;;;;;N;;;;;-30A9;KATAKANA LETTER SMALL O;Lo;0;L;;;;;N;;;;;-30AA;KATAKANA LETTER O;Lo;0;L;;;;;N;;;;;-30AB;KATAKANA LETTER KA;Lo;0;L;;;;;N;;;;;-30AC;KATAKANA LETTER GA;Lo;0;L;30AB 3099;;;;N;;;;;-30AD;KATAKANA LETTER KI;Lo;0;L;;;;;N;;;;;-30AE;KATAKANA LETTER GI;Lo;0;L;30AD 3099;;;;N;;;;;-30AF;KATAKANA LETTER KU;Lo;0;L;;;;;N;;;;;-30B0;KATAKANA LETTER GU;Lo;0;L;30AF 3099;;;;N;;;;;-30B1;KATAKANA LETTER KE;Lo;0;L;;;;;N;;;;;-30B2;KATAKANA LETTER GE;Lo;0;L;30B1 3099;;;;N;;;;;-30B3;KATAKANA LETTER KO;Lo;0;L;;;;;N;;;;;-30B4;KATAKANA LETTER GO;Lo;0;L;30B3 3099;;;;N;;;;;-30B5;KATAKANA LETTER SA;Lo;0;L;;;;;N;;;;;-30B6;KATAKANA LETTER ZA;Lo;0;L;30B5 3099;;;;N;;;;;-30B7;KATAKANA LETTER SI;Lo;0;L;;;;;N;;;;;-30B8;KATAKANA LETTER ZI;Lo;0;L;30B7 3099;;;;N;;;;;-30B9;KATAKANA LETTER SU;Lo;0;L;;;;;N;;;;;-30BA;KATAKANA LETTER ZU;Lo;0;L;30B9 3099;;;;N;;;;;-30BB;KATAKANA LETTER SE;Lo;0;L;;;;;N;;;;;-30BC;KATAKANA LETTER ZE;Lo;0;L;30BB 3099;;;;N;;;;;-30BD;KATAKANA LETTER SO;Lo;0;L;;;;;N;;;;;-30BE;KATAKANA LETTER ZO;Lo;0;L;30BD 3099;;;;N;;;;;-30BF;KATAKANA LETTER TA;Lo;0;L;;;;;N;;;;;-30C0;KATAKANA LETTER DA;Lo;0;L;30BF 3099;;;;N;;;;;-30C1;KATAKANA LETTER TI;Lo;0;L;;;;;N;;;;;-30C2;KATAKANA LETTER DI;Lo;0;L;30C1 3099;;;;N;;;;;-30C3;KATAKANA LETTER SMALL TU;Lo;0;L;;;;;N;;;;;-30C4;KATAKANA LETTER TU;Lo;0;L;;;;;N;;;;;-30C5;KATAKANA LETTER DU;Lo;0;L;30C4 3099;;;;N;;;;;-30C6;KATAKANA LETTER TE;Lo;0;L;;;;;N;;;;;-30C7;KATAKANA LETTER DE;Lo;0;L;30C6 3099;;;;N;;;;;-30C8;KATAKANA LETTER TO;Lo;0;L;;;;;N;;;;;-30C9;KATAKANA LETTER DO;Lo;0;L;30C8 3099;;;;N;;;;;-30CA;KATAKANA LETTER NA;Lo;0;L;;;;;N;;;;;-30CB;KATAKANA LETTER NI;Lo;0;L;;;;;N;;;;;-30CC;KATAKANA LETTER NU;Lo;0;L;;;;;N;;;;;-30CD;KATAKANA LETTER NE;Lo;0;L;;;;;N;;;;;-30CE;KATAKANA LETTER NO;Lo;0;L;;;;;N;;;;;-30CF;KATAKANA LETTER HA;Lo;0;L;;;;;N;;;;;-30D0;KATAKANA LETTER BA;Lo;0;L;30CF 3099;;;;N;;;;;-30D1;KATAKANA LETTER PA;Lo;0;L;30CF 309A;;;;N;;;;;-30D2;KATAKANA LETTER HI;Lo;0;L;;;;;N;;;;;-30D3;KATAKANA LETTER BI;Lo;0;L;30D2 3099;;;;N;;;;;-30D4;KATAKANA LETTER PI;Lo;0;L;30D2 309A;;;;N;;;;;-30D5;KATAKANA LETTER HU;Lo;0;L;;;;;N;;;;;-30D6;KATAKANA LETTER BU;Lo;0;L;30D5 3099;;;;N;;;;;-30D7;KATAKANA LETTER PU;Lo;0;L;30D5 309A;;;;N;;;;;-30D8;KATAKANA LETTER HE;Lo;0;L;;;;;N;;;;;-30D9;KATAKANA LETTER BE;Lo;0;L;30D8 3099;;;;N;;;;;-30DA;KATAKANA LETTER PE;Lo;0;L;30D8 309A;;;;N;;;;;-30DB;KATAKANA LETTER HO;Lo;0;L;;;;;N;;;;;-30DC;KATAKANA LETTER BO;Lo;0;L;30DB 3099;;;;N;;;;;-30DD;KATAKANA LETTER PO;Lo;0;L;30DB 309A;;;;N;;;;;-30DE;KATAKANA LETTER MA;Lo;0;L;;;;;N;;;;;-30DF;KATAKANA LETTER MI;Lo;0;L;;;;;N;;;;;-30E0;KATAKANA LETTER MU;Lo;0;L;;;;;N;;;;;-30E1;KATAKANA LETTER ME;Lo;0;L;;;;;N;;;;;-30E2;KATAKANA LETTER MO;Lo;0;L;;;;;N;;;;;-30E3;KATAKANA LETTER SMALL YA;Lo;0;L;;;;;N;;;;;-30E4;KATAKANA LETTER YA;Lo;0;L;;;;;N;;;;;-30E5;KATAKANA LETTER SMALL YU;Lo;0;L;;;;;N;;;;;-30E6;KATAKANA LETTER YU;Lo;0;L;;;;;N;;;;;-30E7;KATAKANA LETTER SMALL YO;Lo;0;L;;;;;N;;;;;-30E8;KATAKANA LETTER YO;Lo;0;L;;;;;N;;;;;-30E9;KATAKANA LETTER RA;Lo;0;L;;;;;N;;;;;-30EA;KATAKANA LETTER RI;Lo;0;L;;;;;N;;;;;-30EB;KATAKANA LETTER RU;Lo;0;L;;;;;N;;;;;-30EC;KATAKANA LETTER RE;Lo;0;L;;;;;N;;;;;-30ED;KATAKANA LETTER RO;Lo;0;L;;;;;N;;;;;-30EE;KATAKANA LETTER SMALL WA;Lo;0;L;;;;;N;;;;;-30EF;KATAKANA LETTER WA;Lo;0;L;;;;;N;;;;;-30F0;KATAKANA LETTER WI;Lo;0;L;;;;;N;;;;;-30F1;KATAKANA LETTER WE;Lo;0;L;;;;;N;;;;;-30F2;KATAKANA LETTER WO;Lo;0;L;;;;;N;;;;;-30F3;KATAKANA LETTER N;Lo;0;L;;;;;N;;;;;-30F4;KATAKANA LETTER VU;Lo;0;L;30A6 3099;;;;N;;;;;-30F5;KATAKANA LETTER SMALL KA;Lo;0;L;;;;;N;;;;;-30F6;KATAKANA LETTER SMALL KE;Lo;0;L;;;;;N;;;;;-30F7;KATAKANA LETTER VA;Lo;0;L;30EF 3099;;;;N;;;;;-30F8;KATAKANA LETTER VI;Lo;0;L;30F0 3099;;;;N;;;;;-30F9;KATAKANA LETTER VE;Lo;0;L;30F1 3099;;;;N;;;;;-30FA;KATAKANA LETTER VO;Lo;0;L;30F2 3099;;;;N;;;;;-30FB;KATAKANA MIDDLE DOT;Po;0;ON;;;;;N;;;;;-30FC;KATAKANA-HIRAGANA PROLONGED SOUND MARK;Lm;0;L;;;;;N;;;;;-30FD;KATAKANA ITERATION MARK;Lm;0;L;;;;;N;;;;;-30FE;KATAKANA VOICED ITERATION MARK;Lm;0;L;30FD 3099;;;;N;;;;;-30FF;KATAKANA DIGRAPH KOTO;Lo;0;L;<vertical> 30B3 30C8;;;;N;;;;;-3105;BOPOMOFO LETTER B;Lo;0;L;;;;;N;;;;;-3106;BOPOMOFO LETTER P;Lo;0;L;;;;;N;;;;;-3107;BOPOMOFO LETTER M;Lo;0;L;;;;;N;;;;;-3108;BOPOMOFO LETTER F;Lo;0;L;;;;;N;;;;;-3109;BOPOMOFO LETTER D;Lo;0;L;;;;;N;;;;;-310A;BOPOMOFO LETTER T;Lo;0;L;;;;;N;;;;;-310B;BOPOMOFO LETTER N;Lo;0;L;;;;;N;;;;;-310C;BOPOMOFO LETTER L;Lo;0;L;;;;;N;;;;;-310D;BOPOMOFO LETTER G;Lo;0;L;;;;;N;;;;;-310E;BOPOMOFO LETTER K;Lo;0;L;;;;;N;;;;;-310F;BOPOMOFO LETTER H;Lo;0;L;;;;;N;;;;;-3110;BOPOMOFO LETTER J;Lo;0;L;;;;;N;;;;;-3111;BOPOMOFO LETTER Q;Lo;0;L;;;;;N;;;;;-3112;BOPOMOFO LETTER X;Lo;0;L;;;;;N;;;;;-3113;BOPOMOFO LETTER ZH;Lo;0;L;;;;;N;;;;;-3114;BOPOMOFO LETTER CH;Lo;0;L;;;;;N;;;;;-3115;BOPOMOFO LETTER SH;Lo;0;L;;;;;N;;;;;-3116;BOPOMOFO LETTER R;Lo;0;L;;;;;N;;;;;-3117;BOPOMOFO LETTER Z;Lo;0;L;;;;;N;;;;;-3118;BOPOMOFO LETTER C;Lo;0;L;;;;;N;;;;;-3119;BOPOMOFO LETTER S;Lo;0;L;;;;;N;;;;;-311A;BOPOMOFO LETTER A;Lo;0;L;;;;;N;;;;;-311B;BOPOMOFO LETTER O;Lo;0;L;;;;;N;;;;;-311C;BOPOMOFO LETTER E;Lo;0;L;;;;;N;;;;;-311D;BOPOMOFO LETTER EH;Lo;0;L;;;;;N;;;;;-311E;BOPOMOFO LETTER AI;Lo;0;L;;;;;N;;;;;-311F;BOPOMOFO LETTER EI;Lo;0;L;;;;;N;;;;;-3120;BOPOMOFO LETTER AU;Lo;0;L;;;;;N;;;;;-3121;BOPOMOFO LETTER OU;Lo;0;L;;;;;N;;;;;-3122;BOPOMOFO LETTER AN;Lo;0;L;;;;;N;;;;;-3123;BOPOMOFO LETTER EN;Lo;0;L;;;;;N;;;;;-3124;BOPOMOFO LETTER ANG;Lo;0;L;;;;;N;;;;;-3125;BOPOMOFO LETTER ENG;Lo;0;L;;;;;N;;;;;-3126;BOPOMOFO LETTER ER;Lo;0;L;;;;;N;;;;;-3127;BOPOMOFO LETTER I;Lo;0;L;;;;;N;;;;;-3128;BOPOMOFO LETTER U;Lo;0;L;;;;;N;;;;;-3129;BOPOMOFO LETTER IU;Lo;0;L;;;;;N;;;;;-312A;BOPOMOFO LETTER V;Lo;0;L;;;;;N;;;;;-312B;BOPOMOFO LETTER NG;Lo;0;L;;;;;N;;;;;-312C;BOPOMOFO LETTER GN;Lo;0;L;;;;;N;;;;;-312D;BOPOMOFO LETTER IH;Lo;0;L;;;;;N;;;;;-3131;HANGUL LETTER KIYEOK;Lo;0;L;<compat> 1100;;;;N;HANGUL LETTER GIYEOG;;;;-3132;HANGUL LETTER SSANGKIYEOK;Lo;0;L;<compat> 1101;;;;N;HANGUL LETTER SSANG GIYEOG;;;;-3133;HANGUL LETTER KIYEOK-SIOS;Lo;0;L;<compat> 11AA;;;;N;HANGUL LETTER GIYEOG SIOS;;;;-3134;HANGUL LETTER NIEUN;Lo;0;L;<compat> 1102;;;;N;;;;;-3135;HANGUL LETTER NIEUN-CIEUC;Lo;0;L;<compat> 11AC;;;;N;HANGUL LETTER NIEUN JIEUJ;;;;-3136;HANGUL LETTER NIEUN-HIEUH;Lo;0;L;<compat> 11AD;;;;N;HANGUL LETTER NIEUN HIEUH;;;;-3137;HANGUL LETTER TIKEUT;Lo;0;L;<compat> 1103;;;;N;HANGUL LETTER DIGEUD;;;;-3138;HANGUL LETTER SSANGTIKEUT;Lo;0;L;<compat> 1104;;;;N;HANGUL LETTER SSANG DIGEUD;;;;-3139;HANGUL LETTER RIEUL;Lo;0;L;<compat> 1105;;;;N;HANGUL LETTER LIEUL;;;;-313A;HANGUL LETTER RIEUL-KIYEOK;Lo;0;L;<compat> 11B0;;;;N;HANGUL LETTER LIEUL GIYEOG;;;;-313B;HANGUL LETTER RIEUL-MIEUM;Lo;0;L;<compat> 11B1;;;;N;HANGUL LETTER LIEUL MIEUM;;;;-313C;HANGUL LETTER RIEUL-PIEUP;Lo;0;L;<compat> 11B2;;;;N;HANGUL LETTER LIEUL BIEUB;;;;-313D;HANGUL LETTER RIEUL-SIOS;Lo;0;L;<compat> 11B3;;;;N;HANGUL LETTER LIEUL SIOS;;;;-313E;HANGUL LETTER RIEUL-THIEUTH;Lo;0;L;<compat> 11B4;;;;N;HANGUL LETTER LIEUL TIEUT;;;;-313F;HANGUL LETTER RIEUL-PHIEUPH;Lo;0;L;<compat> 11B5;;;;N;HANGUL LETTER LIEUL PIEUP;;;;-3140;HANGUL LETTER RIEUL-HIEUH;Lo;0;L;<compat> 111A;;;;N;HANGUL LETTER LIEUL HIEUH;;;;-3141;HANGUL LETTER MIEUM;Lo;0;L;<compat> 1106;;;;N;;;;;-3142;HANGUL LETTER PIEUP;Lo;0;L;<compat> 1107;;;;N;HANGUL LETTER BIEUB;;;;-3143;HANGUL LETTER SSANGPIEUP;Lo;0;L;<compat> 1108;;;;N;HANGUL LETTER SSANG BIEUB;;;;-3144;HANGUL LETTER PIEUP-SIOS;Lo;0;L;<compat> 1121;;;;N;HANGUL LETTER BIEUB SIOS;;;;-3145;HANGUL LETTER SIOS;Lo;0;L;<compat> 1109;;;;N;;;;;-3146;HANGUL LETTER SSANGSIOS;Lo;0;L;<compat> 110A;;;;N;HANGUL LETTER SSANG SIOS;;;;-3147;HANGUL LETTER IEUNG;Lo;0;L;<compat> 110B;;;;N;;;;;-3148;HANGUL LETTER CIEUC;Lo;0;L;<compat> 110C;;;;N;HANGUL LETTER JIEUJ;;;;-3149;HANGUL LETTER SSANGCIEUC;Lo;0;L;<compat> 110D;;;;N;HANGUL LETTER SSANG JIEUJ;;;;-314A;HANGUL LETTER CHIEUCH;Lo;0;L;<compat> 110E;;;;N;HANGUL LETTER CIEUC;;;;-314B;HANGUL LETTER KHIEUKH;Lo;0;L;<compat> 110F;;;;N;HANGUL LETTER KIYEOK;;;;-314C;HANGUL LETTER THIEUTH;Lo;0;L;<compat> 1110;;;;N;HANGUL LETTER TIEUT;;;;-314D;HANGUL LETTER PHIEUPH;Lo;0;L;<compat> 1111;;;;N;HANGUL LETTER PIEUP;;;;-314E;HANGUL LETTER HIEUH;Lo;0;L;<compat> 1112;;;;N;;;;;-314F;HANGUL LETTER A;Lo;0;L;<compat> 1161;;;;N;;;;;-3150;HANGUL LETTER AE;Lo;0;L;<compat> 1162;;;;N;;;;;-3151;HANGUL LETTER YA;Lo;0;L;<compat> 1163;;;;N;;;;;-3152;HANGUL LETTER YAE;Lo;0;L;<compat> 1164;;;;N;;;;;-3153;HANGUL LETTER EO;Lo;0;L;<compat> 1165;;;;N;;;;;-3154;HANGUL LETTER E;Lo;0;L;<compat> 1166;;;;N;;;;;-3155;HANGUL LETTER YEO;Lo;0;L;<compat> 1167;;;;N;;;;;-3156;HANGUL LETTER YE;Lo;0;L;<compat> 1168;;;;N;;;;;-3157;HANGUL LETTER O;Lo;0;L;<compat> 1169;;;;N;;;;;-3158;HANGUL LETTER WA;Lo;0;L;<compat> 116A;;;;N;;;;;-3159;HANGUL LETTER WAE;Lo;0;L;<compat> 116B;;;;N;;;;;-315A;HANGUL LETTER OE;Lo;0;L;<compat> 116C;;;;N;;;;;-315B;HANGUL LETTER YO;Lo;0;L;<compat> 116D;;;;N;;;;;-315C;HANGUL LETTER U;Lo;0;L;<compat> 116E;;;;N;;;;;-315D;HANGUL LETTER WEO;Lo;0;L;<compat> 116F;;;;N;;;;;-315E;HANGUL LETTER WE;Lo;0;L;<compat> 1170;;;;N;;;;;-315F;HANGUL LETTER WI;Lo;0;L;<compat> 1171;;;;N;;;;;-3160;HANGUL LETTER YU;Lo;0;L;<compat> 1172;;;;N;;;;;-3161;HANGUL LETTER EU;Lo;0;L;<compat> 1173;;;;N;;;;;-3162;HANGUL LETTER YI;Lo;0;L;<compat> 1174;;;;N;;;;;-3163;HANGUL LETTER I;Lo;0;L;<compat> 1175;;;;N;;;;;-3164;HANGUL FILLER;Lo;0;L;<compat> 1160;;;;N;HANGUL CAE OM;;;;-3165;HANGUL LETTER SSANGNIEUN;Lo;0;L;<compat> 1114;;;;N;HANGUL LETTER SSANG NIEUN;;;;-3166;HANGUL LETTER NIEUN-TIKEUT;Lo;0;L;<compat> 1115;;;;N;HANGUL LETTER NIEUN DIGEUD;;;;-3167;HANGUL LETTER NIEUN-SIOS;Lo;0;L;<compat> 11C7;;;;N;HANGUL LETTER NIEUN SIOS;;;;-3168;HANGUL LETTER NIEUN-PANSIOS;Lo;0;L;<compat> 11C8;;;;N;HANGUL LETTER NIEUN BAN CHI EUM;;;;-3169;HANGUL LETTER RIEUL-KIYEOK-SIOS;Lo;0;L;<compat> 11CC;;;;N;HANGUL LETTER LIEUL GIYEOG SIOS;;;;-316A;HANGUL LETTER RIEUL-TIKEUT;Lo;0;L;<compat> 11CE;;;;N;HANGUL LETTER LIEUL DIGEUD;;;;-316B;HANGUL LETTER RIEUL-PIEUP-SIOS;Lo;0;L;<compat> 11D3;;;;N;HANGUL LETTER LIEUL BIEUB SIOS;;;;-316C;HANGUL LETTER RIEUL-PANSIOS;Lo;0;L;<compat> 11D7;;;;N;HANGUL LETTER LIEUL BAN CHI EUM;;;;-316D;HANGUL LETTER RIEUL-YEORINHIEUH;Lo;0;L;<compat> 11D9;;;;N;HANGUL LETTER LIEUL YEOLIN HIEUH;;;;-316E;HANGUL LETTER MIEUM-PIEUP;Lo;0;L;<compat> 111C;;;;N;HANGUL LETTER MIEUM BIEUB;;;;-316F;HANGUL LETTER MIEUM-SIOS;Lo;0;L;<compat> 11DD;;;;N;HANGUL LETTER MIEUM SIOS;;;;-3170;HANGUL LETTER MIEUM-PANSIOS;Lo;0;L;<compat> 11DF;;;;N;HANGUL LETTER BIEUB BAN CHI EUM;;;;-3171;HANGUL LETTER KAPYEOUNMIEUM;Lo;0;L;<compat> 111D;;;;N;HANGUL LETTER MIEUM SUN GYEONG EUM;;;;-3172;HANGUL LETTER PIEUP-KIYEOK;Lo;0;L;<compat> 111E;;;;N;HANGUL LETTER BIEUB GIYEOG;;;;-3173;HANGUL LETTER PIEUP-TIKEUT;Lo;0;L;<compat> 1120;;;;N;HANGUL LETTER BIEUB DIGEUD;;;;-3174;HANGUL LETTER PIEUP-SIOS-KIYEOK;Lo;0;L;<compat> 1122;;;;N;HANGUL LETTER BIEUB SIOS GIYEOG;;;;-3175;HANGUL LETTER PIEUP-SIOS-TIKEUT;Lo;0;L;<compat> 1123;;;;N;HANGUL LETTER BIEUB SIOS DIGEUD;;;;-3176;HANGUL LETTER PIEUP-CIEUC;Lo;0;L;<compat> 1127;;;;N;HANGUL LETTER BIEUB JIEUJ;;;;-3177;HANGUL LETTER PIEUP-THIEUTH;Lo;0;L;<compat> 1129;;;;N;HANGUL LETTER BIEUB TIEUT;;;;-3178;HANGUL LETTER KAPYEOUNPIEUP;Lo;0;L;<compat> 112B;;;;N;HANGUL LETTER BIEUB SUN GYEONG EUM;;;;-3179;HANGUL LETTER KAPYEOUNSSANGPIEUP;Lo;0;L;<compat> 112C;;;;N;HANGUL LETTER SSANG BIEUB SUN GYEONG EUM;;;;-317A;HANGUL LETTER SIOS-KIYEOK;Lo;0;L;<compat> 112D;;;;N;HANGUL LETTER SIOS GIYEOG;;;;-317B;HANGUL LETTER SIOS-NIEUN;Lo;0;L;<compat> 112E;;;;N;HANGUL LETTER SIOS NIEUN;;;;-317C;HANGUL LETTER SIOS-TIKEUT;Lo;0;L;<compat> 112F;;;;N;HANGUL LETTER SIOS DIGEUD;;;;-317D;HANGUL LETTER SIOS-PIEUP;Lo;0;L;<compat> 1132;;;;N;HANGUL LETTER SIOS BIEUB;;;;-317E;HANGUL LETTER SIOS-CIEUC;Lo;0;L;<compat> 1136;;;;N;HANGUL LETTER SIOS JIEUJ;;;;-317F;HANGUL LETTER PANSIOS;Lo;0;L;<compat> 1140;;;;N;HANGUL LETTER BAN CHI EUM;;;;-3180;HANGUL LETTER SSANGIEUNG;Lo;0;L;<compat> 1147;;;;N;HANGUL LETTER SSANG IEUNG;;;;-3181;HANGUL LETTER YESIEUNG;Lo;0;L;<compat> 114C;;;;N;HANGUL LETTER NGIEUNG;;;;-3182;HANGUL LETTER YESIEUNG-SIOS;Lo;0;L;<compat> 11F1;;;;N;HANGUL LETTER NGIEUNG SIOS;;;;-3183;HANGUL LETTER YESIEUNG-PANSIOS;Lo;0;L;<compat> 11F2;;;;N;HANGUL LETTER NGIEUNG BAN CHI EUM;;;;-3184;HANGUL LETTER KAPYEOUNPHIEUPH;Lo;0;L;<compat> 1157;;;;N;HANGUL LETTER PIEUP SUN GYEONG EUM;;;;-3185;HANGUL LETTER SSANGHIEUH;Lo;0;L;<compat> 1158;;;;N;HANGUL LETTER SSANG HIEUH;;;;-3186;HANGUL LETTER YEORINHIEUH;Lo;0;L;<compat> 1159;;;;N;HANGUL LETTER YEOLIN HIEUH;;;;-3187;HANGUL LETTER YO-YA;Lo;0;L;<compat> 1184;;;;N;HANGUL LETTER YOYA;;;;-3188;HANGUL LETTER YO-YAE;Lo;0;L;<compat> 1185;;;;N;HANGUL LETTER YOYAE;;;;-3189;HANGUL LETTER YO-I;Lo;0;L;<compat> 1188;;;;N;HANGUL LETTER YOI;;;;-318A;HANGUL LETTER YU-YEO;Lo;0;L;<compat> 1191;;;;N;HANGUL LETTER YUYEO;;;;-318B;HANGUL LETTER YU-YE;Lo;0;L;<compat> 1192;;;;N;HANGUL LETTER YUYE;;;;-318C;HANGUL LETTER YU-I;Lo;0;L;<compat> 1194;;;;N;HANGUL LETTER YUI;;;;-318D;HANGUL LETTER ARAEA;Lo;0;L;<compat> 119E;;;;N;HANGUL LETTER ALAE A;;;;-318E;HANGUL LETTER ARAEAE;Lo;0;L;<compat> 11A1;;;;N;HANGUL LETTER ALAE AE;;;;-3190;IDEOGRAPHIC ANNOTATION LINKING MARK;So;0;L;;;;;N;KANBUN TATETEN;;;;-3191;IDEOGRAPHIC ANNOTATION REVERSE MARK;So;0;L;;;;;N;KAERITEN RE;;;;-3192;IDEOGRAPHIC ANNOTATION ONE MARK;No;0;L;<super> 4E00;;;1;N;KAERITEN ITI;;;;-3193;IDEOGRAPHIC ANNOTATION TWO MARK;No;0;L;<super> 4E8C;;;2;N;KAERITEN NI;;;;-3194;IDEOGRAPHIC ANNOTATION THREE MARK;No;0;L;<super> 4E09;;;3;N;KAERITEN SAN;;;;-3195;IDEOGRAPHIC ANNOTATION FOUR MARK;No;0;L;<super> 56DB;;;4;N;KAERITEN SI;;;;-3196;IDEOGRAPHIC ANNOTATION TOP MARK;So;0;L;<super> 4E0A;;;;N;KAERITEN ZYOU;;;;-3197;IDEOGRAPHIC ANNOTATION MIDDLE MARK;So;0;L;<super> 4E2D;;;;N;KAERITEN TYUU;;;;-3198;IDEOGRAPHIC ANNOTATION BOTTOM MARK;So;0;L;<super> 4E0B;;;;N;KAERITEN GE;;;;-3199;IDEOGRAPHIC ANNOTATION FIRST MARK;So;0;L;<super> 7532;;;;N;KAERITEN KOU;;;;-319A;IDEOGRAPHIC ANNOTATION SECOND MARK;So;0;L;<super> 4E59;;;;N;KAERITEN OTU;;;;-319B;IDEOGRAPHIC ANNOTATION THIRD MARK;So;0;L;<super> 4E19;;;;N;KAERITEN HEI;;;;-319C;IDEOGRAPHIC ANNOTATION FOURTH MARK;So;0;L;<super> 4E01;;;;N;KAERITEN TEI;;;;-319D;IDEOGRAPHIC ANNOTATION HEAVEN MARK;So;0;L;<super> 5929;;;;N;KAERITEN TEN;;;;-319E;IDEOGRAPHIC ANNOTATION EARTH MARK;So;0;L;<super> 5730;;;;N;KAERITEN TI;;;;-319F;IDEOGRAPHIC ANNOTATION MAN MARK;So;0;L;<super> 4EBA;;;;N;KAERITEN ZIN;;;;-31A0;BOPOMOFO LETTER BU;Lo;0;L;;;;;N;;;;;-31A1;BOPOMOFO LETTER ZI;Lo;0;L;;;;;N;;;;;-31A2;BOPOMOFO LETTER JI;Lo;0;L;;;;;N;;;;;-31A3;BOPOMOFO LETTER GU;Lo;0;L;;;;;N;;;;;-31A4;BOPOMOFO LETTER EE;Lo;0;L;;;;;N;;;;;-31A5;BOPOMOFO LETTER ENN;Lo;0;L;;;;;N;;;;;-31A6;BOPOMOFO LETTER OO;Lo;0;L;;;;;N;;;;;-31A7;BOPOMOFO LETTER ONN;Lo;0;L;;;;;N;;;;;-31A8;BOPOMOFO LETTER IR;Lo;0;L;;;;;N;;;;;-31A9;BOPOMOFO LETTER ANN;Lo;0;L;;;;;N;;;;;-31AA;BOPOMOFO LETTER INN;Lo;0;L;;;;;N;;;;;-31AB;BOPOMOFO LETTER UNN;Lo;0;L;;;;;N;;;;;-31AC;BOPOMOFO LETTER IM;Lo;0;L;;;;;N;;;;;-31AD;BOPOMOFO LETTER NGG;Lo;0;L;;;;;N;;;;;-31AE;BOPOMOFO LETTER AINN;Lo;0;L;;;;;N;;;;;-31AF;BOPOMOFO LETTER AUNN;Lo;0;L;;;;;N;;;;;-31B0;BOPOMOFO LETTER AM;Lo;0;L;;;;;N;;;;;-31B1;BOPOMOFO LETTER OM;Lo;0;L;;;;;N;;;;;-31B2;BOPOMOFO LETTER ONG;Lo;0;L;;;;;N;;;;;-31B3;BOPOMOFO LETTER INNN;Lo;0;L;;;;;N;;;;;-31B4;BOPOMOFO FINAL LETTER P;Lo;0;L;;;;;N;;;;;-31B5;BOPOMOFO FINAL LETTER T;Lo;0;L;;;;;N;;;;;-31B6;BOPOMOFO FINAL LETTER K;Lo;0;L;;;;;N;;;;;-31B7;BOPOMOFO FINAL LETTER H;Lo;0;L;;;;;N;;;;;-31B8;BOPOMOFO LETTER GH;Lo;0;L;;;;;N;;;;;-31B9;BOPOMOFO LETTER LH;Lo;0;L;;;;;N;;;;;-31BA;BOPOMOFO LETTER ZY;Lo;0;L;;;;;N;;;;;-31C0;CJK STROKE T;So;0;ON;;;;;N;;;;;-31C1;CJK STROKE WG;So;0;ON;;;;;N;;;;;-31C2;CJK STROKE XG;So;0;ON;;;;;N;;;;;-31C3;CJK STROKE BXG;So;0;ON;;;;;N;;;;;-31C4;CJK STROKE SW;So;0;ON;;;;;N;;;;;-31C5;CJK STROKE HZZ;So;0;ON;;;;;N;;;;;-31C6;CJK STROKE HZG;So;0;ON;;;;;N;;;;;-31C7;CJK STROKE HP;So;0;ON;;;;;N;;;;;-31C8;CJK STROKE HZWG;So;0;ON;;;;;N;;;;;-31C9;CJK STROKE SZWG;So;0;ON;;;;;N;;;;;-31CA;CJK STROKE HZT;So;0;ON;;;;;N;;;;;-31CB;CJK STROKE HZZP;So;0;ON;;;;;N;;;;;-31CC;CJK STROKE HPWG;So;0;ON;;;;;N;;;;;-31CD;CJK STROKE HZW;So;0;ON;;;;;N;;;;;-31CE;CJK STROKE HZZZ;So;0;ON;;;;;N;;;;;-31CF;CJK STROKE N;So;0;ON;;;;;N;;;;;-31D0;CJK STROKE H;So;0;ON;;;;;N;;;;;-31D1;CJK STROKE S;So;0;ON;;;;;N;;;;;-31D2;CJK STROKE P;So;0;ON;;;;;N;;;;;-31D3;CJK STROKE SP;So;0;ON;;;;;N;;;;;-31D4;CJK STROKE D;So;0;ON;;;;;N;;;;;-31D5;CJK STROKE HZ;So;0;ON;;;;;N;;;;;-31D6;CJK STROKE HG;So;0;ON;;;;;N;;;;;-31D7;CJK STROKE SZ;So;0;ON;;;;;N;;;;;-31D8;CJK STROKE SWZ;So;0;ON;;;;;N;;;;;-31D9;CJK STROKE ST;So;0;ON;;;;;N;;;;;-31DA;CJK STROKE SG;So;0;ON;;;;;N;;;;;-31DB;CJK STROKE PD;So;0;ON;;;;;N;;;;;-31DC;CJK STROKE PZ;So;0;ON;;;;;N;;;;;-31DD;CJK STROKE TN;So;0;ON;;;;;N;;;;;-31DE;CJK STROKE SZZ;So;0;ON;;;;;N;;;;;-31DF;CJK STROKE SWG;So;0;ON;;;;;N;;;;;-31E0;CJK STROKE HXWG;So;0;ON;;;;;N;;;;;-31E1;CJK STROKE HZZZG;So;0;ON;;;;;N;;;;;-31E2;CJK STROKE PG;So;0;ON;;;;;N;;;;;-31E3;CJK STROKE Q;So;0;ON;;;;;N;;;;;-31F0;KATAKANA LETTER SMALL KU;Lo;0;L;;;;;N;;;;;-31F1;KATAKANA LETTER SMALL SI;Lo;0;L;;;;;N;;;;;-31F2;KATAKANA LETTER SMALL SU;Lo;0;L;;;;;N;;;;;-31F3;KATAKANA LETTER SMALL TO;Lo;0;L;;;;;N;;;;;-31F4;KATAKANA LETTER SMALL NU;Lo;0;L;;;;;N;;;;;-31F5;KATAKANA LETTER SMALL HA;Lo;0;L;;;;;N;;;;;-31F6;KATAKANA LETTER SMALL HI;Lo;0;L;;;;;N;;;;;-31F7;KATAKANA LETTER SMALL HU;Lo;0;L;;;;;N;;;;;-31F8;KATAKANA LETTER SMALL HE;Lo;0;L;;;;;N;;;;;-31F9;KATAKANA LETTER SMALL HO;Lo;0;L;;;;;N;;;;;-31FA;KATAKANA LETTER SMALL MU;Lo;0;L;;;;;N;;;;;-31FB;KATAKANA LETTER SMALL RA;Lo;0;L;;;;;N;;;;;-31FC;KATAKANA LETTER SMALL RI;Lo;0;L;;;;;N;;;;;-31FD;KATAKANA LETTER SMALL RU;Lo;0;L;;;;;N;;;;;-31FE;KATAKANA LETTER SMALL RE;Lo;0;L;;;;;N;;;;;-31FF;KATAKANA LETTER SMALL RO;Lo;0;L;;;;;N;;;;;-3200;PARENTHESIZED HANGUL KIYEOK;So;0;L;<compat> 0028 1100 0029;;;;N;PARENTHESIZED HANGUL GIYEOG;;;;-3201;PARENTHESIZED HANGUL NIEUN;So;0;L;<compat> 0028 1102 0029;;;;N;;;;;-3202;PARENTHESIZED HANGUL TIKEUT;So;0;L;<compat> 0028 1103 0029;;;;N;PARENTHESIZED HANGUL DIGEUD;;;;-3203;PARENTHESIZED HANGUL RIEUL;So;0;L;<compat> 0028 1105 0029;;;;N;PARENTHESIZED HANGUL LIEUL;;;;-3204;PARENTHESIZED HANGUL MIEUM;So;0;L;<compat> 0028 1106 0029;;;;N;;;;;-3205;PARENTHESIZED HANGUL PIEUP;So;0;L;<compat> 0028 1107 0029;;;;N;PARENTHESIZED HANGUL BIEUB;;;;-3206;PARENTHESIZED HANGUL SIOS;So;0;L;<compat> 0028 1109 0029;;;;N;;;;;-3207;PARENTHESIZED HANGUL IEUNG;So;0;L;<compat> 0028 110B 0029;;;;N;;;;;-3208;PARENTHESIZED HANGUL CIEUC;So;0;L;<compat> 0028 110C 0029;;;;N;PARENTHESIZED HANGUL JIEUJ;;;;-3209;PARENTHESIZED HANGUL CHIEUCH;So;0;L;<compat> 0028 110E 0029;;;;N;PARENTHESIZED HANGUL CIEUC;;;;-320A;PARENTHESIZED HANGUL KHIEUKH;So;0;L;<compat> 0028 110F 0029;;;;N;PARENTHESIZED HANGUL KIYEOK;;;;-320B;PARENTHESIZED HANGUL THIEUTH;So;0;L;<compat> 0028 1110 0029;;;;N;PARENTHESIZED HANGUL TIEUT;;;;-320C;PARENTHESIZED HANGUL PHIEUPH;So;0;L;<compat> 0028 1111 0029;;;;N;PARENTHESIZED HANGUL PIEUP;;;;-320D;PARENTHESIZED HANGUL HIEUH;So;0;L;<compat> 0028 1112 0029;;;;N;;;;;-320E;PARENTHESIZED HANGUL KIYEOK A;So;0;L;<compat> 0028 1100 1161 0029;;;;N;PARENTHESIZED HANGUL GA;;;;-320F;PARENTHESIZED HANGUL NIEUN A;So;0;L;<compat> 0028 1102 1161 0029;;;;N;PARENTHESIZED HANGUL NA;;;;-3210;PARENTHESIZED HANGUL TIKEUT A;So;0;L;<compat> 0028 1103 1161 0029;;;;N;PARENTHESIZED HANGUL DA;;;;-3211;PARENTHESIZED HANGUL RIEUL A;So;0;L;<compat> 0028 1105 1161 0029;;;;N;PARENTHESIZED HANGUL LA;;;;-3212;PARENTHESIZED HANGUL MIEUM A;So;0;L;<compat> 0028 1106 1161 0029;;;;N;PARENTHESIZED HANGUL MA;;;;-3213;PARENTHESIZED HANGUL PIEUP A;So;0;L;<compat> 0028 1107 1161 0029;;;;N;PARENTHESIZED HANGUL BA;;;;-3214;PARENTHESIZED HANGUL SIOS A;So;0;L;<compat> 0028 1109 1161 0029;;;;N;PARENTHESIZED HANGUL SA;;;;-3215;PARENTHESIZED HANGUL IEUNG A;So;0;L;<compat> 0028 110B 1161 0029;;;;N;PARENTHESIZED HANGUL A;;;;-3216;PARENTHESIZED HANGUL CIEUC A;So;0;L;<compat> 0028 110C 1161 0029;;;;N;PARENTHESIZED HANGUL JA;;;;-3217;PARENTHESIZED HANGUL CHIEUCH A;So;0;L;<compat> 0028 110E 1161 0029;;;;N;PARENTHESIZED HANGUL CA;;;;-3218;PARENTHESIZED HANGUL KHIEUKH A;So;0;L;<compat> 0028 110F 1161 0029;;;;N;PARENTHESIZED HANGUL KA;;;;-3219;PARENTHESIZED HANGUL THIEUTH A;So;0;L;<compat> 0028 1110 1161 0029;;;;N;PARENTHESIZED HANGUL TA;;;;-321A;PARENTHESIZED HANGUL PHIEUPH A;So;0;L;<compat> 0028 1111 1161 0029;;;;N;PARENTHESIZED HANGUL PA;;;;-321B;PARENTHESIZED HANGUL HIEUH A;So;0;L;<compat> 0028 1112 1161 0029;;;;N;PARENTHESIZED HANGUL HA;;;;-321C;PARENTHESIZED HANGUL CIEUC U;So;0;L;<compat> 0028 110C 116E 0029;;;;N;PARENTHESIZED HANGUL JU;;;;-321D;PARENTHESIZED KOREAN CHARACTER OJEON;So;0;ON;<compat> 0028 110B 1169 110C 1165 11AB 0029;;;;N;;;;;-321E;PARENTHESIZED KOREAN CHARACTER O HU;So;0;ON;<compat> 0028 110B 1169 1112 116E 0029;;;;N;;;;;-3220;PARENTHESIZED IDEOGRAPH ONE;No;0;L;<compat> 0028 4E00 0029;;;1;N;;;;;-3221;PARENTHESIZED IDEOGRAPH TWO;No;0;L;<compat> 0028 4E8C 0029;;;2;N;;;;;-3222;PARENTHESIZED IDEOGRAPH THREE;No;0;L;<compat> 0028 4E09 0029;;;3;N;;;;;-3223;PARENTHESIZED IDEOGRAPH FOUR;No;0;L;<compat> 0028 56DB 0029;;;4;N;;;;;-3224;PARENTHESIZED IDEOGRAPH FIVE;No;0;L;<compat> 0028 4E94 0029;;;5;N;;;;;-3225;PARENTHESIZED IDEOGRAPH SIX;No;0;L;<compat> 0028 516D 0029;;;6;N;;;;;-3226;PARENTHESIZED IDEOGRAPH SEVEN;No;0;L;<compat> 0028 4E03 0029;;;7;N;;;;;-3227;PARENTHESIZED IDEOGRAPH EIGHT;No;0;L;<compat> 0028 516B 0029;;;8;N;;;;;-3228;PARENTHESIZED IDEOGRAPH NINE;No;0;L;<compat> 0028 4E5D 0029;;;9;N;;;;;-3229;PARENTHESIZED IDEOGRAPH TEN;No;0;L;<compat> 0028 5341 0029;;;10;N;;;;;-322A;PARENTHESIZED IDEOGRAPH MOON;So;0;L;<compat> 0028 6708 0029;;;;N;;;;;-322B;PARENTHESIZED IDEOGRAPH FIRE;So;0;L;<compat> 0028 706B 0029;;;;N;;;;;-322C;PARENTHESIZED IDEOGRAPH WATER;So;0;L;<compat> 0028 6C34 0029;;;;N;;;;;-322D;PARENTHESIZED IDEOGRAPH WOOD;So;0;L;<compat> 0028 6728 0029;;;;N;;;;;-322E;PARENTHESIZED IDEOGRAPH METAL;So;0;L;<compat> 0028 91D1 0029;;;;N;;;;;-322F;PARENTHESIZED IDEOGRAPH EARTH;So;0;L;<compat> 0028 571F 0029;;;;N;;;;;-3230;PARENTHESIZED IDEOGRAPH SUN;So;0;L;<compat> 0028 65E5 0029;;;;N;;;;;-3231;PARENTHESIZED IDEOGRAPH STOCK;So;0;L;<compat> 0028 682A 0029;;;;N;;;;;-3232;PARENTHESIZED IDEOGRAPH HAVE;So;0;L;<compat> 0028 6709 0029;;;;N;;;;;-3233;PARENTHESIZED IDEOGRAPH SOCIETY;So;0;L;<compat> 0028 793E 0029;;;;N;;;;;-3234;PARENTHESIZED IDEOGRAPH NAME;So;0;L;<compat> 0028 540D 0029;;;;N;;;;;-3235;PARENTHESIZED IDEOGRAPH SPECIAL;So;0;L;<compat> 0028 7279 0029;;;;N;;;;;-3236;PARENTHESIZED IDEOGRAPH FINANCIAL;So;0;L;<compat> 0028 8CA1 0029;;;;N;;;;;-3237;PARENTHESIZED IDEOGRAPH CONGRATULATION;So;0;L;<compat> 0028 795D 0029;;;;N;;;;;-3238;PARENTHESIZED IDEOGRAPH LABOR;So;0;L;<compat> 0028 52B4 0029;;;;N;;;;;-3239;PARENTHESIZED IDEOGRAPH REPRESENT;So;0;L;<compat> 0028 4EE3 0029;;;;N;;;;;-323A;PARENTHESIZED IDEOGRAPH CALL;So;0;L;<compat> 0028 547C 0029;;;;N;;;;;-323B;PARENTHESIZED IDEOGRAPH STUDY;So;0;L;<compat> 0028 5B66 0029;;;;N;;;;;-323C;PARENTHESIZED IDEOGRAPH SUPERVISE;So;0;L;<compat> 0028 76E3 0029;;;;N;;;;;-323D;PARENTHESIZED IDEOGRAPH ENTERPRISE;So;0;L;<compat> 0028 4F01 0029;;;;N;;;;;-323E;PARENTHESIZED IDEOGRAPH RESOURCE;So;0;L;<compat> 0028 8CC7 0029;;;;N;;;;;-323F;PARENTHESIZED IDEOGRAPH ALLIANCE;So;0;L;<compat> 0028 5354 0029;;;;N;;;;;-3240;PARENTHESIZED IDEOGRAPH FESTIVAL;So;0;L;<compat> 0028 796D 0029;;;;N;;;;;-3241;PARENTHESIZED IDEOGRAPH REST;So;0;L;<compat> 0028 4F11 0029;;;;N;;;;;-3242;PARENTHESIZED IDEOGRAPH SELF;So;0;L;<compat> 0028 81EA 0029;;;;N;;;;;-3243;PARENTHESIZED IDEOGRAPH REACH;So;0;L;<compat> 0028 81F3 0029;;;;N;;;;;-3244;CIRCLED IDEOGRAPH QUESTION;So;0;L;<circle> 554F;;;;N;;;;;-3245;CIRCLED IDEOGRAPH KINDERGARTEN;So;0;L;<circle> 5E7C;;;;N;;;;;-3246;CIRCLED IDEOGRAPH SCHOOL;So;0;L;<circle> 6587;;;;N;;;;;-3247;CIRCLED IDEOGRAPH KOTO;So;0;L;<circle> 7B8F;;;;N;;;;;-3248;CIRCLED NUMBER TEN ON BLACK SQUARE;No;0;L;;;;10;N;;;;;-3249;CIRCLED NUMBER TWENTY ON BLACK SQUARE;No;0;L;;;;20;N;;;;;-324A;CIRCLED NUMBER THIRTY ON BLACK SQUARE;No;0;L;;;;30;N;;;;;-324B;CIRCLED NUMBER FORTY ON BLACK SQUARE;No;0;L;;;;40;N;;;;;-324C;CIRCLED NUMBER FIFTY ON BLACK SQUARE;No;0;L;;;;50;N;;;;;-324D;CIRCLED NUMBER SIXTY ON BLACK SQUARE;No;0;L;;;;60;N;;;;;-324E;CIRCLED NUMBER SEVENTY ON BLACK SQUARE;No;0;L;;;;70;N;;;;;-324F;CIRCLED NUMBER EIGHTY ON BLACK SQUARE;No;0;L;;;;80;N;;;;;-3250;PARTNERSHIP SIGN;So;0;ON;<square> 0050 0054 0045;;;;N;;;;;-3251;CIRCLED NUMBER TWENTY ONE;No;0;ON;<circle> 0032 0031;;;21;N;;;;;-3252;CIRCLED NUMBER TWENTY TWO;No;0;ON;<circle> 0032 0032;;;22;N;;;;;-3253;CIRCLED NUMBER TWENTY THREE;No;0;ON;<circle> 0032 0033;;;23;N;;;;;-3254;CIRCLED NUMBER TWENTY FOUR;No;0;ON;<circle> 0032 0034;;;24;N;;;;;-3255;CIRCLED NUMBER TWENTY FIVE;No;0;ON;<circle> 0032 0035;;;25;N;;;;;-3256;CIRCLED NUMBER TWENTY SIX;No;0;ON;<circle> 0032 0036;;;26;N;;;;;-3257;CIRCLED NUMBER TWENTY SEVEN;No;0;ON;<circle> 0032 0037;;;27;N;;;;;-3258;CIRCLED NUMBER TWENTY EIGHT;No;0;ON;<circle> 0032 0038;;;28;N;;;;;-3259;CIRCLED NUMBER TWENTY NINE;No;0;ON;<circle> 0032 0039;;;29;N;;;;;-325A;CIRCLED NUMBER THIRTY;No;0;ON;<circle> 0033 0030;;;30;N;;;;;-325B;CIRCLED NUMBER THIRTY ONE;No;0;ON;<circle> 0033 0031;;;31;N;;;;;-325C;CIRCLED NUMBER THIRTY TWO;No;0;ON;<circle> 0033 0032;;;32;N;;;;;-325D;CIRCLED NUMBER THIRTY THREE;No;0;ON;<circle> 0033 0033;;;33;N;;;;;-325E;CIRCLED NUMBER THIRTY FOUR;No;0;ON;<circle> 0033 0034;;;34;N;;;;;-325F;CIRCLED NUMBER THIRTY FIVE;No;0;ON;<circle> 0033 0035;;;35;N;;;;;-3260;CIRCLED HANGUL KIYEOK;So;0;L;<circle> 1100;;;;N;CIRCLED HANGUL GIYEOG;;;;-3261;CIRCLED HANGUL NIEUN;So;0;L;<circle> 1102;;;;N;;;;;-3262;CIRCLED HANGUL TIKEUT;So;0;L;<circle> 1103;;;;N;CIRCLED HANGUL DIGEUD;;;;-3263;CIRCLED HANGUL RIEUL;So;0;L;<circle> 1105;;;;N;CIRCLED HANGUL LIEUL;;;;-3264;CIRCLED HANGUL MIEUM;So;0;L;<circle> 1106;;;;N;;;;;-3265;CIRCLED HANGUL PIEUP;So;0;L;<circle> 1107;;;;N;CIRCLED HANGUL BIEUB;;;;-3266;CIRCLED HANGUL SIOS;So;0;L;<circle> 1109;;;;N;;;;;-3267;CIRCLED HANGUL IEUNG;So;0;L;<circle> 110B;;;;N;;;;;-3268;CIRCLED HANGUL CIEUC;So;0;L;<circle> 110C;;;;N;CIRCLED HANGUL JIEUJ;;;;-3269;CIRCLED HANGUL CHIEUCH;So;0;L;<circle> 110E;;;;N;CIRCLED HANGUL CIEUC;;;;-326A;CIRCLED HANGUL KHIEUKH;So;0;L;<circle> 110F;;;;N;CIRCLED HANGUL KIYEOK;;;;-326B;CIRCLED HANGUL THIEUTH;So;0;L;<circle> 1110;;;;N;CIRCLED HANGUL TIEUT;;;;-326C;CIRCLED HANGUL PHIEUPH;So;0;L;<circle> 1111;;;;N;CIRCLED HANGUL PIEUP;;;;-326D;CIRCLED HANGUL HIEUH;So;0;L;<circle> 1112;;;;N;;;;;-326E;CIRCLED HANGUL KIYEOK A;So;0;L;<circle> 1100 1161;;;;N;CIRCLED HANGUL GA;;;;-326F;CIRCLED HANGUL NIEUN A;So;0;L;<circle> 1102 1161;;;;N;CIRCLED HANGUL NA;;;;-3270;CIRCLED HANGUL TIKEUT A;So;0;L;<circle> 1103 1161;;;;N;CIRCLED HANGUL DA;;;;-3271;CIRCLED HANGUL RIEUL A;So;0;L;<circle> 1105 1161;;;;N;CIRCLED HANGUL LA;;;;-3272;CIRCLED HANGUL MIEUM A;So;0;L;<circle> 1106 1161;;;;N;CIRCLED HANGUL MA;;;;-3273;CIRCLED HANGUL PIEUP A;So;0;L;<circle> 1107 1161;;;;N;CIRCLED HANGUL BA;;;;-3274;CIRCLED HANGUL SIOS A;So;0;L;<circle> 1109 1161;;;;N;CIRCLED HANGUL SA;;;;-3275;CIRCLED HANGUL IEUNG A;So;0;L;<circle> 110B 1161;;;;N;CIRCLED HANGUL A;;;;-3276;CIRCLED HANGUL CIEUC A;So;0;L;<circle> 110C 1161;;;;N;CIRCLED HANGUL JA;;;;-3277;CIRCLED HANGUL CHIEUCH A;So;0;L;<circle> 110E 1161;;;;N;CIRCLED HANGUL CA;;;;-3278;CIRCLED HANGUL KHIEUKH A;So;0;L;<circle> 110F 1161;;;;N;CIRCLED HANGUL KA;;;;-3279;CIRCLED HANGUL THIEUTH A;So;0;L;<circle> 1110 1161;;;;N;CIRCLED HANGUL TA;;;;-327A;CIRCLED HANGUL PHIEUPH A;So;0;L;<circle> 1111 1161;;;;N;CIRCLED HANGUL PA;;;;-327B;CIRCLED HANGUL HIEUH A;So;0;L;<circle> 1112 1161;;;;N;CIRCLED HANGUL HA;;;;-327C;CIRCLED KOREAN CHARACTER CHAMKO;So;0;ON;<circle> 110E 1161 11B7 1100 1169;;;;N;;;;;-327D;CIRCLED KOREAN CHARACTER JUEUI;So;0;ON;<circle> 110C 116E 110B 1174;;;;N;;;;;-327E;CIRCLED HANGUL IEUNG U;So;0;ON;<circle> 110B 116E;;;;N;;;;;-327F;KOREAN STANDARD SYMBOL;So;0;L;;;;;N;;;;;-3280;CIRCLED IDEOGRAPH ONE;No;0;L;<circle> 4E00;;;1;N;;;;;-3281;CIRCLED IDEOGRAPH TWO;No;0;L;<circle> 4E8C;;;2;N;;;;;-3282;CIRCLED IDEOGRAPH THREE;No;0;L;<circle> 4E09;;;3;N;;;;;-3283;CIRCLED IDEOGRAPH FOUR;No;0;L;<circle> 56DB;;;4;N;;;;;-3284;CIRCLED IDEOGRAPH FIVE;No;0;L;<circle> 4E94;;;5;N;;;;;-3285;CIRCLED IDEOGRAPH SIX;No;0;L;<circle> 516D;;;6;N;;;;;-3286;CIRCLED IDEOGRAPH SEVEN;No;0;L;<circle> 4E03;;;7;N;;;;;-3287;CIRCLED IDEOGRAPH EIGHT;No;0;L;<circle> 516B;;;8;N;;;;;-3288;CIRCLED IDEOGRAPH NINE;No;0;L;<circle> 4E5D;;;9;N;;;;;-3289;CIRCLED IDEOGRAPH TEN;No;0;L;<circle> 5341;;;10;N;;;;;-328A;CIRCLED IDEOGRAPH MOON;So;0;L;<circle> 6708;;;;N;;;;;-328B;CIRCLED IDEOGRAPH FIRE;So;0;L;<circle> 706B;;;;N;;;;;-328C;CIRCLED IDEOGRAPH WATER;So;0;L;<circle> 6C34;;;;N;;;;;-328D;CIRCLED IDEOGRAPH WOOD;So;0;L;<circle> 6728;;;;N;;;;;-328E;CIRCLED IDEOGRAPH METAL;So;0;L;<circle> 91D1;;;;N;;;;;-328F;CIRCLED IDEOGRAPH EARTH;So;0;L;<circle> 571F;;;;N;;;;;-3290;CIRCLED IDEOGRAPH SUN;So;0;L;<circle> 65E5;;;;N;;;;;-3291;CIRCLED IDEOGRAPH STOCK;So;0;L;<circle> 682A;;;;N;;;;;-3292;CIRCLED IDEOGRAPH HAVE;So;0;L;<circle> 6709;;;;N;;;;;-3293;CIRCLED IDEOGRAPH SOCIETY;So;0;L;<circle> 793E;;;;N;;;;;-3294;CIRCLED IDEOGRAPH NAME;So;0;L;<circle> 540D;;;;N;;;;;-3295;CIRCLED IDEOGRAPH SPECIAL;So;0;L;<circle> 7279;;;;N;;;;;-3296;CIRCLED IDEOGRAPH FINANCIAL;So;0;L;<circle> 8CA1;;;;N;;;;;-3297;CIRCLED IDEOGRAPH CONGRATULATION;So;0;L;<circle> 795D;;;;N;;;;;-3298;CIRCLED IDEOGRAPH LABOR;So;0;L;<circle> 52B4;;;;N;;;;;-3299;CIRCLED IDEOGRAPH SECRET;So;0;L;<circle> 79D8;;;;N;;;;;-329A;CIRCLED IDEOGRAPH MALE;So;0;L;<circle> 7537;;;;N;;;;;-329B;CIRCLED IDEOGRAPH FEMALE;So;0;L;<circle> 5973;;;;N;;;;;-329C;CIRCLED IDEOGRAPH SUITABLE;So;0;L;<circle> 9069;;;;N;;;;;-329D;CIRCLED IDEOGRAPH EXCELLENT;So;0;L;<circle> 512A;;;;N;;;;;-329E;CIRCLED IDEOGRAPH PRINT;So;0;L;<circle> 5370;;;;N;;;;;-329F;CIRCLED IDEOGRAPH ATTENTION;So;0;L;<circle> 6CE8;;;;N;;;;;-32A0;CIRCLED IDEOGRAPH ITEM;So;0;L;<circle> 9805;;;;N;;;;;-32A1;CIRCLED IDEOGRAPH REST;So;0;L;<circle> 4F11;;;;N;;;;;-32A2;CIRCLED IDEOGRAPH COPY;So;0;L;<circle> 5199;;;;N;;;;;-32A3;CIRCLED IDEOGRAPH CORRECT;So;0;L;<circle> 6B63;;;;N;;;;;-32A4;CIRCLED IDEOGRAPH HIGH;So;0;L;<circle> 4E0A;;;;N;;;;;-32A5;CIRCLED IDEOGRAPH CENTRE;So;0;L;<circle> 4E2D;;;;N;CIRCLED IDEOGRAPH CENTER;;;;-32A6;CIRCLED IDEOGRAPH LOW;So;0;L;<circle> 4E0B;;;;N;;;;;-32A7;CIRCLED IDEOGRAPH LEFT;So;0;L;<circle> 5DE6;;;;N;;;;;-32A8;CIRCLED IDEOGRAPH RIGHT;So;0;L;<circle> 53F3;;;;N;;;;;-32A9;CIRCLED IDEOGRAPH MEDICINE;So;0;L;<circle> 533B;;;;N;;;;;-32AA;CIRCLED IDEOGRAPH RELIGION;So;0;L;<circle> 5B97;;;;N;;;;;-32AB;CIRCLED IDEOGRAPH STUDY;So;0;L;<circle> 5B66;;;;N;;;;;-32AC;CIRCLED IDEOGRAPH SUPERVISE;So;0;L;<circle> 76E3;;;;N;;;;;-32AD;CIRCLED IDEOGRAPH ENTERPRISE;So;0;L;<circle> 4F01;;;;N;;;;;-32AE;CIRCLED IDEOGRAPH RESOURCE;So;0;L;<circle> 8CC7;;;;N;;;;;-32AF;CIRCLED IDEOGRAPH ALLIANCE;So;0;L;<circle> 5354;;;;N;;;;;-32B0;CIRCLED IDEOGRAPH NIGHT;So;0;L;<circle> 591C;;;;N;;;;;-32B1;CIRCLED NUMBER THIRTY SIX;No;0;ON;<circle> 0033 0036;;;36;N;;;;;-32B2;CIRCLED NUMBER THIRTY SEVEN;No;0;ON;<circle> 0033 0037;;;37;N;;;;;-32B3;CIRCLED NUMBER THIRTY EIGHT;No;0;ON;<circle> 0033 0038;;;38;N;;;;;-32B4;CIRCLED NUMBER THIRTY NINE;No;0;ON;<circle> 0033 0039;;;39;N;;;;;-32B5;CIRCLED NUMBER FORTY;No;0;ON;<circle> 0034 0030;;;40;N;;;;;-32B6;CIRCLED NUMBER FORTY ONE;No;0;ON;<circle> 0034 0031;;;41;N;;;;;-32B7;CIRCLED NUMBER FORTY TWO;No;0;ON;<circle> 0034 0032;;;42;N;;;;;-32B8;CIRCLED NUMBER FORTY THREE;No;0;ON;<circle> 0034 0033;;;43;N;;;;;-32B9;CIRCLED NUMBER FORTY FOUR;No;0;ON;<circle> 0034 0034;;;44;N;;;;;-32BA;CIRCLED NUMBER FORTY FIVE;No;0;ON;<circle> 0034 0035;;;45;N;;;;;-32BB;CIRCLED NUMBER FORTY SIX;No;0;ON;<circle> 0034 0036;;;46;N;;;;;-32BC;CIRCLED NUMBER FORTY SEVEN;No;0;ON;<circle> 0034 0037;;;47;N;;;;;-32BD;CIRCLED NUMBER FORTY EIGHT;No;0;ON;<circle> 0034 0038;;;48;N;;;;;-32BE;CIRCLED NUMBER FORTY NINE;No;0;ON;<circle> 0034 0039;;;49;N;;;;;-32BF;CIRCLED NUMBER FIFTY;No;0;ON;<circle> 0035 0030;;;50;N;;;;;-32C0;IDEOGRAPHIC TELEGRAPH SYMBOL FOR JANUARY;So;0;L;<compat> 0031 6708;;;;N;;;;;-32C1;IDEOGRAPHIC TELEGRAPH SYMBOL FOR FEBRUARY;So;0;L;<compat> 0032 6708;;;;N;;;;;-32C2;IDEOGRAPHIC TELEGRAPH SYMBOL FOR MARCH;So;0;L;<compat> 0033 6708;;;;N;;;;;-32C3;IDEOGRAPHIC TELEGRAPH SYMBOL FOR APRIL;So;0;L;<compat> 0034 6708;;;;N;;;;;-32C4;IDEOGRAPHIC TELEGRAPH SYMBOL FOR MAY;So;0;L;<compat> 0035 6708;;;;N;;;;;-32C5;IDEOGRAPHIC TELEGRAPH SYMBOL FOR JUNE;So;0;L;<compat> 0036 6708;;;;N;;;;;-32C6;IDEOGRAPHIC TELEGRAPH SYMBOL FOR JULY;So;0;L;<compat> 0037 6708;;;;N;;;;;-32C7;IDEOGRAPHIC TELEGRAPH SYMBOL FOR AUGUST;So;0;L;<compat> 0038 6708;;;;N;;;;;-32C8;IDEOGRAPHIC TELEGRAPH SYMBOL FOR SEPTEMBER;So;0;L;<compat> 0039 6708;;;;N;;;;;-32C9;IDEOGRAPHIC TELEGRAPH SYMBOL FOR OCTOBER;So;0;L;<compat> 0031 0030 6708;;;;N;;;;;-32CA;IDEOGRAPHIC TELEGRAPH SYMBOL FOR NOVEMBER;So;0;L;<compat> 0031 0031 6708;;;;N;;;;;-32CB;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DECEMBER;So;0;L;<compat> 0031 0032 6708;;;;N;;;;;-32CC;SQUARE HG;So;0;ON;<square> 0048 0067;;;;N;;;;;-32CD;SQUARE ERG;So;0;ON;<square> 0065 0072 0067;;;;N;;;;;-32CE;SQUARE EV;So;0;ON;<square> 0065 0056;;;;N;;;;;-32CF;LIMITED LIABILITY SIGN;So;0;ON;<square> 004C 0054 0044;;;;N;;;;;-32D0;CIRCLED KATAKANA A;So;0;L;<circle> 30A2;;;;N;;;;;-32D1;CIRCLED KATAKANA I;So;0;L;<circle> 30A4;;;;N;;;;;-32D2;CIRCLED KATAKANA U;So;0;L;<circle> 30A6;;;;N;;;;;-32D3;CIRCLED KATAKANA E;So;0;L;<circle> 30A8;;;;N;;;;;-32D4;CIRCLED KATAKANA O;So;0;L;<circle> 30AA;;;;N;;;;;-32D5;CIRCLED KATAKANA KA;So;0;L;<circle> 30AB;;;;N;;;;;-32D6;CIRCLED KATAKANA KI;So;0;L;<circle> 30AD;;;;N;;;;;-32D7;CIRCLED KATAKANA KU;So;0;L;<circle> 30AF;;;;N;;;;;-32D8;CIRCLED KATAKANA KE;So;0;L;<circle> 30B1;;;;N;;;;;-32D9;CIRCLED KATAKANA KO;So;0;L;<circle> 30B3;;;;N;;;;;-32DA;CIRCLED KATAKANA SA;So;0;L;<circle> 30B5;;;;N;;;;;-32DB;CIRCLED KATAKANA SI;So;0;L;<circle> 30B7;;;;N;;;;;-32DC;CIRCLED KATAKANA SU;So;0;L;<circle> 30B9;;;;N;;;;;-32DD;CIRCLED KATAKANA SE;So;0;L;<circle> 30BB;;;;N;;;;;-32DE;CIRCLED KATAKANA SO;So;0;L;<circle> 30BD;;;;N;;;;;-32DF;CIRCLED KATAKANA TA;So;0;L;<circle> 30BF;;;;N;;;;;-32E0;CIRCLED KATAKANA TI;So;0;L;<circle> 30C1;;;;N;;;;;-32E1;CIRCLED KATAKANA TU;So;0;L;<circle> 30C4;;;;N;;;;;-32E2;CIRCLED KATAKANA TE;So;0;L;<circle> 30C6;;;;N;;;;;-32E3;CIRCLED KATAKANA TO;So;0;L;<circle> 30C8;;;;N;;;;;-32E4;CIRCLED KATAKANA NA;So;0;L;<circle> 30CA;;;;N;;;;;-32E5;CIRCLED KATAKANA NI;So;0;L;<circle> 30CB;;;;N;;;;;-32E6;CIRCLED KATAKANA NU;So;0;L;<circle> 30CC;;;;N;;;;;-32E7;CIRCLED KATAKANA NE;So;0;L;<circle> 30CD;;;;N;;;;;-32E8;CIRCLED KATAKANA NO;So;0;L;<circle> 30CE;;;;N;;;;;-32E9;CIRCLED KATAKANA HA;So;0;L;<circle> 30CF;;;;N;;;;;-32EA;CIRCLED KATAKANA HI;So;0;L;<circle> 30D2;;;;N;;;;;-32EB;CIRCLED KATAKANA HU;So;0;L;<circle> 30D5;;;;N;;;;;-32EC;CIRCLED KATAKANA HE;So;0;L;<circle> 30D8;;;;N;;;;;-32ED;CIRCLED KATAKANA HO;So;0;L;<circle> 30DB;;;;N;;;;;-32EE;CIRCLED KATAKANA MA;So;0;L;<circle> 30DE;;;;N;;;;;-32EF;CIRCLED KATAKANA MI;So;0;L;<circle> 30DF;;;;N;;;;;-32F0;CIRCLED KATAKANA MU;So;0;L;<circle> 30E0;;;;N;;;;;-32F1;CIRCLED KATAKANA ME;So;0;L;<circle> 30E1;;;;N;;;;;-32F2;CIRCLED KATAKANA MO;So;0;L;<circle> 30E2;;;;N;;;;;-32F3;CIRCLED KATAKANA YA;So;0;L;<circle> 30E4;;;;N;;;;;-32F4;CIRCLED KATAKANA YU;So;0;L;<circle> 30E6;;;;N;;;;;-32F5;CIRCLED KATAKANA YO;So;0;L;<circle> 30E8;;;;N;;;;;-32F6;CIRCLED KATAKANA RA;So;0;L;<circle> 30E9;;;;N;;;;;-32F7;CIRCLED KATAKANA RI;So;0;L;<circle> 30EA;;;;N;;;;;-32F8;CIRCLED KATAKANA RU;So;0;L;<circle> 30EB;;;;N;;;;;-32F9;CIRCLED KATAKANA RE;So;0;L;<circle> 30EC;;;;N;;;;;-32FA;CIRCLED KATAKANA RO;So;0;L;<circle> 30ED;;;;N;;;;;-32FB;CIRCLED KATAKANA WA;So;0;L;<circle> 30EF;;;;N;;;;;-32FC;CIRCLED KATAKANA WI;So;0;L;<circle> 30F0;;;;N;;;;;-32FD;CIRCLED KATAKANA WE;So;0;L;<circle> 30F1;;;;N;;;;;-32FE;CIRCLED KATAKANA WO;So;0;L;<circle> 30F2;;;;N;;;;;-3300;SQUARE APAATO;So;0;L;<square> 30A2 30D1 30FC 30C8;;;;N;SQUARED APAATO;;;;-3301;SQUARE ARUHUA;So;0;L;<square> 30A2 30EB 30D5 30A1;;;;N;SQUARED ARUHUA;;;;-3302;SQUARE ANPEA;So;0;L;<square> 30A2 30F3 30DA 30A2;;;;N;SQUARED ANPEA;;;;-3303;SQUARE AARU;So;0;L;<square> 30A2 30FC 30EB;;;;N;SQUARED AARU;;;;-3304;SQUARE ININGU;So;0;L;<square> 30A4 30CB 30F3 30B0;;;;N;SQUARED ININGU;;;;-3305;SQUARE INTI;So;0;L;<square> 30A4 30F3 30C1;;;;N;SQUARED INTI;;;;-3306;SQUARE UON;So;0;L;<square> 30A6 30A9 30F3;;;;N;SQUARED UON;;;;-3307;SQUARE ESUKUUDO;So;0;L;<square> 30A8 30B9 30AF 30FC 30C9;;;;N;SQUARED ESUKUUDO;;;;-3308;SQUARE EEKAA;So;0;L;<square> 30A8 30FC 30AB 30FC;;;;N;SQUARED EEKAA;;;;-3309;SQUARE ONSU;So;0;L;<square> 30AA 30F3 30B9;;;;N;SQUARED ONSU;;;;-330A;SQUARE OOMU;So;0;L;<square> 30AA 30FC 30E0;;;;N;SQUARED OOMU;;;;-330B;SQUARE KAIRI;So;0;L;<square> 30AB 30A4 30EA;;;;N;SQUARED KAIRI;;;;-330C;SQUARE KARATTO;So;0;L;<square> 30AB 30E9 30C3 30C8;;;;N;SQUARED KARATTO;;;;-330D;SQUARE KARORII;So;0;L;<square> 30AB 30ED 30EA 30FC;;;;N;SQUARED KARORII;;;;-330E;SQUARE GARON;So;0;L;<square> 30AC 30ED 30F3;;;;N;SQUARED GARON;;;;-330F;SQUARE GANMA;So;0;L;<square> 30AC 30F3 30DE;;;;N;SQUARED GANMA;;;;-3310;SQUARE GIGA;So;0;L;<square> 30AE 30AC;;;;N;SQUARED GIGA;;;;-3311;SQUARE GINII;So;0;L;<square> 30AE 30CB 30FC;;;;N;SQUARED GINII;;;;-3312;SQUARE KYURII;So;0;L;<square> 30AD 30E5 30EA 30FC;;;;N;SQUARED KYURII;;;;-3313;SQUARE GIRUDAA;So;0;L;<square> 30AE 30EB 30C0 30FC;;;;N;SQUARED GIRUDAA;;;;-3314;SQUARE KIRO;So;0;L;<square> 30AD 30ED;;;;N;SQUARED KIRO;;;;-3315;SQUARE KIROGURAMU;So;0;L;<square> 30AD 30ED 30B0 30E9 30E0;;;;N;SQUARED KIROGURAMU;;;;-3316;SQUARE KIROMEETORU;So;0;L;<square> 30AD 30ED 30E1 30FC 30C8 30EB;;;;N;SQUARED KIROMEETORU;;;;-3317;SQUARE KIROWATTO;So;0;L;<square> 30AD 30ED 30EF 30C3 30C8;;;;N;SQUARED KIROWATTO;;;;-3318;SQUARE GURAMU;So;0;L;<square> 30B0 30E9 30E0;;;;N;SQUARED GURAMU;;;;-3319;SQUARE GURAMUTON;So;0;L;<square> 30B0 30E9 30E0 30C8 30F3;;;;N;SQUARED GURAMUTON;;;;-331A;SQUARE KURUZEIRO;So;0;L;<square> 30AF 30EB 30BC 30A4 30ED;;;;N;SQUARED KURUZEIRO;;;;-331B;SQUARE KUROONE;So;0;L;<square> 30AF 30ED 30FC 30CD;;;;N;SQUARED KUROONE;;;;-331C;SQUARE KEESU;So;0;L;<square> 30B1 30FC 30B9;;;;N;SQUARED KEESU;;;;-331D;SQUARE KORUNA;So;0;L;<square> 30B3 30EB 30CA;;;;N;SQUARED KORUNA;;;;-331E;SQUARE KOOPO;So;0;L;<square> 30B3 30FC 30DD;;;;N;SQUARED KOOPO;;;;-331F;SQUARE SAIKURU;So;0;L;<square> 30B5 30A4 30AF 30EB;;;;N;SQUARED SAIKURU;;;;-3320;SQUARE SANTIIMU;So;0;L;<square> 30B5 30F3 30C1 30FC 30E0;;;;N;SQUARED SANTIIMU;;;;-3321;SQUARE SIRINGU;So;0;L;<square> 30B7 30EA 30F3 30B0;;;;N;SQUARED SIRINGU;;;;-3322;SQUARE SENTI;So;0;L;<square> 30BB 30F3 30C1;;;;N;SQUARED SENTI;;;;-3323;SQUARE SENTO;So;0;L;<square> 30BB 30F3 30C8;;;;N;SQUARED SENTO;;;;-3324;SQUARE DAASU;So;0;L;<square> 30C0 30FC 30B9;;;;N;SQUARED DAASU;;;;-3325;SQUARE DESI;So;0;L;<square> 30C7 30B7;;;;N;SQUARED DESI;;;;-3326;SQUARE DORU;So;0;L;<square> 30C9 30EB;;;;N;SQUARED DORU;;;;-3327;SQUARE TON;So;0;L;<square> 30C8 30F3;;;;N;SQUARED TON;;;;-3328;SQUARE NANO;So;0;L;<square> 30CA 30CE;;;;N;SQUARED NANO;;;;-3329;SQUARE NOTTO;So;0;L;<square> 30CE 30C3 30C8;;;;N;SQUARED NOTTO;;;;-332A;SQUARE HAITU;So;0;L;<square> 30CF 30A4 30C4;;;;N;SQUARED HAITU;;;;-332B;SQUARE PAASENTO;So;0;L;<square> 30D1 30FC 30BB 30F3 30C8;;;;N;SQUARED PAASENTO;;;;-332C;SQUARE PAATU;So;0;L;<square> 30D1 30FC 30C4;;;;N;SQUARED PAATU;;;;-332D;SQUARE BAARERU;So;0;L;<square> 30D0 30FC 30EC 30EB;;;;N;SQUARED BAARERU;;;;-332E;SQUARE PIASUTORU;So;0;L;<square> 30D4 30A2 30B9 30C8 30EB;;;;N;SQUARED PIASUTORU;;;;-332F;SQUARE PIKURU;So;0;L;<square> 30D4 30AF 30EB;;;;N;SQUARED PIKURU;;;;-3330;SQUARE PIKO;So;0;L;<square> 30D4 30B3;;;;N;SQUARED PIKO;;;;-3331;SQUARE BIRU;So;0;L;<square> 30D3 30EB;;;;N;SQUARED BIRU;;;;-3332;SQUARE HUARADDO;So;0;L;<square> 30D5 30A1 30E9 30C3 30C9;;;;N;SQUARED HUARADDO;;;;-3333;SQUARE HUIITO;So;0;L;<square> 30D5 30A3 30FC 30C8;;;;N;SQUARED HUIITO;;;;-3334;SQUARE BUSSYERU;So;0;L;<square> 30D6 30C3 30B7 30A7 30EB;;;;N;SQUARED BUSSYERU;;;;-3335;SQUARE HURAN;So;0;L;<square> 30D5 30E9 30F3;;;;N;SQUARED HURAN;;;;-3336;SQUARE HEKUTAARU;So;0;L;<square> 30D8 30AF 30BF 30FC 30EB;;;;N;SQUARED HEKUTAARU;;;;-3337;SQUARE PESO;So;0;L;<square> 30DA 30BD;;;;N;SQUARED PESO;;;;-3338;SQUARE PENIHI;So;0;L;<square> 30DA 30CB 30D2;;;;N;SQUARED PENIHI;;;;-3339;SQUARE HERUTU;So;0;L;<square> 30D8 30EB 30C4;;;;N;SQUARED HERUTU;;;;-333A;SQUARE PENSU;So;0;L;<square> 30DA 30F3 30B9;;;;N;SQUARED PENSU;;;;-333B;SQUARE PEEZI;So;0;L;<square> 30DA 30FC 30B8;;;;N;SQUARED PEEZI;;;;-333C;SQUARE BEETA;So;0;L;<square> 30D9 30FC 30BF;;;;N;SQUARED BEETA;;;;-333D;SQUARE POINTO;So;0;L;<square> 30DD 30A4 30F3 30C8;;;;N;SQUARED POINTO;;;;-333E;SQUARE BORUTO;So;0;L;<square> 30DC 30EB 30C8;;;;N;SQUARED BORUTO;;;;-333F;SQUARE HON;So;0;L;<square> 30DB 30F3;;;;N;SQUARED HON;;;;-3340;SQUARE PONDO;So;0;L;<square> 30DD 30F3 30C9;;;;N;SQUARED PONDO;;;;-3341;SQUARE HOORU;So;0;L;<square> 30DB 30FC 30EB;;;;N;SQUARED HOORU;;;;-3342;SQUARE HOON;So;0;L;<square> 30DB 30FC 30F3;;;;N;SQUARED HOON;;;;-3343;SQUARE MAIKURO;So;0;L;<square> 30DE 30A4 30AF 30ED;;;;N;SQUARED MAIKURO;;;;-3344;SQUARE MAIRU;So;0;L;<square> 30DE 30A4 30EB;;;;N;SQUARED MAIRU;;;;-3345;SQUARE MAHHA;So;0;L;<square> 30DE 30C3 30CF;;;;N;SQUARED MAHHA;;;;-3346;SQUARE MARUKU;So;0;L;<square> 30DE 30EB 30AF;;;;N;SQUARED MARUKU;;;;-3347;SQUARE MANSYON;So;0;L;<square> 30DE 30F3 30B7 30E7 30F3;;;;N;SQUARED MANSYON;;;;-3348;SQUARE MIKURON;So;0;L;<square> 30DF 30AF 30ED 30F3;;;;N;SQUARED MIKURON;;;;-3349;SQUARE MIRI;So;0;L;<square> 30DF 30EA;;;;N;SQUARED MIRI;;;;-334A;SQUARE MIRIBAARU;So;0;L;<square> 30DF 30EA 30D0 30FC 30EB;;;;N;SQUARED MIRIBAARU;;;;-334B;SQUARE MEGA;So;0;L;<square> 30E1 30AC;;;;N;SQUARED MEGA;;;;-334C;SQUARE MEGATON;So;0;L;<square> 30E1 30AC 30C8 30F3;;;;N;SQUARED MEGATON;;;;-334D;SQUARE MEETORU;So;0;L;<square> 30E1 30FC 30C8 30EB;;;;N;SQUARED MEETORU;;;;-334E;SQUARE YAADO;So;0;L;<square> 30E4 30FC 30C9;;;;N;SQUARED YAADO;;;;-334F;SQUARE YAARU;So;0;L;<square> 30E4 30FC 30EB;;;;N;SQUARED YAARU;;;;-3350;SQUARE YUAN;So;0;L;<square> 30E6 30A2 30F3;;;;N;SQUARED YUAN;;;;-3351;SQUARE RITTORU;So;0;L;<square> 30EA 30C3 30C8 30EB;;;;N;SQUARED RITTORU;;;;-3352;SQUARE RIRA;So;0;L;<square> 30EA 30E9;;;;N;SQUARED RIRA;;;;-3353;SQUARE RUPII;So;0;L;<square> 30EB 30D4 30FC;;;;N;SQUARED RUPII;;;;-3354;SQUARE RUUBURU;So;0;L;<square> 30EB 30FC 30D6 30EB;;;;N;SQUARED RUUBURU;;;;-3355;SQUARE REMU;So;0;L;<square> 30EC 30E0;;;;N;SQUARED REMU;;;;-3356;SQUARE RENTOGEN;So;0;L;<square> 30EC 30F3 30C8 30B2 30F3;;;;N;SQUARED RENTOGEN;;;;-3357;SQUARE WATTO;So;0;L;<square> 30EF 30C3 30C8;;;;N;SQUARED WATTO;;;;-3358;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ZERO;So;0;L;<compat> 0030 70B9;;;;N;;;;;-3359;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ONE;So;0;L;<compat> 0031 70B9;;;;N;;;;;-335A;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWO;So;0;L;<compat> 0032 70B9;;;;N;;;;;-335B;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR THREE;So;0;L;<compat> 0033 70B9;;;;N;;;;;-335C;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FOUR;So;0;L;<compat> 0034 70B9;;;;N;;;;;-335D;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FIVE;So;0;L;<compat> 0035 70B9;;;;N;;;;;-335E;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SIX;So;0;L;<compat> 0036 70B9;;;;N;;;;;-335F;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SEVEN;So;0;L;<compat> 0037 70B9;;;;N;;;;;-3360;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR EIGHT;So;0;L;<compat> 0038 70B9;;;;N;;;;;-3361;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR NINE;So;0;L;<compat> 0039 70B9;;;;N;;;;;-3362;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TEN;So;0;L;<compat> 0031 0030 70B9;;;;N;;;;;-3363;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR ELEVEN;So;0;L;<compat> 0031 0031 70B9;;;;N;;;;;-3364;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWELVE;So;0;L;<compat> 0031 0032 70B9;;;;N;;;;;-3365;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR THIRTEEN;So;0;L;<compat> 0031 0033 70B9;;;;N;;;;;-3366;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FOURTEEN;So;0;L;<compat> 0031 0034 70B9;;;;N;;;;;-3367;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR FIFTEEN;So;0;L;<compat> 0031 0035 70B9;;;;N;;;;;-3368;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SIXTEEN;So;0;L;<compat> 0031 0036 70B9;;;;N;;;;;-3369;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR SEVENTEEN;So;0;L;<compat> 0031 0037 70B9;;;;N;;;;;-336A;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR EIGHTEEN;So;0;L;<compat> 0031 0038 70B9;;;;N;;;;;-336B;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR NINETEEN;So;0;L;<compat> 0031 0039 70B9;;;;N;;;;;-336C;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY;So;0;L;<compat> 0032 0030 70B9;;;;N;;;;;-336D;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-ONE;So;0;L;<compat> 0032 0031 70B9;;;;N;;;;;-336E;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-TWO;So;0;L;<compat> 0032 0032 70B9;;;;N;;;;;-336F;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-THREE;So;0;L;<compat> 0032 0033 70B9;;;;N;;;;;-3370;IDEOGRAPHIC TELEGRAPH SYMBOL FOR HOUR TWENTY-FOUR;So;0;L;<compat> 0032 0034 70B9;;;;N;;;;;-3371;SQUARE HPA;So;0;L;<square> 0068 0050 0061;;;;N;;;;;-3372;SQUARE DA;So;0;L;<square> 0064 0061;;;;N;;;;;-3373;SQUARE AU;So;0;L;<square> 0041 0055;;;;N;;;;;-3374;SQUARE BAR;So;0;L;<square> 0062 0061 0072;;;;N;;;;;-3375;SQUARE OV;So;0;L;<square> 006F 0056;;;;N;;;;;-3376;SQUARE PC;So;0;L;<square> 0070 0063;;;;N;;;;;-3377;SQUARE DM;So;0;ON;<square> 0064 006D;;;;N;;;;;-3378;SQUARE DM SQUARED;So;0;ON;<square> 0064 006D 00B2;;;;N;;;;;-3379;SQUARE DM CUBED;So;0;ON;<square> 0064 006D 00B3;;;;N;;;;;-337A;SQUARE IU;So;0;ON;<square> 0049 0055;;;;N;;;;;-337B;SQUARE ERA NAME HEISEI;So;0;L;<square> 5E73 6210;;;;N;SQUARED TWO IDEOGRAPHS ERA NAME HEISEI;;;;-337C;SQUARE ERA NAME SYOUWA;So;0;L;<square> 662D 548C;;;;N;SQUARED TWO IDEOGRAPHS ERA NAME SYOUWA;;;;-337D;SQUARE ERA NAME TAISYOU;So;0;L;<square> 5927 6B63;;;;N;SQUARED TWO IDEOGRAPHS ERA NAME TAISYOU;;;;-337E;SQUARE ERA NAME MEIZI;So;0;L;<square> 660E 6CBB;;;;N;SQUARED TWO IDEOGRAPHS ERA NAME MEIZI;;;;-337F;SQUARE CORPORATION;So;0;L;<square> 682A 5F0F 4F1A 793E;;;;N;SQUARED FOUR IDEOGRAPHS CORPORATION;;;;-3380;SQUARE PA AMPS;So;0;L;<square> 0070 0041;;;;N;SQUARED PA AMPS;;;;-3381;SQUARE NA;So;0;L;<square> 006E 0041;;;;N;SQUARED NA;;;;-3382;SQUARE MU A;So;0;L;<square> 03BC 0041;;;;N;SQUARED MU A;;;;-3383;SQUARE MA;So;0;L;<square> 006D 0041;;;;N;SQUARED MA;;;;-3384;SQUARE KA;So;0;L;<square> 006B 0041;;;;N;SQUARED KA;;;;-3385;SQUARE KB;So;0;L;<square> 004B 0042;;;;N;SQUARED KB;;;;-3386;SQUARE MB;So;0;L;<square> 004D 0042;;;;N;SQUARED MB;;;;-3387;SQUARE GB;So;0;L;<square> 0047 0042;;;;N;SQUARED GB;;;;-3388;SQUARE CAL;So;0;L;<square> 0063 0061 006C;;;;N;SQUARED CAL;;;;-3389;SQUARE KCAL;So;0;L;<square> 006B 0063 0061 006C;;;;N;SQUARED KCAL;;;;-338A;SQUARE PF;So;0;L;<square> 0070 0046;;;;N;SQUARED PF;;;;-338B;SQUARE NF;So;0;L;<square> 006E 0046;;;;N;SQUARED NF;;;;-338C;SQUARE MU F;So;0;L;<square> 03BC 0046;;;;N;SQUARED MU F;;;;-338D;SQUARE MU G;So;0;L;<square> 03BC 0067;;;;N;SQUARED MU G;;;;-338E;SQUARE MG;So;0;L;<square> 006D 0067;;;;N;SQUARED MG;;;;-338F;SQUARE KG;So;0;L;<square> 006B 0067;;;;N;SQUARED KG;;;;-3390;SQUARE HZ;So;0;L;<square> 0048 007A;;;;N;SQUARED HZ;;;;-3391;SQUARE KHZ;So;0;L;<square> 006B 0048 007A;;;;N;SQUARED KHZ;;;;-3392;SQUARE MHZ;So;0;L;<square> 004D 0048 007A;;;;N;SQUARED MHZ;;;;-3393;SQUARE GHZ;So;0;L;<square> 0047 0048 007A;;;;N;SQUARED GHZ;;;;-3394;SQUARE THZ;So;0;L;<square> 0054 0048 007A;;;;N;SQUARED THZ;;;;-3395;SQUARE MU L;So;0;L;<square> 03BC 2113;;;;N;SQUARED MU L;;;;-3396;SQUARE ML;So;0;L;<square> 006D 2113;;;;N;SQUARED ML;;;;-3397;SQUARE DL;So;0;L;<square> 0064 2113;;;;N;SQUARED DL;;;;-3398;SQUARE KL;So;0;L;<square> 006B 2113;;;;N;SQUARED KL;;;;-3399;SQUARE FM;So;0;L;<square> 0066 006D;;;;N;SQUARED FM;;;;-339A;SQUARE NM;So;0;L;<square> 006E 006D;;;;N;SQUARED NM;;;;-339B;SQUARE MU M;So;0;L;<square> 03BC 006D;;;;N;SQUARED MU M;;;;-339C;SQUARE MM;So;0;L;<square> 006D 006D;;;;N;SQUARED MM;;;;-339D;SQUARE CM;So;0;L;<square> 0063 006D;;;;N;SQUARED CM;;;;-339E;SQUARE KM;So;0;L;<square> 006B 006D;;;;N;SQUARED KM;;;;-339F;SQUARE MM SQUARED;So;0;L;<square> 006D 006D 00B2;;;;N;SQUARED MM SQUARED;;;;-33A0;SQUARE CM SQUARED;So;0;L;<square> 0063 006D 00B2;;;;N;SQUARED CM SQUARED;;;;-33A1;SQUARE M SQUARED;So;0;L;<square> 006D 00B2;;;;N;SQUARED M SQUARED;;;;-33A2;SQUARE KM SQUARED;So;0;L;<square> 006B 006D 00B2;;;;N;SQUARED KM SQUARED;;;;-33A3;SQUARE MM CUBED;So;0;L;<square> 006D 006D 00B3;;;;N;SQUARED MM CUBED;;;;-33A4;SQUARE CM CUBED;So;0;L;<square> 0063 006D 00B3;;;;N;SQUARED CM CUBED;;;;-33A5;SQUARE M CUBED;So;0;L;<square> 006D 00B3;;;;N;SQUARED M CUBED;;;;-33A6;SQUARE KM CUBED;So;0;L;<square> 006B 006D 00B3;;;;N;SQUARED KM CUBED;;;;-33A7;SQUARE M OVER S;So;0;L;<square> 006D 2215 0073;;;;N;SQUARED M OVER S;;;;-33A8;SQUARE M OVER S SQUARED;So;0;L;<square> 006D 2215 0073 00B2;;;;N;SQUARED M OVER S SQUARED;;;;-33A9;SQUARE PA;So;0;L;<square> 0050 0061;;;;N;SQUARED PA;;;;-33AA;SQUARE KPA;So;0;L;<square> 006B 0050 0061;;;;N;SQUARED KPA;;;;-33AB;SQUARE MPA;So;0;L;<square> 004D 0050 0061;;;;N;SQUARED MPA;;;;-33AC;SQUARE GPA;So;0;L;<square> 0047 0050 0061;;;;N;SQUARED GPA;;;;-33AD;SQUARE RAD;So;0;L;<square> 0072 0061 0064;;;;N;SQUARED RAD;;;;-33AE;SQUARE RAD OVER S;So;0;L;<square> 0072 0061 0064 2215 0073;;;;N;SQUARED RAD OVER S;;;;-33AF;SQUARE RAD OVER S SQUARED;So;0;L;<square> 0072 0061 0064 2215 0073 00B2;;;;N;SQUARED RAD OVER S SQUARED;;;;-33B0;SQUARE PS;So;0;L;<square> 0070 0073;;;;N;SQUARED PS;;;;-33B1;SQUARE NS;So;0;L;<square> 006E 0073;;;;N;SQUARED NS;;;;-33B2;SQUARE MU S;So;0;L;<square> 03BC 0073;;;;N;SQUARED MU S;;;;-33B3;SQUARE MS;So;0;L;<square> 006D 0073;;;;N;SQUARED MS;;;;-33B4;SQUARE PV;So;0;L;<square> 0070 0056;;;;N;SQUARED PV;;;;-33B5;SQUARE NV;So;0;L;<square> 006E 0056;;;;N;SQUARED NV;;;;-33B6;SQUARE MU V;So;0;L;<square> 03BC 0056;;;;N;SQUARED MU V;;;;-33B7;SQUARE MV;So;0;L;<square> 006D 0056;;;;N;SQUARED MV;;;;-33B8;SQUARE KV;So;0;L;<square> 006B 0056;;;;N;SQUARED KV;;;;-33B9;SQUARE MV MEGA;So;0;L;<square> 004D 0056;;;;N;SQUARED MV MEGA;;;;-33BA;SQUARE PW;So;0;L;<square> 0070 0057;;;;N;SQUARED PW;;;;-33BB;SQUARE NW;So;0;L;<square> 006E 0057;;;;N;SQUARED NW;;;;-33BC;SQUARE MU W;So;0;L;<square> 03BC 0057;;;;N;SQUARED MU W;;;;-33BD;SQUARE MW;So;0;L;<square> 006D 0057;;;;N;SQUARED MW;;;;-33BE;SQUARE KW;So;0;L;<square> 006B 0057;;;;N;SQUARED KW;;;;-33BF;SQUARE MW MEGA;So;0;L;<square> 004D 0057;;;;N;SQUARED MW MEGA;;;;-33C0;SQUARE K OHM;So;0;L;<square> 006B 03A9;;;;N;SQUARED K OHM;;;;-33C1;SQUARE M OHM;So;0;L;<square> 004D 03A9;;;;N;SQUARED M OHM;;;;-33C2;SQUARE AM;So;0;L;<square> 0061 002E 006D 002E;;;;N;SQUARED AM;;;;-33C3;SQUARE BQ;So;0;L;<square> 0042 0071;;;;N;SQUARED BQ;;;;-33C4;SQUARE CC;So;0;L;<square> 0063 0063;;;;N;SQUARED CC;;;;-33C5;SQUARE CD;So;0;L;<square> 0063 0064;;;;N;SQUARED CD;;;;-33C6;SQUARE C OVER KG;So;0;L;<square> 0043 2215 006B 0067;;;;N;SQUARED C OVER KG;;;;-33C7;SQUARE CO;So;0;L;<square> 0043 006F 002E;;;;N;SQUARED CO;;;;-33C8;SQUARE DB;So;0;L;<square> 0064 0042;;;;N;SQUARED DB;;;;-33C9;SQUARE GY;So;0;L;<square> 0047 0079;;;;N;SQUARED GY;;;;-33CA;SQUARE HA;So;0;L;<square> 0068 0061;;;;N;SQUARED HA;;;;-33CB;SQUARE HP;So;0;L;<square> 0048 0050;;;;N;SQUARED HP;;;;-33CC;SQUARE IN;So;0;L;<square> 0069 006E;;;;N;SQUARED IN;;;;-33CD;SQUARE KK;So;0;L;<square> 004B 004B;;;;N;SQUARED KK;;;;-33CE;SQUARE KM CAPITAL;So;0;L;<square> 004B 004D;;;;N;SQUARED KM CAPITAL;;;;-33CF;SQUARE KT;So;0;L;<square> 006B 0074;;;;N;SQUARED KT;;;;-33D0;SQUARE LM;So;0;L;<square> 006C 006D;;;;N;SQUARED LM;;;;-33D1;SQUARE LN;So;0;L;<square> 006C 006E;;;;N;SQUARED LN;;;;-33D2;SQUARE LOG;So;0;L;<square> 006C 006F 0067;;;;N;SQUARED LOG;;;;-33D3;SQUARE LX;So;0;L;<square> 006C 0078;;;;N;SQUARED LX;;;;-33D4;SQUARE MB SMALL;So;0;L;<square> 006D 0062;;;;N;SQUARED MB SMALL;;;;-33D5;SQUARE MIL;So;0;L;<square> 006D 0069 006C;;;;N;SQUARED MIL;;;;-33D6;SQUARE MOL;So;0;L;<square> 006D 006F 006C;;;;N;SQUARED MOL;;;;-33D7;SQUARE PH;So;0;L;<square> 0050 0048;;;;N;SQUARED PH;;;;-33D8;SQUARE PM;So;0;L;<square> 0070 002E 006D 002E;;;;N;SQUARED PM;;;;-33D9;SQUARE PPM;So;0;L;<square> 0050 0050 004D;;;;N;SQUARED PPM;;;;-33DA;SQUARE PR;So;0;L;<square> 0050 0052;;;;N;SQUARED PR;;;;-33DB;SQUARE SR;So;0;L;<square> 0073 0072;;;;N;SQUARED SR;;;;-33DC;SQUARE SV;So;0;L;<square> 0053 0076;;;;N;SQUARED SV;;;;-33DD;SQUARE WB;So;0;L;<square> 0057 0062;;;;N;SQUARED WB;;;;-33DE;SQUARE V OVER M;So;0;ON;<square> 0056 2215 006D;;;;N;;;;;-33DF;SQUARE A OVER M;So;0;ON;<square> 0041 2215 006D;;;;N;;;;;-33E0;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY ONE;So;0;L;<compat> 0031 65E5;;;;N;;;;;-33E1;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWO;So;0;L;<compat> 0032 65E5;;;;N;;;;;-33E2;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THREE;So;0;L;<compat> 0033 65E5;;;;N;;;;;-33E3;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FOUR;So;0;L;<compat> 0034 65E5;;;;N;;;;;-33E4;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FIVE;So;0;L;<compat> 0035 65E5;;;;N;;;;;-33E5;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SIX;So;0;L;<compat> 0036 65E5;;;;N;;;;;-33E6;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SEVEN;So;0;L;<compat> 0037 65E5;;;;N;;;;;-33E7;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY EIGHT;So;0;L;<compat> 0038 65E5;;;;N;;;;;-33E8;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY NINE;So;0;L;<compat> 0039 65E5;;;;N;;;;;-33E9;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TEN;So;0;L;<compat> 0031 0030 65E5;;;;N;;;;;-33EA;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY ELEVEN;So;0;L;<compat> 0031 0031 65E5;;;;N;;;;;-33EB;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWELVE;So;0;L;<compat> 0031 0032 65E5;;;;N;;;;;-33EC;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTEEN;So;0;L;<compat> 0031 0033 65E5;;;;N;;;;;-33ED;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FOURTEEN;So;0;L;<compat> 0031 0034 65E5;;;;N;;;;;-33EE;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY FIFTEEN;So;0;L;<compat> 0031 0035 65E5;;;;N;;;;;-33EF;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SIXTEEN;So;0;L;<compat> 0031 0036 65E5;;;;N;;;;;-33F0;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY SEVENTEEN;So;0;L;<compat> 0031 0037 65E5;;;;N;;;;;-33F1;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY EIGHTEEN;So;0;L;<compat> 0031 0038 65E5;;;;N;;;;;-33F2;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY NINETEEN;So;0;L;<compat> 0031 0039 65E5;;;;N;;;;;-33F3;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY;So;0;L;<compat> 0032 0030 65E5;;;;N;;;;;-33F4;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-ONE;So;0;L;<compat> 0032 0031 65E5;;;;N;;;;;-33F5;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-TWO;So;0;L;<compat> 0032 0032 65E5;;;;N;;;;;-33F6;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-THREE;So;0;L;<compat> 0032 0033 65E5;;;;N;;;;;-33F7;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-FOUR;So;0;L;<compat> 0032 0034 65E5;;;;N;;;;;-33F8;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-FIVE;So;0;L;<compat> 0032 0035 65E5;;;;N;;;;;-33F9;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-SIX;So;0;L;<compat> 0032 0036 65E5;;;;N;;;;;-33FA;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-SEVEN;So;0;L;<compat> 0032 0037 65E5;;;;N;;;;;-33FB;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-EIGHT;So;0;L;<compat> 0032 0038 65E5;;;;N;;;;;-33FC;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY TWENTY-NINE;So;0;L;<compat> 0032 0039 65E5;;;;N;;;;;-33FD;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTY;So;0;L;<compat> 0033 0030 65E5;;;;N;;;;;-33FE;IDEOGRAPHIC TELEGRAPH SYMBOL FOR DAY THIRTY-ONE;So;0;L;<compat> 0033 0031 65E5;;;;N;;;;;-33FF;SQUARE GAL;So;0;ON;<square> 0067 0061 006C;;;;N;;;;;-3400;<CJK Ideograph Extension A, First>;Lo;0;L;;;;;N;;;;;-4DB5;<CJK Ideograph Extension A, Last>;Lo;0;L;;;;;N;;;;;-4DC0;HEXAGRAM FOR THE CREATIVE HEAVEN;So;0;ON;;;;;N;;;;;-4DC1;HEXAGRAM FOR THE RECEPTIVE EARTH;So;0;ON;;;;;N;;;;;-4DC2;HEXAGRAM FOR DIFFICULTY AT THE BEGINNING;So;0;ON;;;;;N;;;;;-4DC3;HEXAGRAM FOR YOUTHFUL FOLLY;So;0;ON;;;;;N;;;;;-4DC4;HEXAGRAM FOR WAITING;So;0;ON;;;;;N;;;;;-4DC5;HEXAGRAM FOR CONFLICT;So;0;ON;;;;;N;;;;;-4DC6;HEXAGRAM FOR THE ARMY;So;0;ON;;;;;N;;;;;-4DC7;HEXAGRAM FOR HOLDING TOGETHER;So;0;ON;;;;;N;;;;;-4DC8;HEXAGRAM FOR SMALL TAMING;So;0;ON;;;;;N;;;;;-4DC9;HEXAGRAM FOR TREADING;So;0;ON;;;;;N;;;;;-4DCA;HEXAGRAM FOR PEACE;So;0;ON;;;;;N;;;;;-4DCB;HEXAGRAM FOR STANDSTILL;So;0;ON;;;;;N;;;;;-4DCC;HEXAGRAM FOR FELLOWSHIP;So;0;ON;;;;;N;;;;;-4DCD;HEXAGRAM FOR GREAT POSSESSION;So;0;ON;;;;;N;;;;;-4DCE;HEXAGRAM FOR MODESTY;So;0;ON;;;;;N;;;;;-4DCF;HEXAGRAM FOR ENTHUSIASM;So;0;ON;;;;;N;;;;;-4DD0;HEXAGRAM FOR FOLLOWING;So;0;ON;;;;;N;;;;;-4DD1;HEXAGRAM FOR WORK ON THE DECAYED;So;0;ON;;;;;N;;;;;-4DD2;HEXAGRAM FOR APPROACH;So;0;ON;;;;;N;;;;;-4DD3;HEXAGRAM FOR CONTEMPLATION;So;0;ON;;;;;N;;;;;-4DD4;HEXAGRAM FOR BITING THROUGH;So;0;ON;;;;;N;;;;;-4DD5;HEXAGRAM FOR GRACE;So;0;ON;;;;;N;;;;;-4DD6;HEXAGRAM FOR SPLITTING APART;So;0;ON;;;;;N;;;;;-4DD7;HEXAGRAM FOR RETURN;So;0;ON;;;;;N;;;;;-4DD8;HEXAGRAM FOR INNOCENCE;So;0;ON;;;;;N;;;;;-4DD9;HEXAGRAM FOR GREAT TAMING;So;0;ON;;;;;N;;;;;-4DDA;HEXAGRAM FOR MOUTH CORNERS;So;0;ON;;;;;N;;;;;-4DDB;HEXAGRAM FOR GREAT PREPONDERANCE;So;0;ON;;;;;N;;;;;-4DDC;HEXAGRAM FOR THE ABYSMAL WATER;So;0;ON;;;;;N;;;;;-4DDD;HEXAGRAM FOR THE CLINGING FIRE;So;0;ON;;;;;N;;;;;-4DDE;HEXAGRAM FOR INFLUENCE;So;0;ON;;;;;N;;;;;-4DDF;HEXAGRAM FOR DURATION;So;0;ON;;;;;N;;;;;-4DE0;HEXAGRAM FOR RETREAT;So;0;ON;;;;;N;;;;;-4DE1;HEXAGRAM FOR GREAT POWER;So;0;ON;;;;;N;;;;;-4DE2;HEXAGRAM FOR PROGRESS;So;0;ON;;;;;N;;;;;-4DE3;HEXAGRAM FOR DARKENING OF THE LIGHT;So;0;ON;;;;;N;;;;;-4DE4;HEXAGRAM FOR THE FAMILY;So;0;ON;;;;;N;;;;;-4DE5;HEXAGRAM FOR OPPOSITION;So;0;ON;;;;;N;;;;;-4DE6;HEXAGRAM FOR OBSTRUCTION;So;0;ON;;;;;N;;;;;-4DE7;HEXAGRAM FOR DELIVERANCE;So;0;ON;;;;;N;;;;;-4DE8;HEXAGRAM FOR DECREASE;So;0;ON;;;;;N;;;;;-4DE9;HEXAGRAM FOR INCREASE;So;0;ON;;;;;N;;;;;-4DEA;HEXAGRAM FOR BREAKTHROUGH;So;0;ON;;;;;N;;;;;-4DEB;HEXAGRAM FOR COMING TO MEET;So;0;ON;;;;;N;;;;;-4DEC;HEXAGRAM FOR GATHERING TOGETHER;So;0;ON;;;;;N;;;;;-4DED;HEXAGRAM FOR PUSHING UPWARD;So;0;ON;;;;;N;;;;;-4DEE;HEXAGRAM FOR OPPRESSION;So;0;ON;;;;;N;;;;;-4DEF;HEXAGRAM FOR THE WELL;So;0;ON;;;;;N;;;;;-4DF0;HEXAGRAM FOR REVOLUTION;So;0;ON;;;;;N;;;;;-4DF1;HEXAGRAM FOR THE CAULDRON;So;0;ON;;;;;N;;;;;-4DF2;HEXAGRAM FOR THE AROUSING THUNDER;So;0;ON;;;;;N;;;;;-4DF3;HEXAGRAM FOR THE KEEPING STILL MOUNTAIN;So;0;ON;;;;;N;;;;;-4DF4;HEXAGRAM FOR DEVELOPMENT;So;0;ON;;;;;N;;;;;-4DF5;HEXAGRAM FOR THE MARRYING MAIDEN;So;0;ON;;;;;N;;;;;-4DF6;HEXAGRAM FOR ABUNDANCE;So;0;ON;;;;;N;;;;;-4DF7;HEXAGRAM FOR THE WANDERER;So;0;ON;;;;;N;;;;;-4DF8;HEXAGRAM FOR THE GENTLE WIND;So;0;ON;;;;;N;;;;;-4DF9;HEXAGRAM FOR THE JOYOUS LAKE;So;0;ON;;;;;N;;;;;-4DFA;HEXAGRAM FOR DISPERSION;So;0;ON;;;;;N;;;;;-4DFB;HEXAGRAM FOR LIMITATION;So;0;ON;;;;;N;;;;;-4DFC;HEXAGRAM FOR INNER TRUTH;So;0;ON;;;;;N;;;;;-4DFD;HEXAGRAM FOR SMALL PREPONDERANCE;So;0;ON;;;;;N;;;;;-4DFE;HEXAGRAM FOR AFTER COMPLETION;So;0;ON;;;;;N;;;;;-4DFF;HEXAGRAM FOR BEFORE COMPLETION;So;0;ON;;;;;N;;;;;-4E00;<CJK Ideograph, First>;Lo;0;L;;;;;N;;;;;-9FCC;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;;-A000;YI SYLLABLE IT;Lo;0;L;;;;;N;;;;;-A001;YI SYLLABLE IX;Lo;0;L;;;;;N;;;;;-A002;YI SYLLABLE I;Lo;0;L;;;;;N;;;;;-A003;YI SYLLABLE IP;Lo;0;L;;;;;N;;;;;-A004;YI SYLLABLE IET;Lo;0;L;;;;;N;;;;;-A005;YI SYLLABLE IEX;Lo;0;L;;;;;N;;;;;-A006;YI SYLLABLE IE;Lo;0;L;;;;;N;;;;;-A007;YI SYLLABLE IEP;Lo;0;L;;;;;N;;;;;-A008;YI SYLLABLE AT;Lo;0;L;;;;;N;;;;;-A009;YI SYLLABLE AX;Lo;0;L;;;;;N;;;;;-A00A;YI SYLLABLE A;Lo;0;L;;;;;N;;;;;-A00B;YI SYLLABLE AP;Lo;0;L;;;;;N;;;;;-A00C;YI SYLLABLE UOX;Lo;0;L;;;;;N;;;;;-A00D;YI SYLLABLE UO;Lo;0;L;;;;;N;;;;;-A00E;YI SYLLABLE UOP;Lo;0;L;;;;;N;;;;;-A00F;YI SYLLABLE OT;Lo;0;L;;;;;N;;;;;-A010;YI SYLLABLE OX;Lo;0;L;;;;;N;;;;;-A011;YI SYLLABLE O;Lo;0;L;;;;;N;;;;;-A012;YI SYLLABLE OP;Lo;0;L;;;;;N;;;;;-A013;YI SYLLABLE EX;Lo;0;L;;;;;N;;;;;-A014;YI SYLLABLE E;Lo;0;L;;;;;N;;;;;-A015;YI SYLLABLE WU;Lm;0;L;;;;;N;;;;;-A016;YI SYLLABLE BIT;Lo;0;L;;;;;N;;;;;-A017;YI SYLLABLE BIX;Lo;0;L;;;;;N;;;;;-A018;YI SYLLABLE BI;Lo;0;L;;;;;N;;;;;-A019;YI SYLLABLE BIP;Lo;0;L;;;;;N;;;;;-A01A;YI SYLLABLE BIET;Lo;0;L;;;;;N;;;;;-A01B;YI SYLLABLE BIEX;Lo;0;L;;;;;N;;;;;-A01C;YI SYLLABLE BIE;Lo;0;L;;;;;N;;;;;-A01D;YI SYLLABLE BIEP;Lo;0;L;;;;;N;;;;;-A01E;YI SYLLABLE BAT;Lo;0;L;;;;;N;;;;;-A01F;YI SYLLABLE BAX;Lo;0;L;;;;;N;;;;;-A020;YI SYLLABLE BA;Lo;0;L;;;;;N;;;;;-A021;YI SYLLABLE BAP;Lo;0;L;;;;;N;;;;;-A022;YI SYLLABLE BUOX;Lo;0;L;;;;;N;;;;;-A023;YI SYLLABLE BUO;Lo;0;L;;;;;N;;;;;-A024;YI SYLLABLE BUOP;Lo;0;L;;;;;N;;;;;-A025;YI SYLLABLE BOT;Lo;0;L;;;;;N;;;;;-A026;YI SYLLABLE BOX;Lo;0;L;;;;;N;;;;;-A027;YI SYLLABLE BO;Lo;0;L;;;;;N;;;;;-A028;YI SYLLABLE BOP;Lo;0;L;;;;;N;;;;;-A029;YI SYLLABLE BEX;Lo;0;L;;;;;N;;;;;-A02A;YI SYLLABLE BE;Lo;0;L;;;;;N;;;;;-A02B;YI SYLLABLE BEP;Lo;0;L;;;;;N;;;;;-A02C;YI SYLLABLE BUT;Lo;0;L;;;;;N;;;;;-A02D;YI SYLLABLE BUX;Lo;0;L;;;;;N;;;;;-A02E;YI SYLLABLE BU;Lo;0;L;;;;;N;;;;;-A02F;YI SYLLABLE BUP;Lo;0;L;;;;;N;;;;;-A030;YI SYLLABLE BURX;Lo;0;L;;;;;N;;;;;-A031;YI SYLLABLE BUR;Lo;0;L;;;;;N;;;;;-A032;YI SYLLABLE BYT;Lo;0;L;;;;;N;;;;;-A033;YI SYLLABLE BYX;Lo;0;L;;;;;N;;;;;-A034;YI SYLLABLE BY;Lo;0;L;;;;;N;;;;;-A035;YI SYLLABLE BYP;Lo;0;L;;;;;N;;;;;-A036;YI SYLLABLE BYRX;Lo;0;L;;;;;N;;;;;-A037;YI SYLLABLE BYR;Lo;0;L;;;;;N;;;;;-A038;YI SYLLABLE PIT;Lo;0;L;;;;;N;;;;;-A039;YI SYLLABLE PIX;Lo;0;L;;;;;N;;;;;-A03A;YI SYLLABLE PI;Lo;0;L;;;;;N;;;;;-A03B;YI SYLLABLE PIP;Lo;0;L;;;;;N;;;;;-A03C;YI SYLLABLE PIEX;Lo;0;L;;;;;N;;;;;-A03D;YI SYLLABLE PIE;Lo;0;L;;;;;N;;;;;-A03E;YI SYLLABLE PIEP;Lo;0;L;;;;;N;;;;;-A03F;YI SYLLABLE PAT;Lo;0;L;;;;;N;;;;;-A040;YI SYLLABLE PAX;Lo;0;L;;;;;N;;;;;-A041;YI SYLLABLE PA;Lo;0;L;;;;;N;;;;;-A042;YI SYLLABLE PAP;Lo;0;L;;;;;N;;;;;-A043;YI SYLLABLE PUOX;Lo;0;L;;;;;N;;;;;-A044;YI SYLLABLE PUO;Lo;0;L;;;;;N;;;;;-A045;YI SYLLABLE PUOP;Lo;0;L;;;;;N;;;;;-A046;YI SYLLABLE POT;Lo;0;L;;;;;N;;;;;-A047;YI SYLLABLE POX;Lo;0;L;;;;;N;;;;;-A048;YI SYLLABLE PO;Lo;0;L;;;;;N;;;;;-A049;YI SYLLABLE POP;Lo;0;L;;;;;N;;;;;-A04A;YI SYLLABLE PUT;Lo;0;L;;;;;N;;;;;-A04B;YI SYLLABLE PUX;Lo;0;L;;;;;N;;;;;-A04C;YI SYLLABLE PU;Lo;0;L;;;;;N;;;;;-A04D;YI SYLLABLE PUP;Lo;0;L;;;;;N;;;;;-A04E;YI SYLLABLE PURX;Lo;0;L;;;;;N;;;;;-A04F;YI SYLLABLE PUR;Lo;0;L;;;;;N;;;;;-A050;YI SYLLABLE PYT;Lo;0;L;;;;;N;;;;;-A051;YI SYLLABLE PYX;Lo;0;L;;;;;N;;;;;-A052;YI SYLLABLE PY;Lo;0;L;;;;;N;;;;;-A053;YI SYLLABLE PYP;Lo;0;L;;;;;N;;;;;-A054;YI SYLLABLE PYRX;Lo;0;L;;;;;N;;;;;-A055;YI SYLLABLE PYR;Lo;0;L;;;;;N;;;;;-A056;YI SYLLABLE BBIT;Lo;0;L;;;;;N;;;;;-A057;YI SYLLABLE BBIX;Lo;0;L;;;;;N;;;;;-A058;YI SYLLABLE BBI;Lo;0;L;;;;;N;;;;;-A059;YI SYLLABLE BBIP;Lo;0;L;;;;;N;;;;;-A05A;YI SYLLABLE BBIET;Lo;0;L;;;;;N;;;;;-A05B;YI SYLLABLE BBIEX;Lo;0;L;;;;;N;;;;;-A05C;YI SYLLABLE BBIE;Lo;0;L;;;;;N;;;;;-A05D;YI SYLLABLE BBIEP;Lo;0;L;;;;;N;;;;;-A05E;YI SYLLABLE BBAT;Lo;0;L;;;;;N;;;;;-A05F;YI SYLLABLE BBAX;Lo;0;L;;;;;N;;;;;-A060;YI SYLLABLE BBA;Lo;0;L;;;;;N;;;;;-A061;YI SYLLABLE BBAP;Lo;0;L;;;;;N;;;;;-A062;YI SYLLABLE BBUOX;Lo;0;L;;;;;N;;;;;-A063;YI SYLLABLE BBUO;Lo;0;L;;;;;N;;;;;-A064;YI SYLLABLE BBUOP;Lo;0;L;;;;;N;;;;;-A065;YI SYLLABLE BBOT;Lo;0;L;;;;;N;;;;;-A066;YI SYLLABLE BBOX;Lo;0;L;;;;;N;;;;;-A067;YI SYLLABLE BBO;Lo;0;L;;;;;N;;;;;-A068;YI SYLLABLE BBOP;Lo;0;L;;;;;N;;;;;-A069;YI SYLLABLE BBEX;Lo;0;L;;;;;N;;;;;-A06A;YI SYLLABLE BBE;Lo;0;L;;;;;N;;;;;-A06B;YI SYLLABLE BBEP;Lo;0;L;;;;;N;;;;;-A06C;YI SYLLABLE BBUT;Lo;0;L;;;;;N;;;;;-A06D;YI SYLLABLE BBUX;Lo;0;L;;;;;N;;;;;-A06E;YI SYLLABLE BBU;Lo;0;L;;;;;N;;;;;-A06F;YI SYLLABLE BBUP;Lo;0;L;;;;;N;;;;;-A070;YI SYLLABLE BBURX;Lo;0;L;;;;;N;;;;;-A071;YI SYLLABLE BBUR;Lo;0;L;;;;;N;;;;;-A072;YI SYLLABLE BBYT;Lo;0;L;;;;;N;;;;;-A073;YI SYLLABLE BBYX;Lo;0;L;;;;;N;;;;;-A074;YI SYLLABLE BBY;Lo;0;L;;;;;N;;;;;-A075;YI SYLLABLE BBYP;Lo;0;L;;;;;N;;;;;-A076;YI SYLLABLE NBIT;Lo;0;L;;;;;N;;;;;-A077;YI SYLLABLE NBIX;Lo;0;L;;;;;N;;;;;-A078;YI SYLLABLE NBI;Lo;0;L;;;;;N;;;;;-A079;YI SYLLABLE NBIP;Lo;0;L;;;;;N;;;;;-A07A;YI SYLLABLE NBIEX;Lo;0;L;;;;;N;;;;;-A07B;YI SYLLABLE NBIE;Lo;0;L;;;;;N;;;;;-A07C;YI SYLLABLE NBIEP;Lo;0;L;;;;;N;;;;;-A07D;YI SYLLABLE NBAT;Lo;0;L;;;;;N;;;;;-A07E;YI SYLLABLE NBAX;Lo;0;L;;;;;N;;;;;-A07F;YI SYLLABLE NBA;Lo;0;L;;;;;N;;;;;-A080;YI SYLLABLE NBAP;Lo;0;L;;;;;N;;;;;-A081;YI SYLLABLE NBOT;Lo;0;L;;;;;N;;;;;-A082;YI SYLLABLE NBOX;Lo;0;L;;;;;N;;;;;-A083;YI SYLLABLE NBO;Lo;0;L;;;;;N;;;;;-A084;YI SYLLABLE NBOP;Lo;0;L;;;;;N;;;;;-A085;YI SYLLABLE NBUT;Lo;0;L;;;;;N;;;;;-A086;YI SYLLABLE NBUX;Lo;0;L;;;;;N;;;;;-A087;YI SYLLABLE NBU;Lo;0;L;;;;;N;;;;;-A088;YI SYLLABLE NBUP;Lo;0;L;;;;;N;;;;;-A089;YI SYLLABLE NBURX;Lo;0;L;;;;;N;;;;;-A08A;YI SYLLABLE NBUR;Lo;0;L;;;;;N;;;;;-A08B;YI SYLLABLE NBYT;Lo;0;L;;;;;N;;;;;-A08C;YI SYLLABLE NBYX;Lo;0;L;;;;;N;;;;;-A08D;YI SYLLABLE NBY;Lo;0;L;;;;;N;;;;;-A08E;YI SYLLABLE NBYP;Lo;0;L;;;;;N;;;;;-A08F;YI SYLLABLE NBYRX;Lo;0;L;;;;;N;;;;;-A090;YI SYLLABLE NBYR;Lo;0;L;;;;;N;;;;;-A091;YI SYLLABLE HMIT;Lo;0;L;;;;;N;;;;;-A092;YI SYLLABLE HMIX;Lo;0;L;;;;;N;;;;;-A093;YI SYLLABLE HMI;Lo;0;L;;;;;N;;;;;-A094;YI SYLLABLE HMIP;Lo;0;L;;;;;N;;;;;-A095;YI SYLLABLE HMIEX;Lo;0;L;;;;;N;;;;;-A096;YI SYLLABLE HMIE;Lo;0;L;;;;;N;;;;;-A097;YI SYLLABLE HMIEP;Lo;0;L;;;;;N;;;;;-A098;YI SYLLABLE HMAT;Lo;0;L;;;;;N;;;;;-A099;YI SYLLABLE HMAX;Lo;0;L;;;;;N;;;;;-A09A;YI SYLLABLE HMA;Lo;0;L;;;;;N;;;;;-A09B;YI SYLLABLE HMAP;Lo;0;L;;;;;N;;;;;-A09C;YI SYLLABLE HMUOX;Lo;0;L;;;;;N;;;;;-A09D;YI SYLLABLE HMUO;Lo;0;L;;;;;N;;;;;-A09E;YI SYLLABLE HMUOP;Lo;0;L;;;;;N;;;;;-A09F;YI SYLLABLE HMOT;Lo;0;L;;;;;N;;;;;-A0A0;YI SYLLABLE HMOX;Lo;0;L;;;;;N;;;;;-A0A1;YI SYLLABLE HMO;Lo;0;L;;;;;N;;;;;-A0A2;YI SYLLABLE HMOP;Lo;0;L;;;;;N;;;;;-A0A3;YI SYLLABLE HMUT;Lo;0;L;;;;;N;;;;;-A0A4;YI SYLLABLE HMUX;Lo;0;L;;;;;N;;;;;-A0A5;YI SYLLABLE HMU;Lo;0;L;;;;;N;;;;;-A0A6;YI SYLLABLE HMUP;Lo;0;L;;;;;N;;;;;-A0A7;YI SYLLABLE HMURX;Lo;0;L;;;;;N;;;;;-A0A8;YI SYLLABLE HMUR;Lo;0;L;;;;;N;;;;;-A0A9;YI SYLLABLE HMYX;Lo;0;L;;;;;N;;;;;-A0AA;YI SYLLABLE HMY;Lo;0;L;;;;;N;;;;;-A0AB;YI SYLLABLE HMYP;Lo;0;L;;;;;N;;;;;-A0AC;YI SYLLABLE HMYRX;Lo;0;L;;;;;N;;;;;-A0AD;YI SYLLABLE HMYR;Lo;0;L;;;;;N;;;;;-A0AE;YI SYLLABLE MIT;Lo;0;L;;;;;N;;;;;-A0AF;YI SYLLABLE MIX;Lo;0;L;;;;;N;;;;;-A0B0;YI SYLLABLE MI;Lo;0;L;;;;;N;;;;;-A0B1;YI SYLLABLE MIP;Lo;0;L;;;;;N;;;;;-A0B2;YI SYLLABLE MIEX;Lo;0;L;;;;;N;;;;;-A0B3;YI SYLLABLE MIE;Lo;0;L;;;;;N;;;;;-A0B4;YI SYLLABLE MIEP;Lo;0;L;;;;;N;;;;;-A0B5;YI SYLLABLE MAT;Lo;0;L;;;;;N;;;;;-A0B6;YI SYLLABLE MAX;Lo;0;L;;;;;N;;;;;-A0B7;YI SYLLABLE MA;Lo;0;L;;;;;N;;;;;-A0B8;YI SYLLABLE MAP;Lo;0;L;;;;;N;;;;;-A0B9;YI SYLLABLE MUOT;Lo;0;L;;;;;N;;;;;-A0BA;YI SYLLABLE MUOX;Lo;0;L;;;;;N;;;;;-A0BB;YI SYLLABLE MUO;Lo;0;L;;;;;N;;;;;-A0BC;YI SYLLABLE MUOP;Lo;0;L;;;;;N;;;;;-A0BD;YI SYLLABLE MOT;Lo;0;L;;;;;N;;;;;-A0BE;YI SYLLABLE MOX;Lo;0;L;;;;;N;;;;;-A0BF;YI SYLLABLE MO;Lo;0;L;;;;;N;;;;;-A0C0;YI SYLLABLE MOP;Lo;0;L;;;;;N;;;;;-A0C1;YI SYLLABLE MEX;Lo;0;L;;;;;N;;;;;-A0C2;YI SYLLABLE ME;Lo;0;L;;;;;N;;;;;-A0C3;YI SYLLABLE MUT;Lo;0;L;;;;;N;;;;;-A0C4;YI SYLLABLE MUX;Lo;0;L;;;;;N;;;;;-A0C5;YI SYLLABLE MU;Lo;0;L;;;;;N;;;;;-A0C6;YI SYLLABLE MUP;Lo;0;L;;;;;N;;;;;-A0C7;YI SYLLABLE MURX;Lo;0;L;;;;;N;;;;;-A0C8;YI SYLLABLE MUR;Lo;0;L;;;;;N;;;;;-A0C9;YI SYLLABLE MYT;Lo;0;L;;;;;N;;;;;-A0CA;YI SYLLABLE MYX;Lo;0;L;;;;;N;;;;;-A0CB;YI SYLLABLE MY;Lo;0;L;;;;;N;;;;;-A0CC;YI SYLLABLE MYP;Lo;0;L;;;;;N;;;;;-A0CD;YI SYLLABLE FIT;Lo;0;L;;;;;N;;;;;-A0CE;YI SYLLABLE FIX;Lo;0;L;;;;;N;;;;;-A0CF;YI SYLLABLE FI;Lo;0;L;;;;;N;;;;;-A0D0;YI SYLLABLE FIP;Lo;0;L;;;;;N;;;;;-A0D1;YI SYLLABLE FAT;Lo;0;L;;;;;N;;;;;-A0D2;YI SYLLABLE FAX;Lo;0;L;;;;;N;;;;;-A0D3;YI SYLLABLE FA;Lo;0;L;;;;;N;;;;;-A0D4;YI SYLLABLE FAP;Lo;0;L;;;;;N;;;;;-A0D5;YI SYLLABLE FOX;Lo;0;L;;;;;N;;;;;-A0D6;YI SYLLABLE FO;Lo;0;L;;;;;N;;;;;-A0D7;YI SYLLABLE FOP;Lo;0;L;;;;;N;;;;;-A0D8;YI SYLLABLE FUT;Lo;0;L;;;;;N;;;;;-A0D9;YI SYLLABLE FUX;Lo;0;L;;;;;N;;;;;-A0DA;YI SYLLABLE FU;Lo;0;L;;;;;N;;;;;-A0DB;YI SYLLABLE FUP;Lo;0;L;;;;;N;;;;;-A0DC;YI SYLLABLE FURX;Lo;0;L;;;;;N;;;;;-A0DD;YI SYLLABLE FUR;Lo;0;L;;;;;N;;;;;-A0DE;YI SYLLABLE FYT;Lo;0;L;;;;;N;;;;;-A0DF;YI SYLLABLE FYX;Lo;0;L;;;;;N;;;;;-A0E0;YI SYLLABLE FY;Lo;0;L;;;;;N;;;;;-A0E1;YI SYLLABLE FYP;Lo;0;L;;;;;N;;;;;-A0E2;YI SYLLABLE VIT;Lo;0;L;;;;;N;;;;;-A0E3;YI SYLLABLE VIX;Lo;0;L;;;;;N;;;;;-A0E4;YI SYLLABLE VI;Lo;0;L;;;;;N;;;;;-A0E5;YI SYLLABLE VIP;Lo;0;L;;;;;N;;;;;-A0E6;YI SYLLABLE VIET;Lo;0;L;;;;;N;;;;;-A0E7;YI SYLLABLE VIEX;Lo;0;L;;;;;N;;;;;-A0E8;YI SYLLABLE VIE;Lo;0;L;;;;;N;;;;;-A0E9;YI SYLLABLE VIEP;Lo;0;L;;;;;N;;;;;-A0EA;YI SYLLABLE VAT;Lo;0;L;;;;;N;;;;;-A0EB;YI SYLLABLE VAX;Lo;0;L;;;;;N;;;;;-A0EC;YI SYLLABLE VA;Lo;0;L;;;;;N;;;;;-A0ED;YI SYLLABLE VAP;Lo;0;L;;;;;N;;;;;-A0EE;YI SYLLABLE VOT;Lo;0;L;;;;;N;;;;;-A0EF;YI SYLLABLE VOX;Lo;0;L;;;;;N;;;;;-A0F0;YI SYLLABLE VO;Lo;0;L;;;;;N;;;;;-A0F1;YI SYLLABLE VOP;Lo;0;L;;;;;N;;;;;-A0F2;YI SYLLABLE VEX;Lo;0;L;;;;;N;;;;;-A0F3;YI SYLLABLE VEP;Lo;0;L;;;;;N;;;;;-A0F4;YI SYLLABLE VUT;Lo;0;L;;;;;N;;;;;-A0F5;YI SYLLABLE VUX;Lo;0;L;;;;;N;;;;;-A0F6;YI SYLLABLE VU;Lo;0;L;;;;;N;;;;;-A0F7;YI SYLLABLE VUP;Lo;0;L;;;;;N;;;;;-A0F8;YI SYLLABLE VURX;Lo;0;L;;;;;N;;;;;-A0F9;YI SYLLABLE VUR;Lo;0;L;;;;;N;;;;;-A0FA;YI SYLLABLE VYT;Lo;0;L;;;;;N;;;;;-A0FB;YI SYLLABLE VYX;Lo;0;L;;;;;N;;;;;-A0FC;YI SYLLABLE VY;Lo;0;L;;;;;N;;;;;-A0FD;YI SYLLABLE VYP;Lo;0;L;;;;;N;;;;;-A0FE;YI SYLLABLE VYRX;Lo;0;L;;;;;N;;;;;-A0FF;YI SYLLABLE VYR;Lo;0;L;;;;;N;;;;;-A100;YI SYLLABLE DIT;Lo;0;L;;;;;N;;;;;-A101;YI SYLLABLE DIX;Lo;0;L;;;;;N;;;;;-A102;YI SYLLABLE DI;Lo;0;L;;;;;N;;;;;-A103;YI SYLLABLE DIP;Lo;0;L;;;;;N;;;;;-A104;YI SYLLABLE DIEX;Lo;0;L;;;;;N;;;;;-A105;YI SYLLABLE DIE;Lo;0;L;;;;;N;;;;;-A106;YI SYLLABLE DIEP;Lo;0;L;;;;;N;;;;;-A107;YI SYLLABLE DAT;Lo;0;L;;;;;N;;;;;-A108;YI SYLLABLE DAX;Lo;0;L;;;;;N;;;;;-A109;YI SYLLABLE DA;Lo;0;L;;;;;N;;;;;-A10A;YI SYLLABLE DAP;Lo;0;L;;;;;N;;;;;-A10B;YI SYLLABLE DUOX;Lo;0;L;;;;;N;;;;;-A10C;YI SYLLABLE DUO;Lo;0;L;;;;;N;;;;;-A10D;YI SYLLABLE DOT;Lo;0;L;;;;;N;;;;;-A10E;YI SYLLABLE DOX;Lo;0;L;;;;;N;;;;;-A10F;YI SYLLABLE DO;Lo;0;L;;;;;N;;;;;-A110;YI SYLLABLE DOP;Lo;0;L;;;;;N;;;;;-A111;YI SYLLABLE DEX;Lo;0;L;;;;;N;;;;;-A112;YI SYLLABLE DE;Lo;0;L;;;;;N;;;;;-A113;YI SYLLABLE DEP;Lo;0;L;;;;;N;;;;;-A114;YI SYLLABLE DUT;Lo;0;L;;;;;N;;;;;-A115;YI SYLLABLE DUX;Lo;0;L;;;;;N;;;;;-A116;YI SYLLABLE DU;Lo;0;L;;;;;N;;;;;-A117;YI SYLLABLE DUP;Lo;0;L;;;;;N;;;;;-A118;YI SYLLABLE DURX;Lo;0;L;;;;;N;;;;;-A119;YI SYLLABLE DUR;Lo;0;L;;;;;N;;;;;-A11A;YI SYLLABLE TIT;Lo;0;L;;;;;N;;;;;-A11B;YI SYLLABLE TIX;Lo;0;L;;;;;N;;;;;-A11C;YI SYLLABLE TI;Lo;0;L;;;;;N;;;;;-A11D;YI SYLLABLE TIP;Lo;0;L;;;;;N;;;;;-A11E;YI SYLLABLE TIEX;Lo;0;L;;;;;N;;;;;-A11F;YI SYLLABLE TIE;Lo;0;L;;;;;N;;;;;-A120;YI SYLLABLE TIEP;Lo;0;L;;;;;N;;;;;-A121;YI SYLLABLE TAT;Lo;0;L;;;;;N;;;;;-A122;YI SYLLABLE TAX;Lo;0;L;;;;;N;;;;;-A123;YI SYLLABLE TA;Lo;0;L;;;;;N;;;;;-A124;YI SYLLABLE TAP;Lo;0;L;;;;;N;;;;;-A125;YI SYLLABLE TUOT;Lo;0;L;;;;;N;;;;;-A126;YI SYLLABLE TUOX;Lo;0;L;;;;;N;;;;;-A127;YI SYLLABLE TUO;Lo;0;L;;;;;N;;;;;-A128;YI SYLLABLE TUOP;Lo;0;L;;;;;N;;;;;-A129;YI SYLLABLE TOT;Lo;0;L;;;;;N;;;;;-A12A;YI SYLLABLE TOX;Lo;0;L;;;;;N;;;;;-A12B;YI SYLLABLE TO;Lo;0;L;;;;;N;;;;;-A12C;YI SYLLABLE TOP;Lo;0;L;;;;;N;;;;;-A12D;YI SYLLABLE TEX;Lo;0;L;;;;;N;;;;;-A12E;YI SYLLABLE TE;Lo;0;L;;;;;N;;;;;-A12F;YI SYLLABLE TEP;Lo;0;L;;;;;N;;;;;-A130;YI SYLLABLE TUT;Lo;0;L;;;;;N;;;;;-A131;YI SYLLABLE TUX;Lo;0;L;;;;;N;;;;;-A132;YI SYLLABLE TU;Lo;0;L;;;;;N;;;;;-A133;YI SYLLABLE TUP;Lo;0;L;;;;;N;;;;;-A134;YI SYLLABLE TURX;Lo;0;L;;;;;N;;;;;-A135;YI SYLLABLE TUR;Lo;0;L;;;;;N;;;;;-A136;YI SYLLABLE DDIT;Lo;0;L;;;;;N;;;;;-A137;YI SYLLABLE DDIX;Lo;0;L;;;;;N;;;;;-A138;YI SYLLABLE DDI;Lo;0;L;;;;;N;;;;;-A139;YI SYLLABLE DDIP;Lo;0;L;;;;;N;;;;;-A13A;YI SYLLABLE DDIEX;Lo;0;L;;;;;N;;;;;-A13B;YI SYLLABLE DDIE;Lo;0;L;;;;;N;;;;;-A13C;YI SYLLABLE DDIEP;Lo;0;L;;;;;N;;;;;-A13D;YI SYLLABLE DDAT;Lo;0;L;;;;;N;;;;;-A13E;YI SYLLABLE DDAX;Lo;0;L;;;;;N;;;;;-A13F;YI SYLLABLE DDA;Lo;0;L;;;;;N;;;;;-A140;YI SYLLABLE DDAP;Lo;0;L;;;;;N;;;;;-A141;YI SYLLABLE DDUOX;Lo;0;L;;;;;N;;;;;-A142;YI SYLLABLE DDUO;Lo;0;L;;;;;N;;;;;-A143;YI SYLLABLE DDUOP;Lo;0;L;;;;;N;;;;;-A144;YI SYLLABLE DDOT;Lo;0;L;;;;;N;;;;;-A145;YI SYLLABLE DDOX;Lo;0;L;;;;;N;;;;;-A146;YI SYLLABLE DDO;Lo;0;L;;;;;N;;;;;-A147;YI SYLLABLE DDOP;Lo;0;L;;;;;N;;;;;-A148;YI SYLLABLE DDEX;Lo;0;L;;;;;N;;;;;-A149;YI SYLLABLE DDE;Lo;0;L;;;;;N;;;;;-A14A;YI SYLLABLE DDEP;Lo;0;L;;;;;N;;;;;-A14B;YI SYLLABLE DDUT;Lo;0;L;;;;;N;;;;;-A14C;YI SYLLABLE DDUX;Lo;0;L;;;;;N;;;;;-A14D;YI SYLLABLE DDU;Lo;0;L;;;;;N;;;;;-A14E;YI SYLLABLE DDUP;Lo;0;L;;;;;N;;;;;-A14F;YI SYLLABLE DDURX;Lo;0;L;;;;;N;;;;;-A150;YI SYLLABLE DDUR;Lo;0;L;;;;;N;;;;;-A151;YI SYLLABLE NDIT;Lo;0;L;;;;;N;;;;;-A152;YI SYLLABLE NDIX;Lo;0;L;;;;;N;;;;;-A153;YI SYLLABLE NDI;Lo;0;L;;;;;N;;;;;-A154;YI SYLLABLE NDIP;Lo;0;L;;;;;N;;;;;-A155;YI SYLLABLE NDIEX;Lo;0;L;;;;;N;;;;;-A156;YI SYLLABLE NDIE;Lo;0;L;;;;;N;;;;;-A157;YI SYLLABLE NDAT;Lo;0;L;;;;;N;;;;;-A158;YI SYLLABLE NDAX;Lo;0;L;;;;;N;;;;;-A159;YI SYLLABLE NDA;Lo;0;L;;;;;N;;;;;-A15A;YI SYLLABLE NDAP;Lo;0;L;;;;;N;;;;;-A15B;YI SYLLABLE NDOT;Lo;0;L;;;;;N;;;;;-A15C;YI SYLLABLE NDOX;Lo;0;L;;;;;N;;;;;-A15D;YI SYLLABLE NDO;Lo;0;L;;;;;N;;;;;-A15E;YI SYLLABLE NDOP;Lo;0;L;;;;;N;;;;;-A15F;YI SYLLABLE NDEX;Lo;0;L;;;;;N;;;;;-A160;YI SYLLABLE NDE;Lo;0;L;;;;;N;;;;;-A161;YI SYLLABLE NDEP;Lo;0;L;;;;;N;;;;;-A162;YI SYLLABLE NDUT;Lo;0;L;;;;;N;;;;;-A163;YI SYLLABLE NDUX;Lo;0;L;;;;;N;;;;;-A164;YI SYLLABLE NDU;Lo;0;L;;;;;N;;;;;-A165;YI SYLLABLE NDUP;Lo;0;L;;;;;N;;;;;-A166;YI SYLLABLE NDURX;Lo;0;L;;;;;N;;;;;-A167;YI SYLLABLE NDUR;Lo;0;L;;;;;N;;;;;-A168;YI SYLLABLE HNIT;Lo;0;L;;;;;N;;;;;-A169;YI SYLLABLE HNIX;Lo;0;L;;;;;N;;;;;-A16A;YI SYLLABLE HNI;Lo;0;L;;;;;N;;;;;-A16B;YI SYLLABLE HNIP;Lo;0;L;;;;;N;;;;;-A16C;YI SYLLABLE HNIET;Lo;0;L;;;;;N;;;;;-A16D;YI SYLLABLE HNIEX;Lo;0;L;;;;;N;;;;;-A16E;YI SYLLABLE HNIE;Lo;0;L;;;;;N;;;;;-A16F;YI SYLLABLE HNIEP;Lo;0;L;;;;;N;;;;;-A170;YI SYLLABLE HNAT;Lo;0;L;;;;;N;;;;;-A171;YI SYLLABLE HNAX;Lo;0;L;;;;;N;;;;;-A172;YI SYLLABLE HNA;Lo;0;L;;;;;N;;;;;-A173;YI SYLLABLE HNAP;Lo;0;L;;;;;N;;;;;-A174;YI SYLLABLE HNUOX;Lo;0;L;;;;;N;;;;;-A175;YI SYLLABLE HNUO;Lo;0;L;;;;;N;;;;;-A176;YI SYLLABLE HNOT;Lo;0;L;;;;;N;;;;;-A177;YI SYLLABLE HNOX;Lo;0;L;;;;;N;;;;;-A178;YI SYLLABLE HNOP;Lo;0;L;;;;;N;;;;;-A179;YI SYLLABLE HNEX;Lo;0;L;;;;;N;;;;;-A17A;YI SYLLABLE HNE;Lo;0;L;;;;;N;;;;;-A17B;YI SYLLABLE HNEP;Lo;0;L;;;;;N;;;;;-A17C;YI SYLLABLE HNUT;Lo;0;L;;;;;N;;;;;-A17D;YI SYLLABLE NIT;Lo;0;L;;;;;N;;;;;-A17E;YI SYLLABLE NIX;Lo;0;L;;;;;N;;;;;-A17F;YI SYLLABLE NI;Lo;0;L;;;;;N;;;;;-A180;YI SYLLABLE NIP;Lo;0;L;;;;;N;;;;;-A181;YI SYLLABLE NIEX;Lo;0;L;;;;;N;;;;;-A182;YI SYLLABLE NIE;Lo;0;L;;;;;N;;;;;-A183;YI SYLLABLE NIEP;Lo;0;L;;;;;N;;;;;-A184;YI SYLLABLE NAX;Lo;0;L;;;;;N;;;;;-A185;YI SYLLABLE NA;Lo;0;L;;;;;N;;;;;-A186;YI SYLLABLE NAP;Lo;0;L;;;;;N;;;;;-A187;YI SYLLABLE NUOX;Lo;0;L;;;;;N;;;;;-A188;YI SYLLABLE NUO;Lo;0;L;;;;;N;;;;;-A189;YI SYLLABLE NUOP;Lo;0;L;;;;;N;;;;;-A18A;YI SYLLABLE NOT;Lo;0;L;;;;;N;;;;;-A18B;YI SYLLABLE NOX;Lo;0;L;;;;;N;;;;;-A18C;YI SYLLABLE NO;Lo;0;L;;;;;N;;;;;-A18D;YI SYLLABLE NOP;Lo;0;L;;;;;N;;;;;-A18E;YI SYLLABLE NEX;Lo;0;L;;;;;N;;;;;-A18F;YI SYLLABLE NE;Lo;0;L;;;;;N;;;;;-A190;YI SYLLABLE NEP;Lo;0;L;;;;;N;;;;;-A191;YI SYLLABLE NUT;Lo;0;L;;;;;N;;;;;-A192;YI SYLLABLE NUX;Lo;0;L;;;;;N;;;;;-A193;YI SYLLABLE NU;Lo;0;L;;;;;N;;;;;-A194;YI SYLLABLE NUP;Lo;0;L;;;;;N;;;;;-A195;YI SYLLABLE NURX;Lo;0;L;;;;;N;;;;;-A196;YI SYLLABLE NUR;Lo;0;L;;;;;N;;;;;-A197;YI SYLLABLE HLIT;Lo;0;L;;;;;N;;;;;-A198;YI SYLLABLE HLIX;Lo;0;L;;;;;N;;;;;-A199;YI SYLLABLE HLI;Lo;0;L;;;;;N;;;;;-A19A;YI SYLLABLE HLIP;Lo;0;L;;;;;N;;;;;-A19B;YI SYLLABLE HLIEX;Lo;0;L;;;;;N;;;;;-A19C;YI SYLLABLE HLIE;Lo;0;L;;;;;N;;;;;-A19D;YI SYLLABLE HLIEP;Lo;0;L;;;;;N;;;;;-A19E;YI SYLLABLE HLAT;Lo;0;L;;;;;N;;;;;-A19F;YI SYLLABLE HLAX;Lo;0;L;;;;;N;;;;;-A1A0;YI SYLLABLE HLA;Lo;0;L;;;;;N;;;;;-A1A1;YI SYLLABLE HLAP;Lo;0;L;;;;;N;;;;;-A1A2;YI SYLLABLE HLUOX;Lo;0;L;;;;;N;;;;;-A1A3;YI SYLLABLE HLUO;Lo;0;L;;;;;N;;;;;-A1A4;YI SYLLABLE HLUOP;Lo;0;L;;;;;N;;;;;-A1A5;YI SYLLABLE HLOX;Lo;0;L;;;;;N;;;;;-A1A6;YI SYLLABLE HLO;Lo;0;L;;;;;N;;;;;-A1A7;YI SYLLABLE HLOP;Lo;0;L;;;;;N;;;;;-A1A8;YI SYLLABLE HLEX;Lo;0;L;;;;;N;;;;;-A1A9;YI SYLLABLE HLE;Lo;0;L;;;;;N;;;;;-A1AA;YI SYLLABLE HLEP;Lo;0;L;;;;;N;;;;;-A1AB;YI SYLLABLE HLUT;Lo;0;L;;;;;N;;;;;-A1AC;YI SYLLABLE HLUX;Lo;0;L;;;;;N;;;;;-A1AD;YI SYLLABLE HLU;Lo;0;L;;;;;N;;;;;-A1AE;YI SYLLABLE HLUP;Lo;0;L;;;;;N;;;;;-A1AF;YI SYLLABLE HLURX;Lo;0;L;;;;;N;;;;;-A1B0;YI SYLLABLE HLUR;Lo;0;L;;;;;N;;;;;-A1B1;YI SYLLABLE HLYT;Lo;0;L;;;;;N;;;;;-A1B2;YI SYLLABLE HLYX;Lo;0;L;;;;;N;;;;;-A1B3;YI SYLLABLE HLY;Lo;0;L;;;;;N;;;;;-A1B4;YI SYLLABLE HLYP;Lo;0;L;;;;;N;;;;;-A1B5;YI SYLLABLE HLYRX;Lo;0;L;;;;;N;;;;;-A1B6;YI SYLLABLE HLYR;Lo;0;L;;;;;N;;;;;-A1B7;YI SYLLABLE LIT;Lo;0;L;;;;;N;;;;;-A1B8;YI SYLLABLE LIX;Lo;0;L;;;;;N;;;;;-A1B9;YI SYLLABLE LI;Lo;0;L;;;;;N;;;;;-A1BA;YI SYLLABLE LIP;Lo;0;L;;;;;N;;;;;-A1BB;YI SYLLABLE LIET;Lo;0;L;;;;;N;;;;;-A1BC;YI SYLLABLE LIEX;Lo;0;L;;;;;N;;;;;-A1BD;YI SYLLABLE LIE;Lo;0;L;;;;;N;;;;;-A1BE;YI SYLLABLE LIEP;Lo;0;L;;;;;N;;;;;-A1BF;YI SYLLABLE LAT;Lo;0;L;;;;;N;;;;;-A1C0;YI SYLLABLE LAX;Lo;0;L;;;;;N;;;;;-A1C1;YI SYLLABLE LA;Lo;0;L;;;;;N;;;;;-A1C2;YI SYLLABLE LAP;Lo;0;L;;;;;N;;;;;-A1C3;YI SYLLABLE LUOT;Lo;0;L;;;;;N;;;;;-A1C4;YI SYLLABLE LUOX;Lo;0;L;;;;;N;;;;;-A1C5;YI SYLLABLE LUO;Lo;0;L;;;;;N;;;;;-A1C6;YI SYLLABLE LUOP;Lo;0;L;;;;;N;;;;;-A1C7;YI SYLLABLE LOT;Lo;0;L;;;;;N;;;;;-A1C8;YI SYLLABLE LOX;Lo;0;L;;;;;N;;;;;-A1C9;YI SYLLABLE LO;Lo;0;L;;;;;N;;;;;-A1CA;YI SYLLABLE LOP;Lo;0;L;;;;;N;;;;;-A1CB;YI SYLLABLE LEX;Lo;0;L;;;;;N;;;;;-A1CC;YI SYLLABLE LE;Lo;0;L;;;;;N;;;;;-A1CD;YI SYLLABLE LEP;Lo;0;L;;;;;N;;;;;-A1CE;YI SYLLABLE LUT;Lo;0;L;;;;;N;;;;;-A1CF;YI SYLLABLE LUX;Lo;0;L;;;;;N;;;;;-A1D0;YI SYLLABLE LU;Lo;0;L;;;;;N;;;;;-A1D1;YI SYLLABLE LUP;Lo;0;L;;;;;N;;;;;-A1D2;YI SYLLABLE LURX;Lo;0;L;;;;;N;;;;;-A1D3;YI SYLLABLE LUR;Lo;0;L;;;;;N;;;;;-A1D4;YI SYLLABLE LYT;Lo;0;L;;;;;N;;;;;-A1D5;YI SYLLABLE LYX;Lo;0;L;;;;;N;;;;;-A1D6;YI SYLLABLE LY;Lo;0;L;;;;;N;;;;;-A1D7;YI SYLLABLE LYP;Lo;0;L;;;;;N;;;;;-A1D8;YI SYLLABLE LYRX;Lo;0;L;;;;;N;;;;;-A1D9;YI SYLLABLE LYR;Lo;0;L;;;;;N;;;;;-A1DA;YI SYLLABLE GIT;Lo;0;L;;;;;N;;;;;-A1DB;YI SYLLABLE GIX;Lo;0;L;;;;;N;;;;;-A1DC;YI SYLLABLE GI;Lo;0;L;;;;;N;;;;;-A1DD;YI SYLLABLE GIP;Lo;0;L;;;;;N;;;;;-A1DE;YI SYLLABLE GIET;Lo;0;L;;;;;N;;;;;-A1DF;YI SYLLABLE GIEX;Lo;0;L;;;;;N;;;;;-A1E0;YI SYLLABLE GIE;Lo;0;L;;;;;N;;;;;-A1E1;YI SYLLABLE GIEP;Lo;0;L;;;;;N;;;;;-A1E2;YI SYLLABLE GAT;Lo;0;L;;;;;N;;;;;-A1E3;YI SYLLABLE GAX;Lo;0;L;;;;;N;;;;;-A1E4;YI SYLLABLE GA;Lo;0;L;;;;;N;;;;;-A1E5;YI SYLLABLE GAP;Lo;0;L;;;;;N;;;;;-A1E6;YI SYLLABLE GUOT;Lo;0;L;;;;;N;;;;;-A1E7;YI SYLLABLE GUOX;Lo;0;L;;;;;N;;;;;-A1E8;YI SYLLABLE GUO;Lo;0;L;;;;;N;;;;;-A1E9;YI SYLLABLE GUOP;Lo;0;L;;;;;N;;;;;-A1EA;YI SYLLABLE GOT;Lo;0;L;;;;;N;;;;;-A1EB;YI SYLLABLE GOX;Lo;0;L;;;;;N;;;;;-A1EC;YI SYLLABLE GO;Lo;0;L;;;;;N;;;;;-A1ED;YI SYLLABLE GOP;Lo;0;L;;;;;N;;;;;-A1EE;YI SYLLABLE GET;Lo;0;L;;;;;N;;;;;-A1EF;YI SYLLABLE GEX;Lo;0;L;;;;;N;;;;;-A1F0;YI SYLLABLE GE;Lo;0;L;;;;;N;;;;;-A1F1;YI SYLLABLE GEP;Lo;0;L;;;;;N;;;;;-A1F2;YI SYLLABLE GUT;Lo;0;L;;;;;N;;;;;-A1F3;YI SYLLABLE GUX;Lo;0;L;;;;;N;;;;;-A1F4;YI SYLLABLE GU;Lo;0;L;;;;;N;;;;;-A1F5;YI SYLLABLE GUP;Lo;0;L;;;;;N;;;;;-A1F6;YI SYLLABLE GURX;Lo;0;L;;;;;N;;;;;-A1F7;YI SYLLABLE GUR;Lo;0;L;;;;;N;;;;;-A1F8;YI SYLLABLE KIT;Lo;0;L;;;;;N;;;;;-A1F9;YI SYLLABLE KIX;Lo;0;L;;;;;N;;;;;-A1FA;YI SYLLABLE KI;Lo;0;L;;;;;N;;;;;-A1FB;YI SYLLABLE KIP;Lo;0;L;;;;;N;;;;;-A1FC;YI SYLLABLE KIEX;Lo;0;L;;;;;N;;;;;-A1FD;YI SYLLABLE KIE;Lo;0;L;;;;;N;;;;;-A1FE;YI SYLLABLE KIEP;Lo;0;L;;;;;N;;;;;-A1FF;YI SYLLABLE KAT;Lo;0;L;;;;;N;;;;;-A200;YI SYLLABLE KAX;Lo;0;L;;;;;N;;;;;-A201;YI SYLLABLE KA;Lo;0;L;;;;;N;;;;;-A202;YI SYLLABLE KAP;Lo;0;L;;;;;N;;;;;-A203;YI SYLLABLE KUOX;Lo;0;L;;;;;N;;;;;-A204;YI SYLLABLE KUO;Lo;0;L;;;;;N;;;;;-A205;YI SYLLABLE KUOP;Lo;0;L;;;;;N;;;;;-A206;YI SYLLABLE KOT;Lo;0;L;;;;;N;;;;;-A207;YI SYLLABLE KOX;Lo;0;L;;;;;N;;;;;-A208;YI SYLLABLE KO;Lo;0;L;;;;;N;;;;;-A209;YI SYLLABLE KOP;Lo;0;L;;;;;N;;;;;-A20A;YI SYLLABLE KET;Lo;0;L;;;;;N;;;;;-A20B;YI SYLLABLE KEX;Lo;0;L;;;;;N;;;;;-A20C;YI SYLLABLE KE;Lo;0;L;;;;;N;;;;;-A20D;YI SYLLABLE KEP;Lo;0;L;;;;;N;;;;;-A20E;YI SYLLABLE KUT;Lo;0;L;;;;;N;;;;;-A20F;YI SYLLABLE KUX;Lo;0;L;;;;;N;;;;;-A210;YI SYLLABLE KU;Lo;0;L;;;;;N;;;;;-A211;YI SYLLABLE KUP;Lo;0;L;;;;;N;;;;;-A212;YI SYLLABLE KURX;Lo;0;L;;;;;N;;;;;-A213;YI SYLLABLE KUR;Lo;0;L;;;;;N;;;;;-A214;YI SYLLABLE GGIT;Lo;0;L;;;;;N;;;;;-A215;YI SYLLABLE GGIX;Lo;0;L;;;;;N;;;;;-A216;YI SYLLABLE GGI;Lo;0;L;;;;;N;;;;;-A217;YI SYLLABLE GGIEX;Lo;0;L;;;;;N;;;;;-A218;YI SYLLABLE GGIE;Lo;0;L;;;;;N;;;;;-A219;YI SYLLABLE GGIEP;Lo;0;L;;;;;N;;;;;-A21A;YI SYLLABLE GGAT;Lo;0;L;;;;;N;;;;;-A21B;YI SYLLABLE GGAX;Lo;0;L;;;;;N;;;;;-A21C;YI SYLLABLE GGA;Lo;0;L;;;;;N;;;;;-A21D;YI SYLLABLE GGAP;Lo;0;L;;;;;N;;;;;-A21E;YI SYLLABLE GGUOT;Lo;0;L;;;;;N;;;;;-A21F;YI SYLLABLE GGUOX;Lo;0;L;;;;;N;;;;;-A220;YI SYLLABLE GGUO;Lo;0;L;;;;;N;;;;;-A221;YI SYLLABLE GGUOP;Lo;0;L;;;;;N;;;;;-A222;YI SYLLABLE GGOT;Lo;0;L;;;;;N;;;;;-A223;YI SYLLABLE GGOX;Lo;0;L;;;;;N;;;;;-A224;YI SYLLABLE GGO;Lo;0;L;;;;;N;;;;;-A225;YI SYLLABLE GGOP;Lo;0;L;;;;;N;;;;;-A226;YI SYLLABLE GGET;Lo;0;L;;;;;N;;;;;-A227;YI SYLLABLE GGEX;Lo;0;L;;;;;N;;;;;-A228;YI SYLLABLE GGE;Lo;0;L;;;;;N;;;;;-A229;YI SYLLABLE GGEP;Lo;0;L;;;;;N;;;;;-A22A;YI SYLLABLE GGUT;Lo;0;L;;;;;N;;;;;-A22B;YI SYLLABLE GGUX;Lo;0;L;;;;;N;;;;;-A22C;YI SYLLABLE GGU;Lo;0;L;;;;;N;;;;;-A22D;YI SYLLABLE GGUP;Lo;0;L;;;;;N;;;;;-A22E;YI SYLLABLE GGURX;Lo;0;L;;;;;N;;;;;-A22F;YI SYLLABLE GGUR;Lo;0;L;;;;;N;;;;;-A230;YI SYLLABLE MGIEX;Lo;0;L;;;;;N;;;;;-A231;YI SYLLABLE MGIE;Lo;0;L;;;;;N;;;;;-A232;YI SYLLABLE MGAT;Lo;0;L;;;;;N;;;;;-A233;YI SYLLABLE MGAX;Lo;0;L;;;;;N;;;;;-A234;YI SYLLABLE MGA;Lo;0;L;;;;;N;;;;;-A235;YI SYLLABLE MGAP;Lo;0;L;;;;;N;;;;;-A236;YI SYLLABLE MGUOX;Lo;0;L;;;;;N;;;;;-A237;YI SYLLABLE MGUO;Lo;0;L;;;;;N;;;;;-A238;YI SYLLABLE MGUOP;Lo;0;L;;;;;N;;;;;-A239;YI SYLLABLE MGOT;Lo;0;L;;;;;N;;;;;-A23A;YI SYLLABLE MGOX;Lo;0;L;;;;;N;;;;;-A23B;YI SYLLABLE MGO;Lo;0;L;;;;;N;;;;;-A23C;YI SYLLABLE MGOP;Lo;0;L;;;;;N;;;;;-A23D;YI SYLLABLE MGEX;Lo;0;L;;;;;N;;;;;-A23E;YI SYLLABLE MGE;Lo;0;L;;;;;N;;;;;-A23F;YI SYLLABLE MGEP;Lo;0;L;;;;;N;;;;;-A240;YI SYLLABLE MGUT;Lo;0;L;;;;;N;;;;;-A241;YI SYLLABLE MGUX;Lo;0;L;;;;;N;;;;;-A242;YI SYLLABLE MGU;Lo;0;L;;;;;N;;;;;-A243;YI SYLLABLE MGUP;Lo;0;L;;;;;N;;;;;-A244;YI SYLLABLE MGURX;Lo;0;L;;;;;N;;;;;-A245;YI SYLLABLE MGUR;Lo;0;L;;;;;N;;;;;-A246;YI SYLLABLE HXIT;Lo;0;L;;;;;N;;;;;-A247;YI SYLLABLE HXIX;Lo;0;L;;;;;N;;;;;-A248;YI SYLLABLE HXI;Lo;0;L;;;;;N;;;;;-A249;YI SYLLABLE HXIP;Lo;0;L;;;;;N;;;;;-A24A;YI SYLLABLE HXIET;Lo;0;L;;;;;N;;;;;-A24B;YI SYLLABLE HXIEX;Lo;0;L;;;;;N;;;;;-A24C;YI SYLLABLE HXIE;Lo;0;L;;;;;N;;;;;-A24D;YI SYLLABLE HXIEP;Lo;0;L;;;;;N;;;;;-A24E;YI SYLLABLE HXAT;Lo;0;L;;;;;N;;;;;-A24F;YI SYLLABLE HXAX;Lo;0;L;;;;;N;;;;;-A250;YI SYLLABLE HXA;Lo;0;L;;;;;N;;;;;-A251;YI SYLLABLE HXAP;Lo;0;L;;;;;N;;;;;-A252;YI SYLLABLE HXUOT;Lo;0;L;;;;;N;;;;;-A253;YI SYLLABLE HXUOX;Lo;0;L;;;;;N;;;;;-A254;YI SYLLABLE HXUO;Lo;0;L;;;;;N;;;;;-A255;YI SYLLABLE HXUOP;Lo;0;L;;;;;N;;;;;-A256;YI SYLLABLE HXOT;Lo;0;L;;;;;N;;;;;-A257;YI SYLLABLE HXOX;Lo;0;L;;;;;N;;;;;-A258;YI SYLLABLE HXO;Lo;0;L;;;;;N;;;;;-A259;YI SYLLABLE HXOP;Lo;0;L;;;;;N;;;;;-A25A;YI SYLLABLE HXEX;Lo;0;L;;;;;N;;;;;-A25B;YI SYLLABLE HXE;Lo;0;L;;;;;N;;;;;-A25C;YI SYLLABLE HXEP;Lo;0;L;;;;;N;;;;;-A25D;YI SYLLABLE NGIEX;Lo;0;L;;;;;N;;;;;-A25E;YI SYLLABLE NGIE;Lo;0;L;;;;;N;;;;;-A25F;YI SYLLABLE NGIEP;Lo;0;L;;;;;N;;;;;-A260;YI SYLLABLE NGAT;Lo;0;L;;;;;N;;;;;-A261;YI SYLLABLE NGAX;Lo;0;L;;;;;N;;;;;-A262;YI SYLLABLE NGA;Lo;0;L;;;;;N;;;;;-A263;YI SYLLABLE NGAP;Lo;0;L;;;;;N;;;;;-A264;YI SYLLABLE NGUOT;Lo;0;L;;;;;N;;;;;-A265;YI SYLLABLE NGUOX;Lo;0;L;;;;;N;;;;;-A266;YI SYLLABLE NGUO;Lo;0;L;;;;;N;;;;;-A267;YI SYLLABLE NGOT;Lo;0;L;;;;;N;;;;;-A268;YI SYLLABLE NGOX;Lo;0;L;;;;;N;;;;;-A269;YI SYLLABLE NGO;Lo;0;L;;;;;N;;;;;-A26A;YI SYLLABLE NGOP;Lo;0;L;;;;;N;;;;;-A26B;YI SYLLABLE NGEX;Lo;0;L;;;;;N;;;;;-A26C;YI SYLLABLE NGE;Lo;0;L;;;;;N;;;;;-A26D;YI SYLLABLE NGEP;Lo;0;L;;;;;N;;;;;-A26E;YI SYLLABLE HIT;Lo;0;L;;;;;N;;;;;-A26F;YI SYLLABLE HIEX;Lo;0;L;;;;;N;;;;;-A270;YI SYLLABLE HIE;Lo;0;L;;;;;N;;;;;-A271;YI SYLLABLE HAT;Lo;0;L;;;;;N;;;;;-A272;YI SYLLABLE HAX;Lo;0;L;;;;;N;;;;;-A273;YI SYLLABLE HA;Lo;0;L;;;;;N;;;;;-A274;YI SYLLABLE HAP;Lo;0;L;;;;;N;;;;;-A275;YI SYLLABLE HUOT;Lo;0;L;;;;;N;;;;;-A276;YI SYLLABLE HUOX;Lo;0;L;;;;;N;;;;;-A277;YI SYLLABLE HUO;Lo;0;L;;;;;N;;;;;-A278;YI SYLLABLE HUOP;Lo;0;L;;;;;N;;;;;-A279;YI SYLLABLE HOT;Lo;0;L;;;;;N;;;;;-A27A;YI SYLLABLE HOX;Lo;0;L;;;;;N;;;;;-A27B;YI SYLLABLE HO;Lo;0;L;;;;;N;;;;;-A27C;YI SYLLABLE HOP;Lo;0;L;;;;;N;;;;;-A27D;YI SYLLABLE HEX;Lo;0;L;;;;;N;;;;;-A27E;YI SYLLABLE HE;Lo;0;L;;;;;N;;;;;-A27F;YI SYLLABLE HEP;Lo;0;L;;;;;N;;;;;-A280;YI SYLLABLE WAT;Lo;0;L;;;;;N;;;;;-A281;YI SYLLABLE WAX;Lo;0;L;;;;;N;;;;;-A282;YI SYLLABLE WA;Lo;0;L;;;;;N;;;;;-A283;YI SYLLABLE WAP;Lo;0;L;;;;;N;;;;;-A284;YI SYLLABLE WUOX;Lo;0;L;;;;;N;;;;;-A285;YI SYLLABLE WUO;Lo;0;L;;;;;N;;;;;-A286;YI SYLLABLE WUOP;Lo;0;L;;;;;N;;;;;-A287;YI SYLLABLE WOX;Lo;0;L;;;;;N;;;;;-A288;YI SYLLABLE WO;Lo;0;L;;;;;N;;;;;-A289;YI SYLLABLE WOP;Lo;0;L;;;;;N;;;;;-A28A;YI SYLLABLE WEX;Lo;0;L;;;;;N;;;;;-A28B;YI SYLLABLE WE;Lo;0;L;;;;;N;;;;;-A28C;YI SYLLABLE WEP;Lo;0;L;;;;;N;;;;;-A28D;YI SYLLABLE ZIT;Lo;0;L;;;;;N;;;;;-A28E;YI SYLLABLE ZIX;Lo;0;L;;;;;N;;;;;-A28F;YI SYLLABLE ZI;Lo;0;L;;;;;N;;;;;-A290;YI SYLLABLE ZIP;Lo;0;L;;;;;N;;;;;-A291;YI SYLLABLE ZIEX;Lo;0;L;;;;;N;;;;;-A292;YI SYLLABLE ZIE;Lo;0;L;;;;;N;;;;;-A293;YI SYLLABLE ZIEP;Lo;0;L;;;;;N;;;;;-A294;YI SYLLABLE ZAT;Lo;0;L;;;;;N;;;;;-A295;YI SYLLABLE ZAX;Lo;0;L;;;;;N;;;;;-A296;YI SYLLABLE ZA;Lo;0;L;;;;;N;;;;;-A297;YI SYLLABLE ZAP;Lo;0;L;;;;;N;;;;;-A298;YI SYLLABLE ZUOX;Lo;0;L;;;;;N;;;;;-A299;YI SYLLABLE ZUO;Lo;0;L;;;;;N;;;;;-A29A;YI SYLLABLE ZUOP;Lo;0;L;;;;;N;;;;;-A29B;YI SYLLABLE ZOT;Lo;0;L;;;;;N;;;;;-A29C;YI SYLLABLE ZOX;Lo;0;L;;;;;N;;;;;-A29D;YI SYLLABLE ZO;Lo;0;L;;;;;N;;;;;-A29E;YI SYLLABLE ZOP;Lo;0;L;;;;;N;;;;;-A29F;YI SYLLABLE ZEX;Lo;0;L;;;;;N;;;;;-A2A0;YI SYLLABLE ZE;Lo;0;L;;;;;N;;;;;-A2A1;YI SYLLABLE ZEP;Lo;0;L;;;;;N;;;;;-A2A2;YI SYLLABLE ZUT;Lo;0;L;;;;;N;;;;;-A2A3;YI SYLLABLE ZUX;Lo;0;L;;;;;N;;;;;-A2A4;YI SYLLABLE ZU;Lo;0;L;;;;;N;;;;;-A2A5;YI SYLLABLE ZUP;Lo;0;L;;;;;N;;;;;-A2A6;YI SYLLABLE ZURX;Lo;0;L;;;;;N;;;;;-A2A7;YI SYLLABLE ZUR;Lo;0;L;;;;;N;;;;;-A2A8;YI SYLLABLE ZYT;Lo;0;L;;;;;N;;;;;-A2A9;YI SYLLABLE ZYX;Lo;0;L;;;;;N;;;;;-A2AA;YI SYLLABLE ZY;Lo;0;L;;;;;N;;;;;-A2AB;YI SYLLABLE ZYP;Lo;0;L;;;;;N;;;;;-A2AC;YI SYLLABLE ZYRX;Lo;0;L;;;;;N;;;;;-A2AD;YI SYLLABLE ZYR;Lo;0;L;;;;;N;;;;;-A2AE;YI SYLLABLE CIT;Lo;0;L;;;;;N;;;;;-A2AF;YI SYLLABLE CIX;Lo;0;L;;;;;N;;;;;-A2B0;YI SYLLABLE CI;Lo;0;L;;;;;N;;;;;-A2B1;YI SYLLABLE CIP;Lo;0;L;;;;;N;;;;;-A2B2;YI SYLLABLE CIET;Lo;0;L;;;;;N;;;;;-A2B3;YI SYLLABLE CIEX;Lo;0;L;;;;;N;;;;;-A2B4;YI SYLLABLE CIE;Lo;0;L;;;;;N;;;;;-A2B5;YI SYLLABLE CIEP;Lo;0;L;;;;;N;;;;;-A2B6;YI SYLLABLE CAT;Lo;0;L;;;;;N;;;;;-A2B7;YI SYLLABLE CAX;Lo;0;L;;;;;N;;;;;-A2B8;YI SYLLABLE CA;Lo;0;L;;;;;N;;;;;-A2B9;YI SYLLABLE CAP;Lo;0;L;;;;;N;;;;;-A2BA;YI SYLLABLE CUOX;Lo;0;L;;;;;N;;;;;-A2BB;YI SYLLABLE CUO;Lo;0;L;;;;;N;;;;;-A2BC;YI SYLLABLE CUOP;Lo;0;L;;;;;N;;;;;-A2BD;YI SYLLABLE COT;Lo;0;L;;;;;N;;;;;-A2BE;YI SYLLABLE COX;Lo;0;L;;;;;N;;;;;-A2BF;YI SYLLABLE CO;Lo;0;L;;;;;N;;;;;-A2C0;YI SYLLABLE COP;Lo;0;L;;;;;N;;;;;-A2C1;YI SYLLABLE CEX;Lo;0;L;;;;;N;;;;;-A2C2;YI SYLLABLE CE;Lo;0;L;;;;;N;;;;;-A2C3;YI SYLLABLE CEP;Lo;0;L;;;;;N;;;;;-A2C4;YI SYLLABLE CUT;Lo;0;L;;;;;N;;;;;-A2C5;YI SYLLABLE CUX;Lo;0;L;;;;;N;;;;;-A2C6;YI SYLLABLE CU;Lo;0;L;;;;;N;;;;;-A2C7;YI SYLLABLE CUP;Lo;0;L;;;;;N;;;;;-A2C8;YI SYLLABLE CURX;Lo;0;L;;;;;N;;;;;-A2C9;YI SYLLABLE CUR;Lo;0;L;;;;;N;;;;;-A2CA;YI SYLLABLE CYT;Lo;0;L;;;;;N;;;;;-A2CB;YI SYLLABLE CYX;Lo;0;L;;;;;N;;;;;-A2CC;YI SYLLABLE CY;Lo;0;L;;;;;N;;;;;-A2CD;YI SYLLABLE CYP;Lo;0;L;;;;;N;;;;;-A2CE;YI SYLLABLE CYRX;Lo;0;L;;;;;N;;;;;-A2CF;YI SYLLABLE CYR;Lo;0;L;;;;;N;;;;;-A2D0;YI SYLLABLE ZZIT;Lo;0;L;;;;;N;;;;;-A2D1;YI SYLLABLE ZZIX;Lo;0;L;;;;;N;;;;;-A2D2;YI SYLLABLE ZZI;Lo;0;L;;;;;N;;;;;-A2D3;YI SYLLABLE ZZIP;Lo;0;L;;;;;N;;;;;-A2D4;YI SYLLABLE ZZIET;Lo;0;L;;;;;N;;;;;-A2D5;YI SYLLABLE ZZIEX;Lo;0;L;;;;;N;;;;;-A2D6;YI SYLLABLE ZZIE;Lo;0;L;;;;;N;;;;;-A2D7;YI SYLLABLE ZZIEP;Lo;0;L;;;;;N;;;;;-A2D8;YI SYLLABLE ZZAT;Lo;0;L;;;;;N;;;;;-A2D9;YI SYLLABLE ZZAX;Lo;0;L;;;;;N;;;;;-A2DA;YI SYLLABLE ZZA;Lo;0;L;;;;;N;;;;;-A2DB;YI SYLLABLE ZZAP;Lo;0;L;;;;;N;;;;;-A2DC;YI SYLLABLE ZZOX;Lo;0;L;;;;;N;;;;;-A2DD;YI SYLLABLE ZZO;Lo;0;L;;;;;N;;;;;-A2DE;YI SYLLABLE ZZOP;Lo;0;L;;;;;N;;;;;-A2DF;YI SYLLABLE ZZEX;Lo;0;L;;;;;N;;;;;-A2E0;YI SYLLABLE ZZE;Lo;0;L;;;;;N;;;;;-A2E1;YI SYLLABLE ZZEP;Lo;0;L;;;;;N;;;;;-A2E2;YI SYLLABLE ZZUX;Lo;0;L;;;;;N;;;;;-A2E3;YI SYLLABLE ZZU;Lo;0;L;;;;;N;;;;;-A2E4;YI SYLLABLE ZZUP;Lo;0;L;;;;;N;;;;;-A2E5;YI SYLLABLE ZZURX;Lo;0;L;;;;;N;;;;;-A2E6;YI SYLLABLE ZZUR;Lo;0;L;;;;;N;;;;;-A2E7;YI SYLLABLE ZZYT;Lo;0;L;;;;;N;;;;;-A2E8;YI SYLLABLE ZZYX;Lo;0;L;;;;;N;;;;;-A2E9;YI SYLLABLE ZZY;Lo;0;L;;;;;N;;;;;-A2EA;YI SYLLABLE ZZYP;Lo;0;L;;;;;N;;;;;-A2EB;YI SYLLABLE ZZYRX;Lo;0;L;;;;;N;;;;;-A2EC;YI SYLLABLE ZZYR;Lo;0;L;;;;;N;;;;;-A2ED;YI SYLLABLE NZIT;Lo;0;L;;;;;N;;;;;-A2EE;YI SYLLABLE NZIX;Lo;0;L;;;;;N;;;;;-A2EF;YI SYLLABLE NZI;Lo;0;L;;;;;N;;;;;-A2F0;YI SYLLABLE NZIP;Lo;0;L;;;;;N;;;;;-A2F1;YI SYLLABLE NZIEX;Lo;0;L;;;;;N;;;;;-A2F2;YI SYLLABLE NZIE;Lo;0;L;;;;;N;;;;;-A2F3;YI SYLLABLE NZIEP;Lo;0;L;;;;;N;;;;;-A2F4;YI SYLLABLE NZAT;Lo;0;L;;;;;N;;;;;-A2F5;YI SYLLABLE NZAX;Lo;0;L;;;;;N;;;;;-A2F6;YI SYLLABLE NZA;Lo;0;L;;;;;N;;;;;-A2F7;YI SYLLABLE NZAP;Lo;0;L;;;;;N;;;;;-A2F8;YI SYLLABLE NZUOX;Lo;0;L;;;;;N;;;;;-A2F9;YI SYLLABLE NZUO;Lo;0;L;;;;;N;;;;;-A2FA;YI SYLLABLE NZOX;Lo;0;L;;;;;N;;;;;-A2FB;YI SYLLABLE NZOP;Lo;0;L;;;;;N;;;;;-A2FC;YI SYLLABLE NZEX;Lo;0;L;;;;;N;;;;;-A2FD;YI SYLLABLE NZE;Lo;0;L;;;;;N;;;;;-A2FE;YI SYLLABLE NZUX;Lo;0;L;;;;;N;;;;;-A2FF;YI SYLLABLE NZU;Lo;0;L;;;;;N;;;;;-A300;YI SYLLABLE NZUP;Lo;0;L;;;;;N;;;;;-A301;YI SYLLABLE NZURX;Lo;0;L;;;;;N;;;;;-A302;YI SYLLABLE NZUR;Lo;0;L;;;;;N;;;;;-A303;YI SYLLABLE NZYT;Lo;0;L;;;;;N;;;;;-A304;YI SYLLABLE NZYX;Lo;0;L;;;;;N;;;;;-A305;YI SYLLABLE NZY;Lo;0;L;;;;;N;;;;;-A306;YI SYLLABLE NZYP;Lo;0;L;;;;;N;;;;;-A307;YI SYLLABLE NZYRX;Lo;0;L;;;;;N;;;;;-A308;YI SYLLABLE NZYR;Lo;0;L;;;;;N;;;;;-A309;YI SYLLABLE SIT;Lo;0;L;;;;;N;;;;;-A30A;YI SYLLABLE SIX;Lo;0;L;;;;;N;;;;;-A30B;YI SYLLABLE SI;Lo;0;L;;;;;N;;;;;-A30C;YI SYLLABLE SIP;Lo;0;L;;;;;N;;;;;-A30D;YI SYLLABLE SIEX;Lo;0;L;;;;;N;;;;;-A30E;YI SYLLABLE SIE;Lo;0;L;;;;;N;;;;;-A30F;YI SYLLABLE SIEP;Lo;0;L;;;;;N;;;;;-A310;YI SYLLABLE SAT;Lo;0;L;;;;;N;;;;;-A311;YI SYLLABLE SAX;Lo;0;L;;;;;N;;;;;-A312;YI SYLLABLE SA;Lo;0;L;;;;;N;;;;;-A313;YI SYLLABLE SAP;Lo;0;L;;;;;N;;;;;-A314;YI SYLLABLE SUOX;Lo;0;L;;;;;N;;;;;-A315;YI SYLLABLE SUO;Lo;0;L;;;;;N;;;;;-A316;YI SYLLABLE SUOP;Lo;0;L;;;;;N;;;;;-A317;YI SYLLABLE SOT;Lo;0;L;;;;;N;;;;;-A318;YI SYLLABLE SOX;Lo;0;L;;;;;N;;;;;-A319;YI SYLLABLE SO;Lo;0;L;;;;;N;;;;;-A31A;YI SYLLABLE SOP;Lo;0;L;;;;;N;;;;;-A31B;YI SYLLABLE SEX;Lo;0;L;;;;;N;;;;;-A31C;YI SYLLABLE SE;Lo;0;L;;;;;N;;;;;-A31D;YI SYLLABLE SEP;Lo;0;L;;;;;N;;;;;-A31E;YI SYLLABLE SUT;Lo;0;L;;;;;N;;;;;-A31F;YI SYLLABLE SUX;Lo;0;L;;;;;N;;;;;-A320;YI SYLLABLE SU;Lo;0;L;;;;;N;;;;;-A321;YI SYLLABLE SUP;Lo;0;L;;;;;N;;;;;-A322;YI SYLLABLE SURX;Lo;0;L;;;;;N;;;;;-A323;YI SYLLABLE SUR;Lo;0;L;;;;;N;;;;;-A324;YI SYLLABLE SYT;Lo;0;L;;;;;N;;;;;-A325;YI SYLLABLE SYX;Lo;0;L;;;;;N;;;;;-A326;YI SYLLABLE SY;Lo;0;L;;;;;N;;;;;-A327;YI SYLLABLE SYP;Lo;0;L;;;;;N;;;;;-A328;YI SYLLABLE SYRX;Lo;0;L;;;;;N;;;;;-A329;YI SYLLABLE SYR;Lo;0;L;;;;;N;;;;;-A32A;YI SYLLABLE SSIT;Lo;0;L;;;;;N;;;;;-A32B;YI SYLLABLE SSIX;Lo;0;L;;;;;N;;;;;-A32C;YI SYLLABLE SSI;Lo;0;L;;;;;N;;;;;-A32D;YI SYLLABLE SSIP;Lo;0;L;;;;;N;;;;;-A32E;YI SYLLABLE SSIEX;Lo;0;L;;;;;N;;;;;-A32F;YI SYLLABLE SSIE;Lo;0;L;;;;;N;;;;;-A330;YI SYLLABLE SSIEP;Lo;0;L;;;;;N;;;;;-A331;YI SYLLABLE SSAT;Lo;0;L;;;;;N;;;;;-A332;YI SYLLABLE SSAX;Lo;0;L;;;;;N;;;;;-A333;YI SYLLABLE SSA;Lo;0;L;;;;;N;;;;;-A334;YI SYLLABLE SSAP;Lo;0;L;;;;;N;;;;;-A335;YI SYLLABLE SSOT;Lo;0;L;;;;;N;;;;;-A336;YI SYLLABLE SSOX;Lo;0;L;;;;;N;;;;;-A337;YI SYLLABLE SSO;Lo;0;L;;;;;N;;;;;-A338;YI SYLLABLE SSOP;Lo;0;L;;;;;N;;;;;-A339;YI SYLLABLE SSEX;Lo;0;L;;;;;N;;;;;-A33A;YI SYLLABLE SSE;Lo;0;L;;;;;N;;;;;-A33B;YI SYLLABLE SSEP;Lo;0;L;;;;;N;;;;;-A33C;YI SYLLABLE SSUT;Lo;0;L;;;;;N;;;;;-A33D;YI SYLLABLE SSUX;Lo;0;L;;;;;N;;;;;-A33E;YI SYLLABLE SSU;Lo;0;L;;;;;N;;;;;-A33F;YI SYLLABLE SSUP;Lo;0;L;;;;;N;;;;;-A340;YI SYLLABLE SSYT;Lo;0;L;;;;;N;;;;;-A341;YI SYLLABLE SSYX;Lo;0;L;;;;;N;;;;;-A342;YI SYLLABLE SSY;Lo;0;L;;;;;N;;;;;-A343;YI SYLLABLE SSYP;Lo;0;L;;;;;N;;;;;-A344;YI SYLLABLE SSYRX;Lo;0;L;;;;;N;;;;;-A345;YI SYLLABLE SSYR;Lo;0;L;;;;;N;;;;;-A346;YI SYLLABLE ZHAT;Lo;0;L;;;;;N;;;;;-A347;YI SYLLABLE ZHAX;Lo;0;L;;;;;N;;;;;-A348;YI SYLLABLE ZHA;Lo;0;L;;;;;N;;;;;-A349;YI SYLLABLE ZHAP;Lo;0;L;;;;;N;;;;;-A34A;YI SYLLABLE ZHUOX;Lo;0;L;;;;;N;;;;;-A34B;YI SYLLABLE ZHUO;Lo;0;L;;;;;N;;;;;-A34C;YI SYLLABLE ZHUOP;Lo;0;L;;;;;N;;;;;-A34D;YI SYLLABLE ZHOT;Lo;0;L;;;;;N;;;;;-A34E;YI SYLLABLE ZHOX;Lo;0;L;;;;;N;;;;;-A34F;YI SYLLABLE ZHO;Lo;0;L;;;;;N;;;;;-A350;YI SYLLABLE ZHOP;Lo;0;L;;;;;N;;;;;-A351;YI SYLLABLE ZHET;Lo;0;L;;;;;N;;;;;-A352;YI SYLLABLE ZHEX;Lo;0;L;;;;;N;;;;;-A353;YI SYLLABLE ZHE;Lo;0;L;;;;;N;;;;;-A354;YI SYLLABLE ZHEP;Lo;0;L;;;;;N;;;;;-A355;YI SYLLABLE ZHUT;Lo;0;L;;;;;N;;;;;-A356;YI SYLLABLE ZHUX;Lo;0;L;;;;;N;;;;;-A357;YI SYLLABLE ZHU;Lo;0;L;;;;;N;;;;;-A358;YI SYLLABLE ZHUP;Lo;0;L;;;;;N;;;;;-A359;YI SYLLABLE ZHURX;Lo;0;L;;;;;N;;;;;-A35A;YI SYLLABLE ZHUR;Lo;0;L;;;;;N;;;;;-A35B;YI SYLLABLE ZHYT;Lo;0;L;;;;;N;;;;;-A35C;YI SYLLABLE ZHYX;Lo;0;L;;;;;N;;;;;-A35D;YI SYLLABLE ZHY;Lo;0;L;;;;;N;;;;;-A35E;YI SYLLABLE ZHYP;Lo;0;L;;;;;N;;;;;-A35F;YI SYLLABLE ZHYRX;Lo;0;L;;;;;N;;;;;-A360;YI SYLLABLE ZHYR;Lo;0;L;;;;;N;;;;;-A361;YI SYLLABLE CHAT;Lo;0;L;;;;;N;;;;;-A362;YI SYLLABLE CHAX;Lo;0;L;;;;;N;;;;;-A363;YI SYLLABLE CHA;Lo;0;L;;;;;N;;;;;-A364;YI SYLLABLE CHAP;Lo;0;L;;;;;N;;;;;-A365;YI SYLLABLE CHUOT;Lo;0;L;;;;;N;;;;;-A366;YI SYLLABLE CHUOX;Lo;0;L;;;;;N;;;;;-A367;YI SYLLABLE CHUO;Lo;0;L;;;;;N;;;;;-A368;YI SYLLABLE CHUOP;Lo;0;L;;;;;N;;;;;-A369;YI SYLLABLE CHOT;Lo;0;L;;;;;N;;;;;-A36A;YI SYLLABLE CHOX;Lo;0;L;;;;;N;;;;;-A36B;YI SYLLABLE CHO;Lo;0;L;;;;;N;;;;;-A36C;YI SYLLABLE CHOP;Lo;0;L;;;;;N;;;;;-A36D;YI SYLLABLE CHET;Lo;0;L;;;;;N;;;;;-A36E;YI SYLLABLE CHEX;Lo;0;L;;;;;N;;;;;-A36F;YI SYLLABLE CHE;Lo;0;L;;;;;N;;;;;-A370;YI SYLLABLE CHEP;Lo;0;L;;;;;N;;;;;-A371;YI SYLLABLE CHUX;Lo;0;L;;;;;N;;;;;-A372;YI SYLLABLE CHU;Lo;0;L;;;;;N;;;;;-A373;YI SYLLABLE CHUP;Lo;0;L;;;;;N;;;;;-A374;YI SYLLABLE CHURX;Lo;0;L;;;;;N;;;;;-A375;YI SYLLABLE CHUR;Lo;0;L;;;;;N;;;;;-A376;YI SYLLABLE CHYT;Lo;0;L;;;;;N;;;;;-A377;YI SYLLABLE CHYX;Lo;0;L;;;;;N;;;;;-A378;YI SYLLABLE CHY;Lo;0;L;;;;;N;;;;;-A379;YI SYLLABLE CHYP;Lo;0;L;;;;;N;;;;;-A37A;YI SYLLABLE CHYRX;Lo;0;L;;;;;N;;;;;-A37B;YI SYLLABLE CHYR;Lo;0;L;;;;;N;;;;;-A37C;YI SYLLABLE RRAX;Lo;0;L;;;;;N;;;;;-A37D;YI SYLLABLE RRA;Lo;0;L;;;;;N;;;;;-A37E;YI SYLLABLE RRUOX;Lo;0;L;;;;;N;;;;;-A37F;YI SYLLABLE RRUO;Lo;0;L;;;;;N;;;;;-A380;YI SYLLABLE RROT;Lo;0;L;;;;;N;;;;;-A381;YI SYLLABLE RROX;Lo;0;L;;;;;N;;;;;-A382;YI SYLLABLE RRO;Lo;0;L;;;;;N;;;;;-A383;YI SYLLABLE RROP;Lo;0;L;;;;;N;;;;;-A384;YI SYLLABLE RRET;Lo;0;L;;;;;N;;;;;-A385;YI SYLLABLE RREX;Lo;0;L;;;;;N;;;;;-A386;YI SYLLABLE RRE;Lo;0;L;;;;;N;;;;;-A387;YI SYLLABLE RREP;Lo;0;L;;;;;N;;;;;-A388;YI SYLLABLE RRUT;Lo;0;L;;;;;N;;;;;-A389;YI SYLLABLE RRUX;Lo;0;L;;;;;N;;;;;-A38A;YI SYLLABLE RRU;Lo;0;L;;;;;N;;;;;-A38B;YI SYLLABLE RRUP;Lo;0;L;;;;;N;;;;;-A38C;YI SYLLABLE RRURX;Lo;0;L;;;;;N;;;;;-A38D;YI SYLLABLE RRUR;Lo;0;L;;;;;N;;;;;-A38E;YI SYLLABLE RRYT;Lo;0;L;;;;;N;;;;;-A38F;YI SYLLABLE RRYX;Lo;0;L;;;;;N;;;;;-A390;YI SYLLABLE RRY;Lo;0;L;;;;;N;;;;;-A391;YI SYLLABLE RRYP;Lo;0;L;;;;;N;;;;;-A392;YI SYLLABLE RRYRX;Lo;0;L;;;;;N;;;;;-A393;YI SYLLABLE RRYR;Lo;0;L;;;;;N;;;;;-A394;YI SYLLABLE NRAT;Lo;0;L;;;;;N;;;;;-A395;YI SYLLABLE NRAX;Lo;0;L;;;;;N;;;;;-A396;YI SYLLABLE NRA;Lo;0;L;;;;;N;;;;;-A397;YI SYLLABLE NRAP;Lo;0;L;;;;;N;;;;;-A398;YI SYLLABLE NROX;Lo;0;L;;;;;N;;;;;-A399;YI SYLLABLE NRO;Lo;0;L;;;;;N;;;;;-A39A;YI SYLLABLE NROP;Lo;0;L;;;;;N;;;;;-A39B;YI SYLLABLE NRET;Lo;0;L;;;;;N;;;;;-A39C;YI SYLLABLE NREX;Lo;0;L;;;;;N;;;;;-A39D;YI SYLLABLE NRE;Lo;0;L;;;;;N;;;;;-A39E;YI SYLLABLE NREP;Lo;0;L;;;;;N;;;;;-A39F;YI SYLLABLE NRUT;Lo;0;L;;;;;N;;;;;-A3A0;YI SYLLABLE NRUX;Lo;0;L;;;;;N;;;;;-A3A1;YI SYLLABLE NRU;Lo;0;L;;;;;N;;;;;-A3A2;YI SYLLABLE NRUP;Lo;0;L;;;;;N;;;;;-A3A3;YI SYLLABLE NRURX;Lo;0;L;;;;;N;;;;;-A3A4;YI SYLLABLE NRUR;Lo;0;L;;;;;N;;;;;-A3A5;YI SYLLABLE NRYT;Lo;0;L;;;;;N;;;;;-A3A6;YI SYLLABLE NRYX;Lo;0;L;;;;;N;;;;;-A3A7;YI SYLLABLE NRY;Lo;0;L;;;;;N;;;;;-A3A8;YI SYLLABLE NRYP;Lo;0;L;;;;;N;;;;;-A3A9;YI SYLLABLE NRYRX;Lo;0;L;;;;;N;;;;;-A3AA;YI SYLLABLE NRYR;Lo;0;L;;;;;N;;;;;-A3AB;YI SYLLABLE SHAT;Lo;0;L;;;;;N;;;;;-A3AC;YI SYLLABLE SHAX;Lo;0;L;;;;;N;;;;;-A3AD;YI SYLLABLE SHA;Lo;0;L;;;;;N;;;;;-A3AE;YI SYLLABLE SHAP;Lo;0;L;;;;;N;;;;;-A3AF;YI SYLLABLE SHUOX;Lo;0;L;;;;;N;;;;;-A3B0;YI SYLLABLE SHUO;Lo;0;L;;;;;N;;;;;-A3B1;YI SYLLABLE SHUOP;Lo;0;L;;;;;N;;;;;-A3B2;YI SYLLABLE SHOT;Lo;0;L;;;;;N;;;;;-A3B3;YI SYLLABLE SHOX;Lo;0;L;;;;;N;;;;;-A3B4;YI SYLLABLE SHO;Lo;0;L;;;;;N;;;;;-A3B5;YI SYLLABLE SHOP;Lo;0;L;;;;;N;;;;;-A3B6;YI SYLLABLE SHET;Lo;0;L;;;;;N;;;;;-A3B7;YI SYLLABLE SHEX;Lo;0;L;;;;;N;;;;;-A3B8;YI SYLLABLE SHE;Lo;0;L;;;;;N;;;;;-A3B9;YI SYLLABLE SHEP;Lo;0;L;;;;;N;;;;;-A3BA;YI SYLLABLE SHUT;Lo;0;L;;;;;N;;;;;-A3BB;YI SYLLABLE SHUX;Lo;0;L;;;;;N;;;;;-A3BC;YI SYLLABLE SHU;Lo;0;L;;;;;N;;;;;-A3BD;YI SYLLABLE SHUP;Lo;0;L;;;;;N;;;;;-A3BE;YI SYLLABLE SHURX;Lo;0;L;;;;;N;;;;;-A3BF;YI SYLLABLE SHUR;Lo;0;L;;;;;N;;;;;-A3C0;YI SYLLABLE SHYT;Lo;0;L;;;;;N;;;;;-A3C1;YI SYLLABLE SHYX;Lo;0;L;;;;;N;;;;;-A3C2;YI SYLLABLE SHY;Lo;0;L;;;;;N;;;;;-A3C3;YI SYLLABLE SHYP;Lo;0;L;;;;;N;;;;;-A3C4;YI SYLLABLE SHYRX;Lo;0;L;;;;;N;;;;;-A3C5;YI SYLLABLE SHYR;Lo;0;L;;;;;N;;;;;-A3C6;YI SYLLABLE RAT;Lo;0;L;;;;;N;;;;;-A3C7;YI SYLLABLE RAX;Lo;0;L;;;;;N;;;;;-A3C8;YI SYLLABLE RA;Lo;0;L;;;;;N;;;;;-A3C9;YI SYLLABLE RAP;Lo;0;L;;;;;N;;;;;-A3CA;YI SYLLABLE RUOX;Lo;0;L;;;;;N;;;;;-A3CB;YI SYLLABLE RUO;Lo;0;L;;;;;N;;;;;-A3CC;YI SYLLABLE RUOP;Lo;0;L;;;;;N;;;;;-A3CD;YI SYLLABLE ROT;Lo;0;L;;;;;N;;;;;-A3CE;YI SYLLABLE ROX;Lo;0;L;;;;;N;;;;;-A3CF;YI SYLLABLE RO;Lo;0;L;;;;;N;;;;;-A3D0;YI SYLLABLE ROP;Lo;0;L;;;;;N;;;;;-A3D1;YI SYLLABLE REX;Lo;0;L;;;;;N;;;;;-A3D2;YI SYLLABLE RE;Lo;0;L;;;;;N;;;;;-A3D3;YI SYLLABLE REP;Lo;0;L;;;;;N;;;;;-A3D4;YI SYLLABLE RUT;Lo;0;L;;;;;N;;;;;-A3D5;YI SYLLABLE RUX;Lo;0;L;;;;;N;;;;;-A3D6;YI SYLLABLE RU;Lo;0;L;;;;;N;;;;;-A3D7;YI SYLLABLE RUP;Lo;0;L;;;;;N;;;;;-A3D8;YI SYLLABLE RURX;Lo;0;L;;;;;N;;;;;-A3D9;YI SYLLABLE RUR;Lo;0;L;;;;;N;;;;;-A3DA;YI SYLLABLE RYT;Lo;0;L;;;;;N;;;;;-A3DB;YI SYLLABLE RYX;Lo;0;L;;;;;N;;;;;-A3DC;YI SYLLABLE RY;Lo;0;L;;;;;N;;;;;-A3DD;YI SYLLABLE RYP;Lo;0;L;;;;;N;;;;;-A3DE;YI SYLLABLE RYRX;Lo;0;L;;;;;N;;;;;-A3DF;YI SYLLABLE RYR;Lo;0;L;;;;;N;;;;;-A3E0;YI SYLLABLE JIT;Lo;0;L;;;;;N;;;;;-A3E1;YI SYLLABLE JIX;Lo;0;L;;;;;N;;;;;-A3E2;YI SYLLABLE JI;Lo;0;L;;;;;N;;;;;-A3E3;YI SYLLABLE JIP;Lo;0;L;;;;;N;;;;;-A3E4;YI SYLLABLE JIET;Lo;0;L;;;;;N;;;;;-A3E5;YI SYLLABLE JIEX;Lo;0;L;;;;;N;;;;;-A3E6;YI SYLLABLE JIE;Lo;0;L;;;;;N;;;;;-A3E7;YI SYLLABLE JIEP;Lo;0;L;;;;;N;;;;;-A3E8;YI SYLLABLE JUOT;Lo;0;L;;;;;N;;;;;-A3E9;YI SYLLABLE JUOX;Lo;0;L;;;;;N;;;;;-A3EA;YI SYLLABLE JUO;Lo;0;L;;;;;N;;;;;-A3EB;YI SYLLABLE JUOP;Lo;0;L;;;;;N;;;;;-A3EC;YI SYLLABLE JOT;Lo;0;L;;;;;N;;;;;-A3ED;YI SYLLABLE JOX;Lo;0;L;;;;;N;;;;;-A3EE;YI SYLLABLE JO;Lo;0;L;;;;;N;;;;;-A3EF;YI SYLLABLE JOP;Lo;0;L;;;;;N;;;;;-A3F0;YI SYLLABLE JUT;Lo;0;L;;;;;N;;;;;-A3F1;YI SYLLABLE JUX;Lo;0;L;;;;;N;;;;;-A3F2;YI SYLLABLE JU;Lo;0;L;;;;;N;;;;;-A3F3;YI SYLLABLE JUP;Lo;0;L;;;;;N;;;;;-A3F4;YI SYLLABLE JURX;Lo;0;L;;;;;N;;;;;-A3F5;YI SYLLABLE JUR;Lo;0;L;;;;;N;;;;;-A3F6;YI SYLLABLE JYT;Lo;0;L;;;;;N;;;;;-A3F7;YI SYLLABLE JYX;Lo;0;L;;;;;N;;;;;-A3F8;YI SYLLABLE JY;Lo;0;L;;;;;N;;;;;-A3F9;YI SYLLABLE JYP;Lo;0;L;;;;;N;;;;;-A3FA;YI SYLLABLE JYRX;Lo;0;L;;;;;N;;;;;-A3FB;YI SYLLABLE JYR;Lo;0;L;;;;;N;;;;;-A3FC;YI SYLLABLE QIT;Lo;0;L;;;;;N;;;;;-A3FD;YI SYLLABLE QIX;Lo;0;L;;;;;N;;;;;-A3FE;YI SYLLABLE QI;Lo;0;L;;;;;N;;;;;-A3FF;YI SYLLABLE QIP;Lo;0;L;;;;;N;;;;;-A400;YI SYLLABLE QIET;Lo;0;L;;;;;N;;;;;-A401;YI SYLLABLE QIEX;Lo;0;L;;;;;N;;;;;-A402;YI SYLLABLE QIE;Lo;0;L;;;;;N;;;;;-A403;YI SYLLABLE QIEP;Lo;0;L;;;;;N;;;;;-A404;YI SYLLABLE QUOT;Lo;0;L;;;;;N;;;;;-A405;YI SYLLABLE QUOX;Lo;0;L;;;;;N;;;;;-A406;YI SYLLABLE QUO;Lo;0;L;;;;;N;;;;;-A407;YI SYLLABLE QUOP;Lo;0;L;;;;;N;;;;;-A408;YI SYLLABLE QOT;Lo;0;L;;;;;N;;;;;-A409;YI SYLLABLE QOX;Lo;0;L;;;;;N;;;;;-A40A;YI SYLLABLE QO;Lo;0;L;;;;;N;;;;;-A40B;YI SYLLABLE QOP;Lo;0;L;;;;;N;;;;;-A40C;YI SYLLABLE QUT;Lo;0;L;;;;;N;;;;;-A40D;YI SYLLABLE QUX;Lo;0;L;;;;;N;;;;;-A40E;YI SYLLABLE QU;Lo;0;L;;;;;N;;;;;-A40F;YI SYLLABLE QUP;Lo;0;L;;;;;N;;;;;-A410;YI SYLLABLE QURX;Lo;0;L;;;;;N;;;;;-A411;YI SYLLABLE QUR;Lo;0;L;;;;;N;;;;;-A412;YI SYLLABLE QYT;Lo;0;L;;;;;N;;;;;-A413;YI SYLLABLE QYX;Lo;0;L;;;;;N;;;;;-A414;YI SYLLABLE QY;Lo;0;L;;;;;N;;;;;-A415;YI SYLLABLE QYP;Lo;0;L;;;;;N;;;;;-A416;YI SYLLABLE QYRX;Lo;0;L;;;;;N;;;;;-A417;YI SYLLABLE QYR;Lo;0;L;;;;;N;;;;;-A418;YI SYLLABLE JJIT;Lo;0;L;;;;;N;;;;;-A419;YI SYLLABLE JJIX;Lo;0;L;;;;;N;;;;;-A41A;YI SYLLABLE JJI;Lo;0;L;;;;;N;;;;;-A41B;YI SYLLABLE JJIP;Lo;0;L;;;;;N;;;;;-A41C;YI SYLLABLE JJIET;Lo;0;L;;;;;N;;;;;-A41D;YI SYLLABLE JJIEX;Lo;0;L;;;;;N;;;;;-A41E;YI SYLLABLE JJIE;Lo;0;L;;;;;N;;;;;-A41F;YI SYLLABLE JJIEP;Lo;0;L;;;;;N;;;;;-A420;YI SYLLABLE JJUOX;Lo;0;L;;;;;N;;;;;-A421;YI SYLLABLE JJUO;Lo;0;L;;;;;N;;;;;-A422;YI SYLLABLE JJUOP;Lo;0;L;;;;;N;;;;;-A423;YI SYLLABLE JJOT;Lo;0;L;;;;;N;;;;;-A424;YI SYLLABLE JJOX;Lo;0;L;;;;;N;;;;;-A425;YI SYLLABLE JJO;Lo;0;L;;;;;N;;;;;-A426;YI SYLLABLE JJOP;Lo;0;L;;;;;N;;;;;-A427;YI SYLLABLE JJUT;Lo;0;L;;;;;N;;;;;-A428;YI SYLLABLE JJUX;Lo;0;L;;;;;N;;;;;-A429;YI SYLLABLE JJU;Lo;0;L;;;;;N;;;;;-A42A;YI SYLLABLE JJUP;Lo;0;L;;;;;N;;;;;-A42B;YI SYLLABLE JJURX;Lo;0;L;;;;;N;;;;;-A42C;YI SYLLABLE JJUR;Lo;0;L;;;;;N;;;;;-A42D;YI SYLLABLE JJYT;Lo;0;L;;;;;N;;;;;-A42E;YI SYLLABLE JJYX;Lo;0;L;;;;;N;;;;;-A42F;YI SYLLABLE JJY;Lo;0;L;;;;;N;;;;;-A430;YI SYLLABLE JJYP;Lo;0;L;;;;;N;;;;;-A431;YI SYLLABLE NJIT;Lo;0;L;;;;;N;;;;;-A432;YI SYLLABLE NJIX;Lo;0;L;;;;;N;;;;;-A433;YI SYLLABLE NJI;Lo;0;L;;;;;N;;;;;-A434;YI SYLLABLE NJIP;Lo;0;L;;;;;N;;;;;-A435;YI SYLLABLE NJIET;Lo;0;L;;;;;N;;;;;-A436;YI SYLLABLE NJIEX;Lo;0;L;;;;;N;;;;;-A437;YI SYLLABLE NJIE;Lo;0;L;;;;;N;;;;;-A438;YI SYLLABLE NJIEP;Lo;0;L;;;;;N;;;;;-A439;YI SYLLABLE NJUOX;Lo;0;L;;;;;N;;;;;-A43A;YI SYLLABLE NJUO;Lo;0;L;;;;;N;;;;;-A43B;YI SYLLABLE NJOT;Lo;0;L;;;;;N;;;;;-A43C;YI SYLLABLE NJOX;Lo;0;L;;;;;N;;;;;-A43D;YI SYLLABLE NJO;Lo;0;L;;;;;N;;;;;-A43E;YI SYLLABLE NJOP;Lo;0;L;;;;;N;;;;;-A43F;YI SYLLABLE NJUX;Lo;0;L;;;;;N;;;;;-A440;YI SYLLABLE NJU;Lo;0;L;;;;;N;;;;;-A441;YI SYLLABLE NJUP;Lo;0;L;;;;;N;;;;;-A442;YI SYLLABLE NJURX;Lo;0;L;;;;;N;;;;;-A443;YI SYLLABLE NJUR;Lo;0;L;;;;;N;;;;;-A444;YI SYLLABLE NJYT;Lo;0;L;;;;;N;;;;;-A445;YI SYLLABLE NJYX;Lo;0;L;;;;;N;;;;;-A446;YI SYLLABLE NJY;Lo;0;L;;;;;N;;;;;-A447;YI SYLLABLE NJYP;Lo;0;L;;;;;N;;;;;-A448;YI SYLLABLE NJYRX;Lo;0;L;;;;;N;;;;;-A449;YI SYLLABLE NJYR;Lo;0;L;;;;;N;;;;;-A44A;YI SYLLABLE NYIT;Lo;0;L;;;;;N;;;;;-A44B;YI SYLLABLE NYIX;Lo;0;L;;;;;N;;;;;-A44C;YI SYLLABLE NYI;Lo;0;L;;;;;N;;;;;-A44D;YI SYLLABLE NYIP;Lo;0;L;;;;;N;;;;;-A44E;YI SYLLABLE NYIET;Lo;0;L;;;;;N;;;;;-A44F;YI SYLLABLE NYIEX;Lo;0;L;;;;;N;;;;;-A450;YI SYLLABLE NYIE;Lo;0;L;;;;;N;;;;;-A451;YI SYLLABLE NYIEP;Lo;0;L;;;;;N;;;;;-A452;YI SYLLABLE NYUOX;Lo;0;L;;;;;N;;;;;-A453;YI SYLLABLE NYUO;Lo;0;L;;;;;N;;;;;-A454;YI SYLLABLE NYUOP;Lo;0;L;;;;;N;;;;;-A455;YI SYLLABLE NYOT;Lo;0;L;;;;;N;;;;;-A456;YI SYLLABLE NYOX;Lo;0;L;;;;;N;;;;;-A457;YI SYLLABLE NYO;Lo;0;L;;;;;N;;;;;-A458;YI SYLLABLE NYOP;Lo;0;L;;;;;N;;;;;-A459;YI SYLLABLE NYUT;Lo;0;L;;;;;N;;;;;-A45A;YI SYLLABLE NYUX;Lo;0;L;;;;;N;;;;;-A45B;YI SYLLABLE NYU;Lo;0;L;;;;;N;;;;;-A45C;YI SYLLABLE NYUP;Lo;0;L;;;;;N;;;;;-A45D;YI SYLLABLE XIT;Lo;0;L;;;;;N;;;;;-A45E;YI SYLLABLE XIX;Lo;0;L;;;;;N;;;;;-A45F;YI SYLLABLE XI;Lo;0;L;;;;;N;;;;;-A460;YI SYLLABLE XIP;Lo;0;L;;;;;N;;;;;-A461;YI SYLLABLE XIET;Lo;0;L;;;;;N;;;;;-A462;YI SYLLABLE XIEX;Lo;0;L;;;;;N;;;;;-A463;YI SYLLABLE XIE;Lo;0;L;;;;;N;;;;;-A464;YI SYLLABLE XIEP;Lo;0;L;;;;;N;;;;;-A465;YI SYLLABLE XUOX;Lo;0;L;;;;;N;;;;;-A466;YI SYLLABLE XUO;Lo;0;L;;;;;N;;;;;-A467;YI SYLLABLE XOT;Lo;0;L;;;;;N;;;;;-A468;YI SYLLABLE XOX;Lo;0;L;;;;;N;;;;;-A469;YI SYLLABLE XO;Lo;0;L;;;;;N;;;;;-A46A;YI SYLLABLE XOP;Lo;0;L;;;;;N;;;;;-A46B;YI SYLLABLE XYT;Lo;0;L;;;;;N;;;;;-A46C;YI SYLLABLE XYX;Lo;0;L;;;;;N;;;;;-A46D;YI SYLLABLE XY;Lo;0;L;;;;;N;;;;;-A46E;YI SYLLABLE XYP;Lo;0;L;;;;;N;;;;;-A46F;YI SYLLABLE XYRX;Lo;0;L;;;;;N;;;;;-A470;YI SYLLABLE XYR;Lo;0;L;;;;;N;;;;;-A471;YI SYLLABLE YIT;Lo;0;L;;;;;N;;;;;-A472;YI SYLLABLE YIX;Lo;0;L;;;;;N;;;;;-A473;YI SYLLABLE YI;Lo;0;L;;;;;N;;;;;-A474;YI SYLLABLE YIP;Lo;0;L;;;;;N;;;;;-A475;YI SYLLABLE YIET;Lo;0;L;;;;;N;;;;;-A476;YI SYLLABLE YIEX;Lo;0;L;;;;;N;;;;;-A477;YI SYLLABLE YIE;Lo;0;L;;;;;N;;;;;-A478;YI SYLLABLE YIEP;Lo;0;L;;;;;N;;;;;-A479;YI SYLLABLE YUOT;Lo;0;L;;;;;N;;;;;-A47A;YI SYLLABLE YUOX;Lo;0;L;;;;;N;;;;;-A47B;YI SYLLABLE YUO;Lo;0;L;;;;;N;;;;;-A47C;YI SYLLABLE YUOP;Lo;0;L;;;;;N;;;;;-A47D;YI SYLLABLE YOT;Lo;0;L;;;;;N;;;;;-A47E;YI SYLLABLE YOX;Lo;0;L;;;;;N;;;;;-A47F;YI SYLLABLE YO;Lo;0;L;;;;;N;;;;;-A480;YI SYLLABLE YOP;Lo;0;L;;;;;N;;;;;-A481;YI SYLLABLE YUT;Lo;0;L;;;;;N;;;;;-A482;YI SYLLABLE YUX;Lo;0;L;;;;;N;;;;;-A483;YI SYLLABLE YU;Lo;0;L;;;;;N;;;;;-A484;YI SYLLABLE YUP;Lo;0;L;;;;;N;;;;;-A485;YI SYLLABLE YURX;Lo;0;L;;;;;N;;;;;-A486;YI SYLLABLE YUR;Lo;0;L;;;;;N;;;;;-A487;YI SYLLABLE YYT;Lo;0;L;;;;;N;;;;;-A488;YI SYLLABLE YYX;Lo;0;L;;;;;N;;;;;-A489;YI SYLLABLE YY;Lo;0;L;;;;;N;;;;;-A48A;YI SYLLABLE YYP;Lo;0;L;;;;;N;;;;;-A48B;YI SYLLABLE YYRX;Lo;0;L;;;;;N;;;;;-A48C;YI SYLLABLE YYR;Lo;0;L;;;;;N;;;;;-A490;YI RADICAL QOT;So;0;ON;;;;;N;;;;;-A491;YI RADICAL LI;So;0;ON;;;;;N;;;;;-A492;YI RADICAL KIT;So;0;ON;;;;;N;;;;;-A493;YI RADICAL NYIP;So;0;ON;;;;;N;;;;;-A494;YI RADICAL CYP;So;0;ON;;;;;N;;;;;-A495;YI RADICAL SSI;So;0;ON;;;;;N;;;;;-A496;YI RADICAL GGOP;So;0;ON;;;;;N;;;;;-A497;YI RADICAL GEP;So;0;ON;;;;;N;;;;;-A498;YI RADICAL MI;So;0;ON;;;;;N;;;;;-A499;YI RADICAL HXIT;So;0;ON;;;;;N;;;;;-A49A;YI RADICAL LYR;So;0;ON;;;;;N;;;;;-A49B;YI RADICAL BBUT;So;0;ON;;;;;N;;;;;-A49C;YI RADICAL MOP;So;0;ON;;;;;N;;;;;-A49D;YI RADICAL YO;So;0;ON;;;;;N;;;;;-A49E;YI RADICAL PUT;So;0;ON;;;;;N;;;;;-A49F;YI RADICAL HXUO;So;0;ON;;;;;N;;;;;-A4A0;YI RADICAL TAT;So;0;ON;;;;;N;;;;;-A4A1;YI RADICAL GA;So;0;ON;;;;;N;;;;;-A4A2;YI RADICAL ZUP;So;0;ON;;;;;N;;;;;-A4A3;YI RADICAL CYT;So;0;ON;;;;;N;;;;;-A4A4;YI RADICAL DDUR;So;0;ON;;;;;N;;;;;-A4A5;YI RADICAL BUR;So;0;ON;;;;;N;;;;;-A4A6;YI RADICAL GGUO;So;0;ON;;;;;N;;;;;-A4A7;YI RADICAL NYOP;So;0;ON;;;;;N;;;;;-A4A8;YI RADICAL TU;So;0;ON;;;;;N;;;;;-A4A9;YI RADICAL OP;So;0;ON;;;;;N;;;;;-A4AA;YI RADICAL JJUT;So;0;ON;;;;;N;;;;;-A4AB;YI RADICAL ZOT;So;0;ON;;;;;N;;;;;-A4AC;YI RADICAL PYT;So;0;ON;;;;;N;;;;;-A4AD;YI RADICAL HMO;So;0;ON;;;;;N;;;;;-A4AE;YI RADICAL YIT;So;0;ON;;;;;N;;;;;-A4AF;YI RADICAL VUR;So;0;ON;;;;;N;;;;;-A4B0;YI RADICAL SHY;So;0;ON;;;;;N;;;;;-A4B1;YI RADICAL VEP;So;0;ON;;;;;N;;;;;-A4B2;YI RADICAL ZA;So;0;ON;;;;;N;;;;;-A4B3;YI RADICAL JO;So;0;ON;;;;;N;;;;;-A4B4;YI RADICAL NZUP;So;0;ON;;;;;N;;;;;-A4B5;YI RADICAL JJY;So;0;ON;;;;;N;;;;;-A4B6;YI RADICAL GOT;So;0;ON;;;;;N;;;;;-A4B7;YI RADICAL JJIE;So;0;ON;;;;;N;;;;;-A4B8;YI RADICAL WO;So;0;ON;;;;;N;;;;;-A4B9;YI RADICAL DU;So;0;ON;;;;;N;;;;;-A4BA;YI RADICAL SHUR;So;0;ON;;;;;N;;;;;-A4BB;YI RADICAL LIE;So;0;ON;;;;;N;;;;;-A4BC;YI RADICAL CY;So;0;ON;;;;;N;;;;;-A4BD;YI RADICAL CUOP;So;0;ON;;;;;N;;;;;-A4BE;YI RADICAL CIP;So;0;ON;;;;;N;;;;;-A4BF;YI RADICAL HXOP;So;0;ON;;;;;N;;;;;-A4C0;YI RADICAL SHAT;So;0;ON;;;;;N;;;;;-A4C1;YI RADICAL ZUR;So;0;ON;;;;;N;;;;;-A4C2;YI RADICAL SHOP;So;0;ON;;;;;N;;;;;-A4C3;YI RADICAL CHE;So;0;ON;;;;;N;;;;;-A4C4;YI RADICAL ZZIET;So;0;ON;;;;;N;;;;;-A4C5;YI RADICAL NBIE;So;0;ON;;;;;N;;;;;-A4C6;YI RADICAL KE;So;0;ON;;;;;N;;;;;-A4D0;LISU LETTER BA;Lo;0;L;;;;;N;;;;;-A4D1;LISU LETTER PA;Lo;0;L;;;;;N;;;;;-A4D2;LISU LETTER PHA;Lo;0;L;;;;;N;;;;;-A4D3;LISU LETTER DA;Lo;0;L;;;;;N;;;;;-A4D4;LISU LETTER TA;Lo;0;L;;;;;N;;;;;-A4D5;LISU LETTER THA;Lo;0;L;;;;;N;;;;;-A4D6;LISU LETTER GA;Lo;0;L;;;;;N;;;;;-A4D7;LISU LETTER KA;Lo;0;L;;;;;N;;;;;-A4D8;LISU LETTER KHA;Lo;0;L;;;;;N;;;;;-A4D9;LISU LETTER JA;Lo;0;L;;;;;N;;;;;-A4DA;LISU LETTER CA;Lo;0;L;;;;;N;;;;;-A4DB;LISU LETTER CHA;Lo;0;L;;;;;N;;;;;-A4DC;LISU LETTER DZA;Lo;0;L;;;;;N;;;;;-A4DD;LISU LETTER TSA;Lo;0;L;;;;;N;;;;;-A4DE;LISU LETTER TSHA;Lo;0;L;;;;;N;;;;;-A4DF;LISU LETTER MA;Lo;0;L;;;;;N;;;;;-A4E0;LISU LETTER NA;Lo;0;L;;;;;N;;;;;-A4E1;LISU LETTER LA;Lo;0;L;;;;;N;;;;;-A4E2;LISU LETTER SA;Lo;0;L;;;;;N;;;;;-A4E3;LISU LETTER ZHA;Lo;0;L;;;;;N;;;;;-A4E4;LISU LETTER ZA;Lo;0;L;;;;;N;;;;;-A4E5;LISU LETTER NGA;Lo;0;L;;;;;N;;;;;-A4E6;LISU LETTER HA;Lo;0;L;;;;;N;;;;;-A4E7;LISU LETTER XA;Lo;0;L;;;;;N;;;;;-A4E8;LISU LETTER HHA;Lo;0;L;;;;;N;;;;;-A4E9;LISU LETTER FA;Lo;0;L;;;;;N;;;;;-A4EA;LISU LETTER WA;Lo;0;L;;;;;N;;;;;-A4EB;LISU LETTER SHA;Lo;0;L;;;;;N;;;;;-A4EC;LISU LETTER YA;Lo;0;L;;;;;N;;;;;-A4ED;LISU LETTER GHA;Lo;0;L;;;;;N;;;;;-A4EE;LISU LETTER A;Lo;0;L;;;;;N;;;;;-A4EF;LISU LETTER AE;Lo;0;L;;;;;N;;;;;-A4F0;LISU LETTER E;Lo;0;L;;;;;N;;;;;-A4F1;LISU LETTER EU;Lo;0;L;;;;;N;;;;;-A4F2;LISU LETTER I;Lo;0;L;;;;;N;;;;;-A4F3;LISU LETTER O;Lo;0;L;;;;;N;;;;;-A4F4;LISU LETTER U;Lo;0;L;;;;;N;;;;;-A4F5;LISU LETTER UE;Lo;0;L;;;;;N;;;;;-A4F6;LISU LETTER UH;Lo;0;L;;;;;N;;;;;-A4F7;LISU LETTER OE;Lo;0;L;;;;;N;;;;;-A4F8;LISU LETTER TONE MYA TI;Lm;0;L;;;;;N;;;;;-A4F9;LISU LETTER TONE NA PO;Lm;0;L;;;;;N;;;;;-A4FA;LISU LETTER TONE MYA CYA;Lm;0;L;;;;;N;;;;;-A4FB;LISU LETTER TONE MYA BO;Lm;0;L;;;;;N;;;;;-A4FC;LISU LETTER TONE MYA NA;Lm;0;L;;;;;N;;;;;-A4FD;LISU LETTER TONE MYA JEU;Lm;0;L;;;;;N;;;;;-A4FE;LISU PUNCTUATION COMMA;Po;0;L;;;;;N;;;;;-A4FF;LISU PUNCTUATION FULL STOP;Po;0;L;;;;;N;;;;;-A500;VAI SYLLABLE EE;Lo;0;L;;;;;N;;;;;-A501;VAI SYLLABLE EEN;Lo;0;L;;;;;N;;;;;-A502;VAI SYLLABLE HEE;Lo;0;L;;;;;N;;;;;-A503;VAI SYLLABLE WEE;Lo;0;L;;;;;N;;;;;-A504;VAI SYLLABLE WEEN;Lo;0;L;;;;;N;;;;;-A505;VAI SYLLABLE PEE;Lo;0;L;;;;;N;;;;;-A506;VAI SYLLABLE BHEE;Lo;0;L;;;;;N;;;;;-A507;VAI SYLLABLE BEE;Lo;0;L;;;;;N;;;;;-A508;VAI SYLLABLE MBEE;Lo;0;L;;;;;N;;;;;-A509;VAI SYLLABLE KPEE;Lo;0;L;;;;;N;;;;;-A50A;VAI SYLLABLE MGBEE;Lo;0;L;;;;;N;;;;;-A50B;VAI SYLLABLE GBEE;Lo;0;L;;;;;N;;;;;-A50C;VAI SYLLABLE FEE;Lo;0;L;;;;;N;;;;;-A50D;VAI SYLLABLE VEE;Lo;0;L;;;;;N;;;;;-A50E;VAI SYLLABLE TEE;Lo;0;L;;;;;N;;;;;-A50F;VAI SYLLABLE THEE;Lo;0;L;;;;;N;;;;;-A510;VAI SYLLABLE DHEE;Lo;0;L;;;;;N;;;;;-A511;VAI SYLLABLE DHHEE;Lo;0;L;;;;;N;;;;;-A512;VAI SYLLABLE LEE;Lo;0;L;;;;;N;;;;;-A513;VAI SYLLABLE REE;Lo;0;L;;;;;N;;;;;-A514;VAI SYLLABLE DEE;Lo;0;L;;;;;N;;;;;-A515;VAI SYLLABLE NDEE;Lo;0;L;;;;;N;;;;;-A516;VAI SYLLABLE SEE;Lo;0;L;;;;;N;;;;;-A517;VAI SYLLABLE SHEE;Lo;0;L;;;;;N;;;;;-A518;VAI SYLLABLE ZEE;Lo;0;L;;;;;N;;;;;-A519;VAI SYLLABLE ZHEE;Lo;0;L;;;;;N;;;;;-A51A;VAI SYLLABLE CEE;Lo;0;L;;;;;N;;;;;-A51B;VAI SYLLABLE JEE;Lo;0;L;;;;;N;;;;;-A51C;VAI SYLLABLE NJEE;Lo;0;L;;;;;N;;;;;-A51D;VAI SYLLABLE YEE;Lo;0;L;;;;;N;;;;;-A51E;VAI SYLLABLE KEE;Lo;0;L;;;;;N;;;;;-A51F;VAI SYLLABLE NGGEE;Lo;0;L;;;;;N;;;;;-A520;VAI SYLLABLE GEE;Lo;0;L;;;;;N;;;;;-A521;VAI SYLLABLE MEE;Lo;0;L;;;;;N;;;;;-A522;VAI SYLLABLE NEE;Lo;0;L;;;;;N;;;;;-A523;VAI SYLLABLE NYEE;Lo;0;L;;;;;N;;;;;-A524;VAI SYLLABLE I;Lo;0;L;;;;;N;;;;;-A525;VAI SYLLABLE IN;Lo;0;L;;;;;N;;;;;-A526;VAI SYLLABLE HI;Lo;0;L;;;;;N;;;;;-A527;VAI SYLLABLE HIN;Lo;0;L;;;;;N;;;;;-A528;VAI SYLLABLE WI;Lo;0;L;;;;;N;;;;;-A529;VAI SYLLABLE WIN;Lo;0;L;;;;;N;;;;;-A52A;VAI SYLLABLE PI;Lo;0;L;;;;;N;;;;;-A52B;VAI SYLLABLE BHI;Lo;0;L;;;;;N;;;;;-A52C;VAI SYLLABLE BI;Lo;0;L;;;;;N;;;;;-A52D;VAI SYLLABLE MBI;Lo;0;L;;;;;N;;;;;-A52E;VAI SYLLABLE KPI;Lo;0;L;;;;;N;;;;;-A52F;VAI SYLLABLE MGBI;Lo;0;L;;;;;N;;;;;-A530;VAI SYLLABLE GBI;Lo;0;L;;;;;N;;;;;-A531;VAI SYLLABLE FI;Lo;0;L;;;;;N;;;;;-A532;VAI SYLLABLE VI;Lo;0;L;;;;;N;;;;;-A533;VAI SYLLABLE TI;Lo;0;L;;;;;N;;;;;-A534;VAI SYLLABLE THI;Lo;0;L;;;;;N;;;;;-A535;VAI SYLLABLE DHI;Lo;0;L;;;;;N;;;;;-A536;VAI SYLLABLE DHHI;Lo;0;L;;;;;N;;;;;-A537;VAI SYLLABLE LI;Lo;0;L;;;;;N;;;;;-A538;VAI SYLLABLE RI;Lo;0;L;;;;;N;;;;;-A539;VAI SYLLABLE DI;Lo;0;L;;;;;N;;;;;-A53A;VAI SYLLABLE NDI;Lo;0;L;;;;;N;;;;;-A53B;VAI SYLLABLE SI;Lo;0;L;;;;;N;;;;;-A53C;VAI SYLLABLE SHI;Lo;0;L;;;;;N;;;;;-A53D;VAI SYLLABLE ZI;Lo;0;L;;;;;N;;;;;-A53E;VAI SYLLABLE ZHI;Lo;0;L;;;;;N;;;;;-A53F;VAI SYLLABLE CI;Lo;0;L;;;;;N;;;;;-A540;VAI SYLLABLE JI;Lo;0;L;;;;;N;;;;;-A541;VAI SYLLABLE NJI;Lo;0;L;;;;;N;;;;;-A542;VAI SYLLABLE YI;Lo;0;L;;;;;N;;;;;-A543;VAI SYLLABLE KI;Lo;0;L;;;;;N;;;;;-A544;VAI SYLLABLE NGGI;Lo;0;L;;;;;N;;;;;-A545;VAI SYLLABLE GI;Lo;0;L;;;;;N;;;;;-A546;VAI SYLLABLE MI;Lo;0;L;;;;;N;;;;;-A547;VAI SYLLABLE NI;Lo;0;L;;;;;N;;;;;-A548;VAI SYLLABLE NYI;Lo;0;L;;;;;N;;;;;-A549;VAI SYLLABLE A;Lo;0;L;;;;;N;;;;;-A54A;VAI SYLLABLE AN;Lo;0;L;;;;;N;;;;;-A54B;VAI SYLLABLE NGAN;Lo;0;L;;;;;N;;;;;-A54C;VAI SYLLABLE HA;Lo;0;L;;;;;N;;;;;-A54D;VAI SYLLABLE HAN;Lo;0;L;;;;;N;;;;;-A54E;VAI SYLLABLE WA;Lo;0;L;;;;;N;;;;;-A54F;VAI SYLLABLE WAN;Lo;0;L;;;;;N;;;;;-A550;VAI SYLLABLE PA;Lo;0;L;;;;;N;;;;;-A551;VAI SYLLABLE BHA;Lo;0;L;;;;;N;;;;;-A552;VAI SYLLABLE BA;Lo;0;L;;;;;N;;;;;-A553;VAI SYLLABLE MBA;Lo;0;L;;;;;N;;;;;-A554;VAI SYLLABLE KPA;Lo;0;L;;;;;N;;;;;-A555;VAI SYLLABLE KPAN;Lo;0;L;;;;;N;;;;;-A556;VAI SYLLABLE MGBA;Lo;0;L;;;;;N;;;;;-A557;VAI SYLLABLE GBA;Lo;0;L;;;;;N;;;;;-A558;VAI SYLLABLE FA;Lo;0;L;;;;;N;;;;;-A559;VAI SYLLABLE VA;Lo;0;L;;;;;N;;;;;-A55A;VAI SYLLABLE TA;Lo;0;L;;;;;N;;;;;-A55B;VAI SYLLABLE THA;Lo;0;L;;;;;N;;;;;-A55C;VAI SYLLABLE DHA;Lo;0;L;;;;;N;;;;;-A55D;VAI SYLLABLE DHHA;Lo;0;L;;;;;N;;;;;-A55E;VAI SYLLABLE LA;Lo;0;L;;;;;N;;;;;-A55F;VAI SYLLABLE RA;Lo;0;L;;;;;N;;;;;-A560;VAI SYLLABLE DA;Lo;0;L;;;;;N;;;;;-A561;VAI SYLLABLE NDA;Lo;0;L;;;;;N;;;;;-A562;VAI SYLLABLE SA;Lo;0;L;;;;;N;;;;;-A563;VAI SYLLABLE SHA;Lo;0;L;;;;;N;;;;;-A564;VAI SYLLABLE ZA;Lo;0;L;;;;;N;;;;;-A565;VAI SYLLABLE ZHA;Lo;0;L;;;;;N;;;;;-A566;VAI SYLLABLE CA;Lo;0;L;;;;;N;;;;;-A567;VAI SYLLABLE JA;Lo;0;L;;;;;N;;;;;-A568;VAI SYLLABLE NJA;Lo;0;L;;;;;N;;;;;-A569;VAI SYLLABLE YA;Lo;0;L;;;;;N;;;;;-A56A;VAI SYLLABLE KA;Lo;0;L;;;;;N;;;;;-A56B;VAI SYLLABLE KAN;Lo;0;L;;;;;N;;;;;-A56C;VAI SYLLABLE NGGA;Lo;0;L;;;;;N;;;;;-A56D;VAI SYLLABLE GA;Lo;0;L;;;;;N;;;;;-A56E;VAI SYLLABLE MA;Lo;0;L;;;;;N;;;;;-A56F;VAI SYLLABLE NA;Lo;0;L;;;;;N;;;;;-A570;VAI SYLLABLE NYA;Lo;0;L;;;;;N;;;;;-A571;VAI SYLLABLE OO;Lo;0;L;;;;;N;;;;;-A572;VAI SYLLABLE OON;Lo;0;L;;;;;N;;;;;-A573;VAI SYLLABLE HOO;Lo;0;L;;;;;N;;;;;-A574;VAI SYLLABLE WOO;Lo;0;L;;;;;N;;;;;-A575;VAI SYLLABLE WOON;Lo;0;L;;;;;N;;;;;-A576;VAI SYLLABLE POO;Lo;0;L;;;;;N;;;;;-A577;VAI SYLLABLE BHOO;Lo;0;L;;;;;N;;;;;-A578;VAI SYLLABLE BOO;Lo;0;L;;;;;N;;;;;-A579;VAI SYLLABLE MBOO;Lo;0;L;;;;;N;;;;;-A57A;VAI SYLLABLE KPOO;Lo;0;L;;;;;N;;;;;-A57B;VAI SYLLABLE MGBOO;Lo;0;L;;;;;N;;;;;-A57C;VAI SYLLABLE GBOO;Lo;0;L;;;;;N;;;;;-A57D;VAI SYLLABLE FOO;Lo;0;L;;;;;N;;;;;-A57E;VAI SYLLABLE VOO;Lo;0;L;;;;;N;;;;;-A57F;VAI SYLLABLE TOO;Lo;0;L;;;;;N;;;;;-A580;VAI SYLLABLE THOO;Lo;0;L;;;;;N;;;;;-A581;VAI SYLLABLE DHOO;Lo;0;L;;;;;N;;;;;-A582;VAI SYLLABLE DHHOO;Lo;0;L;;;;;N;;;;;-A583;VAI SYLLABLE LOO;Lo;0;L;;;;;N;;;;;-A584;VAI SYLLABLE ROO;Lo;0;L;;;;;N;;;;;-A585;VAI SYLLABLE DOO;Lo;0;L;;;;;N;;;;;-A586;VAI SYLLABLE NDOO;Lo;0;L;;;;;N;;;;;-A587;VAI SYLLABLE SOO;Lo;0;L;;;;;N;;;;;-A588;VAI SYLLABLE SHOO;Lo;0;L;;;;;N;;;;;-A589;VAI SYLLABLE ZOO;Lo;0;L;;;;;N;;;;;-A58A;VAI SYLLABLE ZHOO;Lo;0;L;;;;;N;;;;;-A58B;VAI SYLLABLE COO;Lo;0;L;;;;;N;;;;;-A58C;VAI SYLLABLE JOO;Lo;0;L;;;;;N;;;;;-A58D;VAI SYLLABLE NJOO;Lo;0;L;;;;;N;;;;;-A58E;VAI SYLLABLE YOO;Lo;0;L;;;;;N;;;;;-A58F;VAI SYLLABLE KOO;Lo;0;L;;;;;N;;;;;-A590;VAI SYLLABLE NGGOO;Lo;0;L;;;;;N;;;;;-A591;VAI SYLLABLE GOO;Lo;0;L;;;;;N;;;;;-A592;VAI SYLLABLE MOO;Lo;0;L;;;;;N;;;;;-A593;VAI SYLLABLE NOO;Lo;0;L;;;;;N;;;;;-A594;VAI SYLLABLE NYOO;Lo;0;L;;;;;N;;;;;-A595;VAI SYLLABLE U;Lo;0;L;;;;;N;;;;;-A596;VAI SYLLABLE UN;Lo;0;L;;;;;N;;;;;-A597;VAI SYLLABLE HU;Lo;0;L;;;;;N;;;;;-A598;VAI SYLLABLE HUN;Lo;0;L;;;;;N;;;;;-A599;VAI SYLLABLE WU;Lo;0;L;;;;;N;;;;;-A59A;VAI SYLLABLE WUN;Lo;0;L;;;;;N;;;;;-A59B;VAI SYLLABLE PU;Lo;0;L;;;;;N;;;;;-A59C;VAI SYLLABLE BHU;Lo;0;L;;;;;N;;;;;-A59D;VAI SYLLABLE BU;Lo;0;L;;;;;N;;;;;-A59E;VAI SYLLABLE MBU;Lo;0;L;;;;;N;;;;;-A59F;VAI SYLLABLE KPU;Lo;0;L;;;;;N;;;;;-A5A0;VAI SYLLABLE MGBU;Lo;0;L;;;;;N;;;;;-A5A1;VAI SYLLABLE GBU;Lo;0;L;;;;;N;;;;;-A5A2;VAI SYLLABLE FU;Lo;0;L;;;;;N;;;;;-A5A3;VAI SYLLABLE VU;Lo;0;L;;;;;N;;;;;-A5A4;VAI SYLLABLE TU;Lo;0;L;;;;;N;;;;;-A5A5;VAI SYLLABLE THU;Lo;0;L;;;;;N;;;;;-A5A6;VAI SYLLABLE DHU;Lo;0;L;;;;;N;;;;;-A5A7;VAI SYLLABLE DHHU;Lo;0;L;;;;;N;;;;;-A5A8;VAI SYLLABLE LU;Lo;0;L;;;;;N;;;;;-A5A9;VAI SYLLABLE RU;Lo;0;L;;;;;N;;;;;-A5AA;VAI SYLLABLE DU;Lo;0;L;;;;;N;;;;;-A5AB;VAI SYLLABLE NDU;Lo;0;L;;;;;N;;;;;-A5AC;VAI SYLLABLE SU;Lo;0;L;;;;;N;;;;;-A5AD;VAI SYLLABLE SHU;Lo;0;L;;;;;N;;;;;-A5AE;VAI SYLLABLE ZU;Lo;0;L;;;;;N;;;;;-A5AF;VAI SYLLABLE ZHU;Lo;0;L;;;;;N;;;;;-A5B0;VAI SYLLABLE CU;Lo;0;L;;;;;N;;;;;-A5B1;VAI SYLLABLE JU;Lo;0;L;;;;;N;;;;;-A5B2;VAI SYLLABLE NJU;Lo;0;L;;;;;N;;;;;-A5B3;VAI SYLLABLE YU;Lo;0;L;;;;;N;;;;;-A5B4;VAI SYLLABLE KU;Lo;0;L;;;;;N;;;;;-A5B5;VAI SYLLABLE NGGU;Lo;0;L;;;;;N;;;;;-A5B6;VAI SYLLABLE GU;Lo;0;L;;;;;N;;;;;-A5B7;VAI SYLLABLE MU;Lo;0;L;;;;;N;;;;;-A5B8;VAI SYLLABLE NU;Lo;0;L;;;;;N;;;;;-A5B9;VAI SYLLABLE NYU;Lo;0;L;;;;;N;;;;;-A5BA;VAI SYLLABLE O;Lo;0;L;;;;;N;;;;;-A5BB;VAI SYLLABLE ON;Lo;0;L;;;;;N;;;;;-A5BC;VAI SYLLABLE NGON;Lo;0;L;;;;;N;;;;;-A5BD;VAI SYLLABLE HO;Lo;0;L;;;;;N;;;;;-A5BE;VAI SYLLABLE HON;Lo;0;L;;;;;N;;;;;-A5BF;VAI SYLLABLE WO;Lo;0;L;;;;;N;;;;;-A5C0;VAI SYLLABLE WON;Lo;0;L;;;;;N;;;;;-A5C1;VAI SYLLABLE PO;Lo;0;L;;;;;N;;;;;-A5C2;VAI SYLLABLE BHO;Lo;0;L;;;;;N;;;;;-A5C3;VAI SYLLABLE BO;Lo;0;L;;;;;N;;;;;-A5C4;VAI SYLLABLE MBO;Lo;0;L;;;;;N;;;;;-A5C5;VAI SYLLABLE KPO;Lo;0;L;;;;;N;;;;;-A5C6;VAI SYLLABLE MGBO;Lo;0;L;;;;;N;;;;;-A5C7;VAI SYLLABLE GBO;Lo;0;L;;;;;N;;;;;-A5C8;VAI SYLLABLE GBON;Lo;0;L;;;;;N;;;;;-A5C9;VAI SYLLABLE FO;Lo;0;L;;;;;N;;;;;-A5CA;VAI SYLLABLE VO;Lo;0;L;;;;;N;;;;;-A5CB;VAI SYLLABLE TO;Lo;0;L;;;;;N;;;;;-A5CC;VAI SYLLABLE THO;Lo;0;L;;;;;N;;;;;-A5CD;VAI SYLLABLE DHO;Lo;0;L;;;;;N;;;;;-A5CE;VAI SYLLABLE DHHO;Lo;0;L;;;;;N;;;;;-A5CF;VAI SYLLABLE LO;Lo;0;L;;;;;N;;;;;-A5D0;VAI SYLLABLE RO;Lo;0;L;;;;;N;;;;;-A5D1;VAI SYLLABLE DO;Lo;0;L;;;;;N;;;;;-A5D2;VAI SYLLABLE NDO;Lo;0;L;;;;;N;;;;;-A5D3;VAI SYLLABLE SO;Lo;0;L;;;;;N;;;;;-A5D4;VAI SYLLABLE SHO;Lo;0;L;;;;;N;;;;;-A5D5;VAI SYLLABLE ZO;Lo;0;L;;;;;N;;;;;-A5D6;VAI SYLLABLE ZHO;Lo;0;L;;;;;N;;;;;-A5D7;VAI SYLLABLE CO;Lo;0;L;;;;;N;;;;;-A5D8;VAI SYLLABLE JO;Lo;0;L;;;;;N;;;;;-A5D9;VAI SYLLABLE NJO;Lo;0;L;;;;;N;;;;;-A5DA;VAI SYLLABLE YO;Lo;0;L;;;;;N;;;;;-A5DB;VAI SYLLABLE KO;Lo;0;L;;;;;N;;;;;-A5DC;VAI SYLLABLE NGGO;Lo;0;L;;;;;N;;;;;-A5DD;VAI SYLLABLE GO;Lo;0;L;;;;;N;;;;;-A5DE;VAI SYLLABLE MO;Lo;0;L;;;;;N;;;;;-A5DF;VAI SYLLABLE NO;Lo;0;L;;;;;N;;;;;-A5E0;VAI SYLLABLE NYO;Lo;0;L;;;;;N;;;;;-A5E1;VAI SYLLABLE E;Lo;0;L;;;;;N;;;;;-A5E2;VAI SYLLABLE EN;Lo;0;L;;;;;N;;;;;-A5E3;VAI SYLLABLE NGEN;Lo;0;L;;;;;N;;;;;-A5E4;VAI SYLLABLE HE;Lo;0;L;;;;;N;;;;;-A5E5;VAI SYLLABLE HEN;Lo;0;L;;;;;N;;;;;-A5E6;VAI SYLLABLE WE;Lo;0;L;;;;;N;;;;;-A5E7;VAI SYLLABLE WEN;Lo;0;L;;;;;N;;;;;-A5E8;VAI SYLLABLE PE;Lo;0;L;;;;;N;;;;;-A5E9;VAI SYLLABLE BHE;Lo;0;L;;;;;N;;;;;-A5EA;VAI SYLLABLE BE;Lo;0;L;;;;;N;;;;;-A5EB;VAI SYLLABLE MBE;Lo;0;L;;;;;N;;;;;-A5EC;VAI SYLLABLE KPE;Lo;0;L;;;;;N;;;;;-A5ED;VAI SYLLABLE KPEN;Lo;0;L;;;;;N;;;;;-A5EE;VAI SYLLABLE MGBE;Lo;0;L;;;;;N;;;;;-A5EF;VAI SYLLABLE GBE;Lo;0;L;;;;;N;;;;;-A5F0;VAI SYLLABLE GBEN;Lo;0;L;;;;;N;;;;;-A5F1;VAI SYLLABLE FE;Lo;0;L;;;;;N;;;;;-A5F2;VAI SYLLABLE VE;Lo;0;L;;;;;N;;;;;-A5F3;VAI SYLLABLE TE;Lo;0;L;;;;;N;;;;;-A5F4;VAI SYLLABLE THE;Lo;0;L;;;;;N;;;;;-A5F5;VAI SYLLABLE DHE;Lo;0;L;;;;;N;;;;;-A5F6;VAI SYLLABLE DHHE;Lo;0;L;;;;;N;;;;;-A5F7;VAI SYLLABLE LE;Lo;0;L;;;;;N;;;;;-A5F8;VAI SYLLABLE RE;Lo;0;L;;;;;N;;;;;-A5F9;VAI SYLLABLE DE;Lo;0;L;;;;;N;;;;;-A5FA;VAI SYLLABLE NDE;Lo;0;L;;;;;N;;;;;-A5FB;VAI SYLLABLE SE;Lo;0;L;;;;;N;;;;;-A5FC;VAI SYLLABLE SHE;Lo;0;L;;;;;N;;;;;-A5FD;VAI SYLLABLE ZE;Lo;0;L;;;;;N;;;;;-A5FE;VAI SYLLABLE ZHE;Lo;0;L;;;;;N;;;;;-A5FF;VAI SYLLABLE CE;Lo;0;L;;;;;N;;;;;-A600;VAI SYLLABLE JE;Lo;0;L;;;;;N;;;;;-A601;VAI SYLLABLE NJE;Lo;0;L;;;;;N;;;;;-A602;VAI SYLLABLE YE;Lo;0;L;;;;;N;;;;;-A603;VAI SYLLABLE KE;Lo;0;L;;;;;N;;;;;-A604;VAI SYLLABLE NGGE;Lo;0;L;;;;;N;;;;;-A605;VAI SYLLABLE NGGEN;Lo;0;L;;;;;N;;;;;-A606;VAI SYLLABLE GE;Lo;0;L;;;;;N;;;;;-A607;VAI SYLLABLE GEN;Lo;0;L;;;;;N;;;;;-A608;VAI SYLLABLE ME;Lo;0;L;;;;;N;;;;;-A609;VAI SYLLABLE NE;Lo;0;L;;;;;N;;;;;-A60A;VAI SYLLABLE NYE;Lo;0;L;;;;;N;;;;;-A60B;VAI SYLLABLE NG;Lo;0;L;;;;;N;;;;;-A60C;VAI SYLLABLE LENGTHENER;Lm;0;L;;;;;N;;;;;-A60D;VAI COMMA;Po;0;ON;;;;;N;;;;;-A60E;VAI FULL STOP;Po;0;ON;;;;;N;;;;;-A60F;VAI QUESTION MARK;Po;0;ON;;;;;N;;;;;-A610;VAI SYLLABLE NDOLE FA;Lo;0;L;;;;;N;;;;;-A611;VAI SYLLABLE NDOLE KA;Lo;0;L;;;;;N;;;;;-A612;VAI SYLLABLE NDOLE SOO;Lo;0;L;;;;;N;;;;;-A613;VAI SYMBOL FEENG;Lo;0;L;;;;;N;;;;;-A614;VAI SYMBOL KEENG;Lo;0;L;;;;;N;;;;;-A615;VAI SYMBOL TING;Lo;0;L;;;;;N;;;;;-A616;VAI SYMBOL NII;Lo;0;L;;;;;N;;;;;-A617;VAI SYMBOL BANG;Lo;0;L;;;;;N;;;;;-A618;VAI SYMBOL FAA;Lo;0;L;;;;;N;;;;;-A619;VAI SYMBOL TAA;Lo;0;L;;;;;N;;;;;-A61A;VAI SYMBOL DANG;Lo;0;L;;;;;N;;;;;-A61B;VAI SYMBOL DOONG;Lo;0;L;;;;;N;;;;;-A61C;VAI SYMBOL KUNG;Lo;0;L;;;;;N;;;;;-A61D;VAI SYMBOL TONG;Lo;0;L;;;;;N;;;;;-A61E;VAI SYMBOL DO-O;Lo;0;L;;;;;N;;;;;-A61F;VAI SYMBOL JONG;Lo;0;L;;;;;N;;;;;-A620;VAI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-A621;VAI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-A622;VAI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-A623;VAI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-A624;VAI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-A625;VAI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-A626;VAI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-A627;VAI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-A628;VAI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-A629;VAI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-A62A;VAI SYLLABLE NDOLE MA;Lo;0;L;;;;;N;;;;;-A62B;VAI SYLLABLE NDOLE DO;Lo;0;L;;;;;N;;;;;-A640;CYRILLIC CAPITAL LETTER ZEMLYA;Lu;0;L;;;;;N;;;;A641;-A641;CYRILLIC SMALL LETTER ZEMLYA;Ll;0;L;;;;;N;;;A640;;A640-A642;CYRILLIC CAPITAL LETTER DZELO;Lu;0;L;;;;;N;;;;A643;-A643;CYRILLIC SMALL LETTER DZELO;Ll;0;L;;;;;N;;;A642;;A642-A644;CYRILLIC CAPITAL LETTER REVERSED DZE;Lu;0;L;;;;;N;;;;A645;-A645;CYRILLIC SMALL LETTER REVERSED DZE;Ll;0;L;;;;;N;;;A644;;A644-A646;CYRILLIC CAPITAL LETTER IOTA;Lu;0;L;;;;;N;;;;A647;-A647;CYRILLIC SMALL LETTER IOTA;Ll;0;L;;;;;N;;;A646;;A646-A648;CYRILLIC CAPITAL LETTER DJERV;Lu;0;L;;;;;N;;;;A649;-A649;CYRILLIC SMALL LETTER DJERV;Ll;0;L;;;;;N;;;A648;;A648-A64A;CYRILLIC CAPITAL LETTER MONOGRAPH UK;Lu;0;L;;;;;N;;;;A64B;-A64B;CYRILLIC SMALL LETTER MONOGRAPH UK;Ll;0;L;;;;;N;;;A64A;;A64A-A64C;CYRILLIC CAPITAL LETTER BROAD OMEGA;Lu;0;L;;;;;N;;;;A64D;-A64D;CYRILLIC SMALL LETTER BROAD OMEGA;Ll;0;L;;;;;N;;;A64C;;A64C-A64E;CYRILLIC CAPITAL LETTER NEUTRAL YER;Lu;0;L;;;;;N;;;;A64F;-A64F;CYRILLIC SMALL LETTER NEUTRAL YER;Ll;0;L;;;;;N;;;A64E;;A64E-A650;CYRILLIC CAPITAL LETTER YERU WITH BACK YER;Lu;0;L;;;;;N;;;;A651;-A651;CYRILLIC SMALL LETTER YERU WITH BACK YER;Ll;0;L;;;;;N;;;A650;;A650-A652;CYRILLIC CAPITAL LETTER IOTIFIED YAT;Lu;0;L;;;;;N;;;;A653;-A653;CYRILLIC SMALL LETTER IOTIFIED YAT;Ll;0;L;;;;;N;;;A652;;A652-A654;CYRILLIC CAPITAL LETTER REVERSED YU;Lu;0;L;;;;;N;;;;A655;-A655;CYRILLIC SMALL LETTER REVERSED YU;Ll;0;L;;;;;N;;;A654;;A654-A656;CYRILLIC CAPITAL LETTER IOTIFIED A;Lu;0;L;;;;;N;;;;A657;-A657;CYRILLIC SMALL LETTER IOTIFIED A;Ll;0;L;;;;;N;;;A656;;A656-A658;CYRILLIC CAPITAL LETTER CLOSED LITTLE YUS;Lu;0;L;;;;;N;;;;A659;-A659;CYRILLIC SMALL LETTER CLOSED LITTLE YUS;Ll;0;L;;;;;N;;;A658;;A658-A65A;CYRILLIC CAPITAL LETTER BLENDED YUS;Lu;0;L;;;;;N;;;;A65B;-A65B;CYRILLIC SMALL LETTER BLENDED YUS;Ll;0;L;;;;;N;;;A65A;;A65A-A65C;CYRILLIC CAPITAL LETTER IOTIFIED CLOSED LITTLE YUS;Lu;0;L;;;;;N;;;;A65D;-A65D;CYRILLIC SMALL LETTER IOTIFIED CLOSED LITTLE YUS;Ll;0;L;;;;;N;;;A65C;;A65C-A65E;CYRILLIC CAPITAL LETTER YN;Lu;0;L;;;;;N;;;;A65F;-A65F;CYRILLIC SMALL LETTER YN;Ll;0;L;;;;;N;;;A65E;;A65E-A660;CYRILLIC CAPITAL LETTER REVERSED TSE;Lu;0;L;;;;;N;;;;A661;-A661;CYRILLIC SMALL LETTER REVERSED TSE;Ll;0;L;;;;;N;;;A660;;A660-A662;CYRILLIC CAPITAL LETTER SOFT DE;Lu;0;L;;;;;N;;;;A663;-A663;CYRILLIC SMALL LETTER SOFT DE;Ll;0;L;;;;;N;;;A662;;A662-A664;CYRILLIC CAPITAL LETTER SOFT EL;Lu;0;L;;;;;N;;;;A665;-A665;CYRILLIC SMALL LETTER SOFT EL;Ll;0;L;;;;;N;;;A664;;A664-A666;CYRILLIC CAPITAL LETTER SOFT EM;Lu;0;L;;;;;N;;;;A667;-A667;CYRILLIC SMALL LETTER SOFT EM;Ll;0;L;;;;;N;;;A666;;A666-A668;CYRILLIC CAPITAL LETTER MONOCULAR O;Lu;0;L;;;;;N;;;;A669;-A669;CYRILLIC SMALL LETTER MONOCULAR O;Ll;0;L;;;;;N;;;A668;;A668-A66A;CYRILLIC CAPITAL LETTER BINOCULAR O;Lu;0;L;;;;;N;;;;A66B;-A66B;CYRILLIC SMALL LETTER BINOCULAR O;Ll;0;L;;;;;N;;;A66A;;A66A-A66C;CYRILLIC CAPITAL LETTER DOUBLE MONOCULAR O;Lu;0;L;;;;;N;;;;A66D;-A66D;CYRILLIC SMALL LETTER DOUBLE MONOCULAR O;Ll;0;L;;;;;N;;;A66C;;A66C-A66E;CYRILLIC LETTER MULTIOCULAR O;Lo;0;L;;;;;N;;;;;-A66F;COMBINING CYRILLIC VZMET;Mn;230;NSM;;;;;N;;;;;-A670;COMBINING CYRILLIC TEN MILLIONS SIGN;Me;0;NSM;;;;;N;;;;;-A671;COMBINING CYRILLIC HUNDRED MILLIONS SIGN;Me;0;NSM;;;;;N;;;;;-A672;COMBINING CYRILLIC THOUSAND MILLIONS SIGN;Me;0;NSM;;;;;N;;;;;-A673;SLAVONIC ASTERISK;Po;0;ON;;;;;N;;;;;-A674;COMBINING CYRILLIC LETTER UKRAINIAN IE;Mn;230;NSM;;;;;N;;;;;-A675;COMBINING CYRILLIC LETTER I;Mn;230;NSM;;;;;N;;;;;-A676;COMBINING CYRILLIC LETTER YI;Mn;230;NSM;;;;;N;;;;;-A677;COMBINING CYRILLIC LETTER U;Mn;230;NSM;;;;;N;;;;;-A678;COMBINING CYRILLIC LETTER HARD SIGN;Mn;230;NSM;;;;;N;;;;;-A679;COMBINING CYRILLIC LETTER YERU;Mn;230;NSM;;;;;N;;;;;-A67A;COMBINING CYRILLIC LETTER SOFT SIGN;Mn;230;NSM;;;;;N;;;;;-A67B;COMBINING CYRILLIC LETTER OMEGA;Mn;230;NSM;;;;;N;;;;;-A67C;COMBINING CYRILLIC KAVYKA;Mn;230;NSM;;;;;N;;;;;-A67D;COMBINING CYRILLIC PAYEROK;Mn;230;NSM;;;;;N;;;;;-A67E;CYRILLIC KAVYKA;Po;0;ON;;;;;N;;;;;-A67F;CYRILLIC PAYEROK;Lm;0;ON;;;;;N;;;;;-A680;CYRILLIC CAPITAL LETTER DWE;Lu;0;L;;;;;N;;;;A681;-A681;CYRILLIC SMALL LETTER DWE;Ll;0;L;;;;;N;;;A680;;A680-A682;CYRILLIC CAPITAL LETTER DZWE;Lu;0;L;;;;;N;;;;A683;-A683;CYRILLIC SMALL LETTER DZWE;Ll;0;L;;;;;N;;;A682;;A682-A684;CYRILLIC CAPITAL LETTER ZHWE;Lu;0;L;;;;;N;;;;A685;-A685;CYRILLIC SMALL LETTER ZHWE;Ll;0;L;;;;;N;;;A684;;A684-A686;CYRILLIC CAPITAL LETTER CCHE;Lu;0;L;;;;;N;;;;A687;-A687;CYRILLIC SMALL LETTER CCHE;Ll;0;L;;;;;N;;;A686;;A686-A688;CYRILLIC CAPITAL LETTER DZZE;Lu;0;L;;;;;N;;;;A689;-A689;CYRILLIC SMALL LETTER DZZE;Ll;0;L;;;;;N;;;A688;;A688-A68A;CYRILLIC CAPITAL LETTER TE WITH MIDDLE HOOK;Lu;0;L;;;;;N;;;;A68B;-A68B;CYRILLIC SMALL LETTER TE WITH MIDDLE HOOK;Ll;0;L;;;;;N;;;A68A;;A68A-A68C;CYRILLIC CAPITAL LETTER TWE;Lu;0;L;;;;;N;;;;A68D;-A68D;CYRILLIC SMALL LETTER TWE;Ll;0;L;;;;;N;;;A68C;;A68C-A68E;CYRILLIC CAPITAL LETTER TSWE;Lu;0;L;;;;;N;;;;A68F;-A68F;CYRILLIC SMALL LETTER TSWE;Ll;0;L;;;;;N;;;A68E;;A68E-A690;CYRILLIC CAPITAL LETTER TSSE;Lu;0;L;;;;;N;;;;A691;-A691;CYRILLIC SMALL LETTER TSSE;Ll;0;L;;;;;N;;;A690;;A690-A692;CYRILLIC CAPITAL LETTER TCHE;Lu;0;L;;;;;N;;;;A693;-A693;CYRILLIC SMALL LETTER TCHE;Ll;0;L;;;;;N;;;A692;;A692-A694;CYRILLIC CAPITAL LETTER HWE;Lu;0;L;;;;;N;;;;A695;-A695;CYRILLIC SMALL LETTER HWE;Ll;0;L;;;;;N;;;A694;;A694-A696;CYRILLIC CAPITAL LETTER SHWE;Lu;0;L;;;;;N;;;;A697;-A697;CYRILLIC SMALL LETTER SHWE;Ll;0;L;;;;;N;;;A696;;A696-A698;CYRILLIC CAPITAL LETTER DOUBLE O;Lu;0;L;;;;;N;;;;A699;-A699;CYRILLIC SMALL LETTER DOUBLE O;Ll;0;L;;;;;N;;;A698;;A698-A69A;CYRILLIC CAPITAL LETTER CROSSED O;Lu;0;L;;;;;N;;;;A69B;-A69B;CYRILLIC SMALL LETTER CROSSED O;Ll;0;L;;;;;N;;;A69A;;A69A-A69C;MODIFIER LETTER CYRILLIC HARD SIGN;Lm;0;L;<super> 044A;;;;N;;;;;-A69D;MODIFIER LETTER CYRILLIC SOFT SIGN;Lm;0;L;<super> 044C;;;;N;;;;;-A69F;COMBINING CYRILLIC LETTER IOTIFIED E;Mn;230;NSM;;;;;N;;;;;-A6A0;BAMUM LETTER A;Lo;0;L;;;;;N;;;;;-A6A1;BAMUM LETTER KA;Lo;0;L;;;;;N;;;;;-A6A2;BAMUM LETTER U;Lo;0;L;;;;;N;;;;;-A6A3;BAMUM LETTER KU;Lo;0;L;;;;;N;;;;;-A6A4;BAMUM LETTER EE;Lo;0;L;;;;;N;;;;;-A6A5;BAMUM LETTER REE;Lo;0;L;;;;;N;;;;;-A6A6;BAMUM LETTER TAE;Lo;0;L;;;;;N;;;;;-A6A7;BAMUM LETTER O;Lo;0;L;;;;;N;;;;;-A6A8;BAMUM LETTER NYI;Lo;0;L;;;;;N;;;;;-A6A9;BAMUM LETTER I;Lo;0;L;;;;;N;;;;;-A6AA;BAMUM LETTER LA;Lo;0;L;;;;;N;;;;;-A6AB;BAMUM LETTER PA;Lo;0;L;;;;;N;;;;;-A6AC;BAMUM LETTER RII;Lo;0;L;;;;;N;;;;;-A6AD;BAMUM LETTER RIEE;Lo;0;L;;;;;N;;;;;-A6AE;BAMUM LETTER LEEEE;Lo;0;L;;;;;N;;;;;-A6AF;BAMUM LETTER MEEEE;Lo;0;L;;;;;N;;;;;-A6B0;BAMUM LETTER TAA;Lo;0;L;;;;;N;;;;;-A6B1;BAMUM LETTER NDAA;Lo;0;L;;;;;N;;;;;-A6B2;BAMUM LETTER NJAEM;Lo;0;L;;;;;N;;;;;-A6B3;BAMUM LETTER M;Lo;0;L;;;;;N;;;;;-A6B4;BAMUM LETTER SUU;Lo;0;L;;;;;N;;;;;-A6B5;BAMUM LETTER MU;Lo;0;L;;;;;N;;;;;-A6B6;BAMUM LETTER SHII;Lo;0;L;;;;;N;;;;;-A6B7;BAMUM LETTER SI;Lo;0;L;;;;;N;;;;;-A6B8;BAMUM LETTER SHEUX;Lo;0;L;;;;;N;;;;;-A6B9;BAMUM LETTER SEUX;Lo;0;L;;;;;N;;;;;-A6BA;BAMUM LETTER KYEE;Lo;0;L;;;;;N;;;;;-A6BB;BAMUM LETTER KET;Lo;0;L;;;;;N;;;;;-A6BC;BAMUM LETTER NUAE;Lo;0;L;;;;;N;;;;;-A6BD;BAMUM LETTER NU;Lo;0;L;;;;;N;;;;;-A6BE;BAMUM LETTER NJUAE;Lo;0;L;;;;;N;;;;;-A6BF;BAMUM LETTER YOQ;Lo;0;L;;;;;N;;;;;-A6C0;BAMUM LETTER SHU;Lo;0;L;;;;;N;;;;;-A6C1;BAMUM LETTER YUQ;Lo;0;L;;;;;N;;;;;-A6C2;BAMUM LETTER YA;Lo;0;L;;;;;N;;;;;-A6C3;BAMUM LETTER NSHA;Lo;0;L;;;;;N;;;;;-A6C4;BAMUM LETTER KEUX;Lo;0;L;;;;;N;;;;;-A6C5;BAMUM LETTER PEUX;Lo;0;L;;;;;N;;;;;-A6C6;BAMUM LETTER NJEE;Lo;0;L;;;;;N;;;;;-A6C7;BAMUM LETTER NTEE;Lo;0;L;;;;;N;;;;;-A6C8;BAMUM LETTER PUE;Lo;0;L;;;;;N;;;;;-A6C9;BAMUM LETTER WUE;Lo;0;L;;;;;N;;;;;-A6CA;BAMUM LETTER PEE;Lo;0;L;;;;;N;;;;;-A6CB;BAMUM LETTER FEE;Lo;0;L;;;;;N;;;;;-A6CC;BAMUM LETTER RU;Lo;0;L;;;;;N;;;;;-A6CD;BAMUM LETTER LU;Lo;0;L;;;;;N;;;;;-A6CE;BAMUM LETTER MI;Lo;0;L;;;;;N;;;;;-A6CF;BAMUM LETTER NI;Lo;0;L;;;;;N;;;;;-A6D0;BAMUM LETTER REUX;Lo;0;L;;;;;N;;;;;-A6D1;BAMUM LETTER RAE;Lo;0;L;;;;;N;;;;;-A6D2;BAMUM LETTER KEN;Lo;0;L;;;;;N;;;;;-A6D3;BAMUM LETTER NGKWAEN;Lo;0;L;;;;;N;;;;;-A6D4;BAMUM LETTER NGGA;Lo;0;L;;;;;N;;;;;-A6D5;BAMUM LETTER NGA;Lo;0;L;;;;;N;;;;;-A6D6;BAMUM LETTER SHO;Lo;0;L;;;;;N;;;;;-A6D7;BAMUM LETTER PUAE;Lo;0;L;;;;;N;;;;;-A6D8;BAMUM LETTER FU;Lo;0;L;;;;;N;;;;;-A6D9;BAMUM LETTER FOM;Lo;0;L;;;;;N;;;;;-A6DA;BAMUM LETTER WA;Lo;0;L;;;;;N;;;;;-A6DB;BAMUM LETTER NA;Lo;0;L;;;;;N;;;;;-A6DC;BAMUM LETTER LI;Lo;0;L;;;;;N;;;;;-A6DD;BAMUM LETTER PI;Lo;0;L;;;;;N;;;;;-A6DE;BAMUM LETTER LOQ;Lo;0;L;;;;;N;;;;;-A6DF;BAMUM LETTER KO;Lo;0;L;;;;;N;;;;;-A6E0;BAMUM LETTER MBEN;Lo;0;L;;;;;N;;;;;-A6E1;BAMUM LETTER REN;Lo;0;L;;;;;N;;;;;-A6E2;BAMUM LETTER MEN;Lo;0;L;;;;;N;;;;;-A6E3;BAMUM LETTER MA;Lo;0;L;;;;;N;;;;;-A6E4;BAMUM LETTER TI;Lo;0;L;;;;;N;;;;;-A6E5;BAMUM LETTER KI;Lo;0;L;;;;;N;;;;;-A6E6;BAMUM LETTER MO;Nl;0;L;;;;1;N;;;;;-A6E7;BAMUM LETTER MBAA;Nl;0;L;;;;2;N;;;;;-A6E8;BAMUM LETTER TET;Nl;0;L;;;;3;N;;;;;-A6E9;BAMUM LETTER KPA;Nl;0;L;;;;4;N;;;;;-A6EA;BAMUM LETTER TEN;Nl;0;L;;;;5;N;;;;;-A6EB;BAMUM LETTER NTUU;Nl;0;L;;;;6;N;;;;;-A6EC;BAMUM LETTER SAMBA;Nl;0;L;;;;7;N;;;;;-A6ED;BAMUM LETTER FAAMAE;Nl;0;L;;;;8;N;;;;;-A6EE;BAMUM LETTER KOVUU;Nl;0;L;;;;9;N;;;;;-A6EF;BAMUM LETTER KOGHOM;Nl;0;L;;;;0;N;;;;;-A6F0;BAMUM COMBINING MARK KOQNDON;Mn;230;NSM;;;;;N;;;;;-A6F1;BAMUM COMBINING MARK TUKWENTIS;Mn;230;NSM;;;;;N;;;;;-A6F2;BAMUM NJAEMLI;Po;0;L;;;;;N;;;;;-A6F3;BAMUM FULL STOP;Po;0;L;;;;;N;;;;;-A6F4;BAMUM COLON;Po;0;L;;;;;N;;;;;-A6F5;BAMUM COMMA;Po;0;L;;;;;N;;;;;-A6F6;BAMUM SEMICOLON;Po;0;L;;;;;N;;;;;-A6F7;BAMUM QUESTION MARK;Po;0;L;;;;;N;;;;;-A700;MODIFIER LETTER CHINESE TONE YIN PING;Sk;0;ON;;;;;N;;;;;-A701;MODIFIER LETTER CHINESE TONE YANG PING;Sk;0;ON;;;;;N;;;;;-A702;MODIFIER LETTER CHINESE TONE YIN SHANG;Sk;0;ON;;;;;N;;;;;-A703;MODIFIER LETTER CHINESE TONE YANG SHANG;Sk;0;ON;;;;;N;;;;;-A704;MODIFIER LETTER CHINESE TONE YIN QU;Sk;0;ON;;;;;N;;;;;-A705;MODIFIER LETTER CHINESE TONE YANG QU;Sk;0;ON;;;;;N;;;;;-A706;MODIFIER LETTER CHINESE TONE YIN RU;Sk;0;ON;;;;;N;;;;;-A707;MODIFIER LETTER CHINESE TONE YANG RU;Sk;0;ON;;;;;N;;;;;-A708;MODIFIER LETTER EXTRA-HIGH DOTTED TONE BAR;Sk;0;ON;;;;;N;;;;;-A709;MODIFIER LETTER HIGH DOTTED TONE BAR;Sk;0;ON;;;;;N;;;;;-A70A;MODIFIER LETTER MID DOTTED TONE BAR;Sk;0;ON;;;;;N;;;;;-A70B;MODIFIER LETTER LOW DOTTED TONE BAR;Sk;0;ON;;;;;N;;;;;-A70C;MODIFIER LETTER EXTRA-LOW DOTTED TONE BAR;Sk;0;ON;;;;;N;;;;;-A70D;MODIFIER LETTER EXTRA-HIGH DOTTED LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A70E;MODIFIER LETTER HIGH DOTTED LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A70F;MODIFIER LETTER MID DOTTED LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A710;MODIFIER LETTER LOW DOTTED LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A711;MODIFIER LETTER EXTRA-LOW DOTTED LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A712;MODIFIER LETTER EXTRA-HIGH LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A713;MODIFIER LETTER HIGH LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A714;MODIFIER LETTER MID LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A715;MODIFIER LETTER LOW LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A716;MODIFIER LETTER EXTRA-LOW LEFT-STEM TONE BAR;Sk;0;ON;;;;;N;;;;;-A717;MODIFIER LETTER DOT VERTICAL BAR;Lm;0;ON;;;;;N;;;;;-A718;MODIFIER LETTER DOT SLASH;Lm;0;ON;;;;;N;;;;;-A719;MODIFIER LETTER DOT HORIZONTAL BAR;Lm;0;ON;;;;;N;;;;;-A71A;MODIFIER LETTER LOWER RIGHT CORNER ANGLE;Lm;0;ON;;;;;N;;;;;-A71B;MODIFIER LETTER RAISED UP ARROW;Lm;0;ON;;;;;N;;;;;-A71C;MODIFIER LETTER RAISED DOWN ARROW;Lm;0;ON;;;;;N;;;;;-A71D;MODIFIER LETTER RAISED EXCLAMATION MARK;Lm;0;ON;;;;;N;;;;;-A71E;MODIFIER LETTER RAISED INVERTED EXCLAMATION MARK;Lm;0;ON;;;;;N;;;;;-A71F;MODIFIER LETTER LOW INVERTED EXCLAMATION MARK;Lm;0;ON;;;;;N;;;;;-A720;MODIFIER LETTER STRESS AND HIGH TONE;Sk;0;ON;;;;;N;;;;;-A721;MODIFIER LETTER STRESS AND LOW TONE;Sk;0;ON;;;;;N;;;;;-A722;LATIN CAPITAL LETTER EGYPTOLOGICAL ALEF;Lu;0;L;;;;;N;;;;A723;-A723;LATIN SMALL LETTER EGYPTOLOGICAL ALEF;Ll;0;L;;;;;N;;;A722;;A722-A724;LATIN CAPITAL LETTER EGYPTOLOGICAL AIN;Lu;0;L;;;;;N;;;;A725;-A725;LATIN SMALL LETTER EGYPTOLOGICAL AIN;Ll;0;L;;;;;N;;;A724;;A724-A726;LATIN CAPITAL LETTER HENG;Lu;0;L;;;;;N;;;;A727;-A727;LATIN SMALL LETTER HENG;Ll;0;L;;;;;N;;;A726;;A726-A728;LATIN CAPITAL LETTER TZ;Lu;0;L;;;;;N;;;;A729;-A729;LATIN SMALL LETTER TZ;Ll;0;L;;;;;N;;;A728;;A728-A72A;LATIN CAPITAL LETTER TRESILLO;Lu;0;L;;;;;N;;;;A72B;-A72B;LATIN SMALL LETTER TRESILLO;Ll;0;L;;;;;N;;;A72A;;A72A-A72C;LATIN CAPITAL LETTER CUATRILLO;Lu;0;L;;;;;N;;;;A72D;-A72D;LATIN SMALL LETTER CUATRILLO;Ll;0;L;;;;;N;;;A72C;;A72C-A72E;LATIN CAPITAL LETTER CUATRILLO WITH COMMA;Lu;0;L;;;;;N;;;;A72F;-A72F;LATIN SMALL LETTER CUATRILLO WITH COMMA;Ll;0;L;;;;;N;;;A72E;;A72E-A730;LATIN LETTER SMALL CAPITAL F;Ll;0;L;;;;;N;;;;;-A731;LATIN LETTER SMALL CAPITAL S;Ll;0;L;;;;;N;;;;;-A732;LATIN CAPITAL LETTER AA;Lu;0;L;;;;;N;;;;A733;-A733;LATIN SMALL LETTER AA;Ll;0;L;;;;;N;;;A732;;A732-A734;LATIN CAPITAL LETTER AO;Lu;0;L;;;;;N;;;;A735;-A735;LATIN SMALL LETTER AO;Ll;0;L;;;;;N;;;A734;;A734-A736;LATIN CAPITAL LETTER AU;Lu;0;L;;;;;N;;;;A737;-A737;LATIN SMALL LETTER AU;Ll;0;L;;;;;N;;;A736;;A736-A738;LATIN CAPITAL LETTER AV;Lu;0;L;;;;;N;;;;A739;-A739;LATIN SMALL LETTER AV;Ll;0;L;;;;;N;;;A738;;A738-A73A;LATIN CAPITAL LETTER AV WITH HORIZONTAL BAR;Lu;0;L;;;;;N;;;;A73B;-A73B;LATIN SMALL LETTER AV WITH HORIZONTAL BAR;Ll;0;L;;;;;N;;;A73A;;A73A-A73C;LATIN CAPITAL LETTER AY;Lu;0;L;;;;;N;;;;A73D;-A73D;LATIN SMALL LETTER AY;Ll;0;L;;;;;N;;;A73C;;A73C-A73E;LATIN CAPITAL LETTER REVERSED C WITH DOT;Lu;0;L;;;;;N;;;;A73F;-A73F;LATIN SMALL LETTER REVERSED C WITH DOT;Ll;0;L;;;;;N;;;A73E;;A73E-A740;LATIN CAPITAL LETTER K WITH STROKE;Lu;0;L;;;;;N;;;;A741;-A741;LATIN SMALL LETTER K WITH STROKE;Ll;0;L;;;;;N;;;A740;;A740-A742;LATIN CAPITAL LETTER K WITH DIAGONAL STROKE;Lu;0;L;;;;;N;;;;A743;-A743;LATIN SMALL LETTER K WITH DIAGONAL STROKE;Ll;0;L;;;;;N;;;A742;;A742-A744;LATIN CAPITAL LETTER K WITH STROKE AND DIAGONAL STROKE;Lu;0;L;;;;;N;;;;A745;-A745;LATIN SMALL LETTER K WITH STROKE AND DIAGONAL STROKE;Ll;0;L;;;;;N;;;A744;;A744-A746;LATIN CAPITAL LETTER BROKEN L;Lu;0;L;;;;;N;;;;A747;-A747;LATIN SMALL LETTER BROKEN L;Ll;0;L;;;;;N;;;A746;;A746-A748;LATIN CAPITAL LETTER L WITH HIGH STROKE;Lu;0;L;;;;;N;;;;A749;-A749;LATIN SMALL LETTER L WITH HIGH STROKE;Ll;0;L;;;;;N;;;A748;;A748-A74A;LATIN CAPITAL LETTER O WITH LONG STROKE OVERLAY;Lu;0;L;;;;;N;;;;A74B;-A74B;LATIN SMALL LETTER O WITH LONG STROKE OVERLAY;Ll;0;L;;;;;N;;;A74A;;A74A-A74C;LATIN CAPITAL LETTER O WITH LOOP;Lu;0;L;;;;;N;;;;A74D;-A74D;LATIN SMALL LETTER O WITH LOOP;Ll;0;L;;;;;N;;;A74C;;A74C-A74E;LATIN CAPITAL LETTER OO;Lu;0;L;;;;;N;;;;A74F;-A74F;LATIN SMALL LETTER OO;Ll;0;L;;;;;N;;;A74E;;A74E-A750;LATIN CAPITAL LETTER P WITH STROKE THROUGH DESCENDER;Lu;0;L;;;;;N;;;;A751;-A751;LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER;Ll;0;L;;;;;N;;;A750;;A750-A752;LATIN CAPITAL LETTER P WITH FLOURISH;Lu;0;L;;;;;N;;;;A753;-A753;LATIN SMALL LETTER P WITH FLOURISH;Ll;0;L;;;;;N;;;A752;;A752-A754;LATIN CAPITAL LETTER P WITH SQUIRREL TAIL;Lu;0;L;;;;;N;;;;A755;-A755;LATIN SMALL LETTER P WITH SQUIRREL TAIL;Ll;0;L;;;;;N;;;A754;;A754-A756;LATIN CAPITAL LETTER Q WITH STROKE THROUGH DESCENDER;Lu;0;L;;;;;N;;;;A757;-A757;LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER;Ll;0;L;;;;;N;;;A756;;A756-A758;LATIN CAPITAL LETTER Q WITH DIAGONAL STROKE;Lu;0;L;;;;;N;;;;A759;-A759;LATIN SMALL LETTER Q WITH DIAGONAL STROKE;Ll;0;L;;;;;N;;;A758;;A758-A75A;LATIN CAPITAL LETTER R ROTUNDA;Lu;0;L;;;;;N;;;;A75B;-A75B;LATIN SMALL LETTER R ROTUNDA;Ll;0;L;;;;;N;;;A75A;;A75A-A75C;LATIN CAPITAL LETTER RUM ROTUNDA;Lu;0;L;;;;;N;;;;A75D;-A75D;LATIN SMALL LETTER RUM ROTUNDA;Ll;0;L;;;;;N;;;A75C;;A75C-A75E;LATIN CAPITAL LETTER V WITH DIAGONAL STROKE;Lu;0;L;;;;;N;;;;A75F;-A75F;LATIN SMALL LETTER V WITH DIAGONAL STROKE;Ll;0;L;;;;;N;;;A75E;;A75E-A760;LATIN CAPITAL LETTER VY;Lu;0;L;;;;;N;;;;A761;-A761;LATIN SMALL LETTER VY;Ll;0;L;;;;;N;;;A760;;A760-A762;LATIN CAPITAL LETTER VISIGOTHIC Z;Lu;0;L;;;;;N;;;;A763;-A763;LATIN SMALL LETTER VISIGOTHIC Z;Ll;0;L;;;;;N;;;A762;;A762-A764;LATIN CAPITAL LETTER THORN WITH STROKE;Lu;0;L;;;;;N;;;;A765;-A765;LATIN SMALL LETTER THORN WITH STROKE;Ll;0;L;;;;;N;;;A764;;A764-A766;LATIN CAPITAL LETTER THORN WITH STROKE THROUGH DESCENDER;Lu;0;L;;;;;N;;;;A767;-A767;LATIN SMALL LETTER THORN WITH STROKE THROUGH DESCENDER;Ll;0;L;;;;;N;;;A766;;A766-A768;LATIN CAPITAL LETTER VEND;Lu;0;L;;;;;N;;;;A769;-A769;LATIN SMALL LETTER VEND;Ll;0;L;;;;;N;;;A768;;A768-A76A;LATIN CAPITAL LETTER ET;Lu;0;L;;;;;N;;;;A76B;-A76B;LATIN SMALL LETTER ET;Ll;0;L;;;;;N;;;A76A;;A76A-A76C;LATIN CAPITAL LETTER IS;Lu;0;L;;;;;N;;;;A76D;-A76D;LATIN SMALL LETTER IS;Ll;0;L;;;;;N;;;A76C;;A76C-A76E;LATIN CAPITAL LETTER CON;Lu;0;L;;;;;N;;;;A76F;-A76F;LATIN SMALL LETTER CON;Ll;0;L;;;;;N;;;A76E;;A76E-A770;MODIFIER LETTER US;Lm;0;L;<super> A76F;;;;N;;;;;-A771;LATIN SMALL LETTER DUM;Ll;0;L;;;;;N;;;;;-A772;LATIN SMALL LETTER LUM;Ll;0;L;;;;;N;;;;;-A773;LATIN SMALL LETTER MUM;Ll;0;L;;;;;N;;;;;-A774;LATIN SMALL LETTER NUM;Ll;0;L;;;;;N;;;;;-A775;LATIN SMALL LETTER RUM;Ll;0;L;;;;;N;;;;;-A776;LATIN LETTER SMALL CAPITAL RUM;Ll;0;L;;;;;N;;;;;-A777;LATIN SMALL LETTER TUM;Ll;0;L;;;;;N;;;;;-A778;LATIN SMALL LETTER UM;Ll;0;L;;;;;N;;;;;-A779;LATIN CAPITAL LETTER INSULAR D;Lu;0;L;;;;;N;;;;A77A;-A77A;LATIN SMALL LETTER INSULAR D;Ll;0;L;;;;;N;;;A779;;A779-A77B;LATIN CAPITAL LETTER INSULAR F;Lu;0;L;;;;;N;;;;A77C;-A77C;LATIN SMALL LETTER INSULAR F;Ll;0;L;;;;;N;;;A77B;;A77B-A77D;LATIN CAPITAL LETTER INSULAR G;Lu;0;L;;;;;N;;;;1D79;-A77E;LATIN CAPITAL LETTER TURNED INSULAR G;Lu;0;L;;;;;N;;;;A77F;-A77F;LATIN SMALL LETTER TURNED INSULAR G;Ll;0;L;;;;;N;;;A77E;;A77E-A780;LATIN CAPITAL LETTER TURNED L;Lu;0;L;;;;;N;;;;A781;-A781;LATIN SMALL LETTER TURNED L;Ll;0;L;;;;;N;;;A780;;A780-A782;LATIN CAPITAL LETTER INSULAR R;Lu;0;L;;;;;N;;;;A783;-A783;LATIN SMALL LETTER INSULAR R;Ll;0;L;;;;;N;;;A782;;A782-A784;LATIN CAPITAL LETTER INSULAR S;Lu;0;L;;;;;N;;;;A785;-A785;LATIN SMALL LETTER INSULAR S;Ll;0;L;;;;;N;;;A784;;A784-A786;LATIN CAPITAL LETTER INSULAR T;Lu;0;L;;;;;N;;;;A787;-A787;LATIN SMALL LETTER INSULAR T;Ll;0;L;;;;;N;;;A786;;A786-A788;MODIFIER LETTER LOW CIRCUMFLEX ACCENT;Lm;0;ON;;;;;N;;;;;-A789;MODIFIER LETTER COLON;Sk;0;L;;;;;N;;;;;-A78A;MODIFIER LETTER SHORT EQUALS SIGN;Sk;0;L;;;;;N;;;;;-A78B;LATIN CAPITAL LETTER SALTILLO;Lu;0;L;;;;;N;;;;A78C;-A78C;LATIN SMALL LETTER SALTILLO;Ll;0;L;;;;;N;;;A78B;;A78B-A78D;LATIN CAPITAL LETTER TURNED H;Lu;0;L;;;;;N;;;;0265;-A78E;LATIN SMALL LETTER L WITH RETROFLEX HOOK AND BELT;Ll;0;L;;;;;N;;;;;-A790;LATIN CAPITAL LETTER N WITH DESCENDER;Lu;0;L;;;;;N;;;;A791;-A791;LATIN SMALL LETTER N WITH DESCENDER;Ll;0;L;;;;;N;;;A790;;A790-A792;LATIN CAPITAL LETTER C WITH BAR;Lu;0;L;;;;;N;;;;A793;-A793;LATIN SMALL LETTER C WITH BAR;Ll;0;L;;;;;N;;;A792;;A792-A794;LATIN SMALL LETTER C WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-A795;LATIN SMALL LETTER H WITH PALATAL HOOK;Ll;0;L;;;;;N;;;;;-A796;LATIN CAPITAL LETTER B WITH FLOURISH;Lu;0;L;;;;;N;;;;A797;-A797;LATIN SMALL LETTER B WITH FLOURISH;Ll;0;L;;;;;N;;;A796;;A796-A798;LATIN CAPITAL LETTER F WITH STROKE;Lu;0;L;;;;;N;;;;A799;-A799;LATIN SMALL LETTER F WITH STROKE;Ll;0;L;;;;;N;;;A798;;A798-A79A;LATIN CAPITAL LETTER VOLAPUK AE;Lu;0;L;;;;;N;;;;A79B;-A79B;LATIN SMALL LETTER VOLAPUK AE;Ll;0;L;;;;;N;;;A79A;;A79A-A79C;LATIN CAPITAL LETTER VOLAPUK OE;Lu;0;L;;;;;N;;;;A79D;-A79D;LATIN SMALL LETTER VOLAPUK OE;Ll;0;L;;;;;N;;;A79C;;A79C-A79E;LATIN CAPITAL LETTER VOLAPUK UE;Lu;0;L;;;;;N;;;;A79F;-A79F;LATIN SMALL LETTER VOLAPUK UE;Ll;0;L;;;;;N;;;A79E;;A79E-A7A0;LATIN CAPITAL LETTER G WITH OBLIQUE STROKE;Lu;0;L;;;;;N;;;;A7A1;-A7A1;LATIN SMALL LETTER G WITH OBLIQUE STROKE;Ll;0;L;;;;;N;;;A7A0;;A7A0-A7A2;LATIN CAPITAL LETTER K WITH OBLIQUE STROKE;Lu;0;L;;;;;N;;;;A7A3;-A7A3;LATIN SMALL LETTER K WITH OBLIQUE STROKE;Ll;0;L;;;;;N;;;A7A2;;A7A2-A7A4;LATIN CAPITAL LETTER N WITH OBLIQUE STROKE;Lu;0;L;;;;;N;;;;A7A5;-A7A5;LATIN SMALL LETTER N WITH OBLIQUE STROKE;Ll;0;L;;;;;N;;;A7A4;;A7A4-A7A6;LATIN CAPITAL LETTER R WITH OBLIQUE STROKE;Lu;0;L;;;;;N;;;;A7A7;-A7A7;LATIN SMALL LETTER R WITH OBLIQUE STROKE;Ll;0;L;;;;;N;;;A7A6;;A7A6-A7A8;LATIN CAPITAL LETTER S WITH OBLIQUE STROKE;Lu;0;L;;;;;N;;;;A7A9;-A7A9;LATIN SMALL LETTER S WITH OBLIQUE STROKE;Ll;0;L;;;;;N;;;A7A8;;A7A8-A7AA;LATIN CAPITAL LETTER H WITH HOOK;Lu;0;L;;;;;N;;;;0266;-A7AB;LATIN CAPITAL LETTER REVERSED OPEN E;Lu;0;L;;;;;N;;;;025C;-A7AC;LATIN CAPITAL LETTER SCRIPT G;Lu;0;L;;;;;N;;;;0261;-A7AD;LATIN CAPITAL LETTER L WITH BELT;Lu;0;L;;;;;N;;;;026C;-A7B0;LATIN CAPITAL LETTER TURNED K;Lu;0;L;;;;;N;;;;029E;-A7B1;LATIN CAPITAL LETTER TURNED T;Lu;0;L;;;;;N;;;;0287;-A7F7;LATIN EPIGRAPHIC LETTER SIDEWAYS I;Lo;0;L;;;;;N;;;;;-A7F8;MODIFIER LETTER CAPITAL H WITH STROKE;Lm;0;L;<super> 0126;;;;N;;;;;-A7F9;MODIFIER LETTER SMALL LIGATURE OE;Lm;0;L;<super> 0153;;;;N;;;;;-A7FA;LATIN LETTER SMALL CAPITAL TURNED M;Ll;0;L;;;;;N;;;;;-A7FB;LATIN EPIGRAPHIC LETTER REVERSED F;Lo;0;L;;;;;N;;;;;-A7FC;LATIN EPIGRAPHIC LETTER REVERSED P;Lo;0;L;;;;;N;;;;;-A7FD;LATIN EPIGRAPHIC LETTER INVERTED M;Lo;0;L;;;;;N;;;;;-A7FE;LATIN EPIGRAPHIC LETTER I LONGA;Lo;0;L;;;;;N;;;;;-A7FF;LATIN EPIGRAPHIC LETTER ARCHAIC M;Lo;0;L;;;;;N;;;;;-A800;SYLOTI NAGRI LETTER A;Lo;0;L;;;;;N;;;;;-A801;SYLOTI NAGRI LETTER I;Lo;0;L;;;;;N;;;;;-A802;SYLOTI NAGRI SIGN DVISVARA;Mn;0;NSM;;;;;N;;;;;-A803;SYLOTI NAGRI LETTER U;Lo;0;L;;;;;N;;;;;-A804;SYLOTI NAGRI LETTER E;Lo;0;L;;;;;N;;;;;-A805;SYLOTI NAGRI LETTER O;Lo;0;L;;;;;N;;;;;-A806;SYLOTI NAGRI SIGN HASANTA;Mn;9;NSM;;;;;N;;;;;-A807;SYLOTI NAGRI LETTER KO;Lo;0;L;;;;;N;;;;;-A808;SYLOTI NAGRI LETTER KHO;Lo;0;L;;;;;N;;;;;-A809;SYLOTI NAGRI LETTER GO;Lo;0;L;;;;;N;;;;;-A80A;SYLOTI NAGRI LETTER GHO;Lo;0;L;;;;;N;;;;;-A80B;SYLOTI NAGRI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-A80C;SYLOTI NAGRI LETTER CO;Lo;0;L;;;;;N;;;;;-A80D;SYLOTI NAGRI LETTER CHO;Lo;0;L;;;;;N;;;;;-A80E;SYLOTI NAGRI LETTER JO;Lo;0;L;;;;;N;;;;;-A80F;SYLOTI NAGRI LETTER JHO;Lo;0;L;;;;;N;;;;;-A810;SYLOTI NAGRI LETTER TTO;Lo;0;L;;;;;N;;;;;-A811;SYLOTI NAGRI LETTER TTHO;Lo;0;L;;;;;N;;;;;-A812;SYLOTI NAGRI LETTER DDO;Lo;0;L;;;;;N;;;;;-A813;SYLOTI NAGRI LETTER DDHO;Lo;0;L;;;;;N;;;;;-A814;SYLOTI NAGRI LETTER TO;Lo;0;L;;;;;N;;;;;-A815;SYLOTI NAGRI LETTER THO;Lo;0;L;;;;;N;;;;;-A816;SYLOTI NAGRI LETTER DO;Lo;0;L;;;;;N;;;;;-A817;SYLOTI NAGRI LETTER DHO;Lo;0;L;;;;;N;;;;;-A818;SYLOTI NAGRI LETTER NO;Lo;0;L;;;;;N;;;;;-A819;SYLOTI NAGRI LETTER PO;Lo;0;L;;;;;N;;;;;-A81A;SYLOTI NAGRI LETTER PHO;Lo;0;L;;;;;N;;;;;-A81B;SYLOTI NAGRI LETTER BO;Lo;0;L;;;;;N;;;;;-A81C;SYLOTI NAGRI LETTER BHO;Lo;0;L;;;;;N;;;;;-A81D;SYLOTI NAGRI LETTER MO;Lo;0;L;;;;;N;;;;;-A81E;SYLOTI NAGRI LETTER RO;Lo;0;L;;;;;N;;;;;-A81F;SYLOTI NAGRI LETTER LO;Lo;0;L;;;;;N;;;;;-A820;SYLOTI NAGRI LETTER RRO;Lo;0;L;;;;;N;;;;;-A821;SYLOTI NAGRI LETTER SO;Lo;0;L;;;;;N;;;;;-A822;SYLOTI NAGRI LETTER HO;Lo;0;L;;;;;N;;;;;-A823;SYLOTI NAGRI VOWEL SIGN A;Mc;0;L;;;;;N;;;;;-A824;SYLOTI NAGRI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-A825;SYLOTI NAGRI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-A826;SYLOTI NAGRI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-A827;SYLOTI NAGRI VOWEL SIGN OO;Mc;0;L;;;;;N;;;;;-A828;SYLOTI NAGRI POETRY MARK-1;So;0;ON;;;;;N;;;;;-A829;SYLOTI NAGRI POETRY MARK-2;So;0;ON;;;;;N;;;;;-A82A;SYLOTI NAGRI POETRY MARK-3;So;0;ON;;;;;N;;;;;-A82B;SYLOTI NAGRI POETRY MARK-4;So;0;ON;;;;;N;;;;;-A830;NORTH INDIC FRACTION ONE QUARTER;No;0;L;;;;1/4;N;;;;;-A831;NORTH INDIC FRACTION ONE HALF;No;0;L;;;;1/2;N;;;;;-A832;NORTH INDIC FRACTION THREE QUARTERS;No;0;L;;;;3/4;N;;;;;-A833;NORTH INDIC FRACTION ONE SIXTEENTH;No;0;L;;;;1/16;N;;;;;-A834;NORTH INDIC FRACTION ONE EIGHTH;No;0;L;;;;1/8;N;;;;;-A835;NORTH INDIC FRACTION THREE SIXTEENTHS;No;0;L;;;;3/16;N;;;;;-A836;NORTH INDIC QUARTER MARK;So;0;L;;;;;N;;;;;-A837;NORTH INDIC PLACEHOLDER MARK;So;0;L;;;;;N;;;;;-A838;NORTH INDIC RUPEE MARK;Sc;0;ET;;;;;N;;;;;-A839;NORTH INDIC QUANTITY MARK;So;0;ET;;;;;N;;;;;-A840;PHAGS-PA LETTER KA;Lo;0;L;;;;;N;;;;;-A841;PHAGS-PA LETTER KHA;Lo;0;L;;;;;N;;;;;-A842;PHAGS-PA LETTER GA;Lo;0;L;;;;;N;;;;;-A843;PHAGS-PA LETTER NGA;Lo;0;L;;;;;N;;;;;-A844;PHAGS-PA LETTER CA;Lo;0;L;;;;;N;;;;;-A845;PHAGS-PA LETTER CHA;Lo;0;L;;;;;N;;;;;-A846;PHAGS-PA LETTER JA;Lo;0;L;;;;;N;;;;;-A847;PHAGS-PA LETTER NYA;Lo;0;L;;;;;N;;;;;-A848;PHAGS-PA LETTER TA;Lo;0;L;;;;;N;;;;;-A849;PHAGS-PA LETTER THA;Lo;0;L;;;;;N;;;;;-A84A;PHAGS-PA LETTER DA;Lo;0;L;;;;;N;;;;;-A84B;PHAGS-PA LETTER NA;Lo;0;L;;;;;N;;;;;-A84C;PHAGS-PA LETTER PA;Lo;0;L;;;;;N;;;;;-A84D;PHAGS-PA LETTER PHA;Lo;0;L;;;;;N;;;;;-A84E;PHAGS-PA LETTER BA;Lo;0;L;;;;;N;;;;;-A84F;PHAGS-PA LETTER MA;Lo;0;L;;;;;N;;;;;-A850;PHAGS-PA LETTER TSA;Lo;0;L;;;;;N;;;;;-A851;PHAGS-PA LETTER TSHA;Lo;0;L;;;;;N;;;;;-A852;PHAGS-PA LETTER DZA;Lo;0;L;;;;;N;;;;;-A853;PHAGS-PA LETTER WA;Lo;0;L;;;;;N;;;;;-A854;PHAGS-PA LETTER ZHA;Lo;0;L;;;;;N;;;;;-A855;PHAGS-PA LETTER ZA;Lo;0;L;;;;;N;;;;;-A856;PHAGS-PA LETTER SMALL A;Lo;0;L;;;;;N;;;;;-A857;PHAGS-PA LETTER YA;Lo;0;L;;;;;N;;;;;-A858;PHAGS-PA LETTER RA;Lo;0;L;;;;;N;;;;;-A859;PHAGS-PA LETTER LA;Lo;0;L;;;;;N;;;;;-A85A;PHAGS-PA LETTER SHA;Lo;0;L;;;;;N;;;;;-A85B;PHAGS-PA LETTER SA;Lo;0;L;;;;;N;;;;;-A85C;PHAGS-PA LETTER HA;Lo;0;L;;;;;N;;;;;-A85D;PHAGS-PA LETTER A;Lo;0;L;;;;;N;;;;;-A85E;PHAGS-PA LETTER I;Lo;0;L;;;;;N;;;;;-A85F;PHAGS-PA LETTER U;Lo;0;L;;;;;N;;;;;-A860;PHAGS-PA LETTER E;Lo;0;L;;;;;N;;;;;-A861;PHAGS-PA LETTER O;Lo;0;L;;;;;N;;;;;-A862;PHAGS-PA LETTER QA;Lo;0;L;;;;;N;;;;;-A863;PHAGS-PA LETTER XA;Lo;0;L;;;;;N;;;;;-A864;PHAGS-PA LETTER FA;Lo;0;L;;;;;N;;;;;-A865;PHAGS-PA LETTER GGA;Lo;0;L;;;;;N;;;;;-A866;PHAGS-PA LETTER EE;Lo;0;L;;;;;N;;;;;-A867;PHAGS-PA SUBJOINED LETTER WA;Lo;0;L;;;;;N;;;;;-A868;PHAGS-PA SUBJOINED LETTER YA;Lo;0;L;;;;;N;;;;;-A869;PHAGS-PA LETTER TTA;Lo;0;L;;;;;N;;;;;-A86A;PHAGS-PA LETTER TTHA;Lo;0;L;;;;;N;;;;;-A86B;PHAGS-PA LETTER DDA;Lo;0;L;;;;;N;;;;;-A86C;PHAGS-PA LETTER NNA;Lo;0;L;;;;;N;;;;;-A86D;PHAGS-PA LETTER ALTERNATE YA;Lo;0;L;;;;;N;;;;;-A86E;PHAGS-PA LETTER VOICELESS SHA;Lo;0;L;;;;;N;;;;;-A86F;PHAGS-PA LETTER VOICED HA;Lo;0;L;;;;;N;;;;;-A870;PHAGS-PA LETTER ASPIRATED FA;Lo;0;L;;;;;N;;;;;-A871;PHAGS-PA SUBJOINED LETTER RA;Lo;0;L;;;;;N;;;;;-A872;PHAGS-PA SUPERFIXED LETTER RA;Lo;0;L;;;;;N;;;;;-A873;PHAGS-PA LETTER CANDRABINDU;Lo;0;L;;;;;N;;;;;-A874;PHAGS-PA SINGLE HEAD MARK;Po;0;ON;;;;;N;;;;;-A875;PHAGS-PA DOUBLE HEAD MARK;Po;0;ON;;;;;N;;;;;-A876;PHAGS-PA MARK SHAD;Po;0;ON;;;;;N;;;;;-A877;PHAGS-PA MARK DOUBLE SHAD;Po;0;ON;;;;;N;;;;;-A880;SAURASHTRA SIGN ANUSVARA;Mc;0;L;;;;;N;;;;;-A881;SAURASHTRA SIGN VISARGA;Mc;0;L;;;;;N;;;;;-A882;SAURASHTRA LETTER A;Lo;0;L;;;;;N;;;;;-A883;SAURASHTRA LETTER AA;Lo;0;L;;;;;N;;;;;-A884;SAURASHTRA LETTER I;Lo;0;L;;;;;N;;;;;-A885;SAURASHTRA LETTER II;Lo;0;L;;;;;N;;;;;-A886;SAURASHTRA LETTER U;Lo;0;L;;;;;N;;;;;-A887;SAURASHTRA LETTER UU;Lo;0;L;;;;;N;;;;;-A888;SAURASHTRA LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-A889;SAURASHTRA LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-A88A;SAURASHTRA LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-A88B;SAURASHTRA LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-A88C;SAURASHTRA LETTER E;Lo;0;L;;;;;N;;;;;-A88D;SAURASHTRA LETTER EE;Lo;0;L;;;;;N;;;;;-A88E;SAURASHTRA LETTER AI;Lo;0;L;;;;;N;;;;;-A88F;SAURASHTRA LETTER O;Lo;0;L;;;;;N;;;;;-A890;SAURASHTRA LETTER OO;Lo;0;L;;;;;N;;;;;-A891;SAURASHTRA LETTER AU;Lo;0;L;;;;;N;;;;;-A892;SAURASHTRA LETTER KA;Lo;0;L;;;;;N;;;;;-A893;SAURASHTRA LETTER KHA;Lo;0;L;;;;;N;;;;;-A894;SAURASHTRA LETTER GA;Lo;0;L;;;;;N;;;;;-A895;SAURASHTRA LETTER GHA;Lo;0;L;;;;;N;;;;;-A896;SAURASHTRA LETTER NGA;Lo;0;L;;;;;N;;;;;-A897;SAURASHTRA LETTER CA;Lo;0;L;;;;;N;;;;;-A898;SAURASHTRA LETTER CHA;Lo;0;L;;;;;N;;;;;-A899;SAURASHTRA LETTER JA;Lo;0;L;;;;;N;;;;;-A89A;SAURASHTRA LETTER JHA;Lo;0;L;;;;;N;;;;;-A89B;SAURASHTRA LETTER NYA;Lo;0;L;;;;;N;;;;;-A89C;SAURASHTRA LETTER TTA;Lo;0;L;;;;;N;;;;;-A89D;SAURASHTRA LETTER TTHA;Lo;0;L;;;;;N;;;;;-A89E;SAURASHTRA LETTER DDA;Lo;0;L;;;;;N;;;;;-A89F;SAURASHTRA LETTER DDHA;Lo;0;L;;;;;N;;;;;-A8A0;SAURASHTRA LETTER NNA;Lo;0;L;;;;;N;;;;;-A8A1;SAURASHTRA LETTER TA;Lo;0;L;;;;;N;;;;;-A8A2;SAURASHTRA LETTER THA;Lo;0;L;;;;;N;;;;;-A8A3;SAURASHTRA LETTER DA;Lo;0;L;;;;;N;;;;;-A8A4;SAURASHTRA LETTER DHA;Lo;0;L;;;;;N;;;;;-A8A5;SAURASHTRA LETTER NA;Lo;0;L;;;;;N;;;;;-A8A6;SAURASHTRA LETTER PA;Lo;0;L;;;;;N;;;;;-A8A7;SAURASHTRA LETTER PHA;Lo;0;L;;;;;N;;;;;-A8A8;SAURASHTRA LETTER BA;Lo;0;L;;;;;N;;;;;-A8A9;SAURASHTRA LETTER BHA;Lo;0;L;;;;;N;;;;;-A8AA;SAURASHTRA LETTER MA;Lo;0;L;;;;;N;;;;;-A8AB;SAURASHTRA LETTER YA;Lo;0;L;;;;;N;;;;;-A8AC;SAURASHTRA LETTER RA;Lo;0;L;;;;;N;;;;;-A8AD;SAURASHTRA LETTER LA;Lo;0;L;;;;;N;;;;;-A8AE;SAURASHTRA LETTER VA;Lo;0;L;;;;;N;;;;;-A8AF;SAURASHTRA LETTER SHA;Lo;0;L;;;;;N;;;;;-A8B0;SAURASHTRA LETTER SSA;Lo;0;L;;;;;N;;;;;-A8B1;SAURASHTRA LETTER SA;Lo;0;L;;;;;N;;;;;-A8B2;SAURASHTRA LETTER HA;Lo;0;L;;;;;N;;;;;-A8B3;SAURASHTRA LETTER LLA;Lo;0;L;;;;;N;;;;;-A8B4;SAURASHTRA CONSONANT SIGN HAARU;Mc;0;L;;;;;N;;;;;-A8B5;SAURASHTRA VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-A8B6;SAURASHTRA VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-A8B7;SAURASHTRA VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-A8B8;SAURASHTRA VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-A8B9;SAURASHTRA VOWEL SIGN UU;Mc;0;L;;;;;N;;;;;-A8BA;SAURASHTRA VOWEL SIGN VOCALIC R;Mc;0;L;;;;;N;;;;;-A8BB;SAURASHTRA VOWEL SIGN VOCALIC RR;Mc;0;L;;;;;N;;;;;-A8BC;SAURASHTRA VOWEL SIGN VOCALIC L;Mc;0;L;;;;;N;;;;;-A8BD;SAURASHTRA VOWEL SIGN VOCALIC LL;Mc;0;L;;;;;N;;;;;-A8BE;SAURASHTRA VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-A8BF;SAURASHTRA VOWEL SIGN EE;Mc;0;L;;;;;N;;;;;-A8C0;SAURASHTRA VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-A8C1;SAURASHTRA VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-A8C2;SAURASHTRA VOWEL SIGN OO;Mc;0;L;;;;;N;;;;;-A8C3;SAURASHTRA VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-A8C4;SAURASHTRA SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-A8CE;SAURASHTRA DANDA;Po;0;L;;;;;N;;;;;-A8CF;SAURASHTRA DOUBLE DANDA;Po;0;L;;;;;N;;;;;-A8D0;SAURASHTRA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-A8D1;SAURASHTRA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-A8D2;SAURASHTRA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-A8D3;SAURASHTRA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-A8D4;SAURASHTRA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-A8D5;SAURASHTRA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-A8D6;SAURASHTRA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-A8D7;SAURASHTRA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-A8D8;SAURASHTRA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-A8D9;SAURASHTRA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-A8E0;COMBINING DEVANAGARI DIGIT ZERO;Mn;230;NSM;;;;;N;;;;;-A8E1;COMBINING DEVANAGARI DIGIT ONE;Mn;230;NSM;;;;;N;;;;;-A8E2;COMBINING DEVANAGARI DIGIT TWO;Mn;230;NSM;;;;;N;;;;;-A8E3;COMBINING DEVANAGARI DIGIT THREE;Mn;230;NSM;;;;;N;;;;;-A8E4;COMBINING DEVANAGARI DIGIT FOUR;Mn;230;NSM;;;;;N;;;;;-A8E5;COMBINING DEVANAGARI DIGIT FIVE;Mn;230;NSM;;;;;N;;;;;-A8E6;COMBINING DEVANAGARI DIGIT SIX;Mn;230;NSM;;;;;N;;;;;-A8E7;COMBINING DEVANAGARI DIGIT SEVEN;Mn;230;NSM;;;;;N;;;;;-A8E8;COMBINING DEVANAGARI DIGIT EIGHT;Mn;230;NSM;;;;;N;;;;;-A8E9;COMBINING DEVANAGARI DIGIT NINE;Mn;230;NSM;;;;;N;;;;;-A8EA;COMBINING DEVANAGARI LETTER A;Mn;230;NSM;;;;;N;;;;;-A8EB;COMBINING DEVANAGARI LETTER U;Mn;230;NSM;;;;;N;;;;;-A8EC;COMBINING DEVANAGARI LETTER KA;Mn;230;NSM;;;;;N;;;;;-A8ED;COMBINING DEVANAGARI LETTER NA;Mn;230;NSM;;;;;N;;;;;-A8EE;COMBINING DEVANAGARI LETTER PA;Mn;230;NSM;;;;;N;;;;;-A8EF;COMBINING DEVANAGARI LETTER RA;Mn;230;NSM;;;;;N;;;;;-A8F0;COMBINING DEVANAGARI LETTER VI;Mn;230;NSM;;;;;N;;;;;-A8F1;COMBINING DEVANAGARI SIGN AVAGRAHA;Mn;230;NSM;;;;;N;;;;;-A8F2;DEVANAGARI SIGN SPACING CANDRABINDU;Lo;0;L;;;;;N;;;;;-A8F3;DEVANAGARI SIGN CANDRABINDU VIRAMA;Lo;0;L;;;;;N;;;;;-A8F4;DEVANAGARI SIGN DOUBLE CANDRABINDU VIRAMA;Lo;0;L;;;;;N;;;;;-A8F5;DEVANAGARI SIGN CANDRABINDU TWO;Lo;0;L;;;;;N;;;;;-A8F6;DEVANAGARI SIGN CANDRABINDU THREE;Lo;0;L;;;;;N;;;;;-A8F7;DEVANAGARI SIGN CANDRABINDU AVAGRAHA;Lo;0;L;;;;;N;;;;;-A8F8;DEVANAGARI SIGN PUSHPIKA;Po;0;L;;;;;N;;;;;-A8F9;DEVANAGARI GAP FILLER;Po;0;L;;;;;N;;;;;-A8FA;DEVANAGARI CARET;Po;0;L;;;;;N;;;;;-A8FB;DEVANAGARI HEADSTROKE;Lo;0;L;;;;;N;;;;;-A900;KAYAH LI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-A901;KAYAH LI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-A902;KAYAH LI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-A903;KAYAH LI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-A904;KAYAH LI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-A905;KAYAH LI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-A906;KAYAH LI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-A907;KAYAH LI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-A908;KAYAH LI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-A909;KAYAH LI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-A90A;KAYAH LI LETTER KA;Lo;0;L;;;;;N;;;;;-A90B;KAYAH LI LETTER KHA;Lo;0;L;;;;;N;;;;;-A90C;KAYAH LI LETTER GA;Lo;0;L;;;;;N;;;;;-A90D;KAYAH LI LETTER NGA;Lo;0;L;;;;;N;;;;;-A90E;KAYAH LI LETTER SA;Lo;0;L;;;;;N;;;;;-A90F;KAYAH LI LETTER SHA;Lo;0;L;;;;;N;;;;;-A910;KAYAH LI LETTER ZA;Lo;0;L;;;;;N;;;;;-A911;KAYAH LI LETTER NYA;Lo;0;L;;;;;N;;;;;-A912;KAYAH LI LETTER TA;Lo;0;L;;;;;N;;;;;-A913;KAYAH LI LETTER HTA;Lo;0;L;;;;;N;;;;;-A914;KAYAH LI LETTER NA;Lo;0;L;;;;;N;;;;;-A915;KAYAH LI LETTER PA;Lo;0;L;;;;;N;;;;;-A916;KAYAH LI LETTER PHA;Lo;0;L;;;;;N;;;;;-A917;KAYAH LI LETTER MA;Lo;0;L;;;;;N;;;;;-A918;KAYAH LI LETTER DA;Lo;0;L;;;;;N;;;;;-A919;KAYAH LI LETTER BA;Lo;0;L;;;;;N;;;;;-A91A;KAYAH LI LETTER RA;Lo;0;L;;;;;N;;;;;-A91B;KAYAH LI LETTER YA;Lo;0;L;;;;;N;;;;;-A91C;KAYAH LI LETTER LA;Lo;0;L;;;;;N;;;;;-A91D;KAYAH LI LETTER WA;Lo;0;L;;;;;N;;;;;-A91E;KAYAH LI LETTER THA;Lo;0;L;;;;;N;;;;;-A91F;KAYAH LI LETTER HA;Lo;0;L;;;;;N;;;;;-A920;KAYAH LI LETTER VA;Lo;0;L;;;;;N;;;;;-A921;KAYAH LI LETTER CA;Lo;0;L;;;;;N;;;;;-A922;KAYAH LI LETTER A;Lo;0;L;;;;;N;;;;;-A923;KAYAH LI LETTER OE;Lo;0;L;;;;;N;;;;;-A924;KAYAH LI LETTER I;Lo;0;L;;;;;N;;;;;-A925;KAYAH LI LETTER OO;Lo;0;L;;;;;N;;;;;-A926;KAYAH LI VOWEL UE;Mn;0;NSM;;;;;N;;;;;-A927;KAYAH LI VOWEL E;Mn;0;NSM;;;;;N;;;;;-A928;KAYAH LI VOWEL U;Mn;0;NSM;;;;;N;;;;;-A929;KAYAH LI VOWEL EE;Mn;0;NSM;;;;;N;;;;;-A92A;KAYAH LI VOWEL O;Mn;0;NSM;;;;;N;;;;;-A92B;KAYAH LI TONE PLOPHU;Mn;220;NSM;;;;;N;;;;;-A92C;KAYAH LI TONE CALYA;Mn;220;NSM;;;;;N;;;;;-A92D;KAYAH LI TONE CALYA PLOPHU;Mn;220;NSM;;;;;N;;;;;-A92E;KAYAH LI SIGN CWI;Po;0;L;;;;;N;;;;;-A92F;KAYAH LI SIGN SHYA;Po;0;L;;;;;N;;;;;-A930;REJANG LETTER KA;Lo;0;L;;;;;N;;;;;-A931;REJANG LETTER GA;Lo;0;L;;;;;N;;;;;-A932;REJANG LETTER NGA;Lo;0;L;;;;;N;;;;;-A933;REJANG LETTER TA;Lo;0;L;;;;;N;;;;;-A934;REJANG LETTER DA;Lo;0;L;;;;;N;;;;;-A935;REJANG LETTER NA;Lo;0;L;;;;;N;;;;;-A936;REJANG LETTER PA;Lo;0;L;;;;;N;;;;;-A937;REJANG LETTER BA;Lo;0;L;;;;;N;;;;;-A938;REJANG LETTER MA;Lo;0;L;;;;;N;;;;;-A939;REJANG LETTER CA;Lo;0;L;;;;;N;;;;;-A93A;REJANG LETTER JA;Lo;0;L;;;;;N;;;;;-A93B;REJANG LETTER NYA;Lo;0;L;;;;;N;;;;;-A93C;REJANG LETTER SA;Lo;0;L;;;;;N;;;;;-A93D;REJANG LETTER RA;Lo;0;L;;;;;N;;;;;-A93E;REJANG LETTER LA;Lo;0;L;;;;;N;;;;;-A93F;REJANG LETTER YA;Lo;0;L;;;;;N;;;;;-A940;REJANG LETTER WA;Lo;0;L;;;;;N;;;;;-A941;REJANG LETTER HA;Lo;0;L;;;;;N;;;;;-A942;REJANG LETTER MBA;Lo;0;L;;;;;N;;;;;-A943;REJANG LETTER NGGA;Lo;0;L;;;;;N;;;;;-A944;REJANG LETTER NDA;Lo;0;L;;;;;N;;;;;-A945;REJANG LETTER NYJA;Lo;0;L;;;;;N;;;;;-A946;REJANG LETTER A;Lo;0;L;;;;;N;;;;;-A947;REJANG VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-A948;REJANG VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-A949;REJANG VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-A94A;REJANG VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-A94B;REJANG VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-A94C;REJANG VOWEL SIGN AU;Mn;0;NSM;;;;;N;;;;;-A94D;REJANG VOWEL SIGN EU;Mn;0;NSM;;;;;N;;;;;-A94E;REJANG VOWEL SIGN EA;Mn;0;NSM;;;;;N;;;;;-A94F;REJANG CONSONANT SIGN NG;Mn;0;NSM;;;;;N;;;;;-A950;REJANG CONSONANT SIGN N;Mn;0;NSM;;;;;N;;;;;-A951;REJANG CONSONANT SIGN R;Mn;0;NSM;;;;;N;;;;;-A952;REJANG CONSONANT SIGN H;Mc;0;L;;;;;N;;;;;-A953;REJANG VIRAMA;Mc;9;L;;;;;N;;;;;-A95F;REJANG SECTION MARK;Po;0;L;;;;;N;;;;;-A960;HANGUL CHOSEONG TIKEUT-MIEUM;Lo;0;L;;;;;N;;;;;-A961;HANGUL CHOSEONG TIKEUT-PIEUP;Lo;0;L;;;;;N;;;;;-A962;HANGUL CHOSEONG TIKEUT-SIOS;Lo;0;L;;;;;N;;;;;-A963;HANGUL CHOSEONG TIKEUT-CIEUC;Lo;0;L;;;;;N;;;;;-A964;HANGUL CHOSEONG RIEUL-KIYEOK;Lo;0;L;;;;;N;;;;;-A965;HANGUL CHOSEONG RIEUL-SSANGKIYEOK;Lo;0;L;;;;;N;;;;;-A966;HANGUL CHOSEONG RIEUL-TIKEUT;Lo;0;L;;;;;N;;;;;-A967;HANGUL CHOSEONG RIEUL-SSANGTIKEUT;Lo;0;L;;;;;N;;;;;-A968;HANGUL CHOSEONG RIEUL-MIEUM;Lo;0;L;;;;;N;;;;;-A969;HANGUL CHOSEONG RIEUL-PIEUP;Lo;0;L;;;;;N;;;;;-A96A;HANGUL CHOSEONG RIEUL-SSANGPIEUP;Lo;0;L;;;;;N;;;;;-A96B;HANGUL CHOSEONG RIEUL-KAPYEOUNPIEUP;Lo;0;L;;;;;N;;;;;-A96C;HANGUL CHOSEONG RIEUL-SIOS;Lo;0;L;;;;;N;;;;;-A96D;HANGUL CHOSEONG RIEUL-CIEUC;Lo;0;L;;;;;N;;;;;-A96E;HANGUL CHOSEONG RIEUL-KHIEUKH;Lo;0;L;;;;;N;;;;;-A96F;HANGUL CHOSEONG MIEUM-KIYEOK;Lo;0;L;;;;;N;;;;;-A970;HANGUL CHOSEONG MIEUM-TIKEUT;Lo;0;L;;;;;N;;;;;-A971;HANGUL CHOSEONG MIEUM-SIOS;Lo;0;L;;;;;N;;;;;-A972;HANGUL CHOSEONG PIEUP-SIOS-THIEUTH;Lo;0;L;;;;;N;;;;;-A973;HANGUL CHOSEONG PIEUP-KHIEUKH;Lo;0;L;;;;;N;;;;;-A974;HANGUL CHOSEONG PIEUP-HIEUH;Lo;0;L;;;;;N;;;;;-A975;HANGUL CHOSEONG SSANGSIOS-PIEUP;Lo;0;L;;;;;N;;;;;-A976;HANGUL CHOSEONG IEUNG-RIEUL;Lo;0;L;;;;;N;;;;;-A977;HANGUL CHOSEONG IEUNG-HIEUH;Lo;0;L;;;;;N;;;;;-A978;HANGUL CHOSEONG SSANGCIEUC-HIEUH;Lo;0;L;;;;;N;;;;;-A979;HANGUL CHOSEONG SSANGTHIEUTH;Lo;0;L;;;;;N;;;;;-A97A;HANGUL CHOSEONG PHIEUPH-HIEUH;Lo;0;L;;;;;N;;;;;-A97B;HANGUL CHOSEONG HIEUH-SIOS;Lo;0;L;;;;;N;;;;;-A97C;HANGUL CHOSEONG SSANGYEORINHIEUH;Lo;0;L;;;;;N;;;;;-A980;JAVANESE SIGN PANYANGGA;Mn;0;NSM;;;;;N;;;;;-A981;JAVANESE SIGN CECAK;Mn;0;NSM;;;;;N;;;;;-A982;JAVANESE SIGN LAYAR;Mn;0;NSM;;;;;N;;;;;-A983;JAVANESE SIGN WIGNYAN;Mc;0;L;;;;;N;;;;;-A984;JAVANESE LETTER A;Lo;0;L;;;;;N;;;;;-A985;JAVANESE LETTER I KAWI;Lo;0;L;;;;;N;;;;;-A986;JAVANESE LETTER I;Lo;0;L;;;;;N;;;;;-A987;JAVANESE LETTER II;Lo;0;L;;;;;N;;;;;-A988;JAVANESE LETTER U;Lo;0;L;;;;;N;;;;;-A989;JAVANESE LETTER PA CEREK;Lo;0;L;;;;;N;;;;;-A98A;JAVANESE LETTER NGA LELET;Lo;0;L;;;;;N;;;;;-A98B;JAVANESE LETTER NGA LELET RASWADI;Lo;0;L;;;;;N;;;;;-A98C;JAVANESE LETTER E;Lo;0;L;;;;;N;;;;;-A98D;JAVANESE LETTER AI;Lo;0;L;;;;;N;;;;;-A98E;JAVANESE LETTER O;Lo;0;L;;;;;N;;;;;-A98F;JAVANESE LETTER KA;Lo;0;L;;;;;N;;;;;-A990;JAVANESE LETTER KA SASAK;Lo;0;L;;;;;N;;;;;-A991;JAVANESE LETTER KA MURDA;Lo;0;L;;;;;N;;;;;-A992;JAVANESE LETTER GA;Lo;0;L;;;;;N;;;;;-A993;JAVANESE LETTER GA MURDA;Lo;0;L;;;;;N;;;;;-A994;JAVANESE LETTER NGA;Lo;0;L;;;;;N;;;;;-A995;JAVANESE LETTER CA;Lo;0;L;;;;;N;;;;;-A996;JAVANESE LETTER CA MURDA;Lo;0;L;;;;;N;;;;;-A997;JAVANESE LETTER JA;Lo;0;L;;;;;N;;;;;-A998;JAVANESE LETTER NYA MURDA;Lo;0;L;;;;;N;;;;;-A999;JAVANESE LETTER JA MAHAPRANA;Lo;0;L;;;;;N;;;;;-A99A;JAVANESE LETTER NYA;Lo;0;L;;;;;N;;;;;-A99B;JAVANESE LETTER TTA;Lo;0;L;;;;;N;;;;;-A99C;JAVANESE LETTER TTA MAHAPRANA;Lo;0;L;;;;;N;;;;;-A99D;JAVANESE LETTER DDA;Lo;0;L;;;;;N;;;;;-A99E;JAVANESE LETTER DDA MAHAPRANA;Lo;0;L;;;;;N;;;;;-A99F;JAVANESE LETTER NA MURDA;Lo;0;L;;;;;N;;;;;-A9A0;JAVANESE LETTER TA;Lo;0;L;;;;;N;;;;;-A9A1;JAVANESE LETTER TA MURDA;Lo;0;L;;;;;N;;;;;-A9A2;JAVANESE LETTER DA;Lo;0;L;;;;;N;;;;;-A9A3;JAVANESE LETTER DA MAHAPRANA;Lo;0;L;;;;;N;;;;;-A9A4;JAVANESE LETTER NA;Lo;0;L;;;;;N;;;;;-A9A5;JAVANESE LETTER PA;Lo;0;L;;;;;N;;;;;-A9A6;JAVANESE LETTER PA MURDA;Lo;0;L;;;;;N;;;;;-A9A7;JAVANESE LETTER BA;Lo;0;L;;;;;N;;;;;-A9A8;JAVANESE LETTER BA MURDA;Lo;0;L;;;;;N;;;;;-A9A9;JAVANESE LETTER MA;Lo;0;L;;;;;N;;;;;-A9AA;JAVANESE LETTER YA;Lo;0;L;;;;;N;;;;;-A9AB;JAVANESE LETTER RA;Lo;0;L;;;;;N;;;;;-A9AC;JAVANESE LETTER RA AGUNG;Lo;0;L;;;;;N;;;;;-A9AD;JAVANESE LETTER LA;Lo;0;L;;;;;N;;;;;-A9AE;JAVANESE LETTER WA;Lo;0;L;;;;;N;;;;;-A9AF;JAVANESE LETTER SA MURDA;Lo;0;L;;;;;N;;;;;-A9B0;JAVANESE LETTER SA MAHAPRANA;Lo;0;L;;;;;N;;;;;-A9B1;JAVANESE LETTER SA;Lo;0;L;;;;;N;;;;;-A9B2;JAVANESE LETTER HA;Lo;0;L;;;;;N;;;;;-A9B3;JAVANESE SIGN CECAK TELU;Mn;7;NSM;;;;;N;;;;;-A9B4;JAVANESE VOWEL SIGN TARUNG;Mc;0;L;;;;;N;;;;;-A9B5;JAVANESE VOWEL SIGN TOLONG;Mc;0;L;;;;;N;;;;;-A9B6;JAVANESE VOWEL SIGN WULU;Mn;0;NSM;;;;;N;;;;;-A9B7;JAVANESE VOWEL SIGN WULU MELIK;Mn;0;NSM;;;;;N;;;;;-A9B8;JAVANESE VOWEL SIGN SUKU;Mn;0;NSM;;;;;N;;;;;-A9B9;JAVANESE VOWEL SIGN SUKU MENDUT;Mn;0;NSM;;;;;N;;;;;-A9BA;JAVANESE VOWEL SIGN TALING;Mc;0;L;;;;;N;;;;;-A9BB;JAVANESE VOWEL SIGN DIRGA MURE;Mc;0;L;;;;;N;;;;;-A9BC;JAVANESE VOWEL SIGN PEPET;Mn;0;NSM;;;;;N;;;;;-A9BD;JAVANESE CONSONANT SIGN KERET;Mc;0;L;;;;;N;;;;;-A9BE;JAVANESE CONSONANT SIGN PENGKAL;Mc;0;L;;;;;N;;;;;-A9BF;JAVANESE CONSONANT SIGN CAKRA;Mc;0;L;;;;;N;;;;;-A9C0;JAVANESE PANGKON;Mc;9;L;;;;;N;;;;;-A9C1;JAVANESE LEFT RERENGGAN;Po;0;L;;;;;N;;;;;-A9C2;JAVANESE RIGHT RERENGGAN;Po;0;L;;;;;N;;;;;-A9C3;JAVANESE PADA ANDAP;Po;0;L;;;;;N;;;;;-A9C4;JAVANESE PADA MADYA;Po;0;L;;;;;N;;;;;-A9C5;JAVANESE PADA LUHUR;Po;0;L;;;;;N;;;;;-A9C6;JAVANESE PADA WINDU;Po;0;L;;;;;N;;;;;-A9C7;JAVANESE PADA PANGKAT;Po;0;L;;;;;N;;;;;-A9C8;JAVANESE PADA LINGSA;Po;0;L;;;;;N;;;;;-A9C9;JAVANESE PADA LUNGSI;Po;0;L;;;;;N;;;;;-A9CA;JAVANESE PADA ADEG;Po;0;L;;;;;N;;;;;-A9CB;JAVANESE PADA ADEG ADEG;Po;0;L;;;;;N;;;;;-A9CC;JAVANESE PADA PISELEH;Po;0;L;;;;;N;;;;;-A9CD;JAVANESE TURNED PADA PISELEH;Po;0;L;;;;;N;;;;;-A9CF;JAVANESE PANGRANGKEP;Lm;0;L;;;;;N;;;;;-A9D0;JAVANESE DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-A9D1;JAVANESE DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-A9D2;JAVANESE DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-A9D3;JAVANESE DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-A9D4;JAVANESE DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-A9D5;JAVANESE DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-A9D6;JAVANESE DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-A9D7;JAVANESE DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-A9D8;JAVANESE DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-A9D9;JAVANESE DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-A9DE;JAVANESE PADA TIRTA TUMETES;Po;0;L;;;;;N;;;;;-A9DF;JAVANESE PADA ISEN-ISEN;Po;0;L;;;;;N;;;;;-A9E0;MYANMAR LETTER SHAN GHA;Lo;0;L;;;;;N;;;;;-A9E1;MYANMAR LETTER SHAN CHA;Lo;0;L;;;;;N;;;;;-A9E2;MYANMAR LETTER SHAN JHA;Lo;0;L;;;;;N;;;;;-A9E3;MYANMAR LETTER SHAN NNA;Lo;0;L;;;;;N;;;;;-A9E4;MYANMAR LETTER SHAN BHA;Lo;0;L;;;;;N;;;;;-A9E5;MYANMAR SIGN SHAN SAW;Mn;0;NSM;;;;;N;;;;;-A9E6;MYANMAR MODIFIER LETTER SHAN REDUPLICATION;Lm;0;L;;;;;N;;;;;-A9E7;MYANMAR LETTER TAI LAING NYA;Lo;0;L;;;;;N;;;;;-A9E8;MYANMAR LETTER TAI LAING FA;Lo;0;L;;;;;N;;;;;-A9E9;MYANMAR LETTER TAI LAING GA;Lo;0;L;;;;;N;;;;;-A9EA;MYANMAR LETTER TAI LAING GHA;Lo;0;L;;;;;N;;;;;-A9EB;MYANMAR LETTER TAI LAING JA;Lo;0;L;;;;;N;;;;;-A9EC;MYANMAR LETTER TAI LAING JHA;Lo;0;L;;;;;N;;;;;-A9ED;MYANMAR LETTER TAI LAING DDA;Lo;0;L;;;;;N;;;;;-A9EE;MYANMAR LETTER TAI LAING DDHA;Lo;0;L;;;;;N;;;;;-A9EF;MYANMAR LETTER TAI LAING NNA;Lo;0;L;;;;;N;;;;;-A9F0;MYANMAR TAI LAING DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-A9F1;MYANMAR TAI LAING DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-A9F2;MYANMAR TAI LAING DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-A9F3;MYANMAR TAI LAING DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-A9F4;MYANMAR TAI LAING DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-A9F5;MYANMAR TAI LAING DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-A9F6;MYANMAR TAI LAING DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-A9F7;MYANMAR TAI LAING DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-A9F8;MYANMAR TAI LAING DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-A9F9;MYANMAR TAI LAING DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-A9FA;MYANMAR LETTER TAI LAING LLA;Lo;0;L;;;;;N;;;;;-A9FB;MYANMAR LETTER TAI LAING DA;Lo;0;L;;;;;N;;;;;-A9FC;MYANMAR LETTER TAI LAING DHA;Lo;0;L;;;;;N;;;;;-A9FD;MYANMAR LETTER TAI LAING BA;Lo;0;L;;;;;N;;;;;-A9FE;MYANMAR LETTER TAI LAING BHA;Lo;0;L;;;;;N;;;;;-AA00;CHAM LETTER A;Lo;0;L;;;;;N;;;;;-AA01;CHAM LETTER I;Lo;0;L;;;;;N;;;;;-AA02;CHAM LETTER U;Lo;0;L;;;;;N;;;;;-AA03;CHAM LETTER E;Lo;0;L;;;;;N;;;;;-AA04;CHAM LETTER AI;Lo;0;L;;;;;N;;;;;-AA05;CHAM LETTER O;Lo;0;L;;;;;N;;;;;-AA06;CHAM LETTER KA;Lo;0;L;;;;;N;;;;;-AA07;CHAM LETTER KHA;Lo;0;L;;;;;N;;;;;-AA08;CHAM LETTER GA;Lo;0;L;;;;;N;;;;;-AA09;CHAM LETTER GHA;Lo;0;L;;;;;N;;;;;-AA0A;CHAM LETTER NGUE;Lo;0;L;;;;;N;;;;;-AA0B;CHAM LETTER NGA;Lo;0;L;;;;;N;;;;;-AA0C;CHAM LETTER CHA;Lo;0;L;;;;;N;;;;;-AA0D;CHAM LETTER CHHA;Lo;0;L;;;;;N;;;;;-AA0E;CHAM LETTER JA;Lo;0;L;;;;;N;;;;;-AA0F;CHAM LETTER JHA;Lo;0;L;;;;;N;;;;;-AA10;CHAM LETTER NHUE;Lo;0;L;;;;;N;;;;;-AA11;CHAM LETTER NHA;Lo;0;L;;;;;N;;;;;-AA12;CHAM LETTER NHJA;Lo;0;L;;;;;N;;;;;-AA13;CHAM LETTER TA;Lo;0;L;;;;;N;;;;;-AA14;CHAM LETTER THA;Lo;0;L;;;;;N;;;;;-AA15;CHAM LETTER DA;Lo;0;L;;;;;N;;;;;-AA16;CHAM LETTER DHA;Lo;0;L;;;;;N;;;;;-AA17;CHAM LETTER NUE;Lo;0;L;;;;;N;;;;;-AA18;CHAM LETTER NA;Lo;0;L;;;;;N;;;;;-AA19;CHAM LETTER DDA;Lo;0;L;;;;;N;;;;;-AA1A;CHAM LETTER PA;Lo;0;L;;;;;N;;;;;-AA1B;CHAM LETTER PPA;Lo;0;L;;;;;N;;;;;-AA1C;CHAM LETTER PHA;Lo;0;L;;;;;N;;;;;-AA1D;CHAM LETTER BA;Lo;0;L;;;;;N;;;;;-AA1E;CHAM LETTER BHA;Lo;0;L;;;;;N;;;;;-AA1F;CHAM LETTER MUE;Lo;0;L;;;;;N;;;;;-AA20;CHAM LETTER MA;Lo;0;L;;;;;N;;;;;-AA21;CHAM LETTER BBA;Lo;0;L;;;;;N;;;;;-AA22;CHAM LETTER YA;Lo;0;L;;;;;N;;;;;-AA23;CHAM LETTER RA;Lo;0;L;;;;;N;;;;;-AA24;CHAM LETTER LA;Lo;0;L;;;;;N;;;;;-AA25;CHAM LETTER VA;Lo;0;L;;;;;N;;;;;-AA26;CHAM LETTER SSA;Lo;0;L;;;;;N;;;;;-AA27;CHAM LETTER SA;Lo;0;L;;;;;N;;;;;-AA28;CHAM LETTER HA;Lo;0;L;;;;;N;;;;;-AA29;CHAM VOWEL SIGN AA;Mn;0;NSM;;;;;N;;;;;-AA2A;CHAM VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-AA2B;CHAM VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-AA2C;CHAM VOWEL SIGN EI;Mn;0;NSM;;;;;N;;;;;-AA2D;CHAM VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-AA2E;CHAM VOWEL SIGN OE;Mn;0;NSM;;;;;N;;;;;-AA2F;CHAM VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-AA30;CHAM VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-AA31;CHAM VOWEL SIGN AU;Mn;0;NSM;;;;;N;;;;;-AA32;CHAM VOWEL SIGN UE;Mn;0;NSM;;;;;N;;;;;-AA33;CHAM CONSONANT SIGN YA;Mc;0;L;;;;;N;;;;;-AA34;CHAM CONSONANT SIGN RA;Mc;0;L;;;;;N;;;;;-AA35;CHAM CONSONANT SIGN LA;Mn;0;NSM;;;;;N;;;;;-AA36;CHAM CONSONANT SIGN WA;Mn;0;NSM;;;;;N;;;;;-AA40;CHAM LETTER FINAL K;Lo;0;L;;;;;N;;;;;-AA41;CHAM LETTER FINAL G;Lo;0;L;;;;;N;;;;;-AA42;CHAM LETTER FINAL NG;Lo;0;L;;;;;N;;;;;-AA43;CHAM CONSONANT SIGN FINAL NG;Mn;0;NSM;;;;;N;;;;;-AA44;CHAM LETTER FINAL CH;Lo;0;L;;;;;N;;;;;-AA45;CHAM LETTER FINAL T;Lo;0;L;;;;;N;;;;;-AA46;CHAM LETTER FINAL N;Lo;0;L;;;;;N;;;;;-AA47;CHAM LETTER FINAL P;Lo;0;L;;;;;N;;;;;-AA48;CHAM LETTER FINAL Y;Lo;0;L;;;;;N;;;;;-AA49;CHAM LETTER FINAL R;Lo;0;L;;;;;N;;;;;-AA4A;CHAM LETTER FINAL L;Lo;0;L;;;;;N;;;;;-AA4B;CHAM LETTER FINAL SS;Lo;0;L;;;;;N;;;;;-AA4C;CHAM CONSONANT SIGN FINAL M;Mn;0;NSM;;;;;N;;;;;-AA4D;CHAM CONSONANT SIGN FINAL H;Mc;0;L;;;;;N;;;;;-AA50;CHAM DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-AA51;CHAM DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-AA52;CHAM DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-AA53;CHAM DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-AA54;CHAM DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-AA55;CHAM DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-AA56;CHAM DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-AA57;CHAM DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-AA58;CHAM DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-AA59;CHAM DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-AA5C;CHAM PUNCTUATION SPIRAL;Po;0;L;;;;;N;;;;;-AA5D;CHAM PUNCTUATION DANDA;Po;0;L;;;;;N;;;;;-AA5E;CHAM PUNCTUATION DOUBLE DANDA;Po;0;L;;;;;N;;;;;-AA5F;CHAM PUNCTUATION TRIPLE DANDA;Po;0;L;;;;;N;;;;;-AA60;MYANMAR LETTER KHAMTI GA;Lo;0;L;;;;;N;;;;;-AA61;MYANMAR LETTER KHAMTI CA;Lo;0;L;;;;;N;;;;;-AA62;MYANMAR LETTER KHAMTI CHA;Lo;0;L;;;;;N;;;;;-AA63;MYANMAR LETTER KHAMTI JA;Lo;0;L;;;;;N;;;;;-AA64;MYANMAR LETTER KHAMTI JHA;Lo;0;L;;;;;N;;;;;-AA65;MYANMAR LETTER KHAMTI NYA;Lo;0;L;;;;;N;;;;;-AA66;MYANMAR LETTER KHAMTI TTA;Lo;0;L;;;;;N;;;;;-AA67;MYANMAR LETTER KHAMTI TTHA;Lo;0;L;;;;;N;;;;;-AA68;MYANMAR LETTER KHAMTI DDA;Lo;0;L;;;;;N;;;;;-AA69;MYANMAR LETTER KHAMTI DDHA;Lo;0;L;;;;;N;;;;;-AA6A;MYANMAR LETTER KHAMTI DHA;Lo;0;L;;;;;N;;;;;-AA6B;MYANMAR LETTER KHAMTI NA;Lo;0;L;;;;;N;;;;;-AA6C;MYANMAR LETTER KHAMTI SA;Lo;0;L;;;;;N;;;;;-AA6D;MYANMAR LETTER KHAMTI HA;Lo;0;L;;;;;N;;;;;-AA6E;MYANMAR LETTER KHAMTI HHA;Lo;0;L;;;;;N;;;;;-AA6F;MYANMAR LETTER KHAMTI FA;Lo;0;L;;;;;N;;;;;-AA70;MYANMAR MODIFIER LETTER KHAMTI REDUPLICATION;Lm;0;L;;;;;N;;;;;-AA71;MYANMAR LETTER KHAMTI XA;Lo;0;L;;;;;N;;;;;-AA72;MYANMAR LETTER KHAMTI ZA;Lo;0;L;;;;;N;;;;;-AA73;MYANMAR LETTER KHAMTI RA;Lo;0;L;;;;;N;;;;;-AA74;MYANMAR LOGOGRAM KHAMTI OAY;Lo;0;L;;;;;N;;;;;-AA75;MYANMAR LOGOGRAM KHAMTI QN;Lo;0;L;;;;;N;;;;;-AA76;MYANMAR LOGOGRAM KHAMTI HM;Lo;0;L;;;;;N;;;;;-AA77;MYANMAR SYMBOL AITON EXCLAMATION;So;0;L;;;;;N;;;;;-AA78;MYANMAR SYMBOL AITON ONE;So;0;L;;;;;N;;;;;-AA79;MYANMAR SYMBOL AITON TWO;So;0;L;;;;;N;;;;;-AA7A;MYANMAR LETTER AITON RA;Lo;0;L;;;;;N;;;;;-AA7B;MYANMAR SIGN PAO KAREN TONE;Mc;0;L;;;;;N;;;;;-AA7C;MYANMAR SIGN TAI LAING TONE-2;Mn;0;NSM;;;;;N;;;;;-AA7D;MYANMAR SIGN TAI LAING TONE-5;Mc;0;L;;;;;N;;;;;-AA7E;MYANMAR LETTER SHWE PALAUNG CHA;Lo;0;L;;;;;N;;;;;-AA7F;MYANMAR LETTER SHWE PALAUNG SHA;Lo;0;L;;;;;N;;;;;-AA80;TAI VIET LETTER LOW KO;Lo;0;L;;;;;N;;;;;-AA81;TAI VIET LETTER HIGH KO;Lo;0;L;;;;;N;;;;;-AA82;TAI VIET LETTER LOW KHO;Lo;0;L;;;;;N;;;;;-AA83;TAI VIET LETTER HIGH KHO;Lo;0;L;;;;;N;;;;;-AA84;TAI VIET LETTER LOW KHHO;Lo;0;L;;;;;N;;;;;-AA85;TAI VIET LETTER HIGH KHHO;Lo;0;L;;;;;N;;;;;-AA86;TAI VIET LETTER LOW GO;Lo;0;L;;;;;N;;;;;-AA87;TAI VIET LETTER HIGH GO;Lo;0;L;;;;;N;;;;;-AA88;TAI VIET LETTER LOW NGO;Lo;0;L;;;;;N;;;;;-AA89;TAI VIET LETTER HIGH NGO;Lo;0;L;;;;;N;;;;;-AA8A;TAI VIET LETTER LOW CO;Lo;0;L;;;;;N;;;;;-AA8B;TAI VIET LETTER HIGH CO;Lo;0;L;;;;;N;;;;;-AA8C;TAI VIET LETTER LOW CHO;Lo;0;L;;;;;N;;;;;-AA8D;TAI VIET LETTER HIGH CHO;Lo;0;L;;;;;N;;;;;-AA8E;TAI VIET LETTER LOW SO;Lo;0;L;;;;;N;;;;;-AA8F;TAI VIET LETTER HIGH SO;Lo;0;L;;;;;N;;;;;-AA90;TAI VIET LETTER LOW NYO;Lo;0;L;;;;;N;;;;;-AA91;TAI VIET LETTER HIGH NYO;Lo;0;L;;;;;N;;;;;-AA92;TAI VIET LETTER LOW DO;Lo;0;L;;;;;N;;;;;-AA93;TAI VIET LETTER HIGH DO;Lo;0;L;;;;;N;;;;;-AA94;TAI VIET LETTER LOW TO;Lo;0;L;;;;;N;;;;;-AA95;TAI VIET LETTER HIGH TO;Lo;0;L;;;;;N;;;;;-AA96;TAI VIET LETTER LOW THO;Lo;0;L;;;;;N;;;;;-AA97;TAI VIET LETTER HIGH THO;Lo;0;L;;;;;N;;;;;-AA98;TAI VIET LETTER LOW NO;Lo;0;L;;;;;N;;;;;-AA99;TAI VIET LETTER HIGH NO;Lo;0;L;;;;;N;;;;;-AA9A;TAI VIET LETTER LOW BO;Lo;0;L;;;;;N;;;;;-AA9B;TAI VIET LETTER HIGH BO;Lo;0;L;;;;;N;;;;;-AA9C;TAI VIET LETTER LOW PO;Lo;0;L;;;;;N;;;;;-AA9D;TAI VIET LETTER HIGH PO;Lo;0;L;;;;;N;;;;;-AA9E;TAI VIET LETTER LOW PHO;Lo;0;L;;;;;N;;;;;-AA9F;TAI VIET LETTER HIGH PHO;Lo;0;L;;;;;N;;;;;-AAA0;TAI VIET LETTER LOW FO;Lo;0;L;;;;;N;;;;;-AAA1;TAI VIET LETTER HIGH FO;Lo;0;L;;;;;N;;;;;-AAA2;TAI VIET LETTER LOW MO;Lo;0;L;;;;;N;;;;;-AAA3;TAI VIET LETTER HIGH MO;Lo;0;L;;;;;N;;;;;-AAA4;TAI VIET LETTER LOW YO;Lo;0;L;;;;;N;;;;;-AAA5;TAI VIET LETTER HIGH YO;Lo;0;L;;;;;N;;;;;-AAA6;TAI VIET LETTER LOW RO;Lo;0;L;;;;;N;;;;;-AAA7;TAI VIET LETTER HIGH RO;Lo;0;L;;;;;N;;;;;-AAA8;TAI VIET LETTER LOW LO;Lo;0;L;;;;;N;;;;;-AAA9;TAI VIET LETTER HIGH LO;Lo;0;L;;;;;N;;;;;-AAAA;TAI VIET LETTER LOW VO;Lo;0;L;;;;;N;;;;;-AAAB;TAI VIET LETTER HIGH VO;Lo;0;L;;;;;N;;;;;-AAAC;TAI VIET LETTER LOW HO;Lo;0;L;;;;;N;;;;;-AAAD;TAI VIET LETTER HIGH HO;Lo;0;L;;;;;N;;;;;-AAAE;TAI VIET LETTER LOW O;Lo;0;L;;;;;N;;;;;-AAAF;TAI VIET LETTER HIGH O;Lo;0;L;;;;;N;;;;;-AAB0;TAI VIET MAI KANG;Mn;230;NSM;;;;;N;;;;;-AAB1;TAI VIET VOWEL AA;Lo;0;L;;;;;N;;;;;-AAB2;TAI VIET VOWEL I;Mn;230;NSM;;;;;N;;;;;-AAB3;TAI VIET VOWEL UE;Mn;230;NSM;;;;;N;;;;;-AAB4;TAI VIET VOWEL U;Mn;220;NSM;;;;;N;;;;;-AAB5;TAI VIET VOWEL E;Lo;0;L;;;;;N;;;;;-AAB6;TAI VIET VOWEL O;Lo;0;L;;;;;N;;;;;-AAB7;TAI VIET MAI KHIT;Mn;230;NSM;;;;;N;;;;;-AAB8;TAI VIET VOWEL IA;Mn;230;NSM;;;;;N;;;;;-AAB9;TAI VIET VOWEL UEA;Lo;0;L;;;;;N;;;;;-AABA;TAI VIET VOWEL UA;Lo;0;L;;;;;N;;;;;-AABB;TAI VIET VOWEL AUE;Lo;0;L;;;;;N;;;;;-AABC;TAI VIET VOWEL AY;Lo;0;L;;;;;N;;;;;-AABD;TAI VIET VOWEL AN;Lo;0;L;;;;;N;;;;;-AABE;TAI VIET VOWEL AM;Mn;230;NSM;;;;;N;;;;;-AABF;TAI VIET TONE MAI EK;Mn;230;NSM;;;;;N;;;;;-AAC0;TAI VIET TONE MAI NUENG;Lo;0;L;;;;;N;;;;;-AAC1;TAI VIET TONE MAI THO;Mn;230;NSM;;;;;N;;;;;-AAC2;TAI VIET TONE MAI SONG;Lo;0;L;;;;;N;;;;;-AADB;TAI VIET SYMBOL KON;Lo;0;L;;;;;N;;;;;-AADC;TAI VIET SYMBOL NUENG;Lo;0;L;;;;;N;;;;;-AADD;TAI VIET SYMBOL SAM;Lm;0;L;;;;;N;;;;;-AADE;TAI VIET SYMBOL HO HOI;Po;0;L;;;;;N;;;;;-AADF;TAI VIET SYMBOL KOI KOI;Po;0;L;;;;;N;;;;;-AAE0;MEETEI MAYEK LETTER E;Lo;0;L;;;;;N;;;;;-AAE1;MEETEI MAYEK LETTER O;Lo;0;L;;;;;N;;;;;-AAE2;MEETEI MAYEK LETTER CHA;Lo;0;L;;;;;N;;;;;-AAE3;MEETEI MAYEK LETTER NYA;Lo;0;L;;;;;N;;;;;-AAE4;MEETEI MAYEK LETTER TTA;Lo;0;L;;;;;N;;;;;-AAE5;MEETEI MAYEK LETTER TTHA;Lo;0;L;;;;;N;;;;;-AAE6;MEETEI MAYEK LETTER DDA;Lo;0;L;;;;;N;;;;;-AAE7;MEETEI MAYEK LETTER DDHA;Lo;0;L;;;;;N;;;;;-AAE8;MEETEI MAYEK LETTER NNA;Lo;0;L;;;;;N;;;;;-AAE9;MEETEI MAYEK LETTER SHA;Lo;0;L;;;;;N;;;;;-AAEA;MEETEI MAYEK LETTER SSA;Lo;0;L;;;;;N;;;;;-AAEB;MEETEI MAYEK VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-AAEC;MEETEI MAYEK VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-AAED;MEETEI MAYEK VOWEL SIGN AAI;Mn;0;NSM;;;;;N;;;;;-AAEE;MEETEI MAYEK VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-AAEF;MEETEI MAYEK VOWEL SIGN AAU;Mc;0;L;;;;;N;;;;;-AAF0;MEETEI MAYEK CHEIKHAN;Po;0;L;;;;;N;;;;;-AAF1;MEETEI MAYEK AHANG KHUDAM;Po;0;L;;;;;N;;;;;-AAF2;MEETEI MAYEK ANJI;Lo;0;L;;;;;N;;;;;-AAF3;MEETEI MAYEK SYLLABLE REPETITION MARK;Lm;0;L;;;;;N;;;;;-AAF4;MEETEI MAYEK WORD REPETITION MARK;Lm;0;L;;;;;N;;;;;-AAF5;MEETEI MAYEK VOWEL SIGN VISARGA;Mc;0;L;;;;;N;;;;;-AAF6;MEETEI MAYEK VIRAMA;Mn;9;NSM;;;;;N;;;;;-AB01;ETHIOPIC SYLLABLE TTHU;Lo;0;L;;;;;N;;;;;-AB02;ETHIOPIC SYLLABLE TTHI;Lo;0;L;;;;;N;;;;;-AB03;ETHIOPIC SYLLABLE TTHAA;Lo;0;L;;;;;N;;;;;-AB04;ETHIOPIC SYLLABLE TTHEE;Lo;0;L;;;;;N;;;;;-AB05;ETHIOPIC SYLLABLE TTHE;Lo;0;L;;;;;N;;;;;-AB06;ETHIOPIC SYLLABLE TTHO;Lo;0;L;;;;;N;;;;;-AB09;ETHIOPIC SYLLABLE DDHU;Lo;0;L;;;;;N;;;;;-AB0A;ETHIOPIC SYLLABLE DDHI;Lo;0;L;;;;;N;;;;;-AB0B;ETHIOPIC SYLLABLE DDHAA;Lo;0;L;;;;;N;;;;;-AB0C;ETHIOPIC SYLLABLE DDHEE;Lo;0;L;;;;;N;;;;;-AB0D;ETHIOPIC SYLLABLE DDHE;Lo;0;L;;;;;N;;;;;-AB0E;ETHIOPIC SYLLABLE DDHO;Lo;0;L;;;;;N;;;;;-AB11;ETHIOPIC SYLLABLE DZU;Lo;0;L;;;;;N;;;;;-AB12;ETHIOPIC SYLLABLE DZI;Lo;0;L;;;;;N;;;;;-AB13;ETHIOPIC SYLLABLE DZAA;Lo;0;L;;;;;N;;;;;-AB14;ETHIOPIC SYLLABLE DZEE;Lo;0;L;;;;;N;;;;;-AB15;ETHIOPIC SYLLABLE DZE;Lo;0;L;;;;;N;;;;;-AB16;ETHIOPIC SYLLABLE DZO;Lo;0;L;;;;;N;;;;;-AB20;ETHIOPIC SYLLABLE CCHHA;Lo;0;L;;;;;N;;;;;-AB21;ETHIOPIC SYLLABLE CCHHU;Lo;0;L;;;;;N;;;;;-AB22;ETHIOPIC SYLLABLE CCHHI;Lo;0;L;;;;;N;;;;;-AB23;ETHIOPIC SYLLABLE CCHHAA;Lo;0;L;;;;;N;;;;;-AB24;ETHIOPIC SYLLABLE CCHHEE;Lo;0;L;;;;;N;;;;;-AB25;ETHIOPIC SYLLABLE CCHHE;Lo;0;L;;;;;N;;;;;-AB26;ETHIOPIC SYLLABLE CCHHO;Lo;0;L;;;;;N;;;;;-AB28;ETHIOPIC SYLLABLE BBA;Lo;0;L;;;;;N;;;;;-AB29;ETHIOPIC SYLLABLE BBU;Lo;0;L;;;;;N;;;;;-AB2A;ETHIOPIC SYLLABLE BBI;Lo;0;L;;;;;N;;;;;-AB2B;ETHIOPIC SYLLABLE BBAA;Lo;0;L;;;;;N;;;;;-AB2C;ETHIOPIC SYLLABLE BBEE;Lo;0;L;;;;;N;;;;;-AB2D;ETHIOPIC SYLLABLE BBE;Lo;0;L;;;;;N;;;;;-AB2E;ETHIOPIC SYLLABLE BBO;Lo;0;L;;;;;N;;;;;-AB30;LATIN SMALL LETTER BARRED ALPHA;Ll;0;L;;;;;N;;;;;-AB31;LATIN SMALL LETTER A REVERSED-SCHWA;Ll;0;L;;;;;N;;;;;-AB32;LATIN SMALL LETTER BLACKLETTER E;Ll;0;L;;;;;N;;;;;-AB33;LATIN SMALL LETTER BARRED E;Ll;0;L;;;;;N;;;;;-AB34;LATIN SMALL LETTER E WITH FLOURISH;Ll;0;L;;;;;N;;;;;-AB35;LATIN SMALL LETTER LENIS F;Ll;0;L;;;;;N;;;;;-AB36;LATIN SMALL LETTER SCRIPT G WITH CROSSED-TAIL;Ll;0;L;;;;;N;;;;;-AB37;LATIN SMALL LETTER L WITH INVERTED LAZY S;Ll;0;L;;;;;N;;;;;-AB38;LATIN SMALL LETTER L WITH DOUBLE MIDDLE TILDE;Ll;0;L;;;;;N;;;;;-AB39;LATIN SMALL LETTER L WITH MIDDLE RING;Ll;0;L;;;;;N;;;;;-AB3A;LATIN SMALL LETTER M WITH CROSSED-TAIL;Ll;0;L;;;;;N;;;;;-AB3B;LATIN SMALL LETTER N WITH CROSSED-TAIL;Ll;0;L;;;;;N;;;;;-AB3C;LATIN SMALL LETTER ENG WITH CROSSED-TAIL;Ll;0;L;;;;;N;;;;;-AB3D;LATIN SMALL LETTER BLACKLETTER O;Ll;0;L;;;;;N;;;;;-AB3E;LATIN SMALL LETTER BLACKLETTER O WITH STROKE;Ll;0;L;;;;;N;;;;;-AB3F;LATIN SMALL LETTER OPEN O WITH STROKE;Ll;0;L;;;;;N;;;;;-AB40;LATIN SMALL LETTER INVERTED OE;Ll;0;L;;;;;N;;;;;-AB41;LATIN SMALL LETTER TURNED OE WITH STROKE;Ll;0;L;;;;;N;;;;;-AB42;LATIN SMALL LETTER TURNED OE WITH HORIZONTAL STROKE;Ll;0;L;;;;;N;;;;;-AB43;LATIN SMALL LETTER TURNED O OPEN-O;Ll;0;L;;;;;N;;;;;-AB44;LATIN SMALL LETTER TURNED O OPEN-O WITH STROKE;Ll;0;L;;;;;N;;;;;-AB45;LATIN SMALL LETTER STIRRUP R;Ll;0;L;;;;;N;;;;;-AB46;LATIN LETTER SMALL CAPITAL R WITH RIGHT LEG;Ll;0;L;;;;;N;;;;;-AB47;LATIN SMALL LETTER R WITHOUT HANDLE;Ll;0;L;;;;;N;;;;;-AB48;LATIN SMALL LETTER DOUBLE R;Ll;0;L;;;;;N;;;;;-AB49;LATIN SMALL LETTER R WITH CROSSED-TAIL;Ll;0;L;;;;;N;;;;;-AB4A;LATIN SMALL LETTER DOUBLE R WITH CROSSED-TAIL;Ll;0;L;;;;;N;;;;;-AB4B;LATIN SMALL LETTER SCRIPT R;Ll;0;L;;;;;N;;;;;-AB4C;LATIN SMALL LETTER SCRIPT R WITH RING;Ll;0;L;;;;;N;;;;;-AB4D;LATIN SMALL LETTER BASELINE ESH;Ll;0;L;;;;;N;;;;;-AB4E;LATIN SMALL LETTER U WITH SHORT RIGHT LEG;Ll;0;L;;;;;N;;;;;-AB4F;LATIN SMALL LETTER U BAR WITH SHORT RIGHT LEG;Ll;0;L;;;;;N;;;;;-AB50;LATIN SMALL LETTER UI;Ll;0;L;;;;;N;;;;;-AB51;LATIN SMALL LETTER TURNED UI;Ll;0;L;;;;;N;;;;;-AB52;LATIN SMALL LETTER U WITH LEFT HOOK;Ll;0;L;;;;;N;;;;;-AB53;LATIN SMALL LETTER CHI;Ll;0;L;;;;;N;;;;;-AB54;LATIN SMALL LETTER CHI WITH LOW RIGHT RING;Ll;0;L;;;;;N;;;;;-AB55;LATIN SMALL LETTER CHI WITH LOW LEFT SERIF;Ll;0;L;;;;;N;;;;;-AB56;LATIN SMALL LETTER X WITH LOW RIGHT RING;Ll;0;L;;;;;N;;;;;-AB57;LATIN SMALL LETTER X WITH LONG LEFT LEG;Ll;0;L;;;;;N;;;;;-AB58;LATIN SMALL LETTER X WITH LONG LEFT LEG AND LOW RIGHT RING;Ll;0;L;;;;;N;;;;;-AB59;LATIN SMALL LETTER X WITH LONG LEFT LEG WITH SERIF;Ll;0;L;;;;;N;;;;;-AB5A;LATIN SMALL LETTER Y WITH SHORT RIGHT LEG;Ll;0;L;;;;;N;;;;;-AB5B;MODIFIER BREVE WITH INVERTED BREVE;Sk;0;L;;;;;N;;;;;-AB5C;MODIFIER LETTER SMALL HENG;Lm;0;L;<super> A727;;;;N;;;;;-AB5D;MODIFIER LETTER SMALL L WITH INVERTED LAZY S;Lm;0;L;<super> AB37;;;;N;;;;;-AB5E;MODIFIER LETTER SMALL L WITH MIDDLE TILDE;Lm;0;L;<super> 026B;;;;N;;;;;-AB5F;MODIFIER LETTER SMALL U WITH LEFT HOOK;Lm;0;L;<super> AB52;;;;N;;;;;-AB64;LATIN SMALL LETTER INVERTED ALPHA;Ll;0;L;;;;;N;;;;;-AB65;GREEK LETTER SMALL CAPITAL OMEGA;Ll;0;L;;;;;N;;;;;-ABC0;MEETEI MAYEK LETTER KOK;Lo;0;L;;;;;N;;;;;-ABC1;MEETEI MAYEK LETTER SAM;Lo;0;L;;;;;N;;;;;-ABC2;MEETEI MAYEK LETTER LAI;Lo;0;L;;;;;N;;;;;-ABC3;MEETEI MAYEK LETTER MIT;Lo;0;L;;;;;N;;;;;-ABC4;MEETEI MAYEK LETTER PA;Lo;0;L;;;;;N;;;;;-ABC5;MEETEI MAYEK LETTER NA;Lo;0;L;;;;;N;;;;;-ABC6;MEETEI MAYEK LETTER CHIL;Lo;0;L;;;;;N;;;;;-ABC7;MEETEI MAYEK LETTER TIL;Lo;0;L;;;;;N;;;;;-ABC8;MEETEI MAYEK LETTER KHOU;Lo;0;L;;;;;N;;;;;-ABC9;MEETEI MAYEK LETTER NGOU;Lo;0;L;;;;;N;;;;;-ABCA;MEETEI MAYEK LETTER THOU;Lo;0;L;;;;;N;;;;;-ABCB;MEETEI MAYEK LETTER WAI;Lo;0;L;;;;;N;;;;;-ABCC;MEETEI MAYEK LETTER YANG;Lo;0;L;;;;;N;;;;;-ABCD;MEETEI MAYEK LETTER HUK;Lo;0;L;;;;;N;;;;;-ABCE;MEETEI MAYEK LETTER UN;Lo;0;L;;;;;N;;;;;-ABCF;MEETEI MAYEK LETTER I;Lo;0;L;;;;;N;;;;;-ABD0;MEETEI MAYEK LETTER PHAM;Lo;0;L;;;;;N;;;;;-ABD1;MEETEI MAYEK LETTER ATIYA;Lo;0;L;;;;;N;;;;;-ABD2;MEETEI MAYEK LETTER GOK;Lo;0;L;;;;;N;;;;;-ABD3;MEETEI MAYEK LETTER JHAM;Lo;0;L;;;;;N;;;;;-ABD4;MEETEI MAYEK LETTER RAI;Lo;0;L;;;;;N;;;;;-ABD5;MEETEI MAYEK LETTER BA;Lo;0;L;;;;;N;;;;;-ABD6;MEETEI MAYEK LETTER JIL;Lo;0;L;;;;;N;;;;;-ABD7;MEETEI MAYEK LETTER DIL;Lo;0;L;;;;;N;;;;;-ABD8;MEETEI MAYEK LETTER GHOU;Lo;0;L;;;;;N;;;;;-ABD9;MEETEI MAYEK LETTER DHOU;Lo;0;L;;;;;N;;;;;-ABDA;MEETEI MAYEK LETTER BHAM;Lo;0;L;;;;;N;;;;;-ABDB;MEETEI MAYEK LETTER KOK LONSUM;Lo;0;L;;;;;N;;;;;-ABDC;MEETEI MAYEK LETTER LAI LONSUM;Lo;0;L;;;;;N;;;;;-ABDD;MEETEI MAYEK LETTER MIT LONSUM;Lo;0;L;;;;;N;;;;;-ABDE;MEETEI MAYEK LETTER PA LONSUM;Lo;0;L;;;;;N;;;;;-ABDF;MEETEI MAYEK LETTER NA LONSUM;Lo;0;L;;;;;N;;;;;-ABE0;MEETEI MAYEK LETTER TIL LONSUM;Lo;0;L;;;;;N;;;;;-ABE1;MEETEI MAYEK LETTER NGOU LONSUM;Lo;0;L;;;;;N;;;;;-ABE2;MEETEI MAYEK LETTER I LONSUM;Lo;0;L;;;;;N;;;;;-ABE3;MEETEI MAYEK VOWEL SIGN ONAP;Mc;0;L;;;;;N;;;;;-ABE4;MEETEI MAYEK VOWEL SIGN INAP;Mc;0;L;;;;;N;;;;;-ABE5;MEETEI MAYEK VOWEL SIGN ANAP;Mn;0;NSM;;;;;N;;;;;-ABE6;MEETEI MAYEK VOWEL SIGN YENAP;Mc;0;L;;;;;N;;;;;-ABE7;MEETEI MAYEK VOWEL SIGN SOUNAP;Mc;0;L;;;;;N;;;;;-ABE8;MEETEI MAYEK VOWEL SIGN UNAP;Mn;0;NSM;;;;;N;;;;;-ABE9;MEETEI MAYEK VOWEL SIGN CHEINAP;Mc;0;L;;;;;N;;;;;-ABEA;MEETEI MAYEK VOWEL SIGN NUNG;Mc;0;L;;;;;N;;;;;-ABEB;MEETEI MAYEK CHEIKHEI;Po;0;L;;;;;N;;;;;-ABEC;MEETEI MAYEK LUM IYEK;Mc;0;L;;;;;N;;;;;-ABED;MEETEI MAYEK APUN IYEK;Mn;9;NSM;;;;;N;;;;;-ABF0;MEETEI MAYEK DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-ABF1;MEETEI MAYEK DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-ABF2;MEETEI MAYEK DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-ABF3;MEETEI MAYEK DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-ABF4;MEETEI MAYEK DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-ABF5;MEETEI MAYEK DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-ABF6;MEETEI MAYEK DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-ABF7;MEETEI MAYEK DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-ABF8;MEETEI MAYEK DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-ABF9;MEETEI MAYEK DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-AC00;<Hangul Syllable, First>;Lo;0;L;;;;;N;;;;;-D7A3;<Hangul Syllable, Last>;Lo;0;L;;;;;N;;;;;-D7B0;HANGUL JUNGSEONG O-YEO;Lo;0;L;;;;;N;;;;;-D7B1;HANGUL JUNGSEONG O-O-I;Lo;0;L;;;;;N;;;;;-D7B2;HANGUL JUNGSEONG YO-A;Lo;0;L;;;;;N;;;;;-D7B3;HANGUL JUNGSEONG YO-AE;Lo;0;L;;;;;N;;;;;-D7B4;HANGUL JUNGSEONG YO-EO;Lo;0;L;;;;;N;;;;;-D7B5;HANGUL JUNGSEONG U-YEO;Lo;0;L;;;;;N;;;;;-D7B6;HANGUL JUNGSEONG U-I-I;Lo;0;L;;;;;N;;;;;-D7B7;HANGUL JUNGSEONG YU-AE;Lo;0;L;;;;;N;;;;;-D7B8;HANGUL JUNGSEONG YU-O;Lo;0;L;;;;;N;;;;;-D7B9;HANGUL JUNGSEONG EU-A;Lo;0;L;;;;;N;;;;;-D7BA;HANGUL JUNGSEONG EU-EO;Lo;0;L;;;;;N;;;;;-D7BB;HANGUL JUNGSEONG EU-E;Lo;0;L;;;;;N;;;;;-D7BC;HANGUL JUNGSEONG EU-O;Lo;0;L;;;;;N;;;;;-D7BD;HANGUL JUNGSEONG I-YA-O;Lo;0;L;;;;;N;;;;;-D7BE;HANGUL JUNGSEONG I-YAE;Lo;0;L;;;;;N;;;;;-D7BF;HANGUL JUNGSEONG I-YEO;Lo;0;L;;;;;N;;;;;-D7C0;HANGUL JUNGSEONG I-YE;Lo;0;L;;;;;N;;;;;-D7C1;HANGUL JUNGSEONG I-O-I;Lo;0;L;;;;;N;;;;;-D7C2;HANGUL JUNGSEONG I-YO;Lo;0;L;;;;;N;;;;;-D7C3;HANGUL JUNGSEONG I-YU;Lo;0;L;;;;;N;;;;;-D7C4;HANGUL JUNGSEONG I-I;Lo;0;L;;;;;N;;;;;-D7C5;HANGUL JUNGSEONG ARAEA-A;Lo;0;L;;;;;N;;;;;-D7C6;HANGUL JUNGSEONG ARAEA-E;Lo;0;L;;;;;N;;;;;-D7CB;HANGUL JONGSEONG NIEUN-RIEUL;Lo;0;L;;;;;N;;;;;-D7CC;HANGUL JONGSEONG NIEUN-CHIEUCH;Lo;0;L;;;;;N;;;;;-D7CD;HANGUL JONGSEONG SSANGTIKEUT;Lo;0;L;;;;;N;;;;;-D7CE;HANGUL JONGSEONG SSANGTIKEUT-PIEUP;Lo;0;L;;;;;N;;;;;-D7CF;HANGUL JONGSEONG TIKEUT-PIEUP;Lo;0;L;;;;;N;;;;;-D7D0;HANGUL JONGSEONG TIKEUT-SIOS;Lo;0;L;;;;;N;;;;;-D7D1;HANGUL JONGSEONG TIKEUT-SIOS-KIYEOK;Lo;0;L;;;;;N;;;;;-D7D2;HANGUL JONGSEONG TIKEUT-CIEUC;Lo;0;L;;;;;N;;;;;-D7D3;HANGUL JONGSEONG TIKEUT-CHIEUCH;Lo;0;L;;;;;N;;;;;-D7D4;HANGUL JONGSEONG TIKEUT-THIEUTH;Lo;0;L;;;;;N;;;;;-D7D5;HANGUL JONGSEONG RIEUL-SSANGKIYEOK;Lo;0;L;;;;;N;;;;;-D7D6;HANGUL JONGSEONG RIEUL-KIYEOK-HIEUH;Lo;0;L;;;;;N;;;;;-D7D7;HANGUL JONGSEONG SSANGRIEUL-KHIEUKH;Lo;0;L;;;;;N;;;;;-D7D8;HANGUL JONGSEONG RIEUL-MIEUM-HIEUH;Lo;0;L;;;;;N;;;;;-D7D9;HANGUL JONGSEONG RIEUL-PIEUP-TIKEUT;Lo;0;L;;;;;N;;;;;-D7DA;HANGUL JONGSEONG RIEUL-PIEUP-PHIEUPH;Lo;0;L;;;;;N;;;;;-D7DB;HANGUL JONGSEONG RIEUL-YESIEUNG;Lo;0;L;;;;;N;;;;;-D7DC;HANGUL JONGSEONG RIEUL-YEORINHIEUH-HIEUH;Lo;0;L;;;;;N;;;;;-D7DD;HANGUL JONGSEONG KAPYEOUNRIEUL;Lo;0;L;;;;;N;;;;;-D7DE;HANGUL JONGSEONG MIEUM-NIEUN;Lo;0;L;;;;;N;;;;;-D7DF;HANGUL JONGSEONG MIEUM-SSANGNIEUN;Lo;0;L;;;;;N;;;;;-D7E0;HANGUL JONGSEONG SSANGMIEUM;Lo;0;L;;;;;N;;;;;-D7E1;HANGUL JONGSEONG MIEUM-PIEUP-SIOS;Lo;0;L;;;;;N;;;;;-D7E2;HANGUL JONGSEONG MIEUM-CIEUC;Lo;0;L;;;;;N;;;;;-D7E3;HANGUL JONGSEONG PIEUP-TIKEUT;Lo;0;L;;;;;N;;;;;-D7E4;HANGUL JONGSEONG PIEUP-RIEUL-PHIEUPH;Lo;0;L;;;;;N;;;;;-D7E5;HANGUL JONGSEONG PIEUP-MIEUM;Lo;0;L;;;;;N;;;;;-D7E6;HANGUL JONGSEONG SSANGPIEUP;Lo;0;L;;;;;N;;;;;-D7E7;HANGUL JONGSEONG PIEUP-SIOS-TIKEUT;Lo;0;L;;;;;N;;;;;-D7E8;HANGUL JONGSEONG PIEUP-CIEUC;Lo;0;L;;;;;N;;;;;-D7E9;HANGUL JONGSEONG PIEUP-CHIEUCH;Lo;0;L;;;;;N;;;;;-D7EA;HANGUL JONGSEONG SIOS-MIEUM;Lo;0;L;;;;;N;;;;;-D7EB;HANGUL JONGSEONG SIOS-KAPYEOUNPIEUP;Lo;0;L;;;;;N;;;;;-D7EC;HANGUL JONGSEONG SSANGSIOS-KIYEOK;Lo;0;L;;;;;N;;;;;-D7ED;HANGUL JONGSEONG SSANGSIOS-TIKEUT;Lo;0;L;;;;;N;;;;;-D7EE;HANGUL JONGSEONG SIOS-PANSIOS;Lo;0;L;;;;;N;;;;;-D7EF;HANGUL JONGSEONG SIOS-CIEUC;Lo;0;L;;;;;N;;;;;-D7F0;HANGUL JONGSEONG SIOS-CHIEUCH;Lo;0;L;;;;;N;;;;;-D7F1;HANGUL JONGSEONG SIOS-THIEUTH;Lo;0;L;;;;;N;;;;;-D7F2;HANGUL JONGSEONG SIOS-HIEUH;Lo;0;L;;;;;N;;;;;-D7F3;HANGUL JONGSEONG PANSIOS-PIEUP;Lo;0;L;;;;;N;;;;;-D7F4;HANGUL JONGSEONG PANSIOS-KAPYEOUNPIEUP;Lo;0;L;;;;;N;;;;;-D7F5;HANGUL JONGSEONG YESIEUNG-MIEUM;Lo;0;L;;;;;N;;;;;-D7F6;HANGUL JONGSEONG YESIEUNG-HIEUH;Lo;0;L;;;;;N;;;;;-D7F7;HANGUL JONGSEONG CIEUC-PIEUP;Lo;0;L;;;;;N;;;;;-D7F8;HANGUL JONGSEONG CIEUC-SSANGPIEUP;Lo;0;L;;;;;N;;;;;-D7F9;HANGUL JONGSEONG SSANGCIEUC;Lo;0;L;;;;;N;;;;;-D7FA;HANGUL JONGSEONG PHIEUPH-SIOS;Lo;0;L;;;;;N;;;;;-D7FB;HANGUL JONGSEONG PHIEUPH-THIEUTH;Lo;0;L;;;;;N;;;;;-D800;<Non Private Use High Surrogate, First>;Cs;0;L;;;;;N;;;;;-DB7F;<Non Private Use High Surrogate, Last>;Cs;0;L;;;;;N;;;;;-DB80;<Private Use High Surrogate, First>;Cs;0;L;;;;;N;;;;;-DBFF;<Private Use High Surrogate, Last>;Cs;0;L;;;;;N;;;;;-DC00;<Low Surrogate, First>;Cs;0;L;;;;;N;;;;;-DFFF;<Low Surrogate, Last>;Cs;0;L;;;;;N;;;;;-E000;<Private Use, First>;Co;0;L;;;;;N;;;;;-F8FF;<Private Use, Last>;Co;0;L;;;;;N;;;;;-F900;CJK COMPATIBILITY IDEOGRAPH-F900;Lo;0;L;8C48;;;;N;;;;;-F901;CJK COMPATIBILITY IDEOGRAPH-F901;Lo;0;L;66F4;;;;N;;;;;-F902;CJK COMPATIBILITY IDEOGRAPH-F902;Lo;0;L;8ECA;;;;N;;;;;-F903;CJK COMPATIBILITY IDEOGRAPH-F903;Lo;0;L;8CC8;;;;N;;;;;-F904;CJK COMPATIBILITY IDEOGRAPH-F904;Lo;0;L;6ED1;;;;N;;;;;-F905;CJK COMPATIBILITY IDEOGRAPH-F905;Lo;0;L;4E32;;;;N;;;;;-F906;CJK COMPATIBILITY IDEOGRAPH-F906;Lo;0;L;53E5;;;;N;;;;;-F907;CJK COMPATIBILITY IDEOGRAPH-F907;Lo;0;L;9F9C;;;;N;;;;;-F908;CJK COMPATIBILITY IDEOGRAPH-F908;Lo;0;L;9F9C;;;;N;;;;;-F909;CJK COMPATIBILITY IDEOGRAPH-F909;Lo;0;L;5951;;;;N;;;;;-F90A;CJK COMPATIBILITY IDEOGRAPH-F90A;Lo;0;L;91D1;;;;N;;;;;-F90B;CJK COMPATIBILITY IDEOGRAPH-F90B;Lo;0;L;5587;;;;N;;;;;-F90C;CJK COMPATIBILITY IDEOGRAPH-F90C;Lo;0;L;5948;;;;N;;;;;-F90D;CJK COMPATIBILITY IDEOGRAPH-F90D;Lo;0;L;61F6;;;;N;;;;;-F90E;CJK COMPATIBILITY IDEOGRAPH-F90E;Lo;0;L;7669;;;;N;;;;;-F90F;CJK COMPATIBILITY IDEOGRAPH-F90F;Lo;0;L;7F85;;;;N;;;;;-F910;CJK COMPATIBILITY IDEOGRAPH-F910;Lo;0;L;863F;;;;N;;;;;-F911;CJK COMPATIBILITY IDEOGRAPH-F911;Lo;0;L;87BA;;;;N;;;;;-F912;CJK COMPATIBILITY IDEOGRAPH-F912;Lo;0;L;88F8;;;;N;;;;;-F913;CJK COMPATIBILITY IDEOGRAPH-F913;Lo;0;L;908F;;;;N;;;;;-F914;CJK COMPATIBILITY IDEOGRAPH-F914;Lo;0;L;6A02;;;;N;;;;;-F915;CJK COMPATIBILITY IDEOGRAPH-F915;Lo;0;L;6D1B;;;;N;;;;;-F916;CJK COMPATIBILITY IDEOGRAPH-F916;Lo;0;L;70D9;;;;N;;;;;-F917;CJK COMPATIBILITY IDEOGRAPH-F917;Lo;0;L;73DE;;;;N;;;;;-F918;CJK COMPATIBILITY IDEOGRAPH-F918;Lo;0;L;843D;;;;N;;;;;-F919;CJK COMPATIBILITY IDEOGRAPH-F919;Lo;0;L;916A;;;;N;;;;;-F91A;CJK COMPATIBILITY IDEOGRAPH-F91A;Lo;0;L;99F1;;;;N;;;;;-F91B;CJK COMPATIBILITY IDEOGRAPH-F91B;Lo;0;L;4E82;;;;N;;;;;-F91C;CJK COMPATIBILITY IDEOGRAPH-F91C;Lo;0;L;5375;;;;N;;;;;-F91D;CJK COMPATIBILITY IDEOGRAPH-F91D;Lo;0;L;6B04;;;;N;;;;;-F91E;CJK COMPATIBILITY IDEOGRAPH-F91E;Lo;0;L;721B;;;;N;;;;;-F91F;CJK COMPATIBILITY IDEOGRAPH-F91F;Lo;0;L;862D;;;;N;;;;;-F920;CJK COMPATIBILITY IDEOGRAPH-F920;Lo;0;L;9E1E;;;;N;;;;;-F921;CJK COMPATIBILITY IDEOGRAPH-F921;Lo;0;L;5D50;;;;N;;;;;-F922;CJK COMPATIBILITY IDEOGRAPH-F922;Lo;0;L;6FEB;;;;N;;;;;-F923;CJK COMPATIBILITY IDEOGRAPH-F923;Lo;0;L;85CD;;;;N;;;;;-F924;CJK COMPATIBILITY IDEOGRAPH-F924;Lo;0;L;8964;;;;N;;;;;-F925;CJK COMPATIBILITY IDEOGRAPH-F925;Lo;0;L;62C9;;;;N;;;;;-F926;CJK COMPATIBILITY IDEOGRAPH-F926;Lo;0;L;81D8;;;;N;;;;;-F927;CJK COMPATIBILITY IDEOGRAPH-F927;Lo;0;L;881F;;;;N;;;;;-F928;CJK COMPATIBILITY IDEOGRAPH-F928;Lo;0;L;5ECA;;;;N;;;;;-F929;CJK COMPATIBILITY IDEOGRAPH-F929;Lo;0;L;6717;;;;N;;;;;-F92A;CJK COMPATIBILITY IDEOGRAPH-F92A;Lo;0;L;6D6A;;;;N;;;;;-F92B;CJK COMPATIBILITY IDEOGRAPH-F92B;Lo;0;L;72FC;;;;N;;;;;-F92C;CJK COMPATIBILITY IDEOGRAPH-F92C;Lo;0;L;90CE;;;;N;;;;;-F92D;CJK COMPATIBILITY IDEOGRAPH-F92D;Lo;0;L;4F86;;;;N;;;;;-F92E;CJK COMPATIBILITY IDEOGRAPH-F92E;Lo;0;L;51B7;;;;N;;;;;-F92F;CJK COMPATIBILITY IDEOGRAPH-F92F;Lo;0;L;52DE;;;;N;;;;;-F930;CJK COMPATIBILITY IDEOGRAPH-F930;Lo;0;L;64C4;;;;N;;;;;-F931;CJK COMPATIBILITY IDEOGRAPH-F931;Lo;0;L;6AD3;;;;N;;;;;-F932;CJK COMPATIBILITY IDEOGRAPH-F932;Lo;0;L;7210;;;;N;;;;;-F933;CJK COMPATIBILITY IDEOGRAPH-F933;Lo;0;L;76E7;;;;N;;;;;-F934;CJK COMPATIBILITY IDEOGRAPH-F934;Lo;0;L;8001;;;;N;;;;;-F935;CJK COMPATIBILITY IDEOGRAPH-F935;Lo;0;L;8606;;;;N;;;;;-F936;CJK COMPATIBILITY IDEOGRAPH-F936;Lo;0;L;865C;;;;N;;;;;-F937;CJK COMPATIBILITY IDEOGRAPH-F937;Lo;0;L;8DEF;;;;N;;;;;-F938;CJK COMPATIBILITY IDEOGRAPH-F938;Lo;0;L;9732;;;;N;;;;;-F939;CJK COMPATIBILITY IDEOGRAPH-F939;Lo;0;L;9B6F;;;;N;;;;;-F93A;CJK COMPATIBILITY IDEOGRAPH-F93A;Lo;0;L;9DFA;;;;N;;;;;-F93B;CJK COMPATIBILITY IDEOGRAPH-F93B;Lo;0;L;788C;;;;N;;;;;-F93C;CJK COMPATIBILITY IDEOGRAPH-F93C;Lo;0;L;797F;;;;N;;;;;-F93D;CJK COMPATIBILITY IDEOGRAPH-F93D;Lo;0;L;7DA0;;;;N;;;;;-F93E;CJK COMPATIBILITY IDEOGRAPH-F93E;Lo;0;L;83C9;;;;N;;;;;-F93F;CJK COMPATIBILITY IDEOGRAPH-F93F;Lo;0;L;9304;;;;N;;;;;-F940;CJK COMPATIBILITY IDEOGRAPH-F940;Lo;0;L;9E7F;;;;N;;;;;-F941;CJK COMPATIBILITY IDEOGRAPH-F941;Lo;0;L;8AD6;;;;N;;;;;-F942;CJK COMPATIBILITY IDEOGRAPH-F942;Lo;0;L;58DF;;;;N;;;;;-F943;CJK COMPATIBILITY IDEOGRAPH-F943;Lo;0;L;5F04;;;;N;;;;;-F944;CJK COMPATIBILITY IDEOGRAPH-F944;Lo;0;L;7C60;;;;N;;;;;-F945;CJK COMPATIBILITY IDEOGRAPH-F945;Lo;0;L;807E;;;;N;;;;;-F946;CJK COMPATIBILITY IDEOGRAPH-F946;Lo;0;L;7262;;;;N;;;;;-F947;CJK COMPATIBILITY IDEOGRAPH-F947;Lo;0;L;78CA;;;;N;;;;;-F948;CJK COMPATIBILITY IDEOGRAPH-F948;Lo;0;L;8CC2;;;;N;;;;;-F949;CJK COMPATIBILITY IDEOGRAPH-F949;Lo;0;L;96F7;;;;N;;;;;-F94A;CJK COMPATIBILITY IDEOGRAPH-F94A;Lo;0;L;58D8;;;;N;;;;;-F94B;CJK COMPATIBILITY IDEOGRAPH-F94B;Lo;0;L;5C62;;;;N;;;;;-F94C;CJK COMPATIBILITY IDEOGRAPH-F94C;Lo;0;L;6A13;;;;N;;;;;-F94D;CJK COMPATIBILITY IDEOGRAPH-F94D;Lo;0;L;6DDA;;;;N;;;;;-F94E;CJK COMPATIBILITY IDEOGRAPH-F94E;Lo;0;L;6F0F;;;;N;;;;;-F94F;CJK COMPATIBILITY IDEOGRAPH-F94F;Lo;0;L;7D2F;;;;N;;;;;-F950;CJK COMPATIBILITY IDEOGRAPH-F950;Lo;0;L;7E37;;;;N;;;;;-F951;CJK COMPATIBILITY IDEOGRAPH-F951;Lo;0;L;964B;;;;N;;;;;-F952;CJK COMPATIBILITY IDEOGRAPH-F952;Lo;0;L;52D2;;;;N;;;;;-F953;CJK COMPATIBILITY IDEOGRAPH-F953;Lo;0;L;808B;;;;N;;;;;-F954;CJK COMPATIBILITY IDEOGRAPH-F954;Lo;0;L;51DC;;;;N;;;;;-F955;CJK COMPATIBILITY IDEOGRAPH-F955;Lo;0;L;51CC;;;;N;;;;;-F956;CJK COMPATIBILITY IDEOGRAPH-F956;Lo;0;L;7A1C;;;;N;;;;;-F957;CJK COMPATIBILITY IDEOGRAPH-F957;Lo;0;L;7DBE;;;;N;;;;;-F958;CJK COMPATIBILITY IDEOGRAPH-F958;Lo;0;L;83F1;;;;N;;;;;-F959;CJK COMPATIBILITY IDEOGRAPH-F959;Lo;0;L;9675;;;;N;;;;;-F95A;CJK COMPATIBILITY IDEOGRAPH-F95A;Lo;0;L;8B80;;;;N;;;;;-F95B;CJK COMPATIBILITY IDEOGRAPH-F95B;Lo;0;L;62CF;;;;N;;;;;-F95C;CJK COMPATIBILITY IDEOGRAPH-F95C;Lo;0;L;6A02;;;;N;;;;;-F95D;CJK COMPATIBILITY IDEOGRAPH-F95D;Lo;0;L;8AFE;;;;N;;;;;-F95E;CJK COMPATIBILITY IDEOGRAPH-F95E;Lo;0;L;4E39;;;;N;;;;;-F95F;CJK COMPATIBILITY IDEOGRAPH-F95F;Lo;0;L;5BE7;;;;N;;;;;-F960;CJK COMPATIBILITY IDEOGRAPH-F960;Lo;0;L;6012;;;;N;;;;;-F961;CJK COMPATIBILITY IDEOGRAPH-F961;Lo;0;L;7387;;;;N;;;;;-F962;CJK COMPATIBILITY IDEOGRAPH-F962;Lo;0;L;7570;;;;N;;;;;-F963;CJK COMPATIBILITY IDEOGRAPH-F963;Lo;0;L;5317;;;;N;;;;;-F964;CJK COMPATIBILITY IDEOGRAPH-F964;Lo;0;L;78FB;;;;N;;;;;-F965;CJK COMPATIBILITY IDEOGRAPH-F965;Lo;0;L;4FBF;;;;N;;;;;-F966;CJK COMPATIBILITY IDEOGRAPH-F966;Lo;0;L;5FA9;;;;N;;;;;-F967;CJK COMPATIBILITY IDEOGRAPH-F967;Lo;0;L;4E0D;;;;N;;;;;-F968;CJK COMPATIBILITY IDEOGRAPH-F968;Lo;0;L;6CCC;;;;N;;;;;-F969;CJK COMPATIBILITY IDEOGRAPH-F969;Lo;0;L;6578;;;;N;;;;;-F96A;CJK COMPATIBILITY IDEOGRAPH-F96A;Lo;0;L;7D22;;;;N;;;;;-F96B;CJK COMPATIBILITY IDEOGRAPH-F96B;Lo;0;L;53C3;;;3;N;;;;;-F96C;CJK COMPATIBILITY IDEOGRAPH-F96C;Lo;0;L;585E;;;;N;;;;;-F96D;CJK COMPATIBILITY IDEOGRAPH-F96D;Lo;0;L;7701;;;;N;;;;;-F96E;CJK COMPATIBILITY IDEOGRAPH-F96E;Lo;0;L;8449;;;;N;;;;;-F96F;CJK COMPATIBILITY IDEOGRAPH-F96F;Lo;0;L;8AAA;;;;N;;;;;-F970;CJK COMPATIBILITY IDEOGRAPH-F970;Lo;0;L;6BBA;;;;N;;;;;-F971;CJK COMPATIBILITY IDEOGRAPH-F971;Lo;0;L;8FB0;;;;N;;;;;-F972;CJK COMPATIBILITY IDEOGRAPH-F972;Lo;0;L;6C88;;;;N;;;;;-F973;CJK COMPATIBILITY IDEOGRAPH-F973;Lo;0;L;62FE;;;10;N;;;;;-F974;CJK COMPATIBILITY IDEOGRAPH-F974;Lo;0;L;82E5;;;;N;;;;;-F975;CJK COMPATIBILITY IDEOGRAPH-F975;Lo;0;L;63A0;;;;N;;;;;-F976;CJK COMPATIBILITY IDEOGRAPH-F976;Lo;0;L;7565;;;;N;;;;;-F977;CJK COMPATIBILITY IDEOGRAPH-F977;Lo;0;L;4EAE;;;;N;;;;;-F978;CJK COMPATIBILITY IDEOGRAPH-F978;Lo;0;L;5169;;;2;N;;;;;-F979;CJK COMPATIBILITY IDEOGRAPH-F979;Lo;0;L;51C9;;;;N;;;;;-F97A;CJK COMPATIBILITY IDEOGRAPH-F97A;Lo;0;L;6881;;;;N;;;;;-F97B;CJK COMPATIBILITY IDEOGRAPH-F97B;Lo;0;L;7CE7;;;;N;;;;;-F97C;CJK COMPATIBILITY IDEOGRAPH-F97C;Lo;0;L;826F;;;;N;;;;;-F97D;CJK COMPATIBILITY IDEOGRAPH-F97D;Lo;0;L;8AD2;;;;N;;;;;-F97E;CJK COMPATIBILITY IDEOGRAPH-F97E;Lo;0;L;91CF;;;;N;;;;;-F97F;CJK COMPATIBILITY IDEOGRAPH-F97F;Lo;0;L;52F5;;;;N;;;;;-F980;CJK COMPATIBILITY IDEOGRAPH-F980;Lo;0;L;5442;;;;N;;;;;-F981;CJK COMPATIBILITY IDEOGRAPH-F981;Lo;0;L;5973;;;;N;;;;;-F982;CJK COMPATIBILITY IDEOGRAPH-F982;Lo;0;L;5EEC;;;;N;;;;;-F983;CJK COMPATIBILITY IDEOGRAPH-F983;Lo;0;L;65C5;;;;N;;;;;-F984;CJK COMPATIBILITY IDEOGRAPH-F984;Lo;0;L;6FFE;;;;N;;;;;-F985;CJK COMPATIBILITY IDEOGRAPH-F985;Lo;0;L;792A;;;;N;;;;;-F986;CJK COMPATIBILITY IDEOGRAPH-F986;Lo;0;L;95AD;;;;N;;;;;-F987;CJK COMPATIBILITY IDEOGRAPH-F987;Lo;0;L;9A6A;;;;N;;;;;-F988;CJK COMPATIBILITY IDEOGRAPH-F988;Lo;0;L;9E97;;;;N;;;;;-F989;CJK COMPATIBILITY IDEOGRAPH-F989;Lo;0;L;9ECE;;;;N;;;;;-F98A;CJK COMPATIBILITY IDEOGRAPH-F98A;Lo;0;L;529B;;;;N;;;;;-F98B;CJK COMPATIBILITY IDEOGRAPH-F98B;Lo;0;L;66C6;;;;N;;;;;-F98C;CJK COMPATIBILITY IDEOGRAPH-F98C;Lo;0;L;6B77;;;;N;;;;;-F98D;CJK COMPATIBILITY IDEOGRAPH-F98D;Lo;0;L;8F62;;;;N;;;;;-F98E;CJK COMPATIBILITY IDEOGRAPH-F98E;Lo;0;L;5E74;;;;N;;;;;-F98F;CJK COMPATIBILITY IDEOGRAPH-F98F;Lo;0;L;6190;;;;N;;;;;-F990;CJK COMPATIBILITY IDEOGRAPH-F990;Lo;0;L;6200;;;;N;;;;;-F991;CJK COMPATIBILITY IDEOGRAPH-F991;Lo;0;L;649A;;;;N;;;;;-F992;CJK COMPATIBILITY IDEOGRAPH-F992;Lo;0;L;6F23;;;;N;;;;;-F993;CJK COMPATIBILITY IDEOGRAPH-F993;Lo;0;L;7149;;;;N;;;;;-F994;CJK COMPATIBILITY IDEOGRAPH-F994;Lo;0;L;7489;;;;N;;;;;-F995;CJK COMPATIBILITY IDEOGRAPH-F995;Lo;0;L;79CA;;;;N;;;;;-F996;CJK COMPATIBILITY IDEOGRAPH-F996;Lo;0;L;7DF4;;;;N;;;;;-F997;CJK COMPATIBILITY IDEOGRAPH-F997;Lo;0;L;806F;;;;N;;;;;-F998;CJK COMPATIBILITY IDEOGRAPH-F998;Lo;0;L;8F26;;;;N;;;;;-F999;CJK COMPATIBILITY IDEOGRAPH-F999;Lo;0;L;84EE;;;;N;;;;;-F99A;CJK COMPATIBILITY IDEOGRAPH-F99A;Lo;0;L;9023;;;;N;;;;;-F99B;CJK COMPATIBILITY IDEOGRAPH-F99B;Lo;0;L;934A;;;;N;;;;;-F99C;CJK COMPATIBILITY IDEOGRAPH-F99C;Lo;0;L;5217;;;;N;;;;;-F99D;CJK COMPATIBILITY IDEOGRAPH-F99D;Lo;0;L;52A3;;;;N;;;;;-F99E;CJK COMPATIBILITY IDEOGRAPH-F99E;Lo;0;L;54BD;;;;N;;;;;-F99F;CJK COMPATIBILITY IDEOGRAPH-F99F;Lo;0;L;70C8;;;;N;;;;;-F9A0;CJK COMPATIBILITY IDEOGRAPH-F9A0;Lo;0;L;88C2;;;;N;;;;;-F9A1;CJK COMPATIBILITY IDEOGRAPH-F9A1;Lo;0;L;8AAA;;;;N;;;;;-F9A2;CJK COMPATIBILITY IDEOGRAPH-F9A2;Lo;0;L;5EC9;;;;N;;;;;-F9A3;CJK COMPATIBILITY IDEOGRAPH-F9A3;Lo;0;L;5FF5;;;;N;;;;;-F9A4;CJK COMPATIBILITY IDEOGRAPH-F9A4;Lo;0;L;637B;;;;N;;;;;-F9A5;CJK COMPATIBILITY IDEOGRAPH-F9A5;Lo;0;L;6BAE;;;;N;;;;;-F9A6;CJK COMPATIBILITY IDEOGRAPH-F9A6;Lo;0;L;7C3E;;;;N;;;;;-F9A7;CJK COMPATIBILITY IDEOGRAPH-F9A7;Lo;0;L;7375;;;;N;;;;;-F9A8;CJK COMPATIBILITY IDEOGRAPH-F9A8;Lo;0;L;4EE4;;;;N;;;;;-F9A9;CJK COMPATIBILITY IDEOGRAPH-F9A9;Lo;0;L;56F9;;;;N;;;;;-F9AA;CJK COMPATIBILITY IDEOGRAPH-F9AA;Lo;0;L;5BE7;;;;N;;;;;-F9AB;CJK COMPATIBILITY IDEOGRAPH-F9AB;Lo;0;L;5DBA;;;;N;;;;;-F9AC;CJK COMPATIBILITY IDEOGRAPH-F9AC;Lo;0;L;601C;;;;N;;;;;-F9AD;CJK COMPATIBILITY IDEOGRAPH-F9AD;Lo;0;L;73B2;;;;N;;;;;-F9AE;CJK COMPATIBILITY IDEOGRAPH-F9AE;Lo;0;L;7469;;;;N;;;;;-F9AF;CJK COMPATIBILITY IDEOGRAPH-F9AF;Lo;0;L;7F9A;;;;N;;;;;-F9B0;CJK COMPATIBILITY IDEOGRAPH-F9B0;Lo;0;L;8046;;;;N;;;;;-F9B1;CJK COMPATIBILITY IDEOGRAPH-F9B1;Lo;0;L;9234;;;;N;;;;;-F9B2;CJK COMPATIBILITY IDEOGRAPH-F9B2;Lo;0;L;96F6;;;0;N;;;;;-F9B3;CJK COMPATIBILITY IDEOGRAPH-F9B3;Lo;0;L;9748;;;;N;;;;;-F9B4;CJK COMPATIBILITY IDEOGRAPH-F9B4;Lo;0;L;9818;;;;N;;;;;-F9B5;CJK COMPATIBILITY IDEOGRAPH-F9B5;Lo;0;L;4F8B;;;;N;;;;;-F9B6;CJK COMPATIBILITY IDEOGRAPH-F9B6;Lo;0;L;79AE;;;;N;;;;;-F9B7;CJK COMPATIBILITY IDEOGRAPH-F9B7;Lo;0;L;91B4;;;;N;;;;;-F9B8;CJK COMPATIBILITY IDEOGRAPH-F9B8;Lo;0;L;96B8;;;;N;;;;;-F9B9;CJK COMPATIBILITY IDEOGRAPH-F9B9;Lo;0;L;60E1;;;;N;;;;;-F9BA;CJK COMPATIBILITY IDEOGRAPH-F9BA;Lo;0;L;4E86;;;;N;;;;;-F9BB;CJK COMPATIBILITY IDEOGRAPH-F9BB;Lo;0;L;50DA;;;;N;;;;;-F9BC;CJK COMPATIBILITY IDEOGRAPH-F9BC;Lo;0;L;5BEE;;;;N;;;;;-F9BD;CJK COMPATIBILITY IDEOGRAPH-F9BD;Lo;0;L;5C3F;;;;N;;;;;-F9BE;CJK COMPATIBILITY IDEOGRAPH-F9BE;Lo;0;L;6599;;;;N;;;;;-F9BF;CJK COMPATIBILITY IDEOGRAPH-F9BF;Lo;0;L;6A02;;;;N;;;;;-F9C0;CJK COMPATIBILITY IDEOGRAPH-F9C0;Lo;0;L;71CE;;;;N;;;;;-F9C1;CJK COMPATIBILITY IDEOGRAPH-F9C1;Lo;0;L;7642;;;;N;;;;;-F9C2;CJK COMPATIBILITY IDEOGRAPH-F9C2;Lo;0;L;84FC;;;;N;;;;;-F9C3;CJK COMPATIBILITY IDEOGRAPH-F9C3;Lo;0;L;907C;;;;N;;;;;-F9C4;CJK COMPATIBILITY IDEOGRAPH-F9C4;Lo;0;L;9F8D;;;;N;;;;;-F9C5;CJK COMPATIBILITY IDEOGRAPH-F9C5;Lo;0;L;6688;;;;N;;;;;-F9C6;CJK COMPATIBILITY IDEOGRAPH-F9C6;Lo;0;L;962E;;;;N;;;;;-F9C7;CJK COMPATIBILITY IDEOGRAPH-F9C7;Lo;0;L;5289;;;;N;;;;;-F9C8;CJK COMPATIBILITY IDEOGRAPH-F9C8;Lo;0;L;677B;;;;N;;;;;-F9C9;CJK COMPATIBILITY IDEOGRAPH-F9C9;Lo;0;L;67F3;;;;N;;;;;-F9CA;CJK COMPATIBILITY IDEOGRAPH-F9CA;Lo;0;L;6D41;;;;N;;;;;-F9CB;CJK COMPATIBILITY IDEOGRAPH-F9CB;Lo;0;L;6E9C;;;;N;;;;;-F9CC;CJK COMPATIBILITY IDEOGRAPH-F9CC;Lo;0;L;7409;;;;N;;;;;-F9CD;CJK COMPATIBILITY IDEOGRAPH-F9CD;Lo;0;L;7559;;;;N;;;;;-F9CE;CJK COMPATIBILITY IDEOGRAPH-F9CE;Lo;0;L;786B;;;;N;;;;;-F9CF;CJK COMPATIBILITY IDEOGRAPH-F9CF;Lo;0;L;7D10;;;;N;;;;;-F9D0;CJK COMPATIBILITY IDEOGRAPH-F9D0;Lo;0;L;985E;;;;N;;;;;-F9D1;CJK COMPATIBILITY IDEOGRAPH-F9D1;Lo;0;L;516D;;;6;N;;;;;-F9D2;CJK COMPATIBILITY IDEOGRAPH-F9D2;Lo;0;L;622E;;;;N;;;;;-F9D3;CJK COMPATIBILITY IDEOGRAPH-F9D3;Lo;0;L;9678;;;6;N;;;;;-F9D4;CJK COMPATIBILITY IDEOGRAPH-F9D4;Lo;0;L;502B;;;;N;;;;;-F9D5;CJK COMPATIBILITY IDEOGRAPH-F9D5;Lo;0;L;5D19;;;;N;;;;;-F9D6;CJK COMPATIBILITY IDEOGRAPH-F9D6;Lo;0;L;6DEA;;;;N;;;;;-F9D7;CJK COMPATIBILITY IDEOGRAPH-F9D7;Lo;0;L;8F2A;;;;N;;;;;-F9D8;CJK COMPATIBILITY IDEOGRAPH-F9D8;Lo;0;L;5F8B;;;;N;;;;;-F9D9;CJK COMPATIBILITY IDEOGRAPH-F9D9;Lo;0;L;6144;;;;N;;;;;-F9DA;CJK COMPATIBILITY IDEOGRAPH-F9DA;Lo;0;L;6817;;;;N;;;;;-F9DB;CJK COMPATIBILITY IDEOGRAPH-F9DB;Lo;0;L;7387;;;;N;;;;;-F9DC;CJK COMPATIBILITY IDEOGRAPH-F9DC;Lo;0;L;9686;;;;N;;;;;-F9DD;CJK COMPATIBILITY IDEOGRAPH-F9DD;Lo;0;L;5229;;;;N;;;;;-F9DE;CJK COMPATIBILITY IDEOGRAPH-F9DE;Lo;0;L;540F;;;;N;;;;;-F9DF;CJK COMPATIBILITY IDEOGRAPH-F9DF;Lo;0;L;5C65;;;;N;;;;;-F9E0;CJK COMPATIBILITY IDEOGRAPH-F9E0;Lo;0;L;6613;;;;N;;;;;-F9E1;CJK COMPATIBILITY IDEOGRAPH-F9E1;Lo;0;L;674E;;;;N;;;;;-F9E2;CJK COMPATIBILITY IDEOGRAPH-F9E2;Lo;0;L;68A8;;;;N;;;;;-F9E3;CJK COMPATIBILITY IDEOGRAPH-F9E3;Lo;0;L;6CE5;;;;N;;;;;-F9E4;CJK COMPATIBILITY IDEOGRAPH-F9E4;Lo;0;L;7406;;;;N;;;;;-F9E5;CJK COMPATIBILITY IDEOGRAPH-F9E5;Lo;0;L;75E2;;;;N;;;;;-F9E6;CJK COMPATIBILITY IDEOGRAPH-F9E6;Lo;0;L;7F79;;;;N;;;;;-F9E7;CJK COMPATIBILITY IDEOGRAPH-F9E7;Lo;0;L;88CF;;;;N;;;;;-F9E8;CJK COMPATIBILITY IDEOGRAPH-F9E8;Lo;0;L;88E1;;;;N;;;;;-F9E9;CJK COMPATIBILITY IDEOGRAPH-F9E9;Lo;0;L;91CC;;;;N;;;;;-F9EA;CJK COMPATIBILITY IDEOGRAPH-F9EA;Lo;0;L;96E2;;;;N;;;;;-F9EB;CJK COMPATIBILITY IDEOGRAPH-F9EB;Lo;0;L;533F;;;;N;;;;;-F9EC;CJK COMPATIBILITY IDEOGRAPH-F9EC;Lo;0;L;6EBA;;;;N;;;;;-F9ED;CJK COMPATIBILITY IDEOGRAPH-F9ED;Lo;0;L;541D;;;;N;;;;;-F9EE;CJK COMPATIBILITY IDEOGRAPH-F9EE;Lo;0;L;71D0;;;;N;;;;;-F9EF;CJK COMPATIBILITY IDEOGRAPH-F9EF;Lo;0;L;7498;;;;N;;;;;-F9F0;CJK COMPATIBILITY IDEOGRAPH-F9F0;Lo;0;L;85FA;;;;N;;;;;-F9F1;CJK COMPATIBILITY IDEOGRAPH-F9F1;Lo;0;L;96A3;;;;N;;;;;-F9F2;CJK COMPATIBILITY IDEOGRAPH-F9F2;Lo;0;L;9C57;;;;N;;;;;-F9F3;CJK COMPATIBILITY IDEOGRAPH-F9F3;Lo;0;L;9E9F;;;;N;;;;;-F9F4;CJK COMPATIBILITY IDEOGRAPH-F9F4;Lo;0;L;6797;;;;N;;;;;-F9F5;CJK COMPATIBILITY IDEOGRAPH-F9F5;Lo;0;L;6DCB;;;;N;;;;;-F9F6;CJK COMPATIBILITY IDEOGRAPH-F9F6;Lo;0;L;81E8;;;;N;;;;;-F9F7;CJK COMPATIBILITY IDEOGRAPH-F9F7;Lo;0;L;7ACB;;;;N;;;;;-F9F8;CJK COMPATIBILITY IDEOGRAPH-F9F8;Lo;0;L;7B20;;;;N;;;;;-F9F9;CJK COMPATIBILITY IDEOGRAPH-F9F9;Lo;0;L;7C92;;;;N;;;;;-F9FA;CJK COMPATIBILITY IDEOGRAPH-F9FA;Lo;0;L;72C0;;;;N;;;;;-F9FB;CJK COMPATIBILITY IDEOGRAPH-F9FB;Lo;0;L;7099;;;;N;;;;;-F9FC;CJK COMPATIBILITY IDEOGRAPH-F9FC;Lo;0;L;8B58;;;;N;;;;;-F9FD;CJK COMPATIBILITY IDEOGRAPH-F9FD;Lo;0;L;4EC0;;;10;N;;;;;-F9FE;CJK COMPATIBILITY IDEOGRAPH-F9FE;Lo;0;L;8336;;;;N;;;;;-F9FF;CJK COMPATIBILITY IDEOGRAPH-F9FF;Lo;0;L;523A;;;;N;;;;;-FA00;CJK COMPATIBILITY IDEOGRAPH-FA00;Lo;0;L;5207;;;;N;;;;;-FA01;CJK COMPATIBILITY IDEOGRAPH-FA01;Lo;0;L;5EA6;;;;N;;;;;-FA02;CJK COMPATIBILITY IDEOGRAPH-FA02;Lo;0;L;62D3;;;;N;;;;;-FA03;CJK COMPATIBILITY IDEOGRAPH-FA03;Lo;0;L;7CD6;;;;N;;;;;-FA04;CJK COMPATIBILITY IDEOGRAPH-FA04;Lo;0;L;5B85;;;;N;;;;;-FA05;CJK COMPATIBILITY IDEOGRAPH-FA05;Lo;0;L;6D1E;;;;N;;;;;-FA06;CJK COMPATIBILITY IDEOGRAPH-FA06;Lo;0;L;66B4;;;;N;;;;;-FA07;CJK COMPATIBILITY IDEOGRAPH-FA07;Lo;0;L;8F3B;;;;N;;;;;-FA08;CJK COMPATIBILITY IDEOGRAPH-FA08;Lo;0;L;884C;;;;N;;;;;-FA09;CJK COMPATIBILITY IDEOGRAPH-FA09;Lo;0;L;964D;;;;N;;;;;-FA0A;CJK COMPATIBILITY IDEOGRAPH-FA0A;Lo;0;L;898B;;;;N;;;;;-FA0B;CJK COMPATIBILITY IDEOGRAPH-FA0B;Lo;0;L;5ED3;;;;N;;;;;-FA0C;CJK COMPATIBILITY IDEOGRAPH-FA0C;Lo;0;L;5140;;;;N;;;;;-FA0D;CJK COMPATIBILITY IDEOGRAPH-FA0D;Lo;0;L;55C0;;;;N;;;;;-FA0E;CJK COMPATIBILITY IDEOGRAPH-FA0E;Lo;0;L;;;;;N;;;;;-FA0F;CJK COMPATIBILITY IDEOGRAPH-FA0F;Lo;0;L;;;;;N;;;;;-FA10;CJK COMPATIBILITY IDEOGRAPH-FA10;Lo;0;L;585A;;;;N;;;;;-FA11;CJK COMPATIBILITY IDEOGRAPH-FA11;Lo;0;L;;;;;N;;;;;-FA12;CJK COMPATIBILITY IDEOGRAPH-FA12;Lo;0;L;6674;;;;N;;;;;-FA13;CJK COMPATIBILITY IDEOGRAPH-FA13;Lo;0;L;;;;;N;;;;;-FA14;CJK COMPATIBILITY IDEOGRAPH-FA14;Lo;0;L;;;;;N;;;;;-FA15;CJK COMPATIBILITY IDEOGRAPH-FA15;Lo;0;L;51DE;;;;N;;;;;-FA16;CJK COMPATIBILITY IDEOGRAPH-FA16;Lo;0;L;732A;;;;N;;;;;-FA17;CJK COMPATIBILITY IDEOGRAPH-FA17;Lo;0;L;76CA;;;;N;;;;;-FA18;CJK COMPATIBILITY IDEOGRAPH-FA18;Lo;0;L;793C;;;;N;;;;;-FA19;CJK COMPATIBILITY IDEOGRAPH-FA19;Lo;0;L;795E;;;;N;;;;;-FA1A;CJK COMPATIBILITY IDEOGRAPH-FA1A;Lo;0;L;7965;;;;N;;;;;-FA1B;CJK COMPATIBILITY IDEOGRAPH-FA1B;Lo;0;L;798F;;;;N;;;;;-FA1C;CJK COMPATIBILITY IDEOGRAPH-FA1C;Lo;0;L;9756;;;;N;;;;;-FA1D;CJK COMPATIBILITY IDEOGRAPH-FA1D;Lo;0;L;7CBE;;;;N;;;;;-FA1E;CJK COMPATIBILITY IDEOGRAPH-FA1E;Lo;0;L;7FBD;;;;N;;;;;-FA1F;CJK COMPATIBILITY IDEOGRAPH-FA1F;Lo;0;L;;;;;N;;;;;-FA20;CJK COMPATIBILITY IDEOGRAPH-FA20;Lo;0;L;8612;;;;N;;;;;-FA21;CJK COMPATIBILITY IDEOGRAPH-FA21;Lo;0;L;;;;;N;;;;;-FA22;CJK COMPATIBILITY IDEOGRAPH-FA22;Lo;0;L;8AF8;;;;N;;;;;-FA23;CJK COMPATIBILITY IDEOGRAPH-FA23;Lo;0;L;;;;;N;;;;;-FA24;CJK COMPATIBILITY IDEOGRAPH-FA24;Lo;0;L;;;;;N;;;;;-FA25;CJK COMPATIBILITY IDEOGRAPH-FA25;Lo;0;L;9038;;;;N;;;;;-FA26;CJK COMPATIBILITY IDEOGRAPH-FA26;Lo;0;L;90FD;;;;N;;;;;-FA27;CJK COMPATIBILITY IDEOGRAPH-FA27;Lo;0;L;;;;;N;;;;;-FA28;CJK COMPATIBILITY IDEOGRAPH-FA28;Lo;0;L;;;;;N;;;;;-FA29;CJK COMPATIBILITY IDEOGRAPH-FA29;Lo;0;L;;;;;N;;;;;-FA2A;CJK COMPATIBILITY IDEOGRAPH-FA2A;Lo;0;L;98EF;;;;N;;;;;-FA2B;CJK COMPATIBILITY IDEOGRAPH-FA2B;Lo;0;L;98FC;;;;N;;;;;-FA2C;CJK COMPATIBILITY IDEOGRAPH-FA2C;Lo;0;L;9928;;;;N;;;;;-FA2D;CJK COMPATIBILITY IDEOGRAPH-FA2D;Lo;0;L;9DB4;;;;N;;;;;-FA2E;CJK COMPATIBILITY IDEOGRAPH-FA2E;Lo;0;L;90DE;;;;N;;;;;-FA2F;CJK COMPATIBILITY IDEOGRAPH-FA2F;Lo;0;L;96B7;;;;N;;;;;-FA30;CJK COMPATIBILITY IDEOGRAPH-FA30;Lo;0;L;4FAE;;;;N;;;;;-FA31;CJK COMPATIBILITY IDEOGRAPH-FA31;Lo;0;L;50E7;;;;N;;;;;-FA32;CJK COMPATIBILITY IDEOGRAPH-FA32;Lo;0;L;514D;;;;N;;;;;-FA33;CJK COMPATIBILITY IDEOGRAPH-FA33;Lo;0;L;52C9;;;;N;;;;;-FA34;CJK COMPATIBILITY IDEOGRAPH-FA34;Lo;0;L;52E4;;;;N;;;;;-FA35;CJK COMPATIBILITY IDEOGRAPH-FA35;Lo;0;L;5351;;;;N;;;;;-FA36;CJK COMPATIBILITY IDEOGRAPH-FA36;Lo;0;L;559D;;;;N;;;;;-FA37;CJK COMPATIBILITY IDEOGRAPH-FA37;Lo;0;L;5606;;;;N;;;;;-FA38;CJK COMPATIBILITY IDEOGRAPH-FA38;Lo;0;L;5668;;;;N;;;;;-FA39;CJK COMPATIBILITY IDEOGRAPH-FA39;Lo;0;L;5840;;;;N;;;;;-FA3A;CJK COMPATIBILITY IDEOGRAPH-FA3A;Lo;0;L;58A8;;;;N;;;;;-FA3B;CJK COMPATIBILITY IDEOGRAPH-FA3B;Lo;0;L;5C64;;;;N;;;;;-FA3C;CJK COMPATIBILITY IDEOGRAPH-FA3C;Lo;0;L;5C6E;;;;N;;;;;-FA3D;CJK COMPATIBILITY IDEOGRAPH-FA3D;Lo;0;L;6094;;;;N;;;;;-FA3E;CJK COMPATIBILITY IDEOGRAPH-FA3E;Lo;0;L;6168;;;;N;;;;;-FA3F;CJK COMPATIBILITY IDEOGRAPH-FA3F;Lo;0;L;618E;;;;N;;;;;-FA40;CJK COMPATIBILITY IDEOGRAPH-FA40;Lo;0;L;61F2;;;;N;;;;;-FA41;CJK COMPATIBILITY IDEOGRAPH-FA41;Lo;0;L;654F;;;;N;;;;;-FA42;CJK COMPATIBILITY IDEOGRAPH-FA42;Lo;0;L;65E2;;;;N;;;;;-FA43;CJK COMPATIBILITY IDEOGRAPH-FA43;Lo;0;L;6691;;;;N;;;;;-FA44;CJK COMPATIBILITY IDEOGRAPH-FA44;Lo;0;L;6885;;;;N;;;;;-FA45;CJK COMPATIBILITY IDEOGRAPH-FA45;Lo;0;L;6D77;;;;N;;;;;-FA46;CJK COMPATIBILITY IDEOGRAPH-FA46;Lo;0;L;6E1A;;;;N;;;;;-FA47;CJK COMPATIBILITY IDEOGRAPH-FA47;Lo;0;L;6F22;;;;N;;;;;-FA48;CJK COMPATIBILITY IDEOGRAPH-FA48;Lo;0;L;716E;;;;N;;;;;-FA49;CJK COMPATIBILITY IDEOGRAPH-FA49;Lo;0;L;722B;;;;N;;;;;-FA4A;CJK COMPATIBILITY IDEOGRAPH-FA4A;Lo;0;L;7422;;;;N;;;;;-FA4B;CJK COMPATIBILITY IDEOGRAPH-FA4B;Lo;0;L;7891;;;;N;;;;;-FA4C;CJK COMPATIBILITY IDEOGRAPH-FA4C;Lo;0;L;793E;;;;N;;;;;-FA4D;CJK COMPATIBILITY IDEOGRAPH-FA4D;Lo;0;L;7949;;;;N;;;;;-FA4E;CJK COMPATIBILITY IDEOGRAPH-FA4E;Lo;0;L;7948;;;;N;;;;;-FA4F;CJK COMPATIBILITY IDEOGRAPH-FA4F;Lo;0;L;7950;;;;N;;;;;-FA50;CJK COMPATIBILITY IDEOGRAPH-FA50;Lo;0;L;7956;;;;N;;;;;-FA51;CJK COMPATIBILITY IDEOGRAPH-FA51;Lo;0;L;795D;;;;N;;;;;-FA52;CJK COMPATIBILITY IDEOGRAPH-FA52;Lo;0;L;798D;;;;N;;;;;-FA53;CJK COMPATIBILITY IDEOGRAPH-FA53;Lo;0;L;798E;;;;N;;;;;-FA54;CJK COMPATIBILITY IDEOGRAPH-FA54;Lo;0;L;7A40;;;;N;;;;;-FA55;CJK COMPATIBILITY IDEOGRAPH-FA55;Lo;0;L;7A81;;;;N;;;;;-FA56;CJK COMPATIBILITY IDEOGRAPH-FA56;Lo;0;L;7BC0;;;;N;;;;;-FA57;CJK COMPATIBILITY IDEOGRAPH-FA57;Lo;0;L;7DF4;;;;N;;;;;-FA58;CJK COMPATIBILITY IDEOGRAPH-FA58;Lo;0;L;7E09;;;;N;;;;;-FA59;CJK COMPATIBILITY IDEOGRAPH-FA59;Lo;0;L;7E41;;;;N;;;;;-FA5A;CJK COMPATIBILITY IDEOGRAPH-FA5A;Lo;0;L;7F72;;;;N;;;;;-FA5B;CJK COMPATIBILITY IDEOGRAPH-FA5B;Lo;0;L;8005;;;;N;;;;;-FA5C;CJK COMPATIBILITY IDEOGRAPH-FA5C;Lo;0;L;81ED;;;;N;;;;;-FA5D;CJK COMPATIBILITY IDEOGRAPH-FA5D;Lo;0;L;8279;;;;N;;;;;-FA5E;CJK COMPATIBILITY IDEOGRAPH-FA5E;Lo;0;L;8279;;;;N;;;;;-FA5F;CJK COMPATIBILITY IDEOGRAPH-FA5F;Lo;0;L;8457;;;;N;;;;;-FA60;CJK COMPATIBILITY IDEOGRAPH-FA60;Lo;0;L;8910;;;;N;;;;;-FA61;CJK COMPATIBILITY IDEOGRAPH-FA61;Lo;0;L;8996;;;;N;;;;;-FA62;CJK COMPATIBILITY IDEOGRAPH-FA62;Lo;0;L;8B01;;;;N;;;;;-FA63;CJK COMPATIBILITY IDEOGRAPH-FA63;Lo;0;L;8B39;;;;N;;;;;-FA64;CJK COMPATIBILITY IDEOGRAPH-FA64;Lo;0;L;8CD3;;;;N;;;;;-FA65;CJK COMPATIBILITY IDEOGRAPH-FA65;Lo;0;L;8D08;;;;N;;;;;-FA66;CJK COMPATIBILITY IDEOGRAPH-FA66;Lo;0;L;8FB6;;;;N;;;;;-FA67;CJK COMPATIBILITY IDEOGRAPH-FA67;Lo;0;L;9038;;;;N;;;;;-FA68;CJK COMPATIBILITY IDEOGRAPH-FA68;Lo;0;L;96E3;;;;N;;;;;-FA69;CJK COMPATIBILITY IDEOGRAPH-FA69;Lo;0;L;97FF;;;;N;;;;;-FA6A;CJK COMPATIBILITY IDEOGRAPH-FA6A;Lo;0;L;983B;;;;N;;;;;-FA6B;CJK COMPATIBILITY IDEOGRAPH-FA6B;Lo;0;L;6075;;;;N;;;;;-FA6C;CJK COMPATIBILITY IDEOGRAPH-FA6C;Lo;0;L;242EE;;;;N;;;;;-FA6D;CJK COMPATIBILITY IDEOGRAPH-FA6D;Lo;0;L;8218;;;;N;;;;;-FA70;CJK COMPATIBILITY IDEOGRAPH-FA70;Lo;0;L;4E26;;;;N;;;;;-FA71;CJK COMPATIBILITY IDEOGRAPH-FA71;Lo;0;L;51B5;;;;N;;;;;-FA72;CJK COMPATIBILITY IDEOGRAPH-FA72;Lo;0;L;5168;;;;N;;;;;-FA73;CJK COMPATIBILITY IDEOGRAPH-FA73;Lo;0;L;4F80;;;;N;;;;;-FA74;CJK COMPATIBILITY IDEOGRAPH-FA74;Lo;0;L;5145;;;;N;;;;;-FA75;CJK COMPATIBILITY IDEOGRAPH-FA75;Lo;0;L;5180;;;;N;;;;;-FA76;CJK COMPATIBILITY IDEOGRAPH-FA76;Lo;0;L;52C7;;;;N;;;;;-FA77;CJK COMPATIBILITY IDEOGRAPH-FA77;Lo;0;L;52FA;;;;N;;;;;-FA78;CJK COMPATIBILITY IDEOGRAPH-FA78;Lo;0;L;559D;;;;N;;;;;-FA79;CJK COMPATIBILITY IDEOGRAPH-FA79;Lo;0;L;5555;;;;N;;;;;-FA7A;CJK COMPATIBILITY IDEOGRAPH-FA7A;Lo;0;L;5599;;;;N;;;;;-FA7B;CJK COMPATIBILITY IDEOGRAPH-FA7B;Lo;0;L;55E2;;;;N;;;;;-FA7C;CJK COMPATIBILITY IDEOGRAPH-FA7C;Lo;0;L;585A;;;;N;;;;;-FA7D;CJK COMPATIBILITY IDEOGRAPH-FA7D;Lo;0;L;58B3;;;;N;;;;;-FA7E;CJK COMPATIBILITY IDEOGRAPH-FA7E;Lo;0;L;5944;;;;N;;;;;-FA7F;CJK COMPATIBILITY IDEOGRAPH-FA7F;Lo;0;L;5954;;;;N;;;;;-FA80;CJK COMPATIBILITY IDEOGRAPH-FA80;Lo;0;L;5A62;;;;N;;;;;-FA81;CJK COMPATIBILITY IDEOGRAPH-FA81;Lo;0;L;5B28;;;;N;;;;;-FA82;CJK COMPATIBILITY IDEOGRAPH-FA82;Lo;0;L;5ED2;;;;N;;;;;-FA83;CJK COMPATIBILITY IDEOGRAPH-FA83;Lo;0;L;5ED9;;;;N;;;;;-FA84;CJK COMPATIBILITY IDEOGRAPH-FA84;Lo;0;L;5F69;;;;N;;;;;-FA85;CJK COMPATIBILITY IDEOGRAPH-FA85;Lo;0;L;5FAD;;;;N;;;;;-FA86;CJK COMPATIBILITY IDEOGRAPH-FA86;Lo;0;L;60D8;;;;N;;;;;-FA87;CJK COMPATIBILITY IDEOGRAPH-FA87;Lo;0;L;614E;;;;N;;;;;-FA88;CJK COMPATIBILITY IDEOGRAPH-FA88;Lo;0;L;6108;;;;N;;;;;-FA89;CJK COMPATIBILITY IDEOGRAPH-FA89;Lo;0;L;618E;;;;N;;;;;-FA8A;CJK COMPATIBILITY IDEOGRAPH-FA8A;Lo;0;L;6160;;;;N;;;;;-FA8B;CJK COMPATIBILITY IDEOGRAPH-FA8B;Lo;0;L;61F2;;;;N;;;;;-FA8C;CJK COMPATIBILITY IDEOGRAPH-FA8C;Lo;0;L;6234;;;;N;;;;;-FA8D;CJK COMPATIBILITY IDEOGRAPH-FA8D;Lo;0;L;63C4;;;;N;;;;;-FA8E;CJK COMPATIBILITY IDEOGRAPH-FA8E;Lo;0;L;641C;;;;N;;;;;-FA8F;CJK COMPATIBILITY IDEOGRAPH-FA8F;Lo;0;L;6452;;;;N;;;;;-FA90;CJK COMPATIBILITY IDEOGRAPH-FA90;Lo;0;L;6556;;;;N;;;;;-FA91;CJK COMPATIBILITY IDEOGRAPH-FA91;Lo;0;L;6674;;;;N;;;;;-FA92;CJK COMPATIBILITY IDEOGRAPH-FA92;Lo;0;L;6717;;;;N;;;;;-FA93;CJK COMPATIBILITY IDEOGRAPH-FA93;Lo;0;L;671B;;;;N;;;;;-FA94;CJK COMPATIBILITY IDEOGRAPH-FA94;Lo;0;L;6756;;;;N;;;;;-FA95;CJK COMPATIBILITY IDEOGRAPH-FA95;Lo;0;L;6B79;;;;N;;;;;-FA96;CJK COMPATIBILITY IDEOGRAPH-FA96;Lo;0;L;6BBA;;;;N;;;;;-FA97;CJK COMPATIBILITY IDEOGRAPH-FA97;Lo;0;L;6D41;;;;N;;;;;-FA98;CJK COMPATIBILITY IDEOGRAPH-FA98;Lo;0;L;6EDB;;;;N;;;;;-FA99;CJK COMPATIBILITY IDEOGRAPH-FA99;Lo;0;L;6ECB;;;;N;;;;;-FA9A;CJK COMPATIBILITY IDEOGRAPH-FA9A;Lo;0;L;6F22;;;;N;;;;;-FA9B;CJK COMPATIBILITY IDEOGRAPH-FA9B;Lo;0;L;701E;;;;N;;;;;-FA9C;CJK COMPATIBILITY IDEOGRAPH-FA9C;Lo;0;L;716E;;;;N;;;;;-FA9D;CJK COMPATIBILITY IDEOGRAPH-FA9D;Lo;0;L;77A7;;;;N;;;;;-FA9E;CJK COMPATIBILITY IDEOGRAPH-FA9E;Lo;0;L;7235;;;;N;;;;;-FA9F;CJK COMPATIBILITY IDEOGRAPH-FA9F;Lo;0;L;72AF;;;;N;;;;;-FAA0;CJK COMPATIBILITY IDEOGRAPH-FAA0;Lo;0;L;732A;;;;N;;;;;-FAA1;CJK COMPATIBILITY IDEOGRAPH-FAA1;Lo;0;L;7471;;;;N;;;;;-FAA2;CJK COMPATIBILITY IDEOGRAPH-FAA2;Lo;0;L;7506;;;;N;;;;;-FAA3;CJK COMPATIBILITY IDEOGRAPH-FAA3;Lo;0;L;753B;;;;N;;;;;-FAA4;CJK COMPATIBILITY IDEOGRAPH-FAA4;Lo;0;L;761D;;;;N;;;;;-FAA5;CJK COMPATIBILITY IDEOGRAPH-FAA5;Lo;0;L;761F;;;;N;;;;;-FAA6;CJK COMPATIBILITY IDEOGRAPH-FAA6;Lo;0;L;76CA;;;;N;;;;;-FAA7;CJK COMPATIBILITY IDEOGRAPH-FAA7;Lo;0;L;76DB;;;;N;;;;;-FAA8;CJK COMPATIBILITY IDEOGRAPH-FAA8;Lo;0;L;76F4;;;;N;;;;;-FAA9;CJK COMPATIBILITY IDEOGRAPH-FAA9;Lo;0;L;774A;;;;N;;;;;-FAAA;CJK COMPATIBILITY IDEOGRAPH-FAAA;Lo;0;L;7740;;;;N;;;;;-FAAB;CJK COMPATIBILITY IDEOGRAPH-FAAB;Lo;0;L;78CC;;;;N;;;;;-FAAC;CJK COMPATIBILITY IDEOGRAPH-FAAC;Lo;0;L;7AB1;;;;N;;;;;-FAAD;CJK COMPATIBILITY IDEOGRAPH-FAAD;Lo;0;L;7BC0;;;;N;;;;;-FAAE;CJK COMPATIBILITY IDEOGRAPH-FAAE;Lo;0;L;7C7B;;;;N;;;;;-FAAF;CJK COMPATIBILITY IDEOGRAPH-FAAF;Lo;0;L;7D5B;;;;N;;;;;-FAB0;CJK COMPATIBILITY IDEOGRAPH-FAB0;Lo;0;L;7DF4;;;;N;;;;;-FAB1;CJK COMPATIBILITY IDEOGRAPH-FAB1;Lo;0;L;7F3E;;;;N;;;;;-FAB2;CJK COMPATIBILITY IDEOGRAPH-FAB2;Lo;0;L;8005;;;;N;;;;;-FAB3;CJK COMPATIBILITY IDEOGRAPH-FAB3;Lo;0;L;8352;;;;N;;;;;-FAB4;CJK COMPATIBILITY IDEOGRAPH-FAB4;Lo;0;L;83EF;;;;N;;;;;-FAB5;CJK COMPATIBILITY IDEOGRAPH-FAB5;Lo;0;L;8779;;;;N;;;;;-FAB6;CJK COMPATIBILITY IDEOGRAPH-FAB6;Lo;0;L;8941;;;;N;;;;;-FAB7;CJK COMPATIBILITY IDEOGRAPH-FAB7;Lo;0;L;8986;;;;N;;;;;-FAB8;CJK COMPATIBILITY IDEOGRAPH-FAB8;Lo;0;L;8996;;;;N;;;;;-FAB9;CJK COMPATIBILITY IDEOGRAPH-FAB9;Lo;0;L;8ABF;;;;N;;;;;-FABA;CJK COMPATIBILITY IDEOGRAPH-FABA;Lo;0;L;8AF8;;;;N;;;;;-FABB;CJK COMPATIBILITY IDEOGRAPH-FABB;Lo;0;L;8ACB;;;;N;;;;;-FABC;CJK COMPATIBILITY IDEOGRAPH-FABC;Lo;0;L;8B01;;;;N;;;;;-FABD;CJK COMPATIBILITY IDEOGRAPH-FABD;Lo;0;L;8AFE;;;;N;;;;;-FABE;CJK COMPATIBILITY IDEOGRAPH-FABE;Lo;0;L;8AED;;;;N;;;;;-FABF;CJK COMPATIBILITY IDEOGRAPH-FABF;Lo;0;L;8B39;;;;N;;;;;-FAC0;CJK COMPATIBILITY IDEOGRAPH-FAC0;Lo;0;L;8B8A;;;;N;;;;;-FAC1;CJK COMPATIBILITY IDEOGRAPH-FAC1;Lo;0;L;8D08;;;;N;;;;;-FAC2;CJK COMPATIBILITY IDEOGRAPH-FAC2;Lo;0;L;8F38;;;;N;;;;;-FAC3;CJK COMPATIBILITY IDEOGRAPH-FAC3;Lo;0;L;9072;;;;N;;;;;-FAC4;CJK COMPATIBILITY IDEOGRAPH-FAC4;Lo;0;L;9199;;;;N;;;;;-FAC5;CJK COMPATIBILITY IDEOGRAPH-FAC5;Lo;0;L;9276;;;;N;;;;;-FAC6;CJK COMPATIBILITY IDEOGRAPH-FAC6;Lo;0;L;967C;;;;N;;;;;-FAC7;CJK COMPATIBILITY IDEOGRAPH-FAC7;Lo;0;L;96E3;;;;N;;;;;-FAC8;CJK COMPATIBILITY IDEOGRAPH-FAC8;Lo;0;L;9756;;;;N;;;;;-FAC9;CJK COMPATIBILITY IDEOGRAPH-FAC9;Lo;0;L;97DB;;;;N;;;;;-FACA;CJK COMPATIBILITY IDEOGRAPH-FACA;Lo;0;L;97FF;;;;N;;;;;-FACB;CJK COMPATIBILITY IDEOGRAPH-FACB;Lo;0;L;980B;;;;N;;;;;-FACC;CJK COMPATIBILITY IDEOGRAPH-FACC;Lo;0;L;983B;;;;N;;;;;-FACD;CJK COMPATIBILITY IDEOGRAPH-FACD;Lo;0;L;9B12;;;;N;;;;;-FACE;CJK COMPATIBILITY IDEOGRAPH-FACE;Lo;0;L;9F9C;;;;N;;;;;-FACF;CJK COMPATIBILITY IDEOGRAPH-FACF;Lo;0;L;2284A;;;;N;;;;;-FAD0;CJK COMPATIBILITY IDEOGRAPH-FAD0;Lo;0;L;22844;;;;N;;;;;-FAD1;CJK COMPATIBILITY IDEOGRAPH-FAD1;Lo;0;L;233D5;;;;N;;;;;-FAD2;CJK COMPATIBILITY IDEOGRAPH-FAD2;Lo;0;L;3B9D;;;;N;;;;;-FAD3;CJK COMPATIBILITY IDEOGRAPH-FAD3;Lo;0;L;4018;;;;N;;;;;-FAD4;CJK COMPATIBILITY IDEOGRAPH-FAD4;Lo;0;L;4039;;;;N;;;;;-FAD5;CJK COMPATIBILITY IDEOGRAPH-FAD5;Lo;0;L;25249;;;;N;;;;;-FAD6;CJK COMPATIBILITY IDEOGRAPH-FAD6;Lo;0;L;25CD0;;;;N;;;;;-FAD7;CJK COMPATIBILITY IDEOGRAPH-FAD7;Lo;0;L;27ED3;;;;N;;;;;-FAD8;CJK COMPATIBILITY IDEOGRAPH-FAD8;Lo;0;L;9F43;;;;N;;;;;-FAD9;CJK COMPATIBILITY IDEOGRAPH-FAD9;Lo;0;L;9F8E;;;;N;;;;;-FB00;LATIN SMALL LIGATURE FF;Ll;0;L;<compat> 0066 0066;;;;N;;;;;-FB01;LATIN SMALL LIGATURE FI;Ll;0;L;<compat> 0066 0069;;;;N;;;;;-FB02;LATIN SMALL LIGATURE FL;Ll;0;L;<compat> 0066 006C;;;;N;;;;;-FB03;LATIN SMALL LIGATURE FFI;Ll;0;L;<compat> 0066 0066 0069;;;;N;;;;;-FB04;LATIN SMALL LIGATURE FFL;Ll;0;L;<compat> 0066 0066 006C;;;;N;;;;;-FB05;LATIN SMALL LIGATURE LONG S T;Ll;0;L;<compat> 017F 0074;;;;N;;;;;-FB06;LATIN SMALL LIGATURE ST;Ll;0;L;<compat> 0073 0074;;;;N;;;;;-FB13;ARMENIAN SMALL LIGATURE MEN NOW;Ll;0;L;<compat> 0574 0576;;;;N;;;;;-FB14;ARMENIAN SMALL LIGATURE MEN ECH;Ll;0;L;<compat> 0574 0565;;;;N;;;;;-FB15;ARMENIAN SMALL LIGATURE MEN INI;Ll;0;L;<compat> 0574 056B;;;;N;;;;;-FB16;ARMENIAN SMALL LIGATURE VEW NOW;Ll;0;L;<compat> 057E 0576;;;;N;;;;;-FB17;ARMENIAN SMALL LIGATURE MEN XEH;Ll;0;L;<compat> 0574 056D;;;;N;;;;;-FB1D;HEBREW LETTER YOD WITH HIRIQ;Lo;0;R;05D9 05B4;;;;N;;;;;-FB1E;HEBREW POINT JUDEO-SPANISH VARIKA;Mn;26;NSM;;;;;N;HEBREW POINT VARIKA;;;;-FB1F;HEBREW LIGATURE YIDDISH YOD YOD PATAH;Lo;0;R;05F2 05B7;;;;N;;;;;-FB20;HEBREW LETTER ALTERNATIVE AYIN;Lo;0;R;<font> 05E2;;;;N;;;;;-FB21;HEBREW LETTER WIDE ALEF;Lo;0;R;<font> 05D0;;;;N;;;;;-FB22;HEBREW LETTER WIDE DALET;Lo;0;R;<font> 05D3;;;;N;;;;;-FB23;HEBREW LETTER WIDE HE;Lo;0;R;<font> 05D4;;;;N;;;;;-FB24;HEBREW LETTER WIDE KAF;Lo;0;R;<font> 05DB;;;;N;;;;;-FB25;HEBREW LETTER WIDE LAMED;Lo;0;R;<font> 05DC;;;;N;;;;;-FB26;HEBREW LETTER WIDE FINAL MEM;Lo;0;R;<font> 05DD;;;;N;;;;;-FB27;HEBREW LETTER WIDE RESH;Lo;0;R;<font> 05E8;;;;N;;;;;-FB28;HEBREW LETTER WIDE TAV;Lo;0;R;<font> 05EA;;;;N;;;;;-FB29;HEBREW LETTER ALTERNATIVE PLUS SIGN;Sm;0;ES;<font> 002B;;;;N;;;;;-FB2A;HEBREW LETTER SHIN WITH SHIN DOT;Lo;0;R;05E9 05C1;;;;N;;;;;-FB2B;HEBREW LETTER SHIN WITH SIN DOT;Lo;0;R;05E9 05C2;;;;N;;;;;-FB2C;HEBREW LETTER SHIN WITH DAGESH AND SHIN DOT;Lo;0;R;FB49 05C1;;;;N;;;;;-FB2D;HEBREW LETTER SHIN WITH DAGESH AND SIN DOT;Lo;0;R;FB49 05C2;;;;N;;;;;-FB2E;HEBREW LETTER ALEF WITH PATAH;Lo;0;R;05D0 05B7;;;;N;;;;;-FB2F;HEBREW LETTER ALEF WITH QAMATS;Lo;0;R;05D0 05B8;;;;N;;;;;-FB30;HEBREW LETTER ALEF WITH MAPIQ;Lo;0;R;05D0 05BC;;;;N;;;;;-FB31;HEBREW LETTER BET WITH DAGESH;Lo;0;R;05D1 05BC;;;;N;;;;;-FB32;HEBREW LETTER GIMEL WITH DAGESH;Lo;0;R;05D2 05BC;;;;N;;;;;-FB33;HEBREW LETTER DALET WITH DAGESH;Lo;0;R;05D3 05BC;;;;N;;;;;-FB34;HEBREW LETTER HE WITH MAPIQ;Lo;0;R;05D4 05BC;;;;N;;;;;-FB35;HEBREW LETTER VAV WITH DAGESH;Lo;0;R;05D5 05BC;;;;N;;;;;-FB36;HEBREW LETTER ZAYIN WITH DAGESH;Lo;0;R;05D6 05BC;;;;N;;;;;-FB38;HEBREW LETTER TET WITH DAGESH;Lo;0;R;05D8 05BC;;;;N;;;;;-FB39;HEBREW LETTER YOD WITH DAGESH;Lo;0;R;05D9 05BC;;;;N;;;;;-FB3A;HEBREW LETTER FINAL KAF WITH DAGESH;Lo;0;R;05DA 05BC;;;;N;;;;;-FB3B;HEBREW LETTER KAF WITH DAGESH;Lo;0;R;05DB 05BC;;;;N;;;;;-FB3C;HEBREW LETTER LAMED WITH DAGESH;Lo;0;R;05DC 05BC;;;;N;;;;;-FB3E;HEBREW LETTER MEM WITH DAGESH;Lo;0;R;05DE 05BC;;;;N;;;;;-FB40;HEBREW LETTER NUN WITH DAGESH;Lo;0;R;05E0 05BC;;;;N;;;;;-FB41;HEBREW LETTER SAMEKH WITH DAGESH;Lo;0;R;05E1 05BC;;;;N;;;;;-FB43;HEBREW LETTER FINAL PE WITH DAGESH;Lo;0;R;05E3 05BC;;;;N;;;;;-FB44;HEBREW LETTER PE WITH DAGESH;Lo;0;R;05E4 05BC;;;;N;;;;;-FB46;HEBREW LETTER TSADI WITH DAGESH;Lo;0;R;05E6 05BC;;;;N;;;;;-FB47;HEBREW LETTER QOF WITH DAGESH;Lo;0;R;05E7 05BC;;;;N;;;;;-FB48;HEBREW LETTER RESH WITH DAGESH;Lo;0;R;05E8 05BC;;;;N;;;;;-FB49;HEBREW LETTER SHIN WITH DAGESH;Lo;0;R;05E9 05BC;;;;N;;;;;-FB4A;HEBREW LETTER TAV WITH DAGESH;Lo;0;R;05EA 05BC;;;;N;;;;;-FB4B;HEBREW LETTER VAV WITH HOLAM;Lo;0;R;05D5 05B9;;;;N;;;;;-FB4C;HEBREW LETTER BET WITH RAFE;Lo;0;R;05D1 05BF;;;;N;;;;;-FB4D;HEBREW LETTER KAF WITH RAFE;Lo;0;R;05DB 05BF;;;;N;;;;;-FB4E;HEBREW LETTER PE WITH RAFE;Lo;0;R;05E4 05BF;;;;N;;;;;-FB4F;HEBREW LIGATURE ALEF LAMED;Lo;0;R;<compat> 05D0 05DC;;;;N;;;;;-FB50;ARABIC LETTER ALEF WASLA ISOLATED FORM;Lo;0;AL;<isolated> 0671;;;;N;;;;;-FB51;ARABIC LETTER ALEF WASLA FINAL FORM;Lo;0;AL;<final> 0671;;;;N;;;;;-FB52;ARABIC LETTER BEEH ISOLATED FORM;Lo;0;AL;<isolated> 067B;;;;N;;;;;-FB53;ARABIC LETTER BEEH FINAL FORM;Lo;0;AL;<final> 067B;;;;N;;;;;-FB54;ARABIC LETTER BEEH INITIAL FORM;Lo;0;AL;<initial> 067B;;;;N;;;;;-FB55;ARABIC LETTER BEEH MEDIAL FORM;Lo;0;AL;<medial> 067B;;;;N;;;;;-FB56;ARABIC LETTER PEH ISOLATED FORM;Lo;0;AL;<isolated> 067E;;;;N;;;;;-FB57;ARABIC LETTER PEH FINAL FORM;Lo;0;AL;<final> 067E;;;;N;;;;;-FB58;ARABIC LETTER PEH INITIAL FORM;Lo;0;AL;<initial> 067E;;;;N;;;;;-FB59;ARABIC LETTER PEH MEDIAL FORM;Lo;0;AL;<medial> 067E;;;;N;;;;;-FB5A;ARABIC LETTER BEHEH ISOLATED FORM;Lo;0;AL;<isolated> 0680;;;;N;;;;;-FB5B;ARABIC LETTER BEHEH FINAL FORM;Lo;0;AL;<final> 0680;;;;N;;;;;-FB5C;ARABIC LETTER BEHEH INITIAL FORM;Lo;0;AL;<initial> 0680;;;;N;;;;;-FB5D;ARABIC LETTER BEHEH MEDIAL FORM;Lo;0;AL;<medial> 0680;;;;N;;;;;-FB5E;ARABIC LETTER TTEHEH ISOLATED FORM;Lo;0;AL;<isolated> 067A;;;;N;;;;;-FB5F;ARABIC LETTER TTEHEH FINAL FORM;Lo;0;AL;<final> 067A;;;;N;;;;;-FB60;ARABIC LETTER TTEHEH INITIAL FORM;Lo;0;AL;<initial> 067A;;;;N;;;;;-FB61;ARABIC LETTER TTEHEH MEDIAL FORM;Lo;0;AL;<medial> 067A;;;;N;;;;;-FB62;ARABIC LETTER TEHEH ISOLATED FORM;Lo;0;AL;<isolated> 067F;;;;N;;;;;-FB63;ARABIC LETTER TEHEH FINAL FORM;Lo;0;AL;<final> 067F;;;;N;;;;;-FB64;ARABIC LETTER TEHEH INITIAL FORM;Lo;0;AL;<initial> 067F;;;;N;;;;;-FB65;ARABIC LETTER TEHEH MEDIAL FORM;Lo;0;AL;<medial> 067F;;;;N;;;;;-FB66;ARABIC LETTER TTEH ISOLATED FORM;Lo;0;AL;<isolated> 0679;;;;N;;;;;-FB67;ARABIC LETTER TTEH FINAL FORM;Lo;0;AL;<final> 0679;;;;N;;;;;-FB68;ARABIC LETTER TTEH INITIAL FORM;Lo;0;AL;<initial> 0679;;;;N;;;;;-FB69;ARABIC LETTER TTEH MEDIAL FORM;Lo;0;AL;<medial> 0679;;;;N;;;;;-FB6A;ARABIC LETTER VEH ISOLATED FORM;Lo;0;AL;<isolated> 06A4;;;;N;;;;;-FB6B;ARABIC LETTER VEH FINAL FORM;Lo;0;AL;<final> 06A4;;;;N;;;;;-FB6C;ARABIC LETTER VEH INITIAL FORM;Lo;0;AL;<initial> 06A4;;;;N;;;;;-FB6D;ARABIC LETTER VEH MEDIAL FORM;Lo;0;AL;<medial> 06A4;;;;N;;;;;-FB6E;ARABIC LETTER PEHEH ISOLATED FORM;Lo;0;AL;<isolated> 06A6;;;;N;;;;;-FB6F;ARABIC LETTER PEHEH FINAL FORM;Lo;0;AL;<final> 06A6;;;;N;;;;;-FB70;ARABIC LETTER PEHEH INITIAL FORM;Lo;0;AL;<initial> 06A6;;;;N;;;;;-FB71;ARABIC LETTER PEHEH MEDIAL FORM;Lo;0;AL;<medial> 06A6;;;;N;;;;;-FB72;ARABIC LETTER DYEH ISOLATED FORM;Lo;0;AL;<isolated> 0684;;;;N;;;;;-FB73;ARABIC LETTER DYEH FINAL FORM;Lo;0;AL;<final> 0684;;;;N;;;;;-FB74;ARABIC LETTER DYEH INITIAL FORM;Lo;0;AL;<initial> 0684;;;;N;;;;;-FB75;ARABIC LETTER DYEH MEDIAL FORM;Lo;0;AL;<medial> 0684;;;;N;;;;;-FB76;ARABIC LETTER NYEH ISOLATED FORM;Lo;0;AL;<isolated> 0683;;;;N;;;;;-FB77;ARABIC LETTER NYEH FINAL FORM;Lo;0;AL;<final> 0683;;;;N;;;;;-FB78;ARABIC LETTER NYEH INITIAL FORM;Lo;0;AL;<initial> 0683;;;;N;;;;;-FB79;ARABIC LETTER NYEH MEDIAL FORM;Lo;0;AL;<medial> 0683;;;;N;;;;;-FB7A;ARABIC LETTER TCHEH ISOLATED FORM;Lo;0;AL;<isolated> 0686;;;;N;;;;;-FB7B;ARABIC LETTER TCHEH FINAL FORM;Lo;0;AL;<final> 0686;;;;N;;;;;-FB7C;ARABIC LETTER TCHEH INITIAL FORM;Lo;0;AL;<initial> 0686;;;;N;;;;;-FB7D;ARABIC LETTER TCHEH MEDIAL FORM;Lo;0;AL;<medial> 0686;;;;N;;;;;-FB7E;ARABIC LETTER TCHEHEH ISOLATED FORM;Lo;0;AL;<isolated> 0687;;;;N;;;;;-FB7F;ARABIC LETTER TCHEHEH FINAL FORM;Lo;0;AL;<final> 0687;;;;N;;;;;-FB80;ARABIC LETTER TCHEHEH INITIAL FORM;Lo;0;AL;<initial> 0687;;;;N;;;;;-FB81;ARABIC LETTER TCHEHEH MEDIAL FORM;Lo;0;AL;<medial> 0687;;;;N;;;;;-FB82;ARABIC LETTER DDAHAL ISOLATED FORM;Lo;0;AL;<isolated> 068D;;;;N;;;;;-FB83;ARABIC LETTER DDAHAL FINAL FORM;Lo;0;AL;<final> 068D;;;;N;;;;;-FB84;ARABIC LETTER DAHAL ISOLATED FORM;Lo;0;AL;<isolated> 068C;;;;N;;;;;-FB85;ARABIC LETTER DAHAL FINAL FORM;Lo;0;AL;<final> 068C;;;;N;;;;;-FB86;ARABIC LETTER DUL ISOLATED FORM;Lo;0;AL;<isolated> 068E;;;;N;;;;;-FB87;ARABIC LETTER DUL FINAL FORM;Lo;0;AL;<final> 068E;;;;N;;;;;-FB88;ARABIC LETTER DDAL ISOLATED FORM;Lo;0;AL;<isolated> 0688;;;;N;;;;;-FB89;ARABIC LETTER DDAL FINAL FORM;Lo;0;AL;<final> 0688;;;;N;;;;;-FB8A;ARABIC LETTER JEH ISOLATED FORM;Lo;0;AL;<isolated> 0698;;;;N;;;;;-FB8B;ARABIC LETTER JEH FINAL FORM;Lo;0;AL;<final> 0698;;;;N;;;;;-FB8C;ARABIC LETTER RREH ISOLATED FORM;Lo;0;AL;<isolated> 0691;;;;N;;;;;-FB8D;ARABIC LETTER RREH FINAL FORM;Lo;0;AL;<final> 0691;;;;N;;;;;-FB8E;ARABIC LETTER KEHEH ISOLATED FORM;Lo;0;AL;<isolated> 06A9;;;;N;;;;;-FB8F;ARABIC LETTER KEHEH FINAL FORM;Lo;0;AL;<final> 06A9;;;;N;;;;;-FB90;ARABIC LETTER KEHEH INITIAL FORM;Lo;0;AL;<initial> 06A9;;;;N;;;;;-FB91;ARABIC LETTER KEHEH MEDIAL FORM;Lo;0;AL;<medial> 06A9;;;;N;;;;;-FB92;ARABIC LETTER GAF ISOLATED FORM;Lo;0;AL;<isolated> 06AF;;;;N;;;;;-FB93;ARABIC LETTER GAF FINAL FORM;Lo;0;AL;<final> 06AF;;;;N;;;;;-FB94;ARABIC LETTER GAF INITIAL FORM;Lo;0;AL;<initial> 06AF;;;;N;;;;;-FB95;ARABIC LETTER GAF MEDIAL FORM;Lo;0;AL;<medial> 06AF;;;;N;;;;;-FB96;ARABIC LETTER GUEH ISOLATED FORM;Lo;0;AL;<isolated> 06B3;;;;N;;;;;-FB97;ARABIC LETTER GUEH FINAL FORM;Lo;0;AL;<final> 06B3;;;;N;;;;;-FB98;ARABIC LETTER GUEH INITIAL FORM;Lo;0;AL;<initial> 06B3;;;;N;;;;;-FB99;ARABIC LETTER GUEH MEDIAL FORM;Lo;0;AL;<medial> 06B3;;;;N;;;;;-FB9A;ARABIC LETTER NGOEH ISOLATED FORM;Lo;0;AL;<isolated> 06B1;;;;N;;;;;-FB9B;ARABIC LETTER NGOEH FINAL FORM;Lo;0;AL;<final> 06B1;;;;N;;;;;-FB9C;ARABIC LETTER NGOEH INITIAL FORM;Lo;0;AL;<initial> 06B1;;;;N;;;;;-FB9D;ARABIC LETTER NGOEH MEDIAL FORM;Lo;0;AL;<medial> 06B1;;;;N;;;;;-FB9E;ARABIC LETTER NOON GHUNNA ISOLATED FORM;Lo;0;AL;<isolated> 06BA;;;;N;;;;;-FB9F;ARABIC LETTER NOON GHUNNA FINAL FORM;Lo;0;AL;<final> 06BA;;;;N;;;;;-FBA0;ARABIC LETTER RNOON ISOLATED FORM;Lo;0;AL;<isolated> 06BB;;;;N;;;;;-FBA1;ARABIC LETTER RNOON FINAL FORM;Lo;0;AL;<final> 06BB;;;;N;;;;;-FBA2;ARABIC LETTER RNOON INITIAL FORM;Lo;0;AL;<initial> 06BB;;;;N;;;;;-FBA3;ARABIC LETTER RNOON MEDIAL FORM;Lo;0;AL;<medial> 06BB;;;;N;;;;;-FBA4;ARABIC LETTER HEH WITH YEH ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 06C0;;;;N;;;;;-FBA5;ARABIC LETTER HEH WITH YEH ABOVE FINAL FORM;Lo;0;AL;<final> 06C0;;;;N;;;;;-FBA6;ARABIC LETTER HEH GOAL ISOLATED FORM;Lo;0;AL;<isolated> 06C1;;;;N;;;;;-FBA7;ARABIC LETTER HEH GOAL FINAL FORM;Lo;0;AL;<final> 06C1;;;;N;;;;;-FBA8;ARABIC LETTER HEH GOAL INITIAL FORM;Lo;0;AL;<initial> 06C1;;;;N;;;;;-FBA9;ARABIC LETTER HEH GOAL MEDIAL FORM;Lo;0;AL;<medial> 06C1;;;;N;;;;;-FBAA;ARABIC LETTER HEH DOACHASHMEE ISOLATED FORM;Lo;0;AL;<isolated> 06BE;;;;N;;;;;-FBAB;ARABIC LETTER HEH DOACHASHMEE FINAL FORM;Lo;0;AL;<final> 06BE;;;;N;;;;;-FBAC;ARABIC LETTER HEH DOACHASHMEE INITIAL FORM;Lo;0;AL;<initial> 06BE;;;;N;;;;;-FBAD;ARABIC LETTER HEH DOACHASHMEE MEDIAL FORM;Lo;0;AL;<medial> 06BE;;;;N;;;;;-FBAE;ARABIC LETTER YEH BARREE ISOLATED FORM;Lo;0;AL;<isolated> 06D2;;;;N;;;;;-FBAF;ARABIC LETTER YEH BARREE FINAL FORM;Lo;0;AL;<final> 06D2;;;;N;;;;;-FBB0;ARABIC LETTER YEH BARREE WITH HAMZA ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 06D3;;;;N;;;;;-FBB1;ARABIC LETTER YEH BARREE WITH HAMZA ABOVE FINAL FORM;Lo;0;AL;<final> 06D3;;;;N;;;;;-FBB2;ARABIC SYMBOL DOT ABOVE;Sk;0;AL;;;;;N;;;;;-FBB3;ARABIC SYMBOL DOT BELOW;Sk;0;AL;;;;;N;;;;;-FBB4;ARABIC SYMBOL TWO DOTS ABOVE;Sk;0;AL;;;;;N;;;;;-FBB5;ARABIC SYMBOL TWO DOTS BELOW;Sk;0;AL;;;;;N;;;;;-FBB6;ARABIC SYMBOL THREE DOTS ABOVE;Sk;0;AL;;;;;N;;;;;-FBB7;ARABIC SYMBOL THREE DOTS BELOW;Sk;0;AL;;;;;N;;;;;-FBB8;ARABIC SYMBOL THREE DOTS POINTING DOWNWARDS ABOVE;Sk;0;AL;;;;;N;;;;;-FBB9;ARABIC SYMBOL THREE DOTS POINTING DOWNWARDS BELOW;Sk;0;AL;;;;;N;;;;;-FBBA;ARABIC SYMBOL FOUR DOTS ABOVE;Sk;0;AL;;;;;N;;;;;-FBBB;ARABIC SYMBOL FOUR DOTS BELOW;Sk;0;AL;;;;;N;;;;;-FBBC;ARABIC SYMBOL DOUBLE VERTICAL BAR BELOW;Sk;0;AL;;;;;N;;;;;-FBBD;ARABIC SYMBOL TWO DOTS VERTICALLY ABOVE;Sk;0;AL;;;;;N;;;;;-FBBE;ARABIC SYMBOL TWO DOTS VERTICALLY BELOW;Sk;0;AL;;;;;N;;;;;-FBBF;ARABIC SYMBOL RING;Sk;0;AL;;;;;N;;;;;-FBC0;ARABIC SYMBOL SMALL TAH ABOVE;Sk;0;AL;;;;;N;;;;;-FBC1;ARABIC SYMBOL SMALL TAH BELOW;Sk;0;AL;;;;;N;;;;;-FBD3;ARABIC LETTER NG ISOLATED FORM;Lo;0;AL;<isolated> 06AD;;;;N;;;;;-FBD4;ARABIC LETTER NG FINAL FORM;Lo;0;AL;<final> 06AD;;;;N;;;;;-FBD5;ARABIC LETTER NG INITIAL FORM;Lo;0;AL;<initial> 06AD;;;;N;;;;;-FBD6;ARABIC LETTER NG MEDIAL FORM;Lo;0;AL;<medial> 06AD;;;;N;;;;;-FBD7;ARABIC LETTER U ISOLATED FORM;Lo;0;AL;<isolated> 06C7;;;;N;;;;;-FBD8;ARABIC LETTER U FINAL FORM;Lo;0;AL;<final> 06C7;;;;N;;;;;-FBD9;ARABIC LETTER OE ISOLATED FORM;Lo;0;AL;<isolated> 06C6;;;;N;;;;;-FBDA;ARABIC LETTER OE FINAL FORM;Lo;0;AL;<final> 06C6;;;;N;;;;;-FBDB;ARABIC LETTER YU ISOLATED FORM;Lo;0;AL;<isolated> 06C8;;;;N;;;;;-FBDC;ARABIC LETTER YU FINAL FORM;Lo;0;AL;<final> 06C8;;;;N;;;;;-FBDD;ARABIC LETTER U WITH HAMZA ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 0677;;;;N;;;;;-FBDE;ARABIC LETTER VE ISOLATED FORM;Lo;0;AL;<isolated> 06CB;;;;N;;;;;-FBDF;ARABIC LETTER VE FINAL FORM;Lo;0;AL;<final> 06CB;;;;N;;;;;-FBE0;ARABIC LETTER KIRGHIZ OE ISOLATED FORM;Lo;0;AL;<isolated> 06C5;;;;N;;;;;-FBE1;ARABIC LETTER KIRGHIZ OE FINAL FORM;Lo;0;AL;<final> 06C5;;;;N;;;;;-FBE2;ARABIC LETTER KIRGHIZ YU ISOLATED FORM;Lo;0;AL;<isolated> 06C9;;;;N;;;;;-FBE3;ARABIC LETTER KIRGHIZ YU FINAL FORM;Lo;0;AL;<final> 06C9;;;;N;;;;;-FBE4;ARABIC LETTER E ISOLATED FORM;Lo;0;AL;<isolated> 06D0;;;;N;;;;;-FBE5;ARABIC LETTER E FINAL FORM;Lo;0;AL;<final> 06D0;;;;N;;;;;-FBE6;ARABIC LETTER E INITIAL FORM;Lo;0;AL;<initial> 06D0;;;;N;;;;;-FBE7;ARABIC LETTER E MEDIAL FORM;Lo;0;AL;<medial> 06D0;;;;N;;;;;-FBE8;ARABIC LETTER UIGHUR KAZAKH KIRGHIZ ALEF MAKSURA INITIAL FORM;Lo;0;AL;<initial> 0649;;;;N;;;;;-FBE9;ARABIC LETTER UIGHUR KAZAKH KIRGHIZ ALEF MAKSURA MEDIAL FORM;Lo;0;AL;<medial> 0649;;;;N;;;;;-FBEA;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF ISOLATED FORM;Lo;0;AL;<isolated> 0626 0627;;;;N;;;;;-FBEB;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF FINAL FORM;Lo;0;AL;<final> 0626 0627;;;;N;;;;;-FBEC;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH AE ISOLATED FORM;Lo;0;AL;<isolated> 0626 06D5;;;;N;;;;;-FBED;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH AE FINAL FORM;Lo;0;AL;<final> 0626 06D5;;;;N;;;;;-FBEE;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH WAW ISOLATED FORM;Lo;0;AL;<isolated> 0626 0648;;;;N;;;;;-FBEF;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH WAW FINAL FORM;Lo;0;AL;<final> 0626 0648;;;;N;;;;;-FBF0;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH U ISOLATED FORM;Lo;0;AL;<isolated> 0626 06C7;;;;N;;;;;-FBF1;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH U FINAL FORM;Lo;0;AL;<final> 0626 06C7;;;;N;;;;;-FBF2;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH OE ISOLATED FORM;Lo;0;AL;<isolated> 0626 06C6;;;;N;;;;;-FBF3;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH OE FINAL FORM;Lo;0;AL;<final> 0626 06C6;;;;N;;;;;-FBF4;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH YU ISOLATED FORM;Lo;0;AL;<isolated> 0626 06C8;;;;N;;;;;-FBF5;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH YU FINAL FORM;Lo;0;AL;<final> 0626 06C8;;;;N;;;;;-FBF6;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH E ISOLATED FORM;Lo;0;AL;<isolated> 0626 06D0;;;;N;;;;;-FBF7;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH E FINAL FORM;Lo;0;AL;<final> 0626 06D0;;;;N;;;;;-FBF8;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH E INITIAL FORM;Lo;0;AL;<initial> 0626 06D0;;;;N;;;;;-FBF9;ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ABOVE WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0626 0649;;;;N;;;;;-FBFA;ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ABOVE WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0626 0649;;;;N;;;;;-FBFB;ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ABOVE WITH ALEF MAKSURA INITIAL FORM;Lo;0;AL;<initial> 0626 0649;;;;N;;;;;-FBFC;ARABIC LETTER FARSI YEH ISOLATED FORM;Lo;0;AL;<isolated> 06CC;;;;N;;;;;-FBFD;ARABIC LETTER FARSI YEH FINAL FORM;Lo;0;AL;<final> 06CC;;;;N;;;;;-FBFE;ARABIC LETTER FARSI YEH INITIAL FORM;Lo;0;AL;<initial> 06CC;;;;N;;;;;-FBFF;ARABIC LETTER FARSI YEH MEDIAL FORM;Lo;0;AL;<medial> 06CC;;;;N;;;;;-FC00;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0626 062C;;;;N;;;;;-FC01;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0626 062D;;;;N;;;;;-FC02;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0626 0645;;;;N;;;;;-FC03;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0626 0649;;;;N;;;;;-FC04;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0626 064A;;;;N;;;;;-FC05;ARABIC LIGATURE BEH WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0628 062C;;;;N;;;;;-FC06;ARABIC LIGATURE BEH WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0628 062D;;;;N;;;;;-FC07;ARABIC LIGATURE BEH WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0628 062E;;;;N;;;;;-FC08;ARABIC LIGATURE BEH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0628 0645;;;;N;;;;;-FC09;ARABIC LIGATURE BEH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0628 0649;;;;N;;;;;-FC0A;ARABIC LIGATURE BEH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0628 064A;;;;N;;;;;-FC0B;ARABIC LIGATURE TEH WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 062A 062C;;;;N;;;;;-FC0C;ARABIC LIGATURE TEH WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 062A 062D;;;;N;;;;;-FC0D;ARABIC LIGATURE TEH WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 062A 062E;;;;N;;;;;-FC0E;ARABIC LIGATURE TEH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 062A 0645;;;;N;;;;;-FC0F;ARABIC LIGATURE TEH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 062A 0649;;;;N;;;;;-FC10;ARABIC LIGATURE TEH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 062A 064A;;;;N;;;;;-FC11;ARABIC LIGATURE THEH WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 062B 062C;;;;N;;;;;-FC12;ARABIC LIGATURE THEH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 062B 0645;;;;N;;;;;-FC13;ARABIC LIGATURE THEH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 062B 0649;;;;N;;;;;-FC14;ARABIC LIGATURE THEH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 062B 064A;;;;N;;;;;-FC15;ARABIC LIGATURE JEEM WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 062C 062D;;;;N;;;;;-FC16;ARABIC LIGATURE JEEM WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 062C 0645;;;;N;;;;;-FC17;ARABIC LIGATURE HAH WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 062D 062C;;;;N;;;;;-FC18;ARABIC LIGATURE HAH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 062D 0645;;;;N;;;;;-FC19;ARABIC LIGATURE KHAH WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 062E 062C;;;;N;;;;;-FC1A;ARABIC LIGATURE KHAH WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 062E 062D;;;;N;;;;;-FC1B;ARABIC LIGATURE KHAH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 062E 0645;;;;N;;;;;-FC1C;ARABIC LIGATURE SEEN WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0633 062C;;;;N;;;;;-FC1D;ARABIC LIGATURE SEEN WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0633 062D;;;;N;;;;;-FC1E;ARABIC LIGATURE SEEN WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0633 062E;;;;N;;;;;-FC1F;ARABIC LIGATURE SEEN WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0633 0645;;;;N;;;;;-FC20;ARABIC LIGATURE SAD WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0635 062D;;;;N;;;;;-FC21;ARABIC LIGATURE SAD WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0635 0645;;;;N;;;;;-FC22;ARABIC LIGATURE DAD WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0636 062C;;;;N;;;;;-FC23;ARABIC LIGATURE DAD WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0636 062D;;;;N;;;;;-FC24;ARABIC LIGATURE DAD WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0636 062E;;;;N;;;;;-FC25;ARABIC LIGATURE DAD WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0636 0645;;;;N;;;;;-FC26;ARABIC LIGATURE TAH WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0637 062D;;;;N;;;;;-FC27;ARABIC LIGATURE TAH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0637 0645;;;;N;;;;;-FC28;ARABIC LIGATURE ZAH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0638 0645;;;;N;;;;;-FC29;ARABIC LIGATURE AIN WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0639 062C;;;;N;;;;;-FC2A;ARABIC LIGATURE AIN WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0639 0645;;;;N;;;;;-FC2B;ARABIC LIGATURE GHAIN WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 063A 062C;;;;N;;;;;-FC2C;ARABIC LIGATURE GHAIN WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 063A 0645;;;;N;;;;;-FC2D;ARABIC LIGATURE FEH WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0641 062C;;;;N;;;;;-FC2E;ARABIC LIGATURE FEH WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0641 062D;;;;N;;;;;-FC2F;ARABIC LIGATURE FEH WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0641 062E;;;;N;;;;;-FC30;ARABIC LIGATURE FEH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0641 0645;;;;N;;;;;-FC31;ARABIC LIGATURE FEH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0641 0649;;;;N;;;;;-FC32;ARABIC LIGATURE FEH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0641 064A;;;;N;;;;;-FC33;ARABIC LIGATURE QAF WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0642 062D;;;;N;;;;;-FC34;ARABIC LIGATURE QAF WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0642 0645;;;;N;;;;;-FC35;ARABIC LIGATURE QAF WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0642 0649;;;;N;;;;;-FC36;ARABIC LIGATURE QAF WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0642 064A;;;;N;;;;;-FC37;ARABIC LIGATURE KAF WITH ALEF ISOLATED FORM;Lo;0;AL;<isolated> 0643 0627;;;;N;;;;;-FC38;ARABIC LIGATURE KAF WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0643 062C;;;;N;;;;;-FC39;ARABIC LIGATURE KAF WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0643 062D;;;;N;;;;;-FC3A;ARABIC LIGATURE KAF WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0643 062E;;;;N;;;;;-FC3B;ARABIC LIGATURE KAF WITH LAM ISOLATED FORM;Lo;0;AL;<isolated> 0643 0644;;;;N;;;;;-FC3C;ARABIC LIGATURE KAF WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0643 0645;;;;N;;;;;-FC3D;ARABIC LIGATURE KAF WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0643 0649;;;;N;;;;;-FC3E;ARABIC LIGATURE KAF WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0643 064A;;;;N;;;;;-FC3F;ARABIC LIGATURE LAM WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0644 062C;;;;N;;;;;-FC40;ARABIC LIGATURE LAM WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0644 062D;;;;N;;;;;-FC41;ARABIC LIGATURE LAM WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0644 062E;;;;N;;;;;-FC42;ARABIC LIGATURE LAM WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0644 0645;;;;N;;;;;-FC43;ARABIC LIGATURE LAM WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0644 0649;;;;N;;;;;-FC44;ARABIC LIGATURE LAM WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0644 064A;;;;N;;;;;-FC45;ARABIC LIGATURE MEEM WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0645 062C;;;;N;;;;;-FC46;ARABIC LIGATURE MEEM WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0645 062D;;;;N;;;;;-FC47;ARABIC LIGATURE MEEM WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0645 062E;;;;N;;;;;-FC48;ARABIC LIGATURE MEEM WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0645 0645;;;;N;;;;;-FC49;ARABIC LIGATURE MEEM WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0645 0649;;;;N;;;;;-FC4A;ARABIC LIGATURE MEEM WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0645 064A;;;;N;;;;;-FC4B;ARABIC LIGATURE NOON WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0646 062C;;;;N;;;;;-FC4C;ARABIC LIGATURE NOON WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0646 062D;;;;N;;;;;-FC4D;ARABIC LIGATURE NOON WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0646 062E;;;;N;;;;;-FC4E;ARABIC LIGATURE NOON WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0646 0645;;;;N;;;;;-FC4F;ARABIC LIGATURE NOON WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0646 0649;;;;N;;;;;-FC50;ARABIC LIGATURE NOON WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0646 064A;;;;N;;;;;-FC51;ARABIC LIGATURE HEH WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0647 062C;;;;N;;;;;-FC52;ARABIC LIGATURE HEH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0647 0645;;;;N;;;;;-FC53;ARABIC LIGATURE HEH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0647 0649;;;;N;;;;;-FC54;ARABIC LIGATURE HEH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0647 064A;;;;N;;;;;-FC55;ARABIC LIGATURE YEH WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 064A 062C;;;;N;;;;;-FC56;ARABIC LIGATURE YEH WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 064A 062D;;;;N;;;;;-FC57;ARABIC LIGATURE YEH WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 064A 062E;;;;N;;;;;-FC58;ARABIC LIGATURE YEH WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 064A 0645;;;;N;;;;;-FC59;ARABIC LIGATURE YEH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 064A 0649;;;;N;;;;;-FC5A;ARABIC LIGATURE YEH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 064A 064A;;;;N;;;;;-FC5B;ARABIC LIGATURE THAL WITH SUPERSCRIPT ALEF ISOLATED FORM;Lo;0;AL;<isolated> 0630 0670;;;;N;;;;;-FC5C;ARABIC LIGATURE REH WITH SUPERSCRIPT ALEF ISOLATED FORM;Lo;0;AL;<isolated> 0631 0670;;;;N;;;;;-FC5D;ARABIC LIGATURE ALEF MAKSURA WITH SUPERSCRIPT ALEF ISOLATED FORM;Lo;0;AL;<isolated> 0649 0670;;;;N;;;;;-FC5E;ARABIC LIGATURE SHADDA WITH DAMMATAN ISOLATED FORM;Lo;0;AL;<isolated> 0020 064C 0651;;;;N;;;;;-FC5F;ARABIC LIGATURE SHADDA WITH KASRATAN ISOLATED FORM;Lo;0;AL;<isolated> 0020 064D 0651;;;;N;;;;;-FC60;ARABIC LIGATURE SHADDA WITH FATHA ISOLATED FORM;Lo;0;AL;<isolated> 0020 064E 0651;;;;N;;;;;-FC61;ARABIC LIGATURE SHADDA WITH DAMMA ISOLATED FORM;Lo;0;AL;<isolated> 0020 064F 0651;;;;N;;;;;-FC62;ARABIC LIGATURE SHADDA WITH KASRA ISOLATED FORM;Lo;0;AL;<isolated> 0020 0650 0651;;;;N;;;;;-FC63;ARABIC LIGATURE SHADDA WITH SUPERSCRIPT ALEF ISOLATED FORM;Lo;0;AL;<isolated> 0020 0651 0670;;;;N;;;;;-FC64;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH REH FINAL FORM;Lo;0;AL;<final> 0626 0631;;;;N;;;;;-FC65;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ZAIN FINAL FORM;Lo;0;AL;<final> 0626 0632;;;;N;;;;;-FC66;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH MEEM FINAL FORM;Lo;0;AL;<final> 0626 0645;;;;N;;;;;-FC67;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH NOON FINAL FORM;Lo;0;AL;<final> 0626 0646;;;;N;;;;;-FC68;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0626 0649;;;;N;;;;;-FC69;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH YEH FINAL FORM;Lo;0;AL;<final> 0626 064A;;;;N;;;;;-FC6A;ARABIC LIGATURE BEH WITH REH FINAL FORM;Lo;0;AL;<final> 0628 0631;;;;N;;;;;-FC6B;ARABIC LIGATURE BEH WITH ZAIN FINAL FORM;Lo;0;AL;<final> 0628 0632;;;;N;;;;;-FC6C;ARABIC LIGATURE BEH WITH MEEM FINAL FORM;Lo;0;AL;<final> 0628 0645;;;;N;;;;;-FC6D;ARABIC LIGATURE BEH WITH NOON FINAL FORM;Lo;0;AL;<final> 0628 0646;;;;N;;;;;-FC6E;ARABIC LIGATURE BEH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0628 0649;;;;N;;;;;-FC6F;ARABIC LIGATURE BEH WITH YEH FINAL FORM;Lo;0;AL;<final> 0628 064A;;;;N;;;;;-FC70;ARABIC LIGATURE TEH WITH REH FINAL FORM;Lo;0;AL;<final> 062A 0631;;;;N;;;;;-FC71;ARABIC LIGATURE TEH WITH ZAIN FINAL FORM;Lo;0;AL;<final> 062A 0632;;;;N;;;;;-FC72;ARABIC LIGATURE TEH WITH MEEM FINAL FORM;Lo;0;AL;<final> 062A 0645;;;;N;;;;;-FC73;ARABIC LIGATURE TEH WITH NOON FINAL FORM;Lo;0;AL;<final> 062A 0646;;;;N;;;;;-FC74;ARABIC LIGATURE TEH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062A 0649;;;;N;;;;;-FC75;ARABIC LIGATURE TEH WITH YEH FINAL FORM;Lo;0;AL;<final> 062A 064A;;;;N;;;;;-FC76;ARABIC LIGATURE THEH WITH REH FINAL FORM;Lo;0;AL;<final> 062B 0631;;;;N;;;;;-FC77;ARABIC LIGATURE THEH WITH ZAIN FINAL FORM;Lo;0;AL;<final> 062B 0632;;;;N;;;;;-FC78;ARABIC LIGATURE THEH WITH MEEM FINAL FORM;Lo;0;AL;<final> 062B 0645;;;;N;;;;;-FC79;ARABIC LIGATURE THEH WITH NOON FINAL FORM;Lo;0;AL;<final> 062B 0646;;;;N;;;;;-FC7A;ARABIC LIGATURE THEH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062B 0649;;;;N;;;;;-FC7B;ARABIC LIGATURE THEH WITH YEH FINAL FORM;Lo;0;AL;<final> 062B 064A;;;;N;;;;;-FC7C;ARABIC LIGATURE FEH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0641 0649;;;;N;;;;;-FC7D;ARABIC LIGATURE FEH WITH YEH FINAL FORM;Lo;0;AL;<final> 0641 064A;;;;N;;;;;-FC7E;ARABIC LIGATURE QAF WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0642 0649;;;;N;;;;;-FC7F;ARABIC LIGATURE QAF WITH YEH FINAL FORM;Lo;0;AL;<final> 0642 064A;;;;N;;;;;-FC80;ARABIC LIGATURE KAF WITH ALEF FINAL FORM;Lo;0;AL;<final> 0643 0627;;;;N;;;;;-FC81;ARABIC LIGATURE KAF WITH LAM FINAL FORM;Lo;0;AL;<final> 0643 0644;;;;N;;;;;-FC82;ARABIC LIGATURE KAF WITH MEEM FINAL FORM;Lo;0;AL;<final> 0643 0645;;;;N;;;;;-FC83;ARABIC LIGATURE KAF WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0643 0649;;;;N;;;;;-FC84;ARABIC LIGATURE KAF WITH YEH FINAL FORM;Lo;0;AL;<final> 0643 064A;;;;N;;;;;-FC85;ARABIC LIGATURE LAM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0644 0645;;;;N;;;;;-FC86;ARABIC LIGATURE LAM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0644 0649;;;;N;;;;;-FC87;ARABIC LIGATURE LAM WITH YEH FINAL FORM;Lo;0;AL;<final> 0644 064A;;;;N;;;;;-FC88;ARABIC LIGATURE MEEM WITH ALEF FINAL FORM;Lo;0;AL;<final> 0645 0627;;;;N;;;;;-FC89;ARABIC LIGATURE MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0645 0645;;;;N;;;;;-FC8A;ARABIC LIGATURE NOON WITH REH FINAL FORM;Lo;0;AL;<final> 0646 0631;;;;N;;;;;-FC8B;ARABIC LIGATURE NOON WITH ZAIN FINAL FORM;Lo;0;AL;<final> 0646 0632;;;;N;;;;;-FC8C;ARABIC LIGATURE NOON WITH MEEM FINAL FORM;Lo;0;AL;<final> 0646 0645;;;;N;;;;;-FC8D;ARABIC LIGATURE NOON WITH NOON FINAL FORM;Lo;0;AL;<final> 0646 0646;;;;N;;;;;-FC8E;ARABIC LIGATURE NOON WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0646 0649;;;;N;;;;;-FC8F;ARABIC LIGATURE NOON WITH YEH FINAL FORM;Lo;0;AL;<final> 0646 064A;;;;N;;;;;-FC90;ARABIC LIGATURE ALEF MAKSURA WITH SUPERSCRIPT ALEF FINAL FORM;Lo;0;AL;<final> 0649 0670;;;;N;;;;;-FC91;ARABIC LIGATURE YEH WITH REH FINAL FORM;Lo;0;AL;<final> 064A 0631;;;;N;;;;;-FC92;ARABIC LIGATURE YEH WITH ZAIN FINAL FORM;Lo;0;AL;<final> 064A 0632;;;;N;;;;;-FC93;ARABIC LIGATURE YEH WITH MEEM FINAL FORM;Lo;0;AL;<final> 064A 0645;;;;N;;;;;-FC94;ARABIC LIGATURE YEH WITH NOON FINAL FORM;Lo;0;AL;<final> 064A 0646;;;;N;;;;;-FC95;ARABIC LIGATURE YEH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 064A 0649;;;;N;;;;;-FC96;ARABIC LIGATURE YEH WITH YEH FINAL FORM;Lo;0;AL;<final> 064A 064A;;;;N;;;;;-FC97;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0626 062C;;;;N;;;;;-FC98;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0626 062D;;;;N;;;;;-FC99;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0626 062E;;;;N;;;;;-FC9A;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0626 0645;;;;N;;;;;-FC9B;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH HEH INITIAL FORM;Lo;0;AL;<initial> 0626 0647;;;;N;;;;;-FC9C;ARABIC LIGATURE BEH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0628 062C;;;;N;;;;;-FC9D;ARABIC LIGATURE BEH WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0628 062D;;;;N;;;;;-FC9E;ARABIC LIGATURE BEH WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0628 062E;;;;N;;;;;-FC9F;ARABIC LIGATURE BEH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0628 0645;;;;N;;;;;-FCA0;ARABIC LIGATURE BEH WITH HEH INITIAL FORM;Lo;0;AL;<initial> 0628 0647;;;;N;;;;;-FCA1;ARABIC LIGATURE TEH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 062A 062C;;;;N;;;;;-FCA2;ARABIC LIGATURE TEH WITH HAH INITIAL FORM;Lo;0;AL;<initial> 062A 062D;;;;N;;;;;-FCA3;ARABIC LIGATURE TEH WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 062A 062E;;;;N;;;;;-FCA4;ARABIC LIGATURE TEH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 062A 0645;;;;N;;;;;-FCA5;ARABIC LIGATURE TEH WITH HEH INITIAL FORM;Lo;0;AL;<initial> 062A 0647;;;;N;;;;;-FCA6;ARABIC LIGATURE THEH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 062B 0645;;;;N;;;;;-FCA7;ARABIC LIGATURE JEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 062C 062D;;;;N;;;;;-FCA8;ARABIC LIGATURE JEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 062C 0645;;;;N;;;;;-FCA9;ARABIC LIGATURE HAH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 062D 062C;;;;N;;;;;-FCAA;ARABIC LIGATURE HAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 062D 0645;;;;N;;;;;-FCAB;ARABIC LIGATURE KHAH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 062E 062C;;;;N;;;;;-FCAC;ARABIC LIGATURE KHAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 062E 0645;;;;N;;;;;-FCAD;ARABIC LIGATURE SEEN WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0633 062C;;;;N;;;;;-FCAE;ARABIC LIGATURE SEEN WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0633 062D;;;;N;;;;;-FCAF;ARABIC LIGATURE SEEN WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0633 062E;;;;N;;;;;-FCB0;ARABIC LIGATURE SEEN WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0633 0645;;;;N;;;;;-FCB1;ARABIC LIGATURE SAD WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0635 062D;;;;N;;;;;-FCB2;ARABIC LIGATURE SAD WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0635 062E;;;;N;;;;;-FCB3;ARABIC LIGATURE SAD WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0635 0645;;;;N;;;;;-FCB4;ARABIC LIGATURE DAD WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0636 062C;;;;N;;;;;-FCB5;ARABIC LIGATURE DAD WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0636 062D;;;;N;;;;;-FCB6;ARABIC LIGATURE DAD WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0636 062E;;;;N;;;;;-FCB7;ARABIC LIGATURE DAD WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0636 0645;;;;N;;;;;-FCB8;ARABIC LIGATURE TAH WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0637 062D;;;;N;;;;;-FCB9;ARABIC LIGATURE ZAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0638 0645;;;;N;;;;;-FCBA;ARABIC LIGATURE AIN WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0639 062C;;;;N;;;;;-FCBB;ARABIC LIGATURE AIN WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0639 0645;;;;N;;;;;-FCBC;ARABIC LIGATURE GHAIN WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 063A 062C;;;;N;;;;;-FCBD;ARABIC LIGATURE GHAIN WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 063A 0645;;;;N;;;;;-FCBE;ARABIC LIGATURE FEH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0641 062C;;;;N;;;;;-FCBF;ARABIC LIGATURE FEH WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0641 062D;;;;N;;;;;-FCC0;ARABIC LIGATURE FEH WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0641 062E;;;;N;;;;;-FCC1;ARABIC LIGATURE FEH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0641 0645;;;;N;;;;;-FCC2;ARABIC LIGATURE QAF WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0642 062D;;;;N;;;;;-FCC3;ARABIC LIGATURE QAF WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0642 0645;;;;N;;;;;-FCC4;ARABIC LIGATURE KAF WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0643 062C;;;;N;;;;;-FCC5;ARABIC LIGATURE KAF WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0643 062D;;;;N;;;;;-FCC6;ARABIC LIGATURE KAF WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0643 062E;;;;N;;;;;-FCC7;ARABIC LIGATURE KAF WITH LAM INITIAL FORM;Lo;0;AL;<initial> 0643 0644;;;;N;;;;;-FCC8;ARABIC LIGATURE KAF WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0643 0645;;;;N;;;;;-FCC9;ARABIC LIGATURE LAM WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0644 062C;;;;N;;;;;-FCCA;ARABIC LIGATURE LAM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0644 062D;;;;N;;;;;-FCCB;ARABIC LIGATURE LAM WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0644 062E;;;;N;;;;;-FCCC;ARABIC LIGATURE LAM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0644 0645;;;;N;;;;;-FCCD;ARABIC LIGATURE LAM WITH HEH INITIAL FORM;Lo;0;AL;<initial> 0644 0647;;;;N;;;;;-FCCE;ARABIC LIGATURE MEEM WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0645 062C;;;;N;;;;;-FCCF;ARABIC LIGATURE MEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0645 062D;;;;N;;;;;-FCD0;ARABIC LIGATURE MEEM WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0645 062E;;;;N;;;;;-FCD1;ARABIC LIGATURE MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0645 0645;;;;N;;;;;-FCD2;ARABIC LIGATURE NOON WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0646 062C;;;;N;;;;;-FCD3;ARABIC LIGATURE NOON WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0646 062D;;;;N;;;;;-FCD4;ARABIC LIGATURE NOON WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0646 062E;;;;N;;;;;-FCD5;ARABIC LIGATURE NOON WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0646 0645;;;;N;;;;;-FCD6;ARABIC LIGATURE NOON WITH HEH INITIAL FORM;Lo;0;AL;<initial> 0646 0647;;;;N;;;;;-FCD7;ARABIC LIGATURE HEH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0647 062C;;;;N;;;;;-FCD8;ARABIC LIGATURE HEH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0647 0645;;;;N;;;;;-FCD9;ARABIC LIGATURE HEH WITH SUPERSCRIPT ALEF INITIAL FORM;Lo;0;AL;<initial> 0647 0670;;;;N;;;;;-FCDA;ARABIC LIGATURE YEH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 064A 062C;;;;N;;;;;-FCDB;ARABIC LIGATURE YEH WITH HAH INITIAL FORM;Lo;0;AL;<initial> 064A 062D;;;;N;;;;;-FCDC;ARABIC LIGATURE YEH WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 064A 062E;;;;N;;;;;-FCDD;ARABIC LIGATURE YEH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 064A 0645;;;;N;;;;;-FCDE;ARABIC LIGATURE YEH WITH HEH INITIAL FORM;Lo;0;AL;<initial> 064A 0647;;;;N;;;;;-FCDF;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0626 0645;;;;N;;;;;-FCE0;ARABIC LIGATURE YEH WITH HAMZA ABOVE WITH HEH MEDIAL FORM;Lo;0;AL;<medial> 0626 0647;;;;N;;;;;-FCE1;ARABIC LIGATURE BEH WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0628 0645;;;;N;;;;;-FCE2;ARABIC LIGATURE BEH WITH HEH MEDIAL FORM;Lo;0;AL;<medial> 0628 0647;;;;N;;;;;-FCE3;ARABIC LIGATURE TEH WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 062A 0645;;;;N;;;;;-FCE4;ARABIC LIGATURE TEH WITH HEH MEDIAL FORM;Lo;0;AL;<medial> 062A 0647;;;;N;;;;;-FCE5;ARABIC LIGATURE THEH WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 062B 0645;;;;N;;;;;-FCE6;ARABIC LIGATURE THEH WITH HEH MEDIAL FORM;Lo;0;AL;<medial> 062B 0647;;;;N;;;;;-FCE7;ARABIC LIGATURE SEEN WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0633 0645;;;;N;;;;;-FCE8;ARABIC LIGATURE SEEN WITH HEH MEDIAL FORM;Lo;0;AL;<medial> 0633 0647;;;;N;;;;;-FCE9;ARABIC LIGATURE SHEEN WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0634 0645;;;;N;;;;;-FCEA;ARABIC LIGATURE SHEEN WITH HEH MEDIAL FORM;Lo;0;AL;<medial> 0634 0647;;;;N;;;;;-FCEB;ARABIC LIGATURE KAF WITH LAM MEDIAL FORM;Lo;0;AL;<medial> 0643 0644;;;;N;;;;;-FCEC;ARABIC LIGATURE KAF WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0643 0645;;;;N;;;;;-FCED;ARABIC LIGATURE LAM WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0644 0645;;;;N;;;;;-FCEE;ARABIC LIGATURE NOON WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0646 0645;;;;N;;;;;-FCEF;ARABIC LIGATURE NOON WITH HEH MEDIAL FORM;Lo;0;AL;<medial> 0646 0647;;;;N;;;;;-FCF0;ARABIC LIGATURE YEH WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 064A 0645;;;;N;;;;;-FCF1;ARABIC LIGATURE YEH WITH HEH MEDIAL FORM;Lo;0;AL;<medial> 064A 0647;;;;N;;;;;-FCF2;ARABIC LIGATURE SHADDA WITH FATHA MEDIAL FORM;Lo;0;AL;<medial> 0640 064E 0651;;;;N;;;;;-FCF3;ARABIC LIGATURE SHADDA WITH DAMMA MEDIAL FORM;Lo;0;AL;<medial> 0640 064F 0651;;;;N;;;;;-FCF4;ARABIC LIGATURE SHADDA WITH KASRA MEDIAL FORM;Lo;0;AL;<medial> 0640 0650 0651;;;;N;;;;;-FCF5;ARABIC LIGATURE TAH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0637 0649;;;;N;;;;;-FCF6;ARABIC LIGATURE TAH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0637 064A;;;;N;;;;;-FCF7;ARABIC LIGATURE AIN WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0639 0649;;;;N;;;;;-FCF8;ARABIC LIGATURE AIN WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0639 064A;;;;N;;;;;-FCF9;ARABIC LIGATURE GHAIN WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 063A 0649;;;;N;;;;;-FCFA;ARABIC LIGATURE GHAIN WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 063A 064A;;;;N;;;;;-FCFB;ARABIC LIGATURE SEEN WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0633 0649;;;;N;;;;;-FCFC;ARABIC LIGATURE SEEN WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0633 064A;;;;N;;;;;-FCFD;ARABIC LIGATURE SHEEN WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0634 0649;;;;N;;;;;-FCFE;ARABIC LIGATURE SHEEN WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0634 064A;;;;N;;;;;-FCFF;ARABIC LIGATURE HAH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 062D 0649;;;;N;;;;;-FD00;ARABIC LIGATURE HAH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 062D 064A;;;;N;;;;;-FD01;ARABIC LIGATURE JEEM WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 062C 0649;;;;N;;;;;-FD02;ARABIC LIGATURE JEEM WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 062C 064A;;;;N;;;;;-FD03;ARABIC LIGATURE KHAH WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 062E 0649;;;;N;;;;;-FD04;ARABIC LIGATURE KHAH WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 062E 064A;;;;N;;;;;-FD05;ARABIC LIGATURE SAD WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0635 0649;;;;N;;;;;-FD06;ARABIC LIGATURE SAD WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0635 064A;;;;N;;;;;-FD07;ARABIC LIGATURE DAD WITH ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0636 0649;;;;N;;;;;-FD08;ARABIC LIGATURE DAD WITH YEH ISOLATED FORM;Lo;0;AL;<isolated> 0636 064A;;;;N;;;;;-FD09;ARABIC LIGATURE SHEEN WITH JEEM ISOLATED FORM;Lo;0;AL;<isolated> 0634 062C;;;;N;;;;;-FD0A;ARABIC LIGATURE SHEEN WITH HAH ISOLATED FORM;Lo;0;AL;<isolated> 0634 062D;;;;N;;;;;-FD0B;ARABIC LIGATURE SHEEN WITH KHAH ISOLATED FORM;Lo;0;AL;<isolated> 0634 062E;;;;N;;;;;-FD0C;ARABIC LIGATURE SHEEN WITH MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0634 0645;;;;N;;;;;-FD0D;ARABIC LIGATURE SHEEN WITH REH ISOLATED FORM;Lo;0;AL;<isolated> 0634 0631;;;;N;;;;;-FD0E;ARABIC LIGATURE SEEN WITH REH ISOLATED FORM;Lo;0;AL;<isolated> 0633 0631;;;;N;;;;;-FD0F;ARABIC LIGATURE SAD WITH REH ISOLATED FORM;Lo;0;AL;<isolated> 0635 0631;;;;N;;;;;-FD10;ARABIC LIGATURE DAD WITH REH ISOLATED FORM;Lo;0;AL;<isolated> 0636 0631;;;;N;;;;;-FD11;ARABIC LIGATURE TAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0637 0649;;;;N;;;;;-FD12;ARABIC LIGATURE TAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0637 064A;;;;N;;;;;-FD13;ARABIC LIGATURE AIN WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0639 0649;;;;N;;;;;-FD14;ARABIC LIGATURE AIN WITH YEH FINAL FORM;Lo;0;AL;<final> 0639 064A;;;;N;;;;;-FD15;ARABIC LIGATURE GHAIN WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 063A 0649;;;;N;;;;;-FD16;ARABIC LIGATURE GHAIN WITH YEH FINAL FORM;Lo;0;AL;<final> 063A 064A;;;;N;;;;;-FD17;ARABIC LIGATURE SEEN WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0633 0649;;;;N;;;;;-FD18;ARABIC LIGATURE SEEN WITH YEH FINAL FORM;Lo;0;AL;<final> 0633 064A;;;;N;;;;;-FD19;ARABIC LIGATURE SHEEN WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0634 0649;;;;N;;;;;-FD1A;ARABIC LIGATURE SHEEN WITH YEH FINAL FORM;Lo;0;AL;<final> 0634 064A;;;;N;;;;;-FD1B;ARABIC LIGATURE HAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062D 0649;;;;N;;;;;-FD1C;ARABIC LIGATURE HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 062D 064A;;;;N;;;;;-FD1D;ARABIC LIGATURE JEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062C 0649;;;;N;;;;;-FD1E;ARABIC LIGATURE JEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 062C 064A;;;;N;;;;;-FD1F;ARABIC LIGATURE KHAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062E 0649;;;;N;;;;;-FD20;ARABIC LIGATURE KHAH WITH YEH FINAL FORM;Lo;0;AL;<final> 062E 064A;;;;N;;;;;-FD21;ARABIC LIGATURE SAD WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0635 0649;;;;N;;;;;-FD22;ARABIC LIGATURE SAD WITH YEH FINAL FORM;Lo;0;AL;<final> 0635 064A;;;;N;;;;;-FD23;ARABIC LIGATURE DAD WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0636 0649;;;;N;;;;;-FD24;ARABIC LIGATURE DAD WITH YEH FINAL FORM;Lo;0;AL;<final> 0636 064A;;;;N;;;;;-FD25;ARABIC LIGATURE SHEEN WITH JEEM FINAL FORM;Lo;0;AL;<final> 0634 062C;;;;N;;;;;-FD26;ARABIC LIGATURE SHEEN WITH HAH FINAL FORM;Lo;0;AL;<final> 0634 062D;;;;N;;;;;-FD27;ARABIC LIGATURE SHEEN WITH KHAH FINAL FORM;Lo;0;AL;<final> 0634 062E;;;;N;;;;;-FD28;ARABIC LIGATURE SHEEN WITH MEEM FINAL FORM;Lo;0;AL;<final> 0634 0645;;;;N;;;;;-FD29;ARABIC LIGATURE SHEEN WITH REH FINAL FORM;Lo;0;AL;<final> 0634 0631;;;;N;;;;;-FD2A;ARABIC LIGATURE SEEN WITH REH FINAL FORM;Lo;0;AL;<final> 0633 0631;;;;N;;;;;-FD2B;ARABIC LIGATURE SAD WITH REH FINAL FORM;Lo;0;AL;<final> 0635 0631;;;;N;;;;;-FD2C;ARABIC LIGATURE DAD WITH REH FINAL FORM;Lo;0;AL;<final> 0636 0631;;;;N;;;;;-FD2D;ARABIC LIGATURE SHEEN WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0634 062C;;;;N;;;;;-FD2E;ARABIC LIGATURE SHEEN WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0634 062D;;;;N;;;;;-FD2F;ARABIC LIGATURE SHEEN WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0634 062E;;;;N;;;;;-FD30;ARABIC LIGATURE SHEEN WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0634 0645;;;;N;;;;;-FD31;ARABIC LIGATURE SEEN WITH HEH INITIAL FORM;Lo;0;AL;<initial> 0633 0647;;;;N;;;;;-FD32;ARABIC LIGATURE SHEEN WITH HEH INITIAL FORM;Lo;0;AL;<initial> 0634 0647;;;;N;;;;;-FD33;ARABIC LIGATURE TAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0637 0645;;;;N;;;;;-FD34;ARABIC LIGATURE SEEN WITH JEEM MEDIAL FORM;Lo;0;AL;<medial> 0633 062C;;;;N;;;;;-FD35;ARABIC LIGATURE SEEN WITH HAH MEDIAL FORM;Lo;0;AL;<medial> 0633 062D;;;;N;;;;;-FD36;ARABIC LIGATURE SEEN WITH KHAH MEDIAL FORM;Lo;0;AL;<medial> 0633 062E;;;;N;;;;;-FD37;ARABIC LIGATURE SHEEN WITH JEEM MEDIAL FORM;Lo;0;AL;<medial> 0634 062C;;;;N;;;;;-FD38;ARABIC LIGATURE SHEEN WITH HAH MEDIAL FORM;Lo;0;AL;<medial> 0634 062D;;;;N;;;;;-FD39;ARABIC LIGATURE SHEEN WITH KHAH MEDIAL FORM;Lo;0;AL;<medial> 0634 062E;;;;N;;;;;-FD3A;ARABIC LIGATURE TAH WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0637 0645;;;;N;;;;;-FD3B;ARABIC LIGATURE ZAH WITH MEEM MEDIAL FORM;Lo;0;AL;<medial> 0638 0645;;;;N;;;;;-FD3C;ARABIC LIGATURE ALEF WITH FATHATAN FINAL FORM;Lo;0;AL;<final> 0627 064B;;;;N;;;;;-FD3D;ARABIC LIGATURE ALEF WITH FATHATAN ISOLATED FORM;Lo;0;AL;<isolated> 0627 064B;;;;N;;;;;-FD3E;ORNATE LEFT PARENTHESIS;Pe;0;ON;;;;;N;;;;;-FD3F;ORNATE RIGHT PARENTHESIS;Ps;0;ON;;;;;N;;;;;-FD50;ARABIC LIGATURE TEH WITH JEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 062A 062C 0645;;;;N;;;;;-FD51;ARABIC LIGATURE TEH WITH HAH WITH JEEM FINAL FORM;Lo;0;AL;<final> 062A 062D 062C;;;;N;;;;;-FD52;ARABIC LIGATURE TEH WITH HAH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 062A 062D 062C;;;;N;;;;;-FD53;ARABIC LIGATURE TEH WITH HAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 062A 062D 0645;;;;N;;;;;-FD54;ARABIC LIGATURE TEH WITH KHAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 062A 062E 0645;;;;N;;;;;-FD55;ARABIC LIGATURE TEH WITH MEEM WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 062A 0645 062C;;;;N;;;;;-FD56;ARABIC LIGATURE TEH WITH MEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 062A 0645 062D;;;;N;;;;;-FD57;ARABIC LIGATURE TEH WITH MEEM WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 062A 0645 062E;;;;N;;;;;-FD58;ARABIC LIGATURE JEEM WITH MEEM WITH HAH FINAL FORM;Lo;0;AL;<final> 062C 0645 062D;;;;N;;;;;-FD59;ARABIC LIGATURE JEEM WITH MEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 062C 0645 062D;;;;N;;;;;-FD5A;ARABIC LIGATURE HAH WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 062D 0645 064A;;;;N;;;;;-FD5B;ARABIC LIGATURE HAH WITH MEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062D 0645 0649;;;;N;;;;;-FD5C;ARABIC LIGATURE SEEN WITH HAH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0633 062D 062C;;;;N;;;;;-FD5D;ARABIC LIGATURE SEEN WITH JEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0633 062C 062D;;;;N;;;;;-FD5E;ARABIC LIGATURE SEEN WITH JEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0633 062C 0649;;;;N;;;;;-FD5F;ARABIC LIGATURE SEEN WITH MEEM WITH HAH FINAL FORM;Lo;0;AL;<final> 0633 0645 062D;;;;N;;;;;-FD60;ARABIC LIGATURE SEEN WITH MEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0633 0645 062D;;;;N;;;;;-FD61;ARABIC LIGATURE SEEN WITH MEEM WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0633 0645 062C;;;;N;;;;;-FD62;ARABIC LIGATURE SEEN WITH MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0633 0645 0645;;;;N;;;;;-FD63;ARABIC LIGATURE SEEN WITH MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0633 0645 0645;;;;N;;;;;-FD64;ARABIC LIGATURE SAD WITH HAH WITH HAH FINAL FORM;Lo;0;AL;<final> 0635 062D 062D;;;;N;;;;;-FD65;ARABIC LIGATURE SAD WITH HAH WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0635 062D 062D;;;;N;;;;;-FD66;ARABIC LIGATURE SAD WITH MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0635 0645 0645;;;;N;;;;;-FD67;ARABIC LIGATURE SHEEN WITH HAH WITH MEEM FINAL FORM;Lo;0;AL;<final> 0634 062D 0645;;;;N;;;;;-FD68;ARABIC LIGATURE SHEEN WITH HAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0634 062D 0645;;;;N;;;;;-FD69;ARABIC LIGATURE SHEEN WITH JEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0634 062C 064A;;;;N;;;;;-FD6A;ARABIC LIGATURE SHEEN WITH MEEM WITH KHAH FINAL FORM;Lo;0;AL;<final> 0634 0645 062E;;;;N;;;;;-FD6B;ARABIC LIGATURE SHEEN WITH MEEM WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0634 0645 062E;;;;N;;;;;-FD6C;ARABIC LIGATURE SHEEN WITH MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0634 0645 0645;;;;N;;;;;-FD6D;ARABIC LIGATURE SHEEN WITH MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0634 0645 0645;;;;N;;;;;-FD6E;ARABIC LIGATURE DAD WITH HAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0636 062D 0649;;;;N;;;;;-FD6F;ARABIC LIGATURE DAD WITH KHAH WITH MEEM FINAL FORM;Lo;0;AL;<final> 0636 062E 0645;;;;N;;;;;-FD70;ARABIC LIGATURE DAD WITH KHAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0636 062E 0645;;;;N;;;;;-FD71;ARABIC LIGATURE TAH WITH MEEM WITH HAH FINAL FORM;Lo;0;AL;<final> 0637 0645 062D;;;;N;;;;;-FD72;ARABIC LIGATURE TAH WITH MEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0637 0645 062D;;;;N;;;;;-FD73;ARABIC LIGATURE TAH WITH MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0637 0645 0645;;;;N;;;;;-FD74;ARABIC LIGATURE TAH WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0637 0645 064A;;;;N;;;;;-FD75;ARABIC LIGATURE AIN WITH JEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0639 062C 0645;;;;N;;;;;-FD76;ARABIC LIGATURE AIN WITH MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0639 0645 0645;;;;N;;;;;-FD77;ARABIC LIGATURE AIN WITH MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0639 0645 0645;;;;N;;;;;-FD78;ARABIC LIGATURE AIN WITH MEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0639 0645 0649;;;;N;;;;;-FD79;ARABIC LIGATURE GHAIN WITH MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 063A 0645 0645;;;;N;;;;;-FD7A;ARABIC LIGATURE GHAIN WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 063A 0645 064A;;;;N;;;;;-FD7B;ARABIC LIGATURE GHAIN WITH MEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 063A 0645 0649;;;;N;;;;;-FD7C;ARABIC LIGATURE FEH WITH KHAH WITH MEEM FINAL FORM;Lo;0;AL;<final> 0641 062E 0645;;;;N;;;;;-FD7D;ARABIC LIGATURE FEH WITH KHAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0641 062E 0645;;;;N;;;;;-FD7E;ARABIC LIGATURE QAF WITH MEEM WITH HAH FINAL FORM;Lo;0;AL;<final> 0642 0645 062D;;;;N;;;;;-FD7F;ARABIC LIGATURE QAF WITH MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0642 0645 0645;;;;N;;;;;-FD80;ARABIC LIGATURE LAM WITH HAH WITH MEEM FINAL FORM;Lo;0;AL;<final> 0644 062D 0645;;;;N;;;;;-FD81;ARABIC LIGATURE LAM WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0644 062D 064A;;;;N;;;;;-FD82;ARABIC LIGATURE LAM WITH HAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0644 062D 0649;;;;N;;;;;-FD83;ARABIC LIGATURE LAM WITH JEEM WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0644 062C 062C;;;;N;;;;;-FD84;ARABIC LIGATURE LAM WITH JEEM WITH JEEM FINAL FORM;Lo;0;AL;<final> 0644 062C 062C;;;;N;;;;;-FD85;ARABIC LIGATURE LAM WITH KHAH WITH MEEM FINAL FORM;Lo;0;AL;<final> 0644 062E 0645;;;;N;;;;;-FD86;ARABIC LIGATURE LAM WITH KHAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0644 062E 0645;;;;N;;;;;-FD87;ARABIC LIGATURE LAM WITH MEEM WITH HAH FINAL FORM;Lo;0;AL;<final> 0644 0645 062D;;;;N;;;;;-FD88;ARABIC LIGATURE LAM WITH MEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0644 0645 062D;;;;N;;;;;-FD89;ARABIC LIGATURE MEEM WITH HAH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0645 062D 062C;;;;N;;;;;-FD8A;ARABIC LIGATURE MEEM WITH HAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0645 062D 0645;;;;N;;;;;-FD8B;ARABIC LIGATURE MEEM WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0645 062D 064A;;;;N;;;;;-FD8C;ARABIC LIGATURE MEEM WITH JEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0645 062C 062D;;;;N;;;;;-FD8D;ARABIC LIGATURE MEEM WITH JEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0645 062C 0645;;;;N;;;;;-FD8E;ARABIC LIGATURE MEEM WITH KHAH WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0645 062E 062C;;;;N;;;;;-FD8F;ARABIC LIGATURE MEEM WITH KHAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0645 062E 0645;;;;N;;;;;-FD92;ARABIC LIGATURE MEEM WITH JEEM WITH KHAH INITIAL FORM;Lo;0;AL;<initial> 0645 062C 062E;;;;N;;;;;-FD93;ARABIC LIGATURE HEH WITH MEEM WITH JEEM INITIAL FORM;Lo;0;AL;<initial> 0647 0645 062C;;;;N;;;;;-FD94;ARABIC LIGATURE HEH WITH MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0647 0645 0645;;;;N;;;;;-FD95;ARABIC LIGATURE NOON WITH HAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0646 062D 0645;;;;N;;;;;-FD96;ARABIC LIGATURE NOON WITH HAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0646 062D 0649;;;;N;;;;;-FD97;ARABIC LIGATURE NOON WITH JEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0646 062C 0645;;;;N;;;;;-FD98;ARABIC LIGATURE NOON WITH JEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0646 062C 0645;;;;N;;;;;-FD99;ARABIC LIGATURE NOON WITH JEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0646 062C 0649;;;;N;;;;;-FD9A;ARABIC LIGATURE NOON WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0646 0645 064A;;;;N;;;;;-FD9B;ARABIC LIGATURE NOON WITH MEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0646 0645 0649;;;;N;;;;;-FD9C;ARABIC LIGATURE YEH WITH MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 064A 0645 0645;;;;N;;;;;-FD9D;ARABIC LIGATURE YEH WITH MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 064A 0645 0645;;;;N;;;;;-FD9E;ARABIC LIGATURE BEH WITH KHAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0628 062E 064A;;;;N;;;;;-FD9F;ARABIC LIGATURE TEH WITH JEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 062A 062C 064A;;;;N;;;;;-FDA0;ARABIC LIGATURE TEH WITH JEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062A 062C 0649;;;;N;;;;;-FDA1;ARABIC LIGATURE TEH WITH KHAH WITH YEH FINAL FORM;Lo;0;AL;<final> 062A 062E 064A;;;;N;;;;;-FDA2;ARABIC LIGATURE TEH WITH KHAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062A 062E 0649;;;;N;;;;;-FDA3;ARABIC LIGATURE TEH WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 062A 0645 064A;;;;N;;;;;-FDA4;ARABIC LIGATURE TEH WITH MEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062A 0645 0649;;;;N;;;;;-FDA5;ARABIC LIGATURE JEEM WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 062C 0645 064A;;;;N;;;;;-FDA6;ARABIC LIGATURE JEEM WITH HAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062C 062D 0649;;;;N;;;;;-FDA7;ARABIC LIGATURE JEEM WITH MEEM WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 062C 0645 0649;;;;N;;;;;-FDA8;ARABIC LIGATURE SEEN WITH KHAH WITH ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0633 062E 0649;;;;N;;;;;-FDA9;ARABIC LIGATURE SAD WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0635 062D 064A;;;;N;;;;;-FDAA;ARABIC LIGATURE SHEEN WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0634 062D 064A;;;;N;;;;;-FDAB;ARABIC LIGATURE DAD WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0636 062D 064A;;;;N;;;;;-FDAC;ARABIC LIGATURE LAM WITH JEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0644 062C 064A;;;;N;;;;;-FDAD;ARABIC LIGATURE LAM WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0644 0645 064A;;;;N;;;;;-FDAE;ARABIC LIGATURE YEH WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 064A 062D 064A;;;;N;;;;;-FDAF;ARABIC LIGATURE YEH WITH JEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 064A 062C 064A;;;;N;;;;;-FDB0;ARABIC LIGATURE YEH WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 064A 0645 064A;;;;N;;;;;-FDB1;ARABIC LIGATURE MEEM WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0645 0645 064A;;;;N;;;;;-FDB2;ARABIC LIGATURE QAF WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0642 0645 064A;;;;N;;;;;-FDB3;ARABIC LIGATURE NOON WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0646 062D 064A;;;;N;;;;;-FDB4;ARABIC LIGATURE QAF WITH MEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0642 0645 062D;;;;N;;;;;-FDB5;ARABIC LIGATURE LAM WITH HAH WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0644 062D 0645;;;;N;;;;;-FDB6;ARABIC LIGATURE AIN WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0639 0645 064A;;;;N;;;;;-FDB7;ARABIC LIGATURE KAF WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0643 0645 064A;;;;N;;;;;-FDB8;ARABIC LIGATURE NOON WITH JEEM WITH HAH INITIAL FORM;Lo;0;AL;<initial> 0646 062C 062D;;;;N;;;;;-FDB9;ARABIC LIGATURE MEEM WITH KHAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0645 062E 064A;;;;N;;;;;-FDBA;ARABIC LIGATURE LAM WITH JEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0644 062C 0645;;;;N;;;;;-FDBB;ARABIC LIGATURE KAF WITH MEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0643 0645 0645;;;;N;;;;;-FDBC;ARABIC LIGATURE LAM WITH JEEM WITH MEEM FINAL FORM;Lo;0;AL;<final> 0644 062C 0645;;;;N;;;;;-FDBD;ARABIC LIGATURE NOON WITH JEEM WITH HAH FINAL FORM;Lo;0;AL;<final> 0646 062C 062D;;;;N;;;;;-FDBE;ARABIC LIGATURE JEEM WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 062C 062D 064A;;;;N;;;;;-FDBF;ARABIC LIGATURE HAH WITH JEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 062D 062C 064A;;;;N;;;;;-FDC0;ARABIC LIGATURE MEEM WITH JEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0645 062C 064A;;;;N;;;;;-FDC1;ARABIC LIGATURE FEH WITH MEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0641 0645 064A;;;;N;;;;;-FDC2;ARABIC LIGATURE BEH WITH HAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0628 062D 064A;;;;N;;;;;-FDC3;ARABIC LIGATURE KAF WITH MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0643 0645 0645;;;;N;;;;;-FDC4;ARABIC LIGATURE AIN WITH JEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0639 062C 0645;;;;N;;;;;-FDC5;ARABIC LIGATURE SAD WITH MEEM WITH MEEM INITIAL FORM;Lo;0;AL;<initial> 0635 0645 0645;;;;N;;;;;-FDC6;ARABIC LIGATURE SEEN WITH KHAH WITH YEH FINAL FORM;Lo;0;AL;<final> 0633 062E 064A;;;;N;;;;;-FDC7;ARABIC LIGATURE NOON WITH JEEM WITH YEH FINAL FORM;Lo;0;AL;<final> 0646 062C 064A;;;;N;;;;;-FDF0;ARABIC LIGATURE SALLA USED AS KORANIC STOP SIGN ISOLATED FORM;Lo;0;AL;<isolated> 0635 0644 06D2;;;;N;;;;;-FDF1;ARABIC LIGATURE QALA USED AS KORANIC STOP SIGN ISOLATED FORM;Lo;0;AL;<isolated> 0642 0644 06D2;;;;N;;;;;-FDF2;ARABIC LIGATURE ALLAH ISOLATED FORM;Lo;0;AL;<isolated> 0627 0644 0644 0647;;;;N;;;;;-FDF3;ARABIC LIGATURE AKBAR ISOLATED FORM;Lo;0;AL;<isolated> 0627 0643 0628 0631;;;;N;;;;;-FDF4;ARABIC LIGATURE MOHAMMAD ISOLATED FORM;Lo;0;AL;<isolated> 0645 062D 0645 062F;;;;N;;;;;-FDF5;ARABIC LIGATURE SALAM ISOLATED FORM;Lo;0;AL;<isolated> 0635 0644 0639 0645;;;;N;;;;;-FDF6;ARABIC LIGATURE RASOUL ISOLATED FORM;Lo;0;AL;<isolated> 0631 0633 0648 0644;;;;N;;;;;-FDF7;ARABIC LIGATURE ALAYHE ISOLATED FORM;Lo;0;AL;<isolated> 0639 0644 064A 0647;;;;N;;;;;-FDF8;ARABIC LIGATURE WASALLAM ISOLATED FORM;Lo;0;AL;<isolated> 0648 0633 0644 0645;;;;N;;;;;-FDF9;ARABIC LIGATURE SALLA ISOLATED FORM;Lo;0;AL;<isolated> 0635 0644 0649;;;;N;;;;;-FDFA;ARABIC LIGATURE SALLALLAHOU ALAYHE WASALLAM;Lo;0;AL;<isolated> 0635 0644 0649 0020 0627 0644 0644 0647 0020 0639 0644 064A 0647 0020 0648 0633 0644 0645;;;;N;ARABIC LETTER SALLALLAHOU ALAYHE WASALLAM;;;;-FDFB;ARABIC LIGATURE JALLAJALALOUHOU;Lo;0;AL;<isolated> 062C 0644 0020 062C 0644 0627 0644 0647;;;;N;ARABIC LETTER JALLAJALALOUHOU;;;;-FDFC;RIAL SIGN;Sc;0;AL;<isolated> 0631 06CC 0627 0644;;;;N;;;;;-FDFD;ARABIC LIGATURE BISMILLAH AR-RAHMAN AR-RAHEEM;So;0;ON;;;;;N;;;;;-FE00;VARIATION SELECTOR-1;Mn;0;NSM;;;;;N;;;;;-FE01;VARIATION SELECTOR-2;Mn;0;NSM;;;;;N;;;;;-FE02;VARIATION SELECTOR-3;Mn;0;NSM;;;;;N;;;;;-FE03;VARIATION SELECTOR-4;Mn;0;NSM;;;;;N;;;;;-FE04;VARIATION SELECTOR-5;Mn;0;NSM;;;;;N;;;;;-FE05;VARIATION SELECTOR-6;Mn;0;NSM;;;;;N;;;;;-FE06;VARIATION SELECTOR-7;Mn;0;NSM;;;;;N;;;;;-FE07;VARIATION SELECTOR-8;Mn;0;NSM;;;;;N;;;;;-FE08;VARIATION SELECTOR-9;Mn;0;NSM;;;;;N;;;;;-FE09;VARIATION SELECTOR-10;Mn;0;NSM;;;;;N;;;;;-FE0A;VARIATION SELECTOR-11;Mn;0;NSM;;;;;N;;;;;-FE0B;VARIATION SELECTOR-12;Mn;0;NSM;;;;;N;;;;;-FE0C;VARIATION SELECTOR-13;Mn;0;NSM;;;;;N;;;;;-FE0D;VARIATION SELECTOR-14;Mn;0;NSM;;;;;N;;;;;-FE0E;VARIATION SELECTOR-15;Mn;0;NSM;;;;;N;;;;;-FE0F;VARIATION SELECTOR-16;Mn;0;NSM;;;;;N;;;;;-FE10;PRESENTATION FORM FOR VERTICAL COMMA;Po;0;ON;<vertical> 002C;;;;N;;;;;-FE11;PRESENTATION FORM FOR VERTICAL IDEOGRAPHIC COMMA;Po;0;ON;<vertical> 3001;;;;N;;;;;-FE12;PRESENTATION FORM FOR VERTICAL IDEOGRAPHIC FULL STOP;Po;0;ON;<vertical> 3002;;;;N;;;;;-FE13;PRESENTATION FORM FOR VERTICAL COLON;Po;0;ON;<vertical> 003A;;;;N;;;;;-FE14;PRESENTATION FORM FOR VERTICAL SEMICOLON;Po;0;ON;<vertical> 003B;;;;N;;;;;-FE15;PRESENTATION FORM FOR VERTICAL EXCLAMATION MARK;Po;0;ON;<vertical> 0021;;;;N;;;;;-FE16;PRESENTATION FORM FOR VERTICAL QUESTION MARK;Po;0;ON;<vertical> 003F;;;;N;;;;;-FE17;PRESENTATION FORM FOR VERTICAL LEFT WHITE LENTICULAR BRACKET;Ps;0;ON;<vertical> 3016;;;;N;;;;;-FE18;PRESENTATION FORM FOR VERTICAL RIGHT WHITE LENTICULAR BRAKCET;Pe;0;ON;<vertical> 3017;;;;N;;;;;-FE19;PRESENTATION FORM FOR VERTICAL HORIZONTAL ELLIPSIS;Po;0;ON;<vertical> 2026;;;;N;;;;;-FE20;COMBINING LIGATURE LEFT HALF;Mn;230;NSM;;;;;N;;;;;-FE21;COMBINING LIGATURE RIGHT HALF;Mn;230;NSM;;;;;N;;;;;-FE22;COMBINING DOUBLE TILDE LEFT HALF;Mn;230;NSM;;;;;N;;;;;-FE23;COMBINING DOUBLE TILDE RIGHT HALF;Mn;230;NSM;;;;;N;;;;;-FE24;COMBINING MACRON LEFT HALF;Mn;230;NSM;;;;;N;;;;;-FE25;COMBINING MACRON RIGHT HALF;Mn;230;NSM;;;;;N;;;;;-FE26;COMBINING CONJOINING MACRON;Mn;230;NSM;;;;;N;;;;;-FE27;COMBINING LIGATURE LEFT HALF BELOW;Mn;220;NSM;;;;;N;;;;;-FE28;COMBINING LIGATURE RIGHT HALF BELOW;Mn;220;NSM;;;;;N;;;;;-FE29;COMBINING TILDE LEFT HALF BELOW;Mn;220;NSM;;;;;N;;;;;-FE2A;COMBINING TILDE RIGHT HALF BELOW;Mn;220;NSM;;;;;N;;;;;-FE2B;COMBINING MACRON LEFT HALF BELOW;Mn;220;NSM;;;;;N;;;;;-FE2C;COMBINING MACRON RIGHT HALF BELOW;Mn;220;NSM;;;;;N;;;;;-FE2D;COMBINING CONJOINING MACRON BELOW;Mn;220;NSM;;;;;N;;;;;-FE30;PRESENTATION FORM FOR VERTICAL TWO DOT LEADER;Po;0;ON;<vertical> 2025;;;;N;GLYPH FOR VERTICAL TWO DOT LEADER;;;;-FE31;PRESENTATION FORM FOR VERTICAL EM DASH;Pd;0;ON;<vertical> 2014;;;;N;GLYPH FOR VERTICAL EM DASH;;;;-FE32;PRESENTATION FORM FOR VERTICAL EN DASH;Pd;0;ON;<vertical> 2013;;;;N;GLYPH FOR VERTICAL EN DASH;;;;-FE33;PRESENTATION FORM FOR VERTICAL LOW LINE;Pc;0;ON;<vertical> 005F;;;;N;GLYPH FOR VERTICAL SPACING UNDERSCORE;;;;-FE34;PRESENTATION FORM FOR VERTICAL WAVY LOW LINE;Pc;0;ON;<vertical> 005F;;;;N;GLYPH FOR VERTICAL SPACING WAVY UNDERSCORE;;;;-FE35;PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS;Ps;0;ON;<vertical> 0028;;;;N;GLYPH FOR VERTICAL OPENING PARENTHESIS;;;;-FE36;PRESENTATION FORM FOR VERTICAL RIGHT PARENTHESIS;Pe;0;ON;<vertical> 0029;;;;N;GLYPH FOR VERTICAL CLOSING PARENTHESIS;;;;-FE37;PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET;Ps;0;ON;<vertical> 007B;;;;N;GLYPH FOR VERTICAL OPENING CURLY BRACKET;;;;-FE38;PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET;Pe;0;ON;<vertical> 007D;;;;N;GLYPH FOR VERTICAL CLOSING CURLY BRACKET;;;;-FE39;PRESENTATION FORM FOR VERTICAL LEFT TORTOISE SHELL BRACKET;Ps;0;ON;<vertical> 3014;;;;N;GLYPH FOR VERTICAL OPENING TORTOISE SHELL BRACKET;;;;-FE3A;PRESENTATION FORM FOR VERTICAL RIGHT TORTOISE SHELL BRACKET;Pe;0;ON;<vertical> 3015;;;;N;GLYPH FOR VERTICAL CLOSING TORTOISE SHELL BRACKET;;;;-FE3B;PRESENTATION FORM FOR VERTICAL LEFT BLACK LENTICULAR BRACKET;Ps;0;ON;<vertical> 3010;;;;N;GLYPH FOR VERTICAL OPENING BLACK LENTICULAR BRACKET;;;;-FE3C;PRESENTATION FORM FOR VERTICAL RIGHT BLACK LENTICULAR BRACKET;Pe;0;ON;<vertical> 3011;;;;N;GLYPH FOR VERTICAL CLOSING BLACK LENTICULAR BRACKET;;;;-FE3D;PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET;Ps;0;ON;<vertical> 300A;;;;N;GLYPH FOR VERTICAL OPENING DOUBLE ANGLE BRACKET;;;;-FE3E;PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET;Pe;0;ON;<vertical> 300B;;;;N;GLYPH FOR VERTICAL CLOSING DOUBLE ANGLE BRACKET;;;;-FE3F;PRESENTATION FORM FOR VERTICAL LEFT ANGLE BRACKET;Ps;0;ON;<vertical> 3008;;;;N;GLYPH FOR VERTICAL OPENING ANGLE BRACKET;;;;-FE40;PRESENTATION FORM FOR VERTICAL RIGHT ANGLE BRACKET;Pe;0;ON;<vertical> 3009;;;;N;GLYPH FOR VERTICAL CLOSING ANGLE BRACKET;;;;-FE41;PRESENTATION FORM FOR VERTICAL LEFT CORNER BRACKET;Ps;0;ON;<vertical> 300C;;;;N;GLYPH FOR VERTICAL OPENING CORNER BRACKET;;;;-FE42;PRESENTATION FORM FOR VERTICAL RIGHT CORNER BRACKET;Pe;0;ON;<vertical> 300D;;;;N;GLYPH FOR VERTICAL CLOSING CORNER BRACKET;;;;-FE43;PRESENTATION FORM FOR VERTICAL LEFT WHITE CORNER BRACKET;Ps;0;ON;<vertical> 300E;;;;N;GLYPH FOR VERTICAL OPENING WHITE CORNER BRACKET;;;;-FE44;PRESENTATION FORM FOR VERTICAL RIGHT WHITE CORNER BRACKET;Pe;0;ON;<vertical> 300F;;;;N;GLYPH FOR VERTICAL CLOSING WHITE CORNER BRACKET;;;;-FE45;SESAME DOT;Po;0;ON;;;;;N;;;;;-FE46;WHITE SESAME DOT;Po;0;ON;;;;;N;;;;;-FE47;PRESENTATION FORM FOR VERTICAL LEFT SQUARE BRACKET;Ps;0;ON;<vertical> 005B;;;;N;;;;;-FE48;PRESENTATION FORM FOR VERTICAL RIGHT SQUARE BRACKET;Pe;0;ON;<vertical> 005D;;;;N;;;;;-FE49;DASHED OVERLINE;Po;0;ON;<compat> 203E;;;;N;SPACING DASHED OVERSCORE;;;;-FE4A;CENTRELINE OVERLINE;Po;0;ON;<compat> 203E;;;;N;SPACING CENTERLINE OVERSCORE;;;;-FE4B;WAVY OVERLINE;Po;0;ON;<compat> 203E;;;;N;SPACING WAVY OVERSCORE;;;;-FE4C;DOUBLE WAVY OVERLINE;Po;0;ON;<compat> 203E;;;;N;SPACING DOUBLE WAVY OVERSCORE;;;;-FE4D;DASHED LOW LINE;Pc;0;ON;<compat> 005F;;;;N;SPACING DASHED UNDERSCORE;;;;-FE4E;CENTRELINE LOW LINE;Pc;0;ON;<compat> 005F;;;;N;SPACING CENTERLINE UNDERSCORE;;;;-FE4F;WAVY LOW LINE;Pc;0;ON;<compat> 005F;;;;N;SPACING WAVY UNDERSCORE;;;;-FE50;SMALL COMMA;Po;0;CS;<small> 002C;;;;N;;;;;-FE51;SMALL IDEOGRAPHIC COMMA;Po;0;ON;<small> 3001;;;;N;;;;;-FE52;SMALL FULL STOP;Po;0;CS;<small> 002E;;;;N;SMALL PERIOD;;;;-FE54;SMALL SEMICOLON;Po;0;ON;<small> 003B;;;;N;;;;;-FE55;SMALL COLON;Po;0;CS;<small> 003A;;;;N;;;;;-FE56;SMALL QUESTION MARK;Po;0;ON;<small> 003F;;;;N;;;;;-FE57;SMALL EXCLAMATION MARK;Po;0;ON;<small> 0021;;;;N;;;;;-FE58;SMALL EM DASH;Pd;0;ON;<small> 2014;;;;N;;;;;-FE59;SMALL LEFT PARENTHESIS;Ps;0;ON;<small> 0028;;;;Y;SMALL OPENING PARENTHESIS;;;;-FE5A;SMALL RIGHT PARENTHESIS;Pe;0;ON;<small> 0029;;;;Y;SMALL CLOSING PARENTHESIS;;;;-FE5B;SMALL LEFT CURLY BRACKET;Ps;0;ON;<small> 007B;;;;Y;SMALL OPENING CURLY BRACKET;;;;-FE5C;SMALL RIGHT CURLY BRACKET;Pe;0;ON;<small> 007D;;;;Y;SMALL CLOSING CURLY BRACKET;;;;-FE5D;SMALL LEFT TORTOISE SHELL BRACKET;Ps;0;ON;<small> 3014;;;;Y;SMALL OPENING TORTOISE SHELL BRACKET;;;;-FE5E;SMALL RIGHT TORTOISE SHELL BRACKET;Pe;0;ON;<small> 3015;;;;Y;SMALL CLOSING TORTOISE SHELL BRACKET;;;;-FE5F;SMALL NUMBER SIGN;Po;0;ET;<small> 0023;;;;N;;;;;-FE60;SMALL AMPERSAND;Po;0;ON;<small> 0026;;;;N;;;;;-FE61;SMALL ASTERISK;Po;0;ON;<small> 002A;;;;N;;;;;-FE62;SMALL PLUS SIGN;Sm;0;ES;<small> 002B;;;;N;;;;;-FE63;SMALL HYPHEN-MINUS;Pd;0;ES;<small> 002D;;;;N;;;;;-FE64;SMALL LESS-THAN SIGN;Sm;0;ON;<small> 003C;;;;Y;;;;;-FE65;SMALL GREATER-THAN SIGN;Sm;0;ON;<small> 003E;;;;Y;;;;;-FE66;SMALL EQUALS SIGN;Sm;0;ON;<small> 003D;;;;N;;;;;-FE68;SMALL REVERSE SOLIDUS;Po;0;ON;<small> 005C;;;;N;SMALL BACKSLASH;;;;-FE69;SMALL DOLLAR SIGN;Sc;0;ET;<small> 0024;;;;N;;;;;-FE6A;SMALL PERCENT SIGN;Po;0;ET;<small> 0025;;;;N;;;;;-FE6B;SMALL COMMERCIAL AT;Po;0;ON;<small> 0040;;;;N;;;;;-FE70;ARABIC FATHATAN ISOLATED FORM;Lo;0;AL;<isolated> 0020 064B;;;;N;ARABIC SPACING FATHATAN;;;;-FE71;ARABIC TATWEEL WITH FATHATAN ABOVE;Lo;0;AL;<medial> 0640 064B;;;;N;ARABIC FATHATAN ON TATWEEL;;;;-FE72;ARABIC DAMMATAN ISOLATED FORM;Lo;0;AL;<isolated> 0020 064C;;;;N;ARABIC SPACING DAMMATAN;;;;-FE73;ARABIC TAIL FRAGMENT;Lo;0;AL;;;;;N;;;;;-FE74;ARABIC KASRATAN ISOLATED FORM;Lo;0;AL;<isolated> 0020 064D;;;;N;ARABIC SPACING KASRATAN;;;;-FE76;ARABIC FATHA ISOLATED FORM;Lo;0;AL;<isolated> 0020 064E;;;;N;ARABIC SPACING FATHAH;;;;-FE77;ARABIC FATHA MEDIAL FORM;Lo;0;AL;<medial> 0640 064E;;;;N;ARABIC FATHAH ON TATWEEL;;;;-FE78;ARABIC DAMMA ISOLATED FORM;Lo;0;AL;<isolated> 0020 064F;;;;N;ARABIC SPACING DAMMAH;;;;-FE79;ARABIC DAMMA MEDIAL FORM;Lo;0;AL;<medial> 0640 064F;;;;N;ARABIC DAMMAH ON TATWEEL;;;;-FE7A;ARABIC KASRA ISOLATED FORM;Lo;0;AL;<isolated> 0020 0650;;;;N;ARABIC SPACING KASRAH;;;;-FE7B;ARABIC KASRA MEDIAL FORM;Lo;0;AL;<medial> 0640 0650;;;;N;ARABIC KASRAH ON TATWEEL;;;;-FE7C;ARABIC SHADDA ISOLATED FORM;Lo;0;AL;<isolated> 0020 0651;;;;N;ARABIC SPACING SHADDAH;;;;-FE7D;ARABIC SHADDA MEDIAL FORM;Lo;0;AL;<medial> 0640 0651;;;;N;ARABIC SHADDAH ON TATWEEL;;;;-FE7E;ARABIC SUKUN ISOLATED FORM;Lo;0;AL;<isolated> 0020 0652;;;;N;ARABIC SPACING SUKUN;;;;-FE7F;ARABIC SUKUN MEDIAL FORM;Lo;0;AL;<medial> 0640 0652;;;;N;ARABIC SUKUN ON TATWEEL;;;;-FE80;ARABIC LETTER HAMZA ISOLATED FORM;Lo;0;AL;<isolated> 0621;;;;N;GLYPH FOR ISOLATE ARABIC HAMZAH;;;;-FE81;ARABIC LETTER ALEF WITH MADDA ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 0622;;;;N;GLYPH FOR ISOLATE ARABIC MADDAH ON ALEF;;;;-FE82;ARABIC LETTER ALEF WITH MADDA ABOVE FINAL FORM;Lo;0;AL;<final> 0622;;;;N;GLYPH FOR FINAL ARABIC MADDAH ON ALEF;;;;-FE83;ARABIC LETTER ALEF WITH HAMZA ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 0623;;;;N;GLYPH FOR ISOLATE ARABIC HAMZAH ON ALEF;;;;-FE84;ARABIC LETTER ALEF WITH HAMZA ABOVE FINAL FORM;Lo;0;AL;<final> 0623;;;;N;GLYPH FOR FINAL ARABIC HAMZAH ON ALEF;;;;-FE85;ARABIC LETTER WAW WITH HAMZA ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 0624;;;;N;GLYPH FOR ISOLATE ARABIC HAMZAH ON WAW;;;;-FE86;ARABIC LETTER WAW WITH HAMZA ABOVE FINAL FORM;Lo;0;AL;<final> 0624;;;;N;GLYPH FOR FINAL ARABIC HAMZAH ON WAW;;;;-FE87;ARABIC LETTER ALEF WITH HAMZA BELOW ISOLATED FORM;Lo;0;AL;<isolated> 0625;;;;N;GLYPH FOR ISOLATE ARABIC HAMZAH UNDER ALEF;;;;-FE88;ARABIC LETTER ALEF WITH HAMZA BELOW FINAL FORM;Lo;0;AL;<final> 0625;;;;N;GLYPH FOR FINAL ARABIC HAMZAH UNDER ALEF;;;;-FE89;ARABIC LETTER YEH WITH HAMZA ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 0626;;;;N;GLYPH FOR ISOLATE ARABIC HAMZAH ON YA;;;;-FE8A;ARABIC LETTER YEH WITH HAMZA ABOVE FINAL FORM;Lo;0;AL;<final> 0626;;;;N;GLYPH FOR FINAL ARABIC HAMZAH ON YA;;;;-FE8B;ARABIC LETTER YEH WITH HAMZA ABOVE INITIAL FORM;Lo;0;AL;<initial> 0626;;;;N;GLYPH FOR INITIAL ARABIC HAMZAH ON YA;;;;-FE8C;ARABIC LETTER YEH WITH HAMZA ABOVE MEDIAL FORM;Lo;0;AL;<medial> 0626;;;;N;GLYPH FOR MEDIAL ARABIC HAMZAH ON YA;;;;-FE8D;ARABIC LETTER ALEF ISOLATED FORM;Lo;0;AL;<isolated> 0627;;;;N;GLYPH FOR ISOLATE ARABIC ALEF;;;;-FE8E;ARABIC LETTER ALEF FINAL FORM;Lo;0;AL;<final> 0627;;;;N;GLYPH FOR FINAL ARABIC ALEF;;;;-FE8F;ARABIC LETTER BEH ISOLATED FORM;Lo;0;AL;<isolated> 0628;;;;N;GLYPH FOR ISOLATE ARABIC BAA;;;;-FE90;ARABIC LETTER BEH FINAL FORM;Lo;0;AL;<final> 0628;;;;N;GLYPH FOR FINAL ARABIC BAA;;;;-FE91;ARABIC LETTER BEH INITIAL FORM;Lo;0;AL;<initial> 0628;;;;N;GLYPH FOR INITIAL ARABIC BAA;;;;-FE92;ARABIC LETTER BEH MEDIAL FORM;Lo;0;AL;<medial> 0628;;;;N;GLYPH FOR MEDIAL ARABIC BAA;;;;-FE93;ARABIC LETTER TEH MARBUTA ISOLATED FORM;Lo;0;AL;<isolated> 0629;;;;N;GLYPH FOR ISOLATE ARABIC TAA MARBUTAH;;;;-FE94;ARABIC LETTER TEH MARBUTA FINAL FORM;Lo;0;AL;<final> 0629;;;;N;GLYPH FOR FINAL ARABIC TAA MARBUTAH;;;;-FE95;ARABIC LETTER TEH ISOLATED FORM;Lo;0;AL;<isolated> 062A;;;;N;GLYPH FOR ISOLATE ARABIC TAA;;;;-FE96;ARABIC LETTER TEH FINAL FORM;Lo;0;AL;<final> 062A;;;;N;GLYPH FOR FINAL ARABIC TAA;;;;-FE97;ARABIC LETTER TEH INITIAL FORM;Lo;0;AL;<initial> 062A;;;;N;GLYPH FOR INITIAL ARABIC TAA;;;;-FE98;ARABIC LETTER TEH MEDIAL FORM;Lo;0;AL;<medial> 062A;;;;N;GLYPH FOR MEDIAL ARABIC TAA;;;;-FE99;ARABIC LETTER THEH ISOLATED FORM;Lo;0;AL;<isolated> 062B;;;;N;GLYPH FOR ISOLATE ARABIC THAA;;;;-FE9A;ARABIC LETTER THEH FINAL FORM;Lo;0;AL;<final> 062B;;;;N;GLYPH FOR FINAL ARABIC THAA;;;;-FE9B;ARABIC LETTER THEH INITIAL FORM;Lo;0;AL;<initial> 062B;;;;N;GLYPH FOR INITIAL ARABIC THAA;;;;-FE9C;ARABIC LETTER THEH MEDIAL FORM;Lo;0;AL;<medial> 062B;;;;N;GLYPH FOR MEDIAL ARABIC THAA;;;;-FE9D;ARABIC LETTER JEEM ISOLATED FORM;Lo;0;AL;<isolated> 062C;;;;N;GLYPH FOR ISOLATE ARABIC JEEM;;;;-FE9E;ARABIC LETTER JEEM FINAL FORM;Lo;0;AL;<final> 062C;;;;N;GLYPH FOR FINAL ARABIC JEEM;;;;-FE9F;ARABIC LETTER JEEM INITIAL FORM;Lo;0;AL;<initial> 062C;;;;N;GLYPH FOR INITIAL ARABIC JEEM;;;;-FEA0;ARABIC LETTER JEEM MEDIAL FORM;Lo;0;AL;<medial> 062C;;;;N;GLYPH FOR MEDIAL ARABIC JEEM;;;;-FEA1;ARABIC LETTER HAH ISOLATED FORM;Lo;0;AL;<isolated> 062D;;;;N;GLYPH FOR ISOLATE ARABIC HAA;;;;-FEA2;ARABIC LETTER HAH FINAL FORM;Lo;0;AL;<final> 062D;;;;N;GLYPH FOR FINAL ARABIC HAA;;;;-FEA3;ARABIC LETTER HAH INITIAL FORM;Lo;0;AL;<initial> 062D;;;;N;GLYPH FOR INITIAL ARABIC HAA;;;;-FEA4;ARABIC LETTER HAH MEDIAL FORM;Lo;0;AL;<medial> 062D;;;;N;GLYPH FOR MEDIAL ARABIC HAA;;;;-FEA5;ARABIC LETTER KHAH ISOLATED FORM;Lo;0;AL;<isolated> 062E;;;;N;GLYPH FOR ISOLATE ARABIC KHAA;;;;-FEA6;ARABIC LETTER KHAH FINAL FORM;Lo;0;AL;<final> 062E;;;;N;GLYPH FOR FINAL ARABIC KHAA;;;;-FEA7;ARABIC LETTER KHAH INITIAL FORM;Lo;0;AL;<initial> 062E;;;;N;GLYPH FOR INITIAL ARABIC KHAA;;;;-FEA8;ARABIC LETTER KHAH MEDIAL FORM;Lo;0;AL;<medial> 062E;;;;N;GLYPH FOR MEDIAL ARABIC KHAA;;;;-FEA9;ARABIC LETTER DAL ISOLATED FORM;Lo;0;AL;<isolated> 062F;;;;N;GLYPH FOR ISOLATE ARABIC DAL;;;;-FEAA;ARABIC LETTER DAL FINAL FORM;Lo;0;AL;<final> 062F;;;;N;GLYPH FOR FINAL ARABIC DAL;;;;-FEAB;ARABIC LETTER THAL ISOLATED FORM;Lo;0;AL;<isolated> 0630;;;;N;GLYPH FOR ISOLATE ARABIC THAL;;;;-FEAC;ARABIC LETTER THAL FINAL FORM;Lo;0;AL;<final> 0630;;;;N;GLYPH FOR FINAL ARABIC THAL;;;;-FEAD;ARABIC LETTER REH ISOLATED FORM;Lo;0;AL;<isolated> 0631;;;;N;GLYPH FOR ISOLATE ARABIC RA;;;;-FEAE;ARABIC LETTER REH FINAL FORM;Lo;0;AL;<final> 0631;;;;N;GLYPH FOR FINAL ARABIC RA;;;;-FEAF;ARABIC LETTER ZAIN ISOLATED FORM;Lo;0;AL;<isolated> 0632;;;;N;GLYPH FOR ISOLATE ARABIC ZAIN;;;;-FEB0;ARABIC LETTER ZAIN FINAL FORM;Lo;0;AL;<final> 0632;;;;N;GLYPH FOR FINAL ARABIC ZAIN;;;;-FEB1;ARABIC LETTER SEEN ISOLATED FORM;Lo;0;AL;<isolated> 0633;;;;N;GLYPH FOR ISOLATE ARABIC SEEN;;;;-FEB2;ARABIC LETTER SEEN FINAL FORM;Lo;0;AL;<final> 0633;;;;N;GLYPH FOR FINAL ARABIC SEEN;;;;-FEB3;ARABIC LETTER SEEN INITIAL FORM;Lo;0;AL;<initial> 0633;;;;N;GLYPH FOR INITIAL ARABIC SEEN;;;;-FEB4;ARABIC LETTER SEEN MEDIAL FORM;Lo;0;AL;<medial> 0633;;;;N;GLYPH FOR MEDIAL ARABIC SEEN;;;;-FEB5;ARABIC LETTER SHEEN ISOLATED FORM;Lo;0;AL;<isolated> 0634;;;;N;GLYPH FOR ISOLATE ARABIC SHEEN;;;;-FEB6;ARABIC LETTER SHEEN FINAL FORM;Lo;0;AL;<final> 0634;;;;N;GLYPH FOR FINAL ARABIC SHEEN;;;;-FEB7;ARABIC LETTER SHEEN INITIAL FORM;Lo;0;AL;<initial> 0634;;;;N;GLYPH FOR INITIAL ARABIC SHEEN;;;;-FEB8;ARABIC LETTER SHEEN MEDIAL FORM;Lo;0;AL;<medial> 0634;;;;N;GLYPH FOR MEDIAL ARABIC SHEEN;;;;-FEB9;ARABIC LETTER SAD ISOLATED FORM;Lo;0;AL;<isolated> 0635;;;;N;GLYPH FOR ISOLATE ARABIC SAD;;;;-FEBA;ARABIC LETTER SAD FINAL FORM;Lo;0;AL;<final> 0635;;;;N;GLYPH FOR FINAL ARABIC SAD;;;;-FEBB;ARABIC LETTER SAD INITIAL FORM;Lo;0;AL;<initial> 0635;;;;N;GLYPH FOR INITIAL ARABIC SAD;;;;-FEBC;ARABIC LETTER SAD MEDIAL FORM;Lo;0;AL;<medial> 0635;;;;N;GLYPH FOR MEDIAL ARABIC SAD;;;;-FEBD;ARABIC LETTER DAD ISOLATED FORM;Lo;0;AL;<isolated> 0636;;;;N;GLYPH FOR ISOLATE ARABIC DAD;;;;-FEBE;ARABIC LETTER DAD FINAL FORM;Lo;0;AL;<final> 0636;;;;N;GLYPH FOR FINAL ARABIC DAD;;;;-FEBF;ARABIC LETTER DAD INITIAL FORM;Lo;0;AL;<initial> 0636;;;;N;GLYPH FOR INITIAL ARABIC DAD;;;;-FEC0;ARABIC LETTER DAD MEDIAL FORM;Lo;0;AL;<medial> 0636;;;;N;GLYPH FOR MEDIAL ARABIC DAD;;;;-FEC1;ARABIC LETTER TAH ISOLATED FORM;Lo;0;AL;<isolated> 0637;;;;N;GLYPH FOR ISOLATE ARABIC TAH;;;;-FEC2;ARABIC LETTER TAH FINAL FORM;Lo;0;AL;<final> 0637;;;;N;GLYPH FOR FINAL ARABIC TAH;;;;-FEC3;ARABIC LETTER TAH INITIAL FORM;Lo;0;AL;<initial> 0637;;;;N;GLYPH FOR INITIAL ARABIC TAH;;;;-FEC4;ARABIC LETTER TAH MEDIAL FORM;Lo;0;AL;<medial> 0637;;;;N;GLYPH FOR MEDIAL ARABIC TAH;;;;-FEC5;ARABIC LETTER ZAH ISOLATED FORM;Lo;0;AL;<isolated> 0638;;;;N;GLYPH FOR ISOLATE ARABIC DHAH;;;;-FEC6;ARABIC LETTER ZAH FINAL FORM;Lo;0;AL;<final> 0638;;;;N;GLYPH FOR FINAL ARABIC DHAH;;;;-FEC7;ARABIC LETTER ZAH INITIAL FORM;Lo;0;AL;<initial> 0638;;;;N;GLYPH FOR INITIAL ARABIC DHAH;;;;-FEC8;ARABIC LETTER ZAH MEDIAL FORM;Lo;0;AL;<medial> 0638;;;;N;GLYPH FOR MEDIAL ARABIC DHAH;;;;-FEC9;ARABIC LETTER AIN ISOLATED FORM;Lo;0;AL;<isolated> 0639;;;;N;GLYPH FOR ISOLATE ARABIC AIN;;;;-FECA;ARABIC LETTER AIN FINAL FORM;Lo;0;AL;<final> 0639;;;;N;GLYPH FOR FINAL ARABIC AIN;;;;-FECB;ARABIC LETTER AIN INITIAL FORM;Lo;0;AL;<initial> 0639;;;;N;GLYPH FOR INITIAL ARABIC AIN;;;;-FECC;ARABIC LETTER AIN MEDIAL FORM;Lo;0;AL;<medial> 0639;;;;N;GLYPH FOR MEDIAL ARABIC AIN;;;;-FECD;ARABIC LETTER GHAIN ISOLATED FORM;Lo;0;AL;<isolated> 063A;;;;N;GLYPH FOR ISOLATE ARABIC GHAIN;;;;-FECE;ARABIC LETTER GHAIN FINAL FORM;Lo;0;AL;<final> 063A;;;;N;GLYPH FOR FINAL ARABIC GHAIN;;;;-FECF;ARABIC LETTER GHAIN INITIAL FORM;Lo;0;AL;<initial> 063A;;;;N;GLYPH FOR INITIAL ARABIC GHAIN;;;;-FED0;ARABIC LETTER GHAIN MEDIAL FORM;Lo;0;AL;<medial> 063A;;;;N;GLYPH FOR MEDIAL ARABIC GHAIN;;;;-FED1;ARABIC LETTER FEH ISOLATED FORM;Lo;0;AL;<isolated> 0641;;;;N;GLYPH FOR ISOLATE ARABIC FA;;;;-FED2;ARABIC LETTER FEH FINAL FORM;Lo;0;AL;<final> 0641;;;;N;GLYPH FOR FINAL ARABIC FA;;;;-FED3;ARABIC LETTER FEH INITIAL FORM;Lo;0;AL;<initial> 0641;;;;N;GLYPH FOR INITIAL ARABIC FA;;;;-FED4;ARABIC LETTER FEH MEDIAL FORM;Lo;0;AL;<medial> 0641;;;;N;GLYPH FOR MEDIAL ARABIC FA;;;;-FED5;ARABIC LETTER QAF ISOLATED FORM;Lo;0;AL;<isolated> 0642;;;;N;GLYPH FOR ISOLATE ARABIC QAF;;;;-FED6;ARABIC LETTER QAF FINAL FORM;Lo;0;AL;<final> 0642;;;;N;GLYPH FOR FINAL ARABIC QAF;;;;-FED7;ARABIC LETTER QAF INITIAL FORM;Lo;0;AL;<initial> 0642;;;;N;GLYPH FOR INITIAL ARABIC QAF;;;;-FED8;ARABIC LETTER QAF MEDIAL FORM;Lo;0;AL;<medial> 0642;;;;N;GLYPH FOR MEDIAL ARABIC QAF;;;;-FED9;ARABIC LETTER KAF ISOLATED FORM;Lo;0;AL;<isolated> 0643;;;;N;GLYPH FOR ISOLATE ARABIC CAF;;;;-FEDA;ARABIC LETTER KAF FINAL FORM;Lo;0;AL;<final> 0643;;;;N;GLYPH FOR FINAL ARABIC CAF;;;;-FEDB;ARABIC LETTER KAF INITIAL FORM;Lo;0;AL;<initial> 0643;;;;N;GLYPH FOR INITIAL ARABIC CAF;;;;-FEDC;ARABIC LETTER KAF MEDIAL FORM;Lo;0;AL;<medial> 0643;;;;N;GLYPH FOR MEDIAL ARABIC CAF;;;;-FEDD;ARABIC LETTER LAM ISOLATED FORM;Lo;0;AL;<isolated> 0644;;;;N;GLYPH FOR ISOLATE ARABIC LAM;;;;-FEDE;ARABIC LETTER LAM FINAL FORM;Lo;0;AL;<final> 0644;;;;N;GLYPH FOR FINAL ARABIC LAM;;;;-FEDF;ARABIC LETTER LAM INITIAL FORM;Lo;0;AL;<initial> 0644;;;;N;GLYPH FOR INITIAL ARABIC LAM;;;;-FEE0;ARABIC LETTER LAM MEDIAL FORM;Lo;0;AL;<medial> 0644;;;;N;GLYPH FOR MEDIAL ARABIC LAM;;;;-FEE1;ARABIC LETTER MEEM ISOLATED FORM;Lo;0;AL;<isolated> 0645;;;;N;GLYPH FOR ISOLATE ARABIC MEEM;;;;-FEE2;ARABIC LETTER MEEM FINAL FORM;Lo;0;AL;<final> 0645;;;;N;GLYPH FOR FINAL ARABIC MEEM;;;;-FEE3;ARABIC LETTER MEEM INITIAL FORM;Lo;0;AL;<initial> 0645;;;;N;GLYPH FOR INITIAL ARABIC MEEM;;;;-FEE4;ARABIC LETTER MEEM MEDIAL FORM;Lo;0;AL;<medial> 0645;;;;N;GLYPH FOR MEDIAL ARABIC MEEM;;;;-FEE5;ARABIC LETTER NOON ISOLATED FORM;Lo;0;AL;<isolated> 0646;;;;N;GLYPH FOR ISOLATE ARABIC NOON;;;;-FEE6;ARABIC LETTER NOON FINAL FORM;Lo;0;AL;<final> 0646;;;;N;GLYPH FOR FINAL ARABIC NOON;;;;-FEE7;ARABIC LETTER NOON INITIAL FORM;Lo;0;AL;<initial> 0646;;;;N;GLYPH FOR INITIAL ARABIC NOON;;;;-FEE8;ARABIC LETTER NOON MEDIAL FORM;Lo;0;AL;<medial> 0646;;;;N;GLYPH FOR MEDIAL ARABIC NOON;;;;-FEE9;ARABIC LETTER HEH ISOLATED FORM;Lo;0;AL;<isolated> 0647;;;;N;GLYPH FOR ISOLATE ARABIC HA;;;;-FEEA;ARABIC LETTER HEH FINAL FORM;Lo;0;AL;<final> 0647;;;;N;GLYPH FOR FINAL ARABIC HA;;;;-FEEB;ARABIC LETTER HEH INITIAL FORM;Lo;0;AL;<initial> 0647;;;;N;GLYPH FOR INITIAL ARABIC HA;;;;-FEEC;ARABIC LETTER HEH MEDIAL FORM;Lo;0;AL;<medial> 0647;;;;N;GLYPH FOR MEDIAL ARABIC HA;;;;-FEED;ARABIC LETTER WAW ISOLATED FORM;Lo;0;AL;<isolated> 0648;;;;N;GLYPH FOR ISOLATE ARABIC WAW;;;;-FEEE;ARABIC LETTER WAW FINAL FORM;Lo;0;AL;<final> 0648;;;;N;GLYPH FOR FINAL ARABIC WAW;;;;-FEEF;ARABIC LETTER ALEF MAKSURA ISOLATED FORM;Lo;0;AL;<isolated> 0649;;;;N;GLYPH FOR ISOLATE ARABIC ALEF MAQSURAH;;;;-FEF0;ARABIC LETTER ALEF MAKSURA FINAL FORM;Lo;0;AL;<final> 0649;;;;N;GLYPH FOR FINAL ARABIC ALEF MAQSURAH;;;;-FEF1;ARABIC LETTER YEH ISOLATED FORM;Lo;0;AL;<isolated> 064A;;;;N;GLYPH FOR ISOLATE ARABIC YA;;;;-FEF2;ARABIC LETTER YEH FINAL FORM;Lo;0;AL;<final> 064A;;;;N;GLYPH FOR FINAL ARABIC YA;;;;-FEF3;ARABIC LETTER YEH INITIAL FORM;Lo;0;AL;<initial> 064A;;;;N;GLYPH FOR INITIAL ARABIC YA;;;;-FEF4;ARABIC LETTER YEH MEDIAL FORM;Lo;0;AL;<medial> 064A;;;;N;GLYPH FOR MEDIAL ARABIC YA;;;;-FEF5;ARABIC LIGATURE LAM WITH ALEF WITH MADDA ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 0644 0622;;;;N;GLYPH FOR ISOLATE ARABIC MADDAH ON LIGATURE LAM ALEF;;;;-FEF6;ARABIC LIGATURE LAM WITH ALEF WITH MADDA ABOVE FINAL FORM;Lo;0;AL;<final> 0644 0622;;;;N;GLYPH FOR FINAL ARABIC MADDAH ON LIGATURE LAM ALEF;;;;-FEF7;ARABIC LIGATURE LAM WITH ALEF WITH HAMZA ABOVE ISOLATED FORM;Lo;0;AL;<isolated> 0644 0623;;;;N;GLYPH FOR ISOLATE ARABIC HAMZAH ON LIGATURE LAM ALEF;;;;-FEF8;ARABIC LIGATURE LAM WITH ALEF WITH HAMZA ABOVE FINAL FORM;Lo;0;AL;<final> 0644 0623;;;;N;GLYPH FOR FINAL ARABIC HAMZAH ON LIGATURE LAM ALEF;;;;-FEF9;ARABIC LIGATURE LAM WITH ALEF WITH HAMZA BELOW ISOLATED FORM;Lo;0;AL;<isolated> 0644 0625;;;;N;GLYPH FOR ISOLATE ARABIC HAMZAH UNDER LIGATURE LAM ALEF;;;;-FEFA;ARABIC LIGATURE LAM WITH ALEF WITH HAMZA BELOW FINAL FORM;Lo;0;AL;<final> 0644 0625;;;;N;GLYPH FOR FINAL ARABIC HAMZAH UNDER LIGATURE LAM ALEF;;;;-FEFB;ARABIC LIGATURE LAM WITH ALEF ISOLATED FORM;Lo;0;AL;<isolated> 0644 0627;;;;N;GLYPH FOR ISOLATE ARABIC LIGATURE LAM ALEF;;;;-FEFC;ARABIC LIGATURE LAM WITH ALEF FINAL FORM;Lo;0;AL;<final> 0644 0627;;;;N;GLYPH FOR FINAL ARABIC LIGATURE LAM ALEF;;;;-FEFF;ZERO WIDTH NO-BREAK SPACE;Cf;0;BN;;;;;N;BYTE ORDER MARK;;;;-FF01;FULLWIDTH EXCLAMATION MARK;Po;0;ON;<wide> 0021;;;;N;;;;;-FF02;FULLWIDTH QUOTATION MARK;Po;0;ON;<wide> 0022;;;;N;;;;;-FF03;FULLWIDTH NUMBER SIGN;Po;0;ET;<wide> 0023;;;;N;;;;;-FF04;FULLWIDTH DOLLAR SIGN;Sc;0;ET;<wide> 0024;;;;N;;;;;-FF05;FULLWIDTH PERCENT SIGN;Po;0;ET;<wide> 0025;;;;N;;;;;-FF06;FULLWIDTH AMPERSAND;Po;0;ON;<wide> 0026;;;;N;;;;;-FF07;FULLWIDTH APOSTROPHE;Po;0;ON;<wide> 0027;;;;N;;;;;-FF08;FULLWIDTH LEFT PARENTHESIS;Ps;0;ON;<wide> 0028;;;;Y;FULLWIDTH OPENING PARENTHESIS;;;;-FF09;FULLWIDTH RIGHT PARENTHESIS;Pe;0;ON;<wide> 0029;;;;Y;FULLWIDTH CLOSING PARENTHESIS;;;;-FF0A;FULLWIDTH ASTERISK;Po;0;ON;<wide> 002A;;;;N;;;;;-FF0B;FULLWIDTH PLUS SIGN;Sm;0;ES;<wide> 002B;;;;N;;;;;-FF0C;FULLWIDTH COMMA;Po;0;CS;<wide> 002C;;;;N;;;;;-FF0D;FULLWIDTH HYPHEN-MINUS;Pd;0;ES;<wide> 002D;;;;N;;;;;-FF0E;FULLWIDTH FULL STOP;Po;0;CS;<wide> 002E;;;;N;FULLWIDTH PERIOD;;;;-FF0F;FULLWIDTH SOLIDUS;Po;0;CS;<wide> 002F;;;;N;FULLWIDTH SLASH;;;;-FF10;FULLWIDTH DIGIT ZERO;Nd;0;EN;<wide> 0030;0;0;0;N;;;;;-FF11;FULLWIDTH DIGIT ONE;Nd;0;EN;<wide> 0031;1;1;1;N;;;;;-FF12;FULLWIDTH DIGIT TWO;Nd;0;EN;<wide> 0032;2;2;2;N;;;;;-FF13;FULLWIDTH DIGIT THREE;Nd;0;EN;<wide> 0033;3;3;3;N;;;;;-FF14;FULLWIDTH DIGIT FOUR;Nd;0;EN;<wide> 0034;4;4;4;N;;;;;-FF15;FULLWIDTH DIGIT FIVE;Nd;0;EN;<wide> 0035;5;5;5;N;;;;;-FF16;FULLWIDTH DIGIT SIX;Nd;0;EN;<wide> 0036;6;6;6;N;;;;;-FF17;FULLWIDTH DIGIT SEVEN;Nd;0;EN;<wide> 0037;7;7;7;N;;;;;-FF18;FULLWIDTH DIGIT EIGHT;Nd;0;EN;<wide> 0038;8;8;8;N;;;;;-FF19;FULLWIDTH DIGIT NINE;Nd;0;EN;<wide> 0039;9;9;9;N;;;;;-FF1A;FULLWIDTH COLON;Po;0;CS;<wide> 003A;;;;N;;;;;-FF1B;FULLWIDTH SEMICOLON;Po;0;ON;<wide> 003B;;;;N;;;;;-FF1C;FULLWIDTH LESS-THAN SIGN;Sm;0;ON;<wide> 003C;;;;Y;;;;;-FF1D;FULLWIDTH EQUALS SIGN;Sm;0;ON;<wide> 003D;;;;N;;;;;-FF1E;FULLWIDTH GREATER-THAN SIGN;Sm;0;ON;<wide> 003E;;;;Y;;;;;-FF1F;FULLWIDTH QUESTION MARK;Po;0;ON;<wide> 003F;;;;N;;;;;-FF20;FULLWIDTH COMMERCIAL AT;Po;0;ON;<wide> 0040;;;;N;;;;;-FF21;FULLWIDTH LATIN CAPITAL LETTER A;Lu;0;L;<wide> 0041;;;;N;;;;FF41;-FF22;FULLWIDTH LATIN CAPITAL LETTER B;Lu;0;L;<wide> 0042;;;;N;;;;FF42;-FF23;FULLWIDTH LATIN CAPITAL LETTER C;Lu;0;L;<wide> 0043;;;;N;;;;FF43;-FF24;FULLWIDTH LATIN CAPITAL LETTER D;Lu;0;L;<wide> 0044;;;;N;;;;FF44;-FF25;FULLWIDTH LATIN CAPITAL LETTER E;Lu;0;L;<wide> 0045;;;;N;;;;FF45;-FF26;FULLWIDTH LATIN CAPITAL LETTER F;Lu;0;L;<wide> 0046;;;;N;;;;FF46;-FF27;FULLWIDTH LATIN CAPITAL LETTER G;Lu;0;L;<wide> 0047;;;;N;;;;FF47;-FF28;FULLWIDTH LATIN CAPITAL LETTER H;Lu;0;L;<wide> 0048;;;;N;;;;FF48;-FF29;FULLWIDTH LATIN CAPITAL LETTER I;Lu;0;L;<wide> 0049;;;;N;;;;FF49;-FF2A;FULLWIDTH LATIN CAPITAL LETTER J;Lu;0;L;<wide> 004A;;;;N;;;;FF4A;-FF2B;FULLWIDTH LATIN CAPITAL LETTER K;Lu;0;L;<wide> 004B;;;;N;;;;FF4B;-FF2C;FULLWIDTH LATIN CAPITAL LETTER L;Lu;0;L;<wide> 004C;;;;N;;;;FF4C;-FF2D;FULLWIDTH LATIN CAPITAL LETTER M;Lu;0;L;<wide> 004D;;;;N;;;;FF4D;-FF2E;FULLWIDTH LATIN CAPITAL LETTER N;Lu;0;L;<wide> 004E;;;;N;;;;FF4E;-FF2F;FULLWIDTH LATIN CAPITAL LETTER O;Lu;0;L;<wide> 004F;;;;N;;;;FF4F;-FF30;FULLWIDTH LATIN CAPITAL LETTER P;Lu;0;L;<wide> 0050;;;;N;;;;FF50;-FF31;FULLWIDTH LATIN CAPITAL LETTER Q;Lu;0;L;<wide> 0051;;;;N;;;;FF51;-FF32;FULLWIDTH LATIN CAPITAL LETTER R;Lu;0;L;<wide> 0052;;;;N;;;;FF52;-FF33;FULLWIDTH LATIN CAPITAL LETTER S;Lu;0;L;<wide> 0053;;;;N;;;;FF53;-FF34;FULLWIDTH LATIN CAPITAL LETTER T;Lu;0;L;<wide> 0054;;;;N;;;;FF54;-FF35;FULLWIDTH LATIN CAPITAL LETTER U;Lu;0;L;<wide> 0055;;;;N;;;;FF55;-FF36;FULLWIDTH LATIN CAPITAL LETTER V;Lu;0;L;<wide> 0056;;;;N;;;;FF56;-FF37;FULLWIDTH LATIN CAPITAL LETTER W;Lu;0;L;<wide> 0057;;;;N;;;;FF57;-FF38;FULLWIDTH LATIN CAPITAL LETTER X;Lu;0;L;<wide> 0058;;;;N;;;;FF58;-FF39;FULLWIDTH LATIN CAPITAL LETTER Y;Lu;0;L;<wide> 0059;;;;N;;;;FF59;-FF3A;FULLWIDTH LATIN CAPITAL LETTER Z;Lu;0;L;<wide> 005A;;;;N;;;;FF5A;-FF3B;FULLWIDTH LEFT SQUARE BRACKET;Ps;0;ON;<wide> 005B;;;;Y;FULLWIDTH OPENING SQUARE BRACKET;;;;-FF3C;FULLWIDTH REVERSE SOLIDUS;Po;0;ON;<wide> 005C;;;;N;FULLWIDTH BACKSLASH;;;;-FF3D;FULLWIDTH RIGHT SQUARE BRACKET;Pe;0;ON;<wide> 005D;;;;Y;FULLWIDTH CLOSING SQUARE BRACKET;;;;-FF3E;FULLWIDTH CIRCUMFLEX ACCENT;Sk;0;ON;<wide> 005E;;;;N;FULLWIDTH SPACING CIRCUMFLEX;;;;-FF3F;FULLWIDTH LOW LINE;Pc;0;ON;<wide> 005F;;;;N;FULLWIDTH SPACING UNDERSCORE;;;;-FF40;FULLWIDTH GRAVE ACCENT;Sk;0;ON;<wide> 0060;;;;N;FULLWIDTH SPACING GRAVE;;;;-FF41;FULLWIDTH LATIN SMALL LETTER A;Ll;0;L;<wide> 0061;;;;N;;;FF21;;FF21-FF42;FULLWIDTH LATIN SMALL LETTER B;Ll;0;L;<wide> 0062;;;;N;;;FF22;;FF22-FF43;FULLWIDTH LATIN SMALL LETTER C;Ll;0;L;<wide> 0063;;;;N;;;FF23;;FF23-FF44;FULLWIDTH LATIN SMALL LETTER D;Ll;0;L;<wide> 0064;;;;N;;;FF24;;FF24-FF45;FULLWIDTH LATIN SMALL LETTER E;Ll;0;L;<wide> 0065;;;;N;;;FF25;;FF25-FF46;FULLWIDTH LATIN SMALL LETTER F;Ll;0;L;<wide> 0066;;;;N;;;FF26;;FF26-FF47;FULLWIDTH LATIN SMALL LETTER G;Ll;0;L;<wide> 0067;;;;N;;;FF27;;FF27-FF48;FULLWIDTH LATIN SMALL LETTER H;Ll;0;L;<wide> 0068;;;;N;;;FF28;;FF28-FF49;FULLWIDTH LATIN SMALL LETTER I;Ll;0;L;<wide> 0069;;;;N;;;FF29;;FF29-FF4A;FULLWIDTH LATIN SMALL LETTER J;Ll;0;L;<wide> 006A;;;;N;;;FF2A;;FF2A-FF4B;FULLWIDTH LATIN SMALL LETTER K;Ll;0;L;<wide> 006B;;;;N;;;FF2B;;FF2B-FF4C;FULLWIDTH LATIN SMALL LETTER L;Ll;0;L;<wide> 006C;;;;N;;;FF2C;;FF2C-FF4D;FULLWIDTH LATIN SMALL LETTER M;Ll;0;L;<wide> 006D;;;;N;;;FF2D;;FF2D-FF4E;FULLWIDTH LATIN SMALL LETTER N;Ll;0;L;<wide> 006E;;;;N;;;FF2E;;FF2E-FF4F;FULLWIDTH LATIN SMALL LETTER O;Ll;0;L;<wide> 006F;;;;N;;;FF2F;;FF2F-FF50;FULLWIDTH LATIN SMALL LETTER P;Ll;0;L;<wide> 0070;;;;N;;;FF30;;FF30-FF51;FULLWIDTH LATIN SMALL LETTER Q;Ll;0;L;<wide> 0071;;;;N;;;FF31;;FF31-FF52;FULLWIDTH LATIN SMALL LETTER R;Ll;0;L;<wide> 0072;;;;N;;;FF32;;FF32-FF53;FULLWIDTH LATIN SMALL LETTER S;Ll;0;L;<wide> 0073;;;;N;;;FF33;;FF33-FF54;FULLWIDTH LATIN SMALL LETTER T;Ll;0;L;<wide> 0074;;;;N;;;FF34;;FF34-FF55;FULLWIDTH LATIN SMALL LETTER U;Ll;0;L;<wide> 0075;;;;N;;;FF35;;FF35-FF56;FULLWIDTH LATIN SMALL LETTER V;Ll;0;L;<wide> 0076;;;;N;;;FF36;;FF36-FF57;FULLWIDTH LATIN SMALL LETTER W;Ll;0;L;<wide> 0077;;;;N;;;FF37;;FF37-FF58;FULLWIDTH LATIN SMALL LETTER X;Ll;0;L;<wide> 0078;;;;N;;;FF38;;FF38-FF59;FULLWIDTH LATIN SMALL LETTER Y;Ll;0;L;<wide> 0079;;;;N;;;FF39;;FF39-FF5A;FULLWIDTH LATIN SMALL LETTER Z;Ll;0;L;<wide> 007A;;;;N;;;FF3A;;FF3A-FF5B;FULLWIDTH LEFT CURLY BRACKET;Ps;0;ON;<wide> 007B;;;;Y;FULLWIDTH OPENING CURLY BRACKET;;;;-FF5C;FULLWIDTH VERTICAL LINE;Sm;0;ON;<wide> 007C;;;;N;FULLWIDTH VERTICAL BAR;;;;-FF5D;FULLWIDTH RIGHT CURLY BRACKET;Pe;0;ON;<wide> 007D;;;;Y;FULLWIDTH CLOSING CURLY BRACKET;;;;-FF5E;FULLWIDTH TILDE;Sm;0;ON;<wide> 007E;;;;N;FULLWIDTH SPACING TILDE;;;;-FF5F;FULLWIDTH LEFT WHITE PARENTHESIS;Ps;0;ON;<wide> 2985;;;;Y;;;;;-FF60;FULLWIDTH RIGHT WHITE PARENTHESIS;Pe;0;ON;<wide> 2986;;;;Y;;;;;-FF61;HALFWIDTH IDEOGRAPHIC FULL STOP;Po;0;ON;<narrow> 3002;;;;N;HALFWIDTH IDEOGRAPHIC PERIOD;;;;-FF62;HALFWIDTH LEFT CORNER BRACKET;Ps;0;ON;<narrow> 300C;;;;Y;HALFWIDTH OPENING CORNER BRACKET;;;;-FF63;HALFWIDTH RIGHT CORNER BRACKET;Pe;0;ON;<narrow> 300D;;;;Y;HALFWIDTH CLOSING CORNER BRACKET;;;;-FF64;HALFWIDTH IDEOGRAPHIC COMMA;Po;0;ON;<narrow> 3001;;;;N;;;;;-FF65;HALFWIDTH KATAKANA MIDDLE DOT;Po;0;ON;<narrow> 30FB;;;;N;;;;;-FF66;HALFWIDTH KATAKANA LETTER WO;Lo;0;L;<narrow> 30F2;;;;N;;;;;-FF67;HALFWIDTH KATAKANA LETTER SMALL A;Lo;0;L;<narrow> 30A1;;;;N;;;;;-FF68;HALFWIDTH KATAKANA LETTER SMALL I;Lo;0;L;<narrow> 30A3;;;;N;;;;;-FF69;HALFWIDTH KATAKANA LETTER SMALL U;Lo;0;L;<narrow> 30A5;;;;N;;;;;-FF6A;HALFWIDTH KATAKANA LETTER SMALL E;Lo;0;L;<narrow> 30A7;;;;N;;;;;-FF6B;HALFWIDTH KATAKANA LETTER SMALL O;Lo;0;L;<narrow> 30A9;;;;N;;;;;-FF6C;HALFWIDTH KATAKANA LETTER SMALL YA;Lo;0;L;<narrow> 30E3;;;;N;;;;;-FF6D;HALFWIDTH KATAKANA LETTER SMALL YU;Lo;0;L;<narrow> 30E5;;;;N;;;;;-FF6E;HALFWIDTH KATAKANA LETTER SMALL YO;Lo;0;L;<narrow> 30E7;;;;N;;;;;-FF6F;HALFWIDTH KATAKANA LETTER SMALL TU;Lo;0;L;<narrow> 30C3;;;;N;;;;;-FF70;HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK;Lm;0;L;<narrow> 30FC;;;;N;;;;;-FF71;HALFWIDTH KATAKANA LETTER A;Lo;0;L;<narrow> 30A2;;;;N;;;;;-FF72;HALFWIDTH KATAKANA LETTER I;Lo;0;L;<narrow> 30A4;;;;N;;;;;-FF73;HALFWIDTH KATAKANA LETTER U;Lo;0;L;<narrow> 30A6;;;;N;;;;;-FF74;HALFWIDTH KATAKANA LETTER E;Lo;0;L;<narrow> 30A8;;;;N;;;;;-FF75;HALFWIDTH KATAKANA LETTER O;Lo;0;L;<narrow> 30AA;;;;N;;;;;-FF76;HALFWIDTH KATAKANA LETTER KA;Lo;0;L;<narrow> 30AB;;;;N;;;;;-FF77;HALFWIDTH KATAKANA LETTER KI;Lo;0;L;<narrow> 30AD;;;;N;;;;;-FF78;HALFWIDTH KATAKANA LETTER KU;Lo;0;L;<narrow> 30AF;;;;N;;;;;-FF79;HALFWIDTH KATAKANA LETTER KE;Lo;0;L;<narrow> 30B1;;;;N;;;;;-FF7A;HALFWIDTH KATAKANA LETTER KO;Lo;0;L;<narrow> 30B3;;;;N;;;;;-FF7B;HALFWIDTH KATAKANA LETTER SA;Lo;0;L;<narrow> 30B5;;;;N;;;;;-FF7C;HALFWIDTH KATAKANA LETTER SI;Lo;0;L;<narrow> 30B7;;;;N;;;;;-FF7D;HALFWIDTH KATAKANA LETTER SU;Lo;0;L;<narrow> 30B9;;;;N;;;;;-FF7E;HALFWIDTH KATAKANA LETTER SE;Lo;0;L;<narrow> 30BB;;;;N;;;;;-FF7F;HALFWIDTH KATAKANA LETTER SO;Lo;0;L;<narrow> 30BD;;;;N;;;;;-FF80;HALFWIDTH KATAKANA LETTER TA;Lo;0;L;<narrow> 30BF;;;;N;;;;;-FF81;HALFWIDTH KATAKANA LETTER TI;Lo;0;L;<narrow> 30C1;;;;N;;;;;-FF82;HALFWIDTH KATAKANA LETTER TU;Lo;0;L;<narrow> 30C4;;;;N;;;;;-FF83;HALFWIDTH KATAKANA LETTER TE;Lo;0;L;<narrow> 30C6;;;;N;;;;;-FF84;HALFWIDTH KATAKANA LETTER TO;Lo;0;L;<narrow> 30C8;;;;N;;;;;-FF85;HALFWIDTH KATAKANA LETTER NA;Lo;0;L;<narrow> 30CA;;;;N;;;;;-FF86;HALFWIDTH KATAKANA LETTER NI;Lo;0;L;<narrow> 30CB;;;;N;;;;;-FF87;HALFWIDTH KATAKANA LETTER NU;Lo;0;L;<narrow> 30CC;;;;N;;;;;-FF88;HALFWIDTH KATAKANA LETTER NE;Lo;0;L;<narrow> 30CD;;;;N;;;;;-FF89;HALFWIDTH KATAKANA LETTER NO;Lo;0;L;<narrow> 30CE;;;;N;;;;;-FF8A;HALFWIDTH KATAKANA LETTER HA;Lo;0;L;<narrow> 30CF;;;;N;;;;;-FF8B;HALFWIDTH KATAKANA LETTER HI;Lo;0;L;<narrow> 30D2;;;;N;;;;;-FF8C;HALFWIDTH KATAKANA LETTER HU;Lo;0;L;<narrow> 30D5;;;;N;;;;;-FF8D;HALFWIDTH KATAKANA LETTER HE;Lo;0;L;<narrow> 30D8;;;;N;;;;;-FF8E;HALFWIDTH KATAKANA LETTER HO;Lo;0;L;<narrow> 30DB;;;;N;;;;;-FF8F;HALFWIDTH KATAKANA LETTER MA;Lo;0;L;<narrow> 30DE;;;;N;;;;;-FF90;HALFWIDTH KATAKANA LETTER MI;Lo;0;L;<narrow> 30DF;;;;N;;;;;-FF91;HALFWIDTH KATAKANA LETTER MU;Lo;0;L;<narrow> 30E0;;;;N;;;;;-FF92;HALFWIDTH KATAKANA LETTER ME;Lo;0;L;<narrow> 30E1;;;;N;;;;;-FF93;HALFWIDTH KATAKANA LETTER MO;Lo;0;L;<narrow> 30E2;;;;N;;;;;-FF94;HALFWIDTH KATAKANA LETTER YA;Lo;0;L;<narrow> 30E4;;;;N;;;;;-FF95;HALFWIDTH KATAKANA LETTER YU;Lo;0;L;<narrow> 30E6;;;;N;;;;;-FF96;HALFWIDTH KATAKANA LETTER YO;Lo;0;L;<narrow> 30E8;;;;N;;;;;-FF97;HALFWIDTH KATAKANA LETTER RA;Lo;0;L;<narrow> 30E9;;;;N;;;;;-FF98;HALFWIDTH KATAKANA LETTER RI;Lo;0;L;<narrow> 30EA;;;;N;;;;;-FF99;HALFWIDTH KATAKANA LETTER RU;Lo;0;L;<narrow> 30EB;;;;N;;;;;-FF9A;HALFWIDTH KATAKANA LETTER RE;Lo;0;L;<narrow> 30EC;;;;N;;;;;-FF9B;HALFWIDTH KATAKANA LETTER RO;Lo;0;L;<narrow> 30ED;;;;N;;;;;-FF9C;HALFWIDTH KATAKANA LETTER WA;Lo;0;L;<narrow> 30EF;;;;N;;;;;-FF9D;HALFWIDTH KATAKANA LETTER N;Lo;0;L;<narrow> 30F3;;;;N;;;;;-FF9E;HALFWIDTH KATAKANA VOICED SOUND MARK;Lm;0;L;<narrow> 3099;;;;N;;;;;-FF9F;HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK;Lm;0;L;<narrow> 309A;;;;N;;;;;-FFA0;HALFWIDTH HANGUL FILLER;Lo;0;L;<narrow> 3164;;;;N;HALFWIDTH HANGUL CAE OM;;;;-FFA1;HALFWIDTH HANGUL LETTER KIYEOK;Lo;0;L;<narrow> 3131;;;;N;HALFWIDTH HANGUL LETTER GIYEOG;;;;-FFA2;HALFWIDTH HANGUL LETTER SSANGKIYEOK;Lo;0;L;<narrow> 3132;;;;N;HALFWIDTH HANGUL LETTER SSANG GIYEOG;;;;-FFA3;HALFWIDTH HANGUL LETTER KIYEOK-SIOS;Lo;0;L;<narrow> 3133;;;;N;HALFWIDTH HANGUL LETTER GIYEOG SIOS;;;;-FFA4;HALFWIDTH HANGUL LETTER NIEUN;Lo;0;L;<narrow> 3134;;;;N;;;;;-FFA5;HALFWIDTH HANGUL LETTER NIEUN-CIEUC;Lo;0;L;<narrow> 3135;;;;N;HALFWIDTH HANGUL LETTER NIEUN JIEUJ;;;;-FFA6;HALFWIDTH HANGUL LETTER NIEUN-HIEUH;Lo;0;L;<narrow> 3136;;;;N;HALFWIDTH HANGUL LETTER NIEUN HIEUH;;;;-FFA7;HALFWIDTH HANGUL LETTER TIKEUT;Lo;0;L;<narrow> 3137;;;;N;HALFWIDTH HANGUL LETTER DIGEUD;;;;-FFA8;HALFWIDTH HANGUL LETTER SSANGTIKEUT;Lo;0;L;<narrow> 3138;;;;N;HALFWIDTH HANGUL LETTER SSANG DIGEUD;;;;-FFA9;HALFWIDTH HANGUL LETTER RIEUL;Lo;0;L;<narrow> 3139;;;;N;HALFWIDTH HANGUL LETTER LIEUL;;;;-FFAA;HALFWIDTH HANGUL LETTER RIEUL-KIYEOK;Lo;0;L;<narrow> 313A;;;;N;HALFWIDTH HANGUL LETTER LIEUL GIYEOG;;;;-FFAB;HALFWIDTH HANGUL LETTER RIEUL-MIEUM;Lo;0;L;<narrow> 313B;;;;N;HALFWIDTH HANGUL LETTER LIEUL MIEUM;;;;-FFAC;HALFWIDTH HANGUL LETTER RIEUL-PIEUP;Lo;0;L;<narrow> 313C;;;;N;HALFWIDTH HANGUL LETTER LIEUL BIEUB;;;;-FFAD;HALFWIDTH HANGUL LETTER RIEUL-SIOS;Lo;0;L;<narrow> 313D;;;;N;HALFWIDTH HANGUL LETTER LIEUL SIOS;;;;-FFAE;HALFWIDTH HANGUL LETTER RIEUL-THIEUTH;Lo;0;L;<narrow> 313E;;;;N;HALFWIDTH HANGUL LETTER LIEUL TIEUT;;;;-FFAF;HALFWIDTH HANGUL LETTER RIEUL-PHIEUPH;Lo;0;L;<narrow> 313F;;;;N;HALFWIDTH HANGUL LETTER LIEUL PIEUP;;;;-FFB0;HALFWIDTH HANGUL LETTER RIEUL-HIEUH;Lo;0;L;<narrow> 3140;;;;N;HALFWIDTH HANGUL LETTER LIEUL HIEUH;;;;-FFB1;HALFWIDTH HANGUL LETTER MIEUM;Lo;0;L;<narrow> 3141;;;;N;;;;;-FFB2;HALFWIDTH HANGUL LETTER PIEUP;Lo;0;L;<narrow> 3142;;;;N;HALFWIDTH HANGUL LETTER BIEUB;;;;-FFB3;HALFWIDTH HANGUL LETTER SSANGPIEUP;Lo;0;L;<narrow> 3143;;;;N;HALFWIDTH HANGUL LETTER SSANG BIEUB;;;;-FFB4;HALFWIDTH HANGUL LETTER PIEUP-SIOS;Lo;0;L;<narrow> 3144;;;;N;HALFWIDTH HANGUL LETTER BIEUB SIOS;;;;-FFB5;HALFWIDTH HANGUL LETTER SIOS;Lo;0;L;<narrow> 3145;;;;N;;;;;-FFB6;HALFWIDTH HANGUL LETTER SSANGSIOS;Lo;0;L;<narrow> 3146;;;;N;HALFWIDTH HANGUL LETTER SSANG SIOS;;;;-FFB7;HALFWIDTH HANGUL LETTER IEUNG;Lo;0;L;<narrow> 3147;;;;N;;;;;-FFB8;HALFWIDTH HANGUL LETTER CIEUC;Lo;0;L;<narrow> 3148;;;;N;HALFWIDTH HANGUL LETTER JIEUJ;;;;-FFB9;HALFWIDTH HANGUL LETTER SSANGCIEUC;Lo;0;L;<narrow> 3149;;;;N;HALFWIDTH HANGUL LETTER SSANG JIEUJ;;;;-FFBA;HALFWIDTH HANGUL LETTER CHIEUCH;Lo;0;L;<narrow> 314A;;;;N;HALFWIDTH HANGUL LETTER CIEUC;;;;-FFBB;HALFWIDTH HANGUL LETTER KHIEUKH;Lo;0;L;<narrow> 314B;;;;N;HALFWIDTH HANGUL LETTER KIYEOK;;;;-FFBC;HALFWIDTH HANGUL LETTER THIEUTH;Lo;0;L;<narrow> 314C;;;;N;HALFWIDTH HANGUL LETTER TIEUT;;;;-FFBD;HALFWIDTH HANGUL LETTER PHIEUPH;Lo;0;L;<narrow> 314D;;;;N;HALFWIDTH HANGUL LETTER PIEUP;;;;-FFBE;HALFWIDTH HANGUL LETTER HIEUH;Lo;0;L;<narrow> 314E;;;;N;;;;;-FFC2;HALFWIDTH HANGUL LETTER A;Lo;0;L;<narrow> 314F;;;;N;;;;;-FFC3;HALFWIDTH HANGUL LETTER AE;Lo;0;L;<narrow> 3150;;;;N;;;;;-FFC4;HALFWIDTH HANGUL LETTER YA;Lo;0;L;<narrow> 3151;;;;N;;;;;-FFC5;HALFWIDTH HANGUL LETTER YAE;Lo;0;L;<narrow> 3152;;;;N;;;;;-FFC6;HALFWIDTH HANGUL LETTER EO;Lo;0;L;<narrow> 3153;;;;N;;;;;-FFC7;HALFWIDTH HANGUL LETTER E;Lo;0;L;<narrow> 3154;;;;N;;;;;-FFCA;HALFWIDTH HANGUL LETTER YEO;Lo;0;L;<narrow> 3155;;;;N;;;;;-FFCB;HALFWIDTH HANGUL LETTER YE;Lo;0;L;<narrow> 3156;;;;N;;;;;-FFCC;HALFWIDTH HANGUL LETTER O;Lo;0;L;<narrow> 3157;;;;N;;;;;-FFCD;HALFWIDTH HANGUL LETTER WA;Lo;0;L;<narrow> 3158;;;;N;;;;;-FFCE;HALFWIDTH HANGUL LETTER WAE;Lo;0;L;<narrow> 3159;;;;N;;;;;-FFCF;HALFWIDTH HANGUL LETTER OE;Lo;0;L;<narrow> 315A;;;;N;;;;;-FFD2;HALFWIDTH HANGUL LETTER YO;Lo;0;L;<narrow> 315B;;;;N;;;;;-FFD3;HALFWIDTH HANGUL LETTER U;Lo;0;L;<narrow> 315C;;;;N;;;;;-FFD4;HALFWIDTH HANGUL LETTER WEO;Lo;0;L;<narrow> 315D;;;;N;;;;;-FFD5;HALFWIDTH HANGUL LETTER WE;Lo;0;L;<narrow> 315E;;;;N;;;;;-FFD6;HALFWIDTH HANGUL LETTER WI;Lo;0;L;<narrow> 315F;;;;N;;;;;-FFD7;HALFWIDTH HANGUL LETTER YU;Lo;0;L;<narrow> 3160;;;;N;;;;;-FFDA;HALFWIDTH HANGUL LETTER EU;Lo;0;L;<narrow> 3161;;;;N;;;;;-FFDB;HALFWIDTH HANGUL LETTER YI;Lo;0;L;<narrow> 3162;;;;N;;;;;-FFDC;HALFWIDTH HANGUL LETTER I;Lo;0;L;<narrow> 3163;;;;N;;;;;-FFE0;FULLWIDTH CENT SIGN;Sc;0;ET;<wide> 00A2;;;;N;;;;;-FFE1;FULLWIDTH POUND SIGN;Sc;0;ET;<wide> 00A3;;;;N;;;;;-FFE2;FULLWIDTH NOT SIGN;Sm;0;ON;<wide> 00AC;;;;N;;;;;-FFE3;FULLWIDTH MACRON;Sk;0;ON;<wide> 00AF;;;;N;FULLWIDTH SPACING MACRON;;;;-FFE4;FULLWIDTH BROKEN BAR;So;0;ON;<wide> 00A6;;;;N;FULLWIDTH BROKEN VERTICAL BAR;;;;-FFE5;FULLWIDTH YEN SIGN;Sc;0;ET;<wide> 00A5;;;;N;;;;;-FFE6;FULLWIDTH WON SIGN;Sc;0;ET;<wide> 20A9;;;;N;;;;;-FFE8;HALFWIDTH FORMS LIGHT VERTICAL;So;0;ON;<narrow> 2502;;;;N;;;;;-FFE9;HALFWIDTH LEFTWARDS ARROW;Sm;0;ON;<narrow> 2190;;;;N;;;;;-FFEA;HALFWIDTH UPWARDS ARROW;Sm;0;ON;<narrow> 2191;;;;N;;;;;-FFEB;HALFWIDTH RIGHTWARDS ARROW;Sm;0;ON;<narrow> 2192;;;;N;;;;;-FFEC;HALFWIDTH DOWNWARDS ARROW;Sm;0;ON;<narrow> 2193;;;;N;;;;;-FFED;HALFWIDTH BLACK SQUARE;So;0;ON;<narrow> 25A0;;;;N;;;;;-FFEE;HALFWIDTH WHITE CIRCLE;So;0;ON;<narrow> 25CB;;;;N;;;;;-FFF9;INTERLINEAR ANNOTATION ANCHOR;Cf;0;ON;;;;;N;;;;;-FFFA;INTERLINEAR ANNOTATION SEPARATOR;Cf;0;ON;;;;;N;;;;;-FFFB;INTERLINEAR ANNOTATION TERMINATOR;Cf;0;ON;;;;;N;;;;;-FFFC;OBJECT REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;;-FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;;-10000;LINEAR B SYLLABLE B008 A;Lo;0;L;;;;;N;;;;;-10001;LINEAR B SYLLABLE B038 E;Lo;0;L;;;;;N;;;;;-10002;LINEAR B SYLLABLE B028 I;Lo;0;L;;;;;N;;;;;-10003;LINEAR B SYLLABLE B061 O;Lo;0;L;;;;;N;;;;;-10004;LINEAR B SYLLABLE B010 U;Lo;0;L;;;;;N;;;;;-10005;LINEAR B SYLLABLE B001 DA;Lo;0;L;;;;;N;;;;;-10006;LINEAR B SYLLABLE B045 DE;Lo;0;L;;;;;N;;;;;-10007;LINEAR B SYLLABLE B007 DI;Lo;0;L;;;;;N;;;;;-10008;LINEAR B SYLLABLE B014 DO;Lo;0;L;;;;;N;;;;;-10009;LINEAR B SYLLABLE B051 DU;Lo;0;L;;;;;N;;;;;-1000A;LINEAR B SYLLABLE B057 JA;Lo;0;L;;;;;N;;;;;-1000B;LINEAR B SYLLABLE B046 JE;Lo;0;L;;;;;N;;;;;-1000D;LINEAR B SYLLABLE B036 JO;Lo;0;L;;;;;N;;;;;-1000E;LINEAR B SYLLABLE B065 JU;Lo;0;L;;;;;N;;;;;-1000F;LINEAR B SYLLABLE B077 KA;Lo;0;L;;;;;N;;;;;-10010;LINEAR B SYLLABLE B044 KE;Lo;0;L;;;;;N;;;;;-10011;LINEAR B SYLLABLE B067 KI;Lo;0;L;;;;;N;;;;;-10012;LINEAR B SYLLABLE B070 KO;Lo;0;L;;;;;N;;;;;-10013;LINEAR B SYLLABLE B081 KU;Lo;0;L;;;;;N;;;;;-10014;LINEAR B SYLLABLE B080 MA;Lo;0;L;;;;;N;;;;;-10015;LINEAR B SYLLABLE B013 ME;Lo;0;L;;;;;N;;;;;-10016;LINEAR B SYLLABLE B073 MI;Lo;0;L;;;;;N;;;;;-10017;LINEAR B SYLLABLE B015 MO;Lo;0;L;;;;;N;;;;;-10018;LINEAR B SYLLABLE B023 MU;Lo;0;L;;;;;N;;;;;-10019;LINEAR B SYLLABLE B006 NA;Lo;0;L;;;;;N;;;;;-1001A;LINEAR B SYLLABLE B024 NE;Lo;0;L;;;;;N;;;;;-1001B;LINEAR B SYLLABLE B030 NI;Lo;0;L;;;;;N;;;;;-1001C;LINEAR B SYLLABLE B052 NO;Lo;0;L;;;;;N;;;;;-1001D;LINEAR B SYLLABLE B055 NU;Lo;0;L;;;;;N;;;;;-1001E;LINEAR B SYLLABLE B003 PA;Lo;0;L;;;;;N;;;;;-1001F;LINEAR B SYLLABLE B072 PE;Lo;0;L;;;;;N;;;;;-10020;LINEAR B SYLLABLE B039 PI;Lo;0;L;;;;;N;;;;;-10021;LINEAR B SYLLABLE B011 PO;Lo;0;L;;;;;N;;;;;-10022;LINEAR B SYLLABLE B050 PU;Lo;0;L;;;;;N;;;;;-10023;LINEAR B SYLLABLE B016 QA;Lo;0;L;;;;;N;;;;;-10024;LINEAR B SYLLABLE B078 QE;Lo;0;L;;;;;N;;;;;-10025;LINEAR B SYLLABLE B021 QI;Lo;0;L;;;;;N;;;;;-10026;LINEAR B SYLLABLE B032 QO;Lo;0;L;;;;;N;;;;;-10028;LINEAR B SYLLABLE B060 RA;Lo;0;L;;;;;N;;;;;-10029;LINEAR B SYLLABLE B027 RE;Lo;0;L;;;;;N;;;;;-1002A;LINEAR B SYLLABLE B053 RI;Lo;0;L;;;;;N;;;;;-1002B;LINEAR B SYLLABLE B002 RO;Lo;0;L;;;;;N;;;;;-1002C;LINEAR B SYLLABLE B026 RU;Lo;0;L;;;;;N;;;;;-1002D;LINEAR B SYLLABLE B031 SA;Lo;0;L;;;;;N;;;;;-1002E;LINEAR B SYLLABLE B009 SE;Lo;0;L;;;;;N;;;;;-1002F;LINEAR B SYLLABLE B041 SI;Lo;0;L;;;;;N;;;;;-10030;LINEAR B SYLLABLE B012 SO;Lo;0;L;;;;;N;;;;;-10031;LINEAR B SYLLABLE B058 SU;Lo;0;L;;;;;N;;;;;-10032;LINEAR B SYLLABLE B059 TA;Lo;0;L;;;;;N;;;;;-10033;LINEAR B SYLLABLE B004 TE;Lo;0;L;;;;;N;;;;;-10034;LINEAR B SYLLABLE B037 TI;Lo;0;L;;;;;N;;;;;-10035;LINEAR B SYLLABLE B005 TO;Lo;0;L;;;;;N;;;;;-10036;LINEAR B SYLLABLE B069 TU;Lo;0;L;;;;;N;;;;;-10037;LINEAR B SYLLABLE B054 WA;Lo;0;L;;;;;N;;;;;-10038;LINEAR B SYLLABLE B075 WE;Lo;0;L;;;;;N;;;;;-10039;LINEAR B SYLLABLE B040 WI;Lo;0;L;;;;;N;;;;;-1003A;LINEAR B SYLLABLE B042 WO;Lo;0;L;;;;;N;;;;;-1003C;LINEAR B SYLLABLE B017 ZA;Lo;0;L;;;;;N;;;;;-1003D;LINEAR B SYLLABLE B074 ZE;Lo;0;L;;;;;N;;;;;-1003F;LINEAR B SYLLABLE B020 ZO;Lo;0;L;;;;;N;;;;;-10040;LINEAR B SYLLABLE B025 A2;Lo;0;L;;;;;N;;;;;-10041;LINEAR B SYLLABLE B043 A3;Lo;0;L;;;;;N;;;;;-10042;LINEAR B SYLLABLE B085 AU;Lo;0;L;;;;;N;;;;;-10043;LINEAR B SYLLABLE B071 DWE;Lo;0;L;;;;;N;;;;;-10044;LINEAR B SYLLABLE B090 DWO;Lo;0;L;;;;;N;;;;;-10045;LINEAR B SYLLABLE B048 NWA;Lo;0;L;;;;;N;;;;;-10046;LINEAR B SYLLABLE B029 PU2;Lo;0;L;;;;;N;;;;;-10047;LINEAR B SYLLABLE B062 PTE;Lo;0;L;;;;;N;;;;;-10048;LINEAR B SYLLABLE B076 RA2;Lo;0;L;;;;;N;;;;;-10049;LINEAR B SYLLABLE B033 RA3;Lo;0;L;;;;;N;;;;;-1004A;LINEAR B SYLLABLE B068 RO2;Lo;0;L;;;;;N;;;;;-1004B;LINEAR B SYLLABLE B066 TA2;Lo;0;L;;;;;N;;;;;-1004C;LINEAR B SYLLABLE B087 TWE;Lo;0;L;;;;;N;;;;;-1004D;LINEAR B SYLLABLE B091 TWO;Lo;0;L;;;;;N;;;;;-10050;LINEAR B SYMBOL B018;Lo;0;L;;;;;N;;;;;-10051;LINEAR B SYMBOL B019;Lo;0;L;;;;;N;;;;;-10052;LINEAR B SYMBOL B022;Lo;0;L;;;;;N;;;;;-10053;LINEAR B SYMBOL B034;Lo;0;L;;;;;N;;;;;-10054;LINEAR B SYMBOL B047;Lo;0;L;;;;;N;;;;;-10055;LINEAR B SYMBOL B049;Lo;0;L;;;;;N;;;;;-10056;LINEAR B SYMBOL B056;Lo;0;L;;;;;N;;;;;-10057;LINEAR B SYMBOL B063;Lo;0;L;;;;;N;;;;;-10058;LINEAR B SYMBOL B064;Lo;0;L;;;;;N;;;;;-10059;LINEAR B SYMBOL B079;Lo;0;L;;;;;N;;;;;-1005A;LINEAR B SYMBOL B082;Lo;0;L;;;;;N;;;;;-1005B;LINEAR B SYMBOL B083;Lo;0;L;;;;;N;;;;;-1005C;LINEAR B SYMBOL B086;Lo;0;L;;;;;N;;;;;-1005D;LINEAR B SYMBOL B089;Lo;0;L;;;;;N;;;;;-10080;LINEAR B IDEOGRAM B100 MAN;Lo;0;L;;;;;N;;;;;-10081;LINEAR B IDEOGRAM B102 WOMAN;Lo;0;L;;;;;N;;;;;-10082;LINEAR B IDEOGRAM B104 DEER;Lo;0;L;;;;;N;;;;;-10083;LINEAR B IDEOGRAM B105 EQUID;Lo;0;L;;;;;N;;;;;-10084;LINEAR B IDEOGRAM B105F MARE;Lo;0;L;;;;;N;;;;;-10085;LINEAR B IDEOGRAM B105M STALLION;Lo;0;L;;;;;N;;;;;-10086;LINEAR B IDEOGRAM B106F EWE;Lo;0;L;;;;;N;;;;;-10087;LINEAR B IDEOGRAM B106M RAM;Lo;0;L;;;;;N;;;;;-10088;LINEAR B IDEOGRAM B107F SHE-GOAT;Lo;0;L;;;;;N;;;;;-10089;LINEAR B IDEOGRAM B107M HE-GOAT;Lo;0;L;;;;;N;;;;;-1008A;LINEAR B IDEOGRAM B108F SOW;Lo;0;L;;;;;N;;;;;-1008B;LINEAR B IDEOGRAM B108M BOAR;Lo;0;L;;;;;N;;;;;-1008C;LINEAR B IDEOGRAM B109F COW;Lo;0;L;;;;;N;;;;;-1008D;LINEAR B IDEOGRAM B109M BULL;Lo;0;L;;;;;N;;;;;-1008E;LINEAR B IDEOGRAM B120 WHEAT;Lo;0;L;;;;;N;;;;;-1008F;LINEAR B IDEOGRAM B121 BARLEY;Lo;0;L;;;;;N;;;;;-10090;LINEAR B IDEOGRAM B122 OLIVE;Lo;0;L;;;;;N;;;;;-10091;LINEAR B IDEOGRAM B123 SPICE;Lo;0;L;;;;;N;;;;;-10092;LINEAR B IDEOGRAM B125 CYPERUS;Lo;0;L;;;;;N;;;;;-10093;LINEAR B MONOGRAM B127 KAPO;Lo;0;L;;;;;N;;;;;-10094;LINEAR B MONOGRAM B128 KANAKO;Lo;0;L;;;;;N;;;;;-10095;LINEAR B IDEOGRAM B130 OIL;Lo;0;L;;;;;N;;;;;-10096;LINEAR B IDEOGRAM B131 WINE;Lo;0;L;;;;;N;;;;;-10097;LINEAR B IDEOGRAM B132;Lo;0;L;;;;;N;;;;;-10098;LINEAR B MONOGRAM B133 AREPA;Lo;0;L;;;;;N;;;;;-10099;LINEAR B MONOGRAM B135 MERI;Lo;0;L;;;;;N;;;;;-1009A;LINEAR B IDEOGRAM B140 BRONZE;Lo;0;L;;;;;N;;;;;-1009B;LINEAR B IDEOGRAM B141 GOLD;Lo;0;L;;;;;N;;;;;-1009C;LINEAR B IDEOGRAM B142;Lo;0;L;;;;;N;;;;;-1009D;LINEAR B IDEOGRAM B145 WOOL;Lo;0;L;;;;;N;;;;;-1009E;LINEAR B IDEOGRAM B146;Lo;0;L;;;;;N;;;;;-1009F;LINEAR B IDEOGRAM B150;Lo;0;L;;;;;N;;;;;-100A0;LINEAR B IDEOGRAM B151 HORN;Lo;0;L;;;;;N;;;;;-100A1;LINEAR B IDEOGRAM B152;Lo;0;L;;;;;N;;;;;-100A2;LINEAR B IDEOGRAM B153;Lo;0;L;;;;;N;;;;;-100A3;LINEAR B IDEOGRAM B154;Lo;0;L;;;;;N;;;;;-100A4;LINEAR B MONOGRAM B156 TURO2;Lo;0;L;;;;;N;;;;;-100A5;LINEAR B IDEOGRAM B157;Lo;0;L;;;;;N;;;;;-100A6;LINEAR B IDEOGRAM B158;Lo;0;L;;;;;N;;;;;-100A7;LINEAR B IDEOGRAM B159 CLOTH;Lo;0;L;;;;;N;;;;;-100A8;LINEAR B IDEOGRAM B160;Lo;0;L;;;;;N;;;;;-100A9;LINEAR B IDEOGRAM B161;Lo;0;L;;;;;N;;;;;-100AA;LINEAR B IDEOGRAM B162 GARMENT;Lo;0;L;;;;;N;;;;;-100AB;LINEAR B IDEOGRAM B163 ARMOUR;Lo;0;L;;;;;N;;;;;-100AC;LINEAR B IDEOGRAM B164;Lo;0;L;;;;;N;;;;;-100AD;LINEAR B IDEOGRAM B165;Lo;0;L;;;;;N;;;;;-100AE;LINEAR B IDEOGRAM B166;Lo;0;L;;;;;N;;;;;-100AF;LINEAR B IDEOGRAM B167;Lo;0;L;;;;;N;;;;;-100B0;LINEAR B IDEOGRAM B168;Lo;0;L;;;;;N;;;;;-100B1;LINEAR B IDEOGRAM B169;Lo;0;L;;;;;N;;;;;-100B2;LINEAR B IDEOGRAM B170;Lo;0;L;;;;;N;;;;;-100B3;LINEAR B IDEOGRAM B171;Lo;0;L;;;;;N;;;;;-100B4;LINEAR B IDEOGRAM B172;Lo;0;L;;;;;N;;;;;-100B5;LINEAR B IDEOGRAM B173 MONTH;Lo;0;L;;;;;N;;;;;-100B6;LINEAR B IDEOGRAM B174;Lo;0;L;;;;;N;;;;;-100B7;LINEAR B IDEOGRAM B176 TREE;Lo;0;L;;;;;N;;;;;-100B8;LINEAR B IDEOGRAM B177;Lo;0;L;;;;;N;;;;;-100B9;LINEAR B IDEOGRAM B178;Lo;0;L;;;;;N;;;;;-100BA;LINEAR B IDEOGRAM B179;Lo;0;L;;;;;N;;;;;-100BB;LINEAR B IDEOGRAM B180;Lo;0;L;;;;;N;;;;;-100BC;LINEAR B IDEOGRAM B181;Lo;0;L;;;;;N;;;;;-100BD;LINEAR B IDEOGRAM B182;Lo;0;L;;;;;N;;;;;-100BE;LINEAR B IDEOGRAM B183;Lo;0;L;;;;;N;;;;;-100BF;LINEAR B IDEOGRAM B184;Lo;0;L;;;;;N;;;;;-100C0;LINEAR B IDEOGRAM B185;Lo;0;L;;;;;N;;;;;-100C1;LINEAR B IDEOGRAM B189;Lo;0;L;;;;;N;;;;;-100C2;LINEAR B IDEOGRAM B190;Lo;0;L;;;;;N;;;;;-100C3;LINEAR B IDEOGRAM B191 HELMET;Lo;0;L;;;;;N;;;;;-100C4;LINEAR B IDEOGRAM B220 FOOTSTOOL;Lo;0;L;;;;;N;;;;;-100C5;LINEAR B IDEOGRAM B225 BATHTUB;Lo;0;L;;;;;N;;;;;-100C6;LINEAR B IDEOGRAM B230 SPEAR;Lo;0;L;;;;;N;;;;;-100C7;LINEAR B IDEOGRAM B231 ARROW;Lo;0;L;;;;;N;;;;;-100C8;LINEAR B IDEOGRAM B232;Lo;0;L;;;;;N;;;;;-100C9;LINEAR B IDEOGRAM B233 SWORD;Lo;0;L;;;;;N;;;;;-100CA;LINEAR B IDEOGRAM B234;Lo;0;L;;;;;N;;;;;-100CB;LINEAR B IDEOGRAM B236;Lo;0;L;;;;;N;;;;;-100CC;LINEAR B IDEOGRAM B240 WHEELED CHARIOT;Lo;0;L;;;;;N;;;;;-100CD;LINEAR B IDEOGRAM B241 CHARIOT;Lo;0;L;;;;;N;;;;;-100CE;LINEAR B IDEOGRAM B242 CHARIOT FRAME;Lo;0;L;;;;;N;;;;;-100CF;LINEAR B IDEOGRAM B243 WHEEL;Lo;0;L;;;;;N;;;;;-100D0;LINEAR B IDEOGRAM B245;Lo;0;L;;;;;N;;;;;-100D1;LINEAR B IDEOGRAM B246;Lo;0;L;;;;;N;;;;;-100D2;LINEAR B MONOGRAM B247 DIPTE;Lo;0;L;;;;;N;;;;;-100D3;LINEAR B IDEOGRAM B248;Lo;0;L;;;;;N;;;;;-100D4;LINEAR B IDEOGRAM B249;Lo;0;L;;;;;N;;;;;-100D5;LINEAR B IDEOGRAM B251;Lo;0;L;;;;;N;;;;;-100D6;LINEAR B IDEOGRAM B252;Lo;0;L;;;;;N;;;;;-100D7;LINEAR B IDEOGRAM B253;Lo;0;L;;;;;N;;;;;-100D8;LINEAR B IDEOGRAM B254 DART;Lo;0;L;;;;;N;;;;;-100D9;LINEAR B IDEOGRAM B255;Lo;0;L;;;;;N;;;;;-100DA;LINEAR B IDEOGRAM B256;Lo;0;L;;;;;N;;;;;-100DB;LINEAR B IDEOGRAM B257;Lo;0;L;;;;;N;;;;;-100DC;LINEAR B IDEOGRAM B258;Lo;0;L;;;;;N;;;;;-100DD;LINEAR B IDEOGRAM B259;Lo;0;L;;;;;N;;;;;-100DE;LINEAR B IDEOGRAM VESSEL B155;Lo;0;L;;;;;N;;;;;-100DF;LINEAR B IDEOGRAM VESSEL B200;Lo;0;L;;;;;N;;;;;-100E0;LINEAR B IDEOGRAM VESSEL B201;Lo;0;L;;;;;N;;;;;-100E1;LINEAR B IDEOGRAM VESSEL B202;Lo;0;L;;;;;N;;;;;-100E2;LINEAR B IDEOGRAM VESSEL B203;Lo;0;L;;;;;N;;;;;-100E3;LINEAR B IDEOGRAM VESSEL B204;Lo;0;L;;;;;N;;;;;-100E4;LINEAR B IDEOGRAM VESSEL B205;Lo;0;L;;;;;N;;;;;-100E5;LINEAR B IDEOGRAM VESSEL B206;Lo;0;L;;;;;N;;;;;-100E6;LINEAR B IDEOGRAM VESSEL B207;Lo;0;L;;;;;N;;;;;-100E7;LINEAR B IDEOGRAM VESSEL B208;Lo;0;L;;;;;N;;;;;-100E8;LINEAR B IDEOGRAM VESSEL B209;Lo;0;L;;;;;N;;;;;-100E9;LINEAR B IDEOGRAM VESSEL B210;Lo;0;L;;;;;N;;;;;-100EA;LINEAR B IDEOGRAM VESSEL B211;Lo;0;L;;;;;N;;;;;-100EB;LINEAR B IDEOGRAM VESSEL B212;Lo;0;L;;;;;N;;;;;-100EC;LINEAR B IDEOGRAM VESSEL B213;Lo;0;L;;;;;N;;;;;-100ED;LINEAR B IDEOGRAM VESSEL B214;Lo;0;L;;;;;N;;;;;-100EE;LINEAR B IDEOGRAM VESSEL B215;Lo;0;L;;;;;N;;;;;-100EF;LINEAR B IDEOGRAM VESSEL B216;Lo;0;L;;;;;N;;;;;-100F0;LINEAR B IDEOGRAM VESSEL B217;Lo;0;L;;;;;N;;;;;-100F1;LINEAR B IDEOGRAM VESSEL B218;Lo;0;L;;;;;N;;;;;-100F2;LINEAR B IDEOGRAM VESSEL B219;Lo;0;L;;;;;N;;;;;-100F3;LINEAR B IDEOGRAM VESSEL B221;Lo;0;L;;;;;N;;;;;-100F4;LINEAR B IDEOGRAM VESSEL B222;Lo;0;L;;;;;N;;;;;-100F5;LINEAR B IDEOGRAM VESSEL B226;Lo;0;L;;;;;N;;;;;-100F6;LINEAR B IDEOGRAM VESSEL B227;Lo;0;L;;;;;N;;;;;-100F7;LINEAR B IDEOGRAM VESSEL B228;Lo;0;L;;;;;N;;;;;-100F8;LINEAR B IDEOGRAM VESSEL B229;Lo;0;L;;;;;N;;;;;-100F9;LINEAR B IDEOGRAM VESSEL B250;Lo;0;L;;;;;N;;;;;-100FA;LINEAR B IDEOGRAM VESSEL B305;Lo;0;L;;;;;N;;;;;-10100;AEGEAN WORD SEPARATOR LINE;Po;0;L;;;;;N;;;;;-10101;AEGEAN WORD SEPARATOR DOT;Po;0;ON;;;;;N;;;;;-10102;AEGEAN CHECK MARK;Po;0;L;;;;;N;;;;;-10107;AEGEAN NUMBER ONE;No;0;L;;;;1;N;;;;;-10108;AEGEAN NUMBER TWO;No;0;L;;;;2;N;;;;;-10109;AEGEAN NUMBER THREE;No;0;L;;;;3;N;;;;;-1010A;AEGEAN NUMBER FOUR;No;0;L;;;;4;N;;;;;-1010B;AEGEAN NUMBER FIVE;No;0;L;;;;5;N;;;;;-1010C;AEGEAN NUMBER SIX;No;0;L;;;;6;N;;;;;-1010D;AEGEAN NUMBER SEVEN;No;0;L;;;;7;N;;;;;-1010E;AEGEAN NUMBER EIGHT;No;0;L;;;;8;N;;;;;-1010F;AEGEAN NUMBER NINE;No;0;L;;;;9;N;;;;;-10110;AEGEAN NUMBER TEN;No;0;L;;;;10;N;;;;;-10111;AEGEAN NUMBER TWENTY;No;0;L;;;;20;N;;;;;-10112;AEGEAN NUMBER THIRTY;No;0;L;;;;30;N;;;;;-10113;AEGEAN NUMBER FORTY;No;0;L;;;;40;N;;;;;-10114;AEGEAN NUMBER FIFTY;No;0;L;;;;50;N;;;;;-10115;AEGEAN NUMBER SIXTY;No;0;L;;;;60;N;;;;;-10116;AEGEAN NUMBER SEVENTY;No;0;L;;;;70;N;;;;;-10117;AEGEAN NUMBER EIGHTY;No;0;L;;;;80;N;;;;;-10118;AEGEAN NUMBER NINETY;No;0;L;;;;90;N;;;;;-10119;AEGEAN NUMBER ONE HUNDRED;No;0;L;;;;100;N;;;;;-1011A;AEGEAN NUMBER TWO HUNDRED;No;0;L;;;;200;N;;;;;-1011B;AEGEAN NUMBER THREE HUNDRED;No;0;L;;;;300;N;;;;;-1011C;AEGEAN NUMBER FOUR HUNDRED;No;0;L;;;;400;N;;;;;-1011D;AEGEAN NUMBER FIVE HUNDRED;No;0;L;;;;500;N;;;;;-1011E;AEGEAN NUMBER SIX HUNDRED;No;0;L;;;;600;N;;;;;-1011F;AEGEAN NUMBER SEVEN HUNDRED;No;0;L;;;;700;N;;;;;-10120;AEGEAN NUMBER EIGHT HUNDRED;No;0;L;;;;800;N;;;;;-10121;AEGEAN NUMBER NINE HUNDRED;No;0;L;;;;900;N;;;;;-10122;AEGEAN NUMBER ONE THOUSAND;No;0;L;;;;1000;N;;;;;-10123;AEGEAN NUMBER TWO THOUSAND;No;0;L;;;;2000;N;;;;;-10124;AEGEAN NUMBER THREE THOUSAND;No;0;L;;;;3000;N;;;;;-10125;AEGEAN NUMBER FOUR THOUSAND;No;0;L;;;;4000;N;;;;;-10126;AEGEAN NUMBER FIVE THOUSAND;No;0;L;;;;5000;N;;;;;-10127;AEGEAN NUMBER SIX THOUSAND;No;0;L;;;;6000;N;;;;;-10128;AEGEAN NUMBER SEVEN THOUSAND;No;0;L;;;;7000;N;;;;;-10129;AEGEAN NUMBER EIGHT THOUSAND;No;0;L;;;;8000;N;;;;;-1012A;AEGEAN NUMBER NINE THOUSAND;No;0;L;;;;9000;N;;;;;-1012B;AEGEAN NUMBER TEN THOUSAND;No;0;L;;;;10000;N;;;;;-1012C;AEGEAN NUMBER TWENTY THOUSAND;No;0;L;;;;20000;N;;;;;-1012D;AEGEAN NUMBER THIRTY THOUSAND;No;0;L;;;;30000;N;;;;;-1012E;AEGEAN NUMBER FORTY THOUSAND;No;0;L;;;;40000;N;;;;;-1012F;AEGEAN NUMBER FIFTY THOUSAND;No;0;L;;;;50000;N;;;;;-10130;AEGEAN NUMBER SIXTY THOUSAND;No;0;L;;;;60000;N;;;;;-10131;AEGEAN NUMBER SEVENTY THOUSAND;No;0;L;;;;70000;N;;;;;-10132;AEGEAN NUMBER EIGHTY THOUSAND;No;0;L;;;;80000;N;;;;;-10133;AEGEAN NUMBER NINETY THOUSAND;No;0;L;;;;90000;N;;;;;-10137;AEGEAN WEIGHT BASE UNIT;So;0;L;;;;;N;;;;;-10138;AEGEAN WEIGHT FIRST SUBUNIT;So;0;L;;;;;N;;;;;-10139;AEGEAN WEIGHT SECOND SUBUNIT;So;0;L;;;;;N;;;;;-1013A;AEGEAN WEIGHT THIRD SUBUNIT;So;0;L;;;;;N;;;;;-1013B;AEGEAN WEIGHT FOURTH SUBUNIT;So;0;L;;;;;N;;;;;-1013C;AEGEAN DRY MEASURE FIRST SUBUNIT;So;0;L;;;;;N;;;;;-1013D;AEGEAN LIQUID MEASURE FIRST SUBUNIT;So;0;L;;;;;N;;;;;-1013E;AEGEAN MEASURE SECOND SUBUNIT;So;0;L;;;;;N;;;;;-1013F;AEGEAN MEASURE THIRD SUBUNIT;So;0;L;;;;;N;;;;;-10140;GREEK ACROPHONIC ATTIC ONE QUARTER;Nl;0;ON;;;;1/4;N;;;;;-10141;GREEK ACROPHONIC ATTIC ONE HALF;Nl;0;ON;;;;1/2;N;;;;;-10142;GREEK ACROPHONIC ATTIC ONE DRACHMA;Nl;0;ON;;;;1;N;;;;;-10143;GREEK ACROPHONIC ATTIC FIVE;Nl;0;ON;;;;5;N;;;;;-10144;GREEK ACROPHONIC ATTIC FIFTY;Nl;0;ON;;;;50;N;;;;;-10145;GREEK ACROPHONIC ATTIC FIVE HUNDRED;Nl;0;ON;;;;500;N;;;;;-10146;GREEK ACROPHONIC ATTIC FIVE THOUSAND;Nl;0;ON;;;;5000;N;;;;;-10147;GREEK ACROPHONIC ATTIC FIFTY THOUSAND;Nl;0;ON;;;;50000;N;;;;;-10148;GREEK ACROPHONIC ATTIC FIVE TALENTS;Nl;0;ON;;;;5;N;;;;;-10149;GREEK ACROPHONIC ATTIC TEN TALENTS;Nl;0;ON;;;;10;N;;;;;-1014A;GREEK ACROPHONIC ATTIC FIFTY TALENTS;Nl;0;ON;;;;50;N;;;;;-1014B;GREEK ACROPHONIC ATTIC ONE HUNDRED TALENTS;Nl;0;ON;;;;100;N;;;;;-1014C;GREEK ACROPHONIC ATTIC FIVE HUNDRED TALENTS;Nl;0;ON;;;;500;N;;;;;-1014D;GREEK ACROPHONIC ATTIC ONE THOUSAND TALENTS;Nl;0;ON;;;;1000;N;;;;;-1014E;GREEK ACROPHONIC ATTIC FIVE THOUSAND TALENTS;Nl;0;ON;;;;5000;N;;;;;-1014F;GREEK ACROPHONIC ATTIC FIVE STATERS;Nl;0;ON;;;;5;N;;;;;-10150;GREEK ACROPHONIC ATTIC TEN STATERS;Nl;0;ON;;;;10;N;;;;;-10151;GREEK ACROPHONIC ATTIC FIFTY STATERS;Nl;0;ON;;;;50;N;;;;;-10152;GREEK ACROPHONIC ATTIC ONE HUNDRED STATERS;Nl;0;ON;;;;100;N;;;;;-10153;GREEK ACROPHONIC ATTIC FIVE HUNDRED STATERS;Nl;0;ON;;;;500;N;;;;;-10154;GREEK ACROPHONIC ATTIC ONE THOUSAND STATERS;Nl;0;ON;;;;1000;N;;;;;-10155;GREEK ACROPHONIC ATTIC TEN THOUSAND STATERS;Nl;0;ON;;;;10000;N;;;;;-10156;GREEK ACROPHONIC ATTIC FIFTY THOUSAND STATERS;Nl;0;ON;;;;50000;N;;;;;-10157;GREEK ACROPHONIC ATTIC TEN MNAS;Nl;0;ON;;;;10;N;;;;;-10158;GREEK ACROPHONIC HERAEUM ONE PLETHRON;Nl;0;ON;;;;1;N;;;;;-10159;GREEK ACROPHONIC THESPIAN ONE;Nl;0;ON;;;;1;N;;;;;-1015A;GREEK ACROPHONIC HERMIONIAN ONE;Nl;0;ON;;;;1;N;;;;;-1015B;GREEK ACROPHONIC EPIDAUREAN TWO;Nl;0;ON;;;;2;N;;;;;-1015C;GREEK ACROPHONIC THESPIAN TWO;Nl;0;ON;;;;2;N;;;;;-1015D;GREEK ACROPHONIC CYRENAIC TWO DRACHMAS;Nl;0;ON;;;;2;N;;;;;-1015E;GREEK ACROPHONIC EPIDAUREAN TWO DRACHMAS;Nl;0;ON;;;;2;N;;;;;-1015F;GREEK ACROPHONIC TROEZENIAN FIVE;Nl;0;ON;;;;5;N;;;;;-10160;GREEK ACROPHONIC TROEZENIAN TEN;Nl;0;ON;;;;10;N;;;;;-10161;GREEK ACROPHONIC TROEZENIAN TEN ALTERNATE FORM;Nl;0;ON;;;;10;N;;;;;-10162;GREEK ACROPHONIC HERMIONIAN TEN;Nl;0;ON;;;;10;N;;;;;-10163;GREEK ACROPHONIC MESSENIAN TEN;Nl;0;ON;;;;10;N;;;;;-10164;GREEK ACROPHONIC THESPIAN TEN;Nl;0;ON;;;;10;N;;;;;-10165;GREEK ACROPHONIC THESPIAN THIRTY;Nl;0;ON;;;;30;N;;;;;-10166;GREEK ACROPHONIC TROEZENIAN FIFTY;Nl;0;ON;;;;50;N;;;;;-10167;GREEK ACROPHONIC TROEZENIAN FIFTY ALTERNATE FORM;Nl;0;ON;;;;50;N;;;;;-10168;GREEK ACROPHONIC HERMIONIAN FIFTY;Nl;0;ON;;;;50;N;;;;;-10169;GREEK ACROPHONIC THESPIAN FIFTY;Nl;0;ON;;;;50;N;;;;;-1016A;GREEK ACROPHONIC THESPIAN ONE HUNDRED;Nl;0;ON;;;;100;N;;;;;-1016B;GREEK ACROPHONIC THESPIAN THREE HUNDRED;Nl;0;ON;;;;300;N;;;;;-1016C;GREEK ACROPHONIC EPIDAUREAN FIVE HUNDRED;Nl;0;ON;;;;500;N;;;;;-1016D;GREEK ACROPHONIC TROEZENIAN FIVE HUNDRED;Nl;0;ON;;;;500;N;;;;;-1016E;GREEK ACROPHONIC THESPIAN FIVE HUNDRED;Nl;0;ON;;;;500;N;;;;;-1016F;GREEK ACROPHONIC CARYSTIAN FIVE HUNDRED;Nl;0;ON;;;;500;N;;;;;-10170;GREEK ACROPHONIC NAXIAN FIVE HUNDRED;Nl;0;ON;;;;500;N;;;;;-10171;GREEK ACROPHONIC THESPIAN ONE THOUSAND;Nl;0;ON;;;;1000;N;;;;;-10172;GREEK ACROPHONIC THESPIAN FIVE THOUSAND;Nl;0;ON;;;;5000;N;;;;;-10173;GREEK ACROPHONIC DELPHIC FIVE MNAS;Nl;0;ON;;;;5;N;;;;;-10174;GREEK ACROPHONIC STRATIAN FIFTY MNAS;Nl;0;ON;;;;50;N;;;;;-10175;GREEK ONE HALF SIGN;No;0;ON;;;;1/2;N;;;;;-10176;GREEK ONE HALF SIGN ALTERNATE FORM;No;0;ON;;;;1/2;N;;;;;-10177;GREEK TWO THIRDS SIGN;No;0;ON;;;;2/3;N;;;;;-10178;GREEK THREE QUARTERS SIGN;No;0;ON;;;;3/4;N;;;;;-10179;GREEK YEAR SIGN;So;0;ON;;;;;N;;;;;-1017A;GREEK TALENT SIGN;So;0;ON;;;;;N;;;;;-1017B;GREEK DRACHMA SIGN;So;0;ON;;;;;N;;;;;-1017C;GREEK OBOL SIGN;So;0;ON;;;;;N;;;;;-1017D;GREEK TWO OBOLS SIGN;So;0;ON;;;;;N;;;;;-1017E;GREEK THREE OBOLS SIGN;So;0;ON;;;;;N;;;;;-1017F;GREEK FOUR OBOLS SIGN;So;0;ON;;;;;N;;;;;-10180;GREEK FIVE OBOLS SIGN;So;0;ON;;;;;N;;;;;-10181;GREEK METRETES SIGN;So;0;ON;;;;;N;;;;;-10182;GREEK KYATHOS BASE SIGN;So;0;ON;;;;;N;;;;;-10183;GREEK LITRA SIGN;So;0;ON;;;;;N;;;;;-10184;GREEK OUNKIA SIGN;So;0;ON;;;;;N;;;;;-10185;GREEK XESTES SIGN;So;0;ON;;;;;N;;;;;-10186;GREEK ARTABE SIGN;So;0;ON;;;;;N;;;;;-10187;GREEK AROURA SIGN;So;0;ON;;;;;N;;;;;-10188;GREEK GRAMMA SIGN;So;0;ON;;;;;N;;;;;-10189;GREEK TRYBLION BASE SIGN;So;0;ON;;;;;N;;;;;-1018A;GREEK ZERO SIGN;No;0;ON;;;;0;N;;;;;-1018B;GREEK ONE QUARTER SIGN;No;0;ON;;;;1/4;N;;;;;-1018C;GREEK SINUSOID SIGN;So;0;ON;;;;;N;;;;;-10190;ROMAN SEXTANS SIGN;So;0;ON;;;;;N;;;;;-10191;ROMAN UNCIA SIGN;So;0;ON;;;;;N;;;;;-10192;ROMAN SEMUNCIA SIGN;So;0;ON;;;;;N;;;;;-10193;ROMAN SEXTULA SIGN;So;0;ON;;;;;N;;;;;-10194;ROMAN DIMIDIA SEXTULA SIGN;So;0;ON;;;;;N;;;;;-10195;ROMAN SILIQUA SIGN;So;0;ON;;;;;N;;;;;-10196;ROMAN DENARIUS SIGN;So;0;ON;;;;;N;;;;;-10197;ROMAN QUINARIUS SIGN;So;0;ON;;;;;N;;;;;-10198;ROMAN SESTERTIUS SIGN;So;0;ON;;;;;N;;;;;-10199;ROMAN DUPONDIUS SIGN;So;0;ON;;;;;N;;;;;-1019A;ROMAN AS SIGN;So;0;ON;;;;;N;;;;;-1019B;ROMAN CENTURIAL SIGN;So;0;ON;;;;;N;;;;;-101A0;GREEK SYMBOL TAU RHO;So;0;ON;;;;;N;;;;;-101D0;PHAISTOS DISC SIGN PEDESTRIAN;So;0;L;;;;;N;;;;;-101D1;PHAISTOS DISC SIGN PLUMED HEAD;So;0;L;;;;;N;;;;;-101D2;PHAISTOS DISC SIGN TATTOOED HEAD;So;0;L;;;;;N;;;;;-101D3;PHAISTOS DISC SIGN CAPTIVE;So;0;L;;;;;N;;;;;-101D4;PHAISTOS DISC SIGN CHILD;So;0;L;;;;;N;;;;;-101D5;PHAISTOS DISC SIGN WOMAN;So;0;L;;;;;N;;;;;-101D6;PHAISTOS DISC SIGN HELMET;So;0;L;;;;;N;;;;;-101D7;PHAISTOS DISC SIGN GAUNTLET;So;0;L;;;;;N;;;;;-101D8;PHAISTOS DISC SIGN TIARA;So;0;L;;;;;N;;;;;-101D9;PHAISTOS DISC SIGN ARROW;So;0;L;;;;;N;;;;;-101DA;PHAISTOS DISC SIGN BOW;So;0;L;;;;;N;;;;;-101DB;PHAISTOS DISC SIGN SHIELD;So;0;L;;;;;N;;;;;-101DC;PHAISTOS DISC SIGN CLUB;So;0;L;;;;;N;;;;;-101DD;PHAISTOS DISC SIGN MANACLES;So;0;L;;;;;N;;;;;-101DE;PHAISTOS DISC SIGN MATTOCK;So;0;L;;;;;N;;;;;-101DF;PHAISTOS DISC SIGN SAW;So;0;L;;;;;N;;;;;-101E0;PHAISTOS DISC SIGN LID;So;0;L;;;;;N;;;;;-101E1;PHAISTOS DISC SIGN BOOMERANG;So;0;L;;;;;N;;;;;-101E2;PHAISTOS DISC SIGN CARPENTRY PLANE;So;0;L;;;;;N;;;;;-101E3;PHAISTOS DISC SIGN DOLIUM;So;0;L;;;;;N;;;;;-101E4;PHAISTOS DISC SIGN COMB;So;0;L;;;;;N;;;;;-101E5;PHAISTOS DISC SIGN SLING;So;0;L;;;;;N;;;;;-101E6;PHAISTOS DISC SIGN COLUMN;So;0;L;;;;;N;;;;;-101E7;PHAISTOS DISC SIGN BEEHIVE;So;0;L;;;;;N;;;;;-101E8;PHAISTOS DISC SIGN SHIP;So;0;L;;;;;N;;;;;-101E9;PHAISTOS DISC SIGN HORN;So;0;L;;;;;N;;;;;-101EA;PHAISTOS DISC SIGN HIDE;So;0;L;;;;;N;;;;;-101EB;PHAISTOS DISC SIGN BULLS LEG;So;0;L;;;;;N;;;;;-101EC;PHAISTOS DISC SIGN CAT;So;0;L;;;;;N;;;;;-101ED;PHAISTOS DISC SIGN RAM;So;0;L;;;;;N;;;;;-101EE;PHAISTOS DISC SIGN EAGLE;So;0;L;;;;;N;;;;;-101EF;PHAISTOS DISC SIGN DOVE;So;0;L;;;;;N;;;;;-101F0;PHAISTOS DISC SIGN TUNNY;So;0;L;;;;;N;;;;;-101F1;PHAISTOS DISC SIGN BEE;So;0;L;;;;;N;;;;;-101F2;PHAISTOS DISC SIGN PLANE TREE;So;0;L;;;;;N;;;;;-101F3;PHAISTOS DISC SIGN VINE;So;0;L;;;;;N;;;;;-101F4;PHAISTOS DISC SIGN PAPYRUS;So;0;L;;;;;N;;;;;-101F5;PHAISTOS DISC SIGN ROSETTE;So;0;L;;;;;N;;;;;-101F6;PHAISTOS DISC SIGN LILY;So;0;L;;;;;N;;;;;-101F7;PHAISTOS DISC SIGN OX BACK;So;0;L;;;;;N;;;;;-101F8;PHAISTOS DISC SIGN FLUTE;So;0;L;;;;;N;;;;;-101F9;PHAISTOS DISC SIGN GRATER;So;0;L;;;;;N;;;;;-101FA;PHAISTOS DISC SIGN STRAINER;So;0;L;;;;;N;;;;;-101FB;PHAISTOS DISC SIGN SMALL AXE;So;0;L;;;;;N;;;;;-101FC;PHAISTOS DISC SIGN WAVY BAND;So;0;L;;;;;N;;;;;-101FD;PHAISTOS DISC SIGN COMBINING OBLIQUE STROKE;Mn;220;NSM;;;;;N;;;;;-10280;LYCIAN LETTER A;Lo;0;L;;;;;N;;;;;-10281;LYCIAN LETTER E;Lo;0;L;;;;;N;;;;;-10282;LYCIAN LETTER B;Lo;0;L;;;;;N;;;;;-10283;LYCIAN LETTER BH;Lo;0;L;;;;;N;;;;;-10284;LYCIAN LETTER G;Lo;0;L;;;;;N;;;;;-10285;LYCIAN LETTER D;Lo;0;L;;;;;N;;;;;-10286;LYCIAN LETTER I;Lo;0;L;;;;;N;;;;;-10287;LYCIAN LETTER W;Lo;0;L;;;;;N;;;;;-10288;LYCIAN LETTER Z;Lo;0;L;;;;;N;;;;;-10289;LYCIAN LETTER TH;Lo;0;L;;;;;N;;;;;-1028A;LYCIAN LETTER J;Lo;0;L;;;;;N;;;;;-1028B;LYCIAN LETTER K;Lo;0;L;;;;;N;;;;;-1028C;LYCIAN LETTER Q;Lo;0;L;;;;;N;;;;;-1028D;LYCIAN LETTER L;Lo;0;L;;;;;N;;;;;-1028E;LYCIAN LETTER M;Lo;0;L;;;;;N;;;;;-1028F;LYCIAN LETTER N;Lo;0;L;;;;;N;;;;;-10290;LYCIAN LETTER MM;Lo;0;L;;;;;N;;;;;-10291;LYCIAN LETTER NN;Lo;0;L;;;;;N;;;;;-10292;LYCIAN LETTER U;Lo;0;L;;;;;N;;;;;-10293;LYCIAN LETTER P;Lo;0;L;;;;;N;;;;;-10294;LYCIAN LETTER KK;Lo;0;L;;;;;N;;;;;-10295;LYCIAN LETTER R;Lo;0;L;;;;;N;;;;;-10296;LYCIAN LETTER S;Lo;0;L;;;;;N;;;;;-10297;LYCIAN LETTER T;Lo;0;L;;;;;N;;;;;-10298;LYCIAN LETTER TT;Lo;0;L;;;;;N;;;;;-10299;LYCIAN LETTER AN;Lo;0;L;;;;;N;;;;;-1029A;LYCIAN LETTER EN;Lo;0;L;;;;;N;;;;;-1029B;LYCIAN LETTER H;Lo;0;L;;;;;N;;;;;-1029C;LYCIAN LETTER X;Lo;0;L;;;;;N;;;;;-102A0;CARIAN LETTER A;Lo;0;L;;;;;N;;;;;-102A1;CARIAN LETTER P2;Lo;0;L;;;;;N;;;;;-102A2;CARIAN LETTER D;Lo;0;L;;;;;N;;;;;-102A3;CARIAN LETTER L;Lo;0;L;;;;;N;;;;;-102A4;CARIAN LETTER UUU;Lo;0;L;;;;;N;;;;;-102A5;CARIAN LETTER R;Lo;0;L;;;;;N;;;;;-102A6;CARIAN LETTER LD;Lo;0;L;;;;;N;;;;;-102A7;CARIAN LETTER A2;Lo;0;L;;;;;N;;;;;-102A8;CARIAN LETTER Q;Lo;0;L;;;;;N;;;;;-102A9;CARIAN LETTER B;Lo;0;L;;;;;N;;;;;-102AA;CARIAN LETTER M;Lo;0;L;;;;;N;;;;;-102AB;CARIAN LETTER O;Lo;0;L;;;;;N;;;;;-102AC;CARIAN LETTER D2;Lo;0;L;;;;;N;;;;;-102AD;CARIAN LETTER T;Lo;0;L;;;;;N;;;;;-102AE;CARIAN LETTER SH;Lo;0;L;;;;;N;;;;;-102AF;CARIAN LETTER SH2;Lo;0;L;;;;;N;;;;;-102B0;CARIAN LETTER S;Lo;0;L;;;;;N;;;;;-102B1;CARIAN LETTER C-18;Lo;0;L;;;;;N;;;;;-102B2;CARIAN LETTER U;Lo;0;L;;;;;N;;;;;-102B3;CARIAN LETTER NN;Lo;0;L;;;;;N;;;;;-102B4;CARIAN LETTER X;Lo;0;L;;;;;N;;;;;-102B5;CARIAN LETTER N;Lo;0;L;;;;;N;;;;;-102B6;CARIAN LETTER TT2;Lo;0;L;;;;;N;;;;;-102B7;CARIAN LETTER P;Lo;0;L;;;;;N;;;;;-102B8;CARIAN LETTER SS;Lo;0;L;;;;;N;;;;;-102B9;CARIAN LETTER I;Lo;0;L;;;;;N;;;;;-102BA;CARIAN LETTER E;Lo;0;L;;;;;N;;;;;-102BB;CARIAN LETTER UUUU;Lo;0;L;;;;;N;;;;;-102BC;CARIAN LETTER K;Lo;0;L;;;;;N;;;;;-102BD;CARIAN LETTER K2;Lo;0;L;;;;;N;;;;;-102BE;CARIAN LETTER ND;Lo;0;L;;;;;N;;;;;-102BF;CARIAN LETTER UU;Lo;0;L;;;;;N;;;;;-102C0;CARIAN LETTER G;Lo;0;L;;;;;N;;;;;-102C1;CARIAN LETTER G2;Lo;0;L;;;;;N;;;;;-102C2;CARIAN LETTER ST;Lo;0;L;;;;;N;;;;;-102C3;CARIAN LETTER ST2;Lo;0;L;;;;;N;;;;;-102C4;CARIAN LETTER NG;Lo;0;L;;;;;N;;;;;-102C5;CARIAN LETTER II;Lo;0;L;;;;;N;;;;;-102C6;CARIAN LETTER C-39;Lo;0;L;;;;;N;;;;;-102C7;CARIAN LETTER TT;Lo;0;L;;;;;N;;;;;-102C8;CARIAN LETTER UUU2;Lo;0;L;;;;;N;;;;;-102C9;CARIAN LETTER RR;Lo;0;L;;;;;N;;;;;-102CA;CARIAN LETTER MB;Lo;0;L;;;;;N;;;;;-102CB;CARIAN LETTER MB2;Lo;0;L;;;;;N;;;;;-102CC;CARIAN LETTER MB3;Lo;0;L;;;;;N;;;;;-102CD;CARIAN LETTER MB4;Lo;0;L;;;;;N;;;;;-102CE;CARIAN LETTER LD2;Lo;0;L;;;;;N;;;;;-102CF;CARIAN LETTER E2;Lo;0;L;;;;;N;;;;;-102D0;CARIAN LETTER UUU3;Lo;0;L;;;;;N;;;;;-102E0;COPTIC EPACT THOUSANDS MARK;Mn;220;NSM;;;;;N;;;;;-102E1;COPTIC EPACT DIGIT ONE;No;0;EN;;;;1;N;;;;;-102E2;COPTIC EPACT DIGIT TWO;No;0;EN;;;;2;N;;;;;-102E3;COPTIC EPACT DIGIT THREE;No;0;EN;;;;3;N;;;;;-102E4;COPTIC EPACT DIGIT FOUR;No;0;EN;;;;4;N;;;;;-102E5;COPTIC EPACT DIGIT FIVE;No;0;EN;;;;5;N;;;;;-102E6;COPTIC EPACT DIGIT SIX;No;0;EN;;;;6;N;;;;;-102E7;COPTIC EPACT DIGIT SEVEN;No;0;EN;;;;7;N;;;;;-102E8;COPTIC EPACT DIGIT EIGHT;No;0;EN;;;;8;N;;;;;-102E9;COPTIC EPACT DIGIT NINE;No;0;EN;;;;9;N;;;;;-102EA;COPTIC EPACT NUMBER TEN;No;0;EN;;;;10;N;;;;;-102EB;COPTIC EPACT NUMBER TWENTY;No;0;EN;;;;20;N;;;;;-102EC;COPTIC EPACT NUMBER THIRTY;No;0;EN;;;;30;N;;;;;-102ED;COPTIC EPACT NUMBER FORTY;No;0;EN;;;;40;N;;;;;-102EE;COPTIC EPACT NUMBER FIFTY;No;0;EN;;;;50;N;;;;;-102EF;COPTIC EPACT NUMBER SIXTY;No;0;EN;;;;60;N;;;;;-102F0;COPTIC EPACT NUMBER SEVENTY;No;0;EN;;;;70;N;;;;;-102F1;COPTIC EPACT NUMBER EIGHTY;No;0;EN;;;;80;N;;;;;-102F2;COPTIC EPACT NUMBER NINETY;No;0;EN;;;;90;N;;;;;-102F3;COPTIC EPACT NUMBER ONE HUNDRED;No;0;EN;;;;100;N;;;;;-102F4;COPTIC EPACT NUMBER TWO HUNDRED;No;0;EN;;;;200;N;;;;;-102F5;COPTIC EPACT NUMBER THREE HUNDRED;No;0;EN;;;;300;N;;;;;-102F6;COPTIC EPACT NUMBER FOUR HUNDRED;No;0;EN;;;;400;N;;;;;-102F7;COPTIC EPACT NUMBER FIVE HUNDRED;No;0;EN;;;;500;N;;;;;-102F8;COPTIC EPACT NUMBER SIX HUNDRED;No;0;EN;;;;600;N;;;;;-102F9;COPTIC EPACT NUMBER SEVEN HUNDRED;No;0;EN;;;;700;N;;;;;-102FA;COPTIC EPACT NUMBER EIGHT HUNDRED;No;0;EN;;;;800;N;;;;;-102FB;COPTIC EPACT NUMBER NINE HUNDRED;No;0;EN;;;;900;N;;;;;-10300;OLD ITALIC LETTER A;Lo;0;L;;;;;N;;;;;-10301;OLD ITALIC LETTER BE;Lo;0;L;;;;;N;;;;;-10302;OLD ITALIC LETTER KE;Lo;0;L;;;;;N;;;;;-10303;OLD ITALIC LETTER DE;Lo;0;L;;;;;N;;;;;-10304;OLD ITALIC LETTER E;Lo;0;L;;;;;N;;;;;-10305;OLD ITALIC LETTER VE;Lo;0;L;;;;;N;;;;;-10306;OLD ITALIC LETTER ZE;Lo;0;L;;;;;N;;;;;-10307;OLD ITALIC LETTER HE;Lo;0;L;;;;;N;;;;;-10308;OLD ITALIC LETTER THE;Lo;0;L;;;;;N;;;;;-10309;OLD ITALIC LETTER I;Lo;0;L;;;;;N;;;;;-1030A;OLD ITALIC LETTER KA;Lo;0;L;;;;;N;;;;;-1030B;OLD ITALIC LETTER EL;Lo;0;L;;;;;N;;;;;-1030C;OLD ITALIC LETTER EM;Lo;0;L;;;;;N;;;;;-1030D;OLD ITALIC LETTER EN;Lo;0;L;;;;;N;;;;;-1030E;OLD ITALIC LETTER ESH;Lo;0;L;;;;;N;;;;;-1030F;OLD ITALIC LETTER O;Lo;0;L;;;;;N;;;;;-10310;OLD ITALIC LETTER PE;Lo;0;L;;;;;N;;;;;-10311;OLD ITALIC LETTER SHE;Lo;0;L;;;;;N;;;;;-10312;OLD ITALIC LETTER KU;Lo;0;L;;;;;N;;;;;-10313;OLD ITALIC LETTER ER;Lo;0;L;;;;;N;;;;;-10314;OLD ITALIC LETTER ES;Lo;0;L;;;;;N;;;;;-10315;OLD ITALIC LETTER TE;Lo;0;L;;;;;N;;;;;-10316;OLD ITALIC LETTER U;Lo;0;L;;;;;N;;;;;-10317;OLD ITALIC LETTER EKS;Lo;0;L;;;;;N;;;;;-10318;OLD ITALIC LETTER PHE;Lo;0;L;;;;;N;;;;;-10319;OLD ITALIC LETTER KHE;Lo;0;L;;;;;N;;;;;-1031A;OLD ITALIC LETTER EF;Lo;0;L;;;;;N;;;;;-1031B;OLD ITALIC LETTER ERS;Lo;0;L;;;;;N;;;;;-1031C;OLD ITALIC LETTER CHE;Lo;0;L;;;;;N;;;;;-1031D;OLD ITALIC LETTER II;Lo;0;L;;;;;N;;;;;-1031E;OLD ITALIC LETTER UU;Lo;0;L;;;;;N;;;;;-1031F;OLD ITALIC LETTER ESS;Lo;0;L;;;;;N;;;;;-10320;OLD ITALIC NUMERAL ONE;No;0;L;;;;1;N;;;;;-10321;OLD ITALIC NUMERAL FIVE;No;0;L;;;;5;N;;;;;-10322;OLD ITALIC NUMERAL TEN;No;0;L;;;;10;N;;;;;-10323;OLD ITALIC NUMERAL FIFTY;No;0;L;;;;50;N;;;;;-10330;GOTHIC LETTER AHSA;Lo;0;L;;;;;N;;;;;-10331;GOTHIC LETTER BAIRKAN;Lo;0;L;;;;;N;;;;;-10332;GOTHIC LETTER GIBA;Lo;0;L;;;;;N;;;;;-10333;GOTHIC LETTER DAGS;Lo;0;L;;;;;N;;;;;-10334;GOTHIC LETTER AIHVUS;Lo;0;L;;;;;N;;;;;-10335;GOTHIC LETTER QAIRTHRA;Lo;0;L;;;;;N;;;;;-10336;GOTHIC LETTER IUJA;Lo;0;L;;;;;N;;;;;-10337;GOTHIC LETTER HAGL;Lo;0;L;;;;;N;;;;;-10338;GOTHIC LETTER THIUTH;Lo;0;L;;;;;N;;;;;-10339;GOTHIC LETTER EIS;Lo;0;L;;;;;N;;;;;-1033A;GOTHIC LETTER KUSMA;Lo;0;L;;;;;N;;;;;-1033B;GOTHIC LETTER LAGUS;Lo;0;L;;;;;N;;;;;-1033C;GOTHIC LETTER MANNA;Lo;0;L;;;;;N;;;;;-1033D;GOTHIC LETTER NAUTHS;Lo;0;L;;;;;N;;;;;-1033E;GOTHIC LETTER JER;Lo;0;L;;;;;N;;;;;-1033F;GOTHIC LETTER URUS;Lo;0;L;;;;;N;;;;;-10340;GOTHIC LETTER PAIRTHRA;Lo;0;L;;;;;N;;;;;-10341;GOTHIC LETTER NINETY;Nl;0;L;;;;90;N;;;;;-10342;GOTHIC LETTER RAIDA;Lo;0;L;;;;;N;;;;;-10343;GOTHIC LETTER SAUIL;Lo;0;L;;;;;N;;;;;-10344;GOTHIC LETTER TEIWS;Lo;0;L;;;;;N;;;;;-10345;GOTHIC LETTER WINJA;Lo;0;L;;;;;N;;;;;-10346;GOTHIC LETTER FAIHU;Lo;0;L;;;;;N;;;;;-10347;GOTHIC LETTER IGGWS;Lo;0;L;;;;;N;;;;;-10348;GOTHIC LETTER HWAIR;Lo;0;L;;;;;N;;;;;-10349;GOTHIC LETTER OTHAL;Lo;0;L;;;;;N;;;;;-1034A;GOTHIC LETTER NINE HUNDRED;Nl;0;L;;;;900;N;;;;;-10350;OLD PERMIC LETTER AN;Lo;0;L;;;;;N;;;;;-10351;OLD PERMIC LETTER BUR;Lo;0;L;;;;;N;;;;;-10352;OLD PERMIC LETTER GAI;Lo;0;L;;;;;N;;;;;-10353;OLD PERMIC LETTER DOI;Lo;0;L;;;;;N;;;;;-10354;OLD PERMIC LETTER E;Lo;0;L;;;;;N;;;;;-10355;OLD PERMIC LETTER ZHOI;Lo;0;L;;;;;N;;;;;-10356;OLD PERMIC LETTER DZHOI;Lo;0;L;;;;;N;;;;;-10357;OLD PERMIC LETTER ZATA;Lo;0;L;;;;;N;;;;;-10358;OLD PERMIC LETTER DZITA;Lo;0;L;;;;;N;;;;;-10359;OLD PERMIC LETTER I;Lo;0;L;;;;;N;;;;;-1035A;OLD PERMIC LETTER KOKE;Lo;0;L;;;;;N;;;;;-1035B;OLD PERMIC LETTER LEI;Lo;0;L;;;;;N;;;;;-1035C;OLD PERMIC LETTER MENOE;Lo;0;L;;;;;N;;;;;-1035D;OLD PERMIC LETTER NENOE;Lo;0;L;;;;;N;;;;;-1035E;OLD PERMIC LETTER VOOI;Lo;0;L;;;;;N;;;;;-1035F;OLD PERMIC LETTER PEEI;Lo;0;L;;;;;N;;;;;-10360;OLD PERMIC LETTER REI;Lo;0;L;;;;;N;;;;;-10361;OLD PERMIC LETTER SII;Lo;0;L;;;;;N;;;;;-10362;OLD PERMIC LETTER TAI;Lo;0;L;;;;;N;;;;;-10363;OLD PERMIC LETTER U;Lo;0;L;;;;;N;;;;;-10364;OLD PERMIC LETTER CHERY;Lo;0;L;;;;;N;;;;;-10365;OLD PERMIC LETTER SHOOI;Lo;0;L;;;;;N;;;;;-10366;OLD PERMIC LETTER SHCHOOI;Lo;0;L;;;;;N;;;;;-10367;OLD PERMIC LETTER YRY;Lo;0;L;;;;;N;;;;;-10368;OLD PERMIC LETTER YERU;Lo;0;L;;;;;N;;;;;-10369;OLD PERMIC LETTER O;Lo;0;L;;;;;N;;;;;-1036A;OLD PERMIC LETTER OO;Lo;0;L;;;;;N;;;;;-1036B;OLD PERMIC LETTER EF;Lo;0;L;;;;;N;;;;;-1036C;OLD PERMIC LETTER HA;Lo;0;L;;;;;N;;;;;-1036D;OLD PERMIC LETTER TSIU;Lo;0;L;;;;;N;;;;;-1036E;OLD PERMIC LETTER VER;Lo;0;L;;;;;N;;;;;-1036F;OLD PERMIC LETTER YER;Lo;0;L;;;;;N;;;;;-10370;OLD PERMIC LETTER YERI;Lo;0;L;;;;;N;;;;;-10371;OLD PERMIC LETTER YAT;Lo;0;L;;;;;N;;;;;-10372;OLD PERMIC LETTER IE;Lo;0;L;;;;;N;;;;;-10373;OLD PERMIC LETTER YU;Lo;0;L;;;;;N;;;;;-10374;OLD PERMIC LETTER YA;Lo;0;L;;;;;N;;;;;-10375;OLD PERMIC LETTER IA;Lo;0;L;;;;;N;;;;;-10376;COMBINING OLD PERMIC LETTER AN;Mn;230;NSM;;;;;N;;;;;-10377;COMBINING OLD PERMIC LETTER DOI;Mn;230;NSM;;;;;N;;;;;-10378;COMBINING OLD PERMIC LETTER ZATA;Mn;230;NSM;;;;;N;;;;;-10379;COMBINING OLD PERMIC LETTER NENOE;Mn;230;NSM;;;;;N;;;;;-1037A;COMBINING OLD PERMIC LETTER SII;Mn;230;NSM;;;;;N;;;;;-10380;UGARITIC LETTER ALPA;Lo;0;L;;;;;N;;;;;-10381;UGARITIC LETTER BETA;Lo;0;L;;;;;N;;;;;-10382;UGARITIC LETTER GAMLA;Lo;0;L;;;;;N;;;;;-10383;UGARITIC LETTER KHA;Lo;0;L;;;;;N;;;;;-10384;UGARITIC LETTER DELTA;Lo;0;L;;;;;N;;;;;-10385;UGARITIC LETTER HO;Lo;0;L;;;;;N;;;;;-10386;UGARITIC LETTER WO;Lo;0;L;;;;;N;;;;;-10387;UGARITIC LETTER ZETA;Lo;0;L;;;;;N;;;;;-10388;UGARITIC LETTER HOTA;Lo;0;L;;;;;N;;;;;-10389;UGARITIC LETTER TET;Lo;0;L;;;;;N;;;;;-1038A;UGARITIC LETTER YOD;Lo;0;L;;;;;N;;;;;-1038B;UGARITIC LETTER KAF;Lo;0;L;;;;;N;;;;;-1038C;UGARITIC LETTER SHIN;Lo;0;L;;;;;N;;;;;-1038D;UGARITIC LETTER LAMDA;Lo;0;L;;;;;N;;;;;-1038E;UGARITIC LETTER MEM;Lo;0;L;;;;;N;;;;;-1038F;UGARITIC LETTER DHAL;Lo;0;L;;;;;N;;;;;-10390;UGARITIC LETTER NUN;Lo;0;L;;;;;N;;;;;-10391;UGARITIC LETTER ZU;Lo;0;L;;;;;N;;;;;-10392;UGARITIC LETTER SAMKA;Lo;0;L;;;;;N;;;;;-10393;UGARITIC LETTER AIN;Lo;0;L;;;;;N;;;;;-10394;UGARITIC LETTER PU;Lo;0;L;;;;;N;;;;;-10395;UGARITIC LETTER SADE;Lo;0;L;;;;;N;;;;;-10396;UGARITIC LETTER QOPA;Lo;0;L;;;;;N;;;;;-10397;UGARITIC LETTER RASHA;Lo;0;L;;;;;N;;;;;-10398;UGARITIC LETTER THANNA;Lo;0;L;;;;;N;;;;;-10399;UGARITIC LETTER GHAIN;Lo;0;L;;;;;N;;;;;-1039A;UGARITIC LETTER TO;Lo;0;L;;;;;N;;;;;-1039B;UGARITIC LETTER I;Lo;0;L;;;;;N;;;;;-1039C;UGARITIC LETTER U;Lo;0;L;;;;;N;;;;;-1039D;UGARITIC LETTER SSU;Lo;0;L;;;;;N;;;;;-1039F;UGARITIC WORD DIVIDER;Po;0;L;;;;;N;;;;;-103A0;OLD PERSIAN SIGN A;Lo;0;L;;;;;N;;;;;-103A1;OLD PERSIAN SIGN I;Lo;0;L;;;;;N;;;;;-103A2;OLD PERSIAN SIGN U;Lo;0;L;;;;;N;;;;;-103A3;OLD PERSIAN SIGN KA;Lo;0;L;;;;;N;;;;;-103A4;OLD PERSIAN SIGN KU;Lo;0;L;;;;;N;;;;;-103A5;OLD PERSIAN SIGN GA;Lo;0;L;;;;;N;;;;;-103A6;OLD PERSIAN SIGN GU;Lo;0;L;;;;;N;;;;;-103A7;OLD PERSIAN SIGN XA;Lo;0;L;;;;;N;;;;;-103A8;OLD PERSIAN SIGN CA;Lo;0;L;;;;;N;;;;;-103A9;OLD PERSIAN SIGN JA;Lo;0;L;;;;;N;;;;;-103AA;OLD PERSIAN SIGN JI;Lo;0;L;;;;;N;;;;;-103AB;OLD PERSIAN SIGN TA;Lo;0;L;;;;;N;;;;;-103AC;OLD PERSIAN SIGN TU;Lo;0;L;;;;;N;;;;;-103AD;OLD PERSIAN SIGN DA;Lo;0;L;;;;;N;;;;;-103AE;OLD PERSIAN SIGN DI;Lo;0;L;;;;;N;;;;;-103AF;OLD PERSIAN SIGN DU;Lo;0;L;;;;;N;;;;;-103B0;OLD PERSIAN SIGN THA;Lo;0;L;;;;;N;;;;;-103B1;OLD PERSIAN SIGN PA;Lo;0;L;;;;;N;;;;;-103B2;OLD PERSIAN SIGN BA;Lo;0;L;;;;;N;;;;;-103B3;OLD PERSIAN SIGN FA;Lo;0;L;;;;;N;;;;;-103B4;OLD PERSIAN SIGN NA;Lo;0;L;;;;;N;;;;;-103B5;OLD PERSIAN SIGN NU;Lo;0;L;;;;;N;;;;;-103B6;OLD PERSIAN SIGN MA;Lo;0;L;;;;;N;;;;;-103B7;OLD PERSIAN SIGN MI;Lo;0;L;;;;;N;;;;;-103B8;OLD PERSIAN SIGN MU;Lo;0;L;;;;;N;;;;;-103B9;OLD PERSIAN SIGN YA;Lo;0;L;;;;;N;;;;;-103BA;OLD PERSIAN SIGN VA;Lo;0;L;;;;;N;;;;;-103BB;OLD PERSIAN SIGN VI;Lo;0;L;;;;;N;;;;;-103BC;OLD PERSIAN SIGN RA;Lo;0;L;;;;;N;;;;;-103BD;OLD PERSIAN SIGN RU;Lo;0;L;;;;;N;;;;;-103BE;OLD PERSIAN SIGN LA;Lo;0;L;;;;;N;;;;;-103BF;OLD PERSIAN SIGN SA;Lo;0;L;;;;;N;;;;;-103C0;OLD PERSIAN SIGN ZA;Lo;0;L;;;;;N;;;;;-103C1;OLD PERSIAN SIGN SHA;Lo;0;L;;;;;N;;;;;-103C2;OLD PERSIAN SIGN SSA;Lo;0;L;;;;;N;;;;;-103C3;OLD PERSIAN SIGN HA;Lo;0;L;;;;;N;;;;;-103C8;OLD PERSIAN SIGN AURAMAZDAA;Lo;0;L;;;;;N;;;;;-103C9;OLD PERSIAN SIGN AURAMAZDAA-2;Lo;0;L;;;;;N;;;;;-103CA;OLD PERSIAN SIGN AURAMAZDAAHA;Lo;0;L;;;;;N;;;;;-103CB;OLD PERSIAN SIGN XSHAAYATHIYA;Lo;0;L;;;;;N;;;;;-103CC;OLD PERSIAN SIGN DAHYAAUSH;Lo;0;L;;;;;N;;;;;-103CD;OLD PERSIAN SIGN DAHYAAUSH-2;Lo;0;L;;;;;N;;;;;-103CE;OLD PERSIAN SIGN BAGA;Lo;0;L;;;;;N;;;;;-103CF;OLD PERSIAN SIGN BUUMISH;Lo;0;L;;;;;N;;;;;-103D0;OLD PERSIAN WORD DIVIDER;Po;0;L;;;;;N;;;;;-103D1;OLD PERSIAN NUMBER ONE;Nl;0;L;;;;1;N;;;;;-103D2;OLD PERSIAN NUMBER TWO;Nl;0;L;;;;2;N;;;;;-103D3;OLD PERSIAN NUMBER TEN;Nl;0;L;;;;10;N;;;;;-103D4;OLD PERSIAN NUMBER TWENTY;Nl;0;L;;;;20;N;;;;;-103D5;OLD PERSIAN NUMBER HUNDRED;Nl;0;L;;;;100;N;;;;;-10400;DESERET CAPITAL LETTER LONG I;Lu;0;L;;;;;N;;;;10428;-10401;DESERET CAPITAL LETTER LONG E;Lu;0;L;;;;;N;;;;10429;-10402;DESERET CAPITAL LETTER LONG A;Lu;0;L;;;;;N;;;;1042A;-10403;DESERET CAPITAL LETTER LONG AH;Lu;0;L;;;;;N;;;;1042B;-10404;DESERET CAPITAL LETTER LONG O;Lu;0;L;;;;;N;;;;1042C;-10405;DESERET CAPITAL LETTER LONG OO;Lu;0;L;;;;;N;;;;1042D;-10406;DESERET CAPITAL LETTER SHORT I;Lu;0;L;;;;;N;;;;1042E;-10407;DESERET CAPITAL LETTER SHORT E;Lu;0;L;;;;;N;;;;1042F;-10408;DESERET CAPITAL LETTER SHORT A;Lu;0;L;;;;;N;;;;10430;-10409;DESERET CAPITAL LETTER SHORT AH;Lu;0;L;;;;;N;;;;10431;-1040A;DESERET CAPITAL LETTER SHORT O;Lu;0;L;;;;;N;;;;10432;-1040B;DESERET CAPITAL LETTER SHORT OO;Lu;0;L;;;;;N;;;;10433;-1040C;DESERET CAPITAL LETTER AY;Lu;0;L;;;;;N;;;;10434;-1040D;DESERET CAPITAL LETTER OW;Lu;0;L;;;;;N;;;;10435;-1040E;DESERET CAPITAL LETTER WU;Lu;0;L;;;;;N;;;;10436;-1040F;DESERET CAPITAL LETTER YEE;Lu;0;L;;;;;N;;;;10437;-10410;DESERET CAPITAL LETTER H;Lu;0;L;;;;;N;;;;10438;-10411;DESERET CAPITAL LETTER PEE;Lu;0;L;;;;;N;;;;10439;-10412;DESERET CAPITAL LETTER BEE;Lu;0;L;;;;;N;;;;1043A;-10413;DESERET CAPITAL LETTER TEE;Lu;0;L;;;;;N;;;;1043B;-10414;DESERET CAPITAL LETTER DEE;Lu;0;L;;;;;N;;;;1043C;-10415;DESERET CAPITAL LETTER CHEE;Lu;0;L;;;;;N;;;;1043D;-10416;DESERET CAPITAL LETTER JEE;Lu;0;L;;;;;N;;;;1043E;-10417;DESERET CAPITAL LETTER KAY;Lu;0;L;;;;;N;;;;1043F;-10418;DESERET CAPITAL LETTER GAY;Lu;0;L;;;;;N;;;;10440;-10419;DESERET CAPITAL LETTER EF;Lu;0;L;;;;;N;;;;10441;-1041A;DESERET CAPITAL LETTER VEE;Lu;0;L;;;;;N;;;;10442;-1041B;DESERET CAPITAL LETTER ETH;Lu;0;L;;;;;N;;;;10443;-1041C;DESERET CAPITAL LETTER THEE;Lu;0;L;;;;;N;;;;10444;-1041D;DESERET CAPITAL LETTER ES;Lu;0;L;;;;;N;;;;10445;-1041E;DESERET CAPITAL LETTER ZEE;Lu;0;L;;;;;N;;;;10446;-1041F;DESERET CAPITAL LETTER ESH;Lu;0;L;;;;;N;;;;10447;-10420;DESERET CAPITAL LETTER ZHEE;Lu;0;L;;;;;N;;;;10448;-10421;DESERET CAPITAL LETTER ER;Lu;0;L;;;;;N;;;;10449;-10422;DESERET CAPITAL LETTER EL;Lu;0;L;;;;;N;;;;1044A;-10423;DESERET CAPITAL LETTER EM;Lu;0;L;;;;;N;;;;1044B;-10424;DESERET CAPITAL LETTER EN;Lu;0;L;;;;;N;;;;1044C;-10425;DESERET CAPITAL LETTER ENG;Lu;0;L;;;;;N;;;;1044D;-10426;DESERET CAPITAL LETTER OI;Lu;0;L;;;;;N;;;;1044E;-10427;DESERET CAPITAL LETTER EW;Lu;0;L;;;;;N;;;;1044F;-10428;DESERET SMALL LETTER LONG I;Ll;0;L;;;;;N;;;10400;;10400-10429;DESERET SMALL LETTER LONG E;Ll;0;L;;;;;N;;;10401;;10401-1042A;DESERET SMALL LETTER LONG A;Ll;0;L;;;;;N;;;10402;;10402-1042B;DESERET SMALL LETTER LONG AH;Ll;0;L;;;;;N;;;10403;;10403-1042C;DESERET SMALL LETTER LONG O;Ll;0;L;;;;;N;;;10404;;10404-1042D;DESERET SMALL LETTER LONG OO;Ll;0;L;;;;;N;;;10405;;10405-1042E;DESERET SMALL LETTER SHORT I;Ll;0;L;;;;;N;;;10406;;10406-1042F;DESERET SMALL LETTER SHORT E;Ll;0;L;;;;;N;;;10407;;10407-10430;DESERET SMALL LETTER SHORT A;Ll;0;L;;;;;N;;;10408;;10408-10431;DESERET SMALL LETTER SHORT AH;Ll;0;L;;;;;N;;;10409;;10409-10432;DESERET SMALL LETTER SHORT O;Ll;0;L;;;;;N;;;1040A;;1040A-10433;DESERET SMALL LETTER SHORT OO;Ll;0;L;;;;;N;;;1040B;;1040B-10434;DESERET SMALL LETTER AY;Ll;0;L;;;;;N;;;1040C;;1040C-10435;DESERET SMALL LETTER OW;Ll;0;L;;;;;N;;;1040D;;1040D-10436;DESERET SMALL LETTER WU;Ll;0;L;;;;;N;;;1040E;;1040E-10437;DESERET SMALL LETTER YEE;Ll;0;L;;;;;N;;;1040F;;1040F-10438;DESERET SMALL LETTER H;Ll;0;L;;;;;N;;;10410;;10410-10439;DESERET SMALL LETTER PEE;Ll;0;L;;;;;N;;;10411;;10411-1043A;DESERET SMALL LETTER BEE;Ll;0;L;;;;;N;;;10412;;10412-1043B;DESERET SMALL LETTER TEE;Ll;0;L;;;;;N;;;10413;;10413-1043C;DESERET SMALL LETTER DEE;Ll;0;L;;;;;N;;;10414;;10414-1043D;DESERET SMALL LETTER CHEE;Ll;0;L;;;;;N;;;10415;;10415-1043E;DESERET SMALL LETTER JEE;Ll;0;L;;;;;N;;;10416;;10416-1043F;DESERET SMALL LETTER KAY;Ll;0;L;;;;;N;;;10417;;10417-10440;DESERET SMALL LETTER GAY;Ll;0;L;;;;;N;;;10418;;10418-10441;DESERET SMALL LETTER EF;Ll;0;L;;;;;N;;;10419;;10419-10442;DESERET SMALL LETTER VEE;Ll;0;L;;;;;N;;;1041A;;1041A-10443;DESERET SMALL LETTER ETH;Ll;0;L;;;;;N;;;1041B;;1041B-10444;DESERET SMALL LETTER THEE;Ll;0;L;;;;;N;;;1041C;;1041C-10445;DESERET SMALL LETTER ES;Ll;0;L;;;;;N;;;1041D;;1041D-10446;DESERET SMALL LETTER ZEE;Ll;0;L;;;;;N;;;1041E;;1041E-10447;DESERET SMALL LETTER ESH;Ll;0;L;;;;;N;;;1041F;;1041F-10448;DESERET SMALL LETTER ZHEE;Ll;0;L;;;;;N;;;10420;;10420-10449;DESERET SMALL LETTER ER;Ll;0;L;;;;;N;;;10421;;10421-1044A;DESERET SMALL LETTER EL;Ll;0;L;;;;;N;;;10422;;10422-1044B;DESERET SMALL LETTER EM;Ll;0;L;;;;;N;;;10423;;10423-1044C;DESERET SMALL LETTER EN;Ll;0;L;;;;;N;;;10424;;10424-1044D;DESERET SMALL LETTER ENG;Ll;0;L;;;;;N;;;10425;;10425-1044E;DESERET SMALL LETTER OI;Ll;0;L;;;;;N;;;10426;;10426-1044F;DESERET SMALL LETTER EW;Ll;0;L;;;;;N;;;10427;;10427-10450;SHAVIAN LETTER PEEP;Lo;0;L;;;;;N;;;;;-10451;SHAVIAN LETTER TOT;Lo;0;L;;;;;N;;;;;-10452;SHAVIAN LETTER KICK;Lo;0;L;;;;;N;;;;;-10453;SHAVIAN LETTER FEE;Lo;0;L;;;;;N;;;;;-10454;SHAVIAN LETTER THIGH;Lo;0;L;;;;;N;;;;;-10455;SHAVIAN LETTER SO;Lo;0;L;;;;;N;;;;;-10456;SHAVIAN LETTER SURE;Lo;0;L;;;;;N;;;;;-10457;SHAVIAN LETTER CHURCH;Lo;0;L;;;;;N;;;;;-10458;SHAVIAN LETTER YEA;Lo;0;L;;;;;N;;;;;-10459;SHAVIAN LETTER HUNG;Lo;0;L;;;;;N;;;;;-1045A;SHAVIAN LETTER BIB;Lo;0;L;;;;;N;;;;;-1045B;SHAVIAN LETTER DEAD;Lo;0;L;;;;;N;;;;;-1045C;SHAVIAN LETTER GAG;Lo;0;L;;;;;N;;;;;-1045D;SHAVIAN LETTER VOW;Lo;0;L;;;;;N;;;;;-1045E;SHAVIAN LETTER THEY;Lo;0;L;;;;;N;;;;;-1045F;SHAVIAN LETTER ZOO;Lo;0;L;;;;;N;;;;;-10460;SHAVIAN LETTER MEASURE;Lo;0;L;;;;;N;;;;;-10461;SHAVIAN LETTER JUDGE;Lo;0;L;;;;;N;;;;;-10462;SHAVIAN LETTER WOE;Lo;0;L;;;;;N;;;;;-10463;SHAVIAN LETTER HA-HA;Lo;0;L;;;;;N;;;;;-10464;SHAVIAN LETTER LOLL;Lo;0;L;;;;;N;;;;;-10465;SHAVIAN LETTER MIME;Lo;0;L;;;;;N;;;;;-10466;SHAVIAN LETTER IF;Lo;0;L;;;;;N;;;;;-10467;SHAVIAN LETTER EGG;Lo;0;L;;;;;N;;;;;-10468;SHAVIAN LETTER ASH;Lo;0;L;;;;;N;;;;;-10469;SHAVIAN LETTER ADO;Lo;0;L;;;;;N;;;;;-1046A;SHAVIAN LETTER ON;Lo;0;L;;;;;N;;;;;-1046B;SHAVIAN LETTER WOOL;Lo;0;L;;;;;N;;;;;-1046C;SHAVIAN LETTER OUT;Lo;0;L;;;;;N;;;;;-1046D;SHAVIAN LETTER AH;Lo;0;L;;;;;N;;;;;-1046E;SHAVIAN LETTER ROAR;Lo;0;L;;;;;N;;;;;-1046F;SHAVIAN LETTER NUN;Lo;0;L;;;;;N;;;;;-10470;SHAVIAN LETTER EAT;Lo;0;L;;;;;N;;;;;-10471;SHAVIAN LETTER AGE;Lo;0;L;;;;;N;;;;;-10472;SHAVIAN LETTER ICE;Lo;0;L;;;;;N;;;;;-10473;SHAVIAN LETTER UP;Lo;0;L;;;;;N;;;;;-10474;SHAVIAN LETTER OAK;Lo;0;L;;;;;N;;;;;-10475;SHAVIAN LETTER OOZE;Lo;0;L;;;;;N;;;;;-10476;SHAVIAN LETTER OIL;Lo;0;L;;;;;N;;;;;-10477;SHAVIAN LETTER AWE;Lo;0;L;;;;;N;;;;;-10478;SHAVIAN LETTER ARE;Lo;0;L;;;;;N;;;;;-10479;SHAVIAN LETTER OR;Lo;0;L;;;;;N;;;;;-1047A;SHAVIAN LETTER AIR;Lo;0;L;;;;;N;;;;;-1047B;SHAVIAN LETTER ERR;Lo;0;L;;;;;N;;;;;-1047C;SHAVIAN LETTER ARRAY;Lo;0;L;;;;;N;;;;;-1047D;SHAVIAN LETTER EAR;Lo;0;L;;;;;N;;;;;-1047E;SHAVIAN LETTER IAN;Lo;0;L;;;;;N;;;;;-1047F;SHAVIAN LETTER YEW;Lo;0;L;;;;;N;;;;;-10480;OSMANYA LETTER ALEF;Lo;0;L;;;;;N;;;;;-10481;OSMANYA LETTER BA;Lo;0;L;;;;;N;;;;;-10482;OSMANYA LETTER TA;Lo;0;L;;;;;N;;;;;-10483;OSMANYA LETTER JA;Lo;0;L;;;;;N;;;;;-10484;OSMANYA LETTER XA;Lo;0;L;;;;;N;;;;;-10485;OSMANYA LETTER KHA;Lo;0;L;;;;;N;;;;;-10486;OSMANYA LETTER DEEL;Lo;0;L;;;;;N;;;;;-10487;OSMANYA LETTER RA;Lo;0;L;;;;;N;;;;;-10488;OSMANYA LETTER SA;Lo;0;L;;;;;N;;;;;-10489;OSMANYA LETTER SHIIN;Lo;0;L;;;;;N;;;;;-1048A;OSMANYA LETTER DHA;Lo;0;L;;;;;N;;;;;-1048B;OSMANYA LETTER CAYN;Lo;0;L;;;;;N;;;;;-1048C;OSMANYA LETTER GA;Lo;0;L;;;;;N;;;;;-1048D;OSMANYA LETTER FA;Lo;0;L;;;;;N;;;;;-1048E;OSMANYA LETTER QAAF;Lo;0;L;;;;;N;;;;;-1048F;OSMANYA LETTER KAAF;Lo;0;L;;;;;N;;;;;-10490;OSMANYA LETTER LAAN;Lo;0;L;;;;;N;;;;;-10491;OSMANYA LETTER MIIN;Lo;0;L;;;;;N;;;;;-10492;OSMANYA LETTER NUUN;Lo;0;L;;;;;N;;;;;-10493;OSMANYA LETTER WAW;Lo;0;L;;;;;N;;;;;-10494;OSMANYA LETTER HA;Lo;0;L;;;;;N;;;;;-10495;OSMANYA LETTER YA;Lo;0;L;;;;;N;;;;;-10496;OSMANYA LETTER A;Lo;0;L;;;;;N;;;;;-10497;OSMANYA LETTER E;Lo;0;L;;;;;N;;;;;-10498;OSMANYA LETTER I;Lo;0;L;;;;;N;;;;;-10499;OSMANYA LETTER O;Lo;0;L;;;;;N;;;;;-1049A;OSMANYA LETTER U;Lo;0;L;;;;;N;;;;;-1049B;OSMANYA LETTER AA;Lo;0;L;;;;;N;;;;;-1049C;OSMANYA LETTER EE;Lo;0;L;;;;;N;;;;;-1049D;OSMANYA LETTER OO;Lo;0;L;;;;;N;;;;;-104A0;OSMANYA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-104A1;OSMANYA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-104A2;OSMANYA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-104A3;OSMANYA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-104A4;OSMANYA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-104A5;OSMANYA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-104A6;OSMANYA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-104A7;OSMANYA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-104A8;OSMANYA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-104A9;OSMANYA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-10500;ELBASAN LETTER A;Lo;0;L;;;;;N;;;;;-10501;ELBASAN LETTER BE;Lo;0;L;;;;;N;;;;;-10502;ELBASAN LETTER CE;Lo;0;L;;;;;N;;;;;-10503;ELBASAN LETTER CHE;Lo;0;L;;;;;N;;;;;-10504;ELBASAN LETTER DE;Lo;0;L;;;;;N;;;;;-10505;ELBASAN LETTER NDE;Lo;0;L;;;;;N;;;;;-10506;ELBASAN LETTER DHE;Lo;0;L;;;;;N;;;;;-10507;ELBASAN LETTER EI;Lo;0;L;;;;;N;;;;;-10508;ELBASAN LETTER E;Lo;0;L;;;;;N;;;;;-10509;ELBASAN LETTER FE;Lo;0;L;;;;;N;;;;;-1050A;ELBASAN LETTER GE;Lo;0;L;;;;;N;;;;;-1050B;ELBASAN LETTER GJE;Lo;0;L;;;;;N;;;;;-1050C;ELBASAN LETTER HE;Lo;0;L;;;;;N;;;;;-1050D;ELBASAN LETTER I;Lo;0;L;;;;;N;;;;;-1050E;ELBASAN LETTER JE;Lo;0;L;;;;;N;;;;;-1050F;ELBASAN LETTER KE;Lo;0;L;;;;;N;;;;;-10510;ELBASAN LETTER LE;Lo;0;L;;;;;N;;;;;-10511;ELBASAN LETTER LLE;Lo;0;L;;;;;N;;;;;-10512;ELBASAN LETTER ME;Lo;0;L;;;;;N;;;;;-10513;ELBASAN LETTER NE;Lo;0;L;;;;;N;;;;;-10514;ELBASAN LETTER NA;Lo;0;L;;;;;N;;;;;-10515;ELBASAN LETTER NJE;Lo;0;L;;;;;N;;;;;-10516;ELBASAN LETTER O;Lo;0;L;;;;;N;;;;;-10517;ELBASAN LETTER PE;Lo;0;L;;;;;N;;;;;-10518;ELBASAN LETTER QE;Lo;0;L;;;;;N;;;;;-10519;ELBASAN LETTER RE;Lo;0;L;;;;;N;;;;;-1051A;ELBASAN LETTER RRE;Lo;0;L;;;;;N;;;;;-1051B;ELBASAN LETTER SE;Lo;0;L;;;;;N;;;;;-1051C;ELBASAN LETTER SHE;Lo;0;L;;;;;N;;;;;-1051D;ELBASAN LETTER TE;Lo;0;L;;;;;N;;;;;-1051E;ELBASAN LETTER THE;Lo;0;L;;;;;N;;;;;-1051F;ELBASAN LETTER U;Lo;0;L;;;;;N;;;;;-10520;ELBASAN LETTER VE;Lo;0;L;;;;;N;;;;;-10521;ELBASAN LETTER XE;Lo;0;L;;;;;N;;;;;-10522;ELBASAN LETTER Y;Lo;0;L;;;;;N;;;;;-10523;ELBASAN LETTER ZE;Lo;0;L;;;;;N;;;;;-10524;ELBASAN LETTER ZHE;Lo;0;L;;;;;N;;;;;-10525;ELBASAN LETTER GHE;Lo;0;L;;;;;N;;;;;-10526;ELBASAN LETTER GHAMMA;Lo;0;L;;;;;N;;;;;-10527;ELBASAN LETTER KHE;Lo;0;L;;;;;N;;;;;-10530;CAUCASIAN ALBANIAN LETTER ALT;Lo;0;L;;;;;N;;;;;-10531;CAUCASIAN ALBANIAN LETTER BET;Lo;0;L;;;;;N;;;;;-10532;CAUCASIAN ALBANIAN LETTER GIM;Lo;0;L;;;;;N;;;;;-10533;CAUCASIAN ALBANIAN LETTER DAT;Lo;0;L;;;;;N;;;;;-10534;CAUCASIAN ALBANIAN LETTER EB;Lo;0;L;;;;;N;;;;;-10535;CAUCASIAN ALBANIAN LETTER ZARL;Lo;0;L;;;;;N;;;;;-10536;CAUCASIAN ALBANIAN LETTER EYN;Lo;0;L;;;;;N;;;;;-10537;CAUCASIAN ALBANIAN LETTER ZHIL;Lo;0;L;;;;;N;;;;;-10538;CAUCASIAN ALBANIAN LETTER TAS;Lo;0;L;;;;;N;;;;;-10539;CAUCASIAN ALBANIAN LETTER CHA;Lo;0;L;;;;;N;;;;;-1053A;CAUCASIAN ALBANIAN LETTER YOWD;Lo;0;L;;;;;N;;;;;-1053B;CAUCASIAN ALBANIAN LETTER ZHA;Lo;0;L;;;;;N;;;;;-1053C;CAUCASIAN ALBANIAN LETTER IRB;Lo;0;L;;;;;N;;;;;-1053D;CAUCASIAN ALBANIAN LETTER SHA;Lo;0;L;;;;;N;;;;;-1053E;CAUCASIAN ALBANIAN LETTER LAN;Lo;0;L;;;;;N;;;;;-1053F;CAUCASIAN ALBANIAN LETTER INYA;Lo;0;L;;;;;N;;;;;-10540;CAUCASIAN ALBANIAN LETTER XEYN;Lo;0;L;;;;;N;;;;;-10541;CAUCASIAN ALBANIAN LETTER DYAN;Lo;0;L;;;;;N;;;;;-10542;CAUCASIAN ALBANIAN LETTER CAR;Lo;0;L;;;;;N;;;;;-10543;CAUCASIAN ALBANIAN LETTER JHOX;Lo;0;L;;;;;N;;;;;-10544;CAUCASIAN ALBANIAN LETTER KAR;Lo;0;L;;;;;N;;;;;-10545;CAUCASIAN ALBANIAN LETTER LYIT;Lo;0;L;;;;;N;;;;;-10546;CAUCASIAN ALBANIAN LETTER HEYT;Lo;0;L;;;;;N;;;;;-10547;CAUCASIAN ALBANIAN LETTER QAY;Lo;0;L;;;;;N;;;;;-10548;CAUCASIAN ALBANIAN LETTER AOR;Lo;0;L;;;;;N;;;;;-10549;CAUCASIAN ALBANIAN LETTER CHOY;Lo;0;L;;;;;N;;;;;-1054A;CAUCASIAN ALBANIAN LETTER CHI;Lo;0;L;;;;;N;;;;;-1054B;CAUCASIAN ALBANIAN LETTER CYAY;Lo;0;L;;;;;N;;;;;-1054C;CAUCASIAN ALBANIAN LETTER MAQ;Lo;0;L;;;;;N;;;;;-1054D;CAUCASIAN ALBANIAN LETTER QAR;Lo;0;L;;;;;N;;;;;-1054E;CAUCASIAN ALBANIAN LETTER NOWC;Lo;0;L;;;;;N;;;;;-1054F;CAUCASIAN ALBANIAN LETTER DZYAY;Lo;0;L;;;;;N;;;;;-10550;CAUCASIAN ALBANIAN LETTER SHAK;Lo;0;L;;;;;N;;;;;-10551;CAUCASIAN ALBANIAN LETTER JAYN;Lo;0;L;;;;;N;;;;;-10552;CAUCASIAN ALBANIAN LETTER ON;Lo;0;L;;;;;N;;;;;-10553;CAUCASIAN ALBANIAN LETTER TYAY;Lo;0;L;;;;;N;;;;;-10554;CAUCASIAN ALBANIAN LETTER FAM;Lo;0;L;;;;;N;;;;;-10555;CAUCASIAN ALBANIAN LETTER DZAY;Lo;0;L;;;;;N;;;;;-10556;CAUCASIAN ALBANIAN LETTER CHAT;Lo;0;L;;;;;N;;;;;-10557;CAUCASIAN ALBANIAN LETTER PEN;Lo;0;L;;;;;N;;;;;-10558;CAUCASIAN ALBANIAN LETTER GHEYS;Lo;0;L;;;;;N;;;;;-10559;CAUCASIAN ALBANIAN LETTER RAT;Lo;0;L;;;;;N;;;;;-1055A;CAUCASIAN ALBANIAN LETTER SEYK;Lo;0;L;;;;;N;;;;;-1055B;CAUCASIAN ALBANIAN LETTER VEYZ;Lo;0;L;;;;;N;;;;;-1055C;CAUCASIAN ALBANIAN LETTER TIWR;Lo;0;L;;;;;N;;;;;-1055D;CAUCASIAN ALBANIAN LETTER SHOY;Lo;0;L;;;;;N;;;;;-1055E;CAUCASIAN ALBANIAN LETTER IWN;Lo;0;L;;;;;N;;;;;-1055F;CAUCASIAN ALBANIAN LETTER CYAW;Lo;0;L;;;;;N;;;;;-10560;CAUCASIAN ALBANIAN LETTER CAYN;Lo;0;L;;;;;N;;;;;-10561;CAUCASIAN ALBANIAN LETTER YAYD;Lo;0;L;;;;;N;;;;;-10562;CAUCASIAN ALBANIAN LETTER PIWR;Lo;0;L;;;;;N;;;;;-10563;CAUCASIAN ALBANIAN LETTER KIW;Lo;0;L;;;;;N;;;;;-1056F;CAUCASIAN ALBANIAN CITATION MARK;Po;0;L;;;;;N;;;;;-10600;LINEAR A SIGN AB001;Lo;0;L;;;;;N;;;;;-10601;LINEAR A SIGN AB002;Lo;0;L;;;;;N;;;;;-10602;LINEAR A SIGN AB003;Lo;0;L;;;;;N;;;;;-10603;LINEAR A SIGN AB004;Lo;0;L;;;;;N;;;;;-10604;LINEAR A SIGN AB005;Lo;0;L;;;;;N;;;;;-10605;LINEAR A SIGN AB006;Lo;0;L;;;;;N;;;;;-10606;LINEAR A SIGN AB007;Lo;0;L;;;;;N;;;;;-10607;LINEAR A SIGN AB008;Lo;0;L;;;;;N;;;;;-10608;LINEAR A SIGN AB009;Lo;0;L;;;;;N;;;;;-10609;LINEAR A SIGN AB010;Lo;0;L;;;;;N;;;;;-1060A;LINEAR A SIGN AB011;Lo;0;L;;;;;N;;;;;-1060B;LINEAR A SIGN AB013;Lo;0;L;;;;;N;;;;;-1060C;LINEAR A SIGN AB016;Lo;0;L;;;;;N;;;;;-1060D;LINEAR A SIGN AB017;Lo;0;L;;;;;N;;;;;-1060E;LINEAR A SIGN AB020;Lo;0;L;;;;;N;;;;;-1060F;LINEAR A SIGN AB021;Lo;0;L;;;;;N;;;;;-10610;LINEAR A SIGN AB021F;Lo;0;L;;;;;N;;;;;-10611;LINEAR A SIGN AB021M;Lo;0;L;;;;;N;;;;;-10612;LINEAR A SIGN AB022;Lo;0;L;;;;;N;;;;;-10613;LINEAR A SIGN AB022F;Lo;0;L;;;;;N;;;;;-10614;LINEAR A SIGN AB022M;Lo;0;L;;;;;N;;;;;-10615;LINEAR A SIGN AB023;Lo;0;L;;;;;N;;;;;-10616;LINEAR A SIGN AB023M;Lo;0;L;;;;;N;;;;;-10617;LINEAR A SIGN AB024;Lo;0;L;;;;;N;;;;;-10618;LINEAR A SIGN AB026;Lo;0;L;;;;;N;;;;;-10619;LINEAR A SIGN AB027;Lo;0;L;;;;;N;;;;;-1061A;LINEAR A SIGN AB028;Lo;0;L;;;;;N;;;;;-1061B;LINEAR A SIGN A028B;Lo;0;L;;;;;N;;;;;-1061C;LINEAR A SIGN AB029;Lo;0;L;;;;;N;;;;;-1061D;LINEAR A SIGN AB030;Lo;0;L;;;;;N;;;;;-1061E;LINEAR A SIGN AB031;Lo;0;L;;;;;N;;;;;-1061F;LINEAR A SIGN AB034;Lo;0;L;;;;;N;;;;;-10620;LINEAR A SIGN AB037;Lo;0;L;;;;;N;;;;;-10621;LINEAR A SIGN AB038;Lo;0;L;;;;;N;;;;;-10622;LINEAR A SIGN AB039;Lo;0;L;;;;;N;;;;;-10623;LINEAR A SIGN AB040;Lo;0;L;;;;;N;;;;;-10624;LINEAR A SIGN AB041;Lo;0;L;;;;;N;;;;;-10625;LINEAR A SIGN AB044;Lo;0;L;;;;;N;;;;;-10626;LINEAR A SIGN AB045;Lo;0;L;;;;;N;;;;;-10627;LINEAR A SIGN AB046;Lo;0;L;;;;;N;;;;;-10628;LINEAR A SIGN AB047;Lo;0;L;;;;;N;;;;;-10629;LINEAR A SIGN AB048;Lo;0;L;;;;;N;;;;;-1062A;LINEAR A SIGN AB049;Lo;0;L;;;;;N;;;;;-1062B;LINEAR A SIGN AB050;Lo;0;L;;;;;N;;;;;-1062C;LINEAR A SIGN AB051;Lo;0;L;;;;;N;;;;;-1062D;LINEAR A SIGN AB053;Lo;0;L;;;;;N;;;;;-1062E;LINEAR A SIGN AB054;Lo;0;L;;;;;N;;;;;-1062F;LINEAR A SIGN AB055;Lo;0;L;;;;;N;;;;;-10630;LINEAR A SIGN AB056;Lo;0;L;;;;;N;;;;;-10631;LINEAR A SIGN AB057;Lo;0;L;;;;;N;;;;;-10632;LINEAR A SIGN AB058;Lo;0;L;;;;;N;;;;;-10633;LINEAR A SIGN AB059;Lo;0;L;;;;;N;;;;;-10634;LINEAR A SIGN AB060;Lo;0;L;;;;;N;;;;;-10635;LINEAR A SIGN AB061;Lo;0;L;;;;;N;;;;;-10636;LINEAR A SIGN AB065;Lo;0;L;;;;;N;;;;;-10637;LINEAR A SIGN AB066;Lo;0;L;;;;;N;;;;;-10638;LINEAR A SIGN AB067;Lo;0;L;;;;;N;;;;;-10639;LINEAR A SIGN AB069;Lo;0;L;;;;;N;;;;;-1063A;LINEAR A SIGN AB070;Lo;0;L;;;;;N;;;;;-1063B;LINEAR A SIGN AB073;Lo;0;L;;;;;N;;;;;-1063C;LINEAR A SIGN AB074;Lo;0;L;;;;;N;;;;;-1063D;LINEAR A SIGN AB076;Lo;0;L;;;;;N;;;;;-1063E;LINEAR A SIGN AB077;Lo;0;L;;;;;N;;;;;-1063F;LINEAR A SIGN AB078;Lo;0;L;;;;;N;;;;;-10640;LINEAR A SIGN AB079;Lo;0;L;;;;;N;;;;;-10641;LINEAR A SIGN AB080;Lo;0;L;;;;;N;;;;;-10642;LINEAR A SIGN AB081;Lo;0;L;;;;;N;;;;;-10643;LINEAR A SIGN AB082;Lo;0;L;;;;;N;;;;;-10644;LINEAR A SIGN AB085;Lo;0;L;;;;;N;;;;;-10645;LINEAR A SIGN AB086;Lo;0;L;;;;;N;;;;;-10646;LINEAR A SIGN AB087;Lo;0;L;;;;;N;;;;;-10647;LINEAR A SIGN A100-102;Lo;0;L;;;;;N;;;;;-10648;LINEAR A SIGN AB118;Lo;0;L;;;;;N;;;;;-10649;LINEAR A SIGN AB120;Lo;0;L;;;;;N;;;;;-1064A;LINEAR A SIGN A120B;Lo;0;L;;;;;N;;;;;-1064B;LINEAR A SIGN AB122;Lo;0;L;;;;;N;;;;;-1064C;LINEAR A SIGN AB123;Lo;0;L;;;;;N;;;;;-1064D;LINEAR A SIGN AB131A;Lo;0;L;;;;;N;;;;;-1064E;LINEAR A SIGN AB131B;Lo;0;L;;;;;N;;;;;-1064F;LINEAR A SIGN A131C;Lo;0;L;;;;;N;;;;;-10650;LINEAR A SIGN AB164;Lo;0;L;;;;;N;;;;;-10651;LINEAR A SIGN AB171;Lo;0;L;;;;;N;;;;;-10652;LINEAR A SIGN AB180;Lo;0;L;;;;;N;;;;;-10653;LINEAR A SIGN AB188;Lo;0;L;;;;;N;;;;;-10654;LINEAR A SIGN AB191;Lo;0;L;;;;;N;;;;;-10655;LINEAR A SIGN A301;Lo;0;L;;;;;N;;;;;-10656;LINEAR A SIGN A302;Lo;0;L;;;;;N;;;;;-10657;LINEAR A SIGN A303;Lo;0;L;;;;;N;;;;;-10658;LINEAR A SIGN A304;Lo;0;L;;;;;N;;;;;-10659;LINEAR A SIGN A305;Lo;0;L;;;;;N;;;;;-1065A;LINEAR A SIGN A306;Lo;0;L;;;;;N;;;;;-1065B;LINEAR A SIGN A307;Lo;0;L;;;;;N;;;;;-1065C;LINEAR A SIGN A308;Lo;0;L;;;;;N;;;;;-1065D;LINEAR A SIGN A309A;Lo;0;L;;;;;N;;;;;-1065E;LINEAR A SIGN A309B;Lo;0;L;;;;;N;;;;;-1065F;LINEAR A SIGN A309C;Lo;0;L;;;;;N;;;;;-10660;LINEAR A SIGN A310;Lo;0;L;;;;;N;;;;;-10661;LINEAR A SIGN A311;Lo;0;L;;;;;N;;;;;-10662;LINEAR A SIGN A312;Lo;0;L;;;;;N;;;;;-10663;LINEAR A SIGN A313A;Lo;0;L;;;;;N;;;;;-10664;LINEAR A SIGN A313B;Lo;0;L;;;;;N;;;;;-10665;LINEAR A SIGN A313C;Lo;0;L;;;;;N;;;;;-10666;LINEAR A SIGN A314;Lo;0;L;;;;;N;;;;;-10667;LINEAR A SIGN A315;Lo;0;L;;;;;N;;;;;-10668;LINEAR A SIGN A316;Lo;0;L;;;;;N;;;;;-10669;LINEAR A SIGN A317;Lo;0;L;;;;;N;;;;;-1066A;LINEAR A SIGN A318;Lo;0;L;;;;;N;;;;;-1066B;LINEAR A SIGN A319;Lo;0;L;;;;;N;;;;;-1066C;LINEAR A SIGN A320;Lo;0;L;;;;;N;;;;;-1066D;LINEAR A SIGN A321;Lo;0;L;;;;;N;;;;;-1066E;LINEAR A SIGN A322;Lo;0;L;;;;;N;;;;;-1066F;LINEAR A SIGN A323;Lo;0;L;;;;;N;;;;;-10670;LINEAR A SIGN A324;Lo;0;L;;;;;N;;;;;-10671;LINEAR A SIGN A325;Lo;0;L;;;;;N;;;;;-10672;LINEAR A SIGN A326;Lo;0;L;;;;;N;;;;;-10673;LINEAR A SIGN A327;Lo;0;L;;;;;N;;;;;-10674;LINEAR A SIGN A328;Lo;0;L;;;;;N;;;;;-10675;LINEAR A SIGN A329;Lo;0;L;;;;;N;;;;;-10676;LINEAR A SIGN A330;Lo;0;L;;;;;N;;;;;-10677;LINEAR A SIGN A331;Lo;0;L;;;;;N;;;;;-10678;LINEAR A SIGN A332;Lo;0;L;;;;;N;;;;;-10679;LINEAR A SIGN A333;Lo;0;L;;;;;N;;;;;-1067A;LINEAR A SIGN A334;Lo;0;L;;;;;N;;;;;-1067B;LINEAR A SIGN A335;Lo;0;L;;;;;N;;;;;-1067C;LINEAR A SIGN A336;Lo;0;L;;;;;N;;;;;-1067D;LINEAR A SIGN A337;Lo;0;L;;;;;N;;;;;-1067E;LINEAR A SIGN A338;Lo;0;L;;;;;N;;;;;-1067F;LINEAR A SIGN A339;Lo;0;L;;;;;N;;;;;-10680;LINEAR A SIGN A340;Lo;0;L;;;;;N;;;;;-10681;LINEAR A SIGN A341;Lo;0;L;;;;;N;;;;;-10682;LINEAR A SIGN A342;Lo;0;L;;;;;N;;;;;-10683;LINEAR A SIGN A343;Lo;0;L;;;;;N;;;;;-10684;LINEAR A SIGN A344;Lo;0;L;;;;;N;;;;;-10685;LINEAR A SIGN A345;Lo;0;L;;;;;N;;;;;-10686;LINEAR A SIGN A346;Lo;0;L;;;;;N;;;;;-10687;LINEAR A SIGN A347;Lo;0;L;;;;;N;;;;;-10688;LINEAR A SIGN A348;Lo;0;L;;;;;N;;;;;-10689;LINEAR A SIGN A349;Lo;0;L;;;;;N;;;;;-1068A;LINEAR A SIGN A350;Lo;0;L;;;;;N;;;;;-1068B;LINEAR A SIGN A351;Lo;0;L;;;;;N;;;;;-1068C;LINEAR A SIGN A352;Lo;0;L;;;;;N;;;;;-1068D;LINEAR A SIGN A353;Lo;0;L;;;;;N;;;;;-1068E;LINEAR A SIGN A354;Lo;0;L;;;;;N;;;;;-1068F;LINEAR A SIGN A355;Lo;0;L;;;;;N;;;;;-10690;LINEAR A SIGN A356;Lo;0;L;;;;;N;;;;;-10691;LINEAR A SIGN A357;Lo;0;L;;;;;N;;;;;-10692;LINEAR A SIGN A358;Lo;0;L;;;;;N;;;;;-10693;LINEAR A SIGN A359;Lo;0;L;;;;;N;;;;;-10694;LINEAR A SIGN A360;Lo;0;L;;;;;N;;;;;-10695;LINEAR A SIGN A361;Lo;0;L;;;;;N;;;;;-10696;LINEAR A SIGN A362;Lo;0;L;;;;;N;;;;;-10697;LINEAR A SIGN A363;Lo;0;L;;;;;N;;;;;-10698;LINEAR A SIGN A364;Lo;0;L;;;;;N;;;;;-10699;LINEAR A SIGN A365;Lo;0;L;;;;;N;;;;;-1069A;LINEAR A SIGN A366;Lo;0;L;;;;;N;;;;;-1069B;LINEAR A SIGN A367;Lo;0;L;;;;;N;;;;;-1069C;LINEAR A SIGN A368;Lo;0;L;;;;;N;;;;;-1069D;LINEAR A SIGN A369;Lo;0;L;;;;;N;;;;;-1069E;LINEAR A SIGN A370;Lo;0;L;;;;;N;;;;;-1069F;LINEAR A SIGN A371;Lo;0;L;;;;;N;;;;;-106A0;LINEAR A SIGN A400-VAS;Lo;0;L;;;;;N;;;;;-106A1;LINEAR A SIGN A401-VAS;Lo;0;L;;;;;N;;;;;-106A2;LINEAR A SIGN A402-VAS;Lo;0;L;;;;;N;;;;;-106A3;LINEAR A SIGN A403-VAS;Lo;0;L;;;;;N;;;;;-106A4;LINEAR A SIGN A404-VAS;Lo;0;L;;;;;N;;;;;-106A5;LINEAR A SIGN A405-VAS;Lo;0;L;;;;;N;;;;;-106A6;LINEAR A SIGN A406-VAS;Lo;0;L;;;;;N;;;;;-106A7;LINEAR A SIGN A407-VAS;Lo;0;L;;;;;N;;;;;-106A8;LINEAR A SIGN A408-VAS;Lo;0;L;;;;;N;;;;;-106A9;LINEAR A SIGN A409-VAS;Lo;0;L;;;;;N;;;;;-106AA;LINEAR A SIGN A410-VAS;Lo;0;L;;;;;N;;;;;-106AB;LINEAR A SIGN A411-VAS;Lo;0;L;;;;;N;;;;;-106AC;LINEAR A SIGN A412-VAS;Lo;0;L;;;;;N;;;;;-106AD;LINEAR A SIGN A413-VAS;Lo;0;L;;;;;N;;;;;-106AE;LINEAR A SIGN A414-VAS;Lo;0;L;;;;;N;;;;;-106AF;LINEAR A SIGN A415-VAS;Lo;0;L;;;;;N;;;;;-106B0;LINEAR A SIGN A416-VAS;Lo;0;L;;;;;N;;;;;-106B1;LINEAR A SIGN A417-VAS;Lo;0;L;;;;;N;;;;;-106B2;LINEAR A SIGN A418-VAS;Lo;0;L;;;;;N;;;;;-106B3;LINEAR A SIGN A501;Lo;0;L;;;;;N;;;;;-106B4;LINEAR A SIGN A502;Lo;0;L;;;;;N;;;;;-106B5;LINEAR A SIGN A503;Lo;0;L;;;;;N;;;;;-106B6;LINEAR A SIGN A504;Lo;0;L;;;;;N;;;;;-106B7;LINEAR A SIGN A505;Lo;0;L;;;;;N;;;;;-106B8;LINEAR A SIGN A506;Lo;0;L;;;;;N;;;;;-106B9;LINEAR A SIGN A508;Lo;0;L;;;;;N;;;;;-106BA;LINEAR A SIGN A509;Lo;0;L;;;;;N;;;;;-106BB;LINEAR A SIGN A510;Lo;0;L;;;;;N;;;;;-106BC;LINEAR A SIGN A511;Lo;0;L;;;;;N;;;;;-106BD;LINEAR A SIGN A512;Lo;0;L;;;;;N;;;;;-106BE;LINEAR A SIGN A513;Lo;0;L;;;;;N;;;;;-106BF;LINEAR A SIGN A515;Lo;0;L;;;;;N;;;;;-106C0;LINEAR A SIGN A516;Lo;0;L;;;;;N;;;;;-106C1;LINEAR A SIGN A520;Lo;0;L;;;;;N;;;;;-106C2;LINEAR A SIGN A521;Lo;0;L;;;;;N;;;;;-106C3;LINEAR A SIGN A523;Lo;0;L;;;;;N;;;;;-106C4;LINEAR A SIGN A524;Lo;0;L;;;;;N;;;;;-106C5;LINEAR A SIGN A525;Lo;0;L;;;;;N;;;;;-106C6;LINEAR A SIGN A526;Lo;0;L;;;;;N;;;;;-106C7;LINEAR A SIGN A527;Lo;0;L;;;;;N;;;;;-106C8;LINEAR A SIGN A528;Lo;0;L;;;;;N;;;;;-106C9;LINEAR A SIGN A529;Lo;0;L;;;;;N;;;;;-106CA;LINEAR A SIGN A530;Lo;0;L;;;;;N;;;;;-106CB;LINEAR A SIGN A531;Lo;0;L;;;;;N;;;;;-106CC;LINEAR A SIGN A532;Lo;0;L;;;;;N;;;;;-106CD;LINEAR A SIGN A534;Lo;0;L;;;;;N;;;;;-106CE;LINEAR A SIGN A535;Lo;0;L;;;;;N;;;;;-106CF;LINEAR A SIGN A536;Lo;0;L;;;;;N;;;;;-106D0;LINEAR A SIGN A537;Lo;0;L;;;;;N;;;;;-106D1;LINEAR A SIGN A538;Lo;0;L;;;;;N;;;;;-106D2;LINEAR A SIGN A539;Lo;0;L;;;;;N;;;;;-106D3;LINEAR A SIGN A540;Lo;0;L;;;;;N;;;;;-106D4;LINEAR A SIGN A541;Lo;0;L;;;;;N;;;;;-106D5;LINEAR A SIGN A542;Lo;0;L;;;;;N;;;;;-106D6;LINEAR A SIGN A545;Lo;0;L;;;;;N;;;;;-106D7;LINEAR A SIGN A547;Lo;0;L;;;;;N;;;;;-106D8;LINEAR A SIGN A548;Lo;0;L;;;;;N;;;;;-106D9;LINEAR A SIGN A549;Lo;0;L;;;;;N;;;;;-106DA;LINEAR A SIGN A550;Lo;0;L;;;;;N;;;;;-106DB;LINEAR A SIGN A551;Lo;0;L;;;;;N;;;;;-106DC;LINEAR A SIGN A552;Lo;0;L;;;;;N;;;;;-106DD;LINEAR A SIGN A553;Lo;0;L;;;;;N;;;;;-106DE;LINEAR A SIGN A554;Lo;0;L;;;;;N;;;;;-106DF;LINEAR A SIGN A555;Lo;0;L;;;;;N;;;;;-106E0;LINEAR A SIGN A556;Lo;0;L;;;;;N;;;;;-106E1;LINEAR A SIGN A557;Lo;0;L;;;;;N;;;;;-106E2;LINEAR A SIGN A559;Lo;0;L;;;;;N;;;;;-106E3;LINEAR A SIGN A563;Lo;0;L;;;;;N;;;;;-106E4;LINEAR A SIGN A564;Lo;0;L;;;;;N;;;;;-106E5;LINEAR A SIGN A565;Lo;0;L;;;;;N;;;;;-106E6;LINEAR A SIGN A566;Lo;0;L;;;;;N;;;;;-106E7;LINEAR A SIGN A568;Lo;0;L;;;;;N;;;;;-106E8;LINEAR A SIGN A569;Lo;0;L;;;;;N;;;;;-106E9;LINEAR A SIGN A570;Lo;0;L;;;;;N;;;;;-106EA;LINEAR A SIGN A571;Lo;0;L;;;;;N;;;;;-106EB;LINEAR A SIGN A572;Lo;0;L;;;;;N;;;;;-106EC;LINEAR A SIGN A573;Lo;0;L;;;;;N;;;;;-106ED;LINEAR A SIGN A574;Lo;0;L;;;;;N;;;;;-106EE;LINEAR A SIGN A575;Lo;0;L;;;;;N;;;;;-106EF;LINEAR A SIGN A576;Lo;0;L;;;;;N;;;;;-106F0;LINEAR A SIGN A577;Lo;0;L;;;;;N;;;;;-106F1;LINEAR A SIGN A578;Lo;0;L;;;;;N;;;;;-106F2;LINEAR A SIGN A579;Lo;0;L;;;;;N;;;;;-106F3;LINEAR A SIGN A580;Lo;0;L;;;;;N;;;;;-106F4;LINEAR A SIGN A581;Lo;0;L;;;;;N;;;;;-106F5;LINEAR A SIGN A582;Lo;0;L;;;;;N;;;;;-106F6;LINEAR A SIGN A583;Lo;0;L;;;;;N;;;;;-106F7;LINEAR A SIGN A584;Lo;0;L;;;;;N;;;;;-106F8;LINEAR A SIGN A585;Lo;0;L;;;;;N;;;;;-106F9;LINEAR A SIGN A586;Lo;0;L;;;;;N;;;;;-106FA;LINEAR A SIGN A587;Lo;0;L;;;;;N;;;;;-106FB;LINEAR A SIGN A588;Lo;0;L;;;;;N;;;;;-106FC;LINEAR A SIGN A589;Lo;0;L;;;;;N;;;;;-106FD;LINEAR A SIGN A591;Lo;0;L;;;;;N;;;;;-106FE;LINEAR A SIGN A592;Lo;0;L;;;;;N;;;;;-106FF;LINEAR A SIGN A594;Lo;0;L;;;;;N;;;;;-10700;LINEAR A SIGN A595;Lo;0;L;;;;;N;;;;;-10701;LINEAR A SIGN A596;Lo;0;L;;;;;N;;;;;-10702;LINEAR A SIGN A598;Lo;0;L;;;;;N;;;;;-10703;LINEAR A SIGN A600;Lo;0;L;;;;;N;;;;;-10704;LINEAR A SIGN A601;Lo;0;L;;;;;N;;;;;-10705;LINEAR A SIGN A602;Lo;0;L;;;;;N;;;;;-10706;LINEAR A SIGN A603;Lo;0;L;;;;;N;;;;;-10707;LINEAR A SIGN A604;Lo;0;L;;;;;N;;;;;-10708;LINEAR A SIGN A606;Lo;0;L;;;;;N;;;;;-10709;LINEAR A SIGN A608;Lo;0;L;;;;;N;;;;;-1070A;LINEAR A SIGN A609;Lo;0;L;;;;;N;;;;;-1070B;LINEAR A SIGN A610;Lo;0;L;;;;;N;;;;;-1070C;LINEAR A SIGN A611;Lo;0;L;;;;;N;;;;;-1070D;LINEAR A SIGN A612;Lo;0;L;;;;;N;;;;;-1070E;LINEAR A SIGN A613;Lo;0;L;;;;;N;;;;;-1070F;LINEAR A SIGN A614;Lo;0;L;;;;;N;;;;;-10710;LINEAR A SIGN A615;Lo;0;L;;;;;N;;;;;-10711;LINEAR A SIGN A616;Lo;0;L;;;;;N;;;;;-10712;LINEAR A SIGN A617;Lo;0;L;;;;;N;;;;;-10713;LINEAR A SIGN A618;Lo;0;L;;;;;N;;;;;-10714;LINEAR A SIGN A619;Lo;0;L;;;;;N;;;;;-10715;LINEAR A SIGN A620;Lo;0;L;;;;;N;;;;;-10716;LINEAR A SIGN A621;Lo;0;L;;;;;N;;;;;-10717;LINEAR A SIGN A622;Lo;0;L;;;;;N;;;;;-10718;LINEAR A SIGN A623;Lo;0;L;;;;;N;;;;;-10719;LINEAR A SIGN A624;Lo;0;L;;;;;N;;;;;-1071A;LINEAR A SIGN A626;Lo;0;L;;;;;N;;;;;-1071B;LINEAR A SIGN A627;Lo;0;L;;;;;N;;;;;-1071C;LINEAR A SIGN A628;Lo;0;L;;;;;N;;;;;-1071D;LINEAR A SIGN A629;Lo;0;L;;;;;N;;;;;-1071E;LINEAR A SIGN A634;Lo;0;L;;;;;N;;;;;-1071F;LINEAR A SIGN A637;Lo;0;L;;;;;N;;;;;-10720;LINEAR A SIGN A638;Lo;0;L;;;;;N;;;;;-10721;LINEAR A SIGN A640;Lo;0;L;;;;;N;;;;;-10722;LINEAR A SIGN A642;Lo;0;L;;;;;N;;;;;-10723;LINEAR A SIGN A643;Lo;0;L;;;;;N;;;;;-10724;LINEAR A SIGN A644;Lo;0;L;;;;;N;;;;;-10725;LINEAR A SIGN A645;Lo;0;L;;;;;N;;;;;-10726;LINEAR A SIGN A646;Lo;0;L;;;;;N;;;;;-10727;LINEAR A SIGN A648;Lo;0;L;;;;;N;;;;;-10728;LINEAR A SIGN A649;Lo;0;L;;;;;N;;;;;-10729;LINEAR A SIGN A651;Lo;0;L;;;;;N;;;;;-1072A;LINEAR A SIGN A652;Lo;0;L;;;;;N;;;;;-1072B;LINEAR A SIGN A653;Lo;0;L;;;;;N;;;;;-1072C;LINEAR A SIGN A654;Lo;0;L;;;;;N;;;;;-1072D;LINEAR A SIGN A655;Lo;0;L;;;;;N;;;;;-1072E;LINEAR A SIGN A656;Lo;0;L;;;;;N;;;;;-1072F;LINEAR A SIGN A657;Lo;0;L;;;;;N;;;;;-10730;LINEAR A SIGN A658;Lo;0;L;;;;;N;;;;;-10731;LINEAR A SIGN A659;Lo;0;L;;;;;N;;;;;-10732;LINEAR A SIGN A660;Lo;0;L;;;;;N;;;;;-10733;LINEAR A SIGN A661;Lo;0;L;;;;;N;;;;;-10734;LINEAR A SIGN A662;Lo;0;L;;;;;N;;;;;-10735;LINEAR A SIGN A663;Lo;0;L;;;;;N;;;;;-10736;LINEAR A SIGN A664;Lo;0;L;;;;;N;;;;;-10740;LINEAR A SIGN A701 A;Lo;0;L;;;;;N;;;;;-10741;LINEAR A SIGN A702 B;Lo;0;L;;;;;N;;;;;-10742;LINEAR A SIGN A703 D;Lo;0;L;;;;;N;;;;;-10743;LINEAR A SIGN A704 E;Lo;0;L;;;;;N;;;;;-10744;LINEAR A SIGN A705 F;Lo;0;L;;;;;N;;;;;-10745;LINEAR A SIGN A706 H;Lo;0;L;;;;;N;;;;;-10746;LINEAR A SIGN A707 J;Lo;0;L;;;;;N;;;;;-10747;LINEAR A SIGN A708 K;Lo;0;L;;;;;N;;;;;-10748;LINEAR A SIGN A709 L;Lo;0;L;;;;;N;;;;;-10749;LINEAR A SIGN A709-2 L2;Lo;0;L;;;;;N;;;;;-1074A;LINEAR A SIGN A709-3 L3;Lo;0;L;;;;;N;;;;;-1074B;LINEAR A SIGN A709-4 L4;Lo;0;L;;;;;N;;;;;-1074C;LINEAR A SIGN A709-6 L6;Lo;0;L;;;;;N;;;;;-1074D;LINEAR A SIGN A710 W;Lo;0;L;;;;;N;;;;;-1074E;LINEAR A SIGN A711 X;Lo;0;L;;;;;N;;;;;-1074F;LINEAR A SIGN A712 Y;Lo;0;L;;;;;N;;;;;-10750;LINEAR A SIGN A713 OMEGA;Lo;0;L;;;;;N;;;;;-10751;LINEAR A SIGN A714 ABB;Lo;0;L;;;;;N;;;;;-10752;LINEAR A SIGN A715 BB;Lo;0;L;;;;;N;;;;;-10753;LINEAR A SIGN A717 DD;Lo;0;L;;;;;N;;;;;-10754;LINEAR A SIGN A726 EYYY;Lo;0;L;;;;;N;;;;;-10755;LINEAR A SIGN A732 JE;Lo;0;L;;;;;N;;;;;-10760;LINEAR A SIGN A800;Lo;0;L;;;;;N;;;;;-10761;LINEAR A SIGN A801;Lo;0;L;;;;;N;;;;;-10762;LINEAR A SIGN A802;Lo;0;L;;;;;N;;;;;-10763;LINEAR A SIGN A803;Lo;0;L;;;;;N;;;;;-10764;LINEAR A SIGN A804;Lo;0;L;;;;;N;;;;;-10765;LINEAR A SIGN A805;Lo;0;L;;;;;N;;;;;-10766;LINEAR A SIGN A806;Lo;0;L;;;;;N;;;;;-10767;LINEAR A SIGN A807;Lo;0;L;;;;;N;;;;;-10800;CYPRIOT SYLLABLE A;Lo;0;R;;;;;N;;;;;-10801;CYPRIOT SYLLABLE E;Lo;0;R;;;;;N;;;;;-10802;CYPRIOT SYLLABLE I;Lo;0;R;;;;;N;;;;;-10803;CYPRIOT SYLLABLE O;Lo;0;R;;;;;N;;;;;-10804;CYPRIOT SYLLABLE U;Lo;0;R;;;;;N;;;;;-10805;CYPRIOT SYLLABLE JA;Lo;0;R;;;;;N;;;;;-10808;CYPRIOT SYLLABLE JO;Lo;0;R;;;;;N;;;;;-1080A;CYPRIOT SYLLABLE KA;Lo;0;R;;;;;N;;;;;-1080B;CYPRIOT SYLLABLE KE;Lo;0;R;;;;;N;;;;;-1080C;CYPRIOT SYLLABLE KI;Lo;0;R;;;;;N;;;;;-1080D;CYPRIOT SYLLABLE KO;Lo;0;R;;;;;N;;;;;-1080E;CYPRIOT SYLLABLE KU;Lo;0;R;;;;;N;;;;;-1080F;CYPRIOT SYLLABLE LA;Lo;0;R;;;;;N;;;;;-10810;CYPRIOT SYLLABLE LE;Lo;0;R;;;;;N;;;;;-10811;CYPRIOT SYLLABLE LI;Lo;0;R;;;;;N;;;;;-10812;CYPRIOT SYLLABLE LO;Lo;0;R;;;;;N;;;;;-10813;CYPRIOT SYLLABLE LU;Lo;0;R;;;;;N;;;;;-10814;CYPRIOT SYLLABLE MA;Lo;0;R;;;;;N;;;;;-10815;CYPRIOT SYLLABLE ME;Lo;0;R;;;;;N;;;;;-10816;CYPRIOT SYLLABLE MI;Lo;0;R;;;;;N;;;;;-10817;CYPRIOT SYLLABLE MO;Lo;0;R;;;;;N;;;;;-10818;CYPRIOT SYLLABLE MU;Lo;0;R;;;;;N;;;;;-10819;CYPRIOT SYLLABLE NA;Lo;0;R;;;;;N;;;;;-1081A;CYPRIOT SYLLABLE NE;Lo;0;R;;;;;N;;;;;-1081B;CYPRIOT SYLLABLE NI;Lo;0;R;;;;;N;;;;;-1081C;CYPRIOT SYLLABLE NO;Lo;0;R;;;;;N;;;;;-1081D;CYPRIOT SYLLABLE NU;Lo;0;R;;;;;N;;;;;-1081E;CYPRIOT SYLLABLE PA;Lo;0;R;;;;;N;;;;;-1081F;CYPRIOT SYLLABLE PE;Lo;0;R;;;;;N;;;;;-10820;CYPRIOT SYLLABLE PI;Lo;0;R;;;;;N;;;;;-10821;CYPRIOT SYLLABLE PO;Lo;0;R;;;;;N;;;;;-10822;CYPRIOT SYLLABLE PU;Lo;0;R;;;;;N;;;;;-10823;CYPRIOT SYLLABLE RA;Lo;0;R;;;;;N;;;;;-10824;CYPRIOT SYLLABLE RE;Lo;0;R;;;;;N;;;;;-10825;CYPRIOT SYLLABLE RI;Lo;0;R;;;;;N;;;;;-10826;CYPRIOT SYLLABLE RO;Lo;0;R;;;;;N;;;;;-10827;CYPRIOT SYLLABLE RU;Lo;0;R;;;;;N;;;;;-10828;CYPRIOT SYLLABLE SA;Lo;0;R;;;;;N;;;;;-10829;CYPRIOT SYLLABLE SE;Lo;0;R;;;;;N;;;;;-1082A;CYPRIOT SYLLABLE SI;Lo;0;R;;;;;N;;;;;-1082B;CYPRIOT SYLLABLE SO;Lo;0;R;;;;;N;;;;;-1082C;CYPRIOT SYLLABLE SU;Lo;0;R;;;;;N;;;;;-1082D;CYPRIOT SYLLABLE TA;Lo;0;R;;;;;N;;;;;-1082E;CYPRIOT SYLLABLE TE;Lo;0;R;;;;;N;;;;;-1082F;CYPRIOT SYLLABLE TI;Lo;0;R;;;;;N;;;;;-10830;CYPRIOT SYLLABLE TO;Lo;0;R;;;;;N;;;;;-10831;CYPRIOT SYLLABLE TU;Lo;0;R;;;;;N;;;;;-10832;CYPRIOT SYLLABLE WA;Lo;0;R;;;;;N;;;;;-10833;CYPRIOT SYLLABLE WE;Lo;0;R;;;;;N;;;;;-10834;CYPRIOT SYLLABLE WI;Lo;0;R;;;;;N;;;;;-10835;CYPRIOT SYLLABLE WO;Lo;0;R;;;;;N;;;;;-10837;CYPRIOT SYLLABLE XA;Lo;0;R;;;;;N;;;;;-10838;CYPRIOT SYLLABLE XE;Lo;0;R;;;;;N;;;;;-1083C;CYPRIOT SYLLABLE ZA;Lo;0;R;;;;;N;;;;;-1083F;CYPRIOT SYLLABLE ZO;Lo;0;R;;;;;N;;;;;-10840;IMPERIAL ARAMAIC LETTER ALEPH;Lo;0;R;;;;;N;;;;;-10841;IMPERIAL ARAMAIC LETTER BETH;Lo;0;R;;;;;N;;;;;-10842;IMPERIAL ARAMAIC LETTER GIMEL;Lo;0;R;;;;;N;;;;;-10843;IMPERIAL ARAMAIC LETTER DALETH;Lo;0;R;;;;;N;;;;;-10844;IMPERIAL ARAMAIC LETTER HE;Lo;0;R;;;;;N;;;;;-10845;IMPERIAL ARAMAIC LETTER WAW;Lo;0;R;;;;;N;;;;;-10846;IMPERIAL ARAMAIC LETTER ZAYIN;Lo;0;R;;;;;N;;;;;-10847;IMPERIAL ARAMAIC LETTER HETH;Lo;0;R;;;;;N;;;;;-10848;IMPERIAL ARAMAIC LETTER TETH;Lo;0;R;;;;;N;;;;;-10849;IMPERIAL ARAMAIC LETTER YODH;Lo;0;R;;;;;N;;;;;-1084A;IMPERIAL ARAMAIC LETTER KAPH;Lo;0;R;;;;;N;;;;;-1084B;IMPERIAL ARAMAIC LETTER LAMEDH;Lo;0;R;;;;;N;;;;;-1084C;IMPERIAL ARAMAIC LETTER MEM;Lo;0;R;;;;;N;;;;;-1084D;IMPERIAL ARAMAIC LETTER NUN;Lo;0;R;;;;;N;;;;;-1084E;IMPERIAL ARAMAIC LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-1084F;IMPERIAL ARAMAIC LETTER AYIN;Lo;0;R;;;;;N;;;;;-10850;IMPERIAL ARAMAIC LETTER PE;Lo;0;R;;;;;N;;;;;-10851;IMPERIAL ARAMAIC LETTER SADHE;Lo;0;R;;;;;N;;;;;-10852;IMPERIAL ARAMAIC LETTER QOPH;Lo;0;R;;;;;N;;;;;-10853;IMPERIAL ARAMAIC LETTER RESH;Lo;0;R;;;;;N;;;;;-10854;IMPERIAL ARAMAIC LETTER SHIN;Lo;0;R;;;;;N;;;;;-10855;IMPERIAL ARAMAIC LETTER TAW;Lo;0;R;;;;;N;;;;;-10857;IMPERIAL ARAMAIC SECTION SIGN;Po;0;R;;;;;N;;;;;-10858;IMPERIAL ARAMAIC NUMBER ONE;No;0;R;;;;1;N;;;;;-10859;IMPERIAL ARAMAIC NUMBER TWO;No;0;R;;;;2;N;;;;;-1085A;IMPERIAL ARAMAIC NUMBER THREE;No;0;R;;;;3;N;;;;;-1085B;IMPERIAL ARAMAIC NUMBER TEN;No;0;R;;;;10;N;;;;;-1085C;IMPERIAL ARAMAIC NUMBER TWENTY;No;0;R;;;;20;N;;;;;-1085D;IMPERIAL ARAMAIC NUMBER ONE HUNDRED;No;0;R;;;;100;N;;;;;-1085E;IMPERIAL ARAMAIC NUMBER ONE THOUSAND;No;0;R;;;;1000;N;;;;;-1085F;IMPERIAL ARAMAIC NUMBER TEN THOUSAND;No;0;R;;;;10000;N;;;;;-10860;PALMYRENE LETTER ALEPH;Lo;0;R;;;;;N;;;;;-10861;PALMYRENE LETTER BETH;Lo;0;R;;;;;N;;;;;-10862;PALMYRENE LETTER GIMEL;Lo;0;R;;;;;N;;;;;-10863;PALMYRENE LETTER DALETH;Lo;0;R;;;;;N;;;;;-10864;PALMYRENE LETTER HE;Lo;0;R;;;;;N;;;;;-10865;PALMYRENE LETTER WAW;Lo;0;R;;;;;N;;;;;-10866;PALMYRENE LETTER ZAYIN;Lo;0;R;;;;;N;;;;;-10867;PALMYRENE LETTER HETH;Lo;0;R;;;;;N;;;;;-10868;PALMYRENE LETTER TETH;Lo;0;R;;;;;N;;;;;-10869;PALMYRENE LETTER YODH;Lo;0;R;;;;;N;;;;;-1086A;PALMYRENE LETTER KAPH;Lo;0;R;;;;;N;;;;;-1086B;PALMYRENE LETTER LAMEDH;Lo;0;R;;;;;N;;;;;-1086C;PALMYRENE LETTER MEM;Lo;0;R;;;;;N;;;;;-1086D;PALMYRENE LETTER FINAL NUN;Lo;0;R;;;;;N;;;;;-1086E;PALMYRENE LETTER NUN;Lo;0;R;;;;;N;;;;;-1086F;PALMYRENE LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-10870;PALMYRENE LETTER AYIN;Lo;0;R;;;;;N;;;;;-10871;PALMYRENE LETTER PE;Lo;0;R;;;;;N;;;;;-10872;PALMYRENE LETTER SADHE;Lo;0;R;;;;;N;;;;;-10873;PALMYRENE LETTER QOPH;Lo;0;R;;;;;N;;;;;-10874;PALMYRENE LETTER RESH;Lo;0;R;;;;;N;;;;;-10875;PALMYRENE LETTER SHIN;Lo;0;R;;;;;N;;;;;-10876;PALMYRENE LETTER TAW;Lo;0;R;;;;;N;;;;;-10877;PALMYRENE LEFT-POINTING FLEURON;So;0;R;;;;;N;;;;;-10878;PALMYRENE RIGHT-POINTING FLEURON;So;0;R;;;;;N;;;;;-10879;PALMYRENE NUMBER ONE;No;0;R;;;;1;N;;;;;-1087A;PALMYRENE NUMBER TWO;No;0;R;;;;2;N;;;;;-1087B;PALMYRENE NUMBER THREE;No;0;R;;;;3;N;;;;;-1087C;PALMYRENE NUMBER FOUR;No;0;R;;;;4;N;;;;;-1087D;PALMYRENE NUMBER FIVE;No;0;R;;;;5;N;;;;;-1087E;PALMYRENE NUMBER TEN;No;0;R;;;;10;N;;;;;-1087F;PALMYRENE NUMBER TWENTY;No;0;R;;;;20;N;;;;;-10880;NABATAEAN LETTER FINAL ALEPH;Lo;0;R;;;;;N;;;;;-10881;NABATAEAN LETTER ALEPH;Lo;0;R;;;;;N;;;;;-10882;NABATAEAN LETTER FINAL BETH;Lo;0;R;;;;;N;;;;;-10883;NABATAEAN LETTER BETH;Lo;0;R;;;;;N;;;;;-10884;NABATAEAN LETTER GIMEL;Lo;0;R;;;;;N;;;;;-10885;NABATAEAN LETTER DALETH;Lo;0;R;;;;;N;;;;;-10886;NABATAEAN LETTER FINAL HE;Lo;0;R;;;;;N;;;;;-10887;NABATAEAN LETTER HE;Lo;0;R;;;;;N;;;;;-10888;NABATAEAN LETTER WAW;Lo;0;R;;;;;N;;;;;-10889;NABATAEAN LETTER ZAYIN;Lo;0;R;;;;;N;;;;;-1088A;NABATAEAN LETTER HETH;Lo;0;R;;;;;N;;;;;-1088B;NABATAEAN LETTER TETH;Lo;0;R;;;;;N;;;;;-1088C;NABATAEAN LETTER FINAL YODH;Lo;0;R;;;;;N;;;;;-1088D;NABATAEAN LETTER YODH;Lo;0;R;;;;;N;;;;;-1088E;NABATAEAN LETTER FINAL KAPH;Lo;0;R;;;;;N;;;;;-1088F;NABATAEAN LETTER KAPH;Lo;0;R;;;;;N;;;;;-10890;NABATAEAN LETTER FINAL LAMEDH;Lo;0;R;;;;;N;;;;;-10891;NABATAEAN LETTER LAMEDH;Lo;0;R;;;;;N;;;;;-10892;NABATAEAN LETTER FINAL MEM;Lo;0;R;;;;;N;;;;;-10893;NABATAEAN LETTER MEM;Lo;0;R;;;;;N;;;;;-10894;NABATAEAN LETTER FINAL NUN;Lo;0;R;;;;;N;;;;;-10895;NABATAEAN LETTER NUN;Lo;0;R;;;;;N;;;;;-10896;NABATAEAN LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-10897;NABATAEAN LETTER AYIN;Lo;0;R;;;;;N;;;;;-10898;NABATAEAN LETTER PE;Lo;0;R;;;;;N;;;;;-10899;NABATAEAN LETTER SADHE;Lo;0;R;;;;;N;;;;;-1089A;NABATAEAN LETTER QOPH;Lo;0;R;;;;;N;;;;;-1089B;NABATAEAN LETTER RESH;Lo;0;R;;;;;N;;;;;-1089C;NABATAEAN LETTER FINAL SHIN;Lo;0;R;;;;;N;;;;;-1089D;NABATAEAN LETTER SHIN;Lo;0;R;;;;;N;;;;;-1089E;NABATAEAN LETTER TAW;Lo;0;R;;;;;N;;;;;-108A7;NABATAEAN NUMBER ONE;No;0;R;;;;1;N;;;;;-108A8;NABATAEAN NUMBER TWO;No;0;R;;;;2;N;;;;;-108A9;NABATAEAN NUMBER THREE;No;0;R;;;;3;N;;;;;-108AA;NABATAEAN NUMBER FOUR;No;0;R;;;;4;N;;;;;-108AB;NABATAEAN CRUCIFORM NUMBER FOUR;No;0;R;;;;4;N;;;;;-108AC;NABATAEAN NUMBER FIVE;No;0;R;;;;5;N;;;;;-108AD;NABATAEAN NUMBER TEN;No;0;R;;;;10;N;;;;;-108AE;NABATAEAN NUMBER TWENTY;No;0;R;;;;20;N;;;;;-108AF;NABATAEAN NUMBER ONE HUNDRED;No;0;R;;;;100;N;;;;;-10900;PHOENICIAN LETTER ALF;Lo;0;R;;;;;N;;;;;-10901;PHOENICIAN LETTER BET;Lo;0;R;;;;;N;;;;;-10902;PHOENICIAN LETTER GAML;Lo;0;R;;;;;N;;;;;-10903;PHOENICIAN LETTER DELT;Lo;0;R;;;;;N;;;;;-10904;PHOENICIAN LETTER HE;Lo;0;R;;;;;N;;;;;-10905;PHOENICIAN LETTER WAU;Lo;0;R;;;;;N;;;;;-10906;PHOENICIAN LETTER ZAI;Lo;0;R;;;;;N;;;;;-10907;PHOENICIAN LETTER HET;Lo;0;R;;;;;N;;;;;-10908;PHOENICIAN LETTER TET;Lo;0;R;;;;;N;;;;;-10909;PHOENICIAN LETTER YOD;Lo;0;R;;;;;N;;;;;-1090A;PHOENICIAN LETTER KAF;Lo;0;R;;;;;N;;;;;-1090B;PHOENICIAN LETTER LAMD;Lo;0;R;;;;;N;;;;;-1090C;PHOENICIAN LETTER MEM;Lo;0;R;;;;;N;;;;;-1090D;PHOENICIAN LETTER NUN;Lo;0;R;;;;;N;;;;;-1090E;PHOENICIAN LETTER SEMK;Lo;0;R;;;;;N;;;;;-1090F;PHOENICIAN LETTER AIN;Lo;0;R;;;;;N;;;;;-10910;PHOENICIAN LETTER PE;Lo;0;R;;;;;N;;;;;-10911;PHOENICIAN LETTER SADE;Lo;0;R;;;;;N;;;;;-10912;PHOENICIAN LETTER QOF;Lo;0;R;;;;;N;;;;;-10913;PHOENICIAN LETTER ROSH;Lo;0;R;;;;;N;;;;;-10914;PHOENICIAN LETTER SHIN;Lo;0;R;;;;;N;;;;;-10915;PHOENICIAN LETTER TAU;Lo;0;R;;;;;N;;;;;-10916;PHOENICIAN NUMBER ONE;No;0;R;;;;1;N;;;;;-10917;PHOENICIAN NUMBER TEN;No;0;R;;;;10;N;;;;;-10918;PHOENICIAN NUMBER TWENTY;No;0;R;;;;20;N;;;;;-10919;PHOENICIAN NUMBER ONE HUNDRED;No;0;R;;;;100;N;;;;;-1091A;PHOENICIAN NUMBER TWO;No;0;R;;;;2;N;;;;;-1091B;PHOENICIAN NUMBER THREE;No;0;R;;;;3;N;;;;;-1091F;PHOENICIAN WORD SEPARATOR;Po;0;ON;;;;;N;;;;;-10920;LYDIAN LETTER A;Lo;0;R;;;;;N;;;;;-10921;LYDIAN LETTER B;Lo;0;R;;;;;N;;;;;-10922;LYDIAN LETTER G;Lo;0;R;;;;;N;;;;;-10923;LYDIAN LETTER D;Lo;0;R;;;;;N;;;;;-10924;LYDIAN LETTER E;Lo;0;R;;;;;N;;;;;-10925;LYDIAN LETTER V;Lo;0;R;;;;;N;;;;;-10926;LYDIAN LETTER I;Lo;0;R;;;;;N;;;;;-10927;LYDIAN LETTER Y;Lo;0;R;;;;;N;;;;;-10928;LYDIAN LETTER K;Lo;0;R;;;;;N;;;;;-10929;LYDIAN LETTER L;Lo;0;R;;;;;N;;;;;-1092A;LYDIAN LETTER M;Lo;0;R;;;;;N;;;;;-1092B;LYDIAN LETTER N;Lo;0;R;;;;;N;;;;;-1092C;LYDIAN LETTER O;Lo;0;R;;;;;N;;;;;-1092D;LYDIAN LETTER R;Lo;0;R;;;;;N;;;;;-1092E;LYDIAN LETTER SS;Lo;0;R;;;;;N;;;;;-1092F;LYDIAN LETTER T;Lo;0;R;;;;;N;;;;;-10930;LYDIAN LETTER U;Lo;0;R;;;;;N;;;;;-10931;LYDIAN LETTER F;Lo;0;R;;;;;N;;;;;-10932;LYDIAN LETTER Q;Lo;0;R;;;;;N;;;;;-10933;LYDIAN LETTER S;Lo;0;R;;;;;N;;;;;-10934;LYDIAN LETTER TT;Lo;0;R;;;;;N;;;;;-10935;LYDIAN LETTER AN;Lo;0;R;;;;;N;;;;;-10936;LYDIAN LETTER EN;Lo;0;R;;;;;N;;;;;-10937;LYDIAN LETTER LY;Lo;0;R;;;;;N;;;;;-10938;LYDIAN LETTER NN;Lo;0;R;;;;;N;;;;;-10939;LYDIAN LETTER C;Lo;0;R;;;;;N;;;;;-1093F;LYDIAN TRIANGULAR MARK;Po;0;R;;;;;N;;;;;-10980;MEROITIC HIEROGLYPHIC LETTER A;Lo;0;R;;;;;N;;;;;-10981;MEROITIC HIEROGLYPHIC LETTER E;Lo;0;R;;;;;N;;;;;-10982;MEROITIC HIEROGLYPHIC LETTER I;Lo;0;R;;;;;N;;;;;-10983;MEROITIC HIEROGLYPHIC LETTER O;Lo;0;R;;;;;N;;;;;-10984;MEROITIC HIEROGLYPHIC LETTER YA;Lo;0;R;;;;;N;;;;;-10985;MEROITIC HIEROGLYPHIC LETTER WA;Lo;0;R;;;;;N;;;;;-10986;MEROITIC HIEROGLYPHIC LETTER BA;Lo;0;R;;;;;N;;;;;-10987;MEROITIC HIEROGLYPHIC LETTER BA-2;Lo;0;R;;;;;N;;;;;-10988;MEROITIC HIEROGLYPHIC LETTER PA;Lo;0;R;;;;;N;;;;;-10989;MEROITIC HIEROGLYPHIC LETTER MA;Lo;0;R;;;;;N;;;;;-1098A;MEROITIC HIEROGLYPHIC LETTER NA;Lo;0;R;;;;;N;;;;;-1098B;MEROITIC HIEROGLYPHIC LETTER NA-2;Lo;0;R;;;;;N;;;;;-1098C;MEROITIC HIEROGLYPHIC LETTER NE;Lo;0;R;;;;;N;;;;;-1098D;MEROITIC HIEROGLYPHIC LETTER NE-2;Lo;0;R;;;;;N;;;;;-1098E;MEROITIC HIEROGLYPHIC LETTER RA;Lo;0;R;;;;;N;;;;;-1098F;MEROITIC HIEROGLYPHIC LETTER RA-2;Lo;0;R;;;;;N;;;;;-10990;MEROITIC HIEROGLYPHIC LETTER LA;Lo;0;R;;;;;N;;;;;-10991;MEROITIC HIEROGLYPHIC LETTER KHA;Lo;0;R;;;;;N;;;;;-10992;MEROITIC HIEROGLYPHIC LETTER HHA;Lo;0;R;;;;;N;;;;;-10993;MEROITIC HIEROGLYPHIC LETTER SA;Lo;0;R;;;;;N;;;;;-10994;MEROITIC HIEROGLYPHIC LETTER SA-2;Lo;0;R;;;;;N;;;;;-10995;MEROITIC HIEROGLYPHIC LETTER SE;Lo;0;R;;;;;N;;;;;-10996;MEROITIC HIEROGLYPHIC LETTER KA;Lo;0;R;;;;;N;;;;;-10997;MEROITIC HIEROGLYPHIC LETTER QA;Lo;0;R;;;;;N;;;;;-10998;MEROITIC HIEROGLYPHIC LETTER TA;Lo;0;R;;;;;N;;;;;-10999;MEROITIC HIEROGLYPHIC LETTER TA-2;Lo;0;R;;;;;N;;;;;-1099A;MEROITIC HIEROGLYPHIC LETTER TE;Lo;0;R;;;;;N;;;;;-1099B;MEROITIC HIEROGLYPHIC LETTER TE-2;Lo;0;R;;;;;N;;;;;-1099C;MEROITIC HIEROGLYPHIC LETTER TO;Lo;0;R;;;;;N;;;;;-1099D;MEROITIC HIEROGLYPHIC LETTER DA;Lo;0;R;;;;;N;;;;;-1099E;MEROITIC HIEROGLYPHIC SYMBOL VIDJ;Lo;0;R;;;;;N;;;;;-1099F;MEROITIC HIEROGLYPHIC SYMBOL VIDJ-2;Lo;0;R;;;;;N;;;;;-109A0;MEROITIC CURSIVE LETTER A;Lo;0;R;;;;;N;;;;;-109A1;MEROITIC CURSIVE LETTER E;Lo;0;R;;;;;N;;;;;-109A2;MEROITIC CURSIVE LETTER I;Lo;0;R;;;;;N;;;;;-109A3;MEROITIC CURSIVE LETTER O;Lo;0;R;;;;;N;;;;;-109A4;MEROITIC CURSIVE LETTER YA;Lo;0;R;;;;;N;;;;;-109A5;MEROITIC CURSIVE LETTER WA;Lo;0;R;;;;;N;;;;;-109A6;MEROITIC CURSIVE LETTER BA;Lo;0;R;;;;;N;;;;;-109A7;MEROITIC CURSIVE LETTER PA;Lo;0;R;;;;;N;;;;;-109A8;MEROITIC CURSIVE LETTER MA;Lo;0;R;;;;;N;;;;;-109A9;MEROITIC CURSIVE LETTER NA;Lo;0;R;;;;;N;;;;;-109AA;MEROITIC CURSIVE LETTER NE;Lo;0;R;;;;;N;;;;;-109AB;MEROITIC CURSIVE LETTER RA;Lo;0;R;;;;;N;;;;;-109AC;MEROITIC CURSIVE LETTER LA;Lo;0;R;;;;;N;;;;;-109AD;MEROITIC CURSIVE LETTER KHA;Lo;0;R;;;;;N;;;;;-109AE;MEROITIC CURSIVE LETTER HHA;Lo;0;R;;;;;N;;;;;-109AF;MEROITIC CURSIVE LETTER SA;Lo;0;R;;;;;N;;;;;-109B0;MEROITIC CURSIVE LETTER ARCHAIC SA;Lo;0;R;;;;;N;;;;;-109B1;MEROITIC CURSIVE LETTER SE;Lo;0;R;;;;;N;;;;;-109B2;MEROITIC CURSIVE LETTER KA;Lo;0;R;;;;;N;;;;;-109B3;MEROITIC CURSIVE LETTER QA;Lo;0;R;;;;;N;;;;;-109B4;MEROITIC CURSIVE LETTER TA;Lo;0;R;;;;;N;;;;;-109B5;MEROITIC CURSIVE LETTER TE;Lo;0;R;;;;;N;;;;;-109B6;MEROITIC CURSIVE LETTER TO;Lo;0;R;;;;;N;;;;;-109B7;MEROITIC CURSIVE LETTER DA;Lo;0;R;;;;;N;;;;;-109BE;MEROITIC CURSIVE LOGOGRAM RMT;Lo;0;R;;;;;N;;;;;-109BF;MEROITIC CURSIVE LOGOGRAM IMN;Lo;0;R;;;;;N;;;;;-10A00;KHAROSHTHI LETTER A;Lo;0;R;;;;;N;;;;;-10A01;KHAROSHTHI VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-10A02;KHAROSHTHI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-10A03;KHAROSHTHI VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-10A05;KHAROSHTHI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-10A06;KHAROSHTHI VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-10A0C;KHAROSHTHI VOWEL LENGTH MARK;Mn;0;NSM;;;;;N;;;;;-10A0D;KHAROSHTHI SIGN DOUBLE RING BELOW;Mn;220;NSM;;;;;N;;;;;-10A0E;KHAROSHTHI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-10A0F;KHAROSHTHI SIGN VISARGA;Mn;230;NSM;;;;;N;;;;;-10A10;KHAROSHTHI LETTER KA;Lo;0;R;;;;;N;;;;;-10A11;KHAROSHTHI LETTER KHA;Lo;0;R;;;;;N;;;;;-10A12;KHAROSHTHI LETTER GA;Lo;0;R;;;;;N;;;;;-10A13;KHAROSHTHI LETTER GHA;Lo;0;R;;;;;N;;;;;-10A15;KHAROSHTHI LETTER CA;Lo;0;R;;;;;N;;;;;-10A16;KHAROSHTHI LETTER CHA;Lo;0;R;;;;;N;;;;;-10A17;KHAROSHTHI LETTER JA;Lo;0;R;;;;;N;;;;;-10A19;KHAROSHTHI LETTER NYA;Lo;0;R;;;;;N;;;;;-10A1A;KHAROSHTHI LETTER TTA;Lo;0;R;;;;;N;;;;;-10A1B;KHAROSHTHI LETTER TTHA;Lo;0;R;;;;;N;;;;;-10A1C;KHAROSHTHI LETTER DDA;Lo;0;R;;;;;N;;;;;-10A1D;KHAROSHTHI LETTER DDHA;Lo;0;R;;;;;N;;;;;-10A1E;KHAROSHTHI LETTER NNA;Lo;0;R;;;;;N;;;;;-10A1F;KHAROSHTHI LETTER TA;Lo;0;R;;;;;N;;;;;-10A20;KHAROSHTHI LETTER THA;Lo;0;R;;;;;N;;;;;-10A21;KHAROSHTHI LETTER DA;Lo;0;R;;;;;N;;;;;-10A22;KHAROSHTHI LETTER DHA;Lo;0;R;;;;;N;;;;;-10A23;KHAROSHTHI LETTER NA;Lo;0;R;;;;;N;;;;;-10A24;KHAROSHTHI LETTER PA;Lo;0;R;;;;;N;;;;;-10A25;KHAROSHTHI LETTER PHA;Lo;0;R;;;;;N;;;;;-10A26;KHAROSHTHI LETTER BA;Lo;0;R;;;;;N;;;;;-10A27;KHAROSHTHI LETTER BHA;Lo;0;R;;;;;N;;;;;-10A28;KHAROSHTHI LETTER MA;Lo;0;R;;;;;N;;;;;-10A29;KHAROSHTHI LETTER YA;Lo;0;R;;;;;N;;;;;-10A2A;KHAROSHTHI LETTER RA;Lo;0;R;;;;;N;;;;;-10A2B;KHAROSHTHI LETTER LA;Lo;0;R;;;;;N;;;;;-10A2C;KHAROSHTHI LETTER VA;Lo;0;R;;;;;N;;;;;-10A2D;KHAROSHTHI LETTER SHA;Lo;0;R;;;;;N;;;;;-10A2E;KHAROSHTHI LETTER SSA;Lo;0;R;;;;;N;;;;;-10A2F;KHAROSHTHI LETTER SA;Lo;0;R;;;;;N;;;;;-10A30;KHAROSHTHI LETTER ZA;Lo;0;R;;;;;N;;;;;-10A31;KHAROSHTHI LETTER HA;Lo;0;R;;;;;N;;;;;-10A32;KHAROSHTHI LETTER KKA;Lo;0;R;;;;;N;;;;;-10A33;KHAROSHTHI LETTER TTTHA;Lo;0;R;;;;;N;;;;;-10A38;KHAROSHTHI SIGN BAR ABOVE;Mn;230;NSM;;;;;N;;;;;-10A39;KHAROSHTHI SIGN CAUDA;Mn;1;NSM;;;;;N;;;;;-10A3A;KHAROSHTHI SIGN DOT BELOW;Mn;220;NSM;;;;;N;;;;;-10A3F;KHAROSHTHI VIRAMA;Mn;9;NSM;;;;;N;;;;;-10A40;KHAROSHTHI DIGIT ONE;No;0;R;;;1;1;N;;;;;-10A41;KHAROSHTHI DIGIT TWO;No;0;R;;;2;2;N;;;;;-10A42;KHAROSHTHI DIGIT THREE;No;0;R;;;3;3;N;;;;;-10A43;KHAROSHTHI DIGIT FOUR;No;0;R;;;4;4;N;;;;;-10A44;KHAROSHTHI NUMBER TEN;No;0;R;;;;10;N;;;;;-10A45;KHAROSHTHI NUMBER TWENTY;No;0;R;;;;20;N;;;;;-10A46;KHAROSHTHI NUMBER ONE HUNDRED;No;0;R;;;;100;N;;;;;-10A47;KHAROSHTHI NUMBER ONE THOUSAND;No;0;R;;;;1000;N;;;;;-10A50;KHAROSHTHI PUNCTUATION DOT;Po;0;R;;;;;N;;;;;-10A51;KHAROSHTHI PUNCTUATION SMALL CIRCLE;Po;0;R;;;;;N;;;;;-10A52;KHAROSHTHI PUNCTUATION CIRCLE;Po;0;R;;;;;N;;;;;-10A53;KHAROSHTHI PUNCTUATION CRESCENT BAR;Po;0;R;;;;;N;;;;;-10A54;KHAROSHTHI PUNCTUATION MANGALAM;Po;0;R;;;;;N;;;;;-10A55;KHAROSHTHI PUNCTUATION LOTUS;Po;0;R;;;;;N;;;;;-10A56;KHAROSHTHI PUNCTUATION DANDA;Po;0;R;;;;;N;;;;;-10A57;KHAROSHTHI PUNCTUATION DOUBLE DANDA;Po;0;R;;;;;N;;;;;-10A58;KHAROSHTHI PUNCTUATION LINES;Po;0;R;;;;;N;;;;;-10A60;OLD SOUTH ARABIAN LETTER HE;Lo;0;R;;;;;N;;;;;-10A61;OLD SOUTH ARABIAN LETTER LAMEDH;Lo;0;R;;;;;N;;;;;-10A62;OLD SOUTH ARABIAN LETTER HETH;Lo;0;R;;;;;N;;;;;-10A63;OLD SOUTH ARABIAN LETTER MEM;Lo;0;R;;;;;N;;;;;-10A64;OLD SOUTH ARABIAN LETTER QOPH;Lo;0;R;;;;;N;;;;;-10A65;OLD SOUTH ARABIAN LETTER WAW;Lo;0;R;;;;;N;;;;;-10A66;OLD SOUTH ARABIAN LETTER SHIN;Lo;0;R;;;;;N;;;;;-10A67;OLD SOUTH ARABIAN LETTER RESH;Lo;0;R;;;;;N;;;;;-10A68;OLD SOUTH ARABIAN LETTER BETH;Lo;0;R;;;;;N;;;;;-10A69;OLD SOUTH ARABIAN LETTER TAW;Lo;0;R;;;;;N;;;;;-10A6A;OLD SOUTH ARABIAN LETTER SAT;Lo;0;R;;;;;N;;;;;-10A6B;OLD SOUTH ARABIAN LETTER KAPH;Lo;0;R;;;;;N;;;;;-10A6C;OLD SOUTH ARABIAN LETTER NUN;Lo;0;R;;;;;N;;;;;-10A6D;OLD SOUTH ARABIAN LETTER KHETH;Lo;0;R;;;;;N;;;;;-10A6E;OLD SOUTH ARABIAN LETTER SADHE;Lo;0;R;;;;;N;;;;;-10A6F;OLD SOUTH ARABIAN LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-10A70;OLD SOUTH ARABIAN LETTER FE;Lo;0;R;;;;;N;;;;;-10A71;OLD SOUTH ARABIAN LETTER ALEF;Lo;0;R;;;;;N;;;;;-10A72;OLD SOUTH ARABIAN LETTER AYN;Lo;0;R;;;;;N;;;;;-10A73;OLD SOUTH ARABIAN LETTER DHADHE;Lo;0;R;;;;;N;;;;;-10A74;OLD SOUTH ARABIAN LETTER GIMEL;Lo;0;R;;;;;N;;;;;-10A75;OLD SOUTH ARABIAN LETTER DALETH;Lo;0;R;;;;;N;;;;;-10A76;OLD SOUTH ARABIAN LETTER GHAYN;Lo;0;R;;;;;N;;;;;-10A77;OLD SOUTH ARABIAN LETTER TETH;Lo;0;R;;;;;N;;;;;-10A78;OLD SOUTH ARABIAN LETTER ZAYN;Lo;0;R;;;;;N;;;;;-10A79;OLD SOUTH ARABIAN LETTER DHALETH;Lo;0;R;;;;;N;;;;;-10A7A;OLD SOUTH ARABIAN LETTER YODH;Lo;0;R;;;;;N;;;;;-10A7B;OLD SOUTH ARABIAN LETTER THAW;Lo;0;R;;;;;N;;;;;-10A7C;OLD SOUTH ARABIAN LETTER THETH;Lo;0;R;;;;;N;;;;;-10A7D;OLD SOUTH ARABIAN NUMBER ONE;No;0;R;;;;1;N;;;;;-10A7E;OLD SOUTH ARABIAN NUMBER FIFTY;No;0;R;;;;50;N;;;;;-10A7F;OLD SOUTH ARABIAN NUMERIC INDICATOR;Po;0;R;;;;;N;;;;;-10A80;OLD NORTH ARABIAN LETTER HEH;Lo;0;R;;;;;N;;;;;-10A81;OLD NORTH ARABIAN LETTER LAM;Lo;0;R;;;;;N;;;;;-10A82;OLD NORTH ARABIAN LETTER HAH;Lo;0;R;;;;;N;;;;;-10A83;OLD NORTH ARABIAN LETTER MEEM;Lo;0;R;;;;;N;;;;;-10A84;OLD NORTH ARABIAN LETTER QAF;Lo;0;R;;;;;N;;;;;-10A85;OLD NORTH ARABIAN LETTER WAW;Lo;0;R;;;;;N;;;;;-10A86;OLD NORTH ARABIAN LETTER ES-2;Lo;0;R;;;;;N;;;;;-10A87;OLD NORTH ARABIAN LETTER REH;Lo;0;R;;;;;N;;;;;-10A88;OLD NORTH ARABIAN LETTER BEH;Lo;0;R;;;;;N;;;;;-10A89;OLD NORTH ARABIAN LETTER TEH;Lo;0;R;;;;;N;;;;;-10A8A;OLD NORTH ARABIAN LETTER ES-1;Lo;0;R;;;;;N;;;;;-10A8B;OLD NORTH ARABIAN LETTER KAF;Lo;0;R;;;;;N;;;;;-10A8C;OLD NORTH ARABIAN LETTER NOON;Lo;0;R;;;;;N;;;;;-10A8D;OLD NORTH ARABIAN LETTER KHAH;Lo;0;R;;;;;N;;;;;-10A8E;OLD NORTH ARABIAN LETTER SAD;Lo;0;R;;;;;N;;;;;-10A8F;OLD NORTH ARABIAN LETTER ES-3;Lo;0;R;;;;;N;;;;;-10A90;OLD NORTH ARABIAN LETTER FEH;Lo;0;R;;;;;N;;;;;-10A91;OLD NORTH ARABIAN LETTER ALEF;Lo;0;R;;;;;N;;;;;-10A92;OLD NORTH ARABIAN LETTER AIN;Lo;0;R;;;;;N;;;;;-10A93;OLD NORTH ARABIAN LETTER DAD;Lo;0;R;;;;;N;;;;;-10A94;OLD NORTH ARABIAN LETTER GEEM;Lo;0;R;;;;;N;;;;;-10A95;OLD NORTH ARABIAN LETTER DAL;Lo;0;R;;;;;N;;;;;-10A96;OLD NORTH ARABIAN LETTER GHAIN;Lo;0;R;;;;;N;;;;;-10A97;OLD NORTH ARABIAN LETTER TAH;Lo;0;R;;;;;N;;;;;-10A98;OLD NORTH ARABIAN LETTER ZAIN;Lo;0;R;;;;;N;;;;;-10A99;OLD NORTH ARABIAN LETTER THAL;Lo;0;R;;;;;N;;;;;-10A9A;OLD NORTH ARABIAN LETTER YEH;Lo;0;R;;;;;N;;;;;-10A9B;OLD NORTH ARABIAN LETTER THEH;Lo;0;R;;;;;N;;;;;-10A9C;OLD NORTH ARABIAN LETTER ZAH;Lo;0;R;;;;;N;;;;;-10A9D;OLD NORTH ARABIAN NUMBER ONE;No;0;R;;;;1;N;;;;;-10A9E;OLD NORTH ARABIAN NUMBER TEN;No;0;R;;;;10;N;;;;;-10A9F;OLD NORTH ARABIAN NUMBER TWENTY;No;0;R;;;;20;N;;;;;-10AC0;MANICHAEAN LETTER ALEPH;Lo;0;R;;;;;N;;;;;-10AC1;MANICHAEAN LETTER BETH;Lo;0;R;;;;;N;;;;;-10AC2;MANICHAEAN LETTER BHETH;Lo;0;R;;;;;N;;;;;-10AC3;MANICHAEAN LETTER GIMEL;Lo;0;R;;;;;N;;;;;-10AC4;MANICHAEAN LETTER GHIMEL;Lo;0;R;;;;;N;;;;;-10AC5;MANICHAEAN LETTER DALETH;Lo;0;R;;;;;N;;;;;-10AC6;MANICHAEAN LETTER HE;Lo;0;R;;;;;N;;;;;-10AC7;MANICHAEAN LETTER WAW;Lo;0;R;;;;;N;;;;;-10AC8;MANICHAEAN SIGN UD;So;0;R;;;;;N;;;;;-10AC9;MANICHAEAN LETTER ZAYIN;Lo;0;R;;;;;N;;;;;-10ACA;MANICHAEAN LETTER ZHAYIN;Lo;0;R;;;;;N;;;;;-10ACB;MANICHAEAN LETTER JAYIN;Lo;0;R;;;;;N;;;;;-10ACC;MANICHAEAN LETTER JHAYIN;Lo;0;R;;;;;N;;;;;-10ACD;MANICHAEAN LETTER HETH;Lo;0;R;;;;;N;;;;;-10ACE;MANICHAEAN LETTER TETH;Lo;0;R;;;;;N;;;;;-10ACF;MANICHAEAN LETTER YODH;Lo;0;R;;;;;N;;;;;-10AD0;MANICHAEAN LETTER KAPH;Lo;0;R;;;;;N;;;;;-10AD1;MANICHAEAN LETTER XAPH;Lo;0;R;;;;;N;;;;;-10AD2;MANICHAEAN LETTER KHAPH;Lo;0;R;;;;;N;;;;;-10AD3;MANICHAEAN LETTER LAMEDH;Lo;0;R;;;;;N;;;;;-10AD4;MANICHAEAN LETTER DHAMEDH;Lo;0;R;;;;;N;;;;;-10AD5;MANICHAEAN LETTER THAMEDH;Lo;0;R;;;;;N;;;;;-10AD6;MANICHAEAN LETTER MEM;Lo;0;R;;;;;N;;;;;-10AD7;MANICHAEAN LETTER NUN;Lo;0;R;;;;;N;;;;;-10AD8;MANICHAEAN LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-10AD9;MANICHAEAN LETTER AYIN;Lo;0;R;;;;;N;;;;;-10ADA;MANICHAEAN LETTER AAYIN;Lo;0;R;;;;;N;;;;;-10ADB;MANICHAEAN LETTER PE;Lo;0;R;;;;;N;;;;;-10ADC;MANICHAEAN LETTER FE;Lo;0;R;;;;;N;;;;;-10ADD;MANICHAEAN LETTER SADHE;Lo;0;R;;;;;N;;;;;-10ADE;MANICHAEAN LETTER QOPH;Lo;0;R;;;;;N;;;;;-10ADF;MANICHAEAN LETTER XOPH;Lo;0;R;;;;;N;;;;;-10AE0;MANICHAEAN LETTER QHOPH;Lo;0;R;;;;;N;;;;;-10AE1;MANICHAEAN LETTER RESH;Lo;0;R;;;;;N;;;;;-10AE2;MANICHAEAN LETTER SHIN;Lo;0;R;;;;;N;;;;;-10AE3;MANICHAEAN LETTER SSHIN;Lo;0;R;;;;;N;;;;;-10AE4;MANICHAEAN LETTER TAW;Lo;0;R;;;;;N;;;;;-10AE5;MANICHAEAN ABBREVIATION MARK ABOVE;Mn;230;NSM;;;;;N;;;;;-10AE6;MANICHAEAN ABBREVIATION MARK BELOW;Mn;220;NSM;;;;;N;;;;;-10AEB;MANICHAEAN NUMBER ONE;No;0;R;;;;1;N;;;;;-10AEC;MANICHAEAN NUMBER FIVE;No;0;R;;;;5;N;;;;;-10AED;MANICHAEAN NUMBER TEN;No;0;R;;;;10;N;;;;;-10AEE;MANICHAEAN NUMBER TWENTY;No;0;R;;;;20;N;;;;;-10AEF;MANICHAEAN NUMBER ONE HUNDRED;No;0;R;;;;100;N;;;;;-10AF0;MANICHAEAN PUNCTUATION STAR;Po;0;R;;;;;N;;;;;-10AF1;MANICHAEAN PUNCTUATION FLEURON;Po;0;R;;;;;N;;;;;-10AF2;MANICHAEAN PUNCTUATION DOUBLE DOT WITHIN DOT;Po;0;R;;;;;N;;;;;-10AF3;MANICHAEAN PUNCTUATION DOT WITHIN DOT;Po;0;R;;;;;N;;;;;-10AF4;MANICHAEAN PUNCTUATION DOT;Po;0;R;;;;;N;;;;;-10AF5;MANICHAEAN PUNCTUATION TWO DOTS;Po;0;R;;;;;N;;;;;-10AF6;MANICHAEAN PUNCTUATION LINE FILLER;Po;0;R;;;;;N;;;;;-10B00;AVESTAN LETTER A;Lo;0;R;;;;;N;;;;;-10B01;AVESTAN LETTER AA;Lo;0;R;;;;;N;;;;;-10B02;AVESTAN LETTER AO;Lo;0;R;;;;;N;;;;;-10B03;AVESTAN LETTER AAO;Lo;0;R;;;;;N;;;;;-10B04;AVESTAN LETTER AN;Lo;0;R;;;;;N;;;;;-10B05;AVESTAN LETTER AAN;Lo;0;R;;;;;N;;;;;-10B06;AVESTAN LETTER AE;Lo;0;R;;;;;N;;;;;-10B07;AVESTAN LETTER AEE;Lo;0;R;;;;;N;;;;;-10B08;AVESTAN LETTER E;Lo;0;R;;;;;N;;;;;-10B09;AVESTAN LETTER EE;Lo;0;R;;;;;N;;;;;-10B0A;AVESTAN LETTER O;Lo;0;R;;;;;N;;;;;-10B0B;AVESTAN LETTER OO;Lo;0;R;;;;;N;;;;;-10B0C;AVESTAN LETTER I;Lo;0;R;;;;;N;;;;;-10B0D;AVESTAN LETTER II;Lo;0;R;;;;;N;;;;;-10B0E;AVESTAN LETTER U;Lo;0;R;;;;;N;;;;;-10B0F;AVESTAN LETTER UU;Lo;0;R;;;;;N;;;;;-10B10;AVESTAN LETTER KE;Lo;0;R;;;;;N;;;;;-10B11;AVESTAN LETTER XE;Lo;0;R;;;;;N;;;;;-10B12;AVESTAN LETTER XYE;Lo;0;R;;;;;N;;;;;-10B13;AVESTAN LETTER XVE;Lo;0;R;;;;;N;;;;;-10B14;AVESTAN LETTER GE;Lo;0;R;;;;;N;;;;;-10B15;AVESTAN LETTER GGE;Lo;0;R;;;;;N;;;;;-10B16;AVESTAN LETTER GHE;Lo;0;R;;;;;N;;;;;-10B17;AVESTAN LETTER CE;Lo;0;R;;;;;N;;;;;-10B18;AVESTAN LETTER JE;Lo;0;R;;;;;N;;;;;-10B19;AVESTAN LETTER TE;Lo;0;R;;;;;N;;;;;-10B1A;AVESTAN LETTER THE;Lo;0;R;;;;;N;;;;;-10B1B;AVESTAN LETTER DE;Lo;0;R;;;;;N;;;;;-10B1C;AVESTAN LETTER DHE;Lo;0;R;;;;;N;;;;;-10B1D;AVESTAN LETTER TTE;Lo;0;R;;;;;N;;;;;-10B1E;AVESTAN LETTER PE;Lo;0;R;;;;;N;;;;;-10B1F;AVESTAN LETTER FE;Lo;0;R;;;;;N;;;;;-10B20;AVESTAN LETTER BE;Lo;0;R;;;;;N;;;;;-10B21;AVESTAN LETTER BHE;Lo;0;R;;;;;N;;;;;-10B22;AVESTAN LETTER NGE;Lo;0;R;;;;;N;;;;;-10B23;AVESTAN LETTER NGYE;Lo;0;R;;;;;N;;;;;-10B24;AVESTAN LETTER NGVE;Lo;0;R;;;;;N;;;;;-10B25;AVESTAN LETTER NE;Lo;0;R;;;;;N;;;;;-10B26;AVESTAN LETTER NYE;Lo;0;R;;;;;N;;;;;-10B27;AVESTAN LETTER NNE;Lo;0;R;;;;;N;;;;;-10B28;AVESTAN LETTER ME;Lo;0;R;;;;;N;;;;;-10B29;AVESTAN LETTER HME;Lo;0;R;;;;;N;;;;;-10B2A;AVESTAN LETTER YYE;Lo;0;R;;;;;N;;;;;-10B2B;AVESTAN LETTER YE;Lo;0;R;;;;;N;;;;;-10B2C;AVESTAN LETTER VE;Lo;0;R;;;;;N;;;;;-10B2D;AVESTAN LETTER RE;Lo;0;R;;;;;N;;;;;-10B2E;AVESTAN LETTER LE;Lo;0;R;;;;;N;;;;;-10B2F;AVESTAN LETTER SE;Lo;0;R;;;;;N;;;;;-10B30;AVESTAN LETTER ZE;Lo;0;R;;;;;N;;;;;-10B31;AVESTAN LETTER SHE;Lo;0;R;;;;;N;;;;;-10B32;AVESTAN LETTER ZHE;Lo;0;R;;;;;N;;;;;-10B33;AVESTAN LETTER SHYE;Lo;0;R;;;;;N;;;;;-10B34;AVESTAN LETTER SSHE;Lo;0;R;;;;;N;;;;;-10B35;AVESTAN LETTER HE;Lo;0;R;;;;;N;;;;;-10B39;AVESTAN ABBREVIATION MARK;Po;0;ON;;;;;N;;;;;-10B3A;TINY TWO DOTS OVER ONE DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-10B3B;SMALL TWO DOTS OVER ONE DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-10B3C;LARGE TWO DOTS OVER ONE DOT PUNCTUATION;Po;0;ON;;;;;N;;;;;-10B3D;LARGE ONE DOT OVER TWO DOTS PUNCTUATION;Po;0;ON;;;;;N;;;;;-10B3E;LARGE TWO RINGS OVER ONE RING PUNCTUATION;Po;0;ON;;;;;N;;;;;-10B3F;LARGE ONE RING OVER TWO RINGS PUNCTUATION;Po;0;ON;;;;;N;;;;;-10B40;INSCRIPTIONAL PARTHIAN LETTER ALEPH;Lo;0;R;;;;;N;;;;;-10B41;INSCRIPTIONAL PARTHIAN LETTER BETH;Lo;0;R;;;;;N;;;;;-10B42;INSCRIPTIONAL PARTHIAN LETTER GIMEL;Lo;0;R;;;;;N;;;;;-10B43;INSCRIPTIONAL PARTHIAN LETTER DALETH;Lo;0;R;;;;;N;;;;;-10B44;INSCRIPTIONAL PARTHIAN LETTER HE;Lo;0;R;;;;;N;;;;;-10B45;INSCRIPTIONAL PARTHIAN LETTER WAW;Lo;0;R;;;;;N;;;;;-10B46;INSCRIPTIONAL PARTHIAN LETTER ZAYIN;Lo;0;R;;;;;N;;;;;-10B47;INSCRIPTIONAL PARTHIAN LETTER HETH;Lo;0;R;;;;;N;;;;;-10B48;INSCRIPTIONAL PARTHIAN LETTER TETH;Lo;0;R;;;;;N;;;;;-10B49;INSCRIPTIONAL PARTHIAN LETTER YODH;Lo;0;R;;;;;N;;;;;-10B4A;INSCRIPTIONAL PARTHIAN LETTER KAPH;Lo;0;R;;;;;N;;;;;-10B4B;INSCRIPTIONAL PARTHIAN LETTER LAMEDH;Lo;0;R;;;;;N;;;;;-10B4C;INSCRIPTIONAL PARTHIAN LETTER MEM;Lo;0;R;;;;;N;;;;;-10B4D;INSCRIPTIONAL PARTHIAN LETTER NUN;Lo;0;R;;;;;N;;;;;-10B4E;INSCRIPTIONAL PARTHIAN LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-10B4F;INSCRIPTIONAL PARTHIAN LETTER AYIN;Lo;0;R;;;;;N;;;;;-10B50;INSCRIPTIONAL PARTHIAN LETTER PE;Lo;0;R;;;;;N;;;;;-10B51;INSCRIPTIONAL PARTHIAN LETTER SADHE;Lo;0;R;;;;;N;;;;;-10B52;INSCRIPTIONAL PARTHIAN LETTER QOPH;Lo;0;R;;;;;N;;;;;-10B53;INSCRIPTIONAL PARTHIAN LETTER RESH;Lo;0;R;;;;;N;;;;;-10B54;INSCRIPTIONAL PARTHIAN LETTER SHIN;Lo;0;R;;;;;N;;;;;-10B55;INSCRIPTIONAL PARTHIAN LETTER TAW;Lo;0;R;;;;;N;;;;;-10B58;INSCRIPTIONAL PARTHIAN NUMBER ONE;No;0;R;;;;1;N;;;;;-10B59;INSCRIPTIONAL PARTHIAN NUMBER TWO;No;0;R;;;;2;N;;;;;-10B5A;INSCRIPTIONAL PARTHIAN NUMBER THREE;No;0;R;;;;3;N;;;;;-10B5B;INSCRIPTIONAL PARTHIAN NUMBER FOUR;No;0;R;;;;4;N;;;;;-10B5C;INSCRIPTIONAL PARTHIAN NUMBER TEN;No;0;R;;;;10;N;;;;;-10B5D;INSCRIPTIONAL PARTHIAN NUMBER TWENTY;No;0;R;;;;20;N;;;;;-10B5E;INSCRIPTIONAL PARTHIAN NUMBER ONE HUNDRED;No;0;R;;;;100;N;;;;;-10B5F;INSCRIPTIONAL PARTHIAN NUMBER ONE THOUSAND;No;0;R;;;;1000;N;;;;;-10B60;INSCRIPTIONAL PAHLAVI LETTER ALEPH;Lo;0;R;;;;;N;;;;;-10B61;INSCRIPTIONAL PAHLAVI LETTER BETH;Lo;0;R;;;;;N;;;;;-10B62;INSCRIPTIONAL PAHLAVI LETTER GIMEL;Lo;0;R;;;;;N;;;;;-10B63;INSCRIPTIONAL PAHLAVI LETTER DALETH;Lo;0;R;;;;;N;;;;;-10B64;INSCRIPTIONAL PAHLAVI LETTER HE;Lo;0;R;;;;;N;;;;;-10B65;INSCRIPTIONAL PAHLAVI LETTER WAW-AYIN-RESH;Lo;0;R;;;;;N;;;;;-10B66;INSCRIPTIONAL PAHLAVI LETTER ZAYIN;Lo;0;R;;;;;N;;;;;-10B67;INSCRIPTIONAL PAHLAVI LETTER HETH;Lo;0;R;;;;;N;;;;;-10B68;INSCRIPTIONAL PAHLAVI LETTER TETH;Lo;0;R;;;;;N;;;;;-10B69;INSCRIPTIONAL PAHLAVI LETTER YODH;Lo;0;R;;;;;N;;;;;-10B6A;INSCRIPTIONAL PAHLAVI LETTER KAPH;Lo;0;R;;;;;N;;;;;-10B6B;INSCRIPTIONAL PAHLAVI LETTER LAMEDH;Lo;0;R;;;;;N;;;;;-10B6C;INSCRIPTIONAL PAHLAVI LETTER MEM-QOPH;Lo;0;R;;;;;N;;;;;-10B6D;INSCRIPTIONAL PAHLAVI LETTER NUN;Lo;0;R;;;;;N;;;;;-10B6E;INSCRIPTIONAL PAHLAVI LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-10B6F;INSCRIPTIONAL PAHLAVI LETTER PE;Lo;0;R;;;;;N;;;;;-10B70;INSCRIPTIONAL PAHLAVI LETTER SADHE;Lo;0;R;;;;;N;;;;;-10B71;INSCRIPTIONAL PAHLAVI LETTER SHIN;Lo;0;R;;;;;N;;;;;-10B72;INSCRIPTIONAL PAHLAVI LETTER TAW;Lo;0;R;;;;;N;;;;;-10B78;INSCRIPTIONAL PAHLAVI NUMBER ONE;No;0;R;;;;1;N;;;;;-10B79;INSCRIPTIONAL PAHLAVI NUMBER TWO;No;0;R;;;;2;N;;;;;-10B7A;INSCRIPTIONAL PAHLAVI NUMBER THREE;No;0;R;;;;3;N;;;;;-10B7B;INSCRIPTIONAL PAHLAVI NUMBER FOUR;No;0;R;;;;4;N;;;;;-10B7C;INSCRIPTIONAL PAHLAVI NUMBER TEN;No;0;R;;;;10;N;;;;;-10B7D;INSCRIPTIONAL PAHLAVI NUMBER TWENTY;No;0;R;;;;20;N;;;;;-10B7E;INSCRIPTIONAL PAHLAVI NUMBER ONE HUNDRED;No;0;R;;;;100;N;;;;;-10B7F;INSCRIPTIONAL PAHLAVI NUMBER ONE THOUSAND;No;0;R;;;;1000;N;;;;;-10B80;PSALTER PAHLAVI LETTER ALEPH;Lo;0;R;;;;;N;;;;;-10B81;PSALTER PAHLAVI LETTER BETH;Lo;0;R;;;;;N;;;;;-10B82;PSALTER PAHLAVI LETTER GIMEL;Lo;0;R;;;;;N;;;;;-10B83;PSALTER PAHLAVI LETTER DALETH;Lo;0;R;;;;;N;;;;;-10B84;PSALTER PAHLAVI LETTER HE;Lo;0;R;;;;;N;;;;;-10B85;PSALTER PAHLAVI LETTER WAW-AYIN-RESH;Lo;0;R;;;;;N;;;;;-10B86;PSALTER PAHLAVI LETTER ZAYIN;Lo;0;R;;;;;N;;;;;-10B87;PSALTER PAHLAVI LETTER HETH;Lo;0;R;;;;;N;;;;;-10B88;PSALTER PAHLAVI LETTER YODH;Lo;0;R;;;;;N;;;;;-10B89;PSALTER PAHLAVI LETTER KAPH;Lo;0;R;;;;;N;;;;;-10B8A;PSALTER PAHLAVI LETTER LAMEDH;Lo;0;R;;;;;N;;;;;-10B8B;PSALTER PAHLAVI LETTER MEM-QOPH;Lo;0;R;;;;;N;;;;;-10B8C;PSALTER PAHLAVI LETTER NUN;Lo;0;R;;;;;N;;;;;-10B8D;PSALTER PAHLAVI LETTER SAMEKH;Lo;0;R;;;;;N;;;;;-10B8E;PSALTER PAHLAVI LETTER PE;Lo;0;R;;;;;N;;;;;-10B8F;PSALTER PAHLAVI LETTER SADHE;Lo;0;R;;;;;N;;;;;-10B90;PSALTER PAHLAVI LETTER SHIN;Lo;0;R;;;;;N;;;;;-10B91;PSALTER PAHLAVI LETTER TAW;Lo;0;R;;;;;N;;;;;-10B99;PSALTER PAHLAVI SECTION MARK;Po;0;R;;;;;N;;;;;-10B9A;PSALTER PAHLAVI TURNED SECTION MARK;Po;0;R;;;;;N;;;;;-10B9B;PSALTER PAHLAVI FOUR DOTS WITH CROSS;Po;0;R;;;;;N;;;;;-10B9C;PSALTER PAHLAVI FOUR DOTS WITH DOT;Po;0;R;;;;;N;;;;;-10BA9;PSALTER PAHLAVI NUMBER ONE;No;0;R;;;;1;N;;;;;-10BAA;PSALTER PAHLAVI NUMBER TWO;No;0;R;;;;2;N;;;;;-10BAB;PSALTER PAHLAVI NUMBER THREE;No;0;R;;;;3;N;;;;;-10BAC;PSALTER PAHLAVI NUMBER FOUR;No;0;R;;;;4;N;;;;;-10BAD;PSALTER PAHLAVI NUMBER TEN;No;0;R;;;;10;N;;;;;-10BAE;PSALTER PAHLAVI NUMBER TWENTY;No;0;R;;;;20;N;;;;;-10BAF;PSALTER PAHLAVI NUMBER ONE HUNDRED;No;0;R;;;;100;N;;;;;-10C00;OLD TURKIC LETTER ORKHON A;Lo;0;R;;;;;N;;;;;-10C01;OLD TURKIC LETTER YENISEI A;Lo;0;R;;;;;N;;;;;-10C02;OLD TURKIC LETTER YENISEI AE;Lo;0;R;;;;;N;;;;;-10C03;OLD TURKIC LETTER ORKHON I;Lo;0;R;;;;;N;;;;;-10C04;OLD TURKIC LETTER YENISEI I;Lo;0;R;;;;;N;;;;;-10C05;OLD TURKIC LETTER YENISEI E;Lo;0;R;;;;;N;;;;;-10C06;OLD TURKIC LETTER ORKHON O;Lo;0;R;;;;;N;;;;;-10C07;OLD TURKIC LETTER ORKHON OE;Lo;0;R;;;;;N;;;;;-10C08;OLD TURKIC LETTER YENISEI OE;Lo;0;R;;;;;N;;;;;-10C09;OLD TURKIC LETTER ORKHON AB;Lo;0;R;;;;;N;;;;;-10C0A;OLD TURKIC LETTER YENISEI AB;Lo;0;R;;;;;N;;;;;-10C0B;OLD TURKIC LETTER ORKHON AEB;Lo;0;R;;;;;N;;;;;-10C0C;OLD TURKIC LETTER YENISEI AEB;Lo;0;R;;;;;N;;;;;-10C0D;OLD TURKIC LETTER ORKHON AG;Lo;0;R;;;;;N;;;;;-10C0E;OLD TURKIC LETTER YENISEI AG;Lo;0;R;;;;;N;;;;;-10C0F;OLD TURKIC LETTER ORKHON AEG;Lo;0;R;;;;;N;;;;;-10C10;OLD TURKIC LETTER YENISEI AEG;Lo;0;R;;;;;N;;;;;-10C11;OLD TURKIC LETTER ORKHON AD;Lo;0;R;;;;;N;;;;;-10C12;OLD TURKIC LETTER YENISEI AD;Lo;0;R;;;;;N;;;;;-10C13;OLD TURKIC LETTER ORKHON AED;Lo;0;R;;;;;N;;;;;-10C14;OLD TURKIC LETTER ORKHON EZ;Lo;0;R;;;;;N;;;;;-10C15;OLD TURKIC LETTER YENISEI EZ;Lo;0;R;;;;;N;;;;;-10C16;OLD TURKIC LETTER ORKHON AY;Lo;0;R;;;;;N;;;;;-10C17;OLD TURKIC LETTER YENISEI AY;Lo;0;R;;;;;N;;;;;-10C18;OLD TURKIC LETTER ORKHON AEY;Lo;0;R;;;;;N;;;;;-10C19;OLD TURKIC LETTER YENISEI AEY;Lo;0;R;;;;;N;;;;;-10C1A;OLD TURKIC LETTER ORKHON AEK;Lo;0;R;;;;;N;;;;;-10C1B;OLD TURKIC LETTER YENISEI AEK;Lo;0;R;;;;;N;;;;;-10C1C;OLD TURKIC LETTER ORKHON OEK;Lo;0;R;;;;;N;;;;;-10C1D;OLD TURKIC LETTER YENISEI OEK;Lo;0;R;;;;;N;;;;;-10C1E;OLD TURKIC LETTER ORKHON AL;Lo;0;R;;;;;N;;;;;-10C1F;OLD TURKIC LETTER YENISEI AL;Lo;0;R;;;;;N;;;;;-10C20;OLD TURKIC LETTER ORKHON AEL;Lo;0;R;;;;;N;;;;;-10C21;OLD TURKIC LETTER ORKHON ELT;Lo;0;R;;;;;N;;;;;-10C22;OLD TURKIC LETTER ORKHON EM;Lo;0;R;;;;;N;;;;;-10C23;OLD TURKIC LETTER ORKHON AN;Lo;0;R;;;;;N;;;;;-10C24;OLD TURKIC LETTER ORKHON AEN;Lo;0;R;;;;;N;;;;;-10C25;OLD TURKIC LETTER YENISEI AEN;Lo;0;R;;;;;N;;;;;-10C26;OLD TURKIC LETTER ORKHON ENT;Lo;0;R;;;;;N;;;;;-10C27;OLD TURKIC LETTER YENISEI ENT;Lo;0;R;;;;;N;;;;;-10C28;OLD TURKIC LETTER ORKHON ENC;Lo;0;R;;;;;N;;;;;-10C29;OLD TURKIC LETTER YENISEI ENC;Lo;0;R;;;;;N;;;;;-10C2A;OLD TURKIC LETTER ORKHON ENY;Lo;0;R;;;;;N;;;;;-10C2B;OLD TURKIC LETTER YENISEI ENY;Lo;0;R;;;;;N;;;;;-10C2C;OLD TURKIC LETTER YENISEI ANG;Lo;0;R;;;;;N;;;;;-10C2D;OLD TURKIC LETTER ORKHON ENG;Lo;0;R;;;;;N;;;;;-10C2E;OLD TURKIC LETTER YENISEI AENG;Lo;0;R;;;;;N;;;;;-10C2F;OLD TURKIC LETTER ORKHON EP;Lo;0;R;;;;;N;;;;;-10C30;OLD TURKIC LETTER ORKHON OP;Lo;0;R;;;;;N;;;;;-10C31;OLD TURKIC LETTER ORKHON IC;Lo;0;R;;;;;N;;;;;-10C32;OLD TURKIC LETTER ORKHON EC;Lo;0;R;;;;;N;;;;;-10C33;OLD TURKIC LETTER YENISEI EC;Lo;0;R;;;;;N;;;;;-10C34;OLD TURKIC LETTER ORKHON AQ;Lo;0;R;;;;;N;;;;;-10C35;OLD TURKIC LETTER YENISEI AQ;Lo;0;R;;;;;N;;;;;-10C36;OLD TURKIC LETTER ORKHON IQ;Lo;0;R;;;;;N;;;;;-10C37;OLD TURKIC LETTER YENISEI IQ;Lo;0;R;;;;;N;;;;;-10C38;OLD TURKIC LETTER ORKHON OQ;Lo;0;R;;;;;N;;;;;-10C39;OLD TURKIC LETTER YENISEI OQ;Lo;0;R;;;;;N;;;;;-10C3A;OLD TURKIC LETTER ORKHON AR;Lo;0;R;;;;;N;;;;;-10C3B;OLD TURKIC LETTER YENISEI AR;Lo;0;R;;;;;N;;;;;-10C3C;OLD TURKIC LETTER ORKHON AER;Lo;0;R;;;;;N;;;;;-10C3D;OLD TURKIC LETTER ORKHON AS;Lo;0;R;;;;;N;;;;;-10C3E;OLD TURKIC LETTER ORKHON AES;Lo;0;R;;;;;N;;;;;-10C3F;OLD TURKIC LETTER ORKHON ASH;Lo;0;R;;;;;N;;;;;-10C40;OLD TURKIC LETTER YENISEI ASH;Lo;0;R;;;;;N;;;;;-10C41;OLD TURKIC LETTER ORKHON ESH;Lo;0;R;;;;;N;;;;;-10C42;OLD TURKIC LETTER YENISEI ESH;Lo;0;R;;;;;N;;;;;-10C43;OLD TURKIC LETTER ORKHON AT;Lo;0;R;;;;;N;;;;;-10C44;OLD TURKIC LETTER YENISEI AT;Lo;0;R;;;;;N;;;;;-10C45;OLD TURKIC LETTER ORKHON AET;Lo;0;R;;;;;N;;;;;-10C46;OLD TURKIC LETTER YENISEI AET;Lo;0;R;;;;;N;;;;;-10C47;OLD TURKIC LETTER ORKHON OT;Lo;0;R;;;;;N;;;;;-10C48;OLD TURKIC LETTER ORKHON BASH;Lo;0;R;;;;;N;;;;;-10E60;RUMI DIGIT ONE;No;0;AN;;;1;1;N;;;;;-10E61;RUMI DIGIT TWO;No;0;AN;;;2;2;N;;;;;-10E62;RUMI DIGIT THREE;No;0;AN;;;3;3;N;;;;;-10E63;RUMI DIGIT FOUR;No;0;AN;;;4;4;N;;;;;-10E64;RUMI DIGIT FIVE;No;0;AN;;;5;5;N;;;;;-10E65;RUMI DIGIT SIX;No;0;AN;;;6;6;N;;;;;-10E66;RUMI DIGIT SEVEN;No;0;AN;;;7;7;N;;;;;-10E67;RUMI DIGIT EIGHT;No;0;AN;;;8;8;N;;;;;-10E68;RUMI DIGIT NINE;No;0;AN;;;9;9;N;;;;;-10E69;RUMI NUMBER TEN;No;0;AN;;;;10;N;;;;;-10E6A;RUMI NUMBER TWENTY;No;0;AN;;;;20;N;;;;;-10E6B;RUMI NUMBER THIRTY;No;0;AN;;;;30;N;;;;;-10E6C;RUMI NUMBER FORTY;No;0;AN;;;;40;N;;;;;-10E6D;RUMI NUMBER FIFTY;No;0;AN;;;;50;N;;;;;-10E6E;RUMI NUMBER SIXTY;No;0;AN;;;;60;N;;;;;-10E6F;RUMI NUMBER SEVENTY;No;0;AN;;;;70;N;;;;;-10E70;RUMI NUMBER EIGHTY;No;0;AN;;;;80;N;;;;;-10E71;RUMI NUMBER NINETY;No;0;AN;;;;90;N;;;;;-10E72;RUMI NUMBER ONE HUNDRED;No;0;AN;;;;100;N;;;;;-10E73;RUMI NUMBER TWO HUNDRED;No;0;AN;;;;200;N;;;;;-10E74;RUMI NUMBER THREE HUNDRED;No;0;AN;;;;300;N;;;;;-10E75;RUMI NUMBER FOUR HUNDRED;No;0;AN;;;;400;N;;;;;-10E76;RUMI NUMBER FIVE HUNDRED;No;0;AN;;;;500;N;;;;;-10E77;RUMI NUMBER SIX HUNDRED;No;0;AN;;;;600;N;;;;;-10E78;RUMI NUMBER SEVEN HUNDRED;No;0;AN;;;;700;N;;;;;-10E79;RUMI NUMBER EIGHT HUNDRED;No;0;AN;;;;800;N;;;;;-10E7A;RUMI NUMBER NINE HUNDRED;No;0;AN;;;;900;N;;;;;-10E7B;RUMI FRACTION ONE HALF;No;0;AN;;;;1/2;N;;;;;-10E7C;RUMI FRACTION ONE QUARTER;No;0;AN;;;;1/4;N;;;;;-10E7D;RUMI FRACTION ONE THIRD;No;0;AN;;;;1/3;N;;;;;-10E7E;RUMI FRACTION TWO THIRDS;No;0;AN;;;;2/3;N;;;;;-11000;BRAHMI SIGN CANDRABINDU;Mc;0;L;;;;;N;;;;;-11001;BRAHMI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-11002;BRAHMI SIGN VISARGA;Mc;0;L;;;;;N;;;;;-11003;BRAHMI SIGN JIHVAMULIYA;Lo;0;L;;;;;N;;;;;-11004;BRAHMI SIGN UPADHMANIYA;Lo;0;L;;;;;N;;;;;-11005;BRAHMI LETTER A;Lo;0;L;;;;;N;;;;;-11006;BRAHMI LETTER AA;Lo;0;L;;;;;N;;;;;-11007;BRAHMI LETTER I;Lo;0;L;;;;;N;;;;;-11008;BRAHMI LETTER II;Lo;0;L;;;;;N;;;;;-11009;BRAHMI LETTER U;Lo;0;L;;;;;N;;;;;-1100A;BRAHMI LETTER UU;Lo;0;L;;;;;N;;;;;-1100B;BRAHMI LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-1100C;BRAHMI LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-1100D;BRAHMI LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-1100E;BRAHMI LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-1100F;BRAHMI LETTER E;Lo;0;L;;;;;N;;;;;-11010;BRAHMI LETTER AI;Lo;0;L;;;;;N;;;;;-11011;BRAHMI LETTER O;Lo;0;L;;;;;N;;;;;-11012;BRAHMI LETTER AU;Lo;0;L;;;;;N;;;;;-11013;BRAHMI LETTER KA;Lo;0;L;;;;;N;;;;;-11014;BRAHMI LETTER KHA;Lo;0;L;;;;;N;;;;;-11015;BRAHMI LETTER GA;Lo;0;L;;;;;N;;;;;-11016;BRAHMI LETTER GHA;Lo;0;L;;;;;N;;;;;-11017;BRAHMI LETTER NGA;Lo;0;L;;;;;N;;;;;-11018;BRAHMI LETTER CA;Lo;0;L;;;;;N;;;;;-11019;BRAHMI LETTER CHA;Lo;0;L;;;;;N;;;;;-1101A;BRAHMI LETTER JA;Lo;0;L;;;;;N;;;;;-1101B;BRAHMI LETTER JHA;Lo;0;L;;;;;N;;;;;-1101C;BRAHMI LETTER NYA;Lo;0;L;;;;;N;;;;;-1101D;BRAHMI LETTER TTA;Lo;0;L;;;;;N;;;;;-1101E;BRAHMI LETTER TTHA;Lo;0;L;;;;;N;;;;;-1101F;BRAHMI LETTER DDA;Lo;0;L;;;;;N;;;;;-11020;BRAHMI LETTER DDHA;Lo;0;L;;;;;N;;;;;-11021;BRAHMI LETTER NNA;Lo;0;L;;;;;N;;;;;-11022;BRAHMI LETTER TA;Lo;0;L;;;;;N;;;;;-11023;BRAHMI LETTER THA;Lo;0;L;;;;;N;;;;;-11024;BRAHMI LETTER DA;Lo;0;L;;;;;N;;;;;-11025;BRAHMI LETTER DHA;Lo;0;L;;;;;N;;;;;-11026;BRAHMI LETTER NA;Lo;0;L;;;;;N;;;;;-11027;BRAHMI LETTER PA;Lo;0;L;;;;;N;;;;;-11028;BRAHMI LETTER PHA;Lo;0;L;;;;;N;;;;;-11029;BRAHMI LETTER BA;Lo;0;L;;;;;N;;;;;-1102A;BRAHMI LETTER BHA;Lo;0;L;;;;;N;;;;;-1102B;BRAHMI LETTER MA;Lo;0;L;;;;;N;;;;;-1102C;BRAHMI LETTER YA;Lo;0;L;;;;;N;;;;;-1102D;BRAHMI LETTER RA;Lo;0;L;;;;;N;;;;;-1102E;BRAHMI LETTER LA;Lo;0;L;;;;;N;;;;;-1102F;BRAHMI LETTER VA;Lo;0;L;;;;;N;;;;;-11030;BRAHMI LETTER SHA;Lo;0;L;;;;;N;;;;;-11031;BRAHMI LETTER SSA;Lo;0;L;;;;;N;;;;;-11032;BRAHMI LETTER SA;Lo;0;L;;;;;N;;;;;-11033;BRAHMI LETTER HA;Lo;0;L;;;;;N;;;;;-11034;BRAHMI LETTER LLA;Lo;0;L;;;;;N;;;;;-11035;BRAHMI LETTER OLD TAMIL LLLA;Lo;0;L;;;;;N;;;;;-11036;BRAHMI LETTER OLD TAMIL RRA;Lo;0;L;;;;;N;;;;;-11037;BRAHMI LETTER OLD TAMIL NNNA;Lo;0;L;;;;;N;;;;;-11038;BRAHMI VOWEL SIGN AA;Mn;0;NSM;;;;;N;;;;;-11039;BRAHMI VOWEL SIGN BHATTIPROLU AA;Mn;0;NSM;;;;;N;;;;;-1103A;BRAHMI VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-1103B;BRAHMI VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-1103C;BRAHMI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1103D;BRAHMI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-1103E;BRAHMI VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-1103F;BRAHMI VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-11040;BRAHMI VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-11041;BRAHMI VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-11042;BRAHMI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-11043;BRAHMI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-11044;BRAHMI VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-11045;BRAHMI VOWEL SIGN AU;Mn;0;NSM;;;;;N;;;;;-11046;BRAHMI VIRAMA;Mn;9;NSM;;;;;N;;;;;-11047;BRAHMI DANDA;Po;0;L;;;;;N;;;;;-11048;BRAHMI DOUBLE DANDA;Po;0;L;;;;;N;;;;;-11049;BRAHMI PUNCTUATION DOT;Po;0;L;;;;;N;;;;;-1104A;BRAHMI PUNCTUATION DOUBLE DOT;Po;0;L;;;;;N;;;;;-1104B;BRAHMI PUNCTUATION LINE;Po;0;L;;;;;N;;;;;-1104C;BRAHMI PUNCTUATION CRESCENT BAR;Po;0;L;;;;;N;;;;;-1104D;BRAHMI PUNCTUATION LOTUS;Po;0;L;;;;;N;;;;;-11052;BRAHMI NUMBER ONE;No;0;ON;;;1;1;N;;;;;-11053;BRAHMI NUMBER TWO;No;0;ON;;;2;2;N;;;;;-11054;BRAHMI NUMBER THREE;No;0;ON;;;3;3;N;;;;;-11055;BRAHMI NUMBER FOUR;No;0;ON;;;4;4;N;;;;;-11056;BRAHMI NUMBER FIVE;No;0;ON;;;5;5;N;;;;;-11057;BRAHMI NUMBER SIX;No;0;ON;;;6;6;N;;;;;-11058;BRAHMI NUMBER SEVEN;No;0;ON;;;7;7;N;;;;;-11059;BRAHMI NUMBER EIGHT;No;0;ON;;;8;8;N;;;;;-1105A;BRAHMI NUMBER NINE;No;0;ON;;;9;9;N;;;;;-1105B;BRAHMI NUMBER TEN;No;0;ON;;;;10;N;;;;;-1105C;BRAHMI NUMBER TWENTY;No;0;ON;;;;20;N;;;;;-1105D;BRAHMI NUMBER THIRTY;No;0;ON;;;;30;N;;;;;-1105E;BRAHMI NUMBER FORTY;No;0;ON;;;;40;N;;;;;-1105F;BRAHMI NUMBER FIFTY;No;0;ON;;;;50;N;;;;;-11060;BRAHMI NUMBER SIXTY;No;0;ON;;;;60;N;;;;;-11061;BRAHMI NUMBER SEVENTY;No;0;ON;;;;70;N;;;;;-11062;BRAHMI NUMBER EIGHTY;No;0;ON;;;;80;N;;;;;-11063;BRAHMI NUMBER NINETY;No;0;ON;;;;90;N;;;;;-11064;BRAHMI NUMBER ONE HUNDRED;No;0;ON;;;;100;N;;;;;-11065;BRAHMI NUMBER ONE THOUSAND;No;0;ON;;;;1000;N;;;;;-11066;BRAHMI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-11067;BRAHMI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-11068;BRAHMI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-11069;BRAHMI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1106A;BRAHMI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1106B;BRAHMI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1106C;BRAHMI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1106D;BRAHMI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1106E;BRAHMI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1106F;BRAHMI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-1107F;BRAHMI NUMBER JOINER;Mn;9;NSM;;;;;N;;;;;-11080;KAITHI SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-11081;KAITHI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-11082;KAITHI SIGN VISARGA;Mc;0;L;;;;;N;;;;;-11083;KAITHI LETTER A;Lo;0;L;;;;;N;;;;;-11084;KAITHI LETTER AA;Lo;0;L;;;;;N;;;;;-11085;KAITHI LETTER I;Lo;0;L;;;;;N;;;;;-11086;KAITHI LETTER II;Lo;0;L;;;;;N;;;;;-11087;KAITHI LETTER U;Lo;0;L;;;;;N;;;;;-11088;KAITHI LETTER UU;Lo;0;L;;;;;N;;;;;-11089;KAITHI LETTER E;Lo;0;L;;;;;N;;;;;-1108A;KAITHI LETTER AI;Lo;0;L;;;;;N;;;;;-1108B;KAITHI LETTER O;Lo;0;L;;;;;N;;;;;-1108C;KAITHI LETTER AU;Lo;0;L;;;;;N;;;;;-1108D;KAITHI LETTER KA;Lo;0;L;;;;;N;;;;;-1108E;KAITHI LETTER KHA;Lo;0;L;;;;;N;;;;;-1108F;KAITHI LETTER GA;Lo;0;L;;;;;N;;;;;-11090;KAITHI LETTER GHA;Lo;0;L;;;;;N;;;;;-11091;KAITHI LETTER NGA;Lo;0;L;;;;;N;;;;;-11092;KAITHI LETTER CA;Lo;0;L;;;;;N;;;;;-11093;KAITHI LETTER CHA;Lo;0;L;;;;;N;;;;;-11094;KAITHI LETTER JA;Lo;0;L;;;;;N;;;;;-11095;KAITHI LETTER JHA;Lo;0;L;;;;;N;;;;;-11096;KAITHI LETTER NYA;Lo;0;L;;;;;N;;;;;-11097;KAITHI LETTER TTA;Lo;0;L;;;;;N;;;;;-11098;KAITHI LETTER TTHA;Lo;0;L;;;;;N;;;;;-11099;KAITHI LETTER DDA;Lo;0;L;;;;;N;;;;;-1109A;KAITHI LETTER DDDHA;Lo;0;L;11099 110BA;;;;N;;;;;-1109B;KAITHI LETTER DDHA;Lo;0;L;;;;;N;;;;;-1109C;KAITHI LETTER RHA;Lo;0;L;1109B 110BA;;;;N;;;;;-1109D;KAITHI LETTER NNA;Lo;0;L;;;;;N;;;;;-1109E;KAITHI LETTER TA;Lo;0;L;;;;;N;;;;;-1109F;KAITHI LETTER THA;Lo;0;L;;;;;N;;;;;-110A0;KAITHI LETTER DA;Lo;0;L;;;;;N;;;;;-110A1;KAITHI LETTER DHA;Lo;0;L;;;;;N;;;;;-110A2;KAITHI LETTER NA;Lo;0;L;;;;;N;;;;;-110A3;KAITHI LETTER PA;Lo;0;L;;;;;N;;;;;-110A4;KAITHI LETTER PHA;Lo;0;L;;;;;N;;;;;-110A5;KAITHI LETTER BA;Lo;0;L;;;;;N;;;;;-110A6;KAITHI LETTER BHA;Lo;0;L;;;;;N;;;;;-110A7;KAITHI LETTER MA;Lo;0;L;;;;;N;;;;;-110A8;KAITHI LETTER YA;Lo;0;L;;;;;N;;;;;-110A9;KAITHI LETTER RA;Lo;0;L;;;;;N;;;;;-110AA;KAITHI LETTER LA;Lo;0;L;;;;;N;;;;;-110AB;KAITHI LETTER VA;Lo;0;L;110A5 110BA;;;;N;;;;;-110AC;KAITHI LETTER SHA;Lo;0;L;;;;;N;;;;;-110AD;KAITHI LETTER SSA;Lo;0;L;;;;;N;;;;;-110AE;KAITHI LETTER SA;Lo;0;L;;;;;N;;;;;-110AF;KAITHI LETTER HA;Lo;0;L;;;;;N;;;;;-110B0;KAITHI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-110B1;KAITHI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-110B2;KAITHI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-110B3;KAITHI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-110B4;KAITHI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-110B5;KAITHI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-110B6;KAITHI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-110B7;KAITHI VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-110B8;KAITHI VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-110B9;KAITHI SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-110BA;KAITHI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-110BB;KAITHI ABBREVIATION SIGN;Po;0;L;;;;;N;;;;;-110BC;KAITHI ENUMERATION SIGN;Po;0;L;;;;;N;;;;;-110BD;KAITHI NUMBER SIGN;Cf;0;L;;;;;N;;;;;-110BE;KAITHI SECTION MARK;Po;0;L;;;;;N;;;;;-110BF;KAITHI DOUBLE SECTION MARK;Po;0;L;;;;;N;;;;;-110C0;KAITHI DANDA;Po;0;L;;;;;N;;;;;-110C1;KAITHI DOUBLE DANDA;Po;0;L;;;;;N;;;;;-110D0;SORA SOMPENG LETTER SAH;Lo;0;L;;;;;N;;;;;-110D1;SORA SOMPENG LETTER TAH;Lo;0;L;;;;;N;;;;;-110D2;SORA SOMPENG LETTER BAH;Lo;0;L;;;;;N;;;;;-110D3;SORA SOMPENG LETTER CAH;Lo;0;L;;;;;N;;;;;-110D4;SORA SOMPENG LETTER DAH;Lo;0;L;;;;;N;;;;;-110D5;SORA SOMPENG LETTER GAH;Lo;0;L;;;;;N;;;;;-110D6;SORA SOMPENG LETTER MAH;Lo;0;L;;;;;N;;;;;-110D7;SORA SOMPENG LETTER NGAH;Lo;0;L;;;;;N;;;;;-110D8;SORA SOMPENG LETTER LAH;Lo;0;L;;;;;N;;;;;-110D9;SORA SOMPENG LETTER NAH;Lo;0;L;;;;;N;;;;;-110DA;SORA SOMPENG LETTER VAH;Lo;0;L;;;;;N;;;;;-110DB;SORA SOMPENG LETTER PAH;Lo;0;L;;;;;N;;;;;-110DC;SORA SOMPENG LETTER YAH;Lo;0;L;;;;;N;;;;;-110DD;SORA SOMPENG LETTER RAH;Lo;0;L;;;;;N;;;;;-110DE;SORA SOMPENG LETTER HAH;Lo;0;L;;;;;N;;;;;-110DF;SORA SOMPENG LETTER KAH;Lo;0;L;;;;;N;;;;;-110E0;SORA SOMPENG LETTER JAH;Lo;0;L;;;;;N;;;;;-110E1;SORA SOMPENG LETTER NYAH;Lo;0;L;;;;;N;;;;;-110E2;SORA SOMPENG LETTER AH;Lo;0;L;;;;;N;;;;;-110E3;SORA SOMPENG LETTER EEH;Lo;0;L;;;;;N;;;;;-110E4;SORA SOMPENG LETTER IH;Lo;0;L;;;;;N;;;;;-110E5;SORA SOMPENG LETTER UH;Lo;0;L;;;;;N;;;;;-110E6;SORA SOMPENG LETTER OH;Lo;0;L;;;;;N;;;;;-110E7;SORA SOMPENG LETTER EH;Lo;0;L;;;;;N;;;;;-110E8;SORA SOMPENG LETTER MAE;Lo;0;L;;;;;N;;;;;-110F0;SORA SOMPENG DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-110F1;SORA SOMPENG DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-110F2;SORA SOMPENG DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-110F3;SORA SOMPENG DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-110F4;SORA SOMPENG DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-110F5;SORA SOMPENG DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-110F6;SORA SOMPENG DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-110F7;SORA SOMPENG DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-110F8;SORA SOMPENG DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-110F9;SORA SOMPENG DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-11100;CHAKMA SIGN CANDRABINDU;Mn;230;NSM;;;;;N;;;;;-11101;CHAKMA SIGN ANUSVARA;Mn;230;NSM;;;;;N;;;;;-11102;CHAKMA SIGN VISARGA;Mn;230;NSM;;;;;N;;;;;-11103;CHAKMA LETTER AA;Lo;0;L;;;;;N;;;;;-11104;CHAKMA LETTER I;Lo;0;L;;;;;N;;;;;-11105;CHAKMA LETTER U;Lo;0;L;;;;;N;;;;;-11106;CHAKMA LETTER E;Lo;0;L;;;;;N;;;;;-11107;CHAKMA LETTER KAA;Lo;0;L;;;;;N;;;;;-11108;CHAKMA LETTER KHAA;Lo;0;L;;;;;N;;;;;-11109;CHAKMA LETTER GAA;Lo;0;L;;;;;N;;;;;-1110A;CHAKMA LETTER GHAA;Lo;0;L;;;;;N;;;;;-1110B;CHAKMA LETTER NGAA;Lo;0;L;;;;;N;;;;;-1110C;CHAKMA LETTER CAA;Lo;0;L;;;;;N;;;;;-1110D;CHAKMA LETTER CHAA;Lo;0;L;;;;;N;;;;;-1110E;CHAKMA LETTER JAA;Lo;0;L;;;;;N;;;;;-1110F;CHAKMA LETTER JHAA;Lo;0;L;;;;;N;;;;;-11110;CHAKMA LETTER NYAA;Lo;0;L;;;;;N;;;;;-11111;CHAKMA LETTER TTAA;Lo;0;L;;;;;N;;;;;-11112;CHAKMA LETTER TTHAA;Lo;0;L;;;;;N;;;;;-11113;CHAKMA LETTER DDAA;Lo;0;L;;;;;N;;;;;-11114;CHAKMA LETTER DDHAA;Lo;0;L;;;;;N;;;;;-11115;CHAKMA LETTER NNAA;Lo;0;L;;;;;N;;;;;-11116;CHAKMA LETTER TAA;Lo;0;L;;;;;N;;;;;-11117;CHAKMA LETTER THAA;Lo;0;L;;;;;N;;;;;-11118;CHAKMA LETTER DAA;Lo;0;L;;;;;N;;;;;-11119;CHAKMA LETTER DHAA;Lo;0;L;;;;;N;;;;;-1111A;CHAKMA LETTER NAA;Lo;0;L;;;;;N;;;;;-1111B;CHAKMA LETTER PAA;Lo;0;L;;;;;N;;;;;-1111C;CHAKMA LETTER PHAA;Lo;0;L;;;;;N;;;;;-1111D;CHAKMA LETTER BAA;Lo;0;L;;;;;N;;;;;-1111E;CHAKMA LETTER BHAA;Lo;0;L;;;;;N;;;;;-1111F;CHAKMA LETTER MAA;Lo;0;L;;;;;N;;;;;-11120;CHAKMA LETTER YYAA;Lo;0;L;;;;;N;;;;;-11121;CHAKMA LETTER YAA;Lo;0;L;;;;;N;;;;;-11122;CHAKMA LETTER RAA;Lo;0;L;;;;;N;;;;;-11123;CHAKMA LETTER LAA;Lo;0;L;;;;;N;;;;;-11124;CHAKMA LETTER WAA;Lo;0;L;;;;;N;;;;;-11125;CHAKMA LETTER SAA;Lo;0;L;;;;;N;;;;;-11126;CHAKMA LETTER HAA;Lo;0;L;;;;;N;;;;;-11127;CHAKMA VOWEL SIGN A;Mn;0;NSM;;;;;N;;;;;-11128;CHAKMA VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;;-11129;CHAKMA VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-1112A;CHAKMA VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-1112B;CHAKMA VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-1112C;CHAKMA VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-1112D;CHAKMA VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-1112E;CHAKMA VOWEL SIGN O;Mn;0;NSM;11131 11127;;;;N;;;;;-1112F;CHAKMA VOWEL SIGN AU;Mn;0;NSM;11132 11127;;;;N;;;;;-11130;CHAKMA VOWEL SIGN OI;Mn;0;NSM;;;;;N;;;;;-11131;CHAKMA O MARK;Mn;0;NSM;;;;;N;;;;;-11132;CHAKMA AU MARK;Mn;0;NSM;;;;;N;;;;;-11133;CHAKMA VIRAMA;Mn;9;NSM;;;;;N;;;;;-11134;CHAKMA MAAYYAA;Mn;9;NSM;;;;;N;;;;;-11136;CHAKMA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-11137;CHAKMA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-11138;CHAKMA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-11139;CHAKMA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-1113A;CHAKMA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-1113B;CHAKMA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-1113C;CHAKMA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-1113D;CHAKMA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-1113E;CHAKMA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-1113F;CHAKMA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-11140;CHAKMA SECTION MARK;Po;0;L;;;;;N;;;;;-11141;CHAKMA DANDA;Po;0;L;;;;;N;;;;;-11142;CHAKMA DOUBLE DANDA;Po;0;L;;;;;N;;;;;-11143;CHAKMA QUESTION MARK;Po;0;L;;;;;N;;;;;-11150;MAHAJANI LETTER A;Lo;0;L;;;;;N;;;;;-11151;MAHAJANI LETTER I;Lo;0;L;;;;;N;;;;;-11152;MAHAJANI LETTER U;Lo;0;L;;;;;N;;;;;-11153;MAHAJANI LETTER E;Lo;0;L;;;;;N;;;;;-11154;MAHAJANI LETTER O;Lo;0;L;;;;;N;;;;;-11155;MAHAJANI LETTER KA;Lo;0;L;;;;;N;;;;;-11156;MAHAJANI LETTER KHA;Lo;0;L;;;;;N;;;;;-11157;MAHAJANI LETTER GA;Lo;0;L;;;;;N;;;;;-11158;MAHAJANI LETTER GHA;Lo;0;L;;;;;N;;;;;-11159;MAHAJANI LETTER CA;Lo;0;L;;;;;N;;;;;-1115A;MAHAJANI LETTER CHA;Lo;0;L;;;;;N;;;;;-1115B;MAHAJANI LETTER JA;Lo;0;L;;;;;N;;;;;-1115C;MAHAJANI LETTER JHA;Lo;0;L;;;;;N;;;;;-1115D;MAHAJANI LETTER NYA;Lo;0;L;;;;;N;;;;;-1115E;MAHAJANI LETTER TTA;Lo;0;L;;;;;N;;;;;-1115F;MAHAJANI LETTER TTHA;Lo;0;L;;;;;N;;;;;-11160;MAHAJANI LETTER DDA;Lo;0;L;;;;;N;;;;;-11161;MAHAJANI LETTER DDHA;Lo;0;L;;;;;N;;;;;-11162;MAHAJANI LETTER NNA;Lo;0;L;;;;;N;;;;;-11163;MAHAJANI LETTER TA;Lo;0;L;;;;;N;;;;;-11164;MAHAJANI LETTER THA;Lo;0;L;;;;;N;;;;;-11165;MAHAJANI LETTER DA;Lo;0;L;;;;;N;;;;;-11166;MAHAJANI LETTER DHA;Lo;0;L;;;;;N;;;;;-11167;MAHAJANI LETTER NA;Lo;0;L;;;;;N;;;;;-11168;MAHAJANI LETTER PA;Lo;0;L;;;;;N;;;;;-11169;MAHAJANI LETTER PHA;Lo;0;L;;;;;N;;;;;-1116A;MAHAJANI LETTER BA;Lo;0;L;;;;;N;;;;;-1116B;MAHAJANI LETTER BHA;Lo;0;L;;;;;N;;;;;-1116C;MAHAJANI LETTER MA;Lo;0;L;;;;;N;;;;;-1116D;MAHAJANI LETTER RA;Lo;0;L;;;;;N;;;;;-1116E;MAHAJANI LETTER LA;Lo;0;L;;;;;N;;;;;-1116F;MAHAJANI LETTER VA;Lo;0;L;;;;;N;;;;;-11170;MAHAJANI LETTER SA;Lo;0;L;;;;;N;;;;;-11171;MAHAJANI LETTER HA;Lo;0;L;;;;;N;;;;;-11172;MAHAJANI LETTER RRA;Lo;0;L;;;;;N;;;;;-11173;MAHAJANI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-11174;MAHAJANI ABBREVIATION SIGN;Po;0;L;;;;;N;;;;;-11175;MAHAJANI SECTION MARK;Po;0;L;;;;;N;;;;;-11176;MAHAJANI LIGATURE SHRI;Lo;0;L;;;;;N;;;;;-11180;SHARADA SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-11181;SHARADA SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-11182;SHARADA SIGN VISARGA;Mc;0;L;;;;;N;;;;;-11183;SHARADA LETTER A;Lo;0;L;;;;;N;;;;;-11184;SHARADA LETTER AA;Lo;0;L;;;;;N;;;;;-11185;SHARADA LETTER I;Lo;0;L;;;;;N;;;;;-11186;SHARADA LETTER II;Lo;0;L;;;;;N;;;;;-11187;SHARADA LETTER U;Lo;0;L;;;;;N;;;;;-11188;SHARADA LETTER UU;Lo;0;L;;;;;N;;;;;-11189;SHARADA LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-1118A;SHARADA LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-1118B;SHARADA LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-1118C;SHARADA LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-1118D;SHARADA LETTER E;Lo;0;L;;;;;N;;;;;-1118E;SHARADA LETTER AI;Lo;0;L;;;;;N;;;;;-1118F;SHARADA LETTER O;Lo;0;L;;;;;N;;;;;-11190;SHARADA LETTER AU;Lo;0;L;;;;;N;;;;;-11191;SHARADA LETTER KA;Lo;0;L;;;;;N;;;;;-11192;SHARADA LETTER KHA;Lo;0;L;;;;;N;;;;;-11193;SHARADA LETTER GA;Lo;0;L;;;;;N;;;;;-11194;SHARADA LETTER GHA;Lo;0;L;;;;;N;;;;;-11195;SHARADA LETTER NGA;Lo;0;L;;;;;N;;;;;-11196;SHARADA LETTER CA;Lo;0;L;;;;;N;;;;;-11197;SHARADA LETTER CHA;Lo;0;L;;;;;N;;;;;-11198;SHARADA LETTER JA;Lo;0;L;;;;;N;;;;;-11199;SHARADA LETTER JHA;Lo;0;L;;;;;N;;;;;-1119A;SHARADA LETTER NYA;Lo;0;L;;;;;N;;;;;-1119B;SHARADA LETTER TTA;Lo;0;L;;;;;N;;;;;-1119C;SHARADA LETTER TTHA;Lo;0;L;;;;;N;;;;;-1119D;SHARADA LETTER DDA;Lo;0;L;;;;;N;;;;;-1119E;SHARADA LETTER DDHA;Lo;0;L;;;;;N;;;;;-1119F;SHARADA LETTER NNA;Lo;0;L;;;;;N;;;;;-111A0;SHARADA LETTER TA;Lo;0;L;;;;;N;;;;;-111A1;SHARADA LETTER THA;Lo;0;L;;;;;N;;;;;-111A2;SHARADA LETTER DA;Lo;0;L;;;;;N;;;;;-111A3;SHARADA LETTER DHA;Lo;0;L;;;;;N;;;;;-111A4;SHARADA LETTER NA;Lo;0;L;;;;;N;;;;;-111A5;SHARADA LETTER PA;Lo;0;L;;;;;N;;;;;-111A6;SHARADA LETTER PHA;Lo;0;L;;;;;N;;;;;-111A7;SHARADA LETTER BA;Lo;0;L;;;;;N;;;;;-111A8;SHARADA LETTER BHA;Lo;0;L;;;;;N;;;;;-111A9;SHARADA LETTER MA;Lo;0;L;;;;;N;;;;;-111AA;SHARADA LETTER YA;Lo;0;L;;;;;N;;;;;-111AB;SHARADA LETTER RA;Lo;0;L;;;;;N;;;;;-111AC;SHARADA LETTER LA;Lo;0;L;;;;;N;;;;;-111AD;SHARADA LETTER LLA;Lo;0;L;;;;;N;;;;;-111AE;SHARADA LETTER VA;Lo;0;L;;;;;N;;;;;-111AF;SHARADA LETTER SHA;Lo;0;L;;;;;N;;;;;-111B0;SHARADA LETTER SSA;Lo;0;L;;;;;N;;;;;-111B1;SHARADA LETTER SA;Lo;0;L;;;;;N;;;;;-111B2;SHARADA LETTER HA;Lo;0;L;;;;;N;;;;;-111B3;SHARADA VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-111B4;SHARADA VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-111B5;SHARADA VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-111B6;SHARADA VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-111B7;SHARADA VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-111B8;SHARADA VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-111B9;SHARADA VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-111BA;SHARADA VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-111BB;SHARADA VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-111BC;SHARADA VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-111BD;SHARADA VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-111BE;SHARADA VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-111BF;SHARADA VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-111C0;SHARADA SIGN VIRAMA;Mc;9;L;;;;;N;;;;;-111C1;SHARADA SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-111C2;SHARADA SIGN JIHVAMULIYA;Lo;0;L;;;;;N;;;;;-111C3;SHARADA SIGN UPADHMANIYA;Lo;0;L;;;;;N;;;;;-111C4;SHARADA OM;Lo;0;L;;;;;N;;;;;-111C5;SHARADA DANDA;Po;0;L;;;;;N;;;;;-111C6;SHARADA DOUBLE DANDA;Po;0;L;;;;;N;;;;;-111C7;SHARADA ABBREVIATION SIGN;Po;0;L;;;;;N;;;;;-111C8;SHARADA SEPARATOR;Po;0;L;;;;;N;;;;;-111CD;SHARADA SUTRA MARK;Po;0;L;;;;;N;;;;;-111D0;SHARADA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-111D1;SHARADA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-111D2;SHARADA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-111D3;SHARADA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-111D4;SHARADA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-111D5;SHARADA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-111D6;SHARADA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-111D7;SHARADA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-111D8;SHARADA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-111D9;SHARADA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-111DA;SHARADA EKAM;Lo;0;L;;;;;N;;;;;-111E1;SINHALA ARCHAIC DIGIT ONE;No;0;L;;;;1;N;;;;;-111E2;SINHALA ARCHAIC DIGIT TWO;No;0;L;;;;2;N;;;;;-111E3;SINHALA ARCHAIC DIGIT THREE;No;0;L;;;;3;N;;;;;-111E4;SINHALA ARCHAIC DIGIT FOUR;No;0;L;;;;4;N;;;;;-111E5;SINHALA ARCHAIC DIGIT FIVE;No;0;L;;;;5;N;;;;;-111E6;SINHALA ARCHAIC DIGIT SIX;No;0;L;;;;6;N;;;;;-111E7;SINHALA ARCHAIC DIGIT SEVEN;No;0;L;;;;7;N;;;;;-111E8;SINHALA ARCHAIC DIGIT EIGHT;No;0;L;;;;8;N;;;;;-111E9;SINHALA ARCHAIC DIGIT NINE;No;0;L;;;;9;N;;;;;-111EA;SINHALA ARCHAIC NUMBER TEN;No;0;L;;;;10;N;;;;;-111EB;SINHALA ARCHAIC NUMBER TWENTY;No;0;L;;;;20;N;;;;;-111EC;SINHALA ARCHAIC NUMBER THIRTY;No;0;L;;;;30;N;;;;;-111ED;SINHALA ARCHAIC NUMBER FORTY;No;0;L;;;;40;N;;;;;-111EE;SINHALA ARCHAIC NUMBER FIFTY;No;0;L;;;;50;N;;;;;-111EF;SINHALA ARCHAIC NUMBER SIXTY;No;0;L;;;;60;N;;;;;-111F0;SINHALA ARCHAIC NUMBER SEVENTY;No;0;L;;;;70;N;;;;;-111F1;SINHALA ARCHAIC NUMBER EIGHTY;No;0;L;;;;80;N;;;;;-111F2;SINHALA ARCHAIC NUMBER NINETY;No;0;L;;;;90;N;;;;;-111F3;SINHALA ARCHAIC NUMBER ONE HUNDRED;No;0;L;;;;100;N;;;;;-111F4;SINHALA ARCHAIC NUMBER ONE THOUSAND;No;0;L;;;;1000;N;;;;;-11200;KHOJKI LETTER A;Lo;0;L;;;;;N;;;;;-11201;KHOJKI LETTER AA;Lo;0;L;;;;;N;;;;;-11202;KHOJKI LETTER I;Lo;0;L;;;;;N;;;;;-11203;KHOJKI LETTER U;Lo;0;L;;;;;N;;;;;-11204;KHOJKI LETTER E;Lo;0;L;;;;;N;;;;;-11205;KHOJKI LETTER AI;Lo;0;L;;;;;N;;;;;-11206;KHOJKI LETTER O;Lo;0;L;;;;;N;;;;;-11207;KHOJKI LETTER AU;Lo;0;L;;;;;N;;;;;-11208;KHOJKI LETTER KA;Lo;0;L;;;;;N;;;;;-11209;KHOJKI LETTER KHA;Lo;0;L;;;;;N;;;;;-1120A;KHOJKI LETTER GA;Lo;0;L;;;;;N;;;;;-1120B;KHOJKI LETTER GGA;Lo;0;L;;;;;N;;;;;-1120C;KHOJKI LETTER GHA;Lo;0;L;;;;;N;;;;;-1120D;KHOJKI LETTER NGA;Lo;0;L;;;;;N;;;;;-1120E;KHOJKI LETTER CA;Lo;0;L;;;;;N;;;;;-1120F;KHOJKI LETTER CHA;Lo;0;L;;;;;N;;;;;-11210;KHOJKI LETTER JA;Lo;0;L;;;;;N;;;;;-11211;KHOJKI LETTER JJA;Lo;0;L;;;;;N;;;;;-11213;KHOJKI LETTER NYA;Lo;0;L;;;;;N;;;;;-11214;KHOJKI LETTER TTA;Lo;0;L;;;;;N;;;;;-11215;KHOJKI LETTER TTHA;Lo;0;L;;;;;N;;;;;-11216;KHOJKI LETTER DDA;Lo;0;L;;;;;N;;;;;-11217;KHOJKI LETTER DDHA;Lo;0;L;;;;;N;;;;;-11218;KHOJKI LETTER NNA;Lo;0;L;;;;;N;;;;;-11219;KHOJKI LETTER TA;Lo;0;L;;;;;N;;;;;-1121A;KHOJKI LETTER THA;Lo;0;L;;;;;N;;;;;-1121B;KHOJKI LETTER DA;Lo;0;L;;;;;N;;;;;-1121C;KHOJKI LETTER DDDA;Lo;0;L;;;;;N;;;;;-1121D;KHOJKI LETTER DHA;Lo;0;L;;;;;N;;;;;-1121E;KHOJKI LETTER NA;Lo;0;L;;;;;N;;;;;-1121F;KHOJKI LETTER PA;Lo;0;L;;;;;N;;;;;-11220;KHOJKI LETTER PHA;Lo;0;L;;;;;N;;;;;-11221;KHOJKI LETTER BA;Lo;0;L;;;;;N;;;;;-11222;KHOJKI LETTER BBA;Lo;0;L;;;;;N;;;;;-11223;KHOJKI LETTER BHA;Lo;0;L;;;;;N;;;;;-11224;KHOJKI LETTER MA;Lo;0;L;;;;;N;;;;;-11225;KHOJKI LETTER YA;Lo;0;L;;;;;N;;;;;-11226;KHOJKI LETTER RA;Lo;0;L;;;;;N;;;;;-11227;KHOJKI LETTER LA;Lo;0;L;;;;;N;;;;;-11228;KHOJKI LETTER VA;Lo;0;L;;;;;N;;;;;-11229;KHOJKI LETTER SA;Lo;0;L;;;;;N;;;;;-1122A;KHOJKI LETTER HA;Lo;0;L;;;;;N;;;;;-1122B;KHOJKI LETTER LLA;Lo;0;L;;;;;N;;;;;-1122C;KHOJKI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-1122D;KHOJKI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-1122E;KHOJKI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-1122F;KHOJKI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-11230;KHOJKI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-11231;KHOJKI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-11232;KHOJKI VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-11233;KHOJKI VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-11234;KHOJKI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-11235;KHOJKI SIGN VIRAMA;Mc;9;L;;;;;N;;;;;-11236;KHOJKI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-11237;KHOJKI SIGN SHADDA;Mn;0;NSM;;;;;N;;;;;-11238;KHOJKI DANDA;Po;0;L;;;;;N;;;;;-11239;KHOJKI DOUBLE DANDA;Po;0;L;;;;;N;;;;;-1123A;KHOJKI WORD SEPARATOR;Po;0;L;;;;;N;;;;;-1123B;KHOJKI SECTION MARK;Po;0;L;;;;;N;;;;;-1123C;KHOJKI DOUBLE SECTION MARK;Po;0;L;;;;;N;;;;;-1123D;KHOJKI ABBREVIATION SIGN;Po;0;L;;;;;N;;;;;-112B0;KHUDAWADI LETTER A;Lo;0;L;;;;;N;;;;;-112B1;KHUDAWADI LETTER AA;Lo;0;L;;;;;N;;;;;-112B2;KHUDAWADI LETTER I;Lo;0;L;;;;;N;;;;;-112B3;KHUDAWADI LETTER II;Lo;0;L;;;;;N;;;;;-112B4;KHUDAWADI LETTER U;Lo;0;L;;;;;N;;;;;-112B5;KHUDAWADI LETTER UU;Lo;0;L;;;;;N;;;;;-112B6;KHUDAWADI LETTER E;Lo;0;L;;;;;N;;;;;-112B7;KHUDAWADI LETTER AI;Lo;0;L;;;;;N;;;;;-112B8;KHUDAWADI LETTER O;Lo;0;L;;;;;N;;;;;-112B9;KHUDAWADI LETTER AU;Lo;0;L;;;;;N;;;;;-112BA;KHUDAWADI LETTER KA;Lo;0;L;;;;;N;;;;;-112BB;KHUDAWADI LETTER KHA;Lo;0;L;;;;;N;;;;;-112BC;KHUDAWADI LETTER GA;Lo;0;L;;;;;N;;;;;-112BD;KHUDAWADI LETTER GGA;Lo;0;L;;;;;N;;;;;-112BE;KHUDAWADI LETTER GHA;Lo;0;L;;;;;N;;;;;-112BF;KHUDAWADI LETTER NGA;Lo;0;L;;;;;N;;;;;-112C0;KHUDAWADI LETTER CA;Lo;0;L;;;;;N;;;;;-112C1;KHUDAWADI LETTER CHA;Lo;0;L;;;;;N;;;;;-112C2;KHUDAWADI LETTER JA;Lo;0;L;;;;;N;;;;;-112C3;KHUDAWADI LETTER JJA;Lo;0;L;;;;;N;;;;;-112C4;KHUDAWADI LETTER JHA;Lo;0;L;;;;;N;;;;;-112C5;KHUDAWADI LETTER NYA;Lo;0;L;;;;;N;;;;;-112C6;KHUDAWADI LETTER TTA;Lo;0;L;;;;;N;;;;;-112C7;KHUDAWADI LETTER TTHA;Lo;0;L;;;;;N;;;;;-112C8;KHUDAWADI LETTER DDA;Lo;0;L;;;;;N;;;;;-112C9;KHUDAWADI LETTER DDDA;Lo;0;L;;;;;N;;;;;-112CA;KHUDAWADI LETTER RRA;Lo;0;L;;;;;N;;;;;-112CB;KHUDAWADI LETTER DDHA;Lo;0;L;;;;;N;;;;;-112CC;KHUDAWADI LETTER NNA;Lo;0;L;;;;;N;;;;;-112CD;KHUDAWADI LETTER TA;Lo;0;L;;;;;N;;;;;-112CE;KHUDAWADI LETTER THA;Lo;0;L;;;;;N;;;;;-112CF;KHUDAWADI LETTER DA;Lo;0;L;;;;;N;;;;;-112D0;KHUDAWADI LETTER DHA;Lo;0;L;;;;;N;;;;;-112D1;KHUDAWADI LETTER NA;Lo;0;L;;;;;N;;;;;-112D2;KHUDAWADI LETTER PA;Lo;0;L;;;;;N;;;;;-112D3;KHUDAWADI LETTER PHA;Lo;0;L;;;;;N;;;;;-112D4;KHUDAWADI LETTER BA;Lo;0;L;;;;;N;;;;;-112D5;KHUDAWADI LETTER BBA;Lo;0;L;;;;;N;;;;;-112D6;KHUDAWADI LETTER BHA;Lo;0;L;;;;;N;;;;;-112D7;KHUDAWADI LETTER MA;Lo;0;L;;;;;N;;;;;-112D8;KHUDAWADI LETTER YA;Lo;0;L;;;;;N;;;;;-112D9;KHUDAWADI LETTER RA;Lo;0;L;;;;;N;;;;;-112DA;KHUDAWADI LETTER LA;Lo;0;L;;;;;N;;;;;-112DB;KHUDAWADI LETTER VA;Lo;0;L;;;;;N;;;;;-112DC;KHUDAWADI LETTER SHA;Lo;0;L;;;;;N;;;;;-112DD;KHUDAWADI LETTER SA;Lo;0;L;;;;;N;;;;;-112DE;KHUDAWADI LETTER HA;Lo;0;L;;;;;N;;;;;-112DF;KHUDAWADI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-112E0;KHUDAWADI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-112E1;KHUDAWADI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-112E2;KHUDAWADI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-112E3;KHUDAWADI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-112E4;KHUDAWADI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-112E5;KHUDAWADI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-112E6;KHUDAWADI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-112E7;KHUDAWADI VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-112E8;KHUDAWADI VOWEL SIGN AU;Mn;0;NSM;;;;;N;;;;;-112E9;KHUDAWADI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-112EA;KHUDAWADI SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-112F0;KHUDAWADI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-112F1;KHUDAWADI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-112F2;KHUDAWADI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-112F3;KHUDAWADI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-112F4;KHUDAWADI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-112F5;KHUDAWADI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-112F6;KHUDAWADI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-112F7;KHUDAWADI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-112F8;KHUDAWADI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-112F9;KHUDAWADI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-11301;GRANTHA SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-11302;GRANTHA SIGN ANUSVARA;Mc;0;L;;;;;N;;;;;-11303;GRANTHA SIGN VISARGA;Mc;0;L;;;;;N;;;;;-11305;GRANTHA LETTER A;Lo;0;L;;;;;N;;;;;-11306;GRANTHA LETTER AA;Lo;0;L;;;;;N;;;;;-11307;GRANTHA LETTER I;Lo;0;L;;;;;N;;;;;-11308;GRANTHA LETTER II;Lo;0;L;;;;;N;;;;;-11309;GRANTHA LETTER U;Lo;0;L;;;;;N;;;;;-1130A;GRANTHA LETTER UU;Lo;0;L;;;;;N;;;;;-1130B;GRANTHA LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-1130C;GRANTHA LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-1130F;GRANTHA LETTER EE;Lo;0;L;;;;;N;;;;;-11310;GRANTHA LETTER AI;Lo;0;L;;;;;N;;;;;-11313;GRANTHA LETTER OO;Lo;0;L;;;;;N;;;;;-11314;GRANTHA LETTER AU;Lo;0;L;;;;;N;;;;;-11315;GRANTHA LETTER KA;Lo;0;L;;;;;N;;;;;-11316;GRANTHA LETTER KHA;Lo;0;L;;;;;N;;;;;-11317;GRANTHA LETTER GA;Lo;0;L;;;;;N;;;;;-11318;GRANTHA LETTER GHA;Lo;0;L;;;;;N;;;;;-11319;GRANTHA LETTER NGA;Lo;0;L;;;;;N;;;;;-1131A;GRANTHA LETTER CA;Lo;0;L;;;;;N;;;;;-1131B;GRANTHA LETTER CHA;Lo;0;L;;;;;N;;;;;-1131C;GRANTHA LETTER JA;Lo;0;L;;;;;N;;;;;-1131D;GRANTHA LETTER JHA;Lo;0;L;;;;;N;;;;;-1131E;GRANTHA LETTER NYA;Lo;0;L;;;;;N;;;;;-1131F;GRANTHA LETTER TTA;Lo;0;L;;;;;N;;;;;-11320;GRANTHA LETTER TTHA;Lo;0;L;;;;;N;;;;;-11321;GRANTHA LETTER DDA;Lo;0;L;;;;;N;;;;;-11322;GRANTHA LETTER DDHA;Lo;0;L;;;;;N;;;;;-11323;GRANTHA LETTER NNA;Lo;0;L;;;;;N;;;;;-11324;GRANTHA LETTER TA;Lo;0;L;;;;;N;;;;;-11325;GRANTHA LETTER THA;Lo;0;L;;;;;N;;;;;-11326;GRANTHA LETTER DA;Lo;0;L;;;;;N;;;;;-11327;GRANTHA LETTER DHA;Lo;0;L;;;;;N;;;;;-11328;GRANTHA LETTER NA;Lo;0;L;;;;;N;;;;;-1132A;GRANTHA LETTER PA;Lo;0;L;;;;;N;;;;;-1132B;GRANTHA LETTER PHA;Lo;0;L;;;;;N;;;;;-1132C;GRANTHA LETTER BA;Lo;0;L;;;;;N;;;;;-1132D;GRANTHA LETTER BHA;Lo;0;L;;;;;N;;;;;-1132E;GRANTHA LETTER MA;Lo;0;L;;;;;N;;;;;-1132F;GRANTHA LETTER YA;Lo;0;L;;;;;N;;;;;-11330;GRANTHA LETTER RA;Lo;0;L;;;;;N;;;;;-11332;GRANTHA LETTER LA;Lo;0;L;;;;;N;;;;;-11333;GRANTHA LETTER LLA;Lo;0;L;;;;;N;;;;;-11335;GRANTHA LETTER VA;Lo;0;L;;;;;N;;;;;-11336;GRANTHA LETTER SHA;Lo;0;L;;;;;N;;;;;-11337;GRANTHA LETTER SSA;Lo;0;L;;;;;N;;;;;-11338;GRANTHA LETTER SA;Lo;0;L;;;;;N;;;;;-11339;GRANTHA LETTER HA;Lo;0;L;;;;;N;;;;;-1133C;GRANTHA SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-1133D;GRANTHA SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-1133E;GRANTHA VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-1133F;GRANTHA VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-11340;GRANTHA VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;;-11341;GRANTHA VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-11342;GRANTHA VOWEL SIGN UU;Mc;0;L;;;;;N;;;;;-11343;GRANTHA VOWEL SIGN VOCALIC R;Mc;0;L;;;;;N;;;;;-11344;GRANTHA VOWEL SIGN VOCALIC RR;Mc;0;L;;;;;N;;;;;-11347;GRANTHA VOWEL SIGN EE;Mc;0;L;;;;;N;;;;;-11348;GRANTHA VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-1134B;GRANTHA VOWEL SIGN OO;Mc;0;L;11347 1133E;;;;N;;;;;-1134C;GRANTHA VOWEL SIGN AU;Mc;0;L;11347 11357;;;;N;;;;;-1134D;GRANTHA SIGN VIRAMA;Mc;9;L;;;;;N;;;;;-11357;GRANTHA AU LENGTH MARK;Mc;0;L;;;;;N;;;;;-1135D;GRANTHA SIGN PLUTA;Lo;0;L;;;;;N;;;;;-1135E;GRANTHA LETTER VEDIC ANUSVARA;Lo;0;L;;;;;N;;;;;-1135F;GRANTHA LETTER VEDIC DOUBLE ANUSVARA;Lo;0;L;;;;;N;;;;;-11360;GRANTHA LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-11361;GRANTHA LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-11362;GRANTHA VOWEL SIGN VOCALIC L;Mc;0;L;;;;;N;;;;;-11363;GRANTHA VOWEL SIGN VOCALIC LL;Mc;0;L;;;;;N;;;;;-11366;COMBINING GRANTHA DIGIT ZERO;Mn;230;NSM;;;;;N;;;;;-11367;COMBINING GRANTHA DIGIT ONE;Mn;230;NSM;;;;;N;;;;;-11368;COMBINING GRANTHA DIGIT TWO;Mn;230;NSM;;;;;N;;;;;-11369;COMBINING GRANTHA DIGIT THREE;Mn;230;NSM;;;;;N;;;;;-1136A;COMBINING GRANTHA DIGIT FOUR;Mn;230;NSM;;;;;N;;;;;-1136B;COMBINING GRANTHA DIGIT FIVE;Mn;230;NSM;;;;;N;;;;;-1136C;COMBINING GRANTHA DIGIT SIX;Mn;230;NSM;;;;;N;;;;;-11370;COMBINING GRANTHA LETTER A;Mn;230;NSM;;;;;N;;;;;-11371;COMBINING GRANTHA LETTER KA;Mn;230;NSM;;;;;N;;;;;-11372;COMBINING GRANTHA LETTER NA;Mn;230;NSM;;;;;N;;;;;-11373;COMBINING GRANTHA LETTER VI;Mn;230;NSM;;;;;N;;;;;-11374;COMBINING GRANTHA LETTER PA;Mn;230;NSM;;;;;N;;;;;-11480;TIRHUTA ANJI;Lo;0;L;;;;;N;;;;;-11481;TIRHUTA LETTER A;Lo;0;L;;;;;N;;;;;-11482;TIRHUTA LETTER AA;Lo;0;L;;;;;N;;;;;-11483;TIRHUTA LETTER I;Lo;0;L;;;;;N;;;;;-11484;TIRHUTA LETTER II;Lo;0;L;;;;;N;;;;;-11485;TIRHUTA LETTER U;Lo;0;L;;;;;N;;;;;-11486;TIRHUTA LETTER UU;Lo;0;L;;;;;N;;;;;-11487;TIRHUTA LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-11488;TIRHUTA LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-11489;TIRHUTA LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-1148A;TIRHUTA LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-1148B;TIRHUTA LETTER E;Lo;0;L;;;;;N;;;;;-1148C;TIRHUTA LETTER AI;Lo;0;L;;;;;N;;;;;-1148D;TIRHUTA LETTER O;Lo;0;L;;;;;N;;;;;-1148E;TIRHUTA LETTER AU;Lo;0;L;;;;;N;;;;;-1148F;TIRHUTA LETTER KA;Lo;0;L;;;;;N;;;;;-11490;TIRHUTA LETTER KHA;Lo;0;L;;;;;N;;;;;-11491;TIRHUTA LETTER GA;Lo;0;L;;;;;N;;;;;-11492;TIRHUTA LETTER GHA;Lo;0;L;;;;;N;;;;;-11493;TIRHUTA LETTER NGA;Lo;0;L;;;;;N;;;;;-11494;TIRHUTA LETTER CA;Lo;0;L;;;;;N;;;;;-11495;TIRHUTA LETTER CHA;Lo;0;L;;;;;N;;;;;-11496;TIRHUTA LETTER JA;Lo;0;L;;;;;N;;;;;-11497;TIRHUTA LETTER JHA;Lo;0;L;;;;;N;;;;;-11498;TIRHUTA LETTER NYA;Lo;0;L;;;;;N;;;;;-11499;TIRHUTA LETTER TTA;Lo;0;L;;;;;N;;;;;-1149A;TIRHUTA LETTER TTHA;Lo;0;L;;;;;N;;;;;-1149B;TIRHUTA LETTER DDA;Lo;0;L;;;;;N;;;;;-1149C;TIRHUTA LETTER DDHA;Lo;0;L;;;;;N;;;;;-1149D;TIRHUTA LETTER NNA;Lo;0;L;;;;;N;;;;;-1149E;TIRHUTA LETTER TA;Lo;0;L;;;;;N;;;;;-1149F;TIRHUTA LETTER THA;Lo;0;L;;;;;N;;;;;-114A0;TIRHUTA LETTER DA;Lo;0;L;;;;;N;;;;;-114A1;TIRHUTA LETTER DHA;Lo;0;L;;;;;N;;;;;-114A2;TIRHUTA LETTER NA;Lo;0;L;;;;;N;;;;;-114A3;TIRHUTA LETTER PA;Lo;0;L;;;;;N;;;;;-114A4;TIRHUTA LETTER PHA;Lo;0;L;;;;;N;;;;;-114A5;TIRHUTA LETTER BA;Lo;0;L;;;;;N;;;;;-114A6;TIRHUTA LETTER BHA;Lo;0;L;;;;;N;;;;;-114A7;TIRHUTA LETTER MA;Lo;0;L;;;;;N;;;;;-114A8;TIRHUTA LETTER YA;Lo;0;L;;;;;N;;;;;-114A9;TIRHUTA LETTER RA;Lo;0;L;;;;;N;;;;;-114AA;TIRHUTA LETTER LA;Lo;0;L;;;;;N;;;;;-114AB;TIRHUTA LETTER VA;Lo;0;L;;;;;N;;;;;-114AC;TIRHUTA LETTER SHA;Lo;0;L;;;;;N;;;;;-114AD;TIRHUTA LETTER SSA;Lo;0;L;;;;;N;;;;;-114AE;TIRHUTA LETTER SA;Lo;0;L;;;;;N;;;;;-114AF;TIRHUTA LETTER HA;Lo;0;L;;;;;N;;;;;-114B0;TIRHUTA VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-114B1;TIRHUTA VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-114B2;TIRHUTA VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-114B3;TIRHUTA VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-114B4;TIRHUTA VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-114B5;TIRHUTA VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-114B6;TIRHUTA VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-114B7;TIRHUTA VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-114B8;TIRHUTA VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-114B9;TIRHUTA VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-114BA;TIRHUTA VOWEL SIGN SHORT E;Mn;0;NSM;;;;;N;;;;;-114BB;TIRHUTA VOWEL SIGN AI;Mc;0;L;114B9 114BA;;;;N;;;;;-114BC;TIRHUTA VOWEL SIGN O;Mc;0;L;114B9 114B0;;;;N;;;;;-114BD;TIRHUTA VOWEL SIGN SHORT O;Mc;0;L;;;;;N;;;;;-114BE;TIRHUTA VOWEL SIGN AU;Mc;0;L;114B9 114BD;;;;N;;;;;-114BF;TIRHUTA SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-114C0;TIRHUTA SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-114C1;TIRHUTA SIGN VISARGA;Mc;0;L;;;;;N;;;;;-114C2;TIRHUTA SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-114C3;TIRHUTA SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-114C4;TIRHUTA SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;;-114C5;TIRHUTA GVANG;Lo;0;L;;;;;N;;;;;-114C6;TIRHUTA ABBREVIATION SIGN;Po;0;L;;;;;N;;;;;-114C7;TIRHUTA OM;Lo;0;L;;;;;N;;;;;-114D0;TIRHUTA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-114D1;TIRHUTA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-114D2;TIRHUTA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-114D3;TIRHUTA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-114D4;TIRHUTA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-114D5;TIRHUTA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-114D6;TIRHUTA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-114D7;TIRHUTA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-114D8;TIRHUTA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-114D9;TIRHUTA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-11580;SIDDHAM LETTER A;Lo;0;L;;;;;N;;;;;-11581;SIDDHAM LETTER AA;Lo;0;L;;;;;N;;;;;-11582;SIDDHAM LETTER I;Lo;0;L;;;;;N;;;;;-11583;SIDDHAM LETTER II;Lo;0;L;;;;;N;;;;;-11584;SIDDHAM LETTER U;Lo;0;L;;;;;N;;;;;-11585;SIDDHAM LETTER UU;Lo;0;L;;;;;N;;;;;-11586;SIDDHAM LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-11587;SIDDHAM LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-11588;SIDDHAM LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-11589;SIDDHAM LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-1158A;SIDDHAM LETTER E;Lo;0;L;;;;;N;;;;;-1158B;SIDDHAM LETTER AI;Lo;0;L;;;;;N;;;;;-1158C;SIDDHAM LETTER O;Lo;0;L;;;;;N;;;;;-1158D;SIDDHAM LETTER AU;Lo;0;L;;;;;N;;;;;-1158E;SIDDHAM LETTER KA;Lo;0;L;;;;;N;;;;;-1158F;SIDDHAM LETTER KHA;Lo;0;L;;;;;N;;;;;-11590;SIDDHAM LETTER GA;Lo;0;L;;;;;N;;;;;-11591;SIDDHAM LETTER GHA;Lo;0;L;;;;;N;;;;;-11592;SIDDHAM LETTER NGA;Lo;0;L;;;;;N;;;;;-11593;SIDDHAM LETTER CA;Lo;0;L;;;;;N;;;;;-11594;SIDDHAM LETTER CHA;Lo;0;L;;;;;N;;;;;-11595;SIDDHAM LETTER JA;Lo;0;L;;;;;N;;;;;-11596;SIDDHAM LETTER JHA;Lo;0;L;;;;;N;;;;;-11597;SIDDHAM LETTER NYA;Lo;0;L;;;;;N;;;;;-11598;SIDDHAM LETTER TTA;Lo;0;L;;;;;N;;;;;-11599;SIDDHAM LETTER TTHA;Lo;0;L;;;;;N;;;;;-1159A;SIDDHAM LETTER DDA;Lo;0;L;;;;;N;;;;;-1159B;SIDDHAM LETTER DDHA;Lo;0;L;;;;;N;;;;;-1159C;SIDDHAM LETTER NNA;Lo;0;L;;;;;N;;;;;-1159D;SIDDHAM LETTER TA;Lo;0;L;;;;;N;;;;;-1159E;SIDDHAM LETTER THA;Lo;0;L;;;;;N;;;;;-1159F;SIDDHAM LETTER DA;Lo;0;L;;;;;N;;;;;-115A0;SIDDHAM LETTER DHA;Lo;0;L;;;;;N;;;;;-115A1;SIDDHAM LETTER NA;Lo;0;L;;;;;N;;;;;-115A2;SIDDHAM LETTER PA;Lo;0;L;;;;;N;;;;;-115A3;SIDDHAM LETTER PHA;Lo;0;L;;;;;N;;;;;-115A4;SIDDHAM LETTER BA;Lo;0;L;;;;;N;;;;;-115A5;SIDDHAM LETTER BHA;Lo;0;L;;;;;N;;;;;-115A6;SIDDHAM LETTER MA;Lo;0;L;;;;;N;;;;;-115A7;SIDDHAM LETTER YA;Lo;0;L;;;;;N;;;;;-115A8;SIDDHAM LETTER RA;Lo;0;L;;;;;N;;;;;-115A9;SIDDHAM LETTER LA;Lo;0;L;;;;;N;;;;;-115AA;SIDDHAM LETTER VA;Lo;0;L;;;;;N;;;;;-115AB;SIDDHAM LETTER SHA;Lo;0;L;;;;;N;;;;;-115AC;SIDDHAM LETTER SSA;Lo;0;L;;;;;N;;;;;-115AD;SIDDHAM LETTER SA;Lo;0;L;;;;;N;;;;;-115AE;SIDDHAM LETTER HA;Lo;0;L;;;;;N;;;;;-115AF;SIDDHAM VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-115B0;SIDDHAM VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-115B1;SIDDHAM VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-115B2;SIDDHAM VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-115B3;SIDDHAM VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-115B4;SIDDHAM VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-115B5;SIDDHAM VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-115B8;SIDDHAM VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-115B9;SIDDHAM VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-115BA;SIDDHAM VOWEL SIGN O;Mc;0;L;115B8 115AF;;;;N;;;;;-115BB;SIDDHAM VOWEL SIGN AU;Mc;0;L;115B9 115AF;;;;N;;;;;-115BC;SIDDHAM SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;;-115BD;SIDDHAM SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-115BE;SIDDHAM SIGN VISARGA;Mc;0;L;;;;;N;;;;;-115BF;SIDDHAM SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-115C0;SIDDHAM SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-115C1;SIDDHAM SIGN SIDDHAM;Po;0;L;;;;;N;;;;;-115C2;SIDDHAM DANDA;Po;0;L;;;;;N;;;;;-115C3;SIDDHAM DOUBLE DANDA;Po;0;L;;;;;N;;;;;-115C4;SIDDHAM SEPARATOR DOT;Po;0;L;;;;;N;;;;;-115C5;SIDDHAM SEPARATOR BAR;Po;0;L;;;;;N;;;;;-115C6;SIDDHAM REPETITION MARK-1;Po;0;L;;;;;N;;;;;-115C7;SIDDHAM REPETITION MARK-2;Po;0;L;;;;;N;;;;;-115C8;SIDDHAM REPETITION MARK-3;Po;0;L;;;;;N;;;;;-115C9;SIDDHAM END OF TEXT MARK;Po;0;L;;;;;N;;;;;-11600;MODI LETTER A;Lo;0;L;;;;;N;;;;;-11601;MODI LETTER AA;Lo;0;L;;;;;N;;;;;-11602;MODI LETTER I;Lo;0;L;;;;;N;;;;;-11603;MODI LETTER II;Lo;0;L;;;;;N;;;;;-11604;MODI LETTER U;Lo;0;L;;;;;N;;;;;-11605;MODI LETTER UU;Lo;0;L;;;;;N;;;;;-11606;MODI LETTER VOCALIC R;Lo;0;L;;;;;N;;;;;-11607;MODI LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;;-11608;MODI LETTER VOCALIC L;Lo;0;L;;;;;N;;;;;-11609;MODI LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;;-1160A;MODI LETTER E;Lo;0;L;;;;;N;;;;;-1160B;MODI LETTER AI;Lo;0;L;;;;;N;;;;;-1160C;MODI LETTER O;Lo;0;L;;;;;N;;;;;-1160D;MODI LETTER AU;Lo;0;L;;;;;N;;;;;-1160E;MODI LETTER KA;Lo;0;L;;;;;N;;;;;-1160F;MODI LETTER KHA;Lo;0;L;;;;;N;;;;;-11610;MODI LETTER GA;Lo;0;L;;;;;N;;;;;-11611;MODI LETTER GHA;Lo;0;L;;;;;N;;;;;-11612;MODI LETTER NGA;Lo;0;L;;;;;N;;;;;-11613;MODI LETTER CA;Lo;0;L;;;;;N;;;;;-11614;MODI LETTER CHA;Lo;0;L;;;;;N;;;;;-11615;MODI LETTER JA;Lo;0;L;;;;;N;;;;;-11616;MODI LETTER JHA;Lo;0;L;;;;;N;;;;;-11617;MODI LETTER NYA;Lo;0;L;;;;;N;;;;;-11618;MODI LETTER TTA;Lo;0;L;;;;;N;;;;;-11619;MODI LETTER TTHA;Lo;0;L;;;;;N;;;;;-1161A;MODI LETTER DDA;Lo;0;L;;;;;N;;;;;-1161B;MODI LETTER DDHA;Lo;0;L;;;;;N;;;;;-1161C;MODI LETTER NNA;Lo;0;L;;;;;N;;;;;-1161D;MODI LETTER TA;Lo;0;L;;;;;N;;;;;-1161E;MODI LETTER THA;Lo;0;L;;;;;N;;;;;-1161F;MODI LETTER DA;Lo;0;L;;;;;N;;;;;-11620;MODI LETTER DHA;Lo;0;L;;;;;N;;;;;-11621;MODI LETTER NA;Lo;0;L;;;;;N;;;;;-11622;MODI LETTER PA;Lo;0;L;;;;;N;;;;;-11623;MODI LETTER PHA;Lo;0;L;;;;;N;;;;;-11624;MODI LETTER BA;Lo;0;L;;;;;N;;;;;-11625;MODI LETTER BHA;Lo;0;L;;;;;N;;;;;-11626;MODI LETTER MA;Lo;0;L;;;;;N;;;;;-11627;MODI LETTER YA;Lo;0;L;;;;;N;;;;;-11628;MODI LETTER RA;Lo;0;L;;;;;N;;;;;-11629;MODI LETTER LA;Lo;0;L;;;;;N;;;;;-1162A;MODI LETTER VA;Lo;0;L;;;;;N;;;;;-1162B;MODI LETTER SHA;Lo;0;L;;;;;N;;;;;-1162C;MODI LETTER SSA;Lo;0;L;;;;;N;;;;;-1162D;MODI LETTER SA;Lo;0;L;;;;;N;;;;;-1162E;MODI LETTER HA;Lo;0;L;;;;;N;;;;;-1162F;MODI LETTER LLA;Lo;0;L;;;;;N;;;;;-11630;MODI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-11631;MODI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-11632;MODI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-11633;MODI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-11634;MODI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-11635;MODI VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;;-11636;MODI VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;;-11637;MODI VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;;-11638;MODI VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;;-11639;MODI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-1163A;MODI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-1163B;MODI VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-1163C;MODI VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-1163D;MODI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-1163E;MODI SIGN VISARGA;Mc;0;L;;;;;N;;;;;-1163F;MODI SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;;-11640;MODI SIGN ARDHACANDRA;Mn;0;NSM;;;;;N;;;;;-11641;MODI DANDA;Po;0;L;;;;;N;;;;;-11642;MODI DOUBLE DANDA;Po;0;L;;;;;N;;;;;-11643;MODI ABBREVIATION SIGN;Po;0;L;;;;;N;;;;;-11644;MODI SIGN HUVA;Lo;0;L;;;;;N;;;;;-11650;MODI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-11651;MODI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-11652;MODI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-11653;MODI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-11654;MODI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-11655;MODI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-11656;MODI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-11657;MODI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-11658;MODI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-11659;MODI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-11680;TAKRI LETTER A;Lo;0;L;;;;;N;;;;;-11681;TAKRI LETTER AA;Lo;0;L;;;;;N;;;;;-11682;TAKRI LETTER I;Lo;0;L;;;;;N;;;;;-11683;TAKRI LETTER II;Lo;0;L;;;;;N;;;;;-11684;TAKRI LETTER U;Lo;0;L;;;;;N;;;;;-11685;TAKRI LETTER UU;Lo;0;L;;;;;N;;;;;-11686;TAKRI LETTER E;Lo;0;L;;;;;N;;;;;-11687;TAKRI LETTER AI;Lo;0;L;;;;;N;;;;;-11688;TAKRI LETTER O;Lo;0;L;;;;;N;;;;;-11689;TAKRI LETTER AU;Lo;0;L;;;;;N;;;;;-1168A;TAKRI LETTER KA;Lo;0;L;;;;;N;;;;;-1168B;TAKRI LETTER KHA;Lo;0;L;;;;;N;;;;;-1168C;TAKRI LETTER GA;Lo;0;L;;;;;N;;;;;-1168D;TAKRI LETTER GHA;Lo;0;L;;;;;N;;;;;-1168E;TAKRI LETTER NGA;Lo;0;L;;;;;N;;;;;-1168F;TAKRI LETTER CA;Lo;0;L;;;;;N;;;;;-11690;TAKRI LETTER CHA;Lo;0;L;;;;;N;;;;;-11691;TAKRI LETTER JA;Lo;0;L;;;;;N;;;;;-11692;TAKRI LETTER JHA;Lo;0;L;;;;;N;;;;;-11693;TAKRI LETTER NYA;Lo;0;L;;;;;N;;;;;-11694;TAKRI LETTER TTA;Lo;0;L;;;;;N;;;;;-11695;TAKRI LETTER TTHA;Lo;0;L;;;;;N;;;;;-11696;TAKRI LETTER DDA;Lo;0;L;;;;;N;;;;;-11697;TAKRI LETTER DDHA;Lo;0;L;;;;;N;;;;;-11698;TAKRI LETTER NNA;Lo;0;L;;;;;N;;;;;-11699;TAKRI LETTER TA;Lo;0;L;;;;;N;;;;;-1169A;TAKRI LETTER THA;Lo;0;L;;;;;N;;;;;-1169B;TAKRI LETTER DA;Lo;0;L;;;;;N;;;;;-1169C;TAKRI LETTER DHA;Lo;0;L;;;;;N;;;;;-1169D;TAKRI LETTER NA;Lo;0;L;;;;;N;;;;;-1169E;TAKRI LETTER PA;Lo;0;L;;;;;N;;;;;-1169F;TAKRI LETTER PHA;Lo;0;L;;;;;N;;;;;-116A0;TAKRI LETTER BA;Lo;0;L;;;;;N;;;;;-116A1;TAKRI LETTER BHA;Lo;0;L;;;;;N;;;;;-116A2;TAKRI LETTER MA;Lo;0;L;;;;;N;;;;;-116A3;TAKRI LETTER YA;Lo;0;L;;;;;N;;;;;-116A4;TAKRI LETTER RA;Lo;0;L;;;;;N;;;;;-116A5;TAKRI LETTER LA;Lo;0;L;;;;;N;;;;;-116A6;TAKRI LETTER VA;Lo;0;L;;;;;N;;;;;-116A7;TAKRI LETTER SHA;Lo;0;L;;;;;N;;;;;-116A8;TAKRI LETTER SA;Lo;0;L;;;;;N;;;;;-116A9;TAKRI LETTER HA;Lo;0;L;;;;;N;;;;;-116AA;TAKRI LETTER RRA;Lo;0;L;;;;;N;;;;;-116AB;TAKRI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;;-116AC;TAKRI SIGN VISARGA;Mc;0;L;;;;;N;;;;;-116AD;TAKRI VOWEL SIGN AA;Mn;0;NSM;;;;;N;;;;;-116AE;TAKRI VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-116AF;TAKRI VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-116B0;TAKRI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;;-116B1;TAKRI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;;-116B2;TAKRI VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;;-116B3;TAKRI VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;;-116B4;TAKRI VOWEL SIGN O;Mn;0;NSM;;;;;N;;;;;-116B5;TAKRI VOWEL SIGN AU;Mn;0;NSM;;;;;N;;;;;-116B6;TAKRI SIGN VIRAMA;Mc;9;L;;;;;N;;;;;-116B7;TAKRI SIGN NUKTA;Mn;7;NSM;;;;;N;;;;;-116C0;TAKRI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-116C1;TAKRI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-116C2;TAKRI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-116C3;TAKRI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-116C4;TAKRI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-116C5;TAKRI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-116C6;TAKRI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-116C7;TAKRI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-116C8;TAKRI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-116C9;TAKRI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-118A0;WARANG CITI CAPITAL LETTER NGAA;Lu;0;L;;;;;N;;;;118C0;-118A1;WARANG CITI CAPITAL LETTER A;Lu;0;L;;;;;N;;;;118C1;-118A2;WARANG CITI CAPITAL LETTER WI;Lu;0;L;;;;;N;;;;118C2;-118A3;WARANG CITI CAPITAL LETTER YU;Lu;0;L;;;;;N;;;;118C3;-118A4;WARANG CITI CAPITAL LETTER YA;Lu;0;L;;;;;N;;;;118C4;-118A5;WARANG CITI CAPITAL LETTER YO;Lu;0;L;;;;;N;;;;118C5;-118A6;WARANG CITI CAPITAL LETTER II;Lu;0;L;;;;;N;;;;118C6;-118A7;WARANG CITI CAPITAL LETTER UU;Lu;0;L;;;;;N;;;;118C7;-118A8;WARANG CITI CAPITAL LETTER E;Lu;0;L;;;;;N;;;;118C8;-118A9;WARANG CITI CAPITAL LETTER O;Lu;0;L;;;;;N;;;;118C9;-118AA;WARANG CITI CAPITAL LETTER ANG;Lu;0;L;;;;;N;;;;118CA;-118AB;WARANG CITI CAPITAL LETTER GA;Lu;0;L;;;;;N;;;;118CB;-118AC;WARANG CITI CAPITAL LETTER KO;Lu;0;L;;;;;N;;;;118CC;-118AD;WARANG CITI CAPITAL LETTER ENY;Lu;0;L;;;;;N;;;;118CD;-118AE;WARANG CITI CAPITAL LETTER YUJ;Lu;0;L;;;;;N;;;;118CE;-118AF;WARANG CITI CAPITAL LETTER UC;Lu;0;L;;;;;N;;;;118CF;-118B0;WARANG CITI CAPITAL LETTER ENN;Lu;0;L;;;;;N;;;;118D0;-118B1;WARANG CITI CAPITAL LETTER ODD;Lu;0;L;;;;;N;;;;118D1;-118B2;WARANG CITI CAPITAL LETTER TTE;Lu;0;L;;;;;N;;;;118D2;-118B3;WARANG CITI CAPITAL LETTER NUNG;Lu;0;L;;;;;N;;;;118D3;-118B4;WARANG CITI CAPITAL LETTER DA;Lu;0;L;;;;;N;;;;118D4;-118B5;WARANG CITI CAPITAL LETTER AT;Lu;0;L;;;;;N;;;;118D5;-118B6;WARANG CITI CAPITAL LETTER AM;Lu;0;L;;;;;N;;;;118D6;-118B7;WARANG CITI CAPITAL LETTER BU;Lu;0;L;;;;;N;;;;118D7;-118B8;WARANG CITI CAPITAL LETTER PU;Lu;0;L;;;;;N;;;;118D8;-118B9;WARANG CITI CAPITAL LETTER HIYO;Lu;0;L;;;;;N;;;;118D9;-118BA;WARANG CITI CAPITAL LETTER HOLO;Lu;0;L;;;;;N;;;;118DA;-118BB;WARANG CITI CAPITAL LETTER HORR;Lu;0;L;;;;;N;;;;118DB;-118BC;WARANG CITI CAPITAL LETTER HAR;Lu;0;L;;;;;N;;;;118DC;-118BD;WARANG CITI CAPITAL LETTER SSUU;Lu;0;L;;;;;N;;;;118DD;-118BE;WARANG CITI CAPITAL LETTER SII;Lu;0;L;;;;;N;;;;118DE;-118BF;WARANG CITI CAPITAL LETTER VIYO;Lu;0;L;;;;;N;;;;118DF;-118C0;WARANG CITI SMALL LETTER NGAA;Ll;0;L;;;;;N;;;118A0;;118A0-118C1;WARANG CITI SMALL LETTER A;Ll;0;L;;;;;N;;;118A1;;118A1-118C2;WARANG CITI SMALL LETTER WI;Ll;0;L;;;;;N;;;118A2;;118A2-118C3;WARANG CITI SMALL LETTER YU;Ll;0;L;;;;;N;;;118A3;;118A3-118C4;WARANG CITI SMALL LETTER YA;Ll;0;L;;;;;N;;;118A4;;118A4-118C5;WARANG CITI SMALL LETTER YO;Ll;0;L;;;;;N;;;118A5;;118A5-118C6;WARANG CITI SMALL LETTER II;Ll;0;L;;;;;N;;;118A6;;118A6-118C7;WARANG CITI SMALL LETTER UU;Ll;0;L;;;;;N;;;118A7;;118A7-118C8;WARANG CITI SMALL LETTER E;Ll;0;L;;;;;N;;;118A8;;118A8-118C9;WARANG CITI SMALL LETTER O;Ll;0;L;;;;;N;;;118A9;;118A9-118CA;WARANG CITI SMALL LETTER ANG;Ll;0;L;;;;;N;;;118AA;;118AA-118CB;WARANG CITI SMALL LETTER GA;Ll;0;L;;;;;N;;;118AB;;118AB-118CC;WARANG CITI SMALL LETTER KO;Ll;0;L;;;;;N;;;118AC;;118AC-118CD;WARANG CITI SMALL LETTER ENY;Ll;0;L;;;;;N;;;118AD;;118AD-118CE;WARANG CITI SMALL LETTER YUJ;Ll;0;L;;;;;N;;;118AE;;118AE-118CF;WARANG CITI SMALL LETTER UC;Ll;0;L;;;;;N;;;118AF;;118AF-118D0;WARANG CITI SMALL LETTER ENN;Ll;0;L;;;;;N;;;118B0;;118B0-118D1;WARANG CITI SMALL LETTER ODD;Ll;0;L;;;;;N;;;118B1;;118B1-118D2;WARANG CITI SMALL LETTER TTE;Ll;0;L;;;;;N;;;118B2;;118B2-118D3;WARANG CITI SMALL LETTER NUNG;Ll;0;L;;;;;N;;;118B3;;118B3-118D4;WARANG CITI SMALL LETTER DA;Ll;0;L;;;;;N;;;118B4;;118B4-118D5;WARANG CITI SMALL LETTER AT;Ll;0;L;;;;;N;;;118B5;;118B5-118D6;WARANG CITI SMALL LETTER AM;Ll;0;L;;;;;N;;;118B6;;118B6-118D7;WARANG CITI SMALL LETTER BU;Ll;0;L;;;;;N;;;118B7;;118B7-118D8;WARANG CITI SMALL LETTER PU;Ll;0;L;;;;;N;;;118B8;;118B8-118D9;WARANG CITI SMALL LETTER HIYO;Ll;0;L;;;;;N;;;118B9;;118B9-118DA;WARANG CITI SMALL LETTER HOLO;Ll;0;L;;;;;N;;;118BA;;118BA-118DB;WARANG CITI SMALL LETTER HORR;Ll;0;L;;;;;N;;;118BB;;118BB-118DC;WARANG CITI SMALL LETTER HAR;Ll;0;L;;;;;N;;;118BC;;118BC-118DD;WARANG CITI SMALL LETTER SSUU;Ll;0;L;;;;;N;;;118BD;;118BD-118DE;WARANG CITI SMALL LETTER SII;Ll;0;L;;;;;N;;;118BE;;118BE-118DF;WARANG CITI SMALL LETTER VIYO;Ll;0;L;;;;;N;;;118BF;;118BF-118E0;WARANG CITI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-118E1;WARANG CITI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-118E2;WARANG CITI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-118E3;WARANG CITI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-118E4;WARANG CITI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-118E5;WARANG CITI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-118E6;WARANG CITI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-118E7;WARANG CITI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-118E8;WARANG CITI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-118E9;WARANG CITI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-118EA;WARANG CITI NUMBER TEN;No;0;L;;;;10;N;;;;;-118EB;WARANG CITI NUMBER TWENTY;No;0;L;;;;20;N;;;;;-118EC;WARANG CITI NUMBER THIRTY;No;0;L;;;;30;N;;;;;-118ED;WARANG CITI NUMBER FORTY;No;0;L;;;;40;N;;;;;-118EE;WARANG CITI NUMBER FIFTY;No;0;L;;;;50;N;;;;;-118EF;WARANG CITI NUMBER SIXTY;No;0;L;;;;60;N;;;;;-118F0;WARANG CITI NUMBER SEVENTY;No;0;L;;;;70;N;;;;;-118F1;WARANG CITI NUMBER EIGHTY;No;0;L;;;;80;N;;;;;-118F2;WARANG CITI NUMBER NINETY;No;0;L;;;;90;N;;;;;-118FF;WARANG CITI OM;Lo;0;L;;;;;N;;;;;-11AC0;PAU CIN HAU LETTER PA;Lo;0;L;;;;;N;;;;;-11AC1;PAU CIN HAU LETTER KA;Lo;0;L;;;;;N;;;;;-11AC2;PAU CIN HAU LETTER LA;Lo;0;L;;;;;N;;;;;-11AC3;PAU CIN HAU LETTER MA;Lo;0;L;;;;;N;;;;;-11AC4;PAU CIN HAU LETTER DA;Lo;0;L;;;;;N;;;;;-11AC5;PAU CIN HAU LETTER ZA;Lo;0;L;;;;;N;;;;;-11AC6;PAU CIN HAU LETTER VA;Lo;0;L;;;;;N;;;;;-11AC7;PAU CIN HAU LETTER NGA;Lo;0;L;;;;;N;;;;;-11AC8;PAU CIN HAU LETTER HA;Lo;0;L;;;;;N;;;;;-11AC9;PAU CIN HAU LETTER GA;Lo;0;L;;;;;N;;;;;-11ACA;PAU CIN HAU LETTER KHA;Lo;0;L;;;;;N;;;;;-11ACB;PAU CIN HAU LETTER SA;Lo;0;L;;;;;N;;;;;-11ACC;PAU CIN HAU LETTER BA;Lo;0;L;;;;;N;;;;;-11ACD;PAU CIN HAU LETTER CA;Lo;0;L;;;;;N;;;;;-11ACE;PAU CIN HAU LETTER TA;Lo;0;L;;;;;N;;;;;-11ACF;PAU CIN HAU LETTER THA;Lo;0;L;;;;;N;;;;;-11AD0;PAU CIN HAU LETTER NA;Lo;0;L;;;;;N;;;;;-11AD1;PAU CIN HAU LETTER PHA;Lo;0;L;;;;;N;;;;;-11AD2;PAU CIN HAU LETTER RA;Lo;0;L;;;;;N;;;;;-11AD3;PAU CIN HAU LETTER FA;Lo;0;L;;;;;N;;;;;-11AD4;PAU CIN HAU LETTER CHA;Lo;0;L;;;;;N;;;;;-11AD5;PAU CIN HAU LETTER A;Lo;0;L;;;;;N;;;;;-11AD6;PAU CIN HAU LETTER E;Lo;0;L;;;;;N;;;;;-11AD7;PAU CIN HAU LETTER I;Lo;0;L;;;;;N;;;;;-11AD8;PAU CIN HAU LETTER O;Lo;0;L;;;;;N;;;;;-11AD9;PAU CIN HAU LETTER U;Lo;0;L;;;;;N;;;;;-11ADA;PAU CIN HAU LETTER UA;Lo;0;L;;;;;N;;;;;-11ADB;PAU CIN HAU LETTER IA;Lo;0;L;;;;;N;;;;;-11ADC;PAU CIN HAU LETTER FINAL P;Lo;0;L;;;;;N;;;;;-11ADD;PAU CIN HAU LETTER FINAL K;Lo;0;L;;;;;N;;;;;-11ADE;PAU CIN HAU LETTER FINAL T;Lo;0;L;;;;;N;;;;;-11ADF;PAU CIN HAU LETTER FINAL M;Lo;0;L;;;;;N;;;;;-11AE0;PAU CIN HAU LETTER FINAL N;Lo;0;L;;;;;N;;;;;-11AE1;PAU CIN HAU LETTER FINAL L;Lo;0;L;;;;;N;;;;;-11AE2;PAU CIN HAU LETTER FINAL W;Lo;0;L;;;;;N;;;;;-11AE3;PAU CIN HAU LETTER FINAL NG;Lo;0;L;;;;;N;;;;;-11AE4;PAU CIN HAU LETTER FINAL Y;Lo;0;L;;;;;N;;;;;-11AE5;PAU CIN HAU RISING TONE LONG;Lo;0;L;;;;;N;;;;;-11AE6;PAU CIN HAU RISING TONE;Lo;0;L;;;;;N;;;;;-11AE7;PAU CIN HAU SANDHI GLOTTAL STOP;Lo;0;L;;;;;N;;;;;-11AE8;PAU CIN HAU RISING TONE LONG FINAL;Lo;0;L;;;;;N;;;;;-11AE9;PAU CIN HAU RISING TONE FINAL;Lo;0;L;;;;;N;;;;;-11AEA;PAU CIN HAU SANDHI GLOTTAL STOP FINAL;Lo;0;L;;;;;N;;;;;-11AEB;PAU CIN HAU SANDHI TONE LONG;Lo;0;L;;;;;N;;;;;-11AEC;PAU CIN HAU SANDHI TONE;Lo;0;L;;;;;N;;;;;-11AED;PAU CIN HAU SANDHI TONE LONG FINAL;Lo;0;L;;;;;N;;;;;-11AEE;PAU CIN HAU SANDHI TONE FINAL;Lo;0;L;;;;;N;;;;;-11AEF;PAU CIN HAU MID-LEVEL TONE;Lo;0;L;;;;;N;;;;;-11AF0;PAU CIN HAU GLOTTAL STOP VARIANT;Lo;0;L;;;;;N;;;;;-11AF1;PAU CIN HAU MID-LEVEL TONE LONG FINAL;Lo;0;L;;;;;N;;;;;-11AF2;PAU CIN HAU MID-LEVEL TONE FINAL;Lo;0;L;;;;;N;;;;;-11AF3;PAU CIN HAU LOW-FALLING TONE LONG;Lo;0;L;;;;;N;;;;;-11AF4;PAU CIN HAU LOW-FALLING TONE;Lo;0;L;;;;;N;;;;;-11AF5;PAU CIN HAU GLOTTAL STOP;Lo;0;L;;;;;N;;;;;-11AF6;PAU CIN HAU LOW-FALLING TONE LONG FINAL;Lo;0;L;;;;;N;;;;;-11AF7;PAU CIN HAU LOW-FALLING TONE FINAL;Lo;0;L;;;;;N;;;;;-11AF8;PAU CIN HAU GLOTTAL STOP FINAL;Lo;0;L;;;;;N;;;;;-12000;CUNEIFORM SIGN A;Lo;0;L;;;;;N;;;;;-12001;CUNEIFORM SIGN A TIMES A;Lo;0;L;;;;;N;;;;;-12002;CUNEIFORM SIGN A TIMES BAD;Lo;0;L;;;;;N;;;;;-12003;CUNEIFORM SIGN A TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-12004;CUNEIFORM SIGN A TIMES HA;Lo;0;L;;;;;N;;;;;-12005;CUNEIFORM SIGN A TIMES IGI;Lo;0;L;;;;;N;;;;;-12006;CUNEIFORM SIGN A TIMES LAGAR GUNU;Lo;0;L;;;;;N;;;;;-12007;CUNEIFORM SIGN A TIMES MUSH;Lo;0;L;;;;;N;;;;;-12008;CUNEIFORM SIGN A TIMES SAG;Lo;0;L;;;;;N;;;;;-12009;CUNEIFORM SIGN A2;Lo;0;L;;;;;N;;;;;-1200A;CUNEIFORM SIGN AB;Lo;0;L;;;;;N;;;;;-1200B;CUNEIFORM SIGN AB TIMES ASH2;Lo;0;L;;;;;N;;;;;-1200C;CUNEIFORM SIGN AB TIMES DUN3 GUNU;Lo;0;L;;;;;N;;;;;-1200D;CUNEIFORM SIGN AB TIMES GAL;Lo;0;L;;;;;N;;;;;-1200E;CUNEIFORM SIGN AB TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-1200F;CUNEIFORM SIGN AB TIMES HA;Lo;0;L;;;;;N;;;;;-12010;CUNEIFORM SIGN AB TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-12011;CUNEIFORM SIGN AB TIMES IMIN;Lo;0;L;;;;;N;;;;;-12012;CUNEIFORM SIGN AB TIMES LAGAB;Lo;0;L;;;;;N;;;;;-12013;CUNEIFORM SIGN AB TIMES SHESH;Lo;0;L;;;;;N;;;;;-12014;CUNEIFORM SIGN AB TIMES U PLUS U PLUS U;Lo;0;L;;;;;N;;;;;-12015;CUNEIFORM SIGN AB GUNU;Lo;0;L;;;;;N;;;;;-12016;CUNEIFORM SIGN AB2;Lo;0;L;;;;;N;;;;;-12017;CUNEIFORM SIGN AB2 TIMES BALAG;Lo;0;L;;;;;N;;;;;-12018;CUNEIFORM SIGN AB2 TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-12019;CUNEIFORM SIGN AB2 TIMES ME PLUS EN;Lo;0;L;;;;;N;;;;;-1201A;CUNEIFORM SIGN AB2 TIMES SHA3;Lo;0;L;;;;;N;;;;;-1201B;CUNEIFORM SIGN AB2 TIMES TAK4;Lo;0;L;;;;;N;;;;;-1201C;CUNEIFORM SIGN AD;Lo;0;L;;;;;N;;;;;-1201D;CUNEIFORM SIGN AK;Lo;0;L;;;;;N;;;;;-1201E;CUNEIFORM SIGN AK TIMES ERIN2;Lo;0;L;;;;;N;;;;;-1201F;CUNEIFORM SIGN AK TIMES SHITA PLUS GISH;Lo;0;L;;;;;N;;;;;-12020;CUNEIFORM SIGN AL;Lo;0;L;;;;;N;;;;;-12021;CUNEIFORM SIGN AL TIMES AL;Lo;0;L;;;;;N;;;;;-12022;CUNEIFORM SIGN AL TIMES DIM2;Lo;0;L;;;;;N;;;;;-12023;CUNEIFORM SIGN AL TIMES GISH;Lo;0;L;;;;;N;;;;;-12024;CUNEIFORM SIGN AL TIMES HA;Lo;0;L;;;;;N;;;;;-12025;CUNEIFORM SIGN AL TIMES KAD3;Lo;0;L;;;;;N;;;;;-12026;CUNEIFORM SIGN AL TIMES KI;Lo;0;L;;;;;N;;;;;-12027;CUNEIFORM SIGN AL TIMES SHE;Lo;0;L;;;;;N;;;;;-12028;CUNEIFORM SIGN AL TIMES USH;Lo;0;L;;;;;N;;;;;-12029;CUNEIFORM SIGN ALAN;Lo;0;L;;;;;N;;;;;-1202A;CUNEIFORM SIGN ALEPH;Lo;0;L;;;;;N;;;;;-1202B;CUNEIFORM SIGN AMAR;Lo;0;L;;;;;N;;;;;-1202C;CUNEIFORM SIGN AMAR TIMES SHE;Lo;0;L;;;;;N;;;;;-1202D;CUNEIFORM SIGN AN;Lo;0;L;;;;;N;;;;;-1202E;CUNEIFORM SIGN AN OVER AN;Lo;0;L;;;;;N;;;;;-1202F;CUNEIFORM SIGN AN THREE TIMES;Lo;0;L;;;;;N;;;;;-12030;CUNEIFORM SIGN AN PLUS NAGA OPPOSING AN PLUS NAGA;Lo;0;L;;;;;N;;;;;-12031;CUNEIFORM SIGN AN PLUS NAGA SQUARED;Lo;0;L;;;;;N;;;;;-12032;CUNEIFORM SIGN ANSHE;Lo;0;L;;;;;N;;;;;-12033;CUNEIFORM SIGN APIN;Lo;0;L;;;;;N;;;;;-12034;CUNEIFORM SIGN ARAD;Lo;0;L;;;;;N;;;;;-12035;CUNEIFORM SIGN ARAD TIMES KUR;Lo;0;L;;;;;N;;;;;-12036;CUNEIFORM SIGN ARKAB;Lo;0;L;;;;;N;;;;;-12037;CUNEIFORM SIGN ASAL2;Lo;0;L;;;;;N;;;;;-12038;CUNEIFORM SIGN ASH;Lo;0;L;;;;;N;;;;;-12039;CUNEIFORM SIGN ASH ZIDA TENU;Lo;0;L;;;;;N;;;;;-1203A;CUNEIFORM SIGN ASH KABA TENU;Lo;0;L;;;;;N;;;;;-1203B;CUNEIFORM SIGN ASH OVER ASH TUG2 OVER TUG2 TUG2 OVER TUG2 PAP;Lo;0;L;;;;;N;;;;;-1203C;CUNEIFORM SIGN ASH OVER ASH OVER ASH;Lo;0;L;;;;;N;;;;;-1203D;CUNEIFORM SIGN ASH OVER ASH OVER ASH CROSSING ASH OVER ASH OVER ASH;Lo;0;L;;;;;N;;;;;-1203E;CUNEIFORM SIGN ASH2;Lo;0;L;;;;;N;;;;;-1203F;CUNEIFORM SIGN ASHGAB;Lo;0;L;;;;;N;;;;;-12040;CUNEIFORM SIGN BA;Lo;0;L;;;;;N;;;;;-12041;CUNEIFORM SIGN BAD;Lo;0;L;;;;;N;;;;;-12042;CUNEIFORM SIGN BAG3;Lo;0;L;;;;;N;;;;;-12043;CUNEIFORM SIGN BAHAR2;Lo;0;L;;;;;N;;;;;-12044;CUNEIFORM SIGN BAL;Lo;0;L;;;;;N;;;;;-12045;CUNEIFORM SIGN BAL OVER BAL;Lo;0;L;;;;;N;;;;;-12046;CUNEIFORM SIGN BALAG;Lo;0;L;;;;;N;;;;;-12047;CUNEIFORM SIGN BAR;Lo;0;L;;;;;N;;;;;-12048;CUNEIFORM SIGN BARA2;Lo;0;L;;;;;N;;;;;-12049;CUNEIFORM SIGN BI;Lo;0;L;;;;;N;;;;;-1204A;CUNEIFORM SIGN BI TIMES A;Lo;0;L;;;;;N;;;;;-1204B;CUNEIFORM SIGN BI TIMES GAR;Lo;0;L;;;;;N;;;;;-1204C;CUNEIFORM SIGN BI TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-1204D;CUNEIFORM SIGN BU;Lo;0;L;;;;;N;;;;;-1204E;CUNEIFORM SIGN BU OVER BU AB;Lo;0;L;;;;;N;;;;;-1204F;CUNEIFORM SIGN BU OVER BU UN;Lo;0;L;;;;;N;;;;;-12050;CUNEIFORM SIGN BU CROSSING BU;Lo;0;L;;;;;N;;;;;-12051;CUNEIFORM SIGN BULUG;Lo;0;L;;;;;N;;;;;-12052;CUNEIFORM SIGN BULUG OVER BULUG;Lo;0;L;;;;;N;;;;;-12053;CUNEIFORM SIGN BUR;Lo;0;L;;;;;N;;;;;-12054;CUNEIFORM SIGN BUR2;Lo;0;L;;;;;N;;;;;-12055;CUNEIFORM SIGN DA;Lo;0;L;;;;;N;;;;;-12056;CUNEIFORM SIGN DAG;Lo;0;L;;;;;N;;;;;-12057;CUNEIFORM SIGN DAG KISIM5 TIMES A PLUS MASH;Lo;0;L;;;;;N;;;;;-12058;CUNEIFORM SIGN DAG KISIM5 TIMES AMAR;Lo;0;L;;;;;N;;;;;-12059;CUNEIFORM SIGN DAG KISIM5 TIMES BALAG;Lo;0;L;;;;;N;;;;;-1205A;CUNEIFORM SIGN DAG KISIM5 TIMES BI;Lo;0;L;;;;;N;;;;;-1205B;CUNEIFORM SIGN DAG KISIM5 TIMES GA;Lo;0;L;;;;;N;;;;;-1205C;CUNEIFORM SIGN DAG KISIM5 TIMES GA PLUS MASH;Lo;0;L;;;;;N;;;;;-1205D;CUNEIFORM SIGN DAG KISIM5 TIMES GI;Lo;0;L;;;;;N;;;;;-1205E;CUNEIFORM SIGN DAG KISIM5 TIMES GIR2;Lo;0;L;;;;;N;;;;;-1205F;CUNEIFORM SIGN DAG KISIM5 TIMES GUD;Lo;0;L;;;;;N;;;;;-12060;CUNEIFORM SIGN DAG KISIM5 TIMES HA;Lo;0;L;;;;;N;;;;;-12061;CUNEIFORM SIGN DAG KISIM5 TIMES IR;Lo;0;L;;;;;N;;;;;-12062;CUNEIFORM SIGN DAG KISIM5 TIMES IR PLUS LU;Lo;0;L;;;;;N;;;;;-12063;CUNEIFORM SIGN DAG KISIM5 TIMES KAK;Lo;0;L;;;;;N;;;;;-12064;CUNEIFORM SIGN DAG KISIM5 TIMES LA;Lo;0;L;;;;;N;;;;;-12065;CUNEIFORM SIGN DAG KISIM5 TIMES LU;Lo;0;L;;;;;N;;;;;-12066;CUNEIFORM SIGN DAG KISIM5 TIMES LU PLUS MASH2;Lo;0;L;;;;;N;;;;;-12067;CUNEIFORM SIGN DAG KISIM5 TIMES LUM;Lo;0;L;;;;;N;;;;;-12068;CUNEIFORM SIGN DAG KISIM5 TIMES NE;Lo;0;L;;;;;N;;;;;-12069;CUNEIFORM SIGN DAG KISIM5 TIMES PAP PLUS PAP;Lo;0;L;;;;;N;;;;;-1206A;CUNEIFORM SIGN DAG KISIM5 TIMES SI;Lo;0;L;;;;;N;;;;;-1206B;CUNEIFORM SIGN DAG KISIM5 TIMES TAK4;Lo;0;L;;;;;N;;;;;-1206C;CUNEIFORM SIGN DAG KISIM5 TIMES U2 PLUS GIR2;Lo;0;L;;;;;N;;;;;-1206D;CUNEIFORM SIGN DAG KISIM5 TIMES USH;Lo;0;L;;;;;N;;;;;-1206E;CUNEIFORM SIGN DAM;Lo;0;L;;;;;N;;;;;-1206F;CUNEIFORM SIGN DAR;Lo;0;L;;;;;N;;;;;-12070;CUNEIFORM SIGN DARA3;Lo;0;L;;;;;N;;;;;-12071;CUNEIFORM SIGN DARA4;Lo;0;L;;;;;N;;;;;-12072;CUNEIFORM SIGN DI;Lo;0;L;;;;;N;;;;;-12073;CUNEIFORM SIGN DIB;Lo;0;L;;;;;N;;;;;-12074;CUNEIFORM SIGN DIM;Lo;0;L;;;;;N;;;;;-12075;CUNEIFORM SIGN DIM TIMES SHE;Lo;0;L;;;;;N;;;;;-12076;CUNEIFORM SIGN DIM2;Lo;0;L;;;;;N;;;;;-12077;CUNEIFORM SIGN DIN;Lo;0;L;;;;;N;;;;;-12078;CUNEIFORM SIGN DIN KASKAL U GUNU DISH;Lo;0;L;;;;;N;;;;;-12079;CUNEIFORM SIGN DISH;Lo;0;L;;;;;N;;;;;-1207A;CUNEIFORM SIGN DU;Lo;0;L;;;;;N;;;;;-1207B;CUNEIFORM SIGN DU OVER DU;Lo;0;L;;;;;N;;;;;-1207C;CUNEIFORM SIGN DU GUNU;Lo;0;L;;;;;N;;;;;-1207D;CUNEIFORM SIGN DU SHESHIG;Lo;0;L;;;;;N;;;;;-1207E;CUNEIFORM SIGN DUB;Lo;0;L;;;;;N;;;;;-1207F;CUNEIFORM SIGN DUB TIMES ESH2;Lo;0;L;;;;;N;;;;;-12080;CUNEIFORM SIGN DUB2;Lo;0;L;;;;;N;;;;;-12081;CUNEIFORM SIGN DUG;Lo;0;L;;;;;N;;;;;-12082;CUNEIFORM SIGN DUGUD;Lo;0;L;;;;;N;;;;;-12083;CUNEIFORM SIGN DUH;Lo;0;L;;;;;N;;;;;-12084;CUNEIFORM SIGN DUN;Lo;0;L;;;;;N;;;;;-12085;CUNEIFORM SIGN DUN3;Lo;0;L;;;;;N;;;;;-12086;CUNEIFORM SIGN DUN3 GUNU;Lo;0;L;;;;;N;;;;;-12087;CUNEIFORM SIGN DUN3 GUNU GUNU;Lo;0;L;;;;;N;;;;;-12088;CUNEIFORM SIGN DUN4;Lo;0;L;;;;;N;;;;;-12089;CUNEIFORM SIGN DUR2;Lo;0;L;;;;;N;;;;;-1208A;CUNEIFORM SIGN E;Lo;0;L;;;;;N;;;;;-1208B;CUNEIFORM SIGN E TIMES PAP;Lo;0;L;;;;;N;;;;;-1208C;CUNEIFORM SIGN E OVER E NUN OVER NUN;Lo;0;L;;;;;N;;;;;-1208D;CUNEIFORM SIGN E2;Lo;0;L;;;;;N;;;;;-1208E;CUNEIFORM SIGN E2 TIMES A PLUS HA PLUS DA;Lo;0;L;;;;;N;;;;;-1208F;CUNEIFORM SIGN E2 TIMES GAR;Lo;0;L;;;;;N;;;;;-12090;CUNEIFORM SIGN E2 TIMES MI;Lo;0;L;;;;;N;;;;;-12091;CUNEIFORM SIGN E2 TIMES SAL;Lo;0;L;;;;;N;;;;;-12092;CUNEIFORM SIGN E2 TIMES SHE;Lo;0;L;;;;;N;;;;;-12093;CUNEIFORM SIGN E2 TIMES U;Lo;0;L;;;;;N;;;;;-12094;CUNEIFORM SIGN EDIN;Lo;0;L;;;;;N;;;;;-12095;CUNEIFORM SIGN EGIR;Lo;0;L;;;;;N;;;;;-12096;CUNEIFORM SIGN EL;Lo;0;L;;;;;N;;;;;-12097;CUNEIFORM SIGN EN;Lo;0;L;;;;;N;;;;;-12098;CUNEIFORM SIGN EN TIMES GAN2;Lo;0;L;;;;;N;;;;;-12099;CUNEIFORM SIGN EN TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-1209A;CUNEIFORM SIGN EN TIMES ME;Lo;0;L;;;;;N;;;;;-1209B;CUNEIFORM SIGN EN CROSSING EN;Lo;0;L;;;;;N;;;;;-1209C;CUNEIFORM SIGN EN OPPOSING EN;Lo;0;L;;;;;N;;;;;-1209D;CUNEIFORM SIGN EN SQUARED;Lo;0;L;;;;;N;;;;;-1209E;CUNEIFORM SIGN EREN;Lo;0;L;;;;;N;;;;;-1209F;CUNEIFORM SIGN ERIN2;Lo;0;L;;;;;N;;;;;-120A0;CUNEIFORM SIGN ESH2;Lo;0;L;;;;;N;;;;;-120A1;CUNEIFORM SIGN EZEN;Lo;0;L;;;;;N;;;;;-120A2;CUNEIFORM SIGN EZEN TIMES A;Lo;0;L;;;;;N;;;;;-120A3;CUNEIFORM SIGN EZEN TIMES A PLUS LAL;Lo;0;L;;;;;N;;;;;-120A4;CUNEIFORM SIGN EZEN TIMES A PLUS LAL TIMES LAL;Lo;0;L;;;;;N;;;;;-120A5;CUNEIFORM SIGN EZEN TIMES AN;Lo;0;L;;;;;N;;;;;-120A6;CUNEIFORM SIGN EZEN TIMES BAD;Lo;0;L;;;;;N;;;;;-120A7;CUNEIFORM SIGN EZEN TIMES DUN3 GUNU;Lo;0;L;;;;;N;;;;;-120A8;CUNEIFORM SIGN EZEN TIMES DUN3 GUNU GUNU;Lo;0;L;;;;;N;;;;;-120A9;CUNEIFORM SIGN EZEN TIMES HA;Lo;0;L;;;;;N;;;;;-120AA;CUNEIFORM SIGN EZEN TIMES HA GUNU;Lo;0;L;;;;;N;;;;;-120AB;CUNEIFORM SIGN EZEN TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-120AC;CUNEIFORM SIGN EZEN TIMES KASKAL;Lo;0;L;;;;;N;;;;;-120AD;CUNEIFORM SIGN EZEN TIMES KASKAL SQUARED;Lo;0;L;;;;;N;;;;;-120AE;CUNEIFORM SIGN EZEN TIMES KU3;Lo;0;L;;;;;N;;;;;-120AF;CUNEIFORM SIGN EZEN TIMES LA;Lo;0;L;;;;;N;;;;;-120B0;CUNEIFORM SIGN EZEN TIMES LAL TIMES LAL;Lo;0;L;;;;;N;;;;;-120B1;CUNEIFORM SIGN EZEN TIMES LI;Lo;0;L;;;;;N;;;;;-120B2;CUNEIFORM SIGN EZEN TIMES LU;Lo;0;L;;;;;N;;;;;-120B3;CUNEIFORM SIGN EZEN TIMES U2;Lo;0;L;;;;;N;;;;;-120B4;CUNEIFORM SIGN EZEN TIMES UD;Lo;0;L;;;;;N;;;;;-120B5;CUNEIFORM SIGN GA;Lo;0;L;;;;;N;;;;;-120B6;CUNEIFORM SIGN GA GUNU;Lo;0;L;;;;;N;;;;;-120B7;CUNEIFORM SIGN GA2;Lo;0;L;;;;;N;;;;;-120B8;CUNEIFORM SIGN GA2 TIMES A PLUS DA PLUS HA;Lo;0;L;;;;;N;;;;;-120B9;CUNEIFORM SIGN GA2 TIMES A PLUS HA;Lo;0;L;;;;;N;;;;;-120BA;CUNEIFORM SIGN GA2 TIMES A PLUS IGI;Lo;0;L;;;;;N;;;;;-120BB;CUNEIFORM SIGN GA2 TIMES AB2 TENU PLUS TAB;Lo;0;L;;;;;N;;;;;-120BC;CUNEIFORM SIGN GA2 TIMES AN;Lo;0;L;;;;;N;;;;;-120BD;CUNEIFORM SIGN GA2 TIMES ASH;Lo;0;L;;;;;N;;;;;-120BE;CUNEIFORM SIGN GA2 TIMES ASH2 PLUS GAL;Lo;0;L;;;;;N;;;;;-120BF;CUNEIFORM SIGN GA2 TIMES BAD;Lo;0;L;;;;;N;;;;;-120C0;CUNEIFORM SIGN GA2 TIMES BAR PLUS RA;Lo;0;L;;;;;N;;;;;-120C1;CUNEIFORM SIGN GA2 TIMES BUR;Lo;0;L;;;;;N;;;;;-120C2;CUNEIFORM SIGN GA2 TIMES BUR PLUS RA;Lo;0;L;;;;;N;;;;;-120C3;CUNEIFORM SIGN GA2 TIMES DA;Lo;0;L;;;;;N;;;;;-120C4;CUNEIFORM SIGN GA2 TIMES DI;Lo;0;L;;;;;N;;;;;-120C5;CUNEIFORM SIGN GA2 TIMES DIM TIMES SHE;Lo;0;L;;;;;N;;;;;-120C6;CUNEIFORM SIGN GA2 TIMES DUB;Lo;0;L;;;;;N;;;;;-120C7;CUNEIFORM SIGN GA2 TIMES EL;Lo;0;L;;;;;N;;;;;-120C8;CUNEIFORM SIGN GA2 TIMES EL PLUS LA;Lo;0;L;;;;;N;;;;;-120C9;CUNEIFORM SIGN GA2 TIMES EN;Lo;0;L;;;;;N;;;;;-120CA;CUNEIFORM SIGN GA2 TIMES EN TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-120CB;CUNEIFORM SIGN GA2 TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-120CC;CUNEIFORM SIGN GA2 TIMES GAR;Lo;0;L;;;;;N;;;;;-120CD;CUNEIFORM SIGN GA2 TIMES GI;Lo;0;L;;;;;N;;;;;-120CE;CUNEIFORM SIGN GA2 TIMES GI4;Lo;0;L;;;;;N;;;;;-120CF;CUNEIFORM SIGN GA2 TIMES GI4 PLUS A;Lo;0;L;;;;;N;;;;;-120D0;CUNEIFORM SIGN GA2 TIMES GIR2 PLUS SU;Lo;0;L;;;;;N;;;;;-120D1;CUNEIFORM SIGN GA2 TIMES HA PLUS LU PLUS ESH2;Lo;0;L;;;;;N;;;;;-120D2;CUNEIFORM SIGN GA2 TIMES HAL;Lo;0;L;;;;;N;;;;;-120D3;CUNEIFORM SIGN GA2 TIMES HAL PLUS LA;Lo;0;L;;;;;N;;;;;-120D4;CUNEIFORM SIGN GA2 TIMES HI PLUS LI;Lo;0;L;;;;;N;;;;;-120D5;CUNEIFORM SIGN GA2 TIMES HUB2;Lo;0;L;;;;;N;;;;;-120D6;CUNEIFORM SIGN GA2 TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-120D7;CUNEIFORM SIGN GA2 TIMES ISH PLUS HU PLUS ASH;Lo;0;L;;;;;N;;;;;-120D8;CUNEIFORM SIGN GA2 TIMES KAK;Lo;0;L;;;;;N;;;;;-120D9;CUNEIFORM SIGN GA2 TIMES KASKAL;Lo;0;L;;;;;N;;;;;-120DA;CUNEIFORM SIGN GA2 TIMES KID;Lo;0;L;;;;;N;;;;;-120DB;CUNEIFORM SIGN GA2 TIMES KID PLUS LAL;Lo;0;L;;;;;N;;;;;-120DC;CUNEIFORM SIGN GA2 TIMES KU3 PLUS AN;Lo;0;L;;;;;N;;;;;-120DD;CUNEIFORM SIGN GA2 TIMES LA;Lo;0;L;;;;;N;;;;;-120DE;CUNEIFORM SIGN GA2 TIMES ME PLUS EN;Lo;0;L;;;;;N;;;;;-120DF;CUNEIFORM SIGN GA2 TIMES MI;Lo;0;L;;;;;N;;;;;-120E0;CUNEIFORM SIGN GA2 TIMES NUN;Lo;0;L;;;;;N;;;;;-120E1;CUNEIFORM SIGN GA2 TIMES NUN OVER NUN;Lo;0;L;;;;;N;;;;;-120E2;CUNEIFORM SIGN GA2 TIMES PA;Lo;0;L;;;;;N;;;;;-120E3;CUNEIFORM SIGN GA2 TIMES SAL;Lo;0;L;;;;;N;;;;;-120E4;CUNEIFORM SIGN GA2 TIMES SAR;Lo;0;L;;;;;N;;;;;-120E5;CUNEIFORM SIGN GA2 TIMES SHE;Lo;0;L;;;;;N;;;;;-120E6;CUNEIFORM SIGN GA2 TIMES SHE PLUS TUR;Lo;0;L;;;;;N;;;;;-120E7;CUNEIFORM SIGN GA2 TIMES SHID;Lo;0;L;;;;;N;;;;;-120E8;CUNEIFORM SIGN GA2 TIMES SUM;Lo;0;L;;;;;N;;;;;-120E9;CUNEIFORM SIGN GA2 TIMES TAK4;Lo;0;L;;;;;N;;;;;-120EA;CUNEIFORM SIGN GA2 TIMES U;Lo;0;L;;;;;N;;;;;-120EB;CUNEIFORM SIGN GA2 TIMES UD;Lo;0;L;;;;;N;;;;;-120EC;CUNEIFORM SIGN GA2 TIMES UD PLUS DU;Lo;0;L;;;;;N;;;;;-120ED;CUNEIFORM SIGN GA2 OVER GA2;Lo;0;L;;;;;N;;;;;-120EE;CUNEIFORM SIGN GABA;Lo;0;L;;;;;N;;;;;-120EF;CUNEIFORM SIGN GABA CROSSING GABA;Lo;0;L;;;;;N;;;;;-120F0;CUNEIFORM SIGN GAD;Lo;0;L;;;;;N;;;;;-120F1;CUNEIFORM SIGN GAD OVER GAD GAR OVER GAR;Lo;0;L;;;;;N;;;;;-120F2;CUNEIFORM SIGN GAL;Lo;0;L;;;;;N;;;;;-120F3;CUNEIFORM SIGN GAL GAD OVER GAD GAR OVER GAR;Lo;0;L;;;;;N;;;;;-120F4;CUNEIFORM SIGN GALAM;Lo;0;L;;;;;N;;;;;-120F5;CUNEIFORM SIGN GAM;Lo;0;L;;;;;N;;;;;-120F6;CUNEIFORM SIGN GAN;Lo;0;L;;;;;N;;;;;-120F7;CUNEIFORM SIGN GAN2;Lo;0;L;;;;;N;;;;;-120F8;CUNEIFORM SIGN GAN2 TENU;Lo;0;L;;;;;N;;;;;-120F9;CUNEIFORM SIGN GAN2 OVER GAN2;Lo;0;L;;;;;N;;;;;-120FA;CUNEIFORM SIGN GAN2 CROSSING GAN2;Lo;0;L;;;;;N;;;;;-120FB;CUNEIFORM SIGN GAR;Lo;0;L;;;;;N;;;;;-120FC;CUNEIFORM SIGN GAR3;Lo;0;L;;;;;N;;;;;-120FD;CUNEIFORM SIGN GASHAN;Lo;0;L;;;;;N;;;;;-120FE;CUNEIFORM SIGN GESHTIN;Lo;0;L;;;;;N;;;;;-120FF;CUNEIFORM SIGN GESHTIN TIMES KUR;Lo;0;L;;;;;N;;;;;-12100;CUNEIFORM SIGN GI;Lo;0;L;;;;;N;;;;;-12101;CUNEIFORM SIGN GI TIMES E;Lo;0;L;;;;;N;;;;;-12102;CUNEIFORM SIGN GI TIMES U;Lo;0;L;;;;;N;;;;;-12103;CUNEIFORM SIGN GI CROSSING GI;Lo;0;L;;;;;N;;;;;-12104;CUNEIFORM SIGN GI4;Lo;0;L;;;;;N;;;;;-12105;CUNEIFORM SIGN GI4 OVER GI4;Lo;0;L;;;;;N;;;;;-12106;CUNEIFORM SIGN GI4 CROSSING GI4;Lo;0;L;;;;;N;;;;;-12107;CUNEIFORM SIGN GIDIM;Lo;0;L;;;;;N;;;;;-12108;CUNEIFORM SIGN GIR2;Lo;0;L;;;;;N;;;;;-12109;CUNEIFORM SIGN GIR2 GUNU;Lo;0;L;;;;;N;;;;;-1210A;CUNEIFORM SIGN GIR3;Lo;0;L;;;;;N;;;;;-1210B;CUNEIFORM SIGN GIR3 TIMES A PLUS IGI;Lo;0;L;;;;;N;;;;;-1210C;CUNEIFORM SIGN GIR3 TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-1210D;CUNEIFORM SIGN GIR3 TIMES IGI;Lo;0;L;;;;;N;;;;;-1210E;CUNEIFORM SIGN GIR3 TIMES LU PLUS IGI;Lo;0;L;;;;;N;;;;;-1210F;CUNEIFORM SIGN GIR3 TIMES PA;Lo;0;L;;;;;N;;;;;-12110;CUNEIFORM SIGN GISAL;Lo;0;L;;;;;N;;;;;-12111;CUNEIFORM SIGN GISH;Lo;0;L;;;;;N;;;;;-12112;CUNEIFORM SIGN GISH CROSSING GISH;Lo;0;L;;;;;N;;;;;-12113;CUNEIFORM SIGN GISH TIMES BAD;Lo;0;L;;;;;N;;;;;-12114;CUNEIFORM SIGN GISH TIMES TAK4;Lo;0;L;;;;;N;;;;;-12115;CUNEIFORM SIGN GISH TENU;Lo;0;L;;;;;N;;;;;-12116;CUNEIFORM SIGN GU;Lo;0;L;;;;;N;;;;;-12117;CUNEIFORM SIGN GU CROSSING GU;Lo;0;L;;;;;N;;;;;-12118;CUNEIFORM SIGN GU2;Lo;0;L;;;;;N;;;;;-12119;CUNEIFORM SIGN GU2 TIMES KAK;Lo;0;L;;;;;N;;;;;-1211A;CUNEIFORM SIGN GU2 TIMES KAK TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-1211B;CUNEIFORM SIGN GU2 TIMES NUN;Lo;0;L;;;;;N;;;;;-1211C;CUNEIFORM SIGN GU2 TIMES SAL PLUS TUG2;Lo;0;L;;;;;N;;;;;-1211D;CUNEIFORM SIGN GU2 GUNU;Lo;0;L;;;;;N;;;;;-1211E;CUNEIFORM SIGN GUD;Lo;0;L;;;;;N;;;;;-1211F;CUNEIFORM SIGN GUD TIMES A PLUS KUR;Lo;0;L;;;;;N;;;;;-12120;CUNEIFORM SIGN GUD TIMES KUR;Lo;0;L;;;;;N;;;;;-12121;CUNEIFORM SIGN GUD OVER GUD LUGAL;Lo;0;L;;;;;N;;;;;-12122;CUNEIFORM SIGN GUL;Lo;0;L;;;;;N;;;;;-12123;CUNEIFORM SIGN GUM;Lo;0;L;;;;;N;;;;;-12124;CUNEIFORM SIGN GUM TIMES SHE;Lo;0;L;;;;;N;;;;;-12125;CUNEIFORM SIGN GUR;Lo;0;L;;;;;N;;;;;-12126;CUNEIFORM SIGN GUR7;Lo;0;L;;;;;N;;;;;-12127;CUNEIFORM SIGN GURUN;Lo;0;L;;;;;N;;;;;-12128;CUNEIFORM SIGN GURUSH;Lo;0;L;;;;;N;;;;;-12129;CUNEIFORM SIGN HA;Lo;0;L;;;;;N;;;;;-1212A;CUNEIFORM SIGN HA TENU;Lo;0;L;;;;;N;;;;;-1212B;CUNEIFORM SIGN HA GUNU;Lo;0;L;;;;;N;;;;;-1212C;CUNEIFORM SIGN HAL;Lo;0;L;;;;;N;;;;;-1212D;CUNEIFORM SIGN HI;Lo;0;L;;;;;N;;;;;-1212E;CUNEIFORM SIGN HI TIMES ASH;Lo;0;L;;;;;N;;;;;-1212F;CUNEIFORM SIGN HI TIMES ASH2;Lo;0;L;;;;;N;;;;;-12130;CUNEIFORM SIGN HI TIMES BAD;Lo;0;L;;;;;N;;;;;-12131;CUNEIFORM SIGN HI TIMES DISH;Lo;0;L;;;;;N;;;;;-12132;CUNEIFORM SIGN HI TIMES GAD;Lo;0;L;;;;;N;;;;;-12133;CUNEIFORM SIGN HI TIMES KIN;Lo;0;L;;;;;N;;;;;-12134;CUNEIFORM SIGN HI TIMES NUN;Lo;0;L;;;;;N;;;;;-12135;CUNEIFORM SIGN HI TIMES SHE;Lo;0;L;;;;;N;;;;;-12136;CUNEIFORM SIGN HI TIMES U;Lo;0;L;;;;;N;;;;;-12137;CUNEIFORM SIGN HU;Lo;0;L;;;;;N;;;;;-12138;CUNEIFORM SIGN HUB2;Lo;0;L;;;;;N;;;;;-12139;CUNEIFORM SIGN HUB2 TIMES AN;Lo;0;L;;;;;N;;;;;-1213A;CUNEIFORM SIGN HUB2 TIMES HAL;Lo;0;L;;;;;N;;;;;-1213B;CUNEIFORM SIGN HUB2 TIMES KASKAL;Lo;0;L;;;;;N;;;;;-1213C;CUNEIFORM SIGN HUB2 TIMES LISH;Lo;0;L;;;;;N;;;;;-1213D;CUNEIFORM SIGN HUB2 TIMES UD;Lo;0;L;;;;;N;;;;;-1213E;CUNEIFORM SIGN HUL2;Lo;0;L;;;;;N;;;;;-1213F;CUNEIFORM SIGN I;Lo;0;L;;;;;N;;;;;-12140;CUNEIFORM SIGN I A;Lo;0;L;;;;;N;;;;;-12141;CUNEIFORM SIGN IB;Lo;0;L;;;;;N;;;;;-12142;CUNEIFORM SIGN IDIM;Lo;0;L;;;;;N;;;;;-12143;CUNEIFORM SIGN IDIM OVER IDIM BUR;Lo;0;L;;;;;N;;;;;-12144;CUNEIFORM SIGN IDIM OVER IDIM SQUARED;Lo;0;L;;;;;N;;;;;-12145;CUNEIFORM SIGN IG;Lo;0;L;;;;;N;;;;;-12146;CUNEIFORM SIGN IGI;Lo;0;L;;;;;N;;;;;-12147;CUNEIFORM SIGN IGI DIB;Lo;0;L;;;;;N;;;;;-12148;CUNEIFORM SIGN IGI RI;Lo;0;L;;;;;N;;;;;-12149;CUNEIFORM SIGN IGI OVER IGI SHIR OVER SHIR UD OVER UD;Lo;0;L;;;;;N;;;;;-1214A;CUNEIFORM SIGN IGI GUNU;Lo;0;L;;;;;N;;;;;-1214B;CUNEIFORM SIGN IL;Lo;0;L;;;;;N;;;;;-1214C;CUNEIFORM SIGN IL TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-1214D;CUNEIFORM SIGN IL2;Lo;0;L;;;;;N;;;;;-1214E;CUNEIFORM SIGN IM;Lo;0;L;;;;;N;;;;;-1214F;CUNEIFORM SIGN IM TIMES TAK4;Lo;0;L;;;;;N;;;;;-12150;CUNEIFORM SIGN IM CROSSING IM;Lo;0;L;;;;;N;;;;;-12151;CUNEIFORM SIGN IM OPPOSING IM;Lo;0;L;;;;;N;;;;;-12152;CUNEIFORM SIGN IM SQUARED;Lo;0;L;;;;;N;;;;;-12153;CUNEIFORM SIGN IMIN;Lo;0;L;;;;;N;;;;;-12154;CUNEIFORM SIGN IN;Lo;0;L;;;;;N;;;;;-12155;CUNEIFORM SIGN IR;Lo;0;L;;;;;N;;;;;-12156;CUNEIFORM SIGN ISH;Lo;0;L;;;;;N;;;;;-12157;CUNEIFORM SIGN KA;Lo;0;L;;;;;N;;;;;-12158;CUNEIFORM SIGN KA TIMES A;Lo;0;L;;;;;N;;;;;-12159;CUNEIFORM SIGN KA TIMES AD;Lo;0;L;;;;;N;;;;;-1215A;CUNEIFORM SIGN KA TIMES AD PLUS KU3;Lo;0;L;;;;;N;;;;;-1215B;CUNEIFORM SIGN KA TIMES ASH2;Lo;0;L;;;;;N;;;;;-1215C;CUNEIFORM SIGN KA TIMES BAD;Lo;0;L;;;;;N;;;;;-1215D;CUNEIFORM SIGN KA TIMES BALAG;Lo;0;L;;;;;N;;;;;-1215E;CUNEIFORM SIGN KA TIMES BAR;Lo;0;L;;;;;N;;;;;-1215F;CUNEIFORM SIGN KA TIMES BI;Lo;0;L;;;;;N;;;;;-12160;CUNEIFORM SIGN KA TIMES ERIN2;Lo;0;L;;;;;N;;;;;-12161;CUNEIFORM SIGN KA TIMES ESH2;Lo;0;L;;;;;N;;;;;-12162;CUNEIFORM SIGN KA TIMES GA;Lo;0;L;;;;;N;;;;;-12163;CUNEIFORM SIGN KA TIMES GAL;Lo;0;L;;;;;N;;;;;-12164;CUNEIFORM SIGN KA TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-12165;CUNEIFORM SIGN KA TIMES GAR;Lo;0;L;;;;;N;;;;;-12166;CUNEIFORM SIGN KA TIMES GAR PLUS SHA3 PLUS A;Lo;0;L;;;;;N;;;;;-12167;CUNEIFORM SIGN KA TIMES GI;Lo;0;L;;;;;N;;;;;-12168;CUNEIFORM SIGN KA TIMES GIR2;Lo;0;L;;;;;N;;;;;-12169;CUNEIFORM SIGN KA TIMES GISH PLUS SAR;Lo;0;L;;;;;N;;;;;-1216A;CUNEIFORM SIGN KA TIMES GISH CROSSING GISH;Lo;0;L;;;;;N;;;;;-1216B;CUNEIFORM SIGN KA TIMES GU;Lo;0;L;;;;;N;;;;;-1216C;CUNEIFORM SIGN KA TIMES GUR7;Lo;0;L;;;;;N;;;;;-1216D;CUNEIFORM SIGN KA TIMES IGI;Lo;0;L;;;;;N;;;;;-1216E;CUNEIFORM SIGN KA TIMES IM;Lo;0;L;;;;;N;;;;;-1216F;CUNEIFORM SIGN KA TIMES KAK;Lo;0;L;;;;;N;;;;;-12170;CUNEIFORM SIGN KA TIMES KI;Lo;0;L;;;;;N;;;;;-12171;CUNEIFORM SIGN KA TIMES KID;Lo;0;L;;;;;N;;;;;-12172;CUNEIFORM SIGN KA TIMES LI;Lo;0;L;;;;;N;;;;;-12173;CUNEIFORM SIGN KA TIMES LU;Lo;0;L;;;;;N;;;;;-12174;CUNEIFORM SIGN KA TIMES ME;Lo;0;L;;;;;N;;;;;-12175;CUNEIFORM SIGN KA TIMES ME PLUS DU;Lo;0;L;;;;;N;;;;;-12176;CUNEIFORM SIGN KA TIMES ME PLUS GI;Lo;0;L;;;;;N;;;;;-12177;CUNEIFORM SIGN KA TIMES ME PLUS TE;Lo;0;L;;;;;N;;;;;-12178;CUNEIFORM SIGN KA TIMES MI;Lo;0;L;;;;;N;;;;;-12179;CUNEIFORM SIGN KA TIMES MI PLUS NUNUZ;Lo;0;L;;;;;N;;;;;-1217A;CUNEIFORM SIGN KA TIMES NE;Lo;0;L;;;;;N;;;;;-1217B;CUNEIFORM SIGN KA TIMES NUN;Lo;0;L;;;;;N;;;;;-1217C;CUNEIFORM SIGN KA TIMES PI;Lo;0;L;;;;;N;;;;;-1217D;CUNEIFORM SIGN KA TIMES RU;Lo;0;L;;;;;N;;;;;-1217E;CUNEIFORM SIGN KA TIMES SA;Lo;0;L;;;;;N;;;;;-1217F;CUNEIFORM SIGN KA TIMES SAR;Lo;0;L;;;;;N;;;;;-12180;CUNEIFORM SIGN KA TIMES SHA;Lo;0;L;;;;;N;;;;;-12181;CUNEIFORM SIGN KA TIMES SHE;Lo;0;L;;;;;N;;;;;-12182;CUNEIFORM SIGN KA TIMES SHID;Lo;0;L;;;;;N;;;;;-12183;CUNEIFORM SIGN KA TIMES SHU;Lo;0;L;;;;;N;;;;;-12184;CUNEIFORM SIGN KA TIMES SIG;Lo;0;L;;;;;N;;;;;-12185;CUNEIFORM SIGN KA TIMES SUHUR;Lo;0;L;;;;;N;;;;;-12186;CUNEIFORM SIGN KA TIMES TAR;Lo;0;L;;;;;N;;;;;-12187;CUNEIFORM SIGN KA TIMES U;Lo;0;L;;;;;N;;;;;-12188;CUNEIFORM SIGN KA TIMES U2;Lo;0;L;;;;;N;;;;;-12189;CUNEIFORM SIGN KA TIMES UD;Lo;0;L;;;;;N;;;;;-1218A;CUNEIFORM SIGN KA TIMES UMUM TIMES PA;Lo;0;L;;;;;N;;;;;-1218B;CUNEIFORM SIGN KA TIMES USH;Lo;0;L;;;;;N;;;;;-1218C;CUNEIFORM SIGN KA TIMES ZI;Lo;0;L;;;;;N;;;;;-1218D;CUNEIFORM SIGN KA2;Lo;0;L;;;;;N;;;;;-1218E;CUNEIFORM SIGN KA2 CROSSING KA2;Lo;0;L;;;;;N;;;;;-1218F;CUNEIFORM SIGN KAB;Lo;0;L;;;;;N;;;;;-12190;CUNEIFORM SIGN KAD2;Lo;0;L;;;;;N;;;;;-12191;CUNEIFORM SIGN KAD3;Lo;0;L;;;;;N;;;;;-12192;CUNEIFORM SIGN KAD4;Lo;0;L;;;;;N;;;;;-12193;CUNEIFORM SIGN KAD5;Lo;0;L;;;;;N;;;;;-12194;CUNEIFORM SIGN KAD5 OVER KAD5;Lo;0;L;;;;;N;;;;;-12195;CUNEIFORM SIGN KAK;Lo;0;L;;;;;N;;;;;-12196;CUNEIFORM SIGN KAK TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-12197;CUNEIFORM SIGN KAL;Lo;0;L;;;;;N;;;;;-12198;CUNEIFORM SIGN KAL TIMES BAD;Lo;0;L;;;;;N;;;;;-12199;CUNEIFORM SIGN KAL CROSSING KAL;Lo;0;L;;;;;N;;;;;-1219A;CUNEIFORM SIGN KAM2;Lo;0;L;;;;;N;;;;;-1219B;CUNEIFORM SIGN KAM4;Lo;0;L;;;;;N;;;;;-1219C;CUNEIFORM SIGN KASKAL;Lo;0;L;;;;;N;;;;;-1219D;CUNEIFORM SIGN KASKAL LAGAB TIMES U OVER LAGAB TIMES U;Lo;0;L;;;;;N;;;;;-1219E;CUNEIFORM SIGN KASKAL OVER KASKAL LAGAB TIMES U OVER LAGAB TIMES U;Lo;0;L;;;;;N;;;;;-1219F;CUNEIFORM SIGN KESH2;Lo;0;L;;;;;N;;;;;-121A0;CUNEIFORM SIGN KI;Lo;0;L;;;;;N;;;;;-121A1;CUNEIFORM SIGN KI TIMES BAD;Lo;0;L;;;;;N;;;;;-121A2;CUNEIFORM SIGN KI TIMES U;Lo;0;L;;;;;N;;;;;-121A3;CUNEIFORM SIGN KI TIMES UD;Lo;0;L;;;;;N;;;;;-121A4;CUNEIFORM SIGN KID;Lo;0;L;;;;;N;;;;;-121A5;CUNEIFORM SIGN KIN;Lo;0;L;;;;;N;;;;;-121A6;CUNEIFORM SIGN KISAL;Lo;0;L;;;;;N;;;;;-121A7;CUNEIFORM SIGN KISH;Lo;0;L;;;;;N;;;;;-121A8;CUNEIFORM SIGN KISIM5;Lo;0;L;;;;;N;;;;;-121A9;CUNEIFORM SIGN KISIM5 OVER KISIM5;Lo;0;L;;;;;N;;;;;-121AA;CUNEIFORM SIGN KU;Lo;0;L;;;;;N;;;;;-121AB;CUNEIFORM SIGN KU OVER HI TIMES ASH2 KU OVER HI TIMES ASH2;Lo;0;L;;;;;N;;;;;-121AC;CUNEIFORM SIGN KU3;Lo;0;L;;;;;N;;;;;-121AD;CUNEIFORM SIGN KU4;Lo;0;L;;;;;N;;;;;-121AE;CUNEIFORM SIGN KU4 VARIANT FORM;Lo;0;L;;;;;N;;;;;-121AF;CUNEIFORM SIGN KU7;Lo;0;L;;;;;N;;;;;-121B0;CUNEIFORM SIGN KUL;Lo;0;L;;;;;N;;;;;-121B1;CUNEIFORM SIGN KUL GUNU;Lo;0;L;;;;;N;;;;;-121B2;CUNEIFORM SIGN KUN;Lo;0;L;;;;;N;;;;;-121B3;CUNEIFORM SIGN KUR;Lo;0;L;;;;;N;;;;;-121B4;CUNEIFORM SIGN KUR OPPOSING KUR;Lo;0;L;;;;;N;;;;;-121B5;CUNEIFORM SIGN KUSHU2;Lo;0;L;;;;;N;;;;;-121B6;CUNEIFORM SIGN KWU318;Lo;0;L;;;;;N;;;;;-121B7;CUNEIFORM SIGN LA;Lo;0;L;;;;;N;;;;;-121B8;CUNEIFORM SIGN LAGAB;Lo;0;L;;;;;N;;;;;-121B9;CUNEIFORM SIGN LAGAB TIMES A;Lo;0;L;;;;;N;;;;;-121BA;CUNEIFORM SIGN LAGAB TIMES A PLUS DA PLUS HA;Lo;0;L;;;;;N;;;;;-121BB;CUNEIFORM SIGN LAGAB TIMES A PLUS GAR;Lo;0;L;;;;;N;;;;;-121BC;CUNEIFORM SIGN LAGAB TIMES A PLUS LAL;Lo;0;L;;;;;N;;;;;-121BD;CUNEIFORM SIGN LAGAB TIMES AL;Lo;0;L;;;;;N;;;;;-121BE;CUNEIFORM SIGN LAGAB TIMES AN;Lo;0;L;;;;;N;;;;;-121BF;CUNEIFORM SIGN LAGAB TIMES ASH ZIDA TENU;Lo;0;L;;;;;N;;;;;-121C0;CUNEIFORM SIGN LAGAB TIMES BAD;Lo;0;L;;;;;N;;;;;-121C1;CUNEIFORM SIGN LAGAB TIMES BI;Lo;0;L;;;;;N;;;;;-121C2;CUNEIFORM SIGN LAGAB TIMES DAR;Lo;0;L;;;;;N;;;;;-121C3;CUNEIFORM SIGN LAGAB TIMES EN;Lo;0;L;;;;;N;;;;;-121C4;CUNEIFORM SIGN LAGAB TIMES GA;Lo;0;L;;;;;N;;;;;-121C5;CUNEIFORM SIGN LAGAB TIMES GAR;Lo;0;L;;;;;N;;;;;-121C6;CUNEIFORM SIGN LAGAB TIMES GUD;Lo;0;L;;;;;N;;;;;-121C7;CUNEIFORM SIGN LAGAB TIMES GUD PLUS GUD;Lo;0;L;;;;;N;;;;;-121C8;CUNEIFORM SIGN LAGAB TIMES HA;Lo;0;L;;;;;N;;;;;-121C9;CUNEIFORM SIGN LAGAB TIMES HAL;Lo;0;L;;;;;N;;;;;-121CA;CUNEIFORM SIGN LAGAB TIMES HI TIMES NUN;Lo;0;L;;;;;N;;;;;-121CB;CUNEIFORM SIGN LAGAB TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-121CC;CUNEIFORM SIGN LAGAB TIMES IM;Lo;0;L;;;;;N;;;;;-121CD;CUNEIFORM SIGN LAGAB TIMES IM PLUS HA;Lo;0;L;;;;;N;;;;;-121CE;CUNEIFORM SIGN LAGAB TIMES IM PLUS LU;Lo;0;L;;;;;N;;;;;-121CF;CUNEIFORM SIGN LAGAB TIMES KI;Lo;0;L;;;;;N;;;;;-121D0;CUNEIFORM SIGN LAGAB TIMES KIN;Lo;0;L;;;;;N;;;;;-121D1;CUNEIFORM SIGN LAGAB TIMES KU3;Lo;0;L;;;;;N;;;;;-121D2;CUNEIFORM SIGN LAGAB TIMES KUL;Lo;0;L;;;;;N;;;;;-121D3;CUNEIFORM SIGN LAGAB TIMES KUL PLUS HI PLUS A;Lo;0;L;;;;;N;;;;;-121D4;CUNEIFORM SIGN LAGAB TIMES LAGAB;Lo;0;L;;;;;N;;;;;-121D5;CUNEIFORM SIGN LAGAB TIMES LISH;Lo;0;L;;;;;N;;;;;-121D6;CUNEIFORM SIGN LAGAB TIMES LU;Lo;0;L;;;;;N;;;;;-121D7;CUNEIFORM SIGN LAGAB TIMES LUL;Lo;0;L;;;;;N;;;;;-121D8;CUNEIFORM SIGN LAGAB TIMES ME;Lo;0;L;;;;;N;;;;;-121D9;CUNEIFORM SIGN LAGAB TIMES ME PLUS EN;Lo;0;L;;;;;N;;;;;-121DA;CUNEIFORM SIGN LAGAB TIMES MUSH;Lo;0;L;;;;;N;;;;;-121DB;CUNEIFORM SIGN LAGAB TIMES NE;Lo;0;L;;;;;N;;;;;-121DC;CUNEIFORM SIGN LAGAB TIMES SHE PLUS SUM;Lo;0;L;;;;;N;;;;;-121DD;CUNEIFORM SIGN LAGAB TIMES SHITA PLUS GISH PLUS ERIN2;Lo;0;L;;;;;N;;;;;-121DE;CUNEIFORM SIGN LAGAB TIMES SHITA PLUS GISH TENU;Lo;0;L;;;;;N;;;;;-121DF;CUNEIFORM SIGN LAGAB TIMES SHU2;Lo;0;L;;;;;N;;;;;-121E0;CUNEIFORM SIGN LAGAB TIMES SHU2 PLUS SHU2;Lo;0;L;;;;;N;;;;;-121E1;CUNEIFORM SIGN LAGAB TIMES SUM;Lo;0;L;;;;;N;;;;;-121E2;CUNEIFORM SIGN LAGAB TIMES TAG;Lo;0;L;;;;;N;;;;;-121E3;CUNEIFORM SIGN LAGAB TIMES TAK4;Lo;0;L;;;;;N;;;;;-121E4;CUNEIFORM SIGN LAGAB TIMES TE PLUS A PLUS SU PLUS NA;Lo;0;L;;;;;N;;;;;-121E5;CUNEIFORM SIGN LAGAB TIMES U;Lo;0;L;;;;;N;;;;;-121E6;CUNEIFORM SIGN LAGAB TIMES U PLUS A;Lo;0;L;;;;;N;;;;;-121E7;CUNEIFORM SIGN LAGAB TIMES U PLUS U PLUS U;Lo;0;L;;;;;N;;;;;-121E8;CUNEIFORM SIGN LAGAB TIMES U2 PLUS ASH;Lo;0;L;;;;;N;;;;;-121E9;CUNEIFORM SIGN LAGAB TIMES UD;Lo;0;L;;;;;N;;;;;-121EA;CUNEIFORM SIGN LAGAB TIMES USH;Lo;0;L;;;;;N;;;;;-121EB;CUNEIFORM SIGN LAGAB SQUARED;Lo;0;L;;;;;N;;;;;-121EC;CUNEIFORM SIGN LAGAR;Lo;0;L;;;;;N;;;;;-121ED;CUNEIFORM SIGN LAGAR TIMES SHE;Lo;0;L;;;;;N;;;;;-121EE;CUNEIFORM SIGN LAGAR TIMES SHE PLUS SUM;Lo;0;L;;;;;N;;;;;-121EF;CUNEIFORM SIGN LAGAR GUNU;Lo;0;L;;;;;N;;;;;-121F0;CUNEIFORM SIGN LAGAR GUNU OVER LAGAR GUNU SHE;Lo;0;L;;;;;N;;;;;-121F1;CUNEIFORM SIGN LAHSHU;Lo;0;L;;;;;N;;;;;-121F2;CUNEIFORM SIGN LAL;Lo;0;L;;;;;N;;;;;-121F3;CUNEIFORM SIGN LAL TIMES LAL;Lo;0;L;;;;;N;;;;;-121F4;CUNEIFORM SIGN LAM;Lo;0;L;;;;;N;;;;;-121F5;CUNEIFORM SIGN LAM TIMES KUR;Lo;0;L;;;;;N;;;;;-121F6;CUNEIFORM SIGN LAM TIMES KUR PLUS RU;Lo;0;L;;;;;N;;;;;-121F7;CUNEIFORM SIGN LI;Lo;0;L;;;;;N;;;;;-121F8;CUNEIFORM SIGN LIL;Lo;0;L;;;;;N;;;;;-121F9;CUNEIFORM SIGN LIMMU2;Lo;0;L;;;;;N;;;;;-121FA;CUNEIFORM SIGN LISH;Lo;0;L;;;;;N;;;;;-121FB;CUNEIFORM SIGN LU;Lo;0;L;;;;;N;;;;;-121FC;CUNEIFORM SIGN LU TIMES BAD;Lo;0;L;;;;;N;;;;;-121FD;CUNEIFORM SIGN LU2;Lo;0;L;;;;;N;;;;;-121FE;CUNEIFORM SIGN LU2 TIMES AL;Lo;0;L;;;;;N;;;;;-121FF;CUNEIFORM SIGN LU2 TIMES BAD;Lo;0;L;;;;;N;;;;;-12200;CUNEIFORM SIGN LU2 TIMES ESH2;Lo;0;L;;;;;N;;;;;-12201;CUNEIFORM SIGN LU2 TIMES ESH2 TENU;Lo;0;L;;;;;N;;;;;-12202;CUNEIFORM SIGN LU2 TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-12203;CUNEIFORM SIGN LU2 TIMES HI TIMES BAD;Lo;0;L;;;;;N;;;;;-12204;CUNEIFORM SIGN LU2 TIMES IM;Lo;0;L;;;;;N;;;;;-12205;CUNEIFORM SIGN LU2 TIMES KAD2;Lo;0;L;;;;;N;;;;;-12206;CUNEIFORM SIGN LU2 TIMES KAD3;Lo;0;L;;;;;N;;;;;-12207;CUNEIFORM SIGN LU2 TIMES KAD3 PLUS ASH;Lo;0;L;;;;;N;;;;;-12208;CUNEIFORM SIGN LU2 TIMES KI;Lo;0;L;;;;;N;;;;;-12209;CUNEIFORM SIGN LU2 TIMES LA PLUS ASH;Lo;0;L;;;;;N;;;;;-1220A;CUNEIFORM SIGN LU2 TIMES LAGAB;Lo;0;L;;;;;N;;;;;-1220B;CUNEIFORM SIGN LU2 TIMES ME PLUS EN;Lo;0;L;;;;;N;;;;;-1220C;CUNEIFORM SIGN LU2 TIMES NE;Lo;0;L;;;;;N;;;;;-1220D;CUNEIFORM SIGN LU2 TIMES NU;Lo;0;L;;;;;N;;;;;-1220E;CUNEIFORM SIGN LU2 TIMES SI PLUS ASH;Lo;0;L;;;;;N;;;;;-1220F;CUNEIFORM SIGN LU2 TIMES SIK2 PLUS BU;Lo;0;L;;;;;N;;;;;-12210;CUNEIFORM SIGN LU2 TIMES TUG2;Lo;0;L;;;;;N;;;;;-12211;CUNEIFORM SIGN LU2 TENU;Lo;0;L;;;;;N;;;;;-12212;CUNEIFORM SIGN LU2 CROSSING LU2;Lo;0;L;;;;;N;;;;;-12213;CUNEIFORM SIGN LU2 OPPOSING LU2;Lo;0;L;;;;;N;;;;;-12214;CUNEIFORM SIGN LU2 SQUARED;Lo;0;L;;;;;N;;;;;-12215;CUNEIFORM SIGN LU2 SHESHIG;Lo;0;L;;;;;N;;;;;-12216;CUNEIFORM SIGN LU3;Lo;0;L;;;;;N;;;;;-12217;CUNEIFORM SIGN LUGAL;Lo;0;L;;;;;N;;;;;-12218;CUNEIFORM SIGN LUGAL OVER LUGAL;Lo;0;L;;;;;N;;;;;-12219;CUNEIFORM SIGN LUGAL OPPOSING LUGAL;Lo;0;L;;;;;N;;;;;-1221A;CUNEIFORM SIGN LUGAL SHESHIG;Lo;0;L;;;;;N;;;;;-1221B;CUNEIFORM SIGN LUH;Lo;0;L;;;;;N;;;;;-1221C;CUNEIFORM SIGN LUL;Lo;0;L;;;;;N;;;;;-1221D;CUNEIFORM SIGN LUM;Lo;0;L;;;;;N;;;;;-1221E;CUNEIFORM SIGN LUM OVER LUM;Lo;0;L;;;;;N;;;;;-1221F;CUNEIFORM SIGN LUM OVER LUM GAR OVER GAR;Lo;0;L;;;;;N;;;;;-12220;CUNEIFORM SIGN MA;Lo;0;L;;;;;N;;;;;-12221;CUNEIFORM SIGN MA TIMES TAK4;Lo;0;L;;;;;N;;;;;-12222;CUNEIFORM SIGN MA GUNU;Lo;0;L;;;;;N;;;;;-12223;CUNEIFORM SIGN MA2;Lo;0;L;;;;;N;;;;;-12224;CUNEIFORM SIGN MAH;Lo;0;L;;;;;N;;;;;-12225;CUNEIFORM SIGN MAR;Lo;0;L;;;;;N;;;;;-12226;CUNEIFORM SIGN MASH;Lo;0;L;;;;;N;;;;;-12227;CUNEIFORM SIGN MASH2;Lo;0;L;;;;;N;;;;;-12228;CUNEIFORM SIGN ME;Lo;0;L;;;;;N;;;;;-12229;CUNEIFORM SIGN MES;Lo;0;L;;;;;N;;;;;-1222A;CUNEIFORM SIGN MI;Lo;0;L;;;;;N;;;;;-1222B;CUNEIFORM SIGN MIN;Lo;0;L;;;;;N;;;;;-1222C;CUNEIFORM SIGN MU;Lo;0;L;;;;;N;;;;;-1222D;CUNEIFORM SIGN MU OVER MU;Lo;0;L;;;;;N;;;;;-1222E;CUNEIFORM SIGN MUG;Lo;0;L;;;;;N;;;;;-1222F;CUNEIFORM SIGN MUG GUNU;Lo;0;L;;;;;N;;;;;-12230;CUNEIFORM SIGN MUNSUB;Lo;0;L;;;;;N;;;;;-12231;CUNEIFORM SIGN MURGU2;Lo;0;L;;;;;N;;;;;-12232;CUNEIFORM SIGN MUSH;Lo;0;L;;;;;N;;;;;-12233;CUNEIFORM SIGN MUSH TIMES A;Lo;0;L;;;;;N;;;;;-12234;CUNEIFORM SIGN MUSH TIMES KUR;Lo;0;L;;;;;N;;;;;-12235;CUNEIFORM SIGN MUSH TIMES ZA;Lo;0;L;;;;;N;;;;;-12236;CUNEIFORM SIGN MUSH OVER MUSH;Lo;0;L;;;;;N;;;;;-12237;CUNEIFORM SIGN MUSH OVER MUSH TIMES A PLUS NA;Lo;0;L;;;;;N;;;;;-12238;CUNEIFORM SIGN MUSH CROSSING MUSH;Lo;0;L;;;;;N;;;;;-12239;CUNEIFORM SIGN MUSH3;Lo;0;L;;;;;N;;;;;-1223A;CUNEIFORM SIGN MUSH3 TIMES A;Lo;0;L;;;;;N;;;;;-1223B;CUNEIFORM SIGN MUSH3 TIMES A PLUS DI;Lo;0;L;;;;;N;;;;;-1223C;CUNEIFORM SIGN MUSH3 TIMES DI;Lo;0;L;;;;;N;;;;;-1223D;CUNEIFORM SIGN MUSH3 GUNU;Lo;0;L;;;;;N;;;;;-1223E;CUNEIFORM SIGN NA;Lo;0;L;;;;;N;;;;;-1223F;CUNEIFORM SIGN NA2;Lo;0;L;;;;;N;;;;;-12240;CUNEIFORM SIGN NAGA;Lo;0;L;;;;;N;;;;;-12241;CUNEIFORM SIGN NAGA INVERTED;Lo;0;L;;;;;N;;;;;-12242;CUNEIFORM SIGN NAGA TIMES SHU TENU;Lo;0;L;;;;;N;;;;;-12243;CUNEIFORM SIGN NAGA OPPOSING NAGA;Lo;0;L;;;;;N;;;;;-12244;CUNEIFORM SIGN NAGAR;Lo;0;L;;;;;N;;;;;-12245;CUNEIFORM SIGN NAM NUTILLU;Lo;0;L;;;;;N;;;;;-12246;CUNEIFORM SIGN NAM;Lo;0;L;;;;;N;;;;;-12247;CUNEIFORM SIGN NAM2;Lo;0;L;;;;;N;;;;;-12248;CUNEIFORM SIGN NE;Lo;0;L;;;;;N;;;;;-12249;CUNEIFORM SIGN NE TIMES A;Lo;0;L;;;;;N;;;;;-1224A;CUNEIFORM SIGN NE TIMES UD;Lo;0;L;;;;;N;;;;;-1224B;CUNEIFORM SIGN NE SHESHIG;Lo;0;L;;;;;N;;;;;-1224C;CUNEIFORM SIGN NI;Lo;0;L;;;;;N;;;;;-1224D;CUNEIFORM SIGN NI TIMES E;Lo;0;L;;;;;N;;;;;-1224E;CUNEIFORM SIGN NI2;Lo;0;L;;;;;N;;;;;-1224F;CUNEIFORM SIGN NIM;Lo;0;L;;;;;N;;;;;-12250;CUNEIFORM SIGN NIM TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-12251;CUNEIFORM SIGN NIM TIMES GAR PLUS GAN2 TENU;Lo;0;L;;;;;N;;;;;-12252;CUNEIFORM SIGN NINDA2;Lo;0;L;;;;;N;;;;;-12253;CUNEIFORM SIGN NINDA2 TIMES AN;Lo;0;L;;;;;N;;;;;-12254;CUNEIFORM SIGN NINDA2 TIMES ASH;Lo;0;L;;;;;N;;;;;-12255;CUNEIFORM SIGN NINDA2 TIMES ASH PLUS ASH;Lo;0;L;;;;;N;;;;;-12256;CUNEIFORM SIGN NINDA2 TIMES GUD;Lo;0;L;;;;;N;;;;;-12257;CUNEIFORM SIGN NINDA2 TIMES ME PLUS GAN2 TENU;Lo;0;L;;;;;N;;;;;-12258;CUNEIFORM SIGN NINDA2 TIMES NE;Lo;0;L;;;;;N;;;;;-12259;CUNEIFORM SIGN NINDA2 TIMES NUN;Lo;0;L;;;;;N;;;;;-1225A;CUNEIFORM SIGN NINDA2 TIMES SHE;Lo;0;L;;;;;N;;;;;-1225B;CUNEIFORM SIGN NINDA2 TIMES SHE PLUS A AN;Lo;0;L;;;;;N;;;;;-1225C;CUNEIFORM SIGN NINDA2 TIMES SHE PLUS ASH;Lo;0;L;;;;;N;;;;;-1225D;CUNEIFORM SIGN NINDA2 TIMES SHE PLUS ASH PLUS ASH;Lo;0;L;;;;;N;;;;;-1225E;CUNEIFORM SIGN NINDA2 TIMES U2 PLUS ASH;Lo;0;L;;;;;N;;;;;-1225F;CUNEIFORM SIGN NINDA2 TIMES USH;Lo;0;L;;;;;N;;;;;-12260;CUNEIFORM SIGN NISAG;Lo;0;L;;;;;N;;;;;-12261;CUNEIFORM SIGN NU;Lo;0;L;;;;;N;;;;;-12262;CUNEIFORM SIGN NU11;Lo;0;L;;;;;N;;;;;-12263;CUNEIFORM SIGN NUN;Lo;0;L;;;;;N;;;;;-12264;CUNEIFORM SIGN NUN LAGAR TIMES GAR;Lo;0;L;;;;;N;;;;;-12265;CUNEIFORM SIGN NUN LAGAR TIMES MASH;Lo;0;L;;;;;N;;;;;-12266;CUNEIFORM SIGN NUN LAGAR TIMES SAL;Lo;0;L;;;;;N;;;;;-12267;CUNEIFORM SIGN NUN LAGAR TIMES SAL OVER NUN LAGAR TIMES SAL;Lo;0;L;;;;;N;;;;;-12268;CUNEIFORM SIGN NUN LAGAR TIMES USH;Lo;0;L;;;;;N;;;;;-12269;CUNEIFORM SIGN NUN TENU;Lo;0;L;;;;;N;;;;;-1226A;CUNEIFORM SIGN NUN OVER NUN;Lo;0;L;;;;;N;;;;;-1226B;CUNEIFORM SIGN NUN CROSSING NUN;Lo;0;L;;;;;N;;;;;-1226C;CUNEIFORM SIGN NUN CROSSING NUN LAGAR OVER LAGAR;Lo;0;L;;;;;N;;;;;-1226D;CUNEIFORM SIGN NUNUZ;Lo;0;L;;;;;N;;;;;-1226E;CUNEIFORM SIGN NUNUZ AB2 TIMES ASHGAB;Lo;0;L;;;;;N;;;;;-1226F;CUNEIFORM SIGN NUNUZ AB2 TIMES BI;Lo;0;L;;;;;N;;;;;-12270;CUNEIFORM SIGN NUNUZ AB2 TIMES DUG;Lo;0;L;;;;;N;;;;;-12271;CUNEIFORM SIGN NUNUZ AB2 TIMES GUD;Lo;0;L;;;;;N;;;;;-12272;CUNEIFORM SIGN NUNUZ AB2 TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-12273;CUNEIFORM SIGN NUNUZ AB2 TIMES KAD3;Lo;0;L;;;;;N;;;;;-12274;CUNEIFORM SIGN NUNUZ AB2 TIMES LA;Lo;0;L;;;;;N;;;;;-12275;CUNEIFORM SIGN NUNUZ AB2 TIMES NE;Lo;0;L;;;;;N;;;;;-12276;CUNEIFORM SIGN NUNUZ AB2 TIMES SILA3;Lo;0;L;;;;;N;;;;;-12277;CUNEIFORM SIGN NUNUZ AB2 TIMES U2;Lo;0;L;;;;;N;;;;;-12278;CUNEIFORM SIGN NUNUZ KISIM5 TIMES BI;Lo;0;L;;;;;N;;;;;-12279;CUNEIFORM SIGN NUNUZ KISIM5 TIMES BI U;Lo;0;L;;;;;N;;;;;-1227A;CUNEIFORM SIGN PA;Lo;0;L;;;;;N;;;;;-1227B;CUNEIFORM SIGN PAD;Lo;0;L;;;;;N;;;;;-1227C;CUNEIFORM SIGN PAN;Lo;0;L;;;;;N;;;;;-1227D;CUNEIFORM SIGN PAP;Lo;0;L;;;;;N;;;;;-1227E;CUNEIFORM SIGN PESH2;Lo;0;L;;;;;N;;;;;-1227F;CUNEIFORM SIGN PI;Lo;0;L;;;;;N;;;;;-12280;CUNEIFORM SIGN PI TIMES A;Lo;0;L;;;;;N;;;;;-12281;CUNEIFORM SIGN PI TIMES AB;Lo;0;L;;;;;N;;;;;-12282;CUNEIFORM SIGN PI TIMES BI;Lo;0;L;;;;;N;;;;;-12283;CUNEIFORM SIGN PI TIMES BU;Lo;0;L;;;;;N;;;;;-12284;CUNEIFORM SIGN PI TIMES E;Lo;0;L;;;;;N;;;;;-12285;CUNEIFORM SIGN PI TIMES I;Lo;0;L;;;;;N;;;;;-12286;CUNEIFORM SIGN PI TIMES IB;Lo;0;L;;;;;N;;;;;-12287;CUNEIFORM SIGN PI TIMES U;Lo;0;L;;;;;N;;;;;-12288;CUNEIFORM SIGN PI TIMES U2;Lo;0;L;;;;;N;;;;;-12289;CUNEIFORM SIGN PI CROSSING PI;Lo;0;L;;;;;N;;;;;-1228A;CUNEIFORM SIGN PIRIG;Lo;0;L;;;;;N;;;;;-1228B;CUNEIFORM SIGN PIRIG TIMES KAL;Lo;0;L;;;;;N;;;;;-1228C;CUNEIFORM SIGN PIRIG TIMES UD;Lo;0;L;;;;;N;;;;;-1228D;CUNEIFORM SIGN PIRIG TIMES ZA;Lo;0;L;;;;;N;;;;;-1228E;CUNEIFORM SIGN PIRIG OPPOSING PIRIG;Lo;0;L;;;;;N;;;;;-1228F;CUNEIFORM SIGN RA;Lo;0;L;;;;;N;;;;;-12290;CUNEIFORM SIGN RAB;Lo;0;L;;;;;N;;;;;-12291;CUNEIFORM SIGN RI;Lo;0;L;;;;;N;;;;;-12292;CUNEIFORM SIGN RU;Lo;0;L;;;;;N;;;;;-12293;CUNEIFORM SIGN SA;Lo;0;L;;;;;N;;;;;-12294;CUNEIFORM SIGN SAG NUTILLU;Lo;0;L;;;;;N;;;;;-12295;CUNEIFORM SIGN SAG;Lo;0;L;;;;;N;;;;;-12296;CUNEIFORM SIGN SAG TIMES A;Lo;0;L;;;;;N;;;;;-12297;CUNEIFORM SIGN SAG TIMES DU;Lo;0;L;;;;;N;;;;;-12298;CUNEIFORM SIGN SAG TIMES DUB;Lo;0;L;;;;;N;;;;;-12299;CUNEIFORM SIGN SAG TIMES HA;Lo;0;L;;;;;N;;;;;-1229A;CUNEIFORM SIGN SAG TIMES KAK;Lo;0;L;;;;;N;;;;;-1229B;CUNEIFORM SIGN SAG TIMES KUR;Lo;0;L;;;;;N;;;;;-1229C;CUNEIFORM SIGN SAG TIMES LUM;Lo;0;L;;;;;N;;;;;-1229D;CUNEIFORM SIGN SAG TIMES MI;Lo;0;L;;;;;N;;;;;-1229E;CUNEIFORM SIGN SAG TIMES NUN;Lo;0;L;;;;;N;;;;;-1229F;CUNEIFORM SIGN SAG TIMES SAL;Lo;0;L;;;;;N;;;;;-122A0;CUNEIFORM SIGN SAG TIMES SHID;Lo;0;L;;;;;N;;;;;-122A1;CUNEIFORM SIGN SAG TIMES TAB;Lo;0;L;;;;;N;;;;;-122A2;CUNEIFORM SIGN SAG TIMES U2;Lo;0;L;;;;;N;;;;;-122A3;CUNEIFORM SIGN SAG TIMES UB;Lo;0;L;;;;;N;;;;;-122A4;CUNEIFORM SIGN SAG TIMES UM;Lo;0;L;;;;;N;;;;;-122A5;CUNEIFORM SIGN SAG TIMES UR;Lo;0;L;;;;;N;;;;;-122A6;CUNEIFORM SIGN SAG TIMES USH;Lo;0;L;;;;;N;;;;;-122A7;CUNEIFORM SIGN SAG OVER SAG;Lo;0;L;;;;;N;;;;;-122A8;CUNEIFORM SIGN SAG GUNU;Lo;0;L;;;;;N;;;;;-122A9;CUNEIFORM SIGN SAL;Lo;0;L;;;;;N;;;;;-122AA;CUNEIFORM SIGN SAL LAGAB TIMES ASH2;Lo;0;L;;;;;N;;;;;-122AB;CUNEIFORM SIGN SANGA2;Lo;0;L;;;;;N;;;;;-122AC;CUNEIFORM SIGN SAR;Lo;0;L;;;;;N;;;;;-122AD;CUNEIFORM SIGN SHA;Lo;0;L;;;;;N;;;;;-122AE;CUNEIFORM SIGN SHA3;Lo;0;L;;;;;N;;;;;-122AF;CUNEIFORM SIGN SHA3 TIMES A;Lo;0;L;;;;;N;;;;;-122B0;CUNEIFORM SIGN SHA3 TIMES BAD;Lo;0;L;;;;;N;;;;;-122B1;CUNEIFORM SIGN SHA3 TIMES GISH;Lo;0;L;;;;;N;;;;;-122B2;CUNEIFORM SIGN SHA3 TIMES NE;Lo;0;L;;;;;N;;;;;-122B3;CUNEIFORM SIGN SHA3 TIMES SHU2;Lo;0;L;;;;;N;;;;;-122B4;CUNEIFORM SIGN SHA3 TIMES TUR;Lo;0;L;;;;;N;;;;;-122B5;CUNEIFORM SIGN SHA3 TIMES U;Lo;0;L;;;;;N;;;;;-122B6;CUNEIFORM SIGN SHA3 TIMES U PLUS A;Lo;0;L;;;;;N;;;;;-122B7;CUNEIFORM SIGN SHA6;Lo;0;L;;;;;N;;;;;-122B8;CUNEIFORM SIGN SHAB6;Lo;0;L;;;;;N;;;;;-122B9;CUNEIFORM SIGN SHAR2;Lo;0;L;;;;;N;;;;;-122BA;CUNEIFORM SIGN SHE;Lo;0;L;;;;;N;;;;;-122BB;CUNEIFORM SIGN SHE HU;Lo;0;L;;;;;N;;;;;-122BC;CUNEIFORM SIGN SHE OVER SHE GAD OVER GAD GAR OVER GAR;Lo;0;L;;;;;N;;;;;-122BD;CUNEIFORM SIGN SHE OVER SHE TAB OVER TAB GAR OVER GAR;Lo;0;L;;;;;N;;;;;-122BE;CUNEIFORM SIGN SHEG9;Lo;0;L;;;;;N;;;;;-122BF;CUNEIFORM SIGN SHEN;Lo;0;L;;;;;N;;;;;-122C0;CUNEIFORM SIGN SHESH;Lo;0;L;;;;;N;;;;;-122C1;CUNEIFORM SIGN SHESH2;Lo;0;L;;;;;N;;;;;-122C2;CUNEIFORM SIGN SHESHLAM;Lo;0;L;;;;;N;;;;;-122C3;CUNEIFORM SIGN SHID;Lo;0;L;;;;;N;;;;;-122C4;CUNEIFORM SIGN SHID TIMES A;Lo;0;L;;;;;N;;;;;-122C5;CUNEIFORM SIGN SHID TIMES IM;Lo;0;L;;;;;N;;;;;-122C6;CUNEIFORM SIGN SHIM;Lo;0;L;;;;;N;;;;;-122C7;CUNEIFORM SIGN SHIM TIMES A;Lo;0;L;;;;;N;;;;;-122C8;CUNEIFORM SIGN SHIM TIMES BAL;Lo;0;L;;;;;N;;;;;-122C9;CUNEIFORM SIGN SHIM TIMES BULUG;Lo;0;L;;;;;N;;;;;-122CA;CUNEIFORM SIGN SHIM TIMES DIN;Lo;0;L;;;;;N;;;;;-122CB;CUNEIFORM SIGN SHIM TIMES GAR;Lo;0;L;;;;;N;;;;;-122CC;CUNEIFORM SIGN SHIM TIMES IGI;Lo;0;L;;;;;N;;;;;-122CD;CUNEIFORM SIGN SHIM TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-122CE;CUNEIFORM SIGN SHIM TIMES KUSHU2;Lo;0;L;;;;;N;;;;;-122CF;CUNEIFORM SIGN SHIM TIMES LUL;Lo;0;L;;;;;N;;;;;-122D0;CUNEIFORM SIGN SHIM TIMES MUG;Lo;0;L;;;;;N;;;;;-122D1;CUNEIFORM SIGN SHIM TIMES SAL;Lo;0;L;;;;;N;;;;;-122D2;CUNEIFORM SIGN SHINIG;Lo;0;L;;;;;N;;;;;-122D3;CUNEIFORM SIGN SHIR;Lo;0;L;;;;;N;;;;;-122D4;CUNEIFORM SIGN SHIR TENU;Lo;0;L;;;;;N;;;;;-122D5;CUNEIFORM SIGN SHIR OVER SHIR BUR OVER BUR;Lo;0;L;;;;;N;;;;;-122D6;CUNEIFORM SIGN SHITA;Lo;0;L;;;;;N;;;;;-122D7;CUNEIFORM SIGN SHU;Lo;0;L;;;;;N;;;;;-122D8;CUNEIFORM SIGN SHU OVER INVERTED SHU;Lo;0;L;;;;;N;;;;;-122D9;CUNEIFORM SIGN SHU2;Lo;0;L;;;;;N;;;;;-122DA;CUNEIFORM SIGN SHUBUR;Lo;0;L;;;;;N;;;;;-122DB;CUNEIFORM SIGN SI;Lo;0;L;;;;;N;;;;;-122DC;CUNEIFORM SIGN SI GUNU;Lo;0;L;;;;;N;;;;;-122DD;CUNEIFORM SIGN SIG;Lo;0;L;;;;;N;;;;;-122DE;CUNEIFORM SIGN SIG4;Lo;0;L;;;;;N;;;;;-122DF;CUNEIFORM SIGN SIG4 OVER SIG4 SHU2;Lo;0;L;;;;;N;;;;;-122E0;CUNEIFORM SIGN SIK2;Lo;0;L;;;;;N;;;;;-122E1;CUNEIFORM SIGN SILA3;Lo;0;L;;;;;N;;;;;-122E2;CUNEIFORM SIGN SU;Lo;0;L;;;;;N;;;;;-122E3;CUNEIFORM SIGN SU OVER SU;Lo;0;L;;;;;N;;;;;-122E4;CUNEIFORM SIGN SUD;Lo;0;L;;;;;N;;;;;-122E5;CUNEIFORM SIGN SUD2;Lo;0;L;;;;;N;;;;;-122E6;CUNEIFORM SIGN SUHUR;Lo;0;L;;;;;N;;;;;-122E7;CUNEIFORM SIGN SUM;Lo;0;L;;;;;N;;;;;-122E8;CUNEIFORM SIGN SUMASH;Lo;0;L;;;;;N;;;;;-122E9;CUNEIFORM SIGN SUR;Lo;0;L;;;;;N;;;;;-122EA;CUNEIFORM SIGN SUR9;Lo;0;L;;;;;N;;;;;-122EB;CUNEIFORM SIGN TA;Lo;0;L;;;;;N;;;;;-122EC;CUNEIFORM SIGN TA ASTERISK;Lo;0;L;;;;;N;;;;;-122ED;CUNEIFORM SIGN TA TIMES HI;Lo;0;L;;;;;N;;;;;-122EE;CUNEIFORM SIGN TA TIMES MI;Lo;0;L;;;;;N;;;;;-122EF;CUNEIFORM SIGN TA GUNU;Lo;0;L;;;;;N;;;;;-122F0;CUNEIFORM SIGN TAB;Lo;0;L;;;;;N;;;;;-122F1;CUNEIFORM SIGN TAB OVER TAB NI OVER NI DISH OVER DISH;Lo;0;L;;;;;N;;;;;-122F2;CUNEIFORM SIGN TAB SQUARED;Lo;0;L;;;;;N;;;;;-122F3;CUNEIFORM SIGN TAG;Lo;0;L;;;;;N;;;;;-122F4;CUNEIFORM SIGN TAG TIMES BI;Lo;0;L;;;;;N;;;;;-122F5;CUNEIFORM SIGN TAG TIMES GUD;Lo;0;L;;;;;N;;;;;-122F6;CUNEIFORM SIGN TAG TIMES SHE;Lo;0;L;;;;;N;;;;;-122F7;CUNEIFORM SIGN TAG TIMES SHU;Lo;0;L;;;;;N;;;;;-122F8;CUNEIFORM SIGN TAG TIMES TUG2;Lo;0;L;;;;;N;;;;;-122F9;CUNEIFORM SIGN TAG TIMES UD;Lo;0;L;;;;;N;;;;;-122FA;CUNEIFORM SIGN TAK4;Lo;0;L;;;;;N;;;;;-122FB;CUNEIFORM SIGN TAR;Lo;0;L;;;;;N;;;;;-122FC;CUNEIFORM SIGN TE;Lo;0;L;;;;;N;;;;;-122FD;CUNEIFORM SIGN TE GUNU;Lo;0;L;;;;;N;;;;;-122FE;CUNEIFORM SIGN TI;Lo;0;L;;;;;N;;;;;-122FF;CUNEIFORM SIGN TI TENU;Lo;0;L;;;;;N;;;;;-12300;CUNEIFORM SIGN TIL;Lo;0;L;;;;;N;;;;;-12301;CUNEIFORM SIGN TIR;Lo;0;L;;;;;N;;;;;-12302;CUNEIFORM SIGN TIR TIMES TAK4;Lo;0;L;;;;;N;;;;;-12303;CUNEIFORM SIGN TIR OVER TIR;Lo;0;L;;;;;N;;;;;-12304;CUNEIFORM SIGN TIR OVER TIR GAD OVER GAD GAR OVER GAR;Lo;0;L;;;;;N;;;;;-12305;CUNEIFORM SIGN TU;Lo;0;L;;;;;N;;;;;-12306;CUNEIFORM SIGN TUG2;Lo;0;L;;;;;N;;;;;-12307;CUNEIFORM SIGN TUK;Lo;0;L;;;;;N;;;;;-12308;CUNEIFORM SIGN TUM;Lo;0;L;;;;;N;;;;;-12309;CUNEIFORM SIGN TUR;Lo;0;L;;;;;N;;;;;-1230A;CUNEIFORM SIGN TUR OVER TUR ZA OVER ZA;Lo;0;L;;;;;N;;;;;-1230B;CUNEIFORM SIGN U;Lo;0;L;;;;;N;;;;;-1230C;CUNEIFORM SIGN U GUD;Lo;0;L;;;;;N;;;;;-1230D;CUNEIFORM SIGN U U U;Lo;0;L;;;;;N;;;;;-1230E;CUNEIFORM SIGN U OVER U PA OVER PA GAR OVER GAR;Lo;0;L;;;;;N;;;;;-1230F;CUNEIFORM SIGN U OVER U SUR OVER SUR;Lo;0;L;;;;;N;;;;;-12310;CUNEIFORM SIGN U OVER U U REVERSED OVER U REVERSED;Lo;0;L;;;;;N;;;;;-12311;CUNEIFORM SIGN U2;Lo;0;L;;;;;N;;;;;-12312;CUNEIFORM SIGN UB;Lo;0;L;;;;;N;;;;;-12313;CUNEIFORM SIGN UD;Lo;0;L;;;;;N;;;;;-12314;CUNEIFORM SIGN UD KUSHU2;Lo;0;L;;;;;N;;;;;-12315;CUNEIFORM SIGN UD TIMES BAD;Lo;0;L;;;;;N;;;;;-12316;CUNEIFORM SIGN UD TIMES MI;Lo;0;L;;;;;N;;;;;-12317;CUNEIFORM SIGN UD TIMES U PLUS U PLUS U;Lo;0;L;;;;;N;;;;;-12318;CUNEIFORM SIGN UD TIMES U PLUS U PLUS U GUNU;Lo;0;L;;;;;N;;;;;-12319;CUNEIFORM SIGN UD GUNU;Lo;0;L;;;;;N;;;;;-1231A;CUNEIFORM SIGN UD SHESHIG;Lo;0;L;;;;;N;;;;;-1231B;CUNEIFORM SIGN UD SHESHIG TIMES BAD;Lo;0;L;;;;;N;;;;;-1231C;CUNEIFORM SIGN UDUG;Lo;0;L;;;;;N;;;;;-1231D;CUNEIFORM SIGN UM;Lo;0;L;;;;;N;;;;;-1231E;CUNEIFORM SIGN UM TIMES LAGAB;Lo;0;L;;;;;N;;;;;-1231F;CUNEIFORM SIGN UM TIMES ME PLUS DA;Lo;0;L;;;;;N;;;;;-12320;CUNEIFORM SIGN UM TIMES SHA3;Lo;0;L;;;;;N;;;;;-12321;CUNEIFORM SIGN UM TIMES U;Lo;0;L;;;;;N;;;;;-12322;CUNEIFORM SIGN UMBIN;Lo;0;L;;;;;N;;;;;-12323;CUNEIFORM SIGN UMUM;Lo;0;L;;;;;N;;;;;-12324;CUNEIFORM SIGN UMUM TIMES KASKAL;Lo;0;L;;;;;N;;;;;-12325;CUNEIFORM SIGN UMUM TIMES PA;Lo;0;L;;;;;N;;;;;-12326;CUNEIFORM SIGN UN;Lo;0;L;;;;;N;;;;;-12327;CUNEIFORM SIGN UN GUNU;Lo;0;L;;;;;N;;;;;-12328;CUNEIFORM SIGN UR;Lo;0;L;;;;;N;;;;;-12329;CUNEIFORM SIGN UR CROSSING UR;Lo;0;L;;;;;N;;;;;-1232A;CUNEIFORM SIGN UR SHESHIG;Lo;0;L;;;;;N;;;;;-1232B;CUNEIFORM SIGN UR2;Lo;0;L;;;;;N;;;;;-1232C;CUNEIFORM SIGN UR2 TIMES A PLUS HA;Lo;0;L;;;;;N;;;;;-1232D;CUNEIFORM SIGN UR2 TIMES A PLUS NA;Lo;0;L;;;;;N;;;;;-1232E;CUNEIFORM SIGN UR2 TIMES AL;Lo;0;L;;;;;N;;;;;-1232F;CUNEIFORM SIGN UR2 TIMES HA;Lo;0;L;;;;;N;;;;;-12330;CUNEIFORM SIGN UR2 TIMES NUN;Lo;0;L;;;;;N;;;;;-12331;CUNEIFORM SIGN UR2 TIMES U2;Lo;0;L;;;;;N;;;;;-12332;CUNEIFORM SIGN UR2 TIMES U2 PLUS ASH;Lo;0;L;;;;;N;;;;;-12333;CUNEIFORM SIGN UR2 TIMES U2 PLUS BI;Lo;0;L;;;;;N;;;;;-12334;CUNEIFORM SIGN UR4;Lo;0;L;;;;;N;;;;;-12335;CUNEIFORM SIGN URI;Lo;0;L;;;;;N;;;;;-12336;CUNEIFORM SIGN URI3;Lo;0;L;;;;;N;;;;;-12337;CUNEIFORM SIGN URU;Lo;0;L;;;;;N;;;;;-12338;CUNEIFORM SIGN URU TIMES A;Lo;0;L;;;;;N;;;;;-12339;CUNEIFORM SIGN URU TIMES ASHGAB;Lo;0;L;;;;;N;;;;;-1233A;CUNEIFORM SIGN URU TIMES BAR;Lo;0;L;;;;;N;;;;;-1233B;CUNEIFORM SIGN URU TIMES DUN;Lo;0;L;;;;;N;;;;;-1233C;CUNEIFORM SIGN URU TIMES GA;Lo;0;L;;;;;N;;;;;-1233D;CUNEIFORM SIGN URU TIMES GAL;Lo;0;L;;;;;N;;;;;-1233E;CUNEIFORM SIGN URU TIMES GAN2 TENU;Lo;0;L;;;;;N;;;;;-1233F;CUNEIFORM SIGN URU TIMES GAR;Lo;0;L;;;;;N;;;;;-12340;CUNEIFORM SIGN URU TIMES GU;Lo;0;L;;;;;N;;;;;-12341;CUNEIFORM SIGN URU TIMES HA;Lo;0;L;;;;;N;;;;;-12342;CUNEIFORM SIGN URU TIMES IGI;Lo;0;L;;;;;N;;;;;-12343;CUNEIFORM SIGN URU TIMES IM;Lo;0;L;;;;;N;;;;;-12344;CUNEIFORM SIGN URU TIMES ISH;Lo;0;L;;;;;N;;;;;-12345;CUNEIFORM SIGN URU TIMES KI;Lo;0;L;;;;;N;;;;;-12346;CUNEIFORM SIGN URU TIMES LUM;Lo;0;L;;;;;N;;;;;-12347;CUNEIFORM SIGN URU TIMES MIN;Lo;0;L;;;;;N;;;;;-12348;CUNEIFORM SIGN URU TIMES PA;Lo;0;L;;;;;N;;;;;-12349;CUNEIFORM SIGN URU TIMES SHE;Lo;0;L;;;;;N;;;;;-1234A;CUNEIFORM SIGN URU TIMES SIG4;Lo;0;L;;;;;N;;;;;-1234B;CUNEIFORM SIGN URU TIMES TU;Lo;0;L;;;;;N;;;;;-1234C;CUNEIFORM SIGN URU TIMES U PLUS GUD;Lo;0;L;;;;;N;;;;;-1234D;CUNEIFORM SIGN URU TIMES UD;Lo;0;L;;;;;N;;;;;-1234E;CUNEIFORM SIGN URU TIMES URUDA;Lo;0;L;;;;;N;;;;;-1234F;CUNEIFORM SIGN URUDA;Lo;0;L;;;;;N;;;;;-12350;CUNEIFORM SIGN URUDA TIMES U;Lo;0;L;;;;;N;;;;;-12351;CUNEIFORM SIGN USH;Lo;0;L;;;;;N;;;;;-12352;CUNEIFORM SIGN USH TIMES A;Lo;0;L;;;;;N;;;;;-12353;CUNEIFORM SIGN USH TIMES KU;Lo;0;L;;;;;N;;;;;-12354;CUNEIFORM SIGN USH TIMES KUR;Lo;0;L;;;;;N;;;;;-12355;CUNEIFORM SIGN USH TIMES TAK4;Lo;0;L;;;;;N;;;;;-12356;CUNEIFORM SIGN USHX;Lo;0;L;;;;;N;;;;;-12357;CUNEIFORM SIGN USH2;Lo;0;L;;;;;N;;;;;-12358;CUNEIFORM SIGN USHUMX;Lo;0;L;;;;;N;;;;;-12359;CUNEIFORM SIGN UTUKI;Lo;0;L;;;;;N;;;;;-1235A;CUNEIFORM SIGN UZ3;Lo;0;L;;;;;N;;;;;-1235B;CUNEIFORM SIGN UZ3 TIMES KASKAL;Lo;0;L;;;;;N;;;;;-1235C;CUNEIFORM SIGN UZU;Lo;0;L;;;;;N;;;;;-1235D;CUNEIFORM SIGN ZA;Lo;0;L;;;;;N;;;;;-1235E;CUNEIFORM SIGN ZA TENU;Lo;0;L;;;;;N;;;;;-1235F;CUNEIFORM SIGN ZA SQUARED TIMES KUR;Lo;0;L;;;;;N;;;;;-12360;CUNEIFORM SIGN ZAG;Lo;0;L;;;;;N;;;;;-12361;CUNEIFORM SIGN ZAMX;Lo;0;L;;;;;N;;;;;-12362;CUNEIFORM SIGN ZE2;Lo;0;L;;;;;N;;;;;-12363;CUNEIFORM SIGN ZI;Lo;0;L;;;;;N;;;;;-12364;CUNEIFORM SIGN ZI OVER ZI;Lo;0;L;;;;;N;;;;;-12365;CUNEIFORM SIGN ZI3;Lo;0;L;;;;;N;;;;;-12366;CUNEIFORM SIGN ZIB;Lo;0;L;;;;;N;;;;;-12367;CUNEIFORM SIGN ZIB KABA TENU;Lo;0;L;;;;;N;;;;;-12368;CUNEIFORM SIGN ZIG;Lo;0;L;;;;;N;;;;;-12369;CUNEIFORM SIGN ZIZ2;Lo;0;L;;;;;N;;;;;-1236A;CUNEIFORM SIGN ZU;Lo;0;L;;;;;N;;;;;-1236B;CUNEIFORM SIGN ZU5;Lo;0;L;;;;;N;;;;;-1236C;CUNEIFORM SIGN ZU5 TIMES A;Lo;0;L;;;;;N;;;;;-1236D;CUNEIFORM SIGN ZUBUR;Lo;0;L;;;;;N;;;;;-1236E;CUNEIFORM SIGN ZUM;Lo;0;L;;;;;N;;;;;-1236F;CUNEIFORM SIGN KAP ELAMITE;Lo;0;L;;;;;N;;;;;-12370;CUNEIFORM SIGN AB TIMES NUN;Lo;0;L;;;;;N;;;;;-12371;CUNEIFORM SIGN AB2 TIMES A;Lo;0;L;;;;;N;;;;;-12372;CUNEIFORM SIGN AMAR TIMES KUG;Lo;0;L;;;;;N;;;;;-12373;CUNEIFORM SIGN DAG KISIM5 TIMES U2 PLUS MASH;Lo;0;L;;;;;N;;;;;-12374;CUNEIFORM SIGN DAG3;Lo;0;L;;;;;N;;;;;-12375;CUNEIFORM SIGN DISH PLUS SHU;Lo;0;L;;;;;N;;;;;-12376;CUNEIFORM SIGN DUB TIMES SHE;Lo;0;L;;;;;N;;;;;-12377;CUNEIFORM SIGN EZEN TIMES GUD;Lo;0;L;;;;;N;;;;;-12378;CUNEIFORM SIGN EZEN TIMES SHE;Lo;0;L;;;;;N;;;;;-12379;CUNEIFORM SIGN GA2 TIMES AN PLUS KAK PLUS A;Lo;0;L;;;;;N;;;;;-1237A;CUNEIFORM SIGN GA2 TIMES ASH2;Lo;0;L;;;;;N;;;;;-1237B;CUNEIFORM SIGN GE22;Lo;0;L;;;;;N;;;;;-1237C;CUNEIFORM SIGN GIG;Lo;0;L;;;;;N;;;;;-1237D;CUNEIFORM SIGN HUSH;Lo;0;L;;;;;N;;;;;-1237E;CUNEIFORM SIGN KA TIMES ANSHE;Lo;0;L;;;;;N;;;;;-1237F;CUNEIFORM SIGN KA TIMES ASH3;Lo;0;L;;;;;N;;;;;-12380;CUNEIFORM SIGN KA TIMES GISH;Lo;0;L;;;;;N;;;;;-12381;CUNEIFORM SIGN KA TIMES GUD;Lo;0;L;;;;;N;;;;;-12382;CUNEIFORM SIGN KA TIMES HI TIMES ASH2;Lo;0;L;;;;;N;;;;;-12383;CUNEIFORM SIGN KA TIMES LUM;Lo;0;L;;;;;N;;;;;-12384;CUNEIFORM SIGN KA TIMES PA;Lo;0;L;;;;;N;;;;;-12385;CUNEIFORM SIGN KA TIMES SHUL;Lo;0;L;;;;;N;;;;;-12386;CUNEIFORM SIGN KA TIMES TU;Lo;0;L;;;;;N;;;;;-12387;CUNEIFORM SIGN KA TIMES UR2;Lo;0;L;;;;;N;;;;;-12388;CUNEIFORM SIGN LAGAB TIMES GI;Lo;0;L;;;;;N;;;;;-12389;CUNEIFORM SIGN LU2 SHESHIG TIMES BAD;Lo;0;L;;;;;N;;;;;-1238A;CUNEIFORM SIGN LU2 TIMES ESH2 PLUS LAL;Lo;0;L;;;;;N;;;;;-1238B;CUNEIFORM SIGN LU2 TIMES SHU;Lo;0;L;;;;;N;;;;;-1238C;CUNEIFORM SIGN MESH;Lo;0;L;;;;;N;;;;;-1238D;CUNEIFORM SIGN MUSH3 TIMES ZA;Lo;0;L;;;;;N;;;;;-1238E;CUNEIFORM SIGN NA4;Lo;0;L;;;;;N;;;;;-1238F;CUNEIFORM SIGN NIN;Lo;0;L;;;;;N;;;;;-12390;CUNEIFORM SIGN NIN9;Lo;0;L;;;;;N;;;;;-12391;CUNEIFORM SIGN NINDA2 TIMES BAL;Lo;0;L;;;;;N;;;;;-12392;CUNEIFORM SIGN NINDA2 TIMES GI;Lo;0;L;;;;;N;;;;;-12393;CUNEIFORM SIGN NU11 ROTATED NINETY DEGREES;Lo;0;L;;;;;N;;;;;-12394;CUNEIFORM SIGN PESH2 ASTERISK;Lo;0;L;;;;;N;;;;;-12395;CUNEIFORM SIGN PIR2;Lo;0;L;;;;;N;;;;;-12396;CUNEIFORM SIGN SAG TIMES IGI GUNU;Lo;0;L;;;;;N;;;;;-12397;CUNEIFORM SIGN TI2;Lo;0;L;;;;;N;;;;;-12398;CUNEIFORM SIGN UM TIMES ME;Lo;0;L;;;;;N;;;;;-12400;CUNEIFORM NUMERIC SIGN TWO ASH;Nl;0;L;;;;2;N;;;;;-12401;CUNEIFORM NUMERIC SIGN THREE ASH;Nl;0;L;;;;3;N;;;;;-12402;CUNEIFORM NUMERIC SIGN FOUR ASH;Nl;0;L;;;;4;N;;;;;-12403;CUNEIFORM NUMERIC SIGN FIVE ASH;Nl;0;L;;;;5;N;;;;;-12404;CUNEIFORM NUMERIC SIGN SIX ASH;Nl;0;L;;;;6;N;;;;;-12405;CUNEIFORM NUMERIC SIGN SEVEN ASH;Nl;0;L;;;;7;N;;;;;-12406;CUNEIFORM NUMERIC SIGN EIGHT ASH;Nl;0;L;;;;8;N;;;;;-12407;CUNEIFORM NUMERIC SIGN NINE ASH;Nl;0;L;;;;9;N;;;;;-12408;CUNEIFORM NUMERIC SIGN THREE DISH;Nl;0;L;;;;3;N;;;;;-12409;CUNEIFORM NUMERIC SIGN FOUR DISH;Nl;0;L;;;;4;N;;;;;-1240A;CUNEIFORM NUMERIC SIGN FIVE DISH;Nl;0;L;;;;5;N;;;;;-1240B;CUNEIFORM NUMERIC SIGN SIX DISH;Nl;0;L;;;;6;N;;;;;-1240C;CUNEIFORM NUMERIC SIGN SEVEN DISH;Nl;0;L;;;;7;N;;;;;-1240D;CUNEIFORM NUMERIC SIGN EIGHT DISH;Nl;0;L;;;;8;N;;;;;-1240E;CUNEIFORM NUMERIC SIGN NINE DISH;Nl;0;L;;;;9;N;;;;;-1240F;CUNEIFORM NUMERIC SIGN FOUR U;Nl;0;L;;;;4;N;;;;;-12410;CUNEIFORM NUMERIC SIGN FIVE U;Nl;0;L;;;;5;N;;;;;-12411;CUNEIFORM NUMERIC SIGN SIX U;Nl;0;L;;;;6;N;;;;;-12412;CUNEIFORM NUMERIC SIGN SEVEN U;Nl;0;L;;;;7;N;;;;;-12413;CUNEIFORM NUMERIC SIGN EIGHT U;Nl;0;L;;;;8;N;;;;;-12414;CUNEIFORM NUMERIC SIGN NINE U;Nl;0;L;;;;9;N;;;;;-12415;CUNEIFORM NUMERIC SIGN ONE GESH2;Nl;0;L;;;;1;N;;;;;-12416;CUNEIFORM NUMERIC SIGN TWO GESH2;Nl;0;L;;;;2;N;;;;;-12417;CUNEIFORM NUMERIC SIGN THREE GESH2;Nl;0;L;;;;3;N;;;;;-12418;CUNEIFORM NUMERIC SIGN FOUR GESH2;Nl;0;L;;;;4;N;;;;;-12419;CUNEIFORM NUMERIC SIGN FIVE GESH2;Nl;0;L;;;;5;N;;;;;-1241A;CUNEIFORM NUMERIC SIGN SIX GESH2;Nl;0;L;;;;6;N;;;;;-1241B;CUNEIFORM NUMERIC SIGN SEVEN GESH2;Nl;0;L;;;;7;N;;;;;-1241C;CUNEIFORM NUMERIC SIGN EIGHT GESH2;Nl;0;L;;;;8;N;;;;;-1241D;CUNEIFORM NUMERIC SIGN NINE GESH2;Nl;0;L;;;;9;N;;;;;-1241E;CUNEIFORM NUMERIC SIGN ONE GESHU;Nl;0;L;;;;1;N;;;;;-1241F;CUNEIFORM NUMERIC SIGN TWO GESHU;Nl;0;L;;;;2;N;;;;;-12420;CUNEIFORM NUMERIC SIGN THREE GESHU;Nl;0;L;;;;3;N;;;;;-12421;CUNEIFORM NUMERIC SIGN FOUR GESHU;Nl;0;L;;;;4;N;;;;;-12422;CUNEIFORM NUMERIC SIGN FIVE GESHU;Nl;0;L;;;;5;N;;;;;-12423;CUNEIFORM NUMERIC SIGN TWO SHAR2;Nl;0;L;;;;2;N;;;;;-12424;CUNEIFORM NUMERIC SIGN THREE SHAR2;Nl;0;L;;;;3;N;;;;;-12425;CUNEIFORM NUMERIC SIGN THREE SHAR2 VARIANT FORM;Nl;0;L;;;;3;N;;;;;-12426;CUNEIFORM NUMERIC SIGN FOUR SHAR2;Nl;0;L;;;;4;N;;;;;-12427;CUNEIFORM NUMERIC SIGN FIVE SHAR2;Nl;0;L;;;;5;N;;;;;-12428;CUNEIFORM NUMERIC SIGN SIX SHAR2;Nl;0;L;;;;6;N;;;;;-12429;CUNEIFORM NUMERIC SIGN SEVEN SHAR2;Nl;0;L;;;;7;N;;;;;-1242A;CUNEIFORM NUMERIC SIGN EIGHT SHAR2;Nl;0;L;;;;8;N;;;;;-1242B;CUNEIFORM NUMERIC SIGN NINE SHAR2;Nl;0;L;;;;9;N;;;;;-1242C;CUNEIFORM NUMERIC SIGN ONE SHARU;Nl;0;L;;;;1;N;;;;;-1242D;CUNEIFORM NUMERIC SIGN TWO SHARU;Nl;0;L;;;;2;N;;;;;-1242E;CUNEIFORM NUMERIC SIGN THREE SHARU;Nl;0;L;;;;3;N;;;;;-1242F;CUNEIFORM NUMERIC SIGN THREE SHARU VARIANT FORM;Nl;0;L;;;;3;N;;;;;-12430;CUNEIFORM NUMERIC SIGN FOUR SHARU;Nl;0;L;;;;4;N;;;;;-12431;CUNEIFORM NUMERIC SIGN FIVE SHARU;Nl;0;L;;;;5;N;;;;;-12432;CUNEIFORM NUMERIC SIGN SHAR2 TIMES GAL PLUS DISH;Nl;0;L;;;;216000;N;;;;;-12433;CUNEIFORM NUMERIC SIGN SHAR2 TIMES GAL PLUS MIN;Nl;0;L;;;;432000;N;;;;;-12434;CUNEIFORM NUMERIC SIGN ONE BURU;Nl;0;L;;;;1;N;;;;;-12435;CUNEIFORM NUMERIC SIGN TWO BURU;Nl;0;L;;;;2;N;;;;;-12436;CUNEIFORM NUMERIC SIGN THREE BURU;Nl;0;L;;;;3;N;;;;;-12437;CUNEIFORM NUMERIC SIGN THREE BURU VARIANT FORM;Nl;0;L;;;;3;N;;;;;-12438;CUNEIFORM NUMERIC SIGN FOUR BURU;Nl;0;L;;;;4;N;;;;;-12439;CUNEIFORM NUMERIC SIGN FIVE BURU;Nl;0;L;;;;5;N;;;;;-1243A;CUNEIFORM NUMERIC SIGN THREE VARIANT FORM ESH16;Nl;0;L;;;;3;N;;;;;-1243B;CUNEIFORM NUMERIC SIGN THREE VARIANT FORM ESH21;Nl;0;L;;;;3;N;;;;;-1243C;CUNEIFORM NUMERIC SIGN FOUR VARIANT FORM LIMMU;Nl;0;L;;;;4;N;;;;;-1243D;CUNEIFORM NUMERIC SIGN FOUR VARIANT FORM LIMMU4;Nl;0;L;;;;4;N;;;;;-1243E;CUNEIFORM NUMERIC SIGN FOUR VARIANT FORM LIMMU A;Nl;0;L;;;;4;N;;;;;-1243F;CUNEIFORM NUMERIC SIGN FOUR VARIANT FORM LIMMU B;Nl;0;L;;;;4;N;;;;;-12440;CUNEIFORM NUMERIC SIGN SIX VARIANT FORM ASH9;Nl;0;L;;;;6;N;;;;;-12441;CUNEIFORM NUMERIC SIGN SEVEN VARIANT FORM IMIN3;Nl;0;L;;;;7;N;;;;;-12442;CUNEIFORM NUMERIC SIGN SEVEN VARIANT FORM IMIN A;Nl;0;L;;;;7;N;;;;;-12443;CUNEIFORM NUMERIC SIGN SEVEN VARIANT FORM IMIN B;Nl;0;L;;;;7;N;;;;;-12444;CUNEIFORM NUMERIC SIGN EIGHT VARIANT FORM USSU;Nl;0;L;;;;8;N;;;;;-12445;CUNEIFORM NUMERIC SIGN EIGHT VARIANT FORM USSU3;Nl;0;L;;;;8;N;;;;;-12446;CUNEIFORM NUMERIC SIGN NINE VARIANT FORM ILIMMU;Nl;0;L;;;;9;N;;;;;-12447;CUNEIFORM NUMERIC SIGN NINE VARIANT FORM ILIMMU3;Nl;0;L;;;;9;N;;;;;-12448;CUNEIFORM NUMERIC SIGN NINE VARIANT FORM ILIMMU4;Nl;0;L;;;;9;N;;;;;-12449;CUNEIFORM NUMERIC SIGN NINE VARIANT FORM ILIMMU A;Nl;0;L;;;;9;N;;;;;-1244A;CUNEIFORM NUMERIC SIGN TWO ASH TENU;Nl;0;L;;;;2;N;;;;;-1244B;CUNEIFORM NUMERIC SIGN THREE ASH TENU;Nl;0;L;;;;3;N;;;;;-1244C;CUNEIFORM NUMERIC SIGN FOUR ASH TENU;Nl;0;L;;;;4;N;;;;;-1244D;CUNEIFORM NUMERIC SIGN FIVE ASH TENU;Nl;0;L;;;;5;N;;;;;-1244E;CUNEIFORM NUMERIC SIGN SIX ASH TENU;Nl;0;L;;;;6;N;;;;;-1244F;CUNEIFORM NUMERIC SIGN ONE BAN2;Nl;0;L;;;;1;N;;;;;-12450;CUNEIFORM NUMERIC SIGN TWO BAN2;Nl;0;L;;;;2;N;;;;;-12451;CUNEIFORM NUMERIC SIGN THREE BAN2;Nl;0;L;;;;3;N;;;;;-12452;CUNEIFORM NUMERIC SIGN FOUR BAN2;Nl;0;L;;;;4;N;;;;;-12453;CUNEIFORM NUMERIC SIGN FOUR BAN2 VARIANT FORM;Nl;0;L;;;;4;N;;;;;-12454;CUNEIFORM NUMERIC SIGN FIVE BAN2;Nl;0;L;;;;5;N;;;;;-12455;CUNEIFORM NUMERIC SIGN FIVE BAN2 VARIANT FORM;Nl;0;L;;;;5;N;;;;;-12456;CUNEIFORM NUMERIC SIGN NIGIDAMIN;Nl;0;L;;;;2;N;;;;;-12457;CUNEIFORM NUMERIC SIGN NIGIDAESH;Nl;0;L;;;;3;N;;;;;-12458;CUNEIFORM NUMERIC SIGN ONE ESHE3;Nl;0;L;;;;1;N;;;;;-12459;CUNEIFORM NUMERIC SIGN TWO ESHE3;Nl;0;L;;;;2;N;;;;;-1245A;CUNEIFORM NUMERIC SIGN ONE THIRD DISH;Nl;0;L;;;;1/3;N;;;;;-1245B;CUNEIFORM NUMERIC SIGN TWO THIRDS DISH;Nl;0;L;;;;2/3;N;;;;;-1245C;CUNEIFORM NUMERIC SIGN FIVE SIXTHS DISH;Nl;0;L;;;;5/6;N;;;;;-1245D;CUNEIFORM NUMERIC SIGN ONE THIRD VARIANT FORM A;Nl;0;L;;;;1/3;N;;;;;-1245E;CUNEIFORM NUMERIC SIGN TWO THIRDS VARIANT FORM A;Nl;0;L;;;;2/3;N;;;;;-1245F;CUNEIFORM NUMERIC SIGN ONE EIGHTH ASH;Nl;0;L;;;;1/8;N;;;;;-12460;CUNEIFORM NUMERIC SIGN ONE QUARTER ASH;Nl;0;L;;;;1/4;N;;;;;-12461;CUNEIFORM NUMERIC SIGN OLD ASSYRIAN ONE SIXTH;Nl;0;L;;;;1/6;N;;;;;-12462;CUNEIFORM NUMERIC SIGN OLD ASSYRIAN ONE QUARTER;Nl;0;L;;;;1/4;N;;;;;-12463;CUNEIFORM NUMERIC SIGN ONE QUARTER GUR;Nl;0;L;;;;1/4;N;;;;;-12464;CUNEIFORM NUMERIC SIGN ONE HALF GUR;Nl;0;L;;;;1/2;N;;;;;-12465;CUNEIFORM NUMERIC SIGN ELAMITE ONE THIRD;Nl;0;L;;;;1/3;N;;;;;-12466;CUNEIFORM NUMERIC SIGN ELAMITE TWO THIRDS;Nl;0;L;;;;2/3;N;;;;;-12467;CUNEIFORM NUMERIC SIGN ELAMITE FORTY;Nl;0;L;;;;40;N;;;;;-12468;CUNEIFORM NUMERIC SIGN ELAMITE FIFTY;Nl;0;L;;;;50;N;;;;;-12469;CUNEIFORM NUMERIC SIGN FOUR U VARIANT FORM;Nl;0;L;;;;4;N;;;;;-1246A;CUNEIFORM NUMERIC SIGN FIVE U VARIANT FORM;Nl;0;L;;;;5;N;;;;;-1246B;CUNEIFORM NUMERIC SIGN SIX U VARIANT FORM;Nl;0;L;;;;6;N;;;;;-1246C;CUNEIFORM NUMERIC SIGN SEVEN U VARIANT FORM;Nl;0;L;;;;7;N;;;;;-1246D;CUNEIFORM NUMERIC SIGN EIGHT U VARIANT FORM;Nl;0;L;;;;8;N;;;;;-1246E;CUNEIFORM NUMERIC SIGN NINE U VARIANT FORM;Nl;0;L;;;;9;N;;;;;-12470;CUNEIFORM PUNCTUATION SIGN OLD ASSYRIAN WORD DIVIDER;Po;0;L;;;;;N;;;;;-12471;CUNEIFORM PUNCTUATION SIGN VERTICAL COLON;Po;0;L;;;;;N;;;;;-12472;CUNEIFORM PUNCTUATION SIGN DIAGONAL COLON;Po;0;L;;;;;N;;;;;-12473;CUNEIFORM PUNCTUATION SIGN DIAGONAL TRICOLON;Po;0;L;;;;;N;;;;;-12474;CUNEIFORM PUNCTUATION SIGN DIAGONAL QUADCOLON;Po;0;L;;;;;N;;;;;-13000;EGYPTIAN HIEROGLYPH A001;Lo;0;L;;;;;N;;;;;-13001;EGYPTIAN HIEROGLYPH A002;Lo;0;L;;;;;N;;;;;-13002;EGYPTIAN HIEROGLYPH A003;Lo;0;L;;;;;N;;;;;-13003;EGYPTIAN HIEROGLYPH A004;Lo;0;L;;;;;N;;;;;-13004;EGYPTIAN HIEROGLYPH A005;Lo;0;L;;;;;N;;;;;-13005;EGYPTIAN HIEROGLYPH A005A;Lo;0;L;;;;;N;;;;;-13006;EGYPTIAN HIEROGLYPH A006;Lo;0;L;;;;;N;;;;;-13007;EGYPTIAN HIEROGLYPH A006A;Lo;0;L;;;;;N;;;;;-13008;EGYPTIAN HIEROGLYPH A006B;Lo;0;L;;;;;N;;;;;-13009;EGYPTIAN HIEROGLYPH A007;Lo;0;L;;;;;N;;;;;-1300A;EGYPTIAN HIEROGLYPH A008;Lo;0;L;;;;;N;;;;;-1300B;EGYPTIAN HIEROGLYPH A009;Lo;0;L;;;;;N;;;;;-1300C;EGYPTIAN HIEROGLYPH A010;Lo;0;L;;;;;N;;;;;-1300D;EGYPTIAN HIEROGLYPH A011;Lo;0;L;;;;;N;;;;;-1300E;EGYPTIAN HIEROGLYPH A012;Lo;0;L;;;;;N;;;;;-1300F;EGYPTIAN HIEROGLYPH A013;Lo;0;L;;;;;N;;;;;-13010;EGYPTIAN HIEROGLYPH A014;Lo;0;L;;;;;N;;;;;-13011;EGYPTIAN HIEROGLYPH A014A;Lo;0;L;;;;;N;;;;;-13012;EGYPTIAN HIEROGLYPH A015;Lo;0;L;;;;;N;;;;;-13013;EGYPTIAN HIEROGLYPH A016;Lo;0;L;;;;;N;;;;;-13014;EGYPTIAN HIEROGLYPH A017;Lo;0;L;;;;;N;;;;;-13015;EGYPTIAN HIEROGLYPH A017A;Lo;0;L;;;;;N;;;;;-13016;EGYPTIAN HIEROGLYPH A018;Lo;0;L;;;;;N;;;;;-13017;EGYPTIAN HIEROGLYPH A019;Lo;0;L;;;;;N;;;;;-13018;EGYPTIAN HIEROGLYPH A020;Lo;0;L;;;;;N;;;;;-13019;EGYPTIAN HIEROGLYPH A021;Lo;0;L;;;;;N;;;;;-1301A;EGYPTIAN HIEROGLYPH A022;Lo;0;L;;;;;N;;;;;-1301B;EGYPTIAN HIEROGLYPH A023;Lo;0;L;;;;;N;;;;;-1301C;EGYPTIAN HIEROGLYPH A024;Lo;0;L;;;;;N;;;;;-1301D;EGYPTIAN HIEROGLYPH A025;Lo;0;L;;;;;N;;;;;-1301E;EGYPTIAN HIEROGLYPH A026;Lo;0;L;;;;;N;;;;;-1301F;EGYPTIAN HIEROGLYPH A027;Lo;0;L;;;;;N;;;;;-13020;EGYPTIAN HIEROGLYPH A028;Lo;0;L;;;;;N;;;;;-13021;EGYPTIAN HIEROGLYPH A029;Lo;0;L;;;;;N;;;;;-13022;EGYPTIAN HIEROGLYPH A030;Lo;0;L;;;;;N;;;;;-13023;EGYPTIAN HIEROGLYPH A031;Lo;0;L;;;;;N;;;;;-13024;EGYPTIAN HIEROGLYPH A032;Lo;0;L;;;;;N;;;;;-13025;EGYPTIAN HIEROGLYPH A032A;Lo;0;L;;;;;N;;;;;-13026;EGYPTIAN HIEROGLYPH A033;Lo;0;L;;;;;N;;;;;-13027;EGYPTIAN HIEROGLYPH A034;Lo;0;L;;;;;N;;;;;-13028;EGYPTIAN HIEROGLYPH A035;Lo;0;L;;;;;N;;;;;-13029;EGYPTIAN HIEROGLYPH A036;Lo;0;L;;;;;N;;;;;-1302A;EGYPTIAN HIEROGLYPH A037;Lo;0;L;;;;;N;;;;;-1302B;EGYPTIAN HIEROGLYPH A038;Lo;0;L;;;;;N;;;;;-1302C;EGYPTIAN HIEROGLYPH A039;Lo;0;L;;;;;N;;;;;-1302D;EGYPTIAN HIEROGLYPH A040;Lo;0;L;;;;;N;;;;;-1302E;EGYPTIAN HIEROGLYPH A040A;Lo;0;L;;;;;N;;;;;-1302F;EGYPTIAN HIEROGLYPH A041;Lo;0;L;;;;;N;;;;;-13030;EGYPTIAN HIEROGLYPH A042;Lo;0;L;;;;;N;;;;;-13031;EGYPTIAN HIEROGLYPH A042A;Lo;0;L;;;;;N;;;;;-13032;EGYPTIAN HIEROGLYPH A043;Lo;0;L;;;;;N;;;;;-13033;EGYPTIAN HIEROGLYPH A043A;Lo;0;L;;;;;N;;;;;-13034;EGYPTIAN HIEROGLYPH A044;Lo;0;L;;;;;N;;;;;-13035;EGYPTIAN HIEROGLYPH A045;Lo;0;L;;;;;N;;;;;-13036;EGYPTIAN HIEROGLYPH A045A;Lo;0;L;;;;;N;;;;;-13037;EGYPTIAN HIEROGLYPH A046;Lo;0;L;;;;;N;;;;;-13038;EGYPTIAN HIEROGLYPH A047;Lo;0;L;;;;;N;;;;;-13039;EGYPTIAN HIEROGLYPH A048;Lo;0;L;;;;;N;;;;;-1303A;EGYPTIAN HIEROGLYPH A049;Lo;0;L;;;;;N;;;;;-1303B;EGYPTIAN HIEROGLYPH A050;Lo;0;L;;;;;N;;;;;-1303C;EGYPTIAN HIEROGLYPH A051;Lo;0;L;;;;;N;;;;;-1303D;EGYPTIAN HIEROGLYPH A052;Lo;0;L;;;;;N;;;;;-1303E;EGYPTIAN HIEROGLYPH A053;Lo;0;L;;;;;N;;;;;-1303F;EGYPTIAN HIEROGLYPH A054;Lo;0;L;;;;;N;;;;;-13040;EGYPTIAN HIEROGLYPH A055;Lo;0;L;;;;;N;;;;;-13041;EGYPTIAN HIEROGLYPH A056;Lo;0;L;;;;;N;;;;;-13042;EGYPTIAN HIEROGLYPH A057;Lo;0;L;;;;;N;;;;;-13043;EGYPTIAN HIEROGLYPH A058;Lo;0;L;;;;;N;;;;;-13044;EGYPTIAN HIEROGLYPH A059;Lo;0;L;;;;;N;;;;;-13045;EGYPTIAN HIEROGLYPH A060;Lo;0;L;;;;;N;;;;;-13046;EGYPTIAN HIEROGLYPH A061;Lo;0;L;;;;;N;;;;;-13047;EGYPTIAN HIEROGLYPH A062;Lo;0;L;;;;;N;;;;;-13048;EGYPTIAN HIEROGLYPH A063;Lo;0;L;;;;;N;;;;;-13049;EGYPTIAN HIEROGLYPH A064;Lo;0;L;;;;;N;;;;;-1304A;EGYPTIAN HIEROGLYPH A065;Lo;0;L;;;;;N;;;;;-1304B;EGYPTIAN HIEROGLYPH A066;Lo;0;L;;;;;N;;;;;-1304C;EGYPTIAN HIEROGLYPH A067;Lo;0;L;;;;;N;;;;;-1304D;EGYPTIAN HIEROGLYPH A068;Lo;0;L;;;;;N;;;;;-1304E;EGYPTIAN HIEROGLYPH A069;Lo;0;L;;;;;N;;;;;-1304F;EGYPTIAN HIEROGLYPH A070;Lo;0;L;;;;;N;;;;;-13050;EGYPTIAN HIEROGLYPH B001;Lo;0;L;;;;;N;;;;;-13051;EGYPTIAN HIEROGLYPH B002;Lo;0;L;;;;;N;;;;;-13052;EGYPTIAN HIEROGLYPH B003;Lo;0;L;;;;;N;;;;;-13053;EGYPTIAN HIEROGLYPH B004;Lo;0;L;;;;;N;;;;;-13054;EGYPTIAN HIEROGLYPH B005;Lo;0;L;;;;;N;;;;;-13055;EGYPTIAN HIEROGLYPH B005A;Lo;0;L;;;;;N;;;;;-13056;EGYPTIAN HIEROGLYPH B006;Lo;0;L;;;;;N;;;;;-13057;EGYPTIAN HIEROGLYPH B007;Lo;0;L;;;;;N;;;;;-13058;EGYPTIAN HIEROGLYPH B008;Lo;0;L;;;;;N;;;;;-13059;EGYPTIAN HIEROGLYPH B009;Lo;0;L;;;;;N;;;;;-1305A;EGYPTIAN HIEROGLYPH C001;Lo;0;L;;;;;N;;;;;-1305B;EGYPTIAN HIEROGLYPH C002;Lo;0;L;;;;;N;;;;;-1305C;EGYPTIAN HIEROGLYPH C002A;Lo;0;L;;;;;N;;;;;-1305D;EGYPTIAN HIEROGLYPH C002B;Lo;0;L;;;;;N;;;;;-1305E;EGYPTIAN HIEROGLYPH C002C;Lo;0;L;;;;;N;;;;;-1305F;EGYPTIAN HIEROGLYPH C003;Lo;0;L;;;;;N;;;;;-13060;EGYPTIAN HIEROGLYPH C004;Lo;0;L;;;;;N;;;;;-13061;EGYPTIAN HIEROGLYPH C005;Lo;0;L;;;;;N;;;;;-13062;EGYPTIAN HIEROGLYPH C006;Lo;0;L;;;;;N;;;;;-13063;EGYPTIAN HIEROGLYPH C007;Lo;0;L;;;;;N;;;;;-13064;EGYPTIAN HIEROGLYPH C008;Lo;0;L;;;;;N;;;;;-13065;EGYPTIAN HIEROGLYPH C009;Lo;0;L;;;;;N;;;;;-13066;EGYPTIAN HIEROGLYPH C010;Lo;0;L;;;;;N;;;;;-13067;EGYPTIAN HIEROGLYPH C010A;Lo;0;L;;;;;N;;;;;-13068;EGYPTIAN HIEROGLYPH C011;Lo;0;L;;;;;N;;;;;-13069;EGYPTIAN HIEROGLYPH C012;Lo;0;L;;;;;N;;;;;-1306A;EGYPTIAN HIEROGLYPH C013;Lo;0;L;;;;;N;;;;;-1306B;EGYPTIAN HIEROGLYPH C014;Lo;0;L;;;;;N;;;;;-1306C;EGYPTIAN HIEROGLYPH C015;Lo;0;L;;;;;N;;;;;-1306D;EGYPTIAN HIEROGLYPH C016;Lo;0;L;;;;;N;;;;;-1306E;EGYPTIAN HIEROGLYPH C017;Lo;0;L;;;;;N;;;;;-1306F;EGYPTIAN HIEROGLYPH C018;Lo;0;L;;;;;N;;;;;-13070;EGYPTIAN HIEROGLYPH C019;Lo;0;L;;;;;N;;;;;-13071;EGYPTIAN HIEROGLYPH C020;Lo;0;L;;;;;N;;;;;-13072;EGYPTIAN HIEROGLYPH C021;Lo;0;L;;;;;N;;;;;-13073;EGYPTIAN HIEROGLYPH C022;Lo;0;L;;;;;N;;;;;-13074;EGYPTIAN HIEROGLYPH C023;Lo;0;L;;;;;N;;;;;-13075;EGYPTIAN HIEROGLYPH C024;Lo;0;L;;;;;N;;;;;-13076;EGYPTIAN HIEROGLYPH D001;Lo;0;L;;;;;N;;;;;-13077;EGYPTIAN HIEROGLYPH D002;Lo;0;L;;;;;N;;;;;-13078;EGYPTIAN HIEROGLYPH D003;Lo;0;L;;;;;N;;;;;-13079;EGYPTIAN HIEROGLYPH D004;Lo;0;L;;;;;N;;;;;-1307A;EGYPTIAN HIEROGLYPH D005;Lo;0;L;;;;;N;;;;;-1307B;EGYPTIAN HIEROGLYPH D006;Lo;0;L;;;;;N;;;;;-1307C;EGYPTIAN HIEROGLYPH D007;Lo;0;L;;;;;N;;;;;-1307D;EGYPTIAN HIEROGLYPH D008;Lo;0;L;;;;;N;;;;;-1307E;EGYPTIAN HIEROGLYPH D008A;Lo;0;L;;;;;N;;;;;-1307F;EGYPTIAN HIEROGLYPH D009;Lo;0;L;;;;;N;;;;;-13080;EGYPTIAN HIEROGLYPH D010;Lo;0;L;;;;;N;;;;;-13081;EGYPTIAN HIEROGLYPH D011;Lo;0;L;;;;;N;;;;;-13082;EGYPTIAN HIEROGLYPH D012;Lo;0;L;;;;;N;;;;;-13083;EGYPTIAN HIEROGLYPH D013;Lo;0;L;;;;;N;;;;;-13084;EGYPTIAN HIEROGLYPH D014;Lo;0;L;;;;;N;;;;;-13085;EGYPTIAN HIEROGLYPH D015;Lo;0;L;;;;;N;;;;;-13086;EGYPTIAN HIEROGLYPH D016;Lo;0;L;;;;;N;;;;;-13087;EGYPTIAN HIEROGLYPH D017;Lo;0;L;;;;;N;;;;;-13088;EGYPTIAN HIEROGLYPH D018;Lo;0;L;;;;;N;;;;;-13089;EGYPTIAN HIEROGLYPH D019;Lo;0;L;;;;;N;;;;;-1308A;EGYPTIAN HIEROGLYPH D020;Lo;0;L;;;;;N;;;;;-1308B;EGYPTIAN HIEROGLYPH D021;Lo;0;L;;;;;N;;;;;-1308C;EGYPTIAN HIEROGLYPH D022;Lo;0;L;;;;;N;;;;;-1308D;EGYPTIAN HIEROGLYPH D023;Lo;0;L;;;;;N;;;;;-1308E;EGYPTIAN HIEROGLYPH D024;Lo;0;L;;;;;N;;;;;-1308F;EGYPTIAN HIEROGLYPH D025;Lo;0;L;;;;;N;;;;;-13090;EGYPTIAN HIEROGLYPH D026;Lo;0;L;;;;;N;;;;;-13091;EGYPTIAN HIEROGLYPH D027;Lo;0;L;;;;;N;;;;;-13092;EGYPTIAN HIEROGLYPH D027A;Lo;0;L;;;;;N;;;;;-13093;EGYPTIAN HIEROGLYPH D028;Lo;0;L;;;;;N;;;;;-13094;EGYPTIAN HIEROGLYPH D029;Lo;0;L;;;;;N;;;;;-13095;EGYPTIAN HIEROGLYPH D030;Lo;0;L;;;;;N;;;;;-13096;EGYPTIAN HIEROGLYPH D031;Lo;0;L;;;;;N;;;;;-13097;EGYPTIAN HIEROGLYPH D031A;Lo;0;L;;;;;N;;;;;-13098;EGYPTIAN HIEROGLYPH D032;Lo;0;L;;;;;N;;;;;-13099;EGYPTIAN HIEROGLYPH D033;Lo;0;L;;;;;N;;;;;-1309A;EGYPTIAN HIEROGLYPH D034;Lo;0;L;;;;;N;;;;;-1309B;EGYPTIAN HIEROGLYPH D034A;Lo;0;L;;;;;N;;;;;-1309C;EGYPTIAN HIEROGLYPH D035;Lo;0;L;;;;;N;;;;;-1309D;EGYPTIAN HIEROGLYPH D036;Lo;0;L;;;;;N;;;;;-1309E;EGYPTIAN HIEROGLYPH D037;Lo;0;L;;;;;N;;;;;-1309F;EGYPTIAN HIEROGLYPH D038;Lo;0;L;;;;;N;;;;;-130A0;EGYPTIAN HIEROGLYPH D039;Lo;0;L;;;;;N;;;;;-130A1;EGYPTIAN HIEROGLYPH D040;Lo;0;L;;;;;N;;;;;-130A2;EGYPTIAN HIEROGLYPH D041;Lo;0;L;;;;;N;;;;;-130A3;EGYPTIAN HIEROGLYPH D042;Lo;0;L;;;;;N;;;;;-130A4;EGYPTIAN HIEROGLYPH D043;Lo;0;L;;;;;N;;;;;-130A5;EGYPTIAN HIEROGLYPH D044;Lo;0;L;;;;;N;;;;;-130A6;EGYPTIAN HIEROGLYPH D045;Lo;0;L;;;;;N;;;;;-130A7;EGYPTIAN HIEROGLYPH D046;Lo;0;L;;;;;N;;;;;-130A8;EGYPTIAN HIEROGLYPH D046A;Lo;0;L;;;;;N;;;;;-130A9;EGYPTIAN HIEROGLYPH D047;Lo;0;L;;;;;N;;;;;-130AA;EGYPTIAN HIEROGLYPH D048;Lo;0;L;;;;;N;;;;;-130AB;EGYPTIAN HIEROGLYPH D048A;Lo;0;L;;;;;N;;;;;-130AC;EGYPTIAN HIEROGLYPH D049;Lo;0;L;;;;;N;;;;;-130AD;EGYPTIAN HIEROGLYPH D050;Lo;0;L;;;;;N;;;;;-130AE;EGYPTIAN HIEROGLYPH D050A;Lo;0;L;;;;;N;;;;;-130AF;EGYPTIAN HIEROGLYPH D050B;Lo;0;L;;;;;N;;;;;-130B0;EGYPTIAN HIEROGLYPH D050C;Lo;0;L;;;;;N;;;;;-130B1;EGYPTIAN HIEROGLYPH D050D;Lo;0;L;;;;;N;;;;;-130B2;EGYPTIAN HIEROGLYPH D050E;Lo;0;L;;;;;N;;;;;-130B3;EGYPTIAN HIEROGLYPH D050F;Lo;0;L;;;;;N;;;;;-130B4;EGYPTIAN HIEROGLYPH D050G;Lo;0;L;;;;;N;;;;;-130B5;EGYPTIAN HIEROGLYPH D050H;Lo;0;L;;;;;N;;;;;-130B6;EGYPTIAN HIEROGLYPH D050I;Lo;0;L;;;;;N;;;;;-130B7;EGYPTIAN HIEROGLYPH D051;Lo;0;L;;;;;N;;;;;-130B8;EGYPTIAN HIEROGLYPH D052;Lo;0;L;;;;;N;;;;;-130B9;EGYPTIAN HIEROGLYPH D052A;Lo;0;L;;;;;N;;;;;-130BA;EGYPTIAN HIEROGLYPH D053;Lo;0;L;;;;;N;;;;;-130BB;EGYPTIAN HIEROGLYPH D054;Lo;0;L;;;;;N;;;;;-130BC;EGYPTIAN HIEROGLYPH D054A;Lo;0;L;;;;;N;;;;;-130BD;EGYPTIAN HIEROGLYPH D055;Lo;0;L;;;;;N;;;;;-130BE;EGYPTIAN HIEROGLYPH D056;Lo;0;L;;;;;N;;;;;-130BF;EGYPTIAN HIEROGLYPH D057;Lo;0;L;;;;;N;;;;;-130C0;EGYPTIAN HIEROGLYPH D058;Lo;0;L;;;;;N;;;;;-130C1;EGYPTIAN HIEROGLYPH D059;Lo;0;L;;;;;N;;;;;-130C2;EGYPTIAN HIEROGLYPH D060;Lo;0;L;;;;;N;;;;;-130C3;EGYPTIAN HIEROGLYPH D061;Lo;0;L;;;;;N;;;;;-130C4;EGYPTIAN HIEROGLYPH D062;Lo;0;L;;;;;N;;;;;-130C5;EGYPTIAN HIEROGLYPH D063;Lo;0;L;;;;;N;;;;;-130C6;EGYPTIAN HIEROGLYPH D064;Lo;0;L;;;;;N;;;;;-130C7;EGYPTIAN HIEROGLYPH D065;Lo;0;L;;;;;N;;;;;-130C8;EGYPTIAN HIEROGLYPH D066;Lo;0;L;;;;;N;;;;;-130C9;EGYPTIAN HIEROGLYPH D067;Lo;0;L;;;;;N;;;;;-130CA;EGYPTIAN HIEROGLYPH D067A;Lo;0;L;;;;;N;;;;;-130CB;EGYPTIAN HIEROGLYPH D067B;Lo;0;L;;;;;N;;;;;-130CC;EGYPTIAN HIEROGLYPH D067C;Lo;0;L;;;;;N;;;;;-130CD;EGYPTIAN HIEROGLYPH D067D;Lo;0;L;;;;;N;;;;;-130CE;EGYPTIAN HIEROGLYPH D067E;Lo;0;L;;;;;N;;;;;-130CF;EGYPTIAN HIEROGLYPH D067F;Lo;0;L;;;;;N;;;;;-130D0;EGYPTIAN HIEROGLYPH D067G;Lo;0;L;;;;;N;;;;;-130D1;EGYPTIAN HIEROGLYPH D067H;Lo;0;L;;;;;N;;;;;-130D2;EGYPTIAN HIEROGLYPH E001;Lo;0;L;;;;;N;;;;;-130D3;EGYPTIAN HIEROGLYPH E002;Lo;0;L;;;;;N;;;;;-130D4;EGYPTIAN HIEROGLYPH E003;Lo;0;L;;;;;N;;;;;-130D5;EGYPTIAN HIEROGLYPH E004;Lo;0;L;;;;;N;;;;;-130D6;EGYPTIAN HIEROGLYPH E005;Lo;0;L;;;;;N;;;;;-130D7;EGYPTIAN HIEROGLYPH E006;Lo;0;L;;;;;N;;;;;-130D8;EGYPTIAN HIEROGLYPH E007;Lo;0;L;;;;;N;;;;;-130D9;EGYPTIAN HIEROGLYPH E008;Lo;0;L;;;;;N;;;;;-130DA;EGYPTIAN HIEROGLYPH E008A;Lo;0;L;;;;;N;;;;;-130DB;EGYPTIAN HIEROGLYPH E009;Lo;0;L;;;;;N;;;;;-130DC;EGYPTIAN HIEROGLYPH E009A;Lo;0;L;;;;;N;;;;;-130DD;EGYPTIAN HIEROGLYPH E010;Lo;0;L;;;;;N;;;;;-130DE;EGYPTIAN HIEROGLYPH E011;Lo;0;L;;;;;N;;;;;-130DF;EGYPTIAN HIEROGLYPH E012;Lo;0;L;;;;;N;;;;;-130E0;EGYPTIAN HIEROGLYPH E013;Lo;0;L;;;;;N;;;;;-130E1;EGYPTIAN HIEROGLYPH E014;Lo;0;L;;;;;N;;;;;-130E2;EGYPTIAN HIEROGLYPH E015;Lo;0;L;;;;;N;;;;;-130E3;EGYPTIAN HIEROGLYPH E016;Lo;0;L;;;;;N;;;;;-130E4;EGYPTIAN HIEROGLYPH E016A;Lo;0;L;;;;;N;;;;;-130E5;EGYPTIAN HIEROGLYPH E017;Lo;0;L;;;;;N;;;;;-130E6;EGYPTIAN HIEROGLYPH E017A;Lo;0;L;;;;;N;;;;;-130E7;EGYPTIAN HIEROGLYPH E018;Lo;0;L;;;;;N;;;;;-130E8;EGYPTIAN HIEROGLYPH E019;Lo;0;L;;;;;N;;;;;-130E9;EGYPTIAN HIEROGLYPH E020;Lo;0;L;;;;;N;;;;;-130EA;EGYPTIAN HIEROGLYPH E020A;Lo;0;L;;;;;N;;;;;-130EB;EGYPTIAN HIEROGLYPH E021;Lo;0;L;;;;;N;;;;;-130EC;EGYPTIAN HIEROGLYPH E022;Lo;0;L;;;;;N;;;;;-130ED;EGYPTIAN HIEROGLYPH E023;Lo;0;L;;;;;N;;;;;-130EE;EGYPTIAN HIEROGLYPH E024;Lo;0;L;;;;;N;;;;;-130EF;EGYPTIAN HIEROGLYPH E025;Lo;0;L;;;;;N;;;;;-130F0;EGYPTIAN HIEROGLYPH E026;Lo;0;L;;;;;N;;;;;-130F1;EGYPTIAN HIEROGLYPH E027;Lo;0;L;;;;;N;;;;;-130F2;EGYPTIAN HIEROGLYPH E028;Lo;0;L;;;;;N;;;;;-130F3;EGYPTIAN HIEROGLYPH E028A;Lo;0;L;;;;;N;;;;;-130F4;EGYPTIAN HIEROGLYPH E029;Lo;0;L;;;;;N;;;;;-130F5;EGYPTIAN HIEROGLYPH E030;Lo;0;L;;;;;N;;;;;-130F6;EGYPTIAN HIEROGLYPH E031;Lo;0;L;;;;;N;;;;;-130F7;EGYPTIAN HIEROGLYPH E032;Lo;0;L;;;;;N;;;;;-130F8;EGYPTIAN HIEROGLYPH E033;Lo;0;L;;;;;N;;;;;-130F9;EGYPTIAN HIEROGLYPH E034;Lo;0;L;;;;;N;;;;;-130FA;EGYPTIAN HIEROGLYPH E034A;Lo;0;L;;;;;N;;;;;-130FB;EGYPTIAN HIEROGLYPH E036;Lo;0;L;;;;;N;;;;;-130FC;EGYPTIAN HIEROGLYPH E037;Lo;0;L;;;;;N;;;;;-130FD;EGYPTIAN HIEROGLYPH E038;Lo;0;L;;;;;N;;;;;-130FE;EGYPTIAN HIEROGLYPH F001;Lo;0;L;;;;;N;;;;;-130FF;EGYPTIAN HIEROGLYPH F001A;Lo;0;L;;;;;N;;;;;-13100;EGYPTIAN HIEROGLYPH F002;Lo;0;L;;;;;N;;;;;-13101;EGYPTIAN HIEROGLYPH F003;Lo;0;L;;;;;N;;;;;-13102;EGYPTIAN HIEROGLYPH F004;Lo;0;L;;;;;N;;;;;-13103;EGYPTIAN HIEROGLYPH F005;Lo;0;L;;;;;N;;;;;-13104;EGYPTIAN HIEROGLYPH F006;Lo;0;L;;;;;N;;;;;-13105;EGYPTIAN HIEROGLYPH F007;Lo;0;L;;;;;N;;;;;-13106;EGYPTIAN HIEROGLYPH F008;Lo;0;L;;;;;N;;;;;-13107;EGYPTIAN HIEROGLYPH F009;Lo;0;L;;;;;N;;;;;-13108;EGYPTIAN HIEROGLYPH F010;Lo;0;L;;;;;N;;;;;-13109;EGYPTIAN HIEROGLYPH F011;Lo;0;L;;;;;N;;;;;-1310A;EGYPTIAN HIEROGLYPH F012;Lo;0;L;;;;;N;;;;;-1310B;EGYPTIAN HIEROGLYPH F013;Lo;0;L;;;;;N;;;;;-1310C;EGYPTIAN HIEROGLYPH F013A;Lo;0;L;;;;;N;;;;;-1310D;EGYPTIAN HIEROGLYPH F014;Lo;0;L;;;;;N;;;;;-1310E;EGYPTIAN HIEROGLYPH F015;Lo;0;L;;;;;N;;;;;-1310F;EGYPTIAN HIEROGLYPH F016;Lo;0;L;;;;;N;;;;;-13110;EGYPTIAN HIEROGLYPH F017;Lo;0;L;;;;;N;;;;;-13111;EGYPTIAN HIEROGLYPH F018;Lo;0;L;;;;;N;;;;;-13112;EGYPTIAN HIEROGLYPH F019;Lo;0;L;;;;;N;;;;;-13113;EGYPTIAN HIEROGLYPH F020;Lo;0;L;;;;;N;;;;;-13114;EGYPTIAN HIEROGLYPH F021;Lo;0;L;;;;;N;;;;;-13115;EGYPTIAN HIEROGLYPH F021A;Lo;0;L;;;;;N;;;;;-13116;EGYPTIAN HIEROGLYPH F022;Lo;0;L;;;;;N;;;;;-13117;EGYPTIAN HIEROGLYPH F023;Lo;0;L;;;;;N;;;;;-13118;EGYPTIAN HIEROGLYPH F024;Lo;0;L;;;;;N;;;;;-13119;EGYPTIAN HIEROGLYPH F025;Lo;0;L;;;;;N;;;;;-1311A;EGYPTIAN HIEROGLYPH F026;Lo;0;L;;;;;N;;;;;-1311B;EGYPTIAN HIEROGLYPH F027;Lo;0;L;;;;;N;;;;;-1311C;EGYPTIAN HIEROGLYPH F028;Lo;0;L;;;;;N;;;;;-1311D;EGYPTIAN HIEROGLYPH F029;Lo;0;L;;;;;N;;;;;-1311E;EGYPTIAN HIEROGLYPH F030;Lo;0;L;;;;;N;;;;;-1311F;EGYPTIAN HIEROGLYPH F031;Lo;0;L;;;;;N;;;;;-13120;EGYPTIAN HIEROGLYPH F031A;Lo;0;L;;;;;N;;;;;-13121;EGYPTIAN HIEROGLYPH F032;Lo;0;L;;;;;N;;;;;-13122;EGYPTIAN HIEROGLYPH F033;Lo;0;L;;;;;N;;;;;-13123;EGYPTIAN HIEROGLYPH F034;Lo;0;L;;;;;N;;;;;-13124;EGYPTIAN HIEROGLYPH F035;Lo;0;L;;;;;N;;;;;-13125;EGYPTIAN HIEROGLYPH F036;Lo;0;L;;;;;N;;;;;-13126;EGYPTIAN HIEROGLYPH F037;Lo;0;L;;;;;N;;;;;-13127;EGYPTIAN HIEROGLYPH F037A;Lo;0;L;;;;;N;;;;;-13128;EGYPTIAN HIEROGLYPH F038;Lo;0;L;;;;;N;;;;;-13129;EGYPTIAN HIEROGLYPH F038A;Lo;0;L;;;;;N;;;;;-1312A;EGYPTIAN HIEROGLYPH F039;Lo;0;L;;;;;N;;;;;-1312B;EGYPTIAN HIEROGLYPH F040;Lo;0;L;;;;;N;;;;;-1312C;EGYPTIAN HIEROGLYPH F041;Lo;0;L;;;;;N;;;;;-1312D;EGYPTIAN HIEROGLYPH F042;Lo;0;L;;;;;N;;;;;-1312E;EGYPTIAN HIEROGLYPH F043;Lo;0;L;;;;;N;;;;;-1312F;EGYPTIAN HIEROGLYPH F044;Lo;0;L;;;;;N;;;;;-13130;EGYPTIAN HIEROGLYPH F045;Lo;0;L;;;;;N;;;;;-13131;EGYPTIAN HIEROGLYPH F045A;Lo;0;L;;;;;N;;;;;-13132;EGYPTIAN HIEROGLYPH F046;Lo;0;L;;;;;N;;;;;-13133;EGYPTIAN HIEROGLYPH F046A;Lo;0;L;;;;;N;;;;;-13134;EGYPTIAN HIEROGLYPH F047;Lo;0;L;;;;;N;;;;;-13135;EGYPTIAN HIEROGLYPH F047A;Lo;0;L;;;;;N;;;;;-13136;EGYPTIAN HIEROGLYPH F048;Lo;0;L;;;;;N;;;;;-13137;EGYPTIAN HIEROGLYPH F049;Lo;0;L;;;;;N;;;;;-13138;EGYPTIAN HIEROGLYPH F050;Lo;0;L;;;;;N;;;;;-13139;EGYPTIAN HIEROGLYPH F051;Lo;0;L;;;;;N;;;;;-1313A;EGYPTIAN HIEROGLYPH F051A;Lo;0;L;;;;;N;;;;;-1313B;EGYPTIAN HIEROGLYPH F051B;Lo;0;L;;;;;N;;;;;-1313C;EGYPTIAN HIEROGLYPH F051C;Lo;0;L;;;;;N;;;;;-1313D;EGYPTIAN HIEROGLYPH F052;Lo;0;L;;;;;N;;;;;-1313E;EGYPTIAN HIEROGLYPH F053;Lo;0;L;;;;;N;;;;;-1313F;EGYPTIAN HIEROGLYPH G001;Lo;0;L;;;;;N;;;;;-13140;EGYPTIAN HIEROGLYPH G002;Lo;0;L;;;;;N;;;;;-13141;EGYPTIAN HIEROGLYPH G003;Lo;0;L;;;;;N;;;;;-13142;EGYPTIAN HIEROGLYPH G004;Lo;0;L;;;;;N;;;;;-13143;EGYPTIAN HIEROGLYPH G005;Lo;0;L;;;;;N;;;;;-13144;EGYPTIAN HIEROGLYPH G006;Lo;0;L;;;;;N;;;;;-13145;EGYPTIAN HIEROGLYPH G006A;Lo;0;L;;;;;N;;;;;-13146;EGYPTIAN HIEROGLYPH G007;Lo;0;L;;;;;N;;;;;-13147;EGYPTIAN HIEROGLYPH G007A;Lo;0;L;;;;;N;;;;;-13148;EGYPTIAN HIEROGLYPH G007B;Lo;0;L;;;;;N;;;;;-13149;EGYPTIAN HIEROGLYPH G008;Lo;0;L;;;;;N;;;;;-1314A;EGYPTIAN HIEROGLYPH G009;Lo;0;L;;;;;N;;;;;-1314B;EGYPTIAN HIEROGLYPH G010;Lo;0;L;;;;;N;;;;;-1314C;EGYPTIAN HIEROGLYPH G011;Lo;0;L;;;;;N;;;;;-1314D;EGYPTIAN HIEROGLYPH G011A;Lo;0;L;;;;;N;;;;;-1314E;EGYPTIAN HIEROGLYPH G012;Lo;0;L;;;;;N;;;;;-1314F;EGYPTIAN HIEROGLYPH G013;Lo;0;L;;;;;N;;;;;-13150;EGYPTIAN HIEROGLYPH G014;Lo;0;L;;;;;N;;;;;-13151;EGYPTIAN HIEROGLYPH G015;Lo;0;L;;;;;N;;;;;-13152;EGYPTIAN HIEROGLYPH G016;Lo;0;L;;;;;N;;;;;-13153;EGYPTIAN HIEROGLYPH G017;Lo;0;L;;;;;N;;;;;-13154;EGYPTIAN HIEROGLYPH G018;Lo;0;L;;;;;N;;;;;-13155;EGYPTIAN HIEROGLYPH G019;Lo;0;L;;;;;N;;;;;-13156;EGYPTIAN HIEROGLYPH G020;Lo;0;L;;;;;N;;;;;-13157;EGYPTIAN HIEROGLYPH G020A;Lo;0;L;;;;;N;;;;;-13158;EGYPTIAN HIEROGLYPH G021;Lo;0;L;;;;;N;;;;;-13159;EGYPTIAN HIEROGLYPH G022;Lo;0;L;;;;;N;;;;;-1315A;EGYPTIAN HIEROGLYPH G023;Lo;0;L;;;;;N;;;;;-1315B;EGYPTIAN HIEROGLYPH G024;Lo;0;L;;;;;N;;;;;-1315C;EGYPTIAN HIEROGLYPH G025;Lo;0;L;;;;;N;;;;;-1315D;EGYPTIAN HIEROGLYPH G026;Lo;0;L;;;;;N;;;;;-1315E;EGYPTIAN HIEROGLYPH G026A;Lo;0;L;;;;;N;;;;;-1315F;EGYPTIAN HIEROGLYPH G027;Lo;0;L;;;;;N;;;;;-13160;EGYPTIAN HIEROGLYPH G028;Lo;0;L;;;;;N;;;;;-13161;EGYPTIAN HIEROGLYPH G029;Lo;0;L;;;;;N;;;;;-13162;EGYPTIAN HIEROGLYPH G030;Lo;0;L;;;;;N;;;;;-13163;EGYPTIAN HIEROGLYPH G031;Lo;0;L;;;;;N;;;;;-13164;EGYPTIAN HIEROGLYPH G032;Lo;0;L;;;;;N;;;;;-13165;EGYPTIAN HIEROGLYPH G033;Lo;0;L;;;;;N;;;;;-13166;EGYPTIAN HIEROGLYPH G034;Lo;0;L;;;;;N;;;;;-13167;EGYPTIAN HIEROGLYPH G035;Lo;0;L;;;;;N;;;;;-13168;EGYPTIAN HIEROGLYPH G036;Lo;0;L;;;;;N;;;;;-13169;EGYPTIAN HIEROGLYPH G036A;Lo;0;L;;;;;N;;;;;-1316A;EGYPTIAN HIEROGLYPH G037;Lo;0;L;;;;;N;;;;;-1316B;EGYPTIAN HIEROGLYPH G037A;Lo;0;L;;;;;N;;;;;-1316C;EGYPTIAN HIEROGLYPH G038;Lo;0;L;;;;;N;;;;;-1316D;EGYPTIAN HIEROGLYPH G039;Lo;0;L;;;;;N;;;;;-1316E;EGYPTIAN HIEROGLYPH G040;Lo;0;L;;;;;N;;;;;-1316F;EGYPTIAN HIEROGLYPH G041;Lo;0;L;;;;;N;;;;;-13170;EGYPTIAN HIEROGLYPH G042;Lo;0;L;;;;;N;;;;;-13171;EGYPTIAN HIEROGLYPH G043;Lo;0;L;;;;;N;;;;;-13172;EGYPTIAN HIEROGLYPH G043A;Lo;0;L;;;;;N;;;;;-13173;EGYPTIAN HIEROGLYPH G044;Lo;0;L;;;;;N;;;;;-13174;EGYPTIAN HIEROGLYPH G045;Lo;0;L;;;;;N;;;;;-13175;EGYPTIAN HIEROGLYPH G045A;Lo;0;L;;;;;N;;;;;-13176;EGYPTIAN HIEROGLYPH G046;Lo;0;L;;;;;N;;;;;-13177;EGYPTIAN HIEROGLYPH G047;Lo;0;L;;;;;N;;;;;-13178;EGYPTIAN HIEROGLYPH G048;Lo;0;L;;;;;N;;;;;-13179;EGYPTIAN HIEROGLYPH G049;Lo;0;L;;;;;N;;;;;-1317A;EGYPTIAN HIEROGLYPH G050;Lo;0;L;;;;;N;;;;;-1317B;EGYPTIAN HIEROGLYPH G051;Lo;0;L;;;;;N;;;;;-1317C;EGYPTIAN HIEROGLYPH G052;Lo;0;L;;;;;N;;;;;-1317D;EGYPTIAN HIEROGLYPH G053;Lo;0;L;;;;;N;;;;;-1317E;EGYPTIAN HIEROGLYPH G054;Lo;0;L;;;;;N;;;;;-1317F;EGYPTIAN HIEROGLYPH H001;Lo;0;L;;;;;N;;;;;-13180;EGYPTIAN HIEROGLYPH H002;Lo;0;L;;;;;N;;;;;-13181;EGYPTIAN HIEROGLYPH H003;Lo;0;L;;;;;N;;;;;-13182;EGYPTIAN HIEROGLYPH H004;Lo;0;L;;;;;N;;;;;-13183;EGYPTIAN HIEROGLYPH H005;Lo;0;L;;;;;N;;;;;-13184;EGYPTIAN HIEROGLYPH H006;Lo;0;L;;;;;N;;;;;-13185;EGYPTIAN HIEROGLYPH H006A;Lo;0;L;;;;;N;;;;;-13186;EGYPTIAN HIEROGLYPH H007;Lo;0;L;;;;;N;;;;;-13187;EGYPTIAN HIEROGLYPH H008;Lo;0;L;;;;;N;;;;;-13188;EGYPTIAN HIEROGLYPH I001;Lo;0;L;;;;;N;;;;;-13189;EGYPTIAN HIEROGLYPH I002;Lo;0;L;;;;;N;;;;;-1318A;EGYPTIAN HIEROGLYPH I003;Lo;0;L;;;;;N;;;;;-1318B;EGYPTIAN HIEROGLYPH I004;Lo;0;L;;;;;N;;;;;-1318C;EGYPTIAN HIEROGLYPH I005;Lo;0;L;;;;;N;;;;;-1318D;EGYPTIAN HIEROGLYPH I005A;Lo;0;L;;;;;N;;;;;-1318E;EGYPTIAN HIEROGLYPH I006;Lo;0;L;;;;;N;;;;;-1318F;EGYPTIAN HIEROGLYPH I007;Lo;0;L;;;;;N;;;;;-13190;EGYPTIAN HIEROGLYPH I008;Lo;0;L;;;;;N;;;;;-13191;EGYPTIAN HIEROGLYPH I009;Lo;0;L;;;;;N;;;;;-13192;EGYPTIAN HIEROGLYPH I009A;Lo;0;L;;;;;N;;;;;-13193;EGYPTIAN HIEROGLYPH I010;Lo;0;L;;;;;N;;;;;-13194;EGYPTIAN HIEROGLYPH I010A;Lo;0;L;;;;;N;;;;;-13195;EGYPTIAN HIEROGLYPH I011;Lo;0;L;;;;;N;;;;;-13196;EGYPTIAN HIEROGLYPH I011A;Lo;0;L;;;;;N;;;;;-13197;EGYPTIAN HIEROGLYPH I012;Lo;0;L;;;;;N;;;;;-13198;EGYPTIAN HIEROGLYPH I013;Lo;0;L;;;;;N;;;;;-13199;EGYPTIAN HIEROGLYPH I014;Lo;0;L;;;;;N;;;;;-1319A;EGYPTIAN HIEROGLYPH I015;Lo;0;L;;;;;N;;;;;-1319B;EGYPTIAN HIEROGLYPH K001;Lo;0;L;;;;;N;;;;;-1319C;EGYPTIAN HIEROGLYPH K002;Lo;0;L;;;;;N;;;;;-1319D;EGYPTIAN HIEROGLYPH K003;Lo;0;L;;;;;N;;;;;-1319E;EGYPTIAN HIEROGLYPH K004;Lo;0;L;;;;;N;;;;;-1319F;EGYPTIAN HIEROGLYPH K005;Lo;0;L;;;;;N;;;;;-131A0;EGYPTIAN HIEROGLYPH K006;Lo;0;L;;;;;N;;;;;-131A1;EGYPTIAN HIEROGLYPH K007;Lo;0;L;;;;;N;;;;;-131A2;EGYPTIAN HIEROGLYPH K008;Lo;0;L;;;;;N;;;;;-131A3;EGYPTIAN HIEROGLYPH L001;Lo;0;L;;;;;N;;;;;-131A4;EGYPTIAN HIEROGLYPH L002;Lo;0;L;;;;;N;;;;;-131A5;EGYPTIAN HIEROGLYPH L002A;Lo;0;L;;;;;N;;;;;-131A6;EGYPTIAN HIEROGLYPH L003;Lo;0;L;;;;;N;;;;;-131A7;EGYPTIAN HIEROGLYPH L004;Lo;0;L;;;;;N;;;;;-131A8;EGYPTIAN HIEROGLYPH L005;Lo;0;L;;;;;N;;;;;-131A9;EGYPTIAN HIEROGLYPH L006;Lo;0;L;;;;;N;;;;;-131AA;EGYPTIAN HIEROGLYPH L006A;Lo;0;L;;;;;N;;;;;-131AB;EGYPTIAN HIEROGLYPH L007;Lo;0;L;;;;;N;;;;;-131AC;EGYPTIAN HIEROGLYPH L008;Lo;0;L;;;;;N;;;;;-131AD;EGYPTIAN HIEROGLYPH M001;Lo;0;L;;;;;N;;;;;-131AE;EGYPTIAN HIEROGLYPH M001A;Lo;0;L;;;;;N;;;;;-131AF;EGYPTIAN HIEROGLYPH M001B;Lo;0;L;;;;;N;;;;;-131B0;EGYPTIAN HIEROGLYPH M002;Lo;0;L;;;;;N;;;;;-131B1;EGYPTIAN HIEROGLYPH M003;Lo;0;L;;;;;N;;;;;-131B2;EGYPTIAN HIEROGLYPH M003A;Lo;0;L;;;;;N;;;;;-131B3;EGYPTIAN HIEROGLYPH M004;Lo;0;L;;;;;N;;;;;-131B4;EGYPTIAN HIEROGLYPH M005;Lo;0;L;;;;;N;;;;;-131B5;EGYPTIAN HIEROGLYPH M006;Lo;0;L;;;;;N;;;;;-131B6;EGYPTIAN HIEROGLYPH M007;Lo;0;L;;;;;N;;;;;-131B7;EGYPTIAN HIEROGLYPH M008;Lo;0;L;;;;;N;;;;;-131B8;EGYPTIAN HIEROGLYPH M009;Lo;0;L;;;;;N;;;;;-131B9;EGYPTIAN HIEROGLYPH M010;Lo;0;L;;;;;N;;;;;-131BA;EGYPTIAN HIEROGLYPH M010A;Lo;0;L;;;;;N;;;;;-131BB;EGYPTIAN HIEROGLYPH M011;Lo;0;L;;;;;N;;;;;-131BC;EGYPTIAN HIEROGLYPH M012;Lo;0;L;;;;;N;;;;;-131BD;EGYPTIAN HIEROGLYPH M012A;Lo;0;L;;;;;N;;;;;-131BE;EGYPTIAN HIEROGLYPH M012B;Lo;0;L;;;;;N;;;;;-131BF;EGYPTIAN HIEROGLYPH M012C;Lo;0;L;;;;;N;;;;;-131C0;EGYPTIAN HIEROGLYPH M012D;Lo;0;L;;;;;N;;;;;-131C1;EGYPTIAN HIEROGLYPH M012E;Lo;0;L;;;;;N;;;;;-131C2;EGYPTIAN HIEROGLYPH M012F;Lo;0;L;;;;;N;;;;;-131C3;EGYPTIAN HIEROGLYPH M012G;Lo;0;L;;;;;N;;;;;-131C4;EGYPTIAN HIEROGLYPH M012H;Lo;0;L;;;;;N;;;;;-131C5;EGYPTIAN HIEROGLYPH M013;Lo;0;L;;;;;N;;;;;-131C6;EGYPTIAN HIEROGLYPH M014;Lo;0;L;;;;;N;;;;;-131C7;EGYPTIAN HIEROGLYPH M015;Lo;0;L;;;;;N;;;;;-131C8;EGYPTIAN HIEROGLYPH M015A;Lo;0;L;;;;;N;;;;;-131C9;EGYPTIAN HIEROGLYPH M016;Lo;0;L;;;;;N;;;;;-131CA;EGYPTIAN HIEROGLYPH M016A;Lo;0;L;;;;;N;;;;;-131CB;EGYPTIAN HIEROGLYPH M017;Lo;0;L;;;;;N;;;;;-131CC;EGYPTIAN HIEROGLYPH M017A;Lo;0;L;;;;;N;;;;;-131CD;EGYPTIAN HIEROGLYPH M018;Lo;0;L;;;;;N;;;;;-131CE;EGYPTIAN HIEROGLYPH M019;Lo;0;L;;;;;N;;;;;-131CF;EGYPTIAN HIEROGLYPH M020;Lo;0;L;;;;;N;;;;;-131D0;EGYPTIAN HIEROGLYPH M021;Lo;0;L;;;;;N;;;;;-131D1;EGYPTIAN HIEROGLYPH M022;Lo;0;L;;;;;N;;;;;-131D2;EGYPTIAN HIEROGLYPH M022A;Lo;0;L;;;;;N;;;;;-131D3;EGYPTIAN HIEROGLYPH M023;Lo;0;L;;;;;N;;;;;-131D4;EGYPTIAN HIEROGLYPH M024;Lo;0;L;;;;;N;;;;;-131D5;EGYPTIAN HIEROGLYPH M024A;Lo;0;L;;;;;N;;;;;-131D6;EGYPTIAN HIEROGLYPH M025;Lo;0;L;;;;;N;;;;;-131D7;EGYPTIAN HIEROGLYPH M026;Lo;0;L;;;;;N;;;;;-131D8;EGYPTIAN HIEROGLYPH M027;Lo;0;L;;;;;N;;;;;-131D9;EGYPTIAN HIEROGLYPH M028;Lo;0;L;;;;;N;;;;;-131DA;EGYPTIAN HIEROGLYPH M028A;Lo;0;L;;;;;N;;;;;-131DB;EGYPTIAN HIEROGLYPH M029;Lo;0;L;;;;;N;;;;;-131DC;EGYPTIAN HIEROGLYPH M030;Lo;0;L;;;;;N;;;;;-131DD;EGYPTIAN HIEROGLYPH M031;Lo;0;L;;;;;N;;;;;-131DE;EGYPTIAN HIEROGLYPH M031A;Lo;0;L;;;;;N;;;;;-131DF;EGYPTIAN HIEROGLYPH M032;Lo;0;L;;;;;N;;;;;-131E0;EGYPTIAN HIEROGLYPH M033;Lo;0;L;;;;;N;;;;;-131E1;EGYPTIAN HIEROGLYPH M033A;Lo;0;L;;;;;N;;;;;-131E2;EGYPTIAN HIEROGLYPH M033B;Lo;0;L;;;;;N;;;;;-131E3;EGYPTIAN HIEROGLYPH M034;Lo;0;L;;;;;N;;;;;-131E4;EGYPTIAN HIEROGLYPH M035;Lo;0;L;;;;;N;;;;;-131E5;EGYPTIAN HIEROGLYPH M036;Lo;0;L;;;;;N;;;;;-131E6;EGYPTIAN HIEROGLYPH M037;Lo;0;L;;;;;N;;;;;-131E7;EGYPTIAN HIEROGLYPH M038;Lo;0;L;;;;;N;;;;;-131E8;EGYPTIAN HIEROGLYPH M039;Lo;0;L;;;;;N;;;;;-131E9;EGYPTIAN HIEROGLYPH M040;Lo;0;L;;;;;N;;;;;-131EA;EGYPTIAN HIEROGLYPH M040A;Lo;0;L;;;;;N;;;;;-131EB;EGYPTIAN HIEROGLYPH M041;Lo;0;L;;;;;N;;;;;-131EC;EGYPTIAN HIEROGLYPH M042;Lo;0;L;;;;;N;;;;;-131ED;EGYPTIAN HIEROGLYPH M043;Lo;0;L;;;;;N;;;;;-131EE;EGYPTIAN HIEROGLYPH M044;Lo;0;L;;;;;N;;;;;-131EF;EGYPTIAN HIEROGLYPH N001;Lo;0;L;;;;;N;;;;;-131F0;EGYPTIAN HIEROGLYPH N002;Lo;0;L;;;;;N;;;;;-131F1;EGYPTIAN HIEROGLYPH N003;Lo;0;L;;;;;N;;;;;-131F2;EGYPTIAN HIEROGLYPH N004;Lo;0;L;;;;;N;;;;;-131F3;EGYPTIAN HIEROGLYPH N005;Lo;0;L;;;;;N;;;;;-131F4;EGYPTIAN HIEROGLYPH N006;Lo;0;L;;;;;N;;;;;-131F5;EGYPTIAN HIEROGLYPH N007;Lo;0;L;;;;;N;;;;;-131F6;EGYPTIAN HIEROGLYPH N008;Lo;0;L;;;;;N;;;;;-131F7;EGYPTIAN HIEROGLYPH N009;Lo;0;L;;;;;N;;;;;-131F8;EGYPTIAN HIEROGLYPH N010;Lo;0;L;;;;;N;;;;;-131F9;EGYPTIAN HIEROGLYPH N011;Lo;0;L;;;;;N;;;;;-131FA;EGYPTIAN HIEROGLYPH N012;Lo;0;L;;;;;N;;;;;-131FB;EGYPTIAN HIEROGLYPH N013;Lo;0;L;;;;;N;;;;;-131FC;EGYPTIAN HIEROGLYPH N014;Lo;0;L;;;;;N;;;;;-131FD;EGYPTIAN HIEROGLYPH N015;Lo;0;L;;;;;N;;;;;-131FE;EGYPTIAN HIEROGLYPH N016;Lo;0;L;;;;;N;;;;;-131FF;EGYPTIAN HIEROGLYPH N017;Lo;0;L;;;;;N;;;;;-13200;EGYPTIAN HIEROGLYPH N018;Lo;0;L;;;;;N;;;;;-13201;EGYPTIAN HIEROGLYPH N018A;Lo;0;L;;;;;N;;;;;-13202;EGYPTIAN HIEROGLYPH N018B;Lo;0;L;;;;;N;;;;;-13203;EGYPTIAN HIEROGLYPH N019;Lo;0;L;;;;;N;;;;;-13204;EGYPTIAN HIEROGLYPH N020;Lo;0;L;;;;;N;;;;;-13205;EGYPTIAN HIEROGLYPH N021;Lo;0;L;;;;;N;;;;;-13206;EGYPTIAN HIEROGLYPH N022;Lo;0;L;;;;;N;;;;;-13207;EGYPTIAN HIEROGLYPH N023;Lo;0;L;;;;;N;;;;;-13208;EGYPTIAN HIEROGLYPH N024;Lo;0;L;;;;;N;;;;;-13209;EGYPTIAN HIEROGLYPH N025;Lo;0;L;;;;;N;;;;;-1320A;EGYPTIAN HIEROGLYPH N025A;Lo;0;L;;;;;N;;;;;-1320B;EGYPTIAN HIEROGLYPH N026;Lo;0;L;;;;;N;;;;;-1320C;EGYPTIAN HIEROGLYPH N027;Lo;0;L;;;;;N;;;;;-1320D;EGYPTIAN HIEROGLYPH N028;Lo;0;L;;;;;N;;;;;-1320E;EGYPTIAN HIEROGLYPH N029;Lo;0;L;;;;;N;;;;;-1320F;EGYPTIAN HIEROGLYPH N030;Lo;0;L;;;;;N;;;;;-13210;EGYPTIAN HIEROGLYPH N031;Lo;0;L;;;;;N;;;;;-13211;EGYPTIAN HIEROGLYPH N032;Lo;0;L;;;;;N;;;;;-13212;EGYPTIAN HIEROGLYPH N033;Lo;0;L;;;;;N;;;;;-13213;EGYPTIAN HIEROGLYPH N033A;Lo;0;L;;;;;N;;;;;-13214;EGYPTIAN HIEROGLYPH N034;Lo;0;L;;;;;N;;;;;-13215;EGYPTIAN HIEROGLYPH N034A;Lo;0;L;;;;;N;;;;;-13216;EGYPTIAN HIEROGLYPH N035;Lo;0;L;;;;;N;;;;;-13217;EGYPTIAN HIEROGLYPH N035A;Lo;0;L;;;;;N;;;;;-13218;EGYPTIAN HIEROGLYPH N036;Lo;0;L;;;;;N;;;;;-13219;EGYPTIAN HIEROGLYPH N037;Lo;0;L;;;;;N;;;;;-1321A;EGYPTIAN HIEROGLYPH N037A;Lo;0;L;;;;;N;;;;;-1321B;EGYPTIAN HIEROGLYPH N038;Lo;0;L;;;;;N;;;;;-1321C;EGYPTIAN HIEROGLYPH N039;Lo;0;L;;;;;N;;;;;-1321D;EGYPTIAN HIEROGLYPH N040;Lo;0;L;;;;;N;;;;;-1321E;EGYPTIAN HIEROGLYPH N041;Lo;0;L;;;;;N;;;;;-1321F;EGYPTIAN HIEROGLYPH N042;Lo;0;L;;;;;N;;;;;-13220;EGYPTIAN HIEROGLYPH NL001;Lo;0;L;;;;;N;;;;;-13221;EGYPTIAN HIEROGLYPH NL002;Lo;0;L;;;;;N;;;;;-13222;EGYPTIAN HIEROGLYPH NL003;Lo;0;L;;;;;N;;;;;-13223;EGYPTIAN HIEROGLYPH NL004;Lo;0;L;;;;;N;;;;;-13224;EGYPTIAN HIEROGLYPH NL005;Lo;0;L;;;;;N;;;;;-13225;EGYPTIAN HIEROGLYPH NL005A;Lo;0;L;;;;;N;;;;;-13226;EGYPTIAN HIEROGLYPH NL006;Lo;0;L;;;;;N;;;;;-13227;EGYPTIAN HIEROGLYPH NL007;Lo;0;L;;;;;N;;;;;-13228;EGYPTIAN HIEROGLYPH NL008;Lo;0;L;;;;;N;;;;;-13229;EGYPTIAN HIEROGLYPH NL009;Lo;0;L;;;;;N;;;;;-1322A;EGYPTIAN HIEROGLYPH NL010;Lo;0;L;;;;;N;;;;;-1322B;EGYPTIAN HIEROGLYPH NL011;Lo;0;L;;;;;N;;;;;-1322C;EGYPTIAN HIEROGLYPH NL012;Lo;0;L;;;;;N;;;;;-1322D;EGYPTIAN HIEROGLYPH NL013;Lo;0;L;;;;;N;;;;;-1322E;EGYPTIAN HIEROGLYPH NL014;Lo;0;L;;;;;N;;;;;-1322F;EGYPTIAN HIEROGLYPH NL015;Lo;0;L;;;;;N;;;;;-13230;EGYPTIAN HIEROGLYPH NL016;Lo;0;L;;;;;N;;;;;-13231;EGYPTIAN HIEROGLYPH NL017;Lo;0;L;;;;;N;;;;;-13232;EGYPTIAN HIEROGLYPH NL017A;Lo;0;L;;;;;N;;;;;-13233;EGYPTIAN HIEROGLYPH NL018;Lo;0;L;;;;;N;;;;;-13234;EGYPTIAN HIEROGLYPH NL019;Lo;0;L;;;;;N;;;;;-13235;EGYPTIAN HIEROGLYPH NL020;Lo;0;L;;;;;N;;;;;-13236;EGYPTIAN HIEROGLYPH NU001;Lo;0;L;;;;;N;;;;;-13237;EGYPTIAN HIEROGLYPH NU002;Lo;0;L;;;;;N;;;;;-13238;EGYPTIAN HIEROGLYPH NU003;Lo;0;L;;;;;N;;;;;-13239;EGYPTIAN HIEROGLYPH NU004;Lo;0;L;;;;;N;;;;;-1323A;EGYPTIAN HIEROGLYPH NU005;Lo;0;L;;;;;N;;;;;-1323B;EGYPTIAN HIEROGLYPH NU006;Lo;0;L;;;;;N;;;;;-1323C;EGYPTIAN HIEROGLYPH NU007;Lo;0;L;;;;;N;;;;;-1323D;EGYPTIAN HIEROGLYPH NU008;Lo;0;L;;;;;N;;;;;-1323E;EGYPTIAN HIEROGLYPH NU009;Lo;0;L;;;;;N;;;;;-1323F;EGYPTIAN HIEROGLYPH NU010;Lo;0;L;;;;;N;;;;;-13240;EGYPTIAN HIEROGLYPH NU010A;Lo;0;L;;;;;N;;;;;-13241;EGYPTIAN HIEROGLYPH NU011;Lo;0;L;;;;;N;;;;;-13242;EGYPTIAN HIEROGLYPH NU011A;Lo;0;L;;;;;N;;;;;-13243;EGYPTIAN HIEROGLYPH NU012;Lo;0;L;;;;;N;;;;;-13244;EGYPTIAN HIEROGLYPH NU013;Lo;0;L;;;;;N;;;;;-13245;EGYPTIAN HIEROGLYPH NU014;Lo;0;L;;;;;N;;;;;-13246;EGYPTIAN HIEROGLYPH NU015;Lo;0;L;;;;;N;;;;;-13247;EGYPTIAN HIEROGLYPH NU016;Lo;0;L;;;;;N;;;;;-13248;EGYPTIAN HIEROGLYPH NU017;Lo;0;L;;;;;N;;;;;-13249;EGYPTIAN HIEROGLYPH NU018;Lo;0;L;;;;;N;;;;;-1324A;EGYPTIAN HIEROGLYPH NU018A;Lo;0;L;;;;;N;;;;;-1324B;EGYPTIAN HIEROGLYPH NU019;Lo;0;L;;;;;N;;;;;-1324C;EGYPTIAN HIEROGLYPH NU020;Lo;0;L;;;;;N;;;;;-1324D;EGYPTIAN HIEROGLYPH NU021;Lo;0;L;;;;;N;;;;;-1324E;EGYPTIAN HIEROGLYPH NU022;Lo;0;L;;;;;N;;;;;-1324F;EGYPTIAN HIEROGLYPH NU022A;Lo;0;L;;;;;N;;;;;-13250;EGYPTIAN HIEROGLYPH O001;Lo;0;L;;;;;N;;;;;-13251;EGYPTIAN HIEROGLYPH O001A;Lo;0;L;;;;;N;;;;;-13252;EGYPTIAN HIEROGLYPH O002;Lo;0;L;;;;;N;;;;;-13253;EGYPTIAN HIEROGLYPH O003;Lo;0;L;;;;;N;;;;;-13254;EGYPTIAN HIEROGLYPH O004;Lo;0;L;;;;;N;;;;;-13255;EGYPTIAN HIEROGLYPH O005;Lo;0;L;;;;;N;;;;;-13256;EGYPTIAN HIEROGLYPH O005A;Lo;0;L;;;;;N;;;;;-13257;EGYPTIAN HIEROGLYPH O006;Lo;0;L;;;;;N;;;;;-13258;EGYPTIAN HIEROGLYPH O006A;Lo;0;L;;;;;N;;;;;-13259;EGYPTIAN HIEROGLYPH O006B;Lo;0;L;;;;;N;;;;;-1325A;EGYPTIAN HIEROGLYPH O006C;Lo;0;L;;;;;N;;;;;-1325B;EGYPTIAN HIEROGLYPH O006D;Lo;0;L;;;;;N;;;;;-1325C;EGYPTIAN HIEROGLYPH O006E;Lo;0;L;;;;;N;;;;;-1325D;EGYPTIAN HIEROGLYPH O006F;Lo;0;L;;;;;N;;;;;-1325E;EGYPTIAN HIEROGLYPH O007;Lo;0;L;;;;;N;;;;;-1325F;EGYPTIAN HIEROGLYPH O008;Lo;0;L;;;;;N;;;;;-13260;EGYPTIAN HIEROGLYPH O009;Lo;0;L;;;;;N;;;;;-13261;EGYPTIAN HIEROGLYPH O010;Lo;0;L;;;;;N;;;;;-13262;EGYPTIAN HIEROGLYPH O010A;Lo;0;L;;;;;N;;;;;-13263;EGYPTIAN HIEROGLYPH O010B;Lo;0;L;;;;;N;;;;;-13264;EGYPTIAN HIEROGLYPH O010C;Lo;0;L;;;;;N;;;;;-13265;EGYPTIAN HIEROGLYPH O011;Lo;0;L;;;;;N;;;;;-13266;EGYPTIAN HIEROGLYPH O012;Lo;0;L;;;;;N;;;;;-13267;EGYPTIAN HIEROGLYPH O013;Lo;0;L;;;;;N;;;;;-13268;EGYPTIAN HIEROGLYPH O014;Lo;0;L;;;;;N;;;;;-13269;EGYPTIAN HIEROGLYPH O015;Lo;0;L;;;;;N;;;;;-1326A;EGYPTIAN HIEROGLYPH O016;Lo;0;L;;;;;N;;;;;-1326B;EGYPTIAN HIEROGLYPH O017;Lo;0;L;;;;;N;;;;;-1326C;EGYPTIAN HIEROGLYPH O018;Lo;0;L;;;;;N;;;;;-1326D;EGYPTIAN HIEROGLYPH O019;Lo;0;L;;;;;N;;;;;-1326E;EGYPTIAN HIEROGLYPH O019A;Lo;0;L;;;;;N;;;;;-1326F;EGYPTIAN HIEROGLYPH O020;Lo;0;L;;;;;N;;;;;-13270;EGYPTIAN HIEROGLYPH O020A;Lo;0;L;;;;;N;;;;;-13271;EGYPTIAN HIEROGLYPH O021;Lo;0;L;;;;;N;;;;;-13272;EGYPTIAN HIEROGLYPH O022;Lo;0;L;;;;;N;;;;;-13273;EGYPTIAN HIEROGLYPH O023;Lo;0;L;;;;;N;;;;;-13274;EGYPTIAN HIEROGLYPH O024;Lo;0;L;;;;;N;;;;;-13275;EGYPTIAN HIEROGLYPH O024A;Lo;0;L;;;;;N;;;;;-13276;EGYPTIAN HIEROGLYPH O025;Lo;0;L;;;;;N;;;;;-13277;EGYPTIAN HIEROGLYPH O025A;Lo;0;L;;;;;N;;;;;-13278;EGYPTIAN HIEROGLYPH O026;Lo;0;L;;;;;N;;;;;-13279;EGYPTIAN HIEROGLYPH O027;Lo;0;L;;;;;N;;;;;-1327A;EGYPTIAN HIEROGLYPH O028;Lo;0;L;;;;;N;;;;;-1327B;EGYPTIAN HIEROGLYPH O029;Lo;0;L;;;;;N;;;;;-1327C;EGYPTIAN HIEROGLYPH O029A;Lo;0;L;;;;;N;;;;;-1327D;EGYPTIAN HIEROGLYPH O030;Lo;0;L;;;;;N;;;;;-1327E;EGYPTIAN HIEROGLYPH O030A;Lo;0;L;;;;;N;;;;;-1327F;EGYPTIAN HIEROGLYPH O031;Lo;0;L;;;;;N;;;;;-13280;EGYPTIAN HIEROGLYPH O032;Lo;0;L;;;;;N;;;;;-13281;EGYPTIAN HIEROGLYPH O033;Lo;0;L;;;;;N;;;;;-13282;EGYPTIAN HIEROGLYPH O033A;Lo;0;L;;;;;N;;;;;-13283;EGYPTIAN HIEROGLYPH O034;Lo;0;L;;;;;N;;;;;-13284;EGYPTIAN HIEROGLYPH O035;Lo;0;L;;;;;N;;;;;-13285;EGYPTIAN HIEROGLYPH O036;Lo;0;L;;;;;N;;;;;-13286;EGYPTIAN HIEROGLYPH O036A;Lo;0;L;;;;;N;;;;;-13287;EGYPTIAN HIEROGLYPH O036B;Lo;0;L;;;;;N;;;;;-13288;EGYPTIAN HIEROGLYPH O036C;Lo;0;L;;;;;N;;;;;-13289;EGYPTIAN HIEROGLYPH O036D;Lo;0;L;;;;;N;;;;;-1328A;EGYPTIAN HIEROGLYPH O037;Lo;0;L;;;;;N;;;;;-1328B;EGYPTIAN HIEROGLYPH O038;Lo;0;L;;;;;N;;;;;-1328C;EGYPTIAN HIEROGLYPH O039;Lo;0;L;;;;;N;;;;;-1328D;EGYPTIAN HIEROGLYPH O040;Lo;0;L;;;;;N;;;;;-1328E;EGYPTIAN HIEROGLYPH O041;Lo;0;L;;;;;N;;;;;-1328F;EGYPTIAN HIEROGLYPH O042;Lo;0;L;;;;;N;;;;;-13290;EGYPTIAN HIEROGLYPH O043;Lo;0;L;;;;;N;;;;;-13291;EGYPTIAN HIEROGLYPH O044;Lo;0;L;;;;;N;;;;;-13292;EGYPTIAN HIEROGLYPH O045;Lo;0;L;;;;;N;;;;;-13293;EGYPTIAN HIEROGLYPH O046;Lo;0;L;;;;;N;;;;;-13294;EGYPTIAN HIEROGLYPH O047;Lo;0;L;;;;;N;;;;;-13295;EGYPTIAN HIEROGLYPH O048;Lo;0;L;;;;;N;;;;;-13296;EGYPTIAN HIEROGLYPH O049;Lo;0;L;;;;;N;;;;;-13297;EGYPTIAN HIEROGLYPH O050;Lo;0;L;;;;;N;;;;;-13298;EGYPTIAN HIEROGLYPH O050A;Lo;0;L;;;;;N;;;;;-13299;EGYPTIAN HIEROGLYPH O050B;Lo;0;L;;;;;N;;;;;-1329A;EGYPTIAN HIEROGLYPH O051;Lo;0;L;;;;;N;;;;;-1329B;EGYPTIAN HIEROGLYPH P001;Lo;0;L;;;;;N;;;;;-1329C;EGYPTIAN HIEROGLYPH P001A;Lo;0;L;;;;;N;;;;;-1329D;EGYPTIAN HIEROGLYPH P002;Lo;0;L;;;;;N;;;;;-1329E;EGYPTIAN HIEROGLYPH P003;Lo;0;L;;;;;N;;;;;-1329F;EGYPTIAN HIEROGLYPH P003A;Lo;0;L;;;;;N;;;;;-132A0;EGYPTIAN HIEROGLYPH P004;Lo;0;L;;;;;N;;;;;-132A1;EGYPTIAN HIEROGLYPH P005;Lo;0;L;;;;;N;;;;;-132A2;EGYPTIAN HIEROGLYPH P006;Lo;0;L;;;;;N;;;;;-132A3;EGYPTIAN HIEROGLYPH P007;Lo;0;L;;;;;N;;;;;-132A4;EGYPTIAN HIEROGLYPH P008;Lo;0;L;;;;;N;;;;;-132A5;EGYPTIAN HIEROGLYPH P009;Lo;0;L;;;;;N;;;;;-132A6;EGYPTIAN HIEROGLYPH P010;Lo;0;L;;;;;N;;;;;-132A7;EGYPTIAN HIEROGLYPH P011;Lo;0;L;;;;;N;;;;;-132A8;EGYPTIAN HIEROGLYPH Q001;Lo;0;L;;;;;N;;;;;-132A9;EGYPTIAN HIEROGLYPH Q002;Lo;0;L;;;;;N;;;;;-132AA;EGYPTIAN HIEROGLYPH Q003;Lo;0;L;;;;;N;;;;;-132AB;EGYPTIAN HIEROGLYPH Q004;Lo;0;L;;;;;N;;;;;-132AC;EGYPTIAN HIEROGLYPH Q005;Lo;0;L;;;;;N;;;;;-132AD;EGYPTIAN HIEROGLYPH Q006;Lo;0;L;;;;;N;;;;;-132AE;EGYPTIAN HIEROGLYPH Q007;Lo;0;L;;;;;N;;;;;-132AF;EGYPTIAN HIEROGLYPH R001;Lo;0;L;;;;;N;;;;;-132B0;EGYPTIAN HIEROGLYPH R002;Lo;0;L;;;;;N;;;;;-132B1;EGYPTIAN HIEROGLYPH R002A;Lo;0;L;;;;;N;;;;;-132B2;EGYPTIAN HIEROGLYPH R003;Lo;0;L;;;;;N;;;;;-132B3;EGYPTIAN HIEROGLYPH R003A;Lo;0;L;;;;;N;;;;;-132B4;EGYPTIAN HIEROGLYPH R003B;Lo;0;L;;;;;N;;;;;-132B5;EGYPTIAN HIEROGLYPH R004;Lo;0;L;;;;;N;;;;;-132B6;EGYPTIAN HIEROGLYPH R005;Lo;0;L;;;;;N;;;;;-132B7;EGYPTIAN HIEROGLYPH R006;Lo;0;L;;;;;N;;;;;-132B8;EGYPTIAN HIEROGLYPH R007;Lo;0;L;;;;;N;;;;;-132B9;EGYPTIAN HIEROGLYPH R008;Lo;0;L;;;;;N;;;;;-132BA;EGYPTIAN HIEROGLYPH R009;Lo;0;L;;;;;N;;;;;-132BB;EGYPTIAN HIEROGLYPH R010;Lo;0;L;;;;;N;;;;;-132BC;EGYPTIAN HIEROGLYPH R010A;Lo;0;L;;;;;N;;;;;-132BD;EGYPTIAN HIEROGLYPH R011;Lo;0;L;;;;;N;;;;;-132BE;EGYPTIAN HIEROGLYPH R012;Lo;0;L;;;;;N;;;;;-132BF;EGYPTIAN HIEROGLYPH R013;Lo;0;L;;;;;N;;;;;-132C0;EGYPTIAN HIEROGLYPH R014;Lo;0;L;;;;;N;;;;;-132C1;EGYPTIAN HIEROGLYPH R015;Lo;0;L;;;;;N;;;;;-132C2;EGYPTIAN HIEROGLYPH R016;Lo;0;L;;;;;N;;;;;-132C3;EGYPTIAN HIEROGLYPH R016A;Lo;0;L;;;;;N;;;;;-132C4;EGYPTIAN HIEROGLYPH R017;Lo;0;L;;;;;N;;;;;-132C5;EGYPTIAN HIEROGLYPH R018;Lo;0;L;;;;;N;;;;;-132C6;EGYPTIAN HIEROGLYPH R019;Lo;0;L;;;;;N;;;;;-132C7;EGYPTIAN HIEROGLYPH R020;Lo;0;L;;;;;N;;;;;-132C8;EGYPTIAN HIEROGLYPH R021;Lo;0;L;;;;;N;;;;;-132C9;EGYPTIAN HIEROGLYPH R022;Lo;0;L;;;;;N;;;;;-132CA;EGYPTIAN HIEROGLYPH R023;Lo;0;L;;;;;N;;;;;-132CB;EGYPTIAN HIEROGLYPH R024;Lo;0;L;;;;;N;;;;;-132CC;EGYPTIAN HIEROGLYPH R025;Lo;0;L;;;;;N;;;;;-132CD;EGYPTIAN HIEROGLYPH R026;Lo;0;L;;;;;N;;;;;-132CE;EGYPTIAN HIEROGLYPH R027;Lo;0;L;;;;;N;;;;;-132CF;EGYPTIAN HIEROGLYPH R028;Lo;0;L;;;;;N;;;;;-132D0;EGYPTIAN HIEROGLYPH R029;Lo;0;L;;;;;N;;;;;-132D1;EGYPTIAN HIEROGLYPH S001;Lo;0;L;;;;;N;;;;;-132D2;EGYPTIAN HIEROGLYPH S002;Lo;0;L;;;;;N;;;;;-132D3;EGYPTIAN HIEROGLYPH S002A;Lo;0;L;;;;;N;;;;;-132D4;EGYPTIAN HIEROGLYPH S003;Lo;0;L;;;;;N;;;;;-132D5;EGYPTIAN HIEROGLYPH S004;Lo;0;L;;;;;N;;;;;-132D6;EGYPTIAN HIEROGLYPH S005;Lo;0;L;;;;;N;;;;;-132D7;EGYPTIAN HIEROGLYPH S006;Lo;0;L;;;;;N;;;;;-132D8;EGYPTIAN HIEROGLYPH S006A;Lo;0;L;;;;;N;;;;;-132D9;EGYPTIAN HIEROGLYPH S007;Lo;0;L;;;;;N;;;;;-132DA;EGYPTIAN HIEROGLYPH S008;Lo;0;L;;;;;N;;;;;-132DB;EGYPTIAN HIEROGLYPH S009;Lo;0;L;;;;;N;;;;;-132DC;EGYPTIAN HIEROGLYPH S010;Lo;0;L;;;;;N;;;;;-132DD;EGYPTIAN HIEROGLYPH S011;Lo;0;L;;;;;N;;;;;-132DE;EGYPTIAN HIEROGLYPH S012;Lo;0;L;;;;;N;;;;;-132DF;EGYPTIAN HIEROGLYPH S013;Lo;0;L;;;;;N;;;;;-132E0;EGYPTIAN HIEROGLYPH S014;Lo;0;L;;;;;N;;;;;-132E1;EGYPTIAN HIEROGLYPH S014A;Lo;0;L;;;;;N;;;;;-132E2;EGYPTIAN HIEROGLYPH S014B;Lo;0;L;;;;;N;;;;;-132E3;EGYPTIAN HIEROGLYPH S015;Lo;0;L;;;;;N;;;;;-132E4;EGYPTIAN HIEROGLYPH S016;Lo;0;L;;;;;N;;;;;-132E5;EGYPTIAN HIEROGLYPH S017;Lo;0;L;;;;;N;;;;;-132E6;EGYPTIAN HIEROGLYPH S017A;Lo;0;L;;;;;N;;;;;-132E7;EGYPTIAN HIEROGLYPH S018;Lo;0;L;;;;;N;;;;;-132E8;EGYPTIAN HIEROGLYPH S019;Lo;0;L;;;;;N;;;;;-132E9;EGYPTIAN HIEROGLYPH S020;Lo;0;L;;;;;N;;;;;-132EA;EGYPTIAN HIEROGLYPH S021;Lo;0;L;;;;;N;;;;;-132EB;EGYPTIAN HIEROGLYPH S022;Lo;0;L;;;;;N;;;;;-132EC;EGYPTIAN HIEROGLYPH S023;Lo;0;L;;;;;N;;;;;-132ED;EGYPTIAN HIEROGLYPH S024;Lo;0;L;;;;;N;;;;;-132EE;EGYPTIAN HIEROGLYPH S025;Lo;0;L;;;;;N;;;;;-132EF;EGYPTIAN HIEROGLYPH S026;Lo;0;L;;;;;N;;;;;-132F0;EGYPTIAN HIEROGLYPH S026A;Lo;0;L;;;;;N;;;;;-132F1;EGYPTIAN HIEROGLYPH S026B;Lo;0;L;;;;;N;;;;;-132F2;EGYPTIAN HIEROGLYPH S027;Lo;0;L;;;;;N;;;;;-132F3;EGYPTIAN HIEROGLYPH S028;Lo;0;L;;;;;N;;;;;-132F4;EGYPTIAN HIEROGLYPH S029;Lo;0;L;;;;;N;;;;;-132F5;EGYPTIAN HIEROGLYPH S030;Lo;0;L;;;;;N;;;;;-132F6;EGYPTIAN HIEROGLYPH S031;Lo;0;L;;;;;N;;;;;-132F7;EGYPTIAN HIEROGLYPH S032;Lo;0;L;;;;;N;;;;;-132F8;EGYPTIAN HIEROGLYPH S033;Lo;0;L;;;;;N;;;;;-132F9;EGYPTIAN HIEROGLYPH S034;Lo;0;L;;;;;N;;;;;-132FA;EGYPTIAN HIEROGLYPH S035;Lo;0;L;;;;;N;;;;;-132FB;EGYPTIAN HIEROGLYPH S035A;Lo;0;L;;;;;N;;;;;-132FC;EGYPTIAN HIEROGLYPH S036;Lo;0;L;;;;;N;;;;;-132FD;EGYPTIAN HIEROGLYPH S037;Lo;0;L;;;;;N;;;;;-132FE;EGYPTIAN HIEROGLYPH S038;Lo;0;L;;;;;N;;;;;-132FF;EGYPTIAN HIEROGLYPH S039;Lo;0;L;;;;;N;;;;;-13300;EGYPTIAN HIEROGLYPH S040;Lo;0;L;;;;;N;;;;;-13301;EGYPTIAN HIEROGLYPH S041;Lo;0;L;;;;;N;;;;;-13302;EGYPTIAN HIEROGLYPH S042;Lo;0;L;;;;;N;;;;;-13303;EGYPTIAN HIEROGLYPH S043;Lo;0;L;;;;;N;;;;;-13304;EGYPTIAN HIEROGLYPH S044;Lo;0;L;;;;;N;;;;;-13305;EGYPTIAN HIEROGLYPH S045;Lo;0;L;;;;;N;;;;;-13306;EGYPTIAN HIEROGLYPH S046;Lo;0;L;;;;;N;;;;;-13307;EGYPTIAN HIEROGLYPH T001;Lo;0;L;;;;;N;;;;;-13308;EGYPTIAN HIEROGLYPH T002;Lo;0;L;;;;;N;;;;;-13309;EGYPTIAN HIEROGLYPH T003;Lo;0;L;;;;;N;;;;;-1330A;EGYPTIAN HIEROGLYPH T003A;Lo;0;L;;;;;N;;;;;-1330B;EGYPTIAN HIEROGLYPH T004;Lo;0;L;;;;;N;;;;;-1330C;EGYPTIAN HIEROGLYPH T005;Lo;0;L;;;;;N;;;;;-1330D;EGYPTIAN HIEROGLYPH T006;Lo;0;L;;;;;N;;;;;-1330E;EGYPTIAN HIEROGLYPH T007;Lo;0;L;;;;;N;;;;;-1330F;EGYPTIAN HIEROGLYPH T007A;Lo;0;L;;;;;N;;;;;-13310;EGYPTIAN HIEROGLYPH T008;Lo;0;L;;;;;N;;;;;-13311;EGYPTIAN HIEROGLYPH T008A;Lo;0;L;;;;;N;;;;;-13312;EGYPTIAN HIEROGLYPH T009;Lo;0;L;;;;;N;;;;;-13313;EGYPTIAN HIEROGLYPH T009A;Lo;0;L;;;;;N;;;;;-13314;EGYPTIAN HIEROGLYPH T010;Lo;0;L;;;;;N;;;;;-13315;EGYPTIAN HIEROGLYPH T011;Lo;0;L;;;;;N;;;;;-13316;EGYPTIAN HIEROGLYPH T011A;Lo;0;L;;;;;N;;;;;-13317;EGYPTIAN HIEROGLYPH T012;Lo;0;L;;;;;N;;;;;-13318;EGYPTIAN HIEROGLYPH T013;Lo;0;L;;;;;N;;;;;-13319;EGYPTIAN HIEROGLYPH T014;Lo;0;L;;;;;N;;;;;-1331A;EGYPTIAN HIEROGLYPH T015;Lo;0;L;;;;;N;;;;;-1331B;EGYPTIAN HIEROGLYPH T016;Lo;0;L;;;;;N;;;;;-1331C;EGYPTIAN HIEROGLYPH T016A;Lo;0;L;;;;;N;;;;;-1331D;EGYPTIAN HIEROGLYPH T017;Lo;0;L;;;;;N;;;;;-1331E;EGYPTIAN HIEROGLYPH T018;Lo;0;L;;;;;N;;;;;-1331F;EGYPTIAN HIEROGLYPH T019;Lo;0;L;;;;;N;;;;;-13320;EGYPTIAN HIEROGLYPH T020;Lo;0;L;;;;;N;;;;;-13321;EGYPTIAN HIEROGLYPH T021;Lo;0;L;;;;;N;;;;;-13322;EGYPTIAN HIEROGLYPH T022;Lo;0;L;;;;;N;;;;;-13323;EGYPTIAN HIEROGLYPH T023;Lo;0;L;;;;;N;;;;;-13324;EGYPTIAN HIEROGLYPH T024;Lo;0;L;;;;;N;;;;;-13325;EGYPTIAN HIEROGLYPH T025;Lo;0;L;;;;;N;;;;;-13326;EGYPTIAN HIEROGLYPH T026;Lo;0;L;;;;;N;;;;;-13327;EGYPTIAN HIEROGLYPH T027;Lo;0;L;;;;;N;;;;;-13328;EGYPTIAN HIEROGLYPH T028;Lo;0;L;;;;;N;;;;;-13329;EGYPTIAN HIEROGLYPH T029;Lo;0;L;;;;;N;;;;;-1332A;EGYPTIAN HIEROGLYPH T030;Lo;0;L;;;;;N;;;;;-1332B;EGYPTIAN HIEROGLYPH T031;Lo;0;L;;;;;N;;;;;-1332C;EGYPTIAN HIEROGLYPH T032;Lo;0;L;;;;;N;;;;;-1332D;EGYPTIAN HIEROGLYPH T032A;Lo;0;L;;;;;N;;;;;-1332E;EGYPTIAN HIEROGLYPH T033;Lo;0;L;;;;;N;;;;;-1332F;EGYPTIAN HIEROGLYPH T033A;Lo;0;L;;;;;N;;;;;-13330;EGYPTIAN HIEROGLYPH T034;Lo;0;L;;;;;N;;;;;-13331;EGYPTIAN HIEROGLYPH T035;Lo;0;L;;;;;N;;;;;-13332;EGYPTIAN HIEROGLYPH T036;Lo;0;L;;;;;N;;;;;-13333;EGYPTIAN HIEROGLYPH U001;Lo;0;L;;;;;N;;;;;-13334;EGYPTIAN HIEROGLYPH U002;Lo;0;L;;;;;N;;;;;-13335;EGYPTIAN HIEROGLYPH U003;Lo;0;L;;;;;N;;;;;-13336;EGYPTIAN HIEROGLYPH U004;Lo;0;L;;;;;N;;;;;-13337;EGYPTIAN HIEROGLYPH U005;Lo;0;L;;;;;N;;;;;-13338;EGYPTIAN HIEROGLYPH U006;Lo;0;L;;;;;N;;;;;-13339;EGYPTIAN HIEROGLYPH U006A;Lo;0;L;;;;;N;;;;;-1333A;EGYPTIAN HIEROGLYPH U006B;Lo;0;L;;;;;N;;;;;-1333B;EGYPTIAN HIEROGLYPH U007;Lo;0;L;;;;;N;;;;;-1333C;EGYPTIAN HIEROGLYPH U008;Lo;0;L;;;;;N;;;;;-1333D;EGYPTIAN HIEROGLYPH U009;Lo;0;L;;;;;N;;;;;-1333E;EGYPTIAN HIEROGLYPH U010;Lo;0;L;;;;;N;;;;;-1333F;EGYPTIAN HIEROGLYPH U011;Lo;0;L;;;;;N;;;;;-13340;EGYPTIAN HIEROGLYPH U012;Lo;0;L;;;;;N;;;;;-13341;EGYPTIAN HIEROGLYPH U013;Lo;0;L;;;;;N;;;;;-13342;EGYPTIAN HIEROGLYPH U014;Lo;0;L;;;;;N;;;;;-13343;EGYPTIAN HIEROGLYPH U015;Lo;0;L;;;;;N;;;;;-13344;EGYPTIAN HIEROGLYPH U016;Lo;0;L;;;;;N;;;;;-13345;EGYPTIAN HIEROGLYPH U017;Lo;0;L;;;;;N;;;;;-13346;EGYPTIAN HIEROGLYPH U018;Lo;0;L;;;;;N;;;;;-13347;EGYPTIAN HIEROGLYPH U019;Lo;0;L;;;;;N;;;;;-13348;EGYPTIAN HIEROGLYPH U020;Lo;0;L;;;;;N;;;;;-13349;EGYPTIAN HIEROGLYPH U021;Lo;0;L;;;;;N;;;;;-1334A;EGYPTIAN HIEROGLYPH U022;Lo;0;L;;;;;N;;;;;-1334B;EGYPTIAN HIEROGLYPH U023;Lo;0;L;;;;;N;;;;;-1334C;EGYPTIAN HIEROGLYPH U023A;Lo;0;L;;;;;N;;;;;-1334D;EGYPTIAN HIEROGLYPH U024;Lo;0;L;;;;;N;;;;;-1334E;EGYPTIAN HIEROGLYPH U025;Lo;0;L;;;;;N;;;;;-1334F;EGYPTIAN HIEROGLYPH U026;Lo;0;L;;;;;N;;;;;-13350;EGYPTIAN HIEROGLYPH U027;Lo;0;L;;;;;N;;;;;-13351;EGYPTIAN HIEROGLYPH U028;Lo;0;L;;;;;N;;;;;-13352;EGYPTIAN HIEROGLYPH U029;Lo;0;L;;;;;N;;;;;-13353;EGYPTIAN HIEROGLYPH U029A;Lo;0;L;;;;;N;;;;;-13354;EGYPTIAN HIEROGLYPH U030;Lo;0;L;;;;;N;;;;;-13355;EGYPTIAN HIEROGLYPH U031;Lo;0;L;;;;;N;;;;;-13356;EGYPTIAN HIEROGLYPH U032;Lo;0;L;;;;;N;;;;;-13357;EGYPTIAN HIEROGLYPH U032A;Lo;0;L;;;;;N;;;;;-13358;EGYPTIAN HIEROGLYPH U033;Lo;0;L;;;;;N;;;;;-13359;EGYPTIAN HIEROGLYPH U034;Lo;0;L;;;;;N;;;;;-1335A;EGYPTIAN HIEROGLYPH U035;Lo;0;L;;;;;N;;;;;-1335B;EGYPTIAN HIEROGLYPH U036;Lo;0;L;;;;;N;;;;;-1335C;EGYPTIAN HIEROGLYPH U037;Lo;0;L;;;;;N;;;;;-1335D;EGYPTIAN HIEROGLYPH U038;Lo;0;L;;;;;N;;;;;-1335E;EGYPTIAN HIEROGLYPH U039;Lo;0;L;;;;;N;;;;;-1335F;EGYPTIAN HIEROGLYPH U040;Lo;0;L;;;;;N;;;;;-13360;EGYPTIAN HIEROGLYPH U041;Lo;0;L;;;;;N;;;;;-13361;EGYPTIAN HIEROGLYPH U042;Lo;0;L;;;;;N;;;;;-13362;EGYPTIAN HIEROGLYPH V001;Lo;0;L;;;;;N;;;;;-13363;EGYPTIAN HIEROGLYPH V001A;Lo;0;L;;;;;N;;;;;-13364;EGYPTIAN HIEROGLYPH V001B;Lo;0;L;;;;;N;;;;;-13365;EGYPTIAN HIEROGLYPH V001C;Lo;0;L;;;;;N;;;;;-13366;EGYPTIAN HIEROGLYPH V001D;Lo;0;L;;;;;N;;;;;-13367;EGYPTIAN HIEROGLYPH V001E;Lo;0;L;;;;;N;;;;;-13368;EGYPTIAN HIEROGLYPH V001F;Lo;0;L;;;;;N;;;;;-13369;EGYPTIAN HIEROGLYPH V001G;Lo;0;L;;;;;N;;;;;-1336A;EGYPTIAN HIEROGLYPH V001H;Lo;0;L;;;;;N;;;;;-1336B;EGYPTIAN HIEROGLYPH V001I;Lo;0;L;;;;;N;;;;;-1336C;EGYPTIAN HIEROGLYPH V002;Lo;0;L;;;;;N;;;;;-1336D;EGYPTIAN HIEROGLYPH V002A;Lo;0;L;;;;;N;;;;;-1336E;EGYPTIAN HIEROGLYPH V003;Lo;0;L;;;;;N;;;;;-1336F;EGYPTIAN HIEROGLYPH V004;Lo;0;L;;;;;N;;;;;-13370;EGYPTIAN HIEROGLYPH V005;Lo;0;L;;;;;N;;;;;-13371;EGYPTIAN HIEROGLYPH V006;Lo;0;L;;;;;N;;;;;-13372;EGYPTIAN HIEROGLYPH V007;Lo;0;L;;;;;N;;;;;-13373;EGYPTIAN HIEROGLYPH V007A;Lo;0;L;;;;;N;;;;;-13374;EGYPTIAN HIEROGLYPH V007B;Lo;0;L;;;;;N;;;;;-13375;EGYPTIAN HIEROGLYPH V008;Lo;0;L;;;;;N;;;;;-13376;EGYPTIAN HIEROGLYPH V009;Lo;0;L;;;;;N;;;;;-13377;EGYPTIAN HIEROGLYPH V010;Lo;0;L;;;;;N;;;;;-13378;EGYPTIAN HIEROGLYPH V011;Lo;0;L;;;;;N;;;;;-13379;EGYPTIAN HIEROGLYPH V011A;Lo;0;L;;;;;N;;;;;-1337A;EGYPTIAN HIEROGLYPH V011B;Lo;0;L;;;;;N;;;;;-1337B;EGYPTIAN HIEROGLYPH V011C;Lo;0;L;;;;;N;;;;;-1337C;EGYPTIAN HIEROGLYPH V012;Lo;0;L;;;;;N;;;;;-1337D;EGYPTIAN HIEROGLYPH V012A;Lo;0;L;;;;;N;;;;;-1337E;EGYPTIAN HIEROGLYPH V012B;Lo;0;L;;;;;N;;;;;-1337F;EGYPTIAN HIEROGLYPH V013;Lo;0;L;;;;;N;;;;;-13380;EGYPTIAN HIEROGLYPH V014;Lo;0;L;;;;;N;;;;;-13381;EGYPTIAN HIEROGLYPH V015;Lo;0;L;;;;;N;;;;;-13382;EGYPTIAN HIEROGLYPH V016;Lo;0;L;;;;;N;;;;;-13383;EGYPTIAN HIEROGLYPH V017;Lo;0;L;;;;;N;;;;;-13384;EGYPTIAN HIEROGLYPH V018;Lo;0;L;;;;;N;;;;;-13385;EGYPTIAN HIEROGLYPH V019;Lo;0;L;;;;;N;;;;;-13386;EGYPTIAN HIEROGLYPH V020;Lo;0;L;;;;;N;;;;;-13387;EGYPTIAN HIEROGLYPH V020A;Lo;0;L;;;;;N;;;;;-13388;EGYPTIAN HIEROGLYPH V020B;Lo;0;L;;;;;N;;;;;-13389;EGYPTIAN HIEROGLYPH V020C;Lo;0;L;;;;;N;;;;;-1338A;EGYPTIAN HIEROGLYPH V020D;Lo;0;L;;;;;N;;;;;-1338B;EGYPTIAN HIEROGLYPH V020E;Lo;0;L;;;;;N;;;;;-1338C;EGYPTIAN HIEROGLYPH V020F;Lo;0;L;;;;;N;;;;;-1338D;EGYPTIAN HIEROGLYPH V020G;Lo;0;L;;;;;N;;;;;-1338E;EGYPTIAN HIEROGLYPH V020H;Lo;0;L;;;;;N;;;;;-1338F;EGYPTIAN HIEROGLYPH V020I;Lo;0;L;;;;;N;;;;;-13390;EGYPTIAN HIEROGLYPH V020J;Lo;0;L;;;;;N;;;;;-13391;EGYPTIAN HIEROGLYPH V020K;Lo;0;L;;;;;N;;;;;-13392;EGYPTIAN HIEROGLYPH V020L;Lo;0;L;;;;;N;;;;;-13393;EGYPTIAN HIEROGLYPH V021;Lo;0;L;;;;;N;;;;;-13394;EGYPTIAN HIEROGLYPH V022;Lo;0;L;;;;;N;;;;;-13395;EGYPTIAN HIEROGLYPH V023;Lo;0;L;;;;;N;;;;;-13396;EGYPTIAN HIEROGLYPH V023A;Lo;0;L;;;;;N;;;;;-13397;EGYPTIAN HIEROGLYPH V024;Lo;0;L;;;;;N;;;;;-13398;EGYPTIAN HIEROGLYPH V025;Lo;0;L;;;;;N;;;;;-13399;EGYPTIAN HIEROGLYPH V026;Lo;0;L;;;;;N;;;;;-1339A;EGYPTIAN HIEROGLYPH V027;Lo;0;L;;;;;N;;;;;-1339B;EGYPTIAN HIEROGLYPH V028;Lo;0;L;;;;;N;;;;;-1339C;EGYPTIAN HIEROGLYPH V028A;Lo;0;L;;;;;N;;;;;-1339D;EGYPTIAN HIEROGLYPH V029;Lo;0;L;;;;;N;;;;;-1339E;EGYPTIAN HIEROGLYPH V029A;Lo;0;L;;;;;N;;;;;-1339F;EGYPTIAN HIEROGLYPH V030;Lo;0;L;;;;;N;;;;;-133A0;EGYPTIAN HIEROGLYPH V030A;Lo;0;L;;;;;N;;;;;-133A1;EGYPTIAN HIEROGLYPH V031;Lo;0;L;;;;;N;;;;;-133A2;EGYPTIAN HIEROGLYPH V031A;Lo;0;L;;;;;N;;;;;-133A3;EGYPTIAN HIEROGLYPH V032;Lo;0;L;;;;;N;;;;;-133A4;EGYPTIAN HIEROGLYPH V033;Lo;0;L;;;;;N;;;;;-133A5;EGYPTIAN HIEROGLYPH V033A;Lo;0;L;;;;;N;;;;;-133A6;EGYPTIAN HIEROGLYPH V034;Lo;0;L;;;;;N;;;;;-133A7;EGYPTIAN HIEROGLYPH V035;Lo;0;L;;;;;N;;;;;-133A8;EGYPTIAN HIEROGLYPH V036;Lo;0;L;;;;;N;;;;;-133A9;EGYPTIAN HIEROGLYPH V037;Lo;0;L;;;;;N;;;;;-133AA;EGYPTIAN HIEROGLYPH V037A;Lo;0;L;;;;;N;;;;;-133AB;EGYPTIAN HIEROGLYPH V038;Lo;0;L;;;;;N;;;;;-133AC;EGYPTIAN HIEROGLYPH V039;Lo;0;L;;;;;N;;;;;-133AD;EGYPTIAN HIEROGLYPH V040;Lo;0;L;;;;;N;;;;;-133AE;EGYPTIAN HIEROGLYPH V040A;Lo;0;L;;;;;N;;;;;-133AF;EGYPTIAN HIEROGLYPH W001;Lo;0;L;;;;;N;;;;;-133B0;EGYPTIAN HIEROGLYPH W002;Lo;0;L;;;;;N;;;;;-133B1;EGYPTIAN HIEROGLYPH W003;Lo;0;L;;;;;N;;;;;-133B2;EGYPTIAN HIEROGLYPH W003A;Lo;0;L;;;;;N;;;;;-133B3;EGYPTIAN HIEROGLYPH W004;Lo;0;L;;;;;N;;;;;-133B4;EGYPTIAN HIEROGLYPH W005;Lo;0;L;;;;;N;;;;;-133B5;EGYPTIAN HIEROGLYPH W006;Lo;0;L;;;;;N;;;;;-133B6;EGYPTIAN HIEROGLYPH W007;Lo;0;L;;;;;N;;;;;-133B7;EGYPTIAN HIEROGLYPH W008;Lo;0;L;;;;;N;;;;;-133B8;EGYPTIAN HIEROGLYPH W009;Lo;0;L;;;;;N;;;;;-133B9;EGYPTIAN HIEROGLYPH W009A;Lo;0;L;;;;;N;;;;;-133BA;EGYPTIAN HIEROGLYPH W010;Lo;0;L;;;;;N;;;;;-133BB;EGYPTIAN HIEROGLYPH W010A;Lo;0;L;;;;;N;;;;;-133BC;EGYPTIAN HIEROGLYPH W011;Lo;0;L;;;;;N;;;;;-133BD;EGYPTIAN HIEROGLYPH W012;Lo;0;L;;;;;N;;;;;-133BE;EGYPTIAN HIEROGLYPH W013;Lo;0;L;;;;;N;;;;;-133BF;EGYPTIAN HIEROGLYPH W014;Lo;0;L;;;;;N;;;;;-133C0;EGYPTIAN HIEROGLYPH W014A;Lo;0;L;;;;;N;;;;;-133C1;EGYPTIAN HIEROGLYPH W015;Lo;0;L;;;;;N;;;;;-133C2;EGYPTIAN HIEROGLYPH W016;Lo;0;L;;;;;N;;;;;-133C3;EGYPTIAN HIEROGLYPH W017;Lo;0;L;;;;;N;;;;;-133C4;EGYPTIAN HIEROGLYPH W017A;Lo;0;L;;;;;N;;;;;-133C5;EGYPTIAN HIEROGLYPH W018;Lo;0;L;;;;;N;;;;;-133C6;EGYPTIAN HIEROGLYPH W018A;Lo;0;L;;;;;N;;;;;-133C7;EGYPTIAN HIEROGLYPH W019;Lo;0;L;;;;;N;;;;;-133C8;EGYPTIAN HIEROGLYPH W020;Lo;0;L;;;;;N;;;;;-133C9;EGYPTIAN HIEROGLYPH W021;Lo;0;L;;;;;N;;;;;-133CA;EGYPTIAN HIEROGLYPH W022;Lo;0;L;;;;;N;;;;;-133CB;EGYPTIAN HIEROGLYPH W023;Lo;0;L;;;;;N;;;;;-133CC;EGYPTIAN HIEROGLYPH W024;Lo;0;L;;;;;N;;;;;-133CD;EGYPTIAN HIEROGLYPH W024A;Lo;0;L;;;;;N;;;;;-133CE;EGYPTIAN HIEROGLYPH W025;Lo;0;L;;;;;N;;;;;-133CF;EGYPTIAN HIEROGLYPH X001;Lo;0;L;;;;;N;;;;;-133D0;EGYPTIAN HIEROGLYPH X002;Lo;0;L;;;;;N;;;;;-133D1;EGYPTIAN HIEROGLYPH X003;Lo;0;L;;;;;N;;;;;-133D2;EGYPTIAN HIEROGLYPH X004;Lo;0;L;;;;;N;;;;;-133D3;EGYPTIAN HIEROGLYPH X004A;Lo;0;L;;;;;N;;;;;-133D4;EGYPTIAN HIEROGLYPH X004B;Lo;0;L;;;;;N;;;;;-133D5;EGYPTIAN HIEROGLYPH X005;Lo;0;L;;;;;N;;;;;-133D6;EGYPTIAN HIEROGLYPH X006;Lo;0;L;;;;;N;;;;;-133D7;EGYPTIAN HIEROGLYPH X006A;Lo;0;L;;;;;N;;;;;-133D8;EGYPTIAN HIEROGLYPH X007;Lo;0;L;;;;;N;;;;;-133D9;EGYPTIAN HIEROGLYPH X008;Lo;0;L;;;;;N;;;;;-133DA;EGYPTIAN HIEROGLYPH X008A;Lo;0;L;;;;;N;;;;;-133DB;EGYPTIAN HIEROGLYPH Y001;Lo;0;L;;;;;N;;;;;-133DC;EGYPTIAN HIEROGLYPH Y001A;Lo;0;L;;;;;N;;;;;-133DD;EGYPTIAN HIEROGLYPH Y002;Lo;0;L;;;;;N;;;;;-133DE;EGYPTIAN HIEROGLYPH Y003;Lo;0;L;;;;;N;;;;;-133DF;EGYPTIAN HIEROGLYPH Y004;Lo;0;L;;;;;N;;;;;-133E0;EGYPTIAN HIEROGLYPH Y005;Lo;0;L;;;;;N;;;;;-133E1;EGYPTIAN HIEROGLYPH Y006;Lo;0;L;;;;;N;;;;;-133E2;EGYPTIAN HIEROGLYPH Y007;Lo;0;L;;;;;N;;;;;-133E3;EGYPTIAN HIEROGLYPH Y008;Lo;0;L;;;;;N;;;;;-133E4;EGYPTIAN HIEROGLYPH Z001;Lo;0;L;;;;;N;;;;;-133E5;EGYPTIAN HIEROGLYPH Z002;Lo;0;L;;;;;N;;;;;-133E6;EGYPTIAN HIEROGLYPH Z002A;Lo;0;L;;;;;N;;;;;-133E7;EGYPTIAN HIEROGLYPH Z002B;Lo;0;L;;;;;N;;;;;-133E8;EGYPTIAN HIEROGLYPH Z002C;Lo;0;L;;;;;N;;;;;-133E9;EGYPTIAN HIEROGLYPH Z002D;Lo;0;L;;;;;N;;;;;-133EA;EGYPTIAN HIEROGLYPH Z003;Lo;0;L;;;;;N;;;;;-133EB;EGYPTIAN HIEROGLYPH Z003A;Lo;0;L;;;;;N;;;;;-133EC;EGYPTIAN HIEROGLYPH Z003B;Lo;0;L;;;;;N;;;;;-133ED;EGYPTIAN HIEROGLYPH Z004;Lo;0;L;;;;;N;;;;;-133EE;EGYPTIAN HIEROGLYPH Z004A;Lo;0;L;;;;;N;;;;;-133EF;EGYPTIAN HIEROGLYPH Z005;Lo;0;L;;;;;N;;;;;-133F0;EGYPTIAN HIEROGLYPH Z005A;Lo;0;L;;;;;N;;;;;-133F1;EGYPTIAN HIEROGLYPH Z006;Lo;0;L;;;;;N;;;;;-133F2;EGYPTIAN HIEROGLYPH Z007;Lo;0;L;;;;;N;;;;;-133F3;EGYPTIAN HIEROGLYPH Z008;Lo;0;L;;;;;N;;;;;-133F4;EGYPTIAN HIEROGLYPH Z009;Lo;0;L;;;;;N;;;;;-133F5;EGYPTIAN HIEROGLYPH Z010;Lo;0;L;;;;;N;;;;;-133F6;EGYPTIAN HIEROGLYPH Z011;Lo;0;L;;;;;N;;;;;-133F7;EGYPTIAN HIEROGLYPH Z012;Lo;0;L;;;;;N;;;;;-133F8;EGYPTIAN HIEROGLYPH Z013;Lo;0;L;;;;;N;;;;;-133F9;EGYPTIAN HIEROGLYPH Z014;Lo;0;L;;;;;N;;;;;-133FA;EGYPTIAN HIEROGLYPH Z015;Lo;0;L;;;;;N;;;;;-133FB;EGYPTIAN HIEROGLYPH Z015A;Lo;0;L;;;;;N;;;;;-133FC;EGYPTIAN HIEROGLYPH Z015B;Lo;0;L;;;;;N;;;;;-133FD;EGYPTIAN HIEROGLYPH Z015C;Lo;0;L;;;;;N;;;;;-133FE;EGYPTIAN HIEROGLYPH Z015D;Lo;0;L;;;;;N;;;;;-133FF;EGYPTIAN HIEROGLYPH Z015E;Lo;0;L;;;;;N;;;;;-13400;EGYPTIAN HIEROGLYPH Z015F;Lo;0;L;;;;;N;;;;;-13401;EGYPTIAN HIEROGLYPH Z015G;Lo;0;L;;;;;N;;;;;-13402;EGYPTIAN HIEROGLYPH Z015H;Lo;0;L;;;;;N;;;;;-13403;EGYPTIAN HIEROGLYPH Z015I;Lo;0;L;;;;;N;;;;;-13404;EGYPTIAN HIEROGLYPH Z016;Lo;0;L;;;;;N;;;;;-13405;EGYPTIAN HIEROGLYPH Z016A;Lo;0;L;;;;;N;;;;;-13406;EGYPTIAN HIEROGLYPH Z016B;Lo;0;L;;;;;N;;;;;-13407;EGYPTIAN HIEROGLYPH Z016C;Lo;0;L;;;;;N;;;;;-13408;EGYPTIAN HIEROGLYPH Z016D;Lo;0;L;;;;;N;;;;;-13409;EGYPTIAN HIEROGLYPH Z016E;Lo;0;L;;;;;N;;;;;-1340A;EGYPTIAN HIEROGLYPH Z016F;Lo;0;L;;;;;N;;;;;-1340B;EGYPTIAN HIEROGLYPH Z016G;Lo;0;L;;;;;N;;;;;-1340C;EGYPTIAN HIEROGLYPH Z016H;Lo;0;L;;;;;N;;;;;-1340D;EGYPTIAN HIEROGLYPH AA001;Lo;0;L;;;;;N;;;;;-1340E;EGYPTIAN HIEROGLYPH AA002;Lo;0;L;;;;;N;;;;;-1340F;EGYPTIAN HIEROGLYPH AA003;Lo;0;L;;;;;N;;;;;-13410;EGYPTIAN HIEROGLYPH AA004;Lo;0;L;;;;;N;;;;;-13411;EGYPTIAN HIEROGLYPH AA005;Lo;0;L;;;;;N;;;;;-13412;EGYPTIAN HIEROGLYPH AA006;Lo;0;L;;;;;N;;;;;-13413;EGYPTIAN HIEROGLYPH AA007;Lo;0;L;;;;;N;;;;;-13414;EGYPTIAN HIEROGLYPH AA007A;Lo;0;L;;;;;N;;;;;-13415;EGYPTIAN HIEROGLYPH AA007B;Lo;0;L;;;;;N;;;;;-13416;EGYPTIAN HIEROGLYPH AA008;Lo;0;L;;;;;N;;;;;-13417;EGYPTIAN HIEROGLYPH AA009;Lo;0;L;;;;;N;;;;;-13418;EGYPTIAN HIEROGLYPH AA010;Lo;0;L;;;;;N;;;;;-13419;EGYPTIAN HIEROGLYPH AA011;Lo;0;L;;;;;N;;;;;-1341A;EGYPTIAN HIEROGLYPH AA012;Lo;0;L;;;;;N;;;;;-1341B;EGYPTIAN HIEROGLYPH AA013;Lo;0;L;;;;;N;;;;;-1341C;EGYPTIAN HIEROGLYPH AA014;Lo;0;L;;;;;N;;;;;-1341D;EGYPTIAN HIEROGLYPH AA015;Lo;0;L;;;;;N;;;;;-1341E;EGYPTIAN HIEROGLYPH AA016;Lo;0;L;;;;;N;;;;;-1341F;EGYPTIAN HIEROGLYPH AA017;Lo;0;L;;;;;N;;;;;-13420;EGYPTIAN HIEROGLYPH AA018;Lo;0;L;;;;;N;;;;;-13421;EGYPTIAN HIEROGLYPH AA019;Lo;0;L;;;;;N;;;;;-13422;EGYPTIAN HIEROGLYPH AA020;Lo;0;L;;;;;N;;;;;-13423;EGYPTIAN HIEROGLYPH AA021;Lo;0;L;;;;;N;;;;;-13424;EGYPTIAN HIEROGLYPH AA022;Lo;0;L;;;;;N;;;;;-13425;EGYPTIAN HIEROGLYPH AA023;Lo;0;L;;;;;N;;;;;-13426;EGYPTIAN HIEROGLYPH AA024;Lo;0;L;;;;;N;;;;;-13427;EGYPTIAN HIEROGLYPH AA025;Lo;0;L;;;;;N;;;;;-13428;EGYPTIAN HIEROGLYPH AA026;Lo;0;L;;;;;N;;;;;-13429;EGYPTIAN HIEROGLYPH AA027;Lo;0;L;;;;;N;;;;;-1342A;EGYPTIAN HIEROGLYPH AA028;Lo;0;L;;;;;N;;;;;-1342B;EGYPTIAN HIEROGLYPH AA029;Lo;0;L;;;;;N;;;;;-1342C;EGYPTIAN HIEROGLYPH AA030;Lo;0;L;;;;;N;;;;;-1342D;EGYPTIAN HIEROGLYPH AA031;Lo;0;L;;;;;N;;;;;-1342E;EGYPTIAN HIEROGLYPH AA032;Lo;0;L;;;;;N;;;;;-16800;BAMUM LETTER PHASE-A NGKUE MFON;Lo;0;L;;;;;N;;;;;-16801;BAMUM LETTER PHASE-A GBIEE FON;Lo;0;L;;;;;N;;;;;-16802;BAMUM LETTER PHASE-A PON MFON PIPAEMGBIEE;Lo;0;L;;;;;N;;;;;-16803;BAMUM LETTER PHASE-A PON MFON PIPAEMBA;Lo;0;L;;;;;N;;;;;-16804;BAMUM LETTER PHASE-A NAA MFON;Lo;0;L;;;;;N;;;;;-16805;BAMUM LETTER PHASE-A SHUENSHUET;Lo;0;L;;;;;N;;;;;-16806;BAMUM LETTER PHASE-A TITA MFON;Lo;0;L;;;;;N;;;;;-16807;BAMUM LETTER PHASE-A NZA MFON;Lo;0;L;;;;;N;;;;;-16808;BAMUM LETTER PHASE-A SHINDA PA NJI;Lo;0;L;;;;;N;;;;;-16809;BAMUM LETTER PHASE-A PON PA NJI PIPAEMGBIEE;Lo;0;L;;;;;N;;;;;-1680A;BAMUM LETTER PHASE-A PON PA NJI PIPAEMBA;Lo;0;L;;;;;N;;;;;-1680B;BAMUM LETTER PHASE-A MAEMBGBIEE;Lo;0;L;;;;;N;;;;;-1680C;BAMUM LETTER PHASE-A TU MAEMBA;Lo;0;L;;;;;N;;;;;-1680D;BAMUM LETTER PHASE-A NGANGU;Lo;0;L;;;;;N;;;;;-1680E;BAMUM LETTER PHASE-A MAEMVEUX;Lo;0;L;;;;;N;;;;;-1680F;BAMUM LETTER PHASE-A MANSUAE;Lo;0;L;;;;;N;;;;;-16810;BAMUM LETTER PHASE-A MVEUAENGAM;Lo;0;L;;;;;N;;;;;-16811;BAMUM LETTER PHASE-A SEUNYAM;Lo;0;L;;;;;N;;;;;-16812;BAMUM LETTER PHASE-A NTOQPEN;Lo;0;L;;;;;N;;;;;-16813;BAMUM LETTER PHASE-A KEUKEUTNDA;Lo;0;L;;;;;N;;;;;-16814;BAMUM LETTER PHASE-A NKINDI;Lo;0;L;;;;;N;;;;;-16815;BAMUM LETTER PHASE-A SUU;Lo;0;L;;;;;N;;;;;-16816;BAMUM LETTER PHASE-A NGKUENZEUM;Lo;0;L;;;;;N;;;;;-16817;BAMUM LETTER PHASE-A LAPAQ;Lo;0;L;;;;;N;;;;;-16818;BAMUM LETTER PHASE-A LET KUT;Lo;0;L;;;;;N;;;;;-16819;BAMUM LETTER PHASE-A NTAP MFAA;Lo;0;L;;;;;N;;;;;-1681A;BAMUM LETTER PHASE-A MAEKEUP;Lo;0;L;;;;;N;;;;;-1681B;BAMUM LETTER PHASE-A PASHAE;Lo;0;L;;;;;N;;;;;-1681C;BAMUM LETTER PHASE-A GHEUAERAE;Lo;0;L;;;;;N;;;;;-1681D;BAMUM LETTER PHASE-A PAMSHAE;Lo;0;L;;;;;N;;;;;-1681E;BAMUM LETTER PHASE-A MON NGGEUAET;Lo;0;L;;;;;N;;;;;-1681F;BAMUM LETTER PHASE-A NZUN MEUT;Lo;0;L;;;;;N;;;;;-16820;BAMUM LETTER PHASE-A U YUQ NAE;Lo;0;L;;;;;N;;;;;-16821;BAMUM LETTER PHASE-A GHEUAEGHEUAE;Lo;0;L;;;;;N;;;;;-16822;BAMUM LETTER PHASE-A NTAP NTAA;Lo;0;L;;;;;N;;;;;-16823;BAMUM LETTER PHASE-A SISA;Lo;0;L;;;;;N;;;;;-16824;BAMUM LETTER PHASE-A MGBASA;Lo;0;L;;;;;N;;;;;-16825;BAMUM LETTER PHASE-A MEUNJOMNDEUQ;Lo;0;L;;;;;N;;;;;-16826;BAMUM LETTER PHASE-A MOOMPUQ;Lo;0;L;;;;;N;;;;;-16827;BAMUM LETTER PHASE-A KAFA;Lo;0;L;;;;;N;;;;;-16828;BAMUM LETTER PHASE-A PA LEERAEWA;Lo;0;L;;;;;N;;;;;-16829;BAMUM LETTER PHASE-A NDA LEERAEWA;Lo;0;L;;;;;N;;;;;-1682A;BAMUM LETTER PHASE-A PET;Lo;0;L;;;;;N;;;;;-1682B;BAMUM LETTER PHASE-A MAEMKPEN;Lo;0;L;;;;;N;;;;;-1682C;BAMUM LETTER PHASE-A NIKA;Lo;0;L;;;;;N;;;;;-1682D;BAMUM LETTER PHASE-A PUP;Lo;0;L;;;;;N;;;;;-1682E;BAMUM LETTER PHASE-A TUAEP;Lo;0;L;;;;;N;;;;;-1682F;BAMUM LETTER PHASE-A LUAEP;Lo;0;L;;;;;N;;;;;-16830;BAMUM LETTER PHASE-A SONJAM;Lo;0;L;;;;;N;;;;;-16831;BAMUM LETTER PHASE-A TEUTEUWEN;Lo;0;L;;;;;N;;;;;-16832;BAMUM LETTER PHASE-A MAENYI;Lo;0;L;;;;;N;;;;;-16833;BAMUM LETTER PHASE-A KET;Lo;0;L;;;;;N;;;;;-16834;BAMUM LETTER PHASE-A NDAANGGEUAET;Lo;0;L;;;;;N;;;;;-16835;BAMUM LETTER PHASE-A KUOQ;Lo;0;L;;;;;N;;;;;-16836;BAMUM LETTER PHASE-A MOOMEUT;Lo;0;L;;;;;N;;;;;-16837;BAMUM LETTER PHASE-A SHUM;Lo;0;L;;;;;N;;;;;-16838;BAMUM LETTER PHASE-A LOMMAE;Lo;0;L;;;;;N;;;;;-16839;BAMUM LETTER PHASE-A FIRI;Lo;0;L;;;;;N;;;;;-1683A;BAMUM LETTER PHASE-A ROM;Lo;0;L;;;;;N;;;;;-1683B;BAMUM LETTER PHASE-A KPOQ;Lo;0;L;;;;;N;;;;;-1683C;BAMUM LETTER PHASE-A SOQ;Lo;0;L;;;;;N;;;;;-1683D;BAMUM LETTER PHASE-A MAP PIEET;Lo;0;L;;;;;N;;;;;-1683E;BAMUM LETTER PHASE-A SHIRAE;Lo;0;L;;;;;N;;;;;-1683F;BAMUM LETTER PHASE-A NTAP;Lo;0;L;;;;;N;;;;;-16840;BAMUM LETTER PHASE-A SHOQ NSHUT YUM;Lo;0;L;;;;;N;;;;;-16841;BAMUM LETTER PHASE-A NYIT MONGKEUAEQ;Lo;0;L;;;;;N;;;;;-16842;BAMUM LETTER PHASE-A PAARAE;Lo;0;L;;;;;N;;;;;-16843;BAMUM LETTER PHASE-A NKAARAE;Lo;0;L;;;;;N;;;;;-16844;BAMUM LETTER PHASE-A UNKNOWN;Lo;0;L;;;;;N;;;;;-16845;BAMUM LETTER PHASE-A NGGEN;Lo;0;L;;;;;N;;;;;-16846;BAMUM LETTER PHASE-A MAESI;Lo;0;L;;;;;N;;;;;-16847;BAMUM LETTER PHASE-A NJAM;Lo;0;L;;;;;N;;;;;-16848;BAMUM LETTER PHASE-A MBANYI;Lo;0;L;;;;;N;;;;;-16849;BAMUM LETTER PHASE-A NYET;Lo;0;L;;;;;N;;;;;-1684A;BAMUM LETTER PHASE-A TEUAEN;Lo;0;L;;;;;N;;;;;-1684B;BAMUM LETTER PHASE-A SOT;Lo;0;L;;;;;N;;;;;-1684C;BAMUM LETTER PHASE-A PAAM;Lo;0;L;;;;;N;;;;;-1684D;BAMUM LETTER PHASE-A NSHIEE;Lo;0;L;;;;;N;;;;;-1684E;BAMUM LETTER PHASE-A MAEM;Lo;0;L;;;;;N;;;;;-1684F;BAMUM LETTER PHASE-A NYI;Lo;0;L;;;;;N;;;;;-16850;BAMUM LETTER PHASE-A KAQ;Lo;0;L;;;;;N;;;;;-16851;BAMUM LETTER PHASE-A NSHA;Lo;0;L;;;;;N;;;;;-16852;BAMUM LETTER PHASE-A VEE;Lo;0;L;;;;;N;;;;;-16853;BAMUM LETTER PHASE-A LU;Lo;0;L;;;;;N;;;;;-16854;BAMUM LETTER PHASE-A NEN;Lo;0;L;;;;;N;;;;;-16855;BAMUM LETTER PHASE-A NAQ;Lo;0;L;;;;;N;;;;;-16856;BAMUM LETTER PHASE-A MBAQ;Lo;0;L;;;;;N;;;;;-16857;BAMUM LETTER PHASE-B NSHUET;Lo;0;L;;;;;N;;;;;-16858;BAMUM LETTER PHASE-B TU MAEMGBIEE;Lo;0;L;;;;;N;;;;;-16859;BAMUM LETTER PHASE-B SIEE;Lo;0;L;;;;;N;;;;;-1685A;BAMUM LETTER PHASE-B SET TU;Lo;0;L;;;;;N;;;;;-1685B;BAMUM LETTER PHASE-B LOM NTEUM;Lo;0;L;;;;;N;;;;;-1685C;BAMUM LETTER PHASE-B MBA MAELEE;Lo;0;L;;;;;N;;;;;-1685D;BAMUM LETTER PHASE-B KIEEM;Lo;0;L;;;;;N;;;;;-1685E;BAMUM LETTER PHASE-B YEURAE;Lo;0;L;;;;;N;;;;;-1685F;BAMUM LETTER PHASE-B MBAARAE;Lo;0;L;;;;;N;;;;;-16860;BAMUM LETTER PHASE-B KAM;Lo;0;L;;;;;N;;;;;-16861;BAMUM LETTER PHASE-B PEESHI;Lo;0;L;;;;;N;;;;;-16862;BAMUM LETTER PHASE-B YAFU LEERAEWA;Lo;0;L;;;;;N;;;;;-16863;BAMUM LETTER PHASE-B LAM NSHUT NYAM;Lo;0;L;;;;;N;;;;;-16864;BAMUM LETTER PHASE-B NTIEE SHEUOQ;Lo;0;L;;;;;N;;;;;-16865;BAMUM LETTER PHASE-B NDU NJAA;Lo;0;L;;;;;N;;;;;-16866;BAMUM LETTER PHASE-B GHEUGHEUAEM;Lo;0;L;;;;;N;;;;;-16867;BAMUM LETTER PHASE-B PIT;Lo;0;L;;;;;N;;;;;-16868;BAMUM LETTER PHASE-B TU NSIEE;Lo;0;L;;;;;N;;;;;-16869;BAMUM LETTER PHASE-B SHET NJAQ;Lo;0;L;;;;;N;;;;;-1686A;BAMUM LETTER PHASE-B SHEUAEQTU;Lo;0;L;;;;;N;;;;;-1686B;BAMUM LETTER PHASE-B MFON TEUAEQ;Lo;0;L;;;;;N;;;;;-1686C;BAMUM LETTER PHASE-B MBIT MBAAKET;Lo;0;L;;;;;N;;;;;-1686D;BAMUM LETTER PHASE-B NYI NTEUM;Lo;0;L;;;;;N;;;;;-1686E;BAMUM LETTER PHASE-B KEUPUQ;Lo;0;L;;;;;N;;;;;-1686F;BAMUM LETTER PHASE-B GHEUGHEN;Lo;0;L;;;;;N;;;;;-16870;BAMUM LETTER PHASE-B KEUYEUX;Lo;0;L;;;;;N;;;;;-16871;BAMUM LETTER PHASE-B LAANAE;Lo;0;L;;;;;N;;;;;-16872;BAMUM LETTER PHASE-B PARUM;Lo;0;L;;;;;N;;;;;-16873;BAMUM LETTER PHASE-B VEUM;Lo;0;L;;;;;N;;;;;-16874;BAMUM LETTER PHASE-B NGKINDI MVOP;Lo;0;L;;;;;N;;;;;-16875;BAMUM LETTER PHASE-B NGGEU MBU;Lo;0;L;;;;;N;;;;;-16876;BAMUM LETTER PHASE-B WUAET;Lo;0;L;;;;;N;;;;;-16877;BAMUM LETTER PHASE-B SAKEUAE;Lo;0;L;;;;;N;;;;;-16878;BAMUM LETTER PHASE-B TAAM;Lo;0;L;;;;;N;;;;;-16879;BAMUM LETTER PHASE-B MEUQ;Lo;0;L;;;;;N;;;;;-1687A;BAMUM LETTER PHASE-B NGGUOQ;Lo;0;L;;;;;N;;;;;-1687B;BAMUM LETTER PHASE-B NGGUOQ LARGE;Lo;0;L;;;;;N;;;;;-1687C;BAMUM LETTER PHASE-B MFIYAQ;Lo;0;L;;;;;N;;;;;-1687D;BAMUM LETTER PHASE-B SUE;Lo;0;L;;;;;N;;;;;-1687E;BAMUM LETTER PHASE-B MBEURI;Lo;0;L;;;;;N;;;;;-1687F;BAMUM LETTER PHASE-B MONTIEEN;Lo;0;L;;;;;N;;;;;-16880;BAMUM LETTER PHASE-B NYAEMAE;Lo;0;L;;;;;N;;;;;-16881;BAMUM LETTER PHASE-B PUNGAAM;Lo;0;L;;;;;N;;;;;-16882;BAMUM LETTER PHASE-B MEUT NGGEET;Lo;0;L;;;;;N;;;;;-16883;BAMUM LETTER PHASE-B FEUX;Lo;0;L;;;;;N;;;;;-16884;BAMUM LETTER PHASE-B MBUOQ;Lo;0;L;;;;;N;;;;;-16885;BAMUM LETTER PHASE-B FEE;Lo;0;L;;;;;N;;;;;-16886;BAMUM LETTER PHASE-B KEUAEM;Lo;0;L;;;;;N;;;;;-16887;BAMUM LETTER PHASE-B MA NJEUAENA;Lo;0;L;;;;;N;;;;;-16888;BAMUM LETTER PHASE-B MA NJUQA;Lo;0;L;;;;;N;;;;;-16889;BAMUM LETTER PHASE-B LET;Lo;0;L;;;;;N;;;;;-1688A;BAMUM LETTER PHASE-B NGGAAM;Lo;0;L;;;;;N;;;;;-1688B;BAMUM LETTER PHASE-B NSEN;Lo;0;L;;;;;N;;;;;-1688C;BAMUM LETTER PHASE-B MA;Lo;0;L;;;;;N;;;;;-1688D;BAMUM LETTER PHASE-B KIQ;Lo;0;L;;;;;N;;;;;-1688E;BAMUM LETTER PHASE-B NGOM;Lo;0;L;;;;;N;;;;;-1688F;BAMUM LETTER PHASE-C NGKUE MAEMBA;Lo;0;L;;;;;N;;;;;-16890;BAMUM LETTER PHASE-C NZA;Lo;0;L;;;;;N;;;;;-16891;BAMUM LETTER PHASE-C YUM;Lo;0;L;;;;;N;;;;;-16892;BAMUM LETTER PHASE-C WANGKUOQ;Lo;0;L;;;;;N;;;;;-16893;BAMUM LETTER PHASE-C NGGEN;Lo;0;L;;;;;N;;;;;-16894;BAMUM LETTER PHASE-C NDEUAEREE;Lo;0;L;;;;;N;;;;;-16895;BAMUM LETTER PHASE-C NGKAQ;Lo;0;L;;;;;N;;;;;-16896;BAMUM LETTER PHASE-C GHARAE;Lo;0;L;;;;;N;;;;;-16897;BAMUM LETTER PHASE-C MBEEKEET;Lo;0;L;;;;;N;;;;;-16898;BAMUM LETTER PHASE-C GBAYI;Lo;0;L;;;;;N;;;;;-16899;BAMUM LETTER PHASE-C NYIR MKPARAQ MEUN;Lo;0;L;;;;;N;;;;;-1689A;BAMUM LETTER PHASE-C NTU MBIT;Lo;0;L;;;;;N;;;;;-1689B;BAMUM LETTER PHASE-C MBEUM;Lo;0;L;;;;;N;;;;;-1689C;BAMUM LETTER PHASE-C PIRIEEN;Lo;0;L;;;;;N;;;;;-1689D;BAMUM LETTER PHASE-C NDOMBU;Lo;0;L;;;;;N;;;;;-1689E;BAMUM LETTER PHASE-C MBAA CABBAGE-TREE;Lo;0;L;;;;;N;;;;;-1689F;BAMUM LETTER PHASE-C KEUSHEUAEP;Lo;0;L;;;;;N;;;;;-168A0;BAMUM LETTER PHASE-C GHAP;Lo;0;L;;;;;N;;;;;-168A1;BAMUM LETTER PHASE-C KEUKAQ;Lo;0;L;;;;;N;;;;;-168A2;BAMUM LETTER PHASE-C YU MUOMAE;Lo;0;L;;;;;N;;;;;-168A3;BAMUM LETTER PHASE-C NZEUM;Lo;0;L;;;;;N;;;;;-168A4;BAMUM LETTER PHASE-C MBUE;Lo;0;L;;;;;N;;;;;-168A5;BAMUM LETTER PHASE-C NSEUAEN;Lo;0;L;;;;;N;;;;;-168A6;BAMUM LETTER PHASE-C MBIT;Lo;0;L;;;;;N;;;;;-168A7;BAMUM LETTER PHASE-C YEUQ;Lo;0;L;;;;;N;;;;;-168A8;BAMUM LETTER PHASE-C KPARAQ;Lo;0;L;;;;;N;;;;;-168A9;BAMUM LETTER PHASE-C KAA;Lo;0;L;;;;;N;;;;;-168AA;BAMUM LETTER PHASE-C SEUX;Lo;0;L;;;;;N;;;;;-168AB;BAMUM LETTER PHASE-C NDIDA;Lo;0;L;;;;;N;;;;;-168AC;BAMUM LETTER PHASE-C TAASHAE;Lo;0;L;;;;;N;;;;;-168AD;BAMUM LETTER PHASE-C NJUEQ;Lo;0;L;;;;;N;;;;;-168AE;BAMUM LETTER PHASE-C TITA YUE;Lo;0;L;;;;;N;;;;;-168AF;BAMUM LETTER PHASE-C SUAET;Lo;0;L;;;;;N;;;;;-168B0;BAMUM LETTER PHASE-C NGGUAEN NYAM;Lo;0;L;;;;;N;;;;;-168B1;BAMUM LETTER PHASE-C VEUX;Lo;0;L;;;;;N;;;;;-168B2;BAMUM LETTER PHASE-C NANSANAQ;Lo;0;L;;;;;N;;;;;-168B3;BAMUM LETTER PHASE-C MA KEUAERI;Lo;0;L;;;;;N;;;;;-168B4;BAMUM LETTER PHASE-C NTAA;Lo;0;L;;;;;N;;;;;-168B5;BAMUM LETTER PHASE-C NGGUON;Lo;0;L;;;;;N;;;;;-168B6;BAMUM LETTER PHASE-C LAP;Lo;0;L;;;;;N;;;;;-168B7;BAMUM LETTER PHASE-C MBIRIEEN;Lo;0;L;;;;;N;;;;;-168B8;BAMUM LETTER PHASE-C MGBASAQ;Lo;0;L;;;;;N;;;;;-168B9;BAMUM LETTER PHASE-C NTEUNGBA;Lo;0;L;;;;;N;;;;;-168BA;BAMUM LETTER PHASE-C TEUTEUX;Lo;0;L;;;;;N;;;;;-168BB;BAMUM LETTER PHASE-C NGGUM;Lo;0;L;;;;;N;;;;;-168BC;BAMUM LETTER PHASE-C FUE;Lo;0;L;;;;;N;;;;;-168BD;BAMUM LETTER PHASE-C NDEUT;Lo;0;L;;;;;N;;;;;-168BE;BAMUM LETTER PHASE-C NSA;Lo;0;L;;;;;N;;;;;-168BF;BAMUM LETTER PHASE-C NSHAQ;Lo;0;L;;;;;N;;;;;-168C0;BAMUM LETTER PHASE-C BUNG;Lo;0;L;;;;;N;;;;;-168C1;BAMUM LETTER PHASE-C VEUAEPEN;Lo;0;L;;;;;N;;;;;-168C2;BAMUM LETTER PHASE-C MBERAE;Lo;0;L;;;;;N;;;;;-168C3;BAMUM LETTER PHASE-C RU;Lo;0;L;;;;;N;;;;;-168C4;BAMUM LETTER PHASE-C NJAEM;Lo;0;L;;;;;N;;;;;-168C5;BAMUM LETTER PHASE-C LAM;Lo;0;L;;;;;N;;;;;-168C6;BAMUM LETTER PHASE-C TITUAEP;Lo;0;L;;;;;N;;;;;-168C7;BAMUM LETTER PHASE-C NSUOT NGOM;Lo;0;L;;;;;N;;;;;-168C8;BAMUM LETTER PHASE-C NJEEEE;Lo;0;L;;;;;N;;;;;-168C9;BAMUM LETTER PHASE-C KET;Lo;0;L;;;;;N;;;;;-168CA;BAMUM LETTER PHASE-C NGGU;Lo;0;L;;;;;N;;;;;-168CB;BAMUM LETTER PHASE-C MAESI;Lo;0;L;;;;;N;;;;;-168CC;BAMUM LETTER PHASE-C MBUAEM;Lo;0;L;;;;;N;;;;;-168CD;BAMUM LETTER PHASE-C LU;Lo;0;L;;;;;N;;;;;-168CE;BAMUM LETTER PHASE-C KUT;Lo;0;L;;;;;N;;;;;-168CF;BAMUM LETTER PHASE-C NJAM;Lo;0;L;;;;;N;;;;;-168D0;BAMUM LETTER PHASE-C NGOM;Lo;0;L;;;;;N;;;;;-168D1;BAMUM LETTER PHASE-C WUP;Lo;0;L;;;;;N;;;;;-168D2;BAMUM LETTER PHASE-C NGGUEET;Lo;0;L;;;;;N;;;;;-168D3;BAMUM LETTER PHASE-C NSOM;Lo;0;L;;;;;N;;;;;-168D4;BAMUM LETTER PHASE-C NTEN;Lo;0;L;;;;;N;;;;;-168D5;BAMUM LETTER PHASE-C KUOP NKAARAE;Lo;0;L;;;;;N;;;;;-168D6;BAMUM LETTER PHASE-C NSUN;Lo;0;L;;;;;N;;;;;-168D7;BAMUM LETTER PHASE-C NDAM;Lo;0;L;;;;;N;;;;;-168D8;BAMUM LETTER PHASE-C MA NSIEE;Lo;0;L;;;;;N;;;;;-168D9;BAMUM LETTER PHASE-C YAA;Lo;0;L;;;;;N;;;;;-168DA;BAMUM LETTER PHASE-C NDAP;Lo;0;L;;;;;N;;;;;-168DB;BAMUM LETTER PHASE-C SHUEQ;Lo;0;L;;;;;N;;;;;-168DC;BAMUM LETTER PHASE-C SETFON;Lo;0;L;;;;;N;;;;;-168DD;BAMUM LETTER PHASE-C MBI;Lo;0;L;;;;;N;;;;;-168DE;BAMUM LETTER PHASE-C MAEMBA;Lo;0;L;;;;;N;;;;;-168DF;BAMUM LETTER PHASE-C MBANYI;Lo;0;L;;;;;N;;;;;-168E0;BAMUM LETTER PHASE-C KEUSEUX;Lo;0;L;;;;;N;;;;;-168E1;BAMUM LETTER PHASE-C MBEUX;Lo;0;L;;;;;N;;;;;-168E2;BAMUM LETTER PHASE-C KEUM;Lo;0;L;;;;;N;;;;;-168E3;BAMUM LETTER PHASE-C MBAA PICKET;Lo;0;L;;;;;N;;;;;-168E4;BAMUM LETTER PHASE-C YUWOQ;Lo;0;L;;;;;N;;;;;-168E5;BAMUM LETTER PHASE-C NJEUX;Lo;0;L;;;;;N;;;;;-168E6;BAMUM LETTER PHASE-C MIEE;Lo;0;L;;;;;N;;;;;-168E7;BAMUM LETTER PHASE-C MUAE;Lo;0;L;;;;;N;;;;;-168E8;BAMUM LETTER PHASE-C SHIQ;Lo;0;L;;;;;N;;;;;-168E9;BAMUM LETTER PHASE-C KEN LAW;Lo;0;L;;;;;N;;;;;-168EA;BAMUM LETTER PHASE-C KEN FATIGUE;Lo;0;L;;;;;N;;;;;-168EB;BAMUM LETTER PHASE-C NGAQ;Lo;0;L;;;;;N;;;;;-168EC;BAMUM LETTER PHASE-C NAQ;Lo;0;L;;;;;N;;;;;-168ED;BAMUM LETTER PHASE-C LIQ;Lo;0;L;;;;;N;;;;;-168EE;BAMUM LETTER PHASE-C PIN;Lo;0;L;;;;;N;;;;;-168EF;BAMUM LETTER PHASE-C PEN;Lo;0;L;;;;;N;;;;;-168F0;BAMUM LETTER PHASE-C TET;Lo;0;L;;;;;N;;;;;-168F1;BAMUM LETTER PHASE-D MBUO;Lo;0;L;;;;;N;;;;;-168F2;BAMUM LETTER PHASE-D WAP;Lo;0;L;;;;;N;;;;;-168F3;BAMUM LETTER PHASE-D NJI;Lo;0;L;;;;;N;;;;;-168F4;BAMUM LETTER PHASE-D MFON;Lo;0;L;;;;;N;;;;;-168F5;BAMUM LETTER PHASE-D NJIEE;Lo;0;L;;;;;N;;;;;-168F6;BAMUM LETTER PHASE-D LIEE;Lo;0;L;;;;;N;;;;;-168F7;BAMUM LETTER PHASE-D NJEUT;Lo;0;L;;;;;N;;;;;-168F8;BAMUM LETTER PHASE-D NSHEE;Lo;0;L;;;;;N;;;;;-168F9;BAMUM LETTER PHASE-D NGGAAMAE;Lo;0;L;;;;;N;;;;;-168FA;BAMUM LETTER PHASE-D NYAM;Lo;0;L;;;;;N;;;;;-168FB;BAMUM LETTER PHASE-D WUAEN;Lo;0;L;;;;;N;;;;;-168FC;BAMUM LETTER PHASE-D NGKUN;Lo;0;L;;;;;N;;;;;-168FD;BAMUM LETTER PHASE-D SHEE;Lo;0;L;;;;;N;;;;;-168FE;BAMUM LETTER PHASE-D NGKAP;Lo;0;L;;;;;N;;;;;-168FF;BAMUM LETTER PHASE-D KEUAETMEUN;Lo;0;L;;;;;N;;;;;-16900;BAMUM LETTER PHASE-D TEUT;Lo;0;L;;;;;N;;;;;-16901;BAMUM LETTER PHASE-D SHEUAE;Lo;0;L;;;;;N;;;;;-16902;BAMUM LETTER PHASE-D NJAP;Lo;0;L;;;;;N;;;;;-16903;BAMUM LETTER PHASE-D SUE;Lo;0;L;;;;;N;;;;;-16904;BAMUM LETTER PHASE-D KET;Lo;0;L;;;;;N;;;;;-16905;BAMUM LETTER PHASE-D YAEMMAE;Lo;0;L;;;;;N;;;;;-16906;BAMUM LETTER PHASE-D KUOM;Lo;0;L;;;;;N;;;;;-16907;BAMUM LETTER PHASE-D SAP;Lo;0;L;;;;;N;;;;;-16908;BAMUM LETTER PHASE-D MFEUT;Lo;0;L;;;;;N;;;;;-16909;BAMUM LETTER PHASE-D NDEUX;Lo;0;L;;;;;N;;;;;-1690A;BAMUM LETTER PHASE-D MALEERI;Lo;0;L;;;;;N;;;;;-1690B;BAMUM LETTER PHASE-D MEUT;Lo;0;L;;;;;N;;;;;-1690C;BAMUM LETTER PHASE-D SEUAEQ;Lo;0;L;;;;;N;;;;;-1690D;BAMUM LETTER PHASE-D YEN;Lo;0;L;;;;;N;;;;;-1690E;BAMUM LETTER PHASE-D NJEUAEM;Lo;0;L;;;;;N;;;;;-1690F;BAMUM LETTER PHASE-D KEUOT MBUAE;Lo;0;L;;;;;N;;;;;-16910;BAMUM LETTER PHASE-D NGKEURI;Lo;0;L;;;;;N;;;;;-16911;BAMUM LETTER PHASE-D TU;Lo;0;L;;;;;N;;;;;-16912;BAMUM LETTER PHASE-D GHAA;Lo;0;L;;;;;N;;;;;-16913;BAMUM LETTER PHASE-D NGKYEE;Lo;0;L;;;;;N;;;;;-16914;BAMUM LETTER PHASE-D FEUFEUAET;Lo;0;L;;;;;N;;;;;-16915;BAMUM LETTER PHASE-D NDEE;Lo;0;L;;;;;N;;;;;-16916;BAMUM LETTER PHASE-D MGBOFUM;Lo;0;L;;;;;N;;;;;-16917;BAMUM LETTER PHASE-D LEUAEP;Lo;0;L;;;;;N;;;;;-16918;BAMUM LETTER PHASE-D NDON;Lo;0;L;;;;;N;;;;;-16919;BAMUM LETTER PHASE-D MONI;Lo;0;L;;;;;N;;;;;-1691A;BAMUM LETTER PHASE-D MGBEUN;Lo;0;L;;;;;N;;;;;-1691B;BAMUM LETTER PHASE-D PUUT;Lo;0;L;;;;;N;;;;;-1691C;BAMUM LETTER PHASE-D MGBIEE;Lo;0;L;;;;;N;;;;;-1691D;BAMUM LETTER PHASE-D MFO;Lo;0;L;;;;;N;;;;;-1691E;BAMUM LETTER PHASE-D LUM;Lo;0;L;;;;;N;;;;;-1691F;BAMUM LETTER PHASE-D NSIEEP;Lo;0;L;;;;;N;;;;;-16920;BAMUM LETTER PHASE-D MBAA;Lo;0;L;;;;;N;;;;;-16921;BAMUM LETTER PHASE-D KWAET;Lo;0;L;;;;;N;;;;;-16922;BAMUM LETTER PHASE-D NYET;Lo;0;L;;;;;N;;;;;-16923;BAMUM LETTER PHASE-D TEUAEN;Lo;0;L;;;;;N;;;;;-16924;BAMUM LETTER PHASE-D SOT;Lo;0;L;;;;;N;;;;;-16925;BAMUM LETTER PHASE-D YUWOQ;Lo;0;L;;;;;N;;;;;-16926;BAMUM LETTER PHASE-D KEUM;Lo;0;L;;;;;N;;;;;-16927;BAMUM LETTER PHASE-D RAEM;Lo;0;L;;;;;N;;;;;-16928;BAMUM LETTER PHASE-D TEEEE;Lo;0;L;;;;;N;;;;;-16929;BAMUM LETTER PHASE-D NGKEUAEQ;Lo;0;L;;;;;N;;;;;-1692A;BAMUM LETTER PHASE-D MFEUAE;Lo;0;L;;;;;N;;;;;-1692B;BAMUM LETTER PHASE-D NSIEET;Lo;0;L;;;;;N;;;;;-1692C;BAMUM LETTER PHASE-D KEUP;Lo;0;L;;;;;N;;;;;-1692D;BAMUM LETTER PHASE-D PIP;Lo;0;L;;;;;N;;;;;-1692E;BAMUM LETTER PHASE-D PEUTAE;Lo;0;L;;;;;N;;;;;-1692F;BAMUM LETTER PHASE-D NYUE;Lo;0;L;;;;;N;;;;;-16930;BAMUM LETTER PHASE-D LET;Lo;0;L;;;;;N;;;;;-16931;BAMUM LETTER PHASE-D NGGAAM;Lo;0;L;;;;;N;;;;;-16932;BAMUM LETTER PHASE-D MFIEE;Lo;0;L;;;;;N;;;;;-16933;BAMUM LETTER PHASE-D NGGWAEN;Lo;0;L;;;;;N;;;;;-16934;BAMUM LETTER PHASE-D YUOM;Lo;0;L;;;;;N;;;;;-16935;BAMUM LETTER PHASE-D PAP;Lo;0;L;;;;;N;;;;;-16936;BAMUM LETTER PHASE-D YUOP;Lo;0;L;;;;;N;;;;;-16937;BAMUM LETTER PHASE-D NDAM;Lo;0;L;;;;;N;;;;;-16938;BAMUM LETTER PHASE-D NTEUM;Lo;0;L;;;;;N;;;;;-16939;BAMUM LETTER PHASE-D SUAE;Lo;0;L;;;;;N;;;;;-1693A;BAMUM LETTER PHASE-D KUN;Lo;0;L;;;;;N;;;;;-1693B;BAMUM LETTER PHASE-D NGGEUX;Lo;0;L;;;;;N;;;;;-1693C;BAMUM LETTER PHASE-D NGKIEE;Lo;0;L;;;;;N;;;;;-1693D;BAMUM LETTER PHASE-D TUOT;Lo;0;L;;;;;N;;;;;-1693E;BAMUM LETTER PHASE-D MEUN;Lo;0;L;;;;;N;;;;;-1693F;BAMUM LETTER PHASE-D KUQ;Lo;0;L;;;;;N;;;;;-16940;BAMUM LETTER PHASE-D NSUM;Lo;0;L;;;;;N;;;;;-16941;BAMUM LETTER PHASE-D TEUN;Lo;0;L;;;;;N;;;;;-16942;BAMUM LETTER PHASE-D MAENJET;Lo;0;L;;;;;N;;;;;-16943;BAMUM LETTER PHASE-D NGGAP;Lo;0;L;;;;;N;;;;;-16944;BAMUM LETTER PHASE-D LEUM;Lo;0;L;;;;;N;;;;;-16945;BAMUM LETTER PHASE-D NGGUOM;Lo;0;L;;;;;N;;;;;-16946;BAMUM LETTER PHASE-D NSHUT;Lo;0;L;;;;;N;;;;;-16947;BAMUM LETTER PHASE-D NJUEQ;Lo;0;L;;;;;N;;;;;-16948;BAMUM LETTER PHASE-D GHEUAE;Lo;0;L;;;;;N;;;;;-16949;BAMUM LETTER PHASE-D KU;Lo;0;L;;;;;N;;;;;-1694A;BAMUM LETTER PHASE-D REN OLD;Lo;0;L;;;;;N;;;;;-1694B;BAMUM LETTER PHASE-D TAE;Lo;0;L;;;;;N;;;;;-1694C;BAMUM LETTER PHASE-D TOQ;Lo;0;L;;;;;N;;;;;-1694D;BAMUM LETTER PHASE-D NYI;Lo;0;L;;;;;N;;;;;-1694E;BAMUM LETTER PHASE-D RII;Lo;0;L;;;;;N;;;;;-1694F;BAMUM LETTER PHASE-D LEEEE;Lo;0;L;;;;;N;;;;;-16950;BAMUM LETTER PHASE-D MEEEE;Lo;0;L;;;;;N;;;;;-16951;BAMUM LETTER PHASE-D M;Lo;0;L;;;;;N;;;;;-16952;BAMUM LETTER PHASE-D SUU;Lo;0;L;;;;;N;;;;;-16953;BAMUM LETTER PHASE-D MU;Lo;0;L;;;;;N;;;;;-16954;BAMUM LETTER PHASE-D SHII;Lo;0;L;;;;;N;;;;;-16955;BAMUM LETTER PHASE-D SHEUX;Lo;0;L;;;;;N;;;;;-16956;BAMUM LETTER PHASE-D KYEE;Lo;0;L;;;;;N;;;;;-16957;BAMUM LETTER PHASE-D NU;Lo;0;L;;;;;N;;;;;-16958;BAMUM LETTER PHASE-D SHU;Lo;0;L;;;;;N;;;;;-16959;BAMUM LETTER PHASE-D NTEE;Lo;0;L;;;;;N;;;;;-1695A;BAMUM LETTER PHASE-D PEE;Lo;0;L;;;;;N;;;;;-1695B;BAMUM LETTER PHASE-D NI;Lo;0;L;;;;;N;;;;;-1695C;BAMUM LETTER PHASE-D SHOQ;Lo;0;L;;;;;N;;;;;-1695D;BAMUM LETTER PHASE-D PUQ;Lo;0;L;;;;;N;;;;;-1695E;BAMUM LETTER PHASE-D MVOP;Lo;0;L;;;;;N;;;;;-1695F;BAMUM LETTER PHASE-D LOQ;Lo;0;L;;;;;N;;;;;-16960;BAMUM LETTER PHASE-D REN MUCH;Lo;0;L;;;;;N;;;;;-16961;BAMUM LETTER PHASE-D TI;Lo;0;L;;;;;N;;;;;-16962;BAMUM LETTER PHASE-D NTUU;Lo;0;L;;;;;N;;;;;-16963;BAMUM LETTER PHASE-D MBAA SEVEN;Lo;0;L;;;;;N;;;;;-16964;BAMUM LETTER PHASE-D SAQ;Lo;0;L;;;;;N;;;;;-16965;BAMUM LETTER PHASE-D FAA;Lo;0;L;;;;;N;;;;;-16966;BAMUM LETTER PHASE-E NDAP;Lo;0;L;;;;;N;;;;;-16967;BAMUM LETTER PHASE-E TOON;Lo;0;L;;;;;N;;;;;-16968;BAMUM LETTER PHASE-E MBEUM;Lo;0;L;;;;;N;;;;;-16969;BAMUM LETTER PHASE-E LAP;Lo;0;L;;;;;N;;;;;-1696A;BAMUM LETTER PHASE-E VOM;Lo;0;L;;;;;N;;;;;-1696B;BAMUM LETTER PHASE-E LOON;Lo;0;L;;;;;N;;;;;-1696C;BAMUM LETTER PHASE-E PAA;Lo;0;L;;;;;N;;;;;-1696D;BAMUM LETTER PHASE-E SOM;Lo;0;L;;;;;N;;;;;-1696E;BAMUM LETTER PHASE-E RAQ;Lo;0;L;;;;;N;;;;;-1696F;BAMUM LETTER PHASE-E NSHUOP;Lo;0;L;;;;;N;;;;;-16970;BAMUM LETTER PHASE-E NDUN;Lo;0;L;;;;;N;;;;;-16971;BAMUM LETTER PHASE-E PUAE;Lo;0;L;;;;;N;;;;;-16972;BAMUM LETTER PHASE-E TAM;Lo;0;L;;;;;N;;;;;-16973;BAMUM LETTER PHASE-E NGKA;Lo;0;L;;;;;N;;;;;-16974;BAMUM LETTER PHASE-E KPEUX;Lo;0;L;;;;;N;;;;;-16975;BAMUM LETTER PHASE-E WUO;Lo;0;L;;;;;N;;;;;-16976;BAMUM LETTER PHASE-E SEE;Lo;0;L;;;;;N;;;;;-16977;BAMUM LETTER PHASE-E NGGEUAET;Lo;0;L;;;;;N;;;;;-16978;BAMUM LETTER PHASE-E PAAM;Lo;0;L;;;;;N;;;;;-16979;BAMUM LETTER PHASE-E TOO;Lo;0;L;;;;;N;;;;;-1697A;BAMUM LETTER PHASE-E KUOP;Lo;0;L;;;;;N;;;;;-1697B;BAMUM LETTER PHASE-E LOM;Lo;0;L;;;;;N;;;;;-1697C;BAMUM LETTER PHASE-E NSHIEE;Lo;0;L;;;;;N;;;;;-1697D;BAMUM LETTER PHASE-E NGOP;Lo;0;L;;;;;N;;;;;-1697E;BAMUM LETTER PHASE-E MAEM;Lo;0;L;;;;;N;;;;;-1697F;BAMUM LETTER PHASE-E NGKEUX;Lo;0;L;;;;;N;;;;;-16980;BAMUM LETTER PHASE-E NGOQ;Lo;0;L;;;;;N;;;;;-16981;BAMUM LETTER PHASE-E NSHUE;Lo;0;L;;;;;N;;;;;-16982;BAMUM LETTER PHASE-E RIMGBA;Lo;0;L;;;;;N;;;;;-16983;BAMUM LETTER PHASE-E NJEUX;Lo;0;L;;;;;N;;;;;-16984;BAMUM LETTER PHASE-E PEEM;Lo;0;L;;;;;N;;;;;-16985;BAMUM LETTER PHASE-E SAA;Lo;0;L;;;;;N;;;;;-16986;BAMUM LETTER PHASE-E NGGURAE;Lo;0;L;;;;;N;;;;;-16987;BAMUM LETTER PHASE-E MGBA;Lo;0;L;;;;;N;;;;;-16988;BAMUM LETTER PHASE-E GHEUX;Lo;0;L;;;;;N;;;;;-16989;BAMUM LETTER PHASE-E NGKEUAEM;Lo;0;L;;;;;N;;;;;-1698A;BAMUM LETTER PHASE-E NJAEMLI;Lo;0;L;;;;;N;;;;;-1698B;BAMUM LETTER PHASE-E MAP;Lo;0;L;;;;;N;;;;;-1698C;BAMUM LETTER PHASE-E LOOT;Lo;0;L;;;;;N;;;;;-1698D;BAMUM LETTER PHASE-E NGGEEEE;Lo;0;L;;;;;N;;;;;-1698E;BAMUM LETTER PHASE-E NDIQ;Lo;0;L;;;;;N;;;;;-1698F;BAMUM LETTER PHASE-E TAEN NTEUM;Lo;0;L;;;;;N;;;;;-16990;BAMUM LETTER PHASE-E SET;Lo;0;L;;;;;N;;;;;-16991;BAMUM LETTER PHASE-E PUM;Lo;0;L;;;;;N;;;;;-16992;BAMUM LETTER PHASE-E NDAA SOFTNESS;Lo;0;L;;;;;N;;;;;-16993;BAMUM LETTER PHASE-E NGGUAESHAE NYAM;Lo;0;L;;;;;N;;;;;-16994;BAMUM LETTER PHASE-E YIEE;Lo;0;L;;;;;N;;;;;-16995;BAMUM LETTER PHASE-E GHEUN;Lo;0;L;;;;;N;;;;;-16996;BAMUM LETTER PHASE-E TUAE;Lo;0;L;;;;;N;;;;;-16997;BAMUM LETTER PHASE-E YEUAE;Lo;0;L;;;;;N;;;;;-16998;BAMUM LETTER PHASE-E PO;Lo;0;L;;;;;N;;;;;-16999;BAMUM LETTER PHASE-E TUMAE;Lo;0;L;;;;;N;;;;;-1699A;BAMUM LETTER PHASE-E KEUAE;Lo;0;L;;;;;N;;;;;-1699B;BAMUM LETTER PHASE-E SUAEN;Lo;0;L;;;;;N;;;;;-1699C;BAMUM LETTER PHASE-E TEUAEQ;Lo;0;L;;;;;N;;;;;-1699D;BAMUM LETTER PHASE-E VEUAE;Lo;0;L;;;;;N;;;;;-1699E;BAMUM LETTER PHASE-E WEUX;Lo;0;L;;;;;N;;;;;-1699F;BAMUM LETTER PHASE-E LAAM;Lo;0;L;;;;;N;;;;;-169A0;BAMUM LETTER PHASE-E PU;Lo;0;L;;;;;N;;;;;-169A1;BAMUM LETTER PHASE-E TAAQ;Lo;0;L;;;;;N;;;;;-169A2;BAMUM LETTER PHASE-E GHAAMAE;Lo;0;L;;;;;N;;;;;-169A3;BAMUM LETTER PHASE-E NGEUREUT;Lo;0;L;;;;;N;;;;;-169A4;BAMUM LETTER PHASE-E SHEUAEQ;Lo;0;L;;;;;N;;;;;-169A5;BAMUM LETTER PHASE-E MGBEN;Lo;0;L;;;;;N;;;;;-169A6;BAMUM LETTER PHASE-E MBEE;Lo;0;L;;;;;N;;;;;-169A7;BAMUM LETTER PHASE-E NZAQ;Lo;0;L;;;;;N;;;;;-169A8;BAMUM LETTER PHASE-E NKOM;Lo;0;L;;;;;N;;;;;-169A9;BAMUM LETTER PHASE-E GBET;Lo;0;L;;;;;N;;;;;-169AA;BAMUM LETTER PHASE-E TUM;Lo;0;L;;;;;N;;;;;-169AB;BAMUM LETTER PHASE-E KUET;Lo;0;L;;;;;N;;;;;-169AC;BAMUM LETTER PHASE-E YAP;Lo;0;L;;;;;N;;;;;-169AD;BAMUM LETTER PHASE-E NYI CLEAVER;Lo;0;L;;;;;N;;;;;-169AE;BAMUM LETTER PHASE-E YIT;Lo;0;L;;;;;N;;;;;-169AF;BAMUM LETTER PHASE-E MFEUQ;Lo;0;L;;;;;N;;;;;-169B0;BAMUM LETTER PHASE-E NDIAQ;Lo;0;L;;;;;N;;;;;-169B1;BAMUM LETTER PHASE-E PIEEQ;Lo;0;L;;;;;N;;;;;-169B2;BAMUM LETTER PHASE-E YUEQ;Lo;0;L;;;;;N;;;;;-169B3;BAMUM LETTER PHASE-E LEUAEM;Lo;0;L;;;;;N;;;;;-169B4;BAMUM LETTER PHASE-E FUE;Lo;0;L;;;;;N;;;;;-169B5;BAMUM LETTER PHASE-E GBEUX;Lo;0;L;;;;;N;;;;;-169B6;BAMUM LETTER PHASE-E NGKUP;Lo;0;L;;;;;N;;;;;-169B7;BAMUM LETTER PHASE-E KET;Lo;0;L;;;;;N;;;;;-169B8;BAMUM LETTER PHASE-E MAE;Lo;0;L;;;;;N;;;;;-169B9;BAMUM LETTER PHASE-E NGKAAMI;Lo;0;L;;;;;N;;;;;-169BA;BAMUM LETTER PHASE-E GHET;Lo;0;L;;;;;N;;;;;-169BB;BAMUM LETTER PHASE-E FA;Lo;0;L;;;;;N;;;;;-169BC;BAMUM LETTER PHASE-E NTUM;Lo;0;L;;;;;N;;;;;-169BD;BAMUM LETTER PHASE-E PEUT;Lo;0;L;;;;;N;;;;;-169BE;BAMUM LETTER PHASE-E YEUM;Lo;0;L;;;;;N;;;;;-169BF;BAMUM LETTER PHASE-E NGGEUAE;Lo;0;L;;;;;N;;;;;-169C0;BAMUM LETTER PHASE-E NYI BETWEEN;Lo;0;L;;;;;N;;;;;-169C1;BAMUM LETTER PHASE-E NZUQ;Lo;0;L;;;;;N;;;;;-169C2;BAMUM LETTER PHASE-E POON;Lo;0;L;;;;;N;;;;;-169C3;BAMUM LETTER PHASE-E MIEE;Lo;0;L;;;;;N;;;;;-169C4;BAMUM LETTER PHASE-E FUET;Lo;0;L;;;;;N;;;;;-169C5;BAMUM LETTER PHASE-E NAE;Lo;0;L;;;;;N;;;;;-169C6;BAMUM LETTER PHASE-E MUAE;Lo;0;L;;;;;N;;;;;-169C7;BAMUM LETTER PHASE-E GHEUAE;Lo;0;L;;;;;N;;;;;-169C8;BAMUM LETTER PHASE-E FU I;Lo;0;L;;;;;N;;;;;-169C9;BAMUM LETTER PHASE-E MVI;Lo;0;L;;;;;N;;;;;-169CA;BAMUM LETTER PHASE-E PUAQ;Lo;0;L;;;;;N;;;;;-169CB;BAMUM LETTER PHASE-E NGKUM;Lo;0;L;;;;;N;;;;;-169CC;BAMUM LETTER PHASE-E KUT;Lo;0;L;;;;;N;;;;;-169CD;BAMUM LETTER PHASE-E PIET;Lo;0;L;;;;;N;;;;;-169CE;BAMUM LETTER PHASE-E NTAP;Lo;0;L;;;;;N;;;;;-169CF;BAMUM LETTER PHASE-E YEUAET;Lo;0;L;;;;;N;;;;;-169D0;BAMUM LETTER PHASE-E NGGUP;Lo;0;L;;;;;N;;;;;-169D1;BAMUM LETTER PHASE-E PA PEOPLE;Lo;0;L;;;;;N;;;;;-169D2;BAMUM LETTER PHASE-E FU CALL;Lo;0;L;;;;;N;;;;;-169D3;BAMUM LETTER PHASE-E FOM;Lo;0;L;;;;;N;;;;;-169D4;BAMUM LETTER PHASE-E NJEE;Lo;0;L;;;;;N;;;;;-169D5;BAMUM LETTER PHASE-E A;Lo;0;L;;;;;N;;;;;-169D6;BAMUM LETTER PHASE-E TOQ;Lo;0;L;;;;;N;;;;;-169D7;BAMUM LETTER PHASE-E O;Lo;0;L;;;;;N;;;;;-169D8;BAMUM LETTER PHASE-E I;Lo;0;L;;;;;N;;;;;-169D9;BAMUM LETTER PHASE-E LAQ;Lo;0;L;;;;;N;;;;;-169DA;BAMUM LETTER PHASE-E PA PLURAL;Lo;0;L;;;;;N;;;;;-169DB;BAMUM LETTER PHASE-E TAA;Lo;0;L;;;;;N;;;;;-169DC;BAMUM LETTER PHASE-E TAQ;Lo;0;L;;;;;N;;;;;-169DD;BAMUM LETTER PHASE-E NDAA MY HOUSE;Lo;0;L;;;;;N;;;;;-169DE;BAMUM LETTER PHASE-E SHIQ;Lo;0;L;;;;;N;;;;;-169DF;BAMUM LETTER PHASE-E YEUX;Lo;0;L;;;;;N;;;;;-169E0;BAMUM LETTER PHASE-E NGUAE;Lo;0;L;;;;;N;;;;;-169E1;BAMUM LETTER PHASE-E YUAEN;Lo;0;L;;;;;N;;;;;-169E2;BAMUM LETTER PHASE-E YOQ SWIMMING;Lo;0;L;;;;;N;;;;;-169E3;BAMUM LETTER PHASE-E YOQ COVER;Lo;0;L;;;;;N;;;;;-169E4;BAMUM LETTER PHASE-E YUQ;Lo;0;L;;;;;N;;;;;-169E5;BAMUM LETTER PHASE-E YUN;Lo;0;L;;;;;N;;;;;-169E6;BAMUM LETTER PHASE-E KEUX;Lo;0;L;;;;;N;;;;;-169E7;BAMUM LETTER PHASE-E PEUX;Lo;0;L;;;;;N;;;;;-169E8;BAMUM LETTER PHASE-E NJEE EPOCH;Lo;0;L;;;;;N;;;;;-169E9;BAMUM LETTER PHASE-E PUE;Lo;0;L;;;;;N;;;;;-169EA;BAMUM LETTER PHASE-E WUE;Lo;0;L;;;;;N;;;;;-169EB;BAMUM LETTER PHASE-E FEE;Lo;0;L;;;;;N;;;;;-169EC;BAMUM LETTER PHASE-E VEE;Lo;0;L;;;;;N;;;;;-169ED;BAMUM LETTER PHASE-E LU;Lo;0;L;;;;;N;;;;;-169EE;BAMUM LETTER PHASE-E MI;Lo;0;L;;;;;N;;;;;-169EF;BAMUM LETTER PHASE-E REUX;Lo;0;L;;;;;N;;;;;-169F0;BAMUM LETTER PHASE-E RAE;Lo;0;L;;;;;N;;;;;-169F1;BAMUM LETTER PHASE-E NGUAET;Lo;0;L;;;;;N;;;;;-169F2;BAMUM LETTER PHASE-E NGA;Lo;0;L;;;;;N;;;;;-169F3;BAMUM LETTER PHASE-E SHO;Lo;0;L;;;;;N;;;;;-169F4;BAMUM LETTER PHASE-E SHOQ;Lo;0;L;;;;;N;;;;;-169F5;BAMUM LETTER PHASE-E FU REMEDY;Lo;0;L;;;;;N;;;;;-169F6;BAMUM LETTER PHASE-E NA;Lo;0;L;;;;;N;;;;;-169F7;BAMUM LETTER PHASE-E PI;Lo;0;L;;;;;N;;;;;-169F8;BAMUM LETTER PHASE-E LOQ;Lo;0;L;;;;;N;;;;;-169F9;BAMUM LETTER PHASE-E KO;Lo;0;L;;;;;N;;;;;-169FA;BAMUM LETTER PHASE-E MEN;Lo;0;L;;;;;N;;;;;-169FB;BAMUM LETTER PHASE-E MA;Lo;0;L;;;;;N;;;;;-169FC;BAMUM LETTER PHASE-E MAQ;Lo;0;L;;;;;N;;;;;-169FD;BAMUM LETTER PHASE-E TEU;Lo;0;L;;;;;N;;;;;-169FE;BAMUM LETTER PHASE-E KI;Lo;0;L;;;;;N;;;;;-169FF;BAMUM LETTER PHASE-E MON;Lo;0;L;;;;;N;;;;;-16A00;BAMUM LETTER PHASE-E TEN;Lo;0;L;;;;;N;;;;;-16A01;BAMUM LETTER PHASE-E FAQ;Lo;0;L;;;;;N;;;;;-16A02;BAMUM LETTER PHASE-E GHOM;Lo;0;L;;;;;N;;;;;-16A03;BAMUM LETTER PHASE-F KA;Lo;0;L;;;;;N;;;;;-16A04;BAMUM LETTER PHASE-F U;Lo;0;L;;;;;N;;;;;-16A05;BAMUM LETTER PHASE-F KU;Lo;0;L;;;;;N;;;;;-16A06;BAMUM LETTER PHASE-F EE;Lo;0;L;;;;;N;;;;;-16A07;BAMUM LETTER PHASE-F REE;Lo;0;L;;;;;N;;;;;-16A08;BAMUM LETTER PHASE-F TAE;Lo;0;L;;;;;N;;;;;-16A09;BAMUM LETTER PHASE-F NYI;Lo;0;L;;;;;N;;;;;-16A0A;BAMUM LETTER PHASE-F LA;Lo;0;L;;;;;N;;;;;-16A0B;BAMUM LETTER PHASE-F RII;Lo;0;L;;;;;N;;;;;-16A0C;BAMUM LETTER PHASE-F RIEE;Lo;0;L;;;;;N;;;;;-16A0D;BAMUM LETTER PHASE-F MEEEE;Lo;0;L;;;;;N;;;;;-16A0E;BAMUM LETTER PHASE-F TAA;Lo;0;L;;;;;N;;;;;-16A0F;BAMUM LETTER PHASE-F NDAA;Lo;0;L;;;;;N;;;;;-16A10;BAMUM LETTER PHASE-F NJAEM;Lo;0;L;;;;;N;;;;;-16A11;BAMUM LETTER PHASE-F M;Lo;0;L;;;;;N;;;;;-16A12;BAMUM LETTER PHASE-F SUU;Lo;0;L;;;;;N;;;;;-16A13;BAMUM LETTER PHASE-F SHII;Lo;0;L;;;;;N;;;;;-16A14;BAMUM LETTER PHASE-F SI;Lo;0;L;;;;;N;;;;;-16A15;BAMUM LETTER PHASE-F SEUX;Lo;0;L;;;;;N;;;;;-16A16;BAMUM LETTER PHASE-F KYEE;Lo;0;L;;;;;N;;;;;-16A17;BAMUM LETTER PHASE-F KET;Lo;0;L;;;;;N;;;;;-16A18;BAMUM LETTER PHASE-F NUAE;Lo;0;L;;;;;N;;;;;-16A19;BAMUM LETTER PHASE-F NU;Lo;0;L;;;;;N;;;;;-16A1A;BAMUM LETTER PHASE-F NJUAE;Lo;0;L;;;;;N;;;;;-16A1B;BAMUM LETTER PHASE-F YOQ;Lo;0;L;;;;;N;;;;;-16A1C;BAMUM LETTER PHASE-F SHU;Lo;0;L;;;;;N;;;;;-16A1D;BAMUM LETTER PHASE-F YA;Lo;0;L;;;;;N;;;;;-16A1E;BAMUM LETTER PHASE-F NSHA;Lo;0;L;;;;;N;;;;;-16A1F;BAMUM LETTER PHASE-F PEUX;Lo;0;L;;;;;N;;;;;-16A20;BAMUM LETTER PHASE-F NTEE;Lo;0;L;;;;;N;;;;;-16A21;BAMUM LETTER PHASE-F WUE;Lo;0;L;;;;;N;;;;;-16A22;BAMUM LETTER PHASE-F PEE;Lo;0;L;;;;;N;;;;;-16A23;BAMUM LETTER PHASE-F RU;Lo;0;L;;;;;N;;;;;-16A24;BAMUM LETTER PHASE-F NI;Lo;0;L;;;;;N;;;;;-16A25;BAMUM LETTER PHASE-F REUX;Lo;0;L;;;;;N;;;;;-16A26;BAMUM LETTER PHASE-F KEN;Lo;0;L;;;;;N;;;;;-16A27;BAMUM LETTER PHASE-F NGKWAEN;Lo;0;L;;;;;N;;;;;-16A28;BAMUM LETTER PHASE-F NGGA;Lo;0;L;;;;;N;;;;;-16A29;BAMUM LETTER PHASE-F SHO;Lo;0;L;;;;;N;;;;;-16A2A;BAMUM LETTER PHASE-F PUAE;Lo;0;L;;;;;N;;;;;-16A2B;BAMUM LETTER PHASE-F FOM;Lo;0;L;;;;;N;;;;;-16A2C;BAMUM LETTER PHASE-F WA;Lo;0;L;;;;;N;;;;;-16A2D;BAMUM LETTER PHASE-F LI;Lo;0;L;;;;;N;;;;;-16A2E;BAMUM LETTER PHASE-F LOQ;Lo;0;L;;;;;N;;;;;-16A2F;BAMUM LETTER PHASE-F KO;Lo;0;L;;;;;N;;;;;-16A30;BAMUM LETTER PHASE-F MBEN;Lo;0;L;;;;;N;;;;;-16A31;BAMUM LETTER PHASE-F REN;Lo;0;L;;;;;N;;;;;-16A32;BAMUM LETTER PHASE-F MA;Lo;0;L;;;;;N;;;;;-16A33;BAMUM LETTER PHASE-F MO;Lo;0;L;;;;;N;;;;;-16A34;BAMUM LETTER PHASE-F MBAA;Lo;0;L;;;;;N;;;;;-16A35;BAMUM LETTER PHASE-F TET;Lo;0;L;;;;;N;;;;;-16A36;BAMUM LETTER PHASE-F KPA;Lo;0;L;;;;;N;;;;;-16A37;BAMUM LETTER PHASE-F SAMBA;Lo;0;L;;;;;N;;;;;-16A38;BAMUM LETTER PHASE-F VUEQ;Lo;0;L;;;;;N;;;;;-16A40;MRO LETTER TA;Lo;0;L;;;;;N;;;;;-16A41;MRO LETTER NGI;Lo;0;L;;;;;N;;;;;-16A42;MRO LETTER YO;Lo;0;L;;;;;N;;;;;-16A43;MRO LETTER MIM;Lo;0;L;;;;;N;;;;;-16A44;MRO LETTER BA;Lo;0;L;;;;;N;;;;;-16A45;MRO LETTER DA;Lo;0;L;;;;;N;;;;;-16A46;MRO LETTER A;Lo;0;L;;;;;N;;;;;-16A47;MRO LETTER PHI;Lo;0;L;;;;;N;;;;;-16A48;MRO LETTER KHAI;Lo;0;L;;;;;N;;;;;-16A49;MRO LETTER HAO;Lo;0;L;;;;;N;;;;;-16A4A;MRO LETTER DAI;Lo;0;L;;;;;N;;;;;-16A4B;MRO LETTER CHU;Lo;0;L;;;;;N;;;;;-16A4C;MRO LETTER KEAAE;Lo;0;L;;;;;N;;;;;-16A4D;MRO LETTER OL;Lo;0;L;;;;;N;;;;;-16A4E;MRO LETTER MAEM;Lo;0;L;;;;;N;;;;;-16A4F;MRO LETTER NIN;Lo;0;L;;;;;N;;;;;-16A50;MRO LETTER PA;Lo;0;L;;;;;N;;;;;-16A51;MRO LETTER OO;Lo;0;L;;;;;N;;;;;-16A52;MRO LETTER O;Lo;0;L;;;;;N;;;;;-16A53;MRO LETTER RO;Lo;0;L;;;;;N;;;;;-16A54;MRO LETTER SHI;Lo;0;L;;;;;N;;;;;-16A55;MRO LETTER THEA;Lo;0;L;;;;;N;;;;;-16A56;MRO LETTER EA;Lo;0;L;;;;;N;;;;;-16A57;MRO LETTER WA;Lo;0;L;;;;;N;;;;;-16A58;MRO LETTER E;Lo;0;L;;;;;N;;;;;-16A59;MRO LETTER KO;Lo;0;L;;;;;N;;;;;-16A5A;MRO LETTER LAN;Lo;0;L;;;;;N;;;;;-16A5B;MRO LETTER LA;Lo;0;L;;;;;N;;;;;-16A5C;MRO LETTER HAI;Lo;0;L;;;;;N;;;;;-16A5D;MRO LETTER RI;Lo;0;L;;;;;N;;;;;-16A5E;MRO LETTER TEK;Lo;0;L;;;;;N;;;;;-16A60;MRO DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-16A61;MRO DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-16A62;MRO DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-16A63;MRO DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-16A64;MRO DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-16A65;MRO DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-16A66;MRO DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-16A67;MRO DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-16A68;MRO DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-16A69;MRO DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-16A6E;MRO DANDA;Po;0;L;;;;;N;;;;;-16A6F;MRO DOUBLE DANDA;Po;0;L;;;;;N;;;;;-16AD0;BASSA VAH LETTER ENNI;Lo;0;L;;;;;N;;;;;-16AD1;BASSA VAH LETTER KA;Lo;0;L;;;;;N;;;;;-16AD2;BASSA VAH LETTER SE;Lo;0;L;;;;;N;;;;;-16AD3;BASSA VAH LETTER FA;Lo;0;L;;;;;N;;;;;-16AD4;BASSA VAH LETTER MBE;Lo;0;L;;;;;N;;;;;-16AD5;BASSA VAH LETTER YIE;Lo;0;L;;;;;N;;;;;-16AD6;BASSA VAH LETTER GAH;Lo;0;L;;;;;N;;;;;-16AD7;BASSA VAH LETTER DHII;Lo;0;L;;;;;N;;;;;-16AD8;BASSA VAH LETTER KPAH;Lo;0;L;;;;;N;;;;;-16AD9;BASSA VAH LETTER JO;Lo;0;L;;;;;N;;;;;-16ADA;BASSA VAH LETTER HWAH;Lo;0;L;;;;;N;;;;;-16ADB;BASSA VAH LETTER WA;Lo;0;L;;;;;N;;;;;-16ADC;BASSA VAH LETTER ZO;Lo;0;L;;;;;N;;;;;-16ADD;BASSA VAH LETTER GBU;Lo;0;L;;;;;N;;;;;-16ADE;BASSA VAH LETTER DO;Lo;0;L;;;;;N;;;;;-16ADF;BASSA VAH LETTER CE;Lo;0;L;;;;;N;;;;;-16AE0;BASSA VAH LETTER UWU;Lo;0;L;;;;;N;;;;;-16AE1;BASSA VAH LETTER TO;Lo;0;L;;;;;N;;;;;-16AE2;BASSA VAH LETTER BA;Lo;0;L;;;;;N;;;;;-16AE3;BASSA VAH LETTER VU;Lo;0;L;;;;;N;;;;;-16AE4;BASSA VAH LETTER YEIN;Lo;0;L;;;;;N;;;;;-16AE5;BASSA VAH LETTER PA;Lo;0;L;;;;;N;;;;;-16AE6;BASSA VAH LETTER WADDA;Lo;0;L;;;;;N;;;;;-16AE7;BASSA VAH LETTER A;Lo;0;L;;;;;N;;;;;-16AE8;BASSA VAH LETTER O;Lo;0;L;;;;;N;;;;;-16AE9;BASSA VAH LETTER OO;Lo;0;L;;;;;N;;;;;-16AEA;BASSA VAH LETTER U;Lo;0;L;;;;;N;;;;;-16AEB;BASSA VAH LETTER EE;Lo;0;L;;;;;N;;;;;-16AEC;BASSA VAH LETTER E;Lo;0;L;;;;;N;;;;;-16AED;BASSA VAH LETTER I;Lo;0;L;;;;;N;;;;;-16AF0;BASSA VAH COMBINING HIGH TONE;Mn;1;NSM;;;;;N;;;;;-16AF1;BASSA VAH COMBINING LOW TONE;Mn;1;NSM;;;;;N;;;;;-16AF2;BASSA VAH COMBINING MID TONE;Mn;1;NSM;;;;;N;;;;;-16AF3;BASSA VAH COMBINING LOW-MID TONE;Mn;1;NSM;;;;;N;;;;;-16AF4;BASSA VAH COMBINING HIGH-LOW TONE;Mn;1;NSM;;;;;N;;;;;-16AF5;BASSA VAH FULL STOP;Po;0;L;;;;;N;;;;;-16B00;PAHAWH HMONG VOWEL KEEB;Lo;0;L;;;;;N;;;;;-16B01;PAHAWH HMONG VOWEL KEEV;Lo;0;L;;;;;N;;;;;-16B02;PAHAWH HMONG VOWEL KIB;Lo;0;L;;;;;N;;;;;-16B03;PAHAWH HMONG VOWEL KIV;Lo;0;L;;;;;N;;;;;-16B04;PAHAWH HMONG VOWEL KAUB;Lo;0;L;;;;;N;;;;;-16B05;PAHAWH HMONG VOWEL KAUV;Lo;0;L;;;;;N;;;;;-16B06;PAHAWH HMONG VOWEL KUB;Lo;0;L;;;;;N;;;;;-16B07;PAHAWH HMONG VOWEL KUV;Lo;0;L;;;;;N;;;;;-16B08;PAHAWH HMONG VOWEL KEB;Lo;0;L;;;;;N;;;;;-16B09;PAHAWH HMONG VOWEL KEV;Lo;0;L;;;;;N;;;;;-16B0A;PAHAWH HMONG VOWEL KAIB;Lo;0;L;;;;;N;;;;;-16B0B;PAHAWH HMONG VOWEL KAIV;Lo;0;L;;;;;N;;;;;-16B0C;PAHAWH HMONG VOWEL KOOB;Lo;0;L;;;;;N;;;;;-16B0D;PAHAWH HMONG VOWEL KOOV;Lo;0;L;;;;;N;;;;;-16B0E;PAHAWH HMONG VOWEL KAWB;Lo;0;L;;;;;N;;;;;-16B0F;PAHAWH HMONG VOWEL KAWV;Lo;0;L;;;;;N;;;;;-16B10;PAHAWH HMONG VOWEL KUAB;Lo;0;L;;;;;N;;;;;-16B11;PAHAWH HMONG VOWEL KUAV;Lo;0;L;;;;;N;;;;;-16B12;PAHAWH HMONG VOWEL KOB;Lo;0;L;;;;;N;;;;;-16B13;PAHAWH HMONG VOWEL KOV;Lo;0;L;;;;;N;;;;;-16B14;PAHAWH HMONG VOWEL KIAB;Lo;0;L;;;;;N;;;;;-16B15;PAHAWH HMONG VOWEL KIAV;Lo;0;L;;;;;N;;;;;-16B16;PAHAWH HMONG VOWEL KAB;Lo;0;L;;;;;N;;;;;-16B17;PAHAWH HMONG VOWEL KAV;Lo;0;L;;;;;N;;;;;-16B18;PAHAWH HMONG VOWEL KWB;Lo;0;L;;;;;N;;;;;-16B19;PAHAWH HMONG VOWEL KWV;Lo;0;L;;;;;N;;;;;-16B1A;PAHAWH HMONG VOWEL KAAB;Lo;0;L;;;;;N;;;;;-16B1B;PAHAWH HMONG VOWEL KAAV;Lo;0;L;;;;;N;;;;;-16B1C;PAHAWH HMONG CONSONANT VAU;Lo;0;L;;;;;N;;;;;-16B1D;PAHAWH HMONG CONSONANT NTSAU;Lo;0;L;;;;;N;;;;;-16B1E;PAHAWH HMONG CONSONANT LAU;Lo;0;L;;;;;N;;;;;-16B1F;PAHAWH HMONG CONSONANT HAU;Lo;0;L;;;;;N;;;;;-16B20;PAHAWH HMONG CONSONANT NLAU;Lo;0;L;;;;;N;;;;;-16B21;PAHAWH HMONG CONSONANT RAU;Lo;0;L;;;;;N;;;;;-16B22;PAHAWH HMONG CONSONANT NKAU;Lo;0;L;;;;;N;;;;;-16B23;PAHAWH HMONG CONSONANT QHAU;Lo;0;L;;;;;N;;;;;-16B24;PAHAWH HMONG CONSONANT YAU;Lo;0;L;;;;;N;;;;;-16B25;PAHAWH HMONG CONSONANT HLAU;Lo;0;L;;;;;N;;;;;-16B26;PAHAWH HMONG CONSONANT MAU;Lo;0;L;;;;;N;;;;;-16B27;PAHAWH HMONG CONSONANT CHAU;Lo;0;L;;;;;N;;;;;-16B28;PAHAWH HMONG CONSONANT NCHAU;Lo;0;L;;;;;N;;;;;-16B29;PAHAWH HMONG CONSONANT HNAU;Lo;0;L;;;;;N;;;;;-16B2A;PAHAWH HMONG CONSONANT PLHAU;Lo;0;L;;;;;N;;;;;-16B2B;PAHAWH HMONG CONSONANT NTHAU;Lo;0;L;;;;;N;;;;;-16B2C;PAHAWH HMONG CONSONANT NAU;Lo;0;L;;;;;N;;;;;-16B2D;PAHAWH HMONG CONSONANT AU;Lo;0;L;;;;;N;;;;;-16B2E;PAHAWH HMONG CONSONANT XAU;Lo;0;L;;;;;N;;;;;-16B2F;PAHAWH HMONG CONSONANT CAU;Lo;0;L;;;;;N;;;;;-16B30;PAHAWH HMONG MARK CIM TUB;Mn;230;NSM;;;;;N;;;;;-16B31;PAHAWH HMONG MARK CIM SO;Mn;230;NSM;;;;;N;;;;;-16B32;PAHAWH HMONG MARK CIM KES;Mn;230;NSM;;;;;N;;;;;-16B33;PAHAWH HMONG MARK CIM KHAV;Mn;230;NSM;;;;;N;;;;;-16B34;PAHAWH HMONG MARK CIM SUAM;Mn;230;NSM;;;;;N;;;;;-16B35;PAHAWH HMONG MARK CIM HOM;Mn;230;NSM;;;;;N;;;;;-16B36;PAHAWH HMONG MARK CIM TAUM;Mn;230;NSM;;;;;N;;;;;-16B37;PAHAWH HMONG SIGN VOS THOM;Po;0;L;;;;;N;;;;;-16B38;PAHAWH HMONG SIGN VOS TSHAB CEEB;Po;0;L;;;;;N;;;;;-16B39;PAHAWH HMONG SIGN CIM CHEEM;Po;0;L;;;;;N;;;;;-16B3A;PAHAWH HMONG SIGN VOS THIAB;Po;0;L;;;;;N;;;;;-16B3B;PAHAWH HMONG SIGN VOS FEEM;Po;0;L;;;;;N;;;;;-16B3C;PAHAWH HMONG SIGN XYEEM NTXIV;So;0;L;;;;;N;;;;;-16B3D;PAHAWH HMONG SIGN XYEEM RHO;So;0;L;;;;;N;;;;;-16B3E;PAHAWH HMONG SIGN XYEEM TOV;So;0;L;;;;;N;;;;;-16B3F;PAHAWH HMONG SIGN XYEEM FAIB;So;0;L;;;;;N;;;;;-16B40;PAHAWH HMONG SIGN VOS SEEV;Lm;0;L;;;;;N;;;;;-16B41;PAHAWH HMONG SIGN MEEJ SUAB;Lm;0;L;;;;;N;;;;;-16B42;PAHAWH HMONG SIGN VOS NRUA;Lm;0;L;;;;;N;;;;;-16B43;PAHAWH HMONG SIGN IB YAM;Lm;0;L;;;;;N;;;;;-16B44;PAHAWH HMONG SIGN XAUS;Po;0;L;;;;;N;;;;;-16B45;PAHAWH HMONG SIGN CIM TSOV ROG;So;0;L;;;;;N;;;;;-16B50;PAHAWH HMONG DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;;-16B51;PAHAWH HMONG DIGIT ONE;Nd;0;L;;1;1;1;N;;;;;-16B52;PAHAWH HMONG DIGIT TWO;Nd;0;L;;2;2;2;N;;;;;-16B53;PAHAWH HMONG DIGIT THREE;Nd;0;L;;3;3;3;N;;;;;-16B54;PAHAWH HMONG DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;;-16B55;PAHAWH HMONG DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;;-16B56;PAHAWH HMONG DIGIT SIX;Nd;0;L;;6;6;6;N;;;;;-16B57;PAHAWH HMONG DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;;-16B58;PAHAWH HMONG DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;;-16B59;PAHAWH HMONG DIGIT NINE;Nd;0;L;;9;9;9;N;;;;;-16B5B;PAHAWH HMONG NUMBER TENS;No;0;L;;;;10;N;;;;;-16B5C;PAHAWH HMONG NUMBER HUNDREDS;No;0;L;;;;100;N;;;;;-16B5D;PAHAWH HMONG NUMBER TEN THOUSANDS;No;0;L;;;;10000;N;;;;;-16B5E;PAHAWH HMONG NUMBER MILLIONS;No;0;L;;;;1000000;N;;;;;-16B5F;PAHAWH HMONG NUMBER HUNDRED MILLIONS;No;0;L;;;;100000000;N;;;;;-16B60;PAHAWH HMONG NUMBER TEN BILLIONS;No;0;L;;;;10000000000;N;;;;;-16B61;PAHAWH HMONG NUMBER TRILLIONS;No;0;L;;;;1000000000000;N;;;;;-16B63;PAHAWH HMONG SIGN VOS LUB;Lo;0;L;;;;;N;;;;;-16B64;PAHAWH HMONG SIGN XYOO;Lo;0;L;;;;;N;;;;;-16B65;PAHAWH HMONG SIGN HLI;Lo;0;L;;;;;N;;;;;-16B66;PAHAWH HMONG SIGN THIRD-STAGE HLI;Lo;0;L;;;;;N;;;;;-16B67;PAHAWH HMONG SIGN ZWJ THAJ;Lo;0;L;;;;;N;;;;;-16B68;PAHAWH HMONG SIGN HNUB;Lo;0;L;;;;;N;;;;;-16B69;PAHAWH HMONG SIGN NQIG;Lo;0;L;;;;;N;;;;;-16B6A;PAHAWH HMONG SIGN XIAB;Lo;0;L;;;;;N;;;;;-16B6B;PAHAWH HMONG SIGN NTUJ;Lo;0;L;;;;;N;;;;;-16B6C;PAHAWH HMONG SIGN AV;Lo;0;L;;;;;N;;;;;-16B6D;PAHAWH HMONG SIGN TXHEEJ CEEV;Lo;0;L;;;;;N;;;;;-16B6E;PAHAWH HMONG SIGN MEEJ TSEEB;Lo;0;L;;;;;N;;;;;-16B6F;PAHAWH HMONG SIGN TAU;Lo;0;L;;;;;N;;;;;-16B70;PAHAWH HMONG SIGN LOS;Lo;0;L;;;;;N;;;;;-16B71;PAHAWH HMONG SIGN MUS;Lo;0;L;;;;;N;;;;;-16B72;PAHAWH HMONG SIGN CIM HAIS LUS NTOG NTOG;Lo;0;L;;;;;N;;;;;-16B73;PAHAWH HMONG SIGN CIM CUAM TSHOOJ;Lo;0;L;;;;;N;;;;;-16B74;PAHAWH HMONG SIGN CIM TXWV;Lo;0;L;;;;;N;;;;;-16B75;PAHAWH HMONG SIGN CIM TXWV CHWV;Lo;0;L;;;;;N;;;;;-16B76;PAHAWH HMONG SIGN CIM PUB DAWB;Lo;0;L;;;;;N;;;;;-16B77;PAHAWH HMONG SIGN CIM NRES TOS;Lo;0;L;;;;;N;;;;;-16B7D;PAHAWH HMONG CLAN SIGN TSHEEJ;Lo;0;L;;;;;N;;;;;-16B7E;PAHAWH HMONG CLAN SIGN YEEG;Lo;0;L;;;;;N;;;;;-16B7F;PAHAWH HMONG CLAN SIGN LIS;Lo;0;L;;;;;N;;;;;-16B80;PAHAWH HMONG CLAN SIGN LAUJ;Lo;0;L;;;;;N;;;;;-16B81;PAHAWH HMONG CLAN SIGN XYOOJ;Lo;0;L;;;;;N;;;;;-16B82;PAHAWH HMONG CLAN SIGN KOO;Lo;0;L;;;;;N;;;;;-16B83;PAHAWH HMONG CLAN SIGN HAWJ;Lo;0;L;;;;;N;;;;;-16B84;PAHAWH HMONG CLAN SIGN MUAS;Lo;0;L;;;;;N;;;;;-16B85;PAHAWH HMONG CLAN SIGN THOJ;Lo;0;L;;;;;N;;;;;-16B86;PAHAWH HMONG CLAN SIGN TSAB;Lo;0;L;;;;;N;;;;;-16B87;PAHAWH HMONG CLAN SIGN PHAB;Lo;0;L;;;;;N;;;;;-16B88;PAHAWH HMONG CLAN SIGN KHAB;Lo;0;L;;;;;N;;;;;-16B89;PAHAWH HMONG CLAN SIGN HAM;Lo;0;L;;;;;N;;;;;-16B8A;PAHAWH HMONG CLAN SIGN VAJ;Lo;0;L;;;;;N;;;;;-16B8B;PAHAWH HMONG CLAN SIGN FAJ;Lo;0;L;;;;;N;;;;;-16B8C;PAHAWH HMONG CLAN SIGN YAJ;Lo;0;L;;;;;N;;;;;-16B8D;PAHAWH HMONG CLAN SIGN TSWB;Lo;0;L;;;;;N;;;;;-16B8E;PAHAWH HMONG CLAN SIGN KWM;Lo;0;L;;;;;N;;;;;-16B8F;PAHAWH HMONG CLAN SIGN VWJ;Lo;0;L;;;;;N;;;;;-16F00;MIAO LETTER PA;Lo;0;L;;;;;N;;;;;-16F01;MIAO LETTER BA;Lo;0;L;;;;;N;;;;;-16F02;MIAO LETTER YI PA;Lo;0;L;;;;;N;;;;;-16F03;MIAO LETTER PLA;Lo;0;L;;;;;N;;;;;-16F04;MIAO LETTER MA;Lo;0;L;;;;;N;;;;;-16F05;MIAO LETTER MHA;Lo;0;L;;;;;N;;;;;-16F06;MIAO LETTER ARCHAIC MA;Lo;0;L;;;;;N;;;;;-16F07;MIAO LETTER FA;Lo;0;L;;;;;N;;;;;-16F08;MIAO LETTER VA;Lo;0;L;;;;;N;;;;;-16F09;MIAO LETTER VFA;Lo;0;L;;;;;N;;;;;-16F0A;MIAO LETTER TA;Lo;0;L;;;;;N;;;;;-16F0B;MIAO LETTER DA;Lo;0;L;;;;;N;;;;;-16F0C;MIAO LETTER YI TTA;Lo;0;L;;;;;N;;;;;-16F0D;MIAO LETTER YI TA;Lo;0;L;;;;;N;;;;;-16F0E;MIAO LETTER TTA;Lo;0;L;;;;;N;;;;;-16F0F;MIAO LETTER DDA;Lo;0;L;;;;;N;;;;;-16F10;MIAO LETTER NA;Lo;0;L;;;;;N;;;;;-16F11;MIAO LETTER NHA;Lo;0;L;;;;;N;;;;;-16F12;MIAO LETTER YI NNA;Lo;0;L;;;;;N;;;;;-16F13;MIAO LETTER ARCHAIC NA;Lo;0;L;;;;;N;;;;;-16F14;MIAO LETTER NNA;Lo;0;L;;;;;N;;;;;-16F15;MIAO LETTER NNHA;Lo;0;L;;;;;N;;;;;-16F16;MIAO LETTER LA;Lo;0;L;;;;;N;;;;;-16F17;MIAO LETTER LYA;Lo;0;L;;;;;N;;;;;-16F18;MIAO LETTER LHA;Lo;0;L;;;;;N;;;;;-16F19;MIAO LETTER LHYA;Lo;0;L;;;;;N;;;;;-16F1A;MIAO LETTER TLHA;Lo;0;L;;;;;N;;;;;-16F1B;MIAO LETTER DLHA;Lo;0;L;;;;;N;;;;;-16F1C;MIAO LETTER TLHYA;Lo;0;L;;;;;N;;;;;-16F1D;MIAO LETTER DLHYA;Lo;0;L;;;;;N;;;;;-16F1E;MIAO LETTER KA;Lo;0;L;;;;;N;;;;;-16F1F;MIAO LETTER GA;Lo;0;L;;;;;N;;;;;-16F20;MIAO LETTER YI KA;Lo;0;L;;;;;N;;;;;-16F21;MIAO LETTER QA;Lo;0;L;;;;;N;;;;;-16F22;MIAO LETTER QGA;Lo;0;L;;;;;N;;;;;-16F23;MIAO LETTER NGA;Lo;0;L;;;;;N;;;;;-16F24;MIAO LETTER NGHA;Lo;0;L;;;;;N;;;;;-16F25;MIAO LETTER ARCHAIC NGA;Lo;0;L;;;;;N;;;;;-16F26;MIAO LETTER HA;Lo;0;L;;;;;N;;;;;-16F27;MIAO LETTER XA;Lo;0;L;;;;;N;;;;;-16F28;MIAO LETTER GHA;Lo;0;L;;;;;N;;;;;-16F29;MIAO LETTER GHHA;Lo;0;L;;;;;N;;;;;-16F2A;MIAO LETTER TSSA;Lo;0;L;;;;;N;;;;;-16F2B;MIAO LETTER DZZA;Lo;0;L;;;;;N;;;;;-16F2C;MIAO LETTER NYA;Lo;0;L;;;;;N;;;;;-16F2D;MIAO LETTER NYHA;Lo;0;L;;;;;N;;;;;-16F2E;MIAO LETTER TSHA;Lo;0;L;;;;;N;;;;;-16F2F;MIAO LETTER DZHA;Lo;0;L;;;;;N;;;;;-16F30;MIAO LETTER YI TSHA;Lo;0;L;;;;;N;;;;;-16F31;MIAO LETTER YI DZHA;Lo;0;L;;;;;N;;;;;-16F32;MIAO LETTER REFORMED TSHA;Lo;0;L;;;;;N;;;;;-16F33;MIAO LETTER SHA;Lo;0;L;;;;;N;;;;;-16F34;MIAO LETTER SSA;Lo;0;L;;;;;N;;;;;-16F35;MIAO LETTER ZHA;Lo;0;L;;;;;N;;;;;-16F36;MIAO LETTER ZSHA;Lo;0;L;;;;;N;;;;;-16F37;MIAO LETTER TSA;Lo;0;L;;;;;N;;;;;-16F38;MIAO LETTER DZA;Lo;0;L;;;;;N;;;;;-16F39;MIAO LETTER YI TSA;Lo;0;L;;;;;N;;;;;-16F3A;MIAO LETTER SA;Lo;0;L;;;;;N;;;;;-16F3B;MIAO LETTER ZA;Lo;0;L;;;;;N;;;;;-16F3C;MIAO LETTER ZSA;Lo;0;L;;;;;N;;;;;-16F3D;MIAO LETTER ZZA;Lo;0;L;;;;;N;;;;;-16F3E;MIAO LETTER ZZSA;Lo;0;L;;;;;N;;;;;-16F3F;MIAO LETTER ARCHAIC ZZA;Lo;0;L;;;;;N;;;;;-16F40;MIAO LETTER ZZYA;Lo;0;L;;;;;N;;;;;-16F41;MIAO LETTER ZZSYA;Lo;0;L;;;;;N;;;;;-16F42;MIAO LETTER WA;Lo;0;L;;;;;N;;;;;-16F43;MIAO LETTER AH;Lo;0;L;;;;;N;;;;;-16F44;MIAO LETTER HHA;Lo;0;L;;;;;N;;;;;-16F50;MIAO LETTER NASALIZATION;Lo;0;L;;;;;N;;;;;-16F51;MIAO SIGN ASPIRATION;Mc;0;L;;;;;N;;;;;-16F52;MIAO SIGN REFORMED VOICING;Mc;0;L;;;;;N;;;;;-16F53;MIAO SIGN REFORMED ASPIRATION;Mc;0;L;;;;;N;;;;;-16F54;MIAO VOWEL SIGN A;Mc;0;L;;;;;N;;;;;-16F55;MIAO VOWEL SIGN AA;Mc;0;L;;;;;N;;;;;-16F56;MIAO VOWEL SIGN AHH;Mc;0;L;;;;;N;;;;;-16F57;MIAO VOWEL SIGN AN;Mc;0;L;;;;;N;;;;;-16F58;MIAO VOWEL SIGN ANG;Mc;0;L;;;;;N;;;;;-16F59;MIAO VOWEL SIGN O;Mc;0;L;;;;;N;;;;;-16F5A;MIAO VOWEL SIGN OO;Mc;0;L;;;;;N;;;;;-16F5B;MIAO VOWEL SIGN WO;Mc;0;L;;;;;N;;;;;-16F5C;MIAO VOWEL SIGN W;Mc;0;L;;;;;N;;;;;-16F5D;MIAO VOWEL SIGN E;Mc;0;L;;;;;N;;;;;-16F5E;MIAO VOWEL SIGN EN;Mc;0;L;;;;;N;;;;;-16F5F;MIAO VOWEL SIGN ENG;Mc;0;L;;;;;N;;;;;-16F60;MIAO VOWEL SIGN OEY;Mc;0;L;;;;;N;;;;;-16F61;MIAO VOWEL SIGN I;Mc;0;L;;;;;N;;;;;-16F62;MIAO VOWEL SIGN IA;Mc;0;L;;;;;N;;;;;-16F63;MIAO VOWEL SIGN IAN;Mc;0;L;;;;;N;;;;;-16F64;MIAO VOWEL SIGN IANG;Mc;0;L;;;;;N;;;;;-16F65;MIAO VOWEL SIGN IO;Mc;0;L;;;;;N;;;;;-16F66;MIAO VOWEL SIGN IE;Mc;0;L;;;;;N;;;;;-16F67;MIAO VOWEL SIGN II;Mc;0;L;;;;;N;;;;;-16F68;MIAO VOWEL SIGN IU;Mc;0;L;;;;;N;;;;;-16F69;MIAO VOWEL SIGN ING;Mc;0;L;;;;;N;;;;;-16F6A;MIAO VOWEL SIGN U;Mc;0;L;;;;;N;;;;;-16F6B;MIAO VOWEL SIGN UA;Mc;0;L;;;;;N;;;;;-16F6C;MIAO VOWEL SIGN UAN;Mc;0;L;;;;;N;;;;;-16F6D;MIAO VOWEL SIGN UANG;Mc;0;L;;;;;N;;;;;-16F6E;MIAO VOWEL SIGN UU;Mc;0;L;;;;;N;;;;;-16F6F;MIAO VOWEL SIGN UEI;Mc;0;L;;;;;N;;;;;-16F70;MIAO VOWEL SIGN UNG;Mc;0;L;;;;;N;;;;;-16F71;MIAO VOWEL SIGN Y;Mc;0;L;;;;;N;;;;;-16F72;MIAO VOWEL SIGN YI;Mc;0;L;;;;;N;;;;;-16F73;MIAO VOWEL SIGN AE;Mc;0;L;;;;;N;;;;;-16F74;MIAO VOWEL SIGN AEE;Mc;0;L;;;;;N;;;;;-16F75;MIAO VOWEL SIGN ERR;Mc;0;L;;;;;N;;;;;-16F76;MIAO VOWEL SIGN ROUNDED ERR;Mc;0;L;;;;;N;;;;;-16F77;MIAO VOWEL SIGN ER;Mc;0;L;;;;;N;;;;;-16F78;MIAO VOWEL SIGN ROUNDED ER;Mc;0;L;;;;;N;;;;;-16F79;MIAO VOWEL SIGN AI;Mc;0;L;;;;;N;;;;;-16F7A;MIAO VOWEL SIGN EI;Mc;0;L;;;;;N;;;;;-16F7B;MIAO VOWEL SIGN AU;Mc;0;L;;;;;N;;;;;-16F7C;MIAO VOWEL SIGN OU;Mc;0;L;;;;;N;;;;;-16F7D;MIAO VOWEL SIGN N;Mc;0;L;;;;;N;;;;;-16F7E;MIAO VOWEL SIGN NG;Mc;0;L;;;;;N;;;;;-16F8F;MIAO TONE RIGHT;Mn;0;NSM;;;;;N;;;;;-16F90;MIAO TONE TOP RIGHT;Mn;0;NSM;;;;;N;;;;;-16F91;MIAO TONE ABOVE;Mn;0;NSM;;;;;N;;;;;-16F92;MIAO TONE BELOW;Mn;0;NSM;;;;;N;;;;;-16F93;MIAO LETTER TONE-2;Lm;0;L;;;;;N;;;;;-16F94;MIAO LETTER TONE-3;Lm;0;L;;;;;N;;;;;-16F95;MIAO LETTER TONE-4;Lm;0;L;;;;;N;;;;;-16F96;MIAO LETTER TONE-5;Lm;0;L;;;;;N;;;;;-16F97;MIAO LETTER TONE-6;Lm;0;L;;;;;N;;;;;-16F98;MIAO LETTER TONE-7;Lm;0;L;;;;;N;;;;;-16F99;MIAO LETTER TONE-8;Lm;0;L;;;;;N;;;;;-16F9A;MIAO LETTER REFORMED TONE-1;Lm;0;L;;;;;N;;;;;-16F9B;MIAO LETTER REFORMED TONE-2;Lm;0;L;;;;;N;;;;;-16F9C;MIAO LETTER REFORMED TONE-4;Lm;0;L;;;;;N;;;;;-16F9D;MIAO LETTER REFORMED TONE-5;Lm;0;L;;;;;N;;;;;-16F9E;MIAO LETTER REFORMED TONE-6;Lm;0;L;;;;;N;;;;;-16F9F;MIAO LETTER REFORMED TONE-8;Lm;0;L;;;;;N;;;;;-1B000;KATAKANA LETTER ARCHAIC E;Lo;0;L;;;;;N;;;;;-1B001;HIRAGANA LETTER ARCHAIC YE;Lo;0;L;;;;;N;;;;;-1BC00;DUPLOYAN LETTER H;Lo;0;L;;;;;N;;;;;-1BC01;DUPLOYAN LETTER X;Lo;0;L;;;;;N;;;;;-1BC02;DUPLOYAN LETTER P;Lo;0;L;;;;;N;;;;;-1BC03;DUPLOYAN LETTER T;Lo;0;L;;;;;N;;;;;-1BC04;DUPLOYAN LETTER F;Lo;0;L;;;;;N;;;;;-1BC05;DUPLOYAN LETTER K;Lo;0;L;;;;;N;;;;;-1BC06;DUPLOYAN LETTER L;Lo;0;L;;;;;N;;;;;-1BC07;DUPLOYAN LETTER B;Lo;0;L;;;;;N;;;;;-1BC08;DUPLOYAN LETTER D;Lo;0;L;;;;;N;;;;;-1BC09;DUPLOYAN LETTER V;Lo;0;L;;;;;N;;;;;-1BC0A;DUPLOYAN LETTER G;Lo;0;L;;;;;N;;;;;-1BC0B;DUPLOYAN LETTER R;Lo;0;L;;;;;N;;;;;-1BC0C;DUPLOYAN LETTER P N;Lo;0;L;;;;;N;;;;;-1BC0D;DUPLOYAN LETTER D S;Lo;0;L;;;;;N;;;;;-1BC0E;DUPLOYAN LETTER F N;Lo;0;L;;;;;N;;;;;-1BC0F;DUPLOYAN LETTER K M;Lo;0;L;;;;;N;;;;;-1BC10;DUPLOYAN LETTER R S;Lo;0;L;;;;;N;;;;;-1BC11;DUPLOYAN LETTER TH;Lo;0;L;;;;;N;;;;;-1BC12;DUPLOYAN LETTER SLOAN DH;Lo;0;L;;;;;N;;;;;-1BC13;DUPLOYAN LETTER DH;Lo;0;L;;;;;N;;;;;-1BC14;DUPLOYAN LETTER KK;Lo;0;L;;;;;N;;;;;-1BC15;DUPLOYAN LETTER SLOAN J;Lo;0;L;;;;;N;;;;;-1BC16;DUPLOYAN LETTER HL;Lo;0;L;;;;;N;;;;;-1BC17;DUPLOYAN LETTER LH;Lo;0;L;;;;;N;;;;;-1BC18;DUPLOYAN LETTER RH;Lo;0;L;;;;;N;;;;;-1BC19;DUPLOYAN LETTER M;Lo;0;L;;;;;N;;;;;-1BC1A;DUPLOYAN LETTER N;Lo;0;L;;;;;N;;;;;-1BC1B;DUPLOYAN LETTER J;Lo;0;L;;;;;N;;;;;-1BC1C;DUPLOYAN LETTER S;Lo;0;L;;;;;N;;;;;-1BC1D;DUPLOYAN LETTER M N;Lo;0;L;;;;;N;;;;;-1BC1E;DUPLOYAN LETTER N M;Lo;0;L;;;;;N;;;;;-1BC1F;DUPLOYAN LETTER J M;Lo;0;L;;;;;N;;;;;-1BC20;DUPLOYAN LETTER S J;Lo;0;L;;;;;N;;;;;-1BC21;DUPLOYAN LETTER M WITH DOT;Lo;0;L;;;;;N;;;;;-1BC22;DUPLOYAN LETTER N WITH DOT;Lo;0;L;;;;;N;;;;;-1BC23;DUPLOYAN LETTER J WITH DOT;Lo;0;L;;;;;N;;;;;-1BC24;DUPLOYAN LETTER J WITH DOTS INSIDE AND ABOVE;Lo;0;L;;;;;N;;;;;-1BC25;DUPLOYAN LETTER S WITH DOT;Lo;0;L;;;;;N;;;;;-1BC26;DUPLOYAN LETTER S WITH DOT BELOW;Lo;0;L;;;;;N;;;;;-1BC27;DUPLOYAN LETTER M S;Lo;0;L;;;;;N;;;;;-1BC28;DUPLOYAN LETTER N S;Lo;0;L;;;;;N;;;;;-1BC29;DUPLOYAN LETTER J S;Lo;0;L;;;;;N;;;;;-1BC2A;DUPLOYAN LETTER S S;Lo;0;L;;;;;N;;;;;-1BC2B;DUPLOYAN LETTER M N S;Lo;0;L;;;;;N;;;;;-1BC2C;DUPLOYAN LETTER N M S;Lo;0;L;;;;;N;;;;;-1BC2D;DUPLOYAN LETTER J M S;Lo;0;L;;;;;N;;;;;-1BC2E;DUPLOYAN LETTER S J S;Lo;0;L;;;;;N;;;;;-1BC2F;DUPLOYAN LETTER J S WITH DOT;Lo;0;L;;;;;N;;;;;-1BC30;DUPLOYAN LETTER J N;Lo;0;L;;;;;N;;;;;-1BC31;DUPLOYAN LETTER J N S;Lo;0;L;;;;;N;;;;;-1BC32;DUPLOYAN LETTER S T;Lo;0;L;;;;;N;;;;;-1BC33;DUPLOYAN LETTER S T R;Lo;0;L;;;;;N;;;;;-1BC34;DUPLOYAN LETTER S P;Lo;0;L;;;;;N;;;;;-1BC35;DUPLOYAN LETTER S P R;Lo;0;L;;;;;N;;;;;-1BC36;DUPLOYAN LETTER T S;Lo;0;L;;;;;N;;;;;-1BC37;DUPLOYAN LETTER T R S;Lo;0;L;;;;;N;;;;;-1BC38;DUPLOYAN LETTER W;Lo;0;L;;;;;N;;;;;-1BC39;DUPLOYAN LETTER WH;Lo;0;L;;;;;N;;;;;-1BC3A;DUPLOYAN LETTER W R;Lo;0;L;;;;;N;;;;;-1BC3B;DUPLOYAN LETTER S N;Lo;0;L;;;;;N;;;;;-1BC3C;DUPLOYAN LETTER S M;Lo;0;L;;;;;N;;;;;-1BC3D;DUPLOYAN LETTER K R S;Lo;0;L;;;;;N;;;;;-1BC3E;DUPLOYAN LETTER G R S;Lo;0;L;;;;;N;;;;;-1BC3F;DUPLOYAN LETTER S K;Lo;0;L;;;;;N;;;;;-1BC40;DUPLOYAN LETTER S K R;Lo;0;L;;;;;N;;;;;-1BC41;DUPLOYAN LETTER A;Lo;0;L;;;;;N;;;;;-1BC42;DUPLOYAN LETTER SLOAN OW;Lo;0;L;;;;;N;;;;;-1BC43;DUPLOYAN LETTER OA;Lo;0;L;;;;;N;;;;;-1BC44;DUPLOYAN LETTER O;Lo;0;L;;;;;N;;;;;-1BC45;DUPLOYAN LETTER AOU;Lo;0;L;;;;;N;;;;;-1BC46;DUPLOYAN LETTER I;Lo;0;L;;;;;N;;;;;-1BC47;DUPLOYAN LETTER E;Lo;0;L;;;;;N;;;;;-1BC48;DUPLOYAN LETTER IE;Lo;0;L;;;;;N;;;;;-1BC49;DUPLOYAN LETTER SHORT I;Lo;0;L;;;;;N;;;;;-1BC4A;DUPLOYAN LETTER UI;Lo;0;L;;;;;N;;;;;-1BC4B;DUPLOYAN LETTER EE;Lo;0;L;;;;;N;;;;;-1BC4C;DUPLOYAN LETTER SLOAN EH;Lo;0;L;;;;;N;;;;;-1BC4D;DUPLOYAN LETTER ROMANIAN I;Lo;0;L;;;;;N;;;;;-1BC4E;DUPLOYAN LETTER SLOAN EE;Lo;0;L;;;;;N;;;;;-1BC4F;DUPLOYAN LETTER LONG I;Lo;0;L;;;;;N;;;;;-1BC50;DUPLOYAN LETTER YE;Lo;0;L;;;;;N;;;;;-1BC51;DUPLOYAN LETTER U;Lo;0;L;;;;;N;;;;;-1BC52;DUPLOYAN LETTER EU;Lo;0;L;;;;;N;;;;;-1BC53;DUPLOYAN LETTER XW;Lo;0;L;;;;;N;;;;;-1BC54;DUPLOYAN LETTER U N;Lo;0;L;;;;;N;;;;;-1BC55;DUPLOYAN LETTER LONG U;Lo;0;L;;;;;N;;;;;-1BC56;DUPLOYAN LETTER ROMANIAN U;Lo;0;L;;;;;N;;;;;-1BC57;DUPLOYAN LETTER UH;Lo;0;L;;;;;N;;;;;-1BC58;DUPLOYAN LETTER SLOAN U;Lo;0;L;;;;;N;;;;;-1BC59;DUPLOYAN LETTER OOH;Lo;0;L;;;;;N;;;;;-1BC5A;DUPLOYAN LETTER OW;Lo;0;L;;;;;N;;;;;-1BC5B;DUPLOYAN LETTER OU;Lo;0;L;;;;;N;;;;;-1BC5C;DUPLOYAN LETTER WA;Lo;0;L;;;;;N;;;;;-1BC5D;DUPLOYAN LETTER WO;Lo;0;L;;;;;N;;;;;-1BC5E;DUPLOYAN LETTER WI;Lo;0;L;;;;;N;;;;;-1BC5F;DUPLOYAN LETTER WEI;Lo;0;L;;;;;N;;;;;-1BC60;DUPLOYAN LETTER WOW;Lo;0;L;;;;;N;;;;;-1BC61;DUPLOYAN LETTER NASAL U;Lo;0;L;;;;;N;;;;;-1BC62;DUPLOYAN LETTER NASAL O;Lo;0;L;;;;;N;;;;;-1BC63;DUPLOYAN LETTER NASAL I;Lo;0;L;;;;;N;;;;;-1BC64;DUPLOYAN LETTER NASAL A;Lo;0;L;;;;;N;;;;;-1BC65;DUPLOYAN LETTER PERNIN AN;Lo;0;L;;;;;N;;;;;-1BC66;DUPLOYAN LETTER PERNIN AM;Lo;0;L;;;;;N;;;;;-1BC67;DUPLOYAN LETTER SLOAN EN;Lo;0;L;;;;;N;;;;;-1BC68;DUPLOYAN LETTER SLOAN AN;Lo;0;L;;;;;N;;;;;-1BC69;DUPLOYAN LETTER SLOAN ON;Lo;0;L;;;;;N;;;;;-1BC6A;DUPLOYAN LETTER VOCALIC M;Lo;0;L;;;;;N;;;;;-1BC70;DUPLOYAN AFFIX LEFT HORIZONTAL SECANT;Lo;0;L;;;;;N;;;;;-1BC71;DUPLOYAN AFFIX MID HORIZONTAL SECANT;Lo;0;L;;;;;N;;;;;-1BC72;DUPLOYAN AFFIX RIGHT HORIZONTAL SECANT;Lo;0;L;;;;;N;;;;;-1BC73;DUPLOYAN AFFIX LOW VERTICAL SECANT;Lo;0;L;;;;;N;;;;;-1BC74;DUPLOYAN AFFIX MID VERTICAL SECANT;Lo;0;L;;;;;N;;;;;-1BC75;DUPLOYAN AFFIX HIGH VERTICAL SECANT;Lo;0;L;;;;;N;;;;;-1BC76;DUPLOYAN AFFIX ATTACHED SECANT;Lo;0;L;;;;;N;;;;;-1BC77;DUPLOYAN AFFIX ATTACHED LEFT-TO-RIGHT SECANT;Lo;0;L;;;;;N;;;;;-1BC78;DUPLOYAN AFFIX ATTACHED TANGENT;Lo;0;L;;;;;N;;;;;-1BC79;DUPLOYAN AFFIX ATTACHED TAIL;Lo;0;L;;;;;N;;;;;-1BC7A;DUPLOYAN AFFIX ATTACHED E HOOK;Lo;0;L;;;;;N;;;;;-1BC7B;DUPLOYAN AFFIX ATTACHED I HOOK;Lo;0;L;;;;;N;;;;;-1BC7C;DUPLOYAN AFFIX ATTACHED TANGENT HOOK;Lo;0;L;;;;;N;;;;;-1BC80;DUPLOYAN AFFIX HIGH ACUTE;Lo;0;L;;;;;N;;;;;-1BC81;DUPLOYAN AFFIX HIGH TIGHT ACUTE;Lo;0;L;;;;;N;;;;;-1BC82;DUPLOYAN AFFIX HIGH GRAVE;Lo;0;L;;;;;N;;;;;-1BC83;DUPLOYAN AFFIX HIGH LONG GRAVE;Lo;0;L;;;;;N;;;;;-1BC84;DUPLOYAN AFFIX HIGH DOT;Lo;0;L;;;;;N;;;;;-1BC85;DUPLOYAN AFFIX HIGH CIRCLE;Lo;0;L;;;;;N;;;;;-1BC86;DUPLOYAN AFFIX HIGH LINE;Lo;0;L;;;;;N;;;;;-1BC87;DUPLOYAN AFFIX HIGH WAVE;Lo;0;L;;;;;N;;;;;-1BC88;DUPLOYAN AFFIX HIGH VERTICAL;Lo;0;L;;;;;N;;;;;-1BC90;DUPLOYAN AFFIX LOW ACUTE;Lo;0;L;;;;;N;;;;;-1BC91;DUPLOYAN AFFIX LOW TIGHT ACUTE;Lo;0;L;;;;;N;;;;;-1BC92;DUPLOYAN AFFIX LOW GRAVE;Lo;0;L;;;;;N;;;;;-1BC93;DUPLOYAN AFFIX LOW LONG GRAVE;Lo;0;L;;;;;N;;;;;-1BC94;DUPLOYAN AFFIX LOW DOT;Lo;0;L;;;;;N;;;;;-1BC95;DUPLOYAN AFFIX LOW CIRCLE;Lo;0;L;;;;;N;;;;;-1BC96;DUPLOYAN AFFIX LOW LINE;Lo;0;L;;;;;N;;;;;-1BC97;DUPLOYAN AFFIX LOW WAVE;Lo;0;L;;;;;N;;;;;-1BC98;DUPLOYAN AFFIX LOW VERTICAL;Lo;0;L;;;;;N;;;;;-1BC99;DUPLOYAN AFFIX LOW ARROW;Lo;0;L;;;;;N;;;;;-1BC9C;DUPLOYAN SIGN O WITH CROSS;So;0;L;;;;;N;;;;;-1BC9D;DUPLOYAN THICK LETTER SELECTOR;Mn;0;NSM;;;;;N;;;;;-1BC9E;DUPLOYAN DOUBLE MARK;Mn;1;NSM;;;;;N;;;;;-1BC9F;DUPLOYAN PUNCTUATION CHINOOK FULL STOP;Po;0;L;;;;;N;;;;;-1BCA0;SHORTHAND FORMAT LETTER OVERLAP;Cf;0;BN;;;;;N;;;;;-1BCA1;SHORTHAND FORMAT CONTINUING OVERLAP;Cf;0;BN;;;;;N;;;;;-1BCA2;SHORTHAND FORMAT DOWN STEP;Cf;0;BN;;;;;N;;;;;-1BCA3;SHORTHAND FORMAT UP STEP;Cf;0;BN;;;;;N;;;;;-1D000;BYZANTINE MUSICAL SYMBOL PSILI;So;0;L;;;;;N;;;;;-1D001;BYZANTINE MUSICAL SYMBOL DASEIA;So;0;L;;;;;N;;;;;-1D002;BYZANTINE MUSICAL SYMBOL PERISPOMENI;So;0;L;;;;;N;;;;;-1D003;BYZANTINE MUSICAL SYMBOL OXEIA EKFONITIKON;So;0;L;;;;;N;;;;;-1D004;BYZANTINE MUSICAL SYMBOL OXEIA DIPLI;So;0;L;;;;;N;;;;;-1D005;BYZANTINE MUSICAL SYMBOL VAREIA EKFONITIKON;So;0;L;;;;;N;;;;;-1D006;BYZANTINE MUSICAL SYMBOL VAREIA DIPLI;So;0;L;;;;;N;;;;;-1D007;BYZANTINE MUSICAL SYMBOL KATHISTI;So;0;L;;;;;N;;;;;-1D008;BYZANTINE MUSICAL SYMBOL SYRMATIKI;So;0;L;;;;;N;;;;;-1D009;BYZANTINE MUSICAL SYMBOL PARAKLITIKI;So;0;L;;;;;N;;;;;-1D00A;BYZANTINE MUSICAL SYMBOL YPOKRISIS;So;0;L;;;;;N;;;;;-1D00B;BYZANTINE MUSICAL SYMBOL YPOKRISIS DIPLI;So;0;L;;;;;N;;;;;-1D00C;BYZANTINE MUSICAL SYMBOL KREMASTI;So;0;L;;;;;N;;;;;-1D00D;BYZANTINE MUSICAL SYMBOL APESO EKFONITIKON;So;0;L;;;;;N;;;;;-1D00E;BYZANTINE MUSICAL SYMBOL EXO EKFONITIKON;So;0;L;;;;;N;;;;;-1D00F;BYZANTINE MUSICAL SYMBOL TELEIA;So;0;L;;;;;N;;;;;-1D010;BYZANTINE MUSICAL SYMBOL KENTIMATA;So;0;L;;;;;N;;;;;-1D011;BYZANTINE MUSICAL SYMBOL APOSTROFOS;So;0;L;;;;;N;;;;;-1D012;BYZANTINE MUSICAL SYMBOL APOSTROFOS DIPLI;So;0;L;;;;;N;;;;;-1D013;BYZANTINE MUSICAL SYMBOL SYNEVMA;So;0;L;;;;;N;;;;;-1D014;BYZANTINE MUSICAL SYMBOL THITA;So;0;L;;;;;N;;;;;-1D015;BYZANTINE MUSICAL SYMBOL OLIGON ARCHAION;So;0;L;;;;;N;;;;;-1D016;BYZANTINE MUSICAL SYMBOL GORGON ARCHAION;So;0;L;;;;;N;;;;;-1D017;BYZANTINE MUSICAL SYMBOL PSILON;So;0;L;;;;;N;;;;;-1D018;BYZANTINE MUSICAL SYMBOL CHAMILON;So;0;L;;;;;N;;;;;-1D019;BYZANTINE MUSICAL SYMBOL VATHY;So;0;L;;;;;N;;;;;-1D01A;BYZANTINE MUSICAL SYMBOL ISON ARCHAION;So;0;L;;;;;N;;;;;-1D01B;BYZANTINE MUSICAL SYMBOL KENTIMA ARCHAION;So;0;L;;;;;N;;;;;-1D01C;BYZANTINE MUSICAL SYMBOL KENTIMATA ARCHAION;So;0;L;;;;;N;;;;;-1D01D;BYZANTINE MUSICAL SYMBOL SAXIMATA;So;0;L;;;;;N;;;;;-1D01E;BYZANTINE MUSICAL SYMBOL PARICHON;So;0;L;;;;;N;;;;;-1D01F;BYZANTINE MUSICAL SYMBOL STAVROS APODEXIA;So;0;L;;;;;N;;;;;-1D020;BYZANTINE MUSICAL SYMBOL OXEIAI ARCHAION;So;0;L;;;;;N;;;;;-1D021;BYZANTINE MUSICAL SYMBOL VAREIAI ARCHAION;So;0;L;;;;;N;;;;;-1D022;BYZANTINE MUSICAL SYMBOL APODERMA ARCHAION;So;0;L;;;;;N;;;;;-1D023;BYZANTINE MUSICAL SYMBOL APOTHEMA;So;0;L;;;;;N;;;;;-1D024;BYZANTINE MUSICAL SYMBOL KLASMA;So;0;L;;;;;N;;;;;-1D025;BYZANTINE MUSICAL SYMBOL REVMA;So;0;L;;;;;N;;;;;-1D026;BYZANTINE MUSICAL SYMBOL PIASMA ARCHAION;So;0;L;;;;;N;;;;;-1D027;BYZANTINE MUSICAL SYMBOL TINAGMA;So;0;L;;;;;N;;;;;-1D028;BYZANTINE MUSICAL SYMBOL ANATRICHISMA;So;0;L;;;;;N;;;;;-1D029;BYZANTINE MUSICAL SYMBOL SEISMA;So;0;L;;;;;N;;;;;-1D02A;BYZANTINE MUSICAL SYMBOL SYNAGMA ARCHAION;So;0;L;;;;;N;;;;;-1D02B;BYZANTINE MUSICAL SYMBOL SYNAGMA META STAVROU;So;0;L;;;;;N;;;;;-1D02C;BYZANTINE MUSICAL SYMBOL OYRANISMA ARCHAION;So;0;L;;;;;N;;;;;-1D02D;BYZANTINE MUSICAL SYMBOL THEMA;So;0;L;;;;;N;;;;;-1D02E;BYZANTINE MUSICAL SYMBOL LEMOI;So;0;L;;;;;N;;;;;-1D02F;BYZANTINE MUSICAL SYMBOL DYO;So;0;L;;;;;N;;;;;-1D030;BYZANTINE MUSICAL SYMBOL TRIA;So;0;L;;;;;N;;;;;-1D031;BYZANTINE MUSICAL SYMBOL TESSERA;So;0;L;;;;;N;;;;;-1D032;BYZANTINE MUSICAL SYMBOL KRATIMATA;So;0;L;;;;;N;;;;;-1D033;BYZANTINE MUSICAL SYMBOL APESO EXO NEO;So;0;L;;;;;N;;;;;-1D034;BYZANTINE MUSICAL SYMBOL FTHORA ARCHAION;So;0;L;;;;;N;;;;;-1D035;BYZANTINE MUSICAL SYMBOL IMIFTHORA;So;0;L;;;;;N;;;;;-1D036;BYZANTINE MUSICAL SYMBOL TROMIKON ARCHAION;So;0;L;;;;;N;;;;;-1D037;BYZANTINE MUSICAL SYMBOL KATAVA TROMIKON;So;0;L;;;;;N;;;;;-1D038;BYZANTINE MUSICAL SYMBOL PELASTON;So;0;L;;;;;N;;;;;-1D039;BYZANTINE MUSICAL SYMBOL PSIFISTON;So;0;L;;;;;N;;;;;-1D03A;BYZANTINE MUSICAL SYMBOL KONTEVMA;So;0;L;;;;;N;;;;;-1D03B;BYZANTINE MUSICAL SYMBOL CHOREVMA ARCHAION;So;0;L;;;;;N;;;;;-1D03C;BYZANTINE MUSICAL SYMBOL RAPISMA;So;0;L;;;;;N;;;;;-1D03D;BYZANTINE MUSICAL SYMBOL PARAKALESMA ARCHAION;So;0;L;;;;;N;;;;;-1D03E;BYZANTINE MUSICAL SYMBOL PARAKLITIKI ARCHAION;So;0;L;;;;;N;;;;;-1D03F;BYZANTINE MUSICAL SYMBOL ICHADIN;So;0;L;;;;;N;;;;;-1D040;BYZANTINE MUSICAL SYMBOL NANA;So;0;L;;;;;N;;;;;-1D041;BYZANTINE MUSICAL SYMBOL PETASMA;So;0;L;;;;;N;;;;;-1D042;BYZANTINE MUSICAL SYMBOL KONTEVMA ALLO;So;0;L;;;;;N;;;;;-1D043;BYZANTINE MUSICAL SYMBOL TROMIKON ALLO;So;0;L;;;;;N;;;;;-1D044;BYZANTINE MUSICAL SYMBOL STRAGGISMATA;So;0;L;;;;;N;;;;;-1D045;BYZANTINE MUSICAL SYMBOL GRONTHISMATA;So;0;L;;;;;N;;;;;-1D046;BYZANTINE MUSICAL SYMBOL ISON NEO;So;0;L;;;;;N;;;;;-1D047;BYZANTINE MUSICAL SYMBOL OLIGON NEO;So;0;L;;;;;N;;;;;-1D048;BYZANTINE MUSICAL SYMBOL OXEIA NEO;So;0;L;;;;;N;;;;;-1D049;BYZANTINE MUSICAL SYMBOL PETASTI;So;0;L;;;;;N;;;;;-1D04A;BYZANTINE MUSICAL SYMBOL KOUFISMA;So;0;L;;;;;N;;;;;-1D04B;BYZANTINE MUSICAL SYMBOL PETASTOKOUFISMA;So;0;L;;;;;N;;;;;-1D04C;BYZANTINE MUSICAL SYMBOL KRATIMOKOUFISMA;So;0;L;;;;;N;;;;;-1D04D;BYZANTINE MUSICAL SYMBOL PELASTON NEO;So;0;L;;;;;N;;;;;-1D04E;BYZANTINE MUSICAL SYMBOL KENTIMATA NEO ANO;So;0;L;;;;;N;;;;;-1D04F;BYZANTINE MUSICAL SYMBOL KENTIMA NEO ANO;So;0;L;;;;;N;;;;;-1D050;BYZANTINE MUSICAL SYMBOL YPSILI;So;0;L;;;;;N;;;;;-1D051;BYZANTINE MUSICAL SYMBOL APOSTROFOS NEO;So;0;L;;;;;N;;;;;-1D052;BYZANTINE MUSICAL SYMBOL APOSTROFOI SYNDESMOS NEO;So;0;L;;;;;N;;;;;-1D053;BYZANTINE MUSICAL SYMBOL YPORROI;So;0;L;;;;;N;;;;;-1D054;BYZANTINE MUSICAL SYMBOL KRATIMOYPORROON;So;0;L;;;;;N;;;;;-1D055;BYZANTINE MUSICAL SYMBOL ELAFRON;So;0;L;;;;;N;;;;;-1D056;BYZANTINE MUSICAL SYMBOL CHAMILI;So;0;L;;;;;N;;;;;-1D057;BYZANTINE MUSICAL SYMBOL MIKRON ISON;So;0;L;;;;;N;;;;;-1D058;BYZANTINE MUSICAL SYMBOL VAREIA NEO;So;0;L;;;;;N;;;;;-1D059;BYZANTINE MUSICAL SYMBOL PIASMA NEO;So;0;L;;;;;N;;;;;-1D05A;BYZANTINE MUSICAL SYMBOL PSIFISTON NEO;So;0;L;;;;;N;;;;;-1D05B;BYZANTINE MUSICAL SYMBOL OMALON;So;0;L;;;;;N;;;;;-1D05C;BYZANTINE MUSICAL SYMBOL ANTIKENOMA;So;0;L;;;;;N;;;;;-1D05D;BYZANTINE MUSICAL SYMBOL LYGISMA;So;0;L;;;;;N;;;;;-1D05E;BYZANTINE MUSICAL SYMBOL PARAKLITIKI NEO;So;0;L;;;;;N;;;;;-1D05F;BYZANTINE MUSICAL SYMBOL PARAKALESMA NEO;So;0;L;;;;;N;;;;;-1D060;BYZANTINE MUSICAL SYMBOL ETERON PARAKALESMA;So;0;L;;;;;N;;;;;-1D061;BYZANTINE MUSICAL SYMBOL KYLISMA;So;0;L;;;;;N;;;;;-1D062;BYZANTINE MUSICAL SYMBOL ANTIKENOKYLISMA;So;0;L;;;;;N;;;;;-1D063;BYZANTINE MUSICAL SYMBOL TROMIKON NEO;So;0;L;;;;;N;;;;;-1D064;BYZANTINE MUSICAL SYMBOL EKSTREPTON;So;0;L;;;;;N;;;;;-1D065;BYZANTINE MUSICAL SYMBOL SYNAGMA NEO;So;0;L;;;;;N;;;;;-1D066;BYZANTINE MUSICAL SYMBOL SYRMA;So;0;L;;;;;N;;;;;-1D067;BYZANTINE MUSICAL SYMBOL CHOREVMA NEO;So;0;L;;;;;N;;;;;-1D068;BYZANTINE MUSICAL SYMBOL EPEGERMA;So;0;L;;;;;N;;;;;-1D069;BYZANTINE MUSICAL SYMBOL SEISMA NEO;So;0;L;;;;;N;;;;;-1D06A;BYZANTINE MUSICAL SYMBOL XIRON KLASMA;So;0;L;;;;;N;;;;;-1D06B;BYZANTINE MUSICAL SYMBOL TROMIKOPSIFISTON;So;0;L;;;;;N;;;;;-1D06C;BYZANTINE MUSICAL SYMBOL PSIFISTOLYGISMA;So;0;L;;;;;N;;;;;-1D06D;BYZANTINE MUSICAL SYMBOL TROMIKOLYGISMA;So;0;L;;;;;N;;;;;-1D06E;BYZANTINE MUSICAL SYMBOL TROMIKOPARAKALESMA;So;0;L;;;;;N;;;;;-1D06F;BYZANTINE MUSICAL SYMBOL PSIFISTOPARAKALESMA;So;0;L;;;;;N;;;;;-1D070;BYZANTINE MUSICAL SYMBOL TROMIKOSYNAGMA;So;0;L;;;;;N;;;;;-1D071;BYZANTINE MUSICAL SYMBOL PSIFISTOSYNAGMA;So;0;L;;;;;N;;;;;-1D072;BYZANTINE MUSICAL SYMBOL GORGOSYNTHETON;So;0;L;;;;;N;;;;;-1D073;BYZANTINE MUSICAL SYMBOL ARGOSYNTHETON;So;0;L;;;;;N;;;;;-1D074;BYZANTINE MUSICAL SYMBOL ETERON ARGOSYNTHETON;So;0;L;;;;;N;;;;;-1D075;BYZANTINE MUSICAL SYMBOL OYRANISMA NEO;So;0;L;;;;;N;;;;;-1D076;BYZANTINE MUSICAL SYMBOL THEMATISMOS ESO;So;0;L;;;;;N;;;;;-1D077;BYZANTINE MUSICAL SYMBOL THEMATISMOS EXO;So;0;L;;;;;N;;;;;-1D078;BYZANTINE MUSICAL SYMBOL THEMA APLOUN;So;0;L;;;;;N;;;;;-1D079;BYZANTINE MUSICAL SYMBOL THES KAI APOTHES;So;0;L;;;;;N;;;;;-1D07A;BYZANTINE MUSICAL SYMBOL KATAVASMA;So;0;L;;;;;N;;;;;-1D07B;BYZANTINE MUSICAL SYMBOL ENDOFONON;So;0;L;;;;;N;;;;;-1D07C;BYZANTINE MUSICAL SYMBOL YFEN KATO;So;0;L;;;;;N;;;;;-1D07D;BYZANTINE MUSICAL SYMBOL YFEN ANO;So;0;L;;;;;N;;;;;-1D07E;BYZANTINE MUSICAL SYMBOL STAVROS;So;0;L;;;;;N;;;;;-1D07F;BYZANTINE MUSICAL SYMBOL KLASMA ANO;So;0;L;;;;;N;;;;;-1D080;BYZANTINE MUSICAL SYMBOL DIPLI ARCHAION;So;0;L;;;;;N;;;;;-1D081;BYZANTINE MUSICAL SYMBOL KRATIMA ARCHAION;So;0;L;;;;;N;;;;;-1D082;BYZANTINE MUSICAL SYMBOL KRATIMA ALLO;So;0;L;;;;;N;;;;;-1D083;BYZANTINE MUSICAL SYMBOL KRATIMA NEO;So;0;L;;;;;N;;;;;-1D084;BYZANTINE MUSICAL SYMBOL APODERMA NEO;So;0;L;;;;;N;;;;;-1D085;BYZANTINE MUSICAL SYMBOL APLI;So;0;L;;;;;N;;;;;-1D086;BYZANTINE MUSICAL SYMBOL DIPLI;So;0;L;;;;;N;;;;;-1D087;BYZANTINE MUSICAL SYMBOL TRIPLI;So;0;L;;;;;N;;;;;-1D088;BYZANTINE MUSICAL SYMBOL TETRAPLI;So;0;L;;;;;N;;;;;-1D089;BYZANTINE MUSICAL SYMBOL KORONIS;So;0;L;;;;;N;;;;;-1D08A;BYZANTINE MUSICAL SYMBOL LEIMMA ENOS CHRONOU;So;0;L;;;;;N;;;;;-1D08B;BYZANTINE MUSICAL SYMBOL LEIMMA DYO CHRONON;So;0;L;;;;;N;;;;;-1D08C;BYZANTINE MUSICAL SYMBOL LEIMMA TRION CHRONON;So;0;L;;;;;N;;;;;-1D08D;BYZANTINE MUSICAL SYMBOL LEIMMA TESSARON CHRONON;So;0;L;;;;;N;;;;;-1D08E;BYZANTINE MUSICAL SYMBOL LEIMMA IMISEOS CHRONOU;So;0;L;;;;;N;;;;;-1D08F;BYZANTINE MUSICAL SYMBOL GORGON NEO ANO;So;0;L;;;;;N;;;;;-1D090;BYZANTINE MUSICAL SYMBOL GORGON PARESTIGMENON ARISTERA;So;0;L;;;;;N;;;;;-1D091;BYZANTINE MUSICAL SYMBOL GORGON PARESTIGMENON DEXIA;So;0;L;;;;;N;;;;;-1D092;BYZANTINE MUSICAL SYMBOL DIGORGON;So;0;L;;;;;N;;;;;-1D093;BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON ARISTERA KATO;So;0;L;;;;;N;;;;;-1D094;BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON ARISTERA ANO;So;0;L;;;;;N;;;;;-1D095;BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON DEXIA;So;0;L;;;;;N;;;;;-1D096;BYZANTINE MUSICAL SYMBOL TRIGORGON;So;0;L;;;;;N;;;;;-1D097;BYZANTINE MUSICAL SYMBOL ARGON;So;0;L;;;;;N;;;;;-1D098;BYZANTINE MUSICAL SYMBOL IMIDIARGON;So;0;L;;;;;N;;;;;-1D099;BYZANTINE MUSICAL SYMBOL DIARGON;So;0;L;;;;;N;;;;;-1D09A;BYZANTINE MUSICAL SYMBOL AGOGI POLI ARGI;So;0;L;;;;;N;;;;;-1D09B;BYZANTINE MUSICAL SYMBOL AGOGI ARGOTERI;So;0;L;;;;;N;;;;;-1D09C;BYZANTINE MUSICAL SYMBOL AGOGI ARGI;So;0;L;;;;;N;;;;;-1D09D;BYZANTINE MUSICAL SYMBOL AGOGI METRIA;So;0;L;;;;;N;;;;;-1D09E;BYZANTINE MUSICAL SYMBOL AGOGI MESI;So;0;L;;;;;N;;;;;-1D09F;BYZANTINE MUSICAL SYMBOL AGOGI GORGI;So;0;L;;;;;N;;;;;-1D0A0;BYZANTINE MUSICAL SYMBOL AGOGI GORGOTERI;So;0;L;;;;;N;;;;;-1D0A1;BYZANTINE MUSICAL SYMBOL AGOGI POLI GORGI;So;0;L;;;;;N;;;;;-1D0A2;BYZANTINE MUSICAL SYMBOL MARTYRIA PROTOS ICHOS;So;0;L;;;;;N;;;;;-1D0A3;BYZANTINE MUSICAL SYMBOL MARTYRIA ALLI PROTOS ICHOS;So;0;L;;;;;N;;;;;-1D0A4;BYZANTINE MUSICAL SYMBOL MARTYRIA DEYTEROS ICHOS;So;0;L;;;;;N;;;;;-1D0A5;BYZANTINE MUSICAL SYMBOL MARTYRIA ALLI DEYTEROS ICHOS;So;0;L;;;;;N;;;;;-1D0A6;BYZANTINE MUSICAL SYMBOL MARTYRIA TRITOS ICHOS;So;0;L;;;;;N;;;;;-1D0A7;BYZANTINE MUSICAL SYMBOL MARTYRIA TRIFONIAS;So;0;L;;;;;N;;;;;-1D0A8;BYZANTINE MUSICAL SYMBOL MARTYRIA TETARTOS ICHOS;So;0;L;;;;;N;;;;;-1D0A9;BYZANTINE MUSICAL SYMBOL MARTYRIA TETARTOS LEGETOS ICHOS;So;0;L;;;;;N;;;;;-1D0AA;BYZANTINE MUSICAL SYMBOL MARTYRIA LEGETOS ICHOS;So;0;L;;;;;N;;;;;-1D0AB;BYZANTINE MUSICAL SYMBOL MARTYRIA PLAGIOS ICHOS;So;0;L;;;;;N;;;;;-1D0AC;BYZANTINE MUSICAL SYMBOL ISAKIA TELOUS ICHIMATOS;So;0;L;;;;;N;;;;;-1D0AD;BYZANTINE MUSICAL SYMBOL APOSTROFOI TELOUS ICHIMATOS;So;0;L;;;;;N;;;;;-1D0AE;BYZANTINE MUSICAL SYMBOL FANEROSIS TETRAFONIAS;So;0;L;;;;;N;;;;;-1D0AF;BYZANTINE MUSICAL SYMBOL FANEROSIS MONOFONIAS;So;0;L;;;;;N;;;;;-1D0B0;BYZANTINE MUSICAL SYMBOL FANEROSIS DIFONIAS;So;0;L;;;;;N;;;;;-1D0B1;BYZANTINE MUSICAL SYMBOL MARTYRIA VARYS ICHOS;So;0;L;;;;;N;;;;;-1D0B2;BYZANTINE MUSICAL SYMBOL MARTYRIA PROTOVARYS ICHOS;So;0;L;;;;;N;;;;;-1D0B3;BYZANTINE MUSICAL SYMBOL MARTYRIA PLAGIOS TETARTOS ICHOS;So;0;L;;;;;N;;;;;-1D0B4;BYZANTINE MUSICAL SYMBOL GORTHMIKON N APLOUN;So;0;L;;;;;N;;;;;-1D0B5;BYZANTINE MUSICAL SYMBOL GORTHMIKON N DIPLOUN;So;0;L;;;;;N;;;;;-1D0B6;BYZANTINE MUSICAL SYMBOL ENARXIS KAI FTHORA VOU;So;0;L;;;;;N;;;;;-1D0B7;BYZANTINE MUSICAL SYMBOL IMIFONON;So;0;L;;;;;N;;;;;-1D0B8;BYZANTINE MUSICAL SYMBOL IMIFTHORON;So;0;L;;;;;N;;;;;-1D0B9;BYZANTINE MUSICAL SYMBOL FTHORA ARCHAION DEYTEROU ICHOU;So;0;L;;;;;N;;;;;-1D0BA;BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI PA;So;0;L;;;;;N;;;;;-1D0BB;BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NANA;So;0;L;;;;;N;;;;;-1D0BC;BYZANTINE MUSICAL SYMBOL FTHORA NAOS ICHOS;So;0;L;;;;;N;;;;;-1D0BD;BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI DI;So;0;L;;;;;N;;;;;-1D0BE;BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON DIATONON DI;So;0;L;;;;;N;;;;;-1D0BF;BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI KE;So;0;L;;;;;N;;;;;-1D0C0;BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI ZO;So;0;L;;;;;N;;;;;-1D0C1;BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NI KATO;So;0;L;;;;;N;;;;;-1D0C2;BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NI ANO;So;0;L;;;;;N;;;;;-1D0C3;BYZANTINE MUSICAL SYMBOL FTHORA MALAKON CHROMA DIFONIAS;So;0;L;;;;;N;;;;;-1D0C4;BYZANTINE MUSICAL SYMBOL FTHORA MALAKON CHROMA MONOFONIAS;So;0;L;;;;;N;;;;;-1D0C5;BYZANTINE MUSICAL SYMBOL FHTORA SKLIRON CHROMA VASIS;So;0;L;;;;;N;;;;;-1D0C6;BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON CHROMA SYNAFI;So;0;L;;;;;N;;;;;-1D0C7;BYZANTINE MUSICAL SYMBOL FTHORA NENANO;So;0;L;;;;;N;;;;;-1D0C8;BYZANTINE MUSICAL SYMBOL CHROA ZYGOS;So;0;L;;;;;N;;;;;-1D0C9;BYZANTINE MUSICAL SYMBOL CHROA KLITON;So;0;L;;;;;N;;;;;-1D0CA;BYZANTINE MUSICAL SYMBOL CHROA SPATHI;So;0;L;;;;;N;;;;;-1D0CB;BYZANTINE MUSICAL SYMBOL FTHORA I YFESIS TETARTIMORION;So;0;L;;;;;N;;;;;-1D0CC;BYZANTINE MUSICAL SYMBOL FTHORA ENARMONIOS ANTIFONIA;So;0;L;;;;;N;;;;;-1D0CD;BYZANTINE MUSICAL SYMBOL YFESIS TRITIMORION;So;0;L;;;;;N;;;;;-1D0CE;BYZANTINE MUSICAL SYMBOL DIESIS TRITIMORION;So;0;L;;;;;N;;;;;-1D0CF;BYZANTINE MUSICAL SYMBOL DIESIS TETARTIMORION;So;0;L;;;;;N;;;;;-1D0D0;BYZANTINE MUSICAL SYMBOL DIESIS APLI DYO DODEKATA;So;0;L;;;;;N;;;;;-1D0D1;BYZANTINE MUSICAL SYMBOL DIESIS MONOGRAMMOS TESSERA DODEKATA;So;0;L;;;;;N;;;;;-1D0D2;BYZANTINE MUSICAL SYMBOL DIESIS DIGRAMMOS EX DODEKATA;So;0;L;;;;;N;;;;;-1D0D3;BYZANTINE MUSICAL SYMBOL DIESIS TRIGRAMMOS OKTO DODEKATA;So;0;L;;;;;N;;;;;-1D0D4;BYZANTINE MUSICAL SYMBOL YFESIS APLI DYO DODEKATA;So;0;L;;;;;N;;;;;-1D0D5;BYZANTINE MUSICAL SYMBOL YFESIS MONOGRAMMOS TESSERA DODEKATA;So;0;L;;;;;N;;;;;-1D0D6;BYZANTINE MUSICAL SYMBOL YFESIS DIGRAMMOS EX DODEKATA;So;0;L;;;;;N;;;;;-1D0D7;BYZANTINE MUSICAL SYMBOL YFESIS TRIGRAMMOS OKTO DODEKATA;So;0;L;;;;;N;;;;;-1D0D8;BYZANTINE MUSICAL SYMBOL GENIKI DIESIS;So;0;L;;;;;N;;;;;-1D0D9;BYZANTINE MUSICAL SYMBOL GENIKI YFESIS;So;0;L;;;;;N;;;;;-1D0DA;BYZANTINE MUSICAL SYMBOL DIASTOLI APLI MIKRI;So;0;L;;;;;N;;;;;-1D0DB;BYZANTINE MUSICAL SYMBOL DIASTOLI APLI MEGALI;So;0;L;;;;;N;;;;;-1D0DC;BYZANTINE MUSICAL SYMBOL DIASTOLI DIPLI;So;0;L;;;;;N;;;;;-1D0DD;BYZANTINE MUSICAL SYMBOL DIASTOLI THESEOS;So;0;L;;;;;N;;;;;-1D0DE;BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS;So;0;L;;;;;N;;;;;-1D0DF;BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS DISIMOU;So;0;L;;;;;N;;;;;-1D0E0;BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS TRISIMOU;So;0;L;;;;;N;;;;;-1D0E1;BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS TETRASIMOU;So;0;L;;;;;N;;;;;-1D0E2;BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS;So;0;L;;;;;N;;;;;-1D0E3;BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS DISIMOU;So;0;L;;;;;N;;;;;-1D0E4;BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS TRISIMOU;So;0;L;;;;;N;;;;;-1D0E5;BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS TETRASIMOU;So;0;L;;;;;N;;;;;-1D0E6;BYZANTINE MUSICAL SYMBOL DIGRAMMA GG;So;0;L;;;;;N;;;;;-1D0E7;BYZANTINE MUSICAL SYMBOL DIFTOGGOS OU;So;0;L;;;;;N;;;;;-1D0E8;BYZANTINE MUSICAL SYMBOL STIGMA;So;0;L;;;;;N;;;;;-1D0E9;BYZANTINE MUSICAL SYMBOL ARKTIKO PA;So;0;L;;;;;N;;;;;-1D0EA;BYZANTINE MUSICAL SYMBOL ARKTIKO VOU;So;0;L;;;;;N;;;;;-1D0EB;BYZANTINE MUSICAL SYMBOL ARKTIKO GA;So;0;L;;;;;N;;;;;-1D0EC;BYZANTINE MUSICAL SYMBOL ARKTIKO DI;So;0;L;;;;;N;;;;;-1D0ED;BYZANTINE MUSICAL SYMBOL ARKTIKO KE;So;0;L;;;;;N;;;;;-1D0EE;BYZANTINE MUSICAL SYMBOL ARKTIKO ZO;So;0;L;;;;;N;;;;;-1D0EF;BYZANTINE MUSICAL SYMBOL ARKTIKO NI;So;0;L;;;;;N;;;;;-1D0F0;BYZANTINE MUSICAL SYMBOL KENTIMATA NEO MESO;So;0;L;;;;;N;;;;;-1D0F1;BYZANTINE MUSICAL SYMBOL KENTIMA NEO MESO;So;0;L;;;;;N;;;;;-1D0F2;BYZANTINE MUSICAL SYMBOL KENTIMATA NEO KATO;So;0;L;;;;;N;;;;;-1D0F3;BYZANTINE MUSICAL SYMBOL KENTIMA NEO KATO;So;0;L;;;;;N;;;;;-1D0F4;BYZANTINE MUSICAL SYMBOL KLASMA KATO;So;0;L;;;;;N;;;;;-1D0F5;BYZANTINE MUSICAL SYMBOL GORGON NEO KATO;So;0;L;;;;;N;;;;;-1D100;MUSICAL SYMBOL SINGLE BARLINE;So;0;L;;;;;N;;;;;-1D101;MUSICAL SYMBOL DOUBLE BARLINE;So;0;L;;;;;N;;;;;-1D102;MUSICAL SYMBOL FINAL BARLINE;So;0;L;;;;;N;;;;;-1D103;MUSICAL SYMBOL REVERSE FINAL BARLINE;So;0;L;;;;;N;;;;;-1D104;MUSICAL SYMBOL DASHED BARLINE;So;0;L;;;;;N;;;;;-1D105;MUSICAL SYMBOL SHORT BARLINE;So;0;L;;;;;N;;;;;-1D106;MUSICAL SYMBOL LEFT REPEAT SIGN;So;0;L;;;;;N;;;;;-1D107;MUSICAL SYMBOL RIGHT REPEAT SIGN;So;0;L;;;;;N;;;;;-1D108;MUSICAL SYMBOL REPEAT DOTS;So;0;L;;;;;N;;;;;-1D109;MUSICAL SYMBOL DAL SEGNO;So;0;L;;;;;N;;;;;-1D10A;MUSICAL SYMBOL DA CAPO;So;0;L;;;;;N;;;;;-1D10B;MUSICAL SYMBOL SEGNO;So;0;L;;;;;N;;;;;-1D10C;MUSICAL SYMBOL CODA;So;0;L;;;;;N;;;;;-1D10D;MUSICAL SYMBOL REPEATED FIGURE-1;So;0;L;;;;;N;;;;;-1D10E;MUSICAL SYMBOL REPEATED FIGURE-2;So;0;L;;;;;N;;;;;-1D10F;MUSICAL SYMBOL REPEATED FIGURE-3;So;0;L;;;;;N;;;;;-1D110;MUSICAL SYMBOL FERMATA;So;0;L;;;;;N;;;;;-1D111;MUSICAL SYMBOL FERMATA BELOW;So;0;L;;;;;N;;;;;-1D112;MUSICAL SYMBOL BREATH MARK;So;0;L;;;;;N;;;;;-1D113;MUSICAL SYMBOL CAESURA;So;0;L;;;;;N;;;;;-1D114;MUSICAL SYMBOL BRACE;So;0;L;;;;;N;;;;;-1D115;MUSICAL SYMBOL BRACKET;So;0;L;;;;;N;;;;;-1D116;MUSICAL SYMBOL ONE-LINE STAFF;So;0;L;;;;;N;;;;;-1D117;MUSICAL SYMBOL TWO-LINE STAFF;So;0;L;;;;;N;;;;;-1D118;MUSICAL SYMBOL THREE-LINE STAFF;So;0;L;;;;;N;;;;;-1D119;MUSICAL SYMBOL FOUR-LINE STAFF;So;0;L;;;;;N;;;;;-1D11A;MUSICAL SYMBOL FIVE-LINE STAFF;So;0;L;;;;;N;;;;;-1D11B;MUSICAL SYMBOL SIX-LINE STAFF;So;0;L;;;;;N;;;;;-1D11C;MUSICAL SYMBOL SIX-STRING FRETBOARD;So;0;L;;;;;N;;;;;-1D11D;MUSICAL SYMBOL FOUR-STRING FRETBOARD;So;0;L;;;;;N;;;;;-1D11E;MUSICAL SYMBOL G CLEF;So;0;L;;;;;N;;;;;-1D11F;MUSICAL SYMBOL G CLEF OTTAVA ALTA;So;0;L;;;;;N;;;;;-1D120;MUSICAL SYMBOL G CLEF OTTAVA BASSA;So;0;L;;;;;N;;;;;-1D121;MUSICAL SYMBOL C CLEF;So;0;L;;;;;N;;;;;-1D122;MUSICAL SYMBOL F CLEF;So;0;L;;;;;N;;;;;-1D123;MUSICAL SYMBOL F CLEF OTTAVA ALTA;So;0;L;;;;;N;;;;;-1D124;MUSICAL SYMBOL F CLEF OTTAVA BASSA;So;0;L;;;;;N;;;;;-1D125;MUSICAL SYMBOL DRUM CLEF-1;So;0;L;;;;;N;;;;;-1D126;MUSICAL SYMBOL DRUM CLEF-2;So;0;L;;;;;N;;;;;-1D129;MUSICAL SYMBOL MULTIPLE MEASURE REST;So;0;L;;;;;N;;;;;-1D12A;MUSICAL SYMBOL DOUBLE SHARP;So;0;L;;;;;N;;;;;-1D12B;MUSICAL SYMBOL DOUBLE FLAT;So;0;L;;;;;N;;;;;-1D12C;MUSICAL SYMBOL FLAT UP;So;0;L;;;;;N;;;;;-1D12D;MUSICAL SYMBOL FLAT DOWN;So;0;L;;;;;N;;;;;-1D12E;MUSICAL SYMBOL NATURAL UP;So;0;L;;;;;N;;;;;-1D12F;MUSICAL SYMBOL NATURAL DOWN;So;0;L;;;;;N;;;;;-1D130;MUSICAL SYMBOL SHARP UP;So;0;L;;;;;N;;;;;-1D131;MUSICAL SYMBOL SHARP DOWN;So;0;L;;;;;N;;;;;-1D132;MUSICAL SYMBOL QUARTER TONE SHARP;So;0;L;;;;;N;;;;;-1D133;MUSICAL SYMBOL QUARTER TONE FLAT;So;0;L;;;;;N;;;;;-1D134;MUSICAL SYMBOL COMMON TIME;So;0;L;;;;;N;;;;;-1D135;MUSICAL SYMBOL CUT TIME;So;0;L;;;;;N;;;;;-1D136;MUSICAL SYMBOL OTTAVA ALTA;So;0;L;;;;;N;;;;;-1D137;MUSICAL SYMBOL OTTAVA BASSA;So;0;L;;;;;N;;;;;-1D138;MUSICAL SYMBOL QUINDICESIMA ALTA;So;0;L;;;;;N;;;;;-1D139;MUSICAL SYMBOL QUINDICESIMA BASSA;So;0;L;;;;;N;;;;;-1D13A;MUSICAL SYMBOL MULTI REST;So;0;L;;;;;N;;;;;-1D13B;MUSICAL SYMBOL WHOLE REST;So;0;L;;;;;N;;;;;-1D13C;MUSICAL SYMBOL HALF REST;So;0;L;;;;;N;;;;;-1D13D;MUSICAL SYMBOL QUARTER REST;So;0;L;;;;;N;;;;;-1D13E;MUSICAL SYMBOL EIGHTH REST;So;0;L;;;;;N;;;;;-1D13F;MUSICAL SYMBOL SIXTEENTH REST;So;0;L;;;;;N;;;;;-1D140;MUSICAL SYMBOL THIRTY-SECOND REST;So;0;L;;;;;N;;;;;-1D141;MUSICAL SYMBOL SIXTY-FOURTH REST;So;0;L;;;;;N;;;;;-1D142;MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH REST;So;0;L;;;;;N;;;;;-1D143;MUSICAL SYMBOL X NOTEHEAD;So;0;L;;;;;N;;;;;-1D144;MUSICAL SYMBOL PLUS NOTEHEAD;So;0;L;;;;;N;;;;;-1D145;MUSICAL SYMBOL CIRCLE X NOTEHEAD;So;0;L;;;;;N;;;;;-1D146;MUSICAL SYMBOL SQUARE NOTEHEAD WHITE;So;0;L;;;;;N;;;;;-1D147;MUSICAL SYMBOL SQUARE NOTEHEAD BLACK;So;0;L;;;;;N;;;;;-1D148;MUSICAL SYMBOL TRIANGLE NOTEHEAD UP WHITE;So;0;L;;;;;N;;;;;-1D149;MUSICAL SYMBOL TRIANGLE NOTEHEAD UP BLACK;So;0;L;;;;;N;;;;;-1D14A;MUSICAL SYMBOL TRIANGLE NOTEHEAD LEFT WHITE;So;0;L;;;;;N;;;;;-1D14B;MUSICAL SYMBOL TRIANGLE NOTEHEAD LEFT BLACK;So;0;L;;;;;N;;;;;-1D14C;MUSICAL SYMBOL TRIANGLE NOTEHEAD RIGHT WHITE;So;0;L;;;;;N;;;;;-1D14D;MUSICAL SYMBOL TRIANGLE NOTEHEAD RIGHT BLACK;So;0;L;;;;;N;;;;;-1D14E;MUSICAL SYMBOL TRIANGLE NOTEHEAD DOWN WHITE;So;0;L;;;;;N;;;;;-1D14F;MUSICAL SYMBOL TRIANGLE NOTEHEAD DOWN BLACK;So;0;L;;;;;N;;;;;-1D150;MUSICAL SYMBOL TRIANGLE NOTEHEAD UP RIGHT WHITE;So;0;L;;;;;N;;;;;-1D151;MUSICAL SYMBOL TRIANGLE NOTEHEAD UP RIGHT BLACK;So;0;L;;;;;N;;;;;-1D152;MUSICAL SYMBOL MOON NOTEHEAD WHITE;So;0;L;;;;;N;;;;;-1D153;MUSICAL SYMBOL MOON NOTEHEAD BLACK;So;0;L;;;;;N;;;;;-1D154;MUSICAL SYMBOL TRIANGLE-ROUND NOTEHEAD DOWN WHITE;So;0;L;;;;;N;;;;;-1D155;MUSICAL SYMBOL TRIANGLE-ROUND NOTEHEAD DOWN BLACK;So;0;L;;;;;N;;;;;-1D156;MUSICAL SYMBOL PARENTHESIS NOTEHEAD;So;0;L;;;;;N;;;;;-1D157;MUSICAL SYMBOL VOID NOTEHEAD;So;0;L;;;;;N;;;;;-1D158;MUSICAL SYMBOL NOTEHEAD BLACK;So;0;L;;;;;N;;;;;-1D159;MUSICAL SYMBOL NULL NOTEHEAD;So;0;L;;;;;N;;;;;-1D15A;MUSICAL SYMBOL CLUSTER NOTEHEAD WHITE;So;0;L;;;;;N;;;;;-1D15B;MUSICAL SYMBOL CLUSTER NOTEHEAD BLACK;So;0;L;;;;;N;;;;;-1D15C;MUSICAL SYMBOL BREVE;So;0;L;;;;;N;;;;;-1D15D;MUSICAL SYMBOL WHOLE NOTE;So;0;L;;;;;N;;;;;-1D15E;MUSICAL SYMBOL HALF NOTE;So;0;L;1D157 1D165;;;;N;;;;;-1D15F;MUSICAL SYMBOL QUARTER NOTE;So;0;L;1D158 1D165;;;;N;;;;;-1D160;MUSICAL SYMBOL EIGHTH NOTE;So;0;L;1D15F 1D16E;;;;N;;;;;-1D161;MUSICAL SYMBOL SIXTEENTH NOTE;So;0;L;1D15F 1D16F;;;;N;;;;;-1D162;MUSICAL SYMBOL THIRTY-SECOND NOTE;So;0;L;1D15F 1D170;;;;N;;;;;-1D163;MUSICAL SYMBOL SIXTY-FOURTH NOTE;So;0;L;1D15F 1D171;;;;N;;;;;-1D164;MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH NOTE;So;0;L;1D15F 1D172;;;;N;;;;;-1D165;MUSICAL SYMBOL COMBINING STEM;Mc;216;L;;;;;N;;;;;-1D166;MUSICAL SYMBOL COMBINING SPRECHGESANG STEM;Mc;216;L;;;;;N;;;;;-1D167;MUSICAL SYMBOL COMBINING TREMOLO-1;Mn;1;NSM;;;;;N;;;;;-1D168;MUSICAL SYMBOL COMBINING TREMOLO-2;Mn;1;NSM;;;;;N;;;;;-1D169;MUSICAL SYMBOL COMBINING TREMOLO-3;Mn;1;NSM;;;;;N;;;;;-1D16A;MUSICAL SYMBOL FINGERED TREMOLO-1;So;0;L;;;;;N;;;;;-1D16B;MUSICAL SYMBOL FINGERED TREMOLO-2;So;0;L;;;;;N;;;;;-1D16C;MUSICAL SYMBOL FINGERED TREMOLO-3;So;0;L;;;;;N;;;;;-1D16D;MUSICAL SYMBOL COMBINING AUGMENTATION DOT;Mc;226;L;;;;;N;;;;;-1D16E;MUSICAL SYMBOL COMBINING FLAG-1;Mc;216;L;;;;;N;;;;;-1D16F;MUSICAL SYMBOL COMBINING FLAG-2;Mc;216;L;;;;;N;;;;;-1D170;MUSICAL SYMBOL COMBINING FLAG-3;Mc;216;L;;;;;N;;;;;-1D171;MUSICAL SYMBOL COMBINING FLAG-4;Mc;216;L;;;;;N;;;;;-1D172;MUSICAL SYMBOL COMBINING FLAG-5;Mc;216;L;;;;;N;;;;;-1D173;MUSICAL SYMBOL BEGIN BEAM;Cf;0;BN;;;;;N;;;;;-1D174;MUSICAL SYMBOL END BEAM;Cf;0;BN;;;;;N;;;;;-1D175;MUSICAL SYMBOL BEGIN TIE;Cf;0;BN;;;;;N;;;;;-1D176;MUSICAL SYMBOL END TIE;Cf;0;BN;;;;;N;;;;;-1D177;MUSICAL SYMBOL BEGIN SLUR;Cf;0;BN;;;;;N;;;;;-1D178;MUSICAL SYMBOL END SLUR;Cf;0;BN;;;;;N;;;;;-1D179;MUSICAL SYMBOL BEGIN PHRASE;Cf;0;BN;;;;;N;;;;;-1D17A;MUSICAL SYMBOL END PHRASE;Cf;0;BN;;;;;N;;;;;-1D17B;MUSICAL SYMBOL COMBINING ACCENT;Mn;220;NSM;;;;;N;;;;;-1D17C;MUSICAL SYMBOL COMBINING STACCATO;Mn;220;NSM;;;;;N;;;;;-1D17D;MUSICAL SYMBOL COMBINING TENUTO;Mn;220;NSM;;;;;N;;;;;-1D17E;MUSICAL SYMBOL COMBINING STACCATISSIMO;Mn;220;NSM;;;;;N;;;;;-1D17F;MUSICAL SYMBOL COMBINING MARCATO;Mn;220;NSM;;;;;N;;;;;-1D180;MUSICAL SYMBOL COMBINING MARCATO-STACCATO;Mn;220;NSM;;;;;N;;;;;-1D181;MUSICAL SYMBOL COMBINING ACCENT-STACCATO;Mn;220;NSM;;;;;N;;;;;-1D182;MUSICAL SYMBOL COMBINING LOURE;Mn;220;NSM;;;;;N;;;;;-1D183;MUSICAL SYMBOL ARPEGGIATO UP;So;0;L;;;;;N;;;;;-1D184;MUSICAL SYMBOL ARPEGGIATO DOWN;So;0;L;;;;;N;;;;;-1D185;MUSICAL SYMBOL COMBINING DOIT;Mn;230;NSM;;;;;N;;;;;-1D186;MUSICAL SYMBOL COMBINING RIP;Mn;230;NSM;;;;;N;;;;;-1D187;MUSICAL SYMBOL COMBINING FLIP;Mn;230;NSM;;;;;N;;;;;-1D188;MUSICAL SYMBOL COMBINING SMEAR;Mn;230;NSM;;;;;N;;;;;-1D189;MUSICAL SYMBOL COMBINING BEND;Mn;230;NSM;;;;;N;;;;;-1D18A;MUSICAL SYMBOL COMBINING DOUBLE TONGUE;Mn;220;NSM;;;;;N;;;;;-1D18B;MUSICAL SYMBOL COMBINING TRIPLE TONGUE;Mn;220;NSM;;;;;N;;;;;-1D18C;MUSICAL SYMBOL RINFORZANDO;So;0;L;;;;;N;;;;;-1D18D;MUSICAL SYMBOL SUBITO;So;0;L;;;;;N;;;;;-1D18E;MUSICAL SYMBOL Z;So;0;L;;;;;N;;;;;-1D18F;MUSICAL SYMBOL PIANO;So;0;L;;;;;N;;;;;-1D190;MUSICAL SYMBOL MEZZO;So;0;L;;;;;N;;;;;-1D191;MUSICAL SYMBOL FORTE;So;0;L;;;;;N;;;;;-1D192;MUSICAL SYMBOL CRESCENDO;So;0;L;;;;;N;;;;;-1D193;MUSICAL SYMBOL DECRESCENDO;So;0;L;;;;;N;;;;;-1D194;MUSICAL SYMBOL GRACE NOTE SLASH;So;0;L;;;;;N;;;;;-1D195;MUSICAL SYMBOL GRACE NOTE NO SLASH;So;0;L;;;;;N;;;;;-1D196;MUSICAL SYMBOL TR;So;0;L;;;;;N;;;;;-1D197;MUSICAL SYMBOL TURN;So;0;L;;;;;N;;;;;-1D198;MUSICAL SYMBOL INVERTED TURN;So;0;L;;;;;N;;;;;-1D199;MUSICAL SYMBOL TURN SLASH;So;0;L;;;;;N;;;;;-1D19A;MUSICAL SYMBOL TURN UP;So;0;L;;;;;N;;;;;-1D19B;MUSICAL SYMBOL ORNAMENT STROKE-1;So;0;L;;;;;N;;;;;-1D19C;MUSICAL SYMBOL ORNAMENT STROKE-2;So;0;L;;;;;N;;;;;-1D19D;MUSICAL SYMBOL ORNAMENT STROKE-3;So;0;L;;;;;N;;;;;-1D19E;MUSICAL SYMBOL ORNAMENT STROKE-4;So;0;L;;;;;N;;;;;-1D19F;MUSICAL SYMBOL ORNAMENT STROKE-5;So;0;L;;;;;N;;;;;-1D1A0;MUSICAL SYMBOL ORNAMENT STROKE-6;So;0;L;;;;;N;;;;;-1D1A1;MUSICAL SYMBOL ORNAMENT STROKE-7;So;0;L;;;;;N;;;;;-1D1A2;MUSICAL SYMBOL ORNAMENT STROKE-8;So;0;L;;;;;N;;;;;-1D1A3;MUSICAL SYMBOL ORNAMENT STROKE-9;So;0;L;;;;;N;;;;;-1D1A4;MUSICAL SYMBOL ORNAMENT STROKE-10;So;0;L;;;;;N;;;;;-1D1A5;MUSICAL SYMBOL ORNAMENT STROKE-11;So;0;L;;;;;N;;;;;-1D1A6;MUSICAL SYMBOL HAUPTSTIMME;So;0;L;;;;;N;;;;;-1D1A7;MUSICAL SYMBOL NEBENSTIMME;So;0;L;;;;;N;;;;;-1D1A8;MUSICAL SYMBOL END OF STIMME;So;0;L;;;;;N;;;;;-1D1A9;MUSICAL SYMBOL DEGREE SLASH;So;0;L;;;;;N;;;;;-1D1AA;MUSICAL SYMBOL COMBINING DOWN BOW;Mn;230;NSM;;;;;N;;;;;-1D1AB;MUSICAL SYMBOL COMBINING UP BOW;Mn;230;NSM;;;;;N;;;;;-1D1AC;MUSICAL SYMBOL COMBINING HARMONIC;Mn;230;NSM;;;;;N;;;;;-1D1AD;MUSICAL SYMBOL COMBINING SNAP PIZZICATO;Mn;230;NSM;;;;;N;;;;;-1D1AE;MUSICAL SYMBOL PEDAL MARK;So;0;L;;;;;N;;;;;-1D1AF;MUSICAL SYMBOL PEDAL UP MARK;So;0;L;;;;;N;;;;;-1D1B0;MUSICAL SYMBOL HALF PEDAL MARK;So;0;L;;;;;N;;;;;-1D1B1;MUSICAL SYMBOL GLISSANDO UP;So;0;L;;;;;N;;;;;-1D1B2;MUSICAL SYMBOL GLISSANDO DOWN;So;0;L;;;;;N;;;;;-1D1B3;MUSICAL SYMBOL WITH FINGERNAILS;So;0;L;;;;;N;;;;;-1D1B4;MUSICAL SYMBOL DAMP;So;0;L;;;;;N;;;;;-1D1B5;MUSICAL SYMBOL DAMP ALL;So;0;L;;;;;N;;;;;-1D1B6;MUSICAL SYMBOL MAXIMA;So;0;L;;;;;N;;;;;-1D1B7;MUSICAL SYMBOL LONGA;So;0;L;;;;;N;;;;;-1D1B8;MUSICAL SYMBOL BREVIS;So;0;L;;;;;N;;;;;-1D1B9;MUSICAL SYMBOL SEMIBREVIS WHITE;So;0;L;;;;;N;;;;;-1D1BA;MUSICAL SYMBOL SEMIBREVIS BLACK;So;0;L;;;;;N;;;;;-1D1BB;MUSICAL SYMBOL MINIMA;So;0;L;1D1B9 1D165;;;;N;;;;;-1D1BC;MUSICAL SYMBOL MINIMA BLACK;So;0;L;1D1BA 1D165;;;;N;;;;;-1D1BD;MUSICAL SYMBOL SEMIMINIMA WHITE;So;0;L;1D1BB 1D16E;;;;N;;;;;-1D1BE;MUSICAL SYMBOL SEMIMINIMA BLACK;So;0;L;1D1BC 1D16E;;;;N;;;;;-1D1BF;MUSICAL SYMBOL FUSA WHITE;So;0;L;1D1BB 1D16F;;;;N;;;;;-1D1C0;MUSICAL SYMBOL FUSA BLACK;So;0;L;1D1BC 1D16F;;;;N;;;;;-1D1C1;MUSICAL SYMBOL LONGA PERFECTA REST;So;0;L;;;;;N;;;;;-1D1C2;MUSICAL SYMBOL LONGA IMPERFECTA REST;So;0;L;;;;;N;;;;;-1D1C3;MUSICAL SYMBOL BREVIS REST;So;0;L;;;;;N;;;;;-1D1C4;MUSICAL SYMBOL SEMIBREVIS REST;So;0;L;;;;;N;;;;;-1D1C5;MUSICAL SYMBOL MINIMA REST;So;0;L;;;;;N;;;;;-1D1C6;MUSICAL SYMBOL SEMIMINIMA REST;So;0;L;;;;;N;;;;;-1D1C7;MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE PERFECTA;So;0;L;;;;;N;;;;;-1D1C8;MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE IMPERFECTA;So;0;L;;;;;N;;;;;-1D1C9;MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE PERFECTA DIMINUTION-1;So;0;L;;;;;N;;;;;-1D1CA;MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE PERFECTA;So;0;L;;;;;N;;;;;-1D1CB;MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA;So;0;L;;;;;N;;;;;-1D1CC;MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-1;So;0;L;;;;;N;;;;;-1D1CD;MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-2;So;0;L;;;;;N;;;;;-1D1CE;MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-3;So;0;L;;;;;N;;;;;-1D1CF;MUSICAL SYMBOL CROIX;So;0;L;;;;;N;;;;;-1D1D0;MUSICAL SYMBOL GREGORIAN C CLEF;So;0;L;;;;;N;;;;;-1D1D1;MUSICAL SYMBOL GREGORIAN F CLEF;So;0;L;;;;;N;;;;;-1D1D2;MUSICAL SYMBOL SQUARE B;So;0;L;;;;;N;;;;;-1D1D3;MUSICAL SYMBOL VIRGA;So;0;L;;;;;N;;;;;-1D1D4;MUSICAL SYMBOL PODATUS;So;0;L;;;;;N;;;;;-1D1D5;MUSICAL SYMBOL CLIVIS;So;0;L;;;;;N;;;;;-1D1D6;MUSICAL SYMBOL SCANDICUS;So;0;L;;;;;N;;;;;-1D1D7;MUSICAL SYMBOL CLIMACUS;So;0;L;;;;;N;;;;;-1D1D8;MUSICAL SYMBOL TORCULUS;So;0;L;;;;;N;;;;;-1D1D9;MUSICAL SYMBOL PORRECTUS;So;0;L;;;;;N;;;;;-1D1DA;MUSICAL SYMBOL PORRECTUS FLEXUS;So;0;L;;;;;N;;;;;-1D1DB;MUSICAL SYMBOL SCANDICUS FLEXUS;So;0;L;;;;;N;;;;;-1D1DC;MUSICAL SYMBOL TORCULUS RESUPINUS;So;0;L;;;;;N;;;;;-1D1DD;MUSICAL SYMBOL PES SUBPUNCTIS;So;0;L;;;;;N;;;;;-1D200;GREEK VOCAL NOTATION SYMBOL-1;So;0;ON;;;;;N;;;;;-1D201;GREEK VOCAL NOTATION SYMBOL-2;So;0;ON;;;;;N;;;;;-1D202;GREEK VOCAL NOTATION SYMBOL-3;So;0;ON;;;;;N;;;;;-1D203;GREEK VOCAL NOTATION SYMBOL-4;So;0;ON;;;;;N;;;;;-1D204;GREEK VOCAL NOTATION SYMBOL-5;So;0;ON;;;;;N;;;;;-1D205;GREEK VOCAL NOTATION SYMBOL-6;So;0;ON;;;;;N;;;;;-1D206;GREEK VOCAL NOTATION SYMBOL-7;So;0;ON;;;;;N;;;;;-1D207;GREEK VOCAL NOTATION SYMBOL-8;So;0;ON;;;;;N;;;;;-1D208;GREEK VOCAL NOTATION SYMBOL-9;So;0;ON;;;;;N;;;;;-1D209;GREEK VOCAL NOTATION SYMBOL-10;So;0;ON;;;;;N;;;;;-1D20A;GREEK VOCAL NOTATION SYMBOL-11;So;0;ON;;;;;N;;;;;-1D20B;GREEK VOCAL NOTATION SYMBOL-12;So;0;ON;;;;;N;;;;;-1D20C;GREEK VOCAL NOTATION SYMBOL-13;So;0;ON;;;;;N;;;;;-1D20D;GREEK VOCAL NOTATION SYMBOL-14;So;0;ON;;;;;N;;;;;-1D20E;GREEK VOCAL NOTATION SYMBOL-15;So;0;ON;;;;;N;;;;;-1D20F;GREEK VOCAL NOTATION SYMBOL-16;So;0;ON;;;;;N;;;;;-1D210;GREEK VOCAL NOTATION SYMBOL-17;So;0;ON;;;;;N;;;;;-1D211;GREEK VOCAL NOTATION SYMBOL-18;So;0;ON;;;;;N;;;;;-1D212;GREEK VOCAL NOTATION SYMBOL-19;So;0;ON;;;;;N;;;;;-1D213;GREEK VOCAL NOTATION SYMBOL-20;So;0;ON;;;;;N;;;;;-1D214;GREEK VOCAL NOTATION SYMBOL-21;So;0;ON;;;;;N;;;;;-1D215;GREEK VOCAL NOTATION SYMBOL-22;So;0;ON;;;;;N;;;;;-1D216;GREEK VOCAL NOTATION SYMBOL-23;So;0;ON;;;;;N;;;;;-1D217;GREEK VOCAL NOTATION SYMBOL-24;So;0;ON;;;;;N;;;;;-1D218;GREEK VOCAL NOTATION SYMBOL-50;So;0;ON;;;;;N;;;;;-1D219;GREEK VOCAL NOTATION SYMBOL-51;So;0;ON;;;;;N;;;;;-1D21A;GREEK VOCAL NOTATION SYMBOL-52;So;0;ON;;;;;N;;;;;-1D21B;GREEK VOCAL NOTATION SYMBOL-53;So;0;ON;;;;;N;;;;;-1D21C;GREEK VOCAL NOTATION SYMBOL-54;So;0;ON;;;;;N;;;;;-1D21D;GREEK INSTRUMENTAL NOTATION SYMBOL-1;So;0;ON;;;;;N;;;;;-1D21E;GREEK INSTRUMENTAL NOTATION SYMBOL-2;So;0;ON;;;;;N;;;;;-1D21F;GREEK INSTRUMENTAL NOTATION SYMBOL-4;So;0;ON;;;;;N;;;;;-1D220;GREEK INSTRUMENTAL NOTATION SYMBOL-5;So;0;ON;;;;;N;;;;;-1D221;GREEK INSTRUMENTAL NOTATION SYMBOL-7;So;0;ON;;;;;N;;;;;-1D222;GREEK INSTRUMENTAL NOTATION SYMBOL-8;So;0;ON;;;;;N;;;;;-1D223;GREEK INSTRUMENTAL NOTATION SYMBOL-11;So;0;ON;;;;;N;;;;;-1D224;GREEK INSTRUMENTAL NOTATION SYMBOL-12;So;0;ON;;;;;N;;;;;-1D225;GREEK INSTRUMENTAL NOTATION SYMBOL-13;So;0;ON;;;;;N;;;;;-1D226;GREEK INSTRUMENTAL NOTATION SYMBOL-14;So;0;ON;;;;;N;;;;;-1D227;GREEK INSTRUMENTAL NOTATION SYMBOL-17;So;0;ON;;;;;N;;;;;-1D228;GREEK INSTRUMENTAL NOTATION SYMBOL-18;So;0;ON;;;;;N;;;;;-1D229;GREEK INSTRUMENTAL NOTATION SYMBOL-19;So;0;ON;;;;;N;;;;;-1D22A;GREEK INSTRUMENTAL NOTATION SYMBOL-23;So;0;ON;;;;;N;;;;;-1D22B;GREEK INSTRUMENTAL NOTATION SYMBOL-24;So;0;ON;;;;;N;;;;;-1D22C;GREEK INSTRUMENTAL NOTATION SYMBOL-25;So;0;ON;;;;;N;;;;;-1D22D;GREEK INSTRUMENTAL NOTATION SYMBOL-26;So;0;ON;;;;;N;;;;;-1D22E;GREEK INSTRUMENTAL NOTATION SYMBOL-27;So;0;ON;;;;;N;;;;;-1D22F;GREEK INSTRUMENTAL NOTATION SYMBOL-29;So;0;ON;;;;;N;;;;;-1D230;GREEK INSTRUMENTAL NOTATION SYMBOL-30;So;0;ON;;;;;N;;;;;-1D231;GREEK INSTRUMENTAL NOTATION SYMBOL-32;So;0;ON;;;;;N;;;;;-1D232;GREEK INSTRUMENTAL NOTATION SYMBOL-36;So;0;ON;;;;;N;;;;;-1D233;GREEK INSTRUMENTAL NOTATION SYMBOL-37;So;0;ON;;;;;N;;;;;-1D234;GREEK INSTRUMENTAL NOTATION SYMBOL-38;So;0;ON;;;;;N;;;;;-1D235;GREEK INSTRUMENTAL NOTATION SYMBOL-39;So;0;ON;;;;;N;;;;;-1D236;GREEK INSTRUMENTAL NOTATION SYMBOL-40;So;0;ON;;;;;N;;;;;-1D237;GREEK INSTRUMENTAL NOTATION SYMBOL-42;So;0;ON;;;;;N;;;;;-1D238;GREEK INSTRUMENTAL NOTATION SYMBOL-43;So;0;ON;;;;;N;;;;;-1D239;GREEK INSTRUMENTAL NOTATION SYMBOL-45;So;0;ON;;;;;N;;;;;-1D23A;GREEK INSTRUMENTAL NOTATION SYMBOL-47;So;0;ON;;;;;N;;;;;-1D23B;GREEK INSTRUMENTAL NOTATION SYMBOL-48;So;0;ON;;;;;N;;;;;-1D23C;GREEK INSTRUMENTAL NOTATION SYMBOL-49;So;0;ON;;;;;N;;;;;-1D23D;GREEK INSTRUMENTAL NOTATION SYMBOL-50;So;0;ON;;;;;N;;;;;-1D23E;GREEK INSTRUMENTAL NOTATION SYMBOL-51;So;0;ON;;;;;N;;;;;-1D23F;GREEK INSTRUMENTAL NOTATION SYMBOL-52;So;0;ON;;;;;N;;;;;-1D240;GREEK INSTRUMENTAL NOTATION SYMBOL-53;So;0;ON;;;;;N;;;;;-1D241;GREEK INSTRUMENTAL NOTATION SYMBOL-54;So;0;ON;;;;;N;;;;;-1D242;COMBINING GREEK MUSICAL TRISEME;Mn;230;NSM;;;;;N;;;;;-1D243;COMBINING GREEK MUSICAL TETRASEME;Mn;230;NSM;;;;;N;;;;;-1D244;COMBINING GREEK MUSICAL PENTASEME;Mn;230;NSM;;;;;N;;;;;-1D245;GREEK MUSICAL LEIMMA;So;0;ON;;;;;N;;;;;-1D300;MONOGRAM FOR EARTH;So;0;ON;;;;;N;;;;;-1D301;DIGRAM FOR HEAVENLY EARTH;So;0;ON;;;;;N;;;;;-1D302;DIGRAM FOR HUMAN EARTH;So;0;ON;;;;;N;;;;;-1D303;DIGRAM FOR EARTHLY HEAVEN;So;0;ON;;;;;N;;;;;-1D304;DIGRAM FOR EARTHLY HUMAN;So;0;ON;;;;;N;;;;;-1D305;DIGRAM FOR EARTH;So;0;ON;;;;;N;;;;;-1D306;TETRAGRAM FOR CENTRE;So;0;ON;;;;;N;;;;;-1D307;TETRAGRAM FOR FULL CIRCLE;So;0;ON;;;;;N;;;;;-1D308;TETRAGRAM FOR MIRED;So;0;ON;;;;;N;;;;;-1D309;TETRAGRAM FOR BARRIER;So;0;ON;;;;;N;;;;;-1D30A;TETRAGRAM FOR KEEPING SMALL;So;0;ON;;;;;N;;;;;-1D30B;TETRAGRAM FOR CONTRARIETY;So;0;ON;;;;;N;;;;;-1D30C;TETRAGRAM FOR ASCENT;So;0;ON;;;;;N;;;;;-1D30D;TETRAGRAM FOR OPPOSITION;So;0;ON;;;;;N;;;;;-1D30E;TETRAGRAM FOR BRANCHING OUT;So;0;ON;;;;;N;;;;;-1D30F;TETRAGRAM FOR DEFECTIVENESS OR DISTORTION;So;0;ON;;;;;N;;;;;-1D310;TETRAGRAM FOR DIVERGENCE;So;0;ON;;;;;N;;;;;-1D311;TETRAGRAM FOR YOUTHFULNESS;So;0;ON;;;;;N;;;;;-1D312;TETRAGRAM FOR INCREASE;So;0;ON;;;;;N;;;;;-1D313;TETRAGRAM FOR PENETRATION;So;0;ON;;;;;N;;;;;-1D314;TETRAGRAM FOR REACH;So;0;ON;;;;;N;;;;;-1D315;TETRAGRAM FOR CONTACT;So;0;ON;;;;;N;;;;;-1D316;TETRAGRAM FOR HOLDING BACK;So;0;ON;;;;;N;;;;;-1D317;TETRAGRAM FOR WAITING;So;0;ON;;;;;N;;;;;-1D318;TETRAGRAM FOR FOLLOWING;So;0;ON;;;;;N;;;;;-1D319;TETRAGRAM FOR ADVANCE;So;0;ON;;;;;N;;;;;-1D31A;TETRAGRAM FOR RELEASE;So;0;ON;;;;;N;;;;;-1D31B;TETRAGRAM FOR RESISTANCE;So;0;ON;;;;;N;;;;;-1D31C;TETRAGRAM FOR EASE;So;0;ON;;;;;N;;;;;-1D31D;TETRAGRAM FOR JOY;So;0;ON;;;;;N;;;;;-1D31E;TETRAGRAM FOR CONTENTION;So;0;ON;;;;;N;;;;;-1D31F;TETRAGRAM FOR ENDEAVOUR;So;0;ON;;;;;N;;;;;-1D320;TETRAGRAM FOR DUTIES;So;0;ON;;;;;N;;;;;-1D321;TETRAGRAM FOR CHANGE;So;0;ON;;;;;N;;;;;-1D322;TETRAGRAM FOR DECISIVENESS;So;0;ON;;;;;N;;;;;-1D323;TETRAGRAM FOR BOLD RESOLUTION;So;0;ON;;;;;N;;;;;-1D324;TETRAGRAM FOR PACKING;So;0;ON;;;;;N;;;;;-1D325;TETRAGRAM FOR LEGION;So;0;ON;;;;;N;;;;;-1D326;TETRAGRAM FOR CLOSENESS;So;0;ON;;;;;N;;;;;-1D327;TETRAGRAM FOR KINSHIP;So;0;ON;;;;;N;;;;;-1D328;TETRAGRAM FOR GATHERING;So;0;ON;;;;;N;;;;;-1D329;TETRAGRAM FOR STRENGTH;So;0;ON;;;;;N;;;;;-1D32A;TETRAGRAM FOR PURITY;So;0;ON;;;;;N;;;;;-1D32B;TETRAGRAM FOR FULLNESS;So;0;ON;;;;;N;;;;;-1D32C;TETRAGRAM FOR RESIDENCE;So;0;ON;;;;;N;;;;;-1D32D;TETRAGRAM FOR LAW OR MODEL;So;0;ON;;;;;N;;;;;-1D32E;TETRAGRAM FOR RESPONSE;So;0;ON;;;;;N;;;;;-1D32F;TETRAGRAM FOR GOING TO MEET;So;0;ON;;;;;N;;;;;-1D330;TETRAGRAM FOR ENCOUNTERS;So;0;ON;;;;;N;;;;;-1D331;TETRAGRAM FOR STOVE;So;0;ON;;;;;N;;;;;-1D332;TETRAGRAM FOR GREATNESS;So;0;ON;;;;;N;;;;;-1D333;TETRAGRAM FOR ENLARGEMENT;So;0;ON;;;;;N;;;;;-1D334;TETRAGRAM FOR PATTERN;So;0;ON;;;;;N;;;;;-1D335;TETRAGRAM FOR RITUAL;So;0;ON;;;;;N;;;;;-1D336;TETRAGRAM FOR FLIGHT;So;0;ON;;;;;N;;;;;-1D337;TETRAGRAM FOR VASTNESS OR WASTING;So;0;ON;;;;;N;;;;;-1D338;TETRAGRAM FOR CONSTANCY;So;0;ON;;;;;N;;;;;-1D339;TETRAGRAM FOR MEASURE;So;0;ON;;;;;N;;;;;-1D33A;TETRAGRAM FOR ETERNITY;So;0;ON;;;;;N;;;;;-1D33B;TETRAGRAM FOR UNITY;So;0;ON;;;;;N;;;;;-1D33C;TETRAGRAM FOR DIMINISHMENT;So;0;ON;;;;;N;;;;;-1D33D;TETRAGRAM FOR CLOSED MOUTH;So;0;ON;;;;;N;;;;;-1D33E;TETRAGRAM FOR GUARDEDNESS;So;0;ON;;;;;N;;;;;-1D33F;TETRAGRAM FOR GATHERING IN;So;0;ON;;;;;N;;;;;-1D340;TETRAGRAM FOR MASSING;So;0;ON;;;;;N;;;;;-1D341;TETRAGRAM FOR ACCUMULATION;So;0;ON;;;;;N;;;;;-1D342;TETRAGRAM FOR EMBELLISHMENT;So;0;ON;;;;;N;;;;;-1D343;TETRAGRAM FOR DOUBT;So;0;ON;;;;;N;;;;;-1D344;TETRAGRAM FOR WATCH;So;0;ON;;;;;N;;;;;-1D345;TETRAGRAM FOR SINKING;So;0;ON;;;;;N;;;;;-1D346;TETRAGRAM FOR INNER;So;0;ON;;;;;N;;;;;-1D347;TETRAGRAM FOR DEPARTURE;So;0;ON;;;;;N;;;;;-1D348;TETRAGRAM FOR DARKENING;So;0;ON;;;;;N;;;;;-1D349;TETRAGRAM FOR DIMMING;So;0;ON;;;;;N;;;;;-1D34A;TETRAGRAM FOR EXHAUSTION;So;0;ON;;;;;N;;;;;-1D34B;TETRAGRAM FOR SEVERANCE;So;0;ON;;;;;N;;;;;-1D34C;TETRAGRAM FOR STOPPAGE;So;0;ON;;;;;N;;;;;-1D34D;TETRAGRAM FOR HARDNESS;So;0;ON;;;;;N;;;;;-1D34E;TETRAGRAM FOR COMPLETION;So;0;ON;;;;;N;;;;;-1D34F;TETRAGRAM FOR CLOSURE;So;0;ON;;;;;N;;;;;-1D350;TETRAGRAM FOR FAILURE;So;0;ON;;;;;N;;;;;-1D351;TETRAGRAM FOR AGGRAVATION;So;0;ON;;;;;N;;;;;-1D352;TETRAGRAM FOR COMPLIANCE;So;0;ON;;;;;N;;;;;-1D353;TETRAGRAM FOR ON THE VERGE;So;0;ON;;;;;N;;;;;-1D354;TETRAGRAM FOR DIFFICULTIES;So;0;ON;;;;;N;;;;;-1D355;TETRAGRAM FOR LABOURING;So;0;ON;;;;;N;;;;;-1D356;TETRAGRAM FOR FOSTERING;So;0;ON;;;;;N;;;;;-1D360;COUNTING ROD UNIT DIGIT ONE;No;0;L;;;;1;N;;;;;-1D361;COUNTING ROD UNIT DIGIT TWO;No;0;L;;;;2;N;;;;;-1D362;COUNTING ROD UNIT DIGIT THREE;No;0;L;;;;3;N;;;;;-1D363;COUNTING ROD UNIT DIGIT FOUR;No;0;L;;;;4;N;;;;;-1D364;COUNTING ROD UNIT DIGIT FIVE;No;0;L;;;;5;N;;;;;-1D365;COUNTING ROD UNIT DIGIT SIX;No;0;L;;;;6;N;;;;;-1D366;COUNTING ROD UNIT DIGIT SEVEN;No;0;L;;;;7;N;;;;;-1D367;COUNTING ROD UNIT DIGIT EIGHT;No;0;L;;;;8;N;;;;;-1D368;COUNTING ROD UNIT DIGIT NINE;No;0;L;;;;9;N;;;;;-1D369;COUNTING ROD TENS DIGIT ONE;No;0;L;;;;10;N;;;;;-1D36A;COUNTING ROD TENS DIGIT TWO;No;0;L;;;;20;N;;;;;-1D36B;COUNTING ROD TENS DIGIT THREE;No;0;L;;;;30;N;;;;;-1D36C;COUNTING ROD TENS DIGIT FOUR;No;0;L;;;;40;N;;;;;-1D36D;COUNTING ROD TENS DIGIT FIVE;No;0;L;;;;50;N;;;;;-1D36E;COUNTING ROD TENS DIGIT SIX;No;0;L;;;;60;N;;;;;-1D36F;COUNTING ROD TENS DIGIT SEVEN;No;0;L;;;;70;N;;;;;-1D370;COUNTING ROD TENS DIGIT EIGHT;No;0;L;;;;80;N;;;;;-1D371;COUNTING ROD TENS DIGIT NINE;No;0;L;;;;90;N;;;;;-1D400;MATHEMATICAL BOLD CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D401;MATHEMATICAL BOLD CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D402;MATHEMATICAL BOLD CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D403;MATHEMATICAL BOLD CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D404;MATHEMATICAL BOLD CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D405;MATHEMATICAL BOLD CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D406;MATHEMATICAL BOLD CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D407;MATHEMATICAL BOLD CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D408;MATHEMATICAL BOLD CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D409;MATHEMATICAL BOLD CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D40A;MATHEMATICAL BOLD CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D40B;MATHEMATICAL BOLD CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D40C;MATHEMATICAL BOLD CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D40D;MATHEMATICAL BOLD CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D40E;MATHEMATICAL BOLD CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D40F;MATHEMATICAL BOLD CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D410;MATHEMATICAL BOLD CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D411;MATHEMATICAL BOLD CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D412;MATHEMATICAL BOLD CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D413;MATHEMATICAL BOLD CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D414;MATHEMATICAL BOLD CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D415;MATHEMATICAL BOLD CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D416;MATHEMATICAL BOLD CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D417;MATHEMATICAL BOLD CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D418;MATHEMATICAL BOLD CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D419;MATHEMATICAL BOLD CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D41A;MATHEMATICAL BOLD SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D41B;MATHEMATICAL BOLD SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D41C;MATHEMATICAL BOLD SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D41D;MATHEMATICAL BOLD SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D41E;MATHEMATICAL BOLD SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D41F;MATHEMATICAL BOLD SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D420;MATHEMATICAL BOLD SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D421;MATHEMATICAL BOLD SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D422;MATHEMATICAL BOLD SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D423;MATHEMATICAL BOLD SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D424;MATHEMATICAL BOLD SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D425;MATHEMATICAL BOLD SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D426;MATHEMATICAL BOLD SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D427;MATHEMATICAL BOLD SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D428;MATHEMATICAL BOLD SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D429;MATHEMATICAL BOLD SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D42A;MATHEMATICAL BOLD SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D42B;MATHEMATICAL BOLD SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D42C;MATHEMATICAL BOLD SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D42D;MATHEMATICAL BOLD SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D42E;MATHEMATICAL BOLD SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D42F;MATHEMATICAL BOLD SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D430;MATHEMATICAL BOLD SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D431;MATHEMATICAL BOLD SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D432;MATHEMATICAL BOLD SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D433;MATHEMATICAL BOLD SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D434;MATHEMATICAL ITALIC CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D435;MATHEMATICAL ITALIC CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D436;MATHEMATICAL ITALIC CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D437;MATHEMATICAL ITALIC CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D438;MATHEMATICAL ITALIC CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D439;MATHEMATICAL ITALIC CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D43A;MATHEMATICAL ITALIC CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D43B;MATHEMATICAL ITALIC CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D43C;MATHEMATICAL ITALIC CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D43D;MATHEMATICAL ITALIC CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D43E;MATHEMATICAL ITALIC CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D43F;MATHEMATICAL ITALIC CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D440;MATHEMATICAL ITALIC CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D441;MATHEMATICAL ITALIC CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D442;MATHEMATICAL ITALIC CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D443;MATHEMATICAL ITALIC CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D444;MATHEMATICAL ITALIC CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D445;MATHEMATICAL ITALIC CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D446;MATHEMATICAL ITALIC CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D447;MATHEMATICAL ITALIC CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D448;MATHEMATICAL ITALIC CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D449;MATHEMATICAL ITALIC CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D44A;MATHEMATICAL ITALIC CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D44B;MATHEMATICAL ITALIC CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D44C;MATHEMATICAL ITALIC CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D44D;MATHEMATICAL ITALIC CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D44E;MATHEMATICAL ITALIC SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D44F;MATHEMATICAL ITALIC SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D450;MATHEMATICAL ITALIC SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D451;MATHEMATICAL ITALIC SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D452;MATHEMATICAL ITALIC SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D453;MATHEMATICAL ITALIC SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D454;MATHEMATICAL ITALIC SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D456;MATHEMATICAL ITALIC SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D457;MATHEMATICAL ITALIC SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D458;MATHEMATICAL ITALIC SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D459;MATHEMATICAL ITALIC SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D45A;MATHEMATICAL ITALIC SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D45B;MATHEMATICAL ITALIC SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D45C;MATHEMATICAL ITALIC SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D45D;MATHEMATICAL ITALIC SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D45E;MATHEMATICAL ITALIC SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D45F;MATHEMATICAL ITALIC SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D460;MATHEMATICAL ITALIC SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D461;MATHEMATICAL ITALIC SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D462;MATHEMATICAL ITALIC SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D463;MATHEMATICAL ITALIC SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D464;MATHEMATICAL ITALIC SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D465;MATHEMATICAL ITALIC SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D466;MATHEMATICAL ITALIC SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D467;MATHEMATICAL ITALIC SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D468;MATHEMATICAL BOLD ITALIC CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D469;MATHEMATICAL BOLD ITALIC CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D46A;MATHEMATICAL BOLD ITALIC CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D46B;MATHEMATICAL BOLD ITALIC CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D46C;MATHEMATICAL BOLD ITALIC CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D46D;MATHEMATICAL BOLD ITALIC CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D46E;MATHEMATICAL BOLD ITALIC CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D46F;MATHEMATICAL BOLD ITALIC CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D470;MATHEMATICAL BOLD ITALIC CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D471;MATHEMATICAL BOLD ITALIC CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D472;MATHEMATICAL BOLD ITALIC CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D473;MATHEMATICAL BOLD ITALIC CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D474;MATHEMATICAL BOLD ITALIC CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D475;MATHEMATICAL BOLD ITALIC CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D476;MATHEMATICAL BOLD ITALIC CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D477;MATHEMATICAL BOLD ITALIC CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D478;MATHEMATICAL BOLD ITALIC CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D479;MATHEMATICAL BOLD ITALIC CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D47A;MATHEMATICAL BOLD ITALIC CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D47B;MATHEMATICAL BOLD ITALIC CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D47C;MATHEMATICAL BOLD ITALIC CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D47D;MATHEMATICAL BOLD ITALIC CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D47E;MATHEMATICAL BOLD ITALIC CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D47F;MATHEMATICAL BOLD ITALIC CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D480;MATHEMATICAL BOLD ITALIC CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D481;MATHEMATICAL BOLD ITALIC CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D482;MATHEMATICAL BOLD ITALIC SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D483;MATHEMATICAL BOLD ITALIC SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D484;MATHEMATICAL BOLD ITALIC SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D485;MATHEMATICAL BOLD ITALIC SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D486;MATHEMATICAL BOLD ITALIC SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D487;MATHEMATICAL BOLD ITALIC SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D488;MATHEMATICAL BOLD ITALIC SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D489;MATHEMATICAL BOLD ITALIC SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D48A;MATHEMATICAL BOLD ITALIC SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D48B;MATHEMATICAL BOLD ITALIC SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D48C;MATHEMATICAL BOLD ITALIC SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D48D;MATHEMATICAL BOLD ITALIC SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D48E;MATHEMATICAL BOLD ITALIC SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D48F;MATHEMATICAL BOLD ITALIC SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D490;MATHEMATICAL BOLD ITALIC SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D491;MATHEMATICAL BOLD ITALIC SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D492;MATHEMATICAL BOLD ITALIC SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D493;MATHEMATICAL BOLD ITALIC SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D494;MATHEMATICAL BOLD ITALIC SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D495;MATHEMATICAL BOLD ITALIC SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D496;MATHEMATICAL BOLD ITALIC SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D497;MATHEMATICAL BOLD ITALIC SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D498;MATHEMATICAL BOLD ITALIC SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D499;MATHEMATICAL BOLD ITALIC SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D49A;MATHEMATICAL BOLD ITALIC SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D49B;MATHEMATICAL BOLD ITALIC SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D49C;MATHEMATICAL SCRIPT CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D49E;MATHEMATICAL SCRIPT CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D49F;MATHEMATICAL SCRIPT CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D4A2;MATHEMATICAL SCRIPT CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D4A5;MATHEMATICAL SCRIPT CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D4A6;MATHEMATICAL SCRIPT CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D4A9;MATHEMATICAL SCRIPT CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D4AA;MATHEMATICAL SCRIPT CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D4AB;MATHEMATICAL SCRIPT CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D4AC;MATHEMATICAL SCRIPT CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D4AE;MATHEMATICAL SCRIPT CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D4AF;MATHEMATICAL SCRIPT CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D4B0;MATHEMATICAL SCRIPT CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D4B1;MATHEMATICAL SCRIPT CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D4B2;MATHEMATICAL SCRIPT CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D4B3;MATHEMATICAL SCRIPT CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D4B4;MATHEMATICAL SCRIPT CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D4B5;MATHEMATICAL SCRIPT CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D4B6;MATHEMATICAL SCRIPT SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D4B7;MATHEMATICAL SCRIPT SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D4B8;MATHEMATICAL SCRIPT SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D4B9;MATHEMATICAL SCRIPT SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D4BB;MATHEMATICAL SCRIPT SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D4BD;MATHEMATICAL SCRIPT SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D4BE;MATHEMATICAL SCRIPT SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D4BF;MATHEMATICAL SCRIPT SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D4C0;MATHEMATICAL SCRIPT SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D4C1;MATHEMATICAL SCRIPT SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D4C2;MATHEMATICAL SCRIPT SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D4C3;MATHEMATICAL SCRIPT SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D4C5;MATHEMATICAL SCRIPT SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D4C6;MATHEMATICAL SCRIPT SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D4C7;MATHEMATICAL SCRIPT SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D4C8;MATHEMATICAL SCRIPT SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D4C9;MATHEMATICAL SCRIPT SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D4CA;MATHEMATICAL SCRIPT SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D4CB;MATHEMATICAL SCRIPT SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D4CC;MATHEMATICAL SCRIPT SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D4CD;MATHEMATICAL SCRIPT SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D4CE;MATHEMATICAL SCRIPT SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D4CF;MATHEMATICAL SCRIPT SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D4D0;MATHEMATICAL BOLD SCRIPT CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D4D1;MATHEMATICAL BOLD SCRIPT CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D4D2;MATHEMATICAL BOLD SCRIPT CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D4D3;MATHEMATICAL BOLD SCRIPT CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D4D4;MATHEMATICAL BOLD SCRIPT CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D4D5;MATHEMATICAL BOLD SCRIPT CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D4D6;MATHEMATICAL BOLD SCRIPT CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D4D7;MATHEMATICAL BOLD SCRIPT CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D4D8;MATHEMATICAL BOLD SCRIPT CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D4D9;MATHEMATICAL BOLD SCRIPT CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D4DA;MATHEMATICAL BOLD SCRIPT CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D4DB;MATHEMATICAL BOLD SCRIPT CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D4DC;MATHEMATICAL BOLD SCRIPT CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D4DD;MATHEMATICAL BOLD SCRIPT CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D4DE;MATHEMATICAL BOLD SCRIPT CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D4DF;MATHEMATICAL BOLD SCRIPT CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D4E0;MATHEMATICAL BOLD SCRIPT CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D4E1;MATHEMATICAL BOLD SCRIPT CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D4E2;MATHEMATICAL BOLD SCRIPT CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D4E3;MATHEMATICAL BOLD SCRIPT CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D4E4;MATHEMATICAL BOLD SCRIPT CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D4E5;MATHEMATICAL BOLD SCRIPT CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D4E6;MATHEMATICAL BOLD SCRIPT CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D4E7;MATHEMATICAL BOLD SCRIPT CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D4E8;MATHEMATICAL BOLD SCRIPT CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D4E9;MATHEMATICAL BOLD SCRIPT CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D4EA;MATHEMATICAL BOLD SCRIPT SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D4EB;MATHEMATICAL BOLD SCRIPT SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D4EC;MATHEMATICAL BOLD SCRIPT SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D4ED;MATHEMATICAL BOLD SCRIPT SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D4EE;MATHEMATICAL BOLD SCRIPT SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D4EF;MATHEMATICAL BOLD SCRIPT SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D4F0;MATHEMATICAL BOLD SCRIPT SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D4F1;MATHEMATICAL BOLD SCRIPT SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D4F2;MATHEMATICAL BOLD SCRIPT SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D4F3;MATHEMATICAL BOLD SCRIPT SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D4F4;MATHEMATICAL BOLD SCRIPT SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D4F5;MATHEMATICAL BOLD SCRIPT SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D4F6;MATHEMATICAL BOLD SCRIPT SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D4F7;MATHEMATICAL BOLD SCRIPT SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D4F8;MATHEMATICAL BOLD SCRIPT SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D4F9;MATHEMATICAL BOLD SCRIPT SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D4FA;MATHEMATICAL BOLD SCRIPT SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D4FB;MATHEMATICAL BOLD SCRIPT SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D4FC;MATHEMATICAL BOLD SCRIPT SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D4FD;MATHEMATICAL BOLD SCRIPT SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D4FE;MATHEMATICAL BOLD SCRIPT SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D4FF;MATHEMATICAL BOLD SCRIPT SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D500;MATHEMATICAL BOLD SCRIPT SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D501;MATHEMATICAL BOLD SCRIPT SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D502;MATHEMATICAL BOLD SCRIPT SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D503;MATHEMATICAL BOLD SCRIPT SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D504;MATHEMATICAL FRAKTUR CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D505;MATHEMATICAL FRAKTUR CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D507;MATHEMATICAL FRAKTUR CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D508;MATHEMATICAL FRAKTUR CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D509;MATHEMATICAL FRAKTUR CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D50A;MATHEMATICAL FRAKTUR CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D50D;MATHEMATICAL FRAKTUR CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D50E;MATHEMATICAL FRAKTUR CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D50F;MATHEMATICAL FRAKTUR CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D510;MATHEMATICAL FRAKTUR CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D511;MATHEMATICAL FRAKTUR CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D512;MATHEMATICAL FRAKTUR CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D513;MATHEMATICAL FRAKTUR CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D514;MATHEMATICAL FRAKTUR CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D516;MATHEMATICAL FRAKTUR CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D517;MATHEMATICAL FRAKTUR CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D518;MATHEMATICAL FRAKTUR CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D519;MATHEMATICAL FRAKTUR CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D51A;MATHEMATICAL FRAKTUR CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D51B;MATHEMATICAL FRAKTUR CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D51C;MATHEMATICAL FRAKTUR CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D51E;MATHEMATICAL FRAKTUR SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D51F;MATHEMATICAL FRAKTUR SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D520;MATHEMATICAL FRAKTUR SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D521;MATHEMATICAL FRAKTUR SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D522;MATHEMATICAL FRAKTUR SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D523;MATHEMATICAL FRAKTUR SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D524;MATHEMATICAL FRAKTUR SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D525;MATHEMATICAL FRAKTUR SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D526;MATHEMATICAL FRAKTUR SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D527;MATHEMATICAL FRAKTUR SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D528;MATHEMATICAL FRAKTUR SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D529;MATHEMATICAL FRAKTUR SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D52A;MATHEMATICAL FRAKTUR SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D52B;MATHEMATICAL FRAKTUR SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D52C;MATHEMATICAL FRAKTUR SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D52D;MATHEMATICAL FRAKTUR SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D52E;MATHEMATICAL FRAKTUR SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D52F;MATHEMATICAL FRAKTUR SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D530;MATHEMATICAL FRAKTUR SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D531;MATHEMATICAL FRAKTUR SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D532;MATHEMATICAL FRAKTUR SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D533;MATHEMATICAL FRAKTUR SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D534;MATHEMATICAL FRAKTUR SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D535;MATHEMATICAL FRAKTUR SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D536;MATHEMATICAL FRAKTUR SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D537;MATHEMATICAL FRAKTUR SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D538;MATHEMATICAL DOUBLE-STRUCK CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D539;MATHEMATICAL DOUBLE-STRUCK CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D53B;MATHEMATICAL DOUBLE-STRUCK CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D53C;MATHEMATICAL DOUBLE-STRUCK CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D53D;MATHEMATICAL DOUBLE-STRUCK CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D53E;MATHEMATICAL DOUBLE-STRUCK CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D540;MATHEMATICAL DOUBLE-STRUCK CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D541;MATHEMATICAL DOUBLE-STRUCK CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D542;MATHEMATICAL DOUBLE-STRUCK CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D543;MATHEMATICAL DOUBLE-STRUCK CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D544;MATHEMATICAL DOUBLE-STRUCK CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D546;MATHEMATICAL DOUBLE-STRUCK CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D54A;MATHEMATICAL DOUBLE-STRUCK CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D54B;MATHEMATICAL DOUBLE-STRUCK CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D54C;MATHEMATICAL DOUBLE-STRUCK CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D54D;MATHEMATICAL DOUBLE-STRUCK CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D54E;MATHEMATICAL DOUBLE-STRUCK CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D54F;MATHEMATICAL DOUBLE-STRUCK CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D550;MATHEMATICAL DOUBLE-STRUCK CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D552;MATHEMATICAL DOUBLE-STRUCK SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D553;MATHEMATICAL DOUBLE-STRUCK SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D554;MATHEMATICAL DOUBLE-STRUCK SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D555;MATHEMATICAL DOUBLE-STRUCK SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D556;MATHEMATICAL DOUBLE-STRUCK SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D557;MATHEMATICAL DOUBLE-STRUCK SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D558;MATHEMATICAL DOUBLE-STRUCK SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D559;MATHEMATICAL DOUBLE-STRUCK SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D55A;MATHEMATICAL DOUBLE-STRUCK SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D55B;MATHEMATICAL DOUBLE-STRUCK SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D55C;MATHEMATICAL DOUBLE-STRUCK SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D55D;MATHEMATICAL DOUBLE-STRUCK SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D55E;MATHEMATICAL DOUBLE-STRUCK SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D55F;MATHEMATICAL DOUBLE-STRUCK SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D560;MATHEMATICAL DOUBLE-STRUCK SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D561;MATHEMATICAL DOUBLE-STRUCK SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D562;MATHEMATICAL DOUBLE-STRUCK SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D563;MATHEMATICAL DOUBLE-STRUCK SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D564;MATHEMATICAL DOUBLE-STRUCK SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D565;MATHEMATICAL DOUBLE-STRUCK SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D566;MATHEMATICAL DOUBLE-STRUCK SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D567;MATHEMATICAL DOUBLE-STRUCK SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D568;MATHEMATICAL DOUBLE-STRUCK SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D569;MATHEMATICAL DOUBLE-STRUCK SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D56A;MATHEMATICAL DOUBLE-STRUCK SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D56B;MATHEMATICAL DOUBLE-STRUCK SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D56C;MATHEMATICAL BOLD FRAKTUR CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D56D;MATHEMATICAL BOLD FRAKTUR CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D56E;MATHEMATICAL BOLD FRAKTUR CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D56F;MATHEMATICAL BOLD FRAKTUR CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D570;MATHEMATICAL BOLD FRAKTUR CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D571;MATHEMATICAL BOLD FRAKTUR CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D572;MATHEMATICAL BOLD FRAKTUR CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D573;MATHEMATICAL BOLD FRAKTUR CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D574;MATHEMATICAL BOLD FRAKTUR CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D575;MATHEMATICAL BOLD FRAKTUR CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D576;MATHEMATICAL BOLD FRAKTUR CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D577;MATHEMATICAL BOLD FRAKTUR CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D578;MATHEMATICAL BOLD FRAKTUR CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D579;MATHEMATICAL BOLD FRAKTUR CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D57A;MATHEMATICAL BOLD FRAKTUR CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D57B;MATHEMATICAL BOLD FRAKTUR CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D57C;MATHEMATICAL BOLD FRAKTUR CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D57D;MATHEMATICAL BOLD FRAKTUR CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D57E;MATHEMATICAL BOLD FRAKTUR CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D57F;MATHEMATICAL BOLD FRAKTUR CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D580;MATHEMATICAL BOLD FRAKTUR CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D581;MATHEMATICAL BOLD FRAKTUR CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D582;MATHEMATICAL BOLD FRAKTUR CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D583;MATHEMATICAL BOLD FRAKTUR CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D584;MATHEMATICAL BOLD FRAKTUR CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D585;MATHEMATICAL BOLD FRAKTUR CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D586;MATHEMATICAL BOLD FRAKTUR SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D587;MATHEMATICAL BOLD FRAKTUR SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D588;MATHEMATICAL BOLD FRAKTUR SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D589;MATHEMATICAL BOLD FRAKTUR SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D58A;MATHEMATICAL BOLD FRAKTUR SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D58B;MATHEMATICAL BOLD FRAKTUR SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D58C;MATHEMATICAL BOLD FRAKTUR SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D58D;MATHEMATICAL BOLD FRAKTUR SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D58E;MATHEMATICAL BOLD FRAKTUR SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D58F;MATHEMATICAL BOLD FRAKTUR SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D590;MATHEMATICAL BOLD FRAKTUR SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D591;MATHEMATICAL BOLD FRAKTUR SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D592;MATHEMATICAL BOLD FRAKTUR SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D593;MATHEMATICAL BOLD FRAKTUR SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D594;MATHEMATICAL BOLD FRAKTUR SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D595;MATHEMATICAL BOLD FRAKTUR SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D596;MATHEMATICAL BOLD FRAKTUR SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D597;MATHEMATICAL BOLD FRAKTUR SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D598;MATHEMATICAL BOLD FRAKTUR SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D599;MATHEMATICAL BOLD FRAKTUR SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D59A;MATHEMATICAL BOLD FRAKTUR SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D59B;MATHEMATICAL BOLD FRAKTUR SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D59C;MATHEMATICAL BOLD FRAKTUR SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D59D;MATHEMATICAL BOLD FRAKTUR SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D59E;MATHEMATICAL BOLD FRAKTUR SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D59F;MATHEMATICAL BOLD FRAKTUR SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D5A0;MATHEMATICAL SANS-SERIF CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D5A1;MATHEMATICAL SANS-SERIF CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D5A2;MATHEMATICAL SANS-SERIF CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D5A3;MATHEMATICAL SANS-SERIF CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D5A4;MATHEMATICAL SANS-SERIF CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D5A5;MATHEMATICAL SANS-SERIF CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D5A6;MATHEMATICAL SANS-SERIF CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D5A7;MATHEMATICAL SANS-SERIF CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D5A8;MATHEMATICAL SANS-SERIF CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D5A9;MATHEMATICAL SANS-SERIF CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D5AA;MATHEMATICAL SANS-SERIF CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D5AB;MATHEMATICAL SANS-SERIF CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D5AC;MATHEMATICAL SANS-SERIF CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D5AD;MATHEMATICAL SANS-SERIF CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D5AE;MATHEMATICAL SANS-SERIF CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D5AF;MATHEMATICAL SANS-SERIF CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D5B0;MATHEMATICAL SANS-SERIF CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D5B1;MATHEMATICAL SANS-SERIF CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D5B2;MATHEMATICAL SANS-SERIF CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D5B3;MATHEMATICAL SANS-SERIF CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D5B4;MATHEMATICAL SANS-SERIF CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D5B5;MATHEMATICAL SANS-SERIF CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D5B6;MATHEMATICAL SANS-SERIF CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D5B7;MATHEMATICAL SANS-SERIF CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D5B8;MATHEMATICAL SANS-SERIF CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D5B9;MATHEMATICAL SANS-SERIF CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D5BA;MATHEMATICAL SANS-SERIF SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D5BB;MATHEMATICAL SANS-SERIF SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D5BC;MATHEMATICAL SANS-SERIF SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D5BD;MATHEMATICAL SANS-SERIF SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D5BE;MATHEMATICAL SANS-SERIF SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D5BF;MATHEMATICAL SANS-SERIF SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D5C0;MATHEMATICAL SANS-SERIF SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D5C1;MATHEMATICAL SANS-SERIF SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D5C2;MATHEMATICAL SANS-SERIF SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D5C3;MATHEMATICAL SANS-SERIF SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D5C4;MATHEMATICAL SANS-SERIF SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D5C5;MATHEMATICAL SANS-SERIF SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D5C6;MATHEMATICAL SANS-SERIF SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D5C7;MATHEMATICAL SANS-SERIF SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D5C8;MATHEMATICAL SANS-SERIF SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D5C9;MATHEMATICAL SANS-SERIF SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D5CA;MATHEMATICAL SANS-SERIF SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D5CB;MATHEMATICAL SANS-SERIF SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D5CC;MATHEMATICAL SANS-SERIF SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D5CD;MATHEMATICAL SANS-SERIF SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D5CE;MATHEMATICAL SANS-SERIF SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D5CF;MATHEMATICAL SANS-SERIF SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D5D0;MATHEMATICAL SANS-SERIF SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D5D1;MATHEMATICAL SANS-SERIF SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D5D2;MATHEMATICAL SANS-SERIF SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D5D3;MATHEMATICAL SANS-SERIF SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D5D4;MATHEMATICAL SANS-SERIF BOLD CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D5D5;MATHEMATICAL SANS-SERIF BOLD CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D5D6;MATHEMATICAL SANS-SERIF BOLD CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D5D7;MATHEMATICAL SANS-SERIF BOLD CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D5D8;MATHEMATICAL SANS-SERIF BOLD CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D5D9;MATHEMATICAL SANS-SERIF BOLD CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D5DA;MATHEMATICAL SANS-SERIF BOLD CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D5DB;MATHEMATICAL SANS-SERIF BOLD CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D5DC;MATHEMATICAL SANS-SERIF BOLD CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D5DD;MATHEMATICAL SANS-SERIF BOLD CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D5DE;MATHEMATICAL SANS-SERIF BOLD CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D5DF;MATHEMATICAL SANS-SERIF BOLD CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D5E0;MATHEMATICAL SANS-SERIF BOLD CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D5E1;MATHEMATICAL SANS-SERIF BOLD CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D5E2;MATHEMATICAL SANS-SERIF BOLD CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D5E3;MATHEMATICAL SANS-SERIF BOLD CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D5E4;MATHEMATICAL SANS-SERIF BOLD CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D5E5;MATHEMATICAL SANS-SERIF BOLD CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D5E6;MATHEMATICAL SANS-SERIF BOLD CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D5E7;MATHEMATICAL SANS-SERIF BOLD CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D5E8;MATHEMATICAL SANS-SERIF BOLD CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D5E9;MATHEMATICAL SANS-SERIF BOLD CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D5EA;MATHEMATICAL SANS-SERIF BOLD CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D5EB;MATHEMATICAL SANS-SERIF BOLD CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D5EC;MATHEMATICAL SANS-SERIF BOLD CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D5ED;MATHEMATICAL SANS-SERIF BOLD CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D5EE;MATHEMATICAL SANS-SERIF BOLD SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D5EF;MATHEMATICAL SANS-SERIF BOLD SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D5F0;MATHEMATICAL SANS-SERIF BOLD SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D5F1;MATHEMATICAL SANS-SERIF BOLD SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D5F2;MATHEMATICAL SANS-SERIF BOLD SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D5F3;MATHEMATICAL SANS-SERIF BOLD SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D5F4;MATHEMATICAL SANS-SERIF BOLD SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D5F5;MATHEMATICAL SANS-SERIF BOLD SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D5F6;MATHEMATICAL SANS-SERIF BOLD SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D5F7;MATHEMATICAL SANS-SERIF BOLD SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D5F8;MATHEMATICAL SANS-SERIF BOLD SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D5F9;MATHEMATICAL SANS-SERIF BOLD SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D5FA;MATHEMATICAL SANS-SERIF BOLD SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D5FB;MATHEMATICAL SANS-SERIF BOLD SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D5FC;MATHEMATICAL SANS-SERIF BOLD SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D5FD;MATHEMATICAL SANS-SERIF BOLD SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D5FE;MATHEMATICAL SANS-SERIF BOLD SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D5FF;MATHEMATICAL SANS-SERIF BOLD SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D600;MATHEMATICAL SANS-SERIF BOLD SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D601;MATHEMATICAL SANS-SERIF BOLD SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D602;MATHEMATICAL SANS-SERIF BOLD SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D603;MATHEMATICAL SANS-SERIF BOLD SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D604;MATHEMATICAL SANS-SERIF BOLD SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D605;MATHEMATICAL SANS-SERIF BOLD SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D606;MATHEMATICAL SANS-SERIF BOLD SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D607;MATHEMATICAL SANS-SERIF BOLD SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D608;MATHEMATICAL SANS-SERIF ITALIC CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D609;MATHEMATICAL SANS-SERIF ITALIC CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D60A;MATHEMATICAL SANS-SERIF ITALIC CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D60B;MATHEMATICAL SANS-SERIF ITALIC CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D60C;MATHEMATICAL SANS-SERIF ITALIC CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D60D;MATHEMATICAL SANS-SERIF ITALIC CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D60E;MATHEMATICAL SANS-SERIF ITALIC CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D60F;MATHEMATICAL SANS-SERIF ITALIC CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D610;MATHEMATICAL SANS-SERIF ITALIC CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D611;MATHEMATICAL SANS-SERIF ITALIC CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D612;MATHEMATICAL SANS-SERIF ITALIC CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D613;MATHEMATICAL SANS-SERIF ITALIC CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D614;MATHEMATICAL SANS-SERIF ITALIC CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D615;MATHEMATICAL SANS-SERIF ITALIC CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D616;MATHEMATICAL SANS-SERIF ITALIC CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D617;MATHEMATICAL SANS-SERIF ITALIC CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D618;MATHEMATICAL SANS-SERIF ITALIC CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D619;MATHEMATICAL SANS-SERIF ITALIC CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D61A;MATHEMATICAL SANS-SERIF ITALIC CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D61B;MATHEMATICAL SANS-SERIF ITALIC CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D61C;MATHEMATICAL SANS-SERIF ITALIC CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D61D;MATHEMATICAL SANS-SERIF ITALIC CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D61E;MATHEMATICAL SANS-SERIF ITALIC CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D61F;MATHEMATICAL SANS-SERIF ITALIC CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D620;MATHEMATICAL SANS-SERIF ITALIC CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D621;MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D622;MATHEMATICAL SANS-SERIF ITALIC SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D623;MATHEMATICAL SANS-SERIF ITALIC SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D624;MATHEMATICAL SANS-SERIF ITALIC SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D625;MATHEMATICAL SANS-SERIF ITALIC SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D626;MATHEMATICAL SANS-SERIF ITALIC SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D627;MATHEMATICAL SANS-SERIF ITALIC SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D628;MATHEMATICAL SANS-SERIF ITALIC SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D629;MATHEMATICAL SANS-SERIF ITALIC SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D62A;MATHEMATICAL SANS-SERIF ITALIC SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D62B;MATHEMATICAL SANS-SERIF ITALIC SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D62C;MATHEMATICAL SANS-SERIF ITALIC SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D62D;MATHEMATICAL SANS-SERIF ITALIC SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D62E;MATHEMATICAL SANS-SERIF ITALIC SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D62F;MATHEMATICAL SANS-SERIF ITALIC SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D630;MATHEMATICAL SANS-SERIF ITALIC SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D631;MATHEMATICAL SANS-SERIF ITALIC SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D632;MATHEMATICAL SANS-SERIF ITALIC SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D633;MATHEMATICAL SANS-SERIF ITALIC SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D634;MATHEMATICAL SANS-SERIF ITALIC SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D635;MATHEMATICAL SANS-SERIF ITALIC SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D636;MATHEMATICAL SANS-SERIF ITALIC SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D637;MATHEMATICAL SANS-SERIF ITALIC SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D638;MATHEMATICAL SANS-SERIF ITALIC SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D639;MATHEMATICAL SANS-SERIF ITALIC SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D63A;MATHEMATICAL SANS-SERIF ITALIC SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D63B;MATHEMATICAL SANS-SERIF ITALIC SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D63C;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D63D;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D63E;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D63F;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D640;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D641;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D642;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D643;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D644;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D645;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D646;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D647;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D648;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D649;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D64A;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D64B;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D64C;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D64D;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D64E;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D64F;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D650;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D651;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D652;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D653;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D654;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D655;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D656;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D657;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D658;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D659;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D65A;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D65B;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D65C;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D65D;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D65E;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D65F;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D660;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D661;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D662;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D663;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D664;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D665;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D666;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D667;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D668;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D669;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D66A;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D66B;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D66C;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D66D;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D66E;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D66F;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D670;MATHEMATICAL MONOSPACE CAPITAL A;Lu;0;L;<font> 0041;;;;N;;;;;-1D671;MATHEMATICAL MONOSPACE CAPITAL B;Lu;0;L;<font> 0042;;;;N;;;;;-1D672;MATHEMATICAL MONOSPACE CAPITAL C;Lu;0;L;<font> 0043;;;;N;;;;;-1D673;MATHEMATICAL MONOSPACE CAPITAL D;Lu;0;L;<font> 0044;;;;N;;;;;-1D674;MATHEMATICAL MONOSPACE CAPITAL E;Lu;0;L;<font> 0045;;;;N;;;;;-1D675;MATHEMATICAL MONOSPACE CAPITAL F;Lu;0;L;<font> 0046;;;;N;;;;;-1D676;MATHEMATICAL MONOSPACE CAPITAL G;Lu;0;L;<font> 0047;;;;N;;;;;-1D677;MATHEMATICAL MONOSPACE CAPITAL H;Lu;0;L;<font> 0048;;;;N;;;;;-1D678;MATHEMATICAL MONOSPACE CAPITAL I;Lu;0;L;<font> 0049;;;;N;;;;;-1D679;MATHEMATICAL MONOSPACE CAPITAL J;Lu;0;L;<font> 004A;;;;N;;;;;-1D67A;MATHEMATICAL MONOSPACE CAPITAL K;Lu;0;L;<font> 004B;;;;N;;;;;-1D67B;MATHEMATICAL MONOSPACE CAPITAL L;Lu;0;L;<font> 004C;;;;N;;;;;-1D67C;MATHEMATICAL MONOSPACE CAPITAL M;Lu;0;L;<font> 004D;;;;N;;;;;-1D67D;MATHEMATICAL MONOSPACE CAPITAL N;Lu;0;L;<font> 004E;;;;N;;;;;-1D67E;MATHEMATICAL MONOSPACE CAPITAL O;Lu;0;L;<font> 004F;;;;N;;;;;-1D67F;MATHEMATICAL MONOSPACE CAPITAL P;Lu;0;L;<font> 0050;;;;N;;;;;-1D680;MATHEMATICAL MONOSPACE CAPITAL Q;Lu;0;L;<font> 0051;;;;N;;;;;-1D681;MATHEMATICAL MONOSPACE CAPITAL R;Lu;0;L;<font> 0052;;;;N;;;;;-1D682;MATHEMATICAL MONOSPACE CAPITAL S;Lu;0;L;<font> 0053;;;;N;;;;;-1D683;MATHEMATICAL MONOSPACE CAPITAL T;Lu;0;L;<font> 0054;;;;N;;;;;-1D684;MATHEMATICAL MONOSPACE CAPITAL U;Lu;0;L;<font> 0055;;;;N;;;;;-1D685;MATHEMATICAL MONOSPACE CAPITAL V;Lu;0;L;<font> 0056;;;;N;;;;;-1D686;MATHEMATICAL MONOSPACE CAPITAL W;Lu;0;L;<font> 0057;;;;N;;;;;-1D687;MATHEMATICAL MONOSPACE CAPITAL X;Lu;0;L;<font> 0058;;;;N;;;;;-1D688;MATHEMATICAL MONOSPACE CAPITAL Y;Lu;0;L;<font> 0059;;;;N;;;;;-1D689;MATHEMATICAL MONOSPACE CAPITAL Z;Lu;0;L;<font> 005A;;;;N;;;;;-1D68A;MATHEMATICAL MONOSPACE SMALL A;Ll;0;L;<font> 0061;;;;N;;;;;-1D68B;MATHEMATICAL MONOSPACE SMALL B;Ll;0;L;<font> 0062;;;;N;;;;;-1D68C;MATHEMATICAL MONOSPACE SMALL C;Ll;0;L;<font> 0063;;;;N;;;;;-1D68D;MATHEMATICAL MONOSPACE SMALL D;Ll;0;L;<font> 0064;;;;N;;;;;-1D68E;MATHEMATICAL MONOSPACE SMALL E;Ll;0;L;<font> 0065;;;;N;;;;;-1D68F;MATHEMATICAL MONOSPACE SMALL F;Ll;0;L;<font> 0066;;;;N;;;;;-1D690;MATHEMATICAL MONOSPACE SMALL G;Ll;0;L;<font> 0067;;;;N;;;;;-1D691;MATHEMATICAL MONOSPACE SMALL H;Ll;0;L;<font> 0068;;;;N;;;;;-1D692;MATHEMATICAL MONOSPACE SMALL I;Ll;0;L;<font> 0069;;;;N;;;;;-1D693;MATHEMATICAL MONOSPACE SMALL J;Ll;0;L;<font> 006A;;;;N;;;;;-1D694;MATHEMATICAL MONOSPACE SMALL K;Ll;0;L;<font> 006B;;;;N;;;;;-1D695;MATHEMATICAL MONOSPACE SMALL L;Ll;0;L;<font> 006C;;;;N;;;;;-1D696;MATHEMATICAL MONOSPACE SMALL M;Ll;0;L;<font> 006D;;;;N;;;;;-1D697;MATHEMATICAL MONOSPACE SMALL N;Ll;0;L;<font> 006E;;;;N;;;;;-1D698;MATHEMATICAL MONOSPACE SMALL O;Ll;0;L;<font> 006F;;;;N;;;;;-1D699;MATHEMATICAL MONOSPACE SMALL P;Ll;0;L;<font> 0070;;;;N;;;;;-1D69A;MATHEMATICAL MONOSPACE SMALL Q;Ll;0;L;<font> 0071;;;;N;;;;;-1D69B;MATHEMATICAL MONOSPACE SMALL R;Ll;0;L;<font> 0072;;;;N;;;;;-1D69C;MATHEMATICAL MONOSPACE SMALL S;Ll;0;L;<font> 0073;;;;N;;;;;-1D69D;MATHEMATICAL MONOSPACE SMALL T;Ll;0;L;<font> 0074;;;;N;;;;;-1D69E;MATHEMATICAL MONOSPACE SMALL U;Ll;0;L;<font> 0075;;;;N;;;;;-1D69F;MATHEMATICAL MONOSPACE SMALL V;Ll;0;L;<font> 0076;;;;N;;;;;-1D6A0;MATHEMATICAL MONOSPACE SMALL W;Ll;0;L;<font> 0077;;;;N;;;;;-1D6A1;MATHEMATICAL MONOSPACE SMALL X;Ll;0;L;<font> 0078;;;;N;;;;;-1D6A2;MATHEMATICAL MONOSPACE SMALL Y;Ll;0;L;<font> 0079;;;;N;;;;;-1D6A3;MATHEMATICAL MONOSPACE SMALL Z;Ll;0;L;<font> 007A;;;;N;;;;;-1D6A4;MATHEMATICAL ITALIC SMALL DOTLESS I;Ll;0;L;<font> 0131;;;;N;;;;;-1D6A5;MATHEMATICAL ITALIC SMALL DOTLESS J;Ll;0;L;<font> 0237;;;;N;;;;;-1D6A8;MATHEMATICAL BOLD CAPITAL ALPHA;Lu;0;L;<font> 0391;;;;N;;;;;-1D6A9;MATHEMATICAL BOLD CAPITAL BETA;Lu;0;L;<font> 0392;;;;N;;;;;-1D6AA;MATHEMATICAL BOLD CAPITAL GAMMA;Lu;0;L;<font> 0393;;;;N;;;;;-1D6AB;MATHEMATICAL BOLD CAPITAL DELTA;Lu;0;L;<font> 0394;;;;N;;;;;-1D6AC;MATHEMATICAL BOLD CAPITAL EPSILON;Lu;0;L;<font> 0395;;;;N;;;;;-1D6AD;MATHEMATICAL BOLD CAPITAL ZETA;Lu;0;L;<font> 0396;;;;N;;;;;-1D6AE;MATHEMATICAL BOLD CAPITAL ETA;Lu;0;L;<font> 0397;;;;N;;;;;-1D6AF;MATHEMATICAL BOLD CAPITAL THETA;Lu;0;L;<font> 0398;;;;N;;;;;-1D6B0;MATHEMATICAL BOLD CAPITAL IOTA;Lu;0;L;<font> 0399;;;;N;;;;;-1D6B1;MATHEMATICAL BOLD CAPITAL KAPPA;Lu;0;L;<font> 039A;;;;N;;;;;-1D6B2;MATHEMATICAL BOLD CAPITAL LAMDA;Lu;0;L;<font> 039B;;;;N;;;;;-1D6B3;MATHEMATICAL BOLD CAPITAL MU;Lu;0;L;<font> 039C;;;;N;;;;;-1D6B4;MATHEMATICAL BOLD CAPITAL NU;Lu;0;L;<font> 039D;;;;N;;;;;-1D6B5;MATHEMATICAL BOLD CAPITAL XI;Lu;0;L;<font> 039E;;;;N;;;;;-1D6B6;MATHEMATICAL BOLD CAPITAL OMICRON;Lu;0;L;<font> 039F;;;;N;;;;;-1D6B7;MATHEMATICAL BOLD CAPITAL PI;Lu;0;L;<font> 03A0;;;;N;;;;;-1D6B8;MATHEMATICAL BOLD CAPITAL RHO;Lu;0;L;<font> 03A1;;;;N;;;;;-1D6B9;MATHEMATICAL BOLD CAPITAL THETA SYMBOL;Lu;0;L;<font> 03F4;;;;N;;;;;-1D6BA;MATHEMATICAL BOLD CAPITAL SIGMA;Lu;0;L;<font> 03A3;;;;N;;;;;-1D6BB;MATHEMATICAL BOLD CAPITAL TAU;Lu;0;L;<font> 03A4;;;;N;;;;;-1D6BC;MATHEMATICAL BOLD CAPITAL UPSILON;Lu;0;L;<font> 03A5;;;;N;;;;;-1D6BD;MATHEMATICAL BOLD CAPITAL PHI;Lu;0;L;<font> 03A6;;;;N;;;;;-1D6BE;MATHEMATICAL BOLD CAPITAL CHI;Lu;0;L;<font> 03A7;;;;N;;;;;-1D6BF;MATHEMATICAL BOLD CAPITAL PSI;Lu;0;L;<font> 03A8;;;;N;;;;;-1D6C0;MATHEMATICAL BOLD CAPITAL OMEGA;Lu;0;L;<font> 03A9;;;;N;;;;;-1D6C1;MATHEMATICAL BOLD NABLA;Sm;0;L;<font> 2207;;;;N;;;;;-1D6C2;MATHEMATICAL BOLD SMALL ALPHA;Ll;0;L;<font> 03B1;;;;N;;;;;-1D6C3;MATHEMATICAL BOLD SMALL BETA;Ll;0;L;<font> 03B2;;;;N;;;;;-1D6C4;MATHEMATICAL BOLD SMALL GAMMA;Ll;0;L;<font> 03B3;;;;N;;;;;-1D6C5;MATHEMATICAL BOLD SMALL DELTA;Ll;0;L;<font> 03B4;;;;N;;;;;-1D6C6;MATHEMATICAL BOLD SMALL EPSILON;Ll;0;L;<font> 03B5;;;;N;;;;;-1D6C7;MATHEMATICAL BOLD SMALL ZETA;Ll;0;L;<font> 03B6;;;;N;;;;;-1D6C8;MATHEMATICAL BOLD SMALL ETA;Ll;0;L;<font> 03B7;;;;N;;;;;-1D6C9;MATHEMATICAL BOLD SMALL THETA;Ll;0;L;<font> 03B8;;;;N;;;;;-1D6CA;MATHEMATICAL BOLD SMALL IOTA;Ll;0;L;<font> 03B9;;;;N;;;;;-1D6CB;MATHEMATICAL BOLD SMALL KAPPA;Ll;0;L;<font> 03BA;;;;N;;;;;-1D6CC;MATHEMATICAL BOLD SMALL LAMDA;Ll;0;L;<font> 03BB;;;;N;;;;;-1D6CD;MATHEMATICAL BOLD SMALL MU;Ll;0;L;<font> 03BC;;;;N;;;;;-1D6CE;MATHEMATICAL BOLD SMALL NU;Ll;0;L;<font> 03BD;;;;N;;;;;-1D6CF;MATHEMATICAL BOLD SMALL XI;Ll;0;L;<font> 03BE;;;;N;;;;;-1D6D0;MATHEMATICAL BOLD SMALL OMICRON;Ll;0;L;<font> 03BF;;;;N;;;;;-1D6D1;MATHEMATICAL BOLD SMALL PI;Ll;0;L;<font> 03C0;;;;N;;;;;-1D6D2;MATHEMATICAL BOLD SMALL RHO;Ll;0;L;<font> 03C1;;;;N;;;;;-1D6D3;MATHEMATICAL BOLD SMALL FINAL SIGMA;Ll;0;L;<font> 03C2;;;;N;;;;;-1D6D4;MATHEMATICAL BOLD SMALL SIGMA;Ll;0;L;<font> 03C3;;;;N;;;;;-1D6D5;MATHEMATICAL BOLD SMALL TAU;Ll;0;L;<font> 03C4;;;;N;;;;;-1D6D6;MATHEMATICAL BOLD SMALL UPSILON;Ll;0;L;<font> 03C5;;;;N;;;;;-1D6D7;MATHEMATICAL BOLD SMALL PHI;Ll;0;L;<font> 03C6;;;;N;;;;;-1D6D8;MATHEMATICAL BOLD SMALL CHI;Ll;0;L;<font> 03C7;;;;N;;;;;-1D6D9;MATHEMATICAL BOLD SMALL PSI;Ll;0;L;<font> 03C8;;;;N;;;;;-1D6DA;MATHEMATICAL BOLD SMALL OMEGA;Ll;0;L;<font> 03C9;;;;N;;;;;-1D6DB;MATHEMATICAL BOLD PARTIAL DIFFERENTIAL;Sm;0;ON;<font> 2202;;;;Y;;;;;-1D6DC;MATHEMATICAL BOLD EPSILON SYMBOL;Ll;0;L;<font> 03F5;;;;N;;;;;-1D6DD;MATHEMATICAL BOLD THETA SYMBOL;Ll;0;L;<font> 03D1;;;;N;;;;;-1D6DE;MATHEMATICAL BOLD KAPPA SYMBOL;Ll;0;L;<font> 03F0;;;;N;;;;;-1D6DF;MATHEMATICAL BOLD PHI SYMBOL;Ll;0;L;<font> 03D5;;;;N;;;;;-1D6E0;MATHEMATICAL BOLD RHO SYMBOL;Ll;0;L;<font> 03F1;;;;N;;;;;-1D6E1;MATHEMATICAL BOLD PI SYMBOL;Ll;0;L;<font> 03D6;;;;N;;;;;-1D6E2;MATHEMATICAL ITALIC CAPITAL ALPHA;Lu;0;L;<font> 0391;;;;N;;;;;-1D6E3;MATHEMATICAL ITALIC CAPITAL BETA;Lu;0;L;<font> 0392;;;;N;;;;;-1D6E4;MATHEMATICAL ITALIC CAPITAL GAMMA;Lu;0;L;<font> 0393;;;;N;;;;;-1D6E5;MATHEMATICAL ITALIC CAPITAL DELTA;Lu;0;L;<font> 0394;;;;N;;;;;-1D6E6;MATHEMATICAL ITALIC CAPITAL EPSILON;Lu;0;L;<font> 0395;;;;N;;;;;-1D6E7;MATHEMATICAL ITALIC CAPITAL ZETA;Lu;0;L;<font> 0396;;;;N;;;;;-1D6E8;MATHEMATICAL ITALIC CAPITAL ETA;Lu;0;L;<font> 0397;;;;N;;;;;-1D6E9;MATHEMATICAL ITALIC CAPITAL THETA;Lu;0;L;<font> 0398;;;;N;;;;;-1D6EA;MATHEMATICAL ITALIC CAPITAL IOTA;Lu;0;L;<font> 0399;;;;N;;;;;-1D6EB;MATHEMATICAL ITALIC CAPITAL KAPPA;Lu;0;L;<font> 039A;;;;N;;;;;-1D6EC;MATHEMATICAL ITALIC CAPITAL LAMDA;Lu;0;L;<font> 039B;;;;N;;;;;-1D6ED;MATHEMATICAL ITALIC CAPITAL MU;Lu;0;L;<font> 039C;;;;N;;;;;-1D6EE;MATHEMATICAL ITALIC CAPITAL NU;Lu;0;L;<font> 039D;;;;N;;;;;-1D6EF;MATHEMATICAL ITALIC CAPITAL XI;Lu;0;L;<font> 039E;;;;N;;;;;-1D6F0;MATHEMATICAL ITALIC CAPITAL OMICRON;Lu;0;L;<font> 039F;;;;N;;;;;-1D6F1;MATHEMATICAL ITALIC CAPITAL PI;Lu;0;L;<font> 03A0;;;;N;;;;;-1D6F2;MATHEMATICAL ITALIC CAPITAL RHO;Lu;0;L;<font> 03A1;;;;N;;;;;-1D6F3;MATHEMATICAL ITALIC CAPITAL THETA SYMBOL;Lu;0;L;<font> 03F4;;;;N;;;;;-1D6F4;MATHEMATICAL ITALIC CAPITAL SIGMA;Lu;0;L;<font> 03A3;;;;N;;;;;-1D6F5;MATHEMATICAL ITALIC CAPITAL TAU;Lu;0;L;<font> 03A4;;;;N;;;;;-1D6F6;MATHEMATICAL ITALIC CAPITAL UPSILON;Lu;0;L;<font> 03A5;;;;N;;;;;-1D6F7;MATHEMATICAL ITALIC CAPITAL PHI;Lu;0;L;<font> 03A6;;;;N;;;;;-1D6F8;MATHEMATICAL ITALIC CAPITAL CHI;Lu;0;L;<font> 03A7;;;;N;;;;;-1D6F9;MATHEMATICAL ITALIC CAPITAL PSI;Lu;0;L;<font> 03A8;;;;N;;;;;-1D6FA;MATHEMATICAL ITALIC CAPITAL OMEGA;Lu;0;L;<font> 03A9;;;;N;;;;;-1D6FB;MATHEMATICAL ITALIC NABLA;Sm;0;L;<font> 2207;;;;N;;;;;-1D6FC;MATHEMATICAL ITALIC SMALL ALPHA;Ll;0;L;<font> 03B1;;;;N;;;;;-1D6FD;MATHEMATICAL ITALIC SMALL BETA;Ll;0;L;<font> 03B2;;;;N;;;;;-1D6FE;MATHEMATICAL ITALIC SMALL GAMMA;Ll;0;L;<font> 03B3;;;;N;;;;;-1D6FF;MATHEMATICAL ITALIC SMALL DELTA;Ll;0;L;<font> 03B4;;;;N;;;;;-1D700;MATHEMATICAL ITALIC SMALL EPSILON;Ll;0;L;<font> 03B5;;;;N;;;;;-1D701;MATHEMATICAL ITALIC SMALL ZETA;Ll;0;L;<font> 03B6;;;;N;;;;;-1D702;MATHEMATICAL ITALIC SMALL ETA;Ll;0;L;<font> 03B7;;;;N;;;;;-1D703;MATHEMATICAL ITALIC SMALL THETA;Ll;0;L;<font> 03B8;;;;N;;;;;-1D704;MATHEMATICAL ITALIC SMALL IOTA;Ll;0;L;<font> 03B9;;;;N;;;;;-1D705;MATHEMATICAL ITALIC SMALL KAPPA;Ll;0;L;<font> 03BA;;;;N;;;;;-1D706;MATHEMATICAL ITALIC SMALL LAMDA;Ll;0;L;<font> 03BB;;;;N;;;;;-1D707;MATHEMATICAL ITALIC SMALL MU;Ll;0;L;<font> 03BC;;;;N;;;;;-1D708;MATHEMATICAL ITALIC SMALL NU;Ll;0;L;<font> 03BD;;;;N;;;;;-1D709;MATHEMATICAL ITALIC SMALL XI;Ll;0;L;<font> 03BE;;;;N;;;;;-1D70A;MATHEMATICAL ITALIC SMALL OMICRON;Ll;0;L;<font> 03BF;;;;N;;;;;-1D70B;MATHEMATICAL ITALIC SMALL PI;Ll;0;L;<font> 03C0;;;;N;;;;;-1D70C;MATHEMATICAL ITALIC SMALL RHO;Ll;0;L;<font> 03C1;;;;N;;;;;-1D70D;MATHEMATICAL ITALIC SMALL FINAL SIGMA;Ll;0;L;<font> 03C2;;;;N;;;;;-1D70E;MATHEMATICAL ITALIC SMALL SIGMA;Ll;0;L;<font> 03C3;;;;N;;;;;-1D70F;MATHEMATICAL ITALIC SMALL TAU;Ll;0;L;<font> 03C4;;;;N;;;;;-1D710;MATHEMATICAL ITALIC SMALL UPSILON;Ll;0;L;<font> 03C5;;;;N;;;;;-1D711;MATHEMATICAL ITALIC SMALL PHI;Ll;0;L;<font> 03C6;;;;N;;;;;-1D712;MATHEMATICAL ITALIC SMALL CHI;Ll;0;L;<font> 03C7;;;;N;;;;;-1D713;MATHEMATICAL ITALIC SMALL PSI;Ll;0;L;<font> 03C8;;;;N;;;;;-1D714;MATHEMATICAL ITALIC SMALL OMEGA;Ll;0;L;<font> 03C9;;;;N;;;;;-1D715;MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL;Sm;0;ON;<font> 2202;;;;Y;;;;;-1D716;MATHEMATICAL ITALIC EPSILON SYMBOL;Ll;0;L;<font> 03F5;;;;N;;;;;-1D717;MATHEMATICAL ITALIC THETA SYMBOL;Ll;0;L;<font> 03D1;;;;N;;;;;-1D718;MATHEMATICAL ITALIC KAPPA SYMBOL;Ll;0;L;<font> 03F0;;;;N;;;;;-1D719;MATHEMATICAL ITALIC PHI SYMBOL;Ll;0;L;<font> 03D5;;;;N;;;;;-1D71A;MATHEMATICAL ITALIC RHO SYMBOL;Ll;0;L;<font> 03F1;;;;N;;;;;-1D71B;MATHEMATICAL ITALIC PI SYMBOL;Ll;0;L;<font> 03D6;;;;N;;;;;-1D71C;MATHEMATICAL BOLD ITALIC CAPITAL ALPHA;Lu;0;L;<font> 0391;;;;N;;;;;-1D71D;MATHEMATICAL BOLD ITALIC CAPITAL BETA;Lu;0;L;<font> 0392;;;;N;;;;;-1D71E;MATHEMATICAL BOLD ITALIC CAPITAL GAMMA;Lu;0;L;<font> 0393;;;;N;;;;;-1D71F;MATHEMATICAL BOLD ITALIC CAPITAL DELTA;Lu;0;L;<font> 0394;;;;N;;;;;-1D720;MATHEMATICAL BOLD ITALIC CAPITAL EPSILON;Lu;0;L;<font> 0395;;;;N;;;;;-1D721;MATHEMATICAL BOLD ITALIC CAPITAL ZETA;Lu;0;L;<font> 0396;;;;N;;;;;-1D722;MATHEMATICAL BOLD ITALIC CAPITAL ETA;Lu;0;L;<font> 0397;;;;N;;;;;-1D723;MATHEMATICAL BOLD ITALIC CAPITAL THETA;Lu;0;L;<font> 0398;;;;N;;;;;-1D724;MATHEMATICAL BOLD ITALIC CAPITAL IOTA;Lu;0;L;<font> 0399;;;;N;;;;;-1D725;MATHEMATICAL BOLD ITALIC CAPITAL KAPPA;Lu;0;L;<font> 039A;;;;N;;;;;-1D726;MATHEMATICAL BOLD ITALIC CAPITAL LAMDA;Lu;0;L;<font> 039B;;;;N;;;;;-1D727;MATHEMATICAL BOLD ITALIC CAPITAL MU;Lu;0;L;<font> 039C;;;;N;;;;;-1D728;MATHEMATICAL BOLD ITALIC CAPITAL NU;Lu;0;L;<font> 039D;;;;N;;;;;-1D729;MATHEMATICAL BOLD ITALIC CAPITAL XI;Lu;0;L;<font> 039E;;;;N;;;;;-1D72A;MATHEMATICAL BOLD ITALIC CAPITAL OMICRON;Lu;0;L;<font> 039F;;;;N;;;;;-1D72B;MATHEMATICAL BOLD ITALIC CAPITAL PI;Lu;0;L;<font> 03A0;;;;N;;;;;-1D72C;MATHEMATICAL BOLD ITALIC CAPITAL RHO;Lu;0;L;<font> 03A1;;;;N;;;;;-1D72D;MATHEMATICAL BOLD ITALIC CAPITAL THETA SYMBOL;Lu;0;L;<font> 03F4;;;;N;;;;;-1D72E;MATHEMATICAL BOLD ITALIC CAPITAL SIGMA;Lu;0;L;<font> 03A3;;;;N;;;;;-1D72F;MATHEMATICAL BOLD ITALIC CAPITAL TAU;Lu;0;L;<font> 03A4;;;;N;;;;;-1D730;MATHEMATICAL BOLD ITALIC CAPITAL UPSILON;Lu;0;L;<font> 03A5;;;;N;;;;;-1D731;MATHEMATICAL BOLD ITALIC CAPITAL PHI;Lu;0;L;<font> 03A6;;;;N;;;;;-1D732;MATHEMATICAL BOLD ITALIC CAPITAL CHI;Lu;0;L;<font> 03A7;;;;N;;;;;-1D733;MATHEMATICAL BOLD ITALIC CAPITAL PSI;Lu;0;L;<font> 03A8;;;;N;;;;;-1D734;MATHEMATICAL BOLD ITALIC CAPITAL OMEGA;Lu;0;L;<font> 03A9;;;;N;;;;;-1D735;MATHEMATICAL BOLD ITALIC NABLA;Sm;0;L;<font> 2207;;;;N;;;;;-1D736;MATHEMATICAL BOLD ITALIC SMALL ALPHA;Ll;0;L;<font> 03B1;;;;N;;;;;-1D737;MATHEMATICAL BOLD ITALIC SMALL BETA;Ll;0;L;<font> 03B2;;;;N;;;;;-1D738;MATHEMATICAL BOLD ITALIC SMALL GAMMA;Ll;0;L;<font> 03B3;;;;N;;;;;-1D739;MATHEMATICAL BOLD ITALIC SMALL DELTA;Ll;0;L;<font> 03B4;;;;N;;;;;-1D73A;MATHEMATICAL BOLD ITALIC SMALL EPSILON;Ll;0;L;<font> 03B5;;;;N;;;;;-1D73B;MATHEMATICAL BOLD ITALIC SMALL ZETA;Ll;0;L;<font> 03B6;;;;N;;;;;-1D73C;MATHEMATICAL BOLD ITALIC SMALL ETA;Ll;0;L;<font> 03B7;;;;N;;;;;-1D73D;MATHEMATICAL BOLD ITALIC SMALL THETA;Ll;0;L;<font> 03B8;;;;N;;;;;-1D73E;MATHEMATICAL BOLD ITALIC SMALL IOTA;Ll;0;L;<font> 03B9;;;;N;;;;;-1D73F;MATHEMATICAL BOLD ITALIC SMALL KAPPA;Ll;0;L;<font> 03BA;;;;N;;;;;-1D740;MATHEMATICAL BOLD ITALIC SMALL LAMDA;Ll;0;L;<font> 03BB;;;;N;;;;;-1D741;MATHEMATICAL BOLD ITALIC SMALL MU;Ll;0;L;<font> 03BC;;;;N;;;;;-1D742;MATHEMATICAL BOLD ITALIC SMALL NU;Ll;0;L;<font> 03BD;;;;N;;;;;-1D743;MATHEMATICAL BOLD ITALIC SMALL XI;Ll;0;L;<font> 03BE;;;;N;;;;;-1D744;MATHEMATICAL BOLD ITALIC SMALL OMICRON;Ll;0;L;<font> 03BF;;;;N;;;;;-1D745;MATHEMATICAL BOLD ITALIC SMALL PI;Ll;0;L;<font> 03C0;;;;N;;;;;-1D746;MATHEMATICAL BOLD ITALIC SMALL RHO;Ll;0;L;<font> 03C1;;;;N;;;;;-1D747;MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA;Ll;0;L;<font> 03C2;;;;N;;;;;-1D748;MATHEMATICAL BOLD ITALIC SMALL SIGMA;Ll;0;L;<font> 03C3;;;;N;;;;;-1D749;MATHEMATICAL BOLD ITALIC SMALL TAU;Ll;0;L;<font> 03C4;;;;N;;;;;-1D74A;MATHEMATICAL BOLD ITALIC SMALL UPSILON;Ll;0;L;<font> 03C5;;;;N;;;;;-1D74B;MATHEMATICAL BOLD ITALIC SMALL PHI;Ll;0;L;<font> 03C6;;;;N;;;;;-1D74C;MATHEMATICAL BOLD ITALIC SMALL CHI;Ll;0;L;<font> 03C7;;;;N;;;;;-1D74D;MATHEMATICAL BOLD ITALIC SMALL PSI;Ll;0;L;<font> 03C8;;;;N;;;;;-1D74E;MATHEMATICAL BOLD ITALIC SMALL OMEGA;Ll;0;L;<font> 03C9;;;;N;;;;;-1D74F;MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL;Sm;0;ON;<font> 2202;;;;Y;;;;;-1D750;MATHEMATICAL BOLD ITALIC EPSILON SYMBOL;Ll;0;L;<font> 03F5;;;;N;;;;;-1D751;MATHEMATICAL BOLD ITALIC THETA SYMBOL;Ll;0;L;<font> 03D1;;;;N;;;;;-1D752;MATHEMATICAL BOLD ITALIC KAPPA SYMBOL;Ll;0;L;<font> 03F0;;;;N;;;;;-1D753;MATHEMATICAL BOLD ITALIC PHI SYMBOL;Ll;0;L;<font> 03D5;;;;N;;;;;-1D754;MATHEMATICAL BOLD ITALIC RHO SYMBOL;Ll;0;L;<font> 03F1;;;;N;;;;;-1D755;MATHEMATICAL BOLD ITALIC PI SYMBOL;Ll;0;L;<font> 03D6;;;;N;;;;;-1D756;MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA;Lu;0;L;<font> 0391;;;;N;;;;;-1D757;MATHEMATICAL SANS-SERIF BOLD CAPITAL BETA;Lu;0;L;<font> 0392;;;;N;;;;;-1D758;MATHEMATICAL SANS-SERIF BOLD CAPITAL GAMMA;Lu;0;L;<font> 0393;;;;N;;;;;-1D759;MATHEMATICAL SANS-SERIF BOLD CAPITAL DELTA;Lu;0;L;<font> 0394;;;;N;;;;;-1D75A;MATHEMATICAL SANS-SERIF BOLD CAPITAL EPSILON;Lu;0;L;<font> 0395;;;;N;;;;;-1D75B;MATHEMATICAL SANS-SERIF BOLD CAPITAL ZETA;Lu;0;L;<font> 0396;;;;N;;;;;-1D75C;MATHEMATICAL SANS-SERIF BOLD CAPITAL ETA;Lu;0;L;<font> 0397;;;;N;;;;;-1D75D;MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA;Lu;0;L;<font> 0398;;;;N;;;;;-1D75E;MATHEMATICAL SANS-SERIF BOLD CAPITAL IOTA;Lu;0;L;<font> 0399;;;;N;;;;;-1D75F;MATHEMATICAL SANS-SERIF BOLD CAPITAL KAPPA;Lu;0;L;<font> 039A;;;;N;;;;;-1D760;MATHEMATICAL SANS-SERIF BOLD CAPITAL LAMDA;Lu;0;L;<font> 039B;;;;N;;;;;-1D761;MATHEMATICAL SANS-SERIF BOLD CAPITAL MU;Lu;0;L;<font> 039C;;;;N;;;;;-1D762;MATHEMATICAL SANS-SERIF BOLD CAPITAL NU;Lu;0;L;<font> 039D;;;;N;;;;;-1D763;MATHEMATICAL SANS-SERIF BOLD CAPITAL XI;Lu;0;L;<font> 039E;;;;N;;;;;-1D764;MATHEMATICAL SANS-SERIF BOLD CAPITAL OMICRON;Lu;0;L;<font> 039F;;;;N;;;;;-1D765;MATHEMATICAL SANS-SERIF BOLD CAPITAL PI;Lu;0;L;<font> 03A0;;;;N;;;;;-1D766;MATHEMATICAL SANS-SERIF BOLD CAPITAL RHO;Lu;0;L;<font> 03A1;;;;N;;;;;-1D767;MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA SYMBOL;Lu;0;L;<font> 03F4;;;;N;;;;;-1D768;MATHEMATICAL SANS-SERIF BOLD CAPITAL SIGMA;Lu;0;L;<font> 03A3;;;;N;;;;;-1D769;MATHEMATICAL SANS-SERIF BOLD CAPITAL TAU;Lu;0;L;<font> 03A4;;;;N;;;;;-1D76A;MATHEMATICAL SANS-SERIF BOLD CAPITAL UPSILON;Lu;0;L;<font> 03A5;;;;N;;;;;-1D76B;MATHEMATICAL SANS-SERIF BOLD CAPITAL PHI;Lu;0;L;<font> 03A6;;;;N;;;;;-1D76C;MATHEMATICAL SANS-SERIF BOLD CAPITAL CHI;Lu;0;L;<font> 03A7;;;;N;;;;;-1D76D;MATHEMATICAL SANS-SERIF BOLD CAPITAL PSI;Lu;0;L;<font> 03A8;;;;N;;;;;-1D76E;MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA;Lu;0;L;<font> 03A9;;;;N;;;;;-1D76F;MATHEMATICAL SANS-SERIF BOLD NABLA;Sm;0;L;<font> 2207;;;;N;;;;;-1D770;MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA;Ll;0;L;<font> 03B1;;;;N;;;;;-1D771;MATHEMATICAL SANS-SERIF BOLD SMALL BETA;Ll;0;L;<font> 03B2;;;;N;;;;;-1D772;MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA;Ll;0;L;<font> 03B3;;;;N;;;;;-1D773;MATHEMATICAL SANS-SERIF BOLD SMALL DELTA;Ll;0;L;<font> 03B4;;;;N;;;;;-1D774;MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON;Ll;0;L;<font> 03B5;;;;N;;;;;-1D775;MATHEMATICAL SANS-SERIF BOLD SMALL ZETA;Ll;0;L;<font> 03B6;;;;N;;;;;-1D776;MATHEMATICAL SANS-SERIF BOLD SMALL ETA;Ll;0;L;<font> 03B7;;;;N;;;;;-1D777;MATHEMATICAL SANS-SERIF BOLD SMALL THETA;Ll;0;L;<font> 03B8;;;;N;;;;;-1D778;MATHEMATICAL SANS-SERIF BOLD SMALL IOTA;Ll;0;L;<font> 03B9;;;;N;;;;;-1D779;MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA;Ll;0;L;<font> 03BA;;;;N;;;;;-1D77A;MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA;Ll;0;L;<font> 03BB;;;;N;;;;;-1D77B;MATHEMATICAL SANS-SERIF BOLD SMALL MU;Ll;0;L;<font> 03BC;;;;N;;;;;-1D77C;MATHEMATICAL SANS-SERIF BOLD SMALL NU;Ll;0;L;<font> 03BD;;;;N;;;;;-1D77D;MATHEMATICAL SANS-SERIF BOLD SMALL XI;Ll;0;L;<font> 03BE;;;;N;;;;;-1D77E;MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON;Ll;0;L;<font> 03BF;;;;N;;;;;-1D77F;MATHEMATICAL SANS-SERIF BOLD SMALL PI;Ll;0;L;<font> 03C0;;;;N;;;;;-1D780;MATHEMATICAL SANS-SERIF BOLD SMALL RHO;Ll;0;L;<font> 03C1;;;;N;;;;;-1D781;MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA;Ll;0;L;<font> 03C2;;;;N;;;;;-1D782;MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA;Ll;0;L;<font> 03C3;;;;N;;;;;-1D783;MATHEMATICAL SANS-SERIF BOLD SMALL TAU;Ll;0;L;<font> 03C4;;;;N;;;;;-1D784;MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON;Ll;0;L;<font> 03C5;;;;N;;;;;-1D785;MATHEMATICAL SANS-SERIF BOLD SMALL PHI;Ll;0;L;<font> 03C6;;;;N;;;;;-1D786;MATHEMATICAL SANS-SERIF BOLD SMALL CHI;Ll;0;L;<font> 03C7;;;;N;;;;;-1D787;MATHEMATICAL SANS-SERIF BOLD SMALL PSI;Ll;0;L;<font> 03C8;;;;N;;;;;-1D788;MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA;Ll;0;L;<font> 03C9;;;;N;;;;;-1D789;MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL;Sm;0;ON;<font> 2202;;;;Y;;;;;-1D78A;MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL;Ll;0;L;<font> 03F5;;;;N;;;;;-1D78B;MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL;Ll;0;L;<font> 03D1;;;;N;;;;;-1D78C;MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL;Ll;0;L;<font> 03F0;;;;N;;;;;-1D78D;MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL;Ll;0;L;<font> 03D5;;;;N;;;;;-1D78E;MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL;Ll;0;L;<font> 03F1;;;;N;;;;;-1D78F;MATHEMATICAL SANS-SERIF BOLD PI SYMBOL;Ll;0;L;<font> 03D6;;;;N;;;;;-1D790;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA;Lu;0;L;<font> 0391;;;;N;;;;;-1D791;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL BETA;Lu;0;L;<font> 0392;;;;N;;;;;-1D792;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL GAMMA;Lu;0;L;<font> 0393;;;;N;;;;;-1D793;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL DELTA;Lu;0;L;<font> 0394;;;;N;;;;;-1D794;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL EPSILON;Lu;0;L;<font> 0395;;;;N;;;;;-1D795;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ZETA;Lu;0;L;<font> 0396;;;;N;;;;;-1D796;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ETA;Lu;0;L;<font> 0397;;;;N;;;;;-1D797;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA;Lu;0;L;<font> 0398;;;;N;;;;;-1D798;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL IOTA;Lu;0;L;<font> 0399;;;;N;;;;;-1D799;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL KAPPA;Lu;0;L;<font> 039A;;;;N;;;;;-1D79A;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL LAMDA;Lu;0;L;<font> 039B;;;;N;;;;;-1D79B;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL MU;Lu;0;L;<font> 039C;;;;N;;;;;-1D79C;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL NU;Lu;0;L;<font> 039D;;;;N;;;;;-1D79D;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL XI;Lu;0;L;<font> 039E;;;;N;;;;;-1D79E;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMICRON;Lu;0;L;<font> 039F;;;;N;;;;;-1D79F;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PI;Lu;0;L;<font> 03A0;;;;N;;;;;-1D7A0;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL RHO;Lu;0;L;<font> 03A1;;;;N;;;;;-1D7A1;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA SYMBOL;Lu;0;L;<font> 03F4;;;;N;;;;;-1D7A2;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL SIGMA;Lu;0;L;<font> 03A3;;;;N;;;;;-1D7A3;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL TAU;Lu;0;L;<font> 03A4;;;;N;;;;;-1D7A4;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL UPSILON;Lu;0;L;<font> 03A5;;;;N;;;;;-1D7A5;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PHI;Lu;0;L;<font> 03A6;;;;N;;;;;-1D7A6;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL CHI;Lu;0;L;<font> 03A7;;;;N;;;;;-1D7A7;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PSI;Lu;0;L;<font> 03A8;;;;N;;;;;-1D7A8;MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA;Lu;0;L;<font> 03A9;;;;N;;;;;-1D7A9;MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA;Sm;0;L;<font> 2207;;;;N;;;;;-1D7AA;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA;Ll;0;L;<font> 03B1;;;;N;;;;;-1D7AB;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA;Ll;0;L;<font> 03B2;;;;N;;;;;-1D7AC;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA;Ll;0;L;<font> 03B3;;;;N;;;;;-1D7AD;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA;Ll;0;L;<font> 03B4;;;;N;;;;;-1D7AE;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON;Ll;0;L;<font> 03B5;;;;N;;;;;-1D7AF;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA;Ll;0;L;<font> 03B6;;;;N;;;;;-1D7B0;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA;Ll;0;L;<font> 03B7;;;;N;;;;;-1D7B1;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA;Ll;0;L;<font> 03B8;;;;N;;;;;-1D7B2;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA;Ll;0;L;<font> 03B9;;;;N;;;;;-1D7B3;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA;Ll;0;L;<font> 03BA;;;;N;;;;;-1D7B4;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA;Ll;0;L;<font> 03BB;;;;N;;;;;-1D7B5;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU;Ll;0;L;<font> 03BC;;;;N;;;;;-1D7B6;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU;Ll;0;L;<font> 03BD;;;;N;;;;;-1D7B7;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI;Ll;0;L;<font> 03BE;;;;N;;;;;-1D7B8;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON;Ll;0;L;<font> 03BF;;;;N;;;;;-1D7B9;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI;Ll;0;L;<font> 03C0;;;;N;;;;;-1D7BA;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO;Ll;0;L;<font> 03C1;;;;N;;;;;-1D7BB;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA;Ll;0;L;<font> 03C2;;;;N;;;;;-1D7BC;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA;Ll;0;L;<font> 03C3;;;;N;;;;;-1D7BD;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU;Ll;0;L;<font> 03C4;;;;N;;;;;-1D7BE;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON;Ll;0;L;<font> 03C5;;;;N;;;;;-1D7BF;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI;Ll;0;L;<font> 03C6;;;;N;;;;;-1D7C0;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI;Ll;0;L;<font> 03C7;;;;N;;;;;-1D7C1;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI;Ll;0;L;<font> 03C8;;;;N;;;;;-1D7C2;MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA;Ll;0;L;<font> 03C9;;;;N;;;;;-1D7C3;MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL;Sm;0;ON;<font> 2202;;;;Y;;;;;-1D7C4;MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL;Ll;0;L;<font> 03F5;;;;N;;;;;-1D7C5;MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL;Ll;0;L;<font> 03D1;;;;N;;;;;-1D7C6;MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL;Ll;0;L;<font> 03F0;;;;N;;;;;-1D7C7;MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL;Ll;0;L;<font> 03D5;;;;N;;;;;-1D7C8;MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL;Ll;0;L;<font> 03F1;;;;N;;;;;-1D7C9;MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL;Ll;0;L;<font> 03D6;;;;N;;;;;-1D7CA;MATHEMATICAL BOLD CAPITAL DIGAMMA;Lu;0;L;<font> 03DC;;;;N;;;;;-1D7CB;MATHEMATICAL BOLD SMALL DIGAMMA;Ll;0;L;<font> 03DD;;;;N;;;;;-1D7CE;MATHEMATICAL BOLD DIGIT ZERO;Nd;0;EN;<font> 0030;0;0;0;N;;;;;-1D7CF;MATHEMATICAL BOLD DIGIT ONE;Nd;0;EN;<font> 0031;1;1;1;N;;;;;-1D7D0;MATHEMATICAL BOLD DIGIT TWO;Nd;0;EN;<font> 0032;2;2;2;N;;;;;-1D7D1;MATHEMATICAL BOLD DIGIT THREE;Nd;0;EN;<font> 0033;3;3;3;N;;;;;-1D7D2;MATHEMATICAL BOLD DIGIT FOUR;Nd;0;EN;<font> 0034;4;4;4;N;;;;;-1D7D3;MATHEMATICAL BOLD DIGIT FIVE;Nd;0;EN;<font> 0035;5;5;5;N;;;;;-1D7D4;MATHEMATICAL BOLD DIGIT SIX;Nd;0;EN;<font> 0036;6;6;6;N;;;;;-1D7D5;MATHEMATICAL BOLD DIGIT SEVEN;Nd;0;EN;<font> 0037;7;7;7;N;;;;;-1D7D6;MATHEMATICAL BOLD DIGIT EIGHT;Nd;0;EN;<font> 0038;8;8;8;N;;;;;-1D7D7;MATHEMATICAL BOLD DIGIT NINE;Nd;0;EN;<font> 0039;9;9;9;N;;;;;-1D7D8;MATHEMATICAL DOUBLE-STRUCK DIGIT ZERO;Nd;0;EN;<font> 0030;0;0;0;N;;;;;-1D7D9;MATHEMATICAL DOUBLE-STRUCK DIGIT ONE;Nd;0;EN;<font> 0031;1;1;1;N;;;;;-1D7DA;MATHEMATICAL DOUBLE-STRUCK DIGIT TWO;Nd;0;EN;<font> 0032;2;2;2;N;;;;;-1D7DB;MATHEMATICAL DOUBLE-STRUCK DIGIT THREE;Nd;0;EN;<font> 0033;3;3;3;N;;;;;-1D7DC;MATHEMATICAL DOUBLE-STRUCK DIGIT FOUR;Nd;0;EN;<font> 0034;4;4;4;N;;;;;-1D7DD;MATHEMATICAL DOUBLE-STRUCK DIGIT FIVE;Nd;0;EN;<font> 0035;5;5;5;N;;;;;-1D7DE;MATHEMATICAL DOUBLE-STRUCK DIGIT SIX;Nd;0;EN;<font> 0036;6;6;6;N;;;;;-1D7DF;MATHEMATICAL DOUBLE-STRUCK DIGIT SEVEN;Nd;0;EN;<font> 0037;7;7;7;N;;;;;-1D7E0;MATHEMATICAL DOUBLE-STRUCK DIGIT EIGHT;Nd;0;EN;<font> 0038;8;8;8;N;;;;;-1D7E1;MATHEMATICAL DOUBLE-STRUCK DIGIT NINE;Nd;0;EN;<font> 0039;9;9;9;N;;;;;-1D7E2;MATHEMATICAL SANS-SERIF DIGIT ZERO;Nd;0;EN;<font> 0030;0;0;0;N;;;;;-1D7E3;MATHEMATICAL SANS-SERIF DIGIT ONE;Nd;0;EN;<font> 0031;1;1;1;N;;;;;-1D7E4;MATHEMATICAL SANS-SERIF DIGIT TWO;Nd;0;EN;<font> 0032;2;2;2;N;;;;;-1D7E5;MATHEMATICAL SANS-SERIF DIGIT THREE;Nd;0;EN;<font> 0033;3;3;3;N;;;;;-1D7E6;MATHEMATICAL SANS-SERIF DIGIT FOUR;Nd;0;EN;<font> 0034;4;4;4;N;;;;;-1D7E7;MATHEMATICAL SANS-SERIF DIGIT FIVE;Nd;0;EN;<font> 0035;5;5;5;N;;;;;-1D7E8;MATHEMATICAL SANS-SERIF DIGIT SIX;Nd;0;EN;<font> 0036;6;6;6;N;;;;;-1D7E9;MATHEMATICAL SANS-SERIF DIGIT SEVEN;Nd;0;EN;<font> 0037;7;7;7;N;;;;;-1D7EA;MATHEMATICAL SANS-SERIF DIGIT EIGHT;Nd;0;EN;<font> 0038;8;8;8;N;;;;;-1D7EB;MATHEMATICAL SANS-SERIF DIGIT NINE;Nd;0;EN;<font> 0039;9;9;9;N;;;;;-1D7EC;MATHEMATICAL SANS-SERIF BOLD DIGIT ZERO;Nd;0;EN;<font> 0030;0;0;0;N;;;;;-1D7ED;MATHEMATICAL SANS-SERIF BOLD DIGIT ONE;Nd;0;EN;<font> 0031;1;1;1;N;;;;;-1D7EE;MATHEMATICAL SANS-SERIF BOLD DIGIT TWO;Nd;0;EN;<font> 0032;2;2;2;N;;;;;-1D7EF;MATHEMATICAL SANS-SERIF BOLD DIGIT THREE;Nd;0;EN;<font> 0033;3;3;3;N;;;;;-1D7F0;MATHEMATICAL SANS-SERIF BOLD DIGIT FOUR;Nd;0;EN;<font> 0034;4;4;4;N;;;;;-1D7F1;MATHEMATICAL SANS-SERIF BOLD DIGIT FIVE;Nd;0;EN;<font> 0035;5;5;5;N;;;;;-1D7F2;MATHEMATICAL SANS-SERIF BOLD DIGIT SIX;Nd;0;EN;<font> 0036;6;6;6;N;;;;;-1D7F3;MATHEMATICAL SANS-SERIF BOLD DIGIT SEVEN;Nd;0;EN;<font> 0037;7;7;7;N;;;;;-1D7F4;MATHEMATICAL SANS-SERIF BOLD DIGIT EIGHT;Nd;0;EN;<font> 0038;8;8;8;N;;;;;-1D7F5;MATHEMATICAL SANS-SERIF BOLD DIGIT NINE;Nd;0;EN;<font> 0039;9;9;9;N;;;;;-1D7F6;MATHEMATICAL MONOSPACE DIGIT ZERO;Nd;0;EN;<font> 0030;0;0;0;N;;;;;-1D7F7;MATHEMATICAL MONOSPACE DIGIT ONE;Nd;0;EN;<font> 0031;1;1;1;N;;;;;-1D7F8;MATHEMATICAL MONOSPACE DIGIT TWO;Nd;0;EN;<font> 0032;2;2;2;N;;;;;-1D7F9;MATHEMATICAL MONOSPACE DIGIT THREE;Nd;0;EN;<font> 0033;3;3;3;N;;;;;-1D7FA;MATHEMATICAL MONOSPACE DIGIT FOUR;Nd;0;EN;<font> 0034;4;4;4;N;;;;;-1D7FB;MATHEMATICAL MONOSPACE DIGIT FIVE;Nd;0;EN;<font> 0035;5;5;5;N;;;;;-1D7FC;MATHEMATICAL MONOSPACE DIGIT SIX;Nd;0;EN;<font> 0036;6;6;6;N;;;;;-1D7FD;MATHEMATICAL MONOSPACE DIGIT SEVEN;Nd;0;EN;<font> 0037;7;7;7;N;;;;;-1D7FE;MATHEMATICAL MONOSPACE DIGIT EIGHT;Nd;0;EN;<font> 0038;8;8;8;N;;;;;-1D7FF;MATHEMATICAL MONOSPACE DIGIT NINE;Nd;0;EN;<font> 0039;9;9;9;N;;;;;-1E800;MENDE KIKAKUI SYLLABLE M001 KI;Lo;0;R;;;;;N;;;;;-1E801;MENDE KIKAKUI SYLLABLE M002 KA;Lo;0;R;;;;;N;;;;;-1E802;MENDE KIKAKUI SYLLABLE M003 KU;Lo;0;R;;;;;N;;;;;-1E803;MENDE KIKAKUI SYLLABLE M065 KEE;Lo;0;R;;;;;N;;;;;-1E804;MENDE KIKAKUI SYLLABLE M095 KE;Lo;0;R;;;;;N;;;;;-1E805;MENDE KIKAKUI SYLLABLE M076 KOO;Lo;0;R;;;;;N;;;;;-1E806;MENDE KIKAKUI SYLLABLE M048 KO;Lo;0;R;;;;;N;;;;;-1E807;MENDE KIKAKUI SYLLABLE M179 KUA;Lo;0;R;;;;;N;;;;;-1E808;MENDE KIKAKUI SYLLABLE M004 WI;Lo;0;R;;;;;N;;;;;-1E809;MENDE KIKAKUI SYLLABLE M005 WA;Lo;0;R;;;;;N;;;;;-1E80A;MENDE KIKAKUI SYLLABLE M006 WU;Lo;0;R;;;;;N;;;;;-1E80B;MENDE KIKAKUI SYLLABLE M126 WEE;Lo;0;R;;;;;N;;;;;-1E80C;MENDE KIKAKUI SYLLABLE M118 WE;Lo;0;R;;;;;N;;;;;-1E80D;MENDE KIKAKUI SYLLABLE M114 WOO;Lo;0;R;;;;;N;;;;;-1E80E;MENDE KIKAKUI SYLLABLE M045 WO;Lo;0;R;;;;;N;;;;;-1E80F;MENDE KIKAKUI SYLLABLE M194 WUI;Lo;0;R;;;;;N;;;;;-1E810;MENDE KIKAKUI SYLLABLE M143 WEI;Lo;0;R;;;;;N;;;;;-1E811;MENDE KIKAKUI SYLLABLE M061 WVI;Lo;0;R;;;;;N;;;;;-1E812;MENDE KIKAKUI SYLLABLE M049 WVA;Lo;0;R;;;;;N;;;;;-1E813;MENDE KIKAKUI SYLLABLE M139 WVE;Lo;0;R;;;;;N;;;;;-1E814;MENDE KIKAKUI SYLLABLE M007 MIN;Lo;0;R;;;;;N;;;;;-1E815;MENDE KIKAKUI SYLLABLE M008 MAN;Lo;0;R;;;;;N;;;;;-1E816;MENDE KIKAKUI SYLLABLE M009 MUN;Lo;0;R;;;;;N;;;;;-1E817;MENDE KIKAKUI SYLLABLE M059 MEN;Lo;0;R;;;;;N;;;;;-1E818;MENDE KIKAKUI SYLLABLE M094 MON;Lo;0;R;;;;;N;;;;;-1E819;MENDE KIKAKUI SYLLABLE M154 MUAN;Lo;0;R;;;;;N;;;;;-1E81A;MENDE KIKAKUI SYLLABLE M189 MUEN;Lo;0;R;;;;;N;;;;;-1E81B;MENDE KIKAKUI SYLLABLE M010 BI;Lo;0;R;;;;;N;;;;;-1E81C;MENDE KIKAKUI SYLLABLE M011 BA;Lo;0;R;;;;;N;;;;;-1E81D;MENDE KIKAKUI SYLLABLE M012 BU;Lo;0;R;;;;;N;;;;;-1E81E;MENDE KIKAKUI SYLLABLE M150 BEE;Lo;0;R;;;;;N;;;;;-1E81F;MENDE KIKAKUI SYLLABLE M097 BE;Lo;0;R;;;;;N;;;;;-1E820;MENDE KIKAKUI SYLLABLE M103 BOO;Lo;0;R;;;;;N;;;;;-1E821;MENDE KIKAKUI SYLLABLE M138 BO;Lo;0;R;;;;;N;;;;;-1E822;MENDE KIKAKUI SYLLABLE M013 I;Lo;0;R;;;;;N;;;;;-1E823;MENDE KIKAKUI SYLLABLE M014 A;Lo;0;R;;;;;N;;;;;-1E824;MENDE KIKAKUI SYLLABLE M015 U;Lo;0;R;;;;;N;;;;;-1E825;MENDE KIKAKUI SYLLABLE M163 EE;Lo;0;R;;;;;N;;;;;-1E826;MENDE KIKAKUI SYLLABLE M100 E;Lo;0;R;;;;;N;;;;;-1E827;MENDE KIKAKUI SYLLABLE M165 OO;Lo;0;R;;;;;N;;;;;-1E828;MENDE KIKAKUI SYLLABLE M147 O;Lo;0;R;;;;;N;;;;;-1E829;MENDE KIKAKUI SYLLABLE M137 EI;Lo;0;R;;;;;N;;;;;-1E82A;MENDE KIKAKUI SYLLABLE M131 IN;Lo;0;R;;;;;N;;;;;-1E82B;MENDE KIKAKUI SYLLABLE M135 IN;Lo;0;R;;;;;N;;;;;-1E82C;MENDE KIKAKUI SYLLABLE M195 AN;Lo;0;R;;;;;N;;;;;-1E82D;MENDE KIKAKUI SYLLABLE M178 EN;Lo;0;R;;;;;N;;;;;-1E82E;MENDE KIKAKUI SYLLABLE M019 SI;Lo;0;R;;;;;N;;;;;-1E82F;MENDE KIKAKUI SYLLABLE M020 SA;Lo;0;R;;;;;N;;;;;-1E830;MENDE KIKAKUI SYLLABLE M021 SU;Lo;0;R;;;;;N;;;;;-1E831;MENDE KIKAKUI SYLLABLE M162 SEE;Lo;0;R;;;;;N;;;;;-1E832;MENDE KIKAKUI SYLLABLE M116 SE;Lo;0;R;;;;;N;;;;;-1E833;MENDE KIKAKUI SYLLABLE M136 SOO;Lo;0;R;;;;;N;;;;;-1E834;MENDE KIKAKUI SYLLABLE M079 SO;Lo;0;R;;;;;N;;;;;-1E835;MENDE KIKAKUI SYLLABLE M196 SIA;Lo;0;R;;;;;N;;;;;-1E836;MENDE KIKAKUI SYLLABLE M025 LI;Lo;0;R;;;;;N;;;;;-1E837;MENDE KIKAKUI SYLLABLE M026 LA;Lo;0;R;;;;;N;;;;;-1E838;MENDE KIKAKUI SYLLABLE M027 LU;Lo;0;R;;;;;N;;;;;-1E839;MENDE KIKAKUI SYLLABLE M084 LEE;Lo;0;R;;;;;N;;;;;-1E83A;MENDE KIKAKUI SYLLABLE M073 LE;Lo;0;R;;;;;N;;;;;-1E83B;MENDE KIKAKUI SYLLABLE M054 LOO;Lo;0;R;;;;;N;;;;;-1E83C;MENDE KIKAKUI SYLLABLE M153 LO;Lo;0;R;;;;;N;;;;;-1E83D;MENDE KIKAKUI SYLLABLE M110 LONG LE;Lo;0;R;;;;;N;;;;;-1E83E;MENDE KIKAKUI SYLLABLE M016 DI;Lo;0;R;;;;;N;;;;;-1E83F;MENDE KIKAKUI SYLLABLE M017 DA;Lo;0;R;;;;;N;;;;;-1E840;MENDE KIKAKUI SYLLABLE M018 DU;Lo;0;R;;;;;N;;;;;-1E841;MENDE KIKAKUI SYLLABLE M089 DEE;Lo;0;R;;;;;N;;;;;-1E842;MENDE KIKAKUI SYLLABLE M180 DOO;Lo;0;R;;;;;N;;;;;-1E843;MENDE KIKAKUI SYLLABLE M181 DO;Lo;0;R;;;;;N;;;;;-1E844;MENDE KIKAKUI SYLLABLE M022 TI;Lo;0;R;;;;;N;;;;;-1E845;MENDE KIKAKUI SYLLABLE M023 TA;Lo;0;R;;;;;N;;;;;-1E846;MENDE KIKAKUI SYLLABLE M024 TU;Lo;0;R;;;;;N;;;;;-1E847;MENDE KIKAKUI SYLLABLE M091 TEE;Lo;0;R;;;;;N;;;;;-1E848;MENDE KIKAKUI SYLLABLE M055 TE;Lo;0;R;;;;;N;;;;;-1E849;MENDE KIKAKUI SYLLABLE M104 TOO;Lo;0;R;;;;;N;;;;;-1E84A;MENDE KIKAKUI SYLLABLE M069 TO;Lo;0;R;;;;;N;;;;;-1E84B;MENDE KIKAKUI SYLLABLE M028 JI;Lo;0;R;;;;;N;;;;;-1E84C;MENDE KIKAKUI SYLLABLE M029 JA;Lo;0;R;;;;;N;;;;;-1E84D;MENDE KIKAKUI SYLLABLE M030 JU;Lo;0;R;;;;;N;;;;;-1E84E;MENDE KIKAKUI SYLLABLE M157 JEE;Lo;0;R;;;;;N;;;;;-1E84F;MENDE KIKAKUI SYLLABLE M113 JE;Lo;0;R;;;;;N;;;;;-1E850;MENDE KIKAKUI SYLLABLE M160 JOO;Lo;0;R;;;;;N;;;;;-1E851;MENDE KIKAKUI SYLLABLE M063 JO;Lo;0;R;;;;;N;;;;;-1E852;MENDE KIKAKUI SYLLABLE M175 LONG JO;Lo;0;R;;;;;N;;;;;-1E853;MENDE KIKAKUI SYLLABLE M031 YI;Lo;0;R;;;;;N;;;;;-1E854;MENDE KIKAKUI SYLLABLE M032 YA;Lo;0;R;;;;;N;;;;;-1E855;MENDE KIKAKUI SYLLABLE M033 YU;Lo;0;R;;;;;N;;;;;-1E856;MENDE KIKAKUI SYLLABLE M109 YEE;Lo;0;R;;;;;N;;;;;-1E857;MENDE KIKAKUI SYLLABLE M080 YE;Lo;0;R;;;;;N;;;;;-1E858;MENDE KIKAKUI SYLLABLE M141 YOO;Lo;0;R;;;;;N;;;;;-1E859;MENDE KIKAKUI SYLLABLE M121 YO;Lo;0;R;;;;;N;;;;;-1E85A;MENDE KIKAKUI SYLLABLE M034 FI;Lo;0;R;;;;;N;;;;;-1E85B;MENDE KIKAKUI SYLLABLE M035 FA;Lo;0;R;;;;;N;;;;;-1E85C;MENDE KIKAKUI SYLLABLE M036 FU;Lo;0;R;;;;;N;;;;;-1E85D;MENDE KIKAKUI SYLLABLE M078 FEE;Lo;0;R;;;;;N;;;;;-1E85E;MENDE KIKAKUI SYLLABLE M075 FE;Lo;0;R;;;;;N;;;;;-1E85F;MENDE KIKAKUI SYLLABLE M133 FOO;Lo;0;R;;;;;N;;;;;-1E860;MENDE KIKAKUI SYLLABLE M088 FO;Lo;0;R;;;;;N;;;;;-1E861;MENDE KIKAKUI SYLLABLE M197 FUA;Lo;0;R;;;;;N;;;;;-1E862;MENDE KIKAKUI SYLLABLE M101 FAN;Lo;0;R;;;;;N;;;;;-1E863;MENDE KIKAKUI SYLLABLE M037 NIN;Lo;0;R;;;;;N;;;;;-1E864;MENDE KIKAKUI SYLLABLE M038 NAN;Lo;0;R;;;;;N;;;;;-1E865;MENDE KIKAKUI SYLLABLE M039 NUN;Lo;0;R;;;;;N;;;;;-1E866;MENDE KIKAKUI SYLLABLE M117 NEN;Lo;0;R;;;;;N;;;;;-1E867;MENDE KIKAKUI SYLLABLE M169 NON;Lo;0;R;;;;;N;;;;;-1E868;MENDE KIKAKUI SYLLABLE M176 HI;Lo;0;R;;;;;N;;;;;-1E869;MENDE KIKAKUI SYLLABLE M041 HA;Lo;0;R;;;;;N;;;;;-1E86A;MENDE KIKAKUI SYLLABLE M186 HU;Lo;0;R;;;;;N;;;;;-1E86B;MENDE KIKAKUI SYLLABLE M040 HEE;Lo;0;R;;;;;N;;;;;-1E86C;MENDE KIKAKUI SYLLABLE M096 HE;Lo;0;R;;;;;N;;;;;-1E86D;MENDE KIKAKUI SYLLABLE M042 HOO;Lo;0;R;;;;;N;;;;;-1E86E;MENDE KIKAKUI SYLLABLE M140 HO;Lo;0;R;;;;;N;;;;;-1E86F;MENDE KIKAKUI SYLLABLE M083 HEEI;Lo;0;R;;;;;N;;;;;-1E870;MENDE KIKAKUI SYLLABLE M128 HOOU;Lo;0;R;;;;;N;;;;;-1E871;MENDE KIKAKUI SYLLABLE M053 HIN;Lo;0;R;;;;;N;;;;;-1E872;MENDE KIKAKUI SYLLABLE M130 HAN;Lo;0;R;;;;;N;;;;;-1E873;MENDE KIKAKUI SYLLABLE M087 HUN;Lo;0;R;;;;;N;;;;;-1E874;MENDE KIKAKUI SYLLABLE M052 HEN;Lo;0;R;;;;;N;;;;;-1E875;MENDE KIKAKUI SYLLABLE M193 HON;Lo;0;R;;;;;N;;;;;-1E876;MENDE KIKAKUI SYLLABLE M046 HUAN;Lo;0;R;;;;;N;;;;;-1E877;MENDE KIKAKUI SYLLABLE M090 NGGI;Lo;0;R;;;;;N;;;;;-1E878;MENDE KIKAKUI SYLLABLE M043 NGGA;Lo;0;R;;;;;N;;;;;-1E879;MENDE KIKAKUI SYLLABLE M082 NGGU;Lo;0;R;;;;;N;;;;;-1E87A;MENDE KIKAKUI SYLLABLE M115 NGGEE;Lo;0;R;;;;;N;;;;;-1E87B;MENDE KIKAKUI SYLLABLE M146 NGGE;Lo;0;R;;;;;N;;;;;-1E87C;MENDE KIKAKUI SYLLABLE M156 NGGOO;Lo;0;R;;;;;N;;;;;-1E87D;MENDE KIKAKUI SYLLABLE M120 NGGO;Lo;0;R;;;;;N;;;;;-1E87E;MENDE KIKAKUI SYLLABLE M159 NGGAA;Lo;0;R;;;;;N;;;;;-1E87F;MENDE KIKAKUI SYLLABLE M127 NGGUA;Lo;0;R;;;;;N;;;;;-1E880;MENDE KIKAKUI SYLLABLE M086 LONG NGGE;Lo;0;R;;;;;N;;;;;-1E881;MENDE KIKAKUI SYLLABLE M106 LONG NGGOO;Lo;0;R;;;;;N;;;;;-1E882;MENDE KIKAKUI SYLLABLE M183 LONG NGGO;Lo;0;R;;;;;N;;;;;-1E883;MENDE KIKAKUI SYLLABLE M155 GI;Lo;0;R;;;;;N;;;;;-1E884;MENDE KIKAKUI SYLLABLE M111 GA;Lo;0;R;;;;;N;;;;;-1E885;MENDE KIKAKUI SYLLABLE M168 GU;Lo;0;R;;;;;N;;;;;-1E886;MENDE KIKAKUI SYLLABLE M190 GEE;Lo;0;R;;;;;N;;;;;-1E887;MENDE KIKAKUI SYLLABLE M166 GUEI;Lo;0;R;;;;;N;;;;;-1E888;MENDE KIKAKUI SYLLABLE M167 GUAN;Lo;0;R;;;;;N;;;;;-1E889;MENDE KIKAKUI SYLLABLE M184 NGEN;Lo;0;R;;;;;N;;;;;-1E88A;MENDE KIKAKUI SYLLABLE M057 NGON;Lo;0;R;;;;;N;;;;;-1E88B;MENDE KIKAKUI SYLLABLE M177 NGUAN;Lo;0;R;;;;;N;;;;;-1E88C;MENDE KIKAKUI SYLLABLE M068 PI;Lo;0;R;;;;;N;;;;;-1E88D;MENDE KIKAKUI SYLLABLE M099 PA;Lo;0;R;;;;;N;;;;;-1E88E;MENDE KIKAKUI SYLLABLE M050 PU;Lo;0;R;;;;;N;;;;;-1E88F;MENDE KIKAKUI SYLLABLE M081 PEE;Lo;0;R;;;;;N;;;;;-1E890;MENDE KIKAKUI SYLLABLE M051 PE;Lo;0;R;;;;;N;;;;;-1E891;MENDE KIKAKUI SYLLABLE M102 POO;Lo;0;R;;;;;N;;;;;-1E892;MENDE KIKAKUI SYLLABLE M066 PO;Lo;0;R;;;;;N;;;;;-1E893;MENDE KIKAKUI SYLLABLE M145 MBI;Lo;0;R;;;;;N;;;;;-1E894;MENDE KIKAKUI SYLLABLE M062 MBA;Lo;0;R;;;;;N;;;;;-1E895;MENDE KIKAKUI SYLLABLE M122 MBU;Lo;0;R;;;;;N;;;;;-1E896;MENDE KIKAKUI SYLLABLE M047 MBEE;Lo;0;R;;;;;N;;;;;-1E897;MENDE KIKAKUI SYLLABLE M188 MBEE;Lo;0;R;;;;;N;;;;;-1E898;MENDE KIKAKUI SYLLABLE M072 MBE;Lo;0;R;;;;;N;;;;;-1E899;MENDE KIKAKUI SYLLABLE M172 MBOO;Lo;0;R;;;;;N;;;;;-1E89A;MENDE KIKAKUI SYLLABLE M174 MBO;Lo;0;R;;;;;N;;;;;-1E89B;MENDE KIKAKUI SYLLABLE M187 MBUU;Lo;0;R;;;;;N;;;;;-1E89C;MENDE KIKAKUI SYLLABLE M161 LONG MBE;Lo;0;R;;;;;N;;;;;-1E89D;MENDE KIKAKUI SYLLABLE M105 LONG MBOO;Lo;0;R;;;;;N;;;;;-1E89E;MENDE KIKAKUI SYLLABLE M142 LONG MBO;Lo;0;R;;;;;N;;;;;-1E89F;MENDE KIKAKUI SYLLABLE M132 KPI;Lo;0;R;;;;;N;;;;;-1E8A0;MENDE KIKAKUI SYLLABLE M092 KPA;Lo;0;R;;;;;N;;;;;-1E8A1;MENDE KIKAKUI SYLLABLE M074 KPU;Lo;0;R;;;;;N;;;;;-1E8A2;MENDE KIKAKUI SYLLABLE M044 KPEE;Lo;0;R;;;;;N;;;;;-1E8A3;MENDE KIKAKUI SYLLABLE M108 KPE;Lo;0;R;;;;;N;;;;;-1E8A4;MENDE KIKAKUI SYLLABLE M112 KPOO;Lo;0;R;;;;;N;;;;;-1E8A5;MENDE KIKAKUI SYLLABLE M158 KPO;Lo;0;R;;;;;N;;;;;-1E8A6;MENDE KIKAKUI SYLLABLE M124 GBI;Lo;0;R;;;;;N;;;;;-1E8A7;MENDE KIKAKUI SYLLABLE M056 GBA;Lo;0;R;;;;;N;;;;;-1E8A8;MENDE KIKAKUI SYLLABLE M148 GBU;Lo;0;R;;;;;N;;;;;-1E8A9;MENDE KIKAKUI SYLLABLE M093 GBEE;Lo;0;R;;;;;N;;;;;-1E8AA;MENDE KIKAKUI SYLLABLE M107 GBE;Lo;0;R;;;;;N;;;;;-1E8AB;MENDE KIKAKUI SYLLABLE M071 GBOO;Lo;0;R;;;;;N;;;;;-1E8AC;MENDE KIKAKUI SYLLABLE M070 GBO;Lo;0;R;;;;;N;;;;;-1E8AD;MENDE KIKAKUI SYLLABLE M171 RA;Lo;0;R;;;;;N;;;;;-1E8AE;MENDE KIKAKUI SYLLABLE M123 NDI;Lo;0;R;;;;;N;;;;;-1E8AF;MENDE KIKAKUI SYLLABLE M129 NDA;Lo;0;R;;;;;N;;;;;-1E8B0;MENDE KIKAKUI SYLLABLE M125 NDU;Lo;0;R;;;;;N;;;;;-1E8B1;MENDE KIKAKUI SYLLABLE M191 NDEE;Lo;0;R;;;;;N;;;;;-1E8B2;MENDE KIKAKUI SYLLABLE M119 NDE;Lo;0;R;;;;;N;;;;;-1E8B3;MENDE KIKAKUI SYLLABLE M067 NDOO;Lo;0;R;;;;;N;;;;;-1E8B4;MENDE KIKAKUI SYLLABLE M064 NDO;Lo;0;R;;;;;N;;;;;-1E8B5;MENDE KIKAKUI SYLLABLE M152 NJA;Lo;0;R;;;;;N;;;;;-1E8B6;MENDE KIKAKUI SYLLABLE M192 NJU;Lo;0;R;;;;;N;;;;;-1E8B7;MENDE KIKAKUI SYLLABLE M149 NJEE;Lo;0;R;;;;;N;;;;;-1E8B8;MENDE KIKAKUI SYLLABLE M134 NJOO;Lo;0;R;;;;;N;;;;;-1E8B9;MENDE KIKAKUI SYLLABLE M182 VI;Lo;0;R;;;;;N;;;;;-1E8BA;MENDE KIKAKUI SYLLABLE M185 VA;Lo;0;R;;;;;N;;;;;-1E8BB;MENDE KIKAKUI SYLLABLE M151 VU;Lo;0;R;;;;;N;;;;;-1E8BC;MENDE KIKAKUI SYLLABLE M173 VEE;Lo;0;R;;;;;N;;;;;-1E8BD;MENDE KIKAKUI SYLLABLE M085 VE;Lo;0;R;;;;;N;;;;;-1E8BE;MENDE KIKAKUI SYLLABLE M144 VOO;Lo;0;R;;;;;N;;;;;-1E8BF;MENDE KIKAKUI SYLLABLE M077 VO;Lo;0;R;;;;;N;;;;;-1E8C0;MENDE KIKAKUI SYLLABLE M164 NYIN;Lo;0;R;;;;;N;;;;;-1E8C1;MENDE KIKAKUI SYLLABLE M058 NYAN;Lo;0;R;;;;;N;;;;;-1E8C2;MENDE KIKAKUI SYLLABLE M170 NYUN;Lo;0;R;;;;;N;;;;;-1E8C3;MENDE KIKAKUI SYLLABLE M098 NYEN;Lo;0;R;;;;;N;;;;;-1E8C4;MENDE KIKAKUI SYLLABLE M060 NYON;Lo;0;R;;;;;N;;;;;-1E8C7;MENDE KIKAKUI DIGIT ONE;No;0;R;;;;1;N;;;;;-1E8C8;MENDE KIKAKUI DIGIT TWO;No;0;R;;;;2;N;;;;;-1E8C9;MENDE KIKAKUI DIGIT THREE;No;0;R;;;;3;N;;;;;-1E8CA;MENDE KIKAKUI DIGIT FOUR;No;0;R;;;;4;N;;;;;-1E8CB;MENDE KIKAKUI DIGIT FIVE;No;0;R;;;;5;N;;;;;-1E8CC;MENDE KIKAKUI DIGIT SIX;No;0;R;;;;6;N;;;;;-1E8CD;MENDE KIKAKUI DIGIT SEVEN;No;0;R;;;;7;N;;;;;-1E8CE;MENDE KIKAKUI DIGIT EIGHT;No;0;R;;;;8;N;;;;;-1E8CF;MENDE KIKAKUI DIGIT NINE;No;0;R;;;;9;N;;;;;-1E8D0;MENDE KIKAKUI COMBINING NUMBER TEENS;Mn;220;NSM;;;;;N;;;;;-1E8D1;MENDE KIKAKUI COMBINING NUMBER TENS;Mn;220;NSM;;;;;N;;;;;-1E8D2;MENDE KIKAKUI COMBINING NUMBER HUNDREDS;Mn;220;NSM;;;;;N;;;;;-1E8D3;MENDE KIKAKUI COMBINING NUMBER THOUSANDS;Mn;220;NSM;;;;;N;;;;;-1E8D4;MENDE KIKAKUI COMBINING NUMBER TEN THOUSANDS;Mn;220;NSM;;;;;N;;;;;-1E8D5;MENDE KIKAKUI COMBINING NUMBER HUNDRED THOUSANDS;Mn;220;NSM;;;;;N;;;;;-1E8D6;MENDE KIKAKUI COMBINING NUMBER MILLIONS;Mn;220;NSM;;;;;N;;;;;-1EE00;ARABIC MATHEMATICAL ALEF;Lo;0;AL;<font> 0627;;;;N;;;;;-1EE01;ARABIC MATHEMATICAL BEH;Lo;0;AL;<font> 0628;;;;N;;;;;-1EE02;ARABIC MATHEMATICAL JEEM;Lo;0;AL;<font> 062C;;;;N;;;;;-1EE03;ARABIC MATHEMATICAL DAL;Lo;0;AL;<font> 062F;;;;N;;;;;-1EE05;ARABIC MATHEMATICAL WAW;Lo;0;AL;<font> 0648;;;;N;;;;;-1EE06;ARABIC MATHEMATICAL ZAIN;Lo;0;AL;<font> 0632;;;;N;;;;;-1EE07;ARABIC MATHEMATICAL HAH;Lo;0;AL;<font> 062D;;;;N;;;;;-1EE08;ARABIC MATHEMATICAL TAH;Lo;0;AL;<font> 0637;;;;N;;;;;-1EE09;ARABIC MATHEMATICAL YEH;Lo;0;AL;<font> 064A;;;;N;;;;;-1EE0A;ARABIC MATHEMATICAL KAF;Lo;0;AL;<font> 0643;;;;N;;;;;-1EE0B;ARABIC MATHEMATICAL LAM;Lo;0;AL;<font> 0644;;;;N;;;;;-1EE0C;ARABIC MATHEMATICAL MEEM;Lo;0;AL;<font> 0645;;;;N;;;;;-1EE0D;ARABIC MATHEMATICAL NOON;Lo;0;AL;<font> 0646;;;;N;;;;;-1EE0E;ARABIC MATHEMATICAL SEEN;Lo;0;AL;<font> 0633;;;;N;;;;;-1EE0F;ARABIC MATHEMATICAL AIN;Lo;0;AL;<font> 0639;;;;N;;;;;-1EE10;ARABIC MATHEMATICAL FEH;Lo;0;AL;<font> 0641;;;;N;;;;;-1EE11;ARABIC MATHEMATICAL SAD;Lo;0;AL;<font> 0635;;;;N;;;;;-1EE12;ARABIC MATHEMATICAL QAF;Lo;0;AL;<font> 0642;;;;N;;;;;-1EE13;ARABIC MATHEMATICAL REH;Lo;0;AL;<font> 0631;;;;N;;;;;-1EE14;ARABIC MATHEMATICAL SHEEN;Lo;0;AL;<font> 0634;;;;N;;;;;-1EE15;ARABIC MATHEMATICAL TEH;Lo;0;AL;<font> 062A;;;;N;;;;;-1EE16;ARABIC MATHEMATICAL THEH;Lo;0;AL;<font> 062B;;;;N;;;;;-1EE17;ARABIC MATHEMATICAL KHAH;Lo;0;AL;<font> 062E;;;;N;;;;;-1EE18;ARABIC MATHEMATICAL THAL;Lo;0;AL;<font> 0630;;;;N;;;;;-1EE19;ARABIC MATHEMATICAL DAD;Lo;0;AL;<font> 0636;;;;N;;;;;-1EE1A;ARABIC MATHEMATICAL ZAH;Lo;0;AL;<font> 0638;;;;N;;;;;-1EE1B;ARABIC MATHEMATICAL GHAIN;Lo;0;AL;<font> 063A;;;;N;;;;;-1EE1C;ARABIC MATHEMATICAL DOTLESS BEH;Lo;0;AL;<font> 066E;;;;N;;;;;-1EE1D;ARABIC MATHEMATICAL DOTLESS NOON;Lo;0;AL;<font> 06BA;;;;N;;;;;-1EE1E;ARABIC MATHEMATICAL DOTLESS FEH;Lo;0;AL;<font> 06A1;;;;N;;;;;-1EE1F;ARABIC MATHEMATICAL DOTLESS QAF;Lo;0;AL;<font> 066F;;;;N;;;;;-1EE21;ARABIC MATHEMATICAL INITIAL BEH;Lo;0;AL;<font> 0628;;;;N;;;;;-1EE22;ARABIC MATHEMATICAL INITIAL JEEM;Lo;0;AL;<font> 062C;;;;N;;;;;-1EE24;ARABIC MATHEMATICAL INITIAL HEH;Lo;0;AL;<font> 0647;;;;N;;;;;-1EE27;ARABIC MATHEMATICAL INITIAL HAH;Lo;0;AL;<font> 062D;;;;N;;;;;-1EE29;ARABIC MATHEMATICAL INITIAL YEH;Lo;0;AL;<font> 064A;;;;N;;;;;-1EE2A;ARABIC MATHEMATICAL INITIAL KAF;Lo;0;AL;<font> 0643;;;;N;;;;;-1EE2B;ARABIC MATHEMATICAL INITIAL LAM;Lo;0;AL;<font> 0644;;;;N;;;;;-1EE2C;ARABIC MATHEMATICAL INITIAL MEEM;Lo;0;AL;<font> 0645;;;;N;;;;;-1EE2D;ARABIC MATHEMATICAL INITIAL NOON;Lo;0;AL;<font> 0646;;;;N;;;;;-1EE2E;ARABIC MATHEMATICAL INITIAL SEEN;Lo;0;AL;<font> 0633;;;;N;;;;;-1EE2F;ARABIC MATHEMATICAL INITIAL AIN;Lo;0;AL;<font> 0639;;;;N;;;;;-1EE30;ARABIC MATHEMATICAL INITIAL FEH;Lo;0;AL;<font> 0641;;;;N;;;;;-1EE31;ARABIC MATHEMATICAL INITIAL SAD;Lo;0;AL;<font> 0635;;;;N;;;;;-1EE32;ARABIC MATHEMATICAL INITIAL QAF;Lo;0;AL;<font> 0642;;;;N;;;;;-1EE34;ARABIC MATHEMATICAL INITIAL SHEEN;Lo;0;AL;<font> 0634;;;;N;;;;;-1EE35;ARABIC MATHEMATICAL INITIAL TEH;Lo;0;AL;<font> 062A;;;;N;;;;;-1EE36;ARABIC MATHEMATICAL INITIAL THEH;Lo;0;AL;<font> 062B;;;;N;;;;;-1EE37;ARABIC MATHEMATICAL INITIAL KHAH;Lo;0;AL;<font> 062E;;;;N;;;;;-1EE39;ARABIC MATHEMATICAL INITIAL DAD;Lo;0;AL;<font> 0636;;;;N;;;;;-1EE3B;ARABIC MATHEMATICAL INITIAL GHAIN;Lo;0;AL;<font> 063A;;;;N;;;;;-1EE42;ARABIC MATHEMATICAL TAILED JEEM;Lo;0;AL;<font> 062C;;;;N;;;;;-1EE47;ARABIC MATHEMATICAL TAILED HAH;Lo;0;AL;<font> 062D;;;;N;;;;;-1EE49;ARABIC MATHEMATICAL TAILED YEH;Lo;0;AL;<font> 064A;;;;N;;;;;-1EE4B;ARABIC MATHEMATICAL TAILED LAM;Lo;0;AL;<font> 0644;;;;N;;;;;-1EE4D;ARABIC MATHEMATICAL TAILED NOON;Lo;0;AL;<font> 0646;;;;N;;;;;-1EE4E;ARABIC MATHEMATICAL TAILED SEEN;Lo;0;AL;<font> 0633;;;;N;;;;;-1EE4F;ARABIC MATHEMATICAL TAILED AIN;Lo;0;AL;<font> 0639;;;;N;;;;;-1EE51;ARABIC MATHEMATICAL TAILED SAD;Lo;0;AL;<font> 0635;;;;N;;;;;-1EE52;ARABIC MATHEMATICAL TAILED QAF;Lo;0;AL;<font> 0642;;;;N;;;;;-1EE54;ARABIC MATHEMATICAL TAILED SHEEN;Lo;0;AL;<font> 0634;;;;N;;;;;-1EE57;ARABIC MATHEMATICAL TAILED KHAH;Lo;0;AL;<font> 062E;;;;N;;;;;-1EE59;ARABIC MATHEMATICAL TAILED DAD;Lo;0;AL;<font> 0636;;;;N;;;;;-1EE5B;ARABIC MATHEMATICAL TAILED GHAIN;Lo;0;AL;<font> 063A;;;;N;;;;;-1EE5D;ARABIC MATHEMATICAL TAILED DOTLESS NOON;Lo;0;AL;<font> 06BA;;;;N;;;;;-1EE5F;ARABIC MATHEMATICAL TAILED DOTLESS QAF;Lo;0;AL;<font> 066F;;;;N;;;;;-1EE61;ARABIC MATHEMATICAL STRETCHED BEH;Lo;0;AL;<font> 0628;;;;N;;;;;-1EE62;ARABIC MATHEMATICAL STRETCHED JEEM;Lo;0;AL;<font> 062C;;;;N;;;;;-1EE64;ARABIC MATHEMATICAL STRETCHED HEH;Lo;0;AL;<font> 0647;;;;N;;;;;-1EE67;ARABIC MATHEMATICAL STRETCHED HAH;Lo;0;AL;<font> 062D;;;;N;;;;;-1EE68;ARABIC MATHEMATICAL STRETCHED TAH;Lo;0;AL;<font> 0637;;;;N;;;;;-1EE69;ARABIC MATHEMATICAL STRETCHED YEH;Lo;0;AL;<font> 064A;;;;N;;;;;-1EE6A;ARABIC MATHEMATICAL STRETCHED KAF;Lo;0;AL;<font> 0643;;;;N;;;;;-1EE6C;ARABIC MATHEMATICAL STRETCHED MEEM;Lo;0;AL;<font> 0645;;;;N;;;;;-1EE6D;ARABIC MATHEMATICAL STRETCHED NOON;Lo;0;AL;<font> 0646;;;;N;;;;;-1EE6E;ARABIC MATHEMATICAL STRETCHED SEEN;Lo;0;AL;<font> 0633;;;;N;;;;;-1EE6F;ARABIC MATHEMATICAL STRETCHED AIN;Lo;0;AL;<font> 0639;;;;N;;;;;-1EE70;ARABIC MATHEMATICAL STRETCHED FEH;Lo;0;AL;<font> 0641;;;;N;;;;;-1EE71;ARABIC MATHEMATICAL STRETCHED SAD;Lo;0;AL;<font> 0635;;;;N;;;;;-1EE72;ARABIC MATHEMATICAL STRETCHED QAF;Lo;0;AL;<font> 0642;;;;N;;;;;-1EE74;ARABIC MATHEMATICAL STRETCHED SHEEN;Lo;0;AL;<font> 0634;;;;N;;;;;-1EE75;ARABIC MATHEMATICAL STRETCHED TEH;Lo;0;AL;<font> 062A;;;;N;;;;;-1EE76;ARABIC MATHEMATICAL STRETCHED THEH;Lo;0;AL;<font> 062B;;;;N;;;;;-1EE77;ARABIC MATHEMATICAL STRETCHED KHAH;Lo;0;AL;<font> 062E;;;;N;;;;;-1EE79;ARABIC MATHEMATICAL STRETCHED DAD;Lo;0;AL;<font> 0636;;;;N;;;;;-1EE7A;ARABIC MATHEMATICAL STRETCHED ZAH;Lo;0;AL;<font> 0638;;;;N;;;;;-1EE7B;ARABIC MATHEMATICAL STRETCHED GHAIN;Lo;0;AL;<font> 063A;;;;N;;;;;-1EE7C;ARABIC MATHEMATICAL STRETCHED DOTLESS BEH;Lo;0;AL;<font> 066E;;;;N;;;;;-1EE7E;ARABIC MATHEMATICAL STRETCHED DOTLESS FEH;Lo;0;AL;<font> 06A1;;;;N;;;;;-1EE80;ARABIC MATHEMATICAL LOOPED ALEF;Lo;0;AL;<font> 0627;;;;N;;;;;-1EE81;ARABIC MATHEMATICAL LOOPED BEH;Lo;0;AL;<font> 0628;;;;N;;;;;-1EE82;ARABIC MATHEMATICAL LOOPED JEEM;Lo;0;AL;<font> 062C;;;;N;;;;;-1EE83;ARABIC MATHEMATICAL LOOPED DAL;Lo;0;AL;<font> 062F;;;;N;;;;;-1EE84;ARABIC MATHEMATICAL LOOPED HEH;Lo;0;AL;<font> 0647;;;;N;;;;;-1EE85;ARABIC MATHEMATICAL LOOPED WAW;Lo;0;AL;<font> 0648;;;;N;;;;;-1EE86;ARABIC MATHEMATICAL LOOPED ZAIN;Lo;0;AL;<font> 0632;;;;N;;;;;-1EE87;ARABIC MATHEMATICAL LOOPED HAH;Lo;0;AL;<font> 062D;;;;N;;;;;-1EE88;ARABIC MATHEMATICAL LOOPED TAH;Lo;0;AL;<font> 0637;;;;N;;;;;-1EE89;ARABIC MATHEMATICAL LOOPED YEH;Lo;0;AL;<font> 064A;;;;N;;;;;-1EE8B;ARABIC MATHEMATICAL LOOPED LAM;Lo;0;AL;<font> 0644;;;;N;;;;;-1EE8C;ARABIC MATHEMATICAL LOOPED MEEM;Lo;0;AL;<font> 0645;;;;N;;;;;-1EE8D;ARABIC MATHEMATICAL LOOPED NOON;Lo;0;AL;<font> 0646;;;;N;;;;;-1EE8E;ARABIC MATHEMATICAL LOOPED SEEN;Lo;0;AL;<font> 0633;;;;N;;;;;-1EE8F;ARABIC MATHEMATICAL LOOPED AIN;Lo;0;AL;<font> 0639;;;;N;;;;;-1EE90;ARABIC MATHEMATICAL LOOPED FEH;Lo;0;AL;<font> 0641;;;;N;;;;;-1EE91;ARABIC MATHEMATICAL LOOPED SAD;Lo;0;AL;<font> 0635;;;;N;;;;;-1EE92;ARABIC MATHEMATICAL LOOPED QAF;Lo;0;AL;<font> 0642;;;;N;;;;;-1EE93;ARABIC MATHEMATICAL LOOPED REH;Lo;0;AL;<font> 0631;;;;N;;;;;-1EE94;ARABIC MATHEMATICAL LOOPED SHEEN;Lo;0;AL;<font> 0634;;;;N;;;;;-1EE95;ARABIC MATHEMATICAL LOOPED TEH;Lo;0;AL;<font> 062A;;;;N;;;;;-1EE96;ARABIC MATHEMATICAL LOOPED THEH;Lo;0;AL;<font> 062B;;;;N;;;;;-1EE97;ARABIC MATHEMATICAL LOOPED KHAH;Lo;0;AL;<font> 062E;;;;N;;;;;-1EE98;ARABIC MATHEMATICAL LOOPED THAL;Lo;0;AL;<font> 0630;;;;N;;;;;-1EE99;ARABIC MATHEMATICAL LOOPED DAD;Lo;0;AL;<font> 0636;;;;N;;;;;-1EE9A;ARABIC MATHEMATICAL LOOPED ZAH;Lo;0;AL;<font> 0638;;;;N;;;;;-1EE9B;ARABIC MATHEMATICAL LOOPED GHAIN;Lo;0;AL;<font> 063A;;;;N;;;;;-1EEA1;ARABIC MATHEMATICAL DOUBLE-STRUCK BEH;Lo;0;AL;<font> 0628;;;;N;;;;;-1EEA2;ARABIC MATHEMATICAL DOUBLE-STRUCK JEEM;Lo;0;AL;<font> 062C;;;;N;;;;;-1EEA3;ARABIC MATHEMATICAL DOUBLE-STRUCK DAL;Lo;0;AL;<font> 062F;;;;N;;;;;-1EEA5;ARABIC MATHEMATICAL DOUBLE-STRUCK WAW;Lo;0;AL;<font> 0648;;;;N;;;;;-1EEA6;ARABIC MATHEMATICAL DOUBLE-STRUCK ZAIN;Lo;0;AL;<font> 0632;;;;N;;;;;-1EEA7;ARABIC MATHEMATICAL DOUBLE-STRUCK HAH;Lo;0;AL;<font> 062D;;;;N;;;;;-1EEA8;ARABIC MATHEMATICAL DOUBLE-STRUCK TAH;Lo;0;AL;<font> 0637;;;;N;;;;;-1EEA9;ARABIC MATHEMATICAL DOUBLE-STRUCK YEH;Lo;0;AL;<font> 064A;;;;N;;;;;-1EEAB;ARABIC MATHEMATICAL DOUBLE-STRUCK LAM;Lo;0;AL;<font> 0644;;;;N;;;;;-1EEAC;ARABIC MATHEMATICAL DOUBLE-STRUCK MEEM;Lo;0;AL;<font> 0645;;;;N;;;;;-1EEAD;ARABIC MATHEMATICAL DOUBLE-STRUCK NOON;Lo;0;AL;<font> 0646;;;;N;;;;;-1EEAE;ARABIC MATHEMATICAL DOUBLE-STRUCK SEEN;Lo;0;AL;<font> 0633;;;;N;;;;;-1EEAF;ARABIC MATHEMATICAL DOUBLE-STRUCK AIN;Lo;0;AL;<font> 0639;;;;N;;;;;-1EEB0;ARABIC MATHEMATICAL DOUBLE-STRUCK FEH;Lo;0;AL;<font> 0641;;;;N;;;;;-1EEB1;ARABIC MATHEMATICAL DOUBLE-STRUCK SAD;Lo;0;AL;<font> 0635;;;;N;;;;;-1EEB2;ARABIC MATHEMATICAL DOUBLE-STRUCK QAF;Lo;0;AL;<font> 0642;;;;N;;;;;-1EEB3;ARABIC MATHEMATICAL DOUBLE-STRUCK REH;Lo;0;AL;<font> 0631;;;;N;;;;;-1EEB4;ARABIC MATHEMATICAL DOUBLE-STRUCK SHEEN;Lo;0;AL;<font> 0634;;;;N;;;;;-1EEB5;ARABIC MATHEMATICAL DOUBLE-STRUCK TEH;Lo;0;AL;<font> 062A;;;;N;;;;;-1EEB6;ARABIC MATHEMATICAL DOUBLE-STRUCK THEH;Lo;0;AL;<font> 062B;;;;N;;;;;-1EEB7;ARABIC MATHEMATICAL DOUBLE-STRUCK KHAH;Lo;0;AL;<font> 062E;;;;N;;;;;-1EEB8;ARABIC MATHEMATICAL DOUBLE-STRUCK THAL;Lo;0;AL;<font> 0630;;;;N;;;;;-1EEB9;ARABIC MATHEMATICAL DOUBLE-STRUCK DAD;Lo;0;AL;<font> 0636;;;;N;;;;;-1EEBA;ARABIC MATHEMATICAL DOUBLE-STRUCK ZAH;Lo;0;AL;<font> 0638;;;;N;;;;;-1EEBB;ARABIC MATHEMATICAL DOUBLE-STRUCK GHAIN;Lo;0;AL;<font> 063A;;;;N;;;;;-1EEF0;ARABIC MATHEMATICAL OPERATOR MEEM WITH HAH WITH TATWEEL;Sm;0;ON;;;;;N;;;;;-1EEF1;ARABIC MATHEMATICAL OPERATOR HAH WITH DAL;Sm;0;ON;;;;;N;;;;;-1F000;MAHJONG TILE EAST WIND;So;0;ON;;;;;N;;;;;-1F001;MAHJONG TILE SOUTH WIND;So;0;ON;;;;;N;;;;;-1F002;MAHJONG TILE WEST WIND;So;0;ON;;;;;N;;;;;-1F003;MAHJONG TILE NORTH WIND;So;0;ON;;;;;N;;;;;-1F004;MAHJONG TILE RED DRAGON;So;0;ON;;;;;N;;;;;-1F005;MAHJONG TILE GREEN DRAGON;So;0;ON;;;;;N;;;;;-1F006;MAHJONG TILE WHITE DRAGON;So;0;ON;;;;;N;;;;;-1F007;MAHJONG TILE ONE OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F008;MAHJONG TILE TWO OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F009;MAHJONG TILE THREE OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F00A;MAHJONG TILE FOUR OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F00B;MAHJONG TILE FIVE OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F00C;MAHJONG TILE SIX OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F00D;MAHJONG TILE SEVEN OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F00E;MAHJONG TILE EIGHT OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F00F;MAHJONG TILE NINE OF CHARACTERS;So;0;ON;;;;;N;;;;;-1F010;MAHJONG TILE ONE OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F011;MAHJONG TILE TWO OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F012;MAHJONG TILE THREE OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F013;MAHJONG TILE FOUR OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F014;MAHJONG TILE FIVE OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F015;MAHJONG TILE SIX OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F016;MAHJONG TILE SEVEN OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F017;MAHJONG TILE EIGHT OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F018;MAHJONG TILE NINE OF BAMBOOS;So;0;ON;;;;;N;;;;;-1F019;MAHJONG TILE ONE OF CIRCLES;So;0;ON;;;;;N;;;;;-1F01A;MAHJONG TILE TWO OF CIRCLES;So;0;ON;;;;;N;;;;;-1F01B;MAHJONG TILE THREE OF CIRCLES;So;0;ON;;;;;N;;;;;-1F01C;MAHJONG TILE FOUR OF CIRCLES;So;0;ON;;;;;N;;;;;-1F01D;MAHJONG TILE FIVE OF CIRCLES;So;0;ON;;;;;N;;;;;-1F01E;MAHJONG TILE SIX OF CIRCLES;So;0;ON;;;;;N;;;;;-1F01F;MAHJONG TILE SEVEN OF CIRCLES;So;0;ON;;;;;N;;;;;-1F020;MAHJONG TILE EIGHT OF CIRCLES;So;0;ON;;;;;N;;;;;-1F021;MAHJONG TILE NINE OF CIRCLES;So;0;ON;;;;;N;;;;;-1F022;MAHJONG TILE PLUM;So;0;ON;;;;;N;;;;;-1F023;MAHJONG TILE ORCHID;So;0;ON;;;;;N;;;;;-1F024;MAHJONG TILE BAMBOO;So;0;ON;;;;;N;;;;;-1F025;MAHJONG TILE CHRYSANTHEMUM;So;0;ON;;;;;N;;;;;-1F026;MAHJONG TILE SPRING;So;0;ON;;;;;N;;;;;-1F027;MAHJONG TILE SUMMER;So;0;ON;;;;;N;;;;;-1F028;MAHJONG TILE AUTUMN;So;0;ON;;;;;N;;;;;-1F029;MAHJONG TILE WINTER;So;0;ON;;;;;N;;;;;-1F02A;MAHJONG TILE JOKER;So;0;ON;;;;;N;;;;;-1F02B;MAHJONG TILE BACK;So;0;ON;;;;;N;;;;;-1F030;DOMINO TILE HORIZONTAL BACK;So;0;ON;;;;;N;;;;;-1F031;DOMINO TILE HORIZONTAL-00-00;So;0;ON;;;;;N;;;;;-1F032;DOMINO TILE HORIZONTAL-00-01;So;0;ON;;;;;N;;;;;-1F033;DOMINO TILE HORIZONTAL-00-02;So;0;ON;;;;;N;;;;;-1F034;DOMINO TILE HORIZONTAL-00-03;So;0;ON;;;;;N;;;;;-1F035;DOMINO TILE HORIZONTAL-00-04;So;0;ON;;;;;N;;;;;-1F036;DOMINO TILE HORIZONTAL-00-05;So;0;ON;;;;;N;;;;;-1F037;DOMINO TILE HORIZONTAL-00-06;So;0;ON;;;;;N;;;;;-1F038;DOMINO TILE HORIZONTAL-01-00;So;0;ON;;;;;N;;;;;-1F039;DOMINO TILE HORIZONTAL-01-01;So;0;ON;;;;;N;;;;;-1F03A;DOMINO TILE HORIZONTAL-01-02;So;0;ON;;;;;N;;;;;-1F03B;DOMINO TILE HORIZONTAL-01-03;So;0;ON;;;;;N;;;;;-1F03C;DOMINO TILE HORIZONTAL-01-04;So;0;ON;;;;;N;;;;;-1F03D;DOMINO TILE HORIZONTAL-01-05;So;0;ON;;;;;N;;;;;-1F03E;DOMINO TILE HORIZONTAL-01-06;So;0;ON;;;;;N;;;;;-1F03F;DOMINO TILE HORIZONTAL-02-00;So;0;ON;;;;;N;;;;;-1F040;DOMINO TILE HORIZONTAL-02-01;So;0;ON;;;;;N;;;;;-1F041;DOMINO TILE HORIZONTAL-02-02;So;0;ON;;;;;N;;;;;-1F042;DOMINO TILE HORIZONTAL-02-03;So;0;ON;;;;;N;;;;;-1F043;DOMINO TILE HORIZONTAL-02-04;So;0;ON;;;;;N;;;;;-1F044;DOMINO TILE HORIZONTAL-02-05;So;0;ON;;;;;N;;;;;-1F045;DOMINO TILE HORIZONTAL-02-06;So;0;ON;;;;;N;;;;;-1F046;DOMINO TILE HORIZONTAL-03-00;So;0;ON;;;;;N;;;;;-1F047;DOMINO TILE HORIZONTAL-03-01;So;0;ON;;;;;N;;;;;-1F048;DOMINO TILE HORIZONTAL-03-02;So;0;ON;;;;;N;;;;;-1F049;DOMINO TILE HORIZONTAL-03-03;So;0;ON;;;;;N;;;;;-1F04A;DOMINO TILE HORIZONTAL-03-04;So;0;ON;;;;;N;;;;;-1F04B;DOMINO TILE HORIZONTAL-03-05;So;0;ON;;;;;N;;;;;-1F04C;DOMINO TILE HORIZONTAL-03-06;So;0;ON;;;;;N;;;;;-1F04D;DOMINO TILE HORIZONTAL-04-00;So;0;ON;;;;;N;;;;;-1F04E;DOMINO TILE HORIZONTAL-04-01;So;0;ON;;;;;N;;;;;-1F04F;DOMINO TILE HORIZONTAL-04-02;So;0;ON;;;;;N;;;;;-1F050;DOMINO TILE HORIZONTAL-04-03;So;0;ON;;;;;N;;;;;-1F051;DOMINO TILE HORIZONTAL-04-04;So;0;ON;;;;;N;;;;;-1F052;DOMINO TILE HORIZONTAL-04-05;So;0;ON;;;;;N;;;;;-1F053;DOMINO TILE HORIZONTAL-04-06;So;0;ON;;;;;N;;;;;-1F054;DOMINO TILE HORIZONTAL-05-00;So;0;ON;;;;;N;;;;;-1F055;DOMINO TILE HORIZONTAL-05-01;So;0;ON;;;;;N;;;;;-1F056;DOMINO TILE HORIZONTAL-05-02;So;0;ON;;;;;N;;;;;-1F057;DOMINO TILE HORIZONTAL-05-03;So;0;ON;;;;;N;;;;;-1F058;DOMINO TILE HORIZONTAL-05-04;So;0;ON;;;;;N;;;;;-1F059;DOMINO TILE HORIZONTAL-05-05;So;0;ON;;;;;N;;;;;-1F05A;DOMINO TILE HORIZONTAL-05-06;So;0;ON;;;;;N;;;;;-1F05B;DOMINO TILE HORIZONTAL-06-00;So;0;ON;;;;;N;;;;;-1F05C;DOMINO TILE HORIZONTAL-06-01;So;0;ON;;;;;N;;;;;-1F05D;DOMINO TILE HORIZONTAL-06-02;So;0;ON;;;;;N;;;;;-1F05E;DOMINO TILE HORIZONTAL-06-03;So;0;ON;;;;;N;;;;;-1F05F;DOMINO TILE HORIZONTAL-06-04;So;0;ON;;;;;N;;;;;-1F060;DOMINO TILE HORIZONTAL-06-05;So;0;ON;;;;;N;;;;;-1F061;DOMINO TILE HORIZONTAL-06-06;So;0;ON;;;;;N;;;;;-1F062;DOMINO TILE VERTICAL BACK;So;0;ON;;;;;N;;;;;-1F063;DOMINO TILE VERTICAL-00-00;So;0;ON;;;;;N;;;;;-1F064;DOMINO TILE VERTICAL-00-01;So;0;ON;;;;;N;;;;;-1F065;DOMINO TILE VERTICAL-00-02;So;0;ON;;;;;N;;;;;-1F066;DOMINO TILE VERTICAL-00-03;So;0;ON;;;;;N;;;;;-1F067;DOMINO TILE VERTICAL-00-04;So;0;ON;;;;;N;;;;;-1F068;DOMINO TILE VERTICAL-00-05;So;0;ON;;;;;N;;;;;-1F069;DOMINO TILE VERTICAL-00-06;So;0;ON;;;;;N;;;;;-1F06A;DOMINO TILE VERTICAL-01-00;So;0;ON;;;;;N;;;;;-1F06B;DOMINO TILE VERTICAL-01-01;So;0;ON;;;;;N;;;;;-1F06C;DOMINO TILE VERTICAL-01-02;So;0;ON;;;;;N;;;;;-1F06D;DOMINO TILE VERTICAL-01-03;So;0;ON;;;;;N;;;;;-1F06E;DOMINO TILE VERTICAL-01-04;So;0;ON;;;;;N;;;;;-1F06F;DOMINO TILE VERTICAL-01-05;So;0;ON;;;;;N;;;;;-1F070;DOMINO TILE VERTICAL-01-06;So;0;ON;;;;;N;;;;;-1F071;DOMINO TILE VERTICAL-02-00;So;0;ON;;;;;N;;;;;-1F072;DOMINO TILE VERTICAL-02-01;So;0;ON;;;;;N;;;;;-1F073;DOMINO TILE VERTICAL-02-02;So;0;ON;;;;;N;;;;;-1F074;DOMINO TILE VERTICAL-02-03;So;0;ON;;;;;N;;;;;-1F075;DOMINO TILE VERTICAL-02-04;So;0;ON;;;;;N;;;;;-1F076;DOMINO TILE VERTICAL-02-05;So;0;ON;;;;;N;;;;;-1F077;DOMINO TILE VERTICAL-02-06;So;0;ON;;;;;N;;;;;-1F078;DOMINO TILE VERTICAL-03-00;So;0;ON;;;;;N;;;;;-1F079;DOMINO TILE VERTICAL-03-01;So;0;ON;;;;;N;;;;;-1F07A;DOMINO TILE VERTICAL-03-02;So;0;ON;;;;;N;;;;;-1F07B;DOMINO TILE VERTICAL-03-03;So;0;ON;;;;;N;;;;;-1F07C;DOMINO TILE VERTICAL-03-04;So;0;ON;;;;;N;;;;;-1F07D;DOMINO TILE VERTICAL-03-05;So;0;ON;;;;;N;;;;;-1F07E;DOMINO TILE VERTICAL-03-06;So;0;ON;;;;;N;;;;;-1F07F;DOMINO TILE VERTICAL-04-00;So;0;ON;;;;;N;;;;;-1F080;DOMINO TILE VERTICAL-04-01;So;0;ON;;;;;N;;;;;-1F081;DOMINO TILE VERTICAL-04-02;So;0;ON;;;;;N;;;;;-1F082;DOMINO TILE VERTICAL-04-03;So;0;ON;;;;;N;;;;;-1F083;DOMINO TILE VERTICAL-04-04;So;0;ON;;;;;N;;;;;-1F084;DOMINO TILE VERTICAL-04-05;So;0;ON;;;;;N;;;;;-1F085;DOMINO TILE VERTICAL-04-06;So;0;ON;;;;;N;;;;;-1F086;DOMINO TILE VERTICAL-05-00;So;0;ON;;;;;N;;;;;-1F087;DOMINO TILE VERTICAL-05-01;So;0;ON;;;;;N;;;;;-1F088;DOMINO TILE VERTICAL-05-02;So;0;ON;;;;;N;;;;;-1F089;DOMINO TILE VERTICAL-05-03;So;0;ON;;;;;N;;;;;-1F08A;DOMINO TILE VERTICAL-05-04;So;0;ON;;;;;N;;;;;-1F08B;DOMINO TILE VERTICAL-05-05;So;0;ON;;;;;N;;;;;-1F08C;DOMINO TILE VERTICAL-05-06;So;0;ON;;;;;N;;;;;-1F08D;DOMINO TILE VERTICAL-06-00;So;0;ON;;;;;N;;;;;-1F08E;DOMINO TILE VERTICAL-06-01;So;0;ON;;;;;N;;;;;-1F08F;DOMINO TILE VERTICAL-06-02;So;0;ON;;;;;N;;;;;-1F090;DOMINO TILE VERTICAL-06-03;So;0;ON;;;;;N;;;;;-1F091;DOMINO TILE VERTICAL-06-04;So;0;ON;;;;;N;;;;;-1F092;DOMINO TILE VERTICAL-06-05;So;0;ON;;;;;N;;;;;-1F093;DOMINO TILE VERTICAL-06-06;So;0;ON;;;;;N;;;;;-1F0A0;PLAYING CARD BACK;So;0;ON;;;;;N;;;;;-1F0A1;PLAYING CARD ACE OF SPADES;So;0;ON;;;;;N;;;;;-1F0A2;PLAYING CARD TWO OF SPADES;So;0;ON;;;;;N;;;;;-1F0A3;PLAYING CARD THREE OF SPADES;So;0;ON;;;;;N;;;;;-1F0A4;PLAYING CARD FOUR OF SPADES;So;0;ON;;;;;N;;;;;-1F0A5;PLAYING CARD FIVE OF SPADES;So;0;ON;;;;;N;;;;;-1F0A6;PLAYING CARD SIX OF SPADES;So;0;ON;;;;;N;;;;;-1F0A7;PLAYING CARD SEVEN OF SPADES;So;0;ON;;;;;N;;;;;-1F0A8;PLAYING CARD EIGHT OF SPADES;So;0;ON;;;;;N;;;;;-1F0A9;PLAYING CARD NINE OF SPADES;So;0;ON;;;;;N;;;;;-1F0AA;PLAYING CARD TEN OF SPADES;So;0;ON;;;;;N;;;;;-1F0AB;PLAYING CARD JACK OF SPADES;So;0;ON;;;;;N;;;;;-1F0AC;PLAYING CARD KNIGHT OF SPADES;So;0;ON;;;;;N;;;;;-1F0AD;PLAYING CARD QUEEN OF SPADES;So;0;ON;;;;;N;;;;;-1F0AE;PLAYING CARD KING OF SPADES;So;0;ON;;;;;N;;;;;-1F0B1;PLAYING CARD ACE OF HEARTS;So;0;ON;;;;;N;;;;;-1F0B2;PLAYING CARD TWO OF HEARTS;So;0;ON;;;;;N;;;;;-1F0B3;PLAYING CARD THREE OF HEARTS;So;0;ON;;;;;N;;;;;-1F0B4;PLAYING CARD FOUR OF HEARTS;So;0;ON;;;;;N;;;;;-1F0B5;PLAYING CARD FIVE OF HEARTS;So;0;ON;;;;;N;;;;;-1F0B6;PLAYING CARD SIX OF HEARTS;So;0;ON;;;;;N;;;;;-1F0B7;PLAYING CARD SEVEN OF HEARTS;So;0;ON;;;;;N;;;;;-1F0B8;PLAYING CARD EIGHT OF HEARTS;So;0;ON;;;;;N;;;;;-1F0B9;PLAYING CARD NINE OF HEARTS;So;0;ON;;;;;N;;;;;-1F0BA;PLAYING CARD TEN OF HEARTS;So;0;ON;;;;;N;;;;;-1F0BB;PLAYING CARD JACK OF HEARTS;So;0;ON;;;;;N;;;;;-1F0BC;PLAYING CARD KNIGHT OF HEARTS;So;0;ON;;;;;N;;;;;-1F0BD;PLAYING CARD QUEEN OF HEARTS;So;0;ON;;;;;N;;;;;-1F0BE;PLAYING CARD KING OF HEARTS;So;0;ON;;;;;N;;;;;-1F0BF;PLAYING CARD RED JOKER;So;0;ON;;;;;N;;;;;-1F0C1;PLAYING CARD ACE OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0C2;PLAYING CARD TWO OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0C3;PLAYING CARD THREE OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0C4;PLAYING CARD FOUR OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0C5;PLAYING CARD FIVE OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0C6;PLAYING CARD SIX OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0C7;PLAYING CARD SEVEN OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0C8;PLAYING CARD EIGHT OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0C9;PLAYING CARD NINE OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0CA;PLAYING CARD TEN OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0CB;PLAYING CARD JACK OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0CC;PLAYING CARD KNIGHT OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0CD;PLAYING CARD QUEEN OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0CE;PLAYING CARD KING OF DIAMONDS;So;0;ON;;;;;N;;;;;-1F0CF;PLAYING CARD BLACK JOKER;So;0;ON;;;;;N;;;;;-1F0D1;PLAYING CARD ACE OF CLUBS;So;0;ON;;;;;N;;;;;-1F0D2;PLAYING CARD TWO OF CLUBS;So;0;ON;;;;;N;;;;;-1F0D3;PLAYING CARD THREE OF CLUBS;So;0;ON;;;;;N;;;;;-1F0D4;PLAYING CARD FOUR OF CLUBS;So;0;ON;;;;;N;;;;;-1F0D5;PLAYING CARD FIVE OF CLUBS;So;0;ON;;;;;N;;;;;-1F0D6;PLAYING CARD SIX OF CLUBS;So;0;ON;;;;;N;;;;;-1F0D7;PLAYING CARD SEVEN OF CLUBS;So;0;ON;;;;;N;;;;;-1F0D8;PLAYING CARD EIGHT OF CLUBS;So;0;ON;;;;;N;;;;;-1F0D9;PLAYING CARD NINE OF CLUBS;So;0;ON;;;;;N;;;;;-1F0DA;PLAYING CARD TEN OF CLUBS;So;0;ON;;;;;N;;;;;-1F0DB;PLAYING CARD JACK OF CLUBS;So;0;ON;;;;;N;;;;;-1F0DC;PLAYING CARD KNIGHT OF CLUBS;So;0;ON;;;;;N;;;;;-1F0DD;PLAYING CARD QUEEN OF CLUBS;So;0;ON;;;;;N;;;;;-1F0DE;PLAYING CARD KING OF CLUBS;So;0;ON;;;;;N;;;;;-1F0DF;PLAYING CARD WHITE JOKER;So;0;ON;;;;;N;;;;;-1F0E0;PLAYING CARD FOOL;So;0;ON;;;;;N;;;;;-1F0E1;PLAYING CARD TRUMP-1;So;0;ON;;;;;N;;;;;-1F0E2;PLAYING CARD TRUMP-2;So;0;ON;;;;;N;;;;;-1F0E3;PLAYING CARD TRUMP-3;So;0;ON;;;;;N;;;;;-1F0E4;PLAYING CARD TRUMP-4;So;0;ON;;;;;N;;;;;-1F0E5;PLAYING CARD TRUMP-5;So;0;ON;;;;;N;;;;;-1F0E6;PLAYING CARD TRUMP-6;So;0;ON;;;;;N;;;;;-1F0E7;PLAYING CARD TRUMP-7;So;0;ON;;;;;N;;;;;-1F0E8;PLAYING CARD TRUMP-8;So;0;ON;;;;;N;;;;;-1F0E9;PLAYING CARD TRUMP-9;So;0;ON;;;;;N;;;;;-1F0EA;PLAYING CARD TRUMP-10;So;0;ON;;;;;N;;;;;-1F0EB;PLAYING CARD TRUMP-11;So;0;ON;;;;;N;;;;;-1F0EC;PLAYING CARD TRUMP-12;So;0;ON;;;;;N;;;;;-1F0ED;PLAYING CARD TRUMP-13;So;0;ON;;;;;N;;;;;-1F0EE;PLAYING CARD TRUMP-14;So;0;ON;;;;;N;;;;;-1F0EF;PLAYING CARD TRUMP-15;So;0;ON;;;;;N;;;;;-1F0F0;PLAYING CARD TRUMP-16;So;0;ON;;;;;N;;;;;-1F0F1;PLAYING CARD TRUMP-17;So;0;ON;;;;;N;;;;;-1F0F2;PLAYING CARD TRUMP-18;So;0;ON;;;;;N;;;;;-1F0F3;PLAYING CARD TRUMP-19;So;0;ON;;;;;N;;;;;-1F0F4;PLAYING CARD TRUMP-20;So;0;ON;;;;;N;;;;;-1F0F5;PLAYING CARD TRUMP-21;So;0;ON;;;;;N;;;;;-1F100;DIGIT ZERO FULL STOP;No;0;EN;<compat> 0030 002E;;0;0;N;;;;;-1F101;DIGIT ZERO COMMA;No;0;EN;<compat> 0030 002C;;0;0;N;;;;;-1F102;DIGIT ONE COMMA;No;0;EN;<compat> 0031 002C;;1;1;N;;;;;-1F103;DIGIT TWO COMMA;No;0;EN;<compat> 0032 002C;;2;2;N;;;;;-1F104;DIGIT THREE COMMA;No;0;EN;<compat> 0033 002C;;3;3;N;;;;;-1F105;DIGIT FOUR COMMA;No;0;EN;<compat> 0034 002C;;4;4;N;;;;;-1F106;DIGIT FIVE COMMA;No;0;EN;<compat> 0035 002C;;5;5;N;;;;;-1F107;DIGIT SIX COMMA;No;0;EN;<compat> 0036 002C;;6;6;N;;;;;-1F108;DIGIT SEVEN COMMA;No;0;EN;<compat> 0037 002C;;7;7;N;;;;;-1F109;DIGIT EIGHT COMMA;No;0;EN;<compat> 0038 002C;;8;8;N;;;;;-1F10A;DIGIT NINE COMMA;No;0;EN;<compat> 0039 002C;;9;9;N;;;;;-1F10B;DINGBAT CIRCLED SANS-SERIF DIGIT ZERO;No;0;ON;;;;0;N;;;;;-1F10C;DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ZERO;No;0;ON;;;;0;N;;;;;-1F110;PARENTHESIZED LATIN CAPITAL LETTER A;So;0;L;<compat> 0028 0041 0029;;;;N;;;;;-1F111;PARENTHESIZED LATIN CAPITAL LETTER B;So;0;L;<compat> 0028 0042 0029;;;;N;;;;;-1F112;PARENTHESIZED LATIN CAPITAL LETTER C;So;0;L;<compat> 0028 0043 0029;;;;N;;;;;-1F113;PARENTHESIZED LATIN CAPITAL LETTER D;So;0;L;<compat> 0028 0044 0029;;;;N;;;;;-1F114;PARENTHESIZED LATIN CAPITAL LETTER E;So;0;L;<compat> 0028 0045 0029;;;;N;;;;;-1F115;PARENTHESIZED LATIN CAPITAL LETTER F;So;0;L;<compat> 0028 0046 0029;;;;N;;;;;-1F116;PARENTHESIZED LATIN CAPITAL LETTER G;So;0;L;<compat> 0028 0047 0029;;;;N;;;;;-1F117;PARENTHESIZED LATIN CAPITAL LETTER H;So;0;L;<compat> 0028 0048 0029;;;;N;;;;;-1F118;PARENTHESIZED LATIN CAPITAL LETTER I;So;0;L;<compat> 0028 0049 0029;;;;N;;;;;-1F119;PARENTHESIZED LATIN CAPITAL LETTER J;So;0;L;<compat> 0028 004A 0029;;;;N;;;;;-1F11A;PARENTHESIZED LATIN CAPITAL LETTER K;So;0;L;<compat> 0028 004B 0029;;;;N;;;;;-1F11B;PARENTHESIZED LATIN CAPITAL LETTER L;So;0;L;<compat> 0028 004C 0029;;;;N;;;;;-1F11C;PARENTHESIZED LATIN CAPITAL LETTER M;So;0;L;<compat> 0028 004D 0029;;;;N;;;;;-1F11D;PARENTHESIZED LATIN CAPITAL LETTER N;So;0;L;<compat> 0028 004E 0029;;;;N;;;;;-1F11E;PARENTHESIZED LATIN CAPITAL LETTER O;So;0;L;<compat> 0028 004F 0029;;;;N;;;;;-1F11F;PARENTHESIZED LATIN CAPITAL LETTER P;So;0;L;<compat> 0028 0050 0029;;;;N;;;;;-1F120;PARENTHESIZED LATIN CAPITAL LETTER Q;So;0;L;<compat> 0028 0051 0029;;;;N;;;;;-1F121;PARENTHESIZED LATIN CAPITAL LETTER R;So;0;L;<compat> 0028 0052 0029;;;;N;;;;;-1F122;PARENTHESIZED LATIN CAPITAL LETTER S;So;0;L;<compat> 0028 0053 0029;;;;N;;;;;-1F123;PARENTHESIZED LATIN CAPITAL LETTER T;So;0;L;<compat> 0028 0054 0029;;;;N;;;;;-1F124;PARENTHESIZED LATIN CAPITAL LETTER U;So;0;L;<compat> 0028 0055 0029;;;;N;;;;;-1F125;PARENTHESIZED LATIN CAPITAL LETTER V;So;0;L;<compat> 0028 0056 0029;;;;N;;;;;-1F126;PARENTHESIZED LATIN CAPITAL LETTER W;So;0;L;<compat> 0028 0057 0029;;;;N;;;;;-1F127;PARENTHESIZED LATIN CAPITAL LETTER X;So;0;L;<compat> 0028 0058 0029;;;;N;;;;;-1F128;PARENTHESIZED LATIN CAPITAL LETTER Y;So;0;L;<compat> 0028 0059 0029;;;;N;;;;;-1F129;PARENTHESIZED LATIN CAPITAL LETTER Z;So;0;L;<compat> 0028 005A 0029;;;;N;;;;;-1F12A;TORTOISE SHELL BRACKETED LATIN CAPITAL LETTER S;So;0;L;<compat> 3014 0053 3015;;;;N;;;;;-1F12B;CIRCLED ITALIC LATIN CAPITAL LETTER C;So;0;L;<circle> 0043;;;;N;;;;;-1F12C;CIRCLED ITALIC LATIN CAPITAL LETTER R;So;0;L;<circle> 0052;;;;N;;;;;-1F12D;CIRCLED CD;So;0;L;<circle> 0043 0044;;;;N;;;;;-1F12E;CIRCLED WZ;So;0;L;<circle> 0057 005A;;;;N;;;;;-1F130;SQUARED LATIN CAPITAL LETTER A;So;0;L;<square> 0041;;;;N;;;;;-1F131;SQUARED LATIN CAPITAL LETTER B;So;0;L;<square> 0042;;;;N;;;;;-1F132;SQUARED LATIN CAPITAL LETTER C;So;0;L;<square> 0043;;;;N;;;;;-1F133;SQUARED LATIN CAPITAL LETTER D;So;0;L;<square> 0044;;;;N;;;;;-1F134;SQUARED LATIN CAPITAL LETTER E;So;0;L;<square> 0045;;;;N;;;;;-1F135;SQUARED LATIN CAPITAL LETTER F;So;0;L;<square> 0046;;;;N;;;;;-1F136;SQUARED LATIN CAPITAL LETTER G;So;0;L;<square> 0047;;;;N;;;;;-1F137;SQUARED LATIN CAPITAL LETTER H;So;0;L;<square> 0048;;;;N;;;;;-1F138;SQUARED LATIN CAPITAL LETTER I;So;0;L;<square> 0049;;;;N;;;;;-1F139;SQUARED LATIN CAPITAL LETTER J;So;0;L;<square> 004A;;;;N;;;;;-1F13A;SQUARED LATIN CAPITAL LETTER K;So;0;L;<square> 004B;;;;N;;;;;-1F13B;SQUARED LATIN CAPITAL LETTER L;So;0;L;<square> 004C;;;;N;;;;;-1F13C;SQUARED LATIN CAPITAL LETTER M;So;0;L;<square> 004D;;;;N;;;;;-1F13D;SQUARED LATIN CAPITAL LETTER N;So;0;L;<square> 004E;;;;N;;;;;-1F13E;SQUARED LATIN CAPITAL LETTER O;So;0;L;<square> 004F;;;;N;;;;;-1F13F;SQUARED LATIN CAPITAL LETTER P;So;0;L;<square> 0050;;;;N;;;;;-1F140;SQUARED LATIN CAPITAL LETTER Q;So;0;L;<square> 0051;;;;N;;;;;-1F141;SQUARED LATIN CAPITAL LETTER R;So;0;L;<square> 0052;;;;N;;;;;-1F142;SQUARED LATIN CAPITAL LETTER S;So;0;L;<square> 0053;;;;N;;;;;-1F143;SQUARED LATIN CAPITAL LETTER T;So;0;L;<square> 0054;;;;N;;;;;-1F144;SQUARED LATIN CAPITAL LETTER U;So;0;L;<square> 0055;;;;N;;;;;-1F145;SQUARED LATIN CAPITAL LETTER V;So;0;L;<square> 0056;;;;N;;;;;-1F146;SQUARED LATIN CAPITAL LETTER W;So;0;L;<square> 0057;;;;N;;;;;-1F147;SQUARED LATIN CAPITAL LETTER X;So;0;L;<square> 0058;;;;N;;;;;-1F148;SQUARED LATIN CAPITAL LETTER Y;So;0;L;<square> 0059;;;;N;;;;;-1F149;SQUARED LATIN CAPITAL LETTER Z;So;0;L;<square> 005A;;;;N;;;;;-1F14A;SQUARED HV;So;0;L;<square> 0048 0056;;;;N;;;;;-1F14B;SQUARED MV;So;0;L;<square> 004D 0056;;;;N;;;;;-1F14C;SQUARED SD;So;0;L;<square> 0053 0044;;;;N;;;;;-1F14D;SQUARED SS;So;0;L;<square> 0053 0053;;;;N;;;;;-1F14E;SQUARED PPV;So;0;L;<square> 0050 0050 0056;;;;N;;;;;-1F14F;SQUARED WC;So;0;L;<square> 0057 0043;;;;N;;;;;-1F150;NEGATIVE CIRCLED LATIN CAPITAL LETTER A;So;0;L;;;;;N;;;;;-1F151;NEGATIVE CIRCLED LATIN CAPITAL LETTER B;So;0;L;;;;;N;;;;;-1F152;NEGATIVE CIRCLED LATIN CAPITAL LETTER C;So;0;L;;;;;N;;;;;-1F153;NEGATIVE CIRCLED LATIN CAPITAL LETTER D;So;0;L;;;;;N;;;;;-1F154;NEGATIVE CIRCLED LATIN CAPITAL LETTER E;So;0;L;;;;;N;;;;;-1F155;NEGATIVE CIRCLED LATIN CAPITAL LETTER F;So;0;L;;;;;N;;;;;-1F156;NEGATIVE CIRCLED LATIN CAPITAL LETTER G;So;0;L;;;;;N;;;;;-1F157;NEGATIVE CIRCLED LATIN CAPITAL LETTER H;So;0;L;;;;;N;;;;;-1F158;NEGATIVE CIRCLED LATIN CAPITAL LETTER I;So;0;L;;;;;N;;;;;-1F159;NEGATIVE CIRCLED LATIN CAPITAL LETTER J;So;0;L;;;;;N;;;;;-1F15A;NEGATIVE CIRCLED LATIN CAPITAL LETTER K;So;0;L;;;;;N;;;;;-1F15B;NEGATIVE CIRCLED LATIN CAPITAL LETTER L;So;0;L;;;;;N;;;;;-1F15C;NEGATIVE CIRCLED LATIN CAPITAL LETTER M;So;0;L;;;;;N;;;;;-1F15D;NEGATIVE CIRCLED LATIN CAPITAL LETTER N;So;0;L;;;;;N;;;;;-1F15E;NEGATIVE CIRCLED LATIN CAPITAL LETTER O;So;0;L;;;;;N;;;;;-1F15F;NEGATIVE CIRCLED LATIN CAPITAL LETTER P;So;0;L;;;;;N;;;;;-1F160;NEGATIVE CIRCLED LATIN CAPITAL LETTER Q;So;0;L;;;;;N;;;;;-1F161;NEGATIVE CIRCLED LATIN CAPITAL LETTER R;So;0;L;;;;;N;;;;;-1F162;NEGATIVE CIRCLED LATIN CAPITAL LETTER S;So;0;L;;;;;N;;;;;-1F163;NEGATIVE CIRCLED LATIN CAPITAL LETTER T;So;0;L;;;;;N;;;;;-1F164;NEGATIVE CIRCLED LATIN CAPITAL LETTER U;So;0;L;;;;;N;;;;;-1F165;NEGATIVE CIRCLED LATIN CAPITAL LETTER V;So;0;L;;;;;N;;;;;-1F166;NEGATIVE CIRCLED LATIN CAPITAL LETTER W;So;0;L;;;;;N;;;;;-1F167;NEGATIVE CIRCLED LATIN CAPITAL LETTER X;So;0;L;;;;;N;;;;;-1F168;NEGATIVE CIRCLED LATIN CAPITAL LETTER Y;So;0;L;;;;;N;;;;;-1F169;NEGATIVE CIRCLED LATIN CAPITAL LETTER Z;So;0;L;;;;;N;;;;;-1F16A;RAISED MC SIGN;So;0;ON;<super> 004D 0043;;;;N;;;;;-1F16B;RAISED MD SIGN;So;0;ON;<super> 004D 0044;;;;N;;;;;-1F170;NEGATIVE SQUARED LATIN CAPITAL LETTER A;So;0;L;;;;;N;;;;;-1F171;NEGATIVE SQUARED LATIN CAPITAL LETTER B;So;0;L;;;;;N;;;;;-1F172;NEGATIVE SQUARED LATIN CAPITAL LETTER C;So;0;L;;;;;N;;;;;-1F173;NEGATIVE SQUARED LATIN CAPITAL LETTER D;So;0;L;;;;;N;;;;;-1F174;NEGATIVE SQUARED LATIN CAPITAL LETTER E;So;0;L;;;;;N;;;;;-1F175;NEGATIVE SQUARED LATIN CAPITAL LETTER F;So;0;L;;;;;N;;;;;-1F176;NEGATIVE SQUARED LATIN CAPITAL LETTER G;So;0;L;;;;;N;;;;;-1F177;NEGATIVE SQUARED LATIN CAPITAL LETTER H;So;0;L;;;;;N;;;;;-1F178;NEGATIVE SQUARED LATIN CAPITAL LETTER I;So;0;L;;;;;N;;;;;-1F179;NEGATIVE SQUARED LATIN CAPITAL LETTER J;So;0;L;;;;;N;;;;;-1F17A;NEGATIVE SQUARED LATIN CAPITAL LETTER K;So;0;L;;;;;N;;;;;-1F17B;NEGATIVE SQUARED LATIN CAPITAL LETTER L;So;0;L;;;;;N;;;;;-1F17C;NEGATIVE SQUARED LATIN CAPITAL LETTER M;So;0;L;;;;;N;;;;;-1F17D;NEGATIVE SQUARED LATIN CAPITAL LETTER N;So;0;L;;;;;N;;;;;-1F17E;NEGATIVE SQUARED LATIN CAPITAL LETTER O;So;0;L;;;;;N;;;;;-1F17F;NEGATIVE SQUARED LATIN CAPITAL LETTER P;So;0;L;;;;;N;;;;;-1F180;NEGATIVE SQUARED LATIN CAPITAL LETTER Q;So;0;L;;;;;N;;;;;-1F181;NEGATIVE SQUARED LATIN CAPITAL LETTER R;So;0;L;;;;;N;;;;;-1F182;NEGATIVE SQUARED LATIN CAPITAL LETTER S;So;0;L;;;;;N;;;;;-1F183;NEGATIVE SQUARED LATIN CAPITAL LETTER T;So;0;L;;;;;N;;;;;-1F184;NEGATIVE SQUARED LATIN CAPITAL LETTER U;So;0;L;;;;;N;;;;;-1F185;NEGATIVE SQUARED LATIN CAPITAL LETTER V;So;0;L;;;;;N;;;;;-1F186;NEGATIVE SQUARED LATIN CAPITAL LETTER W;So;0;L;;;;;N;;;;;-1F187;NEGATIVE SQUARED LATIN CAPITAL LETTER X;So;0;L;;;;;N;;;;;-1F188;NEGATIVE SQUARED LATIN CAPITAL LETTER Y;So;0;L;;;;;N;;;;;-1F189;NEGATIVE SQUARED LATIN CAPITAL LETTER Z;So;0;L;;;;;N;;;;;-1F18A;CROSSED NEGATIVE SQUARED LATIN CAPITAL LETTER P;So;0;L;;;;;N;;;;;-1F18B;NEGATIVE SQUARED IC;So;0;L;;;;;N;;;;;-1F18C;NEGATIVE SQUARED PA;So;0;L;;;;;N;;;;;-1F18D;NEGATIVE SQUARED SA;So;0;L;;;;;N;;;;;-1F18E;NEGATIVE SQUARED AB;So;0;L;;;;;N;;;;;-1F18F;NEGATIVE SQUARED WC;So;0;L;;;;;N;;;;;-1F190;SQUARE DJ;So;0;L;<square> 0044 004A;;;;N;;;;;-1F191;SQUARED CL;So;0;L;;;;;N;;;;;-1F192;SQUARED COOL;So;0;L;;;;;N;;;;;-1F193;SQUARED FREE;So;0;L;;;;;N;;;;;-1F194;SQUARED ID;So;0;L;;;;;N;;;;;-1F195;SQUARED NEW;So;0;L;;;;;N;;;;;-1F196;SQUARED NG;So;0;L;;;;;N;;;;;-1F197;SQUARED OK;So;0;L;;;;;N;;;;;-1F198;SQUARED SOS;So;0;L;;;;;N;;;;;-1F199;SQUARED UP WITH EXCLAMATION MARK;So;0;L;;;;;N;;;;;-1F19A;SQUARED VS;So;0;L;;;;;N;;;;;-1F1E6;REGIONAL INDICATOR SYMBOL LETTER A;So;0;L;;;;;N;;;;;-1F1E7;REGIONAL INDICATOR SYMBOL LETTER B;So;0;L;;;;;N;;;;;-1F1E8;REGIONAL INDICATOR SYMBOL LETTER C;So;0;L;;;;;N;;;;;-1F1E9;REGIONAL INDICATOR SYMBOL LETTER D;So;0;L;;;;;N;;;;;-1F1EA;REGIONAL INDICATOR SYMBOL LETTER E;So;0;L;;;;;N;;;;;-1F1EB;REGIONAL INDICATOR SYMBOL LETTER F;So;0;L;;;;;N;;;;;-1F1EC;REGIONAL INDICATOR SYMBOL LETTER G;So;0;L;;;;;N;;;;;-1F1ED;REGIONAL INDICATOR SYMBOL LETTER H;So;0;L;;;;;N;;;;;-1F1EE;REGIONAL INDICATOR SYMBOL LETTER I;So;0;L;;;;;N;;;;;-1F1EF;REGIONAL INDICATOR SYMBOL LETTER J;So;0;L;;;;;N;;;;;-1F1F0;REGIONAL INDICATOR SYMBOL LETTER K;So;0;L;;;;;N;;;;;-1F1F1;REGIONAL INDICATOR SYMBOL LETTER L;So;0;L;;;;;N;;;;;-1F1F2;REGIONAL INDICATOR SYMBOL LETTER M;So;0;L;;;;;N;;;;;-1F1F3;REGIONAL INDICATOR SYMBOL LETTER N;So;0;L;;;;;N;;;;;-1F1F4;REGIONAL INDICATOR SYMBOL LETTER O;So;0;L;;;;;N;;;;;-1F1F5;REGIONAL INDICATOR SYMBOL LETTER P;So;0;L;;;;;N;;;;;-1F1F6;REGIONAL INDICATOR SYMBOL LETTER Q;So;0;L;;;;;N;;;;;-1F1F7;REGIONAL INDICATOR SYMBOL LETTER R;So;0;L;;;;;N;;;;;-1F1F8;REGIONAL INDICATOR SYMBOL LETTER S;So;0;L;;;;;N;;;;;-1F1F9;REGIONAL INDICATOR SYMBOL LETTER T;So;0;L;;;;;N;;;;;-1F1FA;REGIONAL INDICATOR SYMBOL LETTER U;So;0;L;;;;;N;;;;;-1F1FB;REGIONAL INDICATOR SYMBOL LETTER V;So;0;L;;;;;N;;;;;-1F1FC;REGIONAL INDICATOR SYMBOL LETTER W;So;0;L;;;;;N;;;;;-1F1FD;REGIONAL INDICATOR SYMBOL LETTER X;So;0;L;;;;;N;;;;;-1F1FE;REGIONAL INDICATOR SYMBOL LETTER Y;So;0;L;;;;;N;;;;;-1F1FF;REGIONAL INDICATOR SYMBOL LETTER Z;So;0;L;;;;;N;;;;;-1F200;SQUARE HIRAGANA HOKA;So;0;L;<square> 307B 304B;;;;N;;;;;-1F201;SQUARED KATAKANA KOKO;So;0;L;<square> 30B3 30B3;;;;N;;;;;-1F202;SQUARED KATAKANA SA;So;0;L;<square> 30B5;;;;N;;;;;-1F210;SQUARED CJK UNIFIED IDEOGRAPH-624B;So;0;L;<square> 624B;;;;N;;;;;-1F211;SQUARED CJK UNIFIED IDEOGRAPH-5B57;So;0;L;<square> 5B57;;;;N;;;;;-1F212;SQUARED CJK UNIFIED IDEOGRAPH-53CC;So;0;L;<square> 53CC;;;;N;;;;;-1F213;SQUARED KATAKANA DE;So;0;L;<square> 30C7;;;;N;;;;;-1F214;SQUARED CJK UNIFIED IDEOGRAPH-4E8C;So;0;L;<square> 4E8C;;;;N;;;;;-1F215;SQUARED CJK UNIFIED IDEOGRAPH-591A;So;0;L;<square> 591A;;;;N;;;;;-1F216;SQUARED CJK UNIFIED IDEOGRAPH-89E3;So;0;L;<square> 89E3;;;;N;;;;;-1F217;SQUARED CJK UNIFIED IDEOGRAPH-5929;So;0;L;<square> 5929;;;;N;;;;;-1F218;SQUARED CJK UNIFIED IDEOGRAPH-4EA4;So;0;L;<square> 4EA4;;;;N;;;;;-1F219;SQUARED CJK UNIFIED IDEOGRAPH-6620;So;0;L;<square> 6620;;;;N;;;;;-1F21A;SQUARED CJK UNIFIED IDEOGRAPH-7121;So;0;L;<square> 7121;;;;N;;;;;-1F21B;SQUARED CJK UNIFIED IDEOGRAPH-6599;So;0;L;<square> 6599;;;;N;;;;;-1F21C;SQUARED CJK UNIFIED IDEOGRAPH-524D;So;0;L;<square> 524D;;;;N;;;;;-1F21D;SQUARED CJK UNIFIED IDEOGRAPH-5F8C;So;0;L;<square> 5F8C;;;;N;;;;;-1F21E;SQUARED CJK UNIFIED IDEOGRAPH-518D;So;0;L;<square> 518D;;;;N;;;;;-1F21F;SQUARED CJK UNIFIED IDEOGRAPH-65B0;So;0;L;<square> 65B0;;;;N;;;;;-1F220;SQUARED CJK UNIFIED IDEOGRAPH-521D;So;0;L;<square> 521D;;;;N;;;;;-1F221;SQUARED CJK UNIFIED IDEOGRAPH-7D42;So;0;L;<square> 7D42;;;;N;;;;;-1F222;SQUARED CJK UNIFIED IDEOGRAPH-751F;So;0;L;<square> 751F;;;;N;;;;;-1F223;SQUARED CJK UNIFIED IDEOGRAPH-8CA9;So;0;L;<square> 8CA9;;;;N;;;;;-1F224;SQUARED CJK UNIFIED IDEOGRAPH-58F0;So;0;L;<square> 58F0;;;;N;;;;;-1F225;SQUARED CJK UNIFIED IDEOGRAPH-5439;So;0;L;<square> 5439;;;;N;;;;;-1F226;SQUARED CJK UNIFIED IDEOGRAPH-6F14;So;0;L;<square> 6F14;;;;N;;;;;-1F227;SQUARED CJK UNIFIED IDEOGRAPH-6295;So;0;L;<square> 6295;;;;N;;;;;-1F228;SQUARED CJK UNIFIED IDEOGRAPH-6355;So;0;L;<square> 6355;;;;N;;;;;-1F229;SQUARED CJK UNIFIED IDEOGRAPH-4E00;So;0;L;<square> 4E00;;;;N;;;;;-1F22A;SQUARED CJK UNIFIED IDEOGRAPH-4E09;So;0;L;<square> 4E09;;;;N;;;;;-1F22B;SQUARED CJK UNIFIED IDEOGRAPH-904A;So;0;L;<square> 904A;;;;N;;;;;-1F22C;SQUARED CJK UNIFIED IDEOGRAPH-5DE6;So;0;L;<square> 5DE6;;;;N;;;;;-1F22D;SQUARED CJK UNIFIED IDEOGRAPH-4E2D;So;0;L;<square> 4E2D;;;;N;;;;;-1F22E;SQUARED CJK UNIFIED IDEOGRAPH-53F3;So;0;L;<square> 53F3;;;;N;;;;;-1F22F;SQUARED CJK UNIFIED IDEOGRAPH-6307;So;0;L;<square> 6307;;;;N;;;;;-1F230;SQUARED CJK UNIFIED IDEOGRAPH-8D70;So;0;L;<square> 8D70;;;;N;;;;;-1F231;SQUARED CJK UNIFIED IDEOGRAPH-6253;So;0;L;<square> 6253;;;;N;;;;;-1F232;SQUARED CJK UNIFIED IDEOGRAPH-7981;So;0;L;<square> 7981;;;;N;;;;;-1F233;SQUARED CJK UNIFIED IDEOGRAPH-7A7A;So;0;L;<square> 7A7A;;;;N;;;;;-1F234;SQUARED CJK UNIFIED IDEOGRAPH-5408;So;0;L;<square> 5408;;;;N;;;;;-1F235;SQUARED CJK UNIFIED IDEOGRAPH-6E80;So;0;L;<square> 6E80;;;;N;;;;;-1F236;SQUARED CJK UNIFIED IDEOGRAPH-6709;So;0;L;<square> 6709;;;;N;;;;;-1F237;SQUARED CJK UNIFIED IDEOGRAPH-6708;So;0;L;<square> 6708;;;;N;;;;;-1F238;SQUARED CJK UNIFIED IDEOGRAPH-7533;So;0;L;<square> 7533;;;;N;;;;;-1F239;SQUARED CJK UNIFIED IDEOGRAPH-5272;So;0;L;<square> 5272;;;;N;;;;;-1F23A;SQUARED CJK UNIFIED IDEOGRAPH-55B6;So;0;L;<square> 55B6;;;;N;;;;;-1F240;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-672C;So;0;L;<compat> 3014 672C 3015;;;;N;;;;;-1F241;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-4E09;So;0;L;<compat> 3014 4E09 3015;;;;N;;;;;-1F242;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-4E8C;So;0;L;<compat> 3014 4E8C 3015;;;;N;;;;;-1F243;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-5B89;So;0;L;<compat> 3014 5B89 3015;;;;N;;;;;-1F244;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-70B9;So;0;L;<compat> 3014 70B9 3015;;;;N;;;;;-1F245;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-6253;So;0;L;<compat> 3014 6253 3015;;;;N;;;;;-1F246;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-76D7;So;0;L;<compat> 3014 76D7 3015;;;;N;;;;;-1F247;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-52DD;So;0;L;<compat> 3014 52DD 3015;;;;N;;;;;-1F248;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-6557;So;0;L;<compat> 3014 6557 3015;;;;N;;;;;-1F250;CIRCLED IDEOGRAPH ADVANTAGE;So;0;L;<circle> 5F97;;;;N;;;;;-1F251;CIRCLED IDEOGRAPH ACCEPT;So;0;L;<circle> 53EF;;;;N;;;;;-1F300;CYCLONE;So;0;ON;;;;;N;;;;;-1F301;FOGGY;So;0;ON;;;;;N;;;;;-1F302;CLOSED UMBRELLA;So;0;ON;;;;;N;;;;;-1F303;NIGHT WITH STARS;So;0;ON;;;;;N;;;;;-1F304;SUNRISE OVER MOUNTAINS;So;0;ON;;;;;N;;;;;-1F305;SUNRISE;So;0;ON;;;;;N;;;;;-1F306;CITYSCAPE AT DUSK;So;0;ON;;;;;N;;;;;-1F307;SUNSET OVER BUILDINGS;So;0;ON;;;;;N;;;;;-1F308;RAINBOW;So;0;ON;;;;;N;;;;;-1F309;BRIDGE AT NIGHT;So;0;ON;;;;;N;;;;;-1F30A;WATER WAVE;So;0;ON;;;;;N;;;;;-1F30B;VOLCANO;So;0;ON;;;;;N;;;;;-1F30C;MILKY WAY;So;0;ON;;;;;N;;;;;-1F30D;EARTH GLOBE EUROPE-AFRICA;So;0;ON;;;;;N;;;;;-1F30E;EARTH GLOBE AMERICAS;So;0;ON;;;;;N;;;;;-1F30F;EARTH GLOBE ASIA-AUSTRALIA;So;0;ON;;;;;N;;;;;-1F310;GLOBE WITH MERIDIANS;So;0;ON;;;;;N;;;;;-1F311;NEW MOON SYMBOL;So;0;ON;;;;;N;;;;;-1F312;WAXING CRESCENT MOON SYMBOL;So;0;ON;;;;;N;;;;;-1F313;FIRST QUARTER MOON SYMBOL;So;0;ON;;;;;N;;;;;-1F314;WAXING GIBBOUS MOON SYMBOL;So;0;ON;;;;;N;;;;;-1F315;FULL MOON SYMBOL;So;0;ON;;;;;N;;;;;-1F316;WANING GIBBOUS MOON SYMBOL;So;0;ON;;;;;N;;;;;-1F317;LAST QUARTER MOON SYMBOL;So;0;ON;;;;;N;;;;;-1F318;WANING CRESCENT MOON SYMBOL;So;0;ON;;;;;N;;;;;-1F319;CRESCENT MOON;So;0;ON;;;;;N;;;;;-1F31A;NEW MOON WITH FACE;So;0;ON;;;;;N;;;;;-1F31B;FIRST QUARTER MOON WITH FACE;So;0;ON;;;;;N;;;;;-1F31C;LAST QUARTER MOON WITH FACE;So;0;ON;;;;;N;;;;;-1F31D;FULL MOON WITH FACE;So;0;ON;;;;;N;;;;;-1F31E;SUN WITH FACE;So;0;ON;;;;;N;;;;;-1F31F;GLOWING STAR;So;0;ON;;;;;N;;;;;-1F320;SHOOTING STAR;So;0;ON;;;;;N;;;;;-1F321;THERMOMETER;So;0;ON;;;;;N;;;;;-1F322;BLACK DROPLET;So;0;ON;;;;;N;;;;;-1F323;WHITE SUN;So;0;ON;;;;;N;;;;;-1F324;WHITE SUN WITH SMALL CLOUD;So;0;ON;;;;;N;;;;;-1F325;WHITE SUN BEHIND CLOUD;So;0;ON;;;;;N;;;;;-1F326;WHITE SUN BEHIND CLOUD WITH RAIN;So;0;ON;;;;;N;;;;;-1F327;CLOUD WITH RAIN;So;0;ON;;;;;N;;;;;-1F328;CLOUD WITH SNOW;So;0;ON;;;;;N;;;;;-1F329;CLOUD WITH LIGHTNING;So;0;ON;;;;;N;;;;;-1F32A;CLOUD WITH TORNADO;So;0;ON;;;;;N;;;;;-1F32B;FOG;So;0;ON;;;;;N;;;;;-1F32C;WIND BLOWING FACE;So;0;ON;;;;;N;;;;;-1F330;CHESTNUT;So;0;ON;;;;;N;;;;;-1F331;SEEDLING;So;0;ON;;;;;N;;;;;-1F332;EVERGREEN TREE;So;0;ON;;;;;N;;;;;-1F333;DECIDUOUS TREE;So;0;ON;;;;;N;;;;;-1F334;PALM TREE;So;0;ON;;;;;N;;;;;-1F335;CACTUS;So;0;ON;;;;;N;;;;;-1F336;HOT PEPPER;So;0;ON;;;;;N;;;;;-1F337;TULIP;So;0;ON;;;;;N;;;;;-1F338;CHERRY BLOSSOM;So;0;ON;;;;;N;;;;;-1F339;ROSE;So;0;ON;;;;;N;;;;;-1F33A;HIBISCUS;So;0;ON;;;;;N;;;;;-1F33B;SUNFLOWER;So;0;ON;;;;;N;;;;;-1F33C;BLOSSOM;So;0;ON;;;;;N;;;;;-1F33D;EAR OF MAIZE;So;0;ON;;;;;N;;;;;-1F33E;EAR OF RICE;So;0;ON;;;;;N;;;;;-1F33F;HERB;So;0;ON;;;;;N;;;;;-1F340;FOUR LEAF CLOVER;So;0;ON;;;;;N;;;;;-1F341;MAPLE LEAF;So;0;ON;;;;;N;;;;;-1F342;FALLEN LEAF;So;0;ON;;;;;N;;;;;-1F343;LEAF FLUTTERING IN WIND;So;0;ON;;;;;N;;;;;-1F344;MUSHROOM;So;0;ON;;;;;N;;;;;-1F345;TOMATO;So;0;ON;;;;;N;;;;;-1F346;AUBERGINE;So;0;ON;;;;;N;;;;;-1F347;GRAPES;So;0;ON;;;;;N;;;;;-1F348;MELON;So;0;ON;;;;;N;;;;;-1F349;WATERMELON;So;0;ON;;;;;N;;;;;-1F34A;TANGERINE;So;0;ON;;;;;N;;;;;-1F34B;LEMON;So;0;ON;;;;;N;;;;;-1F34C;BANANA;So;0;ON;;;;;N;;;;;-1F34D;PINEAPPLE;So;0;ON;;;;;N;;;;;-1F34E;RED APPLE;So;0;ON;;;;;N;;;;;-1F34F;GREEN APPLE;So;0;ON;;;;;N;;;;;-1F350;PEAR;So;0;ON;;;;;N;;;;;-1F351;PEACH;So;0;ON;;;;;N;;;;;-1F352;CHERRIES;So;0;ON;;;;;N;;;;;-1F353;STRAWBERRY;So;0;ON;;;;;N;;;;;-1F354;HAMBURGER;So;0;ON;;;;;N;;;;;-1F355;SLICE OF PIZZA;So;0;ON;;;;;N;;;;;-1F356;MEAT ON BONE;So;0;ON;;;;;N;;;;;-1F357;POULTRY LEG;So;0;ON;;;;;N;;;;;-1F358;RICE CRACKER;So;0;ON;;;;;N;;;;;-1F359;RICE BALL;So;0;ON;;;;;N;;;;;-1F35A;COOKED RICE;So;0;ON;;;;;N;;;;;-1F35B;CURRY AND RICE;So;0;ON;;;;;N;;;;;-1F35C;STEAMING BOWL;So;0;ON;;;;;N;;;;;-1F35D;SPAGHETTI;So;0;ON;;;;;N;;;;;-1F35E;BREAD;So;0;ON;;;;;N;;;;;-1F35F;FRENCH FRIES;So;0;ON;;;;;N;;;;;-1F360;ROASTED SWEET POTATO;So;0;ON;;;;;N;;;;;-1F361;DANGO;So;0;ON;;;;;N;;;;;-1F362;ODEN;So;0;ON;;;;;N;;;;;-1F363;SUSHI;So;0;ON;;;;;N;;;;;-1F364;FRIED SHRIMP;So;0;ON;;;;;N;;;;;-1F365;FISH CAKE WITH SWIRL DESIGN;So;0;ON;;;;;N;;;;;-1F366;SOFT ICE CREAM;So;0;ON;;;;;N;;;;;-1F367;SHAVED ICE;So;0;ON;;;;;N;;;;;-1F368;ICE CREAM;So;0;ON;;;;;N;;;;;-1F369;DOUGHNUT;So;0;ON;;;;;N;;;;;-1F36A;COOKIE;So;0;ON;;;;;N;;;;;-1F36B;CHOCOLATE BAR;So;0;ON;;;;;N;;;;;-1F36C;CANDY;So;0;ON;;;;;N;;;;;-1F36D;LOLLIPOP;So;0;ON;;;;;N;;;;;-1F36E;CUSTARD;So;0;ON;;;;;N;;;;;-1F36F;HONEY POT;So;0;ON;;;;;N;;;;;-1F370;SHORTCAKE;So;0;ON;;;;;N;;;;;-1F371;BENTO BOX;So;0;ON;;;;;N;;;;;-1F372;POT OF FOOD;So;0;ON;;;;;N;;;;;-1F373;COOKING;So;0;ON;;;;;N;;;;;-1F374;FORK AND KNIFE;So;0;ON;;;;;N;;;;;-1F375;TEACUP WITHOUT HANDLE;So;0;ON;;;;;N;;;;;-1F376;SAKE BOTTLE AND CUP;So;0;ON;;;;;N;;;;;-1F377;WINE GLASS;So;0;ON;;;;;N;;;;;-1F378;COCKTAIL GLASS;So;0;ON;;;;;N;;;;;-1F379;TROPICAL DRINK;So;0;ON;;;;;N;;;;;-1F37A;BEER MUG;So;0;ON;;;;;N;;;;;-1F37B;CLINKING BEER MUGS;So;0;ON;;;;;N;;;;;-1F37C;BABY BOTTLE;So;0;ON;;;;;N;;;;;-1F37D;FORK AND KNIFE WITH PLATE;So;0;ON;;;;;N;;;;;-1F380;RIBBON;So;0;ON;;;;;N;;;;;-1F381;WRAPPED PRESENT;So;0;ON;;;;;N;;;;;-1F382;BIRTHDAY CAKE;So;0;ON;;;;;N;;;;;-1F383;JACK-O-LANTERN;So;0;ON;;;;;N;;;;;-1F384;CHRISTMAS TREE;So;0;ON;;;;;N;;;;;-1F385;FATHER CHRISTMAS;So;0;ON;;;;;N;;;;;-1F386;FIREWORKS;So;0;ON;;;;;N;;;;;-1F387;FIREWORK SPARKLER;So;0;ON;;;;;N;;;;;-1F388;BALLOON;So;0;ON;;;;;N;;;;;-1F389;PARTY POPPER;So;0;ON;;;;;N;;;;;-1F38A;CONFETTI BALL;So;0;ON;;;;;N;;;;;-1F38B;TANABATA TREE;So;0;ON;;;;;N;;;;;-1F38C;CROSSED FLAGS;So;0;ON;;;;;N;;;;;-1F38D;PINE DECORATION;So;0;ON;;;;;N;;;;;-1F38E;JAPANESE DOLLS;So;0;ON;;;;;N;;;;;-1F38F;CARP STREAMER;So;0;ON;;;;;N;;;;;-1F390;WIND CHIME;So;0;ON;;;;;N;;;;;-1F391;MOON VIEWING CEREMONY;So;0;ON;;;;;N;;;;;-1F392;SCHOOL SATCHEL;So;0;ON;;;;;N;;;;;-1F393;GRADUATION CAP;So;0;ON;;;;;N;;;;;-1F394;HEART WITH TIP ON THE LEFT;So;0;ON;;;;;N;;;;;-1F395;BOUQUET OF FLOWERS;So;0;ON;;;;;N;;;;;-1F396;MILITARY MEDAL;So;0;ON;;;;;N;;;;;-1F397;REMINDER RIBBON;So;0;ON;;;;;N;;;;;-1F398;MUSICAL KEYBOARD WITH JACKS;So;0;ON;;;;;N;;;;;-1F399;STUDIO MICROPHONE;So;0;ON;;;;;N;;;;;-1F39A;LEVEL SLIDER;So;0;ON;;;;;N;;;;;-1F39B;CONTROL KNOBS;So;0;ON;;;;;N;;;;;-1F39C;BEAMED ASCENDING MUSICAL NOTES;So;0;ON;;;;;N;;;;;-1F39D;BEAMED DESCENDING MUSICAL NOTES;So;0;ON;;;;;N;;;;;-1F39E;FILM FRAMES;So;0;ON;;;;;N;;;;;-1F39F;ADMISSION TICKETS;So;0;ON;;;;;N;;;;;-1F3A0;CAROUSEL HORSE;So;0;ON;;;;;N;;;;;-1F3A1;FERRIS WHEEL;So;0;ON;;;;;N;;;;;-1F3A2;ROLLER COASTER;So;0;ON;;;;;N;;;;;-1F3A3;FISHING POLE AND FISH;So;0;ON;;;;;N;;;;;-1F3A4;MICROPHONE;So;0;ON;;;;;N;;;;;-1F3A5;MOVIE CAMERA;So;0;ON;;;;;N;;;;;-1F3A6;CINEMA;So;0;ON;;;;;N;;;;;-1F3A7;HEADPHONE;So;0;ON;;;;;N;;;;;-1F3A8;ARTIST PALETTE;So;0;ON;;;;;N;;;;;-1F3A9;TOP HAT;So;0;ON;;;;;N;;;;;-1F3AA;CIRCUS TENT;So;0;ON;;;;;N;;;;;-1F3AB;TICKET;So;0;ON;;;;;N;;;;;-1F3AC;CLAPPER BOARD;So;0;ON;;;;;N;;;;;-1F3AD;PERFORMING ARTS;So;0;ON;;;;;N;;;;;-1F3AE;VIDEO GAME;So;0;ON;;;;;N;;;;;-1F3AF;DIRECT HIT;So;0;ON;;;;;N;;;;;-1F3B0;SLOT MACHINE;So;0;ON;;;;;N;;;;;-1F3B1;BILLIARDS;So;0;ON;;;;;N;;;;;-1F3B2;GAME DIE;So;0;ON;;;;;N;;;;;-1F3B3;BOWLING;So;0;ON;;;;;N;;;;;-1F3B4;FLOWER PLAYING CARDS;So;0;ON;;;;;N;;;;;-1F3B5;MUSICAL NOTE;So;0;ON;;;;;N;;;;;-1F3B6;MULTIPLE MUSICAL NOTES;So;0;ON;;;;;N;;;;;-1F3B7;SAXOPHONE;So;0;ON;;;;;N;;;;;-1F3B8;GUITAR;So;0;ON;;;;;N;;;;;-1F3B9;MUSICAL KEYBOARD;So;0;ON;;;;;N;;;;;-1F3BA;TRUMPET;So;0;ON;;;;;N;;;;;-1F3BB;VIOLIN;So;0;ON;;;;;N;;;;;-1F3BC;MUSICAL SCORE;So;0;ON;;;;;N;;;;;-1F3BD;RUNNING SHIRT WITH SASH;So;0;ON;;;;;N;;;;;-1F3BE;TENNIS RACQUET AND BALL;So;0;ON;;;;;N;;;;;-1F3BF;SKI AND SKI BOOT;So;0;ON;;;;;N;;;;;-1F3C0;BASKETBALL AND HOOP;So;0;ON;;;;;N;;;;;-1F3C1;CHEQUERED FLAG;So;0;ON;;;;;N;;;;;-1F3C2;SNOWBOARDER;So;0;ON;;;;;N;;;;;-1F3C3;RUNNER;So;0;ON;;;;;N;;;;;-1F3C4;SURFER;So;0;ON;;;;;N;;;;;-1F3C5;SPORTS MEDAL;So;0;ON;;;;;N;;;;;-1F3C6;TROPHY;So;0;ON;;;;;N;;;;;-1F3C7;HORSE RACING;So;0;ON;;;;;N;;;;;-1F3C8;AMERICAN FOOTBALL;So;0;ON;;;;;N;;;;;-1F3C9;RUGBY FOOTBALL;So;0;ON;;;;;N;;;;;-1F3CA;SWIMMER;So;0;ON;;;;;N;;;;;-1F3CB;WEIGHT LIFTER;So;0;ON;;;;;N;;;;;-1F3CC;GOLFER;So;0;ON;;;;;N;;;;;-1F3CD;RACING MOTORCYCLE;So;0;ON;;;;;N;;;;;-1F3CE;RACING CAR;So;0;ON;;;;;N;;;;;-1F3D4;SNOW CAPPED MOUNTAIN;So;0;ON;;;;;N;;;;;-1F3D5;CAMPING;So;0;ON;;;;;N;;;;;-1F3D6;BEACH WITH UMBRELLA;So;0;ON;;;;;N;;;;;-1F3D7;BUILDING CONSTRUCTION;So;0;ON;;;;;N;;;;;-1F3D8;HOUSE BUILDINGS;So;0;ON;;;;;N;;;;;-1F3D9;CITYSCAPE;So;0;ON;;;;;N;;;;;-1F3DA;DERELICT HOUSE BUILDING;So;0;ON;;;;;N;;;;;-1F3DB;CLASSICAL BUILDING;So;0;ON;;;;;N;;;;;-1F3DC;DESERT;So;0;ON;;;;;N;;;;;-1F3DD;DESERT ISLAND;So;0;ON;;;;;N;;;;;-1F3DE;NATIONAL PARK;So;0;ON;;;;;N;;;;;-1F3DF;STADIUM;So;0;ON;;;;;N;;;;;-1F3E0;HOUSE BUILDING;So;0;ON;;;;;N;;;;;-1F3E1;HOUSE WITH GARDEN;So;0;ON;;;;;N;;;;;-1F3E2;OFFICE BUILDING;So;0;ON;;;;;N;;;;;-1F3E3;JAPANESE POST OFFICE;So;0;ON;;;;;N;;;;;-1F3E4;EUROPEAN POST OFFICE;So;0;ON;;;;;N;;;;;-1F3E5;HOSPITAL;So;0;ON;;;;;N;;;;;-1F3E6;BANK;So;0;ON;;;;;N;;;;;-1F3E7;AUTOMATED TELLER MACHINE;So;0;ON;;;;;N;;;;;-1F3E8;HOTEL;So;0;ON;;;;;N;;;;;-1F3E9;LOVE HOTEL;So;0;ON;;;;;N;;;;;-1F3EA;CONVENIENCE STORE;So;0;ON;;;;;N;;;;;-1F3EB;SCHOOL;So;0;ON;;;;;N;;;;;-1F3EC;DEPARTMENT STORE;So;0;ON;;;;;N;;;;;-1F3ED;FACTORY;So;0;ON;;;;;N;;;;;-1F3EE;IZAKAYA LANTERN;So;0;ON;;;;;N;;;;;-1F3EF;JAPANESE CASTLE;So;0;ON;;;;;N;;;;;-1F3F0;EUROPEAN CASTLE;So;0;ON;;;;;N;;;;;-1F3F1;WHITE PENNANT;So;0;ON;;;;;N;;;;;-1F3F2;BLACK PENNANT;So;0;ON;;;;;N;;;;;-1F3F3;WAVING WHITE FLAG;So;0;ON;;;;;N;;;;;-1F3F4;WAVING BLACK FLAG;So;0;ON;;;;;N;;;;;-1F3F5;ROSETTE;So;0;ON;;;;;N;;;;;-1F3F6;BLACK ROSETTE;So;0;ON;;;;;N;;;;;-1F3F7;LABEL;So;0;ON;;;;;N;;;;;-1F400;RAT;So;0;ON;;;;;N;;;;;-1F401;MOUSE;So;0;ON;;;;;N;;;;;-1F402;OX;So;0;ON;;;;;N;;;;;-1F403;WATER BUFFALO;So;0;ON;;;;;N;;;;;-1F404;COW;So;0;ON;;;;;N;;;;;-1F405;TIGER;So;0;ON;;;;;N;;;;;-1F406;LEOPARD;So;0;ON;;;;;N;;;;;-1F407;RABBIT;So;0;ON;;;;;N;;;;;-1F408;CAT;So;0;ON;;;;;N;;;;;-1F409;DRAGON;So;0;ON;;;;;N;;;;;-1F40A;CROCODILE;So;0;ON;;;;;N;;;;;-1F40B;WHALE;So;0;ON;;;;;N;;;;;-1F40C;SNAIL;So;0;ON;;;;;N;;;;;-1F40D;SNAKE;So;0;ON;;;;;N;;;;;-1F40E;HORSE;So;0;ON;;;;;N;;;;;-1F40F;RAM;So;0;ON;;;;;N;;;;;-1F410;GOAT;So;0;ON;;;;;N;;;;;-1F411;SHEEP;So;0;ON;;;;;N;;;;;-1F412;MONKEY;So;0;ON;;;;;N;;;;;-1F413;ROOSTER;So;0;ON;;;;;N;;;;;-1F414;CHICKEN;So;0;ON;;;;;N;;;;;-1F415;DOG;So;0;ON;;;;;N;;;;;-1F416;PIG;So;0;ON;;;;;N;;;;;-1F417;BOAR;So;0;ON;;;;;N;;;;;-1F418;ELEPHANT;So;0;ON;;;;;N;;;;;-1F419;OCTOPUS;So;0;ON;;;;;N;;;;;-1F41A;SPIRAL SHELL;So;0;ON;;;;;N;;;;;-1F41B;BUG;So;0;ON;;;;;N;;;;;-1F41C;ANT;So;0;ON;;;;;N;;;;;-1F41D;HONEYBEE;So;0;ON;;;;;N;;;;;-1F41E;LADY BEETLE;So;0;ON;;;;;N;;;;;-1F41F;FISH;So;0;ON;;;;;N;;;;;-1F420;TROPICAL FISH;So;0;ON;;;;;N;;;;;-1F421;BLOWFISH;So;0;ON;;;;;N;;;;;-1F422;TURTLE;So;0;ON;;;;;N;;;;;-1F423;HATCHING CHICK;So;0;ON;;;;;N;;;;;-1F424;BABY CHICK;So;0;ON;;;;;N;;;;;-1F425;FRONT-FACING BABY CHICK;So;0;ON;;;;;N;;;;;-1F426;BIRD;So;0;ON;;;;;N;;;;;-1F427;PENGUIN;So;0;ON;;;;;N;;;;;-1F428;KOALA;So;0;ON;;;;;N;;;;;-1F429;POODLE;So;0;ON;;;;;N;;;;;-1F42A;DROMEDARY CAMEL;So;0;ON;;;;;N;;;;;-1F42B;BACTRIAN CAMEL;So;0;ON;;;;;N;;;;;-1F42C;DOLPHIN;So;0;ON;;;;;N;;;;;-1F42D;MOUSE FACE;So;0;ON;;;;;N;;;;;-1F42E;COW FACE;So;0;ON;;;;;N;;;;;-1F42F;TIGER FACE;So;0;ON;;;;;N;;;;;-1F430;RABBIT FACE;So;0;ON;;;;;N;;;;;-1F431;CAT FACE;So;0;ON;;;;;N;;;;;-1F432;DRAGON FACE;So;0;ON;;;;;N;;;;;-1F433;SPOUTING WHALE;So;0;ON;;;;;N;;;;;-1F434;HORSE FACE;So;0;ON;;;;;N;;;;;-1F435;MONKEY FACE;So;0;ON;;;;;N;;;;;-1F436;DOG FACE;So;0;ON;;;;;N;;;;;-1F437;PIG FACE;So;0;ON;;;;;N;;;;;-1F438;FROG FACE;So;0;ON;;;;;N;;;;;-1F439;HAMSTER FACE;So;0;ON;;;;;N;;;;;-1F43A;WOLF FACE;So;0;ON;;;;;N;;;;;-1F43B;BEAR FACE;So;0;ON;;;;;N;;;;;-1F43C;PANDA FACE;So;0;ON;;;;;N;;;;;-1F43D;PIG NOSE;So;0;ON;;;;;N;;;;;-1F43E;PAW PRINTS;So;0;ON;;;;;N;;;;;-1F43F;CHIPMUNK;So;0;ON;;;;;N;;;;;-1F440;EYES;So;0;ON;;;;;N;;;;;-1F441;EYE;So;0;ON;;;;;N;;;;;-1F442;EAR;So;0;ON;;;;;N;;;;;-1F443;NOSE;So;0;ON;;;;;N;;;;;-1F444;MOUTH;So;0;ON;;;;;N;;;;;-1F445;TONGUE;So;0;ON;;;;;N;;;;;-1F446;WHITE UP POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;;-1F447;WHITE DOWN POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;;-1F448;WHITE LEFT POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;;-1F449;WHITE RIGHT POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;;-1F44A;FISTED HAND SIGN;So;0;ON;;;;;N;;;;;-1F44B;WAVING HAND SIGN;So;0;ON;;;;;N;;;;;-1F44C;OK HAND SIGN;So;0;ON;;;;;N;;;;;-1F44D;THUMBS UP SIGN;So;0;ON;;;;;N;;;;;-1F44E;THUMBS DOWN SIGN;So;0;ON;;;;;N;;;;;-1F44F;CLAPPING HANDS SIGN;So;0;ON;;;;;N;;;;;-1F450;OPEN HANDS SIGN;So;0;ON;;;;;N;;;;;-1F451;CROWN;So;0;ON;;;;;N;;;;;-1F452;WOMANS HAT;So;0;ON;;;;;N;;;;;-1F453;EYEGLASSES;So;0;ON;;;;;N;;;;;-1F454;NECKTIE;So;0;ON;;;;;N;;;;;-1F455;T-SHIRT;So;0;ON;;;;;N;;;;;-1F456;JEANS;So;0;ON;;;;;N;;;;;-1F457;DRESS;So;0;ON;;;;;N;;;;;-1F458;KIMONO;So;0;ON;;;;;N;;;;;-1F459;BIKINI;So;0;ON;;;;;N;;;;;-1F45A;WOMANS CLOTHES;So;0;ON;;;;;N;;;;;-1F45B;PURSE;So;0;ON;;;;;N;;;;;-1F45C;HANDBAG;So;0;ON;;;;;N;;;;;-1F45D;POUCH;So;0;ON;;;;;N;;;;;-1F45E;MANS SHOE;So;0;ON;;;;;N;;;;;-1F45F;ATHLETIC SHOE;So;0;ON;;;;;N;;;;;-1F460;HIGH-HEELED SHOE;So;0;ON;;;;;N;;;;;-1F461;WOMANS SANDAL;So;0;ON;;;;;N;;;;;-1F462;WOMANS BOOTS;So;0;ON;;;;;N;;;;;-1F463;FOOTPRINTS;So;0;ON;;;;;N;;;;;-1F464;BUST IN SILHOUETTE;So;0;ON;;;;;N;;;;;-1F465;BUSTS IN SILHOUETTE;So;0;ON;;;;;N;;;;;-1F466;BOY;So;0;ON;;;;;N;;;;;-1F467;GIRL;So;0;ON;;;;;N;;;;;-1F468;MAN;So;0;ON;;;;;N;;;;;-1F469;WOMAN;So;0;ON;;;;;N;;;;;-1F46A;FAMILY;So;0;ON;;;;;N;;;;;-1F46B;MAN AND WOMAN HOLDING HANDS;So;0;ON;;;;;N;;;;;-1F46C;TWO MEN HOLDING HANDS;So;0;ON;;;;;N;;;;;-1F46D;TWO WOMEN HOLDING HANDS;So;0;ON;;;;;N;;;;;-1F46E;POLICE OFFICER;So;0;ON;;;;;N;;;;;-1F46F;WOMAN WITH BUNNY EARS;So;0;ON;;;;;N;;;;;-1F470;BRIDE WITH VEIL;So;0;ON;;;;;N;;;;;-1F471;PERSON WITH BLOND HAIR;So;0;ON;;;;;N;;;;;-1F472;MAN WITH GUA PI MAO;So;0;ON;;;;;N;;;;;-1F473;MAN WITH TURBAN;So;0;ON;;;;;N;;;;;-1F474;OLDER MAN;So;0;ON;;;;;N;;;;;-1F475;OLDER WOMAN;So;0;ON;;;;;N;;;;;-1F476;BABY;So;0;ON;;;;;N;;;;;-1F477;CONSTRUCTION WORKER;So;0;ON;;;;;N;;;;;-1F478;PRINCESS;So;0;ON;;;;;N;;;;;-1F479;JAPANESE OGRE;So;0;ON;;;;;N;;;;;-1F47A;JAPANESE GOBLIN;So;0;ON;;;;;N;;;;;-1F47B;GHOST;So;0;ON;;;;;N;;;;;-1F47C;BABY ANGEL;So;0;ON;;;;;N;;;;;-1F47D;EXTRATERRESTRIAL ALIEN;So;0;ON;;;;;N;;;;;-1F47E;ALIEN MONSTER;So;0;ON;;;;;N;;;;;-1F47F;IMP;So;0;ON;;;;;N;;;;;-1F480;SKULL;So;0;ON;;;;;N;;;;;-1F481;INFORMATION DESK PERSON;So;0;ON;;;;;N;;;;;-1F482;GUARDSMAN;So;0;ON;;;;;N;;;;;-1F483;DANCER;So;0;ON;;;;;N;;;;;-1F484;LIPSTICK;So;0;ON;;;;;N;;;;;-1F485;NAIL POLISH;So;0;ON;;;;;N;;;;;-1F486;FACE MASSAGE;So;0;ON;;;;;N;;;;;-1F487;HAIRCUT;So;0;ON;;;;;N;;;;;-1F488;BARBER POLE;So;0;ON;;;;;N;;;;;-1F489;SYRINGE;So;0;ON;;;;;N;;;;;-1F48A;PILL;So;0;ON;;;;;N;;;;;-1F48B;KISS MARK;So;0;ON;;;;;N;;;;;-1F48C;LOVE LETTER;So;0;ON;;;;;N;;;;;-1F48D;RING;So;0;ON;;;;;N;;;;;-1F48E;GEM STONE;So;0;ON;;;;;N;;;;;-1F48F;KISS;So;0;ON;;;;;N;;;;;-1F490;BOUQUET;So;0;ON;;;;;N;;;;;-1F491;COUPLE WITH HEART;So;0;ON;;;;;N;;;;;-1F492;WEDDING;So;0;ON;;;;;N;;;;;-1F493;BEATING HEART;So;0;ON;;;;;N;;;;;-1F494;BROKEN HEART;So;0;ON;;;;;N;;;;;-1F495;TWO HEARTS;So;0;ON;;;;;N;;;;;-1F496;SPARKLING HEART;So;0;ON;;;;;N;;;;;-1F497;GROWING HEART;So;0;ON;;;;;N;;;;;-1F498;HEART WITH ARROW;So;0;ON;;;;;N;;;;;-1F499;BLUE HEART;So;0;ON;;;;;N;;;;;-1F49A;GREEN HEART;So;0;ON;;;;;N;;;;;-1F49B;YELLOW HEART;So;0;ON;;;;;N;;;;;-1F49C;PURPLE HEART;So;0;ON;;;;;N;;;;;-1F49D;HEART WITH RIBBON;So;0;ON;;;;;N;;;;;-1F49E;REVOLVING HEARTS;So;0;ON;;;;;N;;;;;-1F49F;HEART DECORATION;So;0;ON;;;;;N;;;;;-1F4A0;DIAMOND SHAPE WITH A DOT INSIDE;So;0;ON;;;;;N;;;;;-1F4A1;ELECTRIC LIGHT BULB;So;0;ON;;;;;N;;;;;-1F4A2;ANGER SYMBOL;So;0;ON;;;;;N;;;;;-1F4A3;BOMB;So;0;ON;;;;;N;;;;;-1F4A4;SLEEPING SYMBOL;So;0;ON;;;;;N;;;;;-1F4A5;COLLISION SYMBOL;So;0;ON;;;;;N;;;;;-1F4A6;SPLASHING SWEAT SYMBOL;So;0;ON;;;;;N;;;;;-1F4A7;DROPLET;So;0;ON;;;;;N;;;;;-1F4A8;DASH SYMBOL;So;0;ON;;;;;N;;;;;-1F4A9;PILE OF POO;So;0;ON;;;;;N;;;;;-1F4AA;FLEXED BICEPS;So;0;ON;;;;;N;;;;;-1F4AB;DIZZY SYMBOL;So;0;ON;;;;;N;;;;;-1F4AC;SPEECH BALLOON;So;0;ON;;;;;N;;;;;-1F4AD;THOUGHT BALLOON;So;0;ON;;;;;N;;;;;-1F4AE;WHITE FLOWER;So;0;ON;;;;;N;;;;;-1F4AF;HUNDRED POINTS SYMBOL;So;0;ON;;;;;N;;;;;-1F4B0;MONEY BAG;So;0;ON;;;;;N;;;;;-1F4B1;CURRENCY EXCHANGE;So;0;ON;;;;;N;;;;;-1F4B2;HEAVY DOLLAR SIGN;So;0;ON;;;;;N;;;;;-1F4B3;CREDIT CARD;So;0;ON;;;;;N;;;;;-1F4B4;BANKNOTE WITH YEN SIGN;So;0;ON;;;;;N;;;;;-1F4B5;BANKNOTE WITH DOLLAR SIGN;So;0;ON;;;;;N;;;;;-1F4B6;BANKNOTE WITH EURO SIGN;So;0;ON;;;;;N;;;;;-1F4B7;BANKNOTE WITH POUND SIGN;So;0;ON;;;;;N;;;;;-1F4B8;MONEY WITH WINGS;So;0;ON;;;;;N;;;;;-1F4B9;CHART WITH UPWARDS TREND AND YEN SIGN;So;0;ON;;;;;N;;;;;-1F4BA;SEAT;So;0;ON;;;;;N;;;;;-1F4BB;PERSONAL COMPUTER;So;0;ON;;;;;N;;;;;-1F4BC;BRIEFCASE;So;0;ON;;;;;N;;;;;-1F4BD;MINIDISC;So;0;ON;;;;;N;;;;;-1F4BE;FLOPPY DISK;So;0;ON;;;;;N;;;;;-1F4BF;OPTICAL DISC;So;0;ON;;;;;N;;;;;-1F4C0;DVD;So;0;ON;;;;;N;;;;;-1F4C1;FILE FOLDER;So;0;ON;;;;;N;;;;;-1F4C2;OPEN FILE FOLDER;So;0;ON;;;;;N;;;;;-1F4C3;PAGE WITH CURL;So;0;ON;;;;;N;;;;;-1F4C4;PAGE FACING UP;So;0;ON;;;;;N;;;;;-1F4C5;CALENDAR;So;0;ON;;;;;N;;;;;-1F4C6;TEAR-OFF CALENDAR;So;0;ON;;;;;N;;;;;-1F4C7;CARD INDEX;So;0;ON;;;;;N;;;;;-1F4C8;CHART WITH UPWARDS TREND;So;0;ON;;;;;N;;;;;-1F4C9;CHART WITH DOWNWARDS TREND;So;0;ON;;;;;N;;;;;-1F4CA;BAR CHART;So;0;ON;;;;;N;;;;;-1F4CB;CLIPBOARD;So;0;ON;;;;;N;;;;;-1F4CC;PUSHPIN;So;0;ON;;;;;N;;;;;-1F4CD;ROUND PUSHPIN;So;0;ON;;;;;N;;;;;-1F4CE;PAPERCLIP;So;0;ON;;;;;N;;;;;-1F4CF;STRAIGHT RULER;So;0;ON;;;;;N;;;;;-1F4D0;TRIANGULAR RULER;So;0;ON;;;;;N;;;;;-1F4D1;BOOKMARK TABS;So;0;ON;;;;;N;;;;;-1F4D2;LEDGER;So;0;ON;;;;;N;;;;;-1F4D3;NOTEBOOK;So;0;ON;;;;;N;;;;;-1F4D4;NOTEBOOK WITH DECORATIVE COVER;So;0;ON;;;;;N;;;;;-1F4D5;CLOSED BOOK;So;0;ON;;;;;N;;;;;-1F4D6;OPEN BOOK;So;0;ON;;;;;N;;;;;-1F4D7;GREEN BOOK;So;0;ON;;;;;N;;;;;-1F4D8;BLUE BOOK;So;0;ON;;;;;N;;;;;-1F4D9;ORANGE BOOK;So;0;ON;;;;;N;;;;;-1F4DA;BOOKS;So;0;ON;;;;;N;;;;;-1F4DB;NAME BADGE;So;0;ON;;;;;N;;;;;-1F4DC;SCROLL;So;0;ON;;;;;N;;;;;-1F4DD;MEMO;So;0;ON;;;;;N;;;;;-1F4DE;TELEPHONE RECEIVER;So;0;ON;;;;;N;;;;;-1F4DF;PAGER;So;0;ON;;;;;N;;;;;-1F4E0;FAX MACHINE;So;0;ON;;;;;N;;;;;-1F4E1;SATELLITE ANTENNA;So;0;ON;;;;;N;;;;;-1F4E2;PUBLIC ADDRESS LOUDSPEAKER;So;0;ON;;;;;N;;;;;-1F4E3;CHEERING MEGAPHONE;So;0;ON;;;;;N;;;;;-1F4E4;OUTBOX TRAY;So;0;ON;;;;;N;;;;;-1F4E5;INBOX TRAY;So;0;ON;;;;;N;;;;;-1F4E6;PACKAGE;So;0;ON;;;;;N;;;;;-1F4E7;E-MAIL SYMBOL;So;0;ON;;;;;N;;;;;-1F4E8;INCOMING ENVELOPE;So;0;ON;;;;;N;;;;;-1F4E9;ENVELOPE WITH DOWNWARDS ARROW ABOVE;So;0;ON;;;;;N;;;;;-1F4EA;CLOSED MAILBOX WITH LOWERED FLAG;So;0;ON;;;;;N;;;;;-1F4EB;CLOSED MAILBOX WITH RAISED FLAG;So;0;ON;;;;;N;;;;;-1F4EC;OPEN MAILBOX WITH RAISED FLAG;So;0;ON;;;;;N;;;;;-1F4ED;OPEN MAILBOX WITH LOWERED FLAG;So;0;ON;;;;;N;;;;;-1F4EE;POSTBOX;So;0;ON;;;;;N;;;;;-1F4EF;POSTAL HORN;So;0;ON;;;;;N;;;;;-1F4F0;NEWSPAPER;So;0;ON;;;;;N;;;;;-1F4F1;MOBILE PHONE;So;0;ON;;;;;N;;;;;-1F4F2;MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT;So;0;ON;;;;;N;;;;;-1F4F3;VIBRATION MODE;So;0;ON;;;;;N;;;;;-1F4F4;MOBILE PHONE OFF;So;0;ON;;;;;N;;;;;-1F4F5;NO MOBILE PHONES;So;0;ON;;;;;N;;;;;-1F4F6;ANTENNA WITH BARS;So;0;ON;;;;;N;;;;;-1F4F7;CAMERA;So;0;ON;;;;;N;;;;;-1F4F8;CAMERA WITH FLASH;So;0;ON;;;;;N;;;;;-1F4F9;VIDEO CAMERA;So;0;ON;;;;;N;;;;;-1F4FA;TELEVISION;So;0;ON;;;;;N;;;;;-1F4FB;RADIO;So;0;ON;;;;;N;;;;;-1F4FC;VIDEOCASSETTE;So;0;ON;;;;;N;;;;;-1F4FD;FILM PROJECTOR;So;0;ON;;;;;N;;;;;-1F4FE;PORTABLE STEREO;So;0;ON;;;;;N;;;;;-1F500;TWISTED RIGHTWARDS ARROWS;So;0;ON;;;;;N;;;;;-1F501;CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS;So;0;ON;;;;;N;;;;;-1F502;CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY;So;0;ON;;;;;N;;;;;-1F503;CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS;So;0;ON;;;;;N;;;;;-1F504;ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS;So;0;ON;;;;;N;;;;;-1F505;LOW BRIGHTNESS SYMBOL;So;0;ON;;;;;N;;;;;-1F506;HIGH BRIGHTNESS SYMBOL;So;0;ON;;;;;N;;;;;-1F507;SPEAKER WITH CANCELLATION STROKE;So;0;ON;;;;;N;;;;;-1F508;SPEAKER;So;0;ON;;;;;N;;;;;-1F509;SPEAKER WITH ONE SOUND WAVE;So;0;ON;;;;;N;;;;;-1F50A;SPEAKER WITH THREE SOUND WAVES;So;0;ON;;;;;N;;;;;-1F50B;BATTERY;So;0;ON;;;;;N;;;;;-1F50C;ELECTRIC PLUG;So;0;ON;;;;;N;;;;;-1F50D;LEFT-POINTING MAGNIFYING GLASS;So;0;ON;;;;;N;;;;;-1F50E;RIGHT-POINTING MAGNIFYING GLASS;So;0;ON;;;;;N;;;;;-1F50F;LOCK WITH INK PEN;So;0;ON;;;;;N;;;;;-1F510;CLOSED LOCK WITH KEY;So;0;ON;;;;;N;;;;;-1F511;KEY;So;0;ON;;;;;N;;;;;-1F512;LOCK;So;0;ON;;;;;N;;;;;-1F513;OPEN LOCK;So;0;ON;;;;;N;;;;;-1F514;BELL;So;0;ON;;;;;N;;;;;-1F515;BELL WITH CANCELLATION STROKE;So;0;ON;;;;;N;;;;;-1F516;BOOKMARK;So;0;ON;;;;;N;;;;;-1F517;LINK SYMBOL;So;0;ON;;;;;N;;;;;-1F518;RADIO BUTTON;So;0;ON;;;;;N;;;;;-1F519;BACK WITH LEFTWARDS ARROW ABOVE;So;0;ON;;;;;N;;;;;-1F51A;END WITH LEFTWARDS ARROW ABOVE;So;0;ON;;;;;N;;;;;-1F51B;ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE;So;0;ON;;;;;N;;;;;-1F51C;SOON WITH RIGHTWARDS ARROW ABOVE;So;0;ON;;;;;N;;;;;-1F51D;TOP WITH UPWARDS ARROW ABOVE;So;0;ON;;;;;N;;;;;-1F51E;NO ONE UNDER EIGHTEEN SYMBOL;So;0;ON;;;;;N;;;;;-1F51F;KEYCAP TEN;So;0;ON;;;;;N;;;;;-1F520;INPUT SYMBOL FOR LATIN CAPITAL LETTERS;So;0;ON;;;;;N;;;;;-1F521;INPUT SYMBOL FOR LATIN SMALL LETTERS;So;0;ON;;;;;N;;;;;-1F522;INPUT SYMBOL FOR NUMBERS;So;0;ON;;;;;N;;;;;-1F523;INPUT SYMBOL FOR SYMBOLS;So;0;ON;;;;;N;;;;;-1F524;INPUT SYMBOL FOR LATIN LETTERS;So;0;ON;;;;;N;;;;;-1F525;FIRE;So;0;ON;;;;;N;;;;;-1F526;ELECTRIC TORCH;So;0;ON;;;;;N;;;;;-1F527;WRENCH;So;0;ON;;;;;N;;;;;-1F528;HAMMER;So;0;ON;;;;;N;;;;;-1F529;NUT AND BOLT;So;0;ON;;;;;N;;;;;-1F52A;HOCHO;So;0;ON;;;;;N;;;;;-1F52B;PISTOL;So;0;ON;;;;;N;;;;;-1F52C;MICROSCOPE;So;0;ON;;;;;N;;;;;-1F52D;TELESCOPE;So;0;ON;;;;;N;;;;;-1F52E;CRYSTAL BALL;So;0;ON;;;;;N;;;;;-1F52F;SIX POINTED STAR WITH MIDDLE DOT;So;0;ON;;;;;N;;;;;-1F530;JAPANESE SYMBOL FOR BEGINNER;So;0;ON;;;;;N;;;;;-1F531;TRIDENT EMBLEM;So;0;ON;;;;;N;;;;;-1F532;BLACK SQUARE BUTTON;So;0;ON;;;;;N;;;;;-1F533;WHITE SQUARE BUTTON;So;0;ON;;;;;N;;;;;-1F534;LARGE RED CIRCLE;So;0;ON;;;;;N;;;;;-1F535;LARGE BLUE CIRCLE;So;0;ON;;;;;N;;;;;-1F536;LARGE ORANGE DIAMOND;So;0;ON;;;;;N;;;;;-1F537;LARGE BLUE DIAMOND;So;0;ON;;;;;N;;;;;-1F538;SMALL ORANGE DIAMOND;So;0;ON;;;;;N;;;;;-1F539;SMALL BLUE DIAMOND;So;0;ON;;;;;N;;;;;-1F53A;UP-POINTING RED TRIANGLE;So;0;ON;;;;;N;;;;;-1F53B;DOWN-POINTING RED TRIANGLE;So;0;ON;;;;;N;;;;;-1F53C;UP-POINTING SMALL RED TRIANGLE;So;0;ON;;;;;N;;;;;-1F53D;DOWN-POINTING SMALL RED TRIANGLE;So;0;ON;;;;;N;;;;;-1F53E;LOWER RIGHT SHADOWED WHITE CIRCLE;So;0;ON;;;;;N;;;;;-1F53F;UPPER RIGHT SHADOWED WHITE CIRCLE;So;0;ON;;;;;N;;;;;-1F540;CIRCLED CROSS POMMEE;So;0;ON;;;;;N;;;;;-1F541;CROSS POMMEE WITH HALF-CIRCLE BELOW;So;0;ON;;;;;N;;;;;-1F542;CROSS POMMEE;So;0;ON;;;;;N;;;;;-1F543;NOTCHED LEFT SEMICIRCLE WITH THREE DOTS;So;0;ON;;;;;N;;;;;-1F544;NOTCHED RIGHT SEMICIRCLE WITH THREE DOTS;So;0;ON;;;;;N;;;;;-1F545;SYMBOL FOR MARKS CHAPTER;So;0;ON;;;;;N;;;;;-1F546;WHITE LATIN CROSS;So;0;ON;;;;;N;;;;;-1F547;HEAVY LATIN CROSS;So;0;ON;;;;;N;;;;;-1F548;CELTIC CROSS;So;0;ON;;;;;N;;;;;-1F549;OM SYMBOL;So;0;ON;;;;;N;;;;;-1F54A;DOVE OF PEACE;So;0;ON;;;;;N;;;;;-1F550;CLOCK FACE ONE OCLOCK;So;0;ON;;;;;N;;;;;-1F551;CLOCK FACE TWO OCLOCK;So;0;ON;;;;;N;;;;;-1F552;CLOCK FACE THREE OCLOCK;So;0;ON;;;;;N;;;;;-1F553;CLOCK FACE FOUR OCLOCK;So;0;ON;;;;;N;;;;;-1F554;CLOCK FACE FIVE OCLOCK;So;0;ON;;;;;N;;;;;-1F555;CLOCK FACE SIX OCLOCK;So;0;ON;;;;;N;;;;;-1F556;CLOCK FACE SEVEN OCLOCK;So;0;ON;;;;;N;;;;;-1F557;CLOCK FACE EIGHT OCLOCK;So;0;ON;;;;;N;;;;;-1F558;CLOCK FACE NINE OCLOCK;So;0;ON;;;;;N;;;;;-1F559;CLOCK FACE TEN OCLOCK;So;0;ON;;;;;N;;;;;-1F55A;CLOCK FACE ELEVEN OCLOCK;So;0;ON;;;;;N;;;;;-1F55B;CLOCK FACE TWELVE OCLOCK;So;0;ON;;;;;N;;;;;-1F55C;CLOCK FACE ONE-THIRTY;So;0;ON;;;;;N;;;;;-1F55D;CLOCK FACE TWO-THIRTY;So;0;ON;;;;;N;;;;;-1F55E;CLOCK FACE THREE-THIRTY;So;0;ON;;;;;N;;;;;-1F55F;CLOCK FACE FOUR-THIRTY;So;0;ON;;;;;N;;;;;-1F560;CLOCK FACE FIVE-THIRTY;So;0;ON;;;;;N;;;;;-1F561;CLOCK FACE SIX-THIRTY;So;0;ON;;;;;N;;;;;-1F562;CLOCK FACE SEVEN-THIRTY;So;0;ON;;;;;N;;;;;-1F563;CLOCK FACE EIGHT-THIRTY;So;0;ON;;;;;N;;;;;-1F564;CLOCK FACE NINE-THIRTY;So;0;ON;;;;;N;;;;;-1F565;CLOCK FACE TEN-THIRTY;So;0;ON;;;;;N;;;;;-1F566;CLOCK FACE ELEVEN-THIRTY;So;0;ON;;;;;N;;;;;-1F567;CLOCK FACE TWELVE-THIRTY;So;0;ON;;;;;N;;;;;-1F568;RIGHT SPEAKER;So;0;ON;;;;;N;;;;;-1F569;RIGHT SPEAKER WITH ONE SOUND WAVE;So;0;ON;;;;;N;;;;;-1F56A;RIGHT SPEAKER WITH THREE SOUND WAVES;So;0;ON;;;;;N;;;;;-1F56B;BULLHORN;So;0;ON;;;;;N;;;;;-1F56C;BULLHORN WITH SOUND WAVES;So;0;ON;;;;;N;;;;;-1F56D;RINGING BELL;So;0;ON;;;;;N;;;;;-1F56E;BOOK;So;0;ON;;;;;N;;;;;-1F56F;CANDLE;So;0;ON;;;;;N;;;;;-1F570;MANTELPIECE CLOCK;So;0;ON;;;;;N;;;;;-1F571;BLACK SKULL AND CROSSBONES;So;0;ON;;;;;N;;;;;-1F572;NO PIRACY;So;0;ON;;;;;N;;;;;-1F573;HOLE;So;0;ON;;;;;N;;;;;-1F574;MAN IN BUSINESS SUIT LEVITATING;So;0;ON;;;;;N;;;;;-1F575;SLEUTH OR SPY;So;0;ON;;;;;N;;;;;-1F576;DARK SUNGLASSES;So;0;ON;;;;;N;;;;;-1F577;SPIDER;So;0;ON;;;;;N;;;;;-1F578;SPIDER WEB;So;0;ON;;;;;N;;;;;-1F579;JOYSTICK;So;0;ON;;;;;N;;;;;-1F57B;LEFT HAND TELEPHONE RECEIVER;So;0;ON;;;;;N;;;;;-1F57C;TELEPHONE RECEIVER WITH PAGE;So;0;ON;;;;;N;;;;;-1F57D;RIGHT HAND TELEPHONE RECEIVER;So;0;ON;;;;;N;;;;;-1F57E;WHITE TOUCHTONE TELEPHONE;So;0;ON;;;;;N;;;;;-1F57F;BLACK TOUCHTONE TELEPHONE;So;0;ON;;;;;N;;;;;-1F580;TELEPHONE ON TOP OF MODEM;So;0;ON;;;;;N;;;;;-1F581;CLAMSHELL MOBILE PHONE;So;0;ON;;;;;N;;;;;-1F582;BACK OF ENVELOPE;So;0;ON;;;;;N;;;;;-1F583;STAMPED ENVELOPE;So;0;ON;;;;;N;;;;;-1F584;ENVELOPE WITH LIGHTNING;So;0;ON;;;;;N;;;;;-1F585;FLYING ENVELOPE;So;0;ON;;;;;N;;;;;-1F586;PEN OVER STAMPED ENVELOPE;So;0;ON;;;;;N;;;;;-1F587;LINKED PAPERCLIPS;So;0;ON;;;;;N;;;;;-1F588;BLACK PUSHPIN;So;0;ON;;;;;N;;;;;-1F589;LOWER LEFT PENCIL;So;0;ON;;;;;N;;;;;-1F58A;LOWER LEFT BALLPOINT PEN;So;0;ON;;;;;N;;;;;-1F58B;LOWER LEFT FOUNTAIN PEN;So;0;ON;;;;;N;;;;;-1F58C;LOWER LEFT PAINTBRUSH;So;0;ON;;;;;N;;;;;-1F58D;LOWER LEFT CRAYON;So;0;ON;;;;;N;;;;;-1F58E;LEFT WRITING HAND;So;0;ON;;;;;N;;;;;-1F58F;TURNED OK HAND SIGN;So;0;ON;;;;;N;;;;;-1F590;RAISED HAND WITH FINGERS SPLAYED;So;0;ON;;;;;N;;;;;-1F591;REVERSED RAISED HAND WITH FINGERS SPLAYED;So;0;ON;;;;;N;;;;;-1F592;REVERSED THUMBS UP SIGN;So;0;ON;;;;;N;;;;;-1F593;REVERSED THUMBS DOWN SIGN;So;0;ON;;;;;N;;;;;-1F594;REVERSED VICTORY HAND;So;0;ON;;;;;N;;;;;-1F595;REVERSED HAND WITH MIDDLE FINGER EXTENDED;So;0;ON;;;;;N;;;;;-1F596;RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS;So;0;ON;;;;;N;;;;;-1F597;WHITE DOWN POINTING LEFT HAND INDEX;So;0;ON;;;;;N;;;;;-1F598;SIDEWAYS WHITE LEFT POINTING INDEX;So;0;ON;;;;;N;;;;;-1F599;SIDEWAYS WHITE RIGHT POINTING INDEX;So;0;ON;;;;;N;;;;;-1F59A;SIDEWAYS BLACK LEFT POINTING INDEX;So;0;ON;;;;;N;;;;;-1F59B;SIDEWAYS BLACK RIGHT POINTING INDEX;So;0;ON;;;;;N;;;;;-1F59C;BLACK LEFT POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;;-1F59D;BLACK RIGHT POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;;-1F59E;SIDEWAYS WHITE UP POINTING INDEX;So;0;ON;;;;;N;;;;;-1F59F;SIDEWAYS WHITE DOWN POINTING INDEX;So;0;ON;;;;;N;;;;;-1F5A0;SIDEWAYS BLACK UP POINTING INDEX;So;0;ON;;;;;N;;;;;-1F5A1;SIDEWAYS BLACK DOWN POINTING INDEX;So;0;ON;;;;;N;;;;;-1F5A2;BLACK UP POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;;-1F5A3;BLACK DOWN POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;;-1F5A5;DESKTOP COMPUTER;So;0;ON;;;;;N;;;;;-1F5A6;KEYBOARD AND MOUSE;So;0;ON;;;;;N;;;;;-1F5A7;THREE NETWORKED COMPUTERS;So;0;ON;;;;;N;;;;;-1F5A8;PRINTER;So;0;ON;;;;;N;;;;;-1F5A9;POCKET CALCULATOR;So;0;ON;;;;;N;;;;;-1F5AA;BLACK HARD SHELL FLOPPY DISK;So;0;ON;;;;;N;;;;;-1F5AB;WHITE HARD SHELL FLOPPY DISK;So;0;ON;;;;;N;;;;;-1F5AC;SOFT SHELL FLOPPY DISK;So;0;ON;;;;;N;;;;;-1F5AD;TAPE CARTRIDGE;So;0;ON;;;;;N;;;;;-1F5AE;WIRED KEYBOARD;So;0;ON;;;;;N;;;;;-1F5AF;ONE BUTTON MOUSE;So;0;ON;;;;;N;;;;;-1F5B0;TWO BUTTON MOUSE;So;0;ON;;;;;N;;;;;-1F5B1;THREE BUTTON MOUSE;So;0;ON;;;;;N;;;;;-1F5B2;TRACKBALL;So;0;ON;;;;;N;;;;;-1F5B3;OLD PERSONAL COMPUTER;So;0;ON;;;;;N;;;;;-1F5B4;HARD DISK;So;0;ON;;;;;N;;;;;-1F5B5;SCREEN;So;0;ON;;;;;N;;;;;-1F5B6;PRINTER ICON;So;0;ON;;;;;N;;;;;-1F5B7;FAX ICON;So;0;ON;;;;;N;;;;;-1F5B8;OPTICAL DISC ICON;So;0;ON;;;;;N;;;;;-1F5B9;DOCUMENT WITH TEXT;So;0;ON;;;;;N;;;;;-1F5BA;DOCUMENT WITH TEXT AND PICTURE;So;0;ON;;;;;N;;;;;-1F5BB;DOCUMENT WITH PICTURE;So;0;ON;;;;;N;;;;;-1F5BC;FRAME WITH PICTURE;So;0;ON;;;;;N;;;;;-1F5BD;FRAME WITH TILES;So;0;ON;;;;;N;;;;;-1F5BE;FRAME WITH AN X;So;0;ON;;;;;N;;;;;-1F5BF;BLACK FOLDER;So;0;ON;;;;;N;;;;;-1F5C0;FOLDER;So;0;ON;;;;;N;;;;;-1F5C1;OPEN FOLDER;So;0;ON;;;;;N;;;;;-1F5C2;CARD INDEX DIVIDERS;So;0;ON;;;;;N;;;;;-1F5C3;CARD FILE BOX;So;0;ON;;;;;N;;;;;-1F5C4;FILE CABINET;So;0;ON;;;;;N;;;;;-1F5C5;EMPTY NOTE;So;0;ON;;;;;N;;;;;-1F5C6;EMPTY NOTE PAGE;So;0;ON;;;;;N;;;;;-1F5C7;EMPTY NOTE PAD;So;0;ON;;;;;N;;;;;-1F5C8;NOTE;So;0;ON;;;;;N;;;;;-1F5C9;NOTE PAGE;So;0;ON;;;;;N;;;;;-1F5CA;NOTE PAD;So;0;ON;;;;;N;;;;;-1F5CB;EMPTY DOCUMENT;So;0;ON;;;;;N;;;;;-1F5CC;EMPTY PAGE;So;0;ON;;;;;N;;;;;-1F5CD;EMPTY PAGES;So;0;ON;;;;;N;;;;;-1F5CE;DOCUMENT;So;0;ON;;;;;N;;;;;-1F5CF;PAGE;So;0;ON;;;;;N;;;;;-1F5D0;PAGES;So;0;ON;;;;;N;;;;;-1F5D1;WASTEBASKET;So;0;ON;;;;;N;;;;;-1F5D2;SPIRAL NOTE PAD;So;0;ON;;;;;N;;;;;-1F5D3;SPIRAL CALENDAR PAD;So;0;ON;;;;;N;;;;;-1F5D4;DESKTOP WINDOW;So;0;ON;;;;;N;;;;;-1F5D5;MINIMIZE;So;0;ON;;;;;N;;;;;-1F5D6;MAXIMIZE;So;0;ON;;;;;N;;;;;-1F5D7;OVERLAP;So;0;ON;;;;;N;;;;;-1F5D8;CLOCKWISE RIGHT AND LEFT SEMICIRCLE ARROWS;So;0;ON;;;;;N;;;;;-1F5D9;CANCELLATION X;So;0;ON;;;;;N;;;;;-1F5DA;INCREASE FONT SIZE SYMBOL;So;0;ON;;;;;N;;;;;-1F5DB;DECREASE FONT SIZE SYMBOL;So;0;ON;;;;;N;;;;;-1F5DC;COMPRESSION;So;0;ON;;;;;N;;;;;-1F5DD;OLD KEY;So;0;ON;;;;;N;;;;;-1F5DE;ROLLED-UP NEWSPAPER;So;0;ON;;;;;N;;;;;-1F5DF;PAGE WITH CIRCLED TEXT;So;0;ON;;;;;N;;;;;-1F5E0;STOCK CHART;So;0;ON;;;;;N;;;;;-1F5E1;DAGGER KNIFE;So;0;ON;;;;;N;;;;;-1F5E2;LIPS;So;0;ON;;;;;N;;;;;-1F5E3;SPEAKING HEAD IN SILHOUETTE;So;0;ON;;;;;N;;;;;-1F5E4;THREE RAYS ABOVE;So;0;ON;;;;;N;;;;;-1F5E5;THREE RAYS BELOW;So;0;ON;;;;;N;;;;;-1F5E6;THREE RAYS LEFT;So;0;ON;;;;;N;;;;;-1F5E7;THREE RAYS RIGHT;So;0;ON;;;;;N;;;;;-1F5E8;LEFT SPEECH BUBBLE;So;0;ON;;;;;N;;;;;-1F5E9;RIGHT SPEECH BUBBLE;So;0;ON;;;;;N;;;;;-1F5EA;TWO SPEECH BUBBLES;So;0;ON;;;;;N;;;;;-1F5EB;THREE SPEECH BUBBLES;So;0;ON;;;;;N;;;;;-1F5EC;LEFT THOUGHT BUBBLE;So;0;ON;;;;;N;;;;;-1F5ED;RIGHT THOUGHT BUBBLE;So;0;ON;;;;;N;;;;;-1F5EE;LEFT ANGER BUBBLE;So;0;ON;;;;;N;;;;;-1F5EF;RIGHT ANGER BUBBLE;So;0;ON;;;;;N;;;;;-1F5F0;MOOD BUBBLE;So;0;ON;;;;;N;;;;;-1F5F1;LIGHTNING MOOD BUBBLE;So;0;ON;;;;;N;;;;;-1F5F2;LIGHTNING MOOD;So;0;ON;;;;;N;;;;;-1F5F3;BALLOT BOX WITH BALLOT;So;0;ON;;;;;N;;;;;-1F5F4;BALLOT SCRIPT X;So;0;ON;;;;;N;;;;;-1F5F5;BALLOT BOX WITH SCRIPT X;So;0;ON;;;;;N;;;;;-1F5F6;BALLOT BOLD SCRIPT X;So;0;ON;;;;;N;;;;;-1F5F7;BALLOT BOX WITH BOLD SCRIPT X;So;0;ON;;;;;N;;;;;-1F5F8;LIGHT CHECK MARK;So;0;ON;;;;;N;;;;;-1F5F9;BALLOT BOX WITH BOLD CHECK;So;0;ON;;;;;N;;;;;-1F5FA;WORLD MAP;So;0;ON;;;;;N;;;;;-1F5FB;MOUNT FUJI;So;0;ON;;;;;N;;;;;-1F5FC;TOKYO TOWER;So;0;ON;;;;;N;;;;;-1F5FD;STATUE OF LIBERTY;So;0;ON;;;;;N;;;;;-1F5FE;SILHOUETTE OF JAPAN;So;0;ON;;;;;N;;;;;-1F5FF;MOYAI;So;0;ON;;;;;N;;;;;-1F600;GRINNING FACE;So;0;ON;;;;;N;;;;;-1F601;GRINNING FACE WITH SMILING EYES;So;0;ON;;;;;N;;;;;-1F602;FACE WITH TEARS OF JOY;So;0;ON;;;;;N;;;;;-1F603;SMILING FACE WITH OPEN MOUTH;So;0;ON;;;;;N;;;;;-1F604;SMILING FACE WITH OPEN MOUTH AND SMILING EYES;So;0;ON;;;;;N;;;;;-1F605;SMILING FACE WITH OPEN MOUTH AND COLD SWEAT;So;0;ON;;;;;N;;;;;-1F606;SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES;So;0;ON;;;;;N;;;;;-1F607;SMILING FACE WITH HALO;So;0;ON;;;;;N;;;;;-1F608;SMILING FACE WITH HORNS;So;0;ON;;;;;N;;;;;-1F609;WINKING FACE;So;0;ON;;;;;N;;;;;-1F60A;SMILING FACE WITH SMILING EYES;So;0;ON;;;;;N;;;;;-1F60B;FACE SAVOURING DELICIOUS FOOD;So;0;ON;;;;;N;;;;;-1F60C;RELIEVED FACE;So;0;ON;;;;;N;;;;;-1F60D;SMILING FACE WITH HEART-SHAPED EYES;So;0;ON;;;;;N;;;;;-1F60E;SMILING FACE WITH SUNGLASSES;So;0;ON;;;;;N;;;;;-1F60F;SMIRKING FACE;So;0;ON;;;;;N;;;;;-1F610;NEUTRAL FACE;So;0;ON;;;;;N;;;;;-1F611;EXPRESSIONLESS FACE;So;0;ON;;;;;N;;;;;-1F612;UNAMUSED FACE;So;0;ON;;;;;N;;;;;-1F613;FACE WITH COLD SWEAT;So;0;ON;;;;;N;;;;;-1F614;PENSIVE FACE;So;0;ON;;;;;N;;;;;-1F615;CONFUSED FACE;So;0;ON;;;;;N;;;;;-1F616;CONFOUNDED FACE;So;0;ON;;;;;N;;;;;-1F617;KISSING FACE;So;0;ON;;;;;N;;;;;-1F618;FACE THROWING A KISS;So;0;ON;;;;;N;;;;;-1F619;KISSING FACE WITH SMILING EYES;So;0;ON;;;;;N;;;;;-1F61A;KISSING FACE WITH CLOSED EYES;So;0;ON;;;;;N;;;;;-1F61B;FACE WITH STUCK-OUT TONGUE;So;0;ON;;;;;N;;;;;-1F61C;FACE WITH STUCK-OUT TONGUE AND WINKING EYE;So;0;ON;;;;;N;;;;;-1F61D;FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES;So;0;ON;;;;;N;;;;;-1F61E;DISAPPOINTED FACE;So;0;ON;;;;;N;;;;;-1F61F;WORRIED FACE;So;0;ON;;;;;N;;;;;-1F620;ANGRY FACE;So;0;ON;;;;;N;;;;;-1F621;POUTING FACE;So;0;ON;;;;;N;;;;;-1F622;CRYING FACE;So;0;ON;;;;;N;;;;;-1F623;PERSEVERING FACE;So;0;ON;;;;;N;;;;;-1F624;FACE WITH LOOK OF TRIUMPH;So;0;ON;;;;;N;;;;;-1F625;DISAPPOINTED BUT RELIEVED FACE;So;0;ON;;;;;N;;;;;-1F626;FROWNING FACE WITH OPEN MOUTH;So;0;ON;;;;;N;;;;;-1F627;ANGUISHED FACE;So;0;ON;;;;;N;;;;;-1F628;FEARFUL FACE;So;0;ON;;;;;N;;;;;-1F629;WEARY FACE;So;0;ON;;;;;N;;;;;-1F62A;SLEEPY FACE;So;0;ON;;;;;N;;;;;-1F62B;TIRED FACE;So;0;ON;;;;;N;;;;;-1F62C;GRIMACING FACE;So;0;ON;;;;;N;;;;;-1F62D;LOUDLY CRYING FACE;So;0;ON;;;;;N;;;;;-1F62E;FACE WITH OPEN MOUTH;So;0;ON;;;;;N;;;;;-1F62F;HUSHED FACE;So;0;ON;;;;;N;;;;;-1F630;FACE WITH OPEN MOUTH AND COLD SWEAT;So;0;ON;;;;;N;;;;;-1F631;FACE SCREAMING IN FEAR;So;0;ON;;;;;N;;;;;-1F632;ASTONISHED FACE;So;0;ON;;;;;N;;;;;-1F633;FLUSHED FACE;So;0;ON;;;;;N;;;;;-1F634;SLEEPING FACE;So;0;ON;;;;;N;;;;;-1F635;DIZZY FACE;So;0;ON;;;;;N;;;;;-1F636;FACE WITHOUT MOUTH;So;0;ON;;;;;N;;;;;-1F637;FACE WITH MEDICAL MASK;So;0;ON;;;;;N;;;;;-1F638;GRINNING CAT FACE WITH SMILING EYES;So;0;ON;;;;;N;;;;;-1F639;CAT FACE WITH TEARS OF JOY;So;0;ON;;;;;N;;;;;-1F63A;SMILING CAT FACE WITH OPEN MOUTH;So;0;ON;;;;;N;;;;;-1F63B;SMILING CAT FACE WITH HEART-SHAPED EYES;So;0;ON;;;;;N;;;;;-1F63C;CAT FACE WITH WRY SMILE;So;0;ON;;;;;N;;;;;-1F63D;KISSING CAT FACE WITH CLOSED EYES;So;0;ON;;;;;N;;;;;-1F63E;POUTING CAT FACE;So;0;ON;;;;;N;;;;;-1F63F;CRYING CAT FACE;So;0;ON;;;;;N;;;;;-1F640;WEARY CAT FACE;So;0;ON;;;;;N;;;;;-1F641;SLIGHTLY FROWNING FACE;So;0;ON;;;;;N;;;;;-1F642;SLIGHTLY SMILING FACE;So;0;ON;;;;;N;;;;;-1F645;FACE WITH NO GOOD GESTURE;So;0;ON;;;;;N;;;;;-1F646;FACE WITH OK GESTURE;So;0;ON;;;;;N;;;;;-1F647;PERSON BOWING DEEPLY;So;0;ON;;;;;N;;;;;-1F648;SEE-NO-EVIL MONKEY;So;0;ON;;;;;N;;;;;-1F649;HEAR-NO-EVIL MONKEY;So;0;ON;;;;;N;;;;;-1F64A;SPEAK-NO-EVIL MONKEY;So;0;ON;;;;;N;;;;;-1F64B;HAPPY PERSON RAISING ONE HAND;So;0;ON;;;;;N;;;;;-1F64C;PERSON RAISING BOTH HANDS IN CELEBRATION;So;0;ON;;;;;N;;;;;-1F64D;PERSON FROWNING;So;0;ON;;;;;N;;;;;-1F64E;PERSON WITH POUTING FACE;So;0;ON;;;;;N;;;;;-1F64F;PERSON WITH FOLDED HANDS;So;0;ON;;;;;N;;;;;-1F650;NORTH WEST POINTING LEAF;So;0;ON;;;;;N;;;;;-1F651;SOUTH WEST POINTING LEAF;So;0;ON;;;;;N;;;;;-1F652;NORTH EAST POINTING LEAF;So;0;ON;;;;;N;;;;;-1F653;SOUTH EAST POINTING LEAF;So;0;ON;;;;;N;;;;;-1F654;TURNED NORTH WEST POINTING LEAF;So;0;ON;;;;;N;;;;;-1F655;TURNED SOUTH WEST POINTING LEAF;So;0;ON;;;;;N;;;;;-1F656;TURNED NORTH EAST POINTING LEAF;So;0;ON;;;;;N;;;;;-1F657;TURNED SOUTH EAST POINTING LEAF;So;0;ON;;;;;N;;;;;-1F658;NORTH WEST POINTING VINE LEAF;So;0;ON;;;;;N;;;;;-1F659;SOUTH WEST POINTING VINE LEAF;So;0;ON;;;;;N;;;;;-1F65A;NORTH EAST POINTING VINE LEAF;So;0;ON;;;;;N;;;;;-1F65B;SOUTH EAST POINTING VINE LEAF;So;0;ON;;;;;N;;;;;-1F65C;HEAVY NORTH WEST POINTING VINE LEAF;So;0;ON;;;;;N;;;;;-1F65D;HEAVY SOUTH WEST POINTING VINE LEAF;So;0;ON;;;;;N;;;;;-1F65E;HEAVY NORTH EAST POINTING VINE LEAF;So;0;ON;;;;;N;;;;;-1F65F;HEAVY SOUTH EAST POINTING VINE LEAF;So;0;ON;;;;;N;;;;;-1F660;NORTH WEST POINTING BUD;So;0;ON;;;;;N;;;;;-1F661;SOUTH WEST POINTING BUD;So;0;ON;;;;;N;;;;;-1F662;NORTH EAST POINTING BUD;So;0;ON;;;;;N;;;;;-1F663;SOUTH EAST POINTING BUD;So;0;ON;;;;;N;;;;;-1F664;HEAVY NORTH WEST POINTING BUD;So;0;ON;;;;;N;;;;;-1F665;HEAVY SOUTH WEST POINTING BUD;So;0;ON;;;;;N;;;;;-1F666;HEAVY NORTH EAST POINTING BUD;So;0;ON;;;;;N;;;;;-1F667;HEAVY SOUTH EAST POINTING BUD;So;0;ON;;;;;N;;;;;-1F668;HOLLOW QUILT SQUARE ORNAMENT;So;0;ON;;;;;N;;;;;-1F669;HOLLOW QUILT SQUARE ORNAMENT IN BLACK SQUARE;So;0;ON;;;;;N;;;;;-1F66A;SOLID QUILT SQUARE ORNAMENT;So;0;ON;;;;;N;;;;;-1F66B;SOLID QUILT SQUARE ORNAMENT IN BLACK SQUARE;So;0;ON;;;;;N;;;;;-1F66C;LEFTWARDS ROCKET;So;0;ON;;;;;N;;;;;-1F66D;UPWARDS ROCKET;So;0;ON;;;;;N;;;;;-1F66E;RIGHTWARDS ROCKET;So;0;ON;;;;;N;;;;;-1F66F;DOWNWARDS ROCKET;So;0;ON;;;;;N;;;;;-1F670;SCRIPT LIGATURE ET ORNAMENT;So;0;ON;;;;;N;;;;;-1F671;HEAVY SCRIPT LIGATURE ET ORNAMENT;So;0;ON;;;;;N;;;;;-1F672;LIGATURE OPEN ET ORNAMENT;So;0;ON;;;;;N;;;;;-1F673;HEAVY LIGATURE OPEN ET ORNAMENT;So;0;ON;;;;;N;;;;;-1F674;HEAVY AMPERSAND ORNAMENT;So;0;ON;;;;;N;;;;;-1F675;SWASH AMPERSAND ORNAMENT;So;0;ON;;;;;N;;;;;-1F676;SANS-SERIF HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-1F677;SANS-SERIF HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-1F678;SANS-SERIF HEAVY LOW DOUBLE COMMA QUOTATION MARK ORNAMENT;So;0;ON;;;;;N;;;;;-1F679;HEAVY INTERROBANG ORNAMENT;So;0;ON;;;;;N;;;;;-1F67A;SANS-SERIF INTERROBANG ORNAMENT;So;0;ON;;;;;N;;;;;-1F67B;HEAVY SANS-SERIF INTERROBANG ORNAMENT;So;0;ON;;;;;N;;;;;-1F67C;VERY HEAVY SOLIDUS;So;0;ON;;;;;N;;;;;-1F67D;VERY HEAVY REVERSE SOLIDUS;So;0;ON;;;;;N;;;;;-1F67E;CHECKER BOARD;So;0;ON;;;;;N;;;;;-1F67F;REVERSE CHECKER BOARD;So;0;ON;;;;;N;;;;;-1F680;ROCKET;So;0;ON;;;;;N;;;;;-1F681;HELICOPTER;So;0;ON;;;;;N;;;;;-1F682;STEAM LOCOMOTIVE;So;0;ON;;;;;N;;;;;-1F683;RAILWAY CAR;So;0;ON;;;;;N;;;;;-1F684;HIGH-SPEED TRAIN;So;0;ON;;;;;N;;;;;-1F685;HIGH-SPEED TRAIN WITH BULLET NOSE;So;0;ON;;;;;N;;;;;-1F686;TRAIN;So;0;ON;;;;;N;;;;;-1F687;METRO;So;0;ON;;;;;N;;;;;-1F688;LIGHT RAIL;So;0;ON;;;;;N;;;;;-1F689;STATION;So;0;ON;;;;;N;;;;;-1F68A;TRAM;So;0;ON;;;;;N;;;;;-1F68B;TRAM CAR;So;0;ON;;;;;N;;;;;-1F68C;BUS;So;0;ON;;;;;N;;;;;-1F68D;ONCOMING BUS;So;0;ON;;;;;N;;;;;-1F68E;TROLLEYBUS;So;0;ON;;;;;N;;;;;-1F68F;BUS STOP;So;0;ON;;;;;N;;;;;-1F690;MINIBUS;So;0;ON;;;;;N;;;;;-1F691;AMBULANCE;So;0;ON;;;;;N;;;;;-1F692;FIRE ENGINE;So;0;ON;;;;;N;;;;;-1F693;POLICE CAR;So;0;ON;;;;;N;;;;;-1F694;ONCOMING POLICE CAR;So;0;ON;;;;;N;;;;;-1F695;TAXI;So;0;ON;;;;;N;;;;;-1F696;ONCOMING TAXI;So;0;ON;;;;;N;;;;;-1F697;AUTOMOBILE;So;0;ON;;;;;N;;;;;-1F698;ONCOMING AUTOMOBILE;So;0;ON;;;;;N;;;;;-1F699;RECREATIONAL VEHICLE;So;0;ON;;;;;N;;;;;-1F69A;DELIVERY TRUCK;So;0;ON;;;;;N;;;;;-1F69B;ARTICULATED LORRY;So;0;ON;;;;;N;;;;;-1F69C;TRACTOR;So;0;ON;;;;;N;;;;;-1F69D;MONORAIL;So;0;ON;;;;;N;;;;;-1F69E;MOUNTAIN RAILWAY;So;0;ON;;;;;N;;;;;-1F69F;SUSPENSION RAILWAY;So;0;ON;;;;;N;;;;;-1F6A0;MOUNTAIN CABLEWAY;So;0;ON;;;;;N;;;;;-1F6A1;AERIAL TRAMWAY;So;0;ON;;;;;N;;;;;-1F6A2;SHIP;So;0;ON;;;;;N;;;;;-1F6A3;ROWBOAT;So;0;ON;;;;;N;;;;;-1F6A4;SPEEDBOAT;So;0;ON;;;;;N;;;;;-1F6A5;HORIZONTAL TRAFFIC LIGHT;So;0;ON;;;;;N;;;;;-1F6A6;VERTICAL TRAFFIC LIGHT;So;0;ON;;;;;N;;;;;-1F6A7;CONSTRUCTION SIGN;So;0;ON;;;;;N;;;;;-1F6A8;POLICE CARS REVOLVING LIGHT;So;0;ON;;;;;N;;;;;-1F6A9;TRIANGULAR FLAG ON POST;So;0;ON;;;;;N;;;;;-1F6AA;DOOR;So;0;ON;;;;;N;;;;;-1F6AB;NO ENTRY SIGN;So;0;ON;;;;;N;;;;;-1F6AC;SMOKING SYMBOL;So;0;ON;;;;;N;;;;;-1F6AD;NO SMOKING SYMBOL;So;0;ON;;;;;N;;;;;-1F6AE;PUT LITTER IN ITS PLACE SYMBOL;So;0;ON;;;;;N;;;;;-1F6AF;DO NOT LITTER SYMBOL;So;0;ON;;;;;N;;;;;-1F6B0;POTABLE WATER SYMBOL;So;0;ON;;;;;N;;;;;-1F6B1;NON-POTABLE WATER SYMBOL;So;0;ON;;;;;N;;;;;-1F6B2;BICYCLE;So;0;ON;;;;;N;;;;;-1F6B3;NO BICYCLES;So;0;ON;;;;;N;;;;;-1F6B4;BICYCLIST;So;0;ON;;;;;N;;;;;-1F6B5;MOUNTAIN BICYCLIST;So;0;ON;;;;;N;;;;;-1F6B6;PEDESTRIAN;So;0;ON;;;;;N;;;;;-1F6B7;NO PEDESTRIANS;So;0;ON;;;;;N;;;;;-1F6B8;CHILDREN CROSSING;So;0;ON;;;;;N;;;;;-1F6B9;MENS SYMBOL;So;0;ON;;;;;N;;;;;-1F6BA;WOMENS SYMBOL;So;0;ON;;;;;N;;;;;-1F6BB;RESTROOM;So;0;ON;;;;;N;;;;;-1F6BC;BABY SYMBOL;So;0;ON;;;;;N;;;;;-1F6BD;TOILET;So;0;ON;;;;;N;;;;;-1F6BE;WATER CLOSET;So;0;ON;;;;;N;;;;;-1F6BF;SHOWER;So;0;ON;;;;;N;;;;;-1F6C0;BATH;So;0;ON;;;;;N;;;;;-1F6C1;BATHTUB;So;0;ON;;;;;N;;;;;-1F6C2;PASSPORT CONTROL;So;0;ON;;;;;N;;;;;-1F6C3;CUSTOMS;So;0;ON;;;;;N;;;;;-1F6C4;BAGGAGE CLAIM;So;0;ON;;;;;N;;;;;-1F6C5;LEFT LUGGAGE;So;0;ON;;;;;N;;;;;-1F6C6;TRIANGLE WITH ROUNDED CORNERS;So;0;ON;;;;;N;;;;;-1F6C7;PROHIBITED SIGN;So;0;ON;;;;;N;;;;;-1F6C8;CIRCLED INFORMATION SOURCE;So;0;ON;;;;;N;;;;;-1F6C9;BOYS SYMBOL;So;0;ON;;;;;N;;;;;-1F6CA;GIRLS SYMBOL;So;0;ON;;;;;N;;;;;-1F6CB;COUCH AND LAMP;So;0;ON;;;;;N;;;;;-1F6CC;SLEEPING ACCOMMODATION;So;0;ON;;;;;N;;;;;-1F6CD;SHOPPING BAGS;So;0;ON;;;;;N;;;;;-1F6CE;BELLHOP BELL;So;0;ON;;;;;N;;;;;-1F6CF;BED;So;0;ON;;;;;N;;;;;-1F6E0;HAMMER AND WRENCH;So;0;ON;;;;;N;;;;;-1F6E1;SHIELD;So;0;ON;;;;;N;;;;;-1F6E2;OIL DRUM;So;0;ON;;;;;N;;;;;-1F6E3;MOTORWAY;So;0;ON;;;;;N;;;;;-1F6E4;RAILWAY TRACK;So;0;ON;;;;;N;;;;;-1F6E5;MOTOR BOAT;So;0;ON;;;;;N;;;;;-1F6E6;UP-POINTING MILITARY AIRPLANE;So;0;ON;;;;;N;;;;;-1F6E7;UP-POINTING AIRPLANE;So;0;ON;;;;;N;;;;;-1F6E8;UP-POINTING SMALL AIRPLANE;So;0;ON;;;;;N;;;;;-1F6E9;SMALL AIRPLANE;So;0;ON;;;;;N;;;;;-1F6EA;NORTHEAST-POINTING AIRPLANE;So;0;ON;;;;;N;;;;;-1F6EB;AIRPLANE DEPARTURE;So;0;ON;;;;;N;;;;;-1F6EC;AIRPLANE ARRIVING;So;0;ON;;;;;N;;;;;-1F6F0;SATELLITE;So;0;ON;;;;;N;;;;;-1F6F1;ONCOMING FIRE ENGINE;So;0;ON;;;;;N;;;;;-1F6F2;DIESEL LOCOMOTIVE;So;0;ON;;;;;N;;;;;-1F6F3;PASSENGER SHIP;So;0;ON;;;;;N;;;;;-1F700;ALCHEMICAL SYMBOL FOR QUINTESSENCE;So;0;ON;;;;;N;;;;;-1F701;ALCHEMICAL SYMBOL FOR AIR;So;0;ON;;;;;N;;;;;-1F702;ALCHEMICAL SYMBOL FOR FIRE;So;0;ON;;;;;N;;;;;-1F703;ALCHEMICAL SYMBOL FOR EARTH;So;0;ON;;;;;N;;;;;-1F704;ALCHEMICAL SYMBOL FOR WATER;So;0;ON;;;;;N;;;;;-1F705;ALCHEMICAL SYMBOL FOR AQUAFORTIS;So;0;ON;;;;;N;;;;;-1F706;ALCHEMICAL SYMBOL FOR AQUA REGIA;So;0;ON;;;;;N;;;;;-1F707;ALCHEMICAL SYMBOL FOR AQUA REGIA-2;So;0;ON;;;;;N;;;;;-1F708;ALCHEMICAL SYMBOL FOR AQUA VITAE;So;0;ON;;;;;N;;;;;-1F709;ALCHEMICAL SYMBOL FOR AQUA VITAE-2;So;0;ON;;;;;N;;;;;-1F70A;ALCHEMICAL SYMBOL FOR VINEGAR;So;0;ON;;;;;N;;;;;-1F70B;ALCHEMICAL SYMBOL FOR VINEGAR-2;So;0;ON;;;;;N;;;;;-1F70C;ALCHEMICAL SYMBOL FOR VINEGAR-3;So;0;ON;;;;;N;;;;;-1F70D;ALCHEMICAL SYMBOL FOR SULFUR;So;0;ON;;;;;N;;;;;-1F70E;ALCHEMICAL SYMBOL FOR PHILOSOPHERS SULFUR;So;0;ON;;;;;N;;;;;-1F70F;ALCHEMICAL SYMBOL FOR BLACK SULFUR;So;0;ON;;;;;N;;;;;-1F710;ALCHEMICAL SYMBOL FOR MERCURY SUBLIMATE;So;0;ON;;;;;N;;;;;-1F711;ALCHEMICAL SYMBOL FOR MERCURY SUBLIMATE-2;So;0;ON;;;;;N;;;;;-1F712;ALCHEMICAL SYMBOL FOR MERCURY SUBLIMATE-3;So;0;ON;;;;;N;;;;;-1F713;ALCHEMICAL SYMBOL FOR CINNABAR;So;0;ON;;;;;N;;;;;-1F714;ALCHEMICAL SYMBOL FOR SALT;So;0;ON;;;;;N;;;;;-1F715;ALCHEMICAL SYMBOL FOR NITRE;So;0;ON;;;;;N;;;;;-1F716;ALCHEMICAL SYMBOL FOR VITRIOL;So;0;ON;;;;;N;;;;;-1F717;ALCHEMICAL SYMBOL FOR VITRIOL-2;So;0;ON;;;;;N;;;;;-1F718;ALCHEMICAL SYMBOL FOR ROCK SALT;So;0;ON;;;;;N;;;;;-1F719;ALCHEMICAL SYMBOL FOR ROCK SALT-2;So;0;ON;;;;;N;;;;;-1F71A;ALCHEMICAL SYMBOL FOR GOLD;So;0;ON;;;;;N;;;;;-1F71B;ALCHEMICAL SYMBOL FOR SILVER;So;0;ON;;;;;N;;;;;-1F71C;ALCHEMICAL SYMBOL FOR IRON ORE;So;0;ON;;;;;N;;;;;-1F71D;ALCHEMICAL SYMBOL FOR IRON ORE-2;So;0;ON;;;;;N;;;;;-1F71E;ALCHEMICAL SYMBOL FOR CROCUS OF IRON;So;0;ON;;;;;N;;;;;-1F71F;ALCHEMICAL SYMBOL FOR REGULUS OF IRON;So;0;ON;;;;;N;;;;;-1F720;ALCHEMICAL SYMBOL FOR COPPER ORE;So;0;ON;;;;;N;;;;;-1F721;ALCHEMICAL SYMBOL FOR IRON-COPPER ORE;So;0;ON;;;;;N;;;;;-1F722;ALCHEMICAL SYMBOL FOR SUBLIMATE OF COPPER;So;0;ON;;;;;N;;;;;-1F723;ALCHEMICAL SYMBOL FOR CROCUS OF COPPER;So;0;ON;;;;;N;;;;;-1F724;ALCHEMICAL SYMBOL FOR CROCUS OF COPPER-2;So;0;ON;;;;;N;;;;;-1F725;ALCHEMICAL SYMBOL FOR COPPER ANTIMONIATE;So;0;ON;;;;;N;;;;;-1F726;ALCHEMICAL SYMBOL FOR SALT OF COPPER ANTIMONIATE;So;0;ON;;;;;N;;;;;-1F727;ALCHEMICAL SYMBOL FOR SUBLIMATE OF SALT OF COPPER;So;0;ON;;;;;N;;;;;-1F728;ALCHEMICAL SYMBOL FOR VERDIGRIS;So;0;ON;;;;;N;;;;;-1F729;ALCHEMICAL SYMBOL FOR TIN ORE;So;0;ON;;;;;N;;;;;-1F72A;ALCHEMICAL SYMBOL FOR LEAD ORE;So;0;ON;;;;;N;;;;;-1F72B;ALCHEMICAL SYMBOL FOR ANTIMONY ORE;So;0;ON;;;;;N;;;;;-1F72C;ALCHEMICAL SYMBOL FOR SUBLIMATE OF ANTIMONY;So;0;ON;;;;;N;;;;;-1F72D;ALCHEMICAL SYMBOL FOR SALT OF ANTIMONY;So;0;ON;;;;;N;;;;;-1F72E;ALCHEMICAL SYMBOL FOR SUBLIMATE OF SALT OF ANTIMONY;So;0;ON;;;;;N;;;;;-1F72F;ALCHEMICAL SYMBOL FOR VINEGAR OF ANTIMONY;So;0;ON;;;;;N;;;;;-1F730;ALCHEMICAL SYMBOL FOR REGULUS OF ANTIMONY;So;0;ON;;;;;N;;;;;-1F731;ALCHEMICAL SYMBOL FOR REGULUS OF ANTIMONY-2;So;0;ON;;;;;N;;;;;-1F732;ALCHEMICAL SYMBOL FOR REGULUS;So;0;ON;;;;;N;;;;;-1F733;ALCHEMICAL SYMBOL FOR REGULUS-2;So;0;ON;;;;;N;;;;;-1F734;ALCHEMICAL SYMBOL FOR REGULUS-3;So;0;ON;;;;;N;;;;;-1F735;ALCHEMICAL SYMBOL FOR REGULUS-4;So;0;ON;;;;;N;;;;;-1F736;ALCHEMICAL SYMBOL FOR ALKALI;So;0;ON;;;;;N;;;;;-1F737;ALCHEMICAL SYMBOL FOR ALKALI-2;So;0;ON;;;;;N;;;;;-1F738;ALCHEMICAL SYMBOL FOR MARCASITE;So;0;ON;;;;;N;;;;;-1F739;ALCHEMICAL SYMBOL FOR SAL-AMMONIAC;So;0;ON;;;;;N;;;;;-1F73A;ALCHEMICAL SYMBOL FOR ARSENIC;So;0;ON;;;;;N;;;;;-1F73B;ALCHEMICAL SYMBOL FOR REALGAR;So;0;ON;;;;;N;;;;;-1F73C;ALCHEMICAL SYMBOL FOR REALGAR-2;So;0;ON;;;;;N;;;;;-1F73D;ALCHEMICAL SYMBOL FOR AURIPIGMENT;So;0;ON;;;;;N;;;;;-1F73E;ALCHEMICAL SYMBOL FOR BISMUTH ORE;So;0;ON;;;;;N;;;;;-1F73F;ALCHEMICAL SYMBOL FOR TARTAR;So;0;ON;;;;;N;;;;;-1F740;ALCHEMICAL SYMBOL FOR TARTAR-2;So;0;ON;;;;;N;;;;;-1F741;ALCHEMICAL SYMBOL FOR QUICK LIME;So;0;ON;;;;;N;;;;;-1F742;ALCHEMICAL SYMBOL FOR BORAX;So;0;ON;;;;;N;;;;;-1F743;ALCHEMICAL SYMBOL FOR BORAX-2;So;0;ON;;;;;N;;;;;-1F744;ALCHEMICAL SYMBOL FOR BORAX-3;So;0;ON;;;;;N;;;;;-1F745;ALCHEMICAL SYMBOL FOR ALUM;So;0;ON;;;;;N;;;;;-1F746;ALCHEMICAL SYMBOL FOR OIL;So;0;ON;;;;;N;;;;;-1F747;ALCHEMICAL SYMBOL FOR SPIRIT;So;0;ON;;;;;N;;;;;-1F748;ALCHEMICAL SYMBOL FOR TINCTURE;So;0;ON;;;;;N;;;;;-1F749;ALCHEMICAL SYMBOL FOR GUM;So;0;ON;;;;;N;;;;;-1F74A;ALCHEMICAL SYMBOL FOR WAX;So;0;ON;;;;;N;;;;;-1F74B;ALCHEMICAL SYMBOL FOR POWDER;So;0;ON;;;;;N;;;;;-1F74C;ALCHEMICAL SYMBOL FOR CALX;So;0;ON;;;;;N;;;;;-1F74D;ALCHEMICAL SYMBOL FOR TUTTY;So;0;ON;;;;;N;;;;;-1F74E;ALCHEMICAL SYMBOL FOR CAPUT MORTUUM;So;0;ON;;;;;N;;;;;-1F74F;ALCHEMICAL SYMBOL FOR SCEPTER OF JOVE;So;0;ON;;;;;N;;;;;-1F750;ALCHEMICAL SYMBOL FOR CADUCEUS;So;0;ON;;;;;N;;;;;-1F751;ALCHEMICAL SYMBOL FOR TRIDENT;So;0;ON;;;;;N;;;;;-1F752;ALCHEMICAL SYMBOL FOR STARRED TRIDENT;So;0;ON;;;;;N;;;;;-1F753;ALCHEMICAL SYMBOL FOR LODESTONE;So;0;ON;;;;;N;;;;;-1F754;ALCHEMICAL SYMBOL FOR SOAP;So;0;ON;;;;;N;;;;;-1F755;ALCHEMICAL SYMBOL FOR URINE;So;0;ON;;;;;N;;;;;-1F756;ALCHEMICAL SYMBOL FOR HORSE DUNG;So;0;ON;;;;;N;;;;;-1F757;ALCHEMICAL SYMBOL FOR ASHES;So;0;ON;;;;;N;;;;;-1F758;ALCHEMICAL SYMBOL FOR POT ASHES;So;0;ON;;;;;N;;;;;-1F759;ALCHEMICAL SYMBOL FOR BRICK;So;0;ON;;;;;N;;;;;-1F75A;ALCHEMICAL SYMBOL FOR POWDERED BRICK;So;0;ON;;;;;N;;;;;-1F75B;ALCHEMICAL SYMBOL FOR AMALGAM;So;0;ON;;;;;N;;;;;-1F75C;ALCHEMICAL SYMBOL FOR STRATUM SUPER STRATUM;So;0;ON;;;;;N;;;;;-1F75D;ALCHEMICAL SYMBOL FOR STRATUM SUPER STRATUM-2;So;0;ON;;;;;N;;;;;-1F75E;ALCHEMICAL SYMBOL FOR SUBLIMATION;So;0;ON;;;;;N;;;;;-1F75F;ALCHEMICAL SYMBOL FOR PRECIPITATE;So;0;ON;;;;;N;;;;;-1F760;ALCHEMICAL SYMBOL FOR DISTILL;So;0;ON;;;;;N;;;;;-1F761;ALCHEMICAL SYMBOL FOR DISSOLVE;So;0;ON;;;;;N;;;;;-1F762;ALCHEMICAL SYMBOL FOR DISSOLVE-2;So;0;ON;;;;;N;;;;;-1F763;ALCHEMICAL SYMBOL FOR PURIFY;So;0;ON;;;;;N;;;;;-1F764;ALCHEMICAL SYMBOL FOR PUTREFACTION;So;0;ON;;;;;N;;;;;-1F765;ALCHEMICAL SYMBOL FOR CRUCIBLE;So;0;ON;;;;;N;;;;;-1F766;ALCHEMICAL SYMBOL FOR CRUCIBLE-2;So;0;ON;;;;;N;;;;;-1F767;ALCHEMICAL SYMBOL FOR CRUCIBLE-3;So;0;ON;;;;;N;;;;;-1F768;ALCHEMICAL SYMBOL FOR CRUCIBLE-4;So;0;ON;;;;;N;;;;;-1F769;ALCHEMICAL SYMBOL FOR CRUCIBLE-5;So;0;ON;;;;;N;;;;;-1F76A;ALCHEMICAL SYMBOL FOR ALEMBIC;So;0;ON;;;;;N;;;;;-1F76B;ALCHEMICAL SYMBOL FOR BATH OF MARY;So;0;ON;;;;;N;;;;;-1F76C;ALCHEMICAL SYMBOL FOR BATH OF VAPOURS;So;0;ON;;;;;N;;;;;-1F76D;ALCHEMICAL SYMBOL FOR RETORT;So;0;ON;;;;;N;;;;;-1F76E;ALCHEMICAL SYMBOL FOR HOUR;So;0;ON;;;;;N;;;;;-1F76F;ALCHEMICAL SYMBOL FOR NIGHT;So;0;ON;;;;;N;;;;;-1F770;ALCHEMICAL SYMBOL FOR DAY-NIGHT;So;0;ON;;;;;N;;;;;-1F771;ALCHEMICAL SYMBOL FOR MONTH;So;0;ON;;;;;N;;;;;-1F772;ALCHEMICAL SYMBOL FOR HALF DRAM;So;0;ON;;;;;N;;;;;-1F773;ALCHEMICAL SYMBOL FOR HALF OUNCE;So;0;ON;;;;;N;;;;;-1F780;BLACK LEFT-POINTING ISOSCELES RIGHT TRIANGLE;So;0;ON;;;;;N;;;;;-1F781;BLACK UP-POINTING ISOSCELES RIGHT TRIANGLE;So;0;ON;;;;;N;;;;;-1F782;BLACK RIGHT-POINTING ISOSCELES RIGHT TRIANGLE;So;0;ON;;;;;N;;;;;-1F783;BLACK DOWN-POINTING ISOSCELES RIGHT TRIANGLE;So;0;ON;;;;;N;;;;;-1F784;BLACK SLIGHTLY SMALL CIRCLE;So;0;ON;;;;;N;;;;;-1F785;MEDIUM BOLD WHITE CIRCLE;So;0;ON;;;;;N;;;;;-1F786;BOLD WHITE CIRCLE;So;0;ON;;;;;N;;;;;-1F787;HEAVY WHITE CIRCLE;So;0;ON;;;;;N;;;;;-1F788;VERY HEAVY WHITE CIRCLE;So;0;ON;;;;;N;;;;;-1F789;EXTREMELY HEAVY WHITE CIRCLE;So;0;ON;;;;;N;;;;;-1F78A;WHITE CIRCLE CONTAINING BLACK SMALL CIRCLE;So;0;ON;;;;;N;;;;;-1F78B;ROUND TARGET;So;0;ON;;;;;N;;;;;-1F78C;BLACK TINY SQUARE;So;0;ON;;;;;N;;;;;-1F78D;BLACK SLIGHTLY SMALL SQUARE;So;0;ON;;;;;N;;;;;-1F78E;LIGHT WHITE SQUARE;So;0;ON;;;;;N;;;;;-1F78F;MEDIUM WHITE SQUARE;So;0;ON;;;;;N;;;;;-1F790;BOLD WHITE SQUARE;So;0;ON;;;;;N;;;;;-1F791;HEAVY WHITE SQUARE;So;0;ON;;;;;N;;;;;-1F792;VERY HEAVY WHITE SQUARE;So;0;ON;;;;;N;;;;;-1F793;EXTREMELY HEAVY WHITE SQUARE;So;0;ON;;;;;N;;;;;-1F794;WHITE SQUARE CONTAINING BLACK VERY SMALL SQUARE;So;0;ON;;;;;N;;;;;-1F795;WHITE SQUARE CONTAINING BLACK MEDIUM SQUARE;So;0;ON;;;;;N;;;;;-1F796;SQUARE TARGET;So;0;ON;;;;;N;;;;;-1F797;BLACK TINY DIAMOND;So;0;ON;;;;;N;;;;;-1F798;BLACK VERY SMALL DIAMOND;So;0;ON;;;;;N;;;;;-1F799;BLACK MEDIUM SMALL DIAMOND;So;0;ON;;;;;N;;;;;-1F79A;WHITE DIAMOND CONTAINING BLACK VERY SMALL DIAMOND;So;0;ON;;;;;N;;;;;-1F79B;WHITE DIAMOND CONTAINING BLACK MEDIUM DIAMOND;So;0;ON;;;;;N;;;;;-1F79C;DIAMOND TARGET;So;0;ON;;;;;N;;;;;-1F79D;BLACK TINY LOZENGE;So;0;ON;;;;;N;;;;;-1F79E;BLACK VERY SMALL LOZENGE;So;0;ON;;;;;N;;;;;-1F79F;BLACK MEDIUM SMALL LOZENGE;So;0;ON;;;;;N;;;;;-1F7A0;WHITE LOZENGE CONTAINING BLACK SMALL LOZENGE;So;0;ON;;;;;N;;;;;-1F7A1;THIN GREEK CROSS;So;0;ON;;;;;N;;;;;-1F7A2;LIGHT GREEK CROSS;So;0;ON;;;;;N;;;;;-1F7A3;MEDIUM GREEK CROSS;So;0;ON;;;;;N;;;;;-1F7A4;BOLD GREEK CROSS;So;0;ON;;;;;N;;;;;-1F7A5;VERY BOLD GREEK CROSS;So;0;ON;;;;;N;;;;;-1F7A6;VERY HEAVY GREEK CROSS;So;0;ON;;;;;N;;;;;-1F7A7;EXTREMELY HEAVY GREEK CROSS;So;0;ON;;;;;N;;;;;-1F7A8;THIN SALTIRE;So;0;ON;;;;;N;;;;;-1F7A9;LIGHT SALTIRE;So;0;ON;;;;;N;;;;;-1F7AA;MEDIUM SALTIRE;So;0;ON;;;;;N;;;;;-1F7AB;BOLD SALTIRE;So;0;ON;;;;;N;;;;;-1F7AC;HEAVY SALTIRE;So;0;ON;;;;;N;;;;;-1F7AD;VERY HEAVY SALTIRE;So;0;ON;;;;;N;;;;;-1F7AE;EXTREMELY HEAVY SALTIRE;So;0;ON;;;;;N;;;;;-1F7AF;LIGHT FIVE SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B0;MEDIUM FIVE SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B1;BOLD FIVE SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B2;HEAVY FIVE SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B3;VERY HEAVY FIVE SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B4;EXTREMELY HEAVY FIVE SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B5;LIGHT SIX SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B6;MEDIUM SIX SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B7;BOLD SIX SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B8;HEAVY SIX SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7B9;VERY HEAVY SIX SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7BA;EXTREMELY HEAVY SIX SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7BB;LIGHT EIGHT SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7BC;MEDIUM EIGHT SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7BD;BOLD EIGHT SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7BE;HEAVY EIGHT SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7BF;VERY HEAVY EIGHT SPOKED ASTERISK;So;0;ON;;;;;N;;;;;-1F7C0;LIGHT THREE POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7C1;MEDIUM THREE POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7C2;THREE POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7C3;MEDIUM THREE POINTED PINWHEEL STAR;So;0;ON;;;;;N;;;;;-1F7C4;LIGHT FOUR POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7C5;MEDIUM FOUR POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7C6;FOUR POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7C7;MEDIUM FOUR POINTED PINWHEEL STAR;So;0;ON;;;;;N;;;;;-1F7C8;REVERSE LIGHT FOUR POINTED PINWHEEL STAR;So;0;ON;;;;;N;;;;;-1F7C9;LIGHT FIVE POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7CA;HEAVY FIVE POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7CB;MEDIUM SIX POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7CC;HEAVY SIX POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7CD;SIX POINTED PINWHEEL STAR;So;0;ON;;;;;N;;;;;-1F7CE;MEDIUM EIGHT POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7CF;HEAVY EIGHT POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7D0;VERY HEAVY EIGHT POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7D1;HEAVY EIGHT POINTED PINWHEEL STAR;So;0;ON;;;;;N;;;;;-1F7D2;LIGHT TWELVE POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7D3;HEAVY TWELVE POINTED BLACK STAR;So;0;ON;;;;;N;;;;;-1F7D4;HEAVY TWELVE POINTED PINWHEEL STAR;So;0;ON;;;;;N;;;;;-1F800;LEFTWARDS ARROW WITH SMALL TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F801;UPWARDS ARROW WITH SMALL TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F802;RIGHTWARDS ARROW WITH SMALL TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F803;DOWNWARDS ARROW WITH SMALL TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F804;LEFTWARDS ARROW WITH MEDIUM TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F805;UPWARDS ARROW WITH MEDIUM TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F806;RIGHTWARDS ARROW WITH MEDIUM TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F807;DOWNWARDS ARROW WITH MEDIUM TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F808;LEFTWARDS ARROW WITH LARGE TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F809;UPWARDS ARROW WITH LARGE TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F80A;RIGHTWARDS ARROW WITH LARGE TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F80B;DOWNWARDS ARROW WITH LARGE TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F810;LEFTWARDS ARROW WITH SMALL EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F811;UPWARDS ARROW WITH SMALL EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F812;RIGHTWARDS ARROW WITH SMALL EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F813;DOWNWARDS ARROW WITH SMALL EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F814;LEFTWARDS ARROW WITH EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F815;UPWARDS ARROW WITH EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F816;RIGHTWARDS ARROW WITH EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F817;DOWNWARDS ARROW WITH EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F818;HEAVY LEFTWARDS ARROW WITH EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F819;HEAVY UPWARDS ARROW WITH EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F81A;HEAVY RIGHTWARDS ARROW WITH EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F81B;HEAVY DOWNWARDS ARROW WITH EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F81C;HEAVY LEFTWARDS ARROW WITH LARGE EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F81D;HEAVY UPWARDS ARROW WITH LARGE EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F81E;HEAVY RIGHTWARDS ARROW WITH LARGE EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F81F;HEAVY DOWNWARDS ARROW WITH LARGE EQUILATERAL ARROWHEAD;So;0;ON;;;;;N;;;;;-1F820;LEFTWARDS TRIANGLE-HEADED ARROW WITH NARROW SHAFT;So;0;ON;;;;;N;;;;;-1F821;UPWARDS TRIANGLE-HEADED ARROW WITH NARROW SHAFT;So;0;ON;;;;;N;;;;;-1F822;RIGHTWARDS TRIANGLE-HEADED ARROW WITH NARROW SHAFT;So;0;ON;;;;;N;;;;;-1F823;DOWNWARDS TRIANGLE-HEADED ARROW WITH NARROW SHAFT;So;0;ON;;;;;N;;;;;-1F824;LEFTWARDS TRIANGLE-HEADED ARROW WITH MEDIUM SHAFT;So;0;ON;;;;;N;;;;;-1F825;UPWARDS TRIANGLE-HEADED ARROW WITH MEDIUM SHAFT;So;0;ON;;;;;N;;;;;-1F826;RIGHTWARDS TRIANGLE-HEADED ARROW WITH MEDIUM SHAFT;So;0;ON;;;;;N;;;;;-1F827;DOWNWARDS TRIANGLE-HEADED ARROW WITH MEDIUM SHAFT;So;0;ON;;;;;N;;;;;-1F828;LEFTWARDS TRIANGLE-HEADED ARROW WITH BOLD SHAFT;So;0;ON;;;;;N;;;;;-1F829;UPWARDS TRIANGLE-HEADED ARROW WITH BOLD SHAFT;So;0;ON;;;;;N;;;;;-1F82A;RIGHTWARDS TRIANGLE-HEADED ARROW WITH BOLD SHAFT;So;0;ON;;;;;N;;;;;-1F82B;DOWNWARDS TRIANGLE-HEADED ARROW WITH BOLD SHAFT;So;0;ON;;;;;N;;;;;-1F82C;LEFTWARDS TRIANGLE-HEADED ARROW WITH HEAVY SHAFT;So;0;ON;;;;;N;;;;;-1F82D;UPWARDS TRIANGLE-HEADED ARROW WITH HEAVY SHAFT;So;0;ON;;;;;N;;;;;-1F82E;RIGHTWARDS TRIANGLE-HEADED ARROW WITH HEAVY SHAFT;So;0;ON;;;;;N;;;;;-1F82F;DOWNWARDS TRIANGLE-HEADED ARROW WITH HEAVY SHAFT;So;0;ON;;;;;N;;;;;-1F830;LEFTWARDS TRIANGLE-HEADED ARROW WITH VERY HEAVY SHAFT;So;0;ON;;;;;N;;;;;-1F831;UPWARDS TRIANGLE-HEADED ARROW WITH VERY HEAVY SHAFT;So;0;ON;;;;;N;;;;;-1F832;RIGHTWARDS TRIANGLE-HEADED ARROW WITH VERY HEAVY SHAFT;So;0;ON;;;;;N;;;;;-1F833;DOWNWARDS TRIANGLE-HEADED ARROW WITH VERY HEAVY SHAFT;So;0;ON;;;;;N;;;;;-1F834;LEFTWARDS FINGER-POST ARROW;So;0;ON;;;;;N;;;;;-1F835;UPWARDS FINGER-POST ARROW;So;0;ON;;;;;N;;;;;-1F836;RIGHTWARDS FINGER-POST ARROW;So;0;ON;;;;;N;;;;;-1F837;DOWNWARDS FINGER-POST ARROW;So;0;ON;;;;;N;;;;;-1F838;LEFTWARDS SQUARED ARROW;So;0;ON;;;;;N;;;;;-1F839;UPWARDS SQUARED ARROW;So;0;ON;;;;;N;;;;;-1F83A;RIGHTWARDS SQUARED ARROW;So;0;ON;;;;;N;;;;;-1F83B;DOWNWARDS SQUARED ARROW;So;0;ON;;;;;N;;;;;-1F83C;LEFTWARDS COMPRESSED ARROW;So;0;ON;;;;;N;;;;;-1F83D;UPWARDS COMPRESSED ARROW;So;0;ON;;;;;N;;;;;-1F83E;RIGHTWARDS COMPRESSED ARROW;So;0;ON;;;;;N;;;;;-1F83F;DOWNWARDS COMPRESSED ARROW;So;0;ON;;;;;N;;;;;-1F840;LEFTWARDS HEAVY COMPRESSED ARROW;So;0;ON;;;;;N;;;;;-1F841;UPWARDS HEAVY COMPRESSED ARROW;So;0;ON;;;;;N;;;;;-1F842;RIGHTWARDS HEAVY COMPRESSED ARROW;So;0;ON;;;;;N;;;;;-1F843;DOWNWARDS HEAVY COMPRESSED ARROW;So;0;ON;;;;;N;;;;;-1F844;LEFTWARDS HEAVY ARROW;So;0;ON;;;;;N;;;;;-1F845;UPWARDS HEAVY ARROW;So;0;ON;;;;;N;;;;;-1F846;RIGHTWARDS HEAVY ARROW;So;0;ON;;;;;N;;;;;-1F847;DOWNWARDS HEAVY ARROW;So;0;ON;;;;;N;;;;;-1F850;LEFTWARDS SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F851;UPWARDS SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F852;RIGHTWARDS SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F853;DOWNWARDS SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F854;NORTH WEST SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F855;NORTH EAST SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F856;SOUTH EAST SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F857;SOUTH WEST SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F858;LEFT RIGHT SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F859;UP DOWN SANS-SERIF ARROW;So;0;ON;;;;;N;;;;;-1F860;WIDE-HEADED LEFTWARDS LIGHT BARB ARROW;So;0;ON;;;;;N;;;;;-1F861;WIDE-HEADED UPWARDS LIGHT BARB ARROW;So;0;ON;;;;;N;;;;;-1F862;WIDE-HEADED RIGHTWARDS LIGHT BARB ARROW;So;0;ON;;;;;N;;;;;-1F863;WIDE-HEADED DOWNWARDS LIGHT BARB ARROW;So;0;ON;;;;;N;;;;;-1F864;WIDE-HEADED NORTH WEST LIGHT BARB ARROW;So;0;ON;;;;;N;;;;;-1F865;WIDE-HEADED NORTH EAST LIGHT BARB ARROW;So;0;ON;;;;;N;;;;;-1F866;WIDE-HEADED SOUTH EAST LIGHT BARB ARROW;So;0;ON;;;;;N;;;;;-1F867;WIDE-HEADED SOUTH WEST LIGHT BARB ARROW;So;0;ON;;;;;N;;;;;-1F868;WIDE-HEADED LEFTWARDS BARB ARROW;So;0;ON;;;;;N;;;;;-1F869;WIDE-HEADED UPWARDS BARB ARROW;So;0;ON;;;;;N;;;;;-1F86A;WIDE-HEADED RIGHTWARDS BARB ARROW;So;0;ON;;;;;N;;;;;-1F86B;WIDE-HEADED DOWNWARDS BARB ARROW;So;0;ON;;;;;N;;;;;-1F86C;WIDE-HEADED NORTH WEST BARB ARROW;So;0;ON;;;;;N;;;;;-1F86D;WIDE-HEADED NORTH EAST BARB ARROW;So;0;ON;;;;;N;;;;;-1F86E;WIDE-HEADED SOUTH EAST BARB ARROW;So;0;ON;;;;;N;;;;;-1F86F;WIDE-HEADED SOUTH WEST BARB ARROW;So;0;ON;;;;;N;;;;;-1F870;WIDE-HEADED LEFTWARDS MEDIUM BARB ARROW;So;0;ON;;;;;N;;;;;-1F871;WIDE-HEADED UPWARDS MEDIUM BARB ARROW;So;0;ON;;;;;N;;;;;-1F872;WIDE-HEADED RIGHTWARDS MEDIUM BARB ARROW;So;0;ON;;;;;N;;;;;-1F873;WIDE-HEADED DOWNWARDS MEDIUM BARB ARROW;So;0;ON;;;;;N;;;;;-1F874;WIDE-HEADED NORTH WEST MEDIUM BARB ARROW;So;0;ON;;;;;N;;;;;-1F875;WIDE-HEADED NORTH EAST MEDIUM BARB ARROW;So;0;ON;;;;;N;;;;;-1F876;WIDE-HEADED SOUTH EAST MEDIUM BARB ARROW;So;0;ON;;;;;N;;;;;-1F877;WIDE-HEADED SOUTH WEST MEDIUM BARB ARROW;So;0;ON;;;;;N;;;;;-1F878;WIDE-HEADED LEFTWARDS HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F879;WIDE-HEADED UPWARDS HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F87A;WIDE-HEADED RIGHTWARDS HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F87B;WIDE-HEADED DOWNWARDS HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F87C;WIDE-HEADED NORTH WEST HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F87D;WIDE-HEADED NORTH EAST HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F87E;WIDE-HEADED SOUTH EAST HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F87F;WIDE-HEADED SOUTH WEST HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F880;WIDE-HEADED LEFTWARDS VERY HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F881;WIDE-HEADED UPWARDS VERY HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F882;WIDE-HEADED RIGHTWARDS VERY HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F883;WIDE-HEADED DOWNWARDS VERY HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F884;WIDE-HEADED NORTH WEST VERY HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F885;WIDE-HEADED NORTH EAST VERY HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F886;WIDE-HEADED SOUTH EAST VERY HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F887;WIDE-HEADED SOUTH WEST VERY HEAVY BARB ARROW;So;0;ON;;;;;N;;;;;-1F890;LEFTWARDS TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F891;UPWARDS TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F892;RIGHTWARDS TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F893;DOWNWARDS TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F894;LEFTWARDS WHITE ARROW WITHIN TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F895;UPWARDS WHITE ARROW WITHIN TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F896;RIGHTWARDS WHITE ARROW WITHIN TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F897;DOWNWARDS WHITE ARROW WITHIN TRIANGLE ARROWHEAD;So;0;ON;;;;;N;;;;;-1F898;LEFTWARDS ARROW WITH NOTCHED TAIL;So;0;ON;;;;;N;;;;;-1F899;UPWARDS ARROW WITH NOTCHED TAIL;So;0;ON;;;;;N;;;;;-1F89A;RIGHTWARDS ARROW WITH NOTCHED TAIL;So;0;ON;;;;;N;;;;;-1F89B;DOWNWARDS ARROW WITH NOTCHED TAIL;So;0;ON;;;;;N;;;;;-1F89C;HEAVY ARROW SHAFT WIDTH ONE;So;0;ON;;;;;N;;;;;-1F89D;HEAVY ARROW SHAFT WIDTH TWO THIRDS;So;0;ON;;;;;N;;;;;-1F89E;HEAVY ARROW SHAFT WIDTH ONE HALF;So;0;ON;;;;;N;;;;;-1F89F;HEAVY ARROW SHAFT WIDTH ONE THIRD;So;0;ON;;;;;N;;;;;-1F8A0;LEFTWARDS BOTTOM-SHADED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A1;RIGHTWARDS BOTTOM SHADED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A2;LEFTWARDS TOP SHADED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A3;RIGHTWARDS TOP SHADED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A4;LEFTWARDS LEFT-SHADED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A5;RIGHTWARDS RIGHT-SHADED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A6;LEFTWARDS RIGHT-SHADED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A7;RIGHTWARDS LEFT-SHADED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A8;LEFTWARDS BACK-TILTED SHADOWED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8A9;RIGHTWARDS BACK-TILTED SHADOWED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8AA;LEFTWARDS FRONT-TILTED SHADOWED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8AB;RIGHTWARDS FRONT-TILTED SHADOWED WHITE ARROW;So;0;ON;;;;;N;;;;;-1F8AC;WHITE ARROW SHAFT WIDTH ONE;So;0;ON;;;;;N;;;;;-1F8AD;WHITE ARROW SHAFT WIDTH TWO THIRDS;So;0;ON;;;;;N;;;;;-20000;<CJK Ideograph Extension B, First>;Lo;0;L;;;;;N;;;;;-2A6D6;<CJK Ideograph Extension B, Last>;Lo;0;L;;;;;N;;;;;-2A700;<CJK Ideograph Extension C, First>;Lo;0;L;;;;;N;;;;;-2B734;<CJK Ideograph Extension C, Last>;Lo;0;L;;;;;N;;;;;-2B740;<CJK Ideograph Extension D, First>;Lo;0;L;;;;;N;;;;;-2B81D;<CJK Ideograph Extension D, Last>;Lo;0;L;;;;;N;;;;;-2F800;CJK COMPATIBILITY IDEOGRAPH-2F800;Lo;0;L;4E3D;;;;N;;;;;-2F801;CJK COMPATIBILITY IDEOGRAPH-2F801;Lo;0;L;4E38;;;;N;;;;;-2F802;CJK COMPATIBILITY IDEOGRAPH-2F802;Lo;0;L;4E41;;;;N;;;;;-2F803;CJK COMPATIBILITY IDEOGRAPH-2F803;Lo;0;L;20122;;;;N;;;;;-2F804;CJK COMPATIBILITY IDEOGRAPH-2F804;Lo;0;L;4F60;;;;N;;;;;-2F805;CJK COMPATIBILITY IDEOGRAPH-2F805;Lo;0;L;4FAE;;;;N;;;;;-2F806;CJK COMPATIBILITY IDEOGRAPH-2F806;Lo;0;L;4FBB;;;;N;;;;;-2F807;CJK COMPATIBILITY IDEOGRAPH-2F807;Lo;0;L;5002;;;;N;;;;;-2F808;CJK COMPATIBILITY IDEOGRAPH-2F808;Lo;0;L;507A;;;;N;;;;;-2F809;CJK COMPATIBILITY IDEOGRAPH-2F809;Lo;0;L;5099;;;;N;;;;;-2F80A;CJK COMPATIBILITY IDEOGRAPH-2F80A;Lo;0;L;50E7;;;;N;;;;;-2F80B;CJK COMPATIBILITY IDEOGRAPH-2F80B;Lo;0;L;50CF;;;;N;;;;;-2F80C;CJK COMPATIBILITY IDEOGRAPH-2F80C;Lo;0;L;349E;;;;N;;;;;-2F80D;CJK COMPATIBILITY IDEOGRAPH-2F80D;Lo;0;L;2063A;;;;N;;;;;-2F80E;CJK COMPATIBILITY IDEOGRAPH-2F80E;Lo;0;L;514D;;;;N;;;;;-2F80F;CJK COMPATIBILITY IDEOGRAPH-2F80F;Lo;0;L;5154;;;;N;;;;;-2F810;CJK COMPATIBILITY IDEOGRAPH-2F810;Lo;0;L;5164;;;;N;;;;;-2F811;CJK COMPATIBILITY IDEOGRAPH-2F811;Lo;0;L;5177;;;;N;;;;;-2F812;CJK COMPATIBILITY IDEOGRAPH-2F812;Lo;0;L;2051C;;;;N;;;;;-2F813;CJK COMPATIBILITY IDEOGRAPH-2F813;Lo;0;L;34B9;;;;N;;;;;-2F814;CJK COMPATIBILITY IDEOGRAPH-2F814;Lo;0;L;5167;;;;N;;;;;-2F815;CJK COMPATIBILITY IDEOGRAPH-2F815;Lo;0;L;518D;;;;N;;;;;-2F816;CJK COMPATIBILITY IDEOGRAPH-2F816;Lo;0;L;2054B;;;;N;;;;;-2F817;CJK COMPATIBILITY IDEOGRAPH-2F817;Lo;0;L;5197;;;;N;;;;;-2F818;CJK COMPATIBILITY IDEOGRAPH-2F818;Lo;0;L;51A4;;;;N;;;;;-2F819;CJK COMPATIBILITY IDEOGRAPH-2F819;Lo;0;L;4ECC;;;;N;;;;;-2F81A;CJK COMPATIBILITY IDEOGRAPH-2F81A;Lo;0;L;51AC;;;;N;;;;;-2F81B;CJK COMPATIBILITY IDEOGRAPH-2F81B;Lo;0;L;51B5;;;;N;;;;;-2F81C;CJK COMPATIBILITY IDEOGRAPH-2F81C;Lo;0;L;291DF;;;;N;;;;;-2F81D;CJK COMPATIBILITY IDEOGRAPH-2F81D;Lo;0;L;51F5;;;;N;;;;;-2F81E;CJK COMPATIBILITY IDEOGRAPH-2F81E;Lo;0;L;5203;;;;N;;;;;-2F81F;CJK COMPATIBILITY IDEOGRAPH-2F81F;Lo;0;L;34DF;;;;N;;;;;-2F820;CJK COMPATIBILITY IDEOGRAPH-2F820;Lo;0;L;523B;;;;N;;;;;-2F821;CJK COMPATIBILITY IDEOGRAPH-2F821;Lo;0;L;5246;;;;N;;;;;-2F822;CJK COMPATIBILITY IDEOGRAPH-2F822;Lo;0;L;5272;;;;N;;;;;-2F823;CJK COMPATIBILITY IDEOGRAPH-2F823;Lo;0;L;5277;;;;N;;;;;-2F824;CJK COMPATIBILITY IDEOGRAPH-2F824;Lo;0;L;3515;;;;N;;;;;-2F825;CJK COMPATIBILITY IDEOGRAPH-2F825;Lo;0;L;52C7;;;;N;;;;;-2F826;CJK COMPATIBILITY IDEOGRAPH-2F826;Lo;0;L;52C9;;;;N;;;;;-2F827;CJK COMPATIBILITY IDEOGRAPH-2F827;Lo;0;L;52E4;;;;N;;;;;-2F828;CJK COMPATIBILITY IDEOGRAPH-2F828;Lo;0;L;52FA;;;;N;;;;;-2F829;CJK COMPATIBILITY IDEOGRAPH-2F829;Lo;0;L;5305;;;;N;;;;;-2F82A;CJK COMPATIBILITY IDEOGRAPH-2F82A;Lo;0;L;5306;;;;N;;;;;-2F82B;CJK COMPATIBILITY IDEOGRAPH-2F82B;Lo;0;L;5317;;;;N;;;;;-2F82C;CJK COMPATIBILITY IDEOGRAPH-2F82C;Lo;0;L;5349;;;;N;;;;;-2F82D;CJK COMPATIBILITY IDEOGRAPH-2F82D;Lo;0;L;5351;;;;N;;;;;-2F82E;CJK COMPATIBILITY IDEOGRAPH-2F82E;Lo;0;L;535A;;;;N;;;;;-2F82F;CJK COMPATIBILITY IDEOGRAPH-2F82F;Lo;0;L;5373;;;;N;;;;;-2F830;CJK COMPATIBILITY IDEOGRAPH-2F830;Lo;0;L;537D;;;;N;;;;;-2F831;CJK COMPATIBILITY IDEOGRAPH-2F831;Lo;0;L;537F;;;;N;;;;;-2F832;CJK COMPATIBILITY IDEOGRAPH-2F832;Lo;0;L;537F;;;;N;;;;;-2F833;CJK COMPATIBILITY IDEOGRAPH-2F833;Lo;0;L;537F;;;;N;;;;;-2F834;CJK COMPATIBILITY IDEOGRAPH-2F834;Lo;0;L;20A2C;;;;N;;;;;-2F835;CJK COMPATIBILITY IDEOGRAPH-2F835;Lo;0;L;7070;;;;N;;;;;-2F836;CJK COMPATIBILITY IDEOGRAPH-2F836;Lo;0;L;53CA;;;;N;;;;;-2F837;CJK COMPATIBILITY IDEOGRAPH-2F837;Lo;0;L;53DF;;;;N;;;;;-2F838;CJK COMPATIBILITY IDEOGRAPH-2F838;Lo;0;L;20B63;;;;N;;;;;-2F839;CJK COMPATIBILITY IDEOGRAPH-2F839;Lo;0;L;53EB;;;;N;;;;;-2F83A;CJK COMPATIBILITY IDEOGRAPH-2F83A;Lo;0;L;53F1;;;;N;;;;;-2F83B;CJK COMPATIBILITY IDEOGRAPH-2F83B;Lo;0;L;5406;;;;N;;;;;-2F83C;CJK COMPATIBILITY IDEOGRAPH-2F83C;Lo;0;L;549E;;;;N;;;;;-2F83D;CJK COMPATIBILITY IDEOGRAPH-2F83D;Lo;0;L;5438;;;;N;;;;;-2F83E;CJK COMPATIBILITY IDEOGRAPH-2F83E;Lo;0;L;5448;;;;N;;;;;-2F83F;CJK COMPATIBILITY IDEOGRAPH-2F83F;Lo;0;L;5468;;;;N;;;;;-2F840;CJK COMPATIBILITY IDEOGRAPH-2F840;Lo;0;L;54A2;;;;N;;;;;-2F841;CJK COMPATIBILITY IDEOGRAPH-2F841;Lo;0;L;54F6;;;;N;;;;;-2F842;CJK COMPATIBILITY IDEOGRAPH-2F842;Lo;0;L;5510;;;;N;;;;;-2F843;CJK COMPATIBILITY IDEOGRAPH-2F843;Lo;0;L;5553;;;;N;;;;;-2F844;CJK COMPATIBILITY IDEOGRAPH-2F844;Lo;0;L;5563;;;;N;;;;;-2F845;CJK COMPATIBILITY IDEOGRAPH-2F845;Lo;0;L;5584;;;;N;;;;;-2F846;CJK COMPATIBILITY IDEOGRAPH-2F846;Lo;0;L;5584;;;;N;;;;;-2F847;CJK COMPATIBILITY IDEOGRAPH-2F847;Lo;0;L;5599;;;;N;;;;;-2F848;CJK COMPATIBILITY IDEOGRAPH-2F848;Lo;0;L;55AB;;;;N;;;;;-2F849;CJK COMPATIBILITY IDEOGRAPH-2F849;Lo;0;L;55B3;;;;N;;;;;-2F84A;CJK COMPATIBILITY IDEOGRAPH-2F84A;Lo;0;L;55C2;;;;N;;;;;-2F84B;CJK COMPATIBILITY IDEOGRAPH-2F84B;Lo;0;L;5716;;;;N;;;;;-2F84C;CJK COMPATIBILITY IDEOGRAPH-2F84C;Lo;0;L;5606;;;;N;;;;;-2F84D;CJK COMPATIBILITY IDEOGRAPH-2F84D;Lo;0;L;5717;;;;N;;;;;-2F84E;CJK COMPATIBILITY IDEOGRAPH-2F84E;Lo;0;L;5651;;;;N;;;;;-2F84F;CJK COMPATIBILITY IDEOGRAPH-2F84F;Lo;0;L;5674;;;;N;;;;;-2F850;CJK COMPATIBILITY IDEOGRAPH-2F850;Lo;0;L;5207;;;;N;;;;;-2F851;CJK COMPATIBILITY IDEOGRAPH-2F851;Lo;0;L;58EE;;;;N;;;;;-2F852;CJK COMPATIBILITY IDEOGRAPH-2F852;Lo;0;L;57CE;;;;N;;;;;-2F853;CJK COMPATIBILITY IDEOGRAPH-2F853;Lo;0;L;57F4;;;;N;;;;;-2F854;CJK COMPATIBILITY IDEOGRAPH-2F854;Lo;0;L;580D;;;;N;;;;;-2F855;CJK COMPATIBILITY IDEOGRAPH-2F855;Lo;0;L;578B;;;;N;;;;;-2F856;CJK COMPATIBILITY IDEOGRAPH-2F856;Lo;0;L;5832;;;;N;;;;;-2F857;CJK COMPATIBILITY IDEOGRAPH-2F857;Lo;0;L;5831;;;;N;;;;;-2F858;CJK COMPATIBILITY IDEOGRAPH-2F858;Lo;0;L;58AC;;;;N;;;;;-2F859;CJK COMPATIBILITY IDEOGRAPH-2F859;Lo;0;L;214E4;;;;N;;;;;-2F85A;CJK COMPATIBILITY IDEOGRAPH-2F85A;Lo;0;L;58F2;;;;N;;;;;-2F85B;CJK COMPATIBILITY IDEOGRAPH-2F85B;Lo;0;L;58F7;;;;N;;;;;-2F85C;CJK COMPATIBILITY IDEOGRAPH-2F85C;Lo;0;L;5906;;;;N;;;;;-2F85D;CJK COMPATIBILITY IDEOGRAPH-2F85D;Lo;0;L;591A;;;;N;;;;;-2F85E;CJK COMPATIBILITY IDEOGRAPH-2F85E;Lo;0;L;5922;;;;N;;;;;-2F85F;CJK COMPATIBILITY IDEOGRAPH-2F85F;Lo;0;L;5962;;;;N;;;;;-2F860;CJK COMPATIBILITY IDEOGRAPH-2F860;Lo;0;L;216A8;;;;N;;;;;-2F861;CJK COMPATIBILITY IDEOGRAPH-2F861;Lo;0;L;216EA;;;;N;;;;;-2F862;CJK COMPATIBILITY IDEOGRAPH-2F862;Lo;0;L;59EC;;;;N;;;;;-2F863;CJK COMPATIBILITY IDEOGRAPH-2F863;Lo;0;L;5A1B;;;;N;;;;;-2F864;CJK COMPATIBILITY IDEOGRAPH-2F864;Lo;0;L;5A27;;;;N;;;;;-2F865;CJK COMPATIBILITY IDEOGRAPH-2F865;Lo;0;L;59D8;;;;N;;;;;-2F866;CJK COMPATIBILITY IDEOGRAPH-2F866;Lo;0;L;5A66;;;;N;;;;;-2F867;CJK COMPATIBILITY IDEOGRAPH-2F867;Lo;0;L;36EE;;;;N;;;;;-2F868;CJK COMPATIBILITY IDEOGRAPH-2F868;Lo;0;L;36FC;;;;N;;;;;-2F869;CJK COMPATIBILITY IDEOGRAPH-2F869;Lo;0;L;5B08;;;;N;;;;;-2F86A;CJK COMPATIBILITY IDEOGRAPH-2F86A;Lo;0;L;5B3E;;;;N;;;;;-2F86B;CJK COMPATIBILITY IDEOGRAPH-2F86B;Lo;0;L;5B3E;;;;N;;;;;-2F86C;CJK COMPATIBILITY IDEOGRAPH-2F86C;Lo;0;L;219C8;;;;N;;;;;-2F86D;CJK COMPATIBILITY IDEOGRAPH-2F86D;Lo;0;L;5BC3;;;;N;;;;;-2F86E;CJK COMPATIBILITY IDEOGRAPH-2F86E;Lo;0;L;5BD8;;;;N;;;;;-2F86F;CJK COMPATIBILITY IDEOGRAPH-2F86F;Lo;0;L;5BE7;;;;N;;;;;-2F870;CJK COMPATIBILITY IDEOGRAPH-2F870;Lo;0;L;5BF3;;;;N;;;;;-2F871;CJK COMPATIBILITY IDEOGRAPH-2F871;Lo;0;L;21B18;;;;N;;;;;-2F872;CJK COMPATIBILITY IDEOGRAPH-2F872;Lo;0;L;5BFF;;;;N;;;;;-2F873;CJK COMPATIBILITY IDEOGRAPH-2F873;Lo;0;L;5C06;;;;N;;;;;-2F874;CJK COMPATIBILITY IDEOGRAPH-2F874;Lo;0;L;5F53;;;;N;;;;;-2F875;CJK COMPATIBILITY IDEOGRAPH-2F875;Lo;0;L;5C22;;;;N;;;;;-2F876;CJK COMPATIBILITY IDEOGRAPH-2F876;Lo;0;L;3781;;;;N;;;;;-2F877;CJK COMPATIBILITY IDEOGRAPH-2F877;Lo;0;L;5C60;;;;N;;;;;-2F878;CJK COMPATIBILITY IDEOGRAPH-2F878;Lo;0;L;5C6E;;;;N;;;;;-2F879;CJK COMPATIBILITY IDEOGRAPH-2F879;Lo;0;L;5CC0;;;;N;;;;;-2F87A;CJK COMPATIBILITY IDEOGRAPH-2F87A;Lo;0;L;5C8D;;;;N;;;;;-2F87B;CJK COMPATIBILITY IDEOGRAPH-2F87B;Lo;0;L;21DE4;;;;N;;;;;-2F87C;CJK COMPATIBILITY IDEOGRAPH-2F87C;Lo;0;L;5D43;;;;N;;;;;-2F87D;CJK COMPATIBILITY IDEOGRAPH-2F87D;Lo;0;L;21DE6;;;;N;;;;;-2F87E;CJK COMPATIBILITY IDEOGRAPH-2F87E;Lo;0;L;5D6E;;;;N;;;;;-2F87F;CJK COMPATIBILITY IDEOGRAPH-2F87F;Lo;0;L;5D6B;;;;N;;;;;-2F880;CJK COMPATIBILITY IDEOGRAPH-2F880;Lo;0;L;5D7C;;;;N;;;;;-2F881;CJK COMPATIBILITY IDEOGRAPH-2F881;Lo;0;L;5DE1;;;;N;;;;;-2F882;CJK COMPATIBILITY IDEOGRAPH-2F882;Lo;0;L;5DE2;;;;N;;;;;-2F883;CJK COMPATIBILITY IDEOGRAPH-2F883;Lo;0;L;382F;;;;N;;;;;-2F884;CJK COMPATIBILITY IDEOGRAPH-2F884;Lo;0;L;5DFD;;;;N;;;;;-2F885;CJK COMPATIBILITY IDEOGRAPH-2F885;Lo;0;L;5E28;;;;N;;;;;-2F886;CJK COMPATIBILITY IDEOGRAPH-2F886;Lo;0;L;5E3D;;;;N;;;;;-2F887;CJK COMPATIBILITY IDEOGRAPH-2F887;Lo;0;L;5E69;;;;N;;;;;-2F888;CJK COMPATIBILITY IDEOGRAPH-2F888;Lo;0;L;3862;;;;N;;;;;-2F889;CJK COMPATIBILITY IDEOGRAPH-2F889;Lo;0;L;22183;;;;N;;;;;-2F88A;CJK COMPATIBILITY IDEOGRAPH-2F88A;Lo;0;L;387C;;;;N;;;;;-2F88B;CJK COMPATIBILITY IDEOGRAPH-2F88B;Lo;0;L;5EB0;;;;N;;;;;-2F88C;CJK COMPATIBILITY IDEOGRAPH-2F88C;Lo;0;L;5EB3;;;;N;;;;;-2F88D;CJK COMPATIBILITY IDEOGRAPH-2F88D;Lo;0;L;5EB6;;;;N;;;;;-2F88E;CJK COMPATIBILITY IDEOGRAPH-2F88E;Lo;0;L;5ECA;;;;N;;;;;-2F88F;CJK COMPATIBILITY IDEOGRAPH-2F88F;Lo;0;L;2A392;;;;N;;;;;-2F890;CJK COMPATIBILITY IDEOGRAPH-2F890;Lo;0;L;5EFE;;;9;N;;;;;-2F891;CJK COMPATIBILITY IDEOGRAPH-2F891;Lo;0;L;22331;;;;N;;;;;-2F892;CJK COMPATIBILITY IDEOGRAPH-2F892;Lo;0;L;22331;;;;N;;;;;-2F893;CJK COMPATIBILITY IDEOGRAPH-2F893;Lo;0;L;8201;;;;N;;;;;-2F894;CJK COMPATIBILITY IDEOGRAPH-2F894;Lo;0;L;5F22;;;;N;;;;;-2F895;CJK COMPATIBILITY IDEOGRAPH-2F895;Lo;0;L;5F22;;;;N;;;;;-2F896;CJK COMPATIBILITY IDEOGRAPH-2F896;Lo;0;L;38C7;;;;N;;;;;-2F897;CJK COMPATIBILITY IDEOGRAPH-2F897;Lo;0;L;232B8;;;;N;;;;;-2F898;CJK COMPATIBILITY IDEOGRAPH-2F898;Lo;0;L;261DA;;;;N;;;;;-2F899;CJK COMPATIBILITY IDEOGRAPH-2F899;Lo;0;L;5F62;;;;N;;;;;-2F89A;CJK COMPATIBILITY IDEOGRAPH-2F89A;Lo;0;L;5F6B;;;;N;;;;;-2F89B;CJK COMPATIBILITY IDEOGRAPH-2F89B;Lo;0;L;38E3;;;;N;;;;;-2F89C;CJK COMPATIBILITY IDEOGRAPH-2F89C;Lo;0;L;5F9A;;;;N;;;;;-2F89D;CJK COMPATIBILITY IDEOGRAPH-2F89D;Lo;0;L;5FCD;;;;N;;;;;-2F89E;CJK COMPATIBILITY IDEOGRAPH-2F89E;Lo;0;L;5FD7;;;;N;;;;;-2F89F;CJK COMPATIBILITY IDEOGRAPH-2F89F;Lo;0;L;5FF9;;;;N;;;;;-2F8A0;CJK COMPATIBILITY IDEOGRAPH-2F8A0;Lo;0;L;6081;;;;N;;;;;-2F8A1;CJK COMPATIBILITY IDEOGRAPH-2F8A1;Lo;0;L;393A;;;;N;;;;;-2F8A2;CJK COMPATIBILITY IDEOGRAPH-2F8A2;Lo;0;L;391C;;;;N;;;;;-2F8A3;CJK COMPATIBILITY IDEOGRAPH-2F8A3;Lo;0;L;6094;;;;N;;;;;-2F8A4;CJK COMPATIBILITY IDEOGRAPH-2F8A4;Lo;0;L;226D4;;;;N;;;;;-2F8A5;CJK COMPATIBILITY IDEOGRAPH-2F8A5;Lo;0;L;60C7;;;;N;;;;;-2F8A6;CJK COMPATIBILITY IDEOGRAPH-2F8A6;Lo;0;L;6148;;;;N;;;;;-2F8A7;CJK COMPATIBILITY IDEOGRAPH-2F8A7;Lo;0;L;614C;;;;N;;;;;-2F8A8;CJK COMPATIBILITY IDEOGRAPH-2F8A8;Lo;0;L;614E;;;;N;;;;;-2F8A9;CJK COMPATIBILITY IDEOGRAPH-2F8A9;Lo;0;L;614C;;;;N;;;;;-2F8AA;CJK COMPATIBILITY IDEOGRAPH-2F8AA;Lo;0;L;617A;;;;N;;;;;-2F8AB;CJK COMPATIBILITY IDEOGRAPH-2F8AB;Lo;0;L;618E;;;;N;;;;;-2F8AC;CJK COMPATIBILITY IDEOGRAPH-2F8AC;Lo;0;L;61B2;;;;N;;;;;-2F8AD;CJK COMPATIBILITY IDEOGRAPH-2F8AD;Lo;0;L;61A4;;;;N;;;;;-2F8AE;CJK COMPATIBILITY IDEOGRAPH-2F8AE;Lo;0;L;61AF;;;;N;;;;;-2F8AF;CJK COMPATIBILITY IDEOGRAPH-2F8AF;Lo;0;L;61DE;;;;N;;;;;-2F8B0;CJK COMPATIBILITY IDEOGRAPH-2F8B0;Lo;0;L;61F2;;;;N;;;;;-2F8B1;CJK COMPATIBILITY IDEOGRAPH-2F8B1;Lo;0;L;61F6;;;;N;;;;;-2F8B2;CJK COMPATIBILITY IDEOGRAPH-2F8B2;Lo;0;L;6210;;;;N;;;;;-2F8B3;CJK COMPATIBILITY IDEOGRAPH-2F8B3;Lo;0;L;621B;;;;N;;;;;-2F8B4;CJK COMPATIBILITY IDEOGRAPH-2F8B4;Lo;0;L;625D;;;;N;;;;;-2F8B5;CJK COMPATIBILITY IDEOGRAPH-2F8B5;Lo;0;L;62B1;;;;N;;;;;-2F8B6;CJK COMPATIBILITY IDEOGRAPH-2F8B6;Lo;0;L;62D4;;;;N;;;;;-2F8B7;CJK COMPATIBILITY IDEOGRAPH-2F8B7;Lo;0;L;6350;;;;N;;;;;-2F8B8;CJK COMPATIBILITY IDEOGRAPH-2F8B8;Lo;0;L;22B0C;;;;N;;;;;-2F8B9;CJK COMPATIBILITY IDEOGRAPH-2F8B9;Lo;0;L;633D;;;;N;;;;;-2F8BA;CJK COMPATIBILITY IDEOGRAPH-2F8BA;Lo;0;L;62FC;;;;N;;;;;-2F8BB;CJK COMPATIBILITY IDEOGRAPH-2F8BB;Lo;0;L;6368;;;;N;;;;;-2F8BC;CJK COMPATIBILITY IDEOGRAPH-2F8BC;Lo;0;L;6383;;;;N;;;;;-2F8BD;CJK COMPATIBILITY IDEOGRAPH-2F8BD;Lo;0;L;63E4;;;;N;;;;;-2F8BE;CJK COMPATIBILITY IDEOGRAPH-2F8BE;Lo;0;L;22BF1;;;;N;;;;;-2F8BF;CJK COMPATIBILITY IDEOGRAPH-2F8BF;Lo;0;L;6422;;;;N;;;;;-2F8C0;CJK COMPATIBILITY IDEOGRAPH-2F8C0;Lo;0;L;63C5;;;;N;;;;;-2F8C1;CJK COMPATIBILITY IDEOGRAPH-2F8C1;Lo;0;L;63A9;;;;N;;;;;-2F8C2;CJK COMPATIBILITY IDEOGRAPH-2F8C2;Lo;0;L;3A2E;;;;N;;;;;-2F8C3;CJK COMPATIBILITY IDEOGRAPH-2F8C3;Lo;0;L;6469;;;;N;;;;;-2F8C4;CJK COMPATIBILITY IDEOGRAPH-2F8C4;Lo;0;L;647E;;;;N;;;;;-2F8C5;CJK COMPATIBILITY IDEOGRAPH-2F8C5;Lo;0;L;649D;;;;N;;;;;-2F8C6;CJK COMPATIBILITY IDEOGRAPH-2F8C6;Lo;0;L;6477;;;;N;;;;;-2F8C7;CJK COMPATIBILITY IDEOGRAPH-2F8C7;Lo;0;L;3A6C;;;;N;;;;;-2F8C8;CJK COMPATIBILITY IDEOGRAPH-2F8C8;Lo;0;L;654F;;;;N;;;;;-2F8C9;CJK COMPATIBILITY IDEOGRAPH-2F8C9;Lo;0;L;656C;;;;N;;;;;-2F8CA;CJK COMPATIBILITY IDEOGRAPH-2F8CA;Lo;0;L;2300A;;;;N;;;;;-2F8CB;CJK COMPATIBILITY IDEOGRAPH-2F8CB;Lo;0;L;65E3;;;;N;;;;;-2F8CC;CJK COMPATIBILITY IDEOGRAPH-2F8CC;Lo;0;L;66F8;;;;N;;;;;-2F8CD;CJK COMPATIBILITY IDEOGRAPH-2F8CD;Lo;0;L;6649;;;;N;;;;;-2F8CE;CJK COMPATIBILITY IDEOGRAPH-2F8CE;Lo;0;L;3B19;;;;N;;;;;-2F8CF;CJK COMPATIBILITY IDEOGRAPH-2F8CF;Lo;0;L;6691;;;;N;;;;;-2F8D0;CJK COMPATIBILITY IDEOGRAPH-2F8D0;Lo;0;L;3B08;;;;N;;;;;-2F8D1;CJK COMPATIBILITY IDEOGRAPH-2F8D1;Lo;0;L;3AE4;;;;N;;;;;-2F8D2;CJK COMPATIBILITY IDEOGRAPH-2F8D2;Lo;0;L;5192;;;;N;;;;;-2F8D3;CJK COMPATIBILITY IDEOGRAPH-2F8D3;Lo;0;L;5195;;;;N;;;;;-2F8D4;CJK COMPATIBILITY IDEOGRAPH-2F8D4;Lo;0;L;6700;;;;N;;;;;-2F8D5;CJK COMPATIBILITY IDEOGRAPH-2F8D5;Lo;0;L;669C;;;;N;;;;;-2F8D6;CJK COMPATIBILITY IDEOGRAPH-2F8D6;Lo;0;L;80AD;;;;N;;;;;-2F8D7;CJK COMPATIBILITY IDEOGRAPH-2F8D7;Lo;0;L;43D9;;;;N;;;;;-2F8D8;CJK COMPATIBILITY IDEOGRAPH-2F8D8;Lo;0;L;6717;;;;N;;;;;-2F8D9;CJK COMPATIBILITY IDEOGRAPH-2F8D9;Lo;0;L;671B;;;;N;;;;;-2F8DA;CJK COMPATIBILITY IDEOGRAPH-2F8DA;Lo;0;L;6721;;;;N;;;;;-2F8DB;CJK COMPATIBILITY IDEOGRAPH-2F8DB;Lo;0;L;675E;;;;N;;;;;-2F8DC;CJK COMPATIBILITY IDEOGRAPH-2F8DC;Lo;0;L;6753;;;;N;;;;;-2F8DD;CJK COMPATIBILITY IDEOGRAPH-2F8DD;Lo;0;L;233C3;;;;N;;;;;-2F8DE;CJK COMPATIBILITY IDEOGRAPH-2F8DE;Lo;0;L;3B49;;;;N;;;;;-2F8DF;CJK COMPATIBILITY IDEOGRAPH-2F8DF;Lo;0;L;67FA;;;;N;;;;;-2F8E0;CJK COMPATIBILITY IDEOGRAPH-2F8E0;Lo;0;L;6785;;;;N;;;;;-2F8E1;CJK COMPATIBILITY IDEOGRAPH-2F8E1;Lo;0;L;6852;;;;N;;;;;-2F8E2;CJK COMPATIBILITY IDEOGRAPH-2F8E2;Lo;0;L;6885;;;;N;;;;;-2F8E3;CJK COMPATIBILITY IDEOGRAPH-2F8E3;Lo;0;L;2346D;;;;N;;;;;-2F8E4;CJK COMPATIBILITY IDEOGRAPH-2F8E4;Lo;0;L;688E;;;;N;;;;;-2F8E5;CJK COMPATIBILITY IDEOGRAPH-2F8E5;Lo;0;L;681F;;;;N;;;;;-2F8E6;CJK COMPATIBILITY IDEOGRAPH-2F8E6;Lo;0;L;6914;;;;N;;;;;-2F8E7;CJK COMPATIBILITY IDEOGRAPH-2F8E7;Lo;0;L;3B9D;;;;N;;;;;-2F8E8;CJK COMPATIBILITY IDEOGRAPH-2F8E8;Lo;0;L;6942;;;;N;;;;;-2F8E9;CJK COMPATIBILITY IDEOGRAPH-2F8E9;Lo;0;L;69A3;;;;N;;;;;-2F8EA;CJK COMPATIBILITY IDEOGRAPH-2F8EA;Lo;0;L;69EA;;;;N;;;;;-2F8EB;CJK COMPATIBILITY IDEOGRAPH-2F8EB;Lo;0;L;6AA8;;;;N;;;;;-2F8EC;CJK COMPATIBILITY IDEOGRAPH-2F8EC;Lo;0;L;236A3;;;;N;;;;;-2F8ED;CJK COMPATIBILITY IDEOGRAPH-2F8ED;Lo;0;L;6ADB;;;;N;;;;;-2F8EE;CJK COMPATIBILITY IDEOGRAPH-2F8EE;Lo;0;L;3C18;;;;N;;;;;-2F8EF;CJK COMPATIBILITY IDEOGRAPH-2F8EF;Lo;0;L;6B21;;;;N;;;;;-2F8F0;CJK COMPATIBILITY IDEOGRAPH-2F8F0;Lo;0;L;238A7;;;;N;;;;;-2F8F1;CJK COMPATIBILITY IDEOGRAPH-2F8F1;Lo;0;L;6B54;;;;N;;;;;-2F8F2;CJK COMPATIBILITY IDEOGRAPH-2F8F2;Lo;0;L;3C4E;;;;N;;;;;-2F8F3;CJK COMPATIBILITY IDEOGRAPH-2F8F3;Lo;0;L;6B72;;;;N;;;;;-2F8F4;CJK COMPATIBILITY IDEOGRAPH-2F8F4;Lo;0;L;6B9F;;;;N;;;;;-2F8F5;CJK COMPATIBILITY IDEOGRAPH-2F8F5;Lo;0;L;6BBA;;;;N;;;;;-2F8F6;CJK COMPATIBILITY IDEOGRAPH-2F8F6;Lo;0;L;6BBB;;;;N;;;;;-2F8F7;CJK COMPATIBILITY IDEOGRAPH-2F8F7;Lo;0;L;23A8D;;;;N;;;;;-2F8F8;CJK COMPATIBILITY IDEOGRAPH-2F8F8;Lo;0;L;21D0B;;;;N;;;;;-2F8F9;CJK COMPATIBILITY IDEOGRAPH-2F8F9;Lo;0;L;23AFA;;;;N;;;;;-2F8FA;CJK COMPATIBILITY IDEOGRAPH-2F8FA;Lo;0;L;6C4E;;;;N;;;;;-2F8FB;CJK COMPATIBILITY IDEOGRAPH-2F8FB;Lo;0;L;23CBC;;;;N;;;;;-2F8FC;CJK COMPATIBILITY IDEOGRAPH-2F8FC;Lo;0;L;6CBF;;;;N;;;;;-2F8FD;CJK COMPATIBILITY IDEOGRAPH-2F8FD;Lo;0;L;6CCD;;;;N;;;;;-2F8FE;CJK COMPATIBILITY IDEOGRAPH-2F8FE;Lo;0;L;6C67;;;;N;;;;;-2F8FF;CJK COMPATIBILITY IDEOGRAPH-2F8FF;Lo;0;L;6D16;;;;N;;;;;-2F900;CJK COMPATIBILITY IDEOGRAPH-2F900;Lo;0;L;6D3E;;;;N;;;;;-2F901;CJK COMPATIBILITY IDEOGRAPH-2F901;Lo;0;L;6D77;;;;N;;;;;-2F902;CJK COMPATIBILITY IDEOGRAPH-2F902;Lo;0;L;6D41;;;;N;;;;;-2F903;CJK COMPATIBILITY IDEOGRAPH-2F903;Lo;0;L;6D69;;;;N;;;;;-2F904;CJK COMPATIBILITY IDEOGRAPH-2F904;Lo;0;L;6D78;;;;N;;;;;-2F905;CJK COMPATIBILITY IDEOGRAPH-2F905;Lo;0;L;6D85;;;;N;;;;;-2F906;CJK COMPATIBILITY IDEOGRAPH-2F906;Lo;0;L;23D1E;;;;N;;;;;-2F907;CJK COMPATIBILITY IDEOGRAPH-2F907;Lo;0;L;6D34;;;;N;;;;;-2F908;CJK COMPATIBILITY IDEOGRAPH-2F908;Lo;0;L;6E2F;;;;N;;;;;-2F909;CJK COMPATIBILITY IDEOGRAPH-2F909;Lo;0;L;6E6E;;;;N;;;;;-2F90A;CJK COMPATIBILITY IDEOGRAPH-2F90A;Lo;0;L;3D33;;;;N;;;;;-2F90B;CJK COMPATIBILITY IDEOGRAPH-2F90B;Lo;0;L;6ECB;;;;N;;;;;-2F90C;CJK COMPATIBILITY IDEOGRAPH-2F90C;Lo;0;L;6EC7;;;;N;;;;;-2F90D;CJK COMPATIBILITY IDEOGRAPH-2F90D;Lo;0;L;23ED1;;;;N;;;;;-2F90E;CJK COMPATIBILITY IDEOGRAPH-2F90E;Lo;0;L;6DF9;;;;N;;;;;-2F90F;CJK COMPATIBILITY IDEOGRAPH-2F90F;Lo;0;L;6F6E;;;;N;;;;;-2F910;CJK COMPATIBILITY IDEOGRAPH-2F910;Lo;0;L;23F5E;;;;N;;;;;-2F911;CJK COMPATIBILITY IDEOGRAPH-2F911;Lo;0;L;23F8E;;;;N;;;;;-2F912;CJK COMPATIBILITY IDEOGRAPH-2F912;Lo;0;L;6FC6;;;;N;;;;;-2F913;CJK COMPATIBILITY IDEOGRAPH-2F913;Lo;0;L;7039;;;;N;;;;;-2F914;CJK COMPATIBILITY IDEOGRAPH-2F914;Lo;0;L;701E;;;;N;;;;;-2F915;CJK COMPATIBILITY IDEOGRAPH-2F915;Lo;0;L;701B;;;;N;;;;;-2F916;CJK COMPATIBILITY IDEOGRAPH-2F916;Lo;0;L;3D96;;;;N;;;;;-2F917;CJK COMPATIBILITY IDEOGRAPH-2F917;Lo;0;L;704A;;;;N;;;;;-2F918;CJK COMPATIBILITY IDEOGRAPH-2F918;Lo;0;L;707D;;;;N;;;;;-2F919;CJK COMPATIBILITY IDEOGRAPH-2F919;Lo;0;L;7077;;;;N;;;;;-2F91A;CJK COMPATIBILITY IDEOGRAPH-2F91A;Lo;0;L;70AD;;;;N;;;;;-2F91B;CJK COMPATIBILITY IDEOGRAPH-2F91B;Lo;0;L;20525;;;;N;;;;;-2F91C;CJK COMPATIBILITY IDEOGRAPH-2F91C;Lo;0;L;7145;;;;N;;;;;-2F91D;CJK COMPATIBILITY IDEOGRAPH-2F91D;Lo;0;L;24263;;;;N;;;;;-2F91E;CJK COMPATIBILITY IDEOGRAPH-2F91E;Lo;0;L;719C;;;;N;;;;;-2F91F;CJK COMPATIBILITY IDEOGRAPH-2F91F;Lo;0;L;243AB;;;;N;;;;;-2F920;CJK COMPATIBILITY IDEOGRAPH-2F920;Lo;0;L;7228;;;;N;;;;;-2F921;CJK COMPATIBILITY IDEOGRAPH-2F921;Lo;0;L;7235;;;;N;;;;;-2F922;CJK COMPATIBILITY IDEOGRAPH-2F922;Lo;0;L;7250;;;;N;;;;;-2F923;CJK COMPATIBILITY IDEOGRAPH-2F923;Lo;0;L;24608;;;;N;;;;;-2F924;CJK COMPATIBILITY IDEOGRAPH-2F924;Lo;0;L;7280;;;;N;;;;;-2F925;CJK COMPATIBILITY IDEOGRAPH-2F925;Lo;0;L;7295;;;;N;;;;;-2F926;CJK COMPATIBILITY IDEOGRAPH-2F926;Lo;0;L;24735;;;;N;;;;;-2F927;CJK COMPATIBILITY IDEOGRAPH-2F927;Lo;0;L;24814;;;;N;;;;;-2F928;CJK COMPATIBILITY IDEOGRAPH-2F928;Lo;0;L;737A;;;;N;;;;;-2F929;CJK COMPATIBILITY IDEOGRAPH-2F929;Lo;0;L;738B;;;;N;;;;;-2F92A;CJK COMPATIBILITY IDEOGRAPH-2F92A;Lo;0;L;3EAC;;;;N;;;;;-2F92B;CJK COMPATIBILITY IDEOGRAPH-2F92B;Lo;0;L;73A5;;;;N;;;;;-2F92C;CJK COMPATIBILITY IDEOGRAPH-2F92C;Lo;0;L;3EB8;;;;N;;;;;-2F92D;CJK COMPATIBILITY IDEOGRAPH-2F92D;Lo;0;L;3EB8;;;;N;;;;;-2F92E;CJK COMPATIBILITY IDEOGRAPH-2F92E;Lo;0;L;7447;;;;N;;;;;-2F92F;CJK COMPATIBILITY IDEOGRAPH-2F92F;Lo;0;L;745C;;;;N;;;;;-2F930;CJK COMPATIBILITY IDEOGRAPH-2F930;Lo;0;L;7471;;;;N;;;;;-2F931;CJK COMPATIBILITY IDEOGRAPH-2F931;Lo;0;L;7485;;;;N;;;;;-2F932;CJK COMPATIBILITY IDEOGRAPH-2F932;Lo;0;L;74CA;;;;N;;;;;-2F933;CJK COMPATIBILITY IDEOGRAPH-2F933;Lo;0;L;3F1B;;;;N;;;;;-2F934;CJK COMPATIBILITY IDEOGRAPH-2F934;Lo;0;L;7524;;;;N;;;;;-2F935;CJK COMPATIBILITY IDEOGRAPH-2F935;Lo;0;L;24C36;;;;N;;;;;-2F936;CJK COMPATIBILITY IDEOGRAPH-2F936;Lo;0;L;753E;;;;N;;;;;-2F937;CJK COMPATIBILITY IDEOGRAPH-2F937;Lo;0;L;24C92;;;;N;;;;;-2F938;CJK COMPATIBILITY IDEOGRAPH-2F938;Lo;0;L;7570;;;;N;;;;;-2F939;CJK COMPATIBILITY IDEOGRAPH-2F939;Lo;0;L;2219F;;;;N;;;;;-2F93A;CJK COMPATIBILITY IDEOGRAPH-2F93A;Lo;0;L;7610;;;;N;;;;;-2F93B;CJK COMPATIBILITY IDEOGRAPH-2F93B;Lo;0;L;24FA1;;;;N;;;;;-2F93C;CJK COMPATIBILITY IDEOGRAPH-2F93C;Lo;0;L;24FB8;;;;N;;;;;-2F93D;CJK COMPATIBILITY IDEOGRAPH-2F93D;Lo;0;L;25044;;;;N;;;;;-2F93E;CJK COMPATIBILITY IDEOGRAPH-2F93E;Lo;0;L;3FFC;;;;N;;;;;-2F93F;CJK COMPATIBILITY IDEOGRAPH-2F93F;Lo;0;L;4008;;;;N;;;;;-2F940;CJK COMPATIBILITY IDEOGRAPH-2F940;Lo;0;L;76F4;;;;N;;;;;-2F941;CJK COMPATIBILITY IDEOGRAPH-2F941;Lo;0;L;250F3;;;;N;;;;;-2F942;CJK COMPATIBILITY IDEOGRAPH-2F942;Lo;0;L;250F2;;;;N;;;;;-2F943;CJK COMPATIBILITY IDEOGRAPH-2F943;Lo;0;L;25119;;;;N;;;;;-2F944;CJK COMPATIBILITY IDEOGRAPH-2F944;Lo;0;L;25133;;;;N;;;;;-2F945;CJK COMPATIBILITY IDEOGRAPH-2F945;Lo;0;L;771E;;;;N;;;;;-2F946;CJK COMPATIBILITY IDEOGRAPH-2F946;Lo;0;L;771F;;;;N;;;;;-2F947;CJK COMPATIBILITY IDEOGRAPH-2F947;Lo;0;L;771F;;;;N;;;;;-2F948;CJK COMPATIBILITY IDEOGRAPH-2F948;Lo;0;L;774A;;;;N;;;;;-2F949;CJK COMPATIBILITY IDEOGRAPH-2F949;Lo;0;L;4039;;;;N;;;;;-2F94A;CJK COMPATIBILITY IDEOGRAPH-2F94A;Lo;0;L;778B;;;;N;;;;;-2F94B;CJK COMPATIBILITY IDEOGRAPH-2F94B;Lo;0;L;4046;;;;N;;;;;-2F94C;CJK COMPATIBILITY IDEOGRAPH-2F94C;Lo;0;L;4096;;;;N;;;;;-2F94D;CJK COMPATIBILITY IDEOGRAPH-2F94D;Lo;0;L;2541D;;;;N;;;;;-2F94E;CJK COMPATIBILITY IDEOGRAPH-2F94E;Lo;0;L;784E;;;;N;;;;;-2F94F;CJK COMPATIBILITY IDEOGRAPH-2F94F;Lo;0;L;788C;;;;N;;;;;-2F950;CJK COMPATIBILITY IDEOGRAPH-2F950;Lo;0;L;78CC;;;;N;;;;;-2F951;CJK COMPATIBILITY IDEOGRAPH-2F951;Lo;0;L;40E3;;;;N;;;;;-2F952;CJK COMPATIBILITY IDEOGRAPH-2F952;Lo;0;L;25626;;;;N;;;;;-2F953;CJK COMPATIBILITY IDEOGRAPH-2F953;Lo;0;L;7956;;;;N;;;;;-2F954;CJK COMPATIBILITY IDEOGRAPH-2F954;Lo;0;L;2569A;;;;N;;;;;-2F955;CJK COMPATIBILITY IDEOGRAPH-2F955;Lo;0;L;256C5;;;;N;;;;;-2F956;CJK COMPATIBILITY IDEOGRAPH-2F956;Lo;0;L;798F;;;;N;;;;;-2F957;CJK COMPATIBILITY IDEOGRAPH-2F957;Lo;0;L;79EB;;;;N;;;;;-2F958;CJK COMPATIBILITY IDEOGRAPH-2F958;Lo;0;L;412F;;;;N;;;;;-2F959;CJK COMPATIBILITY IDEOGRAPH-2F959;Lo;0;L;7A40;;;;N;;;;;-2F95A;CJK COMPATIBILITY IDEOGRAPH-2F95A;Lo;0;L;7A4A;;;;N;;;;;-2F95B;CJK COMPATIBILITY IDEOGRAPH-2F95B;Lo;0;L;7A4F;;;;N;;;;;-2F95C;CJK COMPATIBILITY IDEOGRAPH-2F95C;Lo;0;L;2597C;;;;N;;;;;-2F95D;CJK COMPATIBILITY IDEOGRAPH-2F95D;Lo;0;L;25AA7;;;;N;;;;;-2F95E;CJK COMPATIBILITY IDEOGRAPH-2F95E;Lo;0;L;25AA7;;;;N;;;;;-2F95F;CJK COMPATIBILITY IDEOGRAPH-2F95F;Lo;0;L;7AEE;;;;N;;;;;-2F960;CJK COMPATIBILITY IDEOGRAPH-2F960;Lo;0;L;4202;;;;N;;;;;-2F961;CJK COMPATIBILITY IDEOGRAPH-2F961;Lo;0;L;25BAB;;;;N;;;;;-2F962;CJK COMPATIBILITY IDEOGRAPH-2F962;Lo;0;L;7BC6;;;;N;;;;;-2F963;CJK COMPATIBILITY IDEOGRAPH-2F963;Lo;0;L;7BC9;;;;N;;;;;-2F964;CJK COMPATIBILITY IDEOGRAPH-2F964;Lo;0;L;4227;;;;N;;;;;-2F965;CJK COMPATIBILITY IDEOGRAPH-2F965;Lo;0;L;25C80;;;;N;;;;;-2F966;CJK COMPATIBILITY IDEOGRAPH-2F966;Lo;0;L;7CD2;;;;N;;;;;-2F967;CJK COMPATIBILITY IDEOGRAPH-2F967;Lo;0;L;42A0;;;;N;;;;;-2F968;CJK COMPATIBILITY IDEOGRAPH-2F968;Lo;0;L;7CE8;;;;N;;;;;-2F969;CJK COMPATIBILITY IDEOGRAPH-2F969;Lo;0;L;7CE3;;;;N;;;;;-2F96A;CJK COMPATIBILITY IDEOGRAPH-2F96A;Lo;0;L;7D00;;;;N;;;;;-2F96B;CJK COMPATIBILITY IDEOGRAPH-2F96B;Lo;0;L;25F86;;;;N;;;;;-2F96C;CJK COMPATIBILITY IDEOGRAPH-2F96C;Lo;0;L;7D63;;;;N;;;;;-2F96D;CJK COMPATIBILITY IDEOGRAPH-2F96D;Lo;0;L;4301;;;;N;;;;;-2F96E;CJK COMPATIBILITY IDEOGRAPH-2F96E;Lo;0;L;7DC7;;;;N;;;;;-2F96F;CJK COMPATIBILITY IDEOGRAPH-2F96F;Lo;0;L;7E02;;;;N;;;;;-2F970;CJK COMPATIBILITY IDEOGRAPH-2F970;Lo;0;L;7E45;;;;N;;;;;-2F971;CJK COMPATIBILITY IDEOGRAPH-2F971;Lo;0;L;4334;;;;N;;;;;-2F972;CJK COMPATIBILITY IDEOGRAPH-2F972;Lo;0;L;26228;;;;N;;;;;-2F973;CJK COMPATIBILITY IDEOGRAPH-2F973;Lo;0;L;26247;;;;N;;;;;-2F974;CJK COMPATIBILITY IDEOGRAPH-2F974;Lo;0;L;4359;;;;N;;;;;-2F975;CJK COMPATIBILITY IDEOGRAPH-2F975;Lo;0;L;262D9;;;;N;;;;;-2F976;CJK COMPATIBILITY IDEOGRAPH-2F976;Lo;0;L;7F7A;;;;N;;;;;-2F977;CJK COMPATIBILITY IDEOGRAPH-2F977;Lo;0;L;2633E;;;;N;;;;;-2F978;CJK COMPATIBILITY IDEOGRAPH-2F978;Lo;0;L;7F95;;;;N;;;;;-2F979;CJK COMPATIBILITY IDEOGRAPH-2F979;Lo;0;L;7FFA;;;;N;;;;;-2F97A;CJK COMPATIBILITY IDEOGRAPH-2F97A;Lo;0;L;8005;;;;N;;;;;-2F97B;CJK COMPATIBILITY IDEOGRAPH-2F97B;Lo;0;L;264DA;;;;N;;;;;-2F97C;CJK COMPATIBILITY IDEOGRAPH-2F97C;Lo;0;L;26523;;;;N;;;;;-2F97D;CJK COMPATIBILITY IDEOGRAPH-2F97D;Lo;0;L;8060;;;;N;;;;;-2F97E;CJK COMPATIBILITY IDEOGRAPH-2F97E;Lo;0;L;265A8;;;;N;;;;;-2F97F;CJK COMPATIBILITY IDEOGRAPH-2F97F;Lo;0;L;8070;;;;N;;;;;-2F980;CJK COMPATIBILITY IDEOGRAPH-2F980;Lo;0;L;2335F;;;;N;;;;;-2F981;CJK COMPATIBILITY IDEOGRAPH-2F981;Lo;0;L;43D5;;;;N;;;;;-2F982;CJK COMPATIBILITY IDEOGRAPH-2F982;Lo;0;L;80B2;;;;N;;;;;-2F983;CJK COMPATIBILITY IDEOGRAPH-2F983;Lo;0;L;8103;;;;N;;;;;-2F984;CJK COMPATIBILITY IDEOGRAPH-2F984;Lo;0;L;440B;;;;N;;;;;-2F985;CJK COMPATIBILITY IDEOGRAPH-2F985;Lo;0;L;813E;;;;N;;;;;-2F986;CJK COMPATIBILITY IDEOGRAPH-2F986;Lo;0;L;5AB5;;;;N;;;;;-2F987;CJK COMPATIBILITY IDEOGRAPH-2F987;Lo;0;L;267A7;;;;N;;;;;-2F988;CJK COMPATIBILITY IDEOGRAPH-2F988;Lo;0;L;267B5;;;;N;;;;;-2F989;CJK COMPATIBILITY IDEOGRAPH-2F989;Lo;0;L;23393;;;;N;;;;;-2F98A;CJK COMPATIBILITY IDEOGRAPH-2F98A;Lo;0;L;2339C;;;;N;;;;;-2F98B;CJK COMPATIBILITY IDEOGRAPH-2F98B;Lo;0;L;8201;;;;N;;;;;-2F98C;CJK COMPATIBILITY IDEOGRAPH-2F98C;Lo;0;L;8204;;;;N;;;;;-2F98D;CJK COMPATIBILITY IDEOGRAPH-2F98D;Lo;0;L;8F9E;;;;N;;;;;-2F98E;CJK COMPATIBILITY IDEOGRAPH-2F98E;Lo;0;L;446B;;;;N;;;;;-2F98F;CJK COMPATIBILITY IDEOGRAPH-2F98F;Lo;0;L;8291;;;;N;;;;;-2F990;CJK COMPATIBILITY IDEOGRAPH-2F990;Lo;0;L;828B;;;;N;;;;;-2F991;CJK COMPATIBILITY IDEOGRAPH-2F991;Lo;0;L;829D;;;;N;;;;;-2F992;CJK COMPATIBILITY IDEOGRAPH-2F992;Lo;0;L;52B3;;;;N;;;;;-2F993;CJK COMPATIBILITY IDEOGRAPH-2F993;Lo;0;L;82B1;;;;N;;;;;-2F994;CJK COMPATIBILITY IDEOGRAPH-2F994;Lo;0;L;82B3;;;;N;;;;;-2F995;CJK COMPATIBILITY IDEOGRAPH-2F995;Lo;0;L;82BD;;;;N;;;;;-2F996;CJK COMPATIBILITY IDEOGRAPH-2F996;Lo;0;L;82E6;;;;N;;;;;-2F997;CJK COMPATIBILITY IDEOGRAPH-2F997;Lo;0;L;26B3C;;;;N;;;;;-2F998;CJK COMPATIBILITY IDEOGRAPH-2F998;Lo;0;L;82E5;;;;N;;;;;-2F999;CJK COMPATIBILITY IDEOGRAPH-2F999;Lo;0;L;831D;;;;N;;;;;-2F99A;CJK COMPATIBILITY IDEOGRAPH-2F99A;Lo;0;L;8363;;;;N;;;;;-2F99B;CJK COMPATIBILITY IDEOGRAPH-2F99B;Lo;0;L;83AD;;;;N;;;;;-2F99C;CJK COMPATIBILITY IDEOGRAPH-2F99C;Lo;0;L;8323;;;;N;;;;;-2F99D;CJK COMPATIBILITY IDEOGRAPH-2F99D;Lo;0;L;83BD;;;;N;;;;;-2F99E;CJK COMPATIBILITY IDEOGRAPH-2F99E;Lo;0;L;83E7;;;;N;;;;;-2F99F;CJK COMPATIBILITY IDEOGRAPH-2F99F;Lo;0;L;8457;;;;N;;;;;-2F9A0;CJK COMPATIBILITY IDEOGRAPH-2F9A0;Lo;0;L;8353;;;;N;;;;;-2F9A1;CJK COMPATIBILITY IDEOGRAPH-2F9A1;Lo;0;L;83CA;;;;N;;;;;-2F9A2;CJK COMPATIBILITY IDEOGRAPH-2F9A2;Lo;0;L;83CC;;;;N;;;;;-2F9A3;CJK COMPATIBILITY IDEOGRAPH-2F9A3;Lo;0;L;83DC;;;;N;;;;;-2F9A4;CJK COMPATIBILITY IDEOGRAPH-2F9A4;Lo;0;L;26C36;;;;N;;;;;-2F9A5;CJK COMPATIBILITY IDEOGRAPH-2F9A5;Lo;0;L;26D6B;;;;N;;;;;-2F9A6;CJK COMPATIBILITY IDEOGRAPH-2F9A6;Lo;0;L;26CD5;;;;N;;;;;-2F9A7;CJK COMPATIBILITY IDEOGRAPH-2F9A7;Lo;0;L;452B;;;;N;;;;;-2F9A8;CJK COMPATIBILITY IDEOGRAPH-2F9A8;Lo;0;L;84F1;;;;N;;;;;-2F9A9;CJK COMPATIBILITY IDEOGRAPH-2F9A9;Lo;0;L;84F3;;;;N;;;;;-2F9AA;CJK COMPATIBILITY IDEOGRAPH-2F9AA;Lo;0;L;8516;;;;N;;;;;-2F9AB;CJK COMPATIBILITY IDEOGRAPH-2F9AB;Lo;0;L;273CA;;;;N;;;;;-2F9AC;CJK COMPATIBILITY IDEOGRAPH-2F9AC;Lo;0;L;8564;;;;N;;;;;-2F9AD;CJK COMPATIBILITY IDEOGRAPH-2F9AD;Lo;0;L;26F2C;;;;N;;;;;-2F9AE;CJK COMPATIBILITY IDEOGRAPH-2F9AE;Lo;0;L;455D;;;;N;;;;;-2F9AF;CJK COMPATIBILITY IDEOGRAPH-2F9AF;Lo;0;L;4561;;;;N;;;;;-2F9B0;CJK COMPATIBILITY IDEOGRAPH-2F9B0;Lo;0;L;26FB1;;;;N;;;;;-2F9B1;CJK COMPATIBILITY IDEOGRAPH-2F9B1;Lo;0;L;270D2;;;;N;;;;;-2F9B2;CJK COMPATIBILITY IDEOGRAPH-2F9B2;Lo;0;L;456B;;;;N;;;;;-2F9B3;CJK COMPATIBILITY IDEOGRAPH-2F9B3;Lo;0;L;8650;;;;N;;;;;-2F9B4;CJK COMPATIBILITY IDEOGRAPH-2F9B4;Lo;0;L;865C;;;;N;;;;;-2F9B5;CJK COMPATIBILITY IDEOGRAPH-2F9B5;Lo;0;L;8667;;;;N;;;;;-2F9B6;CJK COMPATIBILITY IDEOGRAPH-2F9B6;Lo;0;L;8669;;;;N;;;;;-2F9B7;CJK COMPATIBILITY IDEOGRAPH-2F9B7;Lo;0;L;86A9;;;;N;;;;;-2F9B8;CJK COMPATIBILITY IDEOGRAPH-2F9B8;Lo;0;L;8688;;;;N;;;;;-2F9B9;CJK COMPATIBILITY IDEOGRAPH-2F9B9;Lo;0;L;870E;;;;N;;;;;-2F9BA;CJK COMPATIBILITY IDEOGRAPH-2F9BA;Lo;0;L;86E2;;;;N;;;;;-2F9BB;CJK COMPATIBILITY IDEOGRAPH-2F9BB;Lo;0;L;8779;;;;N;;;;;-2F9BC;CJK COMPATIBILITY IDEOGRAPH-2F9BC;Lo;0;L;8728;;;;N;;;;;-2F9BD;CJK COMPATIBILITY IDEOGRAPH-2F9BD;Lo;0;L;876B;;;;N;;;;;-2F9BE;CJK COMPATIBILITY IDEOGRAPH-2F9BE;Lo;0;L;8786;;;;N;;;;;-2F9BF;CJK COMPATIBILITY IDEOGRAPH-2F9BF;Lo;0;L;45D7;;;;N;;;;;-2F9C0;CJK COMPATIBILITY IDEOGRAPH-2F9C0;Lo;0;L;87E1;;;;N;;;;;-2F9C1;CJK COMPATIBILITY IDEOGRAPH-2F9C1;Lo;0;L;8801;;;;N;;;;;-2F9C2;CJK COMPATIBILITY IDEOGRAPH-2F9C2;Lo;0;L;45F9;;;;N;;;;;-2F9C3;CJK COMPATIBILITY IDEOGRAPH-2F9C3;Lo;0;L;8860;;;;N;;;;;-2F9C4;CJK COMPATIBILITY IDEOGRAPH-2F9C4;Lo;0;L;8863;;;;N;;;;;-2F9C5;CJK COMPATIBILITY IDEOGRAPH-2F9C5;Lo;0;L;27667;;;;N;;;;;-2F9C6;CJK COMPATIBILITY IDEOGRAPH-2F9C6;Lo;0;L;88D7;;;;N;;;;;-2F9C7;CJK COMPATIBILITY IDEOGRAPH-2F9C7;Lo;0;L;88DE;;;;N;;;;;-2F9C8;CJK COMPATIBILITY IDEOGRAPH-2F9C8;Lo;0;L;4635;;;;N;;;;;-2F9C9;CJK COMPATIBILITY IDEOGRAPH-2F9C9;Lo;0;L;88FA;;;;N;;;;;-2F9CA;CJK COMPATIBILITY IDEOGRAPH-2F9CA;Lo;0;L;34BB;;;;N;;;;;-2F9CB;CJK COMPATIBILITY IDEOGRAPH-2F9CB;Lo;0;L;278AE;;;;N;;;;;-2F9CC;CJK COMPATIBILITY IDEOGRAPH-2F9CC;Lo;0;L;27966;;;;N;;;;;-2F9CD;CJK COMPATIBILITY IDEOGRAPH-2F9CD;Lo;0;L;46BE;;;;N;;;;;-2F9CE;CJK COMPATIBILITY IDEOGRAPH-2F9CE;Lo;0;L;46C7;;;;N;;;;;-2F9CF;CJK COMPATIBILITY IDEOGRAPH-2F9CF;Lo;0;L;8AA0;;;;N;;;;;-2F9D0;CJK COMPATIBILITY IDEOGRAPH-2F9D0;Lo;0;L;8AED;;;;N;;;;;-2F9D1;CJK COMPATIBILITY IDEOGRAPH-2F9D1;Lo;0;L;8B8A;;;;N;;;;;-2F9D2;CJK COMPATIBILITY IDEOGRAPH-2F9D2;Lo;0;L;8C55;;;;N;;;;;-2F9D3;CJK COMPATIBILITY IDEOGRAPH-2F9D3;Lo;0;L;27CA8;;;;N;;;;;-2F9D4;CJK COMPATIBILITY IDEOGRAPH-2F9D4;Lo;0;L;8CAB;;;;N;;;;;-2F9D5;CJK COMPATIBILITY IDEOGRAPH-2F9D5;Lo;0;L;8CC1;;;;N;;;;;-2F9D6;CJK COMPATIBILITY IDEOGRAPH-2F9D6;Lo;0;L;8D1B;;;;N;;;;;-2F9D7;CJK COMPATIBILITY IDEOGRAPH-2F9D7;Lo;0;L;8D77;;;;N;;;;;-2F9D8;CJK COMPATIBILITY IDEOGRAPH-2F9D8;Lo;0;L;27F2F;;;;N;;;;;-2F9D9;CJK COMPATIBILITY IDEOGRAPH-2F9D9;Lo;0;L;20804;;;;N;;;;;-2F9DA;CJK COMPATIBILITY IDEOGRAPH-2F9DA;Lo;0;L;8DCB;;;;N;;;;;-2F9DB;CJK COMPATIBILITY IDEOGRAPH-2F9DB;Lo;0;L;8DBC;;;;N;;;;;-2F9DC;CJK COMPATIBILITY IDEOGRAPH-2F9DC;Lo;0;L;8DF0;;;;N;;;;;-2F9DD;CJK COMPATIBILITY IDEOGRAPH-2F9DD;Lo;0;L;208DE;;;;N;;;;;-2F9DE;CJK COMPATIBILITY IDEOGRAPH-2F9DE;Lo;0;L;8ED4;;;;N;;;;;-2F9DF;CJK COMPATIBILITY IDEOGRAPH-2F9DF;Lo;0;L;8F38;;;;N;;;;;-2F9E0;CJK COMPATIBILITY IDEOGRAPH-2F9E0;Lo;0;L;285D2;;;;N;;;;;-2F9E1;CJK COMPATIBILITY IDEOGRAPH-2F9E1;Lo;0;L;285ED;;;;N;;;;;-2F9E2;CJK COMPATIBILITY IDEOGRAPH-2F9E2;Lo;0;L;9094;;;;N;;;;;-2F9E3;CJK COMPATIBILITY IDEOGRAPH-2F9E3;Lo;0;L;90F1;;;;N;;;;;-2F9E4;CJK COMPATIBILITY IDEOGRAPH-2F9E4;Lo;0;L;9111;;;;N;;;;;-2F9E5;CJK COMPATIBILITY IDEOGRAPH-2F9E5;Lo;0;L;2872E;;;;N;;;;;-2F9E6;CJK COMPATIBILITY IDEOGRAPH-2F9E6;Lo;0;L;911B;;;;N;;;;;-2F9E7;CJK COMPATIBILITY IDEOGRAPH-2F9E7;Lo;0;L;9238;;;;N;;;;;-2F9E8;CJK COMPATIBILITY IDEOGRAPH-2F9E8;Lo;0;L;92D7;;;;N;;;;;-2F9E9;CJK COMPATIBILITY IDEOGRAPH-2F9E9;Lo;0;L;92D8;;;;N;;;;;-2F9EA;CJK COMPATIBILITY IDEOGRAPH-2F9EA;Lo;0;L;927C;;;;N;;;;;-2F9EB;CJK COMPATIBILITY IDEOGRAPH-2F9EB;Lo;0;L;93F9;;;;N;;;;;-2F9EC;CJK COMPATIBILITY IDEOGRAPH-2F9EC;Lo;0;L;9415;;;;N;;;;;-2F9ED;CJK COMPATIBILITY IDEOGRAPH-2F9ED;Lo;0;L;28BFA;;;;N;;;;;-2F9EE;CJK COMPATIBILITY IDEOGRAPH-2F9EE;Lo;0;L;958B;;;;N;;;;;-2F9EF;CJK COMPATIBILITY IDEOGRAPH-2F9EF;Lo;0;L;4995;;;;N;;;;;-2F9F0;CJK COMPATIBILITY IDEOGRAPH-2F9F0;Lo;0;L;95B7;;;;N;;;;;-2F9F1;CJK COMPATIBILITY IDEOGRAPH-2F9F1;Lo;0;L;28D77;;;;N;;;;;-2F9F2;CJK COMPATIBILITY IDEOGRAPH-2F9F2;Lo;0;L;49E6;;;;N;;;;;-2F9F3;CJK COMPATIBILITY IDEOGRAPH-2F9F3;Lo;0;L;96C3;;;;N;;;;;-2F9F4;CJK COMPATIBILITY IDEOGRAPH-2F9F4;Lo;0;L;5DB2;;;;N;;;;;-2F9F5;CJK COMPATIBILITY IDEOGRAPH-2F9F5;Lo;0;L;9723;;;;N;;;;;-2F9F6;CJK COMPATIBILITY IDEOGRAPH-2F9F6;Lo;0;L;29145;;;;N;;;;;-2F9F7;CJK COMPATIBILITY IDEOGRAPH-2F9F7;Lo;0;L;2921A;;;;N;;;;;-2F9F8;CJK COMPATIBILITY IDEOGRAPH-2F9F8;Lo;0;L;4A6E;;;;N;;;;;-2F9F9;CJK COMPATIBILITY IDEOGRAPH-2F9F9;Lo;0;L;4A76;;;;N;;;;;-2F9FA;CJK COMPATIBILITY IDEOGRAPH-2F9FA;Lo;0;L;97E0;;;;N;;;;;-2F9FB;CJK COMPATIBILITY IDEOGRAPH-2F9FB;Lo;0;L;2940A;;;;N;;;;;-2F9FC;CJK COMPATIBILITY IDEOGRAPH-2F9FC;Lo;0;L;4AB2;;;;N;;;;;-2F9FD;CJK COMPATIBILITY IDEOGRAPH-2F9FD;Lo;0;L;29496;;;;N;;;;;-2F9FE;CJK COMPATIBILITY IDEOGRAPH-2F9FE;Lo;0;L;980B;;;;N;;;;;-2F9FF;CJK COMPATIBILITY IDEOGRAPH-2F9FF;Lo;0;L;980B;;;;N;;;;;-2FA00;CJK COMPATIBILITY IDEOGRAPH-2FA00;Lo;0;L;9829;;;;N;;;;;-2FA01;CJK COMPATIBILITY IDEOGRAPH-2FA01;Lo;0;L;295B6;;;;N;;;;;-2FA02;CJK COMPATIBILITY IDEOGRAPH-2FA02;Lo;0;L;98E2;;;;N;;;;;-2FA03;CJK COMPATIBILITY IDEOGRAPH-2FA03;Lo;0;L;4B33;;;;N;;;;;-2FA04;CJK COMPATIBILITY IDEOGRAPH-2FA04;Lo;0;L;9929;;;;N;;;;;-2FA05;CJK COMPATIBILITY IDEOGRAPH-2FA05;Lo;0;L;99A7;;;;N;;;;;-2FA06;CJK COMPATIBILITY IDEOGRAPH-2FA06;Lo;0;L;99C2;;;;N;;;;;-2FA07;CJK COMPATIBILITY IDEOGRAPH-2FA07;Lo;0;L;99FE;;;;N;;;;;-2FA08;CJK COMPATIBILITY IDEOGRAPH-2FA08;Lo;0;L;4BCE;;;;N;;;;;-2FA09;CJK COMPATIBILITY IDEOGRAPH-2FA09;Lo;0;L;29B30;;;;N;;;;;-2FA0A;CJK COMPATIBILITY IDEOGRAPH-2FA0A;Lo;0;L;9B12;;;;N;;;;;-2FA0B;CJK COMPATIBILITY IDEOGRAPH-2FA0B;Lo;0;L;9C40;;;;N;;;;;-2FA0C;CJK COMPATIBILITY IDEOGRAPH-2FA0C;Lo;0;L;9CFD;;;;N;;;;;-2FA0D;CJK COMPATIBILITY IDEOGRAPH-2FA0D;Lo;0;L;4CCE;;;;N;;;;;-2FA0E;CJK COMPATIBILITY IDEOGRAPH-2FA0E;Lo;0;L;4CED;;;;N;;;;;-2FA0F;CJK COMPATIBILITY IDEOGRAPH-2FA0F;Lo;0;L;9D67;;;;N;;;;;-2FA10;CJK COMPATIBILITY IDEOGRAPH-2FA10;Lo;0;L;2A0CE;;;;N;;;;;-2FA11;CJK COMPATIBILITY IDEOGRAPH-2FA11;Lo;0;L;4CF8;;;;N;;;;;-2FA12;CJK COMPATIBILITY IDEOGRAPH-2FA12;Lo;0;L;2A105;;;;N;;;;;-2FA13;CJK COMPATIBILITY IDEOGRAPH-2FA13;Lo;0;L;2A20E;;;;N;;;;;-2FA14;CJK COMPATIBILITY IDEOGRAPH-2FA14;Lo;0;L;2A291;;;;N;;;;;-2FA15;CJK COMPATIBILITY IDEOGRAPH-2FA15;Lo;0;L;9EBB;;;;N;;;;;-2FA16;CJK COMPATIBILITY IDEOGRAPH-2FA16;Lo;0;L;4D56;;;;N;;;;;-2FA17;CJK COMPATIBILITY IDEOGRAPH-2FA17;Lo;0;L;9EF9;;;;N;;;;;-2FA18;CJK COMPATIBILITY IDEOGRAPH-2FA18;Lo;0;L;9EFE;;;;N;;;;;-2FA19;CJK COMPATIBILITY IDEOGRAPH-2FA19;Lo;0;L;9F05;;;;N;;;;;-2FA1A;CJK COMPATIBILITY IDEOGRAPH-2FA1A;Lo;0;L;9F0F;;;;N;;;;;-2FA1B;CJK COMPATIBILITY IDEOGRAPH-2FA1B;Lo;0;L;9F16;;;;N;;;;;-2FA1C;CJK COMPATIBILITY IDEOGRAPH-2FA1C;Lo;0;L;9F3B;;;;N;;;;;-2FA1D;CJK COMPATIBILITY IDEOGRAPH-2FA1D;Lo;0;L;2A600;;;;N;;;;;-E0001;LANGUAGE TAG;Cf;0;BN;;;;;N;;;;;-E0020;TAG SPACE;Cf;0;BN;;;;;N;;;;;-E0021;TAG EXCLAMATION MARK;Cf;0;BN;;;;;N;;;;;-E0022;TAG QUOTATION MARK;Cf;0;BN;;;;;N;;;;;-E0023;TAG NUMBER SIGN;Cf;0;BN;;;;;N;;;;;-E0024;TAG DOLLAR SIGN;Cf;0;BN;;;;;N;;;;;-E0025;TAG PERCENT SIGN;Cf;0;BN;;;;;N;;;;;-E0026;TAG AMPERSAND;Cf;0;BN;;;;;N;;;;;-E0027;TAG APOSTROPHE;Cf;0;BN;;;;;N;;;;;-E0028;TAG LEFT PARENTHESIS;Cf;0;BN;;;;;N;;;;;-E0029;TAG RIGHT PARENTHESIS;Cf;0;BN;;;;;N;;;;;-E002A;TAG ASTERISK;Cf;0;BN;;;;;N;;;;;-E002B;TAG PLUS SIGN;Cf;0;BN;;;;;N;;;;;-E002C;TAG COMMA;Cf;0;BN;;;;;N;;;;;-E002D;TAG HYPHEN-MINUS;Cf;0;BN;;;;;N;;;;;-E002E;TAG FULL STOP;Cf;0;BN;;;;;N;;;;;-E002F;TAG SOLIDUS;Cf;0;BN;;;;;N;;;;;-E0030;TAG DIGIT ZERO;Cf;0;BN;;;;;N;;;;;-E0031;TAG DIGIT ONE;Cf;0;BN;;;;;N;;;;;-E0032;TAG DIGIT TWO;Cf;0;BN;;;;;N;;;;;-E0033;TAG DIGIT THREE;Cf;0;BN;;;;;N;;;;;-E0034;TAG DIGIT FOUR;Cf;0;BN;;;;;N;;;;;-E0035;TAG DIGIT FIVE;Cf;0;BN;;;;;N;;;;;-E0036;TAG DIGIT SIX;Cf;0;BN;;;;;N;;;;;-E0037;TAG DIGIT SEVEN;Cf;0;BN;;;;;N;;;;;-E0038;TAG DIGIT EIGHT;Cf;0;BN;;;;;N;;;;;-E0039;TAG DIGIT NINE;Cf;0;BN;;;;;N;;;;;-E003A;TAG COLON;Cf;0;BN;;;;;N;;;;;-E003B;TAG SEMICOLON;Cf;0;BN;;;;;N;;;;;-E003C;TAG LESS-THAN SIGN;Cf;0;BN;;;;;N;;;;;-E003D;TAG EQUALS SIGN;Cf;0;BN;;;;;N;;;;;-E003E;TAG GREATER-THAN SIGN;Cf;0;BN;;;;;N;;;;;-E003F;TAG QUESTION MARK;Cf;0;BN;;;;;N;;;;;-E0040;TAG COMMERCIAL AT;Cf;0;BN;;;;;N;;;;;-E0041;TAG LATIN CAPITAL LETTER A;Cf;0;BN;;;;;N;;;;;-E0042;TAG LATIN CAPITAL LETTER B;Cf;0;BN;;;;;N;;;;;-E0043;TAG LATIN CAPITAL LETTER C;Cf;0;BN;;;;;N;;;;;-E0044;TAG LATIN CAPITAL LETTER D;Cf;0;BN;;;;;N;;;;;-E0045;TAG LATIN CAPITAL LETTER E;Cf;0;BN;;;;;N;;;;;-E0046;TAG LATIN CAPITAL LETTER F;Cf;0;BN;;;;;N;;;;;-E0047;TAG LATIN CAPITAL LETTER G;Cf;0;BN;;;;;N;;;;;-E0048;TAG LATIN CAPITAL LETTER H;Cf;0;BN;;;;;N;;;;;-E0049;TAG LATIN CAPITAL LETTER I;Cf;0;BN;;;;;N;;;;;-E004A;TAG LATIN CAPITAL LETTER J;Cf;0;BN;;;;;N;;;;;-E004B;TAG LATIN CAPITAL LETTER K;Cf;0;BN;;;;;N;;;;;-E004C;TAG LATIN CAPITAL LETTER L;Cf;0;BN;;;;;N;;;;;-E004D;TAG LATIN CAPITAL LETTER M;Cf;0;BN;;;;;N;;;;;-E004E;TAG LATIN CAPITAL LETTER N;Cf;0;BN;;;;;N;;;;;-E004F;TAG LATIN CAPITAL LETTER O;Cf;0;BN;;;;;N;;;;;-E0050;TAG LATIN CAPITAL LETTER P;Cf;0;BN;;;;;N;;;;;-E0051;TAG LATIN CAPITAL LETTER Q;Cf;0;BN;;;;;N;;;;;-E0052;TAG LATIN CAPITAL LETTER R;Cf;0;BN;;;;;N;;;;;-E0053;TAG LATIN CAPITAL LETTER S;Cf;0;BN;;;;;N;;;;;-E0054;TAG LATIN CAPITAL LETTER T;Cf;0;BN;;;;;N;;;;;-E0055;TAG LATIN CAPITAL LETTER U;Cf;0;BN;;;;;N;;;;;-E0056;TAG LATIN CAPITAL LETTER V;Cf;0;BN;;;;;N;;;;;-E0057;TAG LATIN CAPITAL LETTER W;Cf;0;BN;;;;;N;;;;;-E0058;TAG LATIN CAPITAL LETTER X;Cf;0;BN;;;;;N;;;;;-E0059;TAG LATIN CAPITAL LETTER Y;Cf;0;BN;;;;;N;;;;;-E005A;TAG LATIN CAPITAL LETTER Z;Cf;0;BN;;;;;N;;;;;-E005B;TAG LEFT SQUARE BRACKET;Cf;0;BN;;;;;N;;;;;-E005C;TAG REVERSE SOLIDUS;Cf;0;BN;;;;;N;;;;;-E005D;TAG RIGHT SQUARE BRACKET;Cf;0;BN;;;;;N;;;;;-E005E;TAG CIRCUMFLEX ACCENT;Cf;0;BN;;;;;N;;;;;-E005F;TAG LOW LINE;Cf;0;BN;;;;;N;;;;;-E0060;TAG GRAVE ACCENT;Cf;0;BN;;;;;N;;;;;-E0061;TAG LATIN SMALL LETTER A;Cf;0;BN;;;;;N;;;;;-E0062;TAG LATIN SMALL LETTER B;Cf;0;BN;;;;;N;;;;;-E0063;TAG LATIN SMALL LETTER C;Cf;0;BN;;;;;N;;;;;-E0064;TAG LATIN SMALL LETTER D;Cf;0;BN;;;;;N;;;;;-E0065;TAG LATIN SMALL LETTER E;Cf;0;BN;;;;;N;;;;;-E0066;TAG LATIN SMALL LETTER F;Cf;0;BN;;;;;N;;;;;-E0067;TAG LATIN SMALL LETTER G;Cf;0;BN;;;;;N;;;;;-E0068;TAG LATIN SMALL LETTER H;Cf;0;BN;;;;;N;;;;;-E0069;TAG LATIN SMALL LETTER I;Cf;0;BN;;;;;N;;;;;-E006A;TAG LATIN SMALL LETTER J;Cf;0;BN;;;;;N;;;;;-E006B;TAG LATIN SMALL LETTER K;Cf;0;BN;;;;;N;;;;;-E006C;TAG LATIN SMALL LETTER L;Cf;0;BN;;;;;N;;;;;-E006D;TAG LATIN SMALL LETTER M;Cf;0;BN;;;;;N;;;;;-E006E;TAG LATIN SMALL LETTER N;Cf;0;BN;;;;;N;;;;;-E006F;TAG LATIN SMALL LETTER O;Cf;0;BN;;;;;N;;;;;-E0070;TAG LATIN SMALL LETTER P;Cf;0;BN;;;;;N;;;;;-E0071;TAG LATIN SMALL LETTER Q;Cf;0;BN;;;;;N;;;;;-E0072;TAG LATIN SMALL LETTER R;Cf;0;BN;;;;;N;;;;;-E0073;TAG LATIN SMALL LETTER S;Cf;0;BN;;;;;N;;;;;-E0074;TAG LATIN SMALL LETTER T;Cf;0;BN;;;;;N;;;;;-E0075;TAG LATIN SMALL LETTER U;Cf;0;BN;;;;;N;;;;;-E0076;TAG LATIN SMALL LETTER V;Cf;0;BN;;;;;N;;;;;-E0077;TAG LATIN SMALL LETTER W;Cf;0;BN;;;;;N;;;;;-E0078;TAG LATIN SMALL LETTER X;Cf;0;BN;;;;;N;;;;;-E0079;TAG LATIN SMALL LETTER Y;Cf;0;BN;;;;;N;;;;;-E007A;TAG LATIN SMALL LETTER Z;Cf;0;BN;;;;;N;;;;;-E007B;TAG LEFT CURLY BRACKET;Cf;0;BN;;;;;N;;;;;-E007C;TAG VERTICAL LINE;Cf;0;BN;;;;;N;;;;;-E007D;TAG RIGHT CURLY BRACKET;Cf;0;BN;;;;;N;;;;;-E007E;TAG TILDE;Cf;0;BN;;;;;N;;;;;-E007F;CANCEL TAG;Cf;0;BN;;;;;N;;;;;-E0100;VARIATION SELECTOR-17;Mn;0;NSM;;;;;N;;;;;-E0101;VARIATION SELECTOR-18;Mn;0;NSM;;;;;N;;;;;-E0102;VARIATION SELECTOR-19;Mn;0;NSM;;;;;N;;;;;-E0103;VARIATION SELECTOR-20;Mn;0;NSM;;;;;N;;;;;-E0104;VARIATION SELECTOR-21;Mn;0;NSM;;;;;N;;;;;-E0105;VARIATION SELECTOR-22;Mn;0;NSM;;;;;N;;;;;-E0106;VARIATION SELECTOR-23;Mn;0;NSM;;;;;N;;;;;-E0107;VARIATION SELECTOR-24;Mn;0;NSM;;;;;N;;;;;-E0108;VARIATION SELECTOR-25;Mn;0;NSM;;;;;N;;;;;-E0109;VARIATION SELECTOR-26;Mn;0;NSM;;;;;N;;;;;-E010A;VARIATION SELECTOR-27;Mn;0;NSM;;;;;N;;;;;-E010B;VARIATION SELECTOR-28;Mn;0;NSM;;;;;N;;;;;-E010C;VARIATION SELECTOR-29;Mn;0;NSM;;;;;N;;;;;-E010D;VARIATION SELECTOR-30;Mn;0;NSM;;;;;N;;;;;-E010E;VARIATION SELECTOR-31;Mn;0;NSM;;;;;N;;;;;-E010F;VARIATION SELECTOR-32;Mn;0;NSM;;;;;N;;;;;-E0110;VARIATION SELECTOR-33;Mn;0;NSM;;;;;N;;;;;-E0111;VARIATION SELECTOR-34;Mn;0;NSM;;;;;N;;;;;-E0112;VARIATION SELECTOR-35;Mn;0;NSM;;;;;N;;;;;-E0113;VARIATION SELECTOR-36;Mn;0;NSM;;;;;N;;;;;-E0114;VARIATION SELECTOR-37;Mn;0;NSM;;;;;N;;;;;-E0115;VARIATION SELECTOR-38;Mn;0;NSM;;;;;N;;;;;-E0116;VARIATION SELECTOR-39;Mn;0;NSM;;;;;N;;;;;-E0117;VARIATION SELECTOR-40;Mn;0;NSM;;;;;N;;;;;-E0118;VARIATION SELECTOR-41;Mn;0;NSM;;;;;N;;;;;-E0119;VARIATION SELECTOR-42;Mn;0;NSM;;;;;N;;;;;-E011A;VARIATION SELECTOR-43;Mn;0;NSM;;;;;N;;;;;-E011B;VARIATION SELECTOR-44;Mn;0;NSM;;;;;N;;;;;-E011C;VARIATION SELECTOR-45;Mn;0;NSM;;;;;N;;;;;-E011D;VARIATION SELECTOR-46;Mn;0;NSM;;;;;N;;;;;-E011E;VARIATION SELECTOR-47;Mn;0;NSM;;;;;N;;;;;-E011F;VARIATION SELECTOR-48;Mn;0;NSM;;;;;N;;;;;-E0120;VARIATION SELECTOR-49;Mn;0;NSM;;;;;N;;;;;-E0121;VARIATION SELECTOR-50;Mn;0;NSM;;;;;N;;;;;-E0122;VARIATION SELECTOR-51;Mn;0;NSM;;;;;N;;;;;-E0123;VARIATION SELECTOR-52;Mn;0;NSM;;;;;N;;;;;-E0124;VARIATION SELECTOR-53;Mn;0;NSM;;;;;N;;;;;-E0125;VARIATION SELECTOR-54;Mn;0;NSM;;;;;N;;;;;-E0126;VARIATION SELECTOR-55;Mn;0;NSM;;;;;N;;;;;-E0127;VARIATION SELECTOR-56;Mn;0;NSM;;;;;N;;;;;-E0128;VARIATION SELECTOR-57;Mn;0;NSM;;;;;N;;;;;-E0129;VARIATION SELECTOR-58;Mn;0;NSM;;;;;N;;;;;-E012A;VARIATION SELECTOR-59;Mn;0;NSM;;;;;N;;;;;-E012B;VARIATION SELECTOR-60;Mn;0;NSM;;;;;N;;;;;-E012C;VARIATION SELECTOR-61;Mn;0;NSM;;;;;N;;;;;-E012D;VARIATION SELECTOR-62;Mn;0;NSM;;;;;N;;;;;-E012E;VARIATION SELECTOR-63;Mn;0;NSM;;;;;N;;;;;-E012F;VARIATION SELECTOR-64;Mn;0;NSM;;;;;N;;;;;-E0130;VARIATION SELECTOR-65;Mn;0;NSM;;;;;N;;;;;-E0131;VARIATION SELECTOR-66;Mn;0;NSM;;;;;N;;;;;-E0132;VARIATION SELECTOR-67;Mn;0;NSM;;;;;N;;;;;-E0133;VARIATION SELECTOR-68;Mn;0;NSM;;;;;N;;;;;-E0134;VARIATION SELECTOR-69;Mn;0;NSM;;;;;N;;;;;-E0135;VARIATION SELECTOR-70;Mn;0;NSM;;;;;N;;;;;-E0136;VARIATION SELECTOR-71;Mn;0;NSM;;;;;N;;;;;-E0137;VARIATION SELECTOR-72;Mn;0;NSM;;;;;N;;;;;-E0138;VARIATION SELECTOR-73;Mn;0;NSM;;;;;N;;;;;-E0139;VARIATION SELECTOR-74;Mn;0;NSM;;;;;N;;;;;-E013A;VARIATION SELECTOR-75;Mn;0;NSM;;;;;N;;;;;-E013B;VARIATION SELECTOR-76;Mn;0;NSM;;;;;N;;;;;-E013C;VARIATION SELECTOR-77;Mn;0;NSM;;;;;N;;;;;-E013D;VARIATION SELECTOR-78;Mn;0;NSM;;;;;N;;;;;-E013E;VARIATION SELECTOR-79;Mn;0;NSM;;;;;N;;;;;-E013F;VARIATION SELECTOR-80;Mn;0;NSM;;;;;N;;;;;-E0140;VARIATION SELECTOR-81;Mn;0;NSM;;;;;N;;;;;-E0141;VARIATION SELECTOR-82;Mn;0;NSM;;;;;N;;;;;-E0142;VARIATION SELECTOR-83;Mn;0;NSM;;;;;N;;;;;-E0143;VARIATION SELECTOR-84;Mn;0;NSM;;;;;N;;;;;-E0144;VARIATION SELECTOR-85;Mn;0;NSM;;;;;N;;;;;-E0145;VARIATION SELECTOR-86;Mn;0;NSM;;;;;N;;;;;-E0146;VARIATION SELECTOR-87;Mn;0;NSM;;;;;N;;;;;-E0147;VARIATION SELECTOR-88;Mn;0;NSM;;;;;N;;;;;-E0148;VARIATION SELECTOR-89;Mn;0;NSM;;;;;N;;;;;-E0149;VARIATION SELECTOR-90;Mn;0;NSM;;;;;N;;;;;-E014A;VARIATION SELECTOR-91;Mn;0;NSM;;;;;N;;;;;-E014B;VARIATION SELECTOR-92;Mn;0;NSM;;;;;N;;;;;-E014C;VARIATION SELECTOR-93;Mn;0;NSM;;;;;N;;;;;-E014D;VARIATION SELECTOR-94;Mn;0;NSM;;;;;N;;;;;-E014E;VARIATION SELECTOR-95;Mn;0;NSM;;;;;N;;;;;-E014F;VARIATION SELECTOR-96;Mn;0;NSM;;;;;N;;;;;-E0150;VARIATION SELECTOR-97;Mn;0;NSM;;;;;N;;;;;-E0151;VARIATION SELECTOR-98;Mn;0;NSM;;;;;N;;;;;-E0152;VARIATION SELECTOR-99;Mn;0;NSM;;;;;N;;;;;-E0153;VARIATION SELECTOR-100;Mn;0;NSM;;;;;N;;;;;-E0154;VARIATION SELECTOR-101;Mn;0;NSM;;;;;N;;;;;-E0155;VARIATION SELECTOR-102;Mn;0;NSM;;;;;N;;;;;-E0156;VARIATION SELECTOR-103;Mn;0;NSM;;;;;N;;;;;-E0157;VARIATION SELECTOR-104;Mn;0;NSM;;;;;N;;;;;-E0158;VARIATION SELECTOR-105;Mn;0;NSM;;;;;N;;;;;-E0159;VARIATION SELECTOR-106;Mn;0;NSM;;;;;N;;;;;-E015A;VARIATION SELECTOR-107;Mn;0;NSM;;;;;N;;;;;-E015B;VARIATION SELECTOR-108;Mn;0;NSM;;;;;N;;;;;-E015C;VARIATION SELECTOR-109;Mn;0;NSM;;;;;N;;;;;-E015D;VARIATION SELECTOR-110;Mn;0;NSM;;;;;N;;;;;-E015E;VARIATION SELECTOR-111;Mn;0;NSM;;;;;N;;;;;-E015F;VARIATION SELECTOR-112;Mn;0;NSM;;;;;N;;;;;-E0160;VARIATION SELECTOR-113;Mn;0;NSM;;;;;N;;;;;-E0161;VARIATION SELECTOR-114;Mn;0;NSM;;;;;N;;;;;-E0162;VARIATION SELECTOR-115;Mn;0;NSM;;;;;N;;;;;-E0163;VARIATION SELECTOR-116;Mn;0;NSM;;;;;N;;;;;-E0164;VARIATION SELECTOR-117;Mn;0;NSM;;;;;N;;;;;-E0165;VARIATION SELECTOR-118;Mn;0;NSM;;;;;N;;;;;-E0166;VARIATION SELECTOR-119;Mn;0;NSM;;;;;N;;;;;-E0167;VARIATION SELECTOR-120;Mn;0;NSM;;;;;N;;;;;-E0168;VARIATION SELECTOR-121;Mn;0;NSM;;;;;N;;;;;-E0169;VARIATION SELECTOR-122;Mn;0;NSM;;;;;N;;;;;-E016A;VARIATION SELECTOR-123;Mn;0;NSM;;;;;N;;;;;-E016B;VARIATION SELECTOR-124;Mn;0;NSM;;;;;N;;;;;-E016C;VARIATION SELECTOR-125;Mn;0;NSM;;;;;N;;;;;-E016D;VARIATION SELECTOR-126;Mn;0;NSM;;;;;N;;;;;-E016E;VARIATION SELECTOR-127;Mn;0;NSM;;;;;N;;;;;-E016F;VARIATION SELECTOR-128;Mn;0;NSM;;;;;N;;;;;-E0170;VARIATION SELECTOR-129;Mn;0;NSM;;;;;N;;;;;-E0171;VARIATION SELECTOR-130;Mn;0;NSM;;;;;N;;;;;-E0172;VARIATION SELECTOR-131;Mn;0;NSM;;;;;N;;;;;-E0173;VARIATION SELECTOR-132;Mn;0;NSM;;;;;N;;;;;-E0174;VARIATION SELECTOR-133;Mn;0;NSM;;;;;N;;;;;-E0175;VARIATION SELECTOR-134;Mn;0;NSM;;;;;N;;;;;-E0176;VARIATION SELECTOR-135;Mn;0;NSM;;;;;N;;;;;-E0177;VARIATION SELECTOR-136;Mn;0;NSM;;;;;N;;;;;-E0178;VARIATION SELECTOR-137;Mn;0;NSM;;;;;N;;;;;-E0179;VARIATION SELECTOR-138;Mn;0;NSM;;;;;N;;;;;-E017A;VARIATION SELECTOR-139;Mn;0;NSM;;;;;N;;;;;-E017B;VARIATION SELECTOR-140;Mn;0;NSM;;;;;N;;;;;-E017C;VARIATION SELECTOR-141;Mn;0;NSM;;;;;N;;;;;-E017D;VARIATION SELECTOR-142;Mn;0;NSM;;;;;N;;;;;-E017E;VARIATION SELECTOR-143;Mn;0;NSM;;;;;N;;;;;-E017F;VARIATION SELECTOR-144;Mn;0;NSM;;;;;N;;;;;-E0180;VARIATION SELECTOR-145;Mn;0;NSM;;;;;N;;;;;-E0181;VARIATION SELECTOR-146;Mn;0;NSM;;;;;N;;;;;-E0182;VARIATION SELECTOR-147;Mn;0;NSM;;;;;N;;;;;-E0183;VARIATION SELECTOR-148;Mn;0;NSM;;;;;N;;;;;-E0184;VARIATION SELECTOR-149;Mn;0;NSM;;;;;N;;;;;-E0185;VARIATION SELECTOR-150;Mn;0;NSM;;;;;N;;;;;-E0186;VARIATION SELECTOR-151;Mn;0;NSM;;;;;N;;;;;-E0187;VARIATION SELECTOR-152;Mn;0;NSM;;;;;N;;;;;-E0188;VARIATION SELECTOR-153;Mn;0;NSM;;;;;N;;;;;-E0189;VARIATION SELECTOR-154;Mn;0;NSM;;;;;N;;;;;-E018A;VARIATION SELECTOR-155;Mn;0;NSM;;;;;N;;;;;-E018B;VARIATION SELECTOR-156;Mn;0;NSM;;;;;N;;;;;-E018C;VARIATION SELECTOR-157;Mn;0;NSM;;;;;N;;;;;-E018D;VARIATION SELECTOR-158;Mn;0;NSM;;;;;N;;;;;-E018E;VARIATION SELECTOR-159;Mn;0;NSM;;;;;N;;;;;-E018F;VARIATION SELECTOR-160;Mn;0;NSM;;;;;N;;;;;-E0190;VARIATION SELECTOR-161;Mn;0;NSM;;;;;N;;;;;-E0191;VARIATION SELECTOR-162;Mn;0;NSM;;;;;N;;;;;-E0192;VARIATION SELECTOR-163;Mn;0;NSM;;;;;N;;;;;-E0193;VARIATION SELECTOR-164;Mn;0;NSM;;;;;N;;;;;-E0194;VARIATION SELECTOR-165;Mn;0;NSM;;;;;N;;;;;-E0195;VARIATION SELECTOR-166;Mn;0;NSM;;;;;N;;;;;-E0196;VARIATION SELECTOR-167;Mn;0;NSM;;;;;N;;;;;-E0197;VARIATION SELECTOR-168;Mn;0;NSM;;;;;N;;;;;-E0198;VARIATION SELECTOR-169;Mn;0;NSM;;;;;N;;;;;-E0199;VARIATION SELECTOR-170;Mn;0;NSM;;;;;N;;;;;-E019A;VARIATION SELECTOR-171;Mn;0;NSM;;;;;N;;;;;-E019B;VARIATION SELECTOR-172;Mn;0;NSM;;;;;N;;;;;-E019C;VARIATION SELECTOR-173;Mn;0;NSM;;;;;N;;;;;-E019D;VARIATION SELECTOR-174;Mn;0;NSM;;;;;N;;;;;-E019E;VARIATION SELECTOR-175;Mn;0;NSM;;;;;N;;;;;-E019F;VARIATION SELECTOR-176;Mn;0;NSM;;;;;N;;;;;-E01A0;VARIATION SELECTOR-177;Mn;0;NSM;;;;;N;;;;;-E01A1;VARIATION SELECTOR-178;Mn;0;NSM;;;;;N;;;;;-E01A2;VARIATION SELECTOR-179;Mn;0;NSM;;;;;N;;;;;-E01A3;VARIATION SELECTOR-180;Mn;0;NSM;;;;;N;;;;;-E01A4;VARIATION SELECTOR-181;Mn;0;NSM;;;;;N;;;;;-E01A5;VARIATION SELECTOR-182;Mn;0;NSM;;;;;N;;;;;-E01A6;VARIATION SELECTOR-183;Mn;0;NSM;;;;;N;;;;;-E01A7;VARIATION SELECTOR-184;Mn;0;NSM;;;;;N;;;;;-E01A8;VARIATION SELECTOR-185;Mn;0;NSM;;;;;N;;;;;-E01A9;VARIATION SELECTOR-186;Mn;0;NSM;;;;;N;;;;;-E01AA;VARIATION SELECTOR-187;Mn;0;NSM;;;;;N;;;;;-E01AB;VARIATION SELECTOR-188;Mn;0;NSM;;;;;N;;;;;-E01AC;VARIATION SELECTOR-189;Mn;0;NSM;;;;;N;;;;;-E01AD;VARIATION SELECTOR-190;Mn;0;NSM;;;;;N;;;;;-E01AE;VARIATION SELECTOR-191;Mn;0;NSM;;;;;N;;;;;-E01AF;VARIATION SELECTOR-192;Mn;0;NSM;;;;;N;;;;;-E01B0;VARIATION SELECTOR-193;Mn;0;NSM;;;;;N;;;;;-E01B1;VARIATION SELECTOR-194;Mn;0;NSM;;;;;N;;;;;-E01B2;VARIATION SELECTOR-195;Mn;0;NSM;;;;;N;;;;;-E01B3;VARIATION SELECTOR-196;Mn;0;NSM;;;;;N;;;;;-E01B4;VARIATION SELECTOR-197;Mn;0;NSM;;;;;N;;;;;-E01B5;VARIATION SELECTOR-198;Mn;0;NSM;;;;;N;;;;;-E01B6;VARIATION SELECTOR-199;Mn;0;NSM;;;;;N;;;;;-E01B7;VARIATION SELECTOR-200;Mn;0;NSM;;;;;N;;;;;-E01B8;VARIATION SELECTOR-201;Mn;0;NSM;;;;;N;;;;;-E01B9;VARIATION SELECTOR-202;Mn;0;NSM;;;;;N;;;;;-E01BA;VARIATION SELECTOR-203;Mn;0;NSM;;;;;N;;;;;-E01BB;VARIATION SELECTOR-204;Mn;0;NSM;;;;;N;;;;;-E01BC;VARIATION SELECTOR-205;Mn;0;NSM;;;;;N;;;;;-E01BD;VARIATION SELECTOR-206;Mn;0;NSM;;;;;N;;;;;-E01BE;VARIATION SELECTOR-207;Mn;0;NSM;;;;;N;;;;;-E01BF;VARIATION SELECTOR-208;Mn;0;NSM;;;;;N;;;;;-E01C0;VARIATION SELECTOR-209;Mn;0;NSM;;;;;N;;;;;-E01C1;VARIATION SELECTOR-210;Mn;0;NSM;;;;;N;;;;;-E01C2;VARIATION SELECTOR-211;Mn;0;NSM;;;;;N;;;;;-E01C3;VARIATION SELECTOR-212;Mn;0;NSM;;;;;N;;;;;-E01C4;VARIATION SELECTOR-213;Mn;0;NSM;;;;;N;;;;;-E01C5;VARIATION SELECTOR-214;Mn;0;NSM;;;;;N;;;;;-E01C6;VARIATION SELECTOR-215;Mn;0;NSM;;;;;N;;;;;-E01C7;VARIATION SELECTOR-216;Mn;0;NSM;;;;;N;;;;;-E01C8;VARIATION SELECTOR-217;Mn;0;NSM;;;;;N;;;;;-E01C9;VARIATION SELECTOR-218;Mn;0;NSM;;;;;N;;;;;-E01CA;VARIATION SELECTOR-219;Mn;0;NSM;;;;;N;;;;;-E01CB;VARIATION SELECTOR-220;Mn;0;NSM;;;;;N;;;;;-E01CC;VARIATION SELECTOR-221;Mn;0;NSM;;;;;N;;;;;-E01CD;VARIATION SELECTOR-222;Mn;0;NSM;;;;;N;;;;;-E01CE;VARIATION SELECTOR-223;Mn;0;NSM;;;;;N;;;;;-E01CF;VARIATION SELECTOR-224;Mn;0;NSM;;;;;N;;;;;-E01D0;VARIATION SELECTOR-225;Mn;0;NSM;;;;;N;;;;;-E01D1;VARIATION SELECTOR-226;Mn;0;NSM;;;;;N;;;;;-E01D2;VARIATION SELECTOR-227;Mn;0;NSM;;;;;N;;;;;-E01D3;VARIATION SELECTOR-228;Mn;0;NSM;;;;;N;;;;;-E01D4;VARIATION SELECTOR-229;Mn;0;NSM;;;;;N;;;;;-E01D5;VARIATION SELECTOR-230;Mn;0;NSM;;;;;N;;;;;-E01D6;VARIATION SELECTOR-231;Mn;0;NSM;;;;;N;;;;;-E01D7;VARIATION SELECTOR-232;Mn;0;NSM;;;;;N;;;;;-E01D8;VARIATION SELECTOR-233;Mn;0;NSM;;;;;N;;;;;-E01D9;VARIATION SELECTOR-234;Mn;0;NSM;;;;;N;;;;;-E01DA;VARIATION SELECTOR-235;Mn;0;NSM;;;;;N;;;;;-E01DB;VARIATION SELECTOR-236;Mn;0;NSM;;;;;N;;;;;-E01DC;VARIATION SELECTOR-237;Mn;0;NSM;;;;;N;;;;;-E01DD;VARIATION SELECTOR-238;Mn;0;NSM;;;;;N;;;;;-E01DE;VARIATION SELECTOR-239;Mn;0;NSM;;;;;N;;;;;-E01DF;VARIATION SELECTOR-240;Mn;0;NSM;;;;;N;;;;;-E01E0;VARIATION SELECTOR-241;Mn;0;NSM;;;;;N;;;;;-E01E1;VARIATION SELECTOR-242;Mn;0;NSM;;;;;N;;;;;-E01E2;VARIATION SELECTOR-243;Mn;0;NSM;;;;;N;;;;;-E01E3;VARIATION SELECTOR-244;Mn;0;NSM;;;;;N;;;;;-E01E4;VARIATION SELECTOR-245;Mn;0;NSM;;;;;N;;;;;-E01E5;VARIATION SELECTOR-246;Mn;0;NSM;;;;;N;;;;;-E01E6;VARIATION SELECTOR-247;Mn;0;NSM;;;;;N;;;;;-E01E7;VARIATION SELECTOR-248;Mn;0;NSM;;;;;N;;;;;-E01E8;VARIATION SELECTOR-249;Mn;0;NSM;;;;;N;;;;;-E01E9;VARIATION SELECTOR-250;Mn;0;NSM;;;;;N;;;;;-E01EA;VARIATION SELECTOR-251;Mn;0;NSM;;;;;N;;;;;-E01EB;VARIATION SELECTOR-252;Mn;0;NSM;;;;;N;;;;;-E01EC;VARIATION SELECTOR-253;Mn;0;NSM;;;;;N;;;;;-E01ED;VARIATION SELECTOR-254;Mn;0;NSM;;;;;N;;;;;-E01EE;VARIATION SELECTOR-255;Mn;0;NSM;;;;;N;;;;;-E01EF;VARIATION SELECTOR-256;Mn;0;NSM;;;;;N;;;;;-F0000;<Plane 15 Private Use, First>;Co;0;L;;;;;N;;;;;-FFFFD;<Plane 15 Private Use, Last>;Co;0;L;;;;;N;;;;;-100000;<Plane 16 Private Use, First>;Co;0;L;;;;;N;;;;;-10FFFD;<Plane 16 Private Use, Last>;Co;0;L;;;;;N;;;;;
lib/tounicode/mkUnicodeTable.hs view
@@ -1,3 +1,8 @@+#!/usr/bin/env cabal+{- cabal:+    build-depends: base, split+-}+ -- creates the code for toUnicode from UnicodeData.txt import Data.List.Split import Control.Applicative@@ -27,10 +32,10 @@ main = do   rawEntries <- lines <$> readFile "UnicodeData.txt"   let entries = mapMaybe (\s -> toEntry s >>= getMathStyle) rawEntries-  putStrLn "unicodeTable :: [((TextType, Char), Char)]"-  putStr   "unicodeTable = [ "-  putStrLn $ intercalate-         "\n               , " (map showEntry entries) +++  writeFile "UnicodeTable.hs" $+    "unicodeTable :: [((TextType, Char), Char)]\n"+    <> "unicodeTable = [ "+    <> intercalate "\n               , " (map showEntry entries) ++          "\n               ]"  showEntry :: ((TextType, Char), Char) -> String
man/man1/texmath.1 view
@@ -1,58 +1,46 @@+.\" Automatically generated by Pandoc 3.1.7+.\" .TH "texmath" "1" "July 22, 2014" "texmath manual" "" .SH NAME-.PP-texmath \- convert between math formats.+texmath - convert between math formats. .SH SYNOPSIS-.PP-texmath [\f[I]options\f[]] [file*]+texmath [\f[I]options\f[R]] [file*] .SH DESCRIPTION-.PP-\f[C]texmath\f[] acts as a pipe, reading from stdin or from the+\f[CR]texmath\f[R] acts as a pipe, reading from stdin or from the specified files and writing to stdout.-It converts math in the specified input format (see \f[C]\-f\f[] below)-to math in the specified output format (see \f[C]\-t\f[] below).+It converts math in the specified input format (see \f[CR]-f\f[R] below)+to math in the specified output format (see \f[CR]-t\f[R] below). .PP-If \f[C]texmath\f[] is invoked under the name \f[C]texmath\-cgi\f[] (via-a symbolic link, or through simple renaming), it will act as a CGI+If \f[CR]texmath\f[R] is invoked under the name \f[CR]texmath-cgi\f[R]+(via a symbolic link, or through simple renaming), it will act as a CGI script.-It will expect query parameters for \f[C]from\f[], \f[C]to\f[],-\f[C]input\f[], and optionally \f[C]inline\f[], and return a JSON object-with either \f[C]error\f[] and a message or \f[C]success\f[] and the-converted result.+It will expect query parameters for \f[CR]from\f[R], \f[CR]to\f[R],+\f[CR]input\f[R], and optionally \f[CR]inline\f[R], and return a JSON+object with either \f[CR]error\f[R] and a message or \f[CR]success\f[R]+and the converted result. .SH OPTIONS .TP-.B \f[C]\-f\f[] \f[I]FORMAT\f[]-Specify input ("from") format: \f[C]tex\f[], \f[C]mathml\f[],-\f[C]omml\f[], \f[C]native\f[].-Defaults to \f[C]tex\f[].-.RS-.RE+\f[CR]-f\f[R] \f[I]FORMAT\f[R]+Specify input (\[lq]from\[rq]) format: \f[CR]tex\f[R],+\f[CR]mathml\f[R], \f[CR]omml\f[R], \f[CR]native\f[R].+Defaults to \f[CR]tex\f[R]. .TP-.B \f[C]\-t\f[] \f[I]FORMAT\f[]-Specify output ("to") format: \f[C]tex\f[], \f[C]omml\f[],-\f[C]xhtml\f[], \f[C]mathml\f[], \f[C]pandoc\f[], \f[C]native\f[].-Defaults to \f[C]mathml\f[].-.RS-.RE+\f[CR]-t\f[R] \f[I]FORMAT\f[R]+Specify output (\[lq]to\[rq]) format: \f[CR]tex\f[R], \f[CR]omml\f[R],+\f[CR]xhtml\f[R], \f[CR]mathml\f[R], \f[CR]pandoc\f[R],+\f[CR]native\f[R].+Defaults to \f[CR]mathml\f[R]. .TP-.B \f[C]\-\-inline\f[]+\f[CR]--inline\f[R] Use the inline display style.-.RS-.RE .TP-.B \f[C]\-h,\ \-\-help\f[]+\f[CR]-h, --help\f[R] Print usage information.-.RS-.RE .TP-.B \f[C]\-V,\ \-\-version\f[]+\f[CR]-V, --version\f[R] Print version.-.RS-.RE .SH AUTHORS-.PP John MacFarlane, Matthew Pickering, Jesse Rosenthal. .SH SEE ALSO-.PP-The \f[C]texmath\f[] source code and all documentation may be downloaded-from <http://github.com/jgm/texmath/>.+The \f[CR]texmath\f[R] source code and all documentation may be+downloaded from <http://github.com/jgm/texmath/>.
man/texmath.1.md view
@@ -33,8 +33,8 @@     Defaults to `tex`.  `-t` *FORMAT*-:   Specify output ("to") format:  `tex`, `omml`,-    `xhtml`, `mathml`, `pandoc`, `native`.  Defaults to `mathml`.+:   Specify output ("to") format:  `tex`, `omml`, `xhtml`, `mathml`,+    `typst`, `eqn`, `starmath`, `pandoc`, `native`.  Defaults to `mathml`.  `--inline` :   Use the inline display style.
+ server/Main.hs view
@@ -0,0 +1,149 @@+{-# LANGUAGE DataKinds       #-}+{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE TypeOperators   #-}+{-# LANGUAGE FlexibleContexts #-}+{-# LANGUAGE ScopedTypeVariables #-}+{-# LANGUAGE OverloadedStrings #-}+module Main where++import qualified Network.Wai.Handler.Warp as Warp+import Network.Wai.Logger (withStdoutLogger)+import qualified Network.Wai.Handler.CGI as CGI+import Network.Wai.Middleware.Timeout (timeout)+import Data.Aeson+import Data.Aeson.TH+import Data.Maybe (fromMaybe)+import Network.Wai+import Servant+import Text.TeXMath+import Data.Text (Text)+import qualified Data.Text as T+import qualified Data.Text.Lazy as TL+import qualified Data.Text.Lazy.Encoding as TLE+import Text.XML.Light (ppElement)+import System.Environment (getProgName)+import Options.Applicative+import Safe (readMay)++-- This is the data to be supplied by the JSON payload+-- of requests.+data Params = Params+  { text           :: Text+  , from           :: Format+  , to             :: Format+  , display        :: Bool+  } deriving (Show)++data Format =+  TeX | MathML | Eqn | OMML | Typst | StarMath+  deriving (Show, Ord, Eq)++instance FromJSON Format where+   parseJSON (String s) =+               case T.toLower s of+                 "tex" -> pure TeX+                 "mathml" -> pure MathML+                 "eqn" -> pure Eqn+                 "typst" -> pure Typst+                 "omml" -> pure OMML+                 "starmath" -> pure StarMath+                 _ -> fail $ "Unknown format " <> T.unpack s+   parseJSON _ = fail "Expecting string format"++instance ToJSON Format where+   toJSON x = String $ T.toLower $ T.pack $ show x++instance FromHttpApiData Format where+   parseQueryParam t =+               case T.toLower t of+                 "tex" -> pure TeX+                 "mathml" -> pure MathML+                 "eqn" -> pure Eqn+                 "typst" -> pure Typst+                 "omml" -> pure OMML+                 "starmath" -> pure StarMath+                 _ -> Left $ "Unknown format " <> t++-- Automatically derive code to convert to/from JSON.+$(deriveJSON defaultOptions ''Params)+data Opts = Opts+  { port      :: Int }++optsSpec :: Parser Opts+optsSpec = Opts+      <$> option (maybeReader readMay)+          ( long "port"+         <> short 'p'+         <> metavar "NUMBER"+         <> showDefault+         <> value 8080+         <> help "Port on which to run the server" )++main :: IO ()+main = do+  prg <- getProgName+  case prg of+    "texmath-server.cgi" -> CGI.run (timeout 2 app)+    _ -> do+      let options = info (optsSpec <**> helper)+            ( fullDesc+           <> progDesc "Run a server for texmath"+           <> header "texmath-server - an HTTP server for texmath" )+      opts <- execParser options+      putStrLn $ "Starting server on port " <> show (port opts)+      withStdoutLogger $ \logger -> do+        let settings = Warp.setPort (port opts) $ Warp.setLogger logger Warp.defaultSettings+        Warp.runSettings settings app++-- This is the API.  The root endpoint takes a request body+-- consisting of a JSON-encoded Params structure and responds to+-- Get requests with either plain text or JSON, depending on the+-- Accept header. Alternatively, the "/batch" endpoint may be+-- used, accepting a JSON-encoded array of Params and returning+-- an array of results.+type API =+  ReqBody '[JSON] Params :> Post '[PlainText, JSON] Text+  :<|>+  QueryParam "text" Text :> QueryParam "from" Format :> QueryParam "to" Format :> QueryFlag "display" :> Get '[PlainText] Text+  :<|>+  "batch" :> ReqBody '[JSON] [Params] :> Post '[JSON] [Text]++app :: Application+app = serve api server++api :: Proxy API+api = Proxy++server :: Server API+server = convert+    :<|> (\text' from' to' display' ->+             convert Params{ text = fromMaybe "" text',+                             from = fromMaybe TeX from',+                             to = fromMaybe MathML to',+                             display = display' })+    :<|> mapM convert+ where+  convert params+    = let dt = if display params+                  then DisplayBlock+                  else DisplayInline+          txt = text params+          reader = case from params of+                     OMML -> readOMML+                     TeX -> readTeX+                     MathML -> readMathML+                     Eqn -> \_ -> Left "eqn reader not implemented"+                     Typst -> \_ -> Left "typst reader not implemented"+                     StarMath -> \_ -> Left "StarMath reader not implemented"+          writer = case to params of+                     Eqn -> writeEqn dt+                     Typst -> writeTypst dt+                     OMML -> T.pack . ppElement . writeOMML dt+                     TeX -> writeTeX+                     MathML -> T.pack . ppElement . writeMathML dt+                     StarMath -> writeStarMath dt+      in  handleErr $ writer <$> reader txt++  handleErr (Right t) = return t+  handleErr (Left err) = throwError $+    err500 { errBody = TLE.encodeUtf8 $ TL.fromStrict err }
+ server/texmath.html view
@@ -0,0 +1,111 @@+<!doctype html>+<html lang="en">+<head>+  <meta charset="utf-8">+  <meta name="viewport" content="width=device-width, initial-scale=1.0">+  <meta name="description" content="Convert between LaTeX, MathML, OMML, eqn, and typst math formats.">+  <meta name="robots" content="index,follow">+  <title>texmath demo</title>+  <script src="//code.jquery.com/jquery-3.6.0.min.js"></script>+  <script>+    var postConvert = function(body, onSuccess, onError) {+      var xhr = new XMLHttpRequest();+      xhr.open('POST', 'https://texmath.johnmacfarlane.net/', true);+      xhr.setRequestHeader('Accept', 'application/json');+      xhr.setRequestHeader('Content-Type', 'application/json');+      xhr.onreadystatechange = function () {+        var res = null;+        if (xhr.readyState === 4) {+          if (xhr.status === 204 || xhr.status === 205) {+            onSuccess();+          } else if (xhr.status >= 200 && xhr.status < 300) {+            try { res = JSON.parse(xhr.responseText); } catch (e) { onError(e); }+            if (res) onSuccess(res);+          } else {+            onError(xhr.responseText);+          }+        }+      };+      xhr.send(JSON.stringify(body));+    };+    var convert = function() {+          postConvert(+             { 'text' : $('#input').val(),+               'from': $('#from').val(),+               'to': $('#to').val(),+               'display': $('#display').val() == "true" },+              function(res) {+                     $('#result').text(res);+	             $('#result').removeClass('error');+                  },+              function(err) {+                    console.log(err);+                     $('#result').text(err);+		     $('#result').addClass('error');+              })+    };+    // Browsers do not always like self-closing tags+    function removeSelfClosingTags(s){+      return s.replace(/<([a-z][a-z0-9]*)([^<>]*?) *\/>/g, "<$1$2><\/$1>");+    };++    $(document).ready(function(){+      $('#convert').click(convert);+      $('#to').change(convert);+      $('#from').change(convert);+      $('#display').change(convert);+    });+  </script>+  <style type="text/css">+  body { font-family: sans-serif; text-color: #555; font-size: 12pt; margin: 1em; }+  h1 { font-size: 20pt; max-width: 13em; margin-right: 1em; }+  .main-container { display: flex; flex-wrap: wrap; }+  .container { display: flex; flex: 1; flex-wrap: wrap; min-width: 300px; margin: 6pt; }+  textarea { width: 100%; font-size: 11pt; padding: 6px; }+  pre { white-space: pre-wrap; color: blue; font-size: 11pt; font-family: monospace; }+  .error { color: red; }+  </style>+  <script type="text/javascript">+  </script>+</head>+<body>+  <h1>texmath demo</h1>+  <p><a href="https://github.com/jgm/texmath">texmath</a> is a Haskell+  library, command-line program, and web server that converts between+  TeX, MathML, OMML, eqn, and typst formats for mathematical formulas.</p>+  <div id="controls" class="container">+    <button id="convert">Convert</button>+    <label for="from">from</label>+    <select name="from" id="from">+      <option value="tex" selected>tex</option>+      <option value="mathml">mathml</option>+      <option value="omml">omml</option>+    </select>+    <label for="to">to</label>+    <select name="to" id="to">+      <option value="tex">tex</option>+      <option value="mathml" selected>mathml</option>+      <option value="omml">omml</option>+      <option value="eqn">eqn</option>+      <option value="typst">typst</option>+    </select>+    <select name="display" id="display">+      <option value="true" selected>display</option>+      <option value="false">inline</option>+    </select>+  </div>++  <div class="main-container">++    <div class="container">+      <textarea id="input">\int_0^1 x^x\,\mathrm{d}x = \sum_{n = 1}^\infty{(-1)^{n + 1}\,n^{-n}}</textarea>+    </div>++    <div class="container">+      <pre id="result">+      </pre>+    </div>++  </div>+</body>+</html>
src/Text/TeXMath.hs view
@@ -24,9 +24,10 @@ A typical use is to combine together a reader and writer.  > import Control.Applicative ((<$>))+> import Data.Text (Text) > import Text.TeXMath (writeMathML, readTeX) >-> texMathToMathML :: DisplayType -> String -> Either String Element+> texMathToMathML :: DisplayType -> Text -> Either Text Element > texMathToMathML dt s = writeMathML dt <$> readTeX s  It is also possible to manipulate the AST using 'Data.Generics'. For@@ -34,20 +35,24 @@ x in your expression, you do could do so with the following script. -> import Control.Applicative ((<$>))-> import Data.Generics (everywhere, mkT)-> import Text.TeXMath (writeMathML, readTeX)-> import Text.TeXMath.Types-> import Text.XML.Light (Element)->-> changeIdent :: Exp -> Exp-> changeIdent (EIdentifier "x") = EIdentifier "y"-> changeIdent e = e->-> texToMMLWithChangeIdent :: DisplayType -> String -> Either String Element-> texToMMLWithChangeIdent dt s =->   writeMathML dt . everywhere (mkT changeIdent) <$> readTeX s+@+&#x7b;-\# LANGUAGE OverloadedStrings -\#&#x7d; +import Control.Applicative ((\<$\>))+import Data.Text (Text)+import Data.Generics (everywhere, mkT)+import Text.TeXMath (writeMathML, readTeX)+import Text.TeXMath.Types+import Text.XML.Light (Element)++changeIdent :: Exp -> Exp+changeIdent (EIdentifier "x") = EIdentifier "y"+changeIdent e = e++texToMMLWithChangeIdent :: DisplayType -> Text -> Either Text Element+texToMMLWithChangeIdent dt s =+  writeMathML dt . everywhere (mkT changeIdent) \<$\> readTeX s+@ -}  module Text.TeXMath ( readMathML,@@ -57,6 +62,8 @@                       writeTeXWith,                       addLaTeXEnvironment,                       writeEqn,+                      writeStarMath,+                      writeTypst,                       writeOMML,                       writeMathML,                       writePandoc,@@ -72,4 +79,6 @@ import Text.TeXMath.Writers.Pandoc import Text.TeXMath.Writers.TeX import Text.TeXMath.Writers.Eqn+import Text.TeXMath.Writers.StarMath+import Text.TeXMath.Writers.Typst import Text.TeXMath.Types
− src/Text/TeXMath/Compat.hs
@@ -1,28 +0,0 @@-{-# LANGUAGE CPP #-}-module Text.TeXMath.Compat ( ExceptT-                           , Except-                           , MonadError-                           , runExceptT-                           , runExcept-                           , throwError-                           , catchError )-       where--#if MIN_VERSION_mtl(2,2,1)-import Control.Monad.Except--#else-import Control.Monad.Error-import Control.Monad.Identity-type ExceptT = ErrorT-type Except e = ErrorT e Identity--runExceptT :: ExceptT e m a -> m (Either e a)-runExceptT = runErrorT--runExcept :: Except e a -> Either e a-runExcept = runIdentity . runErrorT--#endif--
src/Text/TeXMath/Readers/MathML.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE ViewPatterns #-}+{-# LANGUAGE OverloadedStrings #-} {- Copyright (C) 2014 Matthew Pickering <matthewtpickering@gmail.com> @@ -22,9 +23,7 @@  Unimplemented features: -  - menclose   - mpadded-  - mmultiscripts (etc)   - malignmark   - maligngroup   - Elementary Math@@ -45,18 +44,20 @@                             getSpaceWidth, isEmpty, empty) import Text.TeXMath.Unicode.ToTeX (getSymbolType) import Text.TeXMath.Unicode.ToUnicode (fromUnicode)-import Text.TeXMath.Compat (throwError, Except, runExcept, MonadError)-import Control.Applicative ((<$>), (<|>), (<*>))+import Control.Monad.Except (throwError, Except, runExcept, MonadError) import Control.Arrow ((&&&))+import Data.Char (toLower) import Data.Maybe (fromMaybe, listToMaybe, isJust)-import Data.Monoid (mconcat, First(..), getFirst)+import Data.Monoid (First(..), getFirst) import Data.List (transpose)-import Control.Monad (filterM, guard)+import Control.Applicative ((<|>))+import qualified Data.Text as T+import Control.Monad (filterM, mzero) import Control.Monad.Reader (ReaderT, runReaderT, asks, local) import Data.Either (rights)  -- | Parse a MathML expression to a list of 'Exp'.-readMathML :: String -> Either String [Exp]+readMathML :: T.Text -> Either T.Text [Exp] readMathML inp = map fixTree <$>   (runExcept (flip runReaderT defaultState (i >>= parseMathML)))   where@@ -67,11 +68,11 @@                          , inAccent :: Bool                          , curStyle :: TextType } -type MML = ReaderT MMLState (Except String)+type MML = ReaderT MMLState (Except T.Text)  data SupOrSub = Sub | Sup deriving (Show, Eq) -data IR a = Stretchy TeXSymbolType (String -> Exp) String+data IR a = Stretchy TeXSymbolType (T.Text -> Exp) T.Text           | Trailing (Exp -> Exp -> Exp) Exp           | E a @@ -122,7 +123,8 @@     "semantics" -> mkE <$> semantics e     "maligngroup" -> return $ mkE empty     "malignmark" -> return $ mkE empty-    _ -> throwError $ "Unexpected element " ++ err e+    "mmultiscripts" -> mkE <$> multiscripts e+    _ -> throwError $ "Unexpected element " <> err e   where     mkE :: Exp -> [IR Exp]     mkE = (:[]) . E@@ -149,8 +151,11 @@  op :: Element -> MML (IR Exp) op e = do-  Just inferredPosition <- (<|>) <$> (getFormType <$> findAttrQ "form" e)+  mInferredPosition <- (<|>) <$> (getFormType <$> findAttrQ "form" e)                             <*> asks position+  inferredPosition <- case mInferredPosition of+    Just inferredPosition -> pure inferredPosition+    Nothing               -> throwError "Did not find an inferred position"   opString <- getString e   let dummy = Operator opString "" inferredPosition 0 0 0 []   let opLookup = getMathMLOperator opString inferredPosition@@ -160,11 +165,11 @@   let objectPosition = getPosition $ form opDict   inScript <- asks inAccent   let ts =  [("accent", ESymbol Accent), ("fence", ESymbol objectPosition)]-  let fallback = case opString of-                      [t] -> ESymbol (getSymbolType t)-                      _   -> if isJust opLookup-                                then ESymbol Ord-                                else EMathOperator+  let fallback = case T.unpack opString of+                   [t] -> ESymbol (getSymbolType t)+                   _   -> if isJust opLookup+                          then ESymbol Ord+                          else EMathOperator   let constructor =         fromMaybe fallback           (getFirst . mconcat $ map (First . flip lookup ts) props)@@ -173,7 +178,7 @@     else do       return $ (E . constructor) opString   where-    checkAttr ps v = maybe (v `elem` ps) (=="true") <$> findAttrQ v e+    checkAttr ps v = maybe (v `elem` ps) (=="true") <$> findAttrQ (T.unpack v) e  text :: Element -> MML Exp text e = do@@ -182,7 +187,7 @@   s <- getString e   -- mathml seems to use mtext for spacing often; we get   -- more idiomatic math if we replace these with ESpace:-  return $ case (textStyle, s) of+  return $ case (textStyle, T.unpack s) of        (TextNormal, [c]) ->          case getSpaceWidth c of               Just w  -> ESpace w@@ -196,7 +201,7 @@   textStyle <- maybe TextNormal getTextType                 <$> (findAttrQ "mathvariant" e)   s <- getString e-  return $ EText textStyle (lquote ++ s ++ rquote)+  return $ EText textStyle $ lquote <> s <> rquote  space :: Element -> MML Exp space e = do@@ -264,7 +269,7 @@  -- If at the end of a delimiter we need to apply the script to the whole -- expression. We only insert Trailing when reordering Stretchy-trailingSup :: Maybe (String, String -> Exp)  -> Maybe (String, String -> Exp)  -> [IR InEDelimited] -> Exp+trailingSup :: Maybe (T.Text, T.Text -> Exp)  -> Maybe (T.Text, T.Text -> Exp)  -> [IR InEDelimited] -> Exp trailingSup open close es = go es   where     go [] = case (open, close) of@@ -346,7 +351,7 @@  frac :: Element -> MML Exp frac e = do-  [num, denom] <- mapM safeExpr =<< (checkArgs 2 e)+  (num, denom) <- mapPairM safeExpr =<< (checkArgs2 e)   rawThick <- findAttrQ "linethickness" e   return $     if thicknessZero rawThick@@ -358,7 +363,7 @@  kroot :: Element -> MML Exp kroot e = do-  [base, index] <- mapM safeExpr =<< (checkArgs 2 e)+  (base, index) <- mapPairM safeExpr =<< (checkArgs2 e)   return $ ERoot index base  phantom :: Element -> MML Exp@@ -373,13 +378,13 @@         case sep of           "" -> elChildren e           _  ->-            let seps = map (\x -> unode "mo" [x]) sep+            let seps = map (\x -> unode "mo" [x]) $ T.unpack sep                 sepsList = seps ++ repeat (last seps) in                 fInterleave (elChildren e) (sepsList)   safeExpr $ unode "mrow"-              ([unode "mo" open | not $ null open] +++              ([tunode "mo" open | not $ T.null open] ++                [unode "mrow" expanded] ++-               [unode "mo" close | not $ null close])+               [tunode "mo" close | not $ T.null close])  -- This could approximate the variants enclosed :: Element -> MML Exp@@ -387,11 +392,14 @@   mbNotation <- findAttrQ "notation" e   case mbNotation of        Just "box" -> EBoxed <$> row e+       Just "updiagonalstrike" -> ECancel ForwardSlash <$> row e+       Just "downdiagonalstrike" -> ECancel BackSlash <$> row e+       Just "updiagonalstrike downdiagonalstrike" -> ECancel XSlash <$> row e        _ -> row e  action :: Element -> MML Exp action e = do-  selection <-  maybe 1 read <$> (findAttrQ "selection" e)  -- 1-indexing+  selection <-  maybe 1 (read . T.unpack) <$> (findAttrQ "selection" e)  -- 1-indexing   safeExpr =<< maybeToEither ("Selection out of range")             (listToMaybe $ drop (selection - 1) (elChildren e)) @@ -399,7 +407,7 @@  sub :: Element -> MML [IR Exp] sub e =  do-  [base, subs] <- (checkArgs 2 e)+  (base, subs) <- checkArgs2 e   reorderScripts base subs ESub  -- Handles case with strethy elements in the base of sub/sup@@ -416,42 +424,42 @@  sup :: Element -> MML [IR Exp] sup e = do-  [base, sups] <- (checkArgs 2 e)+  (base, sups) <- checkArgs2 e   reorderScripts base sups ESuper  subsup :: Element -> MML Exp subsup e = do-  [base, subs, sups] <- (checkArgs 3 e)+  (base, subs, sups) <- checkArgs3 e   ESubsup <$> safeExpr base <*> (postfixExpr subs)                          <*> (postfixExpr sups)  under :: Element -> MML Exp under e = do-  [base, below] <- (checkArgs 2 e)+  (base, below) <- checkArgs2 e   EUnder False <$> safeExpr base <*> postfixExpr below  over :: Element -> MML Exp over e = do-  [base, above] <- (checkArgs 2 e)+  (base, above) <- checkArgs2 e   EOver False <$> safeExpr base <*> postfixExpr above  underover :: Element -> MML Exp underover e = do-  [base, below, above] <- (checkArgs 3 e)+  (base, below, above) <- checkArgs3 e   EUnderover False <$> safeExpr base  <*> (postfixExpr below)                                       <*> (postfixExpr above)  -- Other  semantics :: Element -> MML Exp-semantics e = do-  guard (not $ null cs)-  first <- safeExpr (head cs)-  if isEmpty first-    then fromMaybe empty . getFirst . mconcat <$> mapM annotation (tail cs)-    else return first-  where-    cs = elChildren e+semantics e =+  case elChildren e of+    [] -> mzero+    (c:cs) -> do+      first <- safeExpr c+      if isEmpty first+        then fromMaybe empty . getFirst . mconcat <$> mapM annotation cs+        else return first  annotation :: Element -> MML (First Exp) annotation e = do@@ -463,6 +471,43 @@       First . Just <$> row e     _ -> return (First Nothing) +multiscripts :: Element -> MML Exp+multiscripts e = do+  let (xs, pres) = break ((== "mprescripts") . name) (elChildren e)+  let row'' e' = case name e' of+                   "none" -> return $ EGrouped []+                   "mrow" -> row e'+                   _ -> mkExp <$> expr e'+  let maybeGroup [w] = w+      maybeGroup ws = EGrouped ws+  xs' <- mapM row'' xs+  let getSubs [] = []+      getSubs [w] = [w]+      getSubs (w:_:ws) = w : getSubs ws+  let getSups [] = []+      getSups [_] = []+      getSups (_:w:ws) = w : getSups ws+  let (base, postSubs, postSups) =+         case xs' of+           [] -> (EGrouped [], [], [])+           (w:ws) -> (w, getSubs ws, getSups ws)+  let rightSide =+        case (postSubs, postSups) of+          ([],[])   -> base+          (ws,[])   -> ESub base (maybeGroup ws)+          ([],ws)   -> ESuper base (maybeGroup ws)+          (ws,ys)   -> ESubsup base (maybeGroup ws) (maybeGroup ys)+  pres' <- mapM row'' $ drop 1 pres+  let (preSubs, preSups) = (getSubs pres', getSups pres')+  let leftSide =+        case (preSubs, preSups) of+          ([],[])   -> EGrouped []+          (ws,[])   -> ESub (EGrouped []) (maybeGroup ws)+          ([],ws)   -> ESuper (EGrouped []) (maybeGroup ws)+          (ws,ys)   -> ESubsup (EGrouped []) (maybeGroup ws) (maybeGroup ys)+  return $ EGrouped [leftSide, rightSide]++ -- Table  table :: Element -> MML Exp@@ -483,15 +528,15 @@   align <- maybe a toAlignment <$> (findAttrQ "columnalign" e)   case name e of     "mtr" -> mapM (tableCell align) (elChildren e)-    "mlabeledtr" -> mapM (tableCell align) (tail $ elChildren e)-    _ -> throwError $ "Invalid Element: Only expecting mtr elements " ++ err e+    "mlabeledtr" -> mapM (tableCell align) (drop 1 $ elChildren e)+    _ -> throwError $ "Invalid Element: Only expecting mtr elements " <> err e  tableCell :: Alignment -> Element -> MML (Alignment, [Exp]) tableCell a e = do   align <- maybe a toAlignment <$> (findAttrQ "columnalign" e)   case name e of     "mtd" -> (,) align . (:[]) <$> row e-    _ -> throwError $ "Invalid Element: Only expecting mtd elements " ++ err e+    _ -> throwError $ "Invalid Element: Only expecting mtd elements " <> err e  -- Fixup @@ -537,10 +582,10 @@  -- Utility -getString :: Element -> MML String+getString :: Element -> MML T.Text getString e = do   tt <- asks curStyle-  return $ fromUnicode tt $ stripSpaces $ concatMap cdData+  return $ fromUnicode tt $ stripSpaces $ T.pack $ concatMap cdData          $ onlyText $ elContent $ e  -- Finds only text data and replaces entity references with corresponding@@ -548,39 +593,53 @@ onlyText :: [Content] -> [CData] onlyText [] = [] onlyText ((Text c):xs) = c : onlyText xs-onlyText (CRef s : xs)  = (CData CDataText (fromMaybe s $ getUnicode s) Nothing) : onlyText xs+onlyText (CRef s : xs)  = (CData CDataText (fromMaybe s $ getUnicode' s) Nothing) : onlyText xs+  where getUnicode' = fmap T.unpack . getUnicode . T.pack onlyText (_:xs) = onlyText xs -checkArgs :: Int -> Element -> MML [Element]-checkArgs x e = do-  let cs = elChildren e-  if nargs x cs-    then return cs-    else (throwError ("Incorrect number of arguments for " ++ err e))+checkArgs2 :: Element -> MML (Element, Element)+checkArgs2 e = case elChildren e of+  [a, b] -> return (a, b)+  _      -> throwError ("Incorrect number of arguments for " <> err e) -nargs :: Int -> [a] -> Bool-nargs n xs = length xs == n+checkArgs3 :: Element -> MML (Element, Element, Element)+checkArgs3 e = case elChildren e of+  [a, b, c] -> return (a, b, c)+  _         -> throwError ("Incorrect number of arguments for " <> err e) -err :: Element -> String-err e = name e ++ maybe "" (\x -> " line " ++ show x) (elLine e)+mapPairM :: Monad m => (a -> m b) -> (a, a) -> m (b, b)+mapPairM f (a, b) = (,) <$> (f a) <*> (f b) -findAttrQ :: String -> Element -> MML (Maybe String)+err :: Element -> T.Text+err e = name e <> maybe "" (\x -> " line " <> T.pack (show x)) (elLine e)++-- Kept as String for Text.XML.Light+findAttrQ :: String -> Element -> MML (Maybe T.Text) findAttrQ s e = do-  inherit <- asks (lookupAttrQ s . attrs)-  return $+  inherit <- case (name e, s) of+            ("mfenced", "open") -> return Nothing+            ("mfenced", "close") -> return Nothing+            ("mfenced", "separators") -> return Nothing+            _ -> asks (lookupAttrQ s . attrs)+  return $ fmap T.pack $     findAttr (QName s Nothing Nothing) e       <|> inherit +-- Kept as String for Text.XML.Light lookupAttrQ :: String -> [Attr] -> Maybe String-lookupAttrQ s = lookupAttr (QName s Nothing Nothing)+lookupAttrQ s = lookupAttr (QName (map toLower s) Nothing Nothing) -name :: Element -> String-name (elName -> (QName n _ _)) = n+name :: Element -> T.Text+name (elName -> (QName n _ _)) = T.toLower $ T.pack n -stripSpaces :: String -> String-stripSpaces = reverse . (dropWhile isSpace) . reverse . (dropWhile isSpace)+-- Kept as String for Text.XML.Light+tunode :: String -> T.Text -> Element+tunode s = unode s . T.unpack -toAlignment :: String -> Alignment+stripSpaces :: T.Text -> T.Text+stripSpaces = T.dropAround isSpace++toAlignment :: T.Text -> Alignment toAlignment "left" = AlignLeft toAlignment "center" = AlignCenter toAlignment "right" = AlignRight@@ -591,7 +650,7 @@ getPosition (FPostfix) = Close getPosition (FInfix) = Op -getFormType :: Maybe String -> Maybe FormType+getFormType :: Maybe T.Text -> Maybe FormType getFormType (Just "infix") = (Just FInfix) getFormType (Just "prefix") = (Just FPrefix) getFormType (Just "postfix") = (Just FPostfix)@@ -608,7 +667,7 @@ isSpace '\n' = True isSpace _    = False -spacelikeElems, cSpacelikeElems :: [String]+spacelikeElems, cSpacelikeElems :: [T.Text] spacelikeElems = ["mtext", "mspace", "maligngroup", "malignmark"] cSpacelikeElems = ["mrow", "mstyle", "mphantom", "mpadded"] @@ -617,11 +676,11 @@   uid `elem` spacelikeElems || uid `elem` cSpacelikeElems &&     and (map spacelike (elChildren e)) -thicknessZero :: Maybe String -> Bool+thicknessZero :: Maybe T.Text -> Bool thicknessZero (Just s) = thicknessToNum s == 0.0 thicknessZero Nothing  = False -widthToNum :: String -> Rational+widthToNum :: T.Text -> Rational widthToNum s =   case s of        "veryverythinmathspace"  -> 1/18@@ -640,7 +699,7 @@        "negativeveryverythickmathspace" -> -7/18        _ -> fromMaybe 0 (readLength s) -thicknessToNum :: String -> Rational+thicknessToNum :: T.Text -> Rational thicknessToNum s =   case s of        "thin" -> (3/18)
src/Text/TeXMath/Readers/MathML/EntityMap.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE OverloadedStrings #-} {- Copyright (C) 2014 Matthew Pickering <matthewtpickering@gmail.com> @@ -33,12 +34,13 @@ module Text.TeXMath.Readers.MathML.EntityMap (getUnicode) where  import qualified Data.Map as M+import qualified Data.Text as T  -- | Translates MathML entity reference to the corresponding Unicode string.-getUnicode :: String -> Maybe String+getUnicode :: T.Text -> Maybe T.Text getUnicode = flip M.lookup entityList -entityList :: M.Map String String+entityList :: M.Map T.Text T.Text entityList = M.fromList   [ ("AElig","\198")   , ("AMP","&")
src/Text/TeXMath/Readers/MathML/MMLDict.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE OverloadedStrings #-} {- Copyright (C) 2014 Matthew Pickering <matthewtpickering@gmail.com> @@ -25,15 +26,16 @@  import Text.TeXMath.Types import qualified Data.Map as M-import Data.Monoid (First(..), mconcat)+import qualified Data.Text as T+import Data.Monoid (First(..)) -dict :: M.Map (String, FormType) Operator+dict :: M.Map (T.Text, FormType) Operator dict = M.fromList (map (\o -> ((oper o, form o), o)) operators)  -- | Tries to find the 'Operator' record based on a given position. If -- there is no exact match then the positions will be tried in the -- following order (Infix, Postfix, Prefix) with the first match (if any) being returned.-getMathMLOperator :: String -> FormType -> Maybe Operator+getMathMLOperator :: T.Text -> FormType -> Maybe Operator getMathMLOperator s p =   getFirst $ mconcat $ (map (\x -> First $ M.lookup (s, x) dict) lookupOrder)   where@@ -55,13 +57,13 @@   , Operator {oper = "*", description = "ASTERISK", form = FInfix, priority = 390, lspace = 3, rspace = 3, properties = []}   , Operator {oper = "**", description = "MULTIPLE CHARACTER OPERATOR: **", form = FInfix, priority = 780, lspace = 1, rspace = 1, properties = []}   , Operator {oper = "*=", description = "MULTIPLE CHARACTER OPERATOR: *=", form = FInfix, priority = 260, lspace = 4, rspace = 4, properties = []}-  , Operator {oper = "+", description = "PLUS SIGN", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "+", description = "PLUS SIGN", form = FPrefix, priority = 275, lspace = 0, rspace = 1, properties = []}+  , Operator {oper = "+", description = "PLUS SIGN", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "++", description = "MULTIPLE CHARACTER OPERATOR: ++", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = []}   , Operator {oper = "+=", description = "MULTIPLE CHARACTER OPERATOR: +=", form = FInfix, priority = 260, lspace = 4, rspace = 4, properties = []}   , Operator {oper = ",", description = "COMMA", form = FInfix, priority = 40, lspace = 0, rspace = 3, properties = ["separator"]}-  , Operator {oper = "-", description = "HYPHEN-MINUS", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "-", description = "HYPHEN-MINUS", form = FPrefix, priority = 275, lspace = 0, rspace = 1, properties = []}+  , Operator {oper = "-", description = "HYPHEN-MINUS", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "--", description = "MULTIPLE CHARACTER OPERATOR: --", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = []}   , Operator {oper = "-=", description = "MULTIPLE CHARACTER OPERATOR: -=", form = FInfix, priority = 260, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "->", description = "MULTIPLE CHARACTER OPERATOR: ->", form = FInfix, priority = 90, lspace = 5, rspace = 5, properties = []}@@ -92,15 +94,15 @@   , Operator {oper = "_", description = "LOW LINE", form = FInfix, priority = 900, lspace = 1, rspace = 1, properties = []}   , Operator {oper = "`", description = "GRAVE ACCENT", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = ["accent"]}   , Operator {oper = "{", description = "LEFT CURLY BRACKET", form = FPrefix, priority = 20, lspace = 0, rspace = 0, properties = ["symmetric","fence","stretchy","mirrorable"]}-  , Operator {oper = "|", description = "VERTICAL LINE", form = FInfix, priority = 270, lspace = 2, rspace = 2, properties = ["stretchy","symmetric","fence"]}   , Operator {oper = "|", description = "VERTICAL LINE", form = FPrefix, priority = 20, lspace = 0, rspace = 0, properties = ["symmetric","fence","stretchy"]}   , Operator {oper = "|", description = "VERTICAL LINE", form = FPostfix, priority = 20, lspace = 0, rspace = 0, properties = ["symmetric","fence","stretchy"]}-  , Operator {oper = "||", description = "MULTIPLE CHARACTER OPERATOR: ||", form = FInfix, priority = 270, lspace = 2, rspace = 2, properties = ["stretchy","symmetric","fence"]}+  , Operator {oper = "|", description = "VERTICAL LINE", form = FInfix, priority = 270, lspace = 2, rspace = 2, properties = ["stretchy","symmetric","fence"]}   , Operator {oper = "||", description = "MULTIPLE CHARACTER OPERATOR: ||", form = FPrefix, priority = 20, lspace = 0, rspace = 0, properties = ["symmetric","fence","stretchy"]}   , Operator {oper = "||", description = "MULTIPLE CHARACTER OPERATOR: ||", form = FPostfix, priority = 20, lspace = 0, rspace = 0, properties = ["symmetric","fence","stretchy"]}-  , Operator {oper = "|||", description = "MULTIPLE CHARACTER OPERATOR: |||", form = FInfix, priority = 270, lspace = 2, rspace = 2, properties = ["stretchy","symmetric","fence"]}+  , Operator {oper = "||", description = "MULTIPLE CHARACTER OPERATOR: ||", form = FInfix, priority = 270, lspace = 2, rspace = 2, properties = ["stretchy","symmetric","fence"]}   , Operator {oper = "|||", description = "MULTIPLE CHARACTER OPERATOR: |||", form = FPrefix, priority = 20, lspace = 0, rspace = 0, properties = ["symmetric","fence","stretchy"]}   , Operator {oper = "|||", description = "MULTIPLE CHARACTER OPERATOR: |||", form = FPostfix, priority = 20, lspace = 0, rspace = 0, properties = ["symmetric","fence","stretchy"]}+  , Operator {oper = "|||", description = "MULTIPLE CHARACTER OPERATOR: |||", form = FInfix, priority = 270, lspace = 2, rspace = 2, properties = ["stretchy","symmetric","fence"]}   , Operator {oper = "}", description = "RIGHT CURLY BRACKET", form = FPostfix, priority = 20, lspace = 0, rspace = 0, properties = ["symmetric","fence","stretchy","mirrorable"]}   , Operator {oper = "~", description = "TILDE", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = ["accent","stretchy"]}   , Operator {oper = "\168", description = "DIAERESIS", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = ["accent"]}@@ -108,8 +110,8 @@   , Operator {oper = "\172", description = "NOT SIGN", form = FPrefix, priority = 680, lspace = 2, rspace = 1, properties = []}   , Operator {oper = "\175", description = "MACRON", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = ["accent","stretchy"]}   , Operator {oper = "\176", description = "DEGREE SIGN", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = []}-  , Operator {oper = "\177", description = "PLUS-MINUS SIGN", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "\177", description = "PLUS-MINUS SIGN", form = FPrefix, priority = 275, lspace = 0, rspace = 1, properties = []}+  , Operator {oper = "\177", description = "PLUS-MINUS SIGN", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "\178", description = "SUPERSCRIPT TWO", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = ["accent"]}   , Operator {oper = "\179", description = "SUPERSCRIPT THREE", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = ["accent"]}   , Operator {oper = "\180", description = "ACUTE ACCENT", form = FPostfix, priority = 880, lspace = 0, rspace = 0, properties = ["accent"]}@@ -293,10 +295,10 @@   , Operator {oper = "\8719", description = "N-ARY PRODUCT", form = FPrefix, priority = 350, lspace = 1, rspace = 2, properties = ["symmetric","largeop","movablelimits"]}   , Operator {oper = "\8720", description = "N-ARY COPRODUCT", form = FPrefix, priority = 350, lspace = 1, rspace = 2, properties = ["symmetric","largeop","movablelimits"]}   , Operator {oper = "\8721", description = "N-ARY SUMMATION", form = FPrefix, priority = 290, lspace = 1, rspace = 2, properties = ["symmetric","largeop","movablelimits","mirrorable"]}-  , Operator {oper = "\8722", description = "MINUS SIGN", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "\8722", description = "MINUS SIGN", form = FPrefix, priority = 275, lspace = 0, rspace = 1, properties = []}-  , Operator {oper = "\8723", description = "MINUS-OR-PLUS SIGN", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}+  , Operator {oper = "\8722", description = "MINUS SIGN", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "\8723", description = "MINUS-OR-PLUS SIGN", form = FPrefix, priority = 275, lspace = 0, rspace = 1, properties = []}+  , Operator {oper = "\8723", description = "MINUS-OR-PLUS SIGN", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "\8724", description = "DOT PLUS", form = FInfix, priority = 275, lspace = 4, rspace = 4, properties = []}   , Operator {oper = "\8725", description = "DIVISION SLASH", form = FInfix, priority = 265, lspace = 4, rspace = 4, properties = ["stretchy","mirrorable"]}   , Operator {oper = "\8726", description = "SET MINUS", form = FInfix, priority = 650, lspace = 4, rspace = 4, properties = []}@@ -1147,5 +1149,5 @@   , Operator {oper = "\11007", description = "N-ARY WHITE VERTICAL BAR", form = FPrefix, priority = 330, lspace = 1, rspace = 2, properties = ["symmetric","largeop","movablelimits"]}   , Operator {oper = "\11077", description = "LEFTWARDS QUADRUPLE ARROW", form = FInfix, priority = 270, lspace = 5, rspace = 5, properties = ["stretchy"]}   , Operator {oper = "\11078", description = "RIGHTWARDS QUADRUPLE ARROW", form = FInfix, priority = 270, lspace = 5, rspace = 5, properties = ["stretchy"]}-  , Operator {oper = "\65079", description = "PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET" , form = FInfix, priority = 880, lspace = 0, rspace = 0, properties = ["stretchy", "accent"]}-  , Operator {oper = "\65080", description = "PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET", form = FInfix, priority = 880, lspace = 0, rspace = 0, properties = ["stretchy", "accent"]}]+  , Operator {oper = "\65079", description = "PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET", form = FInfix, priority = 880, lspace = 0, rspace = 0, properties = ["stretchy","accent"]}+  , Operator {oper = "\65080", description = "PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET", form = FInfix, priority = 880, lspace = 0, rspace = 0, properties = ["stretchy","accent"]}]
src/Text/TeXMath/Readers/OMML.hs view
@@ -1,4 +1,6 @@ {-# LANGUAGE PatternGuards #-}+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE LambdaCase #-}  {- Copyright (C) 2014 Jesse Rosenthal <jrosenthal@jhu.edu>@@ -33,16 +35,17 @@ module Text.TeXMath.Readers.OMML (readOMML) where  import Text.XML.Light-import Data.Maybe (isJust, mapMaybe, fromMaybe)+import Data.Maybe (isJust, mapMaybe, fromMaybe, maybeToList) import Data.List (intercalate) import Data.Char (isDigit, readLitChar)+import qualified Data.Text as T import Text.TeXMath.Types import Text.TeXMath.Shared (fixTree, getSpaceWidth, getOperator) import Text.TeXMath.Unicode.ToTeX (getSymbolType)-import Control.Applicative ((<$>))-import Text.TeXMath.Unicode.Fonts (getUnicode, stringToFont)+import Text.TeXMath.Unicode.Fonts (getUnicode, textToFont)+import Data.List.Split (splitWhen) -readOMML :: String -> Either String [Exp]+readOMML :: T.Text -> Either T.Text [Exp] readOMML s | Just e <- parseXMLDoc s =   case elemToOMML e of     Just exs -> Right $ map fixTree $ unGroup exs@@ -56,9 +59,11 @@ elemToOMML :: Element -> Maybe [Exp] elemToOMML element  | isElem "m" "oMathPara" element = do   let expList = mapMaybe elemToOMML (elChildren element)-  return $ map (\l -> if length l == 1 then (head l) else EGrouped l) expList+  return $ map (\case+                   [x] -> x+                   xs -> EGrouped xs) expList elemToOMML element  | isElem "m" "oMath" element =-  Just $ concat $ mapMaybe elemToExps $ unwrapWTags $ elChildren element+  Just $ elemsToExps $ unwrapWTags $ elChildren element elemToOMML _ = Nothing  -- oMath can contain w:hyperlink, w:sdt, etc. I can't find a complete@@ -71,6 +76,7 @@                                 Just "w" -> elChildren element                                 _        -> [element] +-- Kept as String because of Text.XML.Light isElem :: String -> String -> Element -> Bool isElem prefix name element =   let qp = fromMaybe "" (qPrefix (elName element))@@ -78,16 +84,18 @@    qName (elName element) == name &&    qp == prefix -hasElemName:: String -> String -> QName -> Bool+-- Kept as String because of Text.XML.Light+hasElemName :: String -> String -> QName -> Bool hasElemName prefix name qn =   let qp = fromMaybe "" (qPrefix qn)   in    qName qn == name &&    qp       == prefix -data OMathRunElem = TextRun String+data OMathRunElem = TextRun T.Text                   | LnBrk                   | Tab+                  | Inserted [OMathRunElem]                     deriving Show  data OMathRunTextStyle = NoStyle@@ -110,29 +118,12 @@                     | OBoldItalic                     deriving (Show, Eq) -elemToBase :: Element -> Maybe Exp-elemToBase element | isElem "m" "e" element = do-  bs <- elemToBases element-  return $ case bs of-    (e : []) -> e-    exps     -> EGrouped exps-elemToBase _ = Nothing -elemToBases :: Element -> Maybe [Exp]-elemToBases element | isElem "m" "e" element =-  return $ concat $ mapMaybe elemToExps' (elChildren element)-elemToBases _ = Nothing----- TODO: The right way to do this is to use the ampersand to break the--- text lines into multiple columns. That's tricky, though, and this--- will get us most of the way for the time being.-filterAmpersand :: Exp -> Exp-filterAmpersand (EIdentifier s)   = EIdentifier (filter ('&' /=) s)-filterAmpersand (EText tt s)      = EText tt (filter ('&' /=) s)-filterAmpersand (EStyled tt exps) = EStyled tt (map filterAmpersand exps)-filterAmpersand (EGrouped exps)   = EGrouped (map filterAmpersand exps)-filterAmpersand e                    = e+breakOnAmpersand :: [Exp] -> [[Exp]]+breakOnAmpersand = splitWhen isAmpersand+ where+  isAmpersand (ESymbol _ "&") = True+  isAmpersand _ = False  elemToOMathRunTextStyle :: Element -> OMathRunTextStyle elemToOMathRunTextStyle element@@ -171,10 +162,11 @@ elemToOMathRunElem element   | isElem "w" "t" element     || isElem "m" "t" element-    || isElem "w" "delText" element = Just $ TextRun $ strContent element+    || isElem "w" "delText" element = Just $ TextRun $ T.pack $ strContent element   | isElem "w" "br" element = Just LnBrk   | isElem "w" "tab" element = Just Tab   | isElem "w" "sym" element = Just $ TextRun $ getSymChar element+  | isElem "w" "ins" element = Just $ Inserted $ mapMaybe elemToOMathRunElem (elChildren element)   | otherwise = Nothing  elemToOMathRunElems :: Element -> Maybe [OMathRunElem]@@ -186,13 +178,14 @@  ----- And now the TeXMath Creation -oMathRunElemToString :: OMathRunElem -> String-oMathRunElemToString (TextRun s) = s-oMathRunElemToString (LnBrk) = ['\n']-oMathRunElemToString (Tab) = ['\t']+oMathRunElemToText :: OMathRunElem -> T.Text+oMathRunElemToText (TextRun s) = s+oMathRunElemToText (LnBrk) = "\n"+oMathRunElemToText (Tab) = "\t"+oMathRunElemToText (Inserted es) = mconcat $ map oMathRunElemToText es -oMathRunElemsToString :: [OMathRunElem] -> String-oMathRunElemsToString = concatMap oMathRunElemToString+oMathRunElemsToText :: [OMathRunElem] -> T.Text+oMathRunElemsToText = T.concat . map oMathRunElemToText  oMathRunTextStyleToTextType :: OMathRunTextStyle -> Maybe TextType oMathRunTextStyleToTextType (Normal) = Just $ TextNormal@@ -231,31 +224,56 @@     Just $ TextBoldItalic   | otherwise = Nothing +-- merge adjacent Exps with same style; see jgm/pandoc#10560:+mergeExps :: [Exp] -> [Exp]+mergeExps [] = []+mergeExps (EStyled tt xs : EStyled tt' xs' : rest)+  | tt == tt' = mergeExps (EStyled tt (xs <> xs') : rest)+mergeExps (EText tt x : EText tt' x' : rest)+  | tt == tt' = mergeExps (EText tt (x <> x') : rest)+mergeExps (x:xs) = x : mergeExps xs++elemsToExps :: [Element] -> [Exp]+elemsToExps = mergeExps . concat . mapMaybe elemToExps+ elemToExps :: Element -> Maybe [Exp] elemToExps element = unGroup <$> elemToExps' element +elemToBase :: Element -> Maybe Exp+elemToBase element | isElem "m" "e" element = do+  bs <- elemToBases element+  return $ case bs of+    (e : []) -> e+    exps     -> EGrouped exps+elemToBase _ = Nothing++elemToBases :: Element -> Maybe [Exp]+elemToBases element | isElem "m" "e" element =+  return $ concat $ mapMaybe elemToExps' (elChildren element)+elemToBases _ = Nothing+++ elemToExps' :: Element -> Maybe [Exp] elemToExps' element | isElem "m" "acc" element = do   let chr = filterChildName (hasElemName "m" "accPr") element >>=             filterChildName (hasElemName "m" "chr") >>=-            findAttrBy (hasElemName "m" "val") >>=-            Just . head-      chr' = case chr of-        Just c -> c-        Nothing -> '\x302'       -- default to wide hat.+            findAttrBy (hasElemName "m" "val")+      chr' = maybe "\x302" T.pack chr  -- default to wide hat   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase-  return $ [EOver False baseExp (ESymbol Accent [chr'])]+  return $ [EOver False baseExp (ESymbol Accent chr')] elemToExps' element | isElem "m" "bar" element = do-  pos <- filterChildName (hasElemName "m" "barPr") element >>=+  let pos = filterChildName (hasElemName "m" "barPr") element >>=             filterChildName (hasElemName "m" "pos") >>=             findAttrBy (hasElemName "m" "val")   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase+  -- According to OMML Specification, the default value of pos (whether it exists or not) is "bot"+  -- see https://github.com/jgm/texmath/issues/187   case pos of-    "top" -> Just [EOver False baseExp (ESymbol TOver "\773")]-    "bot" -> Just [EUnder False baseExp (ESymbol TUnder "\818")]-    _     -> Nothing+    Just "top" -> Just [EOver False baseExp (ESymbol TOver "\773")]+    _          -> Just [EUnder False baseExp (ESymbol TUnder "\818")] elemToExps' element | isElem "m" "box" element = do   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase@@ -263,52 +281,67 @@ elemToExps' element | isElem "m" "borderBox" element = do   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase-  return [EBoxed baseExp]+  let bbPr = filterChildName (hasElemName "m" "borderBoxPr") element+      bltr = bbPr >>= filterChildName (hasElemName "m" "strikeBLTR") >>=+                      findAttrBy (hasElemName "m" "val")+      tlbr = bbPr >>= filterChildName (hasElemName "m" "strikeTLBR") >>=+                      findAttrBy (hasElemName "m" "val")+  return $+    case (bltr, tlbr) of+      (Just "1", Just "1") -> [ECancel XSlash baseExp]+      (Just "1", _)        -> [ECancel ForwardSlash baseExp]+      (_, Just "1")        -> [ECancel BackSlash baseExp]+      _                    -> [EBoxed baseExp]+ elemToExps' element | isElem "m" "d" element =   let baseExps  = mapMaybe                   elemToBases                   (elChildren element)       inDelimExps = map (map Right) baseExps       dPr = filterChildName (hasElemName "m" "dPr") element+      headOrSpace [] = Just ' '+      headOrSpace (c:_) = Just c       begChr = dPr >>=                filterChildName (hasElemName "m" "begChr") >>=-               findAttrBy (hasElemName "m" "val") >>=-               (\c -> if null c then (Just ' ') else (Just $ head c))+               findAttrBy (hasElemName "m" "val") >>= headOrSpace       sepChr = dPr >>=                filterChildName (hasElemName "m" "sepChr") >>=-               findAttrBy (hasElemName "m" "val") >>=-               (\c -> if null c then (Just ' ') else (Just $ head c))+               findAttrBy (hasElemName "m" "val") >>= headOrSpace       endChr = dPr >>=                filterChildName (hasElemName "m" "endChr") >>=-               findAttrBy (hasElemName "m" "val") >>=-               (\c -> if null c then (Just ' ') else (Just $ head c))-      beg = fromMaybe '(' begChr-      end = fromMaybe ')' endChr-      sep = fromMaybe '|' sepChr-      exps = intercalate [Left [sep]] inDelimExps+               findAttrBy (hasElemName "m" "val") >>= headOrSpace+      beg = maybe "(" T.singleton begChr+      end = maybe ")" T.singleton endChr+      sep = maybe "|" T.singleton sepChr+      exps = intercalate [Left sep] inDelimExps   in-   Just [EDelimited [beg] [end] exps]+   Just [EDelimited beg end exps] elemToExps' element | isElem "m" "eqArr" element =   let expLst = mapMaybe elemToBases (elChildren element)-      expLst' = map (\es -> [map filterAmpersand es]) expLst+      expLst' = map breakOnAmpersand expLst+      cols = maximum (map length expLst')+      colspecs = take cols $ cycle [AlignRight , AlignLeft]   in-   return [EArray [] expLst']+   return [EArray colspecs expLst'] elemToExps' element | isElem "m" "f" element = do   num <- filterChildName (hasElemName "m" "num") element   den <- filterChildName (hasElemName "m" "den") element-  let numExp = EGrouped $ concat $ mapMaybe (elemToExps) (elChildren num)-      denExp = EGrouped $ concat $ mapMaybe (elemToExps) (elChildren den)-  return $ [EFraction NormalFrac numExp denExp]+  let barType = filterChildName (hasElemName "m" "fPr") element >>=+            filterChildName (hasElemName "m" "type") >>=+            findAttrBy (hasElemName "m" "val")+  let numExp = EGrouped $ elemsToExps (elChildren num)+      denExp = EGrouped $ elemsToExps (elChildren den)+  case barType of+    Just "noBar" -> Just [EFraction NoLineFrac numExp denExp]+    _            -> Just [EFraction NormalFrac numExp denExp] elemToExps' element | isElem "m" "func" element = do   fName <- filterChildName (hasElemName "m" "fName") element   baseExp <- filterChildName (hasElemName "m" "e") element >>=           elemToBase-  -- We need a string for the fname, but omml gives it to us as a-  -- series of oMath elems. We're going to filter out the oMathRuns,-  -- which should work for us most of the time.-  let fnameString = concatMap expToString $-                    concat $ mapMaybe (elemToExps) (elChildren fName)-  return [EMathOperator fnameString, baseExp]+  let fnameExp = case mconcat $ mapMaybe elemToExps' (elChildren fName) of+                   [x] -> x+                   xs  -> EGrouped xs+  return [fnameExp, baseExp] elemToExps' element | isElem "m" "groupChr" element = do   let gPr = filterChildName (hasElemName "m" "groupChrPr") element       chr = gPr >>=@@ -317,34 +350,42 @@       pos = gPr >>=             filterChildName (hasElemName "m" "pos") >>=             findAttrBy (hasElemName "m" "val")+      justif = gPr >>=+               filterChildName (hasElemName "m" "vertJC") >>=+               findAttrBy (hasElemName "m" "val")   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase   case pos of     Just "top" ->       let chr' = case chr of-            Just (c:_) -> c-            _           -> '\65079'   -- default to overbrace+            Just (c:_) -> T.singleton c+            _           -> "\65079"   -- default to overbrace       in-       return [EOver False baseExp (ESymbol TOver [chr'])]-    Just "bot" ->+       return $+         case justif of+           Just "top" -> [EUnder False (ESymbol TOver chr') baseExp]+           _ -> [EOver False baseExp (ESymbol TOver chr')]+    _ -> -- bot is default       let chr' = case chr of-            Just (c:_) -> c-            _           -> '\65080'   -- default to underbrace+            Just (c:_) -> T.singleton c+            _           -> "\65080"   -- default to underbrace       in-       return [EUnder False baseExp (ESymbol TUnder [chr'])]-    _          -> Nothing+       return $+         case justif of+           Just "top" -> [EUnder False baseExp (ESymbol TUnder chr')]+           _ -> [EOver False (ESymbol TUnder chr') baseExp] elemToExps' element | isElem "m" "limLow" element = do   baseExp <- filterChildName (hasElemName "m" "e") element           >>= elemToBase   limExp <- filterChildName (hasElemName "m" "lim") element-            >>= (\e -> Just $ concat $ mapMaybe (elemToExps) (elChildren e))+            >>= (\e -> Just $ elemsToExps (elChildren e))             >>= (return . EGrouped)   return [EUnder True baseExp limExp] elemToExps' element | isElem "m" "limUpp" element = do   baseExp <- filterChildName (hasElemName "m" "e") element           >>= elemToBase   limExp <- filterChildName (hasElemName "m" "lim") element-            >>= (\e -> Just $ concat $ mapMaybe (elemToExps) (elChildren e))+            >>= (\e -> Just $ elemsToExps (elChildren e))             >>= (return . EGrouped)   return [EOver True baseExp limExp] elemToExps' element | isElem "m" "m" element =@@ -362,28 +403,28 @@                 filterChildName (hasElemName "m" "chr") >>=                 findAttrBy (hasElemName "m" "val")       opChr = case naryChr of-        Just (c:_) -> c-        _          -> '\8747'   -- default to integral+        Just (c:_) -> T.singleton c+        _          -> "\8747"   -- default to integral       limLoc = naryPr >>=                filterChildName (hasElemName "m" "limLoc") >>=                findAttrBy (hasElemName "m" "val")   subExps <- filterChildName (hasElemName "m" "sub") element >>=-         (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))+         return . elemsToExps . elChildren   supExps <- filterChildName (hasElemName "m" "sup") element >>=-         (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))-  baseExp <- filterChildName (hasElemName "m" "e") element >>=-             elemToBase+         return . elemsToExps . elChildren+  let baseExp = maybeToList $+        filterChildName (hasElemName "m" "e") element >>= elemToBase   case limLoc of-    Just "undOvr" -> return [EUnderover True-                              (ESymbol Op [opChr])+    Just "undOvr" -> return $ EUnderover True+                              (ESymbol Op opChr)                               (EGrouped subExps)                               (EGrouped supExps)-                            , baseExp]-    _             -> return [ESubsup-                              (ESymbol Op [opChr])+                            : baseExp+    _             -> return $ ESubsup+                              (ESymbol Op opChr)                               (EGrouped subExps)                               (EGrouped supExps)-                            , baseExp]+                            : baseExp  elemToExps' element | isElem "m" "phant" element = do   baseExp <- filterChildName (hasElemName "m" "e") element >>=@@ -391,7 +432,7 @@   return [EPhantom baseExp] elemToExps' element | isElem "m" "rad" element = do   degExps <- filterChildName (hasElemName "m" "deg") element >>=-              (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))+              return . elemsToExps . elChildren   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase   return $ case degExps of@@ -399,9 +440,9 @@     ds -> [ERoot (EGrouped ds) baseExp] elemToExps' element | isElem "m" "sPre" element = do   subExps <- filterChildName (hasElemName "m" "sub") element >>=-            (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))+            return . elemsToExps . elChildren   supExps <- filterChildName (hasElemName "m" "sup") element >>=-            (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))+            return . elemsToExps . elChildren   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase   return [ESubsup@@ -413,83 +454,70 @@   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase   subExps <- filterChildName (hasElemName "m" "sub") element >>=-            (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))+            return . elemsToExps . elChildren   return [ESub baseExp (EGrouped subExps)] elemToExps' element | isElem "m" "sSubSup" element = do   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase   subExps <- filterChildName (hasElemName "m" "sub") element >>=-             (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))+             return . elemsToExps . elChildren   supExps <- filterChildName (hasElemName "m" "sup") element >>=-             (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))+             return . elemsToExps . elChildren   return [ESubsup baseExp (EGrouped subExps) (EGrouped supExps)] elemToExps' element | isElem "m" "sSup" element = do   baseExp <- filterChildName (hasElemName "m" "e") element >>=              elemToBase   supExps <- filterChildName (hasElemName "m" "sup") element >>=-            (\e -> return $ concat $ mapMaybe (elemToExps) (elChildren e))+            return . elemsToExps . elChildren   return [ESuper baseExp (EGrouped supExps)] elemToExps' element | isElem "m" "r" element = do   let mrPr = filterChildName (hasElemName "m" "rPr") element-      lit = mrPr >>=-            filterChildName (hasElemName "m" "lit") >>=-            findAttrBy (hasElemName "m" "val")-      txtSty = elemToOMathRunTextStyle element+      lit = mrPr >>= filterChildName (hasElemName "m" "lit")+      nor = mrPr >>= filterChildName (hasElemName "m" "nor")+      txtSty = oMathRunTextStyleToTextType $ elemToOMathRunTextStyle element   mrElems <- elemToOMathRunElems element-  return $ case oMathRunTextStyleToTextType txtSty of-    Nothing -> interpretString $ oMathRunElemsToString mrElems-    Just textType ->-      case lit of-        Just "on" ->-          [EText textType (oMathRunElemsToString mrElems)]-        _         ->-          [EStyled textType $ interpretString $ oMathRunElemsToString mrElems]+  return $+    if null lit && null nor+       then case txtSty of+              Nothing ->+                interpretText $ oMathRunElemsToText mrElems+              Just textSty ->+                [EStyled textSty $ interpretText $ oMathRunElemsToText mrElems]+       else [EText (fromMaybe TextNormal txtSty) $ oMathRunElemsToText mrElems] elemToExps' _ = Nothing  interpretChar :: Char -> Exp-interpretChar c | isDigit c = ENumber [c]+interpretChar c | isDigit c = ENumber $ T.singleton c interpretChar c = case getSymbolType c of-  Alpha           -> EIdentifier [c]-  Ord | isDigit c -> ENumber [c]+  Alpha           -> EIdentifier c'+  Ord | isDigit c -> ENumber c'       | otherwise -> case getSpaceWidth c of                            Just x  -> ESpace x-                           Nothing -> ESymbol Ord [c]-  symType         -> ESymbol symType [c]+                           Nothing -> ESymbol Ord c'+  symType         -> ESymbol symType c'+  where+    c' = T.singleton c -interpretString :: String -> [Exp]-interpretString [c]       = [interpretChar c]-interpretString s-  | all isDigit s         = [ENumber s]+interpretText :: T.Text -> [Exp]+interpretText s+  | Just (c, xs) <- T.uncons s+  , T.null xs = [interpretChar c]+  | T.all isDigit s         = [ENumber s]   | isJust (getOperator (EMathOperator s))                           = [EMathOperator s]-  | otherwise             =-      case map interpretChar s of-            xs | all isIdentifierOrSpace xs -> [EText TextNormal s]-               | otherwise                  -> xs-  where isIdentifierOrSpace (EIdentifier _) = True-        isIdentifierOrSpace (ESpace _)      = True-        isIdentifierOrSpace _               = False--expToString :: Exp -> String-expToString (ENumber s) = s-expToString (EIdentifier s) = s-expToString (EMathOperator s) = s-expToString (ESymbol _ s) = s-expToString (EText _ s) = s-expToString (EGrouped exps) = concatMap expToString exps-expToString (EStyled _ exps) = concatMap expToString exps-expToString _ = ""+  | otherwise             = map interpretChar (T.unpack s)  -- The char attribute is a hex string-getSymChar :: Element -> String+getSymChar :: Element -> T.Text getSymChar element   | Just s <- lowerFromPrivate <$> getCodepoint   , Just font <- getFont =-  let [(char, _)] = readLitChar ("\\x" ++ s) in-    maybe "" (:[]) $ getUnicode font char+  case readLitChar ("\\x" ++ s) of+     [(char, _)] -> maybe "" T.singleton $ getUnicode font char+     _ -> ""   where     getCodepoint = findAttrBy (hasElemName "w" "char") element-    getFont = stringToFont =<< findAttrBy (hasElemName "w" "font") element+    getFont = (textToFont . T.pack) =<< findAttrBy (hasElemName "w" "font") element     lowerFromPrivate ('F':xs) = '0':xs     lowerFromPrivate xs = xs getSymChar _ = ""
src/Text/TeXMath/Readers/TeX.hs view
@@ -1,3983 +1,1403 @@ {-# LANGUAGE TupleSections #-}-{--Copyright (C) 2009 John MacFarlane <jgm@berkeley.edu>--This program is free software; you can redistribute it and/or modify-it under the terms of the GNU General Public License as published by-the Free Software Foundation; either version 2 of the License, or-(at your option) any later version.--This program is distributed in the hope that it will be useful,-but WITHOUT ANY WARRANTY; without even the implied warranty of-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the-GNU General Public License for more details.--You should have received a copy of the GNU General Public License-along with this program; if not, write to the Free Software-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA--}--{- | Functions for parsing a LaTeX formula to a Haskell representation.--}--module Text.TeXMath.Readers.TeX (readTeX)-where--import Data.List (intercalate)-import Data.Ratio ((%))-import Control.Monad-import Data.Char (isDigit, isAscii, isLetter)-import qualified Data.Map as M-import Text.Parsec hiding (label)-import Text.Parsec.Error-import Text.Parsec.String-import Text.TeXMath.Types-import Control.Applicative ((<*), (*>), (<*>), (<$>), (<$), pure)-import qualified Text.TeXMath.Shared as S-import Text.TeXMath.Readers.TeX.Macros (applyMacros, parseMacroDefinitions)-import Text.TeXMath.Unicode.ToTeX (getSymbolType)-import Data.Maybe (fromJust)-import Text.TeXMath.Unicode.ToUnicode (toUnicode)--type TP = Parser---- The parser--expr1 :: TP Exp-expr1 = choice-          [ inbraces-          , variable-          , number-          , text-          , styled-          , root-          , mspace-          , mathop-          , phantom-          , boxed-          , binary-          , genfrac-          , substack-          , bareSubSup-          , environment-          , unicode-          , ensuremath-          , enclosure-          , texSymbol-          ] <* ignorable---- | Parse a formula, returning a list of 'Exp'.-readTeX :: String -> Either String [Exp]-readTeX inp =-  let (ms, rest) = parseMacroDefinitions inp in-  either (Left . showParseError inp) (Right . id)-    $ parse formula "formula" (applyMacros ms rest)--showParseError :: String -> ParseError -> String-showParseError inp pe =-  snippet ++ "\n" ++ caretline ++-    showErrorMessages "or" "unknown" "expecting" "unexpected" "eof"-       (errorMessages pe)-  where errln = sourceLine (errorPos pe)-        errcol = sourceColumn (errorPos pe)-        snipoffset = max 0 (errcol - 20)-        inplns = lines inp-        ln = if length inplns >= errln-                then inplns !! (errln - 1)-                else ""  -- should not happen-        snippet = take 40 $ drop snipoffset ln-        caretline = replicate (errcol - snipoffset - 1) ' ' ++ "^"--anyCtrlSeq :: TP String-anyCtrlSeq = lexeme $ try $ do-  char '\\'-  res <- count 1 (satisfy (not . isLetter)) <|> many1 (satisfy isLetter)-  return $ '\\' : res--ctrlseq :: String -> TP String-ctrlseq s = lexeme $ try $ do-  result <- string ('\\':s)-  case s of-       [c] | not (isLetter c) -> return ()-       _ -> (do pos <- getPosition-                letter-                setPosition pos-                mzero <?> ("non-letter after \\" ++ s))-            <|> return ()-  return result--ignorable :: TP ()-ignorable = skipMany (comment <|> label <|> () <$ ctrlseq "nonumber" <|>-        (skipMany1 space <?> "whitespace"))--comment :: TP ()-comment = char '%' *> skipMany (noneOf "\n") *> optional newline--label :: TP ()-label = ctrlseq "label" *> braces (skipMany (noneOf "}"))--unGrouped :: Exp -> [Exp]-unGrouped (EGrouped xs) = xs-unGrouped x = [x]--formula :: TP [Exp]-formula = unGrouped <$> (ignorable *> manyExp expr <* eof)--expr :: TP Exp-expr = do-  optional (ctrlseq "displaystyle")-  (a, convertible) <- try (braces operatorname) -- needed because macros add {}-                 <|> ((,False) <$> expr1)-                 <|> operatorname-  limits <- limitsIndicator-  subSup limits convertible a <|> superOrSubscripted limits convertible a <|> return a---- | Parser for \operatorname command.--- Returns a tuple of EMathOperator name and Bool depending on the flavor--- of the command:------     - True for convertible operator (\operator*)------     - False otherwise-operatorname :: TP (Exp, Bool)-operatorname = do-    ctrlseq "operatorname"-    -- these are slightly different but we won't worry about that here...-    convertible <- (char '*' >> spaces >> return True) <|> return False-    op <- expToOperatorName <$> texToken-    maybe mzero (\s -> return (EMathOperator s, convertible)) op---- | Converts identifiers, symbols and numbers to a flat string.--- Returns Nothing if the expression contains anything else.-expToOperatorName :: Exp -> Maybe String-expToOperatorName e = case e of-            EGrouped xs ->  concat <$> mapM fl xs-            _ -> fl e-    where fl f = case f of-                    EIdentifier s -> Just s-                    -- handle special characters-                    ESymbol _ "\x2212" -> Just "-"-                    ESymbol _ "\x2032" -> Just "'"-                    ESymbol _ "\x2033" -> Just "''"-                    ESymbol _ "\x2034" -> Just "'''"-                    ESymbol _ "\x2057" -> Just "''''"-                    ESymbol _ "\x02B9" -> Just "'"-                    ESymbol _ s -> Just s-                    ENumber s -> Just s-                    EStyled sty xs -> concat <$> sequence (map (toStr sty) xs)-                    _ -> Nothing-          toStr sty (EIdentifier s)     = Just $ toUnicode sty s-          toStr _   (EText sty' s)      = Just $ toUnicode sty' s-          toStr sty (ENumber s)         = Just $ toUnicode sty s-          toStr sty (EMathOperator s)   = Just $ toUnicode sty s-          toStr sty (ESymbol _ s)       = Just $ toUnicode sty s-          toStr _   (ESpace _)          = Just $ " "-          toStr _   (EStyled sty' exps) = concat <$>-                                            sequence (map (toStr sty') exps)-          toStr _   _                   = Nothing--bareSubSup :: TP Exp-bareSubSup = subSup Nothing False (EIdentifier "")-  <|> superOrSubscripted Nothing False (EIdentifier "")--limitsIndicator :: TP (Maybe Bool)-limitsIndicator =-   (ctrlseq "limits" >> return (Just True))-  <|> (ctrlseq "nolimits" >> return (Just False))-  <|> return Nothing--binomCmd :: TP String-binomCmd = oneOfCommands (M.keys binomCmds)--binomCmds :: M.Map String (Exp -> Exp -> Exp)-binomCmds = M.fromList-            [ ("\\choose", \x y ->-                EDelimited "(" ")" [Right (EFraction NoLineFrac x y)])-            , ("\\brack", \x y ->-                EDelimited "[" "]" [Right (EFraction NoLineFrac x y)])-            , ("\\brace", \x y ->-                EDelimited "{" "}" [Right (EFraction NoLineFrac x y)])-            , ("\\bangle", \x y ->-                EDelimited "\x27E8" "\x27E9" [Right (EFraction NoLineFrac x y)])-            ]--genfrac :: TP Exp-genfrac = do-  ctrlseq "genfrac"-  openDelim <- braces $ option '(' ((char '\\' >> oneOf "{}") <|> anyChar)-  closeDelim <- braces $ option ')' ((char '\\' >> oneOf "{}") <|> anyChar)-  bar <- False <$ try (braces (string "0pt")) <|> True <$ texToken-  displayStyle <- True <$ try (braces (char '0')) <|> False <$ texToken-  x <- texToken-  y <- texToken-  let fracType = case (bar, displayStyle) of-                      (False, _)   -> NoLineFrac-                      (True, True) -> DisplayFrac-                      _            -> NormalFrac-  return $ EDelimited [openDelim] [closeDelim] [Right (EFraction fracType x y)]--substack :: TP Exp-substack = do-  ctrlseq "substack"-  formulas <- braces $ ignorable >> (manyExp expr) `sepEndBy` endLine-  return $ EArray [AlignCenter] $ map (\x -> [[x]]) formulas--asGroup :: [Exp] -> Exp-asGroup [x] = x-asGroup xs = EGrouped xs---- variant of many that is sensitive to \choose and other such commands-manyExp' :: Bool -> TP Exp -> TP Exp-manyExp' requireNonempty p = do-  initial <- if requireNonempty-                then many1 (notFollowedBy binomCmd >> p)-                else many (notFollowedBy binomCmd >> p)-  let withCmd :: String -> TP Exp-      withCmd cmd =-         case M.lookup cmd binomCmds of-              Just f  -> f <$> (asGroup <$> pure initial)-                           <*> (asGroup <$> many p)-              Nothing -> fail $ "Unknown command " ++ cmd-  (binomCmd >>= withCmd) <|> return (asGroup initial)--manyExp :: TP Exp -> TP Exp-manyExp = manyExp' False--many1Exp :: TP Exp -> TP Exp-many1Exp = manyExp' True--inbraces :: TP Exp-inbraces = braces (manyExp expr)--texToken :: TP Exp-texToken = texSymbol <|> inbraces <|> inbrackets <|> texChar--texChar :: TP Exp-texChar =-  do-    c <- noneOf "\n\t\r \\{}" <* spaces-    return $ if isDigit c-              then ENumber [c]-              else EIdentifier [c]--inbrackets :: TP Exp-inbrackets = (brackets $ manyExp $ notFollowedBy (char ']') >> expr)--number :: TP Exp-number = lexeme $ ENumber <$> try decimalNumber-  where decimalNumber = do-          xs <- many digit-          ys <- option [] $ try (char '.' >> (('.':) <$> many1 digit))-          case xs ++ ys of-               []  -> mzero-               zs  -> return zs--enclosure :: TP Exp-enclosure = basicEnclosure <|> scaledEnclosure <|> delimited---- Expensive-basicEnclosure :: TP Exp-basicEnclosure = choice (map (\(s, v) -> symbol s >> return v) enclosures)--fence :: String -> TP String-fence cmd = do-  symbol cmd-  enc <- basicEnclosure <|> (try (symbol ".") >> return (ESymbol Open ""))-  case enc of-       ESymbol Open x  -> return x-       ESymbol Close x -> return x-       _ -> mzero--middle :: TP String-middle = fence "\\middle"--right :: TP String-right = fence "\\right"--delimited :: TP Exp-delimited = do-  openc <- try $ fence "\\left"-  contents <- concat <$>-              many (try $ ((:[]) . Left <$> middle)-                      <|> (map Right . unGrouped <$>-                             many1Exp (notFollowedBy right *> expr)))-  closec <- right <|> return ""-  return $ EDelimited openc closec contents--scaledEnclosure :: TP Exp-scaledEnclosure = do-  cmd <- oneOfCommands (map fst S.scalers)-  case S.getScalerValue cmd of-       Just  r -> EScaled r <$> basicEnclosure-       Nothing -> mzero--endLine :: TP Char-endLine = try $ do-  symbol "\\\\"-  optional inbrackets  -- can contain e.g. [1.0in] for a line height, not yet supported-  return '\n'---- Within environments provided by AMSmath, spaces are not allowed between--- the double-backslash command and its optional argument.-endLineAMS :: TP Char-endLineAMS = lexeme $ try $ do-  string "\\\\"-  skipMany comment-  optional inbrackets  -- can contain e.g. [1.0in] for a line height, not yet supported-  return '\n'--arrayLine :: TP ArrayLine-arrayLine = notFollowedBy (ctrlseq "end" >> return '\n') >>-  sepBy1 (unGrouped <$>-    manyExp (try $ ignorable' *>-               notFollowedBy endLine *>-               expr <*-               ignorable')) (symbol "&")-  where ignorable' = ignorable >>-                     optional (try (ctrlseq "hline" >> ignorable'))-  -- we don't represent the line, but it shouldn't crash parsing--arrayAlignments :: TP [Alignment]-arrayAlignments = try $ do-  as <- braces (many letter)-  let letterToAlignment 'l' = AlignLeft-      letterToAlignment 'c' = AlignCenter-      letterToAlignment 'r' = AlignRight-      letterToAlignment _   = AlignCenter-  return $ map letterToAlignment as--environment :: TP Exp-environment = do-  ctrlseq "begin"-  name <- braces (oneOfStrings (M.keys environments) <* optional (char '*'))-  spaces-  case M.lookup name environments of-        Just env -> do-          result <- env-          spaces-          ctrlseq "end"-          braces (string name <* optional (char '*'))-          spaces-          return result-        Nothing  -> mzero  -- should not happen--environments :: M.Map String (TP Exp)-environments = M.fromList-  [ ("array", stdarray)-  , ("eqnarray", eqnarray)-  , ("align", align)-  , ("aligned", align)-  , ("alignat", inbraces *> spaces *> align)-  , ("alignedat", inbraces *> spaces *> align)-  , ("flalign", flalign)-  , ("flaligned", flalign)-  , ("cases", cases)-  , ("matrix", matrixWith "" "")-  , ("smallmatrix", matrixWith "" "")-  , ("pmatrix", matrixWith "(" ")")-  , ("bmatrix", matrixWith "[" "]")-  , ("Bmatrix", matrixWith "{" "}")-  , ("vmatrix", matrixWith "\x2223" "\x2223")-  , ("Vmatrix", matrixWith "\x2225" "\x2225")-  , ("split", align)-  , ("multline", gather)-  , ("gather", gather)-  , ("gathered", gather)-  , ("equation", equation)-  ]--alignsFromRows :: Alignment -> [ArrayLine] -> [Alignment]-alignsFromRows _ [] = []-alignsFromRows defaultAlignment (r:_) = replicate (length r) defaultAlignment--matrixWith :: String -> String -> TP Exp-matrixWith opendelim closedelim = do-  lines' <- sepEndBy1 arrayLine endLineAMS-  let aligns = alignsFromRows AlignCenter lines'-  return $ if null opendelim && null closedelim-              then EArray aligns lines'-              else EDelimited opendelim closedelim-                       [Right $ EArray aligns lines']--stdarray :: TP Exp-stdarray = do-  aligns <- arrayAlignments-  lines' <- sepEndBy1 arrayLine endLine-  return $ EArray aligns lines'--gather :: TP Exp-gather = do-  rows <- sepEndBy arrayLine endLineAMS-  return $ EArray (alignsFromRows AlignCenter rows) rows--equation :: TP Exp-equation = do-  notFollowedBy (ctrlseq "end" >> return '\n')-  manyExp (notFollowedBy endLine >> expr)--eqnarray :: TP Exp-eqnarray = do-  rows <- sepEndBy1 arrayLine endLine-  let n = maximum $ map length rows-  return $ EArray (take n $ cycle [AlignRight, AlignCenter, AlignLeft]) rows--align :: TP Exp-align = do-  rows <- sepEndBy1 arrayLine endLineAMS-  let n = maximum $ map length rows-  return $ EArray (take n $ cycle [AlignRight, AlignLeft]) rows--flalign :: TP Exp-flalign = do-  rows <- sepEndBy1 arrayLine endLineAMS-  let n = maximum $ map length rows-  return $ EArray (take n $ cycle [AlignLeft, AlignRight]) rows--cases :: TP Exp-cases = do-  rs <- sepEndBy1 arrayLine endLineAMS-  return $ EDelimited "{" "" [Right $ EArray (alignsFromRows AlignLeft rs) rs]--variable :: TP Exp-variable = do-  v <- letter-  spaces-  return $ EIdentifier [v]--isConvertible :: Exp -> Bool-isConvertible (EMathOperator x) = x `elem` convertibleOps-  where convertibleOps = [ "lim","liminf","limsup","inf","sup"-                         , "min","max","Pr","det","gcd"-                         ]-isConvertible (ESymbol Rel _) = True-isConvertible (ESymbol Bin _) = True-isConvertible (ESymbol Op x) = x `elem` convertibleSyms-  where convertibleSyms = ["\x2211","\x220F","\x22C2",-           "\x22C3","\x22C0","\x22C1","\x2A05","\x2A06",-           "\x2210","\x2A01","\x2A02","\x2A00","\x2A04"]-isConvertible _ = False---- check if sub/superscripts should always be under and over the expression-isUnderover :: Exp -> Bool-isUnderover (EOver _ _ (ESymbol TOver "\xFE37")) = True   -- \overbrace-isUnderover (EOver _ _ (ESymbol TOver "\x23B4")) = True   -- \overbracket-isUnderover (EOver _  _ (ESymbol TOver "\x23DE")) = True  -- \overbrace-isUnderover (EUnder _ _ (ESymbol TUnder "\xFE38")) = True  -- \underbrace-isUnderover (EUnder _ _ (ESymbol TUnder "\x23B5")) = True  -- \underbracket-isUnderover (EUnder _  _ (ESymbol TUnder "\x23DF")) = True  -- \underbrace-isUnderover _ = False--subSup :: Maybe Bool -> Bool -> Exp -> TP Exp-subSup limits convertible a = try $ do-  let sub1 = symbol "_" >> expr1-  let sup1 = symbol "^" >> expr1-  (b,c) <- try (do {m <- sub1; n <- sup1; return (m,n)})-       <|> (do {n <- sup1; m <- sub1; return (m,n)})-  return $ case limits of-            Just True  -> EUnderover False a b c-            Nothing | convertible || isConvertible a -> EUnderover True a b c-                    | isUnderover a -> EUnderover False a b c-            _          -> ESubsup a b c--superOrSubscripted :: Maybe Bool -> Bool -> Exp -> TP Exp-superOrSubscripted limits convertible a = try $ do-  c <- oneOf "^_"-  spaces-  b <- expr-  case c of-       '^' -> return $ case limits of-                        Just True  -> EOver False a b-                        Nothing-                          | convertible || isConvertible a -> EOver True a b-                          | isUnderover a -> EOver False a b-                        _          -> ESuper a b-       '_' -> return $ case limits of-                        Just True  -> EUnder False a b-                        Nothing-                          | convertible || isConvertible a -> EUnder True a b-                          | isUnderover a -> EUnder False a b-                        _          -> ESub a b-       _   -> mzero--unicode :: TP Exp-unicode = lexeme $-  do-    c <- satisfy (not . isAscii)-    return (ESymbol (getSymbolType c) [c])--ensuremath :: TP Exp-ensuremath = ctrlseq "ensuremath" *> inbraces---- Note: cal and scr are treated the same way, as unicode is lacking such two different sets for those.-styleOps :: M.Map String ([Exp] -> Exp)-styleOps = M.fromList-          [ ("\\mathrm",     EStyled TextNormal)-          , ("\\mathup",     EStyled TextNormal)-          , ("\\mathbf",     EStyled TextBold)-          , ("\\boldsymbol", EStyled TextBold)-          , ("\\bm",         EStyled TextBold)-          , ("\\symbf",      EStyled TextBold)-          , ("\\mathbold",   EStyled TextBold)-          , ("\\pmb",        EStyled TextBold)-          , ("\\mathbfup",   EStyled TextBold)-          , ("\\mathit",     EStyled TextItalic)-          , ("\\mathtt",     EStyled TextMonospace)-          , ("\\texttt",     EStyled TextMonospace)-          , ("\\mathsf",     EStyled TextSansSerif)-          , ("\\mathsfup",   EStyled TextSansSerif)-          , ("\\mathbb",     EStyled TextDoubleStruck)-          , ("\\mathcal",    EStyled TextScript)-          , ("\\mathscr",    EStyled TextScript)-          , ("\\mathfrak",   EStyled TextFraktur)-          , ("\\mathbfit",   EStyled TextBoldItalic)-          , ("\\mathbfsfup", EStyled TextSansSerifBold)-          , ("\\mathbfsfit", EStyled TextSansSerifBoldItalic)-          , ("\\mathbfscr",  EStyled TextBoldScript)-          , ("\\mathbffrak", EStyled TextBoldFraktur)-          , ("\\mathbfcal",  EStyled TextBoldScript)-          , ("\\mathsfit",   EStyled TextSansSerifItalic)-          ]--phantom :: TP Exp-phantom = EPhantom <$> (ctrlseq "phantom" *> texToken)--boxed :: TP Exp-boxed = EBoxed <$> (ctrlseq "boxed" *> texToken)--text :: TP Exp-text = do-  c <- oneOfCommands (M.keys textOps)-  op <- maybe mzero return $ M.lookup c textOps-  char '{'-  let chunk = ((op . concat) <$> many1 textual)-            <|> (char '{' *> (asGroup <$> manyTill chunk (char '}')))-            <|> innermath-  contents <- manyTill chunk (char '}')-  spaces-  case contents of-       []   -> return (op "")-       [x]  -> return x-       xs   -> return (EGrouped xs)--innermath :: TP Exp-innermath = choice $ map innerMathWith-              [("$","$"),("$$","$$"),("\\(","\\)"),("\\[","\\]")]--innerMathWith :: (String, String) -> TP Exp-innerMathWith (opener, closer) = do-  try (string opener)-  e <- manyExp expr-  string closer-  return e--textOps :: M.Map String (String -> Exp)-textOps = M.fromList-          [ ("\\textrm", (EText TextNormal))-          , ("\\text",   (EText TextNormal))-          , ("\\textbf", (EText TextBold))-          , ("\\textit", (EText TextItalic))-          , ("\\texttt", (EText TextMonospace))-          , ("\\textsf", (EText TextSansSerif))-          , ("\\mbox",   (EText TextNormal))-          ]--styled :: TP Exp-styled = do-  c <- oneOfCommands (M.keys styleOps)-  case M.lookup c styleOps of-       Just f   -> do-         x <- texSymbol <|> inbraces <|> texChar-         return $ case x of-                       EGrouped xs -> f xs-                       _           -> f [x]-       Nothing  -> mzero---- note: sqrt can be unary, \sqrt{2}, or binary, \sqrt[3]{2}-root :: TP Exp-root = do-  ctrlseq "sqrt" <|> ctrlseq "surd"-  (ERoot <$> inbrackets <*> texToken) <|> (ESqrt <$> texToken)--mspace :: TP Exp-mspace = do-  ctrlseq "mspace"-  lexeme $ char '{'-  len <- many1 digit-  lexeme $ string "mu"-  lexeme $ char '}'-  case reads len of-       ((n,[]):_) -> return $ ESpace (n/18)-       _          -> mzero---mathop :: TP Exp-mathop = mathopWith "mathop" Op-     <|> mathopWith "mathrel" Rel-     <|> mathopWith "mathbin" Bin-     <|> mathopWith "mathord" Ord-     <|> mathopWith "mathopen" Open-     <|> mathopWith "mathclose" Close-     <|> mathopWith "mathpunct" Pun--mathopWith :: String -> TeXSymbolType -> TP Exp-mathopWith name ty = try $ do-  ctrlseq name-  e <- expr1-  let e' = case e of-               EGrouped [x] -> x-               _            -> e-  case e' of-     ESymbol _ x   -> return $ ESymbol ty x-     EIdentifier x -> return $ ESymbol ty x-     EText TextNormal x -> return $ ESymbol ty x-     EText sty x -> return $ EStyled sty [ESymbol ty x]-     x | ty == Op  -> case expToOperatorName x of-                           Just y -> return $ EMathOperator y-                           _      -> return x-       | otherwise -> return x--binary :: TP Exp-binary = do-  c <- oneOfCommands binops-  a <- texToken-  b <- texToken-  case c of-     "\\overset"  -> return $ EOver False b a-     "\\stackrel" -> return $ EOver False b a-     "\\underset" -> return $ EUnder False b a-     "\\frac"     -> return $ EFraction NormalFrac a b-     "\\tfrac"    -> return $ EFraction InlineFrac a b-     "\\dfrac"    -> return $ EFraction DisplayFrac a b-     "\\binom"    -> return $ EDelimited "(" ")"-                              [Right (EFraction NoLineFrac a b)]-     _            -> fail "Unrecognised binary operator"-  where-    binops = ["\\overset", "\\stackrel", "\\underset", "\\frac", "\\tfrac", "\\dfrac", "\\binom"]--texSymbol :: TP Exp-texSymbol = do-  negated <- (try (ctrlseq "not") >> return True) <|> return False-  sym <- operator <|> tSymbol-  if negated then neg sym else return sym--oneOfCommands :: [String] -> TP String-oneOfCommands cmds = try $ do-  cmd <- oneOfStrings cmds-  case cmd of-    ['\\',c] | not (isLetter c) -> return ()-    _ -> (do pos <- getPosition-             letter-             setPosition pos-             mzero <?> ("non-letter after " ++ cmd))-         <|> return ()-  spaces-  return cmd--oneOfStrings' :: (Char -> Char -> Bool) -> [String] -> TP String-oneOfStrings' _ []         = mzero-oneOfStrings' matches strs = try $ do-    c <- anyChar-    let strs' = [xs | (x:xs) <- strs, x `matches` c]-    case strs' of-      []  -> mzero-      _   -> (c:) <$> oneOfStrings' matches strs'-                     <|> if "" `elem` strs'-                          then return [c]-                          else mzero---- | Parses one of a list of strings.  If the list contains--- two strings one of which is a prefix of the other, the longer--- string will be matched if possible.-oneOfStrings :: [String] -> TP String-oneOfStrings strs = oneOfStrings' (==) strs <??> (intercalate ", " $ map show strs)---- | Like '(<?>)', but moves position back to the beginning of the parse--- before reporting the error.-(<??>) :: Monad m => ParsecT s u m a -> String -> ParsecT s u m a-(<??>) p expected = do-  pos <- getPosition-  p <|> (setPosition pos >> mzero <?> expected)--infix 0 <??>--tSymbol :: TP Exp-tSymbol = try $ do-  sym <- anyCtrlSeq-  case M.lookup sym symbols of-       Just acc@(ESymbol Accent _) ->-         (\t -> EOver False t acc) <$> texToken-       Just acc@(ESymbol TUnder _) ->-         (\t -> EUnder False t acc) <$> texToken-       Just acc@(ESymbol TOver _) ->-         (\t -> EOver False t acc) <$> texToken-       Just x  -> return x-       Nothing -> mzero--operator :: TP Exp-operator = do-  sym <- lexeme (oneOfStrings $ M.keys operators)-  return $ fromJust (M.lookup sym operators)--neg :: Exp -> TP Exp-neg (ESymbol Rel x) = ESymbol Rel `fmap`-  case x of-       "\x2282" -> return "\x2284"-       "\x2283" -> return "\x2285"-       "\x2286" -> return "\x2288"-       "\x2287" -> return "\x2289"-       "\x2208" -> return "\x2209"-       _        -> mzero-neg _ = mzero--lexeme :: TP a -> TP a-lexeme p = p <* ignorable--braces :: TP a -> TP a-braces p = lexeme $ char '{' *> spaces *> p <* spaces <* char '}'--brackets :: TP a -> TP a-brackets p = lexeme $ char '[' *> spaces *> p <* spaces <* char ']'---symbol :: String -> TP String-symbol s = lexeme $ try $ string s--enclosures :: [(String, Exp)]-enclosures = [ ("(", ESymbol Open "(")-             , (")", ESymbol Close ")")-             , ("[", ESymbol Open "[")-             , ("]", ESymbol Close "]")-             , ("\\{", ESymbol Open "{")-             , ("\\}", ESymbol Close "}")-             , ("\\lbrack", ESymbol Open "[")-             , ("\\lbrace", ESymbol Open "{")-             , ("\\rbrack", ESymbol Close "]")-             , ("\\rbrace", ESymbol Close "}")-             , ("\\llbracket", ESymbol Open "\x27E6")-             , ("\\rrbracket", ESymbol Close "\x27E7")-             , ("\\langle", ESymbol Open "\x27E8")-             , ("\\rangle", ESymbol Close "\x27E9")-             , ("\\lfloor", ESymbol Open "\x230A")-             , ("\\rfloor", ESymbol Close "\x230B")-             , ("\\lceil", ESymbol Open "\x2308")-             , ("\\rceil", ESymbol Close "\x2309")-             , ("|", ESymbol Open "|")-             , ("|", ESymbol Close "|")-             , ("\\|", ESymbol Open "\x2225")-             , ("\\|", ESymbol Close "\x2225")-             , ("\\lvert", ESymbol Open "\x7C")-             , ("\\rvert", ESymbol Close "\x7C")-             , ("\\vert", ESymbol Close "\x7C")-             , ("\\lVert", ESymbol Open "\x2225")-             , ("\\rVert", ESymbol Close "\x2225")-             , ("\\Vert", ESymbol Close "\x2016")-             , ("\\ulcorner", ESymbol Open "\x231C")-             , ("\\urcorner", ESymbol Close "\x231D")-             ]--operators :: M.Map String Exp-operators = M.fromList [-             ("+", ESymbol Bin "+")-           , ("-", ESymbol Bin "\x2212")-           , ("*", ESymbol Bin "*")-           , ("@", ESymbol Ord "@")-           , (",", ESymbol Pun ",")-           , (".", ESymbol Ord ".")-           , (";", ESymbol Pun ";")-           , (":", ESymbol Rel ":")-           , ("?", ESymbol Ord "?")-           , (">", ESymbol Rel ">")-           , ("<", ESymbol Rel "<")-           , ("!", ESymbol Ord "!")-           , ("'", ESymbol Ord "\x2032")-           , ("''", ESymbol Ord "\x2033")-           , ("'''", ESymbol Ord "\x2034")-           , ("''''", ESymbol Ord "\x2057")-           , ("=", ESymbol Rel "=")-           , (":=", ESymbol Rel ":=")-           , ("/", ESymbol Ord "/")-           , ("~", ESpace (4/18)) ]--symbols :: M.Map String Exp-symbols = M.fromList-  [ ("\\$",ESymbol Ord "$")-  , ("\\%",ESymbol Ord "%")-  , ("\\&",ESymbol Ord "&")-  , ("\\_",ESymbol Ord "_")-  , ("\\#",ESymbol Ord "#")-  , ("\\^",ESymbol Ord "^")-  , ("\\mid",ESymbol Bin "\8739")-  , ("\\colon",ESymbol Pun ":")-  , ("\\parallel",ESymbol Rel "\8741")-  , ("\\backslash",ESymbol Bin "\8726")-  , ("\\setminus",ESymbol Bin "\\")-  , ("\\times",ESymbol Bin "\215")-  , ("\\ltimes",ESymbol Bin "\8905")-  , ("\\rtimes",ESymbol Bin "\8906")-  , ("\\alpha",EIdentifier "\945")-  , ("\\beta",EIdentifier "\946")-  , ("\\chi",EIdentifier "\967")-  , ("\\delta",EIdentifier "\948")-  , ("\\Delta",EIdentifier "\916")-  , ("\\epsilon",EIdentifier "\1013")-  , ("\\varepsilon",EIdentifier "\949")-  , ("\\eta",EIdentifier "\951")-  , ("\\gamma",EIdentifier "\947")-  , ("\\Gamma",EIdentifier "\915")-  , ("\\iota",EIdentifier "\953")-  , ("\\kappa",EIdentifier "\954")-  , ("\\lambda",EIdentifier "\955")-  , ("\\Lambda",EIdentifier "\923")-  , ("\\mu",EIdentifier "\956")-  , ("\\nu",EIdentifier "\957")-  , ("\\omega",EIdentifier "\969")-  , ("\\Omega",EIdentifier "\937")-  , ("\\phi",EIdentifier "\981")-  , ("\\varphi",EIdentifier "\966")-  , ("\\Phi",EIdentifier "\934")-  , ("\\pi",EIdentifier "\960")-  , ("\\Pi",EIdentifier "\928")-  , ("\\psi",EIdentifier "\968")-  , ("\\Psi",EIdentifier "\936")-  , ("\\rho",EIdentifier "\961")-  , ("\\sigma",EIdentifier "\963")-  , ("\\Sigma",EIdentifier "\931")-  , ("\\tau",EIdentifier "\964")-  , ("\\theta",EIdentifier "\952")-  , ("\\vartheta",EIdentifier "\977")-  , ("\\Theta",EIdentifier "\920")-  , ("\\upsilon",EIdentifier "\965")-  , ("\\Upsilon",EIdentifier "\933")-  , ("\\xi",EIdentifier "\958")-  , ("\\Xi",EIdentifier "\926")-  , ("\\zeta",EIdentifier "\950")-  , ("\\pm",ESymbol Bin "\177")-  , ("\\mp",ESymbol Bin "\8723")-  , ("\\triangleleft",ESymbol Bin "\8882")-  , ("\\triangleright",ESymbol Bin "\8883")-  , ("\\cdot",ESymbol Bin "\8901")-  , ("\\star",ESymbol Bin "\8902")-  , ("\\ast",ESymbol Bin "*")-  , ("\\times",ESymbol Bin "\215")-  , ("\\div",ESymbol Bin "\247")-  , ("\\circ",ESymbol Bin "\8728")-  , ("\\bullet",ESymbol Bin "\8226")-  , ("\\oplus",ESymbol Bin "\8853")-  , ("\\ominus",ESymbol Bin "\8854")-  , ("\\otimes",ESymbol Bin "\8855")-  , ("\\bigcirc",ESymbol Bin "\9675")-  , ("\\oslash",ESymbol Bin "\8856")-  , ("\\odot",ESymbol Bin "\8857")-  , ("\\land",ESymbol Bin "\8743")-  , ("\\wedge",ESymbol Bin "\8743")-  , ("\\lor",ESymbol Bin "\8744")-  , ("\\vee",ESymbol Bin "\8744")-  , ("\\cap",ESymbol Bin "\8745")-  , ("\\cup",ESymbol Bin "\8746")-  , ("\\sqcap",ESymbol Bin "\8851")-  , ("\\sqcup",ESymbol Bin "\8852")-  , ("\\uplus",ESymbol Bin "\8846")-  , ("\\amalg",ESymbol Bin "\8720")-  , ("\\bigtriangleup",ESymbol Bin "\9651")-  , ("\\bigtriangledown",ESymbol Bin "\9661")-  , ("\\dag",ESymbol Bin "\8224")-  , ("\\dagger",ESymbol Bin "\8224")-  , ("\\ddag",ESymbol Bin "\8225")-  , ("\\ddagger",ESymbol Bin "\8225")-  , ("\\lhd",ESymbol Bin "\8882")-  , ("\\rhd",ESymbol Bin "\8883")-  , ("\\unlhd",ESymbol Bin "\8884")-  , ("\\unrhd",ESymbol Bin "\8885")-  , ("\\lt",ESymbol Rel "<")-  , ("\\gt",ESymbol Rel ">")-  , ("\\ne",ESymbol Rel "\8800")-  , ("\\neq",ESymbol Rel "\8800")-  , ("\\le",ESymbol Rel "\8804")-  , ("\\leq",ESymbol Rel "\8804")-  , ("\\leqslant",ESymbol Rel "\8804")-  , ("\\ge",ESymbol Rel "\8805")-  , ("\\geq",ESymbol Rel "\8805")-  , ("\\geqslant",ESymbol Rel "\8805")-  , ("\\equiv",ESymbol Rel "\8801")-  , ("\\ll",ESymbol Rel "\8810")-  , ("\\gg",ESymbol Rel "\8811")-  , ("\\doteq",ESymbol Rel "\8784")-  , ("\\prec",ESymbol Rel "\8826")-  , ("\\succ",ESymbol Rel "\8827")-  , ("\\preceq",ESymbol Rel "\8828")-  , ("\\succeq",ESymbol Rel "\8829")-  , ("\\subset",ESymbol Rel "\8834")-  , ("\\supset",ESymbol Rel "\8835")-  , ("\\subseteq",ESymbol Rel "\8838")-  , ("\\supseteq",ESymbol Rel "\8839")-  , ("\\nsubset",ESymbol Rel "\8836")-  , ("\\nsupset",ESymbol Rel "\8837")-  , ("\\nsubseteq",ESymbol Rel "\8840")-  , ("\\nsupseteq",ESymbol Rel "\8841")-  , ("\\sqsubset",ESymbol Rel "\8847")-  , ("\\sqsupset",ESymbol Rel "\8848")-  , ("\\sqsubseteq",ESymbol Rel "\8849")-  , ("\\sqsupseteq",ESymbol Rel "\8850")-  , ("\\sim",ESymbol Rel "\8764")-  , ("\\simeq",ESymbol Rel "\8771")-  , ("\\approx",ESymbol Rel "\8776")-  , ("\\cong",ESymbol Rel "\8773")-  , ("\\Join",ESymbol Rel "\8904")-  , ("\\bowtie",ESymbol Rel "\8904")-  , ("\\in",ESymbol Rel "\8712")-  , ("\\ni",ESymbol Rel "\8715")-  , ("\\owns",ESymbol Rel "\8715")-  , ("\\propto",ESymbol Rel "\8733")-  , ("\\vdash",ESymbol Rel "\8866")-  , ("\\dashv",ESymbol Rel "\8867")-  , ("\\models",ESymbol Rel "\8872")-  , ("\\perp",ESymbol Rel "\8869")-  , ("\\smile",ESymbol Rel "\8995")-  , ("\\frown",ESymbol Rel "\8994")-  , ("\\asymp",ESymbol Rel "\8781")-  , ("\\notin",ESymbol Rel "\8713")-  , ("\\gets",ESymbol Rel "\8592")-  , ("\\leftarrow",ESymbol Rel "\8592")-  , ("\\nwarrow",ESymbol Rel "\8598")-  , ("\\nearrow",ESymbol Rel "\8599")-  , ("\\searrow",ESymbol Rel "\8600")-  , ("\\swarrow",ESymbol Rel "\8601")-  , ("\\to",ESymbol Rel "\8594")-  , ("\\rightarrow",ESymbol Rel "\8594")-  , ("\\leftrightarrow",ESymbol Rel "\8596")-  , ("\\uparrow",ESymbol Rel "\8593")-  , ("\\downarrow",ESymbol Rel "\8595")-  , ("\\updownarrow",ESymbol Rel "\8597")-  , ("\\Leftarrow",ESymbol Rel "\8656")-  , ("\\Rightarrow",ESymbol Rel "\8658")-  , ("\\Leftrightarrow",ESymbol Rel "\8660")-  , ("\\iff",ESymbol Rel "\8660")-  , ("\\Uparrow",ESymbol Rel "\8657")-  , ("\\Downarrow",ESymbol Rel "\8659")-  , ("\\Updownarrow",ESymbol Rel "\8661")-  , ("\\mapsto",ESymbol Rel "\8614")-  , ("\\longleftarrow",ESymbol Rel "\8592")-  , ("\\longrightarrow",ESymbol Rel "\8594")-  , ("\\longleftrightarrow",ESymbol Rel "\8596")-  , ("\\Longleftarrow",ESymbol Rel "\8656")-  , ("\\Longrightarrow",ESymbol Rel "\8658")-  , ("\\Longleftrightarrow",ESymbol Rel "\8660")-  , ("\\longmapsto",ESymbol Rel "\8614")-  , ("\\sum",ESymbol Op "\8721")-  , ("\\prod",ESymbol Op "\8719")-  , ("\\bigcap",ESymbol Op "\8898")-  , ("\\bigcup",ESymbol Op "\8899")-  , ("\\bigwedge",ESymbol Op "\8896")-  , ("\\bigvee",ESymbol Op "\8897")-  , ("\\bigsqcap",ESymbol Op "\10757")-  , ("\\bigsqcup",ESymbol Op "\10758")-  , ("\\coprod",ESymbol Op "\8720")-  , ("\\bigoplus",ESymbol Op "\10753")-  , ("\\bigotimes",ESymbol Op "\10754")-  , ("\\bigodot",ESymbol Op "\10752")-  , ("\\biguplus",ESymbol Op "\10756")-  , ("\\int",ESymbol Op "\8747")-  , ("\\iint",ESymbol Op "\8748")-  , ("\\iiint",ESymbol Op "\8749")-  , ("\\oint",ESymbol Op "\8750")-  , ("\\prime",ESymbol Ord "\8242")-  , ("\\dots",ESymbol Ord "\8230")-  , ("\\ldots",ESymbol Ord "\8230")-  , ("\\cdots",ESymbol Ord "\8943")-  , ("\\vdots",ESymbol Ord "\8942")-  , ("\\ddots",ESymbol Ord "\8945")-  , ("\\forall",ESymbol Op "\8704")-  , ("\\exists",ESymbol Op "\8707")-  , ("\\Re",ESymbol Ord "\8476")-  , ("\\Im",ESymbol Ord "\8465")-  , ("\\aleph",ESymbol Ord "\8501")-  , ("\\hbar",ESymbol Ord "\8463")-  , ("\\ell",ESymbol Ord "\8467")-  , ("\\wp",ESymbol Ord "\8472")-  , ("\\emptyset",ESymbol Ord "\8709")-  , ("\\infty",ESymbol Ord "\8734")-  , ("\\partial",ESymbol Ord "\8706")-  , ("\\nabla",ESymbol Ord "\8711")-  , ("\\triangle",ESymbol Ord "\9651")-  , ("\\therefore",ESymbol Pun "\8756")-  , ("\\angle",ESymbol Ord "\8736")-  , ("\\diamond",ESymbol Op "\8900")-  , ("\\Diamond",ESymbol Op "\9671")-  , ("\\lozenge",ESymbol Op "\9674")-  , ("\\neg",ESymbol Op "\172")-  , ("\\lnot",ESymbol Ord "\172")-  , ("\\bot",ESymbol Ord "\8869")-  , ("\\top",ESymbol Ord "\8868")-  , ("\\square",ESymbol Ord "\9643")-  , ("\\Box",ESymbol Op "\9633")-  , ("\\wr",ESymbol Ord "\8768")-  , ("\\!",ESpace ((-1) % 6))-  , ("\\,",ESpace (1 % 6))-  , ("\\>",ESpace (2 % 9))-  , ("\\:",ESpace (2 % 9))-  , ("\\;",ESpace (5 % 18))-  , ("\\ ",ESpace (2 % 9))-  , ("\\\n",ESpace (2 % 9))-  , ("\\quad",ESpace (1 % 1))-  , ("\\qquad",ESpace (2 % 1))-  , ("\\arccos",EMathOperator "arccos")-  , ("\\arcsin",EMathOperator "arcsin")-  , ("\\arctan",EMathOperator "arctan")-  , ("\\arg",EMathOperator "arg")-  , ("\\cos",EMathOperator "cos")-  , ("\\cosh",EMathOperator "cosh")-  , ("\\cot",EMathOperator "cot")-  , ("\\coth",EMathOperator "coth")-  , ("\\csc",EMathOperator "csc")-  , ("\\deg",EMathOperator "deg")-  , ("\\det",EMathOperator "det")-  , ("\\dim",EMathOperator "dim")-  , ("\\exp",EMathOperator "exp")-  , ("\\gcd",EMathOperator "gcd")-  , ("\\hom",EMathOperator "hom")-  , ("\\inf",EMathOperator "inf")-  , ("\\ker",EMathOperator "ker")-  , ("\\lg",EMathOperator "lg")-  , ("\\lim",EMathOperator "lim")-  , ("\\liminf",EMathOperator "liminf")-  , ("\\limsup",EMathOperator "limsup")-  , ("\\ln",EMathOperator "ln")-  , ("\\log",EMathOperator "log")-  , ("\\max",EMathOperator "max")-  , ("\\min",EMathOperator "min")-  , ("\\mod",EMathOperator "mod")-  , ("\\Pr",EMathOperator "Pr")-  , ("\\sec",EMathOperator "sec")-  , ("\\sin",EMathOperator "sin")-  , ("\\sinh",EMathOperator "sinh")-  , ("\\sup",EMathOperator "sup")-  , ("\\tan",EMathOperator "tan")-  , ("\\tanh",EMathOperator "tanh")-  , ("\\AC",ESymbol Ord "\8767")-  , ("\\AC",ESymbol Ord "\9190")-  , ("\\APLboxquestion",ESymbol Ord "\9072")-  , ("\\APLboxupcaret",ESymbol Ord "\9043")-  , ("\\APLcomment",ESymbol Ord "\9053")-  , ("\\APLdownarrowbox",ESymbol Ord "\9047")-  , ("\\APLinput",ESymbol Ord "\9054")-  , ("\\APLinv",ESymbol Ord "\9017")-  , ("\\APLleftarrowbox",ESymbol Ord "\9031")-  , ("\\APLlog",ESymbol Ord "\9055")-  , ("\\APLnotbackslash",ESymbol Ord "\9024")-  , ("\\APLnotslash",ESymbol Rel "\9023")-  , ("\\APLrightarrowbox",ESymbol Ord "\9032")-  , ("\\APLuparrowbox",ESymbol Ord "\9040")-  , ("\\Angstroem",ESymbol Alpha "\8491")-  , ("\\Angstrom",ESymbol Alpha "\8491")-  , ("\\Aries",ESymbol Ord "\9800")-  , ("\\Barv",ESymbol Rel "\10983")-  , ("\\BbbA",ESymbol Alpha "\120120")-  , ("\\BbbB",ESymbol Alpha "\120121")-  , ("\\BbbC",ESymbol Alpha "\8450")-  , ("\\BbbD",ESymbol Alpha "\120123")-  , ("\\BbbE",ESymbol Alpha "\120124")-  , ("\\BbbF",ESymbol Alpha "\120125")-  , ("\\BbbG",ESymbol Alpha "\120126")-  , ("\\BbbGamma",ESymbol Alpha "\8510")-  , ("\\BbbH",ESymbol Alpha "\8461")-  , ("\\BbbI",ESymbol Alpha "\120128")-  , ("\\BbbJ",ESymbol Alpha "\120129")-  , ("\\BbbK",ESymbol Alpha "\120130")-  , ("\\BbbL",ESymbol Alpha "\120131")-  , ("\\BbbM",ESymbol Alpha "\120132")-  , ("\\BbbN",ESymbol Alpha "\8469")-  , ("\\BbbO",ESymbol Alpha "\120134")-  , ("\\BbbP",ESymbol Alpha "\8473")-  , ("\\BbbPi",ESymbol Alpha "\8511")-  , ("\\BbbQ",ESymbol Alpha "\8474")-  , ("\\BbbR",ESymbol Alpha "\8477")-  , ("\\BbbS",ESymbol Alpha "\120138")-  , ("\\BbbT",ESymbol Alpha "\120139")-  , ("\\BbbU",ESymbol Alpha "\120140")-  , ("\\BbbV",ESymbol Alpha "\120141")-  , ("\\BbbW",ESymbol Alpha "\120142")-  , ("\\BbbX",ESymbol Alpha "\120143")-  , ("\\BbbY",ESymbol Alpha "\120144")-  , ("\\BbbZ",ESymbol Alpha "\8484")-  , ("\\Bbba",ESymbol Alpha "\120146")-  , ("\\Bbbb",ESymbol Alpha "\120147")-  , ("\\Bbbc",ESymbol Alpha "\120148")-  , ("\\Bbbd",ESymbol Alpha "\120149")-  , ("\\Bbbe",ESymbol Alpha "\120150")-  , ("\\Bbbeight",ESymbol Ord "\120800")-  , ("\\Bbbf",ESymbol Alpha "\120151")-  , ("\\Bbbfive",ESymbol Ord "\120797")-  , ("\\Bbbfour",ESymbol Ord "\120796")-  , ("\\Bbbg",ESymbol Alpha "\120152")-  , ("\\Bbbgamma",ESymbol Alpha "\8509")-  , ("\\Bbbh",ESymbol Alpha "\120153")-  , ("\\Bbbi",ESymbol Alpha "\120154")-  , ("\\Bbbj",ESymbol Alpha "\120155")-  , ("\\Bbbk",ESymbol Alpha "\120156")-  , ("\\Bbbl",ESymbol Alpha "\120157")-  , ("\\Bbbm",ESymbol Alpha "\120158")-  , ("\\Bbbn",ESymbol Alpha "\120159")-  , ("\\Bbbnine",ESymbol Ord "\120801")-  , ("\\Bbbo",ESymbol Alpha "\120160")-  , ("\\Bbbone",ESymbol Ord "\120793")-  , ("\\Bbbp",ESymbol Alpha "\120161")-  , ("\\Bbbpi",ESymbol Ord "\8508")-  , ("\\Bbbq",ESymbol Alpha "\120162")-  , ("\\Bbbr",ESymbol Alpha "\120163")-  , ("\\Bbbs",ESymbol Alpha "\120164")-  , ("\\Bbbseven",ESymbol Ord "\120799")-  , ("\\Bbbsix",ESymbol Ord "\120798")-  , ("\\Bbbsum",ESymbol Op "\8512")-  , ("\\Bbbt",ESymbol Alpha "\120165")-  , ("\\Bbbthree",ESymbol Ord "\120795")-  , ("\\Bbbtwo",ESymbol Ord "\120794")-  , ("\\Bbbu",ESymbol Alpha "\120166")-  , ("\\Bbbv",ESymbol Alpha "\120167")-  , ("\\Bbbw",ESymbol Alpha "\120168")-  , ("\\Bbbx",ESymbol Alpha "\120169")-  , ("\\Bbby",ESymbol Alpha "\120170")-  , ("\\Bbbz",ESymbol Alpha "\120171")-  , ("\\Bbbzero",ESymbol Ord "\120792")-  , ("\\Bot",ESymbol Rel "\10987")-  , ("\\Bumpeq",ESymbol Rel "\8782")-  , ("\\CIRCLE",ESymbol Ord "\9679")-  , ("\\Cap",ESymbol Bin "\8914")-  , ("\\CapitalDifferentialD",ESymbol Ord "\8517")-  , ("\\CheckedBox",ESymbol Ord "\9745")-  , ("\\Circle",ESymbol Bin "\9675")-  , ("\\Colon",ESymbol Rel "\8759")-  , ("\\Coloneq",ESymbol Rel "\10868")-  , ("\\Coloneqq",ESymbol Rel "\10868")-  , ("\\ComplexI",ESymbol Ord "\8520")-  , ("\\ComplexJ",ESymbol Ord "\8521")-  , ("\\Cup",ESymbol Bin "\8915")-  , ("\\DD",ESymbol Ord "\8517")-  , ("\\DDDot",ESymbol Accent "\8411")-  , ("\\DDot",ESymbol Accent "\776")-  , ("\\DDownarrow",ESymbol Rel "\10225")-  , ("\\DashV",ESymbol Rel "\10981")-  , ("\\DashVDash",ESymbol Rel "\10202")-  , ("\\Dashv",ESymbol Rel "\10980")-  , ("\\Ddownarrow",ESymbol Rel "\10507")-  , ("\\Diamondblack",ESymbol Ord "\9670")-  , ("\\Diamonddot",ESymbol Ord "\10192")-  , ("\\DifferentialD",ESymbol Ord "\8518")-  , ("\\Digamma",ESymbol Alpha "\988")-  , ("\\Dot",ESymbol Accent "\775")-  , ("\\Doteq",ESymbol Rel "\8785")-  , ("\\DownArrowBar",ESymbol Rel "\10515")-  , ("\\DownLeftTeeVector",ESymbol Rel "\10590")-  , ("\\DownLeftVectorBar",ESymbol Rel "\10582")-  , ("\\DownRightTeeVector",ESymbol Rel "\10591")-  , ("\\DownRightVectorBar",ESymbol Rel "\10583")-  , ("\\Equal",ESymbol Rel "\10869")-  , ("\\Equiv",ESymbol Rel "\8803")-  , ("\\Euler",ESymbol Ord "\8455")-  , ("\\Eulerconst",ESymbol Ord "\8455")-  , ("\\Exclam",ESymbol Ord "\8252")-  , ("\\ExponetialE",ESymbol Ord "\8519")-  , ("\\Finv",ESymbol Ord "\8498")-  , ("\\Game",ESymbol Ord "\8513")-  , ("\\Gemini",ESymbol Ord "\9802")-  , ("\\GreaterLess",ESymbol Rel "\8823")-  , ("\\Gt",ESymbol Rel "\10914")-  , ("\\HBar",ESymbol Alpha "\8463")-  , ("\\Hermaphrodite",ESymbol Ord "\9893")-  , ("\\Jupiter",ESymbol Ord "\9795")-  , ("\\Koppa",ESymbol Alpha "\990")-  , ("\\Koppa",ESymbol Ord "\984")-  , ("\\LEFTCIRCLE",ESymbol Ord "\9686")-  , ("\\LEFTcircle",ESymbol Ord "\9680")-  , ("\\LHD",ESymbol Bin "\9664")-  , ("\\LLeftarrow",ESymbol Rel "\11077")-  , ("\\LVec",ESymbol Accent "\8406")-  , ("\\Lbag",ESymbol Open "\10181")-  , ("\\Lbrack",ESymbol Open "\10214")-  , ("\\Lbrbrak",ESymbol Open "\10220")-  , ("\\Lbrbrak",ESymbol Open "\12312")-  , ("\\Ldsh",ESymbol Rel "\8626")-  , ("\\LeftArrowBar",ESymbol Rel "\8676")-  , ("\\LeftDownTeeVector",ESymbol Rel "\10593")-  , ("\\LeftDownVectorBar",ESymbol Rel "\10585")-  , ("\\LeftTeeVector",ESymbol Rel "\10586")-  , ("\\LeftTriangleBar",ESymbol Rel "\10703")-  , ("\\LeftUpTeeVector",ESymbol Rel "\10592")-  , ("\\LeftUpVectorBar",ESymbol Rel "\10584")-  , ("\\LeftVectorBar",ESymbol Rel "\10578")-  , ("\\Leo",ESymbol Ord "\9804")-  , ("\\Libra",ESymbol Ord "\9806")-  , ("\\Lleftarrow",ESymbol Rel "\8666")-  , ("\\Longmappedfrom",ESymbol Rel "\10237")-  , ("\\Longmapsfrom",ESymbol Rel "\10237")-  , ("\\Longmapsto",ESymbol Rel "\10238")-  , ("\\Lparen",ESymbol Open "\10629")-  , ("\\Lparengtr",ESymbol Open "\10645")-  , ("\\Lsh",ESymbol Rel "\8624")-  , ("\\Lt",ESymbol Rel "\10913")-  , ("\\Lvzigzag",ESymbol Open "\10714")-  , ("\\Mappedfrom",ESymbol Rel "\10502")-  , ("\\MapsDown",ESymbol Rel "\8615")-  , ("\\MapsUp",ESymbol Rel "\8613")-  , ("\\Mapsfrom",ESymbol Rel "\10502")-  , ("\\Mapsto",ESymbol Rel "\10503")-  , ("\\Mars",ESymbol Ord "\9794")-  , ("\\Mercury",ESymbol Ord "\9791")-  , ("\\Mho",ESymbol Ord "\8487")-  , ("\\Micro",ESymbol Alpha "\181")-  , ("\\Nearrow",ESymbol Rel "\8663")-  , ("\\Neptune",ESymbol Ord "\9798")-  , ("\\NestedGreaterGreater",ESymbol Rel "\10914")-  , ("\\NestedLessLess",ESymbol Rel "\10913")-  , ("\\Not",ESymbol Rel "\10988")-  , ("\\NotGreaterLess",ESymbol Rel "\8825")-  , ("\\NotGreaterTilde",ESymbol Rel "\8821")-  , ("\\NotLeftTriangle",ESymbol Rel "\8938")-  , ("\\NotLessTilde",ESymbol Rel "\8820")-  , ("\\NotRightTriangle",ESymbol Rel "\8939")-  , ("\\Nwarrow",ESymbol Rel "\8662")-  , ("\\Otimes",ESymbol Bin "\10807")-  , ("\\Perp",ESymbol Rel "\10987")-  , ("\\Planckconst",ESymbol Ord "\8462")-  , ("\\Pluto",ESymbol Ord "\9799")-  , ("\\Prec",ESymbol Rel "\10939")-  , ("\\PrecedesSlantEqual",ESymbol Rel "\8828")-  , ("\\PrecedesTilde",ESymbol Rel "\8830")-  , ("\\PropertyLine",ESymbol Ord "\8522")-  , ("\\Proportion",ESymbol Rel "\8759")-  , ("\\QED",ESymbol Ord "\8718")-  , ("\\Qoppa",ESymbol Ord "\984")-  , ("\\Question",ESymbol Ord "\8263")-  , ("\\RHD",ESymbol Bin "\9654")-  , ("\\RIGHTCIRCLE",ESymbol Ord "\9687")-  , ("\\RIGHTcircle",ESymbol Ord "\9681")-  , ("\\RRightarrow",ESymbol Rel "\11078")-  , ("\\Rbag",ESymbol Close "\10182")-  , ("\\Rbrack",ESymbol Close "\10215")-  , ("\\Rbrbrak",ESymbol Close "\10221")-  , ("\\Rbrbrak",ESymbol Close "\12313")-  , ("\\Rdsh",ESymbol Rel "\8627")-  , ("\\RightArrowBar",ESymbol Rel "\8677")-  , ("\\RightDownTeeVector",ESymbol Rel "\10589")-  , ("\\RightDownVectorBar",ESymbol Rel "\10581")-  , ("\\RightTeeVector",ESymbol Rel "\10587")-  , ("\\RightTriangleBar",ESymbol Rel "\10704")-  , ("\\RightUpTeeVector",ESymbol Rel "\10588")-  , ("\\RightUpVectorBar",ESymbol Rel "\10580")-  , ("\\RightVectorBar",ESymbol Rel "\10579")-  , ("\\Rparen",ESymbol Close "\10630")-  , ("\\Rparenless",ESymbol Close "\10646")-  , ("\\Rrightarrow",ESymbol Rel "\8667")-  , ("\\Rsh",ESymbol Rel "\8625")-  , ("\\Rvzigzag",ESymbol Close "\10715")-  , ("\\Same",ESymbol Rel "\10870")-  , ("\\Sampi",ESymbol Alpha "\992")-  , ("\\Saturn",ESymbol Ord "\9796")-  , ("\\Scorpio",ESymbol Ord "\9807")-  , ("\\Searrow",ESymbol Rel "\8664")-  , ("\\Sqcap",ESymbol Bin "\10830")-  , ("\\Sqcup",ESymbol Bin "\10831")-  , ("\\Square",ESymbol Ord "\9744")-  , ("\\Stigma",ESymbol Alpha "\986")-  , ("\\Subset",ESymbol Rel "\8912")-  , ("\\Succ",ESymbol Rel "\10940")-  , ("\\SucceedsSlantEqual",ESymbol Rel "\8829")-  , ("\\SucceedsTilde",ESymbol Rel "\8831")-  , ("\\Sun",ESymbol Ord "\9737")-  , ("\\Supset",ESymbol Rel "\8913")-  , ("\\Swarrow",ESymbol Rel "\8665")-  , ("\\Taurus",ESymbol Ord "\9801")-  , ("\\Top",ESymbol Rel "\10986")-  , ("\\UUparrow",ESymbol Rel "\10224")-  , ("\\UpArrowBar",ESymbol Rel "\10514")-  , ("\\Uranus",ESymbol Ord "\9797")-  , ("\\Uuparrow",ESymbol Rel "\10506")-  , ("\\VDash",ESymbol Rel "\8875")-  , ("\\VERT",ESymbol Fence "\10624")-  , ("\\Vbar",ESymbol Rel "\10987")-  , ("\\Vdash",ESymbol Rel "\8873")-  , ("\\Vec",ESymbol Accent "\8407")-  , ("\\Vee",ESymbol Bin "\10836")-  , ("\\Venus",ESymbol Ord "\9792")-  , ("\\Vert",ESymbol Fence "\8214")-  , ("\\Vvdash",ESymbol Rel "\8874")-  , ("\\Vvert",ESymbol Fence "\10624")-  , ("\\Wedge",ESymbol Bin "\10835")-  , ("\\XBox",ESymbol Ord "\9746")-  , ("\\Yup",ESymbol Ord "\8516")-  , ("\\Zbar",ESymbol Ord "\437")-  , ("\\accurrent",ESymbol Ord "\9190")-  , ("\\acidfree",ESymbol Ord "\9854")-  , ("\\acute",ESymbol Accent "\769")-  , ("\\acwcirclearrow",ESymbol Rel "\10560")-  , ("\\acwgapcirclearrow",ESymbol Rel "\10226")-  , ("\\acwleftarcarrow",ESymbol Rel "\10553")-  , ("\\acwopencirclearrow",ESymbol Ord "\8634")-  , ("\\acwoverarcarrow",ESymbol Rel "\10554")-  , ("\\acwunderarcarrow",ESymbol Rel "\10555")-  , ("\\adots",ESymbol Rel "\8944")-  , ("\\ampersand",ESymbol Ord "&")-  , ("\\anchor",ESymbol Ord "\9875")-  , ("\\angdnr",ESymbol Ord "\10655")-  , ("\\angles",ESymbol Ord "\10654")-  , ("\\angleubar",ESymbol Ord "\10660")-  , ("\\annuity",ESymbol Accent "\8423")-  , ("\\apprge",ESymbol Rel "\8819")-  , ("\\apprle",ESymbol Rel "\8818")-  , ("\\approxeq",ESymbol Rel "\8778")-  , ("\\approxeqq",ESymbol Rel "\10864")-  , ("\\approxident",ESymbol Rel "\8779")-  , ("\\aquarius",ESymbol Ord "\9810")-  , ("\\arceq",ESymbol Rel "\8792")-  , ("\\aries",ESymbol Ord "\9800")-  , ("\\arrowbullet",ESymbol Ord "\10146")-  , ("\\assert",ESymbol Rel "\8870")-  , ("\\asteq",ESymbol Rel "\10862")-  , ("\\asteraccent",ESymbol Accent "\8432")-  , ("\\astrosun",ESymbol Ord "\9737")-  , ("\\atsign",ESymbol Ord "@")-  , ("\\awint",ESymbol Op "\10769")-  , ("\\bNot",ESymbol Rel "\10989")-  , ("\\backcong",ESymbol Rel "\8780")-  , ("\\backdprime",ESymbol Ord "\8246")-  , ("\\backepsilon",ESymbol Ord "\1014")-  , ("\\backprime",ESymbol Ord "\8245")-  , ("\\backsim",ESymbol Rel "\8765")-  , ("\\backsimeq",ESymbol Rel "\8909")-  , ("\\backtrprime",ESymbol Ord "\8247")-  , ("\\bagmember",ESymbol Rel "\8959")-  , ("\\ballotcheck",ESymbol Ord "\10003")-  , ("\\ballotx",ESymbol Ord "\10007")-  , ("\\bar",ESymbol Accent "\8254")-  , ("\\barV",ESymbol Rel "\10986")-  , ("\\barcap",ESymbol Bin "\10819")-  , ("\\barcup",ESymbol Bin "\10818")-  , ("\\bardownharpoonleft",ESymbol Rel "\10593")-  , ("\\bardownharpoonright",ESymbol Rel "\10589")-  , ("\\barin",ESymbol Rel "\8950")-  , ("\\barleftarrow",ESymbol Rel "\8676")-  , ("\\barleftarrowrightarrowba",ESymbol Ord "\8633")-  , ("\\barleftharpoon",ESymbol Rel "\10603")-  , ("\\barleftharpoondown",ESymbol Rel "\10582")-  , ("\\barleftharpoonup",ESymbol Rel "\10578")-  , ("\\barovernorthwestarrow",ESymbol Ord "\8632")-  , ("\\barrightarrowdiamond",ESymbol Rel "\10528")-  , ("\\barrightharpoon",ESymbol Rel "\10605")-  , ("\\barrightharpoondown",ESymbol Rel "\10591")-  , ("\\barrightharpoonup",ESymbol Rel "\10587")-  , ("\\baruparrow",ESymbol Rel "\10514")-  , ("\\barupharpoonleft",ESymbol Rel "\10584")-  , ("\\barupharpoonright",ESymbol Rel "\10580")-  , ("\\barvee",ESymbol Bin "\8893")-  , ("\\barwedge",ESymbol Bin "\8892")-  , ("\\barwedge",ESymbol Bin "\8965")-  , ("\\bbrktbrk",ESymbol Ord "\9142")-  , ("\\bdtriplevdash",ESymbol Ord "\9478")-  , ("\\because",ESymbol Ord "\8757")-  , ("\\benzenr",ESymbol Ord "\9187")-  , ("\\beth",ESymbol Alpha "\8502")-  , ("\\between",ESymbol Rel "\8812")-  , ("\\bigblacktriangledown",ESymbol Ord "\9660")-  , ("\\bigblacktriangleup",ESymbol Ord "\9650")-  , ("\\bigbot",ESymbol Op "\10200")-  , ("\\bigcupdot",ESymbol Op "\10755")-  , ("\\biginterleave",ESymbol Op "\11004")-  , ("\\bigslopedvee",ESymbol Bin "\10839")-  , ("\\bigslopedwedge",ESymbol Bin "\10840")-  , ("\\bigstar",ESymbol Ord "\9733")-  , ("\\bigtalloblong",ESymbol Op "\11007")-  , ("\\bigtimes",ESymbol Op "\10761")-  , ("\\bigtop",ESymbol Op "\10201")-  , ("\\bigtriangleleft",ESymbol Op "\10782")-  , ("\\bigwhitestar",ESymbol Ord "\9734")-  , ("\\bij",ESymbol Rel "\10518")-  , ("\\binampersand",ESymbol Ord "&")-  , ("\\bindnasrepma",ESymbol Bin "\8523")-  , ("\\biohazard",ESymbol Ord "\9763")-  , ("\\blackcircledownarrow",ESymbol Ord "\10733")-  , ("\\blackcircledrightdot",ESymbol Ord "\9864")-  , ("\\blackcircledtwodots",ESymbol Ord "\9865")-  , ("\\blackcircleulquadwhite",ESymbol Ord "\9685")-  , ("\\blackdiamonddownarrow",ESymbol Ord "\10730")-  , ("\\blackhourglass",ESymbol Bin "\10711")-  , ("\\blackinwhitediamond",ESymbol Ord "\9672")-  , ("\\blackinwhitesquare",ESymbol Ord "\9635")-  , ("\\blacklefthalfcircle",ESymbol Ord "\9686")-  , ("\\blacklozenge",ESymbol Bin "\10731")-  , ("\\blacklozenge",ESymbol Ord "\11047")-  , ("\\blackpointerleft",ESymbol Ord "\9668")-  , ("\\blackpointerright",ESymbol Ord "\9658")-  , ("\\blackrighthalfcircle",ESymbol Ord "\9687")-  , ("\\blacksmiley",ESymbol Ord "\9787")-  , ("\\blacksquare",ESymbol Ord "\11035")-  , ("\\blacksquare",ESymbol Ord "\8718")-  , ("\\blacksquare",ESymbol Ord "\9632")-  , ("\\blacksquare",ESymbol Ord "\9724")-  , ("\\blacktriangle",ESymbol Bin "\9652")-  , ("\\blacktriangledown",ESymbol Bin "\9662")-  , ("\\blacktriangleleft",ESymbol Bin "\9664")-  , ("\\blacktriangleleft",ESymbol Bin "\9666")-  , ("\\blacktriangleright",ESymbol Bin "\9654")-  , ("\\blacktriangleright",ESymbol Bin "\9656")-  , ("\\blacktriangleup",ESymbol Bin "\9652")-  , ("\\blkhorzoval",ESymbol Ord "\11052")-  , ("\\blkvertoval",ESymbol Ord "\11054")-  , ("\\blockfull",ESymbol Ord "\9608")-  , ("\\blockhalfshaded",ESymbol Ord "\9618")-  , ("\\blocklefthalf",ESymbol Ord "\9612")-  , ("\\blocklowhalf",ESymbol Ord "\9604")-  , ("\\blockqtrshaded",ESymbol Ord "\9617")-  , ("\\blockrighthalf",ESymbol Ord "\9616")-  , ("\\blockthreeqtrshaded",ESymbol Ord "\9619")-  , ("\\blockuphalf",ESymbol Ord "\9600")-  , ("\\botsemicircle",ESymbol Ord "\9697")-  , ("\\boxast",ESymbol Bin "\10694")-  , ("\\boxbar",ESymbol Bin "\9707")-  , ("\\boxbox",ESymbol Bin "\10696")-  , ("\\boxbslash",ESymbol Bin "\10693")-  , ("\\boxcircle",ESymbol Bin "\10695")-  , ("\\boxdiag",ESymbol Bin "\10692")-  , ("\\boxdot",ESymbol Bin "\8865")-  , ("\\boxminus",ESymbol Bin "\8863")-  , ("\\boxonbox",ESymbol Ord "\10697")-  , ("\\boxplus",ESymbol Bin "\8862")-  , ("\\boxslash",ESymbol Bin "\10692")-  , ("\\boxtimes",ESymbol Bin "\8864")-  , ("\\breve",ESymbol Accent "\774")-  , ("\\bsimilarleftarrow",ESymbol Rel "\11073")-  , ("\\bsimilarrightarrow",ESymbol Rel "\11079")-  , ("\\bsolhsub",ESymbol Rel "\10184")-  , ("\\btimes",ESymbol Bin "\10802")-  , ("\\bullseye",ESymbol Ord "\9678")-  , ("\\bumpeq",ESymbol Rel "\8783")-  , ("\\bumpeqq",ESymbol Rel "\10926")-  , ("\\buni",ESymbol Bin "\8846")-  , ("\\cancer",ESymbol Ord "\9803")-  , ("\\candra",ESymbol Accent "\784")-  , ("\\capbarcup",ESymbol Bin "\10825")-  , ("\\capdot",ESymbol Bin "\10816")-  , ("\\capovercup",ESymbol Bin "\10823")-  , ("\\capricornus",ESymbol Ord "\9809")-  , ("\\capwedge",ESymbol Bin "\10820")-  , ("\\caretinsert",ESymbol Ord "\8248")-  , ("\\carriagereturn",ESymbol Ord "\8629")-  , ("\\cat",ESymbol Bin "\8256")-  , ("\\ccwundercurvearrow",ESymbol Rel "\10559")-  , ("\\cdotp",ESymbol Bin "\183")-  , ("\\cent",ESymbol Ord "\162")-  , ("\\centerdot",ESymbol Ord "\11037")-  , ("\\check",ESymbol Accent "\780")-  , ("\\checkmark",ESymbol Ord "\10003")-  , ("\\cirE",ESymbol Ord "\10691")-  , ("\\cirbot",ESymbol Rel "\10207")-  , ("\\circeq",ESymbol Rel "\8791")-  , ("\\circlearrowleft",ESymbol Ord "\8634")-  , ("\\circlearrowright",ESymbol Ord "\8635")-  , ("\\circlebottomhalfblack",ESymbol Ord "\9682")-  , ("\\circledR",ESymbol Ord "\174")-  , ("\\circledast",ESymbol Bin "\8859")-  , ("\\circledbslash",ESymbol Bin "\10680")-  , ("\\circledbullet",ESymbol Ord "\10687")-  , ("\\circledcirc",ESymbol Bin "\8858")-  , ("\\circledcirc",ESymbol Ord "\9678")-  , ("\\circleddash",ESymbol Bin "\8861")-  , ("\\circledequal",ESymbol Bin "\8860")-  , ("\\circledgtr",ESymbol Bin "\10689")-  , ("\\circledless",ESymbol Bin "\10688")-  , ("\\circledownarrow",ESymbol Ord "\10732")-  , ("\\circledparallel",ESymbol Bin "\10679")-  , ("\\circledrightdot",ESymbol Ord "\9862")-  , ("\\circledstar",ESymbol Ord "\10026")-  , ("\\circledtwodots",ESymbol Ord "\9863")-  , ("\\circledvert",ESymbol Bin "\10678")-  , ("\\circledwhitebullet",ESymbol Ord "\10686")-  , ("\\circlehbar",ESymbol Bin "\10677")-  , ("\\circlelefthalfblack",ESymbol Ord "\9680")-  , ("\\circlellquad",ESymbol Ord "\9717")-  , ("\\circlelrquad",ESymbol Ord "\9718")-  , ("\\circleonleftarrow",ESymbol Rel "\11056")-  , ("\\circleonrightarrow",ESymbol Rel "\8692")-  , ("\\circlerighthalfblack",ESymbol Ord "\9681")-  , ("\\circletophalfblack",ESymbol Ord "\9683")-  , ("\\circleulquad",ESymbol Ord "\9716")-  , ("\\circleurquad",ESymbol Ord "\9719")-  , ("\\circleurquadblack",ESymbol Ord "\9684")-  , ("\\circlevertfill",ESymbol Ord "\9677")-  , ("\\cirfnint",ESymbol Op "\10768")-  , ("\\cirmid",ESymbol Rel "\10991")-  , ("\\cirscir",ESymbol Ord "\10690")-  , ("\\clockoint",ESymbol Op "\8754")-  , ("\\closedvarcap",ESymbol Bin "\10829")-  , ("\\closedvarcup",ESymbol Bin "\10828")-  , ("\\closedvarcupsmashprod",ESymbol Bin "\10832")-  , ("\\closure",ESymbol Rel "\8272")-  , ("\\clubsuit",ESymbol Ord "\9827")-  , ("\\cntclockoint",ESymbol Op "\8755")-  , ("\\coloneq",ESymbol Rel "\8788")-  , ("\\coloneqq",ESymbol Rel "\8788")-  , ("\\comma",ESymbol Pun ",")-  , ("\\commaminus",ESymbol Bin "\10793")-  , ("\\comp",ESymbol Bin "\10814")-  , ("\\complement",ESymbol Ord "\8705")-  , ("\\concavediamond",ESymbol Bin "\10209")-  , ("\\concavediamondtickleft",ESymbol Bin "\10210")-  , ("\\concavediamondtickright",ESymbol Bin "\10211")-  , ("\\congdot",ESymbol Rel "\10861")-  , ("\\conictaper",ESymbol Ord "\9010")-  , ("\\conjquant",ESymbol Op "\10759")-  , ("\\corresponds",ESymbol Rel "\8793")-  , ("\\csub",ESymbol Rel "\10959")-  , ("\\csube",ESymbol Rel "\10961")-  , ("\\csup",ESymbol Rel "\10960")-  , ("\\csupe",ESymbol Rel "\10962")-  , ("\\cuberoot",ESymbol Rad "\8731")-  , ("\\cupbarcap",ESymbol Bin "\10824")-  , ("\\cupdot",ESymbol Bin "\8845")-  , ("\\cupleftarrow",ESymbol Bin "\8844")-  , ("\\cupovercap",ESymbol Bin "\10822")-  , ("\\cupvee",ESymbol Bin "\10821")-  , ("\\curlyeqprec",ESymbol Rel "\8926")-  , ("\\curlyeqsucc",ESymbol Rel "\8927")-  , ("\\curlyvee",ESymbol Bin "\8910")-  , ("\\curlywedge",ESymbol Bin "\8911")-  , ("\\curvearrowleft",ESymbol Rel "\8630")-  , ("\\curvearrowleftplus",ESymbol Rel "\10557")-  , ("\\curvearrowright",ESymbol Rel "\8631")-  , ("\\curvearrowrightminus",ESymbol Rel "\10556")-  , ("\\cwcirclearrow",ESymbol Rel "\10561")-  , ("\\cwgapcirclearrow",ESymbol Rel "\10227")-  , ("\\cwopencirclearrow",ESymbol Ord "\8635")-  , ("\\cwrightarcarrow",ESymbol Rel "\10552")-  , ("\\cwundercurvearrow",ESymbol Rel "\10558")-  , ("\\daleth",ESymbol Alpha "\8504")-  , ("\\danger",ESymbol Ord "\9761")-  , ("\\dashV",ESymbol Rel "\10979")-  , ("\\dashVdash",ESymbol Rel "\10203")-  , ("\\dasharrow",ESymbol Ord "\8674")-  , ("\\dashcolon",ESymbol Rel "\8761")-  , ("\\dashleftarrow",ESymbol Ord "\8672")-  , ("\\dashleftharpoondown",ESymbol Rel "\10603")-  , ("\\dashrightarrow",ESymbol Ord "\8674")-  , ("\\dashrightharpoondown",ESymbol Rel "\10605")-  , ("\\dbkarow",ESymbol Rel "\10511")-  , ("\\dbloint",ESymbol Op "\8751")-  , ("\\dd",ESymbol Ord "\8518")-  , ("\\ddddot",ESymbol Accent "\8412")-  , ("\\dddot",ESymbol Accent "\8411")-  , ("\\ddot",ESymbol Accent "\776")-  , ("\\ddotseq",ESymbol Rel "\10871")-  , ("\\diameter",ESymbol Ord "\8960")-  , ("\\diamondbotblack",ESymbol Ord "\11033")-  , ("\\diamondcdot",ESymbol Ord "\10192")-  , ("\\diamondleftarrow",ESymbol Rel "\10525")-  , ("\\diamondleftarrowbar",ESymbol Rel "\10527")-  , ("\\diamondleftblack",ESymbol Ord "\11030")-  , ("\\diamondrightblack",ESymbol Ord "\11031")-  , ("\\diamondsuit",ESymbol Ord "\9826")-  , ("\\diamondtopblack",ESymbol Ord "\11032")-  , ("\\dicei",ESymbol Ord "\9856")-  , ("\\diceii",ESymbol Ord "\9857")-  , ("\\diceiii",ESymbol Ord "\9858")-  , ("\\diceiv",ESymbol Ord "\9859")-  , ("\\dicev",ESymbol Ord "\9860")-  , ("\\dicevi",ESymbol Ord "\9861")-  , ("\\digamma",ESymbol Alpha "\988")-  , ("\\digamma",ESymbol Alpha "\989")-  , ("\\dingasterisk",ESymbol Ord "\10045")-  , ("\\dint",ESymbol Op "\8898")-  , ("\\disin",ESymbol Rel "\8946")-  , ("\\disjquant",ESymbol Op "\10760")-  , ("\\divideontimes",ESymbol Bin "\8903")-  , ("\\divslash",ESymbol Bin "\8725")-  , ("\\dlsh",ESymbol Rel "\8626")-  , ("\\dot",ESymbol Accent "\775")-  , ("\\doteqdot",ESymbol Rel "\8785")-  , ("\\dotequal",ESymbol Rel "\8784")-  , ("\\dotequiv",ESymbol Rel "\10855")-  , ("\\dotminus",ESymbol Bin "\8760")-  , ("\\dotplus",ESymbol Bin "\8724")-  , ("\\dotsim",ESymbol Rel "\10858")-  , ("\\dotsminusdots",ESymbol Rel "\8762")-  , ("\\dottedcircle",ESymbol Ord "\9676")-  , ("\\dottedsquare",ESymbol Ord "\11034")-  , ("\\dottimes",ESymbol Bin "\10800")-  , ("\\doublebarvee",ESymbol Bin "\10850")-  , ("\\doublebarwedge",ESymbol Bin "\10846")-  , ("\\doublebarwedge",ESymbol Bin "\8966")-  , ("\\doubleplus",ESymbol Bin "\10746")-  , ("\\downarrowbar",ESymbol Rel "\10515")-  , ("\\downarrowbarred",ESymbol Rel "\10504")-  , ("\\downarrowuparrow",ESymbol Rel "\8693")-  , ("\\downdasharrow",ESymbol Ord "\8675")-  , ("\\downdownarrows",ESymbol Rel "\8650")-  , ("\\downdownharpoons",ESymbol Rel "\10597")-  , ("\\downfishtail",ESymbol Rel "\10623")-  , ("\\downharpoonleft",ESymbol Rel "\8643")-  , ("\\downharpoonleftbar",ESymbol Rel "\10585")-  , ("\\downharpoonright",ESymbol Rel "\8642")-  , ("\\downharpoonrightbar",ESymbol Rel "\10581")-  , ("\\downharpoonsleftright",ESymbol Rel "\10597")-  , ("\\downrightcurvedarrow",ESymbol Ord "\10549")-  , ("\\downtriangleleftblack",ESymbol Ord "\10728")-  , ("\\downtrianglerightblack",ESymbol Ord "\10729")-  , ("\\downuparrows",ESymbol Rel "\8693")-  , ("\\downupharpoons",ESymbol Rel "\10607")-  , ("\\downupharpoonsleftright",ESymbol Rel "\10607")-  , ("\\downwhitearrow",ESymbol Ord "\8681")-  , ("\\downzigzagarrow",ESymbol Rel "\8623")-  , ("\\dprime",ESymbol Ord "\8243")-  , ("\\draftingarrow",ESymbol Ord "\10139")-  , ("\\drbkarow",ESymbol Rel "\10512")-  , ("\\dres",ESymbol Bin "\9665")-  , ("\\droang",ESymbol Accent "\794")-  , ("\\drsh",ESymbol Rel "\8627")-  , ("\\dsol",ESymbol Bin "\10742")-  , ("\\dsub",ESymbol Bin "\10852")-  , ("\\dualmap",ESymbol Rel "\10719")-  , ("\\duni",ESymbol Op "\8899")-  , ("\\earth",ESymbol Ord "\9793")-  , ("\\ee",ESymbol Ord "\8519")-  , ("\\egsdot",ESymbol Rel "\10904")-  , ("\\eighthnote",ESymbol Ord "\9834")-  , ("\\elinters",ESymbol Ord "\9191")-  , ("\\elsdot",ESymbol Rel "\10903")-  , ("\\emptysetoarr",ESymbol Ord "\10675")-  , ("\\emptysetoarrl",ESymbol Ord "\10676")-  , ("\\emptysetobar",ESymbol Ord "\10673")-  , ("\\emptysetocirc",ESymbol Ord "\10674")-  , ("\\enclosecircle",ESymbol Accent "\8413")-  , ("\\enclosediamond",ESymbol Accent "\8415")-  , ("\\enclosesquare",ESymbol Accent "\8414")-  , ("\\enclosetriangle",ESymbol Accent "\8420")-  , ("\\enleadertwodots",ESymbol Ord "\8229")-  , ("\\eparsl",ESymbol Rel "\10723")-  , ("\\eqcirc",ESymbol Rel "\8790")-  , ("\\eqcolon",ESymbol Rel "\8761")-  , ("\\eqcolon",ESymbol Rel "\8789")-  , ("\\eqdef",ESymbol Rel "\8797")-  , ("\\eqdot",ESymbol Rel "\10854")-  , ("\\eqeq",ESymbol Rel "\10869")-  , ("\\eqeqeq",ESymbol Rel "\10870")-  , ("\\eqgtr",ESymbol Rel "\8925")-  , ("\\eqless",ESymbol Rel "\8924")-  , ("\\eqqcolon",ESymbol Rel "\8789")-  , ("\\eqqgtr",ESymbol Rel "\10906")-  , ("\\eqqless",ESymbol Rel "\10905")-  , ("\\eqqplus",ESymbol Bin "\10865")-  , ("\\eqqsim",ESymbol Rel "\10867")-  , ("\\eqqslantgtr",ESymbol Rel "\10908")-  , ("\\eqqslantless",ESymbol Rel "\10907")-  , ("\\eqsim",ESymbol Rel "\8770")-  , ("\\eqslantgtr",ESymbol Rel "\10902")-  , ("\\eqslantless",ESymbol Rel "\10901")-  , ("\\equal",ESymbol Rel "=")-  , ("\\equalleftarrow",ESymbol Rel "\11072")-  , ("\\equalparallel",ESymbol Rel "\8917")-  , ("\\equalrightarrow",ESymbol Rel "\10609")-  , ("\\equilibrium",ESymbol Rel "\8652")-  , ("\\equivDD",ESymbol Rel "\10872")-  , ("\\equivVert",ESymbol Rel "\10856")-  , ("\\equivVvert",ESymbol Rel "\10857")-  , ("\\eqvparsl",ESymbol Rel "\10725")-  , ("\\errbarblackcircle",ESymbol Ord "\10739")-  , ("\\errbarblackdiamond",ESymbol Ord "\10737")-  , ("\\errbarblacksquare",ESymbol Ord "\10735")-  , ("\\errbarcircle",ESymbol Ord "\10738")-  , ("\\errbardiamond",ESymbol Ord "\10736")-  , ("\\errbarsquare",ESymbol Ord "\10734")-  , ("\\eth",ESymbol Alpha "\240")-  , ("\\euro",ESymbol Ord "\8364")-  , ("\\exclam",ESymbol Pun "!")-  , ("\\exi",ESymbol Ord "\8707")-  , ("\\fallingdotseq",ESymbol Rel "\8786")-  , ("\\fbowtie",ESymbol Rel "\10707")-  , ("\\fcmp",ESymbol Bin "\10814")-  , ("\\fdiagovnearrow",ESymbol Ord "\10543")-  , ("\\fdiagovrdiag",ESymbol Ord "\10540")-  , ("\\female",ESymbol Ord "\9792")-  , ("\\ffun",ESymbol Rel "\8699")-  , ("\\finj",ESymbol Rel "\10517")-  , ("\\fint",ESymbol Op "\10767")-  , ("\\fisheye",ESymbol Ord "\9673")-  , ("\\flat",ESymbol Ord "\9837")-  , ("\\fltns",ESymbol Ord "\9189")-  , ("\\forks",ESymbol Rel "\10972")-  , ("\\forksnot",ESymbol Rel "\10973")-  , ("\\forkv",ESymbol Rel "\10969")-  , ("\\fourth",ESymbol Ord "\8279")-  , ("\\fourthroot",ESymbol Rad "\8732")-  , ("\\fourvdots",ESymbol Ord "\10649")-  , ("\\fracslash",ESymbol Bin "\8260")-  , ("\\frownie",ESymbol Ord "\9785")-  , ("\\fullouterjoin",ESymbol Op "\10199")-  , ("\\gemini",ESymbol Ord "\9802")-  , ("\\geqq",ESymbol Rel "\8807")-  , ("\\geqqslant",ESymbol Rel "\11002")-  , ("\\gescc",ESymbol Rel "\10921")-  , ("\\gesdot",ESymbol Rel "\10880")-  , ("\\gesdoto",ESymbol Rel "\10882")-  , ("\\gesdotol",ESymbol Rel "\10884")-  , ("\\gesles",ESymbol Rel "\10900")-  , ("\\ggcurly",ESymbol Rel "\10940")-  , ("\\ggg",ESymbol Rel "\10914")-  , ("\\ggg",ESymbol Rel "\8921")-  , ("\\gggnest",ESymbol Rel "\11000")-  , ("\\gimel",ESymbol Alpha "\8503")-  , ("\\glE",ESymbol Rel "\10898")-  , ("\\gla",ESymbol Rel "\10917")-  , ("\\gleichstark",ESymbol Rel "\10726")-  , ("\\glj",ESymbol Rel "\10916")-  , ("\\gnapprox",ESymbol Rel "\10890")-  , ("\\gneq",ESymbol Rel "\10888")-  , ("\\gneqq",ESymbol Rel "\8809")-  , ("\\gnsim",ESymbol Rel "\8935")-  , ("\\grave",ESymbol Accent "\768")-  , ("\\greater",ESymbol Rel ">")-  , ("\\gsime",ESymbol Rel "\10894")-  , ("\\gsiml",ESymbol Rel "\10896")-  , ("\\gtcc",ESymbol Rel "\10919")-  , ("\\gtcir",ESymbol Rel "\10874")-  , ("\\gtlpar",ESymbol Ord "\10656")-  , ("\\gtquest",ESymbol Rel "\10876")-  , ("\\gtrapprox",ESymbol Rel "\10886")-  , ("\\gtrarr",ESymbol Rel "\10616")-  , ("\\gtrdot",ESymbol Rel "\8919")-  , ("\\gtreqless",ESymbol Rel "\8923")-  , ("\\gtreqqless",ESymbol Rel "\10892")-  , ("\\gtrless",ESymbol Rel "\8823")-  , ("\\gtrsim",ESymbol Rel "\8819")-  , ("\\harrowextender",ESymbol Ord "\9135")-  , ("\\hash",ESymbol Rel "\8917")-  , ("\\hat",ESymbol Accent "\770")-  , ("\\hatapprox",ESymbol Rel "\10863")-  , ("\\heartsuit",ESymbol Ord "\9825")-  , ("\\hermitmatrix",ESymbol Ord "\8889")-  , ("\\hexagon",ESymbol Ord "\9108")-  , ("\\hexagonblack",ESymbol Ord "\11043")-  , ("\\hide",ESymbol Op "\10745")-  , ("\\hknearrow",ESymbol Rel "\10532")-  , ("\\hknwarrow",ESymbol Rel "\10531")-  , ("\\hksearow",ESymbol Rel "\10533")-  , ("\\hkswarow",ESymbol Rel "\10534")-  , ("\\hookleftarrow",ESymbol Rel "\8617")-  , ("\\hookrightarrow",ESymbol Rel "\8618")-  , ("\\horizbar",ESymbol Ord "\8213")-  , ("\\hourglass",ESymbol Bin "\10710")-  , ("\\house",ESymbol Ord "\8962")-  , ("\\hrectangle",ESymbol Ord "\9645")-  , ("\\hrectangleblack",ESymbol Ord "\9644")-  , ("\\hslash",ESymbol Alpha "\8463")-  , ("\\hyphenbullet",ESymbol Ord "\8259")-  , ("\\hzigzag",ESymbol Ord "\12336")-  , ("\\iddots",ESymbol Rel "\8944")-  , ("\\ii",ESymbol Ord "\8520")-  , ("\\iiiint",ESymbol Op "\10764")-  , ("\\iinfin",ESymbol Ord "\10716")-  , ("\\imageof",ESymbol Rel "\8887")-  , ("\\imath",ESymbol Alpha "\120484")-  , ("\\imath",ESymbol Alpha "\305")-  , ("\\impliedby",ESymbol Rel "\10232")-  , ("\\implies",ESymbol Rel "\10233")-  , ("\\increment",ESymbol Ord "\8710")-  , ("\\intBar",ESymbol Op "\10766")-  , ("\\intbar",ESymbol Op "\10765")-  , ("\\intbottom",ESymbol Ord "\8993")-  , ("\\intcap",ESymbol Op "\10777")-  , ("\\intclockwise",ESymbol Op "\8753")-  , ("\\intcup",ESymbol Op "\10778")-  , ("\\intercal",ESymbol Bin "\8890")-  , ("\\interleave",ESymbol Bin "\10996")-  , ("\\intextender",ESymbol Ord "\9134")-  , ("\\intlarhk",ESymbol Op "\10775")-  , ("\\intprod",ESymbol Bin "\10812")-  , ("\\intprodr",ESymbol Bin "\10813")-  , ("\\inttop",ESymbol Ord "\8992")-  , ("\\intx",ESymbol Op "\10776")-  , ("\\invamp",ESymbol Bin "\8523")-  , ("\\inversebullet",ESymbol Ord "\9688")-  , ("\\inversewhitecircle",ESymbol Ord "\9689")-  , ("\\invlazys",ESymbol Bin "\8766")-  , ("\\invneg",ESymbol Ord "\8976")-  , ("\\invnot",ESymbol Ord "\8976")-  , ("\\invsmileface",ESymbol Ord "\9787")-  , ("\\invwhitelowerhalfcircle",ESymbol Ord "\9691")-  , ("\\invwhiteupperhalfcircle",ESymbol Ord "\9690")-  , ("\\isinE",ESymbol Rel "\8953")-  , ("\\isindot",ESymbol Rel "\8949")-  , ("\\isinobar",ESymbol Rel "\8951")-  , ("\\isins",ESymbol Rel "\8948")-  , ("\\isinvb",ESymbol Rel "\8952")-  , ("\\jj",ESymbol Ord "\8521")-  , ("\\jmath",ESymbol Alpha "\120485")-  , ("\\jmath",ESymbol Alpha "\567")-  , ("\\jupiter",ESymbol Ord "\9795")-  , ("\\kernelcontraction",ESymbol Rel "\8763")-  , ("\\koppa",ESymbol Alpha "\991")-  , ("\\koppa",ESymbol Ord "\985")-  , ("\\lAngle",ESymbol Open "\10218")-  , ("\\lBrace",ESymbol Open "\10627")-  , ("\\lBrack",ESymbol Open "\10214")-  , ("\\lParen",ESymbol Open "\10629")-  , ("\\lang",ESymbol Open "\10218")-  , ("\\langle",ESymbol Open "\10216")-  , ("\\langle",ESymbol Open "\12296")-  , ("\\langle",ESymbol Open "\9001")-  , ("\\langledot",ESymbol Open "\10641")-  , ("\\laplac",ESymbol Ord "\10720")-  , ("\\lat",ESymbol Rel "\10923")-  , ("\\late",ESymbol Rel "\10925")-  , ("\\lbag",ESymbol Open "\10181")-  , ("\\lblkbrbrak",ESymbol Open "\10647")-  , ("\\lblot",ESymbol Open "\10633")-  , ("\\lbrace",ESymbol Open "{")-  , ("\\lbracelend",ESymbol Ord "\9129")-  , ("\\lbracemid",ESymbol Ord "\9128")-  , ("\\lbraceuend",ESymbol Ord "\9127")-  , ("\\lbrack",ESymbol Open "[")-  , ("\\lbrackextender",ESymbol Ord "\9122")-  , ("\\lbracklend",ESymbol Ord "\9123")-  , ("\\lbracklltick",ESymbol Open "\10639")-  , ("\\lbrackubar",ESymbol Open "\10635")-  , ("\\lbrackuend",ESymbol Ord "\9121")-  , ("\\lbrackultick",ESymbol Open "\10637")-  , ("\\lbrbrak",ESymbol Open "\10098")-  , ("\\lbrbrak",ESymbol Open "\12308")-  , ("\\lceil",ESymbol Open "\8968")-  , ("\\lcurvyangle",ESymbol Open "\10748")-  , ("\\leadsto",ESymbol Rel "\10547")-  , ("\\leftarrowapprox",ESymbol Rel "\11082")-  , ("\\leftarrowbackapprox",ESymbol Rel "\11074")-  , ("\\leftarrowbsimilar",ESymbol Rel "\11083")-  , ("\\leftarrowless",ESymbol Rel "\10615")-  , ("\\leftarrowonoplus",ESymbol Rel "\11058")-  , ("\\leftarrowplus",ESymbol Rel "\10566")-  , ("\\leftarrowshortrightarrow",ESymbol Rel "\10563")-  , ("\\leftarrowsimilar",ESymbol Rel "\10611")-  , ("\\leftarrowsubset",ESymbol Rel "\10618")-  , ("\\leftarrowtail",ESymbol Rel "\8610")-  , ("\\leftarrowtriangle",ESymbol Rel "\8701")-  , ("\\leftarrowx",ESymbol Rel "\11070")-  , ("\\leftbarharpoon",ESymbol Rel "\10602")-  , ("\\leftbkarrow",ESymbol Rel "\10508")-  , ("\\leftcurvedarrow",ESymbol Rel "\11071")-  , ("\\leftdasharrow",ESymbol Ord "\8672")-  , ("\\leftdbkarrow",ESymbol Rel "\10510")-  , ("\\leftdbltail",ESymbol Rel "\10523")-  , ("\\leftdotarrow",ESymbol Rel "\11064")-  , ("\\leftdowncurvedarrow",ESymbol Rel "\10550")-  , ("\\leftfishtail",ESymbol Rel "\10620")-  , ("\\leftharpoonaccent",ESymbol Accent "\8400")-  , ("\\leftharpoondown",ESymbol Rel "\8637")-  , ("\\leftharpoondownbar",ESymbol Rel "\10590")-  , ("\\leftharpoonsupdown",ESymbol Rel "\10594")-  , ("\\leftharpoonup",ESymbol Rel "\8636")-  , ("\\leftharpoonupbar",ESymbol Rel "\10586")-  , ("\\leftharpoonupdash",ESymbol Rel "\10602")-  , ("\\leftleftarrows",ESymbol Rel "\8647")-  , ("\\leftleftharpoons",ESymbol Rel "\10594")-  , ("\\leftmoon",ESymbol Ord "\9790")-  , ("\\leftouterjoin",ESymbol Op "\10197")-  , ("\\leftrightarrowcircle",ESymbol Rel "\10568")-  , ("\\leftrightarrows",ESymbol Rel "\8646")-  , ("\\leftrightarrowtriangle",ESymbol Rel "\8703")-  , ("\\leftrightharpoon",ESymbol Rel "\10570")-  , ("\\leftrightharpoondown",ESymbol Rel "\10576")-  , ("\\leftrightharpoondowndown",ESymbol Rel "\10576")-  , ("\\leftrightharpoondownup",ESymbol Rel "\10571")-  , ("\\leftrightharpoons",ESymbol Rel "\8651")-  , ("\\leftrightharpoonsdown",ESymbol Rel "\10599")-  , ("\\leftrightharpoonsup",ESymbol Rel "\10598")-  , ("\\leftrightharpoonup",ESymbol Rel "\10574")-  , ("\\leftrightharpoonupdown",ESymbol Rel "\10570")-  , ("\\leftrightharpoonupup",ESymbol Rel "\10574")-  , ("\\leftrightsquigarrow",ESymbol Rel "\8621")-  , ("\\leftslice",ESymbol Rel "\10918")-  , ("\\leftsquigarrow",ESymbol Rel "\8668")-  , ("\\lefttail",ESymbol Rel "\10521")-  , ("\\leftthreearrows",ESymbol Rel "\11057")-  , ("\\leftthreetimes",ESymbol Bin "\8907")-  , ("\\leftturn",ESymbol Ord "\8634")-  , ("\\leftupdownharpoon",ESymbol Rel "\10577")-  , ("\\leftwavearrow",ESymbol Rel "\8604")-  , ("\\leftwhitearrow",ESymbol Ord "\8678")-  , ("\\leo",ESymbol Ord "\9804")-  , ("\\leqq",ESymbol Rel "\8806")-  , ("\\leqqslant",ESymbol Rel "\11001")-  , ("\\lescc",ESymbol Rel "\10920")-  , ("\\lesdot",ESymbol Rel "\10879")-  , ("\\lesdoto",ESymbol Rel "\10881")-  , ("\\lesdotor",ESymbol Rel "\10883")-  , ("\\lesges",ESymbol Rel "\10899")-  , ("\\less",ESymbol Rel "<")-  , ("\\lessapprox",ESymbol Rel "\10885")-  , ("\\lessdot",ESymbol Rel "\8918")-  , ("\\lesseqgtr",ESymbol Rel "\8922")-  , ("\\lesseqqgtr",ESymbol Rel "\10891")-  , ("\\lessgtr",ESymbol Rel "\8822")-  , ("\\lesssim",ESymbol Rel "\8818")-  , ("\\lfbowtie",ESymbol Rel "\10705")-  , ("\\lfloor",ESymbol Open "\8970")-  , ("\\lftimes",ESymbol Rel "\10708")-  , ("\\lgE",ESymbol Rel "\10897")-  , ("\\lgblkcircle",ESymbol Ord "\11044")-  , ("\\lgblksquare",ESymbol Ord "\11035")-  , ("\\lgroup",ESymbol Open "\10222")-  , ("\\lgwhtcircle",ESymbol Ord "\9711")-  , ("\\lgwhtsquare",ESymbol Ord "\11036")-  , ("\\libra",ESymbol Ord "\9806")-  , ("\\lightning",ESymbol Rel "\8623")-  , ("\\limg",ESymbol Open "\10631")-  , ("\\linefeed",ESymbol Ord "\8628")-  , ("\\llangle",ESymbol Open "\10633")-  , ("\\llarc",ESymbol Ord "\9695")-  , ("\\llblacktriangle",ESymbol Ord "\9699")-  , ("\\llbracket",ESymbol Open "\10214")-  , ("\\llbracket",ESymbol Open "\12314")-  , ("\\llcorner",ESymbol Open "\8990")-  , ("\\llcurly",ESymbol Rel "\10939")-  , ("\\lll",ESymbol Rel "\10913")-  , ("\\lll",ESymbol Rel "\8920")-  , ("\\lllnest",ESymbol Rel "\10999")-  , ("\\llparenthesis",ESymbol Open "\10631")-  , ("\\lltriangle",ESymbol Ord "\9722")-  , ("\\lmoustache",ESymbol Ord "\9136")-  , ("\\lnapprox",ESymbol Rel "\10889")-  , ("\\lneq",ESymbol Rel "\10887")-  , ("\\lneqq",ESymbol Rel "\8808")-  , ("\\lnsim",ESymbol Rel "\8934")-  , ("\\longdashv",ESymbol Rel "\10206")-  , ("\\longdivision",ESymbol Open "\10188")-  , ("\\longleftsquigarrow",ESymbol Rel "\11059")-  , ("\\longmappedfrom",ESymbol Rel "\10235")-  , ("\\longmapsfrom",ESymbol Rel "\10235")-  , ("\\longrightsquigarrow",ESymbol Rel "\10239")-  , ("\\looparrowleft",ESymbol Rel "\8619")-  , ("\\looparrowright",ESymbol Rel "\8620")-  , ("\\lowint",ESymbol Op "\10780")-  , ("\\lozengeminus",ESymbol Bin "\10208")-  , ("\\lparen",ESymbol Open "(")-  , ("\\lparenextender",ESymbol Ord "\9116")-  , ("\\lparenlend",ESymbol Ord "\9117")-  , ("\\lparenless",ESymbol Open "\10643")-  , ("\\lparenuend",ESymbol Ord "\9115")-  , ("\\lrarc",ESymbol Ord "\9694")-  , ("\\lrblacktriangle",ESymbol Ord "\9698")-  , ("\\lrcorner",ESymbol Close "\8991")-  , ("\\lrtimes",ESymbol Rel "\8904")-  , ("\\lrtriangle",ESymbol Ord "\9727")-  , ("\\lrtriangleeq",ESymbol Rel "\10721")-  , ("\\lsime",ESymbol Rel "\10893")-  , ("\\lsimg",ESymbol Rel "\10895")-  , ("\\lsqhook",ESymbol Rel "\10957")-  , ("\\ltcc",ESymbol Rel "\10918")-  , ("\\ltcir",ESymbol Rel "\10873")-  , ("\\ltlarr",ESymbol Rel "\10614")-  , ("\\ltquest",ESymbol Rel "\10875")-  , ("\\ltrivb",ESymbol Rel "\10703")-  , ("\\lvboxline",ESymbol Ord "\9144")-  , ("\\lvec",ESymbol Accent "\8400")-  , ("\\lvzigzag",ESymbol Open "\10712")-  , ("\\male",ESymbol Ord "\9794")-  , ("\\maltese",ESymbol Ord "\10016")-  , ("\\mappedfrom",ESymbol Rel "\8612")-  , ("\\mapsdown",ESymbol Rel "\8615")-  , ("\\mapsfrom",ESymbol Rel "\8612")-  , ("\\mapsup",ESymbol Rel "\8613")-  , ("\\mathcent",ESymbol Ord "\162")-  , ("\\mathcolon",ESymbol Pun ":")-  , ("\\mathdollar",ESymbol Ord "$")-  , ("\\matheth",ESymbol Alpha "\240")-  , ("\\mathratio",ESymbol Rel "\8758")-  , ("\\mathring",ESymbol Accent "\778")-  , ("\\mathslash",ESymbol Ord "/")-  , ("\\mathsterling",ESymbol Ord "\163")-  , ("\\mbfA",ESymbol Alpha "\119808")-  , ("\\mbfAlpha",ESymbol Alpha "\120488")-  , ("\\mbfB",ESymbol Alpha "\119809")-  , ("\\mbfBeta",ESymbol Alpha "\120489")-  , ("\\mbfC",ESymbol Alpha "\119810")-  , ("\\mbfChi",ESymbol Alpha "\120510")-  , ("\\mbfD",ESymbol Alpha "\119811")-  , ("\\mbfDelta",ESymbol Alpha "\120491")-  , ("\\mbfDigamma",ESymbol Alpha "\120778")-  , ("\\mbfE",ESymbol Alpha "\119812")-  , ("\\mbfEpsilon",ESymbol Alpha "\120492")-  , ("\\mbfEta",ESymbol Alpha "\120494")-  , ("\\mbfF",ESymbol Alpha "\119813")-  , ("\\mbfG",ESymbol Alpha "\119814")-  , ("\\mbfGamma",ESymbol Alpha "\120490")-  , ("\\mbfH",ESymbol Alpha "\119815")-  , ("\\mbfI",ESymbol Alpha "\119816")-  , ("\\mbfIota",ESymbol Alpha "\120496")-  , ("\\mbfJ",ESymbol Alpha "\119817")-  , ("\\mbfK",ESymbol Alpha "\119818")-  , ("\\mbfKappa",ESymbol Alpha "\120497")-  , ("\\mbfL",ESymbol Alpha "\119819")-  , ("\\mbfLambda",ESymbol Alpha "\120498")-  , ("\\mbfM",ESymbol Alpha "\119820")-  , ("\\mbfMu",ESymbol Alpha "\120499")-  , ("\\mbfN",ESymbol Alpha "\119821")-  , ("\\mbfNu",ESymbol Alpha "\120500")-  , ("\\mbfO",ESymbol Alpha "\119822")-  , ("\\mbfOmega",ESymbol Alpha "\120512")-  , ("\\mbfOmicron",ESymbol Alpha "\120502")-  , ("\\mbfP",ESymbol Alpha "\119823")-  , ("\\mbfPhi",ESymbol Alpha "\120509")-  , ("\\mbfPi",ESymbol Alpha "\120503")-  , ("\\mbfPsi",ESymbol Alpha "\120511")-  , ("\\mbfQ",ESymbol Alpha "\119824")-  , ("\\mbfR",ESymbol Alpha "\119825")-  , ("\\mbfRho",ESymbol Alpha "\120504")-  , ("\\mbfS",ESymbol Alpha "\119826")-  , ("\\mbfSigma",ESymbol Alpha "\120506")-  , ("\\mbfT",ESymbol Alpha "\119827")-  , ("\\mbfTau",ESymbol Alpha "\120507")-  , ("\\mbfTheta",ESymbol Alpha "\120495")-  , ("\\mbfU",ESymbol Alpha "\119828")-  , ("\\mbfUpsilon",ESymbol Alpha "\120508")-  , ("\\mbfV",ESymbol Alpha "\119829")-  , ("\\mbfW",ESymbol Alpha "\119830")-  , ("\\mbfX",ESymbol Alpha "\119831")-  , ("\\mbfXi",ESymbol Alpha "\120501")-  , ("\\mbfY",ESymbol Alpha "\119832")-  , ("\\mbfZ",ESymbol Alpha "\119833")-  , ("\\mbfZeta",ESymbol Alpha "\120493")-  , ("\\mbfa",ESymbol Alpha "\119834")-  , ("\\mbfalpha",ESymbol Alpha "\120514")-  , ("\\mbfb",ESymbol Alpha "\119835")-  , ("\\mbfbeta",ESymbol Alpha "\120515")-  , ("\\mbfc",ESymbol Alpha "\119836")-  , ("\\mbfchi",ESymbol Alpha "\120536")-  , ("\\mbfd",ESymbol Alpha "\119837")-  , ("\\mbfdelta",ESymbol Alpha "\120517")-  , ("\\mbfdigamma",ESymbol Alpha "\120779")-  , ("\\mbfe",ESymbol Alpha "\119838")-  , ("\\mbfepsilon",ESymbol Alpha "\120518")-  , ("\\mbfeta",ESymbol Alpha "\120520")-  , ("\\mbff",ESymbol Alpha "\119839")-  , ("\\mbffrakA",ESymbol Alpha "\120172")-  , ("\\mbffrakB",ESymbol Alpha "\120173")-  , ("\\mbffrakC",ESymbol Alpha "\120174")-  , ("\\mbffrakD",ESymbol Alpha "\120175")-  , ("\\mbffrakE",ESymbol Alpha "\120176")-  , ("\\mbffrakF",ESymbol Alpha "\120177")-  , ("\\mbffrakG",ESymbol Alpha "\120178")-  , ("\\mbffrakH",ESymbol Alpha "\120179")-  , ("\\mbffrakI",ESymbol Alpha "\120180")-  , ("\\mbffrakJ",ESymbol Alpha "\120181")-  , ("\\mbffrakK",ESymbol Alpha "\120182")-  , ("\\mbffrakL",ESymbol Alpha "\120183")-  , ("\\mbffrakM",ESymbol Alpha "\120184")-  , ("\\mbffrakN",ESymbol Alpha "\120185")-  , ("\\mbffrakO",ESymbol Alpha "\120186")-  , ("\\mbffrakP",ESymbol Alpha "\120187")-  , ("\\mbffrakQ",ESymbol Alpha "\120188")-  , ("\\mbffrakR",ESymbol Alpha "\120189")-  , ("\\mbffrakS",ESymbol Alpha "\120190")-  , ("\\mbffrakT",ESymbol Alpha "\120191")-  , ("\\mbffrakU",ESymbol Alpha "\120192")-  , ("\\mbffrakV",ESymbol Alpha "\120193")-  , ("\\mbffrakW",ESymbol Alpha "\120194")-  , ("\\mbffrakX",ESymbol Alpha "\120195")-  , ("\\mbffrakY",ESymbol Alpha "\120196")-  , ("\\mbffrakZ",ESymbol Alpha "\120197")-  , ("\\mbffraka",ESymbol Alpha "\120198")-  , ("\\mbffrakb",ESymbol Alpha "\120199")-  , ("\\mbffrakc",ESymbol Alpha "\120200")-  , ("\\mbffrakd",ESymbol Alpha "\120201")-  , ("\\mbffrake",ESymbol Alpha "\120202")-  , ("\\mbffrakf",ESymbol Alpha "\120203")-  , ("\\mbffrakg",ESymbol Alpha "\120204")-  , ("\\mbffrakh",ESymbol Alpha "\120205")-  , ("\\mbffraki",ESymbol Alpha "\120206")-  , ("\\mbffrakj",ESymbol Alpha "\120207")-  , ("\\mbffrakk",ESymbol Alpha "\120208")-  , ("\\mbffrakl",ESymbol Alpha "\120209")-  , ("\\mbffrakm",ESymbol Alpha "\120210")-  , ("\\mbffrakn",ESymbol Alpha "\120211")-  , ("\\mbffrako",ESymbol Alpha "\120212")-  , ("\\mbffrakp",ESymbol Alpha "\120213")-  , ("\\mbffrakq",ESymbol Alpha "\120214")-  , ("\\mbffrakr",ESymbol Alpha "\120215")-  , ("\\mbffraks",ESymbol Alpha "\120216")-  , ("\\mbffrakt",ESymbol Alpha "\120217")-  , ("\\mbffraku",ESymbol Alpha "\120218")-  , ("\\mbffrakv",ESymbol Alpha "\120219")-  , ("\\mbffrakw",ESymbol Alpha "\120220")-  , ("\\mbffrakx",ESymbol Alpha "\120221")-  , ("\\mbffraky",ESymbol Alpha "\120222")-  , ("\\mbffrakz",ESymbol Alpha "\120223")-  , ("\\mbfg",ESymbol Alpha "\119840")-  , ("\\mbfgamma",ESymbol Alpha "\120516")-  , ("\\mbfh",ESymbol Alpha "\119841")-  , ("\\mbfi",ESymbol Alpha "\119842")-  , ("\\mbfiota",ESymbol Alpha "\120522")-  , ("\\mbfitA",ESymbol Alpha "\119912")-  , ("\\mbfitAlpha",ESymbol Alpha "\120604")-  , ("\\mbfitB",ESymbol Alpha "\119913")-  , ("\\mbfitBeta",ESymbol Alpha "\120605")-  , ("\\mbfitC",ESymbol Alpha "\119914")-  , ("\\mbfitChi",ESymbol Alpha "\120626")-  , ("\\mbfitD",ESymbol Alpha "\119915")-  , ("\\mbfitDelta",ESymbol Alpha "\120607")-  , ("\\mbfitE",ESymbol Alpha "\119916")-  , ("\\mbfitEpsilon",ESymbol Alpha "\120608")-  , ("\\mbfitEta",ESymbol Alpha "\120610")-  , ("\\mbfitF",ESymbol Alpha "\119917")-  , ("\\mbfitG",ESymbol Alpha "\119918")-  , ("\\mbfitGamma",ESymbol Alpha "\120606")-  , ("\\mbfitH",ESymbol Alpha "\119919")-  , ("\\mbfitI",ESymbol Alpha "\119920")-  , ("\\mbfitIota",ESymbol Alpha "\120612")-  , ("\\mbfitJ",ESymbol Alpha "\119921")-  , ("\\mbfitK",ESymbol Alpha "\119922")-  , ("\\mbfitKappa",ESymbol Alpha "\120613")-  , ("\\mbfitL",ESymbol Alpha "\119923")-  , ("\\mbfitLambda",ESymbol Alpha "\120614")-  , ("\\mbfitM",ESymbol Alpha "\119924")-  , ("\\mbfitMu",ESymbol Alpha "\120615")-  , ("\\mbfitN",ESymbol Alpha "\119925")-  , ("\\mbfitNu",ESymbol Alpha "\120616")-  , ("\\mbfitO",ESymbol Alpha "\119926")-  , ("\\mbfitOmega",ESymbol Alpha "\120628")-  , ("\\mbfitOmicron",ESymbol Alpha "\120618")-  , ("\\mbfitP",ESymbol Alpha "\119927")-  , ("\\mbfitPhi",ESymbol Alpha "\120625")-  , ("\\mbfitPi",ESymbol Alpha "\120619")-  , ("\\mbfitPsi",ESymbol Alpha "\120627")-  , ("\\mbfitQ",ESymbol Alpha "\119928")-  , ("\\mbfitR",ESymbol Alpha "\119929")-  , ("\\mbfitRho",ESymbol Alpha "\120620")-  , ("\\mbfitS",ESymbol Alpha "\119930")-  , ("\\mbfitSigma",ESymbol Alpha "\120622")-  , ("\\mbfitT",ESymbol Alpha "\119931")-  , ("\\mbfitTau",ESymbol Alpha "\120623")-  , ("\\mbfitTheta",ESymbol Alpha "\120611")-  , ("\\mbfitU",ESymbol Alpha "\119932")-  , ("\\mbfitUpsilon",ESymbol Alpha "\120624")-  , ("\\mbfitV",ESymbol Alpha "\119933")-  , ("\\mbfitW",ESymbol Alpha "\119934")-  , ("\\mbfitX",ESymbol Alpha "\119935")-  , ("\\mbfitXi",ESymbol Alpha "\120617")-  , ("\\mbfitY",ESymbol Alpha "\119936")-  , ("\\mbfitZ",ESymbol Alpha "\119937")-  , ("\\mbfitZeta",ESymbol Alpha "\120609")-  , ("\\mbfita",ESymbol Alpha "\119938")-  , ("\\mbfitalpha",ESymbol Alpha "\120630")-  , ("\\mbfitb",ESymbol Alpha "\119939")-  , ("\\mbfitbeta",ESymbol Alpha "\120631")-  , ("\\mbfitc",ESymbol Alpha "\119940")-  , ("\\mbfitchi",ESymbol Alpha "\120652")-  , ("\\mbfitd",ESymbol Alpha "\119941")-  , ("\\mbfitdelta",ESymbol Alpha "\120633")-  , ("\\mbfite",ESymbol Alpha "\119942")-  , ("\\mbfitepsilon",ESymbol Alpha "\120634")-  , ("\\mbfiteta",ESymbol Alpha "\120636")-  , ("\\mbfitf",ESymbol Alpha "\119943")-  , ("\\mbfitg",ESymbol Alpha "\119944")-  , ("\\mbfitgamma",ESymbol Alpha "\120632")-  , ("\\mbfith",ESymbol Alpha "\119945")-  , ("\\mbfiti",ESymbol Alpha "\119946")-  , ("\\mbfitiota",ESymbol Alpha "\120638")-  , ("\\mbfitj",ESymbol Alpha "\119947")-  , ("\\mbfitk",ESymbol Alpha "\119948")-  , ("\\mbfitkappa",ESymbol Alpha "\120639")-  , ("\\mbfitl",ESymbol Alpha "\119949")-  , ("\\mbfitlambda",ESymbol Alpha "\120640")-  , ("\\mbfitm",ESymbol Alpha "\119950")-  , ("\\mbfitmu",ESymbol Alpha "\120641")-  , ("\\mbfitn",ESymbol Alpha "\119951")-  , ("\\mbfitnabla",ESymbol Ord "\120629")-  , ("\\mbfitnu",ESymbol Alpha "\120642")-  , ("\\mbfito",ESymbol Alpha "\119952")-  , ("\\mbfitomega",ESymbol Alpha "\120654")-  , ("\\mbfitomicron",ESymbol Alpha "\120644")-  , ("\\mbfitp",ESymbol Alpha "\119953")-  , ("\\mbfitpartial",ESymbol Ord "\120655")-  , ("\\mbfitphi",ESymbol Alpha "\120651")-  , ("\\mbfitpi",ESymbol Alpha "\120645")-  , ("\\mbfitpsi",ESymbol Alpha "\120653")-  , ("\\mbfitq",ESymbol Alpha "\119954")-  , ("\\mbfitr",ESymbol Alpha "\119955")-  , ("\\mbfitrho",ESymbol Alpha "\120646")-  , ("\\mbfits",ESymbol Alpha "\119956")-  , ("\\mbfitsansA",ESymbol Alpha "\120380")-  , ("\\mbfitsansAlpha",ESymbol Alpha "\120720")-  , ("\\mbfitsansB",ESymbol Alpha "\120381")-  , ("\\mbfitsansBeta",ESymbol Alpha "\120721")-  , ("\\mbfitsansC",ESymbol Alpha "\120382")-  , ("\\mbfitsansChi",ESymbol Alpha "\120742")-  , ("\\mbfitsansD",ESymbol Alpha "\120383")-  , ("\\mbfitsansDelta",ESymbol Alpha "\120723")-  , ("\\mbfitsansE",ESymbol Alpha "\120384")-  , ("\\mbfitsansEpsilon",ESymbol Alpha "\120724")-  , ("\\mbfitsansEta",ESymbol Alpha "\120726")-  , ("\\mbfitsansF",ESymbol Alpha "\120385")-  , ("\\mbfitsansG",ESymbol Alpha "\120386")-  , ("\\mbfitsansGamma",ESymbol Alpha "\120722")-  , ("\\mbfitsansH",ESymbol Alpha "\120387")-  , ("\\mbfitsansI",ESymbol Alpha "\120388")-  , ("\\mbfitsansIota",ESymbol Alpha "\120728")-  , ("\\mbfitsansJ",ESymbol Alpha "\120389")-  , ("\\mbfitsansK",ESymbol Alpha "\120390")-  , ("\\mbfitsansKappa",ESymbol Alpha "\120729")-  , ("\\mbfitsansL",ESymbol Alpha "\120391")-  , ("\\mbfitsansLambda",ESymbol Alpha "\120730")-  , ("\\mbfitsansM",ESymbol Alpha "\120392")-  , ("\\mbfitsansMu",ESymbol Alpha "\120731")-  , ("\\mbfitsansN",ESymbol Alpha "\120393")-  , ("\\mbfitsansNu",ESymbol Alpha "\120732")-  , ("\\mbfitsansO",ESymbol Alpha "\120394")-  , ("\\mbfitsansOmega",ESymbol Alpha "\120744")-  , ("\\mbfitsansOmicron",ESymbol Alpha "\120734")-  , ("\\mbfitsansP",ESymbol Alpha "\120395")-  , ("\\mbfitsansPhi",ESymbol Alpha "\120741")-  , ("\\mbfitsansPi",ESymbol Alpha "\120735")-  , ("\\mbfitsansPsi",ESymbol Alpha "\120743")-  , ("\\mbfitsansQ",ESymbol Alpha "\120396")-  , ("\\mbfitsansR",ESymbol Alpha "\120397")-  , ("\\mbfitsansRho",ESymbol Alpha "\120736")-  , ("\\mbfitsansS",ESymbol Alpha "\120398")-  , ("\\mbfitsansSigma",ESymbol Alpha "\120738")-  , ("\\mbfitsansT",ESymbol Alpha "\120399")-  , ("\\mbfitsansTau",ESymbol Alpha "\120739")-  , ("\\mbfitsansTheta",ESymbol Alpha "\120727")-  , ("\\mbfitsansU",ESymbol Alpha "\120400")-  , ("\\mbfitsansUpsilon",ESymbol Alpha "\120740")-  , ("\\mbfitsansV",ESymbol Alpha "\120401")-  , ("\\mbfitsansW",ESymbol Alpha "\120402")-  , ("\\mbfitsansX",ESymbol Alpha "\120403")-  , ("\\mbfitsansXi",ESymbol Alpha "\120733")-  , ("\\mbfitsansY",ESymbol Alpha "\120404")-  , ("\\mbfitsansZ",ESymbol Alpha "\120405")-  , ("\\mbfitsansZeta",ESymbol Alpha "\120725")-  , ("\\mbfitsansa",ESymbol Alpha "\120406")-  , ("\\mbfitsansalpha",ESymbol Alpha "\120746")-  , ("\\mbfitsansb",ESymbol Alpha "\120407")-  , ("\\mbfitsansbeta",ESymbol Alpha "\120747")-  , ("\\mbfitsansc",ESymbol Alpha "\120408")-  , ("\\mbfitsanschi",ESymbol Alpha "\120768")-  , ("\\mbfitsansd",ESymbol Alpha "\120409")-  , ("\\mbfitsansdelta",ESymbol Alpha "\120749")-  , ("\\mbfitsanse",ESymbol Alpha "\120410")-  , ("\\mbfitsansepsilon",ESymbol Alpha "\120750")-  , ("\\mbfitsanseta",ESymbol Alpha "\120752")-  , ("\\mbfitsansf",ESymbol Alpha "\120411")-  , ("\\mbfitsansg",ESymbol Alpha "\120412")-  , ("\\mbfitsansgamma",ESymbol Alpha "\120748")-  , ("\\mbfitsansh",ESymbol Alpha "\120413")-  , ("\\mbfitsansi",ESymbol Alpha "\120414")-  , ("\\mbfitsansiota",ESymbol Alpha "\120754")-  , ("\\mbfitsansj",ESymbol Alpha "\120415")-  , ("\\mbfitsansk",ESymbol Alpha "\120416")-  , ("\\mbfitsanskappa",ESymbol Alpha "\120755")-  , ("\\mbfitsansl",ESymbol Alpha "\120417")-  , ("\\mbfitsanslambda",ESymbol Alpha "\120756")-  , ("\\mbfitsansm",ESymbol Alpha "\120418")-  , ("\\mbfitsansmu",ESymbol Alpha "\120757")-  , ("\\mbfitsansn",ESymbol Alpha "\120419")-  , ("\\mbfitsansnabla",ESymbol Ord "\120745")-  , ("\\mbfitsansnu",ESymbol Alpha "\120758")-  , ("\\mbfitsanso",ESymbol Alpha "\120420")-  , ("\\mbfitsansomega",ESymbol Alpha "\120770")-  , ("\\mbfitsansomicron",ESymbol Alpha "\120760")-  , ("\\mbfitsansp",ESymbol Alpha "\120421")-  , ("\\mbfitsanspartial",ESymbol Ord "\120771")-  , ("\\mbfitsansphi",ESymbol Alpha "\120767")-  , ("\\mbfitsanspi",ESymbol Alpha "\120761")-  , ("\\mbfitsanspsi",ESymbol Alpha "\120769")-  , ("\\mbfitsansq",ESymbol Alpha "\120422")-  , ("\\mbfitsansr",ESymbol Alpha "\120423")-  , ("\\mbfitsansrho",ESymbol Alpha "\120762")-  , ("\\mbfitsanss",ESymbol Alpha "\120424")-  , ("\\mbfitsanssigma",ESymbol Alpha "\120764")-  , ("\\mbfitsanst",ESymbol Alpha "\120425")-  , ("\\mbfitsanstau",ESymbol Alpha "\120765")-  , ("\\mbfitsanstheta",ESymbol Alpha "\120753")-  , ("\\mbfitsansu",ESymbol Alpha "\120426")-  , ("\\mbfitsansupsilon",ESymbol Alpha "\120766")-  , ("\\mbfitsansv",ESymbol Alpha "\120427")-  , ("\\mbfitsansvarTheta",ESymbol Alpha "\120737")-  , ("\\mbfitsansvarepsilon",ESymbol Alpha "\120772")-  , ("\\mbfitsansvarkappa",ESymbol Alpha "\120774")-  , ("\\mbfitsansvarphi",ESymbol Alpha "\120775")-  , ("\\mbfitsansvarpi",ESymbol Alpha "\120777")-  , ("\\mbfitsansvarrho",ESymbol Alpha "\120776")-  , ("\\mbfitsansvarsigma",ESymbol Alpha "\120763")-  , ("\\mbfitsansvartheta",ESymbol Alpha "\120773")-  , ("\\mbfitsansw",ESymbol Alpha "\120428")-  , ("\\mbfitsansx",ESymbol Alpha "\120429")-  , ("\\mbfitsansxi",ESymbol Alpha "\120759")-  , ("\\mbfitsansy",ESymbol Alpha "\120430")-  , ("\\mbfitsansz",ESymbol Alpha "\120431")-  , ("\\mbfitsanszeta",ESymbol Alpha "\120751")-  , ("\\mbfitsigma",ESymbol Alpha "\120648")-  , ("\\mbfitt",ESymbol Alpha "\119957")-  , ("\\mbfittau",ESymbol Alpha "\120649")-  , ("\\mbfittheta",ESymbol Alpha "\120637")-  , ("\\mbfitu",ESymbol Alpha "\119958")-  , ("\\mbfitupsilon",ESymbol Alpha "\120650")-  , ("\\mbfitv",ESymbol Alpha "\119959")-  , ("\\mbfitvarTheta",ESymbol Alpha "\120621")-  , ("\\mbfitvarepsilon",ESymbol Alpha "\120656")-  , ("\\mbfitvarkappa",ESymbol Alpha "\120658")-  , ("\\mbfitvarphi",ESymbol Alpha "\120659")-  , ("\\mbfitvarpi",ESymbol Alpha "\120661")-  , ("\\mbfitvarrho",ESymbol Alpha "\120660")-  , ("\\mbfitvarsigma",ESymbol Alpha "\120647")-  , ("\\mbfitvartheta",ESymbol Alpha "\120657")-  , ("\\mbfitw",ESymbol Alpha "\119960")-  , ("\\mbfitx",ESymbol Alpha "\119961")-  , ("\\mbfitxi",ESymbol Alpha "\120643")-  , ("\\mbfity",ESymbol Alpha "\119962")-  , ("\\mbfitz",ESymbol Alpha "\119963")-  , ("\\mbfitzeta",ESymbol Alpha "\120635")-  , ("\\mbfj",ESymbol Alpha "\119843")-  , ("\\mbfk",ESymbol Alpha "\119844")-  , ("\\mbfkappa",ESymbol Alpha "\120523")-  , ("\\mbfl",ESymbol Alpha "\119845")-  , ("\\mbflambda",ESymbol Alpha "\120524")-  , ("\\mbfm",ESymbol Alpha "\119846")-  , ("\\mbfmu",ESymbol Alpha "\120525")-  , ("\\mbfn",ESymbol Alpha "\119847")-  , ("\\mbfnabla",ESymbol Ord "\120513")-  , ("\\mbfnu",ESymbol Alpha "\120526")-  , ("\\mbfo",ESymbol Alpha "\119848")-  , ("\\mbfomega",ESymbol Alpha "\120538")-  , ("\\mbfomicron",ESymbol Alpha "\120528")-  , ("\\mbfp",ESymbol Alpha "\119849")-  , ("\\mbfpartial",ESymbol Ord "\120539")-  , ("\\mbfphi",ESymbol Alpha "\120543")-  , ("\\mbfpi",ESymbol Alpha "\120529")-  , ("\\mbfpsi",ESymbol Alpha "\120537")-  , ("\\mbfq",ESymbol Alpha "\119850")-  , ("\\mbfr",ESymbol Alpha "\119851")-  , ("\\mbfrho",ESymbol Alpha "\120530")-  , ("\\mbfs",ESymbol Alpha "\119852")-  , ("\\mbfsansA",ESymbol Alpha "\120276")-  , ("\\mbfsansAlpha",ESymbol Alpha "\120662")-  , ("\\mbfsansB",ESymbol Alpha "\120277")-  , ("\\mbfsansBeta",ESymbol Alpha "\120663")-  , ("\\mbfsansC",ESymbol Alpha "\120278")-  , ("\\mbfsansChi",ESymbol Alpha "\120684")-  , ("\\mbfsansD",ESymbol Alpha "\120279")-  , ("\\mbfsansDelta",ESymbol Alpha "\120665")-  , ("\\mbfsansE",ESymbol Alpha "\120280")-  , ("\\mbfsansEpsilon",ESymbol Alpha "\120666")-  , ("\\mbfsansEta",ESymbol Alpha "\120668")-  , ("\\mbfsansF",ESymbol Alpha "\120281")-  , ("\\mbfsansG",ESymbol Alpha "\120282")-  , ("\\mbfsansGamma",ESymbol Alpha "\120664")-  , ("\\mbfsansH",ESymbol Alpha "\120283")-  , ("\\mbfsansI",ESymbol Alpha "\120284")-  , ("\\mbfsansIota",ESymbol Alpha "\120670")-  , ("\\mbfsansJ",ESymbol Alpha "\120285")-  , ("\\mbfsansK",ESymbol Alpha "\120286")-  , ("\\mbfsansKappa",ESymbol Alpha "\120671")-  , ("\\mbfsansL",ESymbol Alpha "\120287")-  , ("\\mbfsansLambda",ESymbol Alpha "\120672")-  , ("\\mbfsansM",ESymbol Alpha "\120288")-  , ("\\mbfsansMu",ESymbol Alpha "\120673")-  , ("\\mbfsansN",ESymbol Alpha "\120289")-  , ("\\mbfsansNu",ESymbol Alpha "\120674")-  , ("\\mbfsansO",ESymbol Alpha "\120290")-  , ("\\mbfsansOmega",ESymbol Alpha "\120686")-  , ("\\mbfsansOmicron",ESymbol Alpha "\120676")-  , ("\\mbfsansP",ESymbol Alpha "\120291")-  , ("\\mbfsansPhi",ESymbol Alpha "\120683")-  , ("\\mbfsansPi",ESymbol Alpha "\120677")-  , ("\\mbfsansPsi",ESymbol Alpha "\120685")-  , ("\\mbfsansQ",ESymbol Alpha "\120292")-  , ("\\mbfsansR",ESymbol Alpha "\120293")-  , ("\\mbfsansRho",ESymbol Alpha "\120678")-  , ("\\mbfsansS",ESymbol Alpha "\120294")-  , ("\\mbfsansSigma",ESymbol Alpha "\120680")-  , ("\\mbfsansT",ESymbol Alpha "\120295")-  , ("\\mbfsansTau",ESymbol Alpha "\120681")-  , ("\\mbfsansTheta",ESymbol Alpha "\120669")-  , ("\\mbfsansU",ESymbol Alpha "\120296")-  , ("\\mbfsansUpsilon",ESymbol Alpha "\120682")-  , ("\\mbfsansV",ESymbol Alpha "\120297")-  , ("\\mbfsansW",ESymbol Alpha "\120298")-  , ("\\mbfsansX",ESymbol Alpha "\120299")-  , ("\\mbfsansXi",ESymbol Alpha "\120675")-  , ("\\mbfsansY",ESymbol Alpha "\120300")-  , ("\\mbfsansZ",ESymbol Alpha "\120301")-  , ("\\mbfsansZeta",ESymbol Alpha "\120667")-  , ("\\mbfsansa",ESymbol Alpha "\120302")-  , ("\\mbfsansalpha",ESymbol Alpha "\120688")-  , ("\\mbfsansb",ESymbol Alpha "\120303")-  , ("\\mbfsansbeta",ESymbol Alpha "\120689")-  , ("\\mbfsansc",ESymbol Alpha "\120304")-  , ("\\mbfsanschi",ESymbol Alpha "\120710")-  , ("\\mbfsansd",ESymbol Alpha "\120305")-  , ("\\mbfsansdelta",ESymbol Alpha "\120691")-  , ("\\mbfsanse",ESymbol Alpha "\120306")-  , ("\\mbfsanseight",ESymbol Ord "\120820")-  , ("\\mbfsansepsilon",ESymbol Alpha "\120692")-  , ("\\mbfsanseta",ESymbol Alpha "\120694")-  , ("\\mbfsansf",ESymbol Alpha "\120307")-  , ("\\mbfsansfive",ESymbol Ord "\120817")-  , ("\\mbfsansfour",ESymbol Ord "\120816")-  , ("\\mbfsansg",ESymbol Alpha "\120308")-  , ("\\mbfsansgamma",ESymbol Alpha "\120690")-  , ("\\mbfsansh",ESymbol Alpha "\120309")-  , ("\\mbfsansi",ESymbol Alpha "\120310")-  , ("\\mbfsansiota",ESymbol Alpha "\120696")-  , ("\\mbfsansj",ESymbol Alpha "\120311")-  , ("\\mbfsansk",ESymbol Alpha "\120312")-  , ("\\mbfsanskappa",ESymbol Alpha "\120697")-  , ("\\mbfsansl",ESymbol Alpha "\120313")-  , ("\\mbfsanslambda",ESymbol Alpha "\120698")-  , ("\\mbfsansm",ESymbol Alpha "\120314")-  , ("\\mbfsansmu",ESymbol Alpha "\120699")-  , ("\\mbfsansn",ESymbol Alpha "\120315")-  , ("\\mbfsansnabla",ESymbol Ord "\120687")-  , ("\\mbfsansnine",ESymbol Ord "\120821")-  , ("\\mbfsansnu",ESymbol Alpha "\120700")-  , ("\\mbfsanso",ESymbol Alpha "\120316")-  , ("\\mbfsansomega",ESymbol Alpha "\120712")-  , ("\\mbfsansomicron",ESymbol Alpha "\120702")-  , ("\\mbfsansone",ESymbol Ord "\120813")-  , ("\\mbfsansp",ESymbol Alpha "\120317")-  , ("\\mbfsanspartial",ESymbol Ord "\120713")-  , ("\\mbfsansphi",ESymbol Alpha "\120709")-  , ("\\mbfsanspi",ESymbol Alpha "\120703")-  , ("\\mbfsanspsi",ESymbol Alpha "\120711")-  , ("\\mbfsansq",ESymbol Alpha "\120318")-  , ("\\mbfsansr",ESymbol Alpha "\120319")-  , ("\\mbfsansrho",ESymbol Alpha "\120704")-  , ("\\mbfsanss",ESymbol Alpha "\120320")-  , ("\\mbfsansseven",ESymbol Ord "\120819")-  , ("\\mbfsanssigma",ESymbol Alpha "\120706")-  , ("\\mbfsanssix",ESymbol Ord "\120818")-  , ("\\mbfsanst",ESymbol Alpha "\120321")-  , ("\\mbfsanstau",ESymbol Alpha "\120707")-  , ("\\mbfsanstheta",ESymbol Alpha "\120695")-  , ("\\mbfsansthree",ESymbol Ord "\120815")-  , ("\\mbfsanstwo",ESymbol Ord "\120814")-  , ("\\mbfsansu",ESymbol Alpha "\120322")-  , ("\\mbfsansupsilon",ESymbol Alpha "\120708")-  , ("\\mbfsansv",ESymbol Alpha "\120323")-  , ("\\mbfsansvarTheta",ESymbol Alpha "\120679")-  , ("\\mbfsansvarepsilon",ESymbol Alpha "\120714")-  , ("\\mbfsansvarkappa",ESymbol Alpha "\120716")-  , ("\\mbfsansvarphi",ESymbol Alpha "\120717")-  , ("\\mbfsansvarpi",ESymbol Alpha "\120719")-  , ("\\mbfsansvarrho",ESymbol Alpha "\120718")-  , ("\\mbfsansvarsigma",ESymbol Alpha "\120705")-  , ("\\mbfsansvartheta",ESymbol Alpha "\120715")-  , ("\\mbfsansw",ESymbol Alpha "\120324")-  , ("\\mbfsansx",ESymbol Alpha "\120325")-  , ("\\mbfsansxi",ESymbol Alpha "\120701")-  , ("\\mbfsansy",ESymbol Alpha "\120326")-  , ("\\mbfsansz",ESymbol Alpha "\120327")-  , ("\\mbfsanszero",ESymbol Ord "\120812")-  , ("\\mbfsanszeta",ESymbol Alpha "\120693")-  , ("\\mbfscrA",ESymbol Alpha "\120016")-  , ("\\mbfscrB",ESymbol Alpha "\120017")-  , ("\\mbfscrC",ESymbol Alpha "\120018")-  , ("\\mbfscrD",ESymbol Alpha "\120019")-  , ("\\mbfscrE",ESymbol Alpha "\120020")-  , ("\\mbfscrF",ESymbol Alpha "\120021")-  , ("\\mbfscrG",ESymbol Alpha "\120022")-  , ("\\mbfscrH",ESymbol Alpha "\120023")-  , ("\\mbfscrI",ESymbol Alpha "\120024")-  , ("\\mbfscrJ",ESymbol Alpha "\120025")-  , ("\\mbfscrK",ESymbol Alpha "\120026")-  , ("\\mbfscrL",ESymbol Alpha "\120027")-  , ("\\mbfscrM",ESymbol Alpha "\120028")-  , ("\\mbfscrN",ESymbol Alpha "\120029")-  , ("\\mbfscrO",ESymbol Alpha "\120030")-  , ("\\mbfscrP",ESymbol Alpha "\120031")-  , ("\\mbfscrQ",ESymbol Alpha "\120032")-  , ("\\mbfscrR",ESymbol Alpha "\120033")-  , ("\\mbfscrS",ESymbol Alpha "\120034")-  , ("\\mbfscrT",ESymbol Alpha "\120035")-  , ("\\mbfscrU",ESymbol Alpha "\120036")-  , ("\\mbfscrV",ESymbol Alpha "\120037")-  , ("\\mbfscrW",ESymbol Alpha "\120038")-  , ("\\mbfscrX",ESymbol Alpha "\120039")-  , ("\\mbfscrY",ESymbol Alpha "\120040")-  , ("\\mbfscrZ",ESymbol Alpha "\120041")-  , ("\\mbfscra",ESymbol Alpha "\120042")-  , ("\\mbfscrb",ESymbol Alpha "\120043")-  , ("\\mbfscrc",ESymbol Alpha "\120044")-  , ("\\mbfscrd",ESymbol Alpha "\120045")-  , ("\\mbfscre",ESymbol Alpha "\120046")-  , ("\\mbfscrf",ESymbol Alpha "\120047")-  , ("\\mbfscrg",ESymbol Alpha "\120048")-  , ("\\mbfscrh",ESymbol Alpha "\120049")-  , ("\\mbfscri",ESymbol Alpha "\120050")-  , ("\\mbfscrj",ESymbol Alpha "\120051")-  , ("\\mbfscrk",ESymbol Alpha "\120052")-  , ("\\mbfscrl",ESymbol Alpha "\120053")-  , ("\\mbfscrm",ESymbol Alpha "\120054")-  , ("\\mbfscrn",ESymbol Alpha "\120055")-  , ("\\mbfscro",ESymbol Alpha "\120056")-  , ("\\mbfscrp",ESymbol Alpha "\120057")-  , ("\\mbfscrq",ESymbol Alpha "\120058")-  , ("\\mbfscrr",ESymbol Alpha "\120059")-  , ("\\mbfscrs",ESymbol Alpha "\120060")-  , ("\\mbfscrt",ESymbol Alpha "\120061")-  , ("\\mbfscru",ESymbol Alpha "\120062")-  , ("\\mbfscrv",ESymbol Alpha "\120063")-  , ("\\mbfscrw",ESymbol Alpha "\120064")-  , ("\\mbfscrx",ESymbol Alpha "\120065")-  , ("\\mbfscry",ESymbol Alpha "\120066")-  , ("\\mbfscrz",ESymbol Alpha "\120067")-  , ("\\mbfsigma",ESymbol Alpha "\120532")-  , ("\\mbft",ESymbol Alpha "\119853")-  , ("\\mbftau",ESymbol Alpha "\120533")-  , ("\\mbftheta",ESymbol Alpha "\120521")-  , ("\\mbfu",ESymbol Alpha "\119854")-  , ("\\mbfupsilon",ESymbol Alpha "\120534")-  , ("\\mbfv",ESymbol Alpha "\119855")-  , ("\\mbfvarTheta",ESymbol Alpha "\120505")-  , ("\\mbfvarepsilon",ESymbol Alpha "\120540")-  , ("\\mbfvarkappa",ESymbol Alpha "\120542")-  , ("\\mbfvarphi",ESymbol Alpha "\120535")-  , ("\\mbfvarpi",ESymbol Alpha "\120545")-  , ("\\mbfvarrho",ESymbol Alpha "\120544")-  , ("\\mbfvarsigma",ESymbol Alpha "\120531")-  , ("\\mbfvartheta",ESymbol Alpha "\120541")-  , ("\\mbfw",ESymbol Alpha "\119856")-  , ("\\mbfx",ESymbol Alpha "\119857")-  , ("\\mbfxi",ESymbol Alpha "\120527")-  , ("\\mbfy",ESymbol Alpha "\119858")-  , ("\\mbfz",ESymbol Alpha "\119859")-  , ("\\mbfzeta",ESymbol Alpha "\120519")-  , ("\\mdblkcircle",ESymbol Ord "\9899")-  , ("\\mdblkdiamond",ESymbol Ord "\11045")-  , ("\\mdblklozenge",ESymbol Ord "\11047")-  , ("\\mdblksquare",ESymbol Ord "\9724")-  , ("\\mdlgblkcircle",ESymbol Ord "\9679")-  , ("\\mdlgblkdiamond",ESymbol Ord "\9670")-  , ("\\mdlgblklozenge",ESymbol Bin "\10731")-  , ("\\mdlgblksquare",ESymbol Ord "\9632")-  , ("\\mdlgwhtcircle",ESymbol Bin "\9675")-  , ("\\mdlgwhtdiamond",ESymbol Ord "\9671")-  , ("\\mdlgwhtlozenge",ESymbol Ord "\9674")-  , ("\\mdlgwhtsquare",ESymbol Ord "\9633")-  , ("\\mdsmblkcircle",ESymbol Ord "\10625")-  , ("\\mdsmblksquare",ESymbol Ord "\9726")-  , ("\\mdsmwhtcircle",ESymbol Ord "\9900")-  , ("\\mdsmwhtsquare",ESymbol Ord "\9725")-  , ("\\mdwhtcircle",ESymbol Ord "\9898")-  , ("\\mdwhtdiamond",ESymbol Ord "\11046")-  , ("\\mdwhtlozenge",ESymbol Ord "\11048")-  , ("\\mdwhtsquare",ESymbol Ord "\9723")-  , ("\\measangledltosw",ESymbol Ord "\10671")-  , ("\\measangledrtose",ESymbol Ord "\10670")-  , ("\\measangleldtosw",ESymbol Ord "\10667")-  , ("\\measanglelutonw",ESymbol Ord "\10665")-  , ("\\measanglerdtose",ESymbol Ord "\10666")-  , ("\\measanglerutone",ESymbol Ord "\10664")-  , ("\\measangleultonw",ESymbol Ord "\10669")-  , ("\\measangleurtone",ESymbol Ord "\10668")-  , ("\\measeq",ESymbol Rel "\8798")-  , ("\\measuredangle",ESymbol Ord "\8737")-  , ("\\measuredangleleft",ESymbol Ord "\10651")-  , ("\\measuredrightangle",ESymbol Ord "\8894")-  , ("\\medblackstar",ESymbol Ord "\11089")-  , ("\\medbullet",ESymbol Ord "\9899")-  , ("\\medcirc",ESymbol Ord "\9898")-  , ("\\medspace",ESymbol Ord "\8287")-  , ("\\medwhitestar",ESymbol Ord "\11088")-  , ("\\mercury",ESymbol Ord "\9791")-  , ("\\mfrakA",ESymbol Alpha "\120068")-  , ("\\mfrakB",ESymbol Alpha "\120069")-  , ("\\mfrakC",ESymbol Alpha "\8493")-  , ("\\mfrakD",ESymbol Alpha "\120071")-  , ("\\mfrakE",ESymbol Alpha "\120072")-  , ("\\mfrakF",ESymbol Alpha "\120073")-  , ("\\mfrakG",ESymbol Alpha "\120074")-  , ("\\mfrakH",ESymbol Alpha "\8460")-  , ("\\mfrakJ",ESymbol Alpha "\120077")-  , ("\\mfrakK",ESymbol Alpha "\120078")-  , ("\\mfrakL",ESymbol Alpha "\120079")-  , ("\\mfrakM",ESymbol Alpha "\120080")-  , ("\\mfrakN",ESymbol Alpha "\120081")-  , ("\\mfrakO",ESymbol Alpha "\120082")-  , ("\\mfrakP",ESymbol Alpha "\120083")-  , ("\\mfrakQ",ESymbol Alpha "\120084")-  , ("\\mfrakS",ESymbol Alpha "\120086")-  , ("\\mfrakT",ESymbol Alpha "\120087")-  , ("\\mfrakU",ESymbol Alpha "\120088")-  , ("\\mfrakV",ESymbol Alpha "\120089")-  , ("\\mfrakW",ESymbol Alpha "\120090")-  , ("\\mfrakX",ESymbol Alpha "\120091")-  , ("\\mfrakY",ESymbol Alpha "\120092")-  , ("\\mfrakZ",ESymbol Alpha "\8488")-  , ("\\mfraka",ESymbol Alpha "\120094")-  , ("\\mfrakb",ESymbol Alpha "\120095")-  , ("\\mfrakc",ESymbol Alpha "\120096")-  , ("\\mfrakd",ESymbol Alpha "\120097")-  , ("\\mfrake",ESymbol Alpha "\120098")-  , ("\\mfrakf",ESymbol Alpha "\120099")-  , ("\\mfrakg",ESymbol Alpha "\120100")-  , ("\\mfrakh",ESymbol Alpha "\120101")-  , ("\\mfraki",ESymbol Alpha "\120102")-  , ("\\mfrakj",ESymbol Alpha "\120103")-  , ("\\mfrakk",ESymbol Alpha "\120104")-  , ("\\mfrakl",ESymbol Alpha "\120105")-  , ("\\mfrakm",ESymbol Alpha "\120106")-  , ("\\mfrakn",ESymbol Alpha "\120107")-  , ("\\mfrako",ESymbol Alpha "\120108")-  , ("\\mfrakp",ESymbol Alpha "\120109")-  , ("\\mfrakq",ESymbol Alpha "\120110")-  , ("\\mfrakr",ESymbol Alpha "\120111")-  , ("\\mfraks",ESymbol Alpha "\120112")-  , ("\\mfrakt",ESymbol Alpha "\120113")-  , ("\\mfraku",ESymbol Alpha "\120114")-  , ("\\mfrakv",ESymbol Alpha "\120115")-  , ("\\mfrakw",ESymbol Alpha "\120116")-  , ("\\mfrakx",ESymbol Alpha "\120117")-  , ("\\mfraky",ESymbol Alpha "\120118")-  , ("\\mfrakz",ESymbol Alpha "\120119")-  , ("\\mho",ESymbol Ord "\8487")-  , ("\\midbarvee",ESymbol Bin "\10845")-  , ("\\midbarwedge",ESymbol Bin "\10844")-  , ("\\midcir",ESymbol Rel "\10992")-  , ("\\minus",ESymbol Bin "\8722")-  , ("\\minusdot",ESymbol Bin "\10794")-  , ("\\minusfdots",ESymbol Bin "\10795")-  , ("\\minusrdots",ESymbol Bin "\10796")-  , ("\\mitA",ESymbol Alpha "\119860")-  , ("\\mitAlpha",ESymbol Alpha "\120546")-  , ("\\mitB",ESymbol Alpha "\119861")-  , ("\\mitBbbD",ESymbol Ord "\8517")-  , ("\\mitBbbd",ESymbol Ord "\8518")-  , ("\\mitBbbe",ESymbol Ord "\8519")-  , ("\\mitBbbi",ESymbol Ord "\8520")-  , ("\\mitBbbj",ESymbol Ord "\8521")-  , ("\\mitBeta",ESymbol Alpha "\120547")-  , ("\\mitC",ESymbol Alpha "\119862")-  , ("\\mitChi",ESymbol Alpha "\120568")-  , ("\\mitD",ESymbol Alpha "\119863")-  , ("\\mitDelta",ESymbol Alpha "\120549")-  , ("\\mitE",ESymbol Alpha "\119864")-  , ("\\mitEpsilon",ESymbol Alpha "\120550")-  , ("\\mitEta",ESymbol Alpha "\120552")-  , ("\\mitF",ESymbol Alpha "\119865")-  , ("\\mitG",ESymbol Alpha "\119866")-  , ("\\mitGamma",ESymbol Alpha "\120548")-  , ("\\mitH",ESymbol Alpha "\119867")-  , ("\\mitI",ESymbol Alpha "\119868")-  , ("\\mitIota",ESymbol Alpha "\120554")-  , ("\\mitJ",ESymbol Alpha "\119869")-  , ("\\mitK",ESymbol Alpha "\119870")-  , ("\\mitKappa",ESymbol Alpha "\120555")-  , ("\\mitL",ESymbol Alpha "\119871")-  , ("\\mitLambda",ESymbol Alpha "\120556")-  , ("\\mitM",ESymbol Alpha "\119872")-  , ("\\mitMu",ESymbol Alpha "\120557")-  , ("\\mitN",ESymbol Alpha "\119873")-  , ("\\mitNu",ESymbol Alpha "\120558")-  , ("\\mitO",ESymbol Alpha "\119874")-  , ("\\mitOmega",ESymbol Alpha "\120570")-  , ("\\mitOmicron",ESymbol Alpha "\120560")-  , ("\\mitP",ESymbol Alpha "\119875")-  , ("\\mitPhi",ESymbol Alpha "\120567")-  , ("\\mitPi",ESymbol Alpha "\120561")-  , ("\\mitPsi",ESymbol Alpha "\120569")-  , ("\\mitQ",ESymbol Alpha "\119876")-  , ("\\mitR",ESymbol Alpha "\119877")-  , ("\\mitRho",ESymbol Alpha "\120562")-  , ("\\mitS",ESymbol Alpha "\119878")-  , ("\\mitSigma",ESymbol Alpha "\120564")-  , ("\\mitT",ESymbol Alpha "\119879")-  , ("\\mitTau",ESymbol Alpha "\120565")-  , ("\\mitTheta",ESymbol Alpha "\120553")-  , ("\\mitU",ESymbol Alpha "\119880")-  , ("\\mitUpsilon",ESymbol Alpha "\120566")-  , ("\\mitV",ESymbol Alpha "\119881")-  , ("\\mitW",ESymbol Alpha "\119882")-  , ("\\mitX",ESymbol Alpha "\119883")-  , ("\\mitXi",ESymbol Alpha "\120559")-  , ("\\mitY",ESymbol Alpha "\119884")-  , ("\\mitZ",ESymbol Alpha "\119885")-  , ("\\mitZeta",ESymbol Alpha "\120551")-  , ("\\mita",ESymbol Alpha "\119886")-  , ("\\mitalpha",ESymbol Alpha "\120572")-  , ("\\mitb",ESymbol Alpha "\119887")-  , ("\\mitbeta",ESymbol Alpha "\120573")-  , ("\\mitc",ESymbol Alpha "\119888")-  , ("\\mitchi",ESymbol Alpha "\120594")-  , ("\\mitd",ESymbol Alpha "\119889")-  , ("\\mitdelta",ESymbol Alpha "\120575")-  , ("\\mite",ESymbol Alpha "\119890")-  , ("\\mitepsilon",ESymbol Alpha "\120576")-  , ("\\miteta",ESymbol Alpha "\120578")-  , ("\\mitf",ESymbol Alpha "\119891")-  , ("\\mitg",ESymbol Alpha "\119892")-  , ("\\mitgamma",ESymbol Alpha "\120574")-  , ("\\miti",ESymbol Alpha "\119894")-  , ("\\mitiota",ESymbol Alpha "\120580")-  , ("\\mitj",ESymbol Alpha "\119895")-  , ("\\mitk",ESymbol Alpha "\119896")-  , ("\\mitkappa",ESymbol Alpha "\120581")-  , ("\\mitl",ESymbol Alpha "\119897")-  , ("\\mitlambda",ESymbol Alpha "\120582")-  , ("\\mitm",ESymbol Alpha "\119898")-  , ("\\mitmu",ESymbol Alpha "\120583")-  , ("\\mitn",ESymbol Alpha "\119899")-  , ("\\mitnabla",ESymbol Ord "\120571")-  , ("\\mitnu",ESymbol Alpha "\120584")-  , ("\\mito",ESymbol Alpha "\119900")-  , ("\\mitomega",ESymbol Alpha "\120596")-  , ("\\mitomicron",ESymbol Alpha "\120586")-  , ("\\mitp",ESymbol Alpha "\119901")-  , ("\\mitpartial",ESymbol Ord "\120597")-  , ("\\mitphi",ESymbol Alpha "\120593")-  , ("\\mitpi",ESymbol Alpha "\120587")-  , ("\\mitpsi",ESymbol Alpha "\120595")-  , ("\\mitq",ESymbol Alpha "\119902")-  , ("\\mitr",ESymbol Alpha "\119903")-  , ("\\mitrho",ESymbol Alpha "\120588")-  , ("\\mits",ESymbol Alpha "\119904")-  , ("\\mitsansA",ESymbol Alpha "\120328")-  , ("\\mitsansB",ESymbol Alpha "\120329")-  , ("\\mitsansC",ESymbol Alpha "\120330")-  , ("\\mitsansD",ESymbol Alpha "\120331")-  , ("\\mitsansE",ESymbol Alpha "\120332")-  , ("\\mitsansF",ESymbol Alpha "\120333")-  , ("\\mitsansG",ESymbol Alpha "\120334")-  , ("\\mitsansH",ESymbol Alpha "\120335")-  , ("\\mitsansI",ESymbol Alpha "\120336")-  , ("\\mitsansJ",ESymbol Alpha "\120337")-  , ("\\mitsansK",ESymbol Alpha "\120338")-  , ("\\mitsansL",ESymbol Alpha "\120339")-  , ("\\mitsansM",ESymbol Alpha "\120340")-  , ("\\mitsansN",ESymbol Alpha "\120341")-  , ("\\mitsansO",ESymbol Alpha "\120342")-  , ("\\mitsansP",ESymbol Alpha "\120343")-  , ("\\mitsansQ",ESymbol Alpha "\120344")-  , ("\\mitsansR",ESymbol Alpha "\120345")-  , ("\\mitsansS",ESymbol Alpha "\120346")-  , ("\\mitsansT",ESymbol Alpha "\120347")-  , ("\\mitsansU",ESymbol Alpha "\120348")-  , ("\\mitsansV",ESymbol Alpha "\120349")-  , ("\\mitsansW",ESymbol Alpha "\120350")-  , ("\\mitsansX",ESymbol Alpha "\120351")-  , ("\\mitsansY",ESymbol Alpha "\120352")-  , ("\\mitsansZ",ESymbol Alpha "\120353")-  , ("\\mitsansa",ESymbol Alpha "\120354")-  , ("\\mitsansb",ESymbol Alpha "\120355")-  , ("\\mitsansc",ESymbol Alpha "\120356")-  , ("\\mitsansd",ESymbol Alpha "\120357")-  , ("\\mitsanse",ESymbol Alpha "\120358")-  , ("\\mitsansf",ESymbol Alpha "\120359")-  , ("\\mitsansg",ESymbol Alpha "\120360")-  , ("\\mitsansh",ESymbol Alpha "\120361")-  , ("\\mitsansi",ESymbol Alpha "\120362")-  , ("\\mitsansj",ESymbol Alpha "\120363")-  , ("\\mitsansk",ESymbol Alpha "\120364")-  , ("\\mitsansl",ESymbol Alpha "\120365")-  , ("\\mitsansm",ESymbol Alpha "\120366")-  , ("\\mitsansn",ESymbol Alpha "\120367")-  , ("\\mitsanso",ESymbol Alpha "\120368")-  , ("\\mitsansp",ESymbol Alpha "\120369")-  , ("\\mitsansq",ESymbol Alpha "\120370")-  , ("\\mitsansr",ESymbol Alpha "\120371")-  , ("\\mitsanss",ESymbol Alpha "\120372")-  , ("\\mitsanst",ESymbol Alpha "\120373")-  , ("\\mitsansu",ESymbol Alpha "\120374")-  , ("\\mitsansv",ESymbol Alpha "\120375")-  , ("\\mitsansw",ESymbol Alpha "\120376")-  , ("\\mitsansx",ESymbol Alpha "\120377")-  , ("\\mitsansy",ESymbol Alpha "\120378")-  , ("\\mitsansz",ESymbol Alpha "\120379")-  , ("\\mitsigma",ESymbol Alpha "\120590")-  , ("\\mitt",ESymbol Alpha "\119905")-  , ("\\mittau",ESymbol Alpha "\120591")-  , ("\\mittheta",ESymbol Alpha "\120579")-  , ("\\mitu",ESymbol Alpha "\119906")-  , ("\\mitupsilon",ESymbol Alpha "\120592")-  , ("\\mitv",ESymbol Alpha "\119907")-  , ("\\mitvarTheta",ESymbol Alpha "\120563")-  , ("\\mitvarepsilon",ESymbol Alpha "\120598")-  , ("\\mitvarkappa",ESymbol Alpha "\120600")-  , ("\\mitvarphi",ESymbol Alpha "\120601")-  , ("\\mitvarpi",ESymbol Alpha "\120603")-  , ("\\mitvarrho",ESymbol Alpha "\120602")-  , ("\\mitvarsigma",ESymbol Alpha "\120589")-  , ("\\mitvartheta",ESymbol Alpha "\120599")-  , ("\\mitw",ESymbol Alpha "\119908")-  , ("\\mitx",ESymbol Alpha "\119909")-  , ("\\mitxi",ESymbol Alpha "\120585")-  , ("\\mity",ESymbol Alpha "\119910")-  , ("\\mitz",ESymbol Alpha "\119911")-  , ("\\mitzeta",ESymbol Alpha "\120577")-  , ("\\mlcp",ESymbol Rel "\10971")-  , ("\\modtwosum",ESymbol Ord "\10762")-  , ("\\msansA",ESymbol Alpha "\120224")-  , ("\\msansB",ESymbol Alpha "\120225")-  , ("\\msansC",ESymbol Alpha "\120226")-  , ("\\msansD",ESymbol Alpha "\120227")-  , ("\\msansE",ESymbol Alpha "\120228")-  , ("\\msansF",ESymbol Alpha "\120229")-  , ("\\msansG",ESymbol Alpha "\120230")-  , ("\\msansH",ESymbol Alpha "\120231")-  , ("\\msansI",ESymbol Alpha "\120232")-  , ("\\msansJ",ESymbol Alpha "\120233")-  , ("\\msansK",ESymbol Alpha "\120234")-  , ("\\msansL",ESymbol Alpha "\120235")-  , ("\\msansM",ESymbol Alpha "\120236")-  , ("\\msansN",ESymbol Alpha "\120237")-  , ("\\msansO",ESymbol Alpha "\120238")-  , ("\\msansP",ESymbol Alpha "\120239")-  , ("\\msansQ",ESymbol Alpha "\120240")-  , ("\\msansR",ESymbol Alpha "\120241")-  , ("\\msansS",ESymbol Alpha "\120242")-  , ("\\msansT",ESymbol Alpha "\120243")-  , ("\\msansU",ESymbol Alpha "\120244")-  , ("\\msansV",ESymbol Alpha "\120245")-  , ("\\msansW",ESymbol Alpha "\120246")-  , ("\\msansX",ESymbol Alpha "\120247")-  , ("\\msansY",ESymbol Alpha "\120248")-  , ("\\msansZ",ESymbol Alpha "\120249")-  , ("\\msansa",ESymbol Alpha "\120250")-  , ("\\msansb",ESymbol Alpha "\120251")-  , ("\\msansc",ESymbol Alpha "\120252")-  , ("\\msansd",ESymbol Alpha "\120253")-  , ("\\msanse",ESymbol Alpha "\120254")-  , ("\\msanseight",ESymbol Ord "\120810")-  , ("\\msansf",ESymbol Alpha "\120255")-  , ("\\msansfive",ESymbol Ord "\120807")-  , ("\\msansfour",ESymbol Ord "\120806")-  , ("\\msansg",ESymbol Alpha "\120256")-  , ("\\msansh",ESymbol Alpha "\120257")-  , ("\\msansi",ESymbol Alpha "\120258")-  , ("\\msansj",ESymbol Alpha "\120259")-  , ("\\msansk",ESymbol Alpha "\120260")-  , ("\\msansl",ESymbol Alpha "\120261")-  , ("\\msansm",ESymbol Alpha "\120262")-  , ("\\msansn",ESymbol Alpha "\120263")-  , ("\\msansnine",ESymbol Ord "\120811")-  , ("\\msanso",ESymbol Alpha "\120264")-  , ("\\msansone",ESymbol Ord "\120803")-  , ("\\msansp",ESymbol Alpha "\120265")-  , ("\\msansq",ESymbol Alpha "\120266")-  , ("\\msansr",ESymbol Alpha "\120267")-  , ("\\msanss",ESymbol Alpha "\120268")-  , ("\\msansseven",ESymbol Ord "\120809")-  , ("\\msanssix",ESymbol Ord "\120808")-  , ("\\msanst",ESymbol Alpha "\120269")-  , ("\\msansthree",ESymbol Ord "\120805")-  , ("\\msanstwo",ESymbol Ord "\120804")-  , ("\\msansu",ESymbol Alpha "\120270")-  , ("\\msansv",ESymbol Alpha "\120271")-  , ("\\msansw",ESymbol Alpha "\120272")-  , ("\\msansx",ESymbol Alpha "\120273")-  , ("\\msansy",ESymbol Alpha "\120274")-  , ("\\msansz",ESymbol Alpha "\120275")-  , ("\\msanszero",ESymbol Ord "\120802")-  , ("\\mscrA",ESymbol Alpha "\119964")-  , ("\\mscrB",ESymbol Alpha "\8492")-  , ("\\mscrC",ESymbol Alpha "\119966")-  , ("\\mscrD",ESymbol Alpha "\119967")-  , ("\\mscrE",ESymbol Alpha "\8496")-  , ("\\mscrF",ESymbol Alpha "\8497")-  , ("\\mscrG",ESymbol Alpha "\119970")-  , ("\\mscrH",ESymbol Alpha "\8459")-  , ("\\mscrI",ESymbol Alpha "\8464")-  , ("\\mscrJ",ESymbol Alpha "\119973")-  , ("\\mscrK",ESymbol Alpha "\119974")-  , ("\\mscrL",ESymbol Alpha "\8466")-  , ("\\mscrM",ESymbol Alpha "\8499")-  , ("\\mscrN",ESymbol Alpha "\119977")-  , ("\\mscrO",ESymbol Alpha "\119978")-  , ("\\mscrP",ESymbol Alpha "\119979")-  , ("\\mscrQ",ESymbol Alpha "\119980")-  , ("\\mscrR",ESymbol Alpha "\8475")-  , ("\\mscrS",ESymbol Alpha "\119982")-  , ("\\mscrT",ESymbol Alpha "\119983")-  , ("\\mscrU",ESymbol Alpha "\119984")-  , ("\\mscrV",ESymbol Alpha "\119985")-  , ("\\mscrW",ESymbol Alpha "\119986")-  , ("\\mscrX",ESymbol Alpha "\119987")-  , ("\\mscrY",ESymbol Alpha "\119988")-  , ("\\mscrZ",ESymbol Alpha "\119989")-  , ("\\mscra",ESymbol Alpha "\119990")-  , ("\\mscrb",ESymbol Alpha "\119991")-  , ("\\mscrc",ESymbol Alpha "\119992")-  , ("\\mscrd",ESymbol Alpha "\119993")-  , ("\\mscre",ESymbol Alpha "\8495")-  , ("\\mscrf",ESymbol Alpha "\119995")-  , ("\\mscrg",ESymbol Alpha "\8458")-  , ("\\mscrh",ESymbol Alpha "\119997")-  , ("\\mscri",ESymbol Alpha "\119998")-  , ("\\mscrj",ESymbol Alpha "\119999")-  , ("\\mscrk",ESymbol Alpha "\120000")-  , ("\\mscrl",ESymbol Alpha "\120001")-  , ("\\mscrm",ESymbol Alpha "\120002")-  , ("\\mscrn",ESymbol Alpha "\120003")-  , ("\\mscro",ESymbol Alpha "\8500")-  , ("\\mscrp",ESymbol Alpha "\120005")-  , ("\\mscrq",ESymbol Alpha "\120006")-  , ("\\mscrr",ESymbol Alpha "\120007")-  , ("\\mscrs",ESymbol Alpha "\120008")-  , ("\\mscrt",ESymbol Alpha "\120009")-  , ("\\mscru",ESymbol Alpha "\120010")-  , ("\\mscrv",ESymbol Alpha "\120011")-  , ("\\mscrw",ESymbol Alpha "\120012")-  , ("\\mscrx",ESymbol Alpha "\120013")-  , ("\\mscry",ESymbol Alpha "\120014")-  , ("\\mscrz",ESymbol Alpha "\120015")-  , ("\\mttA",ESymbol Alpha "\120432")-  , ("\\mttB",ESymbol Alpha "\120433")-  , ("\\mttC",ESymbol Alpha "\120434")-  , ("\\mttD",ESymbol Alpha "\120435")-  , ("\\mttE",ESymbol Alpha "\120436")-  , ("\\mttF",ESymbol Alpha "\120437")-  , ("\\mttG",ESymbol Alpha "\120438")-  , ("\\mttH",ESymbol Alpha "\120439")-  , ("\\mttI",ESymbol Alpha "\120440")-  , ("\\mttJ",ESymbol Alpha "\120441")-  , ("\\mttK",ESymbol Alpha "\120442")-  , ("\\mttL",ESymbol Alpha "\120443")-  , ("\\mttM",ESymbol Alpha "\120444")-  , ("\\mttN",ESymbol Alpha "\120445")-  , ("\\mttO",ESymbol Alpha "\120446")-  , ("\\mttP",ESymbol Alpha "\120447")-  , ("\\mttQ",ESymbol Alpha "\120448")-  , ("\\mttR",ESymbol Alpha "\120449")-  , ("\\mttS",ESymbol Alpha "\120450")-  , ("\\mttT",ESymbol Alpha "\120451")-  , ("\\mttU",ESymbol Alpha "\120452")-  , ("\\mttV",ESymbol Alpha "\120453")-  , ("\\mttW",ESymbol Alpha "\120454")-  , ("\\mttX",ESymbol Alpha "\120455")-  , ("\\mttY",ESymbol Alpha "\120456")-  , ("\\mttZ",ESymbol Alpha "\120457")-  , ("\\mtta",ESymbol Alpha "\120458")-  , ("\\mttb",ESymbol Alpha "\120459")-  , ("\\mttc",ESymbol Alpha "\120460")-  , ("\\mttd",ESymbol Alpha "\120461")-  , ("\\mtte",ESymbol Alpha "\120462")-  , ("\\mtteight",ESymbol Ord "\120830")-  , ("\\mttf",ESymbol Alpha "\120463")-  , ("\\mttfive",ESymbol Ord "\120827")-  , ("\\mttfour",ESymbol Ord "\120826")-  , ("\\mttg",ESymbol Alpha "\120464")-  , ("\\mtth",ESymbol Alpha "\120465")-  , ("\\mtti",ESymbol Alpha "\120466")-  , ("\\mttj",ESymbol Alpha "\120467")-  , ("\\mttk",ESymbol Alpha "\120468")-  , ("\\mttl",ESymbol Alpha "\120469")-  , ("\\mttm",ESymbol Alpha "\120470")-  , ("\\mttn",ESymbol Alpha "\120471")-  , ("\\mttnine",ESymbol Ord "\120831")-  , ("\\mtto",ESymbol Alpha "\120472")-  , ("\\mttone",ESymbol Ord "\120823")-  , ("\\mttp",ESymbol Alpha "\120473")-  , ("\\mttq",ESymbol Alpha "\120474")-  , ("\\mttr",ESymbol Alpha "\120475")-  , ("\\mtts",ESymbol Alpha "\120476")-  , ("\\mttseven",ESymbol Ord "\120829")-  , ("\\mttsix",ESymbol Ord "\120828")-  , ("\\mttt",ESymbol Alpha "\120477")-  , ("\\mttthree",ESymbol Ord "\120825")-  , ("\\mtttwo",ESymbol Ord "\120824")-  , ("\\mttu",ESymbol Alpha "\120478")-  , ("\\mttv",ESymbol Alpha "\120479")-  , ("\\mttw",ESymbol Alpha "\120480")-  , ("\\mttx",ESymbol Alpha "\120481")-  , ("\\mtty",ESymbol Alpha "\120482")-  , ("\\mttz",ESymbol Alpha "\120483")-  , ("\\mttzero",ESymbol Ord "\120822")-  , ("\\multimap",ESymbol Rel "\8888")-  , ("\\multimapboth",ESymbol Rel "\10719")-  , ("\\multimapdotbothA",ESymbol Rel "\8886")-  , ("\\multimapdotbothB",ESymbol Rel "\8887")-  , ("\\multimapinv",ESymbol Rel "\10204")-  , ("\\nHdownarrow",ESymbol Ord "\8671")-  , ("\\nHuparrow",ESymbol Ord "\8670")-  , ("\\nLeftarrow",ESymbol Rel "\8653")-  , ("\\nLeftrightarrow",ESymbol Rel "\8654")-  , ("\\nRightarrow",ESymbol Rel "\8655")-  , ("\\nVDash",ESymbol Rel "\8879")-  , ("\\nVdash",ESymbol Rel "\8878")-  , ("\\nVleftarrow",ESymbol Rel "\8698")-  , ("\\nVleftarrowtail",ESymbol Rel "\11066")-  , ("\\nVleftrightarrow",ESymbol Rel "\8700")-  , ("\\nVrightarrow",ESymbol Rel "\8699")-  , ("\\nVrightarrowtail",ESymbol Rel "\10517")-  , ("\\nVtwoheadleftarrow",ESymbol Rel "\11061")-  , ("\\nVtwoheadleftarrowtail",ESymbol Rel "\11069")-  , ("\\nVtwoheadrightarrow",ESymbol Rel "\10497")-  , ("\\nVtwoheadrightarrowtail",ESymbol Rel "\10520")-  , ("\\napprox",ESymbol Rel "\8777")-  , ("\\nasymp",ESymbol Rel "\8813")-  , ("\\natural",ESymbol Ord "\9838")-  , ("\\ncong",ESymbol Rel "\8775")-  , ("\\ndres",ESymbol Bin "\10852")-  , ("\\neovnwarrow",ESymbol Ord "\10545")-  , ("\\neovsearrow",ESymbol Ord "\10542")-  , ("\\neptune",ESymbol Ord "\9798")-  , ("\\nequiv",ESymbol Rel "\8802")-  , ("\\neswarrow",ESymbol Rel "\10530")-  , ("\\neuter",ESymbol Ord "\9906")-  , ("\\nexi",ESymbol Ord "\8708")-  , ("\\nexists",ESymbol Ord "\8708")-  , ("\\ngeq",ESymbol Rel "\8817")-  , ("\\ngeqslant",ESymbol Rel "\8817")-  , ("\\ngtr",ESymbol Rel "\8815")-  , ("\\ngtrless",ESymbol Rel "\8825")-  , ("\\ngtrsim",ESymbol Rel "\8821")-  , ("\\nhVvert",ESymbol Bin "\10997")-  , ("\\nhpar",ESymbol Rel "\10994")-  , ("\\nin",ESymbol Rel "\8713")-  , ("\\niobar",ESymbol Rel "\8958")-  , ("\\nis",ESymbol Rel "\8956")-  , ("\\nisd",ESymbol Rel "\8954")-  , ("\\nleftarrow",ESymbol Rel "\8602")-  , ("\\nleftrightarrow",ESymbol Rel "\8622")-  , ("\\nleq",ESymbol Rel "\8816")-  , ("\\nleqslant",ESymbol Rel "\8816")-  , ("\\nless",ESymbol Rel "\8814")-  , ("\\nlessgtr",ESymbol Rel "\8824")-  , ("\\nlesssim",ESymbol Rel "\8820")-  , ("\\nmid",ESymbol Rel "\8740")-  , ("\\nni",ESymbol Rel "\8716")-  , ("\\not",ESymbol Accent "\824")-  , ("\\notasymp",ESymbol Rel "\8813")-  , ("\\notbackslash",ESymbol Ord "\9024")-  , ("\\notni",ESymbol Rel "\8716")-  , ("\\notslash",ESymbol Rel "\9023")-  , ("\\nparallel",ESymbol Rel "\8742")-  , ("\\npolint",ESymbol Op "\10772")-  , ("\\nprec",ESymbol Rel "\8832")-  , ("\\npreccurlyeq",ESymbol Rel "\8928")-  , ("\\npreceq",ESymbol Rel "\8928")-  , ("\\nrightarrow",ESymbol Rel "\8603")-  , ("\\nrres",ESymbol Bin "\10853")-  , ("\\nsim",ESymbol Rel "\8769")-  , ("\\nsime",ESymbol Rel "\8772")-  , ("\\nsimeq",ESymbol Rel "\8772")-  , ("\\nsqsubseteq",ESymbol Rel "\8930")-  , ("\\nsqsupseteq",ESymbol Rel "\8931")-  , ("\\nsucc",ESymbol Rel "\8833")-  , ("\\nsucccurlyeq",ESymbol Rel "\8929")-  , ("\\nsucceq",ESymbol Rel "\8929")-  , ("\\ntriangleleft",ESymbol Rel "\8938")-  , ("\\ntrianglelefteq",ESymbol Rel "\8940")-  , ("\\ntriangleright",ESymbol Rel "\8939")-  , ("\\ntrianglerighteq",ESymbol Rel "\8941")-  , ("\\nunlhd",ESymbol Rel "\8940")-  , ("\\nunrhd",ESymbol Rel "\8941")-  , ("\\nvDash",ESymbol Rel "\8877")-  , ("\\nvLeftarrow",ESymbol Rel "\10498")-  , ("\\nvLeftrightarrow",ESymbol Rel "\10500")-  , ("\\nvRightarrow",ESymbol Rel "\10499")-  , ("\\nvdash",ESymbol Rel "\8876")-  , ("\\nvinfty",ESymbol Ord "\10718")-  , ("\\nvleftarrow",ESymbol Rel "\8695")-  , ("\\nvleftarrowtail",ESymbol Rel "\11065")-  , ("\\nvleftrightarrow",ESymbol Rel "\8697")-  , ("\\nvrightarrow",ESymbol Rel "\8696")-  , ("\\nvrightarrowtail",ESymbol Rel "\10516")-  , ("\\nvtwoheadleftarrow",ESymbol Rel "\11060")-  , ("\\nvtwoheadleftarrowtail",ESymbol Rel "\11068")-  , ("\\nvtwoheadrightarrow",ESymbol Rel "\10496")-  , ("\\nvtwoheadrightarrowtail",ESymbol Rel "\10519")-  , ("\\nwovnearrow",ESymbol Ord "\10546")-  , ("\\nwsearrow",ESymbol Rel "\10529")-  , ("\\obar",ESymbol Bin "\9021")-  , ("\\obot",ESymbol Ord "\10682")-  , ("\\obrbrak",ESymbol Ord "\9184")-  , ("\\obslash",ESymbol Bin "\10680")-  , ("\\ocirc",ESymbol Accent "\778")-  , ("\\ocommatopright",ESymbol Accent "\789")-  , ("\\octothorpe",ESymbol Ord "#")-  , ("\\odiv",ESymbol Bin "\10808")-  , ("\\odotslashdot",ESymbol Ord "\10684")-  , ("\\ogreaterthan",ESymbol Bin "\10689")-  , ("\\oiiint",ESymbol Op "\8752")-  , ("\\oiint",ESymbol Op "\8751")-  , ("\\ointctrclockwise",ESymbol Op "\8755")-  , ("\\olcross",ESymbol Ord "\10683")-  , ("\\olessthan",ESymbol Bin "\10688")-  , ("\\operp",ESymbol Bin "\10681")-  , ("\\opluslhrim",ESymbol Bin "\10797")-  , ("\\oplusrhrim",ESymbol Bin "\10798")-  , ("\\origof",ESymbol Rel "\8886")-  , ("\\otimeshat",ESymbol Bin "\10806")-  , ("\\otimeslhrim",ESymbol Bin "\10804")-  , ("\\otimesrhrim",ESymbol Bin "\10805")-  , ("\\oturnedcomma",ESymbol Accent "\786")-  , ("\\overbar",ESymbol Accent "\175")-  , ("\\overbrace",ESymbol TOver "\9182")-  , ("\\overbracket",ESymbol TOver "\9140")-  , ("\\overleftarrow",ESymbol Accent "\8406")-  , ("\\overrightarrow",ESymbol Accent "\8407")-  , ("\\overleftrightarrow",ESymbol Accent "\8417")-  , ("\\overline",ESymbol TOver "\175")-  , ("\\overparen",ESymbol TOver "\9180")-  , ("\\ovhook",ESymbol Accent "\777")-  , ("\\parallelogram",ESymbol Ord "\9649")-  , ("\\parallelogramblack",ESymbol Ord "\9648")-  , ("\\parsim",ESymbol Rel "\10995")-  , ("\\partialmeetcontraction",ESymbol Rel "\10915")-  , ("\\partialup",ESymbol Ord "\8706")-  , ("\\pencil",ESymbol Ord "\9998")-  , ("\\pentagon",ESymbol Ord "\11040")-  , ("\\pentagonblack",ESymbol Ord "\11039")-  , ("\\percent",ESymbol Ord "%")-  , ("\\period",ESymbol Alpha ".")-  , ("\\perps",ESymbol Ord "\10977")-  , ("\\pfun",ESymbol Rel "\8696")-  , ("\\pinj",ESymbol Rel "\10516")-  , ("\\pisces",ESymbol Ord "\9811")-  , ("\\pitchfork",ESymbol Rel "\8916")-  , ("\\plus",ESymbol Bin "+")-  , ("\\plusdot",ESymbol Bin "\10789")-  , ("\\pluseqq",ESymbol Bin "\10866")-  , ("\\plushat",ESymbol Bin "\10787")-  , ("\\plussim",ESymbol Bin "\10790")-  , ("\\plussubtwo",ESymbol Bin "\10791")-  , ("\\plustrif",ESymbol Bin "\10792")-  , ("\\pluto",ESymbol Ord "\9799")-  , ("\\pointint",ESymbol Op "\10773")-  , ("\\pointright",ESymbol Ord "\9758")-  , ("\\postalmark",ESymbol Ord "\12306")-  , ("\\pounds",ESymbol Ord "\163")-  , ("\\precapprox",ESymbol Rel "\10935")-  , ("\\preccurlyeq",ESymbol Rel "\8828")-  , ("\\preceqq",ESymbol Rel "\10931")-  , ("\\precnapprox",ESymbol Rel "\10937")-  , ("\\precneq",ESymbol Rel "\10929")-  , ("\\precneqq",ESymbol Rel "\10933")-  , ("\\precnsim",ESymbol Rel "\8936")-  , ("\\precsim",ESymbol Rel "\8830")-  , ("\\profline",ESymbol Ord "\8978")-  , ("\\profsurf",ESymbol Ord "\8979")-  , ("\\project",ESymbol Op "\10785")-  , ("\\prurel",ESymbol Rel "\8880")-  , ("\\psur",ESymbol Rel "\10496")-  , ("\\psurj",ESymbol Rel "\10496")-  , ("\\pullback",ESymbol Rel "\10195")-  , ("\\pushout",ESymbol Rel "\10196")-  , ("\\qoppa",ESymbol Ord "\985")-  , ("\\qprime",ESymbol Ord "\8279")-  , ("\\quarternote",ESymbol Ord "\9833")-  , ("\\questeq",ESymbol Rel "\8799")-  , ("\\question",ESymbol Ord "?")-  , ("\\rAngle",ESymbol Close "\10219")-  , ("\\rBrace",ESymbol Close "\10628")-  , ("\\rBrack",ESymbol Close "\10215")-  , ("\\rParen",ESymbol Close "\10630")-  , ("\\radiation",ESymbol Ord "\9762")-  , ("\\rang",ESymbol Close "\10219")-  , ("\\rangle",ESymbol Close "\10217")-  , ("\\rangle",ESymbol Close "\12297")-  , ("\\rangle",ESymbol Close "\9002")-  , ("\\rangledot",ESymbol Close "\10642")-  , ("\\rangledownzigzagarrow",ESymbol Ord "\9084")-  , ("\\rbag",ESymbol Close "\10182")-  , ("\\rblkbrbrak",ESymbol Close "\10648")-  , ("\\rblot",ESymbol Close "\10634")-  , ("\\rbrace",ESymbol Close "}")-  , ("\\rbracelend",ESymbol Ord "\9133")-  , ("\\rbracemid",ESymbol Ord "\9132")-  , ("\\rbraceuend",ESymbol Ord "\9131")-  , ("\\rbrack",ESymbol Close "]")-  , ("\\rbrackextender",ESymbol Ord "\9125")-  , ("\\rbracklend",ESymbol Ord "\9126")-  , ("\\rbracklrtick",ESymbol Close "\10638")-  , ("\\rbrackubar",ESymbol Close "\10636")-  , ("\\rbrackuend",ESymbol Ord "\9124")-  , ("\\rbrackurtick",ESymbol Close "\10640")-  , ("\\rbrbrak",ESymbol Close "\10099")-  , ("\\rbrbrak",ESymbol Close "\12309")-  , ("\\rceil",ESymbol Close "\8969")-  , ("\\rcurvyangle",ESymbol Close "\10749")-  , ("\\rdiagovfdiag",ESymbol Ord "\10539")-  , ("\\rdiagovsearrow",ESymbol Ord "\10544")-  , ("\\recycle",ESymbol Ord "\9851")-  , ("\\rel",ESymbol Rel "\8596")-  , ("\\restriction",ESymbol Rel "\8638")-  , ("\\revangle",ESymbol Ord "\10659")-  , ("\\revangleubar",ESymbol Ord "\10661")-  , ("\\revemptyset",ESymbol Ord "\10672")-  , ("\\revequilibrium",ESymbol Rel "\8651")-  , ("\\revnmid",ESymbol Rel "\10990")-  , ("\\rfbowtie",ESymbol Rel "\10706")-  , ("\\rfloor",ESymbol Close "\8971")-  , ("\\rftimes",ESymbol Rel "\10709")-  , ("\\rgroup",ESymbol Close "\10223")-  , ("\\rightangle",ESymbol Ord "\8735")-  , ("\\rightanglemdot",ESymbol Ord "\10653")-  , ("\\rightanglesqr",ESymbol Ord "\10652")-  , ("\\rightarrowapprox",ESymbol Rel "\10613")-  , ("\\rightarrowbackapprox",ESymbol Rel "\11080")-  , ("\\rightarrowbar",ESymbol Rel "\8677")-  , ("\\rightarrowbsimilar",ESymbol Rel "\11084")-  , ("\\rightarrowdiamond",ESymbol Rel "\10526")-  , ("\\rightarrowgtr",ESymbol Rel "\11075")-  , ("\\rightarrowonoplus",ESymbol Rel "\10228")-  , ("\\rightarrowplus",ESymbol Rel "\10565")-  , ("\\rightarrowshortleftarrow",ESymbol Rel "\10562")-  , ("\\rightarrowsimilar",ESymbol Rel "\10612")-  , ("\\rightarrowsupset",ESymbol Rel "\11076")-  , ("\\rightarrowtail",ESymbol Rel "\8611")-  , ("\\rightarrowtriangle",ESymbol Rel "\8702")-  , ("\\rightarrowx",ESymbol Rel "\10567")-  , ("\\rightbarharpoon",ESymbol Rel "\10604")-  , ("\\rightbkarrow",ESymbol Rel "\10509")-  , ("\\rightcurvedarrow",ESymbol Rel "\10547")-  , ("\\rightdasharrow",ESymbol Ord "\8674")-  , ("\\rightdbltail",ESymbol Rel "\10524")-  , ("\\rightdotarrow",ESymbol Rel "\10513")-  , ("\\rightdowncurvedarrow",ESymbol Rel "\10551")-  , ("\\rightfishtail",ESymbol Rel "\10621")-  , ("\\rightharpoonaccent",ESymbol Accent "\8401")-  , ("\\rightharpoondown",ESymbol Rel "\8641")-  , ("\\rightharpoondownbar",ESymbol Rel "\10583")-  , ("\\rightharpoonsupdown",ESymbol Rel "\10596")-  , ("\\rightharpoonup",ESymbol Rel "\8640")-  , ("\\rightharpoonupbar",ESymbol Rel "\10579")-  , ("\\rightharpoonupdash",ESymbol Rel "\10604")-  , ("\\rightimply",ESymbol Rel "\10608")-  , ("\\rightleftarrow",ESymbol Rel "\8644")-  , ("\\rightleftarrows",ESymbol Rel "\8644")-  , ("\\rightleftharpoon",ESymbol Rel "\10571")-  , ("\\rightleftharpoons",ESymbol Rel "\8652")-  , ("\\rightleftharpoonsdown",ESymbol Rel "\10601")-  , ("\\rightleftharpoonsup",ESymbol Rel "\10600")-  , ("\\rightmoon",ESymbol Ord "\9789")-  , ("\\rightouterjoin",ESymbol Op "\10198")-  , ("\\rightpentagon",ESymbol Ord "\11092")-  , ("\\rightpentagonblack",ESymbol Ord "\11091")-  , ("\\rightrightarrows",ESymbol Rel "\8649")-  , ("\\rightrightharpoons",ESymbol Rel "\10596")-  , ("\\rightslice",ESymbol Rel "\10919")-  , ("\\rightsquigarrow",ESymbol Rel "\8669")-  , ("\\righttail",ESymbol Rel "\10522")-  , ("\\rightthreearrows",ESymbol Rel "\8694")-  , ("\\rightthreetimes",ESymbol Bin "\8908")-  , ("\\rightturn",ESymbol Ord "\8635")-  , ("\\rightupdownharpoon",ESymbol Rel "\10575")-  , ("\\rightwavearrow",ESymbol Rel "\8605")-  , ("\\rightwhitearrow",ESymbol Ord "\8680")-  , ("\\rimg",ESymbol Close "\10632")-  , ("\\ring",ESymbol Accent "\778")-  , ("\\ringplus",ESymbol Bin "\10786")-  , ("\\risingdotseq",ESymbol Rel "\8787")-  , ("\\rmoustache",ESymbol Ord "\9137")-  , ("\\rparen",ESymbol Close ")")-  , ("\\rparenextender",ESymbol Ord "\9119")-  , ("\\rparengtr",ESymbol Close "\10644")-  , ("\\rparenlend",ESymbol Ord "\9120")-  , ("\\rparenuend",ESymbol Ord "\9118")-  , ("\\rppolint",ESymbol Op "\10770")-  , ("\\rrangle",ESymbol Close "\10634")-  , ("\\rrbracket",ESymbol Close "\10215")-  , ("\\rrbracket",ESymbol Close "\12315")-  , ("\\rres",ESymbol Bin "\9655")-  , ("\\rrparenthesis",ESymbol Close "\10632")-  , ("\\rsolbar",ESymbol Bin "\10743")-  , ("\\rsqhook",ESymbol Rel "\10958")-  , ("\\rsub",ESymbol Bin "\10853")-  , ("\\rtriltri",ESymbol Rel "\10702")-  , ("\\ruledelayed",ESymbol Rel "\10740")-  , ("\\rvboxline",ESymbol Ord "\9145")-  , ("\\rvzigzag",ESymbol Close "\10713")-  , ("\\sadface",ESymbol Ord "\9785")-  , ("\\sagittarius",ESymbol Ord "\9808")-  , ("\\sampi",ESymbol Alpha "\993")-  , ("\\sansLmirrored",ESymbol Ord "\8515")-  , ("\\sansLturned",ESymbol Ord "\8514")-  , ("\\saturn",ESymbol Ord "\9796")-  , ("\\scorpio",ESymbol Ord "\9807")-  , ("\\scpolint",ESymbol Op "\10771")-  , ("\\scurel",ESymbol Rel "\8881")-  , ("\\sdef",ESymbol Rel "\8793")-  , ("\\second",ESymbol Ord "\8243")-  , ("\\semi",ESymbol Op "\10783")-  , ("\\semicolon",ESymbol Pun ";")-  , ("\\seovnearrow",ESymbol Ord "\10541")-  , ("\\sharp",ESymbol Ord "\9839")-  , ("\\shortdowntack",ESymbol Rel "\10975")-  , ("\\shortlefttack",ESymbol Rel "\10974")-  , ("\\shortrightarrowleftarrow",ESymbol Rel "\10564")-  , ("\\shortuptack",ESymbol Rel "\10976")-  , ("\\shuffle",ESymbol Bin "\10722")-  , ("\\simgE",ESymbol Rel "\10912")-  , ("\\simgtr",ESymbol Rel "\10910")-  , ("\\similarleftarrow",ESymbol Rel "\11081")-  , ("\\similarrightarrow",ESymbol Rel "\10610")-  , ("\\simlE",ESymbol Rel "\10911")-  , ("\\simless",ESymbol Rel "\10909")-  , ("\\simminussim",ESymbol Rel "\10860")-  , ("\\simneqq",ESymbol Rel "\8774")-  , ("\\simplus",ESymbol Bin "\10788")-  , ("\\simrdots",ESymbol Rel "\10859")-  , ("\\sinewave",ESymbol Ord "\8767")-  , ("\\sixteenthnote",ESymbol Ord "\9836")-  , ("\\skull",ESymbol Ord "\9760")-  , ("\\slash",ESymbol Bin "\8725")-  , ("\\slash",ESymbol Ord "/")-  , ("\\smallblacktriangleleft",ESymbol Bin "\9666")-  , ("\\smallblacktriangleright",ESymbol Bin "\9656")-  , ("\\smallfrown",ESymbol Rel "\8994")-  , ("\\smallin",ESymbol Rel "\8714")-  , ("\\smallni",ESymbol Rel "\8717")-  , ("\\smallsetminus",ESymbol Bin "\8726")-  , ("\\smallsmile",ESymbol Rel "\8995")-  , ("\\smalltriangledown",ESymbol Bin "\9663")-  , ("\\smalltriangleleft",ESymbol Bin "\9667")-  , ("\\smalltriangleright",ESymbol Bin "\9657")-  , ("\\smalltriangleup",ESymbol Bin "\9653")-  , ("\\smashtimes",ESymbol Bin "\10803")-  , ("\\smblkcircle",ESymbol Bin "\8226")-  , ("\\smblkdiamond",ESymbol Ord "\11049")-  , ("\\smblklozenge",ESymbol Ord "\11050")-  , ("\\smblksquare",ESymbol Ord "\9642")-  , ("\\smeparsl",ESymbol Rel "\10724")-  , ("\\smileface",ESymbol Ord "\9786")-  , ("\\smiley",ESymbol Ord "\9786")-  , ("\\smt",ESymbol Rel "\10922")-  , ("\\smte",ESymbol Rel "\10924")-  , ("\\smwhitestar",ESymbol Ord "\11090")-  , ("\\smwhtcircle",ESymbol Ord "\9702")-  , ("\\smwhtdiamond",ESymbol Bin "\8900")-  , ("\\smwhtlozenge",ESymbol Ord "\11051")-  , ("\\smwhtsquare",ESymbol Ord "\9643")-  , ("\\spadesuit",ESymbol Ord "\9824")-  , ("\\spddot",ESymbol Ord "\168")-  , ("\\sphat",ESymbol Ord "^")-  , ("\\sphericalangle",ESymbol Ord "\8738")-  , ("\\sphericalangleup",ESymbol Ord "\10657")-  , ("\\spot",ESymbol Ord "\10625")-  , ("\\sptilde",ESymbol Ord "~")-  , ("\\sqint",ESymbol Op "\10774")-  , ("\\sqlozenge",ESymbol Ord "\8977")-  , ("\\sqrint",ESymbol Op "\10774")-  , ("\\sqrt",ESymbol Rad "\8730")-  , ("\\sqrt[3]",ESymbol Rad "\8731")-  , ("\\sqrt[4]",ESymbol Rad "\8732")-  , ("\\sqrtbottom",ESymbol Ord "\9143")-  , ("\\sqsubsetneq",ESymbol Rel "\8932")-  , ("\\sqsupsetneq",ESymbol Rel "\8933")-  , ("\\squarebotblack",ESymbol Ord "\11027")-  , ("\\squarecrossfill",ESymbol Ord "\9641")-  , ("\\squarehfill",ESymbol Ord "\9636")-  , ("\\squarehvfill",ESymbol Ord "\9638")-  , ("\\squareleftblack",ESymbol Ord "\9703")-  , ("\\squarellblack",ESymbol Ord "\11029")-  , ("\\squarellquad",ESymbol Ord "\9713")-  , ("\\squarelrblack",ESymbol Ord "\9706")-  , ("\\squarelrquad",ESymbol Ord "\9714")-  , ("\\squareneswfill",ESymbol Ord "\9640")-  , ("\\squarenwsefill",ESymbol Ord "\9639")-  , ("\\squarerightblack",ESymbol Ord "\9704")-  , ("\\squaretopblack",ESymbol Ord "\11026")-  , ("\\squareulblack",ESymbol Ord "\9705")-  , ("\\squareulquad",ESymbol Ord "\9712")-  , ("\\squareurblack",ESymbol Ord "\11028")-  , ("\\squareurquad",ESymbol Ord "\9715")-  , ("\\squarevfill",ESymbol Ord "\9637")-  , ("\\squoval",ESymbol Ord "\9634")-  , ("\\sslash",ESymbol Bin "\11005")-  , ("\\stareq",ESymbol Rel "\8795")-  , ("\\steaming",ESymbol Ord "\9749")-  , ("\\sterling",ESymbol Ord "\163")-  , ("\\stigma",ESymbol Alpha "\987")-  , ("\\strictfi",ESymbol Rel "\10620")-  , ("\\strictif",ESymbol Rel "\10621")-  , ("\\strns",ESymbol Ord "\9188")-  , ("\\subedot",ESymbol Rel "\10947")-  , ("\\submult",ESymbol Rel "\10945")-  , ("\\subrarr",ESymbol Rel "\10617")-  , ("\\subsetapprox",ESymbol Rel "\10953")-  , ("\\subsetcirc",ESymbol Ord "\10179")-  , ("\\subsetdot",ESymbol Rel "\10941")-  , ("\\subseteqq",ESymbol Rel "\10949")-  , ("\\subsetneq",ESymbol Rel "\8842")-  , ("\\subsetneqq",ESymbol Rel "\10955")-  , ("\\subsetplus",ESymbol Rel "\10943")-  , ("\\subsim",ESymbol Rel "\10951")-  , ("\\subsub",ESymbol Rel "\10965")-  , ("\\subsup",ESymbol Rel "\10963")-  , ("\\succapprox",ESymbol Rel "\10936")-  , ("\\succcurlyeq",ESymbol Rel "\8829")-  , ("\\succeqq",ESymbol Rel "\10932")-  , ("\\succnapprox",ESymbol Rel "\10938")-  , ("\\succneq",ESymbol Rel "\10930")-  , ("\\succneqq",ESymbol Rel "\10934")-  , ("\\succnsim",ESymbol Rel "\8937")-  , ("\\succsim",ESymbol Rel "\8831")-  , ("\\sumbottom",ESymbol Ord "\9139")-  , ("\\sumint",ESymbol Op "\10763")-  , ("\\sumtop",ESymbol Ord "\9138")-  , ("\\sun",ESymbol Ord "\9788")-  , ("\\supdsub",ESymbol Rel "\10968")-  , ("\\supedot",ESymbol Rel "\10948")-  , ("\\suphsol",ESymbol Rel "\10185")-  , ("\\suphsub",ESymbol Rel "\10967")-  , ("\\suplarr",ESymbol Rel "\10619")-  , ("\\supmult",ESymbol Rel "\10946")-  , ("\\supsetapprox",ESymbol Rel "\10954")-  , ("\\supsetcirc",ESymbol Ord "\10180")-  , ("\\supsetdot",ESymbol Rel "\10942")-  , ("\\supseteqq",ESymbol Rel "\10950")-  , ("\\supsetneq",ESymbol Rel "\8843")-  , ("\\supsetneqq",ESymbol Rel "\10956")-  , ("\\supsetplus",ESymbol Rel "\10944")-  , ("\\supsim",ESymbol Rel "\10952")-  , ("\\supsub",ESymbol Rel "\10964")-  , ("\\supsup",ESymbol Rel "\10966")-  , ("\\swords",ESymbol Ord "\9876")-  , ("\\talloblong",ESymbol Bin "\11006")-  , ("\\taurus",ESymbol Ord "\9801")-  , ("\\tcmu",ESymbol Alpha "\181")-  , ("\\tcohm",ESymbol Alpha "\8486")-  , ("\\thermod",ESymbol Ord "\10727")-  , ("\\third",ESymbol Ord "\8244")-  , ("\\threedangle",ESymbol Ord "\10176")-  , ("\\threedotcolon",ESymbol Bin "\10998")-  , ("\\threeunderdot",ESymbol Accent "\8424")-  , ("\\tieconcat",ESymbol Bin "\8256")-  , ("\\tieinfty",ESymbol Ord "\10717")-  , ("\\tilde",ESymbol Accent "\771")-  , ("\\timesbar",ESymbol Bin "\10801")-  , ("\\tinj",ESymbol Rel "\8611")-  , ("\\tminus",ESymbol Bin "\10751")-  , ("\\toea",ESymbol Rel "\10536")-  , ("\\tona",ESymbol Rel "\10535")-  , ("\\topbot",ESymbol Ord "\9014")-  , ("\\topcir",ESymbol Ord "\10993")-  , ("\\topfork",ESymbol Rel "\10970")-  , ("\\topsemicircle",ESymbol Ord "\9696")-  , ("\\tosa",ESymbol Rel "\10537")-  , ("\\towa",ESymbol Rel "\10538")-  , ("\\tplus",ESymbol Bin "\10750")-  , ("\\trapezium",ESymbol Ord "\9186")-  , ("\\trianglecdot",ESymbol Ord "\9708")-  , ("\\triangledown",ESymbol Bin "\9663")-  , ("\\triangleleftblack",ESymbol Ord "\9709")-  , ("\\trianglelefteq",ESymbol Rel "\8884")-  , ("\\triangleminus",ESymbol Bin "\10810")-  , ("\\triangleodot",ESymbol Ord "\10698")-  , ("\\triangleplus",ESymbol Bin "\10809")-  , ("\\triangleq",ESymbol Rel "\8796")-  , ("\\trianglerightblack",ESymbol Ord "\9710")-  , ("\\trianglerighteq",ESymbol Rel "\8885")-  , ("\\triangles",ESymbol Ord "\10700")-  , ("\\triangleserifs",ESymbol Bin "\10701")-  , ("\\triangletimes",ESymbol Bin "\10811")-  , ("\\triangleubar",ESymbol Ord "\10699")-  , ("\\tripleplus",ESymbol Bin "\10747")-  , ("\\trprime",ESymbol Ord "\8244")-  , ("\\trslash",ESymbol Bin "\11003")-  , ("\\tsur",ESymbol Rel "\8608")-  , ("\\turnangle",ESymbol Ord "\10658")-  , ("\\turnediota",ESymbol Alpha "\8489")-  , ("\\turnednot",ESymbol Ord "\8985")-  , ("\\twocaps",ESymbol Bin "\10827")-  , ("\\twocups",ESymbol Bin "\10826")-  , ("\\twoheaddownarrow",ESymbol Rel "\8609")-  , ("\\twoheadleftarrow",ESymbol Rel "\8606")-  , ("\\twoheadleftarrowtail",ESymbol Rel "\11067")-  , ("\\twoheadleftdbkarrow",ESymbol Rel "\11063")-  , ("\\twoheadmapsfrom",ESymbol Rel "\11062")-  , ("\\twoheadmapsto",ESymbol Rel "\10501")-  , ("\\twoheadrightarrow",ESymbol Rel "\8608")-  , ("\\twoheadrightarrowtail",ESymbol Rel "\10518")-  , ("\\twoheaduparrow",ESymbol Rel "\8607")-  , ("\\twoheaduparrowcircle",ESymbol Rel "\10569")-  , ("\\twolowline",ESymbol Ord "\8215")-  , ("\\twonotes",ESymbol Ord "\9835")-  , ("\\typecolon",ESymbol Bin "\10626")-  , ("\\ubrbrak",ESymbol Ord "\9185")-  , ("\\ularc",ESymbol Ord "\9692")-  , ("\\ulblacktriangle",ESymbol Ord "\9700")-  , ("\\ulcorner",ESymbol Open "\8988")-  , ("\\ultriangle",ESymbol Ord "\9720")-  , ("\\uminus",ESymbol Bin "\10817")-  , ("\\underbar",ESymbol TUnder "\817")-  , ("\\underbrace",ESymbol TUnder "\9183")-  , ("\\underbracket",ESymbol TUnder "\9141")-  , ("\\underleftarrow",ESymbol Accent "\8430")-  , ("\\underleftharpoondown",ESymbol Accent "\8429")-  , ("\\underline",ESymbol TUnder "\818")-  , ("\\underparen",ESymbol TUnder "\9181")-  , ("\\underrightarrow",ESymbol Accent "\8431")-  , ("\\underrightharpoondown",ESymbol Accent "\8428")-  , ("\\unicodecdots",ESymbol Ord "\8943")-  , ("\\unicodeellipsis",ESymbol Ord "\8230")-  , ("\\upAlpha",ESymbol Alpha "\913")-  , ("\\upBeta",ESymbol Alpha "\914")-  , ("\\upChi",ESymbol Alpha "\935")-  , ("\\upDelta",ESymbol Alpha "\916")-  , ("\\upDigamma",ESymbol Alpha "\988")-  , ("\\upEpsilon",ESymbol Alpha "\917")-  , ("\\upEta",ESymbol Alpha "\919")-  , ("\\upGamma",ESymbol Alpha "\915")-  , ("\\upIota",ESymbol Alpha "\921")-  , ("\\upKappa",ESymbol Alpha "\922")-  , ("\\upKoppa",ESymbol Alpha "\990")-  , ("\\upLambda",ESymbol Alpha "\923")-  , ("\\upMu",ESymbol Alpha "\924")-  , ("\\upNu",ESymbol Alpha "\925")-  , ("\\upOmega",ESymbol Alpha "\937")-  , ("\\upOmicron",ESymbol Alpha "\927")-  , ("\\upPhi",ESymbol Alpha "\934")-  , ("\\upPi",ESymbol Alpha "\928")-  , ("\\upPsi",ESymbol Alpha "\936")-  , ("\\upRho",ESymbol Alpha "\929")-  , ("\\upSampi",ESymbol Alpha "\992")-  , ("\\upSigma",ESymbol Alpha "\931")-  , ("\\upStigma",ESymbol Alpha "\986")-  , ("\\upTau",ESymbol Alpha "\932")-  , ("\\upTheta",ESymbol Alpha "\920")-  , ("\\upUpsilon",ESymbol Alpha "\933")-  , ("\\upUpsilon",ESymbol Alpha "\978")-  , ("\\upXi",ESymbol Alpha "\926")-  , ("\\upZeta",ESymbol Alpha "\918")-  , ("\\upalpha",ESymbol Alpha "\945")-  , ("\\upand",ESymbol Bin "\8523")-  , ("\\uparrowbarred",ESymbol Rel "\10505")-  , ("\\uparrowdownarrow",ESymbol Rel "\8645")-  , ("\\uparrowoncircle",ESymbol Ord "\10685")-  , ("\\upbackepsilon",ESymbol Ord "\1014")-  , ("\\upbeta",ESymbol Alpha "\946")-  , ("\\upchi",ESymbol Alpha "\967")-  , ("\\updasharrow",ESymbol Ord "\8673")-  , ("\\updelta",ESymbol Alpha "\948")-  , ("\\updigamma",ESymbol Alpha "\989")-  , ("\\updownarrowbar",ESymbol Ord "\8616")-  , ("\\updownarrows",ESymbol Rel "\8645")-  , ("\\updownharpoonleftleft",ESymbol Rel "\10577")-  , ("\\updownharpoonleftright",ESymbol Rel "\10573")-  , ("\\updownharpoonrightleft",ESymbol Rel "\10572")-  , ("\\updownharpoonrightright",ESymbol Rel "\10575")-  , ("\\updownharpoons",ESymbol Rel "\10606")-  , ("\\updownharpoonsleftright",ESymbol Rel "\10606")-  , ("\\upepsilon",ESymbol Alpha "\949")-  , ("\\upequilibrium",ESymbol Rel "\10606")-  , ("\\upeta",ESymbol Alpha "\951")-  , ("\\upfishtail",ESymbol Rel "\10622")-  , ("\\upgamma",ESymbol Alpha "\947")-  , ("\\upharpoonleft",ESymbol Rel "\8639")-  , ("\\upharpoonleftbar",ESymbol Rel "\10592")-  , ("\\upharpoonleftdown",ESymbol Rel "\8643")-  , ("\\upharpoonleftup",ESymbol Rel "\8639")-  , ("\\upharpoonright",ESymbol Rel "\8638")-  , ("\\upharpoonrightbar",ESymbol Rel "\10588")-  , ("\\upharpoonrightdown",ESymbol Rel "\8642")-  , ("\\upharpoonsleftright",ESymbol Rel "\10595")-  , ("\\upin",ESymbol Rel "\10194")-  , ("\\upint",ESymbol Op "\10779")-  , ("\\upiota",ESymbol Alpha "\953")-  , ("\\upkappa",ESymbol Alpha "\954")-  , ("\\upkoppa",ESymbol Alpha "\991")-  , ("\\uplambda",ESymbol Alpha "\955")-  , ("\\upmu",ESymbol Alpha "\956")-  , ("\\upnu",ESymbol Alpha "\957")-  , ("\\upoldKoppa",ESymbol Ord "\984")-  , ("\\upoldkoppa",ESymbol Ord "\985")-  , ("\\upomega",ESymbol Alpha "\969")-  , ("\\upomicron",ESymbol Alpha "\959")-  , ("\\upphi",ESymbol Alpha "\981")-  , ("\\uppi",ESymbol Alpha "\960")-  , ("\\uppsi",ESymbol Alpha "\968")-  , ("\\uprevequilibrium",ESymbol Rel "\10607")-  , ("\\uprho",ESymbol Alpha "\961")-  , ("\\uprightcurvearrow",ESymbol Ord "\10548")-  , ("\\upsampi",ESymbol Alpha "\993")-  , ("\\upsigma",ESymbol Alpha "\963")-  , ("\\upstigma",ESymbol Alpha "\987")-  , ("\\uptau",ESymbol Alpha "\964")-  , ("\\uptheta",ESymbol Alpha "\952")-  , ("\\upuparrows",ESymbol Rel "\8648")-  , ("\\upupharpoons",ESymbol Rel "\10595")-  , ("\\upupsilon",ESymbol Alpha "\965")-  , ("\\upvarTheta",ESymbol Alpha "\1012")-  , ("\\upvarbeta",ESymbol Alpha "\976")-  , ("\\upvarepsilon",ESymbol Alpha "\1013")-  , ("\\upvarkappa",ESymbol Alpha "\1008")-  , ("\\upvarphi",ESymbol Alpha "\966")-  , ("\\upvarpi",ESymbol Alpha "\982")-  , ("\\upvarrho",ESymbol Alpha "\1009")-  , ("\\upvarsigma",ESymbol Alpha "\962")-  , ("\\upvartheta",ESymbol Alpha "\977")-  , ("\\upwhitearrow",ESymbol Ord "\8679")-  , ("\\upxi",ESymbol Alpha "\958")-  , ("\\upzeta",ESymbol Alpha "\950")-  , ("\\uranus",ESymbol Ord "\9797")-  , ("\\urarc",ESymbol Ord "\9693")-  , ("\\urblacktriangle",ESymbol Ord "\9701")-  , ("\\urcorner",ESymbol Close "\8989")-  , ("\\urtriangle",ESymbol Ord "\9721")-  , ("\\utilde",ESymbol Accent "\816")-  , ("\\vBar",ESymbol Rel "\10984")-  , ("\\vBarv",ESymbol Rel "\10985")-  , ("\\vDash",ESymbol Rel "\8872")-  , ("\\vDdash",ESymbol Rel "\10978")-  , ("\\varEarth",ESymbol Ord "\9793")-  , ("\\varVdash",ESymbol Rel "\10982")-  , ("\\varbarwedge",ESymbol Bin "\8965")-  , ("\\varbeta",ESymbol Alpha "\976")-  , ("\\varcarriagereturn",ESymbol Ord "\9166")-  , ("\\varclub",ESymbol Ord "\9831")-  , ("\\varclubsuit",ESymbol Ord "\9831")-  , ("\\vardiamond",ESymbol Ord "\9830")-  , ("\\vardiamondsuit",ESymbol Ord "\9830")-  , ("\\vardoublebarwedge",ESymbol Bin "\8966")-  , ("\\varheart",ESymbol Ord "\9829")-  , ("\\varheartsuit",ESymbol Ord "\9829")-  , ("\\varhexagon",ESymbol Ord "\11041")-  , ("\\varhexagonblack",ESymbol Ord "\11042")-  , ("\\varhexagonlrbonds",ESymbol Ord "\9004")-  , ("\\varisinobar",ESymbol Rel "\8950")-  , ("\\varisins",ESymbol Rel "\8947")-  , ("\\varkappa",ESymbol Alpha "\120600")-  , ("\\varlrtriangle",ESymbol Ord "\8895")-  , ("\\varniobar",ESymbol Rel "\8957")-  , ("\\varnis",ESymbol Rel "\8955")-  , ("\\varnothing",ESymbol Ord "\8709")-  , ("\\varnothing",ESymbol Ord "\8960")-  , ("\\varointclockwise",ESymbol Op "\8754")-  , ("\\varparallel",ESymbol Bin "\11005")-  , ("\\varpi",ESymbol Alpha "\120603")-  , ("\\varpi",ESymbol Alpha "\982")-  , ("\\varprod",ESymbol Op "\10761")-  , ("\\varpropto",ESymbol Rel "\8733")-  , ("\\varrho",ESymbol Alpha "\1009")-  , ("\\varrho",ESymbol Alpha "\120602")-  , ("\\varsdef",ESymbol Rel "\8796")-  , ("\\varsigma",ESymbol Alpha "\120589")-  , ("\\varsigma",ESymbol Alpha "\962")-  , ("\\varspade",ESymbol Ord "\9828")-  , ("\\varspadesuit",ESymbol Ord "\9828")-  , ("\\varstar",ESymbol Ord "\10038")-  , ("\\varsubsetneq",ESymbol Rel "\8842")-  , ("\\vartriangle",ESymbol Bin "\9653")-  , ("\\vartriangleleft",ESymbol Rel "\8882")-  , ("\\vartriangleright",ESymbol Rel "\8883")-  , ("\\varveebar",ESymbol Bin "\10849")-  , ("\\vbraceextender",ESymbol Ord "\9130")-  , ("\\vbrtri",ESymbol Rel "\10704")-  , ("\\vec",ESymbol Accent "\8401")-  , ("\\vec",ESymbol Accent "\8407")-  , ("\\vectimes",ESymbol Bin "\10799")-  , ("\\veebar",ESymbol Bin "\8891")-  , ("\\veedot",ESymbol Bin "\10183")-  , ("\\veedoublebar",ESymbol Bin "\10851")-  , ("\\veeeq",ESymbol Rel "\8794")-  , ("\\veemidvert",ESymbol Bin "\10843")-  , ("\\veeodot",ESymbol Bin "\10834")-  , ("\\veeonvee",ESymbol Bin "\10838")-  , ("\\veeonwedge",ESymbol Rel "\10841")-  , ("\\vert",ESymbol Fence "|")-  , ("\\vertoverlay",ESymbol Accent "\8402")-  , ("\\viewdata",ESymbol Ord "\8983")-  , ("\\virgo",ESymbol Ord "\9805")-  , ("\\vlongdash",ESymbol Rel "\10205")-  , ("\\vrectangle",ESymbol Ord "\9647")-  , ("\\vrectangleblack",ESymbol Ord "\9646")-  , ("\\vysmblkcircle",ESymbol Bin "\8729")-  , ("\\vysmblksquare",ESymbol Ord "\11037")-  , ("\\vysmwhtcircle",ESymbol Bin "\8728")-  , ("\\vysmwhtsquare",ESymbol Ord "\11038")-  , ("\\vzigzag",ESymbol Ord "\10650")-  , ("\\warning",ESymbol Ord "\9888")-  , ("\\wasylozenge",ESymbol Ord "\8977")-  , ("\\wasytherefore",ESymbol Ord "\8756")-  , ("\\wedgebar",ESymbol Bin "\10847")-  , ("\\wedgedot",ESymbol Bin "\10193")-  , ("\\wedgedoublebar",ESymbol Bin "\10848")-  , ("\\wedgemidvert",ESymbol Bin "\10842")-  , ("\\wedgeodot",ESymbol Bin "\10833")-  , ("\\wedgeonwedge",ESymbol Bin "\10837")-  , ("\\wedgeq",ESymbol Rel "\8793")-  , ("\\whitearrowupfrombar",ESymbol Ord "\8682")-  , ("\\whiteinwhitetriangle",ESymbol Ord "\10177")-  , ("\\whitepointerleft",ESymbol Ord "\9669")-  , ("\\whitepointerright",ESymbol Ord "\9659")-  , ("\\whitesquaretickleft",ESymbol Bin "\10212")-  , ("\\whitesquaretickright",ESymbol Bin "\10213")-  , ("\\whthorzoval",ESymbol Ord "\11053")-  , ("\\whtvertoval",ESymbol Ord "\11055")-  , ("\\wideangledown",ESymbol Ord "\10662")-  , ("\\wideangleup",ESymbol Ord "\10663")-  , ("\\widebridgeabove",ESymbol Accent "\8425")-  , ("\\widehat",ESymbol Accent "\770")-  , ("\\wideparen",ESymbol TOver "\9180")-  , ("\\widetilde",ESymbol Accent "\771")-  , ("\\wideutilde",ESymbol Accent "\816")-  , ("\\xbsol",ESymbol Op "\10745")-  , ("\\xsol",ESymbol Op "\10744")-  , ("\\yen",ESymbol Ord "\165")-  , ("\\yinyang",ESymbol Ord "\9775")-  , ("\\zcmp",ESymbol Op "\10783")-  , ("\\zhide",ESymbol Op "\10745")-  , ("\\zpipe",ESymbol Op "\10784")-  , ("\\zproject",ESymbol Op "\10785")-  , ("\\{",ESymbol Open "{")-  , ("\\|",ESymbol Fence "\8214")-  , ("\\}",ESymbol Close "}")-  ]---- text mode parsing--textual :: TP String-textual = regular <|> sps <|> ligature <|> textCommand-            <?> "text"--sps :: TP String-sps = " " <$ skipMany1 (oneOf " \t\n")--regular :: TP String-regular = many1 (noneOf "`'-~${}\\ \t")--ligature :: TP String-ligature = try ("\x2014" <$ string "---")-       <|> try ("\x2013" <$ string "--")-       <|> try (string "-")-       <|> try ("\x201C" <$ string "``")-       <|> try ("\x201D" <$ string "''")-       <|> try ("\x2019" <$ string "'")-       <|> try ("\x2018" <$ string "`")-       <|> try ("\xA0"   <$ string "~")--textCommand :: TP String-textCommand = do-  cmd <- oneOfCommands (M.keys textCommands)-  optional $ try (char '{' >> spaces >> char '}')-  case M.lookup cmd textCommands of-       Nothing -> fail ("Unknown control sequence " ++ cmd)-       Just c  -> c--tok :: TP Char-tok = (try $ char '{' *> spaces *> anyChar <* spaces <* char '}')-   <|> anyChar--textCommands :: M.Map String (TP String)-textCommands = M.fromList-  [ ("\\#", return "#")-  , ("\\$", return "$")-  , ("\\%", return "%")-  , ("\\&", return "&")-  , ("\\_", return "_")-  , ("\\{", return "{")-  , ("\\}", return "}")-  , ("\\ldots", return "\x2026")-  , ("\\textasciitilde", return "~")-  , ("\\textasciicircum", return "^")-  , ("\\textbackslash", return "\\")-  , ("\\char", parseC)-  , ("\\aa", return "å")-  , ("\\AA", return "Å")-  , ("\\ss", return "ß")-  , ("\\o", return "ø")-  , ("\\O", return "Ø")-  , ("\\L", return "Ł")-  , ("\\l", return "ł")-  , ("\\ae", return "æ")-  , ("\\AE", return "Æ")-  , ("\\oe", return "œ")-  , ("\\OE", return "Œ")-  , ("\\`", option "`" $ grave <$> tok)-  , ("\\'", option "'" $ acute <$> tok)-  , ("\\^", option "^" $ circ  <$> tok)-  , ("\\~", option "~" $ tilde <$> tok)-  , ("\\\"", option "\"" $ try $ umlaut <$> tok)-  , ("\\.", option "." $ try $ dot <$> tok)-  , ("\\=", option "=" $ try $ macron <$> tok)-  , ("\\c", option "c" $ try $ cedilla <$> tok)-  , ("\\v", option "v" $ try $ hacek <$> tok)-  , ("\\u", option "u" $ try $ breve <$> tok)-  , ("\\ ", return " ")-  ]--parseC :: TP String-parseC = try $ char '`' >> count 1 anyChar---- the functions below taken from pandoc:--grave :: Char -> String-grave 'A' = "À"-grave 'E' = "È"-grave 'I' = "Ì"-grave 'O' = "Ò"-grave 'U' = "Ù"-grave 'a' = "à"-grave 'e' = "è"-grave 'i' = "ì"-grave 'o' = "ò"-grave 'u' = "ù"-grave c   = [c]--acute :: Char -> String-acute 'A' = "Á"-acute 'E' = "É"-acute 'I' = "Í"-acute 'O' = "Ó"-acute 'U' = "Ú"-acute 'Y' = "Ý"-acute 'a' = "á"-acute 'e' = "é"-acute 'i' = "í"-acute 'o' = "ó"-acute 'u' = "ú"-acute 'y' = "ý"-acute 'C' = "Ć"-acute 'c' = "ć"-acute 'L' = "Ĺ"-acute 'l' = "ĺ"-acute 'N' = "Ń"-acute 'n' = "ń"-acute 'R' = "Ŕ"-acute 'r' = "ŕ"-acute 'S' = "Ś"-acute 's' = "ś"-acute 'Z' = "Ź"-acute 'z' = "ź"-acute c   = [c]--circ :: Char -> String-circ 'A' = "Â"-circ 'E' = "Ê"-circ 'I' = "Î"-circ 'O' = "Ô"-circ 'U' = "Û"-circ 'a' = "â"-circ 'e' = "ê"-circ 'i' = "î"-circ 'o' = "ô"-circ 'u' = "û"-circ 'C' = "Ĉ"-circ 'c' = "ĉ"-circ 'G' = "Ĝ"-circ 'g' = "ĝ"-circ 'H' = "Ĥ"-circ 'h' = "ĥ"-circ 'J' = "Ĵ"-circ 'j' = "ĵ"-circ 'S' = "Ŝ"-circ 's' = "ŝ"-circ 'W' = "Ŵ"-circ 'w' = "ŵ"-circ 'Y' = "Ŷ"-circ 'y' = "ŷ"-circ c   = [c]--tilde :: Char -> String-tilde 'A' = "Ã"-tilde 'a' = "ã"-tilde 'O' = "Õ"-tilde 'o' = "õ"-tilde 'I' = "Ĩ"-tilde 'i' = "ĩ"-tilde 'U' = "Ũ"-tilde 'u' = "ũ"-tilde 'N' = "Ñ"-tilde 'n' = "ñ"-tilde c   = [c]--umlaut :: Char -> String-umlaut 'A' = "Ä"-umlaut 'E' = "Ë"-umlaut 'I' = "Ï"-umlaut 'O' = "Ö"-umlaut 'U' = "Ü"-umlaut 'a' = "ä"-umlaut 'e' = "ë"-umlaut 'i' = "ï"-umlaut 'o' = "ö"-umlaut 'u' = "ü"-umlaut c   = [c]--dot :: Char -> String-dot 'C' = "Ċ"-dot 'c' = "ċ"-dot 'E' = "Ė"-dot 'e' = "ė"-dot 'G' = "Ġ"-dot 'g' = "ġ"-dot 'I' = "İ"-dot 'Z' = "Ż"-dot 'z' = "ż"-dot c   = [c]--macron :: Char -> String-macron 'A' = "Ā"-macron 'E' = "Ē"-macron 'I' = "Ī"-macron 'O' = "Ō"-macron 'U' = "Ū"-macron 'a' = "ā"-macron 'e' = "ē"-macron 'i' = "ī"-macron 'o' = "ō"-macron 'u' = "ū"-macron c   = [c]--cedilla :: Char -> String-cedilla 'c' = "ç"-cedilla 'C' = "Ç"-cedilla 's' = "ş"-cedilla 'S' = "Ş"-cedilla 't' = "ţ"-cedilla 'T' = "Ţ"-cedilla 'e' = "ȩ"-cedilla 'E' = "Ȩ"-cedilla 'h' = "ḩ"-cedilla 'H' = "Ḩ"-cedilla 'o' = "o̧"-cedilla 'O' = "O̧"-cedilla c   = [c]--hacek :: Char -> String-hacek 'A' = "Ǎ"-hacek 'a' = "ǎ"-hacek 'C' = "Č"-hacek 'c' = "č"-hacek 'D' = "Ď"-hacek 'd' = "ď"-hacek 'E' = "Ě"-hacek 'e' = "ě"-hacek 'G' = "Ǧ"-hacek 'g' = "ǧ"-hacek 'H' = "Ȟ"-hacek 'h' = "ȟ"-hacek 'I' = "Ǐ"-hacek 'i' = "ǐ"-hacek 'j' = "ǰ"-hacek 'K' = "Ǩ"-hacek 'k' = "ǩ"-hacek 'L' = "Ľ"-hacek 'l' = "ľ"-hacek 'N' = "Ň"-hacek 'n' = "ň"-hacek 'O' = "Ǒ"-hacek 'o' = "ǒ"-hacek 'R' = "Ř"-hacek 'r' = "ř"-hacek 'S' = "Š"-hacek 's' = "š"-hacek 'T' = "Ť"-hacek 't' = "ť"-hacek 'U' = "Ǔ"-hacek 'u' = "ǔ"-hacek 'Z' = "Ž"-hacek 'z' = "ž"-hacek c   = [c]--breve :: Char -> String-breve 'A' = "Ă"-breve 'a' = "ă"-breve 'E' = "Ĕ"-breve 'e' = "ĕ"-breve 'G' = "Ğ"-breve 'g' = "ğ"-breve 'I' = "Ĭ"-breve 'i' = "ĭ"-breve 'O' = "Ŏ"-breve 'o' = "ŏ"-breve 'U' = "Ŭ"-breve 'u' = "ŭ"-breve c   = [c]+{-# LANGUAGE ScopedTypeVariables #-}+{-# LANGUAGE OverloadedStrings #-}+{-+Copyright (C) 2009 John MacFarlane <jgm@berkeley.edu>++This program is free software; you can redistribute it and/or modify+it under the terms of the GNU General Public License as published by+the Free Software Foundation; either version 2 of the License, or+(at your option) any later version.++This program is distributed in the hope that it will be useful,+but WITHOUT ANY WARRANTY; without even the implied warranty of+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the+GNU General Public License for more details.++You should have received a copy of the GNU General Public License+along with this program; if not, write to the Free Software+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA+-}++{- | Functions for parsing a LaTeX formula to a Haskell representation.+-}++module Text.TeXMath.Readers.TeX (readTeX)+where++import Data.List (intercalate, intersperse, find, foldl')+import Control.Monad+import Data.Char (isDigit, isAscii, isLetter)+import qualified Data.Map as M+import qualified Data.Text as T+import Data.Text (Text)+import Data.Ratio ((%))+import Data.Maybe (catMaybes, fromJust, mapMaybe)+import Text.Parsec hiding (label)+import Text.Parsec.Error+import Text.Parsec.Text+import Text.TeXMath.Types+import Data.Functor (($>))+import qualified Text.TeXMath.Shared as S+import Text.TeXMath.Readers.TeX.Macros (applyMacros, parseMacroDefinitions)+import Text.TeXMath.Unicode.ToTeX (getSymbolType)+import Text.TeXMath.Unicode.ToUnicode (toUnicode)+import Text.TeXMath.Shared (getSpaceChars)+import Data.Generics (everywhere, mkT)+import Text.TeXMath.Readers.TeX.Commands ( styleOps, textOps, enclosures,+                                           operators, symbols, siUnitMap )+import Data.Text.Read (decimal)++type TP = Parser++-- The parser++primes :: TP Exp+primes = do+  ESymbol Pun . getPrimes <$> (many1 (char '\'') <* ignorable)++getPrimes :: [Char] -> Text+getPrimes cs =+  case cs of+    "" -> ""+    "'" -> "\x2032"+    "''" -> "\x2033"+    "'''" -> "\x2034"+    "''''" -> "\x2057"+    _ -> "\x2057" <> getPrimes (drop 4 cs)++expr1 :: TP Exp+expr1 = choice+          [ inbraces+          , variable+          , number+          , unicode+          , operator+          , bareSubSup+          , enclosure+          , hyperref+          , command+          ]++-- | Parse a formula, returning a list of 'Exp'.+readTeX :: Text -> Either Text [Exp]+readTeX inp =+  let (ms, rest) = parseMacroDefinitions inp in+  either (Left . showParseError inp) (Right . fixBinList)+    $ parse formula "formula" $ applyMacros ms rest+ where+  -- | Convert Bin symbol type in certain contexts (#176, #234).+  fixBinList :: [Exp] -> [Exp]+  fixBinList =+    reverse . foldl' goExp [] . everywhere (mkT fixBins)++  -- TeXBook:+  -- 5. If the current item is a Bin atom, and if this was the first+  -- atom in the list, or if the most recent previous atom was Bin, Op,+  -- Rel, Open, or Punct, change the current Bin to Ord and continue with+  -- Rule 14. Otherwise continue with Rule 17.+  -- 6. If the current item is a Rel or Close or Punct atom, and if+  -- the most recent previous atom was Bin, change that previous Bin+  -- to Ord. Continue with Rule 17.++  fixBins :: Exp -> Exp+  fixBins e =+    case e of+      EGrouped es+        -> EGrouped (reverse $ foldl' goExp [] es)+      EDelimited op cl des+        -> EDelimited op cl (reverse $ foldl' goInDel [] des)+      EArray als alines+        -> EArray als (map (map (reverse . foldl' goExp [])) alines)+      EStyled tt es+        -> EStyled tt (reverse $ foldl' goExp [] es)+      _ -> e++  goExp :: [Exp] -> Exp -> [Exp]+  goExp [] (ESymbol Bin t) = [ESymbol Ord t]+  goExp  accum@(ESymbol ty _ : _) (ESymbol Bin t)+    | ty `elem` [Bin, Op, Rel, Open, Pun]+      = ESymbol Ord t : accum+  goExp (ESymbol Bin t' : rest) (ESymbol ty t)+    | ty `elem` [Rel, Close, Pun]+      = ESymbol ty t : ESymbol Ord t' : rest+  goExp xs x = x : xs++  goInDel :: [InEDelimited] -> InEDelimited -> [InEDelimited]+  goInDel [] (Right (ESymbol Bin t)) = [Right (ESymbol Ord t)]+  goInDel accum@(Left _ : _) (Right (ESymbol Bin t))+    = Right (ESymbol Ord t) : accum+  goInDel accum@(Right (ESymbol ty _) : _) (Right (ESymbol Bin t))+    | ty `elem` [Bin, Op, Rel, Open, Pun]+      = Right (ESymbol Ord t) : accum+  goInDel (Right (ESymbol Bin t') : rest) (Right (ESymbol ty t))+    | ty `elem` [Rel, Close, Pun]+      = Right (ESymbol ty t) : Right (ESymbol Ord t') : rest+  goInDel xs x = x : xs++showParseError :: Text -> ParseError -> Text+showParseError inp pe =+  snippet <> "\n" <> caretline <>+    T.pack (showErrorMessages "or" "unknown" "expecting" "unexpected" "eof"+            (errorMessages pe))+  where errln = sourceLine (errorPos pe)+        errcol = sourceColumn (errorPos pe)+        snipoffset = max 0 (errcol - 20)+        inplns = T.lines inp+        ln = if length inplns >= errln+                then inplns !! (errln - 1)+                else ""  -- should not happen+        snippet = T.take 40 $ T.drop snipoffset ln+        caretline = T.replicate (errcol - snipoffset - 1) " " <> "^"++anyCtrlSeq :: TP Text+anyCtrlSeq = lexeme $ try $ do+  char '\\'+  res <- count 1 (satisfy (not . isLetter)) <|> many1 (satisfy isLetter)+  return $ T.pack $ '\\' : res++ctrlseq :: String -> TP String+ctrlseq s = lexeme $ try $ do+  result <- string ('\\':s)+  case s of+       [c] | not (isLetter c) -> return ()+       _ -> (do pos <- getPosition+                letter+                setPosition pos+                mzero <?> ("non-letter after \\" ++ s))+            <|> return ()+  return result++ignorable :: TP ()+ignorable = skipMany $+        comment+    <|> label+    <|> tag+    <|> () <$ ctrlseq "nonumber"+    <|> (skipMany1 space <?> "whitespace")+    <|> (() <$ ctrlseq "allowbreak")++comment :: TP ()+comment = char '%' *> skipMany (noneOf "\n") *> optional newline++label :: TP ()+label = ctrlseq "label" *> braces (skipMany (noneOf "}"))++tag :: TP ()+tag = ctrlseq "tag" *> optional (char '*') *> braces (skipMany (noneOf "}"))++unGrouped :: Exp -> [Exp]+unGrouped (EGrouped xs) = xs+unGrouped x = [x]++formula :: TP [Exp]+formula = unGrouped <$> (ignorable *> manyExp expr <* eof)++expr :: TP Exp+expr = do+  optional (ctrlseq "displaystyle" <|> ctrlseq "textstyle" <|>+            ctrlseq "scriptstyle" <|> ctrlseq "scriptscriptstyle")+  (a, convertible) <- try (braces operatorname) -- needed because macros add {}+                 <|> operatorname+                 <|> ((,False) <$> expr1)+  limits <- limitsIndicator+  subSup limits convertible a <|> superOrSubscripted limits convertible a <|> return a++hyperref :: TP Exp+hyperref = do+  ctrlseq "hyperref"  -- we just ignore hyperref, see #186+  optional inbrackets+  inbraces++command :: TP Exp+command = try $ do+  c <- anyCtrlSeq+  guard $ c /= "\\end" -- handled in environment+       && c /= "\\operatorname" -- handled in expr+  choice+    [ text c+    , styled c+    , colored c+    , root c+    , xspace c+    , mathop c+    , phantom c+    , boxed c+    , cancel c+    , binary c+    , genfrac c+    , substack c+    , environment c+    , ensuremath c+    , scaled c+    , negated c+    , siunitx c+    , arrow c+    , tSymbol c+    ] <|> unexpected ("control sequence " <> T.unpack c)+++-- | Parser for \operatorname command.+-- Returns a tuple of EMathOperator name and Bool depending on the flavor+-- of the command:+--+--     - True for convertible operator (\operator*)+--+--     - False otherwise+operatorname :: TP (Exp, Bool)+operatorname = do+    ctrlseq "operatorname"+    -- these are slightly different but we won't worry about that here...+    convertible <- (char '*' >> spaces >> return True) <|> return False+    tok' <- texSymbol <|> braces (manyExp expr1) <|> texChar+    tok'' <- (EMathOperator <$> (expToOperatorName tok'))+           <|> return (EStyled TextNormal [tok'])+    return (tok'', convertible)++-- | Converts identifiers, symbols and numbers to a flat string.+-- Fails if the expression contains anything else.+expToOperatorName :: MonadPlus m => Exp -> m Text+expToOperatorName e = case e of+            EGrouped xs -> T.concat <$> mapM (toStr TextNormal) xs+            _ -> toStr TextNormal e+    where+          toStr sty (EIdentifier s)     = return $ toUnicode sty s+          toStr _   (EText sty' s)      = return $ toUnicode sty' s+          toStr sty (ENumber s)         = return $ toUnicode sty s+          toStr sty (EMathOperator s)   = return $ toUnicode sty s+          -- handle special characters+          toStr _ (ESymbol _ "\x2212")  = return "-"+          toStr _ (ESymbol _ "\x2032")  = return "'"+          toStr _ (ESymbol _ "\x2033")  = return "''"+          toStr _ (ESymbol _ "\x2034")  = return "'''"+          toStr _ (ESymbol _ "\x2057")  = return "''''"+          toStr _ (ESymbol _ "\x02B9")  = return "'"+          toStr sty (ESymbol _ s)       = return $ toUnicode sty s+          toStr _ (ESpace n)            = return $ getSpaceChars n+          toStr _ (EStyled sty' exps)   = T.concat <$>+                                            sequence (map (toStr sty') exps)+          toStr _   _                   = mzero++bareSubSup :: TP Exp+bareSubSup = subSup Nothing False (EIdentifier "")+  <|> superOrSubscripted Nothing False (EIdentifier "")++limitsIndicator :: TP (Maybe Bool)+limitsIndicator =+   (ctrlseq "limits" >> return (Just True))+  <|> (ctrlseq "nolimits" >> return (Just False))+  <|> return Nothing++binomCmd :: TP Text+binomCmd = oneOfCommands (M.keys binomCmds)++binomCmds :: M.Map Text (Exp -> Exp -> Exp)+binomCmds = M.fromList+            [ ("\\choose", \x y ->+                EDelimited "(" ")" [Right (EFraction NoLineFrac x y)])+            , ("\\brack", \x y ->+                EDelimited "[" "]" [Right (EFraction NoLineFrac x y)])+            , ("\\brace", \x y ->+                EDelimited "{" "}" [Right (EFraction NoLineFrac x y)])+            , ("\\bangle", \x y ->+                EDelimited "\x27E8" "\x27E9" [Right (EFraction NoLineFrac x y)])+            ]++genfrac :: Text -> TP Exp+genfrac "\\genfrac" = do+  let opener = option "" $+                T.singleton <$> ((char '\\' >> anyChar) <|> anyChar)+  let closer = option "" $+                T.singleton <$> ((char '\\' >> anyChar) <|> anyChar)+  openDelim <- braces opener <|> opener+  closeDelim <- braces closer <|> closer+  bar <- False <$ try (braces (string "0pt")) <|> True <$ texToken+  displayStyle <- True <$ try (braces (char '0')) <|> False <$ texToken+  x <- texToken+  y <- texToken+  let fracType = case (bar, displayStyle) of+                      (False, _)   -> NoLineFrac+                      (True, True) -> DisplayFrac+                      _            -> NormalFrac+  return $ EDelimited openDelim closeDelim+                      [Right (EFraction fracType x y)]+genfrac _ = mzero++substack :: Text -> TP Exp+substack "\\substack" = do+  formulas <- braces $ ignorable >> (manyExp expr) `sepEndBy` endLine+  return $ EArray [AlignCenter] $ map (\x -> [[x]]) formulas+substack _ = mzero++asGroup :: [Exp] -> Exp+asGroup [x] = x+asGroup xs = EGrouped xs++-- variant of many that is sensitive to \choose and other such commands+manyExp' :: Bool -> TP Exp -> TP Exp+manyExp' requireNonempty p = do+  initial <- if requireNonempty+                then many1 (notFollowedBy binomCmd >> p)+                else many (notFollowedBy binomCmd >> p)+  let withCmd :: Text -> TP Exp+      withCmd cmd =+         case M.lookup cmd binomCmds of+              Just f  -> f <$> (asGroup <$> pure initial)+                           <*> (asGroup <$> many p)+              Nothing -> fail $ "Unknown command " <> T.unpack cmd+  (binomCmd >>= withCmd) <|> return (asGroup initial)++manyExp :: TP Exp -> TP Exp+manyExp = manyExp' False++many1Exp :: TP Exp -> TP Exp+many1Exp = manyExp' True++inbraces :: TP Exp+inbraces = braces (ignorable *> manyExp expr)++texToken :: TP Exp+texToken = texSymbol <|> inbraces <|> texChar++-- Remove superfluous EGrouped if present.+deGroup :: Exp -> Exp+deGroup (EGrouped [x]) = x+deGroup x = x++texChar :: TP Exp+texChar =+  do+    c <- noneOf "\n\t\r \\{}" <* spaces+    return $ (if isDigit c then ENumber else EIdentifier) $ T.singleton c++inbrackets :: TP Exp+inbrackets = (brackets $ manyExp $ notFollowedBy (char ']') >> expr)++number :: TP Exp+number = lexeme $ ENumber <$> try decimalNumber+  where decimalNumber = do+          xs <- many digit+          ys <- option [] $ try (char '.' >> (('.':) <$> many1 digit))+          case xs ++ ys of+               []  -> mzero+               zs  -> return $ T.pack zs++enclosure :: TP Exp+enclosure = delimited <|> delimitedImplicit <|> basicEnclosure++basicEnclosure :: TP Exp+basicEnclosure = try $ do+  possibleEncl <- lexeme (anyCtrlSeq <|> countChar 1 (oneOf "()[]|"))+  case M.lookup possibleEncl enclosures of+       Just x  -> return x+       Nothing -> mzero++fence :: String -> TP Text+fence cmd = do+  symbol cmd+  let nullDelim = try (ESymbol Open "" <$ symbol ".")+      angleDelim = try $ choice+        [ ESymbol Open "\x27E8" <$ symbol "<"+        , ESymbol Close "\x27E9" <$ symbol ">"+        ]+  enc <- basicEnclosure <|> nullDelim <|> angleDelim+  case enc of+       ESymbol Open x  -> return x+       ESymbol Close x -> return x+       _ -> mzero++middle :: TP Text+middle = fence "\\middle"++right :: TP Text+right = fence "\\right"++delimited :: TP Exp+delimited = do+  openc <- try $ fence "\\left"+  contents <- concat <$>+              many (try $ ((:[]) . Left  <$> middle)+                      <|> (map Right . unGrouped <$>+                             many1Exp (notFollowedBy right *> expr)))+  closec <- right <|> return ""+  return $ EDelimited openc closec contents++delimitedImplicit :: TP Exp+delimitedImplicit = try $ do+  (opent, closer) <- (("\x2016", "\x2016" <$ ctrlseq "rVert") <$ ctrlseq "lVert")+  contents <- concat <$>+              many (try $ ((:[]) . Left  <$> middle)+                      <|> (map Right . unGrouped <$>+                             many1Exp (notFollowedBy closer *> expr)))+  closet <- T.pack <$> closer+  return $ EDelimited opent closet contents++scaled :: Text -> TP Exp+scaled cmd = do+  case S.getScalerValue cmd of+       Just r  -> EScaled r <$> (basicEnclosure <|> operator)+       Nothing -> mzero++endLine :: TP Char+endLine = try $ do+  symbol "\\\\"+  optional inbrackets  -- can contain e.g. [1.0in] for a line height, not yet supported+  return '\n'++-- Within environments provided by AMSmath, spaces are not allowed between+-- the double-backslash command and its optional argument.+endLineAMS :: TP Char+endLineAMS = lexeme $ try $ do+  string "\\\\"+  skipMany comment+  optional inbrackets  -- can contain e.g. [1.0in] for a line height, not yet supported+  return '\n'++arrayLine :: TP ArrayLine+arrayLine =+  sepBy1+    (ignorable' *>+      (unGrouped <$>+        manyExp (try (notFollowedBy (('\n' <$ ctrlseq "end") <|> endLine)) *>+                   expr <* ignorable'))) (symbol "&")+  where ignorable' = ignorable >> optional (try (ctrlseq "hline" >> ignorable'))+  -- we don't represent the line, but it shouldn't crash parsing++arrayAlignments :: TP [Alignment]+arrayAlignments = mconcat <$>+  braces (many (+                ((:[]) . letterToAlignment <$> letter)+            <|> ([] <$ char '|')+            <|> ([] <$ oneOf " \t")+            <|> ([] <$ ((char '@' <|> char '!') <* inbraces))+            <|> (do char '*'+                    num <- T.pack <$> braces (many1 digit)+                    cols <- arrayAlignments+                    case decimal num of+                      Left msg -> fail msg+                      Right (n :: Int, _)+                               -> return $ mconcat $ replicate n cols)+               ))+ where+   letterToAlignment 'l' = AlignLeft+   letterToAlignment 'c' = AlignCenter+   letterToAlignment 'r' = AlignRight+   letterToAlignment _   = AlignCenter++environment :: Text -> TP Exp+environment "\\begin" = do+  name <- braces (oneOfStrings (M.keys environments) <* optional (char '*'))+  spaces+  case M.lookup name environments of+        Just env -> do+          result <- env+          spaces+          ctrlseq "end"+          braces (textStr name <* optional (char '*'))+          spaces+          return result+        Nothing  -> mzero  -- should not happen+environment _ = mzero++environments :: M.Map Text (TP Exp)+environments = M.fromList+  [ ("array", stdarray)+  , ("eqnarray", eqnarray)+  , ("align", align)+  , ("aligned", align)+  , ("alignat", inbraces *> spaces *> align)+  , ("alignedat", inbraces *> spaces *> align)+  , ("flalign", flalign)+  , ("flaligned", flalign)+  , ("cases", cases)+  , ("matrix", matrixWith "" "")+  , ("smallmatrix", matrixWith "" "")+  , ("pmatrix", matrixWith "(" ")")+  , ("bmatrix", matrixWith "[" "]")+  , ("Bmatrix", matrixWith "{" "}")+  , ("vmatrix", matrixWith "\x2223" "\x2223")+  , ("Vmatrix", matrixWith "\x2225" "\x2225")+  , ("split", align)+  , ("multline", gather)+  , ("multlined", gather)+  , ("gather", gather)+  , ("gathered", gather)+  , ("equation", equation)+  ]++alignsFromRows :: Alignment -> [ArrayLine] -> [Alignment]+alignsFromRows _ [] = []+alignsFromRows defaultAlignment (r:_) = replicate (length r) defaultAlignment++matrixWith :: Text -> Text -> TP Exp+matrixWith opendelim closedelim = do+  lines' <- sepEndBy arrayLine endLineAMS+  let aligns = alignsFromRows AlignCenter lines'+  return $ if T.null opendelim && T.null closedelim+              then EArray aligns lines'+              else EDelimited opendelim closedelim+                       [Right $ EArray aligns lines']++stdarray :: TP Exp+stdarray = do+  aligns <- arrayAlignments+  lines' <- sepEndBy1 arrayLine endLine+  return $ EArray aligns lines'++gather :: TP Exp+gather = do+  rows <- sepEndBy arrayLine endLineAMS+  return $ EArray (alignsFromRows AlignCenter rows) rows++equation :: TP Exp+equation = do+  notFollowedBy (ctrlseq "end" >> return '\n')+  manyExp (notFollowedBy endLine >> expr)++eqnarray :: TP Exp+eqnarray = do+  rows <- sepEndBy1 arrayLine endLine+  let n = maximum $ map length rows+  return $ EArray (take n $ cycle [AlignRight, AlignCenter, AlignLeft]) rows++align :: TP Exp+align = do+  rows <- sepEndBy1 arrayLine endLineAMS+  let n = maximum $ map length rows+  return $ EArray (take n $ cycle [AlignRight, AlignLeft]) rows++flalign :: TP Exp+flalign = do+  rows <- sepEndBy1 arrayLine endLineAMS+  let n = maximum $ map length rows+  return $ EArray (take n $ cycle [AlignLeft, AlignRight]) rows++cases :: TP Exp+cases = do+  rs <- sepEndBy1 arrayLine endLineAMS+  return $ EDelimited "{" "" [Right $ EArray (alignsFromRows AlignLeft rs) rs]++variable :: TP Exp+variable = do+  v <- letter+  spaces+  return $ EIdentifier $ T.singleton v++isConvertible :: Exp -> Bool+isConvertible (EMathOperator x) = x `elem` convertibleOps+  where convertibleOps = [ "lim","liminf","limsup","inf","sup"+                         , "min","max","Pr","det","gcd" ]+isConvertible (ESymbol Op x) = x `elem` convertibleSyms+  where convertibleSyms =+         ["\x2211", "\x220F", "\x2210", -- \sum \prod \amalg+          "\x22C0", "\x22C1", -- bigwedge \bigvee+          "\x22C2", "\x22C3", -- \bigcap \bigcup+          "\x2A05", "\x2A06"] -- \bigsqcap \bisqcup+isConvertible _ = False++-- check if sub/superscripts should always be under and over the expression+isUnderover :: Exp -> Bool+isUnderover (EOver _ _ (ESymbol TOver "\xFE37")) = True   -- \overbrace+isUnderover (EOver _ _ (ESymbol TOver "\x23B4")) = True   -- \overbracket+isUnderover (EOver _  _ (ESymbol TOver "\x23DE")) = True  -- \overbrace+isUnderover (EUnder _ _ (ESymbol TUnder "\xFE38")) = True  -- \underbrace+isUnderover (EUnder _ _ (ESymbol TUnder "\x23B5")) = True  -- \underbracket+isUnderover (EUnder _  _ (ESymbol TUnder "\x23DF")) = True  -- \underbrace+isUnderover _ = False++subSup :: Maybe Bool -> Bool -> Exp -> TP Exp+subSup limits convertible a = try $ do+  let sub1 = symbol "_" >> expr1  -- see #273+  let sup1 = (symbol "^" >> expr1) <|> primes+  (b,c) <- try (do {m <- sub1; n <- sup1; return (m,n)})+       <|> (do {n <- sup1; m <- sub1; return (m,n)})+  return $ case limits of+            Just True  -> EUnderover False a b c+            Nothing | convertible || isConvertible a -> EUnderover True a b c+                    | isUnderover a -> EUnderover False a b c+            _          -> ESubsup a b c++superOrSubscripted :: Maybe Bool -> Bool -> Exp -> TP Exp+superOrSubscripted limits convertible a = try $ do+  (c,b) <- ((,) <$> oneOf "^_" <*> (spaces >> expr))+          <|> (('^',) <$> primes)+  case c of+       '^' -> return $ case limits of+                        Just True  -> EOver False a b+                        Nothing+                          | convertible || isConvertible a -> EOver True a b+                          | isUnderover a -> EOver False a b+                        _          -> ESuper a b+       '_' -> return $ case limits of+                        Just True  -> EUnder False a b+                        Nothing+                          | convertible || isConvertible a -> EUnder True a b+                          | isUnderover a -> EUnder False a b+                        _          -> ESub a b+       _   -> mzero++unicode :: TP Exp+unicode = lexeme $+  do+    c <- satisfy (not . isAscii)+    return (ESymbol (getSymbolType c) $ T.singleton c)++ensuremath :: Text -> TP Exp+ensuremath "\\ensuremath" = inbraces+ensuremath _ = mzero++phantom :: Text -> TP Exp+phantom "\\phantom" = EPhantom <$> texToken+phantom _ = mzero++boxed :: Text -> TP Exp+boxed "\\boxed" = EBoxed <$> texToken+boxed _ = mzero++cancel :: Text -> TP Exp+cancel c = do+  case c of+    "\\cancel"  -> ECancel ForwardSlash <$> texToken+    "\\bcancel" -> ECancel BackSlash <$> texToken+    "\\xcancel" -> ECancel XSlash <$> texToken+    _           -> mzero++textContents :: (Text -> Exp) -> TP [Exp]+textContents op = char '{' *> manyTill chunk (char '}')+ where+   chunk = (op . T.concat <$> many1 textual)+            <|> textSpaceCommand+            <|> (char '{' *> (asGroup <$> manyTill chunk (char '}')))+            <|> innermath++textSpaceCommand :: TP Exp+textSpaceCommand = try $ do+  char '\\'+  choice+   [ ESpace (2 % 9) <$ char ' '+   , ESpace ((-1) % 6) <$ char '!'+   , ESpace (1 % 6) <$ char ','+   , ESpace (2 % 9) <$ char ':'+   , ESpace (5 % 18) <$ char ';'+   , ESpace (2 % 9) <$ char '>'+   ]++text :: Text -> TP Exp+text c = do+  op <- maybe mzero return $ M.lookup c textOps+  contents <- textContents op  -- braced+           <|> ((:[]) <$>      -- nonbraced token+                (  (op <$> textCommand)+               <|> textSpaceCommand+               <|> (op . T.singleton <$> noneOf "\n\t\r \\{}")+                ))+  spaces+  case contents of+       []   -> return (op "")+       [x]  -> return x+       xs   -> return (EGrouped xs)++innermath :: TP Exp+innermath = choice $ map innerMathWith+              [("$","$"),("$$","$$"),("\\(","\\)"),("\\[","\\]")]++innerMathWith :: (String, String) -> TP Exp+innerMathWith (opener, closer) = do+  try (string opener)+  e <- manyExp expr+  string closer+  return e++styled :: Text -> TP Exp+styled c = do+  case M.lookup c styleOps of+       Just f   -> do+         x <- texSymbol <|> inbraces <|> texChar+         return $ case x of+                       EGrouped xs -> f xs+                       _           -> f [x]+       Nothing  -> mzero++colored :: Text -> TP Exp+colored "\\color" = do+  _ <- inbraces -- skip the color+  -- in the future we might add color to the types or to the styles+  texSymbol <|> inbraces <|> texChar+colored _ = mzero++-- note: sqrt can be unary, \sqrt{2}, or binary, \sqrt[3]{2}+root :: Text -> TP Exp+root c = do+  guard $ c == "\\sqrt" || c == "\\surd"+  (ERoot <$> inbrackets <*> texToken) <|> (ESqrt <$> texToken)++xspace :: Text -> TP Exp+xspace "\\enspace" = return $ ESpace (1/2)+xspace "\\mspace" =+  braces $ do+    len <- many1 digit+    lexeme $ string "mu"+    case reads len of+       ((n :: Integer,[]):_) -> return $ ESpace (fromIntegral n/18)+       _                     -> mzero+xspace "\\hspace" = do+  braces $ do+    neg <- option 1 $ (-1) <$ char '-'+    as <- option "" $ many1 digit+    bs <- option "" $ char '.' *> many1 digit+    let denominator = 10^(length bs)+    as' <- if null as then pure 0 else stringToInteger as+    bs' <- if null bs then pure 0 else stringToInteger bs+    let numerator = (as' * denominator) + bs'+    let n = neg * (numerator % denominator)+    scaleFactor <- lexeme $+           1      <$ (string "em")+      <|> (1/12)  <$ (string "pt")+      <|> 6       <$ (string "in")+      <|> (50/21) <$ (string "cm")+    return $ ESpace (n * scaleFactor)+xspace _ = mzero++stringToInteger :: String -> TP Integer+stringToInteger s =+  case reads s of+    ((n :: Integer, []):_) -> pure n+    _ -> fail $ "Could not read " <> s <> " as Integer."++mathop :: Text -> TP Exp+mathop c =+  case c of+    "\\mathop"    -> mathopWith Op+    "\\mathrel"   -> mathopWith Rel+    "\\mathbin"   -> mathopWith Bin+    "\\mathord"   -> mathopWith Ord+    "\\mathopen"  -> mathopWith Open+    "\\mathclose" -> mathopWith Close+    "\\mathpunct" -> mathopWith Pun+    _              -> mzero++mathopWith :: TeXSymbolType -> TP Exp+mathopWith ty = do+  e <- inbraces <|> expr1+  let es' = case e of+                 EGrouped xs -> xs+                 x           -> [x]+  case es' of+     [ESymbol _ x]   -> return $ ESymbol ty x+     [EIdentifier x] -> return $ ESymbol ty x+     [EText TextNormal x] -> return $ ESymbol ty x+     [EText sty x] -> return $ EStyled sty [ESymbol ty x]+     xs | ty == Op  -> return $ EMathOperator $+                         T.concat $ mapMaybe expToOperatorName xs+        | otherwise -> return $ EGrouped xs++binary :: Text -> TP Exp+binary c = do+  case c of+     "\\overset"  -> do+       a <- texToken+       b <- texToken+       return $ EOver False b a+     "\\stackrel" -> do+       a <- texToken+       b <- texToken+       return $ EOver False b a+     "\\underset" -> do+       a <- texToken+       b <- texToken+       return $ EUnder False b a+     "\\frac"     -> EFraction NormalFrac <$> texToken <*> texToken+     "\\tfrac"    -> EFraction InlineFrac <$> texToken <*> texToken+     "\\dfrac"    -> EFraction DisplayFrac <$> texToken <*> texToken+     "\\binom"    -> do+       a <- texToken+       b <- texToken+       return $ EDelimited "(" ")" [Right (EFraction NoLineFrac a b)]+     _            -> mzero++texSymbol :: TP Exp+texSymbol = operator <|>+            try (do c <- anyCtrlSeq+                    tSymbol c <|> negated c)++negated :: Text -> TP Exp+negated "\\not" = do+  sym <- texSymbol <|> texChar+  case sym of+    ESymbol Rel x -> return $ ESymbol Rel $ toNeg x+    EText tt x    -> return $ EText tt $ toNeg x+    ENumber x     -> return $ ENumber $ toNeg x+    EIdentifier x -> return $ EIdentifier $ toNeg x+    _             -> mzero+negated _ = mzero++toNeg :: Text -> Text+toNeg x = case x of+            "\x2203" -> "\x2204"+            "\x2208" -> "\x2209"+            "\x220B" -> "\x220C"+            "\x2223" -> "\x2224"+            "\x2225" -> "\x2226"+            "\x2243" -> "\x2244"+            "\x2245" -> "\x2246"+            "\x2248" -> "\x2249"+            "="      -> "\x2260"+            "\x2261" -> "\x2262"+            "<"      -> "\x226E"+            ">"      -> "\x226F"+            "\x2264" -> "\x2270"+            "\x2265" -> "\x2271"+            "\x2272" -> "\x2274"+            "\x2273" -> "\x2275"+            "\x227A" -> "\x2280"+            "\x227B" -> "\x2281"+            "\x2282" -> "\x2284"+            "\x2283" -> "\x2285"+            "\x2286" -> "\x2288"+            "\x2287" -> "\x2289"+            "\x227C" -> "\x22E0"+            "\x227D" -> "\x22E1"+            "\x2291" -> "\x22E2"+            "\x2292" -> "\x22E3"+            _        -> x <> "\x0338"+++oneOfCommands :: [Text] -> TP Text+oneOfCommands cmds = try $ do+  cmd <- oneOfStrings cmds+  case T.unpack cmd of+    ['\\',c] | not (isLetter c) -> return ()+    cmd' -> (do pos <- getPosition+                letter+                setPosition pos+                mzero <?> ("non-letter after " <> cmd'))+         <|> return ()+  spaces+  return cmd++oneOfStrings' :: (Char -> Char -> Bool) -> [(String, Text)] -> TP Text+oneOfStrings' _ [] = mzero+oneOfStrings' matches strs = try $ do+    c <- anyChar+    let strs' = [(xs, t) | ((x:xs), t) <- strs, x `matches` c]+    case strs' of+      []  -> mzero+      _   -> oneOfStrings' matches strs'+             <|> case find (null . fst) strs' of+                   Just (_, t) -> return t+                   Nothing     -> mzero++-- | Parses one of a list of strings.  If the list contains+-- two strings one of which is a prefix of the other, the longer+-- string will be matched if possible.+oneOfStrings :: [Text] -> TP Text+oneOfStrings strs = oneOfStrings' (==) strs' <??> (intercalate ", " $ map show strs)+  where+    strs' = map (\x -> (T.unpack x, x)) strs++-- | Like '(<?>)', but moves position back to the beginning of the parse+-- before reporting the error.+(<??>) :: Monad m => ParsecT s u m a -> String -> ParsecT s u m a+(<??>) p expected = do+  pos <- getPosition+  p <|> (setPosition pos >> mzero <?> expected)++infix 0 <??>++tSymbol :: Text -> TP Exp+tSymbol sym =+  case M.lookup sym symbols of+       Just acc@(ESymbol Accent _) ->+         (\t -> EOver False t acc) <$> texToken+       Just acc@(ESymbol TUnder _) ->+         (\t -> EUnder False t acc) <$> texToken+       Just acc@(ESymbol TOver _) ->+         (\t -> EOver False t acc) <$> texToken+       Just (ESymbol Alpha t) -> return $ EIdentifier t -- see #256+       Just x  -> return x+       Nothing+         | sym == "\\mod" -> do+             x <- deGroup <$> expr+             return $ EGrouped+               [ESpace (8/18), EMathOperator "mod", ESpace (4/18), x]+         | sym == "\\bmod" -> do+             x <- deGroup <$> expr+             return $ EGrouped+               [ESpace (4/18), EMathOperator "mod", ESpace (4/18), x]+         | sym == "\\pmod" -> do+             x <- deGroup <$> expr+             return $ EGrouped+               [ESpace (4/18), ESymbol Open "(", EMathOperator "mod",+                ESpace (4/18), x, ESymbol Close ")"]+         | sym == "\\pod"  -> do+             x <- deGroup <$> expr+             return $ EGrouped+               [ESpace (4/18), ESymbol Open "(", x, ESymbol Close ")"]+         | otherwise -> mzero++operator :: TP Exp+operator = do+  sym <- lexeme (oneOfStrings $ M.keys operators)+  return $ fromJust (M.lookup sym operators)++lexeme :: TP a -> TP a+lexeme p = p <* ignorable++braces :: TP a -> TP a+braces p = lexeme $ char '{' *> spaces *> p <* spaces <* char '}'++brackets :: TP a -> TP a+brackets p = lexeme $ char '[' *> spaces *> p <* spaces <* char ']'++textStr :: Text -> TP Text+textStr t = string (T.unpack t) $> t++countChar :: Int -> TP Char -> TP Text+countChar n = fmap T.pack . count n++symbol :: String -> TP String+symbol s = lexeme $ try $ string s++-- text mode parsing++textual :: TP Text+textual = regular <|> sps <|> ligature <|> textCommand+            <?> "text"++sps :: TP Text+sps = " " <$ skipMany1 (oneOf " \t\n")++regular :: TP Text+regular = T.pack <$> many1 (noneOf "`'-~${}\\ \t")++ligature :: TP Text+ligature = try ("\x2014" <$ string "---")+       <|> try ("\x2013" <$ string "--")+       <|> try (textStr "-")+       <|> try ("\x201C" <$ string "``")+       <|> try ("\x201D" <$ string "''")+       <|> try ("\x2019" <$ string "'")+       <|> try ("\x2018" <$ string "`")+       <|> try ("\xA0"   <$ string "~")++textCommand :: TP Text+textCommand = do+  cmd <- oneOfCommands (M.keys textCommands)+  optional $ try (char '{' >> spaces >> char '}')+  case M.lookup cmd textCommands of+       Nothing -> fail $ T.unpack $ "Unknown control sequence " <> cmd+       Just c  -> c++tok :: TP Char+tok = (try $ char '{' *> spaces *> anyChar <* spaces <* char '}')+   <|> anyChar++textCommands :: M.Map Text (TP Text)+textCommands = M.fromList+  [ ("\\#", return "#")+  , ("\\$", return "$")+  , ("\\%", return "%")+  , ("\\&", return "&")+  , ("\\_", return "_")+  , ("\\{", return "{")+  , ("\\}", return "}")+  , ("\\ldots", return "\x2026")+  , ("\\textasciitilde", return "~")+  , ("\\textasciicircum", return "^")+  , ("\\textbackslash", return "\\")+  , ("\\char", parseC)+  , ("\\aa", return "å")+  , ("\\AA", return "Å")+  , ("\\ss", return "ß")+  , ("\\o", return "ø")+  , ("\\O", return "Ø")+  , ("\\L", return "Ł")+  , ("\\l", return "ł")+  , ("\\ae", return "æ")+  , ("\\AE", return "Æ")+  , ("\\oe", return "œ")+  , ("\\OE", return "Œ")+  , ("\\`", option "`" $ grave <$> tok)+  , ("\\'", option "'" $ acute <$> tok)+  , ("\\^", option "^" $ circ  <$> tok)+  , ("\\~", option "~" $ tilde <$> tok)+  , ("\\\"", option "\"" $ try $ umlaut <$> tok)+  , ("\\.", option "." $ try $ dot <$> tok)+  , ("\\=", option "=" $ try $ macron <$> tok)+  , ("\\c", option "c" $ try $ cedilla <$> tok)+  , ("\\v", option "v" $ try $ hacek <$> tok)+  , ("\\u", option "u" $ try $ breve <$> tok)+  , ("\\ ", return " ")+  , ("\\quad", return "\x2000")+  ]++parseC :: TP Text+parseC = try $ char '`' >> countChar 1 anyChar++-- the functions below taken from pandoc:++grave :: Char -> Text+grave 'A' = "À"+grave 'E' = "È"+grave 'I' = "Ì"+grave 'O' = "Ò"+grave 'U' = "Ù"+grave 'a' = "à"+grave 'e' = "è"+grave 'i' = "ì"+grave 'o' = "ò"+grave 'u' = "ù"+grave c   = T.singleton c++acute :: Char -> Text+acute 'A' = "Á"+acute 'E' = "É"+acute 'I' = "Í"+acute 'O' = "Ó"+acute 'U' = "Ú"+acute 'Y' = "Ý"+acute 'a' = "á"+acute 'e' = "é"+acute 'i' = "í"+acute 'o' = "ó"+acute 'u' = "ú"+acute 'y' = "ý"+acute 'C' = "Ć"+acute 'c' = "ć"+acute 'L' = "Ĺ"+acute 'l' = "ĺ"+acute 'N' = "Ń"+acute 'n' = "ń"+acute 'R' = "Ŕ"+acute 'r' = "ŕ"+acute 'S' = "Ś"+acute 's' = "ś"+acute 'Z' = "Ź"+acute 'z' = "ź"+acute c   = T.singleton c++circ :: Char -> Text+circ 'A' = "Â"+circ 'E' = "Ê"+circ 'I' = "Î"+circ 'O' = "Ô"+circ 'U' = "Û"+circ 'a' = "â"+circ 'e' = "ê"+circ 'i' = "î"+circ 'o' = "ô"+circ 'u' = "û"+circ 'C' = "Ĉ"+circ 'c' = "ĉ"+circ 'G' = "Ĝ"+circ 'g' = "ĝ"+circ 'H' = "Ĥ"+circ 'h' = "ĥ"+circ 'J' = "Ĵ"+circ 'j' = "ĵ"+circ 'S' = "Ŝ"+circ 's' = "ŝ"+circ 'W' = "Ŵ"+circ 'w' = "ŵ"+circ 'Y' = "Ŷ"+circ 'y' = "ŷ"+circ c   = T.singleton c++tilde :: Char -> Text+tilde 'A' = "Ã"+tilde 'a' = "ã"+tilde 'O' = "Õ"+tilde 'o' = "õ"+tilde 'I' = "Ĩ"+tilde 'i' = "ĩ"+tilde 'U' = "Ũ"+tilde 'u' = "ũ"+tilde 'N' = "Ñ"+tilde 'n' = "ñ"+tilde c   = T.singleton c++umlaut :: Char -> Text+umlaut 'A' = "Ä"+umlaut 'E' = "Ë"+umlaut 'I' = "Ï"+umlaut 'O' = "Ö"+umlaut 'U' = "Ü"+umlaut 'a' = "ä"+umlaut 'e' = "ë"+umlaut 'i' = "ï"+umlaut 'o' = "ö"+umlaut 'u' = "ü"+umlaut c   = T.singleton c++dot :: Char -> Text+dot 'C' = "Ċ"+dot 'c' = "ċ"+dot 'E' = "Ė"+dot 'e' = "ė"+dot 'G' = "Ġ"+dot 'g' = "ġ"+dot 'I' = "İ"+dot 'Z' = "Ż"+dot 'z' = "ż"+dot c   = T.singleton c++macron :: Char -> Text+macron 'A' = "Ā"+macron 'E' = "Ē"+macron 'I' = "Ī"+macron 'O' = "Ō"+macron 'U' = "Ū"+macron 'a' = "ā"+macron 'e' = "ē"+macron 'i' = "ī"+macron 'o' = "ō"+macron 'u' = "ū"+macron c   = T.singleton c++cedilla :: Char -> Text+cedilla 'c' = "ç"+cedilla 'C' = "Ç"+cedilla 's' = "ş"+cedilla 'S' = "Ş"+cedilla 't' = "ţ"+cedilla 'T' = "Ţ"+cedilla 'e' = "ȩ"+cedilla 'E' = "Ȩ"+cedilla 'h' = "ḩ"+cedilla 'H' = "Ḩ"+cedilla 'o' = "o̧"+cedilla 'O' = "O̧"+cedilla c   = T.singleton c++hacek :: Char -> Text+hacek 'A' = "Ǎ"+hacek 'a' = "ǎ"+hacek 'C' = "Č"+hacek 'c' = "č"+hacek 'D' = "Ď"+hacek 'd' = "ď"+hacek 'E' = "Ě"+hacek 'e' = "ě"+hacek 'G' = "Ǧ"+hacek 'g' = "ǧ"+hacek 'H' = "Ȟ"+hacek 'h' = "ȟ"+hacek 'I' = "Ǐ"+hacek 'i' = "ǐ"+hacek 'j' = "ǰ"+hacek 'K' = "Ǩ"+hacek 'k' = "ǩ"+hacek 'L' = "Ľ"+hacek 'l' = "ľ"+hacek 'N' = "Ň"+hacek 'n' = "ň"+hacek 'O' = "Ǒ"+hacek 'o' = "ǒ"+hacek 'R' = "Ř"+hacek 'r' = "ř"+hacek 'S' = "Š"+hacek 's' = "š"+hacek 'T' = "Ť"+hacek 't' = "ť"+hacek 'U' = "Ǔ"+hacek 'u' = "ǔ"+hacek 'Z' = "Ž"+hacek 'z' = "ž"+hacek c   = T.singleton c++breve :: Char -> Text+breve 'A' = "Ă"+breve 'a' = "ă"+breve 'E' = "Ĕ"+breve 'e' = "ĕ"+breve 'G' = "Ğ"+breve 'g' = "ğ"+breve 'I' = "Ĭ"+breve 'i' = "ĭ"+breve 'O' = "Ŏ"+breve 'o' = "ŏ"+breve 'U' = "Ŭ"+breve 'u' = "ŭ"+breve c   = T.singleton c++-- siunitx++siunitx :: Text -> TP Exp+siunitx c = do+  case c of+    "\\si"       -> dosi+    "\\unit"     -> dosi  -- v3 version of \si+    "\\SI"       -> doSI+    "\\qty"      -> doSI  -- v3 version of \SI+    "\\SIrange"  -> doSIrange True+    "\\qtyrange" -> doSIrange True -- v3 version of SIrange+    "\\numrange" -> doSIrange False+    "\\numlist"  -> doSInumlist+  -- "\\SIlist"   -> doSIlist -- v3 version of SIlist+  -- "\\qtylist"  -> doSIlist -- v3 version of SIlist+    "\\num"      -> doSInum+    "\\ang"      -> doSIang+    _          -> mzero++-- converts e.g. \SIrange{100}{200}{\ms} to "100 ms--200 ms"+doSIrange :: Bool -> TP Exp+doSIrange includeUnits = do+  optional $ skipMany inbrackets+  startvalue <- Just <$> doSInum+  startvalueprefix <- option Nothing $ Just <$> brackets expr+  stopvalue <- Just <$> doSInum+  stopvalueprefix <- option Nothing $ Just <$> brackets expr+  unit <- if includeUnits+             then option Nothing $ Just <$> dosi+             else return Nothing+  return $ EGrouped $ catMaybes+           [startvalueprefix,+            emptyOr160 startvalueprefix,+            startvalue,+            emptyOr160 unit,+            unit,+            Just (EText TextNormal "\8211"), -- An en-dash+            stopvalueprefix,+            emptyOr160 stopvalueprefix,+            stopvalue,+            emptyOr160 unit,+            unit]+++doSInumlist :: TP Exp+doSInumlist = do+  optional $ skipMany inbrackets+  xs <- braces (sepBy siNum (spaces *> char ';' <* spaces))+  return $+    case xs of+      []  -> EGrouped []+      [x] -> x+      _   -> EGrouped $+               intersperse (EText TextNormal ", ") (init xs) +++               [EText TextNormal ", & ", last xs]++dosi :: TP Exp+dosi = siUnit <|> braces (manyExp (siUnit <|> expr))++doSIang :: TP Exp+doSIang = do+  optional $ skipMany inbrackets+  ps <- braces $ sepBy siNum (spaces *> char ';' <* spaces)+  return $ EGrouped $+    case ps ++ repeat (EGrouped []) of+      (d:m:s:_) ->+        (if d == EGrouped [] then [] else [d, EText TextNormal "\xb0"]) <>+        (if m == EGrouped [] then [] else [m, EText TextNormal "\x2032"]) <>+        (if s == EGrouped [] then [] else [s, EText TextNormal "\x2033"])+      _ -> []++-- converts e.g. \SI{1}[\$]{} to "$ 1" or \SI{1}{\euro} to "1 €"+doSI :: TP Exp+doSI = do+  optional $ skipMany inbrackets+  value <- Just <$> doSInum+  valueprefix <- option Nothing $ do+                    x <- inbrackets+                    if x == EGrouped []+                       then return Nothing+                       else return $ Just x+  unit <- option Nothing $ Just <$> dosi+  return $ EGrouped $ catMaybes+         [ valueprefix,+           emptyOr160 valueprefix,+           value,+           emptyOr160 unit,+           unit+         ]++emptyOr160 :: Maybe Exp -> Maybe Exp+emptyOr160 (Just _) = Just (ESpace (4/18))+emptyOr160 Nothing  = Nothing+++siUnit :: TP Exp+siUnit = try $ do+  name <- T.dropWhile (=='\\') <$> anyCtrlSeq+  case name of+    "square" -> do+       unit <- siUnit+       return $ ESuper unit (ENumber "2")+    "cubic" -> do+       unit <- siUnit+       return $ ESuper unit (ENumber "3")+    "raisetothe" -> do+       n <- expr+       unit <- siUnit+       return $ ESuper unit n+    _ ->+       case M.lookup name siUnitMap of+            Just il ->+              option il $+                choice+                 [ (ESuper il (ENumber "2")) <$ ctrlseq "squared"+                 , (ESuper il (ENumber "3")) <$ ctrlseq "cubed"+                 , (\n -> ESuper il n) <$> (ctrlseq "tothe" *> expr)+                 ]+            Nothing -> fail "not an siunit unit command"++doSInum :: TP Exp+doSInum = do+  optional $ skipMany inbrackets+  braces siNum++siNum :: TP Exp+siNum = asGroup . mconcat <$> many parseNumPart++parseNumPart :: TP [Exp]+parseNumPart =+  parseDecimalNum <|>+  parseComma <|>+  parsePlusMinus <|>+  parseI <|>+  parseExp <|>+  parseX <|>+  parseSpace+ where+  parseDecimalNum = do+    pref <- option mempty $ (mempty <$ char '+') <|> ("\x2212" <$ char '-')+    basenum <- (pref <>) . T.pack+                <$> many1 (satisfy (\c -> isDigit c || c == '.'))+    uncertainty <- option mempty $ T.pack <$> parseParens+    if T.null uncertainty+       then return [ENumber basenum]+       else return [ENumber $ basenum <> "\xa0\xb1\xa0" <>+             let (_,ys) = T.break (=='.') basenum+              in case (T.length ys - 1, T.length uncertainty) of+                   (0,_) -> uncertainty+                   (x,y)+                     | x > y  -> "0." <> T.replicate (x - y) "0" <>+                                      T.dropWhileEnd (=='0') uncertainty+                     | otherwise -> T.take (y - x) uncertainty <>+                                      case T.dropWhileEnd (=='0')+                                             (T.drop (y - x) uncertainty) of+                                             t | T.null t -> mempty+                                               | otherwise -> "." <> t]+  parseComma = [ENumber "."] <$ char ','+  parsePlusMinus = [EText TextNormal "\xa0\xb1\xa0"] <$ try (string "+-")+  parseParens =+    char '(' *> many1 (satisfy (\c -> isDigit c || c == '.')) <* char ')'+  parseI = [EIdentifier "i"] <$ char 'i'+  parseX = [ESymbol Rel "\xa0\xd7\xa0"] <$ char 'x'+  parseExp = do+    n <- asGroup <$> (char 'e' *> parseDecimalNum)+    return $ [ESymbol Rel "\xa0\xd7\xa0", ESuper (ENumber "10") n ]+  parseSpace = mempty <$ skipMany1 (char ' ')++arrow :: Text -> TP Exp+arrow c = case c of+  "\\xleftarrow"   -> underoverarrow "\x2190"+  "\\xrightarrow"  -> underoverarrow "\x2192"+  _                -> mzero+ where+  underoverarrow s = do+    munder <- optionMaybe inbrackets+    over <- texToken+    return $ case munder of+      Nothing    -> EOver False (ESymbol Op s) over+      Just under -> EUnderover False (ESymbol Op s) under over+
+ src/Text/TeXMath/Readers/TeX/Commands.hs view
@@ -0,0 +1,512 @@+{-# LANGUAGE OverloadedStrings #-}+{-+Copyright (C) 2009-2022 John MacFarlane <jgm@berkeley.edu>++This program is free software; you can redistribute it and/or modify+it under the terms of the GNU General Public License as published by+the Free Software Foundation; either version 2 of the License, or+(at your option) any later version.++This program is distributed in the hope that it will be useful,+but WITHOUT ANY WARRANTY; without even the implied warranty of+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the+GNU General Public License for more details.++You should have received a copy of the GNU General Public License+along with this program; if not, write to the Free Software+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA+-}++{- | Lookup tables for TeX commands.+-}++module Text.TeXMath.Readers.TeX.Commands+  ( styleOps+  , textOps+  , enclosures+  , operators+  , symbols+  , siUnitMap+  )+where++import qualified Data.Map as M+import Text.TeXMath.Types+import Text.TeXMath.Unicode.ToTeX (symbolMap)+import Data.Text (Text)+import Data.Ratio ((%))++-- Note: cal and scr are treated the same way, as unicode is lacking such two different sets for those.+styleOps :: M.Map Text ([Exp] -> Exp)+styleOps = M.fromList+          [ ("\\mathrm",     EStyled TextNormal)+          , ("\\mathup",     EStyled TextNormal)+          , ("\\mathbf",     EStyled TextNormal . (:[]) . EStyled TextBold)+          , ("\\boldsymbol", EStyled TextBold)+          , ("\\bm",         EStyled TextBold)+          , ("\\symbf",      EStyled TextBold)+          , ("\\mathbold",   EStyled TextBold)+          , ("\\pmb",        EStyled TextBold)+          , ("\\mathbfup",   EStyled TextBold)+          , ("\\mathit",     EStyled TextItalic)+          , ("\\mathtt",     EStyled TextMonospace)+          , ("\\texttt",     EStyled TextMonospace)+          , ("\\mathsf",     EStyled TextSansSerif)+          , ("\\mathsfup",   EStyled TextSansSerif)+          , ("\\mathbb",     EStyled TextDoubleStruck)+          , ("\\mathds",     EStyled TextDoubleStruck) -- mathds package+          , ("\\mathcal",    EStyled TextScript)+          , ("\\mathscr",    EStyled TextScript)+          , ("\\mathfrak",   EStyled TextFraktur)+          , ("\\mathbfit",   EStyled TextBoldItalic)+          , ("\\mathbfsfup", EStyled TextSansSerifBold)+          , ("\\mathbfsfit", EStyled TextSansSerifBoldItalic)+          , ("\\mathbfscr",  EStyled TextBoldScript)+          , ("\\mathbffrak", EStyled TextBoldFraktur)+          , ("\\mathbfcal",  EStyled TextBoldScript)+          , ("\\mathsfit",   EStyled TextSansSerifItalic)+          ]++textOps :: M.Map Text (Text -> Exp)+textOps = M.fromList+          [ ("\\textrm", (EText TextNormal))+          , ("\\text",   (EText TextNormal))+          , ("\\textbf", (EText TextBold))+          , ("\\textit", (EText TextItalic))+          , ("\\texttt", (EText TextMonospace))+          , ("\\textsf", (EText TextSansSerif))+          , ("\\mbox",   (EText TextNormal))+          ]++enclosures :: M.Map Text Exp+enclosures = M.fromList+  [ ("(", ESymbol Open "(")+  , (")", ESymbol Close ")")+  , ("[", ESymbol Open "[")+  , ("]", ESymbol Close "]")+  , ("\\{", ESymbol Open "{")+  , ("\\}", ESymbol Close "}")+  , ("\\lbrack", ESymbol Open "[")+  , ("\\lbrace", ESymbol Open "{")+  , ("\\rbrack", ESymbol Close "]")+  , ("\\rbrace", ESymbol Close "}")+  , ("\\llbracket", ESymbol Open "\x27E6")+  , ("\\rrbracket", ESymbol Close "\x27E7")+  , ("\\langle", ESymbol Open "\x27E8")+  , ("\\rangle", ESymbol Close "\x27E9")+  , ("\\lfloor", ESymbol Open "\x230A")+  , ("\\rfloor", ESymbol Close "\x230B")+  , ("\\lceil", ESymbol Open "\x2308")+  , ("\\rceil", ESymbol Close "\x2309")+  , ("|", ESymbol Close "|")+  , ("|", ESymbol Open "|")+  , ("\\|", ESymbol Open "\x2225")+  , ("\\|", ESymbol Close "\x2225")+  , ("\\lvert", ESymbol Open "\x7C")+  , ("\\rvert", ESymbol Close "\x7C")+  , ("\\vert", ESymbol Close "\x7C")+  , ("\\lVert", ESymbol Open "\x2225")+  , ("\\rVert", ESymbol Close "\x2225")+  , ("\\Vert", ESymbol Close "\x2016")+  , ("\\ulcorner", ESymbol Open "\x231C")+  , ("\\urcorner", ESymbol Close "\x231D")+  ]++operators :: M.Map Text Exp+operators = M.fromList [+             ("+", ESymbol Bin "+")+           , ("-", ESymbol Bin "\x2212")+           , ("*", ESymbol Bin "*")+           , ("@", ESymbol Ord "@")+           , (",", ESymbol Pun ",")+           , (".", ESymbol Ord ".")+           , (";", ESymbol Pun ";")+           , (":", ESymbol Rel ":")+           , ("?", ESymbol Ord "?")+           , (">", ESymbol Rel ">")+           , ("<", ESymbol Rel "<")+           , ("!", ESymbol Ord "!")+           , ("'", ESymbol Ord "\x2032")+           , ("''", ESymbol Ord "\x2033")+           , ("'''", ESymbol Ord "\x2034")+           , ("''''", ESymbol Ord "\x2057")+           , ("=", ESymbol Rel "=")+           , (":=", ESymbol Rel ":=")+           , ("/", ESymbol Ord "/")+           , ("~", ESpace (4/18)) ]++symbols :: M.Map Text Exp+symbols = symbolMapOverrides <> symbolMap++-- These are the cases where texmath historically diverged+-- from symbolMap.  We may want to remove some of these overrides,+-- but for now we keep them so behavior doesn't change.+symbolMapOverrides ::  M.Map Text Exp+symbolMapOverrides = M.fromList+  [ ("\\\n",ESpace (2 % 9))+  , ("\\ ",ESpace (2 % 9))+  , ("\\!",ESpace ((-1) % 6))+  , ("\\,",ESpace (1 % 6))+  , ("\\:",ESpace (2 % 9))+  , ("\\;",ESpace (5 % 18))+  , ("\\>",ESpace (2 % 9))+  , ("\\AC",ESymbol Ord "\9190")+  , ("\\Box",ESymbol Op "\9633")+  , ("\\Delta",EIdentifier "\916")+  , ("\\Diamond",ESymbol Op "\9671")+  , ("\\Alpha",EIdentifier "\913")+  , ("\\Beta",EIdentifier "\914")+  , ("\\Gamma",EIdentifier "\915")+  , ("\\Epsilon",EIdentifier "\917")+  , ("\\Zeta",EIdentifier "\918")+  , ("\\Eta",EIdentifier "\919")+  , ("\\Iota",EIdentifier "\921")+  , ("\\Kappa",EIdentifier "\922")+  , ("\\Mu",EIdentifier "\924")+  , ("\\Nu",EIdentifier "\925")+  , ("\\Omicron",EIdentifier "\927")+  , ("\\omicron",EIdentifier "\959")+  , ("\\Rho",EIdentifier "\929")+  , ("\\Tau",EIdentifier "\932")+  , ("\\Chi",EIdentifier "\935")+  , ("\\Im",ESymbol Ord "\8465")+  , ("\\Join",ESymbol Rel "\8904")+  , ("\\Lambda",EIdentifier "\923")+  , ("\\Lbrbrak",ESymbol Open "\12312")+  , ("\\Longleftarrow",ESymbol Rel "\8656")+  , ("\\Longleftrightarrow",ESymbol Rel "\8660")+  , ("\\Longrightarrow",ESymbol Rel "\8658")+  , ("\\Omega",EIdentifier "\937")+  , ("\\Phi",EIdentifier "\934")+  , ("\\Pi",EIdentifier "\928")+  , ("\\Pr",EMathOperator "Pr")+  , ("\\Psi",EIdentifier "\936")+  , ("\\Rbrbrak",ESymbol Close "\12313")+  , ("\\Re",ESymbol Ord "\8476")+  , ("\\Sigma",EIdentifier "\931")+  , ("\\Theta",EIdentifier "\920")+  , ("\\Upsilon",EIdentifier "\933")+  , ("\\Xi",EIdentifier "\926")+  , ("\\^",ESymbol Ord "^")+  , ("\\alpha",EIdentifier "\945")+  , ("\\amalg",ESymbol Bin "\8720")+  , ("\\arccos",EMathOperator "arccos")+  , ("\\arcsin",EMathOperator "arcsin")+  , ("\\arctan",EMathOperator "arctan")+  , ("\\arg",EMathOperator "arg")+  , ("\\ast",ESymbol Bin "*")+  , ("\\backslash",ESymbol Bin "\8726")+  , ("\\bar",ESymbol Accent "\8254")+  , ("\\barwedge",ESymbol Bin "\8965")+  , ("\\beta",EIdentifier "\946")+  , ("\\bigcirc",ESymbol Bin "\9675")+  , ("\\blacklozenge",ESymbol Ord "\11047")+  , ("\\blacksquare",ESymbol Ord "\9724")+  , ("\\blacktriangleleft",ESymbol Bin "\9666")+  , ("\\blacktriangleright",ESymbol Bin "\9656")+  , ("\\cdot",ESymbol Bin "\8901")+  , ("\\chi",EIdentifier "\967")+  , ("\\cos",EMathOperator "cos")+  , ("\\cosh",EMathOperator "cosh")+  , ("\\cot",EMathOperator "cot")+  , ("\\coth",EMathOperator "coth")+  , ("\\csc",EMathOperator "csc")+  , ("\\dag",ESymbol Bin "\8224")+  , ("\\ddag",ESymbol Bin "\8225")+  , ("\\deg",EMathOperator "deg")+  , ("\\delta",EIdentifier "\948")+  , ("\\det",EMathOperator "det")+  , ("\\diamond",ESymbol Op "\8900")+  , ("\\digamma",ESymbol Alpha "\989")+  , ("\\dim",EMathOperator "dim")+  , ("\\dots",ESymbol Ord "\8230")+  , ("\\dotsb",ESymbol Ord "\8943")+  , ("\\dotsc",ESymbol Ord "\8230")+  , ("\\dotsi",ESymbol Ord "\8943")+  , ("\\dotsm",ESymbol Ord "\8943")+  , ("\\dotso",ESymbol Ord "\8230")+  , ("\\emptyset",ESymbol Ord "\8709")+  , ("\\epsilon",EIdentifier "\1013")+  , ("\\eqcolon",ESymbol Rel "\8789")+  , ("\\eta",EIdentifier "\951")+  , ("\\exists",ESymbol Op "\8707")+  , ("\\exp",EMathOperator "exp")+  , ("\\forall",ESymbol Op "\8704")+  , ("\\gamma",EIdentifier "\947")+  , ("\\gcd",EMathOperator "gcd")+  , ("\\geqslant",ESymbol Rel "\8805")+  , ("\\gt",ESymbol Rel ">")+  , ("\\hbar",ESymbol Ord "\8463")+  , ("\\hdots",ESymbol Ord "\8230")+  , ("\\hom",EMathOperator "hom")+  , ("\\iff",ESymbol Rel "\8660")+  , ("\\inf",EMathOperator "inf")+  , ("\\iota",EIdentifier "\953")+  , ("\\kappa",EIdentifier "\954")+  , ("\\ker",EMathOperator "ker")+  , ("\\lambda",EIdentifier "\955")+  , ("\\lbrbrak",ESymbol Open "\12308")+  , ("\\leqslant",ESymbol Rel "\8804")+  , ("\\lg",EMathOperator "lg")+  , ("\\lhd",ESymbol Bin "\8882")+  , ("\\lim",EMathOperator "lim")+  , ("\\liminf",EMathOperator "liminf")+  , ("\\limsup",EMathOperator "limsup")+  , ("\\llbracket",ESymbol Open "\12314")+  , ("\\ln",EMathOperator "ln")+  , ("\\log",EMathOperator "log")+  , ("\\longleftarrow",ESymbol Rel "\8592")+  , ("\\longleftrightarrow",ESymbol Rel "\8596")+  , ("\\longmapsto",ESymbol Rel "\8614")+  , ("\\longrightarrow",ESymbol Rel "\8594")+  , ("\\lozenge",ESymbol Op "\9674")+  , ("\\lt",ESymbol Rel "<")+  , ("\\max",EMathOperator "max")+  , ("\\mid",ESymbol Bin "\8739")+  , ("\\min",EMathOperator "min")+  , ("\\models",ESymbol Rel "\8872")+  , ("\\mu",EIdentifier "\956")+  , ("\\neg",ESymbol Op "\172")+  , ("\\nu",EIdentifier "\957")+  , ("\\omega",EIdentifier "\969")+  , ("\\overbar",ESymbol Accent "\175")+  , ("\\overline",ESymbol TOver "\175")+  , ("\\overrightarrow",ESymbol Accent "\8407")+  , ("\\phi",EIdentifier "\981")+  , ("\\pi",EIdentifier "\960")+  , ("\\preceq",ESymbol Rel "\8828")+  , ("\\psi",EIdentifier "\968")+  , ("\\qquad",ESpace (2 % 1))+  , ("\\quad",ESpace (1 % 1))+  , ("\\rbrbrak",ESymbol Close "\12309")+  , ("\\rhd",ESymbol Bin "\8883")+  , ("\\rho",EIdentifier "\961")+  , ("\\rrbracket",ESymbol Close "\12315")+  , ("\\sec",EMathOperator "sec")+  , ("\\setminus",ESymbol Bin "\\")+  , ("\\sigma",EIdentifier "\963")+  , ("\\sim",ESymbol Rel "\8764")+  , ("\\sin",EMathOperator "sin")+  , ("\\sinh",EMathOperator "sinh")+  , ("\\square",ESymbol Ord "\9643")+  , ("\\succeq",ESymbol Rel "\8829")+  , ("\\sup",EMathOperator "sup")+  , ("\\tan",EMathOperator "tan")+  , ("\\tanh",EMathOperator "tanh")+  , ("\\tau",EIdentifier "\964")+  , ("\\therefore",ESymbol Pun "\8756")+  , ("\\theta",EIdentifier "\952")+  , ("\\triangle",ESymbol Ord "\9651")+  , ("\\triangleleft",ESymbol Bin "\8882")+  , ("\\triangleright",ESymbol Bin "\8883")+  , ("\\underbar",ESymbol TUnder "\817")+  , ("\\underline",ESymbol TUnder "_")+  , ("\\unlhd",ESymbol Bin "\8884")+  , ("\\unrhd",ESymbol Bin "\8885")+  , ("\\upUpsilon",ESymbol Alpha "\978")+  , ("\\upsilon",EIdentifier "\965")+  , ("\\varDelta",EIdentifier "\120549")+  , ("\\varGamma",EIdentifier "\120548")+  , ("\\varLambda",EIdentifier "\120556")+  , ("\\varOmega",EIdentifier "\120570")+  , ("\\varPhi",EIdentifier "\120567")+  , ("\\varPi",EIdentifier "\120561")+  , ("\\varPsi",EIdentifier "\120569")+  , ("\\varSigma",EIdentifier "\120564")+  , ("\\varTheta",EIdentifier "\120553")+  , ("\\varUpsilon",EIdentifier "\120566")+  , ("\\varXi",EIdentifier "\120559")+  , ("\\varepsilon",EIdentifier "\949")+  , ("\\varnothing",ESymbol Ord "\8960")+  , ("\\varphi",EIdentifier "\966")+  , ("\\varrho",ESymbol Alpha "\120602")+  , ("\\varsigma",ESymbol Alpha "\120589")+  , ("\\vartheta",EIdentifier "\977")+  , ("\\vdots",ESymbol Ord "\8942")+  , ("\\vec",ESymbol Accent "\8407")+  , ("\\wp",ESymbol Ord "\8472")+  , ("\\wr",ESymbol Ord "\8768")+  , ("\\xi",EIdentifier "\958")+  , ("\\zeta",EIdentifier "\950")+  ]++siUnitMap :: M.Map Text Exp+siUnitMap = M.fromList+  [ ("fg", str "fg")+  , ("pg", str "pg")+  , ("ng", str "ng")+  , ("ug", str "μg")+  , ("mg", str "mg")+  , ("g", str "g")+  , ("kg", str "kg")+  , ("amu", str "u")+  , ("pm", str "pm")+  , ("nm", str "nm")+  , ("um", str "μm")+  , ("mm", str "mm")+  , ("cm", str "cm")+  , ("dm", str "dm")+  , ("m", str "m")+  , ("km", str "km")+  , ("as", str "as")+  , ("fs", str "fs")+  , ("ps", str "ps")+  , ("ns", str "ns")+  , ("us", str "μs")+  , ("ms", str "ms")+  , ("s", str "s")+  , ("fmol", str "fmol")+  , ("pmol", str "pmol")+  , ("nmol", str "nmol")+  , ("umol", str "μmol")+  , ("mmol", str "mmol")+  , ("mol", str "mol")+  , ("kmol", str "kmol")+  , ("pA", str "pA")+  , ("nA", str "nA")+  , ("uA", str "μA")+  , ("mA", str "mA")+  , ("A", str "A")+  , ("kA", str "kA")+  , ("ul", str "μl")+  , ("ml", str "ml")+  , ("l", str "l")+  , ("hl", str "hl")+  , ("uL", str "μL")+  , ("mL", str "mL")+  , ("L", str "L")+  , ("hL", str "hL")+  , ("mHz", str "mHz")+  , ("Hz", str "Hz")+  , ("kHz", str "kHz")+  , ("MHz", str "MHz")+  , ("GHz", str "GHz")+  , ("THz", str "THz")+  , ("mN", str "mN")+  , ("N", str "N")+  , ("kN", str "kN")+  , ("MN", str "MN")+  , ("Pa", str "Pa")+  , ("kPa", str "kPa")+  , ("MPa", str "MPa")+  , ("GPa", str "GPa")+  , ("mohm", str "mΩ")+  , ("kohm", str "kΩ")+  , ("Mohm", str "MΩ")+  , ("pV", str "pV")+  , ("nV", str "nV")+  , ("uV", str "μV")+  , ("mV", str "mV")+  , ("V", str "V")+  , ("kV", str "kV")+  , ("W", str "W")+  , ("uW", str "μW")+  , ("mW", str "mW")+  , ("kW", str "kW")+  , ("MW", str "MW")+  , ("GW", str "GW")+  , ("J", str "J")+  , ("uJ", str "μJ")+  , ("mJ", str "mJ")+  , ("kJ", str "kJ")+  , ("eV", str "eV")+  , ("meV", str "meV")+  , ("keV", str "keV")+  , ("MeV", str "MeV")+  , ("GeV", str "GeV")+  , ("TeV", str "TeV")+  , ("kWh", str "kWh")+  , ("F", str "F")+  , ("fF", str "fF")+  , ("pF", str "pF")+  , ("K", str "K")+  , ("dB", str "dB")+  , ("ampere", str "A")+  , ("angstrom", str "Å")+  , ("arcmin", str "′")+  , ("arcminute", str "′")+  , ("arcsecond", str "″")+  , ("astronomicalunit", str "ua")+  , ("atomicmassunit", str "u")+  , ("atto", str "a")+  , ("bar", str "bar")+  , ("barn", str "b")+  , ("becquerel", str "Bq")+  , ("bel", str "B")+  , ("bohr", ESuper (EText TextItalic "a") (ENumber "0"))+  , ("candela", str "cd")+  , ("celsius", str "°C")+  , ("centi", str "c")+  , ("clight", ESuper (EText TextItalic "c") (ENumber "0"))+  , ("coulomb", str "C")+  , ("dalton", str "Da")+  , ("day", str "d")+  , ("deca", str "d")+  , ("deci", str "d")+  , ("decibel", str "db")+  , ("degreeCelsius",str "°C")+  , ("degree", str "°")+  , ("deka", str "d")+  , ("electronmass", ESuper (EText TextItalic "m") (EText TextItalic "e"))+  , ("electronvolt", str "eV")+  , ("elementarycharge", EText TextItalic "e")+  , ("exa", str "E")+  , ("farad", str "F")+  , ("femto", str "f")+  , ("giga", str "G")+  , ("gram", str "g")+  , ("gray", str "Gy")+  , ("hartree", ESuper (EText TextItalic "E") (EText TextItalic "h"))+  , ("hectare", str "ha")+  , ("hecto", str "h")+  , ("henry", str "H")+  , ("hertz", str "Hz")+  , ("hour", str "h")+  , ("joule", str "J")+  , ("katal", str "kat")+  , ("kelvin", str "K")+  , ("kilo", str "k")+  , ("kilogram", str "kg")+  , ("knot", str "kn")+  , ("liter", str "L")+  , ("litre", str "l")+  , ("lumen", str "lm")+  , ("lux", str "lx")+  , ("mega", str "M")+  , ("meter", str "m")+  , ("metre", str "m")+  , ("micro", str "μ")+  , ("milli", str "m")+  , ("minute", str "min")+  , ("mmHg", str "mmHg")+  , ("mole", str "mol")+  , ("nano", str "n")+  , ("nauticalmile", str "M")+  , ("neper", str "Np")+  , ("newton", str "N")+  , ("ohm", str "Ω")+  , ("Pa", str "Pa")+  , ("pascal", str "Pa")+  , ("percent", str "%")+  , ("per", str "/")+  , ("peta", str "P")+  , ("pico", str "p")+  , ("planckbar", EText TextItalic "\x210f")+  , ("radian", str "rad")+  , ("second", str "s")+  , ("siemens", str "S")+  , ("sievert", str "Sv")+  , ("steradian", str "sr")+  , ("tera", str "T")+  , ("tesla", str "T")+  , ("tonne", str "t")+  , ("volt", str "V")+  , ("watt", str "W")+  , ("weber", str "Wb")+  , ("yocto", str "y")+  , ("yotta", str "Y")+  , ("zepto", str "z")+  , ("zetta", str "Z")+  ]+ where+  str = EText TextNormal
src/Text/TeXMath/Readers/TeX/Macros.hs view
@@ -31,13 +31,13 @@ where  import Data.Char (isDigit, isLetter)+import qualified Data.Text as T import Control.Monad import Text.Parsec-import Control.Applicative ((<*)) -data Macro = Macro { macroDefinition :: String+data Macro = Macro { macroDefinition :: T.Text                    , macroParser     :: forall st m s . Stream s m Char =>-                          ParsecT s st m String }+                          ParsecT s st m T.Text }  instance Show Macro where   show m = "Macro " ++ show (macroDefinition m)@@ -46,7 +46,7 @@ -- separated and ended by spaces and TeX comments.  Returns -- the list of macros (which may be empty) and the unparsed -- portion of the input string.-parseMacroDefinitions :: String -> ([Macro], String)+parseMacroDefinitions :: T.Text -> ([Macro], T.Text) parseMacroDefinitions s =   case parse pMacroDefinitions "input" s of        Left _       -> ([], s)@@ -76,7 +76,7 @@ -- | Applies a list of macros to a string recursively until a fixed -- point is reached.  If there are several macros in the list with the -- same name, earlier ones will shadow later ones.-applyMacros :: [Macro] -> String -> String+applyMacros :: [Macro] -> T.Text -> T.Text applyMacros [] s = s applyMacros ms s =   maybe s id $ iterateToFixedPoint ((2 * length ms) + 1)@@ -95,16 +95,16 @@          | y == x    -> Just y          | otherwise -> iterateToFixedPoint (limit - 1) f y -applyMacrosOnce :: [Macro] -> String -> Maybe String+applyMacrosOnce :: [Macro] -> T.Text -> Maybe T.Text applyMacrosOnce ms s =   case parse (many tok) "input" s of-       Right r -> Just $ concat r+       Right r -> Just $ T.concat r        Left _  -> Nothing     where tok = try $ do                   skipComment-                  choice [ choice (map macroParser ms)-                         , ctrlseq-                         , count 1 anyChar ]+                  choice [ choice (map (\m -> macroParser m) ms)+                         , T.pack <$> ctrlseq+                         , T.pack <$> count 1 anyChar ]  ctrlseq :: (Monad m, Stream s m Char)         => ParsecT s st m String@@ -140,7 +140,7 @@              (if numargs > 0 then ("[" ++ show numargs ++ "]") else "") ++              case optarg of { Nothing -> ""; Just x -> "[" ++ x ++ "]"} ++              "{" ++ body ++ "}"-  return $ Macro defn $ try $ do+  return $ Macro (T.pack defn) $ fmap T.pack $ try $ do     char '\\'     string name'     when (all isLetter name') $@@ -181,7 +181,7 @@              (if numargs > 0 then ("[" ++ show numargs ++ "]") else "") ++              case optarg of { Nothing -> ""; Just x -> "[" ++ x ++ "]"} ++              "%\n{" ++ opener ++ "}%\n" ++ "{" ++ closer ++ "}"-  return $ Macro defn $ try $ do+  return $ Macro (T.pack defn) $ fmap T.pack $ try $ do     string "\\begin"     pSkipSpaceComments     char '{'@@ -221,7 +221,7 @@   body <- inbraces <|> ctrlseq   let defn = "\\DeclareMathOperator" ++ star ++ "{" ++ name ++ "}" ++              "{" ++ body ++ "}"-  return $ Macro defn $ try $ do+  return $ Macro (T.pack defn) $ fmap T.pack $ try $ do     char '\\'     string name'     when (all isLetter name') $@@ -231,7 +231,7 @@   apply :: [String] -> String -> String-apply args ('#':d:xs) | isDigit d =+apply args ('#':d:xs) | isDigit d, d /= '0' =   let argnum = read [d]   in  if length args >= argnum          then args !! (argnum - 1) ++ apply args xs
src/Text/TeXMath/Shared.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE CPP, ScopedTypeVariables #-}+{-# LANGUAGE ScopedTypeVariables, OverloadedStrings #-} {- Copyright (C) 2014 Matthew Pickering <matthewtpickering@gmail.com> @@ -33,6 +33,9 @@   , isEmpty   , empty   , handleDownup+  , isUppercaseGreek+  , toPrimes+  , isRLSequence   ) where  @@ -40,10 +43,10 @@ import Text.TeXMath.TeX import qualified Data.Map as M import qualified Data.Set as Set+import qualified Data.Text as T import Data.Maybe (fromMaybe) import Data.Ratio ((%)) import Data.List (sort)-import Control.Applicative ((<$>), (<*>)) import Control.Monad (guard) import Text.Parsec (Parsec, parse, getInput, digit, char, many1, option) import Data.Generics (everywhere, mkT)@@ -74,11 +77,11 @@ fixTree = everywhere (mkT removeNesting) . everywhere (mkT removeEmpty)  -- | Maps TextType to the corresponding MathML mathvariant-getMMLType :: TextType -> String+getMMLType :: TextType -> T.Text getMMLType t = fromMaybe "normal" (fst <$> M.lookup t textTypesMap)  -- | Maps TextType to corresponding LaTeX command-getLaTeXTextCommand :: Env -> TextType -> String+getLaTeXTextCommand :: Env -> TextType -> T.Text getLaTeXTextCommand e t =   let textCmd = fromMaybe "\\mathrm"                   (snd <$> M.lookup t textTypesMap) in@@ -87,11 +90,11 @@     else fromMaybe "\\mathrm" (M.lookup textCmd alts)  -- | Maps MathML mathvariant to the corresponing TextType-getTextType :: String -> TextType+getTextType :: T.Text -> TextType getTextType s = fromMaybe TextNormal (M.lookup s revTextTypesMap)  -- | Maps a LaTeX scaling command to the percentage scaling-getScalerCommand :: Rational -> Maybe String+getScalerCommand :: Rational -> Maybe T.Text getScalerCommand width =   case sort [ (w, cmd) | (cmd, w) <- scalers, w >= width ] of        ((_,cmd):_) -> Just cmd@@ -100,14 +103,13 @@   -- match:  \Big, not \Bigr  -- | Gets percentage scaling from LaTeX scaling command-getScalerValue :: String -> Maybe Rational+getScalerValue :: T.Text -> Maybe Rational getScalerValue command = lookup command scalers  -- | Given a diacritical mark, returns the corresponding LaTeX command-getDiacriticalCommand  :: Position -> String -> Maybe String+getDiacriticalCommand  :: Position -> T.Text -> Maybe T.Text getDiacriticalCommand pos symbol = do   command <- M.lookup symbol diaMap-  guard (not $ command `elem` unavailable)   let below = command `elem` under   case pos of     Under -> if below then Just command else Nothing@@ -120,7 +122,7 @@ getOperator :: Exp -> Maybe TeX getOperator op = fmap ControlSeq $ M.lookup op operators -operators :: M.Map Exp String+operators :: M.Map Exp T.Text operators = M.fromList            [ (EMathOperator "arccos", "\\arccos")            , (EMathOperator "arcsin", "\\arcsin")@@ -156,7 +158,7 @@            , (EMathOperator "tanh", "\\tanh") ]  -- | Attempts to convert a string into-readLength :: String -> Maybe Rational+readLength :: T.Text -> Maybe Rational readLength s = do   (n, unit) <- case (parse parseLength "" s) of                   Left _ -> Nothing@@ -164,24 +166,25 @@   (n *) <$> unitToMultiplier unit  -parseLength :: Parsec String () (Rational, String)+parseLength :: Parsec T.Text () (Rational, T.Text) parseLength = do     neg <- option "" ((:[]) <$> char '-')     dec <- many1 digit     frac <- option "" ((:) <$> char '.' <*> many1 digit)     unit <- getInput     -- This is safe as dec and frac must be a double of some kind-    let [(n :: Double, [])] = reads (neg ++ dec ++ frac) :: [(Double, String)]-    return (round (n * 18) % 18, unit)+    case reads (neg ++ dec ++ frac) of+       [(n :: Double, [])] -> return (round (n * 18) % 18, unit)+       _ -> fail $ "Could not parse " ++ neg ++ dec ++ frac ++ " as Double" -textTypesMap :: M.Map TextType (String, String)+textTypesMap :: M.Map TextType (T.Text, T.Text) textTypesMap = M.fromList textTypes -revTextTypesMap :: M.Map String TextType+revTextTypesMap :: M.Map T.Text TextType revTextTypesMap = M.fromList $ map (\(k, (v,_)) -> (v,k)) textTypes  --TextType to (MathML, LaTeX)-textTypes :: [(TextType, (String, String))]+textTypes :: [(TextType, (T.Text, T.Text))] textTypes =   [ ( TextNormal       , ("normal", "\\mathrm"))   , ( TextBold         , ("bold", "\\mathbf"))@@ -198,7 +201,7 @@   , ( TextBoldFraktur         , ("bold-fraktur","\\mathbffrak"))   , ( TextSansSerifItalic     , ("sans-serif-italic","\\mathsfit")) ] -unicodeMath, base :: Set.Set String+unicodeMath, base :: Set.Set T.Text unicodeMath = Set.fromList   ["\\mathbfit", "\\mathbfsfup", "\\mathbfsfit", "\\mathbfscr",    "\\mathbffrak", "\\mathsfit"]@@ -206,7 +209,7 @@   ["\\mathbb", "\\mathrm", "\\mathbf", "\\mathit", "\\mathsf",    "\\mathtt", "\\mathfrak", "\\mathcal"] -alts :: M.Map String String+alts :: M.Map T.Text T.Text alts = M.fromList   [ ("\\mathbfit", "\\mathbf")   , ("\\mathbfsfup", "\\mathbf")@@ -216,26 +219,28 @@   , ("\\mathsfit", "\\mathsf")   ] -textPackage :: String -> [String] -> Bool+textPackage :: T.Text -> [T.Text] -> Bool textPackage s e   | s `Set.member` unicodeMath = "unicode-math" `elem` e   | s `Set.member` base    = True   | otherwise = True  -- | Mapping between LaTeX scaling commands and the scaling factor-scalers :: [(String, Rational)]+scalers :: [(T.Text, Rational)] scalers =           [ ("\\bigg", widthbigg)-          , ("\\Bigg", widthBigg)-          , ("\\big", widthbig)-          , ("\\Big", widthBig)+          , ("\\biggl", widthbigg)           , ("\\biggr", widthbigg)+          , ("\\Bigg", widthBigg)+          , ("\\Biggl", widthBigg)           , ("\\Biggr", widthBigg)+          , ("\\big", widthbig)+          , ("\\bigl", widthbig)           , ("\\bigr", widthbig)+          , ("\\Big", widthBig)+          , ("\\Bigl", widthBig)           , ("\\Bigr", widthBig)-          , ("\\biggl", widthbigg)-          , ("\\Biggl", widthBigg)-          , ("\\bigl", widthbig)]+          ]   where widthbig = 6 / 5         widthBig = 9 / 5         widthbigg = 12 / 5@@ -263,31 +268,28 @@  -- | Returns the sequence of unicode space characters closest to the -- specified width.-getSpaceChars :: Rational -> [Char]-getSpaceChars n =-  case n of-       _ | n < 0      -> "\x200B"  -- no negative space chars in unicode-         | n <= 2/18  -> "\x200A"-         | n <= 3/18  -> "\x2006"-         | n <= 4/18  -> "\xA0"   -- could also be "\x2005"-         | n <= 5/18  -> "\x2005"-         | n <= 7/18  -> "\x2004"-         | n <= 9/18  -> "\x2000"-         | n < 1      -> '\x2000' : getSpaceChars (n - (1/2))-         | n == 1     -> "\x2001"-         | otherwise  -> '\x2001' : getSpaceChars (n - 1)+getSpaceChars :: Rational -> T.Text+getSpaceChars r+  | n < 0 = "\x200B" -- no negative space chars in unicode+  | otherwise = fracSpaces f <> emQuads n+  where+    (n, f) = properFraction r+    emQuads x = T.replicate x "\x2001"+    fracSpaces x+      | x <= 2/18 = "\x200A"+      | x <= 3/18 = "\x2006"+      | x <= 4/18 = "\xA0"   -- could also be "\x2005"+      | x <= 5/18 = "\x2005"+      | x <= 7/18 = "\x2004"+      | x <= 9/18 = "\x2000"+      | otherwise = T.cons '\x2000' $ fracSpaces (x - (1/2))  -- Accents which go under the character-under :: [String]+under :: [T.Text] under = ["\\underbrace", "\\underline", "\\underbar", "\\underbracket"] --- We want to parse these but we can't represent them in LaTeX-unavailable :: [String]-unavailable = ["\\overbracket", "\\underbracket"]-- -- | Mapping between unicode combining character and LaTeX accent command-diacriticals :: [(String, String)]+diacriticals :: [(T.Text, T.Text)] diacriticals =                [ ("\x00B4", "\\acute")                , ("\x0301", "\\acute")@@ -321,6 +323,7 @@                , ("\x23DF", "\\underbrace")                , ("\x23B5", "\\underbracket") -- mathtools                , ("\x0332", "\\underline")+               , ("_", "\\underline")                , ("\x0333", "\\underbar")                ] @@ -328,7 +331,7 @@   -- Converts unit to multiplier to reach em-unitToMultiplier :: String -> Maybe Rational+unitToMultiplier :: T.Text -> Maybe Rational unitToMultiplier s = M.lookup s units   where     units = M.fromList  [ ( "pt" , 10)@@ -350,3 +353,27 @@ handleDownup DisplayBlock  (EOver True x y)        = EOver False  x y handleDownup DisplayBlock  (EUnderover True x y z) = EUnderover False x y z handleDownup _             x                       = x++isUppercaseGreek :: T.Text -> Bool+isUppercaseGreek t = not (T.null t) && T.all isUGreek t+ where+  isUGreek c = c >= '\x0391' && c <= '\x03A9'++toPrimes :: Exp -> Maybe T.Text+toPrimes (ESymbol ty s) | ty == Pun || ty == Ord = go s+ where+  go t =+    case T.uncons t of+      Nothing -> Just ""+      Just ('\'', t') -> ("'" <>) <$> go t'+      Just ('\x2032', t') -> ("'" <>) <$> go t'+      Just ('\x2033', t') -> ("''" <>) <$> go t'+      Just ('\x2034', t') -> ("'''" <>) <$> go t'+      Just ('\x2057', t') -> ("''''" <>) <$> go t'+      _ -> Nothing+toPrimes _ = Nothing++isRLSequence :: [Alignment] -> Bool+isRLSequence [AlignRight, AlignLeft] = True+isRLSequence (AlignRight : AlignLeft : as) = isRLSequence as+isRLSequence _ = False
src/Text/TeXMath/TeX.hs view
@@ -1,55 +1,64 @@+{-# LANGUAGE OverloadedStrings #-}+ module Text.TeXMath.TeX (TeX(..),                          renderTeX,                          isControlSeq,                          escapeLaTeX) where-import Data.List (isPrefixOf)-import Data.Char (isLetter, isAlphaNum)+import Data.Char (isLetter, isAlphaNum, isAscii)+import qualified Data.Text as T  -- | An intermediate representation of TeX math, to be used in rendering.-data TeX = ControlSeq String+data TeX = ControlSeq T.Text          | Token Char-         | Literal String+         | Literal T.Text          | Grouped [TeX]          | Space          deriving (Show, Eq)  -- | Render a 'TeX' to a string, appending to the front of the given string.-renderTeX :: TeX -> String -> String-renderTeX (Token c) cs     = c:cs+renderTeX :: TeX -> T.Text -> T.Text+renderTeX (Token c) cs     = T.cons c cs renderTeX (Literal s) cs-  | startsWith (not . isLetter)-               (reverse s) = s ++ cs-  | startsWith isLetter cs = s ++ (' ':cs)-  | otherwise              = s ++ cs+  | endsWith (not . isLetter) s = s <> cs+  | startsWith isLetter cs      = s <> T.cons ' ' cs+  | otherwise                   = s <> cs renderTeX (ControlSeq s) cs-  | s == "\\ "               = s ++ cs-  | startsWith isAlphaNum cs = s ++ (' ':cs)-  | otherwise                = s ++ cs+  | s == "\\ "               = s <> cs+  | startsWith (\c -> isAlphaNum c || not (isAscii c)) cs+                             = s <> T.cons ' ' cs+  | otherwise                = s <> cs renderTeX (Grouped [Grouped xs]) cs  = renderTeX (Grouped xs) cs renderTeX (Grouped xs) cs     =-  '{' : foldr renderTeX "" (trimSpaces xs) ++ "}" ++ cs-renderTeX Space ""             = "" -- no need to end with space-renderTeX Space ('^':cs)       = '^':cs  -- no space before ^-renderTeX Space ('_':cs)       = '_':cs  -- no space before _-renderTeX Space (' ':cs)       = ' ':cs  -- no doubled up spaces+  "{" <> foldr renderTeX "" (trimSpaces xs) <> "}" <> cs renderTeX Space cs-  | "\\limits" `isPrefixOf` cs = cs      -- no space before \limits-  | otherwise                  = ' ':cs+  | cs == ""                   = ""+  | any (`T.isPrefixOf` cs) ps = cs+  | otherwise                  = T.cons ' ' cs+  where+    -- No space before ^, _, or \limits, and no doubled up spaces+    ps = [ "^", "_", " ", "\\limits" ]  trimSpaces :: [TeX] -> [TeX] trimSpaces = reverse . go . reverse . go   where go = dropWhile (== Space) -startsWith :: (Char -> Bool) -> String -> Bool-startsWith p (c:_) = p c-startsWith _ []    = False+startsWith :: (Char -> Bool) -> T.Text -> Bool+startsWith p t = case T.uncons t of+  Just (c, _) -> p c+  Nothing     -> False -isControlSeq :: String -> Bool-isControlSeq ['\\',c] = c /= ' '-isControlSeq ('\\':xs) = all isLetter xs-isControlSeq _ = False+endsWith :: (Char -> Bool) -> T.Text -> Bool+endsWith p t = case T.unsnoc t of+  Just (_, c) -> p c+  Nothing     -> False +isControlSeq :: T.Text -> Bool+isControlSeq t = case T.uncons t of+  Just ('\\', xs) -> T.length xs == 1 && xs /= " "+                     || T.all isLetter xs+  _               -> False+ escapeLaTeX :: Char -> TeX escapeLaTeX c =   case c of@@ -67,5 +76,5 @@        '\x2032' -> Literal "'"        '\x2033' -> Literal "''"        '\x2034' -> Literal "'''"-       _ | c `elem` "#$%&_{} " -> Literal ("\\" ++ [c])+       _ | T.any (== c) "#$%&_{} " -> Literal ("\\" <> T.singleton c)          | otherwise -> Token c
src/Text/TeXMath/Types.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE DeriveDataTypeable, TypeSynonymInstances #-}+{-# LANGUAGE DeriveDataTypeable, TypeSynonymInstances, OverloadedStrings #-} {- Copyright (C) 2009 John MacFarlane <jgm@berkeley.edu> @@ -24,11 +24,12 @@                            FractionType(..), TextType(..),                            Alignment(..), DisplayType(..),                            Operator(..), FormType(..), Record(..),-                           Property, Position(..), Env, defaultEnv,-                           InEDelimited)+                           Property, Position(..), StrokeType(..),+                           Env, defaultEnv, InEDelimited) where  import Data.Generics+import qualified Data.Text as T  data TeXSymbolType = Ord | Op | Bin | Rel | Open | Close | Pun | Accent                      | Fence | TOver | TUnder | Alpha | BotAccent | Rad@@ -43,21 +44,24 @@                   | NoLineFrac   -- ^ No line between top and bottom                   deriving (Show, Read, Eq, Ord, Data, Typeable) +data StrokeType = ForwardSlash | BackSlash | XSlash+                  deriving (Show, Read, Eq, Ord, Data, Typeable)+ type ArrayLine = [[Exp]]  data Exp =-    ENumber String  -- ^ A number (@\<mn\>@ in MathML).+    ENumber T.Text  -- ^ A number (@\<mn\>@ in MathML).   | EGrouped [Exp]  -- ^ A group of expressions that function as a unit                     -- (e.g. @{...}@) in TeX, @\<mrow\>...\</mrow\>@ in MathML.-  | EDelimited String String [InEDelimited] -- ^ A group of expressions inside+  | EDelimited T.Text T.Text [InEDelimited] -- ^ A group of expressions inside                     -- paired open and close delimiters (which may in some                     -- cases be null).-  | EIdentifier String  -- ^ An identifier, e.g. a variable (@\<mi\>...\</mi\>@+  | EIdentifier T.Text  -- ^ An identifier, e.g. a variable (@\<mi\>...\</mi\>@                     -- in MathML.  Note that MathML tends to use @\<mi\>@ tags                     -- for "sin" and other mathematical operators; these                     -- are represented as 'EMathOperator' in TeXMath.-  | EMathOperator String  -- ^ A spelled-out operator like @lim@ or @sin@.-  | ESymbol TeXSymbolType String  -- ^ A symbol.+  | EMathOperator T.Text  -- ^ A spelled-out operator like @lim@ or @sin@.+  | ESymbol TeXSymbolType T.Text  -- ^ A symbol.   | ESpace Rational -- ^ A space, with the width specified in em.   | ESub Exp Exp  -- ^ An expression with a subscript.  First argument is base,                   -- second subscript.@@ -78,6 +82,7 @@                        -- something under it.   | EPhantom Exp  -- ^ A "phantom" operator that takes space but doesn't display.   | EBoxed Exp    -- ^ A boxed expression.+  | ECancel StrokeType Exp -- ^ A cancelled expression.   | EFraction FractionType Exp Exp  -- ^ A fraction.  First argument is                        -- numerator, second denominator.   | ERoot Exp Exp  -- ^ An nth root.  First argument is index, second is base.@@ -88,7 +93,7 @@                   -- specifies the alignments of the columns; the second gives                   -- the contents of the lines.  All of these lists should be                   -- the same length.-  | EText TextType String  -- ^ Some normal text, possibly styled.+  | EText TextType T.Text  -- ^ Some normal text, possibly styled.   | EStyled TextType [Exp] -- ^  A group of styled expressions.   deriving (Show, Read, Eq, Ord, Data, Typeable) @@ -96,7 +101,7 @@ -- (represented here as @Right@ values) or fences (represented here as -- @Left@, and in LaTeX using @\mid@). type InEDelimited = Either Middle Exp-type Middle = String+type Middle = T.Text  data DisplayType = DisplayBlock  -- ^ A displayed formula.                  | DisplayInline  -- ^ A formula rendered inline in text.@@ -120,13 +125,13 @@  data FormType = FPrefix | FPostfix | FInfix deriving (Show, Ord, Eq) -type Property = String+type Property = T.Text  -- | A record of the MathML dictionary as defined -- <http://www.w3.org/TR/MathML3/appendixc.html in the specification> data Operator = Operator-                  { oper :: String -- ^ Operator-                  , description :: String -- ^ Plain English Description+                  { oper :: T.Text -- ^ Operator+                  , description :: T.Text -- ^ Plain English Description                   , form :: FormType -- ^ Whether Prefix, Postfix or Infix                   , priority :: Int -- ^ Default priority for implicit                                     --   nesting@@ -141,16 +146,16 @@ -- <http://milde.users.sourceforge.net/LUCR/Math/data/unimathsymbols.txt -- here> data Record = Record { uchar :: Char -- ^ Unicode Character-                     , commands :: [(String, String)] -- ^ LaTeX commands (package, command)+                     , commands :: [(T.Text, T.Text)] -- ^ LaTeX commands (package, command)                      , category :: TeXSymbolType -- ^ TeX math category-                     , comments :: String -- ^ Plain english description+                     , comments :: T.Text -- ^ Plain english description                      } deriving (Show)  data Position = Under | Over  -- | List of available packages-type Env = [String]+type Env = [T.Text]  -- | Contains @amsmath@ and @amssymbol@-defaultEnv :: [String]+defaultEnv :: [T.Text] defaultEnv = ["amsmath", "amssymb"]
src/Text/TeXMath/Unicode/Fonts.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE OverloadedStrings #-} {- Copyright (C) 2014 Matthew Pickering <matthewtpickering@gmail.com> @@ -27,17 +28,18 @@  Utilities to convert between MS font codepoints and unicode characters. -}-module Text.TeXMath.Unicode.Fonts (getUnicode, Font(..), stringToFont) where+module Text.TeXMath.Unicode.Fonts (getUnicode, Font(..), textToFont) where import qualified Data.Map as M+import qualified Data.Text as T  -- | Enumeration of recognised fonts data Font = Symbol -- ^ <http://en.wikipedia.org/wiki/Symbol_(typeface) Adobe Symbol>           deriving (Show, Eq)  -- | Parse font name into Font if possible.-stringToFont :: String -> Maybe Font-stringToFont "Symbol" = Just Symbol-stringToFont _ = Nothing+textToFont :: T.Text -> Maybe Font+textToFont "Symbol" = Just Symbol+textToFont _ = Nothing  -- | Given a font and codepoint, returns the corresponding unicode -- character
src/Text/TeXMath/Unicode/ToTeX.hs view
@@ -1,4 +1,6 @@ {-# LANGUAGE ViewPatterns #-}+{-# LANGUAGE BangPatterns #-}+{-# LANGUAGE OverloadedStrings #-} {- Copyright (C) 2014 Matthew Pickering <matthewtpickering@gmail.com> @@ -42,11 +44,13 @@ -}  module Text.TeXMath.Unicode.ToTeX ( getTeXMath-                                      , getSymbolType-                                      , records-                                      ) where+                                  , getSymbolType+                                  , symbolMap+                                  , records+                                  ) where  import qualified Data.Map as M+import qualified Data.Text as T import Text.TeXMath.TeX import Text.TeXMath.Types import Data.Maybe (fromMaybe, listToMaybe, mapMaybe)@@ -57,8 +61,8 @@ -- | Converts a string of unicode characters into a strong of equivalent -- TeXMath commands. An environment is a list of strings specifying which -- additional packages are available.-getTeXMath :: String -> Env -> [TeX]-getTeXMath s e = concatMap (charToString e) s+getTeXMath :: T.Text -> Env -> [TeX]+getTeXMath s e = concatMap (charToString e) $ T.unpack s  -- Categories which require braces commandTypes :: [TeXSymbolType]@@ -72,15 +76,18 @@  -- Takes a single character and attempts to convert it to a latex string charToLaTeXString :: Env -> Char -> Maybe [TeX]+-- we ignore 65024 VARIATION SELECTOR 1 to avoid putting it+-- literally in the output ; it is used in mathml output.+charToLaTeXString _ '\65024' = Just [] charToLaTeXString environment c = do   v <- M.lookup c recordsMap   -- Required packages for the command-  let toLit [x]  = [Token x]-      toLit []   = []-      toLit cs   = [Literal cs]+  let toLit cs = case T.uncons cs of+        Just (x, xs) -> if T.null xs then [Token x] else [Literal cs]+        Nothing      -> []   let cmds = commands v-  raw <- lookup "base" cmds-          <|> listToMaybe (mapMaybe (flip lookup cmds) environment)+  raw <- lookup "base" cmds <|>+         listToMaybe (mapMaybe (flip lookup cmds) environment)   let latexCommand = if isControlSeq raw                         then [ControlSeq raw]                         else toLit raw@@ -103,6 +110,20 @@ -- | Returns TeX symbol type corresponding to a unicode character. getSymbolType :: Char -> TeXSymbolType getSymbolType c = fromMaybe Ord (category <$> M.lookup c recordsMap)++-- | Mapping from TeX commands to Exp.+symbolMap :: M.Map T.Text Exp+symbolMap = foldr go mempty records+ where+   go r m =+     foldr (\(_,!c) ->+              if T.take 1 c == "\\" && not (T.any (=='{') c)+              then+                let !t = T.singleton $! uchar $! r+                 in M.insert c (ESymbol (category r) t)+              else id)+           m+           (commands r)   records :: [Record]
src/Text/TeXMath/Unicode/ToUnicode.hs view
@@ -27,15 +27,16 @@  import Text.TeXMath.Types import qualified Data.Map as M+import qualified Data.Text as T import Data.Maybe (fromMaybe)  -- | Replace characters with their corresponding mathvariant unicode character. --  MathML has a mathvariant attribute which is unimplemented in Firefox --  (see <https://bugzilla.mozilla.org/show_bug.cgi?id=114365 here>) --  Therefore, we may want to translate mathscr, etc to unicode symbols directly.-toUnicode :: TextType -> String -> String+toUnicode :: TextType -> T.Text -> T.Text toUnicode TextNormal = id-toUnicode tt = map (\c -> fromMaybe c (toUnicodeChar (tt, c)))+toUnicode tt = T.map (\c -> fromMaybe c (toUnicodeChar (tt, c)))  toUnicodeChar :: (TextType, Char) -> Maybe Char toUnicodeChar x = M.lookup x unicodeMap@@ -46,11 +47,11 @@ fromUnicodeChar c = M.lookup c reverseUnicodeMap  -- | Inverse of 'toUnicode'.-fromUnicode :: TextType -> String -> String+fromUnicode :: TextType -> T.Text -> T.Text fromUnicode tt cs =-  map (\c -> case fromUnicodeChar c of-                   Just (tt', c') | tt' == tt -> c'-                   _ -> c) cs+  T.map (\c -> case fromUnicodeChar c of+                 Just (tt', c') | tt' == tt -> c'+                 _ -> c) cs  reverseUnicodeMap :: M.Map Char (TextType, Char) reverseUnicodeMap = M.fromList $ map (\(a,b) -> (b,a)) unicodeTable@@ -185,6 +186,7 @@                , ((TextItalic,'e'),'\119890')  -- e -> 𝑒                , ((TextItalic,'f'),'\119891')  -- f -> 𝑓                , ((TextItalic,'g'),'\119892')  -- g -> 𝑔+               , ((TextItalic,'h'),'\8462')  -- h -> ℎ (Planck constant)                , ((TextItalic,'i'),'\119894')  -- i -> 𝑖                , ((TextItalic,'j'),'\119895')  -- j -> 𝑗                , ((TextItalic,'k'),'\119896')  -- k -> 𝑘
src/Text/TeXMath/Writers/Eqn.hs view
@@ -1,6 +1,6 @@-{-# LANGUAGE GeneralizedNewtypeDeriving, ViewPatterns, GADTs #-}+{-# LANGUAGE GeneralizedNewtypeDeriving, ViewPatterns, GADTs, OverloadedStrings #-} {--Copyright (C) 2014 Matthew Pickering <matthewtpickering@gmail.com>+Copyright (C) 2016-2023 John MacFarlane <jgm@berkeley.edu>  This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by@@ -20,41 +20,47 @@  module Text.TeXMath.Writers.Eqn (writeEqn) where -import Data.List (intercalate, transpose)+import Text.TeXMath.Shared (toPrimes)+import Data.List (transpose) import Data.Char (isAscii, ord)+import qualified Data.Text as T import Text.Printf (printf) import Text.TeXMath.Types import qualified Text.TeXMath.Shared as S import Data.Generics (everywhere, mkT) import Data.Ratio ((%))+import Data.Text (Text)  -- import Debug.Trace -- tr' x = trace (show x) x --- | Transforms an expression tree to equivalent Eqn with the default--- packages (amsmath and amssymb)-writeEqn :: DisplayType -> [Exp] -> String+-- | Transforms an expression tree to equivalent Eqn+writeEqn :: DisplayType -> [Exp] -> T.Text writeEqn dt exprs =-  intercalate " " $ map writeExp $ everywhere (mkT $ S.handleDownup dt) exprs+  T.unwords $ map writeExp $ everywhere (mkT $ S.handleDownup dt) exprs  -- like writeExp but inserts {} if contents contain a space-writeExp' :: Exp -> String+writeExp' :: Exp -> T.Text writeExp' e@(EGrouped _) = writeExp e-writeExp' e = if ' ' `elem` s-                 then "{" ++ s ++ "}"+writeExp' e = if T.any (== ' ') s+                 then asgroup s                  else s                where s = writeExp e -writeExps :: [Exp] -> String-writeExps = intercalate " " . map writeExp+writeExps :: [Exp] -> T.Text+writeExps = T.intercalate " " . map writeExp -writeExp :: Exp -> String+asgroup :: Text -> Text+asgroup "" = "{\"\"}"  -- see #198+asgroup t = "{" <> t <> "}"++writeExp :: Exp -> T.Text writeExp (ENumber s) = s-writeExp (EGrouped es) = "{" ++ writeExps es ++ "}"+writeExp (EGrouped es) = asgroup $ writeExps es writeExp (EDelimited open close es) =-  "left " ++ mbQuote open ++ " " ++ intercalate " " (map fromDelimited es) ++-  " right " ++ mbQuote close-  where fromDelimited (Left e)  = "\"" ++ e ++ "\""+  "left " <> mbQuote open <> " " <> T.intercalate " " (map fromDelimited es) <>+  " right " <> mbQuote close+  where fromDelimited (Left e)  = "\"" <> e <> "\""         fromDelimited (Right e) = writeExp e         mbQuote "" = "\"\""         mbQuote s  = s@@ -63,12 +69,16 @@                "tanh", "arc", "max", "min", "lim",                "log", "ln", "exp"]      then s-     else "\"" ++ s ++ "\""-writeExp (ESymbol Ord [c])  -- do not render "invisible operators"+     else "\"" <> s <> "\""+writeExp (ESymbol Ord (T.unpack -> [c]))  -- do not render "invisible operators"   | c `elem` ['\x2061'..'\x2064'] = "" -- see 3.2.5.5 of mathml spec writeExp (EIdentifier s) = writeExp (ESymbol Ord s) writeExp (ESymbol t s) =   case s of+    "{"     -> "\\[lC]"+    "}"     -> "\\[rC]"+    "\8722" -> "-"  -- minus sign, see #200+    "\8943" -> "cdots" -- centered ellipses, see #200     "\8805" -> ">="     "\8804" -> "<="     "\8801" -> "=="@@ -127,19 +137,19 @@     "\958" -> "xi"     "\926" -> "XI"     "\950" -> "zeta"-    _      -> let s' = if all isAscii s+    _      -> let s' = if T.all isAscii s                           then s-                          else "\\[" ++ unwords (map toUchar s) ++ "]"-                  toUchar c = printf "u%04X" (ord c)-              in  if length s > 1 && (t == Rel || t == Bin || t == Op)-                     then "roman{\"" +++                          else "\\[" <> T.unwords (map toUchar $ T.unpack s) <> "]"+                  toUchar c = T.pack $ printf "u%04X" (ord c)+              in  if T.length s > 1 && (t == Rel || t == Bin || t == Op)+                     then "roman{\"" <>                           (if t == Rel || t == Bin                               then " "-                              else "") ++-                          s' +++                              else "") <>+                          s' <>                           (if t == Rel || t == Bin || t == Op                               then " "-                              else "") +++                              else "") <>                           "\"}"                      else s' @@ -147,56 +157,65 @@   case d of       _ | d > 0 && d < (2 % 9) -> "^"         | d >= (2 % 9) && d < (3 % 9) -> "~"-        | d < 0     -> "back " ++ show (floor (-1 * d * 100) :: Int)-        | otherwise -> "fwd " ++ show (floor (d * 100) :: Int)-writeExp (EFraction fractype e1 e2) = writeExp' e1 ++ op ++ writeExp' e2+        | d < 0     -> "back " <> tshow (floor (-1 * d * 100) :: Int)+        | otherwise -> "fwd " <> tshow (floor (d * 100) :: Int)+writeExp (EFraction fractype e1 e2) = writeExp' e1 <> op <> writeExp' e2   where op = if fractype == NoLineFrac                 then " / "                 else " over "-writeExp (ESub b e1) = writeExp' b ++ " sub " ++ writeExp' e1-writeExp (ESuper b e1) = writeExp' b ++ " sup " ++ writeExp' e1+writeExp (ESub b e1) = writeExp' b <> " sub " <> writeExp' e1+writeExp (ESuper b e1) = writeExp' b <>+  case toPrimes e1 of+    Just ps -> ps+    _ -> " sup " <> writeExp' e1 writeExp (ESubsup b e1 e2) =-  writeExp' b ++ " sub " ++ writeExp' e1 ++ " sup " ++ writeExp' e2+  writeExp' b <> " sub " <> writeExp' e1 <>+  case toPrimes e2 of+    Just ps -> ps+    _ -> " sup " <> writeExp' e2 writeExp (EOver _convertible b e1) =-  writeExp' b ++ " to " ++ writeExp' e1+  writeExp' b <> " to " <> writeExp' e1 writeExp (EUnder _convertible b e1) =-  writeExp' b ++ " from " ++ writeExp' e1+  writeExp' b <> " from " <> writeExp' e1 writeExp (EUnderover convertible b e1@(ESymbol Accent _) e2) =   writeExp (EUnder convertible (EOver False b e2) e1) writeExp (EUnderover convertible b e1 e2@(ESymbol Accent _)) =   writeExp (EOver convertible (EUnder False b e1) e2) writeExp (EUnderover _convertible b e1 e2) =-  writeExp' b ++ " from " ++ writeExp' e1 ++ " to " ++ writeExp' e2-writeExp (ESqrt e) = "sqrt " ++ writeExp' e-writeExp (ERoot i e) = "\"\" sup " ++ writeExp' i ++ " sqrt " ++ writeExp' e-writeExp (EPhantom e) = "hphantom " ++ writeExp' e+  writeExp' b <> " from " <> writeExp' e1 <> " to " <> writeExp' e2+writeExp (ESqrt e) = "sqrt " <> writeExp' e+writeExp (ERoot i e) = "\"\" sup " <> writeExp' i <> " sqrt " <> writeExp' e+writeExp (EPhantom e) = "hphantom " <> writeExp' e writeExp (EBoxed e) = writeExp e -- TODO: any way to do this?+writeExp (ECancel _ e) = writeExp e -- TODO  writeExp (EScaled _size e) = writeExp e -- TODO: any way? writeExp (EText ttype s) =-  let quoted = "\"" ++ s ++ "\""+  let quoted = "\"" <> s <> "\""   in case ttype of-       TextNormal -> "roman " ++ quoted+       TextNormal -> "roman " <> quoted        TextItalic -> quoted-       TextBold   -> "bold " ++ quoted-       TextBoldItalic -> "bold italic " ++ quoted+       TextBold   -> "bold " <> quoted+       TextBoldItalic -> "bold italic " <> quoted        _   -> quoted writeExp (EStyled ttype es) =-  let contents = "{" ++ writeExps es ++ "}"+  let contents = asgroup $ writeExps es   in case ttype of-       TextNormal -> "roman " ++ contents-       TextItalic -> "italic " ++ contents-       TextBold   -> "bold " ++ contents-       TextBoldItalic -> "bold italic " ++ contents+       TextNormal -> "roman " <> contents+       TextItalic -> "italic " <> contents+       TextBold   -> "bold " <> contents+       TextBoldItalic -> "bold italic " <> contents        _   -> contents writeExp (EArray aligns rows) =-  "matrix{\n" ++ concat cols ++ "}"+  "matrix{\n" <> T.concat cols <> "}"   where cols = zipWith tocol aligns (transpose rows)         tocol al cs =           (case al of                AlignLeft -> "lcol"                AlignCenter -> "ccol"-               AlignRight -> "rcol") ++-            "{ " ++ intercalate " above " (map tocell cs) ++ " }\n"+               AlignRight -> "rcol") <>+            "{ " <> T.intercalate " above " (map tocell cs) <> " }\n"         tocell [e] = writeExp' e         tocell es  = writeExp (EGrouped es) +tshow :: Show a => a -> T.Text+tshow = T.pack . show
src/Text/TeXMath/Writers/MathML.hs view
@@ -1,4 +1,5 @@-{-# LANGUAGE ViewPatterns, ScopedTypeVariables #-}+{-# LANGUAGE ViewPatterns, ScopedTypeVariables, OverloadedStrings,+   TupleSections #-} {- Copyright (C) 2009 John MacFarlane <jgm@berkeley.edu> @@ -25,17 +26,18 @@  import Text.XML.Light import Text.TeXMath.Types-import Text.TeXMath.Unicode.ToUnicode import Data.Generics (everywhere, mkT)-import Text.TeXMath.Shared (getMMLType, handleDownup)+import Text.TeXMath.Unicode.ToUnicode (toUnicode)+import Text.TeXMath.Shared (getMMLType, handleDownup,+                            isUppercaseGreek, isRLSequence) import Text.TeXMath.Readers.MathML.MMLDict (getMathMLOperator)-import Control.Applicative ((<$>))+import qualified Data.Text as T import Text.Printf  -- | Transforms an expression tree to a MathML XML tree writeMathML :: DisplayType -> [Exp] -> Element writeMathML dt exprs =-  add_attr dtattr $ math $ showExp TextNormal $ EGrouped+  add_attr dtattr $ math $ showExp Nothing $ EGrouped   $ everywhere (mkT $ handleDownup dt) exprs     where dtattr = Attr (unqual "display") dt'           dt' =  case dt of@@ -48,14 +50,16 @@ mrow :: [Element] -> Element mrow = unode "mrow" -showFraction :: TextType -> FractionType -> Exp -> Exp -> Element+showFraction :: Maybe TextType -> FractionType -> Exp -> Exp -> Element showFraction tt ft x y =   case ft of        NormalFrac   -> unode "mfrac" [x', y']        InlineFrac   -> withAttribute "displaystyle" "false" .-                         unode "mstyle" . unode "mfrac" $ [x', y']+                         unode "mstyle" .+                         unode "mfrac" $ [x', y']        DisplayFrac  -> withAttribute "displaystyle" "true" .-                         unode "mstyle" . unode "mfrac" $ [x', y']+                         unode "mstyle" .+                         unode "mfrac" $ [x', y']        NoLineFrac   -> withAttribute "linethickness" "0" .                          unode "mfrac" $ [x', y']   where x' = showExp tt x@@ -64,66 +68,95 @@ spaceWidth :: Rational -> Element spaceWidth w =   withAttribute "width" (dropTrailing0s-     (printf "%.3f" (fromRational w :: Double)) ++ "em") $ unode "mspace" ()+     (T.pack $ printf "%.3f" (fromRational w :: Double)) <> "em") $ unode "mspace" ()  makeStretchy :: FormType -> Element -> Element makeStretchy (fromForm -> t)  = withAttribute "stretchy" "true"                                 . withAttribute "form" t -fromForm :: FormType -> String+fromForm :: FormType -> T.Text fromForm FInfix   = "infix" fromForm FPostfix = "postfix" fromForm FPrefix  = "prefix" - makeScaled :: Rational -> Element -> Element-makeScaled x = withAttribute "minsize" s . withAttribute "maxsize" s-  where s = dropTrailing0s $ printf "%.3f" (fromRational x :: Double)+makeScaled x = withAttribute "minsize" p . withAttribute "maxsize" p+               . setAttribute "stretchy" "true"+  where p = T.pack $ printf "%d%%" (round (100*x) :: Int) -dropTrailing0s :: String -> String-dropTrailing0s = reverse . go . reverse-  where go ('0':'.':xs) = '0':'.':xs-        go ('0':xs) = go xs-        go xs       = xs -makeStyled :: TextType -> [Element] -> Element-makeStyled a es = withAttribute "mathvariant" attr-                $ unode "mstyle" es-  where attr = getMMLType a+dropTrailing0s :: T.Text -> T.Text+dropTrailing0s t = case T.unsnoc t of -- T.spanEnd does not exist+  Just (ts, '0') -> addZero $ T.dropWhileEnd (== '0') ts+  _              -> t+  where+    addZero x = case T.unsnoc x of+      Just (_, '.') -> T.snoc x '0'+      _ -> x --- Note: Converts strings to unicode directly, as few renderers support those mathvariants.-makeText :: TextType -> String -> Element+makeText :: TextType -> T.Text -> Element makeText a s = case (leadingSp, trailingSp) of                    (False, False) -> s'                    (True,  False) -> mrow [sp, s']                    (False, True)  -> mrow [s', sp]                    (True,  True)  -> mrow [sp, s', sp]   where sp = spaceWidth (1/3)-        s' = withAttribute "mathvariant" attr $ unode "mtext" $ toUnicode a s-        trailingSp = not (null s) && last s `elem` " \t"-        leadingSp  = not (null s) && head s `elem` " \t"-        attr = getMMLType a+        s' = withAttribute "mathvariant" (getMMLType a) $+               -- use Unicode characters as few browsers support the mathvariants+               tunode "mtext" $ toUnicode a s+        trailingSp = case T.unsnoc s of+          Just (_, c) -> T.any (== c) " \t"+          _           -> False+        leadingSp  = case T.uncons s of+          Just (c, _) -> T.any (== c) " \t"+          _           -> False -makeArray :: TextType -> [Alignment] -> [ArrayLine] -> Element+makeArray :: Maybe TextType -> [Alignment] -> [ArrayLine] -> Element makeArray tt as ls = unode "mtable" $   map (unode "mtr" .-    zipWith (\a -> setAlignment a .  unode "mtd". map (showExp tt)) as') ls-   where setAlignment AlignLeft    = withAttribute "columnalign" "left"-         setAlignment AlignRight   = withAttribute "columnalign" "right"-         setAlignment AlignCenter  = withAttribute "columnalign" "center"-         as'                       = as ++ cycle [AlignCenter]+    zipWith (\a -> setAlignment a .  unode "mtd". showExps tt) as') ls+   -- see #205 on the need for style attributes:+   where setAlignment AlignLeft    =+           withAttribute "columnalign" "left" .+           withAttribute "style"+             (if isRLSequence as+                 then "text-align: left; padding-left: 0"+                 else "text-align: left")+         setAlignment AlignRight   =+           withAttribute "columnalign" "right" .+           withAttribute "style"+             (if isRLSequence as+                 then "text-align: right; padding-right: 0"+                 else "text-align: right")+         setAlignment AlignCenter  =+           withAttribute "columnalign" "center" .+           withAttribute "style" "text-align: center"+         as'                       = as ++ repeat AlignCenter -withAttribute :: String -> String -> Element -> Element-withAttribute a = add_attr . Attr (unqual a)+-- Kept as String for Text.XML.Light+withAttribute :: String -> T.Text -> Element -> Element+withAttribute a = add_attr . Attr (unqual a) . T.unpack -accent :: String -> Element+-- Preserves the order of any existing attributes+setAttribute :: String -> T.Text -> Element -> Element+setAttribute a v e = e { elAttribs = update (elAttribs e) }+  where+    newAttr = Attr (unqual a) (T.unpack v)+    update [] = [newAttr]+    update (x:xs)+        | qName (attrKey x) == a =+            newAttr : xs+        | otherwise =+            x : update xs++accent :: T.Text -> Element accent = add_attr (Attr (unqual "accent") "true") .-           unode "mo"+           tunode "mo"  makeFence :: FormType -> Element -> Element makeFence (fromForm -> t) = withAttribute "stretchy" "false" . withAttribute "form" t -showExp' :: TextType -> Exp -> Element+showExp' :: Maybe TextType -> Exp -> Element showExp' tt e =   case e of     ESymbol Accent x -> accent x@@ -132,40 +165,107 @@                            getMathMLOperator x FPostfix of                              Just True -> "true"                              _         -> "false"-      in  withAttribute "accent" isaccent $ unode "mo" x+      in  withAttribute "accent" isaccent $ tunode "mo" x     _                -> showExp tt e -showExp :: TextType -> Exp -> Element+showExps :: Maybe TextType -> [Exp] -> [Element]+showExps tt = map (showExp tt) . insertFunctionApps++insertFunctionApps :: [Exp] -> [Exp]+-- handle this as a special case, or we get an infinite loop+-- since we insert a new EGrouped to which insertFunctionApp will be applied.+insertFunctionApps [e@EMathOperator{}, ESymbol _ "\x2061"] =+  [e, ESymbol Pun "\x2061"]+insertFunctionApps es' = go es'+ where+  go [] = []+  go (e@EMathOperator{} : ESymbol _ "\x2061" : es) =+    EGrouped [e , ESymbol Pun "\x2061"] : go es+  go (e@EMathOperator{} : es@(_:_)) =+    EGrouped [e, ESymbol Pun "\x2061"] : go es+  go (e:es) = e : go es++showExp :: Maybe TextType -> Exp -> Element showExp tt e =- case e of-   ENumber x        -> unode "mn" x+ let -- variant node: tries to convert text to appropriate unicode+     -- characters depending on style+     vnode :: String -> T.Text -> Element+     vnode elname t+       = case tt of+           Nothing ->+             if isUppercaseGreek t -- see #255+                then withAttribute "mathvariant" "normal" $ tunode elname t+                else tunode elname t+           Just TextNormal -> withAttribute "mathvariant" "normal" $+                                tunode elname t+           Just TextBold+             | elname == "mi" && not (isUppercaseGreek t) -- #255, #280+               -> withAttribute "mathvariant" "bold-italic" $+                     tunode elname (toUnicode TextBoldItalic t)+             | otherwise+               -> withAttribute "mathvariant" "bold" $+                     tunode elname (toUnicode TextBold t)+           Just textStyle -> withAttribute "mathvariant" (getMMLType textStyle) $+                              -- we use unicode chars because browsers don't+                              -- completely support mathvariant:+                              tunode elname (toUnicode textStyle t)+  in case e of+   ENumber x        -> vnode "mn" x    EGrouped [x]     -> showExp tt x-   EGrouped xs      -> mrow $ map (showExp tt) xs+   EGrouped xs      -> mrow $ showExps tt xs    EDelimited start end xs -> mrow $-                       [ makeStretchy FPrefix (unode "mo" start) | not (null start) ] ++-                       map (either (makeStretchy FInfix . unode "mo") (showExp tt)) xs ++-                       [ makeStretchy FPostfix (unode "mo" end) | not (null end) ]-   EIdentifier x    -> unode "mi" $ toUnicode tt x-   EMathOperator x  -> unode "mo" x-   ESymbol Open x   -> makeFence FPrefix $ unode "mo" x-   ESymbol Close x  -> makeFence FPostfix $ unode "mo" x-   ESymbol Ord x    -> unode "mi" x-   ESymbol _ x      -> unode "mo" x+     [ makeStretchy FPrefix (vnode "mo" start) | not (T.null start) ] +++     map (either (makeStretchy FInfix . vnode "mo") (showExp tt)) xs +++     [ makeStretchy FPostfix (vnode "mo" end)+        | not (T.null end) ]+   EIdentifier x    -> vnode "mi" x+   EMathOperator x  -> -- see #257, #270+     case tt of+       Nothing -> withAttribute "mathvariant" "normal" $ tunode "mi" x+       _ -> vnode "mi" x+   ESymbol Open x   -> makeFence FPrefix $ vnode "mo" x+   ESymbol Close x  -> makeFence FPostfix $ vnode "mo" x+   ESymbol Ord x+     | x == "\x2061" -> vnode "mo" x+     | otherwise    -> vnode "mi" x+   ESymbol _ x      -> vnode "mo" x    ESpace x         -> spaceWidth x    EFraction ft x y -> showFraction tt ft x y-   ESub x y         -> unode "msub" $ map (showExp tt) [x, y]-   ESuper x y       -> unode "msup" $ map (showExp tt) [x, y]-   ESubsup x y z    -> unode "msubsup" $ map (showExp tt) [x, y, z]-   EUnder _ x y     -> unode "munder" [showExp tt x, showExp' tt y]-   EOver _ x y      -> unode "mover" [showExp tt x, showExp' tt y]-   EUnderover _ x y z -> unode "munderover"-                          [showExp tt x, showExp' tt y, showExp' tt z]-   EPhantom x       -> unode "mphantom" $ showExp tt x+   ESub x y         -> unode "msub" $ showExps tt [x, y]+   ESuper x y       -> unode "msup" $ showExps tt [x, y]+   ESubsup x y z    -> unode "msubsup" $ showExps tt [x, y, z]+   EUnder _ x y     -> unode "munder" $ showExps tt [x] ++ [showExp' tt y]+   EOver _ x (ESymbol Accent "\8407") -- see #218, gives better rendering for vectors+                    -> unode "mover" $ showExps tt [x] ++ [showExp' tt (ESymbol Accent "\8594")]+   EOver _ x y      -> unode "mover" $ showExps tt [x] ++ [showExp' tt y]+   EUnderover _ x y z -> unode "munderover" $+                          showExps tt [x] ++ [showExp' tt y, showExp' tt z]+   EPhantom x       -> unode "mphantom" $ showExps tt [x]    EBoxed x         -> withAttribute "notation" "box" .                        unode "menclose" $ showExp tt x+   ECancel ForwardSlash x -> withAttribute "notation" "updiagonalstrike" .+                             unode "menclose" $ showExp tt x+   ECancel BackSlash x    -> withAttribute "notation" "downdiagonalstrike" .+                             unode "menclose" $ showExp tt x+   ECancel XSlash x       -> withAttribute "notation" "updiagonalstrike downdiagonalstrike" .+                             unode "menclose" $ showExp tt x    ESqrt x          -> unode "msqrt" $ showExp tt x    ERoot i x        -> unode "mroot" [showExp tt x, showExp tt i]    EScaled s x      -> makeScaled s $ showExp tt x    EArray as ls     -> makeArray tt as ls-   EText a s        -> makeText a s-   EStyled a es     -> makeStyled a $ map (showExp a) es+   EText a s        -> case (tt, a) of+                         (Just ty, TextNormal) -> makeText ty s+                         _ -> makeText a s+   EStyled a es     -> showExp (Just a) (EGrouped es)+   -- see https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle+   -- Historically, this element accepted almost all the MathML attributes and+   -- it was used to override the default attribute values of its descendants.+   -- It was later restricted to only a few relevant styling attributes that+   -- were used in existing web pages. Nowadays, these styling attributes are+   -- common to all MathML elements and so <mstyle> is really just equivalent+   -- to an <mrow> element. However, <mstyle> may still be relevant for+   -- compatibility with MathML implementations outside browsers.++-- Kept as String for Text.XML.Light+tunode :: String -> T.Text -> Element+tunode s = unode s . T.unpack
src/Text/TeXMath/Writers/OMML.hs view
@@ -1,3 +1,5 @@+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE ViewPatterns #-} {- Copyright (C) 2012 John MacFarlane <jgm@berkeley.edu> @@ -24,14 +26,20 @@  import Text.XML.Light import Text.TeXMath.Types+import Text.TeXMath.Shared (isUppercaseGreek, isRLSequence) import Data.Generics (everywhere, mkT) import Data.Char (isSymbol, isPunctuation)+import Data.Either (lefts, isLeft, rights)+import qualified Data.Text as T+import Data.List.Split  (splitWhen)+import Data.List (intercalate)  -- | Transforms an expression tree to an OMML XML Tree writeOMML :: DisplayType -> [Exp] -> Element writeOMML dt = container . concatMap (showExp [])             . everywhere (mkT $ handleDownup dt)             . everywhere (mkT $ handleDownup' dt)+            . everywhere (mkT $ handleScaledDelims)     where container = case dt of                   DisplayBlock  -> \x -> mnode "oMathPara"                                     [ mnode "oMathParaPr"@@ -39,16 +47,18 @@                                     , mnode "oMath" x ]                   DisplayInline -> mnode "oMath" +-- Kept as String for Text.XML.Light mnode :: Node t => String -> t -> Element mnode s = node (QName s Nothing (Just "m")) +-- Kept as String for Text.XML.Light mnodeA :: Node t => String -> String -> t -> Element mnodeA s v = add_attr (Attr (QName "val" Nothing (Just "m")) v) . mnode s -str :: [Element] -> String -> Element-str []    s = mnode "r" [ mnode "t" s ]+str :: [Element] -> T.Text -> Element+str []    s = mnode "r" [ mnode "t" $ T.unpack s ] str props s = mnode "r" [ mnode "rPr" props-                        , mnode "t" s ]+                        , mnode "t" $ T.unpack s ]  showFraction :: [Element] -> FractionType -> Exp -> Exp -> Element showFraction props ft x y =@@ -75,12 +85,17 @@ maximum' xs = maximum xs  makeArray :: [Element] -> [Alignment] -> [ArrayLine] -> Element+makeArray props as rs+  | isRLSequence as = mnode "eqArr" $ map toE rs+  where toE r = mnode "e" (intercalate ampersand+                            (map (concatMap (showExp props)) r))+        ampersand = [mnode "r" [ mnode "t" ("&" :: String) ]] makeArray props as rs = mnode "m" $ mProps : map toMr rs   where mProps = mnode "mPr"                   [ mnodeA "baseJc" "center" ()-                  , mnodeA "plcHide" "1" ()+                  , mnodeA "plcHide" "on" ()                   , mnode "mcs" $ map toMc as' ]-        as'    = take (maximum' $ map length rs) $ as ++ cycle [AlignCenter]+        as'    = take (maximum' $ map length rs) $ as ++ repeat AlignCenter         toMr r = mnode "mr" $ map (mnode "e" . concatMap (showExp props)) r         toMc a = mnode "mc" $ mnode "mcPr"                             [ mnodeA "mcJc" (toAlign a) ()@@ -90,29 +105,45 @@         toAlign AlignRight   = "right"         toAlign AlignCenter  = "center" -makeText :: TextType -> String -> Element-makeText a s = str (setProps a) s+makeText :: TextType -> T.Text -> Element+makeText a s = str (mnode "nor" () : setProps a) s +defaultTo :: TextType -> [Element] -> [Element]+defaultTo tt [] = setProps tt+defaultTo _  ps = ps+ setProps :: TextType -> [Element] setProps tt =   case tt of        TextNormal       -> [sty "p"]        TextBold         -> [sty "b"]        TextItalic       -> [sty "i"]-       TextMonospace    -> [sty "p", scr "monospace"]-       TextSansSerif    -> [sty "p", scr "sans-serif"]-       TextDoubleStruck -> [sty "p", scr "double-struck"]-       TextScript       -> [sty "p", scr "script"]-       TextFraktur      -> [sty "p", scr "fraktur"]+       TextMonospace    -> [scr "monospace", sty "p"]+       TextSansSerif    -> [scr "sans-serif", sty "p"]+       TextDoubleStruck -> [scr "double-struck", sty "p"]+       TextScript       -> [scr "script", sty "p"]+       TextFraktur      -> [scr "fraktur", sty "p"]        TextBoldItalic    -> [sty "bi"]-       TextSansSerifBold -> [sty "b", scr "sans-serif"]-       TextBoldScript    -> [sty "b", scr "script"]-       TextBoldFraktur   -> [sty "b", scr "fraktur"]-       TextSansSerifItalic -> [sty "i", scr "sans-serif"]-       TextSansSerifBoldItalic -> [sty "bi", scr "sans-serif"]+       TextSansSerifBold -> [scr "sans-serif", sty "b"]+       TextBoldScript    -> [scr "script", sty "b"]+       TextBoldFraktur   -> [scr "fraktur", sty "b"]+       TextSansSerifItalic -> [scr "sans-serif", sty "i"]+       TextSansSerifBoldItalic -> [scr "sans-serif", sty "bi"]    where sty x = mnodeA "sty" x ()          scr x = mnodeA "scr" x () +handleScaledDelims :: [Exp] -> [Exp]+handleScaledDelims (x@(EScaled scale (ESymbol Open op)) : xs) =+  case break isCloser xs of+    (ys, EScaled scale' (ESymbol Close cl) : zs) | scale' == scale ->+      EDelimited op cl (map Right ys) : zs+    _ -> x:xs+ where+  isCloser (EScaled _ (ESymbol Close _)) = True+  isCloser _ = False+handleScaledDelims xs = xs++ handleDownup :: DisplayType -> [Exp] -> [Exp] handleDownup dt (exp' : xs) =   case exp' of@@ -180,30 +211,47 @@      [makeNary props "undOvr" s y z w]    EGrouped [ESubsup (ESymbol Op s) y z, w] ->      [makeNary props "subSup" s y z w]+   EGrouped []      -> [str props "\x200B"] -- avoid dashed box, see #118    EGrouped xs      -> concatMap (showExp props) xs    EDelimited start end xs ->-                       [mnode "d" [ mnode "dPr"-                                    [ mnodeA "begChr" start ()-                                    , mnodeA "endChr" end ()-                                    , mnode "grow" () ]-                                  , mnode "e" $ concatMap-                                    (either ((:[]) . str props) (showExp props)) xs-                                  ] ]+                  [ mnode "d" $ mnode "dPr"+                               [ mnodeA "begChr" (T.unpack start) ()+                               , mnodeA "sepChr" (T.unpack sepchr) ()+                               , mnodeA "endChr" (T.unpack end) ()+                               , mnode "grow" () ]+                              : map (mnode "e" . concatMap (showExp props)) es+                  ]+      where+       seps = lefts xs+       sepchr = case seps of+                  []    -> ""+                  (s:_) -> s+       es   = map rights $ splitWhen isLeft xs -   EIdentifier x    -> [str props x]-   EMathOperator x  -> [makeText TextNormal x]  -- TODO revisit, use props?-   ESymbol _ [c]-    | isSymbol c || isPunctuation c-                    -> [str props [c]]+   EIdentifier ""   -> [str props "\x200B"]  -- 0-width space+                       -- to avoid the dashed box we get otherwise; see #118+   EIdentifier x+     | isUppercaseGreek x+     , null props -> [str [mnodeA "sty" "p" ()] x]+     | not (isUppercaseGreek x)+     , [Element{ elName = QName "sty" _ _+              , elAttribs = [Attr (QName "val" Nothing (Just "m")) "b"] }] <- props+      -> [str [mnodeA "sty" "bi" ()] x] -- #280+     | otherwise  -> [str props x]+   EMathOperator x  -> [str (mnodeA "sty" "p" () : props) x]    ESymbol ty xs+    | Just (c, xs') <- T.uncons xs+    , T.null xs'+    , isSymbol c || isPunctuation c+                    -> [str (defaultTo TextNormal props) xs]     | ty `elem` [Op, Bin, Rel]                     -> [mnode "box"                         [ mnode "boxPr"-                          [ mnodeA "opEmu" "1" () ]+                          [ mnodeA "opEmu" "on" () ]                         , mnode "e"-                          [str props xs]+                          [str (defaultTo TextNormal props) xs]                         ]]-   ESymbol _ xs     -> [str props xs]+    | otherwise     -> [str (defaultTo TextNormal props) xs]    ESpace n      | n > 0 && n <= 0.17    -> [str props "\x2009"]      | n > 0.17 && n <= 0.23 -> [str props "\x2005"]@@ -211,28 +259,29 @@      | n > 0.28 && n <= 0.5  -> [str props "\x2004"]      | n > 0.5 && n <= 1.8   -> [str props "\x2001"]      | n > 1.8               -> [str props "\x2001\x2001"]-     | otherwise             -> []+     | otherwise             -> [str props "\x200B"]        -- this is how the xslt sheet handles all spaces-   EUnder _ x (ESymbol _ [c]) | isBarChar c ->+   EUnder _ x (ESymbol TUnder t) | T.all isBarChar t ->                        [mnode "bar" [ mnode "barPr" $                                         mnodeA "pos" "bot" ()                                     , mnode "e" $ showExp props x ]]-   EOver _ x (ESymbol _ [c]) | isBarChar c ->+   EOver _ x (ESymbol TOver t) | T.all isBarChar t ->                        [mnode "bar" [ mnode "barPr" $                                         mnodeA "pos" "top" ()                                     , mnode "e" $ showExp props x ]]-   EOver _ x (ESymbol st y) | st == Accent || st == TOver ->-                       [mnode "groupChr" [ mnode "groupChrPr"-                                           [ mnodeA "chr" y ()-                                           , mnodeA "pos" "top" ()-                                           , mnodeA "vertJc" "bot" () ]+   EOver _ x (ESymbol st (T.unpack -> y))+    | st == Accent  -> [mnode "acc" [ mnode "accPr" [ mnodeA "chr" y () ]                                     , mnode "e" $ showExp props x ]]-   EUnder _ x (ESymbol st y) | st == Accent || st == TUnder ->-                       [mnode "groupChr" [ mnode "groupChrPr"+    | st == TUnder  -> [mnode "groupChr" [ mnode "groupChrPr"                                            [ mnodeA "chr" y ()                                            , mnodeA "pos" "bot" ()                                            , mnodeA "vertJc" "top" () ]                                     , mnode "e" $ showExp props x ]]+    | st == TOver   -> [mnode "groupChr" [ mnode "groupChrPr"+                                           [ mnodeA "chr" y ()+                                           , mnodeA "pos" "top" ()+                                           , mnodeA "vertJc" "bot" () ]+                                    , mnode "e" $ showExp props x ]]    ESub x y         -> [mnode "sSub" [ mnode "e" $ showExp props x                                      , mnode "sub" $ showExp props y]]    ESuper x y       -> [mnode "sSup" [ mnode "e" $ showExp props x@@ -245,16 +294,17 @@    EOver _ x y   -> [mnode "limUpp" [ mnode "e" $ showExp props x                                        , mnode "lim" $ showExp props y]]    EUnderover c x y z -> showExp props (EUnder c (EOver c x z) y)-   ESqrt x       -> [mnode "rad" [ mnode "radPr" $ mnodeA "degHide" "1" ()+   ESqrt x       -> [mnode "rad" [ mnode "radPr" $ mnodeA "degHide" "on" ()                                       , mnode "deg" ()                                       , mnode "e" $ showExp props x]]    ERoot i x     -> [mnode "rad" [ mnode "deg" $ showExp props i                                  , mnode "e" $ showExp props x]]    EFraction ft x y -> [showFraction props ft x y]    EPhantom x       -> [mnode "phant" [ mnode "phantPr"-                                            [ mnodeA "show" "0" () ]+                                            [ mnodeA "show" "off" () ]                                           , mnode "e" $ showExp props x]]    EBoxed   x       -> [mnode "borderBox" [ mnode "e" $ showExp props x]]+   ECancel st x     -> [makeCancel props st x]    EScaled _ x      -> showExp props x -- no support for scaler?    EArray as ls     -> [makeArray props as ls]    EText a s        -> [makeText a s]@@ -262,23 +312,51 @@  isBarChar :: Char -> Bool isBarChar c = c == '\x203E' || c == '\x00AF' ||-              c == '\x0304' || c == '\x0333'+              c == '\x0304' || c == '\x0333' ||+              c == '_' +-- | Checks whether an expression marks the start of an nary operator+-- expression. These are different integrals, sums, products, and+-- coproducts. isNary :: Exp -> Bool-isNary (ESymbol Op _) = True+isNary (ESymbol Op s) = case s of+  "\x222b" -> True  -- integral+  "\x222c" -> True  -- double integral+  "\x222d" -> True  -- triple integral+  "\x222e" -> True  -- line integral+  "\x222f" -> True  -- double line integral+  "\x2230" -> True  -- triple line integral+  "\x220f" -> True  -- product+  "\x2210" -> True  -- coproduct+  "\x2211" -> True  -- sum+  _        -> False isNary _ = False -makeNary :: [Element] -> String -> String -> Exp -> Exp -> Exp -> Element+-- Kept as String for Text.XML.Light+makeNary :: [Element] -> String -> T.Text -> Exp -> Exp -> Exp -> Element makeNary props t s y z w =   mnode "nary" [ mnode "naryPr"-                 [ mnodeA "chr" s ()+                 [ mnodeA "chr" (T.unpack s) ()                  , mnodeA "limLoc" t ()                  , mnodeA "subHide"-                    (if y == EGrouped [] then "1" else "0") ()+                    (if y == EGrouped [] then "on" else "off") ()                  , mnodeA "supHide"-                    (if z == EGrouped [] then "1" else "0") ()+                    (if z == EGrouped [] then "on" else "off") ()                  ]                , mnode "sub" $ showExp props y                , mnode "sup" $ showExp props z                , mnode "e" $ showExp props w ] +makeCancel :: [Element] -> StrokeType -> Exp -> Element+makeCancel props st x = do+  let sn = case st of+             ForwardSlash -> [ mnodeA "strikeBLTR" "1" () ]+             BackSlash    -> [ mnodeA "strikeTLBR" "1" () ]+             XSlash       -> [ mnodeA "strikeBLTR" "1" () +                             , mnodeA "strikeTLBR" "1" () ]+  mnode "borderBox" [ mnode "borderBoxPr" $ +                      [ mnodeA "hideTop" "1" ()+                      , mnodeA "hideBot" "1" ()+                      , mnodeA "hideLeft" "1" ()+                      , mnodeA "hideRight" "1" () ] ++ sn+                    , mnode "e" $ showExp props x ]
src/Text/TeXMath/Writers/Pandoc.hs view
@@ -1,3 +1,5 @@+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE ViewPatterns #-} {- Copyright (C) 2010-2013 John MacFarlane <jgm@berkeley.edu> @@ -23,6 +25,7 @@ module Text.TeXMath.Writers.Pandoc (writePandoc) where import Text.Pandoc.Definition+import qualified Data.Text as T import Text.TeXMath.Unicode.ToUnicode import Text.TeXMath.Types import Text.TeXMath.Shared (getSpaceChars)@@ -31,9 +34,9 @@ writePandoc :: DisplayType          -> [Exp]          -> Maybe [Inline]-writePandoc _ exps = expsToInlines TextNormal exps+writePandoc _ exps = expsToInlines Nothing exps -expsToInlines :: TextType -> [Exp] -> Maybe [Inline]+expsToInlines :: Maybe TextType -> [Exp] -> Maybe [Inline] expsToInlines tt xs = do   res <- mapM (expToInlines tt) (addSpaces xs)   return (concat res)@@ -69,35 +72,37 @@ medspace  = EText TextNormal "\x2005" widespace = EText TextNormal "\x2004" -renderStr :: TextType -> String -> Inline-renderStr tt s =+renderStr :: Maybe TextType -> T.Text -> [Inline]+renderStr _ "" = []+renderStr Nothing s = [Str s]+renderStr (Just tt) s =   case tt of-       TextNormal       -> Str s-       TextBold         -> Strong [Str s]-       TextItalic       -> Emph   [Str s]-       TextMonospace    -> Code nullAttr s-       TextSansSerif    -> Str s-       TextDoubleStruck -> Str $ toUnicode tt s-       TextScript       -> Str $ toUnicode tt s-       TextFraktur      -> Str $ toUnicode tt s-       TextBoldItalic    -> Strong [Emph [Str s]]-       TextSansSerifBold -> Strong [Str s]-       TextBoldScript    -> Strong [Str $ toUnicode tt s]-       TextBoldFraktur   -> Strong [Str $ toUnicode tt s]-       TextSansSerifItalic -> Emph [Str s]-       TextSansSerifBoldItalic -> Strong [Emph [Str s]]+       TextNormal       -> [Str s]+       TextBold         -> [Strong [Str s]]+       TextItalic       -> [Emph   [Str s]]+       TextMonospace    -> [Code nullAttr s]+       TextSansSerif    -> [Str s]+       TextDoubleStruck -> [Str $ toUnicode tt s]+       TextScript       -> [Str $ toUnicode tt s]+       TextFraktur      -> [Str $ toUnicode tt s]+       TextBoldItalic    -> [Strong [Emph [Str s]]]+       TextSansSerifBold -> [Strong [Str s]]+       TextBoldScript    -> [Strong [Str $ toUnicode tt s]]+       TextBoldFraktur   -> [Strong [Str $ toUnicode tt s]]+       TextSansSerifItalic -> [Emph [Str s]]+       TextSansSerifBoldItalic -> [Strong [Emph [Str s]]] -expToInlines :: TextType -> Exp -> Maybe [Inline]-expToInlines tt (ENumber s) = Just [renderStr tt s]-expToInlines TextNormal (EIdentifier s) = Just [renderStr TextItalic s]-expToInlines tt (EIdentifier s) = Just [renderStr tt s]-expToInlines tt (EMathOperator s) = Just [renderStr tt s]-expToInlines tt (ESymbol _ s) = Just [renderStr tt s]+expToInlines :: Maybe TextType -> Exp -> Maybe [Inline]+expToInlines tt (ENumber s) = Just $ renderStr tt s+expToInlines Nothing (EIdentifier s) = Just $ renderStr (Just TextItalic) s+expToInlines tt (EIdentifier s) = Just $ renderStr tt s+expToInlines tt (EMathOperator s) = Just $ renderStr tt s+expToInlines tt (ESymbol _ s) = Just $ renderStr tt s expToInlines tt (EDelimited start end xs) = do-  xs' <- mapM (either (return . (:[]) . renderStr tt) (expToInlines tt)) xs-  return $ [renderStr tt start] ++ concat xs' ++ [renderStr tt end]+  xs' <- expsToInlines tt $ map (either (ESymbol Ord) id) xs+  return $ renderStr tt start ++ xs' ++ renderStr tt end expToInlines tt (EGrouped xs)    = expsToInlines tt xs-expToInlines _ (EStyled tt' xs)  = expsToInlines tt' xs+expToInlines _ (EStyled tt' xs)  = expsToInlines (Just tt') xs expToInlines _ (ESpace n)        = Just [Str $ getSpaceChars n] expToInlines _ (ESqrt _)         = Nothing expToInlines _ (ERoot _ _)       = Nothing@@ -115,32 +120,32 @@   y' <- expToInlines tt y   z' <- expToInlines tt z   return $ x' ++ [Subscript y'] ++ [Superscript z']-expToInlines _ (EText tt' x) = Just [renderStr tt' x]-expToInlines tt (EOver b (EGrouped [EIdentifier [c]]) (ESymbol Accent [accent])) = expToInlines tt (EOver b (EIdentifier [c]) (ESymbol Accent [accent]))-expToInlines tt (EOver _ (EIdentifier [c]) (ESymbol Accent [accent])) =+expToInlines _ (EText tt' x) = Just $ renderStr (Just tt') x+expToInlines tt (EOver b (EGrouped [EIdentifier (T.unpack -> [c])]) (ESymbol Accent (T.unpack -> [accent]))) = expToInlines tt (EOver b (EIdentifier $ T.singleton c) (ESymbol Accent $ T.singleton accent))+expToInlines tt (EOver _ (EIdentifier (T.unpack -> [c])) (ESymbol Accent (T.unpack -> [accent]))) =     case accent of-         '\x203E' -> Just [renderStr tt' [c,'\x0304']]  -- bar-         '\x0304' -> Just [renderStr tt' [c,'\x0304']]  -- bar combining-         '\x00B4' -> Just [renderStr tt' [c,'\x0301']]  -- acute-         '\x0301' -> Just [renderStr tt' [c,'\x0301']]  -- acute combining-         '\x0060' -> Just [renderStr tt' [c,'\x0300']]  -- grave-         '\x0300' -> Just [renderStr tt' [c,'\x0300']]  -- grave combining-         '\x02D8' -> Just [renderStr tt' [c,'\x0306']]  -- breve-         '\x0306' -> Just [renderStr tt' [c,'\x0306']]  -- breve combining-         '\x02C7' -> Just [renderStr tt' [c,'\x030C']]  -- check-         '\x030C' -> Just [renderStr tt' [c,'\x030C']]  -- check combining-         '.'      -> Just [renderStr tt' [c,'\x0307']]  -- dot-         '\x0307' -> Just [renderStr tt' [c,'\x0307']]  -- dot combining-         '\x00B0' -> Just [renderStr tt' [c,'\x030A']]  -- ring-         '\x030A' -> Just [renderStr tt' [c,'\x030A']]  -- ring combining-         '\x20D7' -> Just [renderStr tt' [c,'\x20D7']]  -- arrow right-         '\x20D6' -> Just [renderStr tt' [c,'\x20D6']]  -- arrow left-         '\x005E' -> Just [renderStr tt' [c,'\x0302']]  -- hat-         '\x0302' -> Just [renderStr tt' [c,'\x0302']]  -- hat combining-         '~'      -> Just [renderStr tt' [c,'\x0303']]  -- tilde-         '\x0303' -> Just [renderStr tt' [c,'\x0303']]  -- tilde combining+         '\x203E' -> Just $ renderStr tt' $ T.pack [c,'\x0304']  -- bar+         '\x0304' -> Just $ renderStr tt' $ T.pack [c,'\x0304']  -- bar combining+         '\x00B4' -> Just $ renderStr tt' $ T.pack [c,'\x0301']  -- acute+         '\x0301' -> Just $ renderStr tt' $ T.pack [c,'\x0301']  -- acute combining+         '\x0060' -> Just $ renderStr tt' $ T.pack [c,'\x0300']  -- grave+         '\x0300' -> Just $ renderStr tt' $ T.pack [c,'\x0300']  -- grave combining+         '\x02D8' -> Just $ renderStr tt' $ T.pack [c,'\x0306']  -- breve+         '\x0306' -> Just $ renderStr tt' $ T.pack [c,'\x0306']  -- breve combining+         '\x02C7' -> Just $ renderStr tt' $ T.pack [c,'\x030C']  -- check+         '\x030C' -> Just $ renderStr tt' $ T.pack [c,'\x030C']  -- check combining+         '.'      -> Just $ renderStr tt' $ T.pack [c,'\x0307']  -- dot+         '\x0307' -> Just $ renderStr tt' $ T.pack [c,'\x0307']  -- dot combining+         '\x00B0' -> Just $ renderStr tt' $ T.pack [c,'\x030A']  -- ring+         '\x030A' -> Just $ renderStr tt' $ T.pack [c,'\x030A']  -- ring combining+         '\x20D7' -> Just $ renderStr tt' $ T.pack [c,'\x20D7']  -- arrow right+         '\x20D6' -> Just $ renderStr tt' $ T.pack [c,'\x20D6']  -- arrow left+         '\x005E' -> Just $ renderStr tt' $ T.pack [c,'\x0302']  -- hat+         '\x0302' -> Just $ renderStr tt' $ T.pack [c,'\x0302']  -- hat combining+         '~'      -> Just $ renderStr tt' $ T.pack [c,'\x0303']  -- tilde+         '\x0303' -> Just $ renderStr tt' $ T.pack [c,'\x0303']  -- tilde combining          _        -> Nothing-      where tt' = if tt == TextNormal then TextItalic else tt+      where tt' = maybe (Just TextItalic) Just tt expToInlines tt (EScaled _ e) = expToInlines tt e expToInlines tt (EUnder convertible b e)   | convertible = expToInlines tt (ESub b e)@@ -151,4 +156,5 @@ expToInlines _ (EUnderover _ _ _ _) = Nothing expToInlines _ (EPhantom _) = Nothing expToInlines _ (EBoxed _) = Nothing+expToInlines _ (ECancel _ _) = Nothing expToInlines _ (EArray _ _) = Nothing
+ src/Text/TeXMath/Writers/StarMath.hs view
@@ -0,0 +1,1598 @@+{-# LANGUAGE OverloadedStrings #-}+module Text.TeXMath.Writers.StarMath+  ( writeStarMath+  ) where++import Data.Char (isLetter)+import Data.Generics (everywhere, mkT)+import qualified Data.List as List+import qualified Data.Text as T+import qualified Text.TeXMath.Shared as S+import Text.TeXMath.Unicode.ToUnicode (toUnicodeChar)+import Text.TeXMath.Types+  ( Alignment(..)+  , DisplayType(..)+  , Exp(..)+  , FractionType(..)+  , TeXSymbolType(..)+  , TextType(..)+  )+import Text.TeXMath.Writers.TeX (writeTeX)++-- | Render TeXMath expressions as StarMath syntax.+-- Falls back to TeX output for expressions that are not yet supported.+writeStarMath :: DisplayType -> [Exp] -> T.Text+writeStarMath dt exps =+  case renderExps dt (normalizeExps (everywhere (mkT $ S.handleDownup dt) exps)) of+    Just rendered -> T.strip rendered+    Nothing       -> writeTeX exps++data AlignContext = AlignDefault | AlignLeftCtx | AlignRightCtx+  deriving (Eq)++renderExps :: DisplayType -> [Exp] -> Maybe T.Text+renderExps dt = renderExpsIn dt AlignDefault++normalizeExps :: [Exp] -> [Exp]+normalizeExps =+  normalizeBareBars+  . normalizeEvaluationBars+  . mergeAdjacentUnicodeSerifStyled+  . normalizeBareBraces+  . map normalizeExp++normalizeExp :: Exp -> Exp+normalizeExp e =+  case e of+    EGrouped xs            -> EGrouped (normalizeExps xs)+    EStyled sty xs         -> EStyled sty (normalizeExps xs)+    EFraction ft num den   -> EFraction ft (normalizeExp num) (normalizeExp den)+    ESqrt x                -> ESqrt (normalizeExp x)+    ERoot idx rad          -> ERoot (normalizeExp idx) (normalizeExp rad)+    EDelimited op cl xs    -> EDelimited op cl (map normalizeDelimitedPiece xs)+    ESub base sub          -> ESub (normalizeExp base) (normalizeExp sub)+    ESuper base sup        -> ESuper (normalizeExp base) (normalizeExp sup)+    ESubsup base sub sup   -> ESubsup (normalizeExp base) (normalizeExp sub) (normalizeExp sup)+    EOver b base over      -> EOver b (normalizeExp base) (normalizeExp over)+    EUnder b base under    -> EUnder b (normalizeExp base) (normalizeExp under)+    EUnderover b base u o  -> EUnderover b (normalizeExp base) (normalizeExp u) (normalizeExp o)+    EArray aligns rows     -> EArray aligns (map (map normalizeExps) rows)+    EPhantom x             -> EPhantom (normalizeExp x)+    _                      -> e++normalizeDelimitedPiece :: Either T.Text Exp -> Either T.Text Exp+normalizeDelimitedPiece p =+  case p of+    Left t  -> Left t+    Right e -> Right (normalizeExp e)++normalizeBareBars :: [Exp] -> [Exp]+normalizeBareBars [] = []+normalizeBareBars (x : xs)+  | Just sym <- bareBarSymbol x =+      case collectBareDelimited sym [] xs of+        Just (mid, trailingScript, rest) ->+          let delimited = EDelimited sym sym (map Right mid)+              scripted = maybe delimited ($ delimited) trailingScript+          in scripted : normalizeBareBars rest+        _ ->+          x : normalizeBareBars xs+normalizeBareBars (x:xs) = x : normalizeBareBars xs++normalizeBareBraces :: [Exp] -> [Exp]+normalizeBareBraces [] = []+normalizeBareBraces (ESymbol Open "{" : xs) =+  case collectBareBraces [] xs of+    Just (mid, rest) -> EDelimited "{" "}" (map Right mid) : normalizeBareBraces rest+    Nothing          -> ESymbol Open "{" : normalizeBareBraces xs+normalizeBareBraces (x:xs) = x : normalizeBareBraces xs++mergeAdjacentUnicodeSerifStyled :: [Exp] -> [Exp]+mergeAdjacentUnicodeSerifStyled [] = []+mergeAdjacentUnicodeSerifStyled (EStyled sty xs : EStyled sty' ys : rest)+  | sty == sty' && isUnicodeSerifStyle sty =+      mergeAdjacentUnicodeSerifStyled (EStyled sty (xs <> [ESpace 1] <> ys) : rest)+mergeAdjacentUnicodeSerifStyled (x:xs) = x : mergeAdjacentUnicodeSerifStyled xs++isUnicodeSerifStyle :: TextType -> Bool+isUnicodeSerifStyle sty =+  sty `elem`+    [ TextScript+    , TextFraktur+    , TextDoubleStruck+    , TextBoldScript+    , TextBoldFraktur+    ]++normalizeEvaluationBars :: [Exp] -> [Exp]+normalizeEvaluationBars = reverse . go []+ where+  go acc [] = acc+  go acc (cur : xs)+    | Just script <- evaluationBarScript cur+    , Just (rest, target) <- takeEvaluationTarget acc =+        go (script target : rest) xs+    | otherwise =+        go (cur : acc) xs++evaluationBarScript :: Exp -> Maybe (Exp -> Exp)+evaluationBarScript cur =+  case cur of+    ESub base sub+      | isEvaluationBarBase base ->+          Just (\target -> ESub (EDelimited "." "|" [Right target]) sub)+    ESuper base sup+      | isEvaluationBarBase base ->+          Just (\target -> ESuper (EDelimited "." "|" [Right target]) sup)+    ESubsup base sub sup+      | isEvaluationBarBase base ->+          Just (\target -> ESubsup (EDelimited "." "|" [Right target]) sub sup)+    _ -> Nothing++takeEvaluationTarget :: [Exp] -> Maybe ([Exp], Exp)+takeEvaluationTarget [] = Nothing+takeEvaluationTarget (e : rest) =+  case e of+    EDelimited{} -> Just (rest, e)+    ESymbol Close c+      | Just (rest', target) <- takeDelimitedTarget c rest ->+          Just (rest', target)+    _ -> Just (rest, e)++takeDelimitedTarget :: T.Text -> [Exp] -> Maybe ([Exp], Exp)+takeDelimitedTarget closeTxt = go 0 []+ where+  openTxt =+    case closeTxt of+      ")" -> Just "("+      "]" -> Just "["+      "}" -> Just "{"+      _   -> Nothing++  go _ _ [] = Nothing+  go depth inner (e : rest) =+    case (openTxt, e) of+      (Just open, ESymbol Close c)+        | c == closeTxt ->+            go (depth + 1) (e : inner) rest+      (Just open, ESymbol Open o)+        | o == open ->+            if depth == 0+               then Just (rest, EDelimited open closeTxt (map Right inner))+               else go (depth - 1) (e : inner) rest+      _ ->+        go depth (e : inner) rest++isEvaluationBarBase :: Exp -> Bool+isEvaluationBarBase e =+  case e of+    EScaled _ (ESymbol Open "|")  -> True+    EScaled _ (ESymbol Close "|") -> True+    _                             -> False++collectBareBraces :: [Exp] -> [Exp] -> Maybe ([Exp], [Exp])+collectBareBraces _ [] = Nothing+collectBareBraces acc (ESymbol Close "}" : xs) = Just (reverse acc, xs)+collectBareBraces acc (x:xs) = collectBareBraces (x:acc) xs++collectBareDelimited :: T.Text -> [Exp] -> [Exp]+                     -> Maybe ([Exp], Maybe (Exp -> Exp), [Exp])+collectBareDelimited _ acc [] = Nothing+collectBareDelimited sym acc (y:ys)+  | matchesBareBar sym y = Just (reverse acc, Nothing, ys)+  | Just apply <- scriptedBareBar sym y = Just (reverse acc, Just apply, ys)+  | otherwise = collectBareDelimited sym (y:acc) ys++bareBarSymbol :: Exp -> Maybe T.Text+bareBarSymbol e =+  case e of+    ESymbol _ "|" -> Just "|"+    ESymbol _ "∣" -> Just "|"+    ESymbol _ "∥" -> Just "∥"+    _             -> Nothing++matchesBareBar :: T.Text -> Exp -> Bool+matchesBareBar sym e =+  case bareBarSymbol e of+    Just sym' -> sym == sym'+    Nothing   -> False++scriptedBareBar :: T.Text -> Exp -> Maybe (Exp -> Exp)+scriptedBareBar sym e =+  case e of+    ESub base sub+      | matchesBareBar sym base -> Just (\del -> ESub del sub)+    ESuper base sup+      | matchesBareBar sym base -> Just (\del -> ESuper del sup)+    ESubsup base sub sup+      | matchesBareBar sym base -> Just (\del -> ESubsup del sub sup)+    _ -> Nothing++renderExpsIn :: DisplayType -> AlignContext -> [Exp] -> Maybe T.Text+renderExpsIn dt ctx exps = do+  rendered <- mapM (renderExpIn dt ctx) exps+  let pieces = zip exps rendered+  let merged = mergePieces pieces+  let withLhs =+        if startsWithInfixNeedingLhs exps+           then "{} " <> T.stripStart merged+           else merged+  pure $ if endsWithInfixNeedingRhs exps+            then T.stripEnd withLhs <> " {}"+            else withLhs++mergePieces :: [(Exp, T.Text)] -> T.Text+mergePieces [] = ""+mergePieces ((e0, t0) : rest) = snd $ List.foldl' step (e0, t0) rest+ where+  step (prevE, acc) (curE, curT) =+    if T.null curT+       then (prevE, acc)+       else+         (curE, appendRendered (needsSeparator prevE curE) acc curT)++appendRendered :: Bool -> T.Text -> T.Text -> T.Text+appendRendered needSep left right+  | T.null left = T.stripStart right+  | T.null right = T.stripEnd left+  | otherwise =+      let leftHadWs = endsWithAsciiSpace left+          rightHadWs = startsWithAsciiSpace right+          left' = T.dropWhileEnd isAsciiSpaceChar left+          right' = T.dropWhile isAsciiSpaceChar right+          sep = if leftHadWs || rightHadWs || needSep then " " else ""+      in left' <> sep <> right'++startsWithAsciiSpace :: T.Text -> Bool+startsWithAsciiSpace t =+  case T.uncons t of+    Just (c, _) -> isAsciiSpaceChar c+    Nothing     -> False++endsWithAsciiSpace :: T.Text -> Bool+endsWithAsciiSpace t =+  case T.unsnoc t of+    Just (_, c) -> isAsciiSpaceChar c+    Nothing     -> False++isAsciiSpaceChar :: Char -> Bool+isAsciiSpaceChar c = c == ' ' || c == '\t' || c == '\n'++needsSeparator :: Exp -> Exp -> Bool+needsSeparator prevE curE+  | isGreekIdentifierExp prevE && isIdentifierLike curE = True+  | isGreekIdentifierExp prevE && isRootLike curE        = True+  | isGreekIdentifierExp prevE && isTerminatingPunctuation curE = True+  | isWordSymbolLike prevE && isIdentifierLike curE      = True+  | isWordSymbolLike prevE && isOpenLike curE            = True+  | isWordStyledExp prevE && isIdentifierLike curE       = True+  | isAccentCommandExp prevE && isIdentifierLike curE    = True+  | isAccentCommandExp prevE && isOpenLike curE          = True+  | isAccentCommandExp prevE && isRootLike curE          = True+  | isMathOperatorExp prevE && isIdentifierLike curE     = True+  | isUnaryMinusSymbol prevE && isIdentifierLike curE    = True+  | isIdentifierLike prevE && isMathOperatorExp curE     = True+  | isIdentifierLike prevE && isRootLike curE            = True+  | isIdentifierLike prevE && isArrowScriptedExp curE    = True+  | isIdentifierLike prevE && isScriptedMathOperatorExp curE = True+  | isIdentifierLike prevE && isWordSymbolLike curE      = True+  | isLargeOpScriptedExp prevE && isIdentifierLike curE  = True+  | isLargeOpScriptedExp prevE && isFractionLike curE    = True+  | isLargeOpScriptedExp prevE && isAccentCommandExp curE = True+  | isScripted prevE && isIdentifierLike curE           = True+  | isArrowScriptedExp prevE && isIdentifierLike curE   = True+  | isScriptedMathOperatorExp prevE && isIdentifierLike curE = True+  | isDelimited prevE && isDelimited curE               = True+  | isCloseLike prevE && isIdentifierLike curE          = True+  | isCloseLike prevE && isWordSymbolLike curE          = True+  | isCloseLike prevE && isAccentCommandExp curE        = True+  | isCloseLike prevE && isArrayLike curE               = True+  | isIdentifierLike prevE && isWordStyledExp curE      = True+  | isIdentifierLike prevE && isUprightMathTextExp curE = True+  | isIdentifierLike prevE && isAccentCommandExp curE   = True+  | isIdentifierLike prevE && isWideSpace curE          = True+  | isIdentifierLike prevE && isDelimited curE          = True+  | isIdentifierLike prevE && isNonNormalTextExp curE   = True+  | isQuotedTextExp prevE && isItalicTextExp curE       = True+  | otherwise                                            = False++isGreekIdentifierExp :: Exp -> Bool+isGreekIdentifierExp e =+  case e of+    EIdentifier t -> greekName t /= Nothing+    _             -> False++isIdentifierLike :: Exp -> Bool+isIdentifierLike e =+  case e of+    EIdentifier{}   -> True+    ENumber{}       -> True+    EMathOperator{} -> True+    ESub{}          -> True+    ESuper{}        -> True+    ESubsup{}       -> True+    EStyled{}       -> True+    _               -> False++isMathOperatorExp :: Exp -> Bool+isMathOperatorExp e =+  case e of+    EMathOperator{} -> True+    _               -> False++isDelimited :: Exp -> Bool+isDelimited e =+  case e of+    EDelimited{} -> True+    _            -> False++isArrayLike :: Exp -> Bool+isArrayLike e =+  case e of+    EArray{} -> True+    _        -> False++isFractionLike :: Exp -> Bool+isFractionLike e =+  case e of+    EFraction{} -> True+    _           -> False++isWideSpace :: Exp -> Bool+isWideSpace e =+  case e of+    ESpace w -> w >= 1+    _        -> False++isWordSymbolLike :: Exp -> Bool+isWordSymbolLike e =+  case e of+    ESymbol _ "∀" -> True+    ESymbol _ "∃" -> True+    ESymbol _ "∇" -> True+    ESymbol _ "∂" -> True+    ESymbol _ "¬" -> True+    ESymbol _ "∧" -> True+    ESymbol _ "∨" -> True+    ESymbol _ "and" -> True+    ESymbol _ "or" -> True+    _             -> False++isOpenLike :: Exp -> Bool+isOpenLike e =+  case e of+    ESymbol Open _ -> True+    _              -> False++isRootLike :: Exp -> Bool+isRootLike e =+  case e of+    ESqrt{} -> True+    ERoot{} -> True+    _       -> False++isWordStyledExp :: Exp -> Bool+isWordStyledExp e =+  case e of+    EStyled TextNormal [x]     -> isWordStyledExp x+    EStyled TextItalic _       -> True+    EStyled TextBold _         -> True+    EStyled TextScript _       -> True+    EStyled TextFraktur _      -> True+    EStyled TextDoubleStruck _ -> True+    _                          -> False++isUprightMathTextExp :: Exp -> Bool+isUprightMathTextExp e =+  case e of+    EStyled TextNormal [EIdentifier _] -> True+    _                                  -> False++isItalicTextExp :: Exp -> Bool+isItalicTextExp e =+  case e of+    EText TextItalic _ -> True+    _                  -> False++isQuotedTextExp :: Exp -> Bool+isQuotedTextExp e =+  case e of+    EText TextNormal _ -> True+    _                  -> False++isNonNormalTextExp :: Exp -> Bool+isNonNormalTextExp e =+  case e of+    EText sty _ -> sty /= TextNormal+    _           -> False++isAccentCommandExp :: Exp -> Bool+isAccentCommandExp e =+  case e of+    EOver _ _ over -> accentName over /= Nothing+    _              -> False++isTerminatingPunctuation :: Exp -> Bool+isTerminatingPunctuation e =+  case e of+    ESymbol _ "." -> True+    ESymbol _ "," -> True+    ESymbol _ ";" -> True+    ESymbol _ ":" -> True+    _             -> False++isCloseLike :: Exp -> Bool+isCloseLike e =+  case e of+    ESymbol Close _ -> True+    EDelimited{}    -> True+    _               -> False++isScripted :: Exp -> Bool+isScripted e =+  case e of+    ESub{}    -> True+    ESuper{}  -> True+    ESubsup{} -> True+    _         -> False++isArrowScriptedExp :: Exp -> Bool+isArrowScriptedExp e =+  case e of+    EUnder _ base _       -> isArrowBase base+    EOver _ base _        -> isArrowBase base+    EUnderover _ base _ _ -> isArrowBase base+    ESub base _           -> isArrowBase base+    ESuper base _         -> isArrowBase base+    ESubsup base _ _      -> isArrowBase base+    _                     -> False++isScriptedMathOperatorExp :: Exp -> Bool+isScriptedMathOperatorExp e =+  case e of+    ESub base _           -> isMathOperatorExp base+    ESuper base _         -> isMathOperatorExp base+    ESubsup base _ _      -> isMathOperatorExp base+    EUnder _ base _       -> isMathOperatorExp base+    EOver _ base _        -> isMathOperatorExp base+    EUnderover _ base _ _ -> isMathOperatorExp base+    _                     -> False++isArrowBase :: Exp -> Bool+isArrowBase e =+  case e of+    ESymbol _ "←" -> True+    ESymbol _ "→" -> True+    ESymbol _ "↔" -> True+    ESymbol _ "⇐" -> True+    ESymbol _ "⇒" -> True+    ESymbol _ "⇔" -> True+    ESymbol _ "↦" -> True+    _             -> False++isUnaryMinusSymbol :: Exp -> Bool+isUnaryMinusSymbol e =+  case e of+    ESymbol t "-" -> t /= Bin+    ESymbol t "−" -> t /= Bin+    _             -> False++isLargeOpScriptedExp :: Exp -> Bool+isLargeOpScriptedExp e =+  case e of+    EUnder _ base _       -> largeOpName base /= Nothing+    EOver _ base _        -> largeOpName base /= Nothing+    EUnderover _ base _ _ -> largeOpName base /= Nothing+    ESub base _      -> largeOpName base /= Nothing+    ESuper base _    -> largeOpName base /= Nothing+    ESubsup base _ _ -> largeOpName base /= Nothing+    _                -> False++startsWithInfixNeedingLhs :: [Exp] -> Bool+startsWithInfixNeedingLhs exps =+  case exps of+    (e : _) -> needsNeutralLhs e+    _                 -> False++endsWithInfixNeedingRhs :: [Exp] -> Bool+endsWithInfixNeedingRhs exps =+  case reverse exps of+    (e : _) -> needsNeutralRhs e+    _       -> False++needsNeutralLhs :: Exp -> Bool+needsNeutralLhs = isInfixLikeExp++needsNeutralRhs :: Exp -> Bool+needsNeutralRhs = isInfixLikeExp++needsNeutralScriptOperands :: Exp -> Bool+needsNeutralScriptOperands e =+  isInfixLikeExp e && not (isAtomicScriptOperator e)++isAtomicScriptOperator :: Exp -> Bool+isAtomicScriptOperator e =+  case e of+    ESymbol _ "∘" -> True+    _             -> False++isInfixLikeExp :: Exp -> Bool+isInfixLikeExp e =+  case e of+    ESymbol t s+      | t == Bin -> True+      | t == Rel -> True+      | otherwise -> s `elem`+          [ "×", "⋅", "·", "∘"+          , "∈", "∉", "∋"+          , "∩", "∪"+          , "⊂", "⊆", "⊃", "⊇"+          , "≤", "≥", "≠", "≈", "≡", "∝"+          , "∥", "⊥"+          , "±", "∓"+          , "/", "←", "→", "↔", "⇐", "⇒", "⇔", "↦"+          ]+    _ -> False++renderExpIn :: DisplayType -> AlignContext -> Exp -> Maybe T.Text+renderExpIn dt ctx e =+  case e of+    ENumber t       -> Just t+    EIdentifier t   -> Just (renderIdentifier t)+    EMathOperator t -> Just (renderMathOperator t)+    ESymbol t s     -> Just (renderSymbol t s)+    EText sty t     -> Just (renderTextAtom sty t)+    ESpace w        -> Just (renderSpace w)+    EGrouped xs     -> ("{" <>) . (<> "}") <$> renderExpsIn dt ctx xs+    EStyled sty xs  -> renderStyled dt ctx sty xs++    EFraction frac num den -> do+      num' <- renderExpIn dt AlignDefault num+      den' <- renderExpIn dt AlignDefault den+      let num'' = maybeCenterFractionArg ctx num'+      let den'' = maybeCenterFractionArg ctx den'+      pure $ case frac of+        NoLineFrac -> "binom" <> asDelimitedArg num'' <> asDelimitedArg den''+        InlineFrac -> renderInlineFraction num'' den''+        NormalFrac+          | dt == DisplayInline -> renderInlineFraction num'' den''+        _          -> "{" <> num'' <> " over " <> den'' <> "}"++    ESqrt x -> ("sqrt {" <>) . (<> "}") <$> renderExpIn dt ctx x+    ERoot idx rad -> do+      idx' <- renderExpIn dt ctx idx+      rad' <- renderExpIn dt ctx rad+      pure $ "nroot {" <> idx' <> "} {" <> rad' <> "}"++    EScaled _ (ESymbol Open "|") ->+      Just "mline"+    EScaled _ (ESymbol Close "|") ->+      Just "mline"+    EScaled _ x ->+      renderExpIn dt ctx x++    EDelimited op cl xs -> do+      body <- renderDelimitedBody dt ctx xs+      let op' = delimToken DelimLeft op+      let cl' = delimToken DelimRight cl+      pure $ "left " <> op' <> " " <> body <> " right " <> cl'++    ESub base sub -> do+      base' <- renderExpIn dt ctx base+      sub'  <- renderScriptArg dt ctx sub+      pure $ renderScriptBase base base' <> "_" <> sub'++    ESuper base sup -> do+      baseRendered <- renderExpIn dt ctx base+      case renderPrimeSuffix sup of+        Just primes ->+          pure $ renderScriptBase base baseRendered <> primes+        Nothing -> do+          supRendered <- renderScriptArg dt ctx sup+          pure $ renderScriptBase base baseRendered <> "^" <> supRendered++    ESubsup base sub sup -> do+      baseRendered <- renderExpIn dt ctx base+      subRendered <- renderScriptArg dt ctx sub+      case renderPrimeSuffix sup of+        Just primes ->+          pure $ renderScriptBase base baseRendered <> "_" <> subRendered <> primes+        Nothing -> do+          supRendered <- renderScriptArg dt ctx sup+          pure $ renderScriptBase base baseRendered <> "_" <> subRendered <> "^" <> supRendered++    EOver _ base over+      | Just arrow <- arrowScriptOpName base -> do+          if isEmptyScriptArg over+             then pure arrow+             else do+               over' <- renderScriptArg dt ctx over+               pure $ arrow <> " csup " <> centerScriptArg over'+      | Just op <- centeredScriptOpName base -> do+          over' <- renderScriptArg dt ctx over+          pure $ "{" <> op <> "} csup " <> centerScriptArg over'+      | Just brace <- braceAnnotationName over -> do+          base' <- renderExpIn dt ctx base+          pure $ renderScriptBase base base' <> " " <> brace+      | isBraceAnnotatedExp base -> do+          base' <- renderExpIn dt ctx base+          over' <- renderBraceLabel dt ctx over+          pure $ base' <> " " <> over'+      | Just accent <- accentName over -> do+          base' <- renderExpIn dt ctx base+          pure $ accent <> " " <> renderAccentArg base base'+      | Just op <- limitOpName base -> do+          over' <- renderLimitArg dt ctx over+          pure $ op <> " to " <> over' <> " "+      | otherwise -> Nothing++    EUnder _ base under ->+      case arrowScriptOpName base of+        Just arrow ->+          if isEmptyScriptArg under+             then pure arrow+             else do+               under' <- renderScriptArg dt ctx under+               pure $ arrow <> " csub " <> centerScriptArg under'+        Nothing ->+          case underlineMarkerName under of+            Just marker -> do+              base' <- renderExpIn dt ctx base+              pure $ marker <> " " <> renderAccentArg base base'+            Nothing ->+              case braceAnnotationName under of+                Just brace -> do+                  base' <- renderExpIn dt ctx base+                  pure $ renderScriptBase base base' <> " " <> brace+                Nothing ->+                  if isBraceAnnotatedExp base+                     then do+                       base' <- renderExpIn dt ctx base+                       under' <- renderBraceLabel dt ctx under+                       pure $ base' <> " " <> under'+                     else+                       case centeredScriptOpName base of+                         Just op -> do+                           under' <- renderScriptArg dt ctx under+                           pure $ "{" <> op <> "} csub " <> centerScriptArg under'+                         Nothing ->+                           case limitOpName base of+                             Just op -> do+                               under' <- renderLimitArg dt ctx under+                               pure $ op <> " from " <> under' <> " "+                             Nothing -> do+                               base' <- renderExpIn dt ctx base+                               under' <- renderScriptArg dt ctx under+                               pure $ renderScriptBase base base' <> "_" <> under'+    EUnderover _ base under over ->+      case arrowScriptOpName base of+        Just arrow ->+          case (isEmptyScriptArg under, isEmptyScriptArg over) of+            (True, True) -> pure arrow+            (False, True) -> do+              under' <- renderScriptArg dt ctx under+              pure $ arrow <> " csub " <> centerScriptArg under'+            (True, False) -> do+              over' <- renderScriptArg dt ctx over+              pure $ arrow <> " csup " <> centerScriptArg over'+            (False, False) -> do+              under' <- renderScriptArg dt ctx under+              over' <- renderScriptArg dt ctx over+              pure $ arrow <> " csub " <> centerScriptArg under'+                  <> " csup " <> centerScriptArg over'+        Nothing ->+          case centeredScriptOpName base of+            Just op -> do+              under' <- renderScriptArg dt ctx under+              over' <- renderScriptArg dt ctx over+              pure $ "{" <> op <> "} csub " <> centerScriptArg under'+                  <> " csup " <> centerScriptArg over'+            Nothing ->+              case limitOpName base of+                Just op -> do+                  under' <- renderLimitArg dt ctx under+                  over'  <- renderLimitArg dt ctx over+                  pure $ op <> " from " <> under' <> " to " <> over' <> " "+                Nothing -> do+                  base' <- renderExpIn dt ctx base+                  under' <- renderScriptArg dt ctx under+                  over' <- renderScriptArg dt ctx over+                  pure $ renderScriptBase base base' <> "_" <> under' <> "^" <> over'+    EArray aligns rows -> renderMatrix dt aligns rows+    EPhantom x         -> do+      x' <- renderExpIn dt ctx x+      pure $ "phantom " <> renderPhantomArg x x'+    _                  -> Nothing++renderDelimitedBody :: DisplayType -> AlignContext -> [Either T.Text Exp] -> Maybe T.Text+renderDelimitedBody dt ctx xs = do+  chunks <- mapM (renderDelimitedChunk dt ctx) xs+  pure $ T.strip (mergeDelimitedChunks chunks)++data DelimitedChunk = DelimRaw T.Text | DelimExp Exp T.Text++renderDelimitedChunk :: DisplayType -> AlignContext -> Either T.Text Exp -> Maybe DelimitedChunk+renderDelimitedChunk dt ctx p =+  case p of+    Left t  -> Just $ DelimRaw (" " <> delimToken DelimMiddle t <> " ")+    Right x -> DelimExp x <$> renderExpIn dt ctx x++mergeDelimitedChunks :: [DelimitedChunk] -> T.Text+mergeDelimitedChunks [] = ""+mergeDelimitedChunks (c0:cs) = snd $ List.foldl' step (chunkExp c0, chunkText c0) cs+ where+  step (prevExp, acc) cur+    | T.null curText = (prevExp, acc)+    | otherwise =+        case cur of+          DelimRaw _ -> (Nothing, appendRendered False acc curText)+          DelimExp curExp _ ->+            let needSep = case prevExp of+                            Just pe -> needsSeparator pe curExp+                            Nothing -> False+            in (Just curExp, appendRendered needSep acc curText)+   where+    curText = chunkText cur++  chunkText c =+    case c of+      DelimRaw t   -> t+      DelimExp _ t -> t++  chunkExp c =+    case c of+      DelimRaw _   -> Nothing+      DelimExp e _ -> Just e++renderMatrix :: DisplayType -> [Alignment] -> [[[Exp]]] -> Maybe T.Text+renderMatrix dt aligns rows = do+  rows' <- mapM (renderMatrixRow dt aligns) rows+  pure $ "matrix { " <> T.intercalate " ## " rows' <> " }"++renderMatrixRow :: DisplayType -> [Alignment] -> [[Exp]] -> Maybe T.Text+renderMatrixRow dt aligns cells = do+  let explicitCenter = any (/= AlignCenter) aligns+  let columnCount = max (length aligns) (length cells)+  let paddedCells = take columnCount (cells ++ repeat [])+  cells' <- sequence+    [ renderMatrixCellWithAlign dt explicitCenter (columnAlign aligns i) c+    | (i, c) <- zip [(0 :: Int) ..] paddedCells+    ]+  pure $ T.intercalate " # " cells'++renderMatrixCell :: DisplayType -> AlignContext -> [Exp] -> Maybe T.Text+renderMatrixCell _ _ [] = Just "{}"+renderMatrixCell dt ctx xs = do+  rendered <- renderExpsIn dt ctx xs+  let stripped = T.strip rendered+  pure $ if T.null stripped then "{}" else stripped++renderMatrixCellWithAlign :: DisplayType -> Bool -> Alignment -> [Exp] -> Maybe T.Text+renderMatrixCellWithAlign dt explicitCenter align xs = do+  cell <- renderMatrixCell dt (alignmentContext align) xs+  pure $ case align of+    AlignLeft  -> "alignl " <> cell+    AlignRight -> "alignr " <> cell+    AlignCenter | explicitCenter -> "alignc " <> cell+    _                            -> cell++columnAlign :: [Alignment] -> Int -> Alignment+columnAlign aligns i =+  case drop i aligns of+    (a : _) -> a+    []      -> AlignCenter++renderStyled :: DisplayType -> AlignContext -> TextType -> [Exp] -> Maybe T.Text+renderStyled dt ctx sty xs = do+  body <- renderExpsIn dt ctx xs+  pure $ case sty of+    _+      | Just unicodeBody <- renderUnicodeSerifStyled sty xs ->+          "nitalic " <> styleArg unicodeBody+    TextNormal+      | Just ident <- singleUprightIdentifier xs ->+          "nitalic " <> renderTextNormalIdentifier ident+      | not (hasStructuralScript xs)+      , Just txt <- styledText xs -> quoteText txt+      | Just txt <- renderTextNormalStyled dt xs+      , shouldForceUprightTextNormal xs -> "nitalic{" <> txt <> "}"+      | Just txt <- renderTextNormalStyled dt xs -> txt+    TextItalic       -> "ital " <> styleArg body+    TextBold+      | shouldForceUprightBold xs -> "bold nitalic " <> styleArg body+      | otherwise -> "bold " <> styleArg body+    TextBoldItalic   -> "bold " <> styleArg ("ital " <> styleArg body)+    TextMonospace    -> "font fixed nitalic " <> styleArg body+    TextSansSerif    -> "font sans nitalic " <> styleArg body+    TextSansSerifBold -> "bold " <> styleArg ("font sans nitalic " <> styleArg body)+    TextSansSerifBoldItalic -> "bold " <> styleArg ("font sans ital " <> styleArg body)+    TextSansSerifItalic -> "font sans ital " <> styleArg body+    TextScript       -> "ital " <> styleArg body+    TextFraktur      -> "bold " <> styleArg body+    TextDoubleStruck -> "bold nitalic " <> styleArg body+    _                -> body+ where+  styleArg t+    | T.null t       = "{}"+    | T.length t == 1 = t+    | otherwise      = "{" <> t <> "}"++renderUnicodeSerifStyled :: TextType -> [Exp] -> Maybe T.Text+renderUnicodeSerifStyled sty xs =+  case sty of+    TextScript       -> styledUnicodeText sty xs+    TextFraktur      -> styledUnicodeText sty xs+    TextDoubleStruck -> styledUnicodeText sty xs+    TextBoldScript   -> styledUnicodeText sty xs+    TextBoldFraktur  -> styledUnicodeText sty xs+    _                -> Nothing++styledUnicodeText :: TextType -> [Exp] -> Maybe T.Text+styledUnicodeText sty = fmap T.concat . mapM (styledUnicodeExp sty)++styledUnicodeExp :: TextType -> Exp -> Maybe T.Text+styledUnicodeExp sty e =+  case e of+    EIdentifier t        -> mapStyledUnicode sty t+    ENumber t            -> mapStyledUnicode sty t+    EGrouped xs          -> styledUnicodeText sty xs+    EStyled TextNormal xs -> styledUnicodeText sty xs+    ESpace w+      | w <= 0          -> Just ""+      | w >= 2          -> Just "  "+      | otherwise       -> Just " "+    _                   -> Nothing++mapStyledUnicode :: TextType -> T.Text -> Maybe T.Text+mapStyledUnicode sty t = T.pack <$> mapM (\c -> toUnicodeChar (sty, c)) (T.unpack t)++hasStructuralScript :: [Exp] -> Bool+hasStructuralScript = any go+ where+  go e =+    case e of+      ESub{}                 -> True+      ESuper{}               -> True+      ESubsup{}              -> True+      EGrouped xs            -> hasStructuralScript xs+      EStyled TextNormal xs  -> hasStructuralScript xs+      _                      -> False++styledText :: [Exp] -> Maybe T.Text+styledText = fmap T.concat . mapM styledTextExp++styledTextExp :: Exp -> Maybe T.Text+styledTextExp e =+  case e of+    ENumber t         -> Just t+    EIdentifier t     -> Just t+    EText _ t         -> Just t+    ESpace w+      | w <= 0        -> Just ""+      | w >= 2        -> Just "  "+      | otherwise     -> Just " "+    EGrouped xs       -> styledText xs+    EStyled TextNormal xs -> styledText xs+    ESub base sub     -> do+      base' <- styledTextExp base+      sub'  <- styledTextNonNumericExp sub+      pure $ base' <> "_" <> sub'+    ESuper base sup   -> do+      base' <- styledTextExp base+      sup'  <- styledTextNonNumericExp sup+      pure $ base' <> "^" <> sup'+    ESubsup base sub sup -> do+      base' <- styledTextExp base+      sub'  <- styledTextNonNumericExp sub+      sup'  <- styledTextNonNumericExp sup+      pure $ base' <> "_" <> sub' <> "^" <> sup'+    ESymbol _ s+      | isPlainTextSymbol s -> Just s+    _ -> Nothing++styledTextNonNumericExp :: Exp -> Maybe T.Text+styledTextNonNumericExp e = do+  txt <- styledTextExp e+  if T.any isAsciiDigit txt+     then Nothing+     else Just txt++isAsciiDigit :: Char -> Bool+isAsciiDigit c = c >= '0' && c <= '9'++isPlainTextSymbol :: T.Text -> Bool+isPlainTextSymbol s =+  s `elem`+    [ "_", ",", ".", ":", ";", "-", "−", "/", "(", ")", "[", "]"+    , "+", "=", "'", "′"+    ]++renderTextNormalStyled :: DisplayType -> [Exp] -> Maybe T.Text+renderTextNormalStyled dt xs = do+  let xs' = quoteStarMathKeywordRuns xs+  rendered <- mapM (renderTextNormalExp dt) xs'+  pure $ mergePieces (zip xs' rendered)++quoteStarMathKeywordRuns :: [Exp] -> [Exp]+quoteStarMathKeywordRuns [] = []+quoteStarMathKeywordRuns xs@(x : rest)+  | Just _ <- asciiIdentifierWord x =+      let (word, wordExps, rest') = takeIdentifierWordRun xs+      in if isStarMathReservedWord word+            then EText TextNormal word : quoteStarMathKeywordRuns rest'+            else wordExps <> quoteStarMathKeywordRuns rest'+  | otherwise = x : quoteStarMathKeywordRuns rest++takeIdentifierWordRun :: [Exp] -> (T.Text, [Exp], [Exp])+takeIdentifierWordRun = go [] []+ where+  go pieces exps (e : rest)+    | Just piece <- asciiIdentifierWord e = go (piece : pieces) (e : exps) rest+  go pieces exps rest = (T.concat (reverse pieces), reverse exps, rest)++asciiIdentifierWord :: Exp -> Maybe T.Text+asciiIdentifierWord e =+  case e of+    EIdentifier t+      | not (T.null t) && T.all isAsciiAlpha t -> Just t+    _ -> Nothing++renderTextNormalExp :: DisplayType -> Exp -> Maybe T.Text+renderTextNormalExp dt e =+  case e of+    ENumber t       -> Just t+    EIdentifier t   -> Just (renderIdentifier t)+    EText sty t     -> Just (renderTextAtom sty t)+    ESpace w        -> Just (renderSpace w)+    EGrouped xs     -> renderTextNormalStyled dt xs+    EStyled TextNormal xs -> renderTextNormalStyled dt xs+    EStyled TextBold xs -> do+      body <- renderExpsIn dt AlignDefault xs+      pure $ "bold nitalic " <> styleArg body+    EStyled sty xs  -> renderStyled dt AlignDefault sty xs+    ESub base sub   -> do+      base' <- renderTextNormalExp dt base+      sub'  <- renderTextNormalExp dt sub+      pure $ base' <> "_" <> sub'+    ESuper base sup -> do+      base' <- renderTextNormalExp dt base+      sup'  <- renderTextNormalExp dt sup+      pure $ base' <> "^" <> sup'+    ESubsup base sub sup -> do+      base' <- renderTextNormalExp dt base+      sub'  <- renderTextNormalExp dt sub+      sup'  <- renderTextNormalExp dt sup+      pure $ base' <> "_" <> sub' <> "^" <> sup'+    ESymbol t s     -> Just (T.strip (renderSymbol t s))+    _               -> Nothing++shouldForceUprightTextNormal :: [Exp] -> Bool+shouldForceUprightTextNormal = all isUprightTextNormalExp++shouldForceUprightBold :: [Exp] -> Bool+shouldForceUprightBold = all isUprightBoldExp++isUprightBoldExp :: Exp -> Bool+isUprightBoldExp e =+  case e of+    ENumber{}            -> True+    EIdentifier t        -> T.all isAsciiAlphaNum t+    EText{}              -> True+    ESpace{}             -> True+    ESymbol _ s          -> isPlainTextSymbol s+    EGrouped xs          -> shouldForceUprightBold xs+    EStyled TextNormal xs -> shouldForceUprightBold xs+    ESub base sub        -> isUprightBoldExp base && isUprightBoldExp sub+    ESuper base sup      -> isUprightBoldExp base && isUprightBoldExp sup+    ESubsup base sub sup -> isUprightBoldExp base+                         && isUprightBoldExp sub+                         && isUprightBoldExp sup+    _                    -> False++isUprightTextNormalExp :: Exp -> Bool+isUprightTextNormalExp e =+  case e of+    ENumber{}              -> True+    EIdentifier{}          -> True+    EText{}                -> True+    ESpace{}               -> True+    ESymbol _ s            -> isPlainTextSymbol s+    EGrouped xs            -> shouldForceUprightTextNormal xs+    EStyled TextNormal xs  -> shouldForceUprightTextNormal xs+    ESub base sub          -> isUprightTextNormalExp base && isUprightTextNormalExp sub+    ESuper base sup        -> isUprightTextNormalExp base && isUprightTextNormalExp sup+    ESubsup base sub sup   -> isUprightTextNormalExp base+                           && isUprightTextNormalExp sub+                           && isUprightTextNormalExp sup+    _                      -> False++isAsciiAlpha :: Char -> Bool+isAsciiAlpha c =+  (c >= 'A' && c <= 'Z') ||+  (c >= 'a' && c <= 'z')++isAsciiAlphaNum :: Char -> Bool+isAsciiAlphaNum c =+  isAsciiAlpha c ||+  (c >= '0' && c <= '9')++styleArg :: T.Text -> T.Text+styleArg t+  | T.null t        = "{}"+  | T.length t == 1 = t+  | otherwise       = "{" <> t <> "}"++singleUprightIdentifier :: [Exp] -> Maybe T.Text+singleUprightIdentifier xs =+  case xs of+    [EIdentifier t] -> Just t+    _               -> Nothing++alignmentContext :: Alignment -> AlignContext+alignmentContext a =+  case a of+    AlignLeft  -> AlignLeftCtx+    AlignRight -> AlignRightCtx+    _          -> AlignDefault++maybeCenterFractionArg :: AlignContext -> T.Text -> T.Text+maybeCenterFractionArg ctx t+  | ctx == AlignLeftCtx || ctx == AlignRightCtx = "{alignc " <> asArg t <> "}"+  | otherwise = t+ where+  asArg x =+    let s = T.strip x+    in if T.null s+          then "{}"+          else if T.length s == 1+                  then s+          else if T.head s == '{' && T.last s == '}'+                          then s+                          else "{" <> s <> "}"++asDelimitedArg :: T.Text -> T.Text+asDelimitedArg t =+  let s = T.strip t+  in if T.null s+        then "{}"+        else if T.head s == '{' && T.last s == '}'+                then s+                else "{" <> s <> "}"++renderInlineFraction :: T.Text -> T.Text -> T.Text+renderInlineFraction num den =+  "size*0.7 {" <> num <> " over " <> den <> "}"++renderSpace :: Rational -> T.Text+renderSpace w+  | w <= 0    = ""+  | w >= 2    = "~~ "+  | w >= 1    = "~ "+  | otherwise = " "++renderIdentifier :: T.Text -> T.Text+renderIdentifier ident =+  case greekName ident of+    Just name+      | shouldItalicizeGreek ident -> "%i" <> name+      | otherwise                  -> "%" <> name+    Nothing -> ident++renderTextNormalIdentifier :: T.Text -> T.Text+renderTextNormalIdentifier ident =+  case greekName ident of+    Just{}  -> renderIdentifier ident+    Nothing+      | isStarMathReservedWord ident -> quoteText ident+      | otherwise                    -> ident++isStarMathReservedWord :: T.Text -> Bool+isStarMathReservedWord t =+  t `elem`+    [ "alignc", "alignl", "alignr"+    , "and", "approx"+    , "bar", "binom", "bold", "breve"+    , "cdot", "check", "circ", "cos", "cosh", "cot", "csub", "csup"+    , "dlarrow", "dlrarrow", "dot", "dotsaxis", "dotsdown", "dotslow"+    , "dotsup", "dotsvert", "downarrow", "drarrow"+    , "emptyset", "equiv", "exists", "exp"+    , "fixed", "font", "forall", "from", "func"+    , "gg"+    , "hat"+    , "in", "infinity", "int", "intersection", "ital", "iiint"+    , "langle", "lbrace", "lceil", "ldbracket", "ldline", "left"+    , "leftarrow", "leftrightarrow", "lfloor", "lim", "liminf"+    , "limsup", "ll", "lline", "ln", "log"+    , "mapsto", "matrix", "max", "min", "minusplus", "mline"+    , "nabla", "neg", "none", "notin", "nitalic", "nroot"+    , "or", "ortho", "over", "overbrace", "overline", "owns"+    , "parallel", "phantom", "plusminus", "partial", "prod", "prop"+    , "rangle", "rbrace", "rceil", "rdbracket", "rdline", "rfloor"+    , "right", "rline"+    , "sans", "sin", "sinh", "sqrt", "subset", "subseteq", "sum"+    , "supset", "supseteq"+    , "tilde", "times", "to", "toward"+    , "underbrace", "underline", "union", "uparrow"+    , "vec"+    ]++renderMathOperator :: T.Text -> T.Text+renderMathOperator t+  | t == "min" = "func min"+  | t == "max" = "func max"+  | isBareMathOperator t = t+  | shouldQuoteMathOperator t = "func " <> quoteText t+  | otherwise                 = "func " <> t++isBareMathOperator :: T.Text -> Bool+isBareMathOperator t =+  t `elem`+    [ "min", "max", "log", "sin", "cos", "cosh", "sinh"+    , "cot", "ln", "exp"+    ]++shouldQuoteMathOperator :: T.Text -> Bool+shouldQuoteMathOperator = not . T.all isLetter++shouldItalicizeGreek :: T.Text -> Bool+shouldItalicizeGreek ident =+  case ident of+    "α" -> True+    "β" -> True+    "γ" -> True+    "δ" -> True+    "ϵ" -> True+    "ε" -> True+    "ζ" -> True+    "η" -> True+    "θ" -> True+    "ϑ" -> True+    "ι" -> True+    "κ" -> True+    "λ" -> True+    "μ" -> True+    "ν" -> True+    "ξ" -> True+    "ο" -> True+    "π" -> True+    "ϖ" -> True+    "ρ" -> True+    "ϱ" -> True+    "𝜚" -> True+    "σ" -> True+    "ς" -> True+    "𝜍" -> True+    "τ" -> True+    "υ" -> True+    "ϕ" -> True+    "φ" -> True+    "χ" -> True+    "ψ" -> True+    "ω" -> True+    _   -> False++greekName :: T.Text -> Maybe T.Text+greekName ident =+  case ident of+    "α" -> Just "alpha"+    "β" -> Just "beta"+    "γ" -> Just "gamma"+    "δ" -> Just "delta"+    "ϵ" -> Just "epsilon"+    "ε" -> Just "varepsilon"+    "ζ" -> Just "zeta"+    "η" -> Just "eta"+    "θ" -> Just "theta"+    "ϑ" -> Just "vartheta"+    "ι" -> Just "iota"+    "κ" -> Just "kappa"+    "λ" -> Just "lambda"+    "μ" -> Just "mu"+    "ν" -> Just "nu"+    "ξ" -> Just "xi"+    "ο" -> Just "omicron"+    "π" -> Just "pi"+    "ϖ" -> Just "varpi"+    "ρ" -> Just "rho"+    "ϱ" -> Just "varrho"+    "𝜚" -> Just "varrho"+    "σ" -> Just "sigma"+    "ς" -> Just "varsigma"+    "𝜍" -> Just "varsigma"+    "τ" -> Just "tau"+    "υ" -> Just "upsilon"+    "ϕ" -> Just "phi"+    "φ" -> Just "varphi"+    "χ" -> Just "chi"+    "ψ" -> Just "psi"+    "ω" -> Just "omega"+    "Γ" -> Just "GAMMA"+    "Δ" -> Just "DELTA"+    "Θ" -> Just "THETA"+    "Λ" -> Just "LAMBDA"+    "Ξ" -> Just "XI"+    "Π" -> Just "PI"+    "Σ" -> Just "SIGMA"+    "Υ" -> Just "UPSILON"+    "Φ" -> Just "PHI"+    "Ψ" -> Just "PSI"+    "Ω" -> Just "OMEGA"+    _   -> Nothing++renderScriptBase :: Exp -> T.Text -> T.Text+renderScriptBase e rendered0 =+  let rendered = T.strip rendered0+  in if isEmptyScriptBase e || T.null rendered+        then "{}"+        else if isWrapped rendered+        then rendered+        else if isAtomic e+        then rendered+        else "{" <> rendered <> "}"++renderScriptArg :: DisplayType -> AlignContext -> Exp -> Maybe T.Text+renderScriptArg dt ctx e = do+  rendered0 <-+    if needsNeutralScriptOperands e+       then renderExpsIn dt ctx [e]+       else renderExpIn dt ctx e+  let rendered = T.strip rendered0+  pure $ if (isAtomic e && not (needsNeutralScriptOperands e)) || isQuotedText rendered+            then rendered+            else "{" <> rendered <> "}"++renderPrimeSuffix :: Exp -> Maybe T.Text+renderPrimeSuffix e =+  case e of+    ESymbol Pun "'"  -> Just "'"+    ESymbol Pun "′"  -> Just "'"+    ESymbol Pun "″"  -> Just "''"+    ESymbol Pun "‴"  -> Just "'''"+    _                -> Nothing++renderLimitArg :: DisplayType -> AlignContext -> Exp -> Maybe T.Text+renderLimitArg dt ctx e =+  case e of+    EGrouped xs -> do+      rendered <- renderExpsIn dt ctx xs+      let stripped = T.strip rendered+      pure $+        if T.null stripped+           then "{}"+           else if containsRelationLike xs+                   then stripped+           else if isQuotedText stripped || isWrapped stripped || T.length stripped == 1+                   then stripped+                   else "{" <> stripped <> "}"+    _           -> T.strip <$> renderExpIn dt ctx e++containsRelationLike :: [Exp] -> Bool+containsRelationLike = any isRelationLike+ where+  isRelationLike expn =+    case expn of+      ESymbol Rel _ -> True+      ESymbol Bin _ -> True+      EGrouped ys   -> containsRelationLike ys+      _             -> False++renderAccentArg :: Exp -> T.Text -> T.Text+renderAccentArg e rendered0 =+  let rendered = T.strip rendered0+  in if isAtomic e+        then rendered+        else "{" <> rendered <> "}"++renderPhantomArg :: Exp -> T.Text -> T.Text+renderPhantomArg e rendered0 =+  let rendered = T.strip rendered0+  in if isAtomic e+        then rendered+        else if isWrapped rendered+        then rendered+        else "{" <> rendered <> "}"++centerScriptArg :: T.Text -> T.Text+centerScriptArg rendered+  | isWrapped rendered = rendered+  | otherwise          = "{" <> rendered <> "}"++isWrapped :: T.Text -> Bool+isWrapped t = T.length t >= 2 && T.head t == '{' && T.last t == '}'++isAtomic :: Exp -> Bool+isAtomic e =+  case e of+    ENumber{}       -> True+    EIdentifier{}   -> True+    EMathOperator{} -> True+    EText{}         -> True+    ESymbol{}       -> True+    _               -> False++isEmptyScriptBase :: Exp -> Bool+isEmptyScriptBase e =+  case e of+    EIdentifier t -> T.null t+    _             -> False++isEmptyScriptArg :: Exp -> Bool+isEmptyScriptArg e =+  case e of+    EGrouped []   -> True+    EIdentifier t -> T.null t+    _             -> False++isBraceAnnotatedExp :: Exp -> Bool+isBraceAnnotatedExp e =+  case e of+    EOver _ _ over  -> braceAnnotationName over /= Nothing+    EUnder _ _ under -> braceAnnotationName under /= Nothing+    _               -> False++braceAnnotationName :: Exp -> Maybe T.Text+braceAnnotationName e =+  case e of+    ESymbol TOver "\9182"  -> Just "overbrace"+    ESymbol TOver "\9140"  -> Just "overbrace"+    ESymbol TUnder "\9183" -> Just "underbrace"+    ESymbol TUnder "\9141" -> Just "underbrace"+    _                       -> Nothing++underlineMarkerName :: Exp -> Maybe T.Text+underlineMarkerName e =+  case e of+    ESymbol TUnder "_" -> Just "underline"+    _                  -> Nothing++renderBraceLabel :: DisplayType -> AlignContext -> Exp -> Maybe T.Text+renderBraceLabel dt ctx e = do+  rendered0 <- renderExpIn dt ctx e+  let rendered = T.strip rendered0+  pure $ if isQuotedText rendered || isAtomic e+            then rendered+            else "{" <> rendered <> "}"++arrowScriptOpName :: Exp -> Maybe T.Text+arrowScriptOpName e =+  case e of+    ESymbol _ "←" -> Just "leftarrow"+    ESymbol _ "→" -> Just "toward"+    ESymbol _ "↔" -> Just "leftrightarrow"+    ESymbol _ "⇐" -> Just "dlarrow"+    ESymbol _ "⇒" -> Just "drarrow"+    ESymbol _ "⇔" -> Just "dlrarrow"+    ESymbol _ "↦" -> Just "mapsto"+    ESymbol _ "↑" -> Just "uparrow"+    ESymbol _ "↓" -> Just "downarrow"+    _             -> Nothing++accentName :: Exp -> Maybe T.Text+accentName e =+  case e of+    ESymbol Accent s -> accentFromChar s+    ESymbol TOver s  -> overAccentFromChar s+    ESymbol _ s      -> accentFromChar s+    _                -> Nothing++overAccentFromChar :: T.Text -> Maybe T.Text+overAccentFromChar s =+  case s of+    "\772"  -> Just "overline"+    "\8254" -> Just "overline"+    "¯"     -> Just "overline"+    _       -> accentFromChar s++accentFromChar :: T.Text -> Maybe T.Text+accentFromChar s =+  case s of+    "\775"  -> Just "dot"+    "˙"     -> Just "dot"+    "\776"  -> Just "ddot"+    "¨"     -> Just "ddot"+    "\770"  -> Just "hat"+    "ˆ"     -> Just "hat"+    "\780"  -> Just "check"+    "ˇ"     -> Just "check"+    "\771"  -> Just "tilde"+    "˜"     -> Just "tilde"+    "\772"  -> Just "bar"+    "\8254" -> Just "bar"+    "¯"     -> Just "bar"+    "\8407" -> Just "vec"+    "→"     -> Just "vec"+    "\774"  -> Just "breve"+    "˘"     -> Just "breve"+    _       -> Nothing++data DelimSide = DelimLeft | DelimRight | DelimMiddle++delimToken :: DelimSide -> T.Text -> T.Text+delimToken side raw =+  case raw of+    ""  -> "none"+    "." -> "none"+    "(" -> "("+    ")" -> ")"+    "[" -> "["+    "]" -> "]"+    "{" -> case side of+      DelimLeft   -> "lbrace"+      DelimRight  -> "rbrace"+      DelimMiddle -> "{"+    "}" -> case side of+      DelimLeft   -> "lbrace"+      DelimRight  -> "rbrace"+      DelimMiddle -> "}"+    "|" -> case side of+      DelimLeft   -> "lline"+      DelimRight  -> "rline"+      DelimMiddle -> "mline"+    "∣" -> case side of+      DelimLeft   -> "lline"+      DelimRight  -> "rline"+      DelimMiddle -> "mline"+    "∥" -> case side of+      DelimLeft   -> "ldline"+      DelimRight  -> "rdline"+      DelimMiddle -> "mline"+    "⟨" -> "langle"+    "⟩" -> "rangle"+    "⌊" -> "lfloor"+    "⌋" -> "rfloor"+    "⌈" -> "lceil"+    "⌉" -> "rceil"+    "⟦" -> "ldbracket"+    "⟧" -> "rdbracket"+    _   -> raw++renderSymbol :: TeXSymbolType -> T.Text -> T.Text+renderSymbol t s =+  case s of+    "∫" -> "int "+    "∑" -> "sum "+    "←" -> " leftarrow "+    "→" -> " toward "+    "↔" -> " leftrightarrow "+    "⇐" -> " dlarrow "+    "⇒" -> " drarrow "+    "⇔" -> " dlrarrow "+    "↑" -> " uparrow "+    "↓" -> " downarrow "+    "↦" -> " mapsto "+    "\8230 " -> " dotslow "+    "… " -> " dotslow "+    "\8230" -> " dotslow "+    "…" -> " dotslow "+    "\8943" -> " dotsaxis "+    "⋯" -> " dotsaxis "+    "⋮" -> " dotsvert "+    "⋱" -> " dotsdown "+    "⋰" -> " dotsup "+    "∈" -> " in "+    "∉" -> " notin "+    "∋" -> " owns "+    "∩" -> " intersection "+    "∪" -> " union "+    "⊂" -> " subset "+    "⊆" -> " subseteq "+    "⊃" -> " supset "+    "⊇" -> " supseteq "+    "≤" -> " <= "+    "≥" -> " >= "+    "≠" -> " <> "+    "≈" -> " approx "+    "≡" -> " equiv "+    "\8810" -> " ll "+    "≪" -> " ll "+    "\8811" -> " gg "+    "≫" -> " gg "+    "∝" -> " prop "+    "∥" -> " parallel "+    "⊥" -> " ortho "+    "±" -> " plusminus "+    "∓" -> " minusplus "+    "×" -> " times "+    "⋅" -> " cdot "+    "·" -> " cdot "+    "∘" -> " circ "+    "/" -> " / "+    "∂" -> "partial"+    "∇" -> "nabla"+    "∀" -> "forall"+    "∃" -> "exists"+    "¬" -> "neg"+    "∧" -> "and"+    "∨" -> "or"+    "∞" -> "infinity"+    "∅" -> "emptyset"+    "+" -> " + "+    "-" | t == Bin  -> " - "+    "-"             -> "-"+    "−" | t == Bin  -> " - "+    "−"             -> "-"+    "<" -> " < "+    ">" -> " > "+    "=" -> " = "+    "," -> ", "+    ";" -> "; "+    ":" -> " : "+    "!" -> " ! "+    "'" -> "'"+    "′" -> "'"+    "″" -> "''"+    "‴" -> "'''"+    _   | isWordLiteralSymbol s -> quoteText s+        | otherwise             -> s++isWordLiteralSymbol :: T.Text -> Bool+isWordLiteralSymbol s =+  not (T.null s) && T.all isWordLiteralChar s++isWordLiteralChar :: Char -> Bool+isWordLiteralChar c =+  (c >= 'A' && c <= 'Z') ||+  (c >= 'a' && c <= 'z') ||+  c == ' ' || c == '-'++quoteText :: T.Text -> T.Text+quoteText t = "\"" <> escapeQuotes t <> "\""++escapeQuotes :: T.Text -> T.Text+escapeQuotes = T.replace "\"" "\\\""++isQuotedText :: T.Text -> Bool+isQuotedText t =+  T.length t >= 2 && T.head t == '"' && T.last t == '"'++largeOpName :: Exp -> Maybe T.Text+largeOpName e =+  case e of+    ESymbol Op "\8747" -> Just "int"+    ESymbol Op "\8751" -> Just "iiint"+    ESymbol Op "\8721" -> Just "sum"+    ESymbol Op "\8719" -> Just "prod"+    ESymbol Op "\8899" -> Just "oper ∪"+    ESymbol Op "\8898" -> Just "oper ∩"+    ESymbol Op "∫"     -> Just "int"+    ESymbol Op "∭"     -> Just "iiint"+    ESymbol Op "∑"     -> Just "sum"+    ESymbol Op "∏"     -> Just "prod"+    ESymbol Op "⋃"     -> Just "oper ∪"+    ESymbol Op "⋂"     -> Just "oper ∩"+    _                  -> Nothing++limitOpName :: Exp -> Maybe T.Text+limitOpName e =+  case largeOpName e of+    Just op -> Just op+    Nothing ->+      case e of+        EMathOperator "lim"    -> Just "lim"+        EMathOperator "liminf" -> Just "liminf"+        EMathOperator "limsup" -> Just "limsup"+        EMathOperator "min"    -> Nothing+        EMathOperator "max"    -> Nothing+        _                      -> Nothing++centeredScriptOpName :: Exp -> Maybe T.Text+centeredScriptOpName e =+  case e of+    EMathOperator "min" -> Just "func min"+    EMathOperator "max" -> Just "func max"+    EMathOperator "det" -> Just "func det"+    EMathOperator "Pr"  -> Just "func Pr"+    EMathOperator "gcd" -> Just "func gcd"+    EMathOperator "lim" -> Nothing+    EMathOperator "liminf" -> Nothing+    EMathOperator "limsup" -> Nothing+    EMathOperator t     -> Just (renderMathOperator t)+    _                   -> Nothing+renderTextAtom :: TextType -> T.Text -> T.Text+renderTextAtom sty t =+  case sty of+    TextItalic    -> "ital " <> styleArg t+    TextBold      -> "bold " <> styleArg (quoteText t)+    TextMonospace -> "font fixed " <> quoteText t+    TextSansSerif -> "font sans " <> quoteText t+    _             -> quoteText t
src/Text/TeXMath/Writers/TeX.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE GeneralizedNewtypeDeriving, ViewPatterns, GADTs #-}+{-# LANGUAGE GeneralizedNewtypeDeriving, ViewPatterns, GADTs, OverloadedStrings #-} {- Copyright (C) 2014 Matthew Pickering <matthewtpickering@gmail.com> @@ -18,40 +18,40 @@  -} -module Text.TeXMath.Writers.TeX (writeTeX, writeTeXWith, addLaTeXEnvironment ) where+module Text.TeXMath.Writers.TeX (writeTeX, writeTeXWith, addLaTeXEnvironment) where  import Text.TeXMath.Types import Text.TeXMath.Unicode.ToTeX (getTeXMath) import Text.TeXMath.Unicode.ToUnicode (fromUnicode) import qualified Text.TeXMath.Shared as S-import Data.Char (toLower)+import qualified Data.Text as T import Data.Generics (everywhere, mkT)-import Control.Applicative ((<$>), Applicative) import Control.Monad (when, unless, foldM_) import Control.Monad.Reader (MonadReader, runReader, Reader, asks, local) import Control.Monad.Writer( MonadWriter, WriterT,                              execWriterT, tell, censor) import Text.TeXMath.TeX+import Data.Either (isRight)  -- import Debug.Trace -- tr' x = trace (show x) x  -- | Transforms an expression tree to equivalent LaTeX with the default--- packages (amsmath and amssymb)-writeTeX :: [Exp] -> String+-- packages (amsmath, amssymb, and cancel)+writeTeX :: [Exp] -> T.Text writeTeX = writeTeXWith defaultEnv  -- | Adds the correct LaTeX environment around a TeXMath fragment-addLaTeXEnvironment :: DisplayType -> String -> String+addLaTeXEnvironment :: DisplayType -> T.Text -> T.Text addLaTeXEnvironment dt math =     case dt of-      DisplayInline -> "\\(" ++ math ++ "\\)"-      DisplayBlock  -> "\\[" ++ math ++ "\\]"+      DisplayInline -> "\\(" <> math <> "\\)"+      DisplayBlock  -> "\\[" <> math <> "\\]"  -- |  Transforms an expression tree to equivalent LaTeX with the specified -- packages-writeTeXWith :: Env -> [Exp] -> String-writeTeXWith env es = drop 1 . init . flip renderTeX "" . Grouped $+writeTeXWith :: Env -> [Exp] -> T.Text+writeTeXWith env es = T.drop 1 . T.init . flip renderTeX "" . Grouped $                             runExpr env $                               mapM_ writeExp (removeOuterGroup es) @@ -69,13 +69,13 @@                   deriving (Functor, Applicative, Monad, MonadReader MathState                            , MonadWriter [TeX]) -getTeXMathM :: String -> Math [TeX]+getTeXMathM :: T.Text -> Math [TeX] getTeXMathM s = getTeXMath s <$> asks mathEnv  tellGroup :: Math () -> Math () tellGroup = censor ((:[]) . Grouped) -tellGenFrac :: String -> String -> Math ()+tellGenFrac :: T.Text -> T.Text -> Math () tellGenFrac open close =   tell [ ControlSeq "\\genfrac"        , Grouped [Literal open]@@ -83,7 +83,7 @@        , Grouped [Literal "0pt"]        , Grouped [] ] -writeBinom :: String -> Exp -> Exp -> Math ()+writeBinom :: T.Text -> Exp -> Exp -> Math () writeBinom cmd x y = do   env <- asks mathEnv   if "amsmath" `elem` env@@ -93,7 +93,7 @@            "\\brack"  -> tellGenFrac "[" "]"            "\\brace"  -> tellGenFrac "\\{" "\\}"            "\\bangle" -> tellGenFrac "\\langle" "\\rangle"-           _          -> fail "writeBinom: unknown cmd"+           _          -> error "writeBinom: unknown cmd"        tellGroup $ writeExp x        tellGroup $ writeExp y      else tellGroup $ do@@ -134,6 +134,22 @@          writeDelim DLeft open          writeExp (EArray aligns rows)          writeDelim DRight close+-- this clause is meant to pair with delimitedImplicit in the tex reader:+writeExp (EDelimited open close es)+  | all isStandardHeight es+  , open == "(" || open == "[" || open == "|"+  , close == ")" || close == "]" || close == "|"+  , all isRight es+  = do+    getTeXMathM open >>= tell+    mapM_ (either (writeDelim DMiddle) writeExp) es+    getTeXMathM close >>= tell+ where+  isStandardHeight (Right (EIdentifier{})) = True+  isStandardHeight (Right (ENumber{})) = True+  isStandardHeight (Right (ESpace{})) = True+  isStandardHeight (Right (ESymbol ty _)) = ty `elem` [Ord, Op, Bin, Rel, Pun]+  isStandardHeight _ = False writeExp (EDelimited open close es) =  do   writeDelim DLeft open   mapM_ (either (writeDelim DMiddle) writeExp) es@@ -153,13 +169,14 @@          -- use \operatorname* if convertible          asks mathConvertible >>= flip when (tell [Token '*'])          tell [Grouped math]-writeExp (ESymbol Ord [c])  -- do not render "invisible operators"+writeExp (ESymbol Ord (T.unpack -> [c]))  -- do not render "invisible operators"   | c `elem` ['\x2061'..'\x2064'] = return () -- see 3.2.5.5 of mathml spec+writeExp (ESymbol Ord "\8242") = tell [Token '\''] -- render prime as ', #246 writeExp (ESymbol t s) = do   s' <- getTeXMathM s   when (t == Bin || t == Rel) $ tell [Space]-  if length s > 1 && (t == Bin || t == Rel || t == Op)-     then tell [ControlSeq ("\\math" ++ map toLower (show t)),+  if T.length s > 1 && (t == Bin || t == Rel || t == Op)+     then tell [ControlSeq ("\\math" <> T.toLower (tshow t)),                  Grouped [ControlSeq "\\text", Grouped s']]      else tell s'   when (t == Bin || t == Rel) $ tell [Space]@@ -182,32 +199,50 @@   tellGroup (writeExp e1) writeExp (ESuper b e1) = do   (if isFancy b then tellGroup else id) $ writeExp b-  tell [Token '^']-  tellGroup (writeExp e1)+  case S.toPrimes e1 of+    Just ps -> tell (replicate (T.length ps) (Token '\''))+    _ -> do tell [Token '^']+            tellGroup (writeExp e1) writeExp (ESubsup b e1 e2) = do   (if isFancy b then tellGroup else id) $ writeExp b   tell [Token '_']   tellGroup (writeExp e1)-  tell [Token '^']-  tellGroup (writeExp e2)-writeExp (EOver convertible b e1) =-  writeScript Over convertible b e1+  case S.toPrimes e2 of+    Just ps -> tell (replicate (T.length ps) (Token '\''))+    _ -> do tell [Token '^']+            tellGroup (writeExp e2)+writeExp (EOver convertible b e1) = do+  env <- asks mathEnv+  case xarrow b of+    Just arrowCtrlSeq | "amsmath" `elem` env -> do+      tell [arrowCtrlSeq]+      tellGroup (writeExp e1)+    _ -> writeScript Over convertible b e1 writeExp (EUnder convertible b e1) =   writeScript Under convertible b e1 writeExp (EUnderover convertible b e1@(ESymbol Accent _) e2) =  writeExp (EUnder convertible (EOver False b e2) e1) writeExp (EUnderover convertible b e1 e2@(ESymbol Accent _)) =  writeExp (EOver convertible (EUnder False b e1) e2)-writeExp (EUnderover convertible b e1 e2)-  | isOperator b = do-      (if isFancy b then tellGroup else id) $-        (if convertible then local setConvertible else id) $ writeExp b-      unless convertible $ tell [ControlSeq "\\limits"]-      tell [Token '_']-      tellGroup (checkSubstack e1)-      tell [Token '^']-      tellGroup (checkSubstack e2)-  | otherwise = writeExp (EUnder convertible (EOver convertible b e2) e1)+writeExp (EUnderover convertible b e1 e2) = do+  env <- asks mathEnv+  case xarrow b of+    Just arrowCtrlSeq | "amsmath" `elem` env -> do+      tell [arrowCtrlSeq]+      tell [Token '[']+      tellGroup $ writeExp e1+      tell [Token ']']+      tellGroup (writeExp e2)+    Nothing+      | isOperator b -> do+          (if isFancy b then tellGroup else id) $+            (if convertible then local setConvertible else id) $ writeExp b+          unless convertible $ tell [ControlSeq "\\limits"]+          tell [Token '_']+          tellGroup (checkSubstack e1)+          tell [Token '^']+          tellGroup (checkSubstack e2)+    _ -> writeExp (EUnder convertible (EOver convertible b e2) e1) writeExp (ESqrt e) = do     tell [ControlSeq "\\sqrt"]     tellGroup (writeExp e)@@ -227,6 +262,12 @@         tell [ControlSeq "\\boxed"]         tellGroup (writeExp e)       else writeExp e+writeExp (ECancel st e) = do+  case st of+    ForwardSlash -> tell [ControlSeq "\\cancel"]+    BackSlash -> tell [ControlSeq "\\bcancel"]+    XSlash -> tell [ControlSeq "\\xcancel"]+  tellGroup (writeExp e) writeExp (EScaled size e)   | case e of          (ESymbol Open _)  -> True@@ -239,49 +280,57 @@   | otherwise = writeExp e writeExp (EText ttype s) = do   let txtcmd = getTextCommand ttype-  case map escapeLaTeX s of+  let fixSpace (Literal "\\ ") = Literal " "+      fixSpace x = x+  case map (fixSpace . escapeLaTeX) (T.unpack s) of        []   -> return ()        xs   -> tell $ txtcmd (Grouped xs)+writeExp (EStyled TextNormal [EStyled TextBold es]) = do+  tell [ControlSeq "\\mathbf"]+  tellGroup $ mapM_ writeExp $ everywhere (mkT (fromUnicode TextBold)) es writeExp (EStyled ttype es) = do   txtcmd <- (flip S.getLaTeXTextCommand ttype) <$> asks mathEnv   tell [ControlSeq txtcmd]   tellGroup (mapM_ writeExp $ everywhere (mkT (fromUnicode ttype)) es)-writeExp (EArray [AlignRight, AlignLeft] rows) = do+writeExp (EArray as rows)+  | S.isRLSequence as = do   env <- asks mathEnv   if "amsmath" `elem` env      then table "aligned" [] rows-     else table "array" [AlignRight, AlignLeft] rows+     else table "array" as rows writeExp (EArray aligns rows) = do   env <- asks mathEnv   if "amsmath" `elem` env && all (== AlignCenter) aligns      then table "matrix" [] rows      else table "array" aligns rows -table :: String -> [Alignment] -> [ArrayLine] -> Math ()+table :: T.Text -> [Alignment] -> [ArrayLine] -> Math () table name aligns rows = do   tell [ControlSeq "\\begin", Grouped [Literal name]]   unless (null aligns) $      tell [Grouped [Literal columnAligns]]   tell [Token '\n']-  mapM_ row rows+  doRows rows   tell [ControlSeq "\\end", Grouped [Literal name]]   where-    columnAligns = map alignmentToLetter aligns+    columnAligns = T.pack $ map alignmentToLetter aligns     alignmentToLetter AlignLeft = 'l'     alignmentToLetter AlignCenter = 'c'     alignmentToLetter AlignRight = 'r' -row :: ArrayLine -> Math ()-row []     = tell [Space, Literal "\\\\", Token '\n']-row [c]    = cell c >> row []-row (c:cs) = cell c >> tell [Space, Token '&', Space] >> row cs+doRows :: [ArrayLine] -> Math ()+doRows []          = return ()+doRows ([]:[])     = tell [Token '\n']+doRows ([]:ls)     = tell [Space, Literal "\\\\", Token '\n'] >> doRows ls+doRows ([c]:ls)    = cell c >> doRows ([]:ls)+doRows ((c:cs):ls) = cell c >> tell [Space, Token '&', Space] >> doRows (cs:ls)  cell :: [Exp] -> Math () cell = mapM_ writeExp  data FenceType = DLeft | DMiddle | DRight -type Delim = String+type Delim = T.Text  writeDelim :: FenceType -> Delim -> Math () writeDelim fence delim = do@@ -314,6 +363,12 @@             unless convertible $ tell [ControlSeq "\\limits"]             tell [Token $ case pos of { Over -> '^'; Under -> '_' }]             tellGroup (checkSubstack e1)+         | case pos of {Over -> True; _ -> False}+         , e1 == ESymbol Accent "\831" -> do -- double bar+            tell [ControlSeq "\\overline", Literal "{",+                  ControlSeq "\\overline"]+            tellGroup (writeExp b)+            tell [Literal "}"]          | otherwise -> do              case pos of                   Over   -> tell [ControlSeq "\\overset"]@@ -340,7 +395,7 @@ -- Utility  -- | Maps a length in em to the nearest LaTeX space command-getSpaceCommand :: Bool -> Rational -> String+getSpaceCommand :: Bool -> Rational -> T.Text getSpaceCommand amsmath width =   case floor (width * 18) :: Int of           -3       -> "\\!"@@ -351,8 +406,8 @@           18       -> "\\quad"           36       -> "\\qquad"           n        -> if amsmath-                         then "\\mspace{" ++ show n ++ "mu}"-                         else "{\\mskip " ++ show n ++ "mu}"+                         then "\\mspace{" <> tshow n <> "mu}"+                         else "{\\mskip " <> tshow n <> "mu}"  getTextCommand :: TextType -> TeX -> [TeX] getTextCommand tt x =@@ -373,6 +428,11 @@                                       Grouped [ControlSeq "\\textsf", x]]]         _  -> [ControlSeq "\\text", x] +xarrow :: Exp -> Maybe TeX+xarrow (ESymbol Op "\x2190") = Just $ ControlSeq "\\xleftarrow"+xarrow (ESymbol Op "\x2192") = Just $ ControlSeq "\\xrightarrow"+xarrow _ = Nothing+ -- Commands which can be used with \left and \right delimiters :: Math [[TeX]] delimiters = do@@ -394,7 +454,6 @@ isFancy (EPhantom _) = True isFancy _ = False - isOperator :: Exp -> Bool isOperator (EMathOperator _) = True isOperator (ESymbol Op _)    = True@@ -403,3 +462,6 @@ removeOuterGroup :: [Exp] -> [Exp] removeOuterGroup [EGrouped es] = es removeOuterGroup es = es++tshow :: Show a => a -> T.Text+tshow = T.pack . show
+ src/Text/TeXMath/Writers/Typst.hs view
@@ -0,0 +1,358 @@+{-# LANGUAGE GeneralizedNewtypeDeriving, ViewPatterns, GADTs, OverloadedStrings #-}+{-+Copyright (C) 2023 John MacFarlane <jgm@berkeley.edu>++This program is free software; you can redistribute it and/or modify+it under the terms of the GNU General Public License as published by+the Free Software Foundation; either version 2 of the License, or+(at your option) any later version.++This program is distributed in the hope that it will be useful,+but WITHOUT ANY WARRANTY; without even the implied warranty of+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the+GNU General Public License for more details.++You should have received a copy of the GNU General Public License+along with this program; if not, write to the Free Software+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA++-}++module Text.TeXMath.Writers.Typst (writeTypst) where++import Data.List (transpose)+import qualified Data.Map as M+import qualified Data.Text as T+import Text.TeXMath.Types+import qualified Text.TeXMath.Shared as S+import qualified Typst.Symbols as TS+import Data.Generics (everywhere, mkT)+import Data.Text (Text)+import Data.Char (isDigit, isAlpha, isAscii)+import Data.Maybe (fromMaybe)++-- import Debug.Trace+-- tr' x = trace (show x) x++-- | Transforms an expression tree to equivalent Typst+writeTypst :: DisplayType -> [Exp] -> Text+writeTypst dt exprs =+  writeExps $ everywhere (mkT $ S.handleDownup dt) exprs++writeExps :: [Exp] -> Text+writeExps = go . map writeExp+ where+   go (a : b : es)+    | Just (bstart, _) <- T.uncons b+    , Just (astart, _) <- T.uncons a+    , Just (_, aend) <- T.unsnoc a+    , bstart == '\'' -- avoid space before a prime #239+      || bstart == '|' || aend == '|' || bstart == '\\' || astart == '\\' -- #286+     = a <> go (b:es)+   go (a : as)+     = a <> if null as+               then mempty+               else " " <> go as+   go [] = mempty++inParens :: Text -> Text+inParens s = "(" <> s <> ")"++inQuotes :: Text -> Text+inQuotes s = "\"" <> escInQuotes s <> "\""++esc :: Text -> Text+esc t =+  if T.any needsEscape t+     then T.concatMap escapeChar t+     else t+  where+    escapeChar c+      | needsEscape c = "\\" <> T.singleton c+      | otherwise = T.singleton c+    needsEscape '[' = True+    needsEscape ']' = True+    needsEscape '|' = True+    needsEscape '#' = True+    needsEscape '$' = True+    needsEscape '(' = True+    needsEscape ')' = True+    needsEscape '_' = True+    needsEscape '^' = True+    needsEscape '"' = True+    needsEscape '/' = True+    needsEscape '\\' = True+    needsEscape ',' = True -- #242+    needsEscape ';' = True -- #275+    needsEscape _ = False++escInQuotes :: Text -> Text+escInQuotes t =+  if T.any needsEscape t+    then T.concatMap escapeChar t+    else t+  where+    escapeChar c+      | needsEscape c = "\\" <> T.singleton c+      | otherwise = T.singleton c+    needsEscape c = c == '\\' || c == '"'++writeExpS :: Exp -> Text+writeExpS e =+  case writeExp e of+    "" -> "()"+    t | Just (c,_) <- T.uncons t+      , c >= '\8988' && c <= '\8991'+      -> "\\" <> t -- see #245+    t | T.all (\c -> isDigit c || c == '.') t -> t+      | T.all (\c -> isAlpha c || c == '.') t -> t+      | otherwise -> "(" <> t <> ")"++writeExpB :: Exp -> Text+writeExpB e =+  case writeExp e of+    "" -> "zws"+    t -> t++writeExp :: Exp -> Text+writeExp (ENumber s) = s+writeExp (ESymbol _t s)+  | T.all isAscii s = esc s  -- use '+' not 'plus'+  | s == "\x2212" = "-" -- use '-' not 'minus'+  | s == "\8242" = "'" -- use ' for prime, see #239+  | s == "\8243" = "''"+  | s == "\8244" = "'''"+  | s == "\8279" = "''''"+  | otherwise = fromMaybe (esc s) $ M.lookup s typstSymbolMap+writeExp (EIdentifier s) =+  if T.length s == 1+     then writeExp (ESymbol Ord s)+     else inQuotes s+writeExp (EMathOperator s)+  | s `elem` ["arccos", "arcsin", "arctan", "arg", "cos", "cosh",+              "cot", "ctg", "coth", "csc", "deg", "det", "dim", "exp",+              "gcd", "hom", "mod", "inf", "ker", "lg", "lim", "ln",+              "log", "max", "min", "Pr", "sec", "sin", "sinh", "sup",+              "tan", "tg", "tanh", "liminf", "and", "limsup"]+    = s+  | otherwise = "\"" <> s <> "\""+writeExp (EGrouped es) = writeExps es+writeExp (EFraction _fractype e1 e2) =+  case (e1, e2) of+    (EGrouped _, _) -> "frac(" <> writeExp e1 <> ", " <> writeExp e2 <> ")"+    (_, EGrouped _) -> "frac(" <> writeExp e1 <> ", " <> writeExp e2 <> ")"+    _ -> writeExp e1 <> " / " <> writeExp e2+writeExp (ESub b e1) = writeExpB b <> "_" <> writeExpS e1+writeExp (ESuper b e1) = writeExpB b <>+  case S.toPrimes e1 of+    Just ps -> ps+    Nothing -> "^" <> writeExpS e1+writeExp (ESubsup b e1 e2) =+  writeExpB b <>+    case S.toPrimes e2 of+      Just ps -> ps <> "_" <> writeExpS e1+      Nothing -> "_" <> writeExpS e1 <> "^" <> writeExpS e2+writeExp (EOver _ (EOver _ b (ESymbol TOver "\9182")) e1) =+  "overbrace(" <> writeExp b <> ", " <> writeExp e1 <> ")"+writeExp (EOver _ (EOver _ b (ESymbol TOver "\9140")) e1) =+  "overbracket(" <> writeExp b <> ", " <> writeExp e1 <> ")"+writeExp (EOver _convertible b (ESymbol Accent ac))+  = case getAccentCommand ac of+     Just accCommand+       | not (isGrouped b) -> accCommand <> inParens (writeExp b)+     _ -> "accent" <> inParens (writeExp b <> ", " <> ac)+writeExp (EOver _convertible b e1) =+  case e1 of+    ESymbol TOver "\9182" -> "overbrace" <> inParens (writeExp b)+    ESymbol TOver "\9140" -> "overbracket" <> inParens (writeExp b)+    ESymbol TOver "\175" -> "overline" <> inParens (writeExp b)+    _ -> writeExpB b <> "^" <> writeExpS e1+writeExp (EUnder _ (EUnder _ b (ESymbol TUnder "\9183")) e1) =+  "underbrace(" <> writeExp b <> ", " <> writeExp e1 <> ")"+writeExp (EUnder _ (EUnder _ b (ESymbol TUnder "\9140")) e1) =+  "underbrace(" <> writeExp b <> ", " <> writeExp e1 <> ")"+writeExp (EUnder _convertible b e1) =+  case e1 of+    ESymbol TUnder "_" -> "underline(" <> writeExp b <> ")"+    ESymbol TUnder "\817" -> "underline(" <> writeExp b <> ")"+    ESymbol TUnder "\9183" -> "underbrace(" <> writeExp b <> ")"+    ESymbol TUnder "\9140" -> "underbracket(" <> writeExp b <> ")"+    _ -> writeExpB b <> "_" <> writeExpS e1+writeExp (EUnderover convertible b e1 e2) =+  case (e1, e2) of+    (_, ESymbol Accent _) -> writeExp (EUnder convertible (EOver False b e2) e1)+    (_, ESymbol TOver _) -> writeExp (EUnder convertible (EOver False b e2) e1)+    (ESymbol TUnder _, _) -> writeExp (EOver convertible (EUnder False b e1) e2)+    _ -> writeExpB b <> "_" <> writeExpS e1 <> "^" <> writeExpS e2+writeExp (ESqrt e) = "sqrt(" <> writeExp e <> ")"+writeExp (ERoot i e) = "root(" <> writeExp i <> ", " <> writeExp e <> ")"+writeExp (ESpace width) =+  case (floor (width * 18) :: Int) of+    0 -> "zws"+    3 -> "thin"+    4 -> "med"+    6 -> "thick"+    18 -> "quad"+    n -> "#h(" <> tshow (n `div` 18) <> "em)"+writeExp (EText ttype s) =+  case ttype of+       TextNormal -> "upright" <> inParens (inQuotes s)+       TextItalic -> "italic" <> inParens (inQuotes s)+       TextBold   -> "bold" <> inParens (inQuotes s)+       TextBoldItalic -> "bold" <> inParens ("italic" <> inParens (inQuotes s))+       TextMonospace -> "mono" <> inParens (inQuotes s)+       TextSansSerif -> "sans" <> inParens (inQuotes s)+       TextDoubleStruck -> "bb" <> inParens (inQuotes s)+       TextScript -> "cal" <> inParens (inQuotes s)+       TextFraktur -> "frak" <> inParens (inQuotes s)+       TextSansSerifBold -> "bold" <> inParens ("sans" <> inParens (inQuotes s))+       TextSansSerifBoldItalic -> "bold" <>+         inParens ("italic" <> inParens ("sans" <> inParens (inQuotes s)))+       TextBoldScript -> "bold" <> inParens ("cal" <> inParens (inQuotes s))+       TextBoldFraktur -> "bold" <> inParens ("frak" <> inParens (inQuotes s))+       TextSansSerifItalic -> "italic" <>+          inParens ("sans" <> inParens (inQuotes s))+writeExp (EStyled ttype es) =+  let contents = writeExps es+  in case ttype of+       TextNormal -> "upright" <> inParens contents+       TextItalic -> "italic" <> inParens contents+       TextBold   -> "bold" <> inParens contents+       TextBoldItalic -> "bold" <> inParens ("italic" <> inParens contents)+       TextMonospace -> "mono" <> inParens contents+       TextSansSerif -> "sans" <> inParens contents+       TextDoubleStruck -> "bb" <> inParens contents+       TextScript -> "cal" <> inParens contents+       TextFraktur -> "frak" <> inParens contents+       TextSansSerifBold -> "bold" <> inParens ("sans" <> inParens contents)+       TextSansSerifBoldItalic -> "bold" <>+         inParens ("italic" <> inParens ("sans" <> inParens contents))+       TextBoldScript -> "bold" <> inParens ("cal" <> inParens contents)+       TextBoldFraktur -> "bold" <> inParens ("frak" <> inParens contents)+       TextSansSerifItalic -> "italic" <> inParens ("sans" <> inParens contents)+writeExp (EBoxed e) = "#box(stroke: black, inset: 3pt, [$ " <> writeExp e <> " $])"+writeExp (ECancel ForwardSlash e) = "cancel(" <> writeExp e <> ")"+writeExp (ECancel BackSlash e) = "cancel(" <> writeExp e <> ", inverted: #true)"+writeExp (ECancel XSlash e) = "cancel(" <> writeExp e <> ", cross: #true)"+writeExp (EPhantom e) = "#hide[" <> writeExp e <> "]"+writeExp (EScaled size e) =+  "#scale(x: " <> tshow (floor (100 * size) :: Int) <>+          "%, y: " <> tshow (floor (100 * size) :: Int) <>+          "%)[" <> writeExp e <> "]"+writeExp (EDelimited "(" ")" [ Right (EFraction NoLineFrac x y) ]) =+  "binom(" <> writeExp x <> ", " <> writeExp y <> ")"+writeExp (EDelimited "(" ")" [Right (EArray _aligns rows)])+  | all (\row -> length row == 1) rows = -- vector+  "vec(" <> mkArray (transpose rows) <> ")"+writeExp (EDelimited "(" ")" [Right (EArray _aligns [[xs],[ys]])]) =+  "binom(" <> writeExps xs <> ", " <> writeExps ys <> ")"+writeExp (EDelimited "(" ")" [Right (EArray _aligns rows)]) =+  "mat(delim: \"(\", " <> mkArray rows <> ")"+writeExp (EDelimited "[" "]" [Right (EArray _aligns rows)]) =+  "mat(delim: \"[\", " <> mkArray rows <> ")"+writeExp (EDelimited "{" "}" [Right (EArray _aligns rows)]) =+  "mat(delim: \"{\", " <> mkArray rows <> ")"+writeExp (EDelimited "|" "|" [Right (EArray _aligns rows)]) =+  "mat(delim: \"|\", " <> mkArray rows <> ")"+writeExp (EDelimited "||" "||" [Right (EArray _aligns rows)]) =+  "mat(delim: \"||\", " <> mkArray rows <> ")"+writeExp (EDelimited "\x2223" "\x2223" [Right (EArray _aligns rows)]) =+  "mat(delim: \"||\", " <> mkArray rows <> ")"+writeExp (EDelimited "\x2225" "\x2225" [Right (EArray _aligns rows)]) =+  "mat(delim: \"||\", " <> mkArray rows <> ")"+writeExp (EDelimited op "" [Right (EArray [AlignLeft, AlignLeft] rows)]) =+  "cases" <> inParens("delim: " <> inQuotes op <> mconcat (map toCase rows))+   where toCase = (", " <>) . T.intercalate " & " . map writeExps+writeExp (EDelimited open close es) =+  if isDelim open && isDelim close+     then+       (if matchedPair open close &&  -- see #233+            not (any (\x -> x == Left open || x == Left close) es)+           then id+           else ("lr" <>) . inParens)+          (renderOpen open <> body <> renderClose close)+     else esc open <> body <> esc close+  where fromDelimited (Left e)  = "mid(" <> renderSymbol e <> ")"+        fromDelimited (Right e) = writeExp e+        isDelim c = c `elem` ["(",")","[","]","{","}","|","||","\x2016"]+        renderOpen e =+          if T.all isAscii e+             then e+             else renderSymbol e <> " "+        renderClose e =+          if T.all isAscii e+             then e+             else " " <> renderSymbol e+        renderSymbol e = fromMaybe (esc e) (M.lookup e typstSymbolMap)+        matchedPair "(" ")" = True+        matchedPair "[" "]" = True+        matchedPair "{" "}" = True+        matchedPair _ _ = False+        body = T.unwords (map fromDelimited es)+writeExp (EArray _aligns rows)+  = T.intercalate "\\\n" $ map mkRow rows+     where mkRow = T.intercalate " & " . map writeExps++mkArray :: [[[Exp]]] -> Text+mkArray rows =+  T.intercalate "; " $ map mkRow rows+ where+   mkRow = T.intercalate ", " . mkCells . map mkCell+   mkCells cs =+     case cs of+       ("":rest) -> "#none" : rest+       _ -> cs+   mkCell = writeExps++tshow :: Show a => a -> Text+tshow = T.pack . show++typstSymbolMap :: M.Map Text Text+typstSymbolMap = M.fromList $+  ("\776", "dot.double") -- see #231+  : [(s,name) | TS.Sym { TS.symName = name+                       , TS.symText = s+                       , TS.symDeprecation = Nothing+                       } <- TS.typstSymbols]++getAccentCommand :: Text -> Maybe Text+getAccentCommand ac = do+  case ac of+    "`" -> Just "grave"+    "\180" -> Just "acute"+    "^" -> Just "hat"+    "~" -> Just "tilde"+    "." -> Just "dot"+    "\168" -> Just "diaer"+    "\175" -> Just "macron"+    "\711" -> Just "caron"+    "\728" -> Just "breve"+    "\733" -> Just "acute.double"+    "\768" -> Just "grave"+    "\769" -> Just "acute"+    "\770" -> Just "hat"+    "\771" -> Just "tilde"+    "\772" -> Just "macron"+    "\773" -> Just "overline"+    "\774" -> Just "breve"+    "\775" -> Just "dot"+    "\776" -> Just "dot.double"+    "\777" -> Just "harpoon"+    "\778" -> Just "circle"+    "\779" -> Just "acute.double"+    "\780" -> Just "caron"+    "\781" -> Just "overline"+    "\x2218" -> Just "circle"+    "\x2192" -> Just "->"+    "\x2190" -> Just "<-"+    "\8254" -> Just "macron"+    "\8400" -> Just "harpoon.lt"+    "\8401" -> Just "harpoon"+    "\8406" -> Just "arrow.l"+    "\8407" -> Just "arrow"+    "\8417" -> Just "arrow.l.r"+    _ -> Nothing++isGrouped :: Exp -> Bool+isGrouped (EGrouped _) = True+isGrouped _ = False
+ test/reader/mml/00000_C0_Controls_and_Basic_Latin.test view
@@ -0,0 +1,680 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mtext>7</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo></mo>+      </mtd> +      <mtd>+        <mo>0</mo>+      </mtd> +      <mtd>+        <mo>@</mo>+      </mtd> +      <mtd>+        <mo>P</mo>+      </mtd> +      <mtd>+        <mo>`</mo>+      </mtd> +      <mtd>+        <mo>p</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>!</mo>+      </mtd> +      <mtd>+        <mo>1</mo>+      </mtd> +      <mtd>+        <mo>A</mo>+      </mtd> +      <mtd>+        <mo>Q</mo>+      </mtd> +      <mtd>+        <mo>a</mo>+      </mtd> +      <mtd>+        <mo>q</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>"</mo>+      </mtd> +      <mtd>+        <mo>2</mo>+      </mtd> +      <mtd>+        <mo>B</mo>+      </mtd> +      <mtd>+        <mo>R</mo>+      </mtd> +      <mtd>+        <mo>b</mo>+      </mtd> +      <mtd>+        <mo>r</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>#</mo>+      </mtd> +      <mtd>+        <mo>3</mo>+      </mtd> +      <mtd>+        <mo>C</mo>+      </mtd> +      <mtd>+        <mo>S</mo>+      </mtd> +      <mtd>+        <mo>c</mo>+      </mtd> +      <mtd>+        <mo>s</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>$</mo>+      </mtd> +      <mtd>+        <mo>4</mo>+      </mtd> +      <mtd>+        <mo>D</mo>+      </mtd> +      <mtd>+        <mo>T</mo>+      </mtd> +      <mtd>+        <mo>d</mo>+      </mtd> +      <mtd>+        <mo>t</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>%</mo>+      </mtd> +      <mtd>+        <mo>5</mo>+      </mtd> +      <mtd>+        <mo>E</mo>+      </mtd> +      <mtd>+        <mo>U</mo>+      </mtd> +      <mtd>+        <mo>e</mo>+      </mtd> +      <mtd>+        <mo>u</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>&amp;</mo>+      </mtd> +      <mtd>+        <mo>6</mo>+      </mtd> +      <mtd>+        <mo>F</mo>+      </mtd> +      <mtd>+        <mo>V</mo>+      </mtd> +      <mtd>+        <mo>f</mo>+      </mtd> +      <mtd>+        <mo>v</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>'</mo>+      </mtd> +      <mtd>+        <mo>7</mo>+      </mtd> +      <mtd>+        <mo>G</mo>+      </mtd> +      <mtd>+        <mo>W</mo>+      </mtd> +      <mtd>+        <mo>g</mo>+      </mtd> +      <mtd>+        <mo>w</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>(</mo>+      </mtd> +      <mtd>+        <mo>8</mo>+      </mtd> +      <mtd>+        <mo>H</mo>+      </mtd> +      <mtd>+        <mo>X</mo>+      </mtd> +      <mtd>+        <mo>h</mo>+      </mtd> +      <mtd>+        <mo>x</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>)</mo>+      </mtd> +      <mtd>+        <mo>9</mo>+      </mtd> +      <mtd>+        <mo>I</mo>+      </mtd> +      <mtd>+        <mo>Y</mo>+      </mtd> +      <mtd>+        <mo>i</mo>+      </mtd> +      <mtd>+        <mo>y</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>*</mo>+      </mtd> +      <mtd>+        <mo>:</mo>+      </mtd> +      <mtd>+        <mo>J</mo>+      </mtd> +      <mtd>+        <mo>Z</mo>+      </mtd> +      <mtd>+        <mo>j</mo>+      </mtd> +      <mtd>+        <mo>z</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>+</mo>+      </mtd> +      <mtd>+        <mo>;</mo>+      </mtd> +      <mtd>+        <mo>K</mo>+      </mtd> +      <mtd>+        <mo>[</mo>+      </mtd> +      <mtd>+        <mo>k</mo>+      </mtd> +      <mtd>+        <mo>{</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>,</mo>+      </mtd> +      <mtd>+        <mo>&lt;</mo>+      </mtd> +      <mtd>+        <mo>L</mo>+      </mtd> +      <mtd>+        <mo>\</mo>+      </mtd> +      <mtd>+        <mo>l</mo>+      </mtd> +      <mtd>+        <mo>|</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>-</mo>+      </mtd> +      <mtd>+        <mo>=</mo>+      </mtd> +      <mtd>+        <mo>M</mo>+      </mtd> +      <mtd>+        <mo>]</mo>+      </mtd> +      <mtd>+        <mo>m</mo>+      </mtd> +      <mtd>+        <mo>}</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>.</mo>+      </mtd> +      <mtd>+        <mo>&gt;</mo>+      </mtd> +      <mtd>+        <mo>N</mo>+      </mtd> +      <mtd>+        <mo>^</mo>+      </mtd> +      <mtd>+        <mo>n</mo>+      </mtd> +      <mtd>+        <mo>~</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">*</mo>+      </mtd> +      <mtd>+        <mo>/</mo>+      </mtd> +      <mtd>+        <mo>?</mo>+      </mtd> +      <mtd>+        <mo>O</mo>+      </mtd> +      <mtd>+        <mo>_</mo>+      </mtd> +      <mtd>+        <mo>o</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "0" ]+      , [ EText TextNormal "1" ]+      , [ EText TextNormal "2" ]+      , [ EText TextNormal "3" ]+      , [ EText TextNormal "4" ]+      , [ EText TextNormal "5" ]+      , [ EText TextNormal "6" ]+      , [ EText TextNormal "7" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ EMathOperator "" ]+      , [ ESymbol Ord "0" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "P" ]+      , [ ESymbol Accent "`" ]+      , [ ESymbol Alpha "p" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Pun "!" ]+      , [ ESymbol Ord "1" ]+      , [ ESymbol Alpha "A" ]+      , [ ESymbol Alpha "Q" ]+      , [ ESymbol Alpha "a" ]+      , [ ESymbol Alpha "q" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Accent "\"" ]+      , [ ESymbol Ord "2" ]+      , [ ESymbol Alpha "B" ]+      , [ ESymbol Alpha "R" ]+      , [ ESymbol Alpha "b" ]+      , [ ESymbol Alpha "r" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "#" ]+      , [ ESymbol Ord "3" ]+      , [ ESymbol Alpha "C" ]+      , [ ESymbol Alpha "S" ]+      , [ ESymbol Alpha "c" ]+      , [ ESymbol Alpha "s" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "$" ]+      , [ ESymbol Ord "4" ]+      , [ ESymbol Alpha "D" ]+      , [ ESymbol Alpha "T" ]+      , [ ESymbol Alpha "d" ]+      , [ ESymbol Alpha "t" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "%" ]+      , [ ESymbol Ord "5" ]+      , [ ESymbol Alpha "E" ]+      , [ ESymbol Alpha "U" ]+      , [ ESymbol Alpha "e" ]+      , [ ESymbol Alpha "u" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "&" ]+      , [ ESymbol Ord "6" ]+      , [ ESymbol Alpha "F" ]+      , [ ESymbol Alpha "V" ]+      , [ ESymbol Alpha "f" ]+      , [ ESymbol Alpha "v" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Accent "'" ]+      , [ ESymbol Ord "7" ]+      , [ ESymbol Alpha "G" ]+      , [ ESymbol Alpha "W" ]+      , [ ESymbol Alpha "g" ]+      , [ ESymbol Alpha "w" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Open "(" ]+      , [ ESymbol Ord "8" ]+      , [ ESymbol Alpha "H" ]+      , [ ESymbol Alpha "X" ]+      , [ ESymbol Alpha "h" ]+      , [ ESymbol Alpha "x" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Close ")" ]+      , [ ESymbol Ord "9" ]+      , [ ESymbol Alpha "I" ]+      , [ ESymbol Alpha "Y" ]+      , [ ESymbol Alpha "i" ]+      , [ ESymbol Alpha "y" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Pun ":" ]+      , [ ESymbol Alpha "J" ]+      , [ ESymbol Alpha "Z" ]+      , [ ESymbol Alpha "j" ]+      , [ ESymbol Alpha "z" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Bin "+" ]+      , [ ESymbol Pun ";" ]+      , [ ESymbol Alpha "K" ]+      , [ ESymbol Open "[" ]+      , [ ESymbol Alpha "k" ]+      , [ ESymbol Open "{" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Pun "," ]+      , [ ESymbol Rel "<" ]+      , [ ESymbol Alpha "L" ]+      , [ ESymbol Ord "\\" ]+      , [ ESymbol Alpha "l" ]+      , [ ESymbol Op "|" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Bin "-" ]+      , [ ESymbol Rel "=" ]+      , [ ESymbol Alpha "M" ]+      , [ ESymbol Close "]" ]+      , [ ESymbol Alpha "m" ]+      , [ ESymbol Close "}" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Alpha "." ]+      , [ ESymbol Rel ">" ]+      , [ ESymbol Alpha "N" ]+      , [ ESymbol Ord "^" ]+      , [ ESymbol Alpha "n" ]+      , [ ESymbol Accent "~" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "*" ]+      , [ ESymbol Ord "/" ]+      , [ ESymbol Ord "?" ]+      , [ ESymbol Alpha "O" ]+      , [ ESymbol Ord "_" ]+      , [ ESymbol Alpha "o" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/00080_C1_Controls_and_Latin-1_Supplement.test view
@@ -0,0 +1,680 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mtext>F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#160;</mo>+      </mtd> +      <mtd>+        <mo>&#176;</mo>+      </mtd> +      <mtd>+        <mo>&#192;</mo>+      </mtd> +      <mtd>+        <mo>&#208;</mo>+      </mtd> +      <mtd>+        <mo>&#224;</mo>+      </mtd> +      <mtd>+        <mo>&#240;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#161;</mo>+      </mtd> +      <mtd>+        <mo>&#177;</mo>+      </mtd> +      <mtd>+        <mo>&#193;</mo>+      </mtd> +      <mtd>+        <mo>&#209;</mo>+      </mtd> +      <mtd>+        <mo>&#225;</mo>+      </mtd> +      <mtd>+        <mo>&#241;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#162;</mo>+      </mtd> +      <mtd>+        <mo>&#178;</mo>+      </mtd> +      <mtd>+        <mo>&#194;</mo>+      </mtd> +      <mtd>+        <mo>&#210;</mo>+      </mtd> +      <mtd>+        <mo>&#226;</mo>+      </mtd> +      <mtd>+        <mo>&#242;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#163;</mo>+      </mtd> +      <mtd>+        <mo>&#179;</mo>+      </mtd> +      <mtd>+        <mo>&#195;</mo>+      </mtd> +      <mtd>+        <mo>&#211;</mo>+      </mtd> +      <mtd>+        <mo>&#227;</mo>+      </mtd> +      <mtd>+        <mo>&#243;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#164;</mo>+      </mtd> +      <mtd>+        <mo>&#180;</mo>+      </mtd> +      <mtd>+        <mo>&#196;</mo>+      </mtd> +      <mtd>+        <mo>&#212;</mo>+      </mtd> +      <mtd>+        <mo>&#228;</mo>+      </mtd> +      <mtd>+        <mo>&#244;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#165;</mo>+      </mtd> +      <mtd>+        <mo>&#181;</mo>+      </mtd> +      <mtd>+        <mo>&#197;</mo>+      </mtd> +      <mtd>+        <mo>&#213;</mo>+      </mtd> +      <mtd>+        <mo>&#229;</mo>+      </mtd> +      <mtd>+        <mo>&#245;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#166;</mo>+      </mtd> +      <mtd>+        <mo>&#182;</mo>+      </mtd> +      <mtd>+        <mo>&#198;</mo>+      </mtd> +      <mtd>+        <mo>&#214;</mo>+      </mtd> +      <mtd>+        <mo>&#230;</mo>+      </mtd> +      <mtd>+        <mo>&#246;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#167;</mo>+      </mtd> +      <mtd>+        <mo>&#183;</mo>+      </mtd> +      <mtd>+        <mo>&#199;</mo>+      </mtd> +      <mtd>+        <mo>&#215;</mo>+      </mtd> +      <mtd>+        <mo>&#231;</mo>+      </mtd> +      <mtd>+        <mo>&#247;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#168;</mo>+      </mtd> +      <mtd>+        <mo>&#184;</mo>+      </mtd> +      <mtd>+        <mo>&#200;</mo>+      </mtd> +      <mtd>+        <mo>&#216;</mo>+      </mtd> +      <mtd>+        <mo>&#232;</mo>+      </mtd> +      <mtd>+        <mo>&#248;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#169;</mo>+      </mtd> +      <mtd>+        <mo>&#185;</mo>+      </mtd> +      <mtd>+        <mo>&#201;</mo>+      </mtd> +      <mtd>+        <mo>&#217;</mo>+      </mtd> +      <mtd>+        <mo>&#233;</mo>+      </mtd> +      <mtd>+        <mo>&#249;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#170;</mo>+      </mtd> +      <mtd>+        <mo>&#186;</mo>+      </mtd> +      <mtd>+        <mo>&#202;</mo>+      </mtd> +      <mtd>+        <mo>&#218;</mo>+      </mtd> +      <mtd>+        <mo>&#234;</mo>+      </mtd> +      <mtd>+        <mo>&#250;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#171;</mo>+      </mtd> +      <mtd>+        <mo>&#187;</mo>+      </mtd> +      <mtd>+        <mo>&#203;</mo>+      </mtd> +      <mtd>+        <mo>&#219;</mo>+      </mtd> +      <mtd>+        <mo>&#235;</mo>+      </mtd> +      <mtd>+        <mo>&#251;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#172;</mo>+      </mtd> +      <mtd>+        <mo>&#188;</mo>+      </mtd> +      <mtd>+        <mo>&#204;</mo>+      </mtd> +      <mtd>+        <mo>&#220;</mo>+      </mtd> +      <mtd>+        <mo>&#236;</mo>+      </mtd> +      <mtd>+        <mo>&#252;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#173;</mo>+      </mtd> +      <mtd>+        <mo>&#189;</mo>+      </mtd> +      <mtd>+        <mo>&#205;</mo>+      </mtd> +      <mtd>+        <mo>&#221;</mo>+      </mtd> +      <mtd>+        <mo>&#237;</mo>+      </mtd> +      <mtd>+        <mo>&#253;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#174;</mo>+      </mtd> +      <mtd>+        <mo>&#190;</mo>+      </mtd> +      <mtd>+        <mo>&#206;</mo>+      </mtd> +      <mtd>+        <mo>&#222;</mo>+      </mtd> +      <mtd>+        <mo>&#238;</mo>+      </mtd> +      <mtd>+        <mo>&#254;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#175;</mo>+      </mtd> +      <mtd>+        <mo>&#191;</mo>+      </mtd> +      <mtd>+        <mo>&#207;</mo>+      </mtd> +      <mtd>+        <mo>&#223;</mo>+      </mtd> +      <mtd>+        <mo>&#239;</mo>+      </mtd> +      <mtd>+        <mo>&#255;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "8" ]+      , [ EText TextNormal "9" ]+      , [ EText TextNormal "A" ]+      , [ EText TextNormal "B" ]+      , [ EText TextNormal "C" ]+      , [ EText TextNormal "D" ]+      , [ EText TextNormal "E" ]+      , [ EText TextNormal "F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\160" ]+      , [ ESymbol Ord "\176" ]+      , [ ESymbol Ord "\192" ]+      , [ ESymbol Ord "\208" ]+      , [ ESymbol Ord "\224" ]+      , [ ESymbol Alpha "\240" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\161" ]+      , [ ESymbol Bin "\177" ]+      , [ ESymbol Ord "\193" ]+      , [ ESymbol Ord "\209" ]+      , [ ESymbol Ord "\225" ]+      , [ ESymbol Ord "\241" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\162" ]+      , [ ESymbol Accent "\178" ]+      , [ ESymbol Ord "\194" ]+      , [ ESymbol Ord "\210" ]+      , [ ESymbol Ord "\226" ]+      , [ ESymbol Ord "\242" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\163" ]+      , [ ESymbol Accent "\179" ]+      , [ ESymbol Ord "\195" ]+      , [ ESymbol Ord "\211" ]+      , [ ESymbol Ord "\227" ]+      , [ ESymbol Ord "\243" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\164" ]+      , [ ESymbol Accent "\180" ]+      , [ ESymbol Ord "\196" ]+      , [ ESymbol Ord "\212" ]+      , [ ESymbol Ord "\228" ]+      , [ ESymbol Ord "\244" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\165" ]+      , [ ESymbol Alpha "\181" ]+      , [ ESymbol Ord "\197" ]+      , [ ESymbol Ord "\213" ]+      , [ ESymbol Ord "\229" ]+      , [ ESymbol Ord "\245" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\166" ]+      , [ ESymbol Ord "\182" ]+      , [ ESymbol Ord "\198" ]+      , [ ESymbol Ord "\214" ]+      , [ ESymbol Ord "\230" ]+      , [ ESymbol Ord "\246" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\167" ]+      , [ ESymbol Bin "\183" ]+      , [ ESymbol Ord "\199" ]+      , [ ESymbol Bin "\215" ]+      , [ ESymbol Ord "\231" ]+      , [ ESymbol Bin "\247" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Accent "\168" ]+      , [ ESymbol Accent "\184" ]+      , [ ESymbol Ord "\200" ]+      , [ ESymbol Ord "\216" ]+      , [ ESymbol Ord "\232" ]+      , [ ESymbol Ord "\248" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\169" ]+      , [ ESymbol Accent "\185" ]+      , [ ESymbol Ord "\201" ]+      , [ ESymbol Ord "\217" ]+      , [ ESymbol Ord "\233" ]+      , [ ESymbol Ord "\249" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Accent "\170" ]+      , [ ESymbol Accent "\186" ]+      , [ ESymbol Ord "\202" ]+      , [ ESymbol Ord "\218" ]+      , [ ESymbol Ord "\234" ]+      , [ ESymbol Ord "\250" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\171" ]+      , [ ESymbol Ord "\187" ]+      , [ ESymbol Ord "\203" ]+      , [ ESymbol Ord "\219" ]+      , [ ESymbol Ord "\235" ]+      , [ ESymbol Ord "\251" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\172" ]+      , [ ESymbol Ord "\188" ]+      , [ ESymbol Ord "\204" ]+      , [ ESymbol Ord "\220" ]+      , [ ESymbol Ord "\236" ]+      , [ ESymbol Ord "\252" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\173" ]+      , [ ESymbol Ord "\189" ]+      , [ ESymbol Ord "\205" ]+      , [ ESymbol Ord "\221" ]+      , [ ESymbol Ord "\237" ]+      , [ ESymbol Ord "\253" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\174" ]+      , [ ESymbol Ord "\190" ]+      , [ ESymbol Ord "\206" ]+      , [ ESymbol Ord "\222" ]+      , [ ESymbol Ord "\238" ]+      , [ ESymbol Ord "\254" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Accent "\175" ]+      , [ ESymbol Ord "\191" ]+      , [ ESymbol Ord "\207" ]+      , [ ESymbol Ord "\223" ]+      , [ ESymbol Ord "\239" ]+      , [ ESymbol Ord "\255" ]+      ]+    ]+]
+ test/reader/mml/00100_Latin_Extended-A.test view
@@ -0,0 +1,680 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>10</mtext>+      </mtd> +      <mtd>+        <mtext>11</mtext>+      </mtd> +      <mtd>+        <mtext>12</mtext>+      </mtd> +      <mtd>+        <mtext>13</mtext>+      </mtd> +      <mtd>+        <mtext>14</mtext>+      </mtd> +      <mtd>+        <mtext>15</mtext>+      </mtd> +      <mtd>+        <mtext>16</mtext>+      </mtd> +      <mtd>+        <mtext>17</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#256;</mo>+      </mtd> +      <mtd>+        <mo>&#272;</mo>+      </mtd> +      <mtd>+        <mo>&#288;</mo>+      </mtd> +      <mtd>+        <mo>&#304;</mo>+      </mtd> +      <mtd>+        <mo>&#320;</mo>+      </mtd> +      <mtd>+        <mo>&#336;</mo>+      </mtd> +      <mtd>+        <mo>&#352;</mo>+      </mtd> +      <mtd>+        <mo>&#368;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#257;</mo>+      </mtd> +      <mtd>+        <mo>&#273;</mo>+      </mtd> +      <mtd>+        <mo>&#289;</mo>+      </mtd> +      <mtd>+        <mo>&#305;</mo>+      </mtd> +      <mtd>+        <mo>&#321;</mo>+      </mtd> +      <mtd>+        <mo>&#337;</mo>+      </mtd> +      <mtd>+        <mo>&#353;</mo>+      </mtd> +      <mtd>+        <mo>&#369;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#258;</mo>+      </mtd> +      <mtd>+        <mo>&#274;</mo>+      </mtd> +      <mtd>+        <mo>&#290;</mo>+      </mtd> +      <mtd>+        <mo>&#306;</mo>+      </mtd> +      <mtd>+        <mo>&#322;</mo>+      </mtd> +      <mtd>+        <mo>&#338;</mo>+      </mtd> +      <mtd>+        <mo>&#354;</mo>+      </mtd> +      <mtd>+        <mo>&#370;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#259;</mo>+      </mtd> +      <mtd>+        <mo>&#275;</mo>+      </mtd> +      <mtd>+        <mo>&#291;</mo>+      </mtd> +      <mtd>+        <mo>&#307;</mo>+      </mtd> +      <mtd>+        <mo>&#323;</mo>+      </mtd> +      <mtd>+        <mo>&#339;</mo>+      </mtd> +      <mtd>+        <mo>&#355;</mo>+      </mtd> +      <mtd>+        <mo>&#371;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#260;</mo>+      </mtd> +      <mtd>+        <mo>&#276;</mo>+      </mtd> +      <mtd>+        <mo>&#292;</mo>+      </mtd> +      <mtd>+        <mo>&#308;</mo>+      </mtd> +      <mtd>+        <mo>&#324;</mo>+      </mtd> +      <mtd>+        <mo>&#340;</mo>+      </mtd> +      <mtd>+        <mo>&#356;</mo>+      </mtd> +      <mtd>+        <mo>&#372;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#261;</mo>+      </mtd> +      <mtd>+        <mo>&#277;</mo>+      </mtd> +      <mtd>+        <mo>&#293;</mo>+      </mtd> +      <mtd>+        <mo>&#309;</mo>+      </mtd> +      <mtd>+        <mo>&#325;</mo>+      </mtd> +      <mtd>+        <mo>&#341;</mo>+      </mtd> +      <mtd>+        <mo>&#357;</mo>+      </mtd> +      <mtd>+        <mo>&#373;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#262;</mo>+      </mtd> +      <mtd>+        <mo>&#278;</mo>+      </mtd> +      <mtd>+        <mo>&#294;</mo>+      </mtd> +      <mtd>+        <mo>&#310;</mo>+      </mtd> +      <mtd>+        <mo>&#326;</mo>+      </mtd> +      <mtd>+        <mo>&#342;</mo>+      </mtd> +      <mtd>+        <mo>&#358;</mo>+      </mtd> +      <mtd>+        <mo>&#374;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#263;</mo>+      </mtd> +      <mtd>+        <mo>&#279;</mo>+      </mtd> +      <mtd>+        <mo>&#295;</mo>+      </mtd> +      <mtd>+        <mo>&#311;</mo>+      </mtd> +      <mtd>+        <mo>&#327;</mo>+      </mtd> +      <mtd>+        <mo>&#343;</mo>+      </mtd> +      <mtd>+        <mo>&#359;</mo>+      </mtd> +      <mtd>+        <mo>&#375;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#264;</mo>+      </mtd> +      <mtd>+        <mo>&#280;</mo>+      </mtd> +      <mtd>+        <mo>&#296;</mo>+      </mtd> +      <mtd>+        <mo>&#312;</mo>+      </mtd> +      <mtd>+        <mo>&#328;</mo>+      </mtd> +      <mtd>+        <mo>&#344;</mo>+      </mtd> +      <mtd>+        <mo>&#360;</mo>+      </mtd> +      <mtd>+        <mo>&#376;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#265;</mo>+      </mtd> +      <mtd>+        <mo>&#281;</mo>+      </mtd> +      <mtd>+        <mo>&#297;</mo>+      </mtd> +      <mtd>+        <mo>&#313;</mo>+      </mtd> +      <mtd>+        <mo>&#329;</mo>+      </mtd> +      <mtd>+        <mo>&#345;</mo>+      </mtd> +      <mtd>+        <mo>&#361;</mo>+      </mtd> +      <mtd>+        <mo>&#377;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#266;</mo>+      </mtd> +      <mtd>+        <mo>&#282;</mo>+      </mtd> +      <mtd>+        <mo>&#298;</mo>+      </mtd> +      <mtd>+        <mo>&#314;</mo>+      </mtd> +      <mtd>+        <mo>&#330;</mo>+      </mtd> +      <mtd>+        <mo>&#346;</mo>+      </mtd> +      <mtd>+        <mo>&#362;</mo>+      </mtd> +      <mtd>+        <mo>&#378;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#267;</mo>+      </mtd> +      <mtd>+        <mo>&#283;</mo>+      </mtd> +      <mtd>+        <mo>&#299;</mo>+      </mtd> +      <mtd>+        <mo>&#315;</mo>+      </mtd> +      <mtd>+        <mo>&#331;</mo>+      </mtd> +      <mtd>+        <mo>&#347;</mo>+      </mtd> +      <mtd>+        <mo>&#363;</mo>+      </mtd> +      <mtd>+        <mo>&#379;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#268;</mo>+      </mtd> +      <mtd>+        <mo>&#284;</mo>+      </mtd> +      <mtd>+        <mo>&#300;</mo>+      </mtd> +      <mtd>+        <mo>&#316;</mo>+      </mtd> +      <mtd>+        <mo>&#332;</mo>+      </mtd> +      <mtd>+        <mo>&#348;</mo>+      </mtd> +      <mtd>+        <mo>&#364;</mo>+      </mtd> +      <mtd>+        <mo>&#380;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#269;</mo>+      </mtd> +      <mtd>+        <mo>&#285;</mo>+      </mtd> +      <mtd>+        <mo>&#301;</mo>+      </mtd> +      <mtd>+        <mo>&#317;</mo>+      </mtd> +      <mtd>+        <mo>&#333;</mo>+      </mtd> +      <mtd>+        <mo>&#349;</mo>+      </mtd> +      <mtd>+        <mo>&#365;</mo>+      </mtd> +      <mtd>+        <mo>&#381;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#270;</mo>+      </mtd> +      <mtd>+        <mo>&#286;</mo>+      </mtd> +      <mtd>+        <mo>&#302;</mo>+      </mtd> +      <mtd>+        <mo>&#318;</mo>+      </mtd> +      <mtd>+        <mo>&#334;</mo>+      </mtd> +      <mtd>+        <mo>&#350;</mo>+      </mtd> +      <mtd>+        <mo>&#366;</mo>+      </mtd> +      <mtd>+        <mo>&#382;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#271;</mo>+      </mtd> +      <mtd>+        <mo>&#287;</mo>+      </mtd> +      <mtd>+        <mo>&#303;</mo>+      </mtd> +      <mtd>+        <mo>&#319;</mo>+      </mtd> +      <mtd>+        <mo>&#335;</mo>+      </mtd> +      <mtd>+        <mo>&#351;</mo>+      </mtd> +      <mtd>+        <mo>&#367;</mo>+      </mtd> +      <mtd>+        <mo>&#383;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "10" ]+      , [ EText TextNormal "11" ]+      , [ EText TextNormal "12" ]+      , [ EText TextNormal "13" ]+      , [ EText TextNormal "14" ]+      , [ EText TextNormal "15" ]+      , [ EText TextNormal "16" ]+      , [ EText TextNormal "17" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\256" ]+      , [ ESymbol Ord "\272" ]+      , [ ESymbol Ord "\288" ]+      , [ ESymbol Ord "\304" ]+      , [ ESymbol Ord "\320" ]+      , [ ESymbol Ord "\336" ]+      , [ ESymbol Ord "\352" ]+      , [ ESymbol Ord "\368" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\257" ]+      , [ ESymbol Ord "\273" ]+      , [ ESymbol Ord "\289" ]+      , [ ESymbol Alpha "\305" ]+      , [ ESymbol Ord "\321" ]+      , [ ESymbol Ord "\337" ]+      , [ ESymbol Ord "\353" ]+      , [ ESymbol Ord "\369" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\258" ]+      , [ ESymbol Ord "\274" ]+      , [ ESymbol Ord "\290" ]+      , [ ESymbol Ord "\306" ]+      , [ ESymbol Ord "\322" ]+      , [ ESymbol Ord "\338" ]+      , [ ESymbol Ord "\354" ]+      , [ ESymbol Ord "\370" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\259" ]+      , [ ESymbol Ord "\275" ]+      , [ ESymbol Ord "\291" ]+      , [ ESymbol Ord "\307" ]+      , [ ESymbol Ord "\323" ]+      , [ ESymbol Ord "\339" ]+      , [ ESymbol Ord "\355" ]+      , [ ESymbol Ord "\371" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\260" ]+      , [ ESymbol Ord "\276" ]+      , [ ESymbol Ord "\292" ]+      , [ ESymbol Ord "\308" ]+      , [ ESymbol Ord "\324" ]+      , [ ESymbol Ord "\340" ]+      , [ ESymbol Ord "\356" ]+      , [ ESymbol Ord "\372" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\261" ]+      , [ ESymbol Ord "\277" ]+      , [ ESymbol Ord "\293" ]+      , [ ESymbol Ord "\309" ]+      , [ ESymbol Ord "\325" ]+      , [ ESymbol Ord "\341" ]+      , [ ESymbol Ord "\357" ]+      , [ ESymbol Ord "\373" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\262" ]+      , [ ESymbol Ord "\278" ]+      , [ ESymbol Ord "\294" ]+      , [ ESymbol Ord "\310" ]+      , [ ESymbol Ord "\326" ]+      , [ ESymbol Ord "\342" ]+      , [ ESymbol Ord "\358" ]+      , [ ESymbol Ord "\374" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\263" ]+      , [ ESymbol Ord "\279" ]+      , [ ESymbol Ord "\295" ]+      , [ ESymbol Ord "\311" ]+      , [ ESymbol Ord "\327" ]+      , [ ESymbol Ord "\343" ]+      , [ ESymbol Ord "\359" ]+      , [ ESymbol Ord "\375" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\264" ]+      , [ ESymbol Ord "\280" ]+      , [ ESymbol Ord "\296" ]+      , [ ESymbol Ord "\312" ]+      , [ ESymbol Ord "\328" ]+      , [ ESymbol Ord "\344" ]+      , [ ESymbol Ord "\360" ]+      , [ ESymbol Ord "\376" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\265" ]+      , [ ESymbol Ord "\281" ]+      , [ ESymbol Ord "\297" ]+      , [ ESymbol Ord "\313" ]+      , [ ESymbol Ord "\329" ]+      , [ ESymbol Ord "\345" ]+      , [ ESymbol Ord "\361" ]+      , [ ESymbol Ord "\377" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\266" ]+      , [ ESymbol Ord "\282" ]+      , [ ESymbol Ord "\298" ]+      , [ ESymbol Ord "\314" ]+      , [ ESymbol Ord "\330" ]+      , [ ESymbol Ord "\346" ]+      , [ ESymbol Ord "\362" ]+      , [ ESymbol Ord "\378" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\267" ]+      , [ ESymbol Ord "\283" ]+      , [ ESymbol Ord "\299" ]+      , [ ESymbol Ord "\315" ]+      , [ ESymbol Ord "\331" ]+      , [ ESymbol Ord "\347" ]+      , [ ESymbol Ord "\363" ]+      , [ ESymbol Ord "\379" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\268" ]+      , [ ESymbol Ord "\284" ]+      , [ ESymbol Ord "\300" ]+      , [ ESymbol Ord "\316" ]+      , [ ESymbol Ord "\332" ]+      , [ ESymbol Ord "\348" ]+      , [ ESymbol Ord "\364" ]+      , [ ESymbol Ord "\380" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\269" ]+      , [ ESymbol Ord "\285" ]+      , [ ESymbol Ord "\301" ]+      , [ ESymbol Ord "\317" ]+      , [ ESymbol Ord "\333" ]+      , [ ESymbol Ord "\349" ]+      , [ ESymbol Ord "\365" ]+      , [ ESymbol Ord "\381" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\270" ]+      , [ ESymbol Ord "\286" ]+      , [ ESymbol Ord "\302" ]+      , [ ESymbol Ord "\318" ]+      , [ ESymbol Ord "\334" ]+      , [ ESymbol Ord "\350" ]+      , [ ESymbol Ord "\366" ]+      , [ ESymbol Ord "\382" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\271" ]+      , [ ESymbol Ord "\287" ]+      , [ ESymbol Ord "\303" ]+      , [ ESymbol Ord "\319" ]+      , [ ESymbol Ord "\335" ]+      , [ ESymbol Ord "\351" ]+      , [ ESymbol Ord "\367" ]+      , [ ESymbol Ord "\383" ]+      ]+    ]+]
+ test/reader/mml/00180_Latin_Extended-B.test view
@@ -0,0 +1,1025 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>18</mtext>+      </mtd> +      <mtd>+        <mtext>19</mtext>+      </mtd> +      <mtd>+        <mtext>1A</mtext>+      </mtd> +      <mtd>+        <mtext>1B</mtext>+      </mtd> +      <mtd>+        <mtext>1C</mtext>+      </mtd> +      <mtd>+        <mtext>1D</mtext>+      </mtd> +      <mtd>+        <mtext>1E</mtext>+      </mtd> +      <mtd>+        <mtext>1F</mtext>+      </mtd> +      <mtd>+        <mtext>20</mtext>+      </mtd> +      <mtd>+        <mtext>21</mtext>+      </mtd> +      <mtd>+        <mtext>22</mtext>+      </mtd> +      <mtd>+        <mtext>23</mtext>+      </mtd> +      <mtd>+        <mtext>24</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#384;</mo>+      </mtd> +      <mtd>+        <mo>&#400;</mo>+      </mtd> +      <mtd>+        <mo>&#416;</mo>+      </mtd> +      <mtd>+        <mo>&#432;</mo>+      </mtd> +      <mtd>+        <mo>&#448;</mo>+      </mtd> +      <mtd>+        <mo>&#464;</mo>+      </mtd> +      <mtd>+        <mo>&#480;</mo>+      </mtd> +      <mtd>+        <mo>&#496;</mo>+      </mtd> +      <mtd>+        <mo>&#512;</mo>+      </mtd> +      <mtd>+        <mo>&#528;</mo>+      </mtd> +      <mtd>+        <mo>&#544;</mo>+      </mtd> +      <mtd>+        <mo>&#560;</mo>+      </mtd> +      <mtd>+        <mo>&#576;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#385;</mo>+      </mtd> +      <mtd>+        <mo>&#401;</mo>+      </mtd> +      <mtd>+        <mo>&#417;</mo>+      </mtd> +      <mtd>+        <mo>&#433;</mo>+      </mtd> +      <mtd>+        <mo>&#449;</mo>+      </mtd> +      <mtd>+        <mo>&#465;</mo>+      </mtd> +      <mtd>+        <mo>&#481;</mo>+      </mtd> +      <mtd>+        <mo>&#497;</mo>+      </mtd> +      <mtd>+        <mo>&#513;</mo>+      </mtd> +      <mtd>+        <mo>&#529;</mo>+      </mtd> +      <mtd>+        <mo>&#545;</mo>+      </mtd> +      <mtd>+        <mo>&#561;</mo>+      </mtd> +      <mtd>+        <mo>&#577;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#386;</mo>+      </mtd> +      <mtd>+        <mo>&#402;</mo>+      </mtd> +      <mtd>+        <mo>&#418;</mo>+      </mtd> +      <mtd>+        <mo>&#434;</mo>+      </mtd> +      <mtd>+        <mo>&#450;</mo>+      </mtd> +      <mtd>+        <mo>&#466;</mo>+      </mtd> +      <mtd>+        <mo>&#482;</mo>+      </mtd> +      <mtd>+        <mo>&#498;</mo>+      </mtd> +      <mtd>+        <mo>&#514;</mo>+      </mtd> +      <mtd>+        <mo>&#530;</mo>+      </mtd> +      <mtd>+        <mo>&#546;</mo>+      </mtd> +      <mtd>+        <mo>&#562;</mo>+      </mtd> +      <mtd>+        <mo>&#578;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#387;</mo>+      </mtd> +      <mtd>+        <mo>&#403;</mo>+      </mtd> +      <mtd>+        <mo>&#419;</mo>+      </mtd> +      <mtd>+        <mo>&#435;</mo>+      </mtd> +      <mtd>+        <mo>&#451;</mo>+      </mtd> +      <mtd>+        <mo>&#467;</mo>+      </mtd> +      <mtd>+        <mo>&#483;</mo>+      </mtd> +      <mtd>+        <mo>&#499;</mo>+      </mtd> +      <mtd>+        <mo>&#515;</mo>+      </mtd> +      <mtd>+        <mo>&#531;</mo>+      </mtd> +      <mtd>+        <mo>&#547;</mo>+      </mtd> +      <mtd>+        <mo>&#563;</mo>+      </mtd> +      <mtd>+        <mo>&#579;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#388;</mo>+      </mtd> +      <mtd>+        <mo>&#404;</mo>+      </mtd> +      <mtd>+        <mo>&#420;</mo>+      </mtd> +      <mtd>+        <mo>&#436;</mo>+      </mtd> +      <mtd>+        <mo>&#452;</mo>+      </mtd> +      <mtd>+        <mo>&#468;</mo>+      </mtd> +      <mtd>+        <mo>&#484;</mo>+      </mtd> +      <mtd>+        <mo>&#500;</mo>+      </mtd> +      <mtd>+        <mo>&#516;</mo>+      </mtd> +      <mtd>+        <mo>&#532;</mo>+      </mtd> +      <mtd>+        <mo>&#548;</mo>+      </mtd> +      <mtd>+        <mo>&#564;</mo>+      </mtd> +      <mtd>+        <mo>&#580;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#389;</mo>+      </mtd> +      <mtd>+        <mo>&#405;</mo>+      </mtd> +      <mtd>+        <mo>&#421;</mo>+      </mtd> +      <mtd>+        <mo>&#437;</mo>+      </mtd> +      <mtd>+        <mo>&#453;</mo>+      </mtd> +      <mtd>+        <mo>&#469;</mo>+      </mtd> +      <mtd>+        <mo>&#485;</mo>+      </mtd> +      <mtd>+        <mo>&#501;</mo>+      </mtd> +      <mtd>+        <mo>&#517;</mo>+      </mtd> +      <mtd>+        <mo>&#533;</mo>+      </mtd> +      <mtd>+        <mo>&#549;</mo>+      </mtd> +      <mtd>+        <mo>&#565;</mo>+      </mtd> +      <mtd>+        <mo>&#581;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#390;</mo>+      </mtd> +      <mtd>+        <mo>&#406;</mo>+      </mtd> +      <mtd>+        <mo>&#422;</mo>+      </mtd> +      <mtd>+        <mo>&#438;</mo>+      </mtd> +      <mtd>+        <mo>&#454;</mo>+      </mtd> +      <mtd>+        <mo>&#470;</mo>+      </mtd> +      <mtd>+        <mo>&#486;</mo>+      </mtd> +      <mtd>+        <mo>&#502;</mo>+      </mtd> +      <mtd>+        <mo>&#518;</mo>+      </mtd> +      <mtd>+        <mo>&#534;</mo>+      </mtd> +      <mtd>+        <mo>&#550;</mo>+      </mtd> +      <mtd>+        <mo>&#566;</mo>+      </mtd> +      <mtd>+        <mo>&#582;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#391;</mo>+      </mtd> +      <mtd>+        <mo>&#407;</mo>+      </mtd> +      <mtd>+        <mo>&#423;</mo>+      </mtd> +      <mtd>+        <mo>&#439;</mo>+      </mtd> +      <mtd>+        <mo>&#455;</mo>+      </mtd> +      <mtd>+        <mo>&#471;</mo>+      </mtd> +      <mtd>+        <mo>&#487;</mo>+      </mtd> +      <mtd>+        <mo>&#503;</mo>+      </mtd> +      <mtd>+        <mo>&#519;</mo>+      </mtd> +      <mtd>+        <mo>&#535;</mo>+      </mtd> +      <mtd>+        <mo>&#551;</mo>+      </mtd> +      <mtd>+        <mo>&#567;</mo>+      </mtd> +      <mtd>+        <mo>&#583;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#392;</mo>+      </mtd> +      <mtd>+        <mo>&#408;</mo>+      </mtd> +      <mtd>+        <mo>&#424;</mo>+      </mtd> +      <mtd>+        <mo>&#440;</mo>+      </mtd> +      <mtd>+        <mo>&#456;</mo>+      </mtd> +      <mtd>+        <mo>&#472;</mo>+      </mtd> +      <mtd>+        <mo>&#488;</mo>+      </mtd> +      <mtd>+        <mo>&#504;</mo>+      </mtd> +      <mtd>+        <mo>&#520;</mo>+      </mtd> +      <mtd>+        <mo>&#536;</mo>+      </mtd> +      <mtd>+        <mo>&#552;</mo>+      </mtd> +      <mtd>+        <mo>&#568;</mo>+      </mtd> +      <mtd>+        <mo>&#584;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#393;</mo>+      </mtd> +      <mtd>+        <mo>&#409;</mo>+      </mtd> +      <mtd>+        <mo>&#425;</mo>+      </mtd> +      <mtd>+        <mo>&#441;</mo>+      </mtd> +      <mtd>+        <mo>&#457;</mo>+      </mtd> +      <mtd>+        <mo>&#473;</mo>+      </mtd> +      <mtd>+        <mo>&#489;</mo>+      </mtd> +      <mtd>+        <mo>&#505;</mo>+      </mtd> +      <mtd>+        <mo>&#521;</mo>+      </mtd> +      <mtd>+        <mo>&#537;</mo>+      </mtd> +      <mtd>+        <mo>&#553;</mo>+      </mtd> +      <mtd>+        <mo>&#569;</mo>+      </mtd> +      <mtd>+        <mo>&#585;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#394;</mo>+      </mtd> +      <mtd>+        <mo>&#410;</mo>+      </mtd> +      <mtd>+        <mo>&#426;</mo>+      </mtd> +      <mtd>+        <mo>&#442;</mo>+      </mtd> +      <mtd>+        <mo>&#458;</mo>+      </mtd> +      <mtd>+        <mo>&#474;</mo>+      </mtd> +      <mtd>+        <mo>&#490;</mo>+      </mtd> +      <mtd>+        <mo>&#506;</mo>+      </mtd> +      <mtd>+        <mo>&#522;</mo>+      </mtd> +      <mtd>+        <mo>&#538;</mo>+      </mtd> +      <mtd>+        <mo>&#554;</mo>+      </mtd> +      <mtd>+        <mo>&#570;</mo>+      </mtd> +      <mtd>+        <mo>&#586;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#395;</mo>+      </mtd> +      <mtd>+        <mo>&#411;</mo>+      </mtd> +      <mtd>+        <mo>&#427;</mo>+      </mtd> +      <mtd>+        <mo>&#443;</mo>+      </mtd> +      <mtd>+        <mo>&#459;</mo>+      </mtd> +      <mtd>+        <mo>&#475;</mo>+      </mtd> +      <mtd>+        <mo>&#491;</mo>+      </mtd> +      <mtd>+        <mo>&#507;</mo>+      </mtd> +      <mtd>+        <mo>&#523;</mo>+      </mtd> +      <mtd>+        <mo>&#539;</mo>+      </mtd> +      <mtd>+        <mo>&#555;</mo>+      </mtd> +      <mtd>+        <mo>&#571;</mo>+      </mtd> +      <mtd>+        <mo>&#587;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#396;</mo>+      </mtd> +      <mtd>+        <mo>&#412;</mo>+      </mtd> +      <mtd>+        <mo>&#428;</mo>+      </mtd> +      <mtd>+        <mo>&#444;</mo>+      </mtd> +      <mtd>+        <mo>&#460;</mo>+      </mtd> +      <mtd>+        <mo>&#476;</mo>+      </mtd> +      <mtd>+        <mo>&#492;</mo>+      </mtd> +      <mtd>+        <mo>&#508;</mo>+      </mtd> +      <mtd>+        <mo>&#524;</mo>+      </mtd> +      <mtd>+        <mo>&#540;</mo>+      </mtd> +      <mtd>+        <mo>&#556;</mo>+      </mtd> +      <mtd>+        <mo>&#572;</mo>+      </mtd> +      <mtd>+        <mo>&#588;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#397;</mo>+      </mtd> +      <mtd>+        <mo>&#413;</mo>+      </mtd> +      <mtd>+        <mo>&#429;</mo>+      </mtd> +      <mtd>+        <mo>&#445;</mo>+      </mtd> +      <mtd>+        <mo>&#461;</mo>+      </mtd> +      <mtd>+        <mo>&#477;</mo>+      </mtd> +      <mtd>+        <mo>&#493;</mo>+      </mtd> +      <mtd>+        <mo>&#509;</mo>+      </mtd> +      <mtd>+        <mo>&#525;</mo>+      </mtd> +      <mtd>+        <mo>&#541;</mo>+      </mtd> +      <mtd>+        <mo>&#557;</mo>+      </mtd> +      <mtd>+        <mo>&#573;</mo>+      </mtd> +      <mtd>+        <mo>&#589;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#398;</mo>+      </mtd> +      <mtd>+        <mo>&#414;</mo>+      </mtd> +      <mtd>+        <mo>&#430;</mo>+      </mtd> +      <mtd>+        <mo>&#446;</mo>+      </mtd> +      <mtd>+        <mo>&#462;</mo>+      </mtd> +      <mtd>+        <mo>&#478;</mo>+      </mtd> +      <mtd>+        <mo>&#494;</mo>+      </mtd> +      <mtd>+        <mo>&#510;</mo>+      </mtd> +      <mtd>+        <mo>&#526;</mo>+      </mtd> +      <mtd>+        <mo>&#542;</mo>+      </mtd> +      <mtd>+        <mo>&#558;</mo>+      </mtd> +      <mtd>+        <mo>&#574;</mo>+      </mtd> +      <mtd>+        <mo>&#590;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#399;</mo>+      </mtd> +      <mtd>+        <mo>&#415;</mo>+      </mtd> +      <mtd>+        <mo>&#431;</mo>+      </mtd> +      <mtd>+        <mo>&#447;</mo>+      </mtd> +      <mtd>+        <mo>&#463;</mo>+      </mtd> +      <mtd>+        <mo>&#479;</mo>+      </mtd> +      <mtd>+        <mo>&#495;</mo>+      </mtd> +      <mtd>+        <mo>&#511;</mo>+      </mtd> +      <mtd>+        <mo>&#527;</mo>+      </mtd> +      <mtd>+        <mo>&#543;</mo>+      </mtd> +      <mtd>+        <mo>&#559;</mo>+      </mtd> +      <mtd>+        <mo>&#575;</mo>+      </mtd> +      <mtd>+        <mo>&#591;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "18" ]+      , [ EText TextNormal "19" ]+      , [ EText TextNormal "1A" ]+      , [ EText TextNormal "1B" ]+      , [ EText TextNormal "1C" ]+      , [ EText TextNormal "1D" ]+      , [ EText TextNormal "1E" ]+      , [ EText TextNormal "1F" ]+      , [ EText TextNormal "20" ]+      , [ EText TextNormal "21" ]+      , [ EText TextNormal "22" ]+      , [ EText TextNormal "23" ]+      , [ EText TextNormal "24" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\384" ]+      , [ ESymbol Ord "\400" ]+      , [ ESymbol Ord "\416" ]+      , [ ESymbol Ord "\432" ]+      , [ ESymbol Ord "\448" ]+      , [ ESymbol Ord "\464" ]+      , [ ESymbol Ord "\480" ]+      , [ ESymbol Ord "\496" ]+      , [ ESymbol Ord "\512" ]+      , [ ESymbol Ord "\528" ]+      , [ ESymbol Ord "\544" ]+      , [ ESymbol Ord "\560" ]+      , [ ESymbol Ord "\576" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\385" ]+      , [ ESymbol Ord "\401" ]+      , [ ESymbol Ord "\417" ]+      , [ ESymbol Ord "\433" ]+      , [ ESymbol Ord "\449" ]+      , [ ESymbol Ord "\465" ]+      , [ ESymbol Ord "\481" ]+      , [ ESymbol Ord "\497" ]+      , [ ESymbol Ord "\513" ]+      , [ ESymbol Ord "\529" ]+      , [ ESymbol Ord "\545" ]+      , [ ESymbol Ord "\561" ]+      , [ ESymbol Ord "\577" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\386" ]+      , [ ESymbol Ord "\402" ]+      , [ ESymbol Ord "\418" ]+      , [ ESymbol Ord "\434" ]+      , [ ESymbol Ord "\450" ]+      , [ ESymbol Ord "\466" ]+      , [ ESymbol Ord "\482" ]+      , [ ESymbol Ord "\498" ]+      , [ ESymbol Ord "\514" ]+      , [ ESymbol Ord "\530" ]+      , [ ESymbol Ord "\546" ]+      , [ ESymbol Ord "\562" ]+      , [ ESymbol Ord "\578" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\387" ]+      , [ ESymbol Ord "\403" ]+      , [ ESymbol Ord "\419" ]+      , [ ESymbol Ord "\435" ]+      , [ ESymbol Ord "\451" ]+      , [ ESymbol Ord "\467" ]+      , [ ESymbol Ord "\483" ]+      , [ ESymbol Ord "\499" ]+      , [ ESymbol Ord "\515" ]+      , [ ESymbol Ord "\531" ]+      , [ ESymbol Ord "\547" ]+      , [ ESymbol Ord "\563" ]+      , [ ESymbol Ord "\579" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\388" ]+      , [ ESymbol Ord "\404" ]+      , [ ESymbol Ord "\420" ]+      , [ ESymbol Ord "\436" ]+      , [ ESymbol Ord "\452" ]+      , [ ESymbol Ord "\468" ]+      , [ ESymbol Ord "\484" ]+      , [ ESymbol Ord "\500" ]+      , [ ESymbol Ord "\516" ]+      , [ ESymbol Ord "\532" ]+      , [ ESymbol Ord "\548" ]+      , [ ESymbol Ord "\564" ]+      , [ ESymbol Ord "\580" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\389" ]+      , [ ESymbol Ord "\405" ]+      , [ ESymbol Ord "\421" ]+      , [ ESymbol Ord "\437" ]+      , [ ESymbol Ord "\453" ]+      , [ ESymbol Ord "\469" ]+      , [ ESymbol Ord "\485" ]+      , [ ESymbol Ord "\501" ]+      , [ ESymbol Ord "\517" ]+      , [ ESymbol Ord "\533" ]+      , [ ESymbol Ord "\549" ]+      , [ ESymbol Ord "\565" ]+      , [ ESymbol Ord "\581" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\390" ]+      , [ ESymbol Ord "\406" ]+      , [ ESymbol Ord "\422" ]+      , [ ESymbol Ord "\438" ]+      , [ ESymbol Ord "\454" ]+      , [ ESymbol Ord "\470" ]+      , [ ESymbol Ord "\486" ]+      , [ ESymbol Ord "\502" ]+      , [ ESymbol Ord "\518" ]+      , [ ESymbol Ord "\534" ]+      , [ ESymbol Ord "\550" ]+      , [ ESymbol Ord "\566" ]+      , [ ESymbol Ord "\582" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\391" ]+      , [ ESymbol Ord "\407" ]+      , [ ESymbol Ord "\423" ]+      , [ ESymbol Ord "\439" ]+      , [ ESymbol Ord "\455" ]+      , [ ESymbol Ord "\471" ]+      , [ ESymbol Ord "\487" ]+      , [ ESymbol Ord "\503" ]+      , [ ESymbol Ord "\519" ]+      , [ ESymbol Ord "\535" ]+      , [ ESymbol Ord "\551" ]+      , [ ESymbol Alpha "\567" ]+      , [ ESymbol Ord "\583" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\392" ]+      , [ ESymbol Ord "\408" ]+      , [ ESymbol Ord "\424" ]+      , [ ESymbol Ord "\440" ]+      , [ ESymbol Ord "\456" ]+      , [ ESymbol Ord "\472" ]+      , [ ESymbol Ord "\488" ]+      , [ ESymbol Ord "\504" ]+      , [ ESymbol Ord "\520" ]+      , [ ESymbol Ord "\536" ]+      , [ ESymbol Ord "\552" ]+      , [ ESymbol Ord "\568" ]+      , [ ESymbol Ord "\584" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\393" ]+      , [ ESymbol Ord "\409" ]+      , [ ESymbol Ord "\425" ]+      , [ ESymbol Ord "\441" ]+      , [ ESymbol Ord "\457" ]+      , [ ESymbol Ord "\473" ]+      , [ ESymbol Ord "\489" ]+      , [ ESymbol Ord "\505" ]+      , [ ESymbol Ord "\521" ]+      , [ ESymbol Ord "\537" ]+      , [ ESymbol Ord "\553" ]+      , [ ESymbol Ord "\569" ]+      , [ ESymbol Ord "\585" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\394" ]+      , [ ESymbol Ord "\410" ]+      , [ ESymbol Ord "\426" ]+      , [ ESymbol Ord "\442" ]+      , [ ESymbol Ord "\458" ]+      , [ ESymbol Ord "\474" ]+      , [ ESymbol Ord "\490" ]+      , [ ESymbol Ord "\506" ]+      , [ ESymbol Ord "\522" ]+      , [ ESymbol Ord "\538" ]+      , [ ESymbol Ord "\554" ]+      , [ ESymbol Ord "\570" ]+      , [ ESymbol Ord "\586" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\395" ]+      , [ ESymbol Ord "\411" ]+      , [ ESymbol Ord "\427" ]+      , [ ESymbol Ord "\443" ]+      , [ ESymbol Ord "\459" ]+      , [ ESymbol Ord "\475" ]+      , [ ESymbol Ord "\491" ]+      , [ ESymbol Ord "\507" ]+      , [ ESymbol Ord "\523" ]+      , [ ESymbol Ord "\539" ]+      , [ ESymbol Ord "\555" ]+      , [ ESymbol Ord "\571" ]+      , [ ESymbol Ord "\587" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\396" ]+      , [ ESymbol Ord "\412" ]+      , [ ESymbol Ord "\428" ]+      , [ ESymbol Ord "\444" ]+      , [ ESymbol Ord "\460" ]+      , [ ESymbol Ord "\476" ]+      , [ ESymbol Ord "\492" ]+      , [ ESymbol Ord "\508" ]+      , [ ESymbol Ord "\524" ]+      , [ ESymbol Ord "\540" ]+      , [ ESymbol Ord "\556" ]+      , [ ESymbol Ord "\572" ]+      , [ ESymbol Ord "\588" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\397" ]+      , [ ESymbol Ord "\413" ]+      , [ ESymbol Ord "\429" ]+      , [ ESymbol Ord "\445" ]+      , [ ESymbol Ord "\461" ]+      , [ ESymbol Ord "\477" ]+      , [ ESymbol Ord "\493" ]+      , [ ESymbol Ord "\509" ]+      , [ ESymbol Ord "\525" ]+      , [ ESymbol Ord "\541" ]+      , [ ESymbol Ord "\557" ]+      , [ ESymbol Ord "\573" ]+      , [ ESymbol Ord "\589" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\398" ]+      , [ ESymbol Ord "\414" ]+      , [ ESymbol Ord "\430" ]+      , [ ESymbol Ord "\446" ]+      , [ ESymbol Ord "\462" ]+      , [ ESymbol Ord "\478" ]+      , [ ESymbol Ord "\494" ]+      , [ ESymbol Ord "\510" ]+      , [ ESymbol Ord "\526" ]+      , [ ESymbol Ord "\542" ]+      , [ ESymbol Ord "\558" ]+      , [ ESymbol Ord "\574" ]+      , [ ESymbol Ord "\590" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\399" ]+      , [ ESymbol Ord "\415" ]+      , [ ESymbol Ord "\431" ]+      , [ ESymbol Ord "\447" ]+      , [ ESymbol Ord "\463" ]+      , [ ESymbol Ord "\479" ]+      , [ ESymbol Ord "\495" ]+      , [ ESymbol Ord "\511" ]+      , [ ESymbol Ord "\527" ]+      , [ ESymbol Ord "\543" ]+      , [ ESymbol Ord "\559" ]+      , [ ESymbol Ord "\575" ]+      , [ ESymbol Ord "\591" ]+      ]+    ]+]
+ test/reader/mml/00250_IPA_Extensions.test view
@@ -0,0 +1,542 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>25</mtext>+      </mtd> +      <mtd>+        <mtext>26</mtext>+      </mtd> +      <mtd>+        <mtext>27</mtext>+      </mtd> +      <mtd>+        <mtext>28</mtext>+      </mtd> +      <mtd>+        <mtext>29</mtext>+      </mtd> +      <mtd>+        <mtext>2A</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#592;</mo>+      </mtd> +      <mtd>+        <mo>&#608;</mo>+      </mtd> +      <mtd>+        <mo>&#624;</mo>+      </mtd> +      <mtd>+        <mo>&#640;</mo>+      </mtd> +      <mtd>+        <mo>&#656;</mo>+      </mtd> +      <mtd>+        <mo>&#672;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#593;</mo>+      </mtd> +      <mtd>+        <mo>&#609;</mo>+      </mtd> +      <mtd>+        <mo>&#625;</mo>+      </mtd> +      <mtd>+        <mo>&#641;</mo>+      </mtd> +      <mtd>+        <mo>&#657;</mo>+      </mtd> +      <mtd>+        <mo>&#673;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#594;</mo>+      </mtd> +      <mtd>+        <mo>&#610;</mo>+      </mtd> +      <mtd>+        <mo>&#626;</mo>+      </mtd> +      <mtd>+        <mo>&#642;</mo>+      </mtd> +      <mtd>+        <mo>&#658;</mo>+      </mtd> +      <mtd>+        <mo>&#674;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#595;</mo>+      </mtd> +      <mtd>+        <mo>&#611;</mo>+      </mtd> +      <mtd>+        <mo>&#627;</mo>+      </mtd> +      <mtd>+        <mo>&#643;</mo>+      </mtd> +      <mtd>+        <mo>&#659;</mo>+      </mtd> +      <mtd>+        <mo>&#675;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#596;</mo>+      </mtd> +      <mtd>+        <mo>&#612;</mo>+      </mtd> +      <mtd>+        <mo>&#628;</mo>+      </mtd> +      <mtd>+        <mo>&#644;</mo>+      </mtd> +      <mtd>+        <mo>&#660;</mo>+      </mtd> +      <mtd>+        <mo>&#676;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#597;</mo>+      </mtd> +      <mtd>+        <mo>&#613;</mo>+      </mtd> +      <mtd>+        <mo>&#629;</mo>+      </mtd> +      <mtd>+        <mo>&#645;</mo>+      </mtd> +      <mtd>+        <mo>&#661;</mo>+      </mtd> +      <mtd>+        <mo>&#677;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#598;</mo>+      </mtd> +      <mtd>+        <mo>&#614;</mo>+      </mtd> +      <mtd>+        <mo>&#630;</mo>+      </mtd> +      <mtd>+        <mo>&#646;</mo>+      </mtd> +      <mtd>+        <mo>&#662;</mo>+      </mtd> +      <mtd>+        <mo>&#678;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#599;</mo>+      </mtd> +      <mtd>+        <mo>&#615;</mo>+      </mtd> +      <mtd>+        <mo>&#631;</mo>+      </mtd> +      <mtd>+        <mo>&#647;</mo>+      </mtd> +      <mtd>+        <mo>&#663;</mo>+      </mtd> +      <mtd>+        <mo>&#679;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#600;</mo>+      </mtd> +      <mtd>+        <mo>&#616;</mo>+      </mtd> +      <mtd>+        <mo>&#632;</mo>+      </mtd> +      <mtd>+        <mo>&#648;</mo>+      </mtd> +      <mtd>+        <mo>&#664;</mo>+      </mtd> +      <mtd>+        <mo>&#680;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#601;</mo>+      </mtd> +      <mtd>+        <mo>&#617;</mo>+      </mtd> +      <mtd>+        <mo>&#633;</mo>+      </mtd> +      <mtd>+        <mo>&#649;</mo>+      </mtd> +      <mtd>+        <mo>&#665;</mo>+      </mtd> +      <mtd>+        <mo>&#681;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#602;</mo>+      </mtd> +      <mtd>+        <mo>&#618;</mo>+      </mtd> +      <mtd>+        <mo>&#634;</mo>+      </mtd> +      <mtd>+        <mo>&#650;</mo>+      </mtd> +      <mtd>+        <mo>&#666;</mo>+      </mtd> +      <mtd>+        <mo>&#682;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#603;</mo>+      </mtd> +      <mtd>+        <mo>&#619;</mo>+      </mtd> +      <mtd>+        <mo>&#635;</mo>+      </mtd> +      <mtd>+        <mo>&#651;</mo>+      </mtd> +      <mtd>+        <mo>&#667;</mo>+      </mtd> +      <mtd>+        <mo>&#683;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#604;</mo>+      </mtd> +      <mtd>+        <mo>&#620;</mo>+      </mtd> +      <mtd>+        <mo>&#636;</mo>+      </mtd> +      <mtd>+        <mo>&#652;</mo>+      </mtd> +      <mtd>+        <mo>&#668;</mo>+      </mtd> +      <mtd>+        <mo>&#684;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#605;</mo>+      </mtd> +      <mtd>+        <mo>&#621;</mo>+      </mtd> +      <mtd>+        <mo>&#637;</mo>+      </mtd> +      <mtd>+        <mo>&#653;</mo>+      </mtd> +      <mtd>+        <mo>&#669;</mo>+      </mtd> +      <mtd>+        <mo>&#685;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#606;</mo>+      </mtd> +      <mtd>+        <mo>&#622;</mo>+      </mtd> +      <mtd>+        <mo>&#638;</mo>+      </mtd> +      <mtd>+        <mo>&#654;</mo>+      </mtd> +      <mtd>+        <mo>&#670;</mo>+      </mtd> +      <mtd>+        <mo>&#686;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#607;</mo>+      </mtd> +      <mtd>+        <mo>&#623;</mo>+      </mtd> +      <mtd>+        <mo>&#639;</mo>+      </mtd> +      <mtd>+        <mo>&#655;</mo>+      </mtd> +      <mtd>+        <mo>&#671;</mo>+      </mtd> +      <mtd>+        <mo>&#687;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "25" ]+      , [ EText TextNormal "26" ]+      , [ EText TextNormal "27" ]+      , [ EText TextNormal "28" ]+      , [ EText TextNormal "29" ]+      , [ EText TextNormal "2A" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\592" ]+      , [ ESymbol Ord "\608" ]+      , [ ESymbol Ord "\624" ]+      , [ ESymbol Ord "\640" ]+      , [ ESymbol Ord "\656" ]+      , [ ESymbol Ord "\672" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\593" ]+      , [ ESymbol Ord "\609" ]+      , [ ESymbol Ord "\625" ]+      , [ ESymbol Ord "\641" ]+      , [ ESymbol Ord "\657" ]+      , [ ESymbol Ord "\673" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\594" ]+      , [ ESymbol Ord "\610" ]+      , [ ESymbol Ord "\626" ]+      , [ ESymbol Ord "\642" ]+      , [ ESymbol Ord "\658" ]+      , [ ESymbol Ord "\674" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\595" ]+      , [ ESymbol Ord "\611" ]+      , [ ESymbol Ord "\627" ]+      , [ ESymbol Ord "\643" ]+      , [ ESymbol Ord "\659" ]+      , [ ESymbol Ord "\675" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\596" ]+      , [ ESymbol Ord "\612" ]+      , [ ESymbol Ord "\628" ]+      , [ ESymbol Ord "\644" ]+      , [ ESymbol Ord "\660" ]+      , [ ESymbol Ord "\676" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\597" ]+      , [ ESymbol Ord "\613" ]+      , [ ESymbol Ord "\629" ]+      , [ ESymbol Ord "\645" ]+      , [ ESymbol Ord "\661" ]+      , [ ESymbol Ord "\677" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\598" ]+      , [ ESymbol Ord "\614" ]+      , [ ESymbol Ord "\630" ]+      , [ ESymbol Ord "\646" ]+      , [ ESymbol Ord "\662" ]+      , [ ESymbol Ord "\678" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\599" ]+      , [ ESymbol Ord "\615" ]+      , [ ESymbol Ord "\631" ]+      , [ ESymbol Ord "\647" ]+      , [ ESymbol Ord "\663" ]+      , [ ESymbol Ord "\679" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\600" ]+      , [ ESymbol Ord "\616" ]+      , [ ESymbol Ord "\632" ]+      , [ ESymbol Ord "\648" ]+      , [ ESymbol Ord "\664" ]+      , [ ESymbol Ord "\680" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\601" ]+      , [ ESymbol Ord "\617" ]+      , [ ESymbol Ord "\633" ]+      , [ ESymbol Ord "\649" ]+      , [ ESymbol Ord "\665" ]+      , [ ESymbol Ord "\681" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\602" ]+      , [ ESymbol Ord "\618" ]+      , [ ESymbol Ord "\634" ]+      , [ ESymbol Ord "\650" ]+      , [ ESymbol Ord "\666" ]+      , [ ESymbol Ord "\682" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\603" ]+      , [ ESymbol Ord "\619" ]+      , [ ESymbol Ord "\635" ]+      , [ ESymbol Ord "\651" ]+      , [ ESymbol Ord "\667" ]+      , [ ESymbol Ord "\683" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\604" ]+      , [ ESymbol Ord "\620" ]+      , [ ESymbol Ord "\636" ]+      , [ ESymbol Ord "\652" ]+      , [ ESymbol Ord "\668" ]+      , [ ESymbol Ord "\684" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\605" ]+      , [ ESymbol Ord "\621" ]+      , [ ESymbol Ord "\637" ]+      , [ ESymbol Ord "\653" ]+      , [ ESymbol Ord "\669" ]+      , [ ESymbol Ord "\685" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\606" ]+      , [ ESymbol Ord "\622" ]+      , [ ESymbol Ord "\638" ]+      , [ ESymbol Ord "\654" ]+      , [ ESymbol Ord "\670" ]+      , [ ESymbol Ord "\686" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\607" ]+      , [ ESymbol Ord "\623" ]+      , [ ESymbol Ord "\639" ]+      , [ ESymbol Ord "\655" ]+      , [ ESymbol Ord "\671" ]+      , [ ESymbol Ord "\687" ]+      ]+    ]+]
+ test/reader/mml/002B0_Spacing_Modifier_Letters.test view
@@ -0,0 +1,473 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>2B</mtext>+      </mtd> +      <mtd>+        <mtext>2C</mtext>+      </mtd> +      <mtd>+        <mtext>2D</mtext>+      </mtd> +      <mtd>+        <mtext>2E</mtext>+      </mtd> +      <mtd>+        <mtext>2F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#688;</mo>+      </mtd> +      <mtd>+        <mo>&#704;</mo>+      </mtd> +      <mtd>+        <mo>&#720;</mo>+      </mtd> +      <mtd>+        <mo>&#736;</mo>+      </mtd> +      <mtd>+        <mo>&#752;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#689;</mo>+      </mtd> +      <mtd>+        <mo>&#705;</mo>+      </mtd> +      <mtd>+        <mo>&#721;</mo>+      </mtd> +      <mtd>+        <mo>&#737;</mo>+      </mtd> +      <mtd>+        <mo>&#753;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#690;</mo>+      </mtd> +      <mtd>+        <mo>&#706;</mo>+      </mtd> +      <mtd>+        <mo>&#722;</mo>+      </mtd> +      <mtd>+        <mo>&#738;</mo>+      </mtd> +      <mtd>+        <mo>&#754;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#691;</mo>+      </mtd> +      <mtd>+        <mo>&#707;</mo>+      </mtd> +      <mtd>+        <mo>&#723;</mo>+      </mtd> +      <mtd>+        <mo>&#739;</mo>+      </mtd> +      <mtd>+        <mo>&#755;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#692;</mo>+      </mtd> +      <mtd>+        <mo>&#708;</mo>+      </mtd> +      <mtd>+        <mo>&#724;</mo>+      </mtd> +      <mtd>+        <mo>&#740;</mo>+      </mtd> +      <mtd>+        <mo>&#756;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#693;</mo>+      </mtd> +      <mtd>+        <mo>&#709;</mo>+      </mtd> +      <mtd>+        <mo>&#725;</mo>+      </mtd> +      <mtd>+        <mo>&#741;</mo>+      </mtd> +      <mtd>+        <mo>&#757;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#694;</mo>+      </mtd> +      <mtd>+        <mo>&#710;</mo>+      </mtd> +      <mtd>+        <mo>&#726;</mo>+      </mtd> +      <mtd>+        <mo>&#742;</mo>+      </mtd> +      <mtd>+        <mo>&#758;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#695;</mo>+      </mtd> +      <mtd>+        <mo>&#711;</mo>+      </mtd> +      <mtd>+        <mo>&#727;</mo>+      </mtd> +      <mtd>+        <mo>&#743;</mo>+      </mtd> +      <mtd>+        <mo>&#759;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#696;</mo>+      </mtd> +      <mtd>+        <mo>&#712;</mo>+      </mtd> +      <mtd>+        <mo>&#728;</mo>+      </mtd> +      <mtd>+        <mo>&#744;</mo>+      </mtd> +      <mtd>+        <mo>&#760;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#697;</mo>+      </mtd> +      <mtd>+        <mo>&#713;</mo>+      </mtd> +      <mtd>+        <mo>&#729;</mo>+      </mtd> +      <mtd>+        <mo>&#745;</mo>+      </mtd> +      <mtd>+        <mo>&#761;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#698;</mo>+      </mtd> +      <mtd>+        <mo>&#714;</mo>+      </mtd> +      <mtd>+        <mo>&#730;</mo>+      </mtd> +      <mtd>+        <mo>&#746;</mo>+      </mtd> +      <mtd>+        <mo>&#762;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#699;</mo>+      </mtd> +      <mtd>+        <mo>&#715;</mo>+      </mtd> +      <mtd>+        <mo>&#731;</mo>+      </mtd> +      <mtd>+        <mo>&#747;</mo>+      </mtd> +      <mtd>+        <mo>&#763;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#700;</mo>+      </mtd> +      <mtd>+        <mo>&#716;</mo>+      </mtd> +      <mtd>+        <mo>&#732;</mo>+      </mtd> +      <mtd>+        <mo>&#748;</mo>+      </mtd> +      <mtd>+        <mo>&#764;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#701;</mo>+      </mtd> +      <mtd>+        <mo>&#717;</mo>+      </mtd> +      <mtd>+        <mo>&#733;</mo>+      </mtd> +      <mtd>+        <mo>&#749;</mo>+      </mtd> +      <mtd>+        <mo>&#765;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#702;</mo>+      </mtd> +      <mtd>+        <mo>&#718;</mo>+      </mtd> +      <mtd>+        <mo>&#734;</mo>+      </mtd> +      <mtd>+        <mo>&#750;</mo>+      </mtd> +      <mtd>+        <mo>&#766;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#703;</mo>+      </mtd> +      <mtd>+        <mo>&#719;</mo>+      </mtd> +      <mtd>+        <mo>&#735;</mo>+      </mtd> +      <mtd>+        <mo>&#751;</mo>+      </mtd> +      <mtd>+        <mo>&#767;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "2B" ]+      , [ EText TextNormal "2C" ]+      , [ EText TextNormal "2D" ]+      , [ EText TextNormal "2E" ]+      , [ EText TextNormal "2F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\688" ]+      , [ ESymbol Ord "\704" ]+      , [ ESymbol Ord "\720" ]+      , [ ESymbol Ord "\736" ]+      , [ ESymbol Ord "\752" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\689" ]+      , [ ESymbol Ord "\705" ]+      , [ ESymbol Ord "\721" ]+      , [ ESymbol Ord "\737" ]+      , [ ESymbol Ord "\753" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\690" ]+      , [ ESymbol Ord "\706" ]+      , [ ESymbol Ord "\722" ]+      , [ ESymbol Ord "\738" ]+      , [ ESymbol Ord "\754" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\691" ]+      , [ ESymbol Ord "\707" ]+      , [ ESymbol Ord "\723" ]+      , [ ESymbol Ord "\739" ]+      , [ ESymbol Ord "\755" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\692" ]+      , [ ESymbol Ord "\708" ]+      , [ ESymbol Ord "\724" ]+      , [ ESymbol Ord "\740" ]+      , [ ESymbol Ord "\756" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\693" ]+      , [ ESymbol Ord "\709" ]+      , [ ESymbol Ord "\725" ]+      , [ ESymbol Ord "\741" ]+      , [ ESymbol Ord "\757" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\694" ]+      , [ ESymbol Accent "\710" ]+      , [ ESymbol Ord "\726" ]+      , [ ESymbol Ord "\742" ]+      , [ ESymbol Ord "\758" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\695" ]+      , [ ESymbol Accent "\711" ]+      , [ ESymbol Ord "\727" ]+      , [ ESymbol Ord "\743" ]+      , [ ESymbol Accent "\759" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\696" ]+      , [ ESymbol Ord "\712" ]+      , [ ESymbol Accent "\728" ]+      , [ ESymbol Ord "\744" ]+      , [ ESymbol Ord "\760" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\697" ]+      , [ ESymbol Accent "\713" ]+      , [ ESymbol Accent "\729" ]+      , [ ESymbol Ord "\745" ]+      , [ ESymbol Ord "\761" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\698" ]+      , [ ESymbol Accent "\714" ]+      , [ ESymbol Accent "\730" ]+      , [ ESymbol Ord "\746" ]+      , [ ESymbol Ord "\762" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\699" ]+      , [ ESymbol Accent "\715" ]+      , [ ESymbol Ord "\731" ]+      , [ ESymbol Ord "\747" ]+      , [ ESymbol Ord "\763" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\700" ]+      , [ ESymbol Ord "\716" ]+      , [ ESymbol Accent "\732" ]+      , [ ESymbol Ord "\748" ]+      , [ ESymbol Ord "\764" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\701" ]+      , [ ESymbol Accent "\717" ]+      , [ ESymbol Accent "\733" ]+      , [ ESymbol Ord "\749" ]+      , [ ESymbol Ord "\765" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\702" ]+      , [ ESymbol Ord "\718" ]+      , [ ESymbol Ord "\734" ]+      , [ ESymbol Ord "\750" ]+      , [ ESymbol Ord "\766" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\703" ]+      , [ ESymbol Ord "\719" ]+      , [ ESymbol Ord "\735" ]+      , [ ESymbol Ord "\751" ]+      , [ ESymbol Ord "\767" ]+      ]+    ]+]
+ test/reader/mml/00300_Combining_Diacritical_Marks.test view
@@ -0,0 +1,611 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>30</mtext>+      </mtd> +      <mtd>+        <mtext>31</mtext>+      </mtd> +      <mtd>+        <mtext>32</mtext>+      </mtd> +      <mtd>+        <mtext>33</mtext>+      </mtd> +      <mtd>+        <mtext>34</mtext>+      </mtd> +      <mtd>+        <mtext>35</mtext>+      </mtd> +      <mtd>+        <mtext>36</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#768;</mo>+      </mtd> +      <mtd>+        <mo>&#784;</mo>+      </mtd> +      <mtd>+        <mo>&#800;</mo>+      </mtd> +      <mtd>+        <mo>&#816;</mo>+      </mtd> +      <mtd>+        <mo>&#832;</mo>+      </mtd> +      <mtd>+        <mo>&#848;</mo>+      </mtd> +      <mtd>+        <mo>&#864;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#769;</mo>+      </mtd> +      <mtd>+        <mo>&#785;</mo>+      </mtd> +      <mtd>+        <mo>&#801;</mo>+      </mtd> +      <mtd>+        <mo>&#817;</mo>+      </mtd> +      <mtd>+        <mo>&#833;</mo>+      </mtd> +      <mtd>+        <mo>&#849;</mo>+      </mtd> +      <mtd>+        <mo>&#865;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#770;</mo>+      </mtd> +      <mtd>+        <mo>&#786;</mo>+      </mtd> +      <mtd>+        <mo>&#802;</mo>+      </mtd> +      <mtd>+        <mo>&#818;</mo>+      </mtd> +      <mtd>+        <mo>&#834;</mo>+      </mtd> +      <mtd>+        <mo>&#850;</mo>+      </mtd> +      <mtd>+        <mo>&#866;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#771;</mo>+      </mtd> +      <mtd>+        <mo>&#787;</mo>+      </mtd> +      <mtd>+        <mo>&#803;</mo>+      </mtd> +      <mtd>+        <mo>&#819;</mo>+      </mtd> +      <mtd>+        <mo>&#835;</mo>+      </mtd> +      <mtd>+        <mo>&#851;</mo>+      </mtd> +      <mtd>+        <mo>&#867;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#772;</mo>+      </mtd> +      <mtd>+        <mo>&#788;</mo>+      </mtd> +      <mtd>+        <mo>&#804;</mo>+      </mtd> +      <mtd>+        <mo>&#820;</mo>+      </mtd> +      <mtd>+        <mo>&#836;</mo>+      </mtd> +      <mtd>+        <mo>&#852;</mo>+      </mtd> +      <mtd>+        <mo>&#868;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#773;</mo>+      </mtd> +      <mtd>+        <mo>&#789;</mo>+      </mtd> +      <mtd>+        <mo>&#805;</mo>+      </mtd> +      <mtd>+        <mo>&#821;</mo>+      </mtd> +      <mtd>+        <mo>&#837;</mo>+      </mtd> +      <mtd>+        <mo>&#853;</mo>+      </mtd> +      <mtd>+        <mo>&#869;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#774;</mo>+      </mtd> +      <mtd>+        <mo>&#790;</mo>+      </mtd> +      <mtd>+        <mo>&#806;</mo>+      </mtd> +      <mtd>+        <mo>&#822;</mo>+      </mtd> +      <mtd>+        <mo>&#838;</mo>+      </mtd> +      <mtd>+        <mo>&#854;</mo>+      </mtd> +      <mtd>+        <mo>&#870;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#775;</mo>+      </mtd> +      <mtd>+        <mo>&#791;</mo>+      </mtd> +      <mtd>+        <mo>&#807;</mo>+      </mtd> +      <mtd>+        <mo>&#823;</mo>+      </mtd> +      <mtd>+        <mo>&#839;</mo>+      </mtd> +      <mtd>+        <mo>&#855;</mo>+      </mtd> +      <mtd>+        <mo>&#871;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#776;</mo>+      </mtd> +      <mtd>+        <mo>&#792;</mo>+      </mtd> +      <mtd>+        <mo>&#808;</mo>+      </mtd> +      <mtd>+        <mo>&#824;</mo>+      </mtd> +      <mtd>+        <mo>&#840;</mo>+      </mtd> +      <mtd>+        <mo>&#856;</mo>+      </mtd> +      <mtd>+        <mo>&#872;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#777;</mo>+      </mtd> +      <mtd>+        <mo>&#793;</mo>+      </mtd> +      <mtd>+        <mo>&#809;</mo>+      </mtd> +      <mtd>+        <mo>&#825;</mo>+      </mtd> +      <mtd>+        <mo>&#841;</mo>+      </mtd> +      <mtd>+        <mo>&#857;</mo>+      </mtd> +      <mtd>+        <mo>&#873;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#778;</mo>+      </mtd> +      <mtd>+        <mo>&#794;</mo>+      </mtd> +      <mtd>+        <mo>&#810;</mo>+      </mtd> +      <mtd>+        <mo>&#826;</mo>+      </mtd> +      <mtd>+        <mo>&#842;</mo>+      </mtd> +      <mtd>+        <mo>&#858;</mo>+      </mtd> +      <mtd>+        <mo>&#874;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#779;</mo>+      </mtd> +      <mtd>+        <mo>&#795;</mo>+      </mtd> +      <mtd>+        <mo>&#811;</mo>+      </mtd> +      <mtd>+        <mo>&#827;</mo>+      </mtd> +      <mtd>+        <mo>&#843;</mo>+      </mtd> +      <mtd>+        <mo>&#859;</mo>+      </mtd> +      <mtd>+        <mo>&#875;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#780;</mo>+      </mtd> +      <mtd>+        <mo>&#796;</mo>+      </mtd> +      <mtd>+        <mo>&#812;</mo>+      </mtd> +      <mtd>+        <mo>&#828;</mo>+      </mtd> +      <mtd>+        <mo>&#844;</mo>+      </mtd> +      <mtd>+        <mo>&#860;</mo>+      </mtd> +      <mtd>+        <mo>&#876;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#781;</mo>+      </mtd> +      <mtd>+        <mo>&#797;</mo>+      </mtd> +      <mtd>+        <mo>&#813;</mo>+      </mtd> +      <mtd>+        <mo>&#829;</mo>+      </mtd> +      <mtd>+        <mo>&#845;</mo>+      </mtd> +      <mtd>+        <mo>&#861;</mo>+      </mtd> +      <mtd>+        <mo>&#877;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#782;</mo>+      </mtd> +      <mtd>+        <mo>&#798;</mo>+      </mtd> +      <mtd>+        <mo>&#814;</mo>+      </mtd> +      <mtd>+        <mo>&#830;</mo>+      </mtd> +      <mtd>+        <mo>&#846;</mo>+      </mtd> +      <mtd>+        <mo>&#862;</mo>+      </mtd> +      <mtd>+        <mo>&#878;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#783;</mo>+      </mtd> +      <mtd>+        <mo>&#799;</mo>+      </mtd> +      <mtd>+        <mo>&#815;</mo>+      </mtd> +      <mtd>+        <mo>&#831;</mo>+      </mtd> +      <mtd>+        <mo>&#847;</mo>+      </mtd> +      <mtd>+        <mo>&#863;</mo>+      </mtd> +      <mtd>+        <mo>&#879;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "30" ]+      , [ EText TextNormal "31" ]+      , [ EText TextNormal "32" ]+      , [ EText TextNormal "33" ]+      , [ EText TextNormal "34" ]+      , [ EText TextNormal "35" ]+      , [ EText TextNormal "36" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Accent "\768" ]+      , [ ESymbol Accent "\784" ]+      , [ ESymbol Ord "\800" ]+      , [ ESymbol Accent "\816" ]+      , [ ESymbol Ord "\832" ]+      , [ ESymbol Ord "\848" ]+      , [ ESymbol Ord "\864" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Accent "\769" ]+      , [ ESymbol Accent "\785" ]+      , [ ESymbol Ord "\801" ]+      , [ ESymbol Accent "\817" ]+      , [ ESymbol Ord "\833" ]+      , [ ESymbol Ord "\849" ]+      , [ ESymbol Ord "\865" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Accent "\770" ]+      , [ ESymbol Accent "\786" ]+      , [ ESymbol Ord "\802" ]+      , [ ESymbol Accent "\818" ]+      , [ ESymbol Ord "\834" ]+      , [ ESymbol Ord "\850" ]+      , [ ESymbol Ord "\866" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Accent "\771" ]+      , [ ESymbol Ord "\787" ]+      , [ ESymbol Accent "\803" ]+      , [ ESymbol Accent "\819" ]+      , [ ESymbol Ord "\835" ]+      , [ ESymbol Ord "\851" ]+      , [ ESymbol Ord "\867" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Accent "\772" ]+      , [ ESymbol Ord "\788" ]+      , [ ESymbol Ord "\804" ]+      , [ ESymbol Ord "\820" ]+      , [ ESymbol Ord "\836" ]+      , [ ESymbol Ord "\852" ]+      , [ ESymbol Ord "\868" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Accent "\773" ]+      , [ ESymbol Accent "\789" ]+      , [ ESymbol Ord "\805" ]+      , [ ESymbol Ord "\821" ]+      , [ ESymbol Ord "\837" ]+      , [ ESymbol Ord "\853" ]+      , [ ESymbol Ord "\869" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Accent "\774" ]+      , [ ESymbol Ord "\790" ]+      , [ ESymbol Ord "\806" ]+      , [ ESymbol Ord "\822" ]+      , [ ESymbol Accent "\838" ]+      , [ ESymbol Ord "\854" ]+      , [ ESymbol Ord "\870" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Accent "\775" ]+      , [ ESymbol Ord "\791" ]+      , [ ESymbol Ord "\807" ]+      , [ ESymbol Ord "\823" ]+      , [ ESymbol Ord "\839" ]+      , [ ESymbol Ord "\855" ]+      , [ ESymbol Ord "\871" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Accent "\776" ]+      , [ ESymbol Ord "\792" ]+      , [ ESymbol Ord "\808" ]+      , [ ESymbol Accent "\824" ]+      , [ ESymbol Ord "\840" ]+      , [ ESymbol Ord "\856" ]+      , [ ESymbol Ord "\872" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Accent "\777" ]+      , [ ESymbol Ord "\793" ]+      , [ ESymbol Ord "\809" ]+      , [ ESymbol Ord "\825" ]+      , [ ESymbol Ord "\841" ]+      , [ ESymbol Ord "\857" ]+      , [ ESymbol Ord "\873" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Accent "\778" ]+      , [ ESymbol Accent "\794" ]+      , [ ESymbol Ord "\810" ]+      , [ ESymbol Accent "\826" ]+      , [ ESymbol Ord "\842" ]+      , [ ESymbol Ord "\858" ]+      , [ ESymbol Ord "\874" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\779" ]+      , [ ESymbol Ord "\795" ]+      , [ ESymbol Ord "\811" ]+      , [ ESymbol Ord "\827" ]+      , [ ESymbol Ord "\843" ]+      , [ ESymbol Ord "\859" ]+      , [ ESymbol Ord "\875" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Accent "\780" ]+      , [ ESymbol Ord "\796" ]+      , [ ESymbol Accent "\812" ]+      , [ ESymbol Ord "\828" ]+      , [ ESymbol Ord "\844" ]+      , [ ESymbol Ord "\860" ]+      , [ ESymbol Ord "\876" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\781" ]+      , [ ESymbol Ord "\797" ]+      , [ ESymbol Accent "\813" ]+      , [ ESymbol Ord "\829" ]+      , [ ESymbol Ord "\845" ]+      , [ ESymbol Ord "\861" ]+      , [ ESymbol Ord "\877" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\782" ]+      , [ ESymbol Ord "\798" ]+      , [ ESymbol Accent "\814" ]+      , [ ESymbol Ord "\830" ]+      , [ ESymbol Ord "\846" ]+      , [ ESymbol Ord "\862" ]+      , [ ESymbol Ord "\878" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\783" ]+      , [ ESymbol Ord "\799" ]+      , [ ESymbol Accent "\815" ]+      , [ ESymbol Accent "\831" ]+      , [ ESymbol Ord "\847" ]+      , [ ESymbol Ord "\863" ]+      , [ ESymbol Ord "\879" ]+      ]+    ]+]
+ test/reader/mml/00370_Greek_and_Coptic.test view
@@ -0,0 +1,749 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>37</mtext>+      </mtd> +      <mtd>+        <mtext>38</mtext>+      </mtd> +      <mtd>+        <mtext>39</mtext>+      </mtd> +      <mtd>+        <mtext>3A</mtext>+      </mtd> +      <mtd>+        <mtext>3B</mtext>+      </mtd> +      <mtd>+        <mtext>3C</mtext>+      </mtd> +      <mtd>+        <mtext>3D</mtext>+      </mtd> +      <mtd>+        <mtext>3E</mtext>+      </mtd> +      <mtd>+        <mtext>3F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#880;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#912;</mo>+      </mtd> +      <mtd>+        <mo>&#928;</mo>+      </mtd> +      <mtd>+        <mo>&#944;</mo>+      </mtd> +      <mtd>+        <mo>&#960;</mo>+      </mtd> +      <mtd>+        <mo>&#976;</mo>+      </mtd> +      <mtd>+        <mo>&#992;</mo>+      </mtd> +      <mtd>+        <mo>&#1008;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#881;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#913;</mo>+      </mtd> +      <mtd>+        <mo>&#929;</mo>+      </mtd> +      <mtd>+        <mo>&#945;</mo>+      </mtd> +      <mtd>+        <mo>&#961;</mo>+      </mtd> +      <mtd>+        <mo>&#977;</mo>+      </mtd> +      <mtd>+        <mo>&#993;</mo>+      </mtd> +      <mtd>+        <mo>&#1009;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#882;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#914;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#946;</mo>+      </mtd> +      <mtd>+        <mo>&#962;</mo>+      </mtd> +      <mtd>+        <mo>&#978;</mo>+      </mtd> +      <mtd>+        <mo>&#994;</mo>+      </mtd> +      <mtd>+        <mo>&#1010;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#883;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#915;</mo>+      </mtd> +      <mtd>+        <mo>&#931;</mo>+      </mtd> +      <mtd>+        <mo>&#947;</mo>+      </mtd> +      <mtd>+        <mo>&#963;</mo>+      </mtd> +      <mtd>+        <mo>&#979;</mo>+      </mtd> +      <mtd>+        <mo>&#995;</mo>+      </mtd> +      <mtd>+        <mo>&#1011;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#884;</mo>+      </mtd> +      <mtd>+        <mo>&#900;</mo>+      </mtd> +      <mtd>+        <mo>&#916;</mo>+      </mtd> +      <mtd>+        <mo>&#932;</mo>+      </mtd> +      <mtd>+        <mo>&#948;</mo>+      </mtd> +      <mtd>+        <mo>&#964;</mo>+      </mtd> +      <mtd>+        <mo>&#980;</mo>+      </mtd> +      <mtd>+        <mo>&#996;</mo>+      </mtd> +      <mtd>+        <mo>&#1012;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#885;</mo>+      </mtd> +      <mtd>+        <mo>&#901;</mo>+      </mtd> +      <mtd>+        <mo>&#917;</mo>+      </mtd> +      <mtd>+        <mo>&#933;</mo>+      </mtd> +      <mtd>+        <mo>&#949;</mo>+      </mtd> +      <mtd>+        <mo>&#965;</mo>+      </mtd> +      <mtd>+        <mo>&#981;</mo>+      </mtd> +      <mtd>+        <mo>&#997;</mo>+      </mtd> +      <mtd>+        <mo>&#1013;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#886;</mo>+      </mtd> +      <mtd>+        <mo>&#902;</mo>+      </mtd> +      <mtd>+        <mo>&#918;</mo>+      </mtd> +      <mtd>+        <mo>&#934;</mo>+      </mtd> +      <mtd>+        <mo>&#950;</mo>+      </mtd> +      <mtd>+        <mo>&#966;</mo>+      </mtd> +      <mtd>+        <mo>&#982;</mo>+      </mtd> +      <mtd>+        <mo>&#998;</mo>+      </mtd> +      <mtd>+        <mo>&#1014;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#887;</mo>+      </mtd> +      <mtd>+        <mo>&#903;</mo>+      </mtd> +      <mtd>+        <mo>&#919;</mo>+      </mtd> +      <mtd>+        <mo>&#935;</mo>+      </mtd> +      <mtd>+        <mo>&#951;</mo>+      </mtd> +      <mtd>+        <mo>&#967;</mo>+      </mtd> +      <mtd>+        <mo>&#983;</mo>+      </mtd> +      <mtd>+        <mo>&#999;</mo>+      </mtd> +      <mtd>+        <mo>&#1015;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#904;</mo>+      </mtd> +      <mtd>+        <mo>&#920;</mo>+      </mtd> +      <mtd>+        <mo>&#936;</mo>+      </mtd> +      <mtd>+        <mo>&#952;</mo>+      </mtd> +      <mtd>+        <mo>&#968;</mo>+      </mtd> +      <mtd>+        <mo>&#984;</mo>+      </mtd> +      <mtd>+        <mo>&#1000;</mo>+      </mtd> +      <mtd>+        <mo>&#1016;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#905;</mo>+      </mtd> +      <mtd>+        <mo>&#921;</mo>+      </mtd> +      <mtd>+        <mo>&#937;</mo>+      </mtd> +      <mtd>+        <mo>&#953;</mo>+      </mtd> +      <mtd>+        <mo>&#969;</mo>+      </mtd> +      <mtd>+        <mo>&#985;</mo>+      </mtd> +      <mtd>+        <mo>&#1001;</mo>+      </mtd> +      <mtd>+        <mo>&#1017;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#890;</mo>+      </mtd> +      <mtd>+        <mo>&#906;</mo>+      </mtd> +      <mtd>+        <mo>&#922;</mo>+      </mtd> +      <mtd>+        <mo>&#938;</mo>+      </mtd> +      <mtd>+        <mo>&#954;</mo>+      </mtd> +      <mtd>+        <mo>&#970;</mo>+      </mtd> +      <mtd>+        <mo>&#986;</mo>+      </mtd> +      <mtd>+        <mo>&#1002;</mo>+      </mtd> +      <mtd>+        <mo>&#1018;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#891;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#923;</mo>+      </mtd> +      <mtd>+        <mo>&#939;</mo>+      </mtd> +      <mtd>+        <mo>&#955;</mo>+      </mtd> +      <mtd>+        <mo>&#971;</mo>+      </mtd> +      <mtd>+        <mo>&#987;</mo>+      </mtd> +      <mtd>+        <mo>&#1003;</mo>+      </mtd> +      <mtd>+        <mo>&#1019;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#892;</mo>+      </mtd> +      <mtd>+        <mo>&#908;</mo>+      </mtd> +      <mtd>+        <mo>&#924;</mo>+      </mtd> +      <mtd>+        <mo>&#940;</mo>+      </mtd> +      <mtd>+        <mo>&#956;</mo>+      </mtd> +      <mtd>+        <mo>&#972;</mo>+      </mtd> +      <mtd>+        <mo>&#988;</mo>+      </mtd> +      <mtd>+        <mo>&#1004;</mo>+      </mtd> +      <mtd>+        <mo>&#1020;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#893;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#925;</mo>+      </mtd> +      <mtd>+        <mo>&#941;</mo>+      </mtd> +      <mtd>+        <mo>&#957;</mo>+      </mtd> +      <mtd>+        <mo>&#973;</mo>+      </mtd> +      <mtd>+        <mo>&#989;</mo>+      </mtd> +      <mtd>+        <mo>&#1005;</mo>+      </mtd> +      <mtd>+        <mo>&#1021;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#894;</mo>+      </mtd> +      <mtd>+        <mo>&#910;</mo>+      </mtd> +      <mtd>+        <mo>&#926;</mo>+      </mtd> +      <mtd>+        <mo>&#942;</mo>+      </mtd> +      <mtd>+        <mo>&#958;</mo>+      </mtd> +      <mtd>+        <mo>&#974;</mo>+      </mtd> +      <mtd>+        <mo>&#990;</mo>+      </mtd> +      <mtd>+        <mo>&#1006;</mo>+      </mtd> +      <mtd>+        <mo>&#1022;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#911;</mo>+      </mtd> +      <mtd>+        <mo>&#927;</mo>+      </mtd> +      <mtd>+        <mo>&#943;</mo>+      </mtd> +      <mtd>+        <mo>&#959;</mo>+      </mtd> +      <mtd>+        <mo>&#975;</mo>+      </mtd> +      <mtd>+        <mo>&#991;</mo>+      </mtd> +      <mtd>+        <mo>&#1007;</mo>+      </mtd> +      <mtd>+        <mo>&#1023;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "37" ]+      , [ EText TextNormal "38" ]+      , [ EText TextNormal "39" ]+      , [ EText TextNormal "3A" ]+      , [ EText TextNormal "3B" ]+      , [ EText TextNormal "3C" ]+      , [ EText TextNormal "3D" ]+      , [ EText TextNormal "3E" ]+      , [ EText TextNormal "3F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\880" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\912" ]+      , [ ESymbol Alpha "\928" ]+      , [ ESymbol Ord "\944" ]+      , [ ESymbol Alpha "\960" ]+      , [ ESymbol Alpha "\976" ]+      , [ ESymbol Alpha "\992" ]+      , [ ESymbol Alpha "\1008" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\881" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\913" ]+      , [ ESymbol Alpha "\929" ]+      , [ ESymbol Alpha "\945" ]+      , [ ESymbol Alpha "\961" ]+      , [ ESymbol Alpha "\977" ]+      , [ ESymbol Alpha "\993" ]+      , [ ESymbol Alpha "\1009" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\882" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\914" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\946" ]+      , [ ESymbol Alpha "\962" ]+      , [ ESymbol Alpha "\978" ]+      , [ ESymbol Ord "\994" ]+      , [ ESymbol Ord "\1010" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\883" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\915" ]+      , [ ESymbol Alpha "\931" ]+      , [ ESymbol Alpha "\947" ]+      , [ ESymbol Alpha "\963" ]+      , [ ESymbol Ord "\979" ]+      , [ ESymbol Ord "\995" ]+      , [ ESymbol Ord "\1011" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\884" ]+      , [ ESymbol Ord "\900" ]+      , [ ESymbol Alpha "\916" ]+      , [ ESymbol Alpha "\932" ]+      , [ ESymbol Alpha "\948" ]+      , [ ESymbol Alpha "\964" ]+      , [ ESymbol Ord "\980" ]+      , [ ESymbol Ord "\996" ]+      , [ ESymbol Alpha "\1012" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\885" ]+      , [ ESymbol Ord "\901" ]+      , [ ESymbol Alpha "\917" ]+      , [ ESymbol Alpha "\933" ]+      , [ ESymbol Alpha "\949" ]+      , [ ESymbol Alpha "\965" ]+      , [ ESymbol Alpha "\981" ]+      , [ ESymbol Ord "\997" ]+      , [ ESymbol Alpha "\1013" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\886" ]+      , [ ESymbol Ord "\902" ]+      , [ ESymbol Alpha "\918" ]+      , [ ESymbol Alpha "\934" ]+      , [ ESymbol Alpha "\950" ]+      , [ ESymbol Alpha "\966" ]+      , [ ESymbol Alpha "\982" ]+      , [ ESymbol Ord "\998" ]+      , [ ESymbol Ord "\1014" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\887" ]+      , [ ESymbol Ord "\903" ]+      , [ ESymbol Alpha "\919" ]+      , [ ESymbol Alpha "\935" ]+      , [ ESymbol Alpha "\951" ]+      , [ ESymbol Alpha "\967" ]+      , [ ESymbol Ord "\983" ]+      , [ ESymbol Ord "\999" ]+      , [ ESymbol Ord "\1015" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\904" ]+      , [ ESymbol Alpha "\920" ]+      , [ ESymbol Alpha "\936" ]+      , [ ESymbol Alpha "\952" ]+      , [ ESymbol Alpha "\968" ]+      , [ ESymbol Ord "\984" ]+      , [ ESymbol Ord "\1000" ]+      , [ ESymbol Ord "\1016" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\905" ]+      , [ ESymbol Alpha "\921" ]+      , [ ESymbol Alpha "\937" ]+      , [ ESymbol Alpha "\953" ]+      , [ ESymbol Alpha "\969" ]+      , [ ESymbol Ord "\985" ]+      , [ ESymbol Ord "\1001" ]+      , [ ESymbol Ord "\1017" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\890" ]+      , [ ESymbol Ord "\906" ]+      , [ ESymbol Alpha "\922" ]+      , [ ESymbol Ord "\938" ]+      , [ ESymbol Alpha "\954" ]+      , [ ESymbol Ord "\970" ]+      , [ ESymbol Alpha "\986" ]+      , [ ESymbol Ord "\1002" ]+      , [ ESymbol Ord "\1018" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\891" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\923" ]+      , [ ESymbol Ord "\939" ]+      , [ ESymbol Alpha "\955" ]+      , [ ESymbol Ord "\971" ]+      , [ ESymbol Alpha "\987" ]+      , [ ESymbol Ord "\1003" ]+      , [ ESymbol Ord "\1019" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\892" ]+      , [ ESymbol Ord "\908" ]+      , [ ESymbol Alpha "\924" ]+      , [ ESymbol Ord "\940" ]+      , [ ESymbol Alpha "\956" ]+      , [ ESymbol Ord "\972" ]+      , [ ESymbol Alpha "\988" ]+      , [ ESymbol Ord "\1004" ]+      , [ ESymbol Ord "\1020" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\893" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\925" ]+      , [ ESymbol Ord "\941" ]+      , [ ESymbol Alpha "\957" ]+      , [ ESymbol Ord "\973" ]+      , [ ESymbol Alpha "\989" ]+      , [ ESymbol Ord "\1005" ]+      , [ ESymbol Ord "\1021" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\894" ]+      , [ ESymbol Ord "\910" ]+      , [ ESymbol Alpha "\926" ]+      , [ ESymbol Ord "\942" ]+      , [ ESymbol Alpha "\958" ]+      , [ ESymbol Ord "\974" ]+      , [ ESymbol Alpha "\990" ]+      , [ ESymbol Ord "\1006" ]+      , [ ESymbol Ord "\1022" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\911" ]+      , [ ESymbol Alpha "\927" ]+      , [ ESymbol Ord "\943" ]+      , [ ESymbol Alpha "\959" ]+      , [ ESymbol Ord "\975" ]+      , [ ESymbol Alpha "\991" ]+      , [ ESymbol Ord "\1007" ]+      , [ ESymbol Ord "\1023" ]+      ]+    ]+]
+ test/reader/mml/00400_Cyrillic.test view
@@ -0,0 +1,1232 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>40</mtext>+      </mtd> +      <mtd>+        <mtext>41</mtext>+      </mtd> +      <mtd>+        <mtext>42</mtext>+      </mtd> +      <mtd>+        <mtext>43</mtext>+      </mtd> +      <mtd>+        <mtext>44</mtext>+      </mtd> +      <mtd>+        <mtext>45</mtext>+      </mtd> +      <mtd>+        <mtext>46</mtext>+      </mtd> +      <mtd>+        <mtext>47</mtext>+      </mtd> +      <mtd>+        <mtext>48</mtext>+      </mtd> +      <mtd>+        <mtext>49</mtext>+      </mtd> +      <mtd>+        <mtext>4A</mtext>+      </mtd> +      <mtd>+        <mtext>4B</mtext>+      </mtd> +      <mtd>+        <mtext>4C</mtext>+      </mtd> +      <mtd>+        <mtext>4D</mtext>+      </mtd> +      <mtd>+        <mtext>4E</mtext>+      </mtd> +      <mtd>+        <mtext>4F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#1024;</mo>+      </mtd> +      <mtd>+        <mo>&#1040;</mo>+      </mtd> +      <mtd>+        <mo>&#1056;</mo>+      </mtd> +      <mtd>+        <mo>&#1072;</mo>+      </mtd> +      <mtd>+        <mo>&#1088;</mo>+      </mtd> +      <mtd>+        <mo>&#1104;</mo>+      </mtd> +      <mtd>+        <mo>&#1120;</mo>+      </mtd> +      <mtd>+        <mo>&#1136;</mo>+      </mtd> +      <mtd>+        <mo>&#1152;</mo>+      </mtd> +      <mtd>+        <mo>&#1168;</mo>+      </mtd> +      <mtd>+        <mo>&#1184;</mo>+      </mtd> +      <mtd>+        <mo>&#1200;</mo>+      </mtd> +      <mtd>+        <mo>&#1216;</mo>+      </mtd> +      <mtd>+        <mo>&#1232;</mo>+      </mtd> +      <mtd>+        <mo>&#1248;</mo>+      </mtd> +      <mtd>+        <mo>&#1264;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#1025;</mo>+      </mtd> +      <mtd>+        <mo>&#1041;</mo>+      </mtd> +      <mtd>+        <mo>&#1057;</mo>+      </mtd> +      <mtd>+        <mo>&#1073;</mo>+      </mtd> +      <mtd>+        <mo>&#1089;</mo>+      </mtd> +      <mtd>+        <mo>&#1105;</mo>+      </mtd> +      <mtd>+        <mo>&#1121;</mo>+      </mtd> +      <mtd>+        <mo>&#1137;</mo>+      </mtd> +      <mtd>+        <mo>&#1153;</mo>+      </mtd> +      <mtd>+        <mo>&#1169;</mo>+      </mtd> +      <mtd>+        <mo>&#1185;</mo>+      </mtd> +      <mtd>+        <mo>&#1201;</mo>+      </mtd> +      <mtd>+        <mo>&#1217;</mo>+      </mtd> +      <mtd>+        <mo>&#1233;</mo>+      </mtd> +      <mtd>+        <mo>&#1249;</mo>+      </mtd> +      <mtd>+        <mo>&#1265;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#1026;</mo>+      </mtd> +      <mtd>+        <mo>&#1042;</mo>+      </mtd> +      <mtd>+        <mo>&#1058;</mo>+      </mtd> +      <mtd>+        <mo>&#1074;</mo>+      </mtd> +      <mtd>+        <mo>&#1090;</mo>+      </mtd> +      <mtd>+        <mo>&#1106;</mo>+      </mtd> +      <mtd>+        <mo>&#1122;</mo>+      </mtd> +      <mtd>+        <mo>&#1138;</mo>+      </mtd> +      <mtd>+        <mo>&#1154;</mo>+      </mtd> +      <mtd>+        <mo>&#1170;</mo>+      </mtd> +      <mtd>+        <mo>&#1186;</mo>+      </mtd> +      <mtd>+        <mo>&#1202;</mo>+      </mtd> +      <mtd>+        <mo>&#1218;</mo>+      </mtd> +      <mtd>+        <mo>&#1234;</mo>+      </mtd> +      <mtd>+        <mo>&#1250;</mo>+      </mtd> +      <mtd>+        <mo>&#1266;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#1027;</mo>+      </mtd> +      <mtd>+        <mo>&#1043;</mo>+      </mtd> +      <mtd>+        <mo>&#1059;</mo>+      </mtd> +      <mtd>+        <mo>&#1075;</mo>+      </mtd> +      <mtd>+        <mo>&#1091;</mo>+      </mtd> +      <mtd>+        <mo>&#1107;</mo>+      </mtd> +      <mtd>+        <mo>&#1123;</mo>+      </mtd> +      <mtd>+        <mo>&#1139;</mo>+      </mtd> +      <mtd>+        <mo>&#1155;</mo>+      </mtd> +      <mtd>+        <mo>&#1171;</mo>+      </mtd> +      <mtd>+        <mo>&#1187;</mo>+      </mtd> +      <mtd>+        <mo>&#1203;</mo>+      </mtd> +      <mtd>+        <mo>&#1219;</mo>+      </mtd> +      <mtd>+        <mo>&#1235;</mo>+      </mtd> +      <mtd>+        <mo>&#1251;</mo>+      </mtd> +      <mtd>+        <mo>&#1267;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#1028;</mo>+      </mtd> +      <mtd>+        <mo>&#1044;</mo>+      </mtd> +      <mtd>+        <mo>&#1060;</mo>+      </mtd> +      <mtd>+        <mo>&#1076;</mo>+      </mtd> +      <mtd>+        <mo>&#1092;</mo>+      </mtd> +      <mtd>+        <mo>&#1108;</mo>+      </mtd> +      <mtd>+        <mo>&#1124;</mo>+      </mtd> +      <mtd>+        <mo>&#1140;</mo>+      </mtd> +      <mtd>+        <mo>&#1156;</mo>+      </mtd> +      <mtd>+        <mo>&#1172;</mo>+      </mtd> +      <mtd>+        <mo>&#1188;</mo>+      </mtd> +      <mtd>+        <mo>&#1204;</mo>+      </mtd> +      <mtd>+        <mo>&#1220;</mo>+      </mtd> +      <mtd>+        <mo>&#1236;</mo>+      </mtd> +      <mtd>+        <mo>&#1252;</mo>+      </mtd> +      <mtd>+        <mo>&#1268;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#1029;</mo>+      </mtd> +      <mtd>+        <mo>&#1045;</mo>+      </mtd> +      <mtd>+        <mo>&#1061;</mo>+      </mtd> +      <mtd>+        <mo>&#1077;</mo>+      </mtd> +      <mtd>+        <mo>&#1093;</mo>+      </mtd> +      <mtd>+        <mo>&#1109;</mo>+      </mtd> +      <mtd>+        <mo>&#1125;</mo>+      </mtd> +      <mtd>+        <mo>&#1141;</mo>+      </mtd> +      <mtd>+        <mo>&#1157;</mo>+      </mtd> +      <mtd>+        <mo>&#1173;</mo>+      </mtd> +      <mtd>+        <mo>&#1189;</mo>+      </mtd> +      <mtd>+        <mo>&#1205;</mo>+      </mtd> +      <mtd>+        <mo>&#1221;</mo>+      </mtd> +      <mtd>+        <mo>&#1237;</mo>+      </mtd> +      <mtd>+        <mo>&#1253;</mo>+      </mtd> +      <mtd>+        <mo>&#1269;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#1030;</mo>+      </mtd> +      <mtd>+        <mo>&#1046;</mo>+      </mtd> +      <mtd>+        <mo>&#1062;</mo>+      </mtd> +      <mtd>+        <mo>&#1078;</mo>+      </mtd> +      <mtd>+        <mo>&#1094;</mo>+      </mtd> +      <mtd>+        <mo>&#1110;</mo>+      </mtd> +      <mtd>+        <mo>&#1126;</mo>+      </mtd> +      <mtd>+        <mo>&#1142;</mo>+      </mtd> +      <mtd>+        <mo>&#1158;</mo>+      </mtd> +      <mtd>+        <mo>&#1174;</mo>+      </mtd> +      <mtd>+        <mo>&#1190;</mo>+      </mtd> +      <mtd>+        <mo>&#1206;</mo>+      </mtd> +      <mtd>+        <mo>&#1222;</mo>+      </mtd> +      <mtd>+        <mo>&#1238;</mo>+      </mtd> +      <mtd>+        <mo>&#1254;</mo>+      </mtd> +      <mtd>+        <mo>&#1270;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#1031;</mo>+      </mtd> +      <mtd>+        <mo>&#1047;</mo>+      </mtd> +      <mtd>+        <mo>&#1063;</mo>+      </mtd> +      <mtd>+        <mo>&#1079;</mo>+      </mtd> +      <mtd>+        <mo>&#1095;</mo>+      </mtd> +      <mtd>+        <mo>&#1111;</mo>+      </mtd> +      <mtd>+        <mo>&#1127;</mo>+      </mtd> +      <mtd>+        <mo>&#1143;</mo>+      </mtd> +      <mtd>+        <mo>&#1159;</mo>+      </mtd> +      <mtd>+        <mo>&#1175;</mo>+      </mtd> +      <mtd>+        <mo>&#1191;</mo>+      </mtd> +      <mtd>+        <mo>&#1207;</mo>+      </mtd> +      <mtd>+        <mo>&#1223;</mo>+      </mtd> +      <mtd>+        <mo>&#1239;</mo>+      </mtd> +      <mtd>+        <mo>&#1255;</mo>+      </mtd> +      <mtd>+        <mo>&#1271;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#1032;</mo>+      </mtd> +      <mtd>+        <mo>&#1048;</mo>+      </mtd> +      <mtd>+        <mo>&#1064;</mo>+      </mtd> +      <mtd>+        <mo>&#1080;</mo>+      </mtd> +      <mtd>+        <mo>&#1096;</mo>+      </mtd> +      <mtd>+        <mo>&#1112;</mo>+      </mtd> +      <mtd>+        <mo>&#1128;</mo>+      </mtd> +      <mtd>+        <mo>&#1144;</mo>+      </mtd> +      <mtd>+        <mo>&#1160;</mo>+      </mtd> +      <mtd>+        <mo>&#1176;</mo>+      </mtd> +      <mtd>+        <mo>&#1192;</mo>+      </mtd> +      <mtd>+        <mo>&#1208;</mo>+      </mtd> +      <mtd>+        <mo>&#1224;</mo>+      </mtd> +      <mtd>+        <mo>&#1240;</mo>+      </mtd> +      <mtd>+        <mo>&#1256;</mo>+      </mtd> +      <mtd>+        <mo>&#1272;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#1033;</mo>+      </mtd> +      <mtd>+        <mo>&#1049;</mo>+      </mtd> +      <mtd>+        <mo>&#1065;</mo>+      </mtd> +      <mtd>+        <mo>&#1081;</mo>+      </mtd> +      <mtd>+        <mo>&#1097;</mo>+      </mtd> +      <mtd>+        <mo>&#1113;</mo>+      </mtd> +      <mtd>+        <mo>&#1129;</mo>+      </mtd> +      <mtd>+        <mo>&#1145;</mo>+      </mtd> +      <mtd>+        <mo>&#1161;</mo>+      </mtd> +      <mtd>+        <mo>&#1177;</mo>+      </mtd> +      <mtd>+        <mo>&#1193;</mo>+      </mtd> +      <mtd>+        <mo>&#1209;</mo>+      </mtd> +      <mtd>+        <mo>&#1225;</mo>+      </mtd> +      <mtd>+        <mo>&#1241;</mo>+      </mtd> +      <mtd>+        <mo>&#1257;</mo>+      </mtd> +      <mtd>+        <mo>&#1273;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#1034;</mo>+      </mtd> +      <mtd>+        <mo>&#1050;</mo>+      </mtd> +      <mtd>+        <mo>&#1066;</mo>+      </mtd> +      <mtd>+        <mo>&#1082;</mo>+      </mtd> +      <mtd>+        <mo>&#1098;</mo>+      </mtd> +      <mtd>+        <mo>&#1114;</mo>+      </mtd> +      <mtd>+        <mo>&#1130;</mo>+      </mtd> +      <mtd>+        <mo>&#1146;</mo>+      </mtd> +      <mtd>+        <mo>&#1162;</mo>+      </mtd> +      <mtd>+        <mo>&#1178;</mo>+      </mtd> +      <mtd>+        <mo>&#1194;</mo>+      </mtd> +      <mtd>+        <mo>&#1210;</mo>+      </mtd> +      <mtd>+        <mo>&#1226;</mo>+      </mtd> +      <mtd>+        <mo>&#1242;</mo>+      </mtd> +      <mtd>+        <mo>&#1258;</mo>+      </mtd> +      <mtd>+        <mo>&#1274;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#1035;</mo>+      </mtd> +      <mtd>+        <mo>&#1051;</mo>+      </mtd> +      <mtd>+        <mo>&#1067;</mo>+      </mtd> +      <mtd>+        <mo>&#1083;</mo>+      </mtd> +      <mtd>+        <mo>&#1099;</mo>+      </mtd> +      <mtd>+        <mo>&#1115;</mo>+      </mtd> +      <mtd>+        <mo>&#1131;</mo>+      </mtd> +      <mtd>+        <mo>&#1147;</mo>+      </mtd> +      <mtd>+        <mo>&#1163;</mo>+      </mtd> +      <mtd>+        <mo>&#1179;</mo>+      </mtd> +      <mtd>+        <mo>&#1195;</mo>+      </mtd> +      <mtd>+        <mo>&#1211;</mo>+      </mtd> +      <mtd>+        <mo>&#1227;</mo>+      </mtd> +      <mtd>+        <mo>&#1243;</mo>+      </mtd> +      <mtd>+        <mo>&#1259;</mo>+      </mtd> +      <mtd>+        <mo>&#1275;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#1036;</mo>+      </mtd> +      <mtd>+        <mo>&#1052;</mo>+      </mtd> +      <mtd>+        <mo>&#1068;</mo>+      </mtd> +      <mtd>+        <mo>&#1084;</mo>+      </mtd> +      <mtd>+        <mo>&#1100;</mo>+      </mtd> +      <mtd>+        <mo>&#1116;</mo>+      </mtd> +      <mtd>+        <mo>&#1132;</mo>+      </mtd> +      <mtd>+        <mo>&#1148;</mo>+      </mtd> +      <mtd>+        <mo>&#1164;</mo>+      </mtd> +      <mtd>+        <mo>&#1180;</mo>+      </mtd> +      <mtd>+        <mo>&#1196;</mo>+      </mtd> +      <mtd>+        <mo>&#1212;</mo>+      </mtd> +      <mtd>+        <mo>&#1228;</mo>+      </mtd> +      <mtd>+        <mo>&#1244;</mo>+      </mtd> +      <mtd>+        <mo>&#1260;</mo>+      </mtd> +      <mtd>+        <mo>&#1276;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#1037;</mo>+      </mtd> +      <mtd>+        <mo>&#1053;</mo>+      </mtd> +      <mtd>+        <mo>&#1069;</mo>+      </mtd> +      <mtd>+        <mo>&#1085;</mo>+      </mtd> +      <mtd>+        <mo>&#1101;</mo>+      </mtd> +      <mtd>+        <mo>&#1117;</mo>+      </mtd> +      <mtd>+        <mo>&#1133;</mo>+      </mtd> +      <mtd>+        <mo>&#1149;</mo>+      </mtd> +      <mtd>+        <mo>&#1165;</mo>+      </mtd> +      <mtd>+        <mo>&#1181;</mo>+      </mtd> +      <mtd>+        <mo>&#1197;</mo>+      </mtd> +      <mtd>+        <mo>&#1213;</mo>+      </mtd> +      <mtd>+        <mo>&#1229;</mo>+      </mtd> +      <mtd>+        <mo>&#1245;</mo>+      </mtd> +      <mtd>+        <mo>&#1261;</mo>+      </mtd> +      <mtd>+        <mo>&#1277;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#1038;</mo>+      </mtd> +      <mtd>+        <mo>&#1054;</mo>+      </mtd> +      <mtd>+        <mo>&#1070;</mo>+      </mtd> +      <mtd>+        <mo>&#1086;</mo>+      </mtd> +      <mtd>+        <mo>&#1102;</mo>+      </mtd> +      <mtd>+        <mo>&#1118;</mo>+      </mtd> +      <mtd>+        <mo>&#1134;</mo>+      </mtd> +      <mtd>+        <mo>&#1150;</mo>+      </mtd> +      <mtd>+        <mo>&#1166;</mo>+      </mtd> +      <mtd>+        <mo>&#1182;</mo>+      </mtd> +      <mtd>+        <mo>&#1198;</mo>+      </mtd> +      <mtd>+        <mo>&#1214;</mo>+      </mtd> +      <mtd>+        <mo>&#1230;</mo>+      </mtd> +      <mtd>+        <mo>&#1246;</mo>+      </mtd> +      <mtd>+        <mo>&#1262;</mo>+      </mtd> +      <mtd>+        <mo>&#1278;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#1039;</mo>+      </mtd> +      <mtd>+        <mo>&#1055;</mo>+      </mtd> +      <mtd>+        <mo>&#1071;</mo>+      </mtd> +      <mtd>+        <mo>&#1087;</mo>+      </mtd> +      <mtd>+        <mo>&#1103;</mo>+      </mtd> +      <mtd>+        <mo>&#1119;</mo>+      </mtd> +      <mtd>+        <mo>&#1135;</mo>+      </mtd> +      <mtd>+        <mo>&#1151;</mo>+      </mtd> +      <mtd>+        <mo>&#1167;</mo>+      </mtd> +      <mtd>+        <mo>&#1183;</mo>+      </mtd> +      <mtd>+        <mo>&#1199;</mo>+      </mtd> +      <mtd>+        <mo>&#1215;</mo>+      </mtd> +      <mtd>+        <mo>&#1231;</mo>+      </mtd> +      <mtd>+        <mo>&#1247;</mo>+      </mtd> +      <mtd>+        <mo>&#1263;</mo>+      </mtd> +      <mtd>+        <mo>&#1279;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "40" ]+      , [ EText TextNormal "41" ]+      , [ EText TextNormal "42" ]+      , [ EText TextNormal "43" ]+      , [ EText TextNormal "44" ]+      , [ EText TextNormal "45" ]+      , [ EText TextNormal "46" ]+      , [ EText TextNormal "47" ]+      , [ EText TextNormal "48" ]+      , [ EText TextNormal "49" ]+      , [ EText TextNormal "4A" ]+      , [ EText TextNormal "4B" ]+      , [ EText TextNormal "4C" ]+      , [ EText TextNormal "4D" ]+      , [ EText TextNormal "4E" ]+      , [ EText TextNormal "4F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\1024" ]+      , [ ESymbol Ord "\1040" ]+      , [ ESymbol Ord "\1056" ]+      , [ ESymbol Ord "\1072" ]+      , [ ESymbol Ord "\1088" ]+      , [ ESymbol Ord "\1104" ]+      , [ ESymbol Ord "\1120" ]+      , [ ESymbol Ord "\1136" ]+      , [ ESymbol Ord "\1152" ]+      , [ ESymbol Ord "\1168" ]+      , [ ESymbol Ord "\1184" ]+      , [ ESymbol Ord "\1200" ]+      , [ ESymbol Ord "\1216" ]+      , [ ESymbol Ord "\1232" ]+      , [ ESymbol Ord "\1248" ]+      , [ ESymbol Ord "\1264" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\1025" ]+      , [ ESymbol Ord "\1041" ]+      , [ ESymbol Ord "\1057" ]+      , [ ESymbol Ord "\1073" ]+      , [ ESymbol Ord "\1089" ]+      , [ ESymbol Ord "\1105" ]+      , [ ESymbol Ord "\1121" ]+      , [ ESymbol Ord "\1137" ]+      , [ ESymbol Ord "\1153" ]+      , [ ESymbol Ord "\1169" ]+      , [ ESymbol Ord "\1185" ]+      , [ ESymbol Ord "\1201" ]+      , [ ESymbol Ord "\1217" ]+      , [ ESymbol Ord "\1233" ]+      , [ ESymbol Ord "\1249" ]+      , [ ESymbol Ord "\1265" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\1026" ]+      , [ ESymbol Ord "\1042" ]+      , [ ESymbol Ord "\1058" ]+      , [ ESymbol Ord "\1074" ]+      , [ ESymbol Ord "\1090" ]+      , [ ESymbol Ord "\1106" ]+      , [ ESymbol Ord "\1122" ]+      , [ ESymbol Ord "\1138" ]+      , [ ESymbol Ord "\1154" ]+      , [ ESymbol Ord "\1170" ]+      , [ ESymbol Ord "\1186" ]+      , [ ESymbol Ord "\1202" ]+      , [ ESymbol Ord "\1218" ]+      , [ ESymbol Ord "\1234" ]+      , [ ESymbol Ord "\1250" ]+      , [ ESymbol Ord "\1266" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\1027" ]+      , [ ESymbol Ord "\1043" ]+      , [ ESymbol Ord "\1059" ]+      , [ ESymbol Ord "\1075" ]+      , [ ESymbol Ord "\1091" ]+      , [ ESymbol Ord "\1107" ]+      , [ ESymbol Ord "\1123" ]+      , [ ESymbol Ord "\1139" ]+      , [ ESymbol Ord "\1155" ]+      , [ ESymbol Ord "\1171" ]+      , [ ESymbol Ord "\1187" ]+      , [ ESymbol Ord "\1203" ]+      , [ ESymbol Ord "\1219" ]+      , [ ESymbol Ord "\1235" ]+      , [ ESymbol Ord "\1251" ]+      , [ ESymbol Ord "\1267" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\1028" ]+      , [ ESymbol Ord "\1044" ]+      , [ ESymbol Ord "\1060" ]+      , [ ESymbol Ord "\1076" ]+      , [ ESymbol Ord "\1092" ]+      , [ ESymbol Ord "\1108" ]+      , [ ESymbol Ord "\1124" ]+      , [ ESymbol Ord "\1140" ]+      , [ ESymbol Ord "\1156" ]+      , [ ESymbol Ord "\1172" ]+      , [ ESymbol Ord "\1188" ]+      , [ ESymbol Ord "\1204" ]+      , [ ESymbol Ord "\1220" ]+      , [ ESymbol Ord "\1236" ]+      , [ ESymbol Ord "\1252" ]+      , [ ESymbol Ord "\1268" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\1029" ]+      , [ ESymbol Ord "\1045" ]+      , [ ESymbol Ord "\1061" ]+      , [ ESymbol Ord "\1077" ]+      , [ ESymbol Ord "\1093" ]+      , [ ESymbol Ord "\1109" ]+      , [ ESymbol Ord "\1125" ]+      , [ ESymbol Ord "\1141" ]+      , [ ESymbol Ord "\1157" ]+      , [ ESymbol Ord "\1173" ]+      , [ ESymbol Ord "\1189" ]+      , [ ESymbol Ord "\1205" ]+      , [ ESymbol Ord "\1221" ]+      , [ ESymbol Ord "\1237" ]+      , [ ESymbol Ord "\1253" ]+      , [ ESymbol Ord "\1269" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\1030" ]+      , [ ESymbol Ord "\1046" ]+      , [ ESymbol Ord "\1062" ]+      , [ ESymbol Ord "\1078" ]+      , [ ESymbol Ord "\1094" ]+      , [ ESymbol Ord "\1110" ]+      , [ ESymbol Ord "\1126" ]+      , [ ESymbol Ord "\1142" ]+      , [ ESymbol Ord "\1158" ]+      , [ ESymbol Ord "\1174" ]+      , [ ESymbol Ord "\1190" ]+      , [ ESymbol Ord "\1206" ]+      , [ ESymbol Ord "\1222" ]+      , [ ESymbol Ord "\1238" ]+      , [ ESymbol Ord "\1254" ]+      , [ ESymbol Ord "\1270" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\1031" ]+      , [ ESymbol Ord "\1047" ]+      , [ ESymbol Ord "\1063" ]+      , [ ESymbol Ord "\1079" ]+      , [ ESymbol Ord "\1095" ]+      , [ ESymbol Ord "\1111" ]+      , [ ESymbol Ord "\1127" ]+      , [ ESymbol Ord "\1143" ]+      , [ ESymbol Ord "\1159" ]+      , [ ESymbol Ord "\1175" ]+      , [ ESymbol Ord "\1191" ]+      , [ ESymbol Ord "\1207" ]+      , [ ESymbol Ord "\1223" ]+      , [ ESymbol Ord "\1239" ]+      , [ ESymbol Ord "\1255" ]+      , [ ESymbol Ord "\1271" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\1032" ]+      , [ ESymbol Ord "\1048" ]+      , [ ESymbol Alpha "\1064" ]+      , [ ESymbol Ord "\1080" ]+      , [ ESymbol Ord "\1096" ]+      , [ ESymbol Ord "\1112" ]+      , [ ESymbol Ord "\1128" ]+      , [ ESymbol Ord "\1144" ]+      , [ ESymbol Ord "\1160" ]+      , [ ESymbol Ord "\1176" ]+      , [ ESymbol Ord "\1192" ]+      , [ ESymbol Ord "\1208" ]+      , [ ESymbol Ord "\1224" ]+      , [ ESymbol Ord "\1240" ]+      , [ ESymbol Ord "\1256" ]+      , [ ESymbol Ord "\1272" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\1033" ]+      , [ ESymbol Ord "\1049" ]+      , [ ESymbol Ord "\1065" ]+      , [ ESymbol Ord "\1081" ]+      , [ ESymbol Ord "\1097" ]+      , [ ESymbol Ord "\1113" ]+      , [ ESymbol Ord "\1129" ]+      , [ ESymbol Ord "\1145" ]+      , [ ESymbol Ord "\1161" ]+      , [ ESymbol Ord "\1177" ]+      , [ ESymbol Ord "\1193" ]+      , [ ESymbol Ord "\1209" ]+      , [ ESymbol Ord "\1225" ]+      , [ ESymbol Ord "\1241" ]+      , [ ESymbol Ord "\1257" ]+      , [ ESymbol Ord "\1273" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\1034" ]+      , [ ESymbol Ord "\1050" ]+      , [ ESymbol Ord "\1066" ]+      , [ ESymbol Ord "\1082" ]+      , [ ESymbol Ord "\1098" ]+      , [ ESymbol Ord "\1114" ]+      , [ ESymbol Ord "\1130" ]+      , [ ESymbol Ord "\1146" ]+      , [ ESymbol Ord "\1162" ]+      , [ ESymbol Ord "\1178" ]+      , [ ESymbol Ord "\1194" ]+      , [ ESymbol Ord "\1210" ]+      , [ ESymbol Ord "\1226" ]+      , [ ESymbol Ord "\1242" ]+      , [ ESymbol Ord "\1258" ]+      , [ ESymbol Ord "\1274" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\1035" ]+      , [ ESymbol Ord "\1051" ]+      , [ ESymbol Ord "\1067" ]+      , [ ESymbol Ord "\1083" ]+      , [ ESymbol Ord "\1099" ]+      , [ ESymbol Ord "\1115" ]+      , [ ESymbol Ord "\1131" ]+      , [ ESymbol Ord "\1147" ]+      , [ ESymbol Ord "\1163" ]+      , [ ESymbol Ord "\1179" ]+      , [ ESymbol Ord "\1195" ]+      , [ ESymbol Ord "\1211" ]+      , [ ESymbol Ord "\1227" ]+      , [ ESymbol Ord "\1243" ]+      , [ ESymbol Ord "\1259" ]+      , [ ESymbol Ord "\1275" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\1036" ]+      , [ ESymbol Ord "\1052" ]+      , [ ESymbol Ord "\1068" ]+      , [ ESymbol Ord "\1084" ]+      , [ ESymbol Ord "\1100" ]+      , [ ESymbol Ord "\1116" ]+      , [ ESymbol Ord "\1132" ]+      , [ ESymbol Ord "\1148" ]+      , [ ESymbol Ord "\1164" ]+      , [ ESymbol Ord "\1180" ]+      , [ ESymbol Ord "\1196" ]+      , [ ESymbol Ord "\1212" ]+      , [ ESymbol Ord "\1228" ]+      , [ ESymbol Ord "\1244" ]+      , [ ESymbol Ord "\1260" ]+      , [ ESymbol Ord "\1276" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\1037" ]+      , [ ESymbol Ord "\1053" ]+      , [ ESymbol Ord "\1069" ]+      , [ ESymbol Ord "\1085" ]+      , [ ESymbol Ord "\1101" ]+      , [ ESymbol Ord "\1117" ]+      , [ ESymbol Ord "\1133" ]+      , [ ESymbol Ord "\1149" ]+      , [ ESymbol Ord "\1165" ]+      , [ ESymbol Ord "\1181" ]+      , [ ESymbol Ord "\1197" ]+      , [ ESymbol Ord "\1213" ]+      , [ ESymbol Ord "\1229" ]+      , [ ESymbol Ord "\1245" ]+      , [ ESymbol Ord "\1261" ]+      , [ ESymbol Ord "\1277" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\1038" ]+      , [ ESymbol Ord "\1054" ]+      , [ ESymbol Ord "\1070" ]+      , [ ESymbol Ord "\1086" ]+      , [ ESymbol Ord "\1102" ]+      , [ ESymbol Ord "\1118" ]+      , [ ESymbol Ord "\1134" ]+      , [ ESymbol Ord "\1150" ]+      , [ ESymbol Ord "\1166" ]+      , [ ESymbol Ord "\1182" ]+      , [ ESymbol Ord "\1198" ]+      , [ ESymbol Ord "\1214" ]+      , [ ESymbol Ord "\1230" ]+      , [ ESymbol Ord "\1246" ]+      , [ ESymbol Ord "\1262" ]+      , [ ESymbol Ord "\1278" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\1039" ]+      , [ ESymbol Ord "\1055" ]+      , [ ESymbol Ord "\1071" ]+      , [ ESymbol Ord "\1087" ]+      , [ ESymbol Ord "\1103" ]+      , [ ESymbol Ord "\1119" ]+      , [ ESymbol Ord "\1135" ]+      , [ ESymbol Ord "\1151" ]+      , [ ESymbol Ord "\1167" ]+      , [ ESymbol Ord "\1183" ]+      , [ ESymbol Ord "\1199" ]+      , [ ESymbol Ord "\1215" ]+      , [ ESymbol Ord "\1231" ]+      , [ ESymbol Ord "\1247" ]+      , [ ESymbol Ord "\1263" ]+      , [ ESymbol Ord "\1279" ]+      ]+    ]+]
+ test/reader/mml/01E00_Latin_Extended_Additional.test view
@@ -0,0 +1,1233 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1E0</mtext>+      </mtd> +      <mtd>+        <mtext>1E1</mtext>+      </mtd> +      <mtd>+        <mtext>1E2</mtext>+      </mtd> +      <mtd>+        <mtext>1E3</mtext>+      </mtd> +      <mtd>+        <mtext>1E4</mtext>+      </mtd> +      <mtd>+        <mtext>1E5</mtext>+      </mtd> +      <mtd>+        <mtext>1E6</mtext>+      </mtd> +      <mtd>+        <mtext>1E7</mtext>+      </mtd> +      <mtd>+        <mtext>1E8</mtext>+      </mtd> +      <mtd>+        <mtext>1E9</mtext>+      </mtd> +      <mtd>+        <mtext>1EA</mtext>+      </mtd> +      <mtd>+        <mtext>1EB</mtext>+      </mtd> +      <mtd>+        <mtext>1EC</mtext>+      </mtd> +      <mtd>+        <mtext>1ED</mtext>+      </mtd> +      <mtd>+        <mtext>1EE</mtext>+      </mtd> +      <mtd>+        <mtext>1EF</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E00;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E10;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E20;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E30;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E40;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E50;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E60;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E70;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E80;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E90;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF0;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E01;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E11;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E21;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E31;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E41;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E51;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E61;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E71;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E81;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E91;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF1;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E02;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E12;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E22;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E32;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E42;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E52;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E62;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E72;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E82;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E92;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF2;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E03;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E13;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E23;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E33;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E43;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E53;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E63;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E73;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E83;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E93;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF3;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E04;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E14;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E24;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E34;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E44;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E54;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E64;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E74;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E84;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E94;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA4;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB4;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC4;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED4;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE4;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF4;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E05;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E15;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E25;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E35;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E45;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E55;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E65;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E75;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E85;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E95;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA5;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB5;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC5;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED5;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE5;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF5;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E06;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E16;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E26;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E36;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E46;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E56;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E66;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E76;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E86;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E96;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF6;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E07;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E17;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E27;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E37;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E47;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E57;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E67;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E77;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E87;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E97;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF7;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E08;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E18;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E28;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E38;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E48;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E58;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E68;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E78;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E88;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E98;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF8;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E09;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E19;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E29;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E39;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E49;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E59;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E69;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E79;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E89;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E99;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EA9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EB9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EC9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ED9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EE9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EF9;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E0A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E1A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E2A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E3A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E4A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E5A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E6A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E7A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E8A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E9A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EAA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EBA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ECA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EDA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EEA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EFA;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E0B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E1B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E2B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E3B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E4B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E5B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E6B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E7B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E8B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E9B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EAB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EBB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ECB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EDB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EEB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EFB;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E0C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E1C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E2C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E3C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E4C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E5C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E6C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E7C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E8C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E9C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EAC;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EBC;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ECC;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EDC;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EEC;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EFC;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E0D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E1D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E2D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E3D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E4D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E5D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E6D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E7D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E8D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E9D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EAD;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EBD;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ECD;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EDD;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EED;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EFD;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E0E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E1E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E2E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E3E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E4E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E5E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E6E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E7E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E8E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E9E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EAE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EBE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ECE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EDE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EEE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EFE;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#x1E0F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E1F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E2F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E3F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E4F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E5F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E6F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E7F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E8F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1E9F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EAF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EBF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1ECF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EDF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EEF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1EFF;</mo>+      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1E0" ]+      , [ EText TextNormal "1E1" ]+      , [ EText TextNormal "1E2" ]+      , [ EText TextNormal "1E3" ]+      , [ EText TextNormal "1E4" ]+      , [ EText TextNormal "1E5" ]+      , [ EText TextNormal "1E6" ]+      , [ EText TextNormal "1E7" ]+      , [ EText TextNormal "1E8" ]+      , [ EText TextNormal "1E9" ]+      , [ EText TextNormal "1EA" ]+      , [ EText TextNormal "1EB" ]+      , [ EText TextNormal "1EC" ]+      , [ EText TextNormal "1ED" ]+      , [ EText TextNormal "1EE" ]+      , [ EText TextNormal "1EF" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\7680" ]+      , [ ESymbol Ord "\7696" ]+      , [ ESymbol Ord "\7712" ]+      , [ ESymbol Ord "\7728" ]+      , [ ESymbol Ord "\7744" ]+      , [ ESymbol Ord "\7760" ]+      , [ ESymbol Ord "\7776" ]+      , [ ESymbol Ord "\7792" ]+      , [ ESymbol Ord "\7808" ]+      , [ ESymbol Ord "\7824" ]+      , [ ESymbol Ord "\7840" ]+      , [ ESymbol Ord "\7856" ]+      , [ ESymbol Ord "\7872" ]+      , [ ESymbol Ord "\7888" ]+      , [ ESymbol Ord "\7904" ]+      , [ ESymbol Ord "\7920" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\7681" ]+      , [ ESymbol Ord "\7697" ]+      , [ ESymbol Ord "\7713" ]+      , [ ESymbol Ord "\7729" ]+      , [ ESymbol Ord "\7745" ]+      , [ ESymbol Ord "\7761" ]+      , [ ESymbol Ord "\7777" ]+      , [ ESymbol Ord "\7793" ]+      , [ ESymbol Ord "\7809" ]+      , [ ESymbol Ord "\7825" ]+      , [ ESymbol Ord "\7841" ]+      , [ ESymbol Ord "\7857" ]+      , [ ESymbol Ord "\7873" ]+      , [ ESymbol Ord "\7889" ]+      , [ ESymbol Ord "\7905" ]+      , [ ESymbol Ord "\7921" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\7682" ]+      , [ ESymbol Ord "\7698" ]+      , [ ESymbol Ord "\7714" ]+      , [ ESymbol Ord "\7730" ]+      , [ ESymbol Ord "\7746" ]+      , [ ESymbol Ord "\7762" ]+      , [ ESymbol Ord "\7778" ]+      , [ ESymbol Ord "\7794" ]+      , [ ESymbol Ord "\7810" ]+      , [ ESymbol Ord "\7826" ]+      , [ ESymbol Ord "\7842" ]+      , [ ESymbol Ord "\7858" ]+      , [ ESymbol Ord "\7874" ]+      , [ ESymbol Ord "\7890" ]+      , [ ESymbol Ord "\7906" ]+      , [ ESymbol Ord "\7922" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\7683" ]+      , [ ESymbol Ord "\7699" ]+      , [ ESymbol Ord "\7715" ]+      , [ ESymbol Ord "\7731" ]+      , [ ESymbol Ord "\7747" ]+      , [ ESymbol Ord "\7763" ]+      , [ ESymbol Ord "\7779" ]+      , [ ESymbol Ord "\7795" ]+      , [ ESymbol Ord "\7811" ]+      , [ ESymbol Ord "\7827" ]+      , [ ESymbol Ord "\7843" ]+      , [ ESymbol Ord "\7859" ]+      , [ ESymbol Ord "\7875" ]+      , [ ESymbol Ord "\7891" ]+      , [ ESymbol Ord "\7907" ]+      , [ ESymbol Ord "\7923" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\7684" ]+      , [ ESymbol Ord "\7700" ]+      , [ ESymbol Ord "\7716" ]+      , [ ESymbol Ord "\7732" ]+      , [ ESymbol Ord "\7748" ]+      , [ ESymbol Ord "\7764" ]+      , [ ESymbol Ord "\7780" ]+      , [ ESymbol Ord "\7796" ]+      , [ ESymbol Ord "\7812" ]+      , [ ESymbol Ord "\7828" ]+      , [ ESymbol Ord "\7844" ]+      , [ ESymbol Ord "\7860" ]+      , [ ESymbol Ord "\7876" ]+      , [ ESymbol Ord "\7892" ]+      , [ ESymbol Ord "\7908" ]+      , [ ESymbol Ord "\7924" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\7685" ]+      , [ ESymbol Ord "\7701" ]+      , [ ESymbol Ord "\7717" ]+      , [ ESymbol Ord "\7733" ]+      , [ ESymbol Ord "\7749" ]+      , [ ESymbol Ord "\7765" ]+      , [ ESymbol Ord "\7781" ]+      , [ ESymbol Ord "\7797" ]+      , [ ESymbol Ord "\7813" ]+      , [ ESymbol Ord "\7829" ]+      , [ ESymbol Ord "\7845" ]+      , [ ESymbol Ord "\7861" ]+      , [ ESymbol Ord "\7877" ]+      , [ ESymbol Ord "\7893" ]+      , [ ESymbol Ord "\7909" ]+      , [ ESymbol Ord "\7925" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\7686" ]+      , [ ESymbol Ord "\7702" ]+      , [ ESymbol Ord "\7718" ]+      , [ ESymbol Ord "\7734" ]+      , [ ESymbol Ord "\7750" ]+      , [ ESymbol Ord "\7766" ]+      , [ ESymbol Ord "\7782" ]+      , [ ESymbol Ord "\7798" ]+      , [ ESymbol Ord "\7814" ]+      , [ ESymbol Ord "\7830" ]+      , [ ESymbol Ord "\7846" ]+      , [ ESymbol Ord "\7862" ]+      , [ ESymbol Ord "\7878" ]+      , [ ESymbol Ord "\7894" ]+      , [ ESymbol Ord "\7910" ]+      , [ ESymbol Ord "\7926" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\7687" ]+      , [ ESymbol Ord "\7703" ]+      , [ ESymbol Ord "\7719" ]+      , [ ESymbol Ord "\7735" ]+      , [ ESymbol Ord "\7751" ]+      , [ ESymbol Ord "\7767" ]+      , [ ESymbol Ord "\7783" ]+      , [ ESymbol Ord "\7799" ]+      , [ ESymbol Ord "\7815" ]+      , [ ESymbol Ord "\7831" ]+      , [ ESymbol Ord "\7847" ]+      , [ ESymbol Ord "\7863" ]+      , [ ESymbol Ord "\7879" ]+      , [ ESymbol Ord "\7895" ]+      , [ ESymbol Ord "\7911" ]+      , [ ESymbol Ord "\7927" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\7688" ]+      , [ ESymbol Ord "\7704" ]+      , [ ESymbol Ord "\7720" ]+      , [ ESymbol Ord "\7736" ]+      , [ ESymbol Ord "\7752" ]+      , [ ESymbol Ord "\7768" ]+      , [ ESymbol Ord "\7784" ]+      , [ ESymbol Ord "\7800" ]+      , [ ESymbol Ord "\7816" ]+      , [ ESymbol Ord "\7832" ]+      , [ ESymbol Ord "\7848" ]+      , [ ESymbol Ord "\7864" ]+      , [ ESymbol Ord "\7880" ]+      , [ ESymbol Ord "\7896" ]+      , [ ESymbol Ord "\7912" ]+      , [ ESymbol Ord "\7928" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\7689" ]+      , [ ESymbol Ord "\7705" ]+      , [ ESymbol Ord "\7721" ]+      , [ ESymbol Ord "\7737" ]+      , [ ESymbol Ord "\7753" ]+      , [ ESymbol Ord "\7769" ]+      , [ ESymbol Ord "\7785" ]+      , [ ESymbol Ord "\7801" ]+      , [ ESymbol Ord "\7817" ]+      , [ ESymbol Ord "\7833" ]+      , [ ESymbol Ord "\7849" ]+      , [ ESymbol Ord "\7865" ]+      , [ ESymbol Ord "\7881" ]+      , [ ESymbol Ord "\7897" ]+      , [ ESymbol Ord "\7913" ]+      , [ ESymbol Ord "\7929" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\7690" ]+      , [ ESymbol Ord "\7706" ]+      , [ ESymbol Ord "\7722" ]+      , [ ESymbol Ord "\7738" ]+      , [ ESymbol Ord "\7754" ]+      , [ ESymbol Ord "\7770" ]+      , [ ESymbol Ord "\7786" ]+      , [ ESymbol Ord "\7802" ]+      , [ ESymbol Ord "\7818" ]+      , [ ESymbol Ord "\7834" ]+      , [ ESymbol Ord "\7850" ]+      , [ ESymbol Ord "\7866" ]+      , [ ESymbol Ord "\7882" ]+      , [ ESymbol Ord "\7898" ]+      , [ ESymbol Ord "\7914" ]+      , [ ESymbol Ord "\7930" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\7691" ]+      , [ ESymbol Ord "\7707" ]+      , [ ESymbol Ord "\7723" ]+      , [ ESymbol Ord "\7739" ]+      , [ ESymbol Ord "\7755" ]+      , [ ESymbol Ord "\7771" ]+      , [ ESymbol Ord "\7787" ]+      , [ ESymbol Ord "\7803" ]+      , [ ESymbol Ord "\7819" ]+      , [ ESymbol Ord "\7835" ]+      , [ ESymbol Ord "\7851" ]+      , [ ESymbol Ord "\7867" ]+      , [ ESymbol Ord "\7883" ]+      , [ ESymbol Ord "\7899" ]+      , [ ESymbol Ord "\7915" ]+      , [ ESymbol Ord "\7931" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\7692" ]+      , [ ESymbol Ord "\7708" ]+      , [ ESymbol Ord "\7724" ]+      , [ ESymbol Ord "\7740" ]+      , [ ESymbol Ord "\7756" ]+      , [ ESymbol Ord "\7772" ]+      , [ ESymbol Ord "\7788" ]+      , [ ESymbol Ord "\7804" ]+      , [ ESymbol Ord "\7820" ]+      , [ ESymbol Ord "\7836" ]+      , [ ESymbol Ord "\7852" ]+      , [ ESymbol Ord "\7868" ]+      , [ ESymbol Ord "\7884" ]+      , [ ESymbol Ord "\7900" ]+      , [ ESymbol Ord "\7916" ]+      , [ ESymbol Ord "\7932" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\7693" ]+      , [ ESymbol Ord "\7709" ]+      , [ ESymbol Ord "\7725" ]+      , [ ESymbol Ord "\7741" ]+      , [ ESymbol Ord "\7757" ]+      , [ ESymbol Ord "\7773" ]+      , [ ESymbol Ord "\7789" ]+      , [ ESymbol Ord "\7805" ]+      , [ ESymbol Ord "\7821" ]+      , [ ESymbol Ord "\7837" ]+      , [ ESymbol Ord "\7853" ]+      , [ ESymbol Ord "\7869" ]+      , [ ESymbol Ord "\7885" ]+      , [ ESymbol Ord "\7901" ]+      , [ ESymbol Ord "\7917" ]+      , [ ESymbol Ord "\7933" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\7694" ]+      , [ ESymbol Ord "\7710" ]+      , [ ESymbol Ord "\7726" ]+      , [ ESymbol Ord "\7742" ]+      , [ ESymbol Ord "\7758" ]+      , [ ESymbol Ord "\7774" ]+      , [ ESymbol Ord "\7790" ]+      , [ ESymbol Ord "\7806" ]+      , [ ESymbol Ord "\7822" ]+      , [ ESymbol Ord "\7838" ]+      , [ ESymbol Ord "\7854" ]+      , [ ESymbol Ord "\7870" ]+      , [ ESymbol Ord "\7886" ]+      , [ ESymbol Ord "\7902" ]+      , [ ESymbol Ord "\7918" ]+      , [ ESymbol Ord "\7934" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\7695" ]+      , [ ESymbol Ord "\7711" ]+      , [ ESymbol Ord "\7727" ]+      , [ ESymbol Ord "\7743" ]+      , [ ESymbol Ord "\7759" ]+      , [ ESymbol Ord "\7775" ]+      , [ ESymbol Ord "\7791" ]+      , [ ESymbol Ord "\7807" ]+      , [ ESymbol Ord "\7823" ]+      , [ ESymbol Ord "\7839" ]+      , [ ESymbol Ord "\7855" ]+      , [ ESymbol Ord "\7871" ]+      , [ ESymbol Ord "\7887" ]+      , [ ESymbol Ord "\7903" ]+      , [ ESymbol Ord "\7919" ]+      , [ ESymbol Ord "\7935" ]+      ]+    ]+]
+ test/reader/mml/01F00_Greek_Extended.test view
@@ -0,0 +1,1233 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1F0</mtext>+      </mtd> +      <mtd>+        <mtext>1F1</mtext>+      </mtd> +      <mtd>+        <mtext>1F2</mtext>+      </mtd> +      <mtd>+        <mtext>1F3</mtext>+      </mtd> +      <mtd>+        <mtext>1F4</mtext>+      </mtd> +      <mtd>+        <mtext>1F5</mtext>+      </mtd> +      <mtd>+        <mtext>1F6</mtext>+      </mtd> +      <mtd>+        <mtext>1F7</mtext>+      </mtd> +      <mtd>+        <mtext>1F8</mtext>+      </mtd> +      <mtd>+        <mtext>1F9</mtext>+      </mtd> +      <mtd>+        <mtext>1FA</mtext>+      </mtd> +      <mtd>+        <mtext>1FB</mtext>+      </mtd> +      <mtd>+        <mtext>1FC</mtext>+      </mtd> +      <mtd>+        <mtext>1FD</mtext>+      </mtd> +      <mtd>+        <mtext>1FE</mtext>+      </mtd> +      <mtd>+        <mtext>1FF</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F00;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F10;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F20;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F30;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F40;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F50;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F60;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F70;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F80;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F90;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FD0;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE0;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F01;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F11;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F21;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F31;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F41;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F51;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F61;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F71;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F81;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F91;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FD1;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE1;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F02;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F12;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F22;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F32;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F42;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F52;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F62;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F72;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F82;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F92;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FD2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE2;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FF2;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F03;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F13;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F23;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F33;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F43;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F53;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F63;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F73;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F83;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F93;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FD3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE3;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FF3;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F04;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F14;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F24;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F34;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F44;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F54;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F64;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F74;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F84;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F94;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA4;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB4;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC4;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE4;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FF4;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F05;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F15;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F25;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F35;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F45;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F55;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F65;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F75;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F85;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F95;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA5;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE5;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F06;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F26;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F36;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F56;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F66;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F76;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F86;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F96;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FD6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE6;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FF6;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F07;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F27;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F37;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F57;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F67;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F77;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F87;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F97;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FD7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE7;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FF7;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F08;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F18;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F28;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F38;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F48;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F68;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F78;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F88;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F98;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FD8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE8;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FF8;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F09;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F19;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F29;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F39;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F49;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F59;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F69;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F79;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F89;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F99;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FA9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FB9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FC9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FD9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FE9;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FF9;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F0A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F1A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F2A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F3A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F4A;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F6A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F7A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F8A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F9A;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FAA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FBA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FCA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FDA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FEA;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FFA;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F0B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F1B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F2B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F3B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F4B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F5B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F6B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F7B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F8B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F9B;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FAB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FBB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FCB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FDB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FEB;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FFB;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F0C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F1C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F2C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F3C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F4C;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F6C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F7C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F8C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F9C;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FAC;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FBC;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FCC;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1FEC;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FFC;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F0D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F1D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F2D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F3D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F4D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F5D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F6D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F7D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F8D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F9D;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FAD;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FBD;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FCD;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FDD;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FED;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FFD;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F0E;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F2E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F3E;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F6E;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F8E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F9E;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FAE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FBE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FCE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FDE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FEE;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FFE;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#x1F0F;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F2F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F3F;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F5F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F6F;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#x1F8F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1F9F;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FAF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FBF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FCF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FDF;</mo>+      </mtd> +      <mtd>+        <mo>&#x1FEF;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1F0" ]+      , [ EText TextNormal "1F1" ]+      , [ EText TextNormal "1F2" ]+      , [ EText TextNormal "1F3" ]+      , [ EText TextNormal "1F4" ]+      , [ EText TextNormal "1F5" ]+      , [ EText TextNormal "1F6" ]+      , [ EText TextNormal "1F7" ]+      , [ EText TextNormal "1F8" ]+      , [ EText TextNormal "1F9" ]+      , [ EText TextNormal "1FA" ]+      , [ EText TextNormal "1FB" ]+      , [ EText TextNormal "1FC" ]+      , [ EText TextNormal "1FD" ]+      , [ EText TextNormal "1FE" ]+      , [ EText TextNormal "1FF" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\7936" ]+      , [ ESymbol Ord "\7952" ]+      , [ ESymbol Ord "\7968" ]+      , [ ESymbol Ord "\7984" ]+      , [ ESymbol Ord "\8000" ]+      , [ ESymbol Ord "\8016" ]+      , [ ESymbol Ord "\8032" ]+      , [ ESymbol Ord "\8048" ]+      , [ ESymbol Ord "\8064" ]+      , [ ESymbol Ord "\8080" ]+      , [ ESymbol Ord "\8096" ]+      , [ ESymbol Ord "\8112" ]+      , [ ESymbol Ord "\8128" ]+      , [ ESymbol Ord "\8144" ]+      , [ ESymbol Ord "\8160" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\7937" ]+      , [ ESymbol Ord "\7953" ]+      , [ ESymbol Ord "\7969" ]+      , [ ESymbol Ord "\7985" ]+      , [ ESymbol Ord "\8001" ]+      , [ ESymbol Ord "\8017" ]+      , [ ESymbol Ord "\8033" ]+      , [ ESymbol Ord "\8049" ]+      , [ ESymbol Ord "\8065" ]+      , [ ESymbol Ord "\8081" ]+      , [ ESymbol Ord "\8097" ]+      , [ ESymbol Ord "\8113" ]+      , [ ESymbol Ord "\8129" ]+      , [ ESymbol Ord "\8145" ]+      , [ ESymbol Ord "\8161" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\7938" ]+      , [ ESymbol Ord "\7954" ]+      , [ ESymbol Ord "\7970" ]+      , [ ESymbol Ord "\7986" ]+      , [ ESymbol Ord "\8002" ]+      , [ ESymbol Ord "\8018" ]+      , [ ESymbol Ord "\8034" ]+      , [ ESymbol Ord "\8050" ]+      , [ ESymbol Ord "\8066" ]+      , [ ESymbol Ord "\8082" ]+      , [ ESymbol Ord "\8098" ]+      , [ ESymbol Ord "\8114" ]+      , [ ESymbol Ord "\8130" ]+      , [ ESymbol Ord "\8146" ]+      , [ ESymbol Ord "\8162" ]+      , [ ESymbol Ord "\8178" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\7939" ]+      , [ ESymbol Ord "\7955" ]+      , [ ESymbol Ord "\7971" ]+      , [ ESymbol Ord "\7987" ]+      , [ ESymbol Ord "\8003" ]+      , [ ESymbol Ord "\8019" ]+      , [ ESymbol Ord "\8035" ]+      , [ ESymbol Ord "\8051" ]+      , [ ESymbol Ord "\8067" ]+      , [ ESymbol Ord "\8083" ]+      , [ ESymbol Ord "\8099" ]+      , [ ESymbol Ord "\8115" ]+      , [ ESymbol Ord "\8131" ]+      , [ ESymbol Ord "\8147" ]+      , [ ESymbol Ord "\8163" ]+      , [ ESymbol Ord "\8179" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\7940" ]+      , [ ESymbol Ord "\7956" ]+      , [ ESymbol Ord "\7972" ]+      , [ ESymbol Ord "\7988" ]+      , [ ESymbol Ord "\8004" ]+      , [ ESymbol Ord "\8020" ]+      , [ ESymbol Ord "\8036" ]+      , [ ESymbol Ord "\8052" ]+      , [ ESymbol Ord "\8068" ]+      , [ ESymbol Ord "\8084" ]+      , [ ESymbol Ord "\8100" ]+      , [ ESymbol Ord "\8116" ]+      , [ ESymbol Ord "\8132" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8164" ]+      , [ ESymbol Ord "\8180" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\7941" ]+      , [ ESymbol Ord "\7957" ]+      , [ ESymbol Ord "\7973" ]+      , [ ESymbol Ord "\7989" ]+      , [ ESymbol Ord "\8005" ]+      , [ ESymbol Ord "\8021" ]+      , [ ESymbol Ord "\8037" ]+      , [ ESymbol Ord "\8053" ]+      , [ ESymbol Ord "\8069" ]+      , [ ESymbol Ord "\8085" ]+      , [ ESymbol Ord "\8101" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8165" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\7942" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\7974" ]+      , [ ESymbol Ord "\7990" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8022" ]+      , [ ESymbol Ord "\8038" ]+      , [ ESymbol Ord "\8054" ]+      , [ ESymbol Ord "\8070" ]+      , [ ESymbol Ord "\8086" ]+      , [ ESymbol Ord "\8102" ]+      , [ ESymbol Ord "\8118" ]+      , [ ESymbol Ord "\8134" ]+      , [ ESymbol Ord "\8150" ]+      , [ ESymbol Ord "\8166" ]+      , [ ESymbol Ord "\8182" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\7943" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\7975" ]+      , [ ESymbol Ord "\7991" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8023" ]+      , [ ESymbol Ord "\8039" ]+      , [ ESymbol Ord "\8055" ]+      , [ ESymbol Ord "\8071" ]+      , [ ESymbol Ord "\8087" ]+      , [ ESymbol Ord "\8103" ]+      , [ ESymbol Ord "\8119" ]+      , [ ESymbol Ord "\8135" ]+      , [ ESymbol Ord "\8151" ]+      , [ ESymbol Ord "\8167" ]+      , [ ESymbol Ord "\8183" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\7944" ]+      , [ ESymbol Ord "\7960" ]+      , [ ESymbol Ord "\7976" ]+      , [ ESymbol Ord "\7992" ]+      , [ ESymbol Ord "\8008" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8040" ]+      , [ ESymbol Ord "\8056" ]+      , [ ESymbol Ord "\8072" ]+      , [ ESymbol Ord "\8088" ]+      , [ ESymbol Ord "\8104" ]+      , [ ESymbol Ord "\8120" ]+      , [ ESymbol Ord "\8136" ]+      , [ ESymbol Ord "\8152" ]+      , [ ESymbol Ord "\8168" ]+      , [ ESymbol Ord "\8184" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\7945" ]+      , [ ESymbol Ord "\7961" ]+      , [ ESymbol Ord "\7977" ]+      , [ ESymbol Ord "\7993" ]+      , [ ESymbol Ord "\8009" ]+      , [ ESymbol Ord "\8025" ]+      , [ ESymbol Ord "\8041" ]+      , [ ESymbol Ord "\8057" ]+      , [ ESymbol Ord "\8073" ]+      , [ ESymbol Ord "\8089" ]+      , [ ESymbol Ord "\8105" ]+      , [ ESymbol Ord "\8121" ]+      , [ ESymbol Ord "\8137" ]+      , [ ESymbol Ord "\8153" ]+      , [ ESymbol Ord "\8169" ]+      , [ ESymbol Ord "\8185" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\7946" ]+      , [ ESymbol Ord "\7962" ]+      , [ ESymbol Ord "\7978" ]+      , [ ESymbol Ord "\7994" ]+      , [ ESymbol Ord "\8010" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8042" ]+      , [ ESymbol Ord "\8058" ]+      , [ ESymbol Ord "\8074" ]+      , [ ESymbol Ord "\8090" ]+      , [ ESymbol Ord "\8106" ]+      , [ ESymbol Ord "\8122" ]+      , [ ESymbol Ord "\8138" ]+      , [ ESymbol Ord "\8154" ]+      , [ ESymbol Ord "\8170" ]+      , [ ESymbol Ord "\8186" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\7947" ]+      , [ ESymbol Ord "\7963" ]+      , [ ESymbol Ord "\7979" ]+      , [ ESymbol Ord "\7995" ]+      , [ ESymbol Ord "\8011" ]+      , [ ESymbol Ord "\8027" ]+      , [ ESymbol Ord "\8043" ]+      , [ ESymbol Ord "\8059" ]+      , [ ESymbol Ord "\8075" ]+      , [ ESymbol Ord "\8091" ]+      , [ ESymbol Ord "\8107" ]+      , [ ESymbol Ord "\8123" ]+      , [ ESymbol Ord "\8139" ]+      , [ ESymbol Ord "\8155" ]+      , [ ESymbol Ord "\8171" ]+      , [ ESymbol Ord "\8187" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\7948" ]+      , [ ESymbol Ord "\7964" ]+      , [ ESymbol Ord "\7980" ]+      , [ ESymbol Ord "\7996" ]+      , [ ESymbol Ord "\8012" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8044" ]+      , [ ESymbol Ord "\8060" ]+      , [ ESymbol Ord "\8076" ]+      , [ ESymbol Ord "\8092" ]+      , [ ESymbol Ord "\8108" ]+      , [ ESymbol Ord "\8124" ]+      , [ ESymbol Ord "\8140" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8172" ]+      , [ ESymbol Ord "\8188" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\7949" ]+      , [ ESymbol Ord "\7965" ]+      , [ ESymbol Ord "\7981" ]+      , [ ESymbol Ord "\7997" ]+      , [ ESymbol Ord "\8013" ]+      , [ ESymbol Ord "\8029" ]+      , [ ESymbol Ord "\8045" ]+      , [ ESymbol Ord "\8061" ]+      , [ ESymbol Ord "\8077" ]+      , [ ESymbol Ord "\8093" ]+      , [ ESymbol Ord "\8109" ]+      , [ ESymbol Ord "\8125" ]+      , [ ESymbol Ord "\8141" ]+      , [ ESymbol Ord "\8157" ]+      , [ ESymbol Ord "\8173" ]+      , [ ESymbol Ord "\8189" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\7950" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\7982" ]+      , [ ESymbol Ord "\7998" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8046" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8078" ]+      , [ ESymbol Ord "\8094" ]+      , [ ESymbol Ord "\8110" ]+      , [ ESymbol Ord "\8126" ]+      , [ ESymbol Ord "\8142" ]+      , [ ESymbol Ord "\8158" ]+      , [ ESymbol Ord "\8174" ]+      , [ ESymbol Ord "\8190" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\7951" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\7983" ]+      , [ ESymbol Ord "\7999" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8031" ]+      , [ ESymbol Ord "\8047" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8079" ]+      , [ ESymbol Ord "\8095" ]+      , [ ESymbol Ord "\8111" ]+      , [ ESymbol Ord "\8127" ]+      , [ ESymbol Ord "\8143" ]+      , [ ESymbol Ord "\8159" ]+      , [ ESymbol Ord "\8175" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/02000_General_Punctuation.test view
@@ -0,0 +1,611 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>200</mtext>+      </mtd> +      <mtd>+        <mtext>201</mtext>+      </mtd> +      <mtd>+        <mtext>202</mtext>+      </mtd> +      <mtd>+        <mtext>203</mtext>+      </mtd> +      <mtd>+        <mtext>204</mtext>+      </mtd> +      <mtd>+        <mtext>205</mtext>+      </mtd> +      <mtd>+        <mtext>206</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8192;</mo>+      </mtd> +      <mtd>+        <mo>&#8208;</mo>+      </mtd> +      <mtd>+        <mo>&#8224;</mo>+      </mtd> +      <mtd>+        <mo>&#8240;</mo>+      </mtd> +      <mtd>+        <mo>&#8256;</mo>+      </mtd> +      <mtd>+        <mo>&#8272;</mo>+      </mtd> +      <mtd>+        <mo>&#8288;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8193;</mo>+      </mtd> +      <mtd>+        <mo>&#8209;</mo>+      </mtd> +      <mtd>+        <mo>&#8225;</mo>+      </mtd> +      <mtd>+        <mo>&#8241;</mo>+      </mtd> +      <mtd>+        <mo>&#8257;</mo>+      </mtd> +      <mtd>+        <mo>&#8273;</mo>+      </mtd> +      <mtd>+        <mo>&#8289;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#8194;</mo>+      </mtd> +      <mtd>+        <mo>&#8210;</mo>+      </mtd> +      <mtd>+        <mo>&#8226;</mo>+      </mtd> +      <mtd>+        <mo>&#8242;</mo>+      </mtd> +      <mtd>+        <mo>&#8258;</mo>+      </mtd> +      <mtd>+        <mo>&#8274;</mo>+      </mtd> +      <mtd>+        <mo>&#8290;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#8195;</mo>+      </mtd> +      <mtd>+        <mo>&#8211;</mo>+      </mtd> +      <mtd>+        <mo>&#8227;</mo>+      </mtd> +      <mtd>+        <mo>&#8243;</mo>+      </mtd> +      <mtd>+        <mo>&#8259;</mo>+      </mtd> +      <mtd>+        <mo>&#8275;</mo>+      </mtd> +      <mtd>+        <mo>&#8291;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8196;</mo>+      </mtd> +      <mtd>+        <mo>&#8212;</mo>+      </mtd> +      <mtd>+        <mo>&#8228;</mo>+      </mtd> +      <mtd>+        <mo>&#8244;</mo>+      </mtd> +      <mtd>+        <mo>&#8260;</mo>+      </mtd> +      <mtd>+        <mo>&#8276;</mo>+      </mtd> +      <mtd>+        <mo>&#8292;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8197;</mo>+      </mtd> +      <mtd>+        <mo>&#8213;</mo>+      </mtd> +      <mtd>+        <mo>&#8229;</mo>+      </mtd> +      <mtd>+        <mo>&#8245;</mo>+      </mtd> +      <mtd>+        <mo>&#8261;</mo>+      </mtd> +      <mtd>+        <mo>&#8277;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8198;</mo>+      </mtd> +      <mtd>+        <mo>&#8214;</mo>+      </mtd> +      <mtd>+        <mo>&#8230;</mo>+      </mtd> +      <mtd>+        <mo>&#8246;</mo>+      </mtd> +      <mtd>+        <mo>&#8262;</mo>+      </mtd> +      <mtd>+        <mo>&#8278;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8199;</mo>+      </mtd> +      <mtd>+        <mo>&#8215;</mo>+      </mtd> +      <mtd>+        <mo>&#8231;</mo>+      </mtd> +      <mtd>+        <mo>&#8247;</mo>+      </mtd> +      <mtd>+        <mo>&#8263;</mo>+      </mtd> +      <mtd>+        <mo>&#8279;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8200;</mo>+      </mtd> +      <mtd>+        <mo>&#8216;</mo>+      </mtd> +      <mtd>+        <mo>&#8232;</mo>+      </mtd> +      <mtd>+        <mo>&#8248;</mo>+      </mtd> +      <mtd>+        <mo>&#8264;</mo>+      </mtd> +      <mtd>+        <mo>&#8280;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8201;</mo>+      </mtd> +      <mtd>+        <mo>&#8217;</mo>+      </mtd> +      <mtd>+        <mo>&#8233;</mo>+      </mtd> +      <mtd>+        <mo>&#8249;</mo>+      </mtd> +      <mtd>+        <mo>&#8265;</mo>+      </mtd> +      <mtd>+        <mo>&#8281;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8202;</mo>+      </mtd> +      <mtd>+        <mo>&#8218;</mo>+      </mtd> +      <mtd>+        <mo>&#8234;</mo>+      </mtd> +      <mtd>+        <mo>&#8250;</mo>+      </mtd> +      <mtd>+        <mo>&#8266;</mo>+      </mtd> +      <mtd>+        <mo>&#8282;</mo>+      </mtd> +      <mtd>+        <mo>&#8298;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8203;</mo>+      </mtd> +      <mtd>+        <mo>&#8219;</mo>+      </mtd> +      <mtd>+        <mo>&#8235;</mo>+      </mtd> +      <mtd>+        <mo>&#8251;</mo>+      </mtd> +      <mtd>+        <mo>&#8267;</mo>+      </mtd> +      <mtd>+        <mo>&#8283;</mo>+      </mtd> +      <mtd>+        <mo>&#8299;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8204;</mo>+      </mtd> +      <mtd>+        <mo>&#8220;</mo>+      </mtd> +      <mtd>+        <mo>&#8236;</mo>+      </mtd> +      <mtd>+        <mo>&#8252;</mo>+      </mtd> +      <mtd>+        <mo>&#8268;</mo>+      </mtd> +      <mtd>+        <mo>&#8284;</mo>+      </mtd> +      <mtd>+        <mo>&#8300;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8205;</mo>+      </mtd> +      <mtd>+        <mo>&#8221;</mo>+      </mtd> +      <mtd>+        <mo>&#8237;</mo>+      </mtd> +      <mtd>+        <mo>&#8253;</mo>+      </mtd> +      <mtd>+        <mo>&#8269;</mo>+      </mtd> +      <mtd>+        <mo>&#8285;</mo>+      </mtd> +      <mtd>+        <mo>&#8301;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8206;</mo>+      </mtd> +      <mtd>+        <mo>&#8222;</mo>+      </mtd> +      <mtd>+        <mo>&#8238;</mo>+      </mtd> +      <mtd>+        <mo>&#8254;</mo>+      </mtd> +      <mtd>+        <mo>&#8270;</mo>+      </mtd> +      <mtd>+        <mo>&#8286;</mo>+      </mtd> +      <mtd>+        <mo>&#8302;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8207;</mo>+      </mtd> +      <mtd>+        <mo>&#8223;</mo>+      </mtd> +      <mtd>+        <mo>&#8239;</mo>+      </mtd> +      <mtd>+        <mo>&#8255;</mo>+      </mtd> +      <mtd>+        <mo>&#8271;</mo>+      </mtd> +      <mtd>+        <mo>&#8287;</mo>+      </mtd> +      <mtd>+        <mo>&#8303;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "200" ]+      , [ EText TextNormal "201" ]+      , [ EText TextNormal "202" ]+      , [ EText TextNormal "203" ]+      , [ EText TextNormal "204" ]+      , [ EText TextNormal "205" ]+      , [ EText TextNormal "206" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\8192" ]+      , [ ESymbol Ord "\8208" ]+      , [ ESymbol Bin "\8224" ]+      , [ ESymbol Ord "\8240" ]+      , [ ESymbol Bin "\8256" ]+      , [ ESymbol Rel "\8272" ]+      , [ ESymbol Ord "\8288" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\8193" ]+      , [ ESymbol Ord "\8209" ]+      , [ ESymbol Bin "\8225" ]+      , [ ESymbol Ord "\8241" ]+      , [ ESymbol Ord "\8257" ]+      , [ ESymbol Ord "\8273" ]+      , [ ESymbol Ord "\8289" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\8194" ]+      , [ ESymbol Ord "\8210" ]+      , [ ESymbol Bin "\8226" ]+      , [ ESymbol Ord "\8242" ]+      , [ ESymbol Ord "\8258" ]+      , [ ESymbol Ord "\8274" ]+      , [ ESymbol Ord "\8290" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\8195" ]+      , [ ESymbol Ord "\8211" ]+      , [ ESymbol Ord "\8227" ]+      , [ ESymbol Accent "\8243" ]+      , [ ESymbol Ord "\8259" ]+      , [ ESymbol Ord "\8275" ]+      , [ ESymbol Ord "\8291" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\8196" ]+      , [ ESymbol Ord "\8212" ]+      , [ ESymbol Ord "\8228" ]+      , [ ESymbol Accent "\8244" ]+      , [ ESymbol Bin "\8260" ]+      , [ ESymbol Ord "\8276" ]+      , [ ESymbol Ord "\8292" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\8197" ]+      , [ ESymbol Ord "\8213" ]+      , [ ESymbol Ord "\8229" ]+      , [ ESymbol Accent "\8245" ]+      , [ ESymbol Ord "\8261" ]+      , [ ESymbol Ord "\8277" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\8198" ]+      , [ ESymbol Close "\8214" ]+      , [ ESymbol Ord "\8230" ]+      , [ ESymbol Accent "\8246" ]+      , [ ESymbol Ord "\8262" ]+      , [ ESymbol Ord "\8278" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\8199" ]+      , [ ESymbol Ord "\8215" ]+      , [ ESymbol Ord "\8231" ]+      , [ ESymbol Accent "\8247" ]+      , [ ESymbol Ord "\8263" ]+      , [ ESymbol Accent "\8279" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\8200" ]+      , [ ESymbol Open "\8216" ]+      , [ ESymbol Ord "\8232" ]+      , [ ESymbol Ord "\8248" ]+      , [ ESymbol Ord "\8264" ]+      , [ ESymbol Ord "\8280" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\8201" ]+      , [ ESymbol Close "\8217" ]+      , [ ESymbol Ord "\8233" ]+      , [ ESymbol Ord "\8249" ]+      , [ ESymbol Ord "\8265" ]+      , [ ESymbol Ord "\8281" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\8202" ]+      , [ ESymbol Accent "\8218" ]+      , [ ESymbol Ord "\8234" ]+      , [ ESymbol Ord "\8250" ]+      , [ ESymbol Ord "\8266" ]+      , [ ESymbol Ord "\8282" ]+      , [ ESymbol Ord "\8298" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\8203" ]+      , [ ESymbol Accent "\8219" ]+      , [ ESymbol Ord "\8235" ]+      , [ ESymbol Ord "\8251" ]+      , [ ESymbol Ord "\8267" ]+      , [ ESymbol Ord "\8283" ]+      , [ ESymbol Ord "\8299" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\8204" ]+      , [ ESymbol Open "\8220" ]+      , [ ESymbol Ord "\8236" ]+      , [ ESymbol Ord "\8252" ]+      , [ ESymbol Ord "\8268" ]+      , [ ESymbol Ord "\8284" ]+      , [ ESymbol Ord "\8300" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\8205" ]+      , [ ESymbol Close "\8221" ]+      , [ ESymbol Ord "\8237" ]+      , [ ESymbol Ord "\8253" ]+      , [ ESymbol Ord "\8269" ]+      , [ ESymbol Ord "\8285" ]+      , [ ESymbol Ord "\8301" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\8206" ]+      , [ ESymbol Accent "\8222" ]+      , [ ESymbol Ord "\8238" ]+      , [ ESymbol Accent "\8254" ]+      , [ ESymbol Bin "\8270" ]+      , [ ESymbol Ord "\8286" ]+      , [ ESymbol Ord "\8302" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\8207" ]+      , [ ESymbol Accent "\8223" ]+      , [ ESymbol Ord "\8239" ]+      , [ ESymbol Ord "\8255" ]+      , [ ESymbol Ord "\8271" ]+      , [ ESymbol Ord "\8287" ]+      , [ ESymbol Ord "\8303" ]+      ]+    ]+]
+ test/reader/mml/02070_Superscripts_and_Subscripts.test view
@@ -0,0 +1,331 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>207</mtext>+      </mtd> +      <mtd>+        <mtext>208</mtext>+      </mtd> +      <mtd>+        <mtext>209</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8304;</mo>+      </mtd> +      <mtd>+        <mo>&#8320;</mo>+      </mtd> +      <mtd>+        <mo>&#8336;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8305;</mo>+      </mtd> +      <mtd>+        <mo>&#8321;</mo>+      </mtd> +      <mtd>+        <mo>&#8337;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#8322;</mo>+      </mtd> +      <mtd>+        <mo>&#8338;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#8323;</mo>+      </mtd> +      <mtd>+        <mo>&#8339;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8308;</mo>+      </mtd> +      <mtd>+        <mo>&#8324;</mo>+      </mtd> +      <mtd>+        <mo>&#8340;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8309;</mo>+      </mtd> +      <mtd>+        <mo>&#8325;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8310;</mo>+      </mtd> +      <mtd>+        <mo>&#8326;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8311;</mo>+      </mtd> +      <mtd>+        <mo>&#8327;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8312;</mo>+      </mtd> +      <mtd>+        <mo>&#8328;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8313;</mo>+      </mtd> +      <mtd>+        <mo>&#8329;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8314;</mo>+      </mtd> +      <mtd>+        <mo>&#8330;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8315;</mo>+      </mtd> +      <mtd>+        <mo>&#8331;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8316;</mo>+      </mtd> +      <mtd>+        <mo>&#8332;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8317;</mo>+      </mtd> +      <mtd>+        <mo>&#8333;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8318;</mo>+      </mtd> +      <mtd>+        <mo>&#8334;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8319;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter , AlignCenter ]+    [ [ []+      , [ EText TextNormal "207" ]+      , [ EText TextNormal "208" ]+      , [ EText TextNormal "209" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\8304" ]+      , [ ESymbol Ord "\8320" ]+      , [ ESymbol Ord "\8336" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\8305" ]+      , [ ESymbol Ord "\8321" ]+      , [ ESymbol Ord "\8337" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8322" ]+      , [ ESymbol Ord "\8338" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\8323" ]+      , [ ESymbol Ord "\8339" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\8308" ]+      , [ ESymbol Ord "\8324" ]+      , [ ESymbol Ord "\8340" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\8309" ]+      , [ ESymbol Ord "\8325" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\8310" ]+      , [ ESymbol Ord "\8326" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\8311" ]+      , [ ESymbol Ord "\8327" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\8312" ]+      , [ ESymbol Ord "\8328" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\8313" ]+      , [ ESymbol Ord "\8329" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\8314" ]+      , [ ESymbol Ord "\8330" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\8315" ]+      , [ ESymbol Ord "\8331" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\8316" ]+      , [ ESymbol Ord "\8332" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Open "\8317" ]+      , [ ESymbol Open "\8333" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Close "\8318" ]+      , [ ESymbol Close "\8334" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\8319" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/020A0_Currency_Symbols.test view
@@ -0,0 +1,331 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>20A</mtext>+      </mtd> +      <mtd>+        <mtext>20B</mtext>+      </mtd> +      <mtd>+        <mtext>20C</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8352;</mo>+      </mtd> +      <mtd>+        <mo>&#8368;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8353;</mo>+      </mtd> +      <mtd>+        <mo>&#8369;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#8354;</mo>+      </mtd> +      <mtd>+        <mo>&#8370;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#8355;</mo>+      </mtd> +      <mtd>+        <mo>&#8371;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8356;</mo>+      </mtd> +      <mtd>+        <mo>&#8372;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8357;</mo>+      </mtd> +      <mtd>+        <mo>&#8373;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8358;</mo>+      </mtd> +      <mtd>+        <mo>&#8374;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8359;</mo>+      </mtd> +      <mtd>+        <mo>&#8375;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8360;</mo>+      </mtd> +      <mtd>+        <mo>&#8376;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8361;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8362;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8363;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8364;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8365;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8366;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8367;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter , AlignCenter ]+    [ [ []+      , [ EText TextNormal "20A" ]+      , [ EText TextNormal "20B" ]+      , [ EText TextNormal "20C" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\8352" ]+      , [ ESymbol Ord "\8368" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\8353" ]+      , [ ESymbol Ord "\8369" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\8354" ]+      , [ ESymbol Ord "\8370" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\8355" ]+      , [ ESymbol Ord "\8371" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\8356" ]+      , [ ESymbol Ord "\8372" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\8357" ]+      , [ ESymbol Ord "\8373" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\8358" ]+      , [ ESymbol Ord "\8374" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\8359" ]+      , [ ESymbol Ord "\8375" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\8360" ]+      , [ ESymbol Ord "\8376" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\8361" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\8362" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\8363" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\8364" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\8365" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\8366" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\8367" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/020D0_Combining_Diacritical_Marks_for_Symbols.test view
@@ -0,0 +1,331 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>20D</mtext>+      </mtd> +      <mtd>+        <mtext>20E</mtext>+      </mtd> +      <mtd>+        <mtext>20F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8400;</mo>+      </mtd> +      <mtd>+        <mo>&#8416;</mo>+      </mtd> +      <mtd>+        <mo>&#8432;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8401;</mo>+      </mtd> +      <mtd>+        <mo>&#8417;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#8402;</mo>+      </mtd> +      <mtd>+        <mo>&#8418;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#8403;</mo>+      </mtd> +      <mtd>+        <mo>&#8419;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8404;</mo>+      </mtd> +      <mtd>+        <mo>&#8420;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8405;</mo>+      </mtd> +      <mtd>+        <mo>&#8421;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8406;</mo>+      </mtd> +      <mtd>+        <mo>&#8422;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8407;</mo>+      </mtd> +      <mtd>+        <mo>&#8423;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8408;</mo>+      </mtd> +      <mtd>+        <mo>&#8424;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8409;</mo>+      </mtd> +      <mtd>+        <mo>&#8425;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8410;</mo>+      </mtd> +      <mtd>+        <mo>&#8426;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8411;</mo>+      </mtd> +      <mtd>+        <mo>&#8427;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8412;</mo>+      </mtd> +      <mtd>+        <mo>&#8428;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8413;</mo>+      </mtd> +      <mtd>+        <mo>&#8429;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8414;</mo>+      </mtd> +      <mtd>+        <mo>&#8430;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8415;</mo>+      </mtd> +      <mtd>+        <mo>&#8431;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter , AlignCenter ]+    [ [ []+      , [ EText TextNormal "20D" ]+      , [ EText TextNormal "20E" ]+      , [ EText TextNormal "20F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Accent "\8400" ]+      , [ ESymbol Ord "\8416" ]+      , [ ESymbol Accent "\8432" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Accent "\8401" ]+      , [ ESymbol Accent "\8417" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Accent "\8402" ]+      , [ ESymbol Ord "\8418" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Accent "\8403" ]+      , [ ESymbol Ord "\8419" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Accent "\8404" ]+      , [ ESymbol Accent "\8420" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\8405" ]+      , [ ESymbol Accent "\8421" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Accent "\8406" ]+      , [ ESymbol Accent "\8422" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Accent "\8407" ]+      , [ ESymbol Accent "\8423" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Accent "\8408" ]+      , [ ESymbol Accent "\8424" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Accent "\8409" ]+      , [ ESymbol Accent "\8425" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Accent "\8410" ]+      , [ ESymbol Accent "\8426" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Accent "\8411" ]+      , [ ESymbol Accent "\8427" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Accent "\8412" ]+      , [ ESymbol Accent "\8428" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Accent "\8413" ]+      , [ ESymbol Accent "\8429" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Accent "\8414" ]+      , [ ESymbol Accent "\8430" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Accent "\8415" ]+      , [ ESymbol Accent "\8431" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/02100_Letterlike_Symbols.test view
@@ -0,0 +1,473 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>210</mtext>+      </mtd> +      <mtd>+        <mtext>211</mtext>+      </mtd> +      <mtd>+        <mtext>212</mtext>+      </mtd> +      <mtd>+        <mtext>213</mtext>+      </mtd> +      <mtd>+        <mtext>214</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8448;</mo>+      </mtd> +      <mtd>+        <mo>&#8464;</mo>+      </mtd> +      <mtd>+        <mo>&#8480;</mo>+      </mtd> +      <mtd>+        <mo>&#8496;</mo>+      </mtd> +      <mtd>+        <mo>&#8512;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8449;</mo>+      </mtd> +      <mtd>+        <mo>&#8465;</mo>+      </mtd> +      <mtd>+        <mo>&#8481;</mo>+      </mtd> +      <mtd>+        <mo>&#8497;</mo>+      </mtd> +      <mtd>+        <mo>&#8513;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#8450;</mo>+      </mtd> +      <mtd>+        <mo>&#8466;</mo>+      </mtd> +      <mtd>+        <mo>&#8482;</mo>+      </mtd> +      <mtd>+        <mo>&#8498;</mo>+      </mtd> +      <mtd>+        <mo>&#8514;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#8451;</mo>+      </mtd> +      <mtd>+        <mo>&#8467;</mo>+      </mtd> +      <mtd>+        <mo>&#8483;</mo>+      </mtd> +      <mtd>+        <mo>&#8499;</mo>+      </mtd> +      <mtd>+        <mo>&#8515;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8452;</mo>+      </mtd> +      <mtd>+        <mo>&#8468;</mo>+      </mtd> +      <mtd>+        <mo>&#8484;</mo>+      </mtd> +      <mtd>+        <mo>&#8500;</mo>+      </mtd> +      <mtd>+        <mo>&#8516;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8453;</mo>+      </mtd> +      <mtd>+        <mo>&#8469;</mo>+      </mtd> +      <mtd>+        <mo>&#8485;</mo>+      </mtd> +      <mtd>+        <mo>&#8501;</mo>+      </mtd> +      <mtd>+        <mo>&#8517;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8454;</mo>+      </mtd> +      <mtd>+        <mo>&#8470;</mo>+      </mtd> +      <mtd>+        <mo>&#8486;</mo>+      </mtd> +      <mtd>+        <mo>&#8502;</mo>+      </mtd> +      <mtd>+        <mo>&#8518;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8455;</mo>+      </mtd> +      <mtd>+        <mo>&#8471;</mo>+      </mtd> +      <mtd>+        <mo>&#8487;</mo>+      </mtd> +      <mtd>+        <mo>&#8503;</mo>+      </mtd> +      <mtd>+        <mo>&#8519;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8456;</mo>+      </mtd> +      <mtd>+        <mo>&#8472;</mo>+      </mtd> +      <mtd>+        <mo>&#8488;</mo>+      </mtd> +      <mtd>+        <mo>&#8504;</mo>+      </mtd> +      <mtd>+        <mo>&#8520;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8457;</mo>+      </mtd> +      <mtd>+        <mo>&#8473;</mo>+      </mtd> +      <mtd>+        <mo>&#8489;</mo>+      </mtd> +      <mtd>+        <mo>&#8505;</mo>+      </mtd> +      <mtd>+        <mo>&#8521;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8458;</mo>+      </mtd> +      <mtd>+        <mo>&#8474;</mo>+      </mtd> +      <mtd>+        <mo>&#8490;</mo>+      </mtd> +      <mtd>+        <mo>&#8506;</mo>+      </mtd> +      <mtd>+        <mo>&#8522;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8459;</mo>+      </mtd> +      <mtd>+        <mo>&#8475;</mo>+      </mtd> +      <mtd>+        <mo>&#8491;</mo>+      </mtd> +      <mtd>+        <mo>&#8507;</mo>+      </mtd> +      <mtd>+        <mo>&#8523;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8460;</mo>+      </mtd> +      <mtd>+        <mo>&#8476;</mo>+      </mtd> +      <mtd>+        <mo>&#8492;</mo>+      </mtd> +      <mtd>+        <mo>&#8508;</mo>+      </mtd> +      <mtd>+        <mo>&#8524;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8461;</mo>+      </mtd> +      <mtd>+        <mo>&#8477;</mo>+      </mtd> +      <mtd>+        <mo>&#8493;</mo>+      </mtd> +      <mtd>+        <mo>&#8509;</mo>+      </mtd> +      <mtd>+        <mo>&#8525;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8462;</mo>+      </mtd> +      <mtd>+        <mo>&#8478;</mo>+      </mtd> +      <mtd>+        <mo>&#8494;</mo>+      </mtd> +      <mtd>+        <mo>&#8510;</mo>+      </mtd> +      <mtd>+        <mo>&#8526;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8463;</mo>+      </mtd> +      <mtd>+        <mo>&#8479;</mo>+      </mtd> +      <mtd>+        <mo>&#8495;</mo>+      </mtd> +      <mtd>+        <mo>&#8511;</mo>+      </mtd> +      <mtd>+        <mo>&#8527;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "210" ]+      , [ EText TextNormal "211" ]+      , [ EText TextNormal "212" ]+      , [ EText TextNormal "213" ]+      , [ EText TextNormal "214" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\8448" ]+      , [ ESymbol Alpha "\8464" ]+      , [ ESymbol Ord "\8480" ]+      , [ ESymbol Alpha "\8496" ]+      , [ ESymbol Op "\8512" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\8449" ]+      , [ ESymbol Alpha "\8465" ]+      , [ ESymbol Ord "\8481" ]+      , [ ESymbol Alpha "\8497" ]+      , [ ESymbol Ord "\8513" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Alpha "\8450" ]+      , [ ESymbol Alpha "\8466" ]+      , [ ESymbol Ord "\8482" ]+      , [ ESymbol Ord "\8498" ]+      , [ ESymbol Ord "\8514" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\8451" ]+      , [ ESymbol Alpha "\8467" ]+      , [ ESymbol Ord "\8483" ]+      , [ ESymbol Alpha "\8499" ]+      , [ ESymbol Ord "\8515" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\8452" ]+      , [ ESymbol Ord "\8468" ]+      , [ ESymbol Alpha "\8484" ]+      , [ ESymbol Alpha "\8500" ]+      , [ ESymbol Ord "\8516" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\8453" ]+      , [ ESymbol Alpha "\8469" ]+      , [ ESymbol Ord "\8485" ]+      , [ ESymbol Alpha "\8501" ]+      , [ ESymbol Ord "\8517" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\8454" ]+      , [ ESymbol Ord "\8470" ]+      , [ ESymbol Alpha "\8486" ]+      , [ ESymbol Alpha "\8502" ]+      , [ ESymbol Ord "\8518" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\8455" ]+      , [ ESymbol Ord "\8471" ]+      , [ ESymbol Ord "\8487" ]+      , [ ESymbol Alpha "\8503" ]+      , [ ESymbol Ord "\8519" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\8456" ]+      , [ ESymbol Alpha "\8472" ]+      , [ ESymbol Alpha "\8488" ]+      , [ ESymbol Alpha "\8504" ]+      , [ ESymbol Ord "\8520" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\8457" ]+      , [ ESymbol Alpha "\8473" ]+      , [ ESymbol Alpha "\8489" ]+      , [ ESymbol Ord "\8505" ]+      , [ ESymbol Ord "\8521" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\8458" ]+      , [ ESymbol Alpha "\8474" ]+      , [ ESymbol Ord "\8490" ]+      , [ ESymbol Ord "\8506" ]+      , [ ESymbol Ord "\8522" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\8459" ]+      , [ ESymbol Alpha "\8475" ]+      , [ ESymbol Alpha "\8491" ]+      , [ ESymbol Ord "\8507" ]+      , [ ESymbol Bin "\8523" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\8460" ]+      , [ ESymbol Alpha "\8476" ]+      , [ ESymbol Alpha "\8492" ]+      , [ ESymbol Ord "\8508" ]+      , [ ESymbol Ord "\8524" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\8461" ]+      , [ ESymbol Alpha "\8477" ]+      , [ ESymbol Alpha "\8493" ]+      , [ ESymbol Alpha "\8509" ]+      , [ ESymbol Ord "\8525" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\8462" ]+      , [ ESymbol Ord "\8478" ]+      , [ ESymbol Ord "\8494" ]+      , [ ESymbol Alpha "\8510" ]+      , [ ESymbol Ord "\8526" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\8463" ]+      , [ ESymbol Ord "\8479" ]+      , [ ESymbol Alpha "\8495" ]+      , [ ESymbol Alpha "\8511" ]+      , [ ESymbol Ord "\8527" ]+      ]+    ]+]
+ test/reader/mml/02150_Number_Forms.test view
@@ -0,0 +1,404 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>215</mtext>+      </mtd> +      <mtd>+        <mtext>216</mtext>+      </mtd> +      <mtd>+        <mtext>217</mtext>+      </mtd> +      <mtd>+        <mtext>218</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8528;</mo>+      </mtd> +      <mtd>+        <mo>&#8544;</mo>+      </mtd> +      <mtd>+        <mo>&#8560;</mo>+      </mtd> +      <mtd>+        <mo>&#8576;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8529;</mo>+      </mtd> +      <mtd>+        <mo>&#8545;</mo>+      </mtd> +      <mtd>+        <mo>&#8561;</mo>+      </mtd> +      <mtd>+        <mo>&#8577;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#8530;</mo>+      </mtd> +      <mtd>+        <mo>&#8546;</mo>+      </mtd> +      <mtd>+        <mo>&#8562;</mo>+      </mtd> +      <mtd>+        <mo>&#8578;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#8531;</mo>+      </mtd> +      <mtd>+        <mo>&#8547;</mo>+      </mtd> +      <mtd>+        <mo>&#8563;</mo>+      </mtd> +      <mtd>+        <mo>&#8579;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8532;</mo>+      </mtd> +      <mtd>+        <mo>&#8548;</mo>+      </mtd> +      <mtd>+        <mo>&#8564;</mo>+      </mtd> +      <mtd>+        <mo>&#8580;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8533;</mo>+      </mtd> +      <mtd>+        <mo>&#8549;</mo>+      </mtd> +      <mtd>+        <mo>&#8565;</mo>+      </mtd> +      <mtd>+        <mo>&#8581;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8534;</mo>+      </mtd> +      <mtd>+        <mo>&#8550;</mo>+      </mtd> +      <mtd>+        <mo>&#8566;</mo>+      </mtd> +      <mtd>+        <mo>&#8582;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8535;</mo>+      </mtd> +      <mtd>+        <mo>&#8551;</mo>+      </mtd> +      <mtd>+        <mo>&#8567;</mo>+      </mtd> +      <mtd>+        <mo>&#8583;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8536;</mo>+      </mtd> +      <mtd>+        <mo>&#8552;</mo>+      </mtd> +      <mtd>+        <mo>&#8568;</mo>+      </mtd> +      <mtd>+        <mo>&#8584;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8537;</mo>+      </mtd> +      <mtd>+        <mo>&#8553;</mo>+      </mtd> +      <mtd>+        <mo>&#8569;</mo>+      </mtd> +      <mtd>+        <mo>&#8585;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8538;</mo>+      </mtd> +      <mtd>+        <mo>&#8554;</mo>+      </mtd> +      <mtd>+        <mo>&#8570;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8539;</mo>+      </mtd> +      <mtd>+        <mo>&#8555;</mo>+      </mtd> +      <mtd>+        <mo>&#8571;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8540;</mo>+      </mtd> +      <mtd>+        <mo>&#8556;</mo>+      </mtd> +      <mtd>+        <mo>&#8572;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8541;</mo>+      </mtd> +      <mtd>+        <mo>&#8557;</mo>+      </mtd> +      <mtd>+        <mo>&#8573;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8542;</mo>+      </mtd> +      <mtd>+        <mo>&#8558;</mo>+      </mtd> +      <mtd>+        <mo>&#8574;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8543;</mo>+      </mtd> +      <mtd>+        <mo>&#8559;</mo>+      </mtd> +      <mtd>+        <mo>&#8575;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "215" ]+      , [ EText TextNormal "216" ]+      , [ EText TextNormal "217" ]+      , [ EText TextNormal "218" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\8528" ]+      , [ ESymbol Ord "\8544" ]+      , [ ESymbol Ord "\8560" ]+      , [ ESymbol Ord "\8576" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\8529" ]+      , [ ESymbol Ord "\8545" ]+      , [ ESymbol Ord "\8561" ]+      , [ ESymbol Ord "\8577" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\8530" ]+      , [ ESymbol Ord "\8546" ]+      , [ ESymbol Ord "\8562" ]+      , [ ESymbol Ord "\8578" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\8531" ]+      , [ ESymbol Ord "\8547" ]+      , [ ESymbol Ord "\8563" ]+      , [ ESymbol Ord "\8579" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\8532" ]+      , [ ESymbol Ord "\8548" ]+      , [ ESymbol Ord "\8564" ]+      , [ ESymbol Ord "\8580" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\8533" ]+      , [ ESymbol Ord "\8549" ]+      , [ ESymbol Ord "\8565" ]+      , [ ESymbol Ord "\8581" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\8534" ]+      , [ ESymbol Ord "\8550" ]+      , [ ESymbol Ord "\8566" ]+      , [ ESymbol Ord "\8582" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\8535" ]+      , [ ESymbol Ord "\8551" ]+      , [ ESymbol Ord "\8567" ]+      , [ ESymbol Ord "\8583" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\8536" ]+      , [ ESymbol Ord "\8552" ]+      , [ ESymbol Ord "\8568" ]+      , [ ESymbol Ord "\8584" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\8537" ]+      , [ ESymbol Ord "\8553" ]+      , [ ESymbol Ord "\8569" ]+      , [ ESymbol Ord "\8585" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\8538" ]+      , [ ESymbol Ord "\8554" ]+      , [ ESymbol Ord "\8570" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\8539" ]+      , [ ESymbol Ord "\8555" ]+      , [ ESymbol Ord "\8571" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\8540" ]+      , [ ESymbol Ord "\8556" ]+      , [ ESymbol Ord "\8572" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\8541" ]+      , [ ESymbol Ord "\8557" ]+      , [ ESymbol Ord "\8573" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\8542" ]+      , [ ESymbol Ord "\8558" ]+      , [ ESymbol Ord "\8574" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\8543" ]+      , [ ESymbol Ord "\8559" ]+      , [ ESymbol Ord "\8575" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/02190_Arrows.test view
@@ -0,0 +1,611 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>219</mtext>+      </mtd> +      <mtd>+        <mtext>21A</mtext>+      </mtd> +      <mtd>+        <mtext>21B</mtext>+      </mtd> +      <mtd>+        <mtext>21C</mtext>+      </mtd> +      <mtd>+        <mtext>21D</mtext>+      </mtd> +      <mtd>+        <mtext>21E</mtext>+      </mtd> +      <mtd>+        <mtext>21F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8592;</mo>+      </mtd> +      <mtd>+        <mo>&#8608;</mo>+      </mtd> +      <mtd>+        <mo>&#8624;</mo>+      </mtd> +      <mtd>+        <mo>&#8640;</mo>+      </mtd> +      <mtd>+        <mo>&#8656;</mo>+      </mtd> +      <mtd>+        <mo>&#8672;</mo>+      </mtd> +      <mtd>+        <mo>&#8688;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8593;</mo>+      </mtd> +      <mtd>+        <mo>&#8609;</mo>+      </mtd> +      <mtd>+        <mo>&#8625;</mo>+      </mtd> +      <mtd>+        <mo>&#8641;</mo>+      </mtd> +      <mtd>+        <mo>&#8657;</mo>+      </mtd> +      <mtd>+        <mo>&#8673;</mo>+      </mtd> +      <mtd>+        <mo>&#8689;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#8594;</mo>+      </mtd> +      <mtd>+        <mo>&#8610;</mo>+      </mtd> +      <mtd>+        <mo>&#8626;</mo>+      </mtd> +      <mtd>+        <mo>&#8642;</mo>+      </mtd> +      <mtd>+        <mo>&#8658;</mo>+      </mtd> +      <mtd>+        <mo>&#8674;</mo>+      </mtd> +      <mtd>+        <mo>&#8690;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#8595;</mo>+      </mtd> +      <mtd>+        <mo>&#8611;</mo>+      </mtd> +      <mtd>+        <mo>&#8627;</mo>+      </mtd> +      <mtd>+        <mo>&#8643;</mo>+      </mtd> +      <mtd>+        <mo>&#8659;</mo>+      </mtd> +      <mtd>+        <mo>&#8675;</mo>+      </mtd> +      <mtd>+        <mo>&#8691;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8596;</mo>+      </mtd> +      <mtd>+        <mo>&#8612;</mo>+      </mtd> +      <mtd>+        <mo>&#8628;</mo>+      </mtd> +      <mtd>+        <mo>&#8644;</mo>+      </mtd> +      <mtd>+        <mo>&#8660;</mo>+      </mtd> +      <mtd>+        <mo>&#8676;</mo>+      </mtd> +      <mtd>+        <mo>&#8692;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8597;</mo>+      </mtd> +      <mtd>+        <mo>&#8613;</mo>+      </mtd> +      <mtd>+        <mo>&#8629;</mo>+      </mtd> +      <mtd>+        <mo>&#8645;</mo>+      </mtd> +      <mtd>+        <mo>&#8661;</mo>+      </mtd> +      <mtd>+        <mo>&#8677;</mo>+      </mtd> +      <mtd>+        <mo>&#8693;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8598;</mo>+      </mtd> +      <mtd>+        <mo>&#8614;</mo>+      </mtd> +      <mtd>+        <mo>&#8630;</mo>+      </mtd> +      <mtd>+        <mo>&#8646;</mo>+      </mtd> +      <mtd>+        <mo>&#8662;</mo>+      </mtd> +      <mtd>+        <mo>&#8678;</mo>+      </mtd> +      <mtd>+        <mo>&#8694;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8599;</mo>+      </mtd> +      <mtd>+        <mo>&#8615;</mo>+      </mtd> +      <mtd>+        <mo>&#8631;</mo>+      </mtd> +      <mtd>+        <mo>&#8647;</mo>+      </mtd> +      <mtd>+        <mo>&#8663;</mo>+      </mtd> +      <mtd>+        <mo>&#8679;</mo>+      </mtd> +      <mtd>+        <mo>&#8695;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8600;</mo>+      </mtd> +      <mtd>+        <mo>&#8616;</mo>+      </mtd> +      <mtd>+        <mo>&#8632;</mo>+      </mtd> +      <mtd>+        <mo>&#8648;</mo>+      </mtd> +      <mtd>+        <mo>&#8664;</mo>+      </mtd> +      <mtd>+        <mo>&#8680;</mo>+      </mtd> +      <mtd>+        <mo>&#8696;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8601;</mo>+      </mtd> +      <mtd>+        <mo>&#8617;</mo>+      </mtd> +      <mtd>+        <mo>&#8633;</mo>+      </mtd> +      <mtd>+        <mo>&#8649;</mo>+      </mtd> +      <mtd>+        <mo>&#8665;</mo>+      </mtd> +      <mtd>+        <mo>&#8681;</mo>+      </mtd> +      <mtd>+        <mo>&#8697;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8602;</mo>+      </mtd> +      <mtd>+        <mo>&#8618;</mo>+      </mtd> +      <mtd>+        <mo>&#8634;</mo>+      </mtd> +      <mtd>+        <mo>&#8650;</mo>+      </mtd> +      <mtd>+        <mo>&#8666;</mo>+      </mtd> +      <mtd>+        <mo>&#8682;</mo>+      </mtd> +      <mtd>+        <mo>&#8698;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8603;</mo>+      </mtd> +      <mtd>+        <mo>&#8619;</mo>+      </mtd> +      <mtd>+        <mo>&#8635;</mo>+      </mtd> +      <mtd>+        <mo>&#8651;</mo>+      </mtd> +      <mtd>+        <mo>&#8667;</mo>+      </mtd> +      <mtd>+        <mo>&#8683;</mo>+      </mtd> +      <mtd>+        <mo>&#8699;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8604;</mo>+      </mtd> +      <mtd>+        <mo>&#8620;</mo>+      </mtd> +      <mtd>+        <mo>&#8636;</mo>+      </mtd> +      <mtd>+        <mo>&#8652;</mo>+      </mtd> +      <mtd>+        <mo>&#8668;</mo>+      </mtd> +      <mtd>+        <mo>&#8684;</mo>+      </mtd> +      <mtd>+        <mo>&#8700;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8605;</mo>+      </mtd> +      <mtd>+        <mo>&#8621;</mo>+      </mtd> +      <mtd>+        <mo>&#8637;</mo>+      </mtd> +      <mtd>+        <mo>&#8653;</mo>+      </mtd> +      <mtd>+        <mo>&#8669;</mo>+      </mtd> +      <mtd>+        <mo>&#8685;</mo>+      </mtd> +      <mtd>+        <mo>&#8701;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8606;</mo>+      </mtd> +      <mtd>+        <mo>&#8622;</mo>+      </mtd> +      <mtd>+        <mo>&#8638;</mo>+      </mtd> +      <mtd>+        <mo>&#8654;</mo>+      </mtd> +      <mtd>+        <mo>&#8670;</mo>+      </mtd> +      <mtd>+        <mo>&#8686;</mo>+      </mtd> +      <mtd>+        <mo>&#8702;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8607;</mo>+      </mtd> +      <mtd>+        <mo>&#8623;</mo>+      </mtd> +      <mtd>+        <mo>&#8639;</mo>+      </mtd> +      <mtd>+        <mo>&#8655;</mo>+      </mtd> +      <mtd>+        <mo>&#8671;</mo>+      </mtd> +      <mtd>+        <mo>&#8687;</mo>+      </mtd> +      <mtd>+        <mo>&#8703;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "219" ]+      , [ EText TextNormal "21A" ]+      , [ EText TextNormal "21B" ]+      , [ EText TextNormal "21C" ]+      , [ EText TextNormal "21D" ]+      , [ EText TextNormal "21E" ]+      , [ EText TextNormal "21F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Accent "\8592" ]+      , [ ESymbol Accent "\8608" ]+      , [ ESymbol Rel "\8624" ]+      , [ ESymbol Accent "\8640" ]+      , [ ESymbol Accent "\8656" ]+      , [ ESymbol Accent "\8672" ]+      , [ ESymbol Accent "\8688" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Rel "\8593" ]+      , [ ESymbol Rel "\8609" ]+      , [ ESymbol Rel "\8625" ]+      , [ ESymbol Accent "\8641" ]+      , [ ESymbol Rel "\8657" ]+      , [ ESymbol Ord "\8673" ]+      , [ ESymbol Ord "\8689" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Accent "\8594" ]+      , [ ESymbol Accent "\8610" ]+      , [ ESymbol Rel "\8626" ]+      , [ ESymbol Rel "\8642" ]+      , [ ESymbol Accent "\8658" ]+      , [ ESymbol Accent "\8674" ]+      , [ ESymbol Ord "\8690" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Rel "\8595" ]+      , [ ESymbol Accent "\8611" ]+      , [ ESymbol Rel "\8627" ]+      , [ ESymbol Rel "\8643" ]+      , [ ESymbol Rel "\8659" ]+      , [ ESymbol Ord "\8675" ]+      , [ ESymbol Ord "\8691" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Accent "\8596" ]+      , [ ESymbol Accent "\8612" ]+      , [ ESymbol Ord "\8628" ]+      , [ ESymbol Accent "\8644" ]+      , [ ESymbol Accent "\8660" ]+      , [ ESymbol Accent "\8676" ]+      , [ ESymbol Accent "\8692" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Rel "\8597" ]+      , [ ESymbol Rel "\8613" ]+      , [ ESymbol Ord "\8629" ]+      , [ ESymbol Rel "\8645" ]+      , [ ESymbol Rel "\8661" ]+      , [ ESymbol Accent "\8677" ]+      , [ ESymbol Rel "\8693" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Rel "\8598" ]+      , [ ESymbol Accent "\8614" ]+      , [ ESymbol Accent "\8630" ]+      , [ ESymbol Accent "\8646" ]+      , [ ESymbol Rel "\8662" ]+      , [ ESymbol Accent "\8678" ]+      , [ ESymbol Accent "\8694" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Rel "\8599" ]+      , [ ESymbol Rel "\8615" ]+      , [ ESymbol Accent "\8631" ]+      , [ ESymbol Accent "\8647" ]+      , [ ESymbol Rel "\8663" ]+      , [ ESymbol Ord "\8679" ]+      , [ ESymbol Accent "\8695" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Rel "\8600" ]+      , [ ESymbol Ord "\8616" ]+      , [ ESymbol Ord "\8632" ]+      , [ ESymbol Rel "\8648" ]+      , [ ESymbol Rel "\8664" ]+      , [ ESymbol Accent "\8680" ]+      , [ ESymbol Accent "\8696" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Rel "\8601" ]+      , [ ESymbol Accent "\8617" ]+      , [ ESymbol Accent "\8633" ]+      , [ ESymbol Accent "\8649" ]+      , [ ESymbol Rel "\8665" ]+      , [ ESymbol Ord "\8681" ]+      , [ ESymbol Accent "\8697" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Accent "\8602" ]+      , [ ESymbol Accent "\8618" ]+      , [ ESymbol Ord "\8634" ]+      , [ ESymbol Rel "\8650" ]+      , [ ESymbol Accent "\8666" ]+      , [ ESymbol Ord "\8682" ]+      , [ ESymbol Accent "\8698" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Accent "\8603" ]+      , [ ESymbol Accent "\8619" ]+      , [ ESymbol Ord "\8635" ]+      , [ ESymbol Accent "\8651" ]+      , [ ESymbol Accent "\8667" ]+      , [ ESymbol Ord "\8683" ]+      , [ ESymbol Accent "\8699" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Accent "\8604" ]+      , [ ESymbol Accent "\8620" ]+      , [ ESymbol Accent "\8636" ]+      , [ ESymbol Accent "\8652" ]+      , [ ESymbol Accent "\8668" ]+      , [ ESymbol Ord "\8684" ]+      , [ ESymbol Accent "\8700" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Accent "\8605" ]+      , [ ESymbol Accent "\8621" ]+      , [ ESymbol Accent "\8637" ]+      , [ ESymbol Accent "\8653" ]+      , [ ESymbol Accent "\8669" ]+      , [ ESymbol Ord "\8685" ]+      , [ ESymbol Accent "\8701" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Accent "\8606" ]+      , [ ESymbol Accent "\8622" ]+      , [ ESymbol Rel "\8638" ]+      , [ ESymbol Accent "\8654" ]+      , [ ESymbol Ord "\8670" ]+      , [ ESymbol Ord "\8686" ]+      , [ ESymbol Accent "\8702" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Accent "\8607" ]+      , [ ESymbol Rel "\8623" ]+      , [ ESymbol Rel "\8639" ]+      , [ ESymbol Accent "\8655" ]+      , [ ESymbol Ord "\8671" ]+      , [ ESymbol Ord "\8687" ]+      , [ ESymbol Accent "\8703" ]+      ]+    ]+]
+ test/reader/mml/02200_Mathematical_Operators.test view
@@ -0,0 +1,1232 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>220</mtext>+      </mtd> +      <mtd>+        <mtext>221</mtext>+      </mtd> +      <mtd>+        <mtext>222</mtext>+      </mtd> +      <mtd>+        <mtext>223</mtext>+      </mtd> +      <mtd>+        <mtext>224</mtext>+      </mtd> +      <mtd>+        <mtext>225</mtext>+      </mtd> +      <mtd>+        <mtext>226</mtext>+      </mtd> +      <mtd>+        <mtext>227</mtext>+      </mtd> +      <mtd>+        <mtext>228</mtext>+      </mtd> +      <mtd>+        <mtext>229</mtext>+      </mtd> +      <mtd>+        <mtext>22A</mtext>+      </mtd> +      <mtd>+        <mtext>22B</mtext>+      </mtd> +      <mtd>+        <mtext>22C</mtext>+      </mtd> +      <mtd>+        <mtext>22D</mtext>+      </mtd> +      <mtd>+        <mtext>22E</mtext>+      </mtd> +      <mtd>+        <mtext>22F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8704;</mo>+      </mtd> +      <mtd>+        <mo>&#8720;</mo>+      </mtd> +      <mtd>+        <mo>&#8736;</mo>+      </mtd> +      <mtd>+        <mo>&#8752;</mo>+      </mtd> +      <mtd>+        <mo>&#8768;</mo>+      </mtd> +      <mtd>+        <mo>&#8784;</mo>+      </mtd> +      <mtd>+        <mo>&#8800;</mo>+      </mtd> +      <mtd>+        <mo>&#8816;</mo>+      </mtd> +      <mtd>+        <mo>&#8832;</mo>+      </mtd> +      <mtd>+        <mo>&#8848;</mo>+      </mtd> +      <mtd>+        <mo>&#8864;</mo>+      </mtd> +      <mtd>+        <mo>&#8880;</mo>+      </mtd> +      <mtd>+        <mo>&#8896;</mo>+      </mtd> +      <mtd>+        <mo>&#8912;</mo>+      </mtd> +      <mtd>+        <mo>&#8928;</mo>+      </mtd> +      <mtd>+        <mo>&#8944;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8705;</mo>+      </mtd> +      <mtd>+        <mo>&#8721;</mo>+      </mtd> +      <mtd>+        <mo>&#8737;</mo>+      </mtd> +      <mtd>+        <mo>&#8753;</mo>+      </mtd> +      <mtd>+        <mo>&#8769;</mo>+      </mtd> +      <mtd>+        <mo>&#8785;</mo>+      </mtd> +      <mtd>+        <mo>&#8801;</mo>+      </mtd> +      <mtd>+        <mo>&#8817;</mo>+      </mtd> +      <mtd>+        <mo>&#8833;</mo>+      </mtd> +      <mtd>+        <mo>&#8849;</mo>+      </mtd> +      <mtd>+        <mo>&#8865;</mo>+      </mtd> +      <mtd>+        <mo>&#8881;</mo>+      </mtd> +      <mtd>+        <mo>&#8897;</mo>+      </mtd> +      <mtd>+        <mo>&#8913;</mo>+      </mtd> +      <mtd>+        <mo>&#8929;</mo>+      </mtd> +      <mtd>+        <mo>&#8945;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#8706;</mo>+      </mtd> +      <mtd>+        <mo>&#8722;</mo>+      </mtd> +      <mtd>+        <mo>&#8738;</mo>+      </mtd> +      <mtd>+        <mo>&#8754;</mo>+      </mtd> +      <mtd>+        <mo>&#8770;</mo>+      </mtd> +      <mtd>+        <mo>&#8786;</mo>+      </mtd> +      <mtd>+        <mo>&#8802;</mo>+      </mtd> +      <mtd>+        <mo>&#8818;</mo>+      </mtd> +      <mtd>+        <mo>&#8834;</mo>+      </mtd> +      <mtd>+        <mo>&#8850;</mo>+      </mtd> +      <mtd>+        <mo>&#8866;</mo>+      </mtd> +      <mtd>+        <mo>&#8882;</mo>+      </mtd> +      <mtd>+        <mo>&#8898;</mo>+      </mtd> +      <mtd>+        <mo>&#8914;</mo>+      </mtd> +      <mtd>+        <mo>&#8930;</mo>+      </mtd> +      <mtd>+        <mo>&#8946;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#8707;</mo>+      </mtd> +      <mtd>+        <mo>&#8723;</mo>+      </mtd> +      <mtd>+        <mo>&#8739;</mo>+      </mtd> +      <mtd>+        <mo>&#8755;</mo>+      </mtd> +      <mtd>+        <mo>&#8771;</mo>+      </mtd> +      <mtd>+        <mo>&#8787;</mo>+      </mtd> +      <mtd>+        <mo>&#8803;</mo>+      </mtd> +      <mtd>+        <mo>&#8819;</mo>+      </mtd> +      <mtd>+        <mo>&#8835;</mo>+      </mtd> +      <mtd>+        <mo>&#8851;</mo>+      </mtd> +      <mtd>+        <mo>&#8867;</mo>+      </mtd> +      <mtd>+        <mo>&#8883;</mo>+      </mtd> +      <mtd>+        <mo>&#8899;</mo>+      </mtd> +      <mtd>+        <mo>&#8915;</mo>+      </mtd> +      <mtd>+        <mo>&#8931;</mo>+      </mtd> +      <mtd>+        <mo>&#8947;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8708;</mo>+      </mtd> +      <mtd>+        <mo>&#8724;</mo>+      </mtd> +      <mtd>+        <mo>&#8740;</mo>+      </mtd> +      <mtd>+        <mo>&#8756;</mo>+      </mtd> +      <mtd>+        <mo>&#8772;</mo>+      </mtd> +      <mtd>+        <mo>&#8788;</mo>+      </mtd> +      <mtd>+        <mo>&#8804;</mo>+      </mtd> +      <mtd>+        <mo>&#8820;</mo>+      </mtd> +      <mtd>+        <mo>&#8836;</mo>+      </mtd> +      <mtd>+        <mo>&#8852;</mo>+      </mtd> +      <mtd>+        <mo>&#8868;</mo>+      </mtd> +      <mtd>+        <mo>&#8884;</mo>+      </mtd> +      <mtd>+        <mo>&#8900;</mo>+      </mtd> +      <mtd>+        <mo>&#8916;</mo>+      </mtd> +      <mtd>+        <mo>&#8932;</mo>+      </mtd> +      <mtd>+        <mo>&#8948;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8709;</mo>+      </mtd> +      <mtd>+        <mo>&#8725;</mo>+      </mtd> +      <mtd>+        <mo>&#8741;</mo>+      </mtd> +      <mtd>+        <mo>&#8757;</mo>+      </mtd> +      <mtd>+        <mo>&#8773;</mo>+      </mtd> +      <mtd>+        <mo>&#8789;</mo>+      </mtd> +      <mtd>+        <mo>&#8805;</mo>+      </mtd> +      <mtd>+        <mo>&#8821;</mo>+      </mtd> +      <mtd>+        <mo>&#8837;</mo>+      </mtd> +      <mtd>+        <mo>&#8853;</mo>+      </mtd> +      <mtd>+        <mo>&#8869;</mo>+      </mtd> +      <mtd>+        <mo>&#8885;</mo>+      </mtd> +      <mtd>+        <mo>&#8901;</mo>+      </mtd> +      <mtd>+        <mo>&#8917;</mo>+      </mtd> +      <mtd>+        <mo>&#8933;</mo>+      </mtd> +      <mtd>+        <mo>&#8949;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8710;</mo>+      </mtd> +      <mtd>+        <mo>&#8726;</mo>+      </mtd> +      <mtd>+        <mo>&#8742;</mo>+      </mtd> +      <mtd>+        <mo>&#8758;</mo>+      </mtd> +      <mtd>+        <mo>&#8774;</mo>+      </mtd> +      <mtd>+        <mo>&#8790;</mo>+      </mtd> +      <mtd>+        <mo>&#8806;</mo>+      </mtd> +      <mtd>+        <mo>&#8822;</mo>+      </mtd> +      <mtd>+        <mo>&#8838;</mo>+      </mtd> +      <mtd>+        <mo>&#8854;</mo>+      </mtd> +      <mtd>+        <mo>&#8870;</mo>+      </mtd> +      <mtd>+        <mo>&#8886;</mo>+      </mtd> +      <mtd>+        <mo>&#8902;</mo>+      </mtd> +      <mtd>+        <mo>&#8918;</mo>+      </mtd> +      <mtd>+        <mo>&#8934;</mo>+      </mtd> +      <mtd>+        <mo>&#8950;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8711;</mo>+      </mtd> +      <mtd>+        <mo>&#8727;</mo>+      </mtd> +      <mtd>+        <mo>&#8743;</mo>+      </mtd> +      <mtd>+        <mo>&#8759;</mo>+      </mtd> +      <mtd>+        <mo>&#8775;</mo>+      </mtd> +      <mtd>+        <mo>&#8791;</mo>+      </mtd> +      <mtd>+        <mo>&#8807;</mo>+      </mtd> +      <mtd>+        <mo>&#8823;</mo>+      </mtd> +      <mtd>+        <mo>&#8839;</mo>+      </mtd> +      <mtd>+        <mo>&#8855;</mo>+      </mtd> +      <mtd>+        <mo>&#8871;</mo>+      </mtd> +      <mtd>+        <mo>&#8887;</mo>+      </mtd> +      <mtd>+        <mo>&#8903;</mo>+      </mtd> +      <mtd>+        <mo>&#8919;</mo>+      </mtd> +      <mtd>+        <mo>&#8935;</mo>+      </mtd> +      <mtd>+        <mo>&#8951;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8712;</mo>+      </mtd> +      <mtd>+        <mo>&#8728;</mo>+      </mtd> +      <mtd>+        <mo>&#8744;</mo>+      </mtd> +      <mtd>+        <mo>&#8760;</mo>+      </mtd> +      <mtd>+        <mo>&#8776;</mo>+      </mtd> +      <mtd>+        <mo>&#8792;</mo>+      </mtd> +      <mtd>+        <mo>&#8808;</mo>+      </mtd> +      <mtd>+        <mo>&#8824;</mo>+      </mtd> +      <mtd>+        <mo>&#8840;</mo>+      </mtd> +      <mtd>+        <mo>&#8856;</mo>+      </mtd> +      <mtd>+        <mo>&#8872;</mo>+      </mtd> +      <mtd>+        <mo>&#8888;</mo>+      </mtd> +      <mtd>+        <mo>&#8904;</mo>+      </mtd> +      <mtd>+        <mo>&#8920;</mo>+      </mtd> +      <mtd>+        <mo>&#8936;</mo>+      </mtd> +      <mtd>+        <mo>&#8952;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8713;</mo>+      </mtd> +      <mtd>+        <mo>&#8729;</mo>+      </mtd> +      <mtd>+        <mo>&#8745;</mo>+      </mtd> +      <mtd>+        <mo>&#8761;</mo>+      </mtd> +      <mtd>+        <mo>&#8777;</mo>+      </mtd> +      <mtd>+        <mo>&#8793;</mo>+      </mtd> +      <mtd>+        <mo>&#8809;</mo>+      </mtd> +      <mtd>+        <mo>&#8825;</mo>+      </mtd> +      <mtd>+        <mo>&#8841;</mo>+      </mtd> +      <mtd>+        <mo>&#8857;</mo>+      </mtd> +      <mtd>+        <mo>&#8873;</mo>+      </mtd> +      <mtd>+        <mo>&#8889;</mo>+      </mtd> +      <mtd>+        <mo>&#8905;</mo>+      </mtd> +      <mtd>+        <mo>&#8921;</mo>+      </mtd> +      <mtd>+        <mo>&#8937;</mo>+      </mtd> +      <mtd>+        <mo>&#8953;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8714;</mo>+      </mtd> +      <mtd>+        <mo>&#8730;</mo>+      </mtd> +      <mtd>+        <mo>&#8746;</mo>+      </mtd> +      <mtd>+        <mo>&#8762;</mo>+      </mtd> +      <mtd>+        <mo>&#8778;</mo>+      </mtd> +      <mtd>+        <mo>&#8794;</mo>+      </mtd> +      <mtd>+        <mo>&#8810;</mo>+      </mtd> +      <mtd>+        <mo>&#8826;</mo>+      </mtd> +      <mtd>+        <mo>&#8842;</mo>+      </mtd> +      <mtd>+        <mo>&#8858;</mo>+      </mtd> +      <mtd>+        <mo>&#8874;</mo>+      </mtd> +      <mtd>+        <mo>&#8890;</mo>+      </mtd> +      <mtd>+        <mo>&#8906;</mo>+      </mtd> +      <mtd>+        <mo>&#8922;</mo>+      </mtd> +      <mtd>+        <mo>&#8938;</mo>+      </mtd> +      <mtd>+        <mo>&#8954;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8715;</mo>+      </mtd> +      <mtd>+        <mo>&#8731;</mo>+      </mtd> +      <mtd>+        <mo>&#8747;</mo>+      </mtd> +      <mtd>+        <mo>&#8763;</mo>+      </mtd> +      <mtd>+        <mo>&#8779;</mo>+      </mtd> +      <mtd>+        <mo>&#8795;</mo>+      </mtd> +      <mtd>+        <mo>&#8811;</mo>+      </mtd> +      <mtd>+        <mo>&#8827;</mo>+      </mtd> +      <mtd>+        <mo>&#8843;</mo>+      </mtd> +      <mtd>+        <mo>&#8859;</mo>+      </mtd> +      <mtd>+        <mo>&#8875;</mo>+      </mtd> +      <mtd>+        <mo>&#8891;</mo>+      </mtd> +      <mtd>+        <mo>&#8907;</mo>+      </mtd> +      <mtd>+        <mo>&#8923;</mo>+      </mtd> +      <mtd>+        <mo>&#8939;</mo>+      </mtd> +      <mtd>+        <mo>&#8955;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8716;</mo>+      </mtd> +      <mtd>+        <mo>&#8732;</mo>+      </mtd> +      <mtd>+        <mo>&#8748;</mo>+      </mtd> +      <mtd>+        <mo>&#8764;</mo>+      </mtd> +      <mtd>+        <mo>&#8780;</mo>+      </mtd> +      <mtd>+        <mo>&#8796;</mo>+      </mtd> +      <mtd>+        <mo>&#8812;</mo>+      </mtd> +      <mtd>+        <mo>&#8828;</mo>+      </mtd> +      <mtd>+        <mo>&#8844;</mo>+      </mtd> +      <mtd>+        <mo>&#8860;</mo>+      </mtd> +      <mtd>+        <mo>&#8876;</mo>+      </mtd> +      <mtd>+        <mo>&#8892;</mo>+      </mtd> +      <mtd>+        <mo>&#8908;</mo>+      </mtd> +      <mtd>+        <mo>&#8924;</mo>+      </mtd> +      <mtd>+        <mo>&#8940;</mo>+      </mtd> +      <mtd>+        <mo>&#8956;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8717;</mo>+      </mtd> +      <mtd>+        <mo>&#8733;</mo>+      </mtd> +      <mtd>+        <mo>&#8749;</mo>+      </mtd> +      <mtd>+        <mo>&#8765;</mo>+      </mtd> +      <mtd>+        <mo>&#8781;</mo>+      </mtd> +      <mtd>+        <mo>&#8797;</mo>+      </mtd> +      <mtd>+        <mo>&#8813;</mo>+      </mtd> +      <mtd>+        <mo>&#8829;</mo>+      </mtd> +      <mtd>+        <mo>&#8845;</mo>+      </mtd> +      <mtd>+        <mo>&#8861;</mo>+      </mtd> +      <mtd>+        <mo>&#8877;</mo>+      </mtd> +      <mtd>+        <mo>&#8893;</mo>+      </mtd> +      <mtd>+        <mo>&#8909;</mo>+      </mtd> +      <mtd>+        <mo>&#8925;</mo>+      </mtd> +      <mtd>+        <mo>&#8941;</mo>+      </mtd> +      <mtd>+        <mo>&#8957;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8718;</mo>+      </mtd> +      <mtd>+        <mo>&#8734;</mo>+      </mtd> +      <mtd>+        <mo>&#8750;</mo>+      </mtd> +      <mtd>+        <mo>&#8766;</mo>+      </mtd> +      <mtd>+        <mo>&#8782;</mo>+      </mtd> +      <mtd>+        <mo>&#8798;</mo>+      </mtd> +      <mtd>+        <mo>&#8814;</mo>+      </mtd> +      <mtd>+        <mo>&#8830;</mo>+      </mtd> +      <mtd>+        <mo>&#8846;</mo>+      </mtd> +      <mtd>+        <mo>&#8862;</mo>+      </mtd> +      <mtd>+        <mo>&#8878;</mo>+      </mtd> +      <mtd>+        <mo>&#8894;</mo>+      </mtd> +      <mtd>+        <mo>&#8910;</mo>+      </mtd> +      <mtd>+        <mo>&#8926;</mo>+      </mtd> +      <mtd>+        <mo>&#8942;</mo>+      </mtd> +      <mtd>+        <mo>&#8958;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8719;</mo>+      </mtd> +      <mtd>+        <mo>&#8735;</mo>+      </mtd> +      <mtd>+        <mo>&#8751;</mo>+      </mtd> +      <mtd>+        <mo>&#8767;</mo>+      </mtd> +      <mtd>+        <mo>&#8783;</mo>+      </mtd> +      <mtd>+        <mo>&#8799;</mo>+      </mtd> +      <mtd>+        <mo>&#8815;</mo>+      </mtd> +      <mtd>+        <mo>&#8831;</mo>+      </mtd> +      <mtd>+        <mo>&#8847;</mo>+      </mtd> +      <mtd>+        <mo>&#8863;</mo>+      </mtd> +      <mtd>+        <mo>&#8879;</mo>+      </mtd> +      <mtd>+        <mo>&#8895;</mo>+      </mtd> +      <mtd>+        <mo>&#8911;</mo>+      </mtd> +      <mtd>+        <mo>&#8927;</mo>+      </mtd> +      <mtd>+        <mo>&#8943;</mo>+      </mtd> +      <mtd>+        <mo>&#8959;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "220" ]+      , [ EText TextNormal "221" ]+      , [ EText TextNormal "222" ]+      , [ EText TextNormal "223" ]+      , [ EText TextNormal "224" ]+      , [ EText TextNormal "225" ]+      , [ EText TextNormal "226" ]+      , [ EText TextNormal "227" ]+      , [ EText TextNormal "228" ]+      , [ EText TextNormal "229" ]+      , [ EText TextNormal "22A" ]+      , [ EText TextNormal "22B" ]+      , [ EText TextNormal "22C" ]+      , [ EText TextNormal "22D" ]+      , [ EText TextNormal "22E" ]+      , [ EText TextNormal "22F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\8704" ]+      , [ ESymbol Op "\8720" ]+      , [ ESymbol Ord "\8736" ]+      , [ ESymbol Op "\8752" ]+      , [ ESymbol Bin "\8768" ]+      , [ ESymbol Rel "\8784" ]+      , [ ESymbol Rel "\8800" ]+      , [ ESymbol Rel "\8816" ]+      , [ ESymbol Rel "\8832" ]+      , [ ESymbol Rel "\8848" ]+      , [ ESymbol Bin "\8864" ]+      , [ ESymbol Rel "\8880" ]+      , [ ESymbol Op "\8896" ]+      , [ ESymbol Rel "\8912" ]+      , [ ESymbol Rel "\8928" ]+      , [ ESymbol Rel "\8944" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\8705" ]+      , [ ESymbol Op "\8721" ]+      , [ ESymbol Ord "\8737" ]+      , [ ESymbol Op "\8753" ]+      , [ ESymbol Rel "\8769" ]+      , [ ESymbol Rel "\8785" ]+      , [ ESymbol Rel "\8801" ]+      , [ ESymbol Rel "\8817" ]+      , [ ESymbol Rel "\8833" ]+      , [ ESymbol Rel "\8849" ]+      , [ ESymbol Bin "\8865" ]+      , [ ESymbol Rel "\8881" ]+      , [ ESymbol Op "\8897" ]+      , [ ESymbol Rel "\8913" ]+      , [ ESymbol Rel "\8929" ]+      , [ ESymbol Rel "\8945" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\8706" ]+      , [ ESymbol Bin "\8722" ]+      , [ ESymbol Ord "\8738" ]+      , [ ESymbol Op "\8754" ]+      , [ ESymbol Rel "\8770" ]+      , [ ESymbol Rel "\8786" ]+      , [ ESymbol Rel "\8802" ]+      , [ ESymbol Rel "\8818" ]+      , [ ESymbol Rel "\8834" ]+      , [ ESymbol Rel "\8850" ]+      , [ ESymbol Rel "\8866" ]+      , [ ESymbol Rel "\8882" ]+      , [ ESymbol Op "\8898" ]+      , [ ESymbol Bin "\8914" ]+      , [ ESymbol Rel "\8930" ]+      , [ ESymbol Rel "\8946" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\8707" ]+      , [ ESymbol Bin "\8723" ]+      , [ ESymbol Rel "\8739" ]+      , [ ESymbol Op "\8755" ]+      , [ ESymbol Rel "\8771" ]+      , [ ESymbol Rel "\8787" ]+      , [ ESymbol Rel "\8803" ]+      , [ ESymbol Rel "\8819" ]+      , [ ESymbol Rel "\8835" ]+      , [ ESymbol Bin "\8851" ]+      , [ ESymbol Rel "\8867" ]+      , [ ESymbol Rel "\8883" ]+      , [ ESymbol Op "\8899" ]+      , [ ESymbol Bin "\8915" ]+      , [ ESymbol Rel "\8931" ]+      , [ ESymbol Rel "\8947" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\8708" ]+      , [ ESymbol Bin "\8724" ]+      , [ ESymbol Rel "\8740" ]+      , [ ESymbol Ord "\8756" ]+      , [ ESymbol Rel "\8772" ]+      , [ ESymbol Rel "\8788" ]+      , [ ESymbol Rel "\8804" ]+      , [ ESymbol Rel "\8820" ]+      , [ ESymbol Rel "\8836" ]+      , [ ESymbol Bin "\8852" ]+      , [ ESymbol Ord "\8868" ]+      , [ ESymbol Rel "\8884" ]+      , [ ESymbol Bin "\8900" ]+      , [ ESymbol Rel "\8916" ]+      , [ ESymbol Rel "\8932" ]+      , [ ESymbol Rel "\8948" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\8709" ]+      , [ ESymbol Bin "\8725" ]+      , [ ESymbol Rel "\8741" ]+      , [ ESymbol Ord "\8757" ]+      , [ ESymbol Rel "\8773" ]+      , [ ESymbol Rel "\8789" ]+      , [ ESymbol Rel "\8805" ]+      , [ ESymbol Rel "\8821" ]+      , [ ESymbol Rel "\8837" ]+      , [ ESymbol Bin "\8853" ]+      , [ ESymbol Ord "\8869" ]+      , [ ESymbol Rel "\8885" ]+      , [ ESymbol Bin "\8901" ]+      , [ ESymbol Rel "\8917" ]+      , [ ESymbol Rel "\8933" ]+      , [ ESymbol Rel "\8949" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\8710" ]+      , [ ESymbol Bin "\8726" ]+      , [ ESymbol Rel "\8742" ]+      , [ ESymbol Rel "\8758" ]+      , [ ESymbol Rel "\8774" ]+      , [ ESymbol Rel "\8790" ]+      , [ ESymbol Rel "\8806" ]+      , [ ESymbol Rel "\8822" ]+      , [ ESymbol Rel "\8838" ]+      , [ ESymbol Bin "\8854" ]+      , [ ESymbol Rel "\8870" ]+      , [ ESymbol Rel "\8886" ]+      , [ ESymbol Bin "\8902" ]+      , [ ESymbol Rel "\8918" ]+      , [ ESymbol Rel "\8934" ]+      , [ ESymbol Rel "\8950" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\8711" ]+      , [ ESymbol Bin "\8727" ]+      , [ ESymbol Bin "\8743" ]+      , [ ESymbol Rel "\8759" ]+      , [ ESymbol Rel "\8775" ]+      , [ ESymbol Rel "\8791" ]+      , [ ESymbol Rel "\8807" ]+      , [ ESymbol Rel "\8823" ]+      , [ ESymbol Rel "\8839" ]+      , [ ESymbol Bin "\8855" ]+      , [ ESymbol Rel "\8871" ]+      , [ ESymbol Rel "\8887" ]+      , [ ESymbol Bin "\8903" ]+      , [ ESymbol Rel "\8919" ]+      , [ ESymbol Rel "\8935" ]+      , [ ESymbol Rel "\8951" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Rel "\8712" ]+      , [ ESymbol Bin "\8728" ]+      , [ ESymbol Bin "\8744" ]+      , [ ESymbol Bin "\8760" ]+      , [ ESymbol Rel "\8776" ]+      , [ ESymbol Rel "\8792" ]+      , [ ESymbol Rel "\8808" ]+      , [ ESymbol Rel "\8824" ]+      , [ ESymbol Rel "\8840" ]+      , [ ESymbol Bin "\8856" ]+      , [ ESymbol Rel "\8872" ]+      , [ ESymbol Rel "\8888" ]+      , [ ESymbol Rel "\8904" ]+      , [ ESymbol Rel "\8920" ]+      , [ ESymbol Rel "\8936" ]+      , [ ESymbol Rel "\8952" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Rel "\8713" ]+      , [ ESymbol Bin "\8729" ]+      , [ ESymbol Bin "\8745" ]+      , [ ESymbol Rel "\8761" ]+      , [ ESymbol Rel "\8777" ]+      , [ ESymbol Rel "\8793" ]+      , [ ESymbol Rel "\8809" ]+      , [ ESymbol Rel "\8825" ]+      , [ ESymbol Rel "\8841" ]+      , [ ESymbol Bin "\8857" ]+      , [ ESymbol Rel "\8873" ]+      , [ ESymbol Ord "\8889" ]+      , [ ESymbol Bin "\8905" ]+      , [ ESymbol Rel "\8921" ]+      , [ ESymbol Rel "\8937" ]+      , [ ESymbol Rel "\8953" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Rel "\8714" ]+      , [ ESymbol Rad "\8730" ]+      , [ ESymbol Bin "\8746" ]+      , [ ESymbol Rel "\8762" ]+      , [ ESymbol Rel "\8778" ]+      , [ ESymbol Rel "\8794" ]+      , [ ESymbol Rel "\8810" ]+      , [ ESymbol Rel "\8826" ]+      , [ ESymbol Rel "\8842" ]+      , [ ESymbol Bin "\8858" ]+      , [ ESymbol Rel "\8874" ]+      , [ ESymbol Bin "\8890" ]+      , [ ESymbol Bin "\8906" ]+      , [ ESymbol Rel "\8922" ]+      , [ ESymbol Rel "\8938" ]+      , [ ESymbol Rel "\8954" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Rel "\8715" ]+      , [ ESymbol Rad "\8731" ]+      , [ ESymbol Op "\8747" ]+      , [ ESymbol Rel "\8763" ]+      , [ ESymbol Rel "\8779" ]+      , [ ESymbol Rel "\8795" ]+      , [ ESymbol Rel "\8811" ]+      , [ ESymbol Rel "\8827" ]+      , [ ESymbol Rel "\8843" ]+      , [ ESymbol Bin "\8859" ]+      , [ ESymbol Rel "\8875" ]+      , [ ESymbol Bin "\8891" ]+      , [ ESymbol Bin "\8907" ]+      , [ ESymbol Rel "\8923" ]+      , [ ESymbol Rel "\8939" ]+      , [ ESymbol Rel "\8955" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Rel "\8716" ]+      , [ ESymbol Rad "\8732" ]+      , [ ESymbol Op "\8748" ]+      , [ ESymbol Rel "\8764" ]+      , [ ESymbol Rel "\8780" ]+      , [ ESymbol Rel "\8796" ]+      , [ ESymbol Rel "\8812" ]+      , [ ESymbol Rel "\8828" ]+      , [ ESymbol Bin "\8844" ]+      , [ ESymbol Bin "\8860" ]+      , [ ESymbol Rel "\8876" ]+      , [ ESymbol Bin "\8892" ]+      , [ ESymbol Bin "\8908" ]+      , [ ESymbol Rel "\8924" ]+      , [ ESymbol Rel "\8940" ]+      , [ ESymbol Rel "\8956" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Rel "\8717" ]+      , [ ESymbol Rel "\8733" ]+      , [ ESymbol Op "\8749" ]+      , [ ESymbol Rel "\8765" ]+      , [ ESymbol Rel "\8781" ]+      , [ ESymbol Rel "\8797" ]+      , [ ESymbol Rel "\8813" ]+      , [ ESymbol Rel "\8829" ]+      , [ ESymbol Bin "\8845" ]+      , [ ESymbol Bin "\8861" ]+      , [ ESymbol Rel "\8877" ]+      , [ ESymbol Bin "\8893" ]+      , [ ESymbol Rel "\8909" ]+      , [ ESymbol Rel "\8925" ]+      , [ ESymbol Rel "\8941" ]+      , [ ESymbol Rel "\8957" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\8718" ]+      , [ ESymbol Ord "\8734" ]+      , [ ESymbol Op "\8750" ]+      , [ ESymbol Bin "\8766" ]+      , [ ESymbol Rel "\8782" ]+      , [ ESymbol Rel "\8798" ]+      , [ ESymbol Rel "\8814" ]+      , [ ESymbol Rel "\8830" ]+      , [ ESymbol Bin "\8846" ]+      , [ ESymbol Bin "\8862" ]+      , [ ESymbol Rel "\8878" ]+      , [ ESymbol Ord "\8894" ]+      , [ ESymbol Bin "\8910" ]+      , [ ESymbol Rel "\8926" ]+      , [ ESymbol Rel "\8942" ]+      , [ ESymbol Rel "\8958" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Op "\8719" ]+      , [ ESymbol Ord "\8735" ]+      , [ ESymbol Op "\8751" ]+      , [ ESymbol Ord "\8767" ]+      , [ ESymbol Rel "\8783" ]+      , [ ESymbol Rel "\8799" ]+      , [ ESymbol Rel "\8815" ]+      , [ ESymbol Rel "\8831" ]+      , [ ESymbol Rel "\8847" ]+      , [ ESymbol Bin "\8863" ]+      , [ ESymbol Rel "\8879" ]+      , [ ESymbol Ord "\8895" ]+      , [ ESymbol Bin "\8911" ]+      , [ ESymbol Rel "\8927" ]+      , [ ESymbol Ord "\8943" ]+      , [ ESymbol Rel "\8959" ]+      ]+    ]+]
+ test/reader/mml/02300_Miscellaneous_Technical.test view
@@ -0,0 +1,1232 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>230</mtext>+      </mtd> +      <mtd>+        <mtext>231</mtext>+      </mtd> +      <mtd>+        <mtext>232</mtext>+      </mtd> +      <mtd>+        <mtext>233</mtext>+      </mtd> +      <mtd>+        <mtext>234</mtext>+      </mtd> +      <mtd>+        <mtext>235</mtext>+      </mtd> +      <mtd>+        <mtext>236</mtext>+      </mtd> +      <mtd>+        <mtext>237</mtext>+      </mtd> +      <mtd>+        <mtext>238</mtext>+      </mtd> +      <mtd>+        <mtext>239</mtext>+      </mtd> +      <mtd>+        <mtext>23A</mtext>+      </mtd> +      <mtd>+        <mtext>23B</mtext>+      </mtd> +      <mtd>+        <mtext>23C</mtext>+      </mtd> +      <mtd>+        <mtext>23D</mtext>+      </mtd> +      <mtd>+        <mtext>23E</mtext>+      </mtd> +      <mtd>+        <mtext>23F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#8960;</mo>+      </mtd> +      <mtd>+        <mo>&#8976;</mo>+      </mtd> +      <mtd>+        <mo>&#8992;</mo>+      </mtd> +      <mtd>+        <mo>&#9008;</mo>+      </mtd> +      <mtd>+        <mo>&#9024;</mo>+      </mtd> +      <mtd>+        <mo>&#9040;</mo>+      </mtd> +      <mtd>+        <mo>&#9056;</mo>+      </mtd> +      <mtd>+        <mo>&#9072;</mo>+      </mtd> +      <mtd>+        <mo>&#9088;</mo>+      </mtd> +      <mtd>+        <mo>&#9104;</mo>+      </mtd> +      <mtd>+        <mo>&#9120;</mo>+      </mtd> +      <mtd>+        <mo>&#9136;</mo>+      </mtd> +      <mtd>+        <mo>&#9152;</mo>+      </mtd> +      <mtd>+        <mo>&#9168;</mo>+      </mtd> +      <mtd>+        <mo>&#9184;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#8961;</mo>+      </mtd> +      <mtd>+        <mo>&#8977;</mo>+      </mtd> +      <mtd>+        <mo>&#8993;</mo>+      </mtd> +      <mtd>+        <mo>&#9009;</mo>+      </mtd> +      <mtd>+        <mo>&#9025;</mo>+      </mtd> +      <mtd>+        <mo>&#9041;</mo>+      </mtd> +      <mtd>+        <mo>&#9057;</mo>+      </mtd> +      <mtd>+        <mo>&#9073;</mo>+      </mtd> +      <mtd>+        <mo>&#9089;</mo>+      </mtd> +      <mtd>+        <mo>&#9105;</mo>+      </mtd> +      <mtd>+        <mo>&#9121;</mo>+      </mtd> +      <mtd>+        <mo>&#9137;</mo>+      </mtd> +      <mtd>+        <mo>&#9153;</mo>+      </mtd> +      <mtd>+        <mo>&#9169;</mo>+      </mtd> +      <mtd>+        <mo>&#9185;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#8962;</mo>+      </mtd> +      <mtd>+        <mo>&#8978;</mo>+      </mtd> +      <mtd>+        <mo>&#8994;</mo>+      </mtd> +      <mtd>+        <mo>&#9010;</mo>+      </mtd> +      <mtd>+        <mo>&#9026;</mo>+      </mtd> +      <mtd>+        <mo>&#9042;</mo>+      </mtd> +      <mtd>+        <mo>&#9058;</mo>+      </mtd> +      <mtd>+        <mo>&#9074;</mo>+      </mtd> +      <mtd>+        <mo>&#9090;</mo>+      </mtd> +      <mtd>+        <mo>&#9106;</mo>+      </mtd> +      <mtd>+        <mo>&#9122;</mo>+      </mtd> +      <mtd>+        <mo>&#9138;</mo>+      </mtd> +      <mtd>+        <mo>&#9154;</mo>+      </mtd> +      <mtd>+        <mo>&#9170;</mo>+      </mtd> +      <mtd>+        <mo>&#9186;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#8963;</mo>+      </mtd> +      <mtd>+        <mo>&#8979;</mo>+      </mtd> +      <mtd>+        <mo>&#8995;</mo>+      </mtd> +      <mtd>+        <mo>&#9011;</mo>+      </mtd> +      <mtd>+        <mo>&#9027;</mo>+      </mtd> +      <mtd>+        <mo>&#9043;</mo>+      </mtd> +      <mtd>+        <mo>&#9059;</mo>+      </mtd> +      <mtd>+        <mo>&#9075;</mo>+      </mtd> +      <mtd>+        <mo>&#9091;</mo>+      </mtd> +      <mtd>+        <mo>&#9107;</mo>+      </mtd> +      <mtd>+        <mo>&#9123;</mo>+      </mtd> +      <mtd>+        <mo>&#9139;</mo>+      </mtd> +      <mtd>+        <mo>&#9155;</mo>+      </mtd> +      <mtd>+        <mo>&#9171;</mo>+      </mtd> +      <mtd>+        <mo>&#9187;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#8964;</mo>+      </mtd> +      <mtd>+        <mo>&#8980;</mo>+      </mtd> +      <mtd>+        <mo>&#8996;</mo>+      </mtd> +      <mtd>+        <mo>&#9012;</mo>+      </mtd> +      <mtd>+        <mo>&#9028;</mo>+      </mtd> +      <mtd>+        <mo>&#9044;</mo>+      </mtd> +      <mtd>+        <mo>&#9060;</mo>+      </mtd> +      <mtd>+        <mo>&#9076;</mo>+      </mtd> +      <mtd>+        <mo>&#9092;</mo>+      </mtd> +      <mtd>+        <mo>&#9108;</mo>+      </mtd> +      <mtd>+        <mo>&#9124;</mo>+      </mtd> +      <mtd>+        <mo>&#9140;</mo>+      </mtd> +      <mtd>+        <mo>&#9156;</mo>+      </mtd> +      <mtd>+        <mo>&#9172;</mo>+      </mtd> +      <mtd>+        <mo>&#9188;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#8965;</mo>+      </mtd> +      <mtd>+        <mo>&#8981;</mo>+      </mtd> +      <mtd>+        <mo>&#8997;</mo>+      </mtd> +      <mtd>+        <mo>&#9013;</mo>+      </mtd> +      <mtd>+        <mo>&#9029;</mo>+      </mtd> +      <mtd>+        <mo>&#9045;</mo>+      </mtd> +      <mtd>+        <mo>&#9061;</mo>+      </mtd> +      <mtd>+        <mo>&#9077;</mo>+      </mtd> +      <mtd>+        <mo>&#9093;</mo>+      </mtd> +      <mtd>+        <mo>&#9109;</mo>+      </mtd> +      <mtd>+        <mo>&#9125;</mo>+      </mtd> +      <mtd>+        <mo>&#9141;</mo>+      </mtd> +      <mtd>+        <mo>&#9157;</mo>+      </mtd> +      <mtd>+        <mo>&#9173;</mo>+      </mtd> +      <mtd>+        <mo>&#9189;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#8966;</mo>+      </mtd> +      <mtd>+        <mo>&#8982;</mo>+      </mtd> +      <mtd>+        <mo>&#8998;</mo>+      </mtd> +      <mtd>+        <mo>&#9014;</mo>+      </mtd> +      <mtd>+        <mo>&#9030;</mo>+      </mtd> +      <mtd>+        <mo>&#9046;</mo>+      </mtd> +      <mtd>+        <mo>&#9062;</mo>+      </mtd> +      <mtd>+        <mo>&#9078;</mo>+      </mtd> +      <mtd>+        <mo>&#9094;</mo>+      </mtd> +      <mtd>+        <mo>&#9110;</mo>+      </mtd> +      <mtd>+        <mo>&#9126;</mo>+      </mtd> +      <mtd>+        <mo>&#9142;</mo>+      </mtd> +      <mtd>+        <mo>&#9158;</mo>+      </mtd> +      <mtd>+        <mo>&#9174;</mo>+      </mtd> +      <mtd>+        <mo>&#9190;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#8967;</mo>+      </mtd> +      <mtd>+        <mo>&#8983;</mo>+      </mtd> +      <mtd>+        <mo>&#8999;</mo>+      </mtd> +      <mtd>+        <mo>&#9015;</mo>+      </mtd> +      <mtd>+        <mo>&#9031;</mo>+      </mtd> +      <mtd>+        <mo>&#9047;</mo>+      </mtd> +      <mtd>+        <mo>&#9063;</mo>+      </mtd> +      <mtd>+        <mo>&#9079;</mo>+      </mtd> +      <mtd>+        <mo>&#9095;</mo>+      </mtd> +      <mtd>+        <mo>&#9111;</mo>+      </mtd> +      <mtd>+        <mo>&#9127;</mo>+      </mtd> +      <mtd>+        <mo>&#9143;</mo>+      </mtd> +      <mtd>+        <mo>&#9159;</mo>+      </mtd> +      <mtd>+        <mo>&#9175;</mo>+      </mtd> +      <mtd>+        <mo>&#9191;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#8968;</mo>+      </mtd> +      <mtd>+        <mo>&#8984;</mo>+      </mtd> +      <mtd>+        <mo>&#9000;</mo>+      </mtd> +      <mtd>+        <mo>&#9016;</mo>+      </mtd> +      <mtd>+        <mo>&#9032;</mo>+      </mtd> +      <mtd>+        <mo>&#9048;</mo>+      </mtd> +      <mtd>+        <mo>&#9064;</mo>+      </mtd> +      <mtd>+        <mo>&#9080;</mo>+      </mtd> +      <mtd>+        <mo>&#9096;</mo>+      </mtd> +      <mtd>+        <mo>&#9112;</mo>+      </mtd> +      <mtd>+        <mo>&#9128;</mo>+      </mtd> +      <mtd>+        <mo>&#9144;</mo>+      </mtd> +      <mtd>+        <mo>&#9160;</mo>+      </mtd> +      <mtd>+        <mo>&#9176;</mo>+      </mtd> +      <mtd>+        <mo>&#9192;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#8969;</mo>+      </mtd> +      <mtd>+        <mo>&#8985;</mo>+      </mtd> +      <mtd>+        <mo>&#9001;</mo>+      </mtd> +      <mtd>+        <mo>&#9017;</mo>+      </mtd> +      <mtd>+        <mo>&#9033;</mo>+      </mtd> +      <mtd>+        <mo>&#9049;</mo>+      </mtd> +      <mtd>+        <mo>&#9065;</mo>+      </mtd> +      <mtd>+        <mo>&#9081;</mo>+      </mtd> +      <mtd>+        <mo>&#9097;</mo>+      </mtd> +      <mtd>+        <mo>&#9113;</mo>+      </mtd> +      <mtd>+        <mo>&#9129;</mo>+      </mtd> +      <mtd>+        <mo>&#9145;</mo>+      </mtd> +      <mtd>+        <mo>&#9161;</mo>+      </mtd> +      <mtd>+        <mo>&#9177;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#8970;</mo>+      </mtd> +      <mtd>+        <mo>&#8986;</mo>+      </mtd> +      <mtd>+        <mo>&#9002;</mo>+      </mtd> +      <mtd>+        <mo>&#9018;</mo>+      </mtd> +      <mtd>+        <mo>&#9034;</mo>+      </mtd> +      <mtd>+        <mo>&#9050;</mo>+      </mtd> +      <mtd>+        <mo>&#9066;</mo>+      </mtd> +      <mtd>+        <mo>&#9082;</mo>+      </mtd> +      <mtd>+        <mo>&#9098;</mo>+      </mtd> +      <mtd>+        <mo>&#9114;</mo>+      </mtd> +      <mtd>+        <mo>&#9130;</mo>+      </mtd> +      <mtd>+        <mo>&#9146;</mo>+      </mtd> +      <mtd>+        <mo>&#9162;</mo>+      </mtd> +      <mtd>+        <mo>&#9178;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#8971;</mo>+      </mtd> +      <mtd>+        <mo>&#8987;</mo>+      </mtd> +      <mtd>+        <mo>&#9003;</mo>+      </mtd> +      <mtd>+        <mo>&#9019;</mo>+      </mtd> +      <mtd>+        <mo>&#9035;</mo>+      </mtd> +      <mtd>+        <mo>&#9051;</mo>+      </mtd> +      <mtd>+        <mo>&#9067;</mo>+      </mtd> +      <mtd>+        <mo>&#9083;</mo>+      </mtd> +      <mtd>+        <mo>&#9099;</mo>+      </mtd> +      <mtd>+        <mo>&#9115;</mo>+      </mtd> +      <mtd>+        <mo>&#9131;</mo>+      </mtd> +      <mtd>+        <mo>&#9147;</mo>+      </mtd> +      <mtd>+        <mo>&#9163;</mo>+      </mtd> +      <mtd>+        <mo>&#9179;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#8972;</mo>+      </mtd> +      <mtd>+        <mo>&#8988;</mo>+      </mtd> +      <mtd>+        <mo>&#9004;</mo>+      </mtd> +      <mtd>+        <mo>&#9020;</mo>+      </mtd> +      <mtd>+        <mo>&#9036;</mo>+      </mtd> +      <mtd>+        <mo>&#9052;</mo>+      </mtd> +      <mtd>+        <mo>&#9068;</mo>+      </mtd> +      <mtd>+        <mo>&#9084;</mo>+      </mtd> +      <mtd>+        <mo>&#9100;</mo>+      </mtd> +      <mtd>+        <mo>&#9116;</mo>+      </mtd> +      <mtd>+        <mo>&#9132;</mo>+      </mtd> +      <mtd>+        <mo>&#9148;</mo>+      </mtd> +      <mtd>+        <mo>&#9164;</mo>+      </mtd> +      <mtd>+        <mo>&#9180;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#8973;</mo>+      </mtd> +      <mtd>+        <mo>&#8989;</mo>+      </mtd> +      <mtd>+        <mo>&#9005;</mo>+      </mtd> +      <mtd>+        <mo>&#9021;</mo>+      </mtd> +      <mtd>+        <mo>&#9037;</mo>+      </mtd> +      <mtd>+        <mo>&#9053;</mo>+      </mtd> +      <mtd>+        <mo>&#9069;</mo>+      </mtd> +      <mtd>+        <mo>&#9085;</mo>+      </mtd> +      <mtd>+        <mo>&#9101;</mo>+      </mtd> +      <mtd>+        <mo>&#9117;</mo>+      </mtd> +      <mtd>+        <mo>&#9133;</mo>+      </mtd> +      <mtd>+        <mo>&#9149;</mo>+      </mtd> +      <mtd>+        <mo>&#9165;</mo>+      </mtd> +      <mtd>+        <mo>&#9181;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#8974;</mo>+      </mtd> +      <mtd>+        <mo>&#8990;</mo>+      </mtd> +      <mtd>+        <mo>&#9006;</mo>+      </mtd> +      <mtd>+        <mo>&#9022;</mo>+      </mtd> +      <mtd>+        <mo>&#9038;</mo>+      </mtd> +      <mtd>+        <mo>&#9054;</mo>+      </mtd> +      <mtd>+        <mo>&#9070;</mo>+      </mtd> +      <mtd>+        <mo>&#9086;</mo>+      </mtd> +      <mtd>+        <mo>&#9102;</mo>+      </mtd> +      <mtd>+        <mo>&#9118;</mo>+      </mtd> +      <mtd>+        <mo>&#9134;</mo>+      </mtd> +      <mtd>+        <mo>&#9150;</mo>+      </mtd> +      <mtd>+        <mo>&#9166;</mo>+      </mtd> +      <mtd>+        <mo>&#9182;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#8975;</mo>+      </mtd> +      <mtd>+        <mo>&#8991;</mo>+      </mtd> +      <mtd>+        <mo>&#9007;</mo>+      </mtd> +      <mtd>+        <mo>&#9023;</mo>+      </mtd> +      <mtd>+        <mo>&#9039;</mo>+      </mtd> +      <mtd>+        <mo>&#9055;</mo>+      </mtd> +      <mtd>+        <mo>&#9071;</mo>+      </mtd> +      <mtd>+        <mo>&#9087;</mo>+      </mtd> +      <mtd>+        <mo>&#9103;</mo>+      </mtd> +      <mtd>+        <mo>&#9119;</mo>+      </mtd> +      <mtd>+        <mo>&#9135;</mo>+      </mtd> +      <mtd>+        <mo>&#9151;</mo>+      </mtd> +      <mtd>+        <mo>&#9167;</mo>+      </mtd> +      <mtd>+        <mo>&#9183;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "230" ]+      , [ EText TextNormal "231" ]+      , [ EText TextNormal "232" ]+      , [ EText TextNormal "233" ]+      , [ EText TextNormal "234" ]+      , [ EText TextNormal "235" ]+      , [ EText TextNormal "236" ]+      , [ EText TextNormal "237" ]+      , [ EText TextNormal "238" ]+      , [ EText TextNormal "239" ]+      , [ EText TextNormal "23A" ]+      , [ EText TextNormal "23B" ]+      , [ EText TextNormal "23C" ]+      , [ EText TextNormal "23D" ]+      , [ EText TextNormal "23E" ]+      , [ EText TextNormal "23F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\8960" ]+      , [ ESymbol Ord "\8976" ]+      , [ ESymbol Ord "\8992" ]+      , [ ESymbol Ord "\9008" ]+      , [ ESymbol Ord "\9024" ]+      , [ ESymbol Ord "\9040" ]+      , [ ESymbol Ord "\9056" ]+      , [ ESymbol Ord "\9072" ]+      , [ ESymbol Ord "\9088" ]+      , [ ESymbol Ord "\9104" ]+      , [ ESymbol Ord "\9120" ]+      , [ ESymbol Ord "\9136" ]+      , [ ESymbol Ord "\9152" ]+      , [ ESymbol Ord "\9168" ]+      , [ ESymbol Accent "\9184" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\8961" ]+      , [ ESymbol Ord "\8977" ]+      , [ ESymbol Ord "\8993" ]+      , [ ESymbol Ord "\9009" ]+      , [ ESymbol Ord "\9025" ]+      , [ ESymbol Ord "\9041" ]+      , [ ESymbol Ord "\9057" ]+      , [ ESymbol Ord "\9073" ]+      , [ ESymbol Ord "\9089" ]+      , [ ESymbol Ord "\9105" ]+      , [ ESymbol Ord "\9121" ]+      , [ ESymbol Ord "\9137" ]+      , [ ESymbol Ord "\9153" ]+      , [ ESymbol Ord "\9169" ]+      , [ ESymbol Accent "\9185" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\8962" ]+      , [ ESymbol Ord "\8978" ]+      , [ ESymbol Rel "\8994" ]+      , [ ESymbol Ord "\9010" ]+      , [ ESymbol Ord "\9026" ]+      , [ ESymbol Ord "\9042" ]+      , [ ESymbol Ord "\9058" ]+      , [ ESymbol Ord "\9074" ]+      , [ ESymbol Ord "\9090" ]+      , [ ESymbol Ord "\9106" ]+      , [ ESymbol Ord "\9122" ]+      , [ ESymbol Ord "\9138" ]+      , [ ESymbol Ord "\9154" ]+      , [ ESymbol Ord "\9170" ]+      , [ ESymbol Ord "\9186" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\8963" ]+      , [ ESymbol Ord "\8979" ]+      , [ ESymbol Rel "\8995" ]+      , [ ESymbol Ord "\9011" ]+      , [ ESymbol Ord "\9027" ]+      , [ ESymbol Ord "\9043" ]+      , [ ESymbol Ord "\9059" ]+      , [ ESymbol Ord "\9075" ]+      , [ ESymbol Ord "\9091" ]+      , [ ESymbol Ord "\9107" ]+      , [ ESymbol Ord "\9123" ]+      , [ ESymbol Ord "\9139" ]+      , [ ESymbol Ord "\9155" ]+      , [ ESymbol Ord "\9171" ]+      , [ ESymbol Ord "\9187" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\8964" ]+      , [ ESymbol Ord "\8980" ]+      , [ ESymbol Ord "\8996" ]+      , [ ESymbol Ord "\9012" ]+      , [ ESymbol Ord "\9028" ]+      , [ ESymbol Ord "\9044" ]+      , [ ESymbol Ord "\9060" ]+      , [ ESymbol Ord "\9076" ]+      , [ ESymbol Ord "\9092" ]+      , [ ESymbol Ord "\9108" ]+      , [ ESymbol Ord "\9124" ]+      , [ ESymbol Accent "\9140" ]+      , [ ESymbol Ord "\9156" ]+      , [ ESymbol Ord "\9172" ]+      , [ ESymbol Ord "\9188" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Bin "\8965" ]+      , [ ESymbol Ord "\8981" ]+      , [ ESymbol Ord "\8997" ]+      , [ ESymbol Ord "\9013" ]+      , [ ESymbol Ord "\9029" ]+      , [ ESymbol Ord "\9045" ]+      , [ ESymbol Ord "\9061" ]+      , [ ESymbol Ord "\9077" ]+      , [ ESymbol Ord "\9093" ]+      , [ ESymbol Ord "\9109" ]+      , [ ESymbol Ord "\9125" ]+      , [ ESymbol Accent "\9141" ]+      , [ ESymbol Ord "\9157" ]+      , [ ESymbol Ord "\9173" ]+      , [ ESymbol Ord "\9189" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Bin "\8966" ]+      , [ ESymbol Ord "\8982" ]+      , [ ESymbol Ord "\8998" ]+      , [ ESymbol Ord "\9014" ]+      , [ ESymbol Ord "\9030" ]+      , [ ESymbol Ord "\9046" ]+      , [ ESymbol Ord "\9062" ]+      , [ ESymbol Ord "\9078" ]+      , [ ESymbol Ord "\9094" ]+      , [ ESymbol Ord "\9110" ]+      , [ ESymbol Ord "\9126" ]+      , [ ESymbol Ord "\9142" ]+      , [ ESymbol Ord "\9158" ]+      , [ ESymbol Ord "\9174" ]+      , [ ESymbol Ord "\9190" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\8967" ]+      , [ ESymbol Ord "\8983" ]+      , [ ESymbol Ord "\8999" ]+      , [ ESymbol Ord "\9015" ]+      , [ ESymbol Ord "\9031" ]+      , [ ESymbol Ord "\9047" ]+      , [ ESymbol Ord "\9063" ]+      , [ ESymbol Ord "\9079" ]+      , [ ESymbol Ord "\9095" ]+      , [ ESymbol Ord "\9111" ]+      , [ ESymbol Ord "\9127" ]+      , [ ESymbol Ord "\9143" ]+      , [ ESymbol Ord "\9159" ]+      , [ ESymbol Ord "\9175" ]+      , [ ESymbol Ord "\9191" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Open "\8968" ]+      , [ ESymbol Ord "\8984" ]+      , [ ESymbol Ord "\9000" ]+      , [ ESymbol Ord "\9016" ]+      , [ ESymbol Ord "\9032" ]+      , [ ESymbol Ord "\9048" ]+      , [ ESymbol Ord "\9064" ]+      , [ ESymbol Ord "\9080" ]+      , [ ESymbol Ord "\9096" ]+      , [ ESymbol Ord "\9112" ]+      , [ ESymbol Ord "\9128" ]+      , [ ESymbol Ord "\9144" ]+      , [ ESymbol Ord "\9160" ]+      , [ ESymbol Ord "\9176" ]+      , [ ESymbol Ord "\9192" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Close "\8969" ]+      , [ ESymbol Ord "\8985" ]+      , [ ESymbol Open "\9001" ]+      , [ ESymbol Ord "\9017" ]+      , [ ESymbol Ord "\9033" ]+      , [ ESymbol Ord "\9049" ]+      , [ ESymbol Ord "\9065" ]+      , [ ESymbol Ord "\9081" ]+      , [ ESymbol Ord "\9097" ]+      , [ ESymbol Ord "\9113" ]+      , [ ESymbol Ord "\9129" ]+      , [ ESymbol Ord "\9145" ]+      , [ ESymbol Ord "\9161" ]+      , [ ESymbol Ord "\9177" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Open "\8970" ]+      , [ ESymbol Ord "\8986" ]+      , [ ESymbol Close "\9002" ]+      , [ ESymbol Ord "\9018" ]+      , [ ESymbol Ord "\9034" ]+      , [ ESymbol Ord "\9050" ]+      , [ ESymbol Ord "\9066" ]+      , [ ESymbol Ord "\9082" ]+      , [ ESymbol Ord "\9098" ]+      , [ ESymbol Ord "\9114" ]+      , [ ESymbol Ord "\9130" ]+      , [ ESymbol Ord "\9146" ]+      , [ ESymbol Ord "\9162" ]+      , [ ESymbol Ord "\9178" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Close "\8971" ]+      , [ ESymbol Ord "\8987" ]+      , [ ESymbol Ord "\9003" ]+      , [ ESymbol Ord "\9019" ]+      , [ ESymbol Ord "\9035" ]+      , [ ESymbol Ord "\9051" ]+      , [ ESymbol Ord "\9067" ]+      , [ ESymbol Ord "\9083" ]+      , [ ESymbol Ord "\9099" ]+      , [ ESymbol Ord "\9115" ]+      , [ ESymbol Ord "\9131" ]+      , [ ESymbol Ord "\9147" ]+      , [ ESymbol Ord "\9163" ]+      , [ ESymbol Ord "\9179" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\8972" ]+      , [ ESymbol Open "\8988" ]+      , [ ESymbol Ord "\9004" ]+      , [ ESymbol Ord "\9020" ]+      , [ ESymbol Ord "\9036" ]+      , [ ESymbol Ord "\9052" ]+      , [ ESymbol Ord "\9068" ]+      , [ ESymbol Ord "\9084" ]+      , [ ESymbol Ord "\9100" ]+      , [ ESymbol Ord "\9116" ]+      , [ ESymbol Ord "\9132" ]+      , [ ESymbol Ord "\9148" ]+      , [ ESymbol Ord "\9164" ]+      , [ ESymbol Accent "\9180" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\8973" ]+      , [ ESymbol Close "\8989" ]+      , [ ESymbol Ord "\9005" ]+      , [ ESymbol Bin "\9021" ]+      , [ ESymbol Ord "\9037" ]+      , [ ESymbol Ord "\9053" ]+      , [ ESymbol Ord "\9069" ]+      , [ ESymbol Ord "\9085" ]+      , [ ESymbol Ord "\9101" ]+      , [ ESymbol Ord "\9117" ]+      , [ ESymbol Ord "\9133" ]+      , [ ESymbol Ord "\9149" ]+      , [ ESymbol Ord "\9165" ]+      , [ ESymbol Accent "\9181" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\8974" ]+      , [ ESymbol Open "\8990" ]+      , [ ESymbol Ord "\9006" ]+      , [ ESymbol Ord "\9022" ]+      , [ ESymbol Ord "\9038" ]+      , [ ESymbol Ord "\9054" ]+      , [ ESymbol Ord "\9070" ]+      , [ ESymbol Ord "\9086" ]+      , [ ESymbol Ord "\9102" ]+      , [ ESymbol Ord "\9118" ]+      , [ ESymbol Ord "\9134" ]+      , [ ESymbol Ord "\9150" ]+      , [ ESymbol Ord "\9166" ]+      , [ ESymbol Accent "\9182" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\8975" ]+      , [ ESymbol Close "\8991" ]+      , [ ESymbol Ord "\9007" ]+      , [ ESymbol Rel "\9023" ]+      , [ ESymbol Ord "\9039" ]+      , [ ESymbol Ord "\9055" ]+      , [ ESymbol Ord "\9071" ]+      , [ ESymbol Ord "\9087" ]+      , [ ESymbol Ord "\9103" ]+      , [ ESymbol Ord "\9119" ]+      , [ ESymbol Ord "\9135" ]+      , [ ESymbol Ord "\9151" ]+      , [ ESymbol Ord "\9167" ]+      , [ ESymbol Accent "\9183" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/02400_Control_Pictures.test view
@@ -0,0 +1,404 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>240</mtext>+      </mtd> +      <mtd>+        <mtext>241</mtext>+      </mtd> +      <mtd>+        <mtext>242</mtext>+      </mtd> +      <mtd>+        <mtext>243</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#9216;</mo>+      </mtd> +      <mtd>+        <mo>&#9232;</mo>+      </mtd> +      <mtd>+        <mo>&#9248;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#9217;</mo>+      </mtd> +      <mtd>+        <mo>&#9233;</mo>+      </mtd> +      <mtd>+        <mo>&#9249;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#9218;</mo>+      </mtd> +      <mtd>+        <mo>&#9234;</mo>+      </mtd> +      <mtd>+        <mo>&#9250;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#9219;</mo>+      </mtd> +      <mtd>+        <mo>&#9235;</mo>+      </mtd> +      <mtd>+        <mo>&#9251;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#9220;</mo>+      </mtd> +      <mtd>+        <mo>&#9236;</mo>+      </mtd> +      <mtd>+        <mo>&#9252;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#9221;</mo>+      </mtd> +      <mtd>+        <mo>&#9237;</mo>+      </mtd> +      <mtd>+        <mo>&#9253;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#9222;</mo>+      </mtd> +      <mtd>+        <mo>&#9238;</mo>+      </mtd> +      <mtd>+        <mo>&#9254;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#9223;</mo>+      </mtd> +      <mtd>+        <mo>&#9239;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#9224;</mo>+      </mtd> +      <mtd>+        <mo>&#9240;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#9225;</mo>+      </mtd> +      <mtd>+        <mo>&#9241;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#9226;</mo>+      </mtd> +      <mtd>+        <mo>&#9242;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#9227;</mo>+      </mtd> +      <mtd>+        <mo>&#9243;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#9228;</mo>+      </mtd> +      <mtd>+        <mo>&#9244;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#9229;</mo>+      </mtd> +      <mtd>+        <mo>&#9245;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#9230;</mo>+      </mtd> +      <mtd>+        <mo>&#9246;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#9231;</mo>+      </mtd> +      <mtd>+        <mo>&#9247;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "240" ]+      , [ EText TextNormal "241" ]+      , [ EText TextNormal "242" ]+      , [ EText TextNormal "243" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\9216" ]+      , [ ESymbol Ord "\9232" ]+      , [ ESymbol Ord "\9248" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\9217" ]+      , [ ESymbol Ord "\9233" ]+      , [ ESymbol Ord "\9249" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\9218" ]+      , [ ESymbol Ord "\9234" ]+      , [ ESymbol Ord "\9250" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\9219" ]+      , [ ESymbol Ord "\9235" ]+      , [ ESymbol Ord "\9251" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\9220" ]+      , [ ESymbol Ord "\9236" ]+      , [ ESymbol Ord "\9252" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\9221" ]+      , [ ESymbol Ord "\9237" ]+      , [ ESymbol Ord "\9253" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\9222" ]+      , [ ESymbol Ord "\9238" ]+      , [ ESymbol Ord "\9254" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\9223" ]+      , [ ESymbol Ord "\9239" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\9224" ]+      , [ ESymbol Ord "\9240" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\9225" ]+      , [ ESymbol Ord "\9241" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\9226" ]+      , [ ESymbol Ord "\9242" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\9227" ]+      , [ ESymbol Ord "\9243" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\9228" ]+      , [ ESymbol Ord "\9244" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\9229" ]+      , [ ESymbol Ord "\9245" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\9230" ]+      , [ ESymbol Ord "\9246" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\9231" ]+      , [ ESymbol Ord "\9247" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/02440_Optical_Character_Recognition.test view
@@ -0,0 +1,260 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>244</mtext>+      </mtd> +      <mtd>+        <mtext>245</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#9280;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#9281;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#9282;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#9283;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#9284;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#9285;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#9286;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#9287;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#9288;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#9289;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#9290;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter ]+    [ [ [] , [ EText TextNormal "244" ] , [ EText TextNormal "245" ] ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\9280" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\9281" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\9282" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\9283" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\9284" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\9285" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\9286" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\9287" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\9288" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\9289" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\9290" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/02460_Enclosed_Alphanumerics.test view
@@ -0,0 +1,818 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>246</mtext>+      </mtd> +      <mtd>+        <mtext>247</mtext>+      </mtd> +      <mtd>+        <mtext>248</mtext>+      </mtd> +      <mtd>+        <mtext>249</mtext>+      </mtd> +      <mtd>+        <mtext>24A</mtext>+      </mtd> +      <mtd>+        <mtext>24B</mtext>+      </mtd> +      <mtd>+        <mtext>24C</mtext>+      </mtd> +      <mtd>+        <mtext>24D</mtext>+      </mtd> +      <mtd>+        <mtext>24E</mtext>+      </mtd> +      <mtd>+        <mtext>24F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#9312;</mo>+      </mtd> +      <mtd>+        <mo>&#9328;</mo>+      </mtd> +      <mtd>+        <mo>&#9344;</mo>+      </mtd> +      <mtd>+        <mo>&#9360;</mo>+      </mtd> +      <mtd>+        <mo>&#9376;</mo>+      </mtd> +      <mtd>+        <mo>&#9392;</mo>+      </mtd> +      <mtd>+        <mo>&#9408;</mo>+      </mtd> +      <mtd>+        <mo>&#9424;</mo>+      </mtd> +      <mtd>+        <mo>&#9440;</mo>+      </mtd> +      <mtd>+        <mo>&#9456;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#9313;</mo>+      </mtd> +      <mtd>+        <mo>&#9329;</mo>+      </mtd> +      <mtd>+        <mo>&#9345;</mo>+      </mtd> +      <mtd>+        <mo>&#9361;</mo>+      </mtd> +      <mtd>+        <mo>&#9377;</mo>+      </mtd> +      <mtd>+        <mo>&#9393;</mo>+      </mtd> +      <mtd>+        <mo>&#9409;</mo>+      </mtd> +      <mtd>+        <mo>&#9425;</mo>+      </mtd> +      <mtd>+        <mo>&#9441;</mo>+      </mtd> +      <mtd>+        <mo>&#9457;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#9314;</mo>+      </mtd> +      <mtd>+        <mo>&#9330;</mo>+      </mtd> +      <mtd>+        <mo>&#9346;</mo>+      </mtd> +      <mtd>+        <mo>&#9362;</mo>+      </mtd> +      <mtd>+        <mo>&#9378;</mo>+      </mtd> +      <mtd>+        <mo>&#9394;</mo>+      </mtd> +      <mtd>+        <mo>&#9410;</mo>+      </mtd> +      <mtd>+        <mo>&#9426;</mo>+      </mtd> +      <mtd>+        <mo>&#9442;</mo>+      </mtd> +      <mtd>+        <mo>&#9458;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#9315;</mo>+      </mtd> +      <mtd>+        <mo>&#9331;</mo>+      </mtd> +      <mtd>+        <mo>&#9347;</mo>+      </mtd> +      <mtd>+        <mo>&#9363;</mo>+      </mtd> +      <mtd>+        <mo>&#9379;</mo>+      </mtd> +      <mtd>+        <mo>&#9395;</mo>+      </mtd> +      <mtd>+        <mo>&#9411;</mo>+      </mtd> +      <mtd>+        <mo>&#9427;</mo>+      </mtd> +      <mtd>+        <mo>&#9443;</mo>+      </mtd> +      <mtd>+        <mo>&#9459;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#9316;</mo>+      </mtd> +      <mtd>+        <mo>&#9332;</mo>+      </mtd> +      <mtd>+        <mo>&#9348;</mo>+      </mtd> +      <mtd>+        <mo>&#9364;</mo>+      </mtd> +      <mtd>+        <mo>&#9380;</mo>+      </mtd> +      <mtd>+        <mo>&#9396;</mo>+      </mtd> +      <mtd>+        <mo>&#9412;</mo>+      </mtd> +      <mtd>+        <mo>&#9428;</mo>+      </mtd> +      <mtd>+        <mo>&#9444;</mo>+      </mtd> +      <mtd>+        <mo>&#9460;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#9317;</mo>+      </mtd> +      <mtd>+        <mo>&#9333;</mo>+      </mtd> +      <mtd>+        <mo>&#9349;</mo>+      </mtd> +      <mtd>+        <mo>&#9365;</mo>+      </mtd> +      <mtd>+        <mo>&#9381;</mo>+      </mtd> +      <mtd>+        <mo>&#9397;</mo>+      </mtd> +      <mtd>+        <mo>&#9413;</mo>+      </mtd> +      <mtd>+        <mo>&#9429;</mo>+      </mtd> +      <mtd>+        <mo>&#9445;</mo>+      </mtd> +      <mtd>+        <mo>&#9461;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#9318;</mo>+      </mtd> +      <mtd>+        <mo>&#9334;</mo>+      </mtd> +      <mtd>+        <mo>&#9350;</mo>+      </mtd> +      <mtd>+        <mo>&#9366;</mo>+      </mtd> +      <mtd>+        <mo>&#9382;</mo>+      </mtd> +      <mtd>+        <mo>&#9398;</mo>+      </mtd> +      <mtd>+        <mo>&#9414;</mo>+      </mtd> +      <mtd>+        <mo>&#9430;</mo>+      </mtd> +      <mtd>+        <mo>&#9446;</mo>+      </mtd> +      <mtd>+        <mo>&#9462;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#9319;</mo>+      </mtd> +      <mtd>+        <mo>&#9335;</mo>+      </mtd> +      <mtd>+        <mo>&#9351;</mo>+      </mtd> +      <mtd>+        <mo>&#9367;</mo>+      </mtd> +      <mtd>+        <mo>&#9383;</mo>+      </mtd> +      <mtd>+        <mo>&#9399;</mo>+      </mtd> +      <mtd>+        <mo>&#9415;</mo>+      </mtd> +      <mtd>+        <mo>&#9431;</mo>+      </mtd> +      <mtd>+        <mo>&#9447;</mo>+      </mtd> +      <mtd>+        <mo>&#9463;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#9320;</mo>+      </mtd> +      <mtd>+        <mo>&#9336;</mo>+      </mtd> +      <mtd>+        <mo>&#9352;</mo>+      </mtd> +      <mtd>+        <mo>&#9368;</mo>+      </mtd> +      <mtd>+        <mo>&#9384;</mo>+      </mtd> +      <mtd>+        <mo>&#9400;</mo>+      </mtd> +      <mtd>+        <mo>&#9416;</mo>+      </mtd> +      <mtd>+        <mo>&#9432;</mo>+      </mtd> +      <mtd>+        <mo>&#9448;</mo>+      </mtd> +      <mtd>+        <mo>&#9464;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#9321;</mo>+      </mtd> +      <mtd>+        <mo>&#9337;</mo>+      </mtd> +      <mtd>+        <mo>&#9353;</mo>+      </mtd> +      <mtd>+        <mo>&#9369;</mo>+      </mtd> +      <mtd>+        <mo>&#9385;</mo>+      </mtd> +      <mtd>+        <mo>&#9401;</mo>+      </mtd> +      <mtd>+        <mo>&#9417;</mo>+      </mtd> +      <mtd>+        <mo>&#9433;</mo>+      </mtd> +      <mtd>+        <mo>&#9449;</mo>+      </mtd> +      <mtd>+        <mo>&#9465;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#9322;</mo>+      </mtd> +      <mtd>+        <mo>&#9338;</mo>+      </mtd> +      <mtd>+        <mo>&#9354;</mo>+      </mtd> +      <mtd>+        <mo>&#9370;</mo>+      </mtd> +      <mtd>+        <mo>&#9386;</mo>+      </mtd> +      <mtd>+        <mo>&#9402;</mo>+      </mtd> +      <mtd>+        <mo>&#9418;</mo>+      </mtd> +      <mtd>+        <mo>&#9434;</mo>+      </mtd> +      <mtd>+        <mo>&#9450;</mo>+      </mtd> +      <mtd>+        <mo>&#9466;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#9323;</mo>+      </mtd> +      <mtd>+        <mo>&#9339;</mo>+      </mtd> +      <mtd>+        <mo>&#9355;</mo>+      </mtd> +      <mtd>+        <mo>&#9371;</mo>+      </mtd> +      <mtd>+        <mo>&#9387;</mo>+      </mtd> +      <mtd>+        <mo>&#9403;</mo>+      </mtd> +      <mtd>+        <mo>&#9419;</mo>+      </mtd> +      <mtd>+        <mo>&#9435;</mo>+      </mtd> +      <mtd>+        <mo>&#9451;</mo>+      </mtd> +      <mtd>+        <mo>&#9467;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#9324;</mo>+      </mtd> +      <mtd>+        <mo>&#9340;</mo>+      </mtd> +      <mtd>+        <mo>&#9356;</mo>+      </mtd> +      <mtd>+        <mo>&#9372;</mo>+      </mtd> +      <mtd>+        <mo>&#9388;</mo>+      </mtd> +      <mtd>+        <mo>&#9404;</mo>+      </mtd> +      <mtd>+        <mo>&#9420;</mo>+      </mtd> +      <mtd>+        <mo>&#9436;</mo>+      </mtd> +      <mtd>+        <mo>&#9452;</mo>+      </mtd> +      <mtd>+        <mo>&#9468;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#9325;</mo>+      </mtd> +      <mtd>+        <mo>&#9341;</mo>+      </mtd> +      <mtd>+        <mo>&#9357;</mo>+      </mtd> +      <mtd>+        <mo>&#9373;</mo>+      </mtd> +      <mtd>+        <mo>&#9389;</mo>+      </mtd> +      <mtd>+        <mo>&#9405;</mo>+      </mtd> +      <mtd>+        <mo>&#9421;</mo>+      </mtd> +      <mtd>+        <mo>&#9437;</mo>+      </mtd> +      <mtd>+        <mo>&#9453;</mo>+      </mtd> +      <mtd>+        <mo>&#9469;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#9326;</mo>+      </mtd> +      <mtd>+        <mo>&#9342;</mo>+      </mtd> +      <mtd>+        <mo>&#9358;</mo>+      </mtd> +      <mtd>+        <mo>&#9374;</mo>+      </mtd> +      <mtd>+        <mo>&#9390;</mo>+      </mtd> +      <mtd>+        <mo>&#9406;</mo>+      </mtd> +      <mtd>+        <mo>&#9422;</mo>+      </mtd> +      <mtd>+        <mo>&#9438;</mo>+      </mtd> +      <mtd>+        <mo>&#9454;</mo>+      </mtd> +      <mtd>+        <mo>&#9470;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#9327;</mo>+      </mtd> +      <mtd>+        <mo>&#9343;</mo>+      </mtd> +      <mtd>+        <mo>&#9359;</mo>+      </mtd> +      <mtd>+        <mo>&#9375;</mo>+      </mtd> +      <mtd>+        <mo>&#9391;</mo>+      </mtd> +      <mtd>+        <mo>&#9407;</mo>+      </mtd> +      <mtd>+        <mo>&#9423;</mo>+      </mtd> +      <mtd>+        <mo>&#9439;</mo>+      </mtd> +      <mtd>+        <mo>&#9455;</mo>+      </mtd> +      <mtd>+        <mo>&#9471;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "246" ]+      , [ EText TextNormal "247" ]+      , [ EText TextNormal "248" ]+      , [ EText TextNormal "249" ]+      , [ EText TextNormal "24A" ]+      , [ EText TextNormal "24B" ]+      , [ EText TextNormal "24C" ]+      , [ EText TextNormal "24D" ]+      , [ EText TextNormal "24E" ]+      , [ EText TextNormal "24F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\9312" ]+      , [ ESymbol Ord "\9328" ]+      , [ ESymbol Ord "\9344" ]+      , [ ESymbol Ord "\9360" ]+      , [ ESymbol Ord "\9376" ]+      , [ ESymbol Ord "\9392" ]+      , [ ESymbol Ord "\9408" ]+      , [ ESymbol Ord "\9424" ]+      , [ ESymbol Ord "\9440" ]+      , [ ESymbol Ord "\9456" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\9313" ]+      , [ ESymbol Ord "\9329" ]+      , [ ESymbol Ord "\9345" ]+      , [ ESymbol Ord "\9361" ]+      , [ ESymbol Ord "\9377" ]+      , [ ESymbol Ord "\9393" ]+      , [ ESymbol Ord "\9409" ]+      , [ ESymbol Ord "\9425" ]+      , [ ESymbol Ord "\9441" ]+      , [ ESymbol Ord "\9457" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\9314" ]+      , [ ESymbol Ord "\9330" ]+      , [ ESymbol Ord "\9346" ]+      , [ ESymbol Ord "\9362" ]+      , [ ESymbol Ord "\9378" ]+      , [ ESymbol Ord "\9394" ]+      , [ ESymbol Ord "\9410" ]+      , [ ESymbol Ord "\9426" ]+      , [ ESymbol Ord "\9442" ]+      , [ ESymbol Ord "\9458" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\9315" ]+      , [ ESymbol Ord "\9331" ]+      , [ ESymbol Ord "\9347" ]+      , [ ESymbol Ord "\9363" ]+      , [ ESymbol Ord "\9379" ]+      , [ ESymbol Ord "\9395" ]+      , [ ESymbol Ord "\9411" ]+      , [ ESymbol Ord "\9427" ]+      , [ ESymbol Ord "\9443" ]+      , [ ESymbol Ord "\9459" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\9316" ]+      , [ ESymbol Ord "\9332" ]+      , [ ESymbol Ord "\9348" ]+      , [ ESymbol Ord "\9364" ]+      , [ ESymbol Ord "\9380" ]+      , [ ESymbol Ord "\9396" ]+      , [ ESymbol Ord "\9412" ]+      , [ ESymbol Ord "\9428" ]+      , [ ESymbol Ord "\9444" ]+      , [ ESymbol Ord "\9460" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\9317" ]+      , [ ESymbol Ord "\9333" ]+      , [ ESymbol Ord "\9349" ]+      , [ ESymbol Ord "\9365" ]+      , [ ESymbol Ord "\9381" ]+      , [ ESymbol Ord "\9397" ]+      , [ ESymbol Ord "\9413" ]+      , [ ESymbol Ord "\9429" ]+      , [ ESymbol Ord "\9445" ]+      , [ ESymbol Ord "\9461" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\9318" ]+      , [ ESymbol Ord "\9334" ]+      , [ ESymbol Ord "\9350" ]+      , [ ESymbol Ord "\9366" ]+      , [ ESymbol Ord "\9382" ]+      , [ ESymbol Ord "\9398" ]+      , [ ESymbol Ord "\9414" ]+      , [ ESymbol Ord "\9430" ]+      , [ ESymbol Ord "\9446" ]+      , [ ESymbol Ord "\9462" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\9319" ]+      , [ ESymbol Ord "\9335" ]+      , [ ESymbol Ord "\9351" ]+      , [ ESymbol Ord "\9367" ]+      , [ ESymbol Ord "\9383" ]+      , [ ESymbol Ord "\9399" ]+      , [ ESymbol Ord "\9415" ]+      , [ ESymbol Ord "\9431" ]+      , [ ESymbol Ord "\9447" ]+      , [ ESymbol Ord "\9463" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\9320" ]+      , [ ESymbol Ord "\9336" ]+      , [ ESymbol Ord "\9352" ]+      , [ ESymbol Ord "\9368" ]+      , [ ESymbol Ord "\9384" ]+      , [ ESymbol Ord "\9400" ]+      , [ ESymbol Ord "\9416" ]+      , [ ESymbol Ord "\9432" ]+      , [ ESymbol Ord "\9448" ]+      , [ ESymbol Ord "\9464" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\9321" ]+      , [ ESymbol Ord "\9337" ]+      , [ ESymbol Ord "\9353" ]+      , [ ESymbol Ord "\9369" ]+      , [ ESymbol Ord "\9385" ]+      , [ ESymbol Ord "\9401" ]+      , [ ESymbol Ord "\9417" ]+      , [ ESymbol Ord "\9433" ]+      , [ ESymbol Ord "\9449" ]+      , [ ESymbol Ord "\9465" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\9322" ]+      , [ ESymbol Ord "\9338" ]+      , [ ESymbol Ord "\9354" ]+      , [ ESymbol Ord "\9370" ]+      , [ ESymbol Ord "\9386" ]+      , [ ESymbol Ord "\9402" ]+      , [ ESymbol Ord "\9418" ]+      , [ ESymbol Ord "\9434" ]+      , [ ESymbol Ord "\9450" ]+      , [ ESymbol Ord "\9466" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\9323" ]+      , [ ESymbol Ord "\9339" ]+      , [ ESymbol Ord "\9355" ]+      , [ ESymbol Ord "\9371" ]+      , [ ESymbol Ord "\9387" ]+      , [ ESymbol Ord "\9403" ]+      , [ ESymbol Ord "\9419" ]+      , [ ESymbol Ord "\9435" ]+      , [ ESymbol Ord "\9451" ]+      , [ ESymbol Ord "\9467" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\9324" ]+      , [ ESymbol Ord "\9340" ]+      , [ ESymbol Ord "\9356" ]+      , [ ESymbol Ord "\9372" ]+      , [ ESymbol Ord "\9388" ]+      , [ ESymbol Ord "\9404" ]+      , [ ESymbol Ord "\9420" ]+      , [ ESymbol Ord "\9436" ]+      , [ ESymbol Ord "\9452" ]+      , [ ESymbol Ord "\9468" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\9325" ]+      , [ ESymbol Ord "\9341" ]+      , [ ESymbol Ord "\9357" ]+      , [ ESymbol Ord "\9373" ]+      , [ ESymbol Ord "\9389" ]+      , [ ESymbol Ord "\9405" ]+      , [ ESymbol Ord "\9421" ]+      , [ ESymbol Ord "\9437" ]+      , [ ESymbol Ord "\9453" ]+      , [ ESymbol Ord "\9469" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\9326" ]+      , [ ESymbol Ord "\9342" ]+      , [ ESymbol Ord "\9358" ]+      , [ ESymbol Ord "\9374" ]+      , [ ESymbol Ord "\9390" ]+      , [ ESymbol Ord "\9406" ]+      , [ ESymbol Ord "\9422" ]+      , [ ESymbol Ord "\9438" ]+      , [ ESymbol Ord "\9454" ]+      , [ ESymbol Ord "\9470" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\9327" ]+      , [ ESymbol Ord "\9343" ]+      , [ ESymbol Ord "\9359" ]+      , [ ESymbol Ord "\9375" ]+      , [ ESymbol Ord "\9391" ]+      , [ ESymbol Ord "\9407" ]+      , [ ESymbol Ord "\9423" ]+      , [ ESymbol Ord "\9439" ]+      , [ ESymbol Ord "\9455" ]+      , [ ESymbol Ord "\9471" ]+      ]+    ]+]
+ test/reader/mml/02500_Box_Drawing.test view
@@ -0,0 +1,680 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>250</mtext>+      </mtd> +      <mtd>+        <mtext>251</mtext>+      </mtd> +      <mtd>+        <mtext>252</mtext>+      </mtd> +      <mtd>+        <mtext>253</mtext>+      </mtd> +      <mtd>+        <mtext>254</mtext>+      </mtd> +      <mtd>+        <mtext>255</mtext>+      </mtd> +      <mtd>+        <mtext>256</mtext>+      </mtd> +      <mtd>+        <mtext>257</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#9472;</mo>+      </mtd> +      <mtd>+        <mo>&#9488;</mo>+      </mtd> +      <mtd>+        <mo>&#9504;</mo>+      </mtd> +      <mtd>+        <mo>&#9520;</mo>+      </mtd> +      <mtd>+        <mo>&#9536;</mo>+      </mtd> +      <mtd>+        <mo>&#9552;</mo>+      </mtd> +      <mtd>+        <mo>&#9568;</mo>+      </mtd> +      <mtd>+        <mo>&#9584;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#9473;</mo>+      </mtd> +      <mtd>+        <mo>&#9489;</mo>+      </mtd> +      <mtd>+        <mo>&#9505;</mo>+      </mtd> +      <mtd>+        <mo>&#9521;</mo>+      </mtd> +      <mtd>+        <mo>&#9537;</mo>+      </mtd> +      <mtd>+        <mo>&#9553;</mo>+      </mtd> +      <mtd>+        <mo>&#9569;</mo>+      </mtd> +      <mtd>+        <mo>&#9585;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#9474;</mo>+      </mtd> +      <mtd>+        <mo>&#9490;</mo>+      </mtd> +      <mtd>+        <mo>&#9506;</mo>+      </mtd> +      <mtd>+        <mo>&#9522;</mo>+      </mtd> +      <mtd>+        <mo>&#9538;</mo>+      </mtd> +      <mtd>+        <mo>&#9554;</mo>+      </mtd> +      <mtd>+        <mo>&#9570;</mo>+      </mtd> +      <mtd>+        <mo>&#9586;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#9475;</mo>+      </mtd> +      <mtd>+        <mo>&#9491;</mo>+      </mtd> +      <mtd>+        <mo>&#9507;</mo>+      </mtd> +      <mtd>+        <mo>&#9523;</mo>+      </mtd> +      <mtd>+        <mo>&#9539;</mo>+      </mtd> +      <mtd>+        <mo>&#9555;</mo>+      </mtd> +      <mtd>+        <mo>&#9571;</mo>+      </mtd> +      <mtd>+        <mo>&#9587;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#9476;</mo>+      </mtd> +      <mtd>+        <mo>&#9492;</mo>+      </mtd> +      <mtd>+        <mo>&#9508;</mo>+      </mtd> +      <mtd>+        <mo>&#9524;</mo>+      </mtd> +      <mtd>+        <mo>&#9540;</mo>+      </mtd> +      <mtd>+        <mo>&#9556;</mo>+      </mtd> +      <mtd>+        <mo>&#9572;</mo>+      </mtd> +      <mtd>+        <mo>&#9588;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#9477;</mo>+      </mtd> +      <mtd>+        <mo>&#9493;</mo>+      </mtd> +      <mtd>+        <mo>&#9509;</mo>+      </mtd> +      <mtd>+        <mo>&#9525;</mo>+      </mtd> +      <mtd>+        <mo>&#9541;</mo>+      </mtd> +      <mtd>+        <mo>&#9557;</mo>+      </mtd> +      <mtd>+        <mo>&#9573;</mo>+      </mtd> +      <mtd>+        <mo>&#9589;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#9478;</mo>+      </mtd> +      <mtd>+        <mo>&#9494;</mo>+      </mtd> +      <mtd>+        <mo>&#9510;</mo>+      </mtd> +      <mtd>+        <mo>&#9526;</mo>+      </mtd> +      <mtd>+        <mo>&#9542;</mo>+      </mtd> +      <mtd>+        <mo>&#9558;</mo>+      </mtd> +      <mtd>+        <mo>&#9574;</mo>+      </mtd> +      <mtd>+        <mo>&#9590;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#9479;</mo>+      </mtd> +      <mtd>+        <mo>&#9495;</mo>+      </mtd> +      <mtd>+        <mo>&#9511;</mo>+      </mtd> +      <mtd>+        <mo>&#9527;</mo>+      </mtd> +      <mtd>+        <mo>&#9543;</mo>+      </mtd> +      <mtd>+        <mo>&#9559;</mo>+      </mtd> +      <mtd>+        <mo>&#9575;</mo>+      </mtd> +      <mtd>+        <mo>&#9591;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#9480;</mo>+      </mtd> +      <mtd>+        <mo>&#9496;</mo>+      </mtd> +      <mtd>+        <mo>&#9512;</mo>+      </mtd> +      <mtd>+        <mo>&#9528;</mo>+      </mtd> +      <mtd>+        <mo>&#9544;</mo>+      </mtd> +      <mtd>+        <mo>&#9560;</mo>+      </mtd> +      <mtd>+        <mo>&#9576;</mo>+      </mtd> +      <mtd>+        <mo>&#9592;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#9481;</mo>+      </mtd> +      <mtd>+        <mo>&#9497;</mo>+      </mtd> +      <mtd>+        <mo>&#9513;</mo>+      </mtd> +      <mtd>+        <mo>&#9529;</mo>+      </mtd> +      <mtd>+        <mo>&#9545;</mo>+      </mtd> +      <mtd>+        <mo>&#9561;</mo>+      </mtd> +      <mtd>+        <mo>&#9577;</mo>+      </mtd> +      <mtd>+        <mo>&#9593;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#9482;</mo>+      </mtd> +      <mtd>+        <mo>&#9498;</mo>+      </mtd> +      <mtd>+        <mo>&#9514;</mo>+      </mtd> +      <mtd>+        <mo>&#9530;</mo>+      </mtd> +      <mtd>+        <mo>&#9546;</mo>+      </mtd> +      <mtd>+        <mo>&#9562;</mo>+      </mtd> +      <mtd>+        <mo>&#9578;</mo>+      </mtd> +      <mtd>+        <mo>&#9594;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#9483;</mo>+      </mtd> +      <mtd>+        <mo>&#9499;</mo>+      </mtd> +      <mtd>+        <mo>&#9515;</mo>+      </mtd> +      <mtd>+        <mo>&#9531;</mo>+      </mtd> +      <mtd>+        <mo>&#9547;</mo>+      </mtd> +      <mtd>+        <mo>&#9563;</mo>+      </mtd> +      <mtd>+        <mo>&#9579;</mo>+      </mtd> +      <mtd>+        <mo>&#9595;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#9484;</mo>+      </mtd> +      <mtd>+        <mo>&#9500;</mo>+      </mtd> +      <mtd>+        <mo>&#9516;</mo>+      </mtd> +      <mtd>+        <mo>&#9532;</mo>+      </mtd> +      <mtd>+        <mo>&#9548;</mo>+      </mtd> +      <mtd>+        <mo>&#9564;</mo>+      </mtd> +      <mtd>+        <mo>&#9580;</mo>+      </mtd> +      <mtd>+        <mo>&#9596;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#9485;</mo>+      </mtd> +      <mtd>+        <mo>&#9501;</mo>+      </mtd> +      <mtd>+        <mo>&#9517;</mo>+      </mtd> +      <mtd>+        <mo>&#9533;</mo>+      </mtd> +      <mtd>+        <mo>&#9549;</mo>+      </mtd> +      <mtd>+        <mo>&#9565;</mo>+      </mtd> +      <mtd>+        <mo>&#9581;</mo>+      </mtd> +      <mtd>+        <mo>&#9597;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#9486;</mo>+      </mtd> +      <mtd>+        <mo>&#9502;</mo>+      </mtd> +      <mtd>+        <mo>&#9518;</mo>+      </mtd> +      <mtd>+        <mo>&#9534;</mo>+      </mtd> +      <mtd>+        <mo>&#9550;</mo>+      </mtd> +      <mtd>+        <mo>&#9566;</mo>+      </mtd> +      <mtd>+        <mo>&#9582;</mo>+      </mtd> +      <mtd>+        <mo>&#9598;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#9487;</mo>+      </mtd> +      <mtd>+        <mo>&#9503;</mo>+      </mtd> +      <mtd>+        <mo>&#9519;</mo>+      </mtd> +      <mtd>+        <mo>&#9535;</mo>+      </mtd> +      <mtd>+        <mo>&#9551;</mo>+      </mtd> +      <mtd>+        <mo>&#9567;</mo>+      </mtd> +      <mtd>+        <mo>&#9583;</mo>+      </mtd> +      <mtd>+        <mo>&#9599;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "250" ]+      , [ EText TextNormal "251" ]+      , [ EText TextNormal "252" ]+      , [ EText TextNormal "253" ]+      , [ EText TextNormal "254" ]+      , [ EText TextNormal "255" ]+      , [ EText TextNormal "256" ]+      , [ EText TextNormal "257" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\9472" ]+      , [ ESymbol Ord "\9488" ]+      , [ ESymbol Ord "\9504" ]+      , [ ESymbol Ord "\9520" ]+      , [ ESymbol Ord "\9536" ]+      , [ ESymbol Ord "\9552" ]+      , [ ESymbol Ord "\9568" ]+      , [ ESymbol Ord "\9584" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\9473" ]+      , [ ESymbol Ord "\9489" ]+      , [ ESymbol Ord "\9505" ]+      , [ ESymbol Ord "\9521" ]+      , [ ESymbol Ord "\9537" ]+      , [ ESymbol Ord "\9553" ]+      , [ ESymbol Ord "\9569" ]+      , [ ESymbol Ord "\9585" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\9474" ]+      , [ ESymbol Ord "\9490" ]+      , [ ESymbol Ord "\9506" ]+      , [ ESymbol Ord "\9522" ]+      , [ ESymbol Ord "\9538" ]+      , [ ESymbol Ord "\9554" ]+      , [ ESymbol Ord "\9570" ]+      , [ ESymbol Ord "\9586" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\9475" ]+      , [ ESymbol Ord "\9491" ]+      , [ ESymbol Ord "\9507" ]+      , [ ESymbol Ord "\9523" ]+      , [ ESymbol Ord "\9539" ]+      , [ ESymbol Ord "\9555" ]+      , [ ESymbol Ord "\9571" ]+      , [ ESymbol Ord "\9587" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\9476" ]+      , [ ESymbol Ord "\9492" ]+      , [ ESymbol Ord "\9508" ]+      , [ ESymbol Ord "\9524" ]+      , [ ESymbol Ord "\9540" ]+      , [ ESymbol Ord "\9556" ]+      , [ ESymbol Ord "\9572" ]+      , [ ESymbol Ord "\9588" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\9477" ]+      , [ ESymbol Ord "\9493" ]+      , [ ESymbol Ord "\9509" ]+      , [ ESymbol Ord "\9525" ]+      , [ ESymbol Ord "\9541" ]+      , [ ESymbol Ord "\9557" ]+      , [ ESymbol Ord "\9573" ]+      , [ ESymbol Ord "\9589" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\9478" ]+      , [ ESymbol Ord "\9494" ]+      , [ ESymbol Ord "\9510" ]+      , [ ESymbol Ord "\9526" ]+      , [ ESymbol Ord "\9542" ]+      , [ ESymbol Ord "\9558" ]+      , [ ESymbol Ord "\9574" ]+      , [ ESymbol Ord "\9590" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\9479" ]+      , [ ESymbol Ord "\9495" ]+      , [ ESymbol Ord "\9511" ]+      , [ ESymbol Ord "\9527" ]+      , [ ESymbol Ord "\9543" ]+      , [ ESymbol Ord "\9559" ]+      , [ ESymbol Ord "\9575" ]+      , [ ESymbol Ord "\9591" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\9480" ]+      , [ ESymbol Ord "\9496" ]+      , [ ESymbol Ord "\9512" ]+      , [ ESymbol Ord "\9528" ]+      , [ ESymbol Ord "\9544" ]+      , [ ESymbol Ord "\9560" ]+      , [ ESymbol Ord "\9576" ]+      , [ ESymbol Ord "\9592" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\9481" ]+      , [ ESymbol Ord "\9497" ]+      , [ ESymbol Ord "\9513" ]+      , [ ESymbol Ord "\9529" ]+      , [ ESymbol Ord "\9545" ]+      , [ ESymbol Ord "\9561" ]+      , [ ESymbol Ord "\9577" ]+      , [ ESymbol Ord "\9593" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\9482" ]+      , [ ESymbol Ord "\9498" ]+      , [ ESymbol Ord "\9514" ]+      , [ ESymbol Ord "\9530" ]+      , [ ESymbol Ord "\9546" ]+      , [ ESymbol Ord "\9562" ]+      , [ ESymbol Ord "\9578" ]+      , [ ESymbol Ord "\9594" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\9483" ]+      , [ ESymbol Ord "\9499" ]+      , [ ESymbol Ord "\9515" ]+      , [ ESymbol Ord "\9531" ]+      , [ ESymbol Ord "\9547" ]+      , [ ESymbol Ord "\9563" ]+      , [ ESymbol Ord "\9579" ]+      , [ ESymbol Ord "\9595" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\9484" ]+      , [ ESymbol Ord "\9500" ]+      , [ ESymbol Ord "\9516" ]+      , [ ESymbol Ord "\9532" ]+      , [ ESymbol Ord "\9548" ]+      , [ ESymbol Ord "\9564" ]+      , [ ESymbol Ord "\9580" ]+      , [ ESymbol Ord "\9596" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\9485" ]+      , [ ESymbol Ord "\9501" ]+      , [ ESymbol Ord "\9517" ]+      , [ ESymbol Ord "\9533" ]+      , [ ESymbol Ord "\9549" ]+      , [ ESymbol Ord "\9565" ]+      , [ ESymbol Ord "\9581" ]+      , [ ESymbol Ord "\9597" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\9486" ]+      , [ ESymbol Ord "\9502" ]+      , [ ESymbol Ord "\9518" ]+      , [ ESymbol Ord "\9534" ]+      , [ ESymbol Ord "\9550" ]+      , [ ESymbol Ord "\9566" ]+      , [ ESymbol Ord "\9582" ]+      , [ ESymbol Ord "\9598" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\9487" ]+      , [ ESymbol Ord "\9503" ]+      , [ ESymbol Ord "\9519" ]+      , [ ESymbol Ord "\9535" ]+      , [ ESymbol Ord "\9551" ]+      , [ ESymbol Ord "\9567" ]+      , [ ESymbol Ord "\9583" ]+      , [ ESymbol Ord "\9599" ]+      ]+    ]+]
+ test/reader/mml/02580_Block_Elements.test view
@@ -0,0 +1,260 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>258</mtext>+      </mtd> +      <mtd>+        <mtext>259</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#9600;</mo>+      </mtd> +      <mtd>+        <mo>&#9616;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#9601;</mo>+      </mtd> +      <mtd>+        <mo>&#9617;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#9602;</mo>+      </mtd> +      <mtd>+        <mo>&#9618;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#9603;</mo>+      </mtd> +      <mtd>+        <mo>&#9619;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#9604;</mo>+      </mtd> +      <mtd>+        <mo>&#9620;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#9605;</mo>+      </mtd> +      <mtd>+        <mo>&#9621;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#9606;</mo>+      </mtd> +      <mtd>+        <mo>&#9622;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#9607;</mo>+      </mtd> +      <mtd>+        <mo>&#9623;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#9608;</mo>+      </mtd> +      <mtd>+        <mo>&#9624;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#9609;</mo>+      </mtd> +      <mtd>+        <mo>&#9625;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#9610;</mo>+      </mtd> +      <mtd>+        <mo>&#9626;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#9611;</mo>+      </mtd> +      <mtd>+        <mo>&#9627;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#9612;</mo>+      </mtd> +      <mtd>+        <mo>&#9628;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#9613;</mo>+      </mtd> +      <mtd>+        <mo>&#9629;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#9614;</mo>+      </mtd> +      <mtd>+        <mo>&#9630;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#9615;</mo>+      </mtd> +      <mtd>+        <mo>&#9631;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter ]+    [ [ [] , [ EText TextNormal "258" ] , [ EText TextNormal "259" ] ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\9600" ]+      , [ ESymbol Ord "\9616" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\9601" ]+      , [ ESymbol Ord "\9617" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\9602" ]+      , [ ESymbol Ord "\9618" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\9603" ]+      , [ ESymbol Ord "\9619" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\9604" ]+      , [ ESymbol Ord "\9620" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\9605" ]+      , [ ESymbol Ord "\9621" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\9606" ]+      , [ ESymbol Ord "\9622" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\9607" ]+      , [ ESymbol Ord "\9623" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\9608" ]+      , [ ESymbol Ord "\9624" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\9609" ]+      , [ ESymbol Ord "\9625" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\9610" ]+      , [ ESymbol Ord "\9626" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\9611" ]+      , [ ESymbol Ord "\9627" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\9612" ]+      , [ ESymbol Ord "\9628" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\9613" ]+      , [ ESymbol Ord "\9629" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\9614" ]+      , [ ESymbol Ord "\9630" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\9615" ]+      , [ ESymbol Ord "\9631" ]+      ]+    ]+]
+ test/reader/mml/025A0_Geometric_Shapes.test view
@@ -0,0 +1,542 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>25A</mtext>+      </mtd> +      <mtd>+        <mtext>25B</mtext>+      </mtd> +      <mtd>+        <mtext>25C</mtext>+      </mtd> +      <mtd>+        <mtext>25D</mtext>+      </mtd> +      <mtd>+        <mtext>25E</mtext>+      </mtd> +      <mtd>+        <mtext>25F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#9632;</mo>+      </mtd> +      <mtd>+        <mo>&#9648;</mo>+      </mtd> +      <mtd>+        <mo>&#9664;</mo>+      </mtd> +      <mtd>+        <mo>&#9680;</mo>+      </mtd> +      <mtd>+        <mo>&#9696;</mo>+      </mtd> +      <mtd>+        <mo>&#9712;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#9633;</mo>+      </mtd> +      <mtd>+        <mo>&#9649;</mo>+      </mtd> +      <mtd>+        <mo>&#9665;</mo>+      </mtd> +      <mtd>+        <mo>&#9681;</mo>+      </mtd> +      <mtd>+        <mo>&#9697;</mo>+      </mtd> +      <mtd>+        <mo>&#9713;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#9634;</mo>+      </mtd> +      <mtd>+        <mo>&#9650;</mo>+      </mtd> +      <mtd>+        <mo>&#9666;</mo>+      </mtd> +      <mtd>+        <mo>&#9682;</mo>+      </mtd> +      <mtd>+        <mo>&#9698;</mo>+      </mtd> +      <mtd>+        <mo>&#9714;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#9635;</mo>+      </mtd> +      <mtd>+        <mo>&#9651;</mo>+      </mtd> +      <mtd>+        <mo>&#9667;</mo>+      </mtd> +      <mtd>+        <mo>&#9683;</mo>+      </mtd> +      <mtd>+        <mo>&#9699;</mo>+      </mtd> +      <mtd>+        <mo>&#9715;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#9636;</mo>+      </mtd> +      <mtd>+        <mo>&#9652;</mo>+      </mtd> +      <mtd>+        <mo>&#9668;</mo>+      </mtd> +      <mtd>+        <mo>&#9684;</mo>+      </mtd> +      <mtd>+        <mo>&#9700;</mo>+      </mtd> +      <mtd>+        <mo>&#9716;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#9637;</mo>+      </mtd> +      <mtd>+        <mo>&#9653;</mo>+      </mtd> +      <mtd>+        <mo>&#9669;</mo>+      </mtd> +      <mtd>+        <mo>&#9685;</mo>+      </mtd> +      <mtd>+        <mo>&#9701;</mo>+      </mtd> +      <mtd>+        <mo>&#9717;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#9638;</mo>+      </mtd> +      <mtd>+        <mo>&#9654;</mo>+      </mtd> +      <mtd>+        <mo>&#9670;</mo>+      </mtd> +      <mtd>+        <mo>&#9686;</mo>+      </mtd> +      <mtd>+        <mo>&#9702;</mo>+      </mtd> +      <mtd>+        <mo>&#9718;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#9639;</mo>+      </mtd> +      <mtd>+        <mo>&#9655;</mo>+      </mtd> +      <mtd>+        <mo>&#9671;</mo>+      </mtd> +      <mtd>+        <mo>&#9687;</mo>+      </mtd> +      <mtd>+        <mo>&#9703;</mo>+      </mtd> +      <mtd>+        <mo>&#9719;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#9640;</mo>+      </mtd> +      <mtd>+        <mo>&#9656;</mo>+      </mtd> +      <mtd>+        <mo>&#9672;</mo>+      </mtd> +      <mtd>+        <mo>&#9688;</mo>+      </mtd> +      <mtd>+        <mo>&#9704;</mo>+      </mtd> +      <mtd>+        <mo>&#9720;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#9641;</mo>+      </mtd> +      <mtd>+        <mo>&#9657;</mo>+      </mtd> +      <mtd>+        <mo>&#9673;</mo>+      </mtd> +      <mtd>+        <mo>&#9689;</mo>+      </mtd> +      <mtd>+        <mo>&#9705;</mo>+      </mtd> +      <mtd>+        <mo>&#9721;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#9642;</mo>+      </mtd> +      <mtd>+        <mo>&#9658;</mo>+      </mtd> +      <mtd>+        <mo>&#9674;</mo>+      </mtd> +      <mtd>+        <mo>&#9690;</mo>+      </mtd> +      <mtd>+        <mo>&#9706;</mo>+      </mtd> +      <mtd>+        <mo>&#9722;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#9643;</mo>+      </mtd> +      <mtd>+        <mo>&#9659;</mo>+      </mtd> +      <mtd>+        <mo>&#9675;</mo>+      </mtd> +      <mtd>+        <mo>&#9691;</mo>+      </mtd> +      <mtd>+        <mo>&#9707;</mo>+      </mtd> +      <mtd>+        <mo>&#9723;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#9644;</mo>+      </mtd> +      <mtd>+        <mo>&#9660;</mo>+      </mtd> +      <mtd>+        <mo>&#9676;</mo>+      </mtd> +      <mtd>+        <mo>&#9692;</mo>+      </mtd> +      <mtd>+        <mo>&#9708;</mo>+      </mtd> +      <mtd>+        <mo>&#9724;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#9645;</mo>+      </mtd> +      <mtd>+        <mo>&#9661;</mo>+      </mtd> +      <mtd>+        <mo>&#9677;</mo>+      </mtd> +      <mtd>+        <mo>&#9693;</mo>+      </mtd> +      <mtd>+        <mo>&#9709;</mo>+      </mtd> +      <mtd>+        <mo>&#9725;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#9646;</mo>+      </mtd> +      <mtd>+        <mo>&#9662;</mo>+      </mtd> +      <mtd>+        <mo>&#9678;</mo>+      </mtd> +      <mtd>+        <mo>&#9694;</mo>+      </mtd> +      <mtd>+        <mo>&#9710;</mo>+      </mtd> +      <mtd>+        <mo>&#9726;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#9647;</mo>+      </mtd> +      <mtd>+        <mo>&#9663;</mo>+      </mtd> +      <mtd>+        <mo>&#9679;</mo>+      </mtd> +      <mtd>+        <mo>&#9695;</mo>+      </mtd> +      <mtd>+        <mo>&#9711;</mo>+      </mtd> +      <mtd>+        <mo>&#9727;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "25A" ]+      , [ EText TextNormal "25B" ]+      , [ EText TextNormal "25C" ]+      , [ EText TextNormal "25D" ]+      , [ EText TextNormal "25E" ]+      , [ EText TextNormal "25F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\9632" ]+      , [ ESymbol Ord "\9648" ]+      , [ ESymbol Bin "\9664" ]+      , [ ESymbol Ord "\9680" ]+      , [ ESymbol Ord "\9696" ]+      , [ ESymbol Ord "\9712" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\9633" ]+      , [ ESymbol Ord "\9649" ]+      , [ ESymbol Bin "\9665" ]+      , [ ESymbol Ord "\9681" ]+      , [ ESymbol Ord "\9697" ]+      , [ ESymbol Ord "\9713" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\9634" ]+      , [ ESymbol Ord "\9650" ]+      , [ ESymbol Bin "\9666" ]+      , [ ESymbol Ord "\9682" ]+      , [ ESymbol Ord "\9698" ]+      , [ ESymbol Ord "\9714" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\9635" ]+      , [ ESymbol Bin "\9651" ]+      , [ ESymbol Bin "\9667" ]+      , [ ESymbol Ord "\9683" ]+      , [ ESymbol Ord "\9699" ]+      , [ ESymbol Ord "\9715" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\9636" ]+      , [ ESymbol Bin "\9652" ]+      , [ ESymbol Ord "\9668" ]+      , [ ESymbol Ord "\9684" ]+      , [ ESymbol Ord "\9700" ]+      , [ ESymbol Ord "\9716" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\9637" ]+      , [ ESymbol Bin "\9653" ]+      , [ ESymbol Ord "\9669" ]+      , [ ESymbol Ord "\9685" ]+      , [ ESymbol Ord "\9701" ]+      , [ ESymbol Ord "\9717" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\9638" ]+      , [ ESymbol Bin "\9654" ]+      , [ ESymbol Ord "\9670" ]+      , [ ESymbol Ord "\9686" ]+      , [ ESymbol Ord "\9702" ]+      , [ ESymbol Ord "\9718" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\9639" ]+      , [ ESymbol Bin "\9655" ]+      , [ ESymbol Ord "\9671" ]+      , [ ESymbol Ord "\9687" ]+      , [ ESymbol Ord "\9703" ]+      , [ ESymbol Ord "\9719" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\9640" ]+      , [ ESymbol Bin "\9656" ]+      , [ ESymbol Ord "\9672" ]+      , [ ESymbol Ord "\9688" ]+      , [ ESymbol Ord "\9704" ]+      , [ ESymbol Ord "\9720" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\9641" ]+      , [ ESymbol Bin "\9657" ]+      , [ ESymbol Ord "\9673" ]+      , [ ESymbol Ord "\9689" ]+      , [ ESymbol Ord "\9705" ]+      , [ ESymbol Ord "\9721" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\9642" ]+      , [ ESymbol Ord "\9658" ]+      , [ ESymbol Ord "\9674" ]+      , [ ESymbol Ord "\9690" ]+      , [ ESymbol Ord "\9706" ]+      , [ ESymbol Ord "\9722" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\9643" ]+      , [ ESymbol Ord "\9659" ]+      , [ ESymbol Bin "\9675" ]+      , [ ESymbol Ord "\9691" ]+      , [ ESymbol Bin "\9707" ]+      , [ ESymbol Ord "\9723" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\9644" ]+      , [ ESymbol Ord "\9660" ]+      , [ ESymbol Ord "\9676" ]+      , [ ESymbol Ord "\9692" ]+      , [ ESymbol Ord "\9708" ]+      , [ ESymbol Ord "\9724" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\9645" ]+      , [ ESymbol Bin "\9661" ]+      , [ ESymbol Ord "\9677" ]+      , [ ESymbol Ord "\9693" ]+      , [ ESymbol Ord "\9709" ]+      , [ ESymbol Ord "\9725" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\9646" ]+      , [ ESymbol Bin "\9662" ]+      , [ ESymbol Ord "\9678" ]+      , [ ESymbol Ord "\9694" ]+      , [ ESymbol Ord "\9710" ]+      , [ ESymbol Ord "\9726" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\9647" ]+      , [ ESymbol Bin "\9663" ]+      , [ ESymbol Ord "\9679" ]+      , [ ESymbol Ord "\9695" ]+      , [ ESymbol Ord "\9711" ]+      , [ ESymbol Ord "\9727" ]+      ]+    ]+]
+ test/reader/mml/02600_Miscellaneous_Symbols.test view
@@ -0,0 +1,1232 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>260</mtext>+      </mtd> +      <mtd>+        <mtext>261</mtext>+      </mtd> +      <mtd>+        <mtext>262</mtext>+      </mtd> +      <mtd>+        <mtext>263</mtext>+      </mtd> +      <mtd>+        <mtext>264</mtext>+      </mtd> +      <mtd>+        <mtext>265</mtext>+      </mtd> +      <mtd>+        <mtext>266</mtext>+      </mtd> +      <mtd>+        <mtext>267</mtext>+      </mtd> +      <mtd>+        <mtext>268</mtext>+      </mtd> +      <mtd>+        <mtext>269</mtext>+      </mtd> +      <mtd>+        <mtext>26A</mtext>+      </mtd> +      <mtd>+        <mtext>26B</mtext>+      </mtd> +      <mtd>+        <mtext>26C</mtext>+      </mtd> +      <mtd>+        <mtext>26D</mtext>+      </mtd> +      <mtd>+        <mtext>26E</mtext>+      </mtd> +      <mtd>+        <mtext>26F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#9728;</mo>+      </mtd> +      <mtd>+        <mo>&#9744;</mo>+      </mtd> +      <mtd>+        <mo>&#9760;</mo>+      </mtd> +      <mtd>+        <mo>&#9776;</mo>+      </mtd> +      <mtd>+        <mo>&#9792;</mo>+      </mtd> +      <mtd>+        <mo>&#9808;</mo>+      </mtd> +      <mtd>+        <mo>&#9824;</mo>+      </mtd> +      <mtd>+        <mo>&#9840;</mo>+      </mtd> +      <mtd>+        <mo>&#9856;</mo>+      </mtd> +      <mtd>+        <mo>&#9872;</mo>+      </mtd> +      <mtd>+        <mo>&#9888;</mo>+      </mtd> +      <mtd>+        <mo>&#9904;</mo>+      </mtd> +      <mtd>+        <mo>&#9920;</mo>+      </mtd> +      <mtd>+        <mo>&#9936;</mo>+      </mtd> +      <mtd>+        <mo>&#9952;</mo>+      </mtd> +      <mtd>+        <mo>&#9968;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#9729;</mo>+      </mtd> +      <mtd>+        <mo>&#9745;</mo>+      </mtd> +      <mtd>+        <mo>&#9761;</mo>+      </mtd> +      <mtd>+        <mo>&#9777;</mo>+      </mtd> +      <mtd>+        <mo>&#9793;</mo>+      </mtd> +      <mtd>+        <mo>&#9809;</mo>+      </mtd> +      <mtd>+        <mo>&#9825;</mo>+      </mtd> +      <mtd>+        <mo>&#9841;</mo>+      </mtd> +      <mtd>+        <mo>&#9857;</mo>+      </mtd> +      <mtd>+        <mo>&#9873;</mo>+      </mtd> +      <mtd>+        <mo>&#9889;</mo>+      </mtd> +      <mtd>+        <mo>&#9905;</mo>+      </mtd> +      <mtd>+        <mo>&#9921;</mo>+      </mtd> +      <mtd>+        <mo>&#9937;</mo>+      </mtd> +      <mtd>+        <mo>&#9953;</mo>+      </mtd> +      <mtd>+        <mo>&#9969;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#9730;</mo>+      </mtd> +      <mtd>+        <mo>&#9746;</mo>+      </mtd> +      <mtd>+        <mo>&#9762;</mo>+      </mtd> +      <mtd>+        <mo>&#9778;</mo>+      </mtd> +      <mtd>+        <mo>&#9794;</mo>+      </mtd> +      <mtd>+        <mo>&#9810;</mo>+      </mtd> +      <mtd>+        <mo>&#9826;</mo>+      </mtd> +      <mtd>+        <mo>&#9842;</mo>+      </mtd> +      <mtd>+        <mo>&#9858;</mo>+      </mtd> +      <mtd>+        <mo>&#9874;</mo>+      </mtd> +      <mtd>+        <mo>&#9890;</mo>+      </mtd> +      <mtd>+        <mo>&#9906;</mo>+      </mtd> +      <mtd>+        <mo>&#9922;</mo>+      </mtd> +      <mtd>+        <mo>&#9938;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#9970;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#9731;</mo>+      </mtd> +      <mtd>+        <mo>&#9747;</mo>+      </mtd> +      <mtd>+        <mo>&#9763;</mo>+      </mtd> +      <mtd>+        <mo>&#9779;</mo>+      </mtd> +      <mtd>+        <mo>&#9795;</mo>+      </mtd> +      <mtd>+        <mo>&#9811;</mo>+      </mtd> +      <mtd>+        <mo>&#9827;</mo>+      </mtd> +      <mtd>+        <mo>&#9843;</mo>+      </mtd> +      <mtd>+        <mo>&#9859;</mo>+      </mtd> +      <mtd>+        <mo>&#9875;</mo>+      </mtd> +      <mtd>+        <mo>&#9891;</mo>+      </mtd> +      <mtd>+        <mo>&#9907;</mo>+      </mtd> +      <mtd>+        <mo>&#9923;</mo>+      </mtd> +      <mtd>+        <mo>&#9939;</mo>+      </mtd> +      <mtd>+        <mo>&#9955;</mo>+      </mtd> +      <mtd>+        <mo>&#9971;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#9732;</mo>+      </mtd> +      <mtd>+        <mo>&#9748;</mo>+      </mtd> +      <mtd>+        <mo>&#9764;</mo>+      </mtd> +      <mtd>+        <mo>&#9780;</mo>+      </mtd> +      <mtd>+        <mo>&#9796;</mo>+      </mtd> +      <mtd>+        <mo>&#9812;</mo>+      </mtd> +      <mtd>+        <mo>&#9828;</mo>+      </mtd> +      <mtd>+        <mo>&#9844;</mo>+      </mtd> +      <mtd>+        <mo>&#9860;</mo>+      </mtd> +      <mtd>+        <mo>&#9876;</mo>+      </mtd> +      <mtd>+        <mo>&#9892;</mo>+      </mtd> +      <mtd>+        <mo>&#9908;</mo>+      </mtd> +      <mtd>+        <mo>&#9924;</mo>+      </mtd> +      <mtd>+        <mo>&#9940;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#9972;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#9733;</mo>+      </mtd> +      <mtd>+        <mo>&#9749;</mo>+      </mtd> +      <mtd>+        <mo>&#9765;</mo>+      </mtd> +      <mtd>+        <mo>&#9781;</mo>+      </mtd> +      <mtd>+        <mo>&#9797;</mo>+      </mtd> +      <mtd>+        <mo>&#9813;</mo>+      </mtd> +      <mtd>+        <mo>&#9829;</mo>+      </mtd> +      <mtd>+        <mo>&#9845;</mo>+      </mtd> +      <mtd>+        <mo>&#9861;</mo>+      </mtd> +      <mtd>+        <mo>&#9877;</mo>+      </mtd> +      <mtd>+        <mo>&#9893;</mo>+      </mtd> +      <mtd>+        <mo>&#9909;</mo>+      </mtd> +      <mtd>+        <mo>&#9925;</mo>+      </mtd> +      <mtd>+        <mo>&#9941;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#9973;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#9734;</mo>+      </mtd> +      <mtd>+        <mo>&#9750;</mo>+      </mtd> +      <mtd>+        <mo>&#9766;</mo>+      </mtd> +      <mtd>+        <mo>&#9782;</mo>+      </mtd> +      <mtd>+        <mo>&#9798;</mo>+      </mtd> +      <mtd>+        <mo>&#9814;</mo>+      </mtd> +      <mtd>+        <mo>&#9830;</mo>+      </mtd> +      <mtd>+        <mo>&#9846;</mo>+      </mtd> +      <mtd>+        <mo>&#9862;</mo>+      </mtd> +      <mtd>+        <mo>&#9878;</mo>+      </mtd> +      <mtd>+        <mo>&#9894;</mo>+      </mtd> +      <mtd>+        <mo>&#9910;</mo>+      </mtd> +      <mtd>+        <mo>&#9926;</mo>+      </mtd> +      <mtd>+        <mo>&#9942;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#9974;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#9735;</mo>+      </mtd> +      <mtd>+        <mo>&#9751;</mo>+      </mtd> +      <mtd>+        <mo>&#9767;</mo>+      </mtd> +      <mtd>+        <mo>&#9783;</mo>+      </mtd> +      <mtd>+        <mo>&#9799;</mo>+      </mtd> +      <mtd>+        <mo>&#9815;</mo>+      </mtd> +      <mtd>+        <mo>&#9831;</mo>+      </mtd> +      <mtd>+        <mo>&#9847;</mo>+      </mtd> +      <mtd>+        <mo>&#9863;</mo>+      </mtd> +      <mtd>+        <mo>&#9879;</mo>+      </mtd> +      <mtd>+        <mo>&#9895;</mo>+      </mtd> +      <mtd>+        <mo>&#9911;</mo>+      </mtd> +      <mtd>+        <mo>&#9927;</mo>+      </mtd> +      <mtd>+        <mo>&#9943;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#9975;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#9736;</mo>+      </mtd> +      <mtd>+        <mo>&#9752;</mo>+      </mtd> +      <mtd>+        <mo>&#9768;</mo>+      </mtd> +      <mtd>+        <mo>&#9784;</mo>+      </mtd> +      <mtd>+        <mo>&#9800;</mo>+      </mtd> +      <mtd>+        <mo>&#9816;</mo>+      </mtd> +      <mtd>+        <mo>&#9832;</mo>+      </mtd> +      <mtd>+        <mo>&#9848;</mo>+      </mtd> +      <mtd>+        <mo>&#9864;</mo>+      </mtd> +      <mtd>+        <mo>&#9880;</mo>+      </mtd> +      <mtd>+        <mo>&#9896;</mo>+      </mtd> +      <mtd>+        <mo>&#9912;</mo>+      </mtd> +      <mtd>+        <mo>&#9928;</mo>+      </mtd> +      <mtd>+        <mo>&#9944;</mo>+      </mtd> +      <mtd>+        <mo>&#9960;</mo>+      </mtd> +      <mtd>+        <mo>&#9976;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#9737;</mo>+      </mtd> +      <mtd>+        <mo>&#9753;</mo>+      </mtd> +      <mtd>+        <mo>&#9769;</mo>+      </mtd> +      <mtd>+        <mo>&#9785;</mo>+      </mtd> +      <mtd>+        <mo>&#9801;</mo>+      </mtd> +      <mtd>+        <mo>&#9817;</mo>+      </mtd> +      <mtd>+        <mo>&#9833;</mo>+      </mtd> +      <mtd>+        <mo>&#9849;</mo>+      </mtd> +      <mtd>+        <mo>&#9865;</mo>+      </mtd> +      <mtd>+        <mo>&#9881;</mo>+      </mtd> +      <mtd>+        <mo>&#9897;</mo>+      </mtd> +      <mtd>+        <mo>&#9913;</mo>+      </mtd> +      <mtd>+        <mo>&#9929;</mo>+      </mtd> +      <mtd>+        <mo>&#9945;</mo>+      </mtd> +      <mtd>+        <mo>&#9961;</mo>+      </mtd> +      <mtd>+        <mo>&#9977;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#9738;</mo>+      </mtd> +      <mtd>+        <mo>&#9754;</mo>+      </mtd> +      <mtd>+        <mo>&#9770;</mo>+      </mtd> +      <mtd>+        <mo>&#9786;</mo>+      </mtd> +      <mtd>+        <mo>&#9802;</mo>+      </mtd> +      <mtd>+        <mo>&#9818;</mo>+      </mtd> +      <mtd>+        <mo>&#9834;</mo>+      </mtd> +      <mtd>+        <mo>&#9850;</mo>+      </mtd> +      <mtd>+        <mo>&#9866;</mo>+      </mtd> +      <mtd>+        <mo>&#9882;</mo>+      </mtd> +      <mtd>+        <mo>&#9898;</mo>+      </mtd> +      <mtd>+        <mo>&#9914;</mo>+      </mtd> +      <mtd>+        <mo>&#9930;</mo>+      </mtd> +      <mtd>+        <mo>&#9946;</mo>+      </mtd> +      <mtd>+        <mo>&#9962;</mo>+      </mtd> +      <mtd>+        <mo>&#9978;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#9739;</mo>+      </mtd> +      <mtd>+        <mo>&#9755;</mo>+      </mtd> +      <mtd>+        <mo>&#9771;</mo>+      </mtd> +      <mtd>+        <mo>&#9787;</mo>+      </mtd> +      <mtd>+        <mo>&#9803;</mo>+      </mtd> +      <mtd>+        <mo>&#9819;</mo>+      </mtd> +      <mtd>+        <mo>&#9835;</mo>+      </mtd> +      <mtd>+        <mo>&#9851;</mo>+      </mtd> +      <mtd>+        <mo>&#9867;</mo>+      </mtd> +      <mtd>+        <mo>&#9883;</mo>+      </mtd> +      <mtd>+        <mo>&#9899;</mo>+      </mtd> +      <mtd>+        <mo>&#9915;</mo>+      </mtd> +      <mtd>+        <mo>&#9931;</mo>+      </mtd> +      <mtd>+        <mo>&#9947;</mo>+      </mtd> +      <mtd>+        <mo>&#9963;</mo>+      </mtd> +      <mtd>+        <mo>&#9979;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#9740;</mo>+      </mtd> +      <mtd>+        <mo>&#9756;</mo>+      </mtd> +      <mtd>+        <mo>&#9772;</mo>+      </mtd> +      <mtd>+        <mo>&#9788;</mo>+      </mtd> +      <mtd>+        <mo>&#9804;</mo>+      </mtd> +      <mtd>+        <mo>&#9820;</mo>+      </mtd> +      <mtd>+        <mo>&#9836;</mo>+      </mtd> +      <mtd>+        <mo>&#9852;</mo>+      </mtd> +      <mtd>+        <mo>&#9868;</mo>+      </mtd> +      <mtd>+        <mo>&#9884;</mo>+      </mtd> +      <mtd>+        <mo>&#9900;</mo>+      </mtd> +      <mtd>+        <mo>&#9916;</mo>+      </mtd> +      <mtd>+        <mo>&#9932;</mo>+      </mtd> +      <mtd>+        <mo>&#9948;</mo>+      </mtd> +      <mtd>+        <mo>&#9964;</mo>+      </mtd> +      <mtd>+        <mo>&#9980;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#9741;</mo>+      </mtd> +      <mtd>+        <mo>&#9757;</mo>+      </mtd> +      <mtd>+        <mo>&#9773;</mo>+      </mtd> +      <mtd>+        <mo>&#9789;</mo>+      </mtd> +      <mtd>+        <mo>&#9805;</mo>+      </mtd> +      <mtd>+        <mo>&#9821;</mo>+      </mtd> +      <mtd>+        <mo>&#9837;</mo>+      </mtd> +      <mtd>+        <mo>&#9853;</mo>+      </mtd> +      <mtd>+        <mo>&#9869;</mo>+      </mtd> +      <mtd>+        <mo>&#9885;</mo>+      </mtd> +      <mtd>+        <mo>&#9901;</mo>+      </mtd> +      <mtd>+        <mo>&#9917;</mo>+      </mtd> +      <mtd>+        <mo>&#9933;</mo>+      </mtd> +      <mtd>+        <mo>&#9949;</mo>+      </mtd> +      <mtd>+        <mo>&#9965;</mo>+      </mtd> +      <mtd>+        <mo>&#9981;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#9742;</mo>+      </mtd> +      <mtd>+        <mo>&#9758;</mo>+      </mtd> +      <mtd>+        <mo>&#9774;</mo>+      </mtd> +      <mtd>+        <mo>&#9790;</mo>+      </mtd> +      <mtd>+        <mo>&#9806;</mo>+      </mtd> +      <mtd>+        <mo>&#9822;</mo>+      </mtd> +      <mtd>+        <mo>&#9838;</mo>+      </mtd> +      <mtd>+        <mo>&#9854;</mo>+      </mtd> +      <mtd>+        <mo>&#9870;</mo>+      </mtd> +      <mtd>+        <mo>&#9886;</mo>+      </mtd> +      <mtd>+        <mo>&#9902;</mo>+      </mtd> +      <mtd>+        <mo>&#9918;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#9950;</mo>+      </mtd> +      <mtd>+        <mo>&#9966;</mo>+      </mtd> +      <mtd>+        <mo>&#9982;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#9743;</mo>+      </mtd> +      <mtd>+        <mo>&#9759;</mo>+      </mtd> +      <mtd>+        <mo>&#9775;</mo>+      </mtd> +      <mtd>+        <mo>&#9791;</mo>+      </mtd> +      <mtd>+        <mo>&#9807;</mo>+      </mtd> +      <mtd>+        <mo>&#9823;</mo>+      </mtd> +      <mtd>+        <mo>&#9839;</mo>+      </mtd> +      <mtd>+        <mo>&#9855;</mo>+      </mtd> +      <mtd>+        <mo>&#9871;</mo>+      </mtd> +      <mtd>+        <mo>&#9887;</mo>+      </mtd> +      <mtd>+        <mo>&#9903;</mo>+      </mtd> +      <mtd>+        <mo>&#9919;</mo>+      </mtd> +      <mtd>+        <mo>&#9935;</mo>+      </mtd> +      <mtd>+        <mo>&#9951;</mo>+      </mtd> +      <mtd>+        <mo>&#9967;</mo>+      </mtd> +      <mtd>+        <mo>&#9983;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "260" ]+      , [ EText TextNormal "261" ]+      , [ EText TextNormal "262" ]+      , [ EText TextNormal "263" ]+      , [ EText TextNormal "264" ]+      , [ EText TextNormal "265" ]+      , [ EText TextNormal "266" ]+      , [ EText TextNormal "267" ]+      , [ EText TextNormal "268" ]+      , [ EText TextNormal "269" ]+      , [ EText TextNormal "26A" ]+      , [ EText TextNormal "26B" ]+      , [ EText TextNormal "26C" ]+      , [ EText TextNormal "26D" ]+      , [ EText TextNormal "26E" ]+      , [ EText TextNormal "26F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\9728" ]+      , [ ESymbol Ord "\9744" ]+      , [ ESymbol Ord "\9760" ]+      , [ ESymbol Ord "\9776" ]+      , [ ESymbol Ord "\9792" ]+      , [ ESymbol Ord "\9808" ]+      , [ ESymbol Ord "\9824" ]+      , [ ESymbol Ord "\9840" ]+      , [ ESymbol Ord "\9856" ]+      , [ ESymbol Ord "\9872" ]+      , [ ESymbol Ord "\9888" ]+      , [ ESymbol Ord "\9904" ]+      , [ ESymbol Ord "\9920" ]+      , [ ESymbol Ord "\9936" ]+      , [ ESymbol Ord "\9952" ]+      , [ ESymbol Ord "\9968" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\9729" ]+      , [ ESymbol Ord "\9745" ]+      , [ ESymbol Ord "\9761" ]+      , [ ESymbol Ord "\9777" ]+      , [ ESymbol Ord "\9793" ]+      , [ ESymbol Ord "\9809" ]+      , [ ESymbol Ord "\9825" ]+      , [ ESymbol Ord "\9841" ]+      , [ ESymbol Ord "\9857" ]+      , [ ESymbol Ord "\9873" ]+      , [ ESymbol Ord "\9889" ]+      , [ ESymbol Ord "\9905" ]+      , [ ESymbol Ord "\9921" ]+      , [ ESymbol Ord "\9937" ]+      , [ ESymbol Ord "\9953" ]+      , [ ESymbol Ord "\9969" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\9730" ]+      , [ ESymbol Ord "\9746" ]+      , [ ESymbol Ord "\9762" ]+      , [ ESymbol Ord "\9778" ]+      , [ ESymbol Ord "\9794" ]+      , [ ESymbol Ord "\9810" ]+      , [ ESymbol Ord "\9826" ]+      , [ ESymbol Ord "\9842" ]+      , [ ESymbol Ord "\9858" ]+      , [ ESymbol Ord "\9874" ]+      , [ ESymbol Ord "\9890" ]+      , [ ESymbol Ord "\9906" ]+      , [ ESymbol Ord "\9922" ]+      , [ ESymbol Ord "\9938" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\9970" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\9731" ]+      , [ ESymbol Ord "\9747" ]+      , [ ESymbol Ord "\9763" ]+      , [ ESymbol Ord "\9779" ]+      , [ ESymbol Ord "\9795" ]+      , [ ESymbol Ord "\9811" ]+      , [ ESymbol Ord "\9827" ]+      , [ ESymbol Ord "\9843" ]+      , [ ESymbol Ord "\9859" ]+      , [ ESymbol Ord "\9875" ]+      , [ ESymbol Ord "\9891" ]+      , [ ESymbol Ord "\9907" ]+      , [ ESymbol Ord "\9923" ]+      , [ ESymbol Ord "\9939" ]+      , [ ESymbol Ord "\9955" ]+      , [ ESymbol Ord "\9971" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\9732" ]+      , [ ESymbol Ord "\9748" ]+      , [ ESymbol Ord "\9764" ]+      , [ ESymbol Ord "\9780" ]+      , [ ESymbol Ord "\9796" ]+      , [ ESymbol Ord "\9812" ]+      , [ ESymbol Ord "\9828" ]+      , [ ESymbol Ord "\9844" ]+      , [ ESymbol Ord "\9860" ]+      , [ ESymbol Ord "\9876" ]+      , [ ESymbol Ord "\9892" ]+      , [ ESymbol Ord "\9908" ]+      , [ ESymbol Ord "\9924" ]+      , [ ESymbol Ord "\9940" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\9972" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\9733" ]+      , [ ESymbol Ord "\9749" ]+      , [ ESymbol Ord "\9765" ]+      , [ ESymbol Ord "\9781" ]+      , [ ESymbol Ord "\9797" ]+      , [ ESymbol Ord "\9813" ]+      , [ ESymbol Ord "\9829" ]+      , [ ESymbol Ord "\9845" ]+      , [ ESymbol Ord "\9861" ]+      , [ ESymbol Ord "\9877" ]+      , [ ESymbol Ord "\9893" ]+      , [ ESymbol Ord "\9909" ]+      , [ ESymbol Ord "\9925" ]+      , [ ESymbol Ord "\9941" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\9973" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\9734" ]+      , [ ESymbol Ord "\9750" ]+      , [ ESymbol Ord "\9766" ]+      , [ ESymbol Ord "\9782" ]+      , [ ESymbol Ord "\9798" ]+      , [ ESymbol Ord "\9814" ]+      , [ ESymbol Ord "\9830" ]+      , [ ESymbol Ord "\9846" ]+      , [ ESymbol Ord "\9862" ]+      , [ ESymbol Ord "\9878" ]+      , [ ESymbol Ord "\9894" ]+      , [ ESymbol Ord "\9910" ]+      , [ ESymbol Ord "\9926" ]+      , [ ESymbol Ord "\9942" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\9974" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\9735" ]+      , [ ESymbol Ord "\9751" ]+      , [ ESymbol Ord "\9767" ]+      , [ ESymbol Ord "\9783" ]+      , [ ESymbol Ord "\9799" ]+      , [ ESymbol Ord "\9815" ]+      , [ ESymbol Ord "\9831" ]+      , [ ESymbol Ord "\9847" ]+      , [ ESymbol Ord "\9863" ]+      , [ ESymbol Ord "\9879" ]+      , [ ESymbol Ord "\9895" ]+      , [ ESymbol Ord "\9911" ]+      , [ ESymbol Ord "\9927" ]+      , [ ESymbol Ord "\9943" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\9975" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\9736" ]+      , [ ESymbol Ord "\9752" ]+      , [ ESymbol Ord "\9768" ]+      , [ ESymbol Ord "\9784" ]+      , [ ESymbol Ord "\9800" ]+      , [ ESymbol Ord "\9816" ]+      , [ ESymbol Ord "\9832" ]+      , [ ESymbol Ord "\9848" ]+      , [ ESymbol Ord "\9864" ]+      , [ ESymbol Ord "\9880" ]+      , [ ESymbol Ord "\9896" ]+      , [ ESymbol Ord "\9912" ]+      , [ ESymbol Ord "\9928" ]+      , [ ESymbol Ord "\9944" ]+      , [ ESymbol Ord "\9960" ]+      , [ ESymbol Ord "\9976" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\9737" ]+      , [ ESymbol Ord "\9753" ]+      , [ ESymbol Ord "\9769" ]+      , [ ESymbol Ord "\9785" ]+      , [ ESymbol Ord "\9801" ]+      , [ ESymbol Ord "\9817" ]+      , [ ESymbol Ord "\9833" ]+      , [ ESymbol Ord "\9849" ]+      , [ ESymbol Ord "\9865" ]+      , [ ESymbol Ord "\9881" ]+      , [ ESymbol Ord "\9897" ]+      , [ ESymbol Ord "\9913" ]+      , [ ESymbol Ord "\9929" ]+      , [ ESymbol Ord "\9945" ]+      , [ ESymbol Ord "\9961" ]+      , [ ESymbol Ord "\9977" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\9738" ]+      , [ ESymbol Ord "\9754" ]+      , [ ESymbol Ord "\9770" ]+      , [ ESymbol Ord "\9786" ]+      , [ ESymbol Ord "\9802" ]+      , [ ESymbol Ord "\9818" ]+      , [ ESymbol Ord "\9834" ]+      , [ ESymbol Ord "\9850" ]+      , [ ESymbol Ord "\9866" ]+      , [ ESymbol Ord "\9882" ]+      , [ ESymbol Ord "\9898" ]+      , [ ESymbol Ord "\9914" ]+      , [ ESymbol Ord "\9930" ]+      , [ ESymbol Ord "\9946" ]+      , [ ESymbol Ord "\9962" ]+      , [ ESymbol Ord "\9978" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\9739" ]+      , [ ESymbol Ord "\9755" ]+      , [ ESymbol Ord "\9771" ]+      , [ ESymbol Ord "\9787" ]+      , [ ESymbol Ord "\9803" ]+      , [ ESymbol Ord "\9819" ]+      , [ ESymbol Ord "\9835" ]+      , [ ESymbol Ord "\9851" ]+      , [ ESymbol Ord "\9867" ]+      , [ ESymbol Ord "\9883" ]+      , [ ESymbol Ord "\9899" ]+      , [ ESymbol Ord "\9915" ]+      , [ ESymbol Ord "\9931" ]+      , [ ESymbol Ord "\9947" ]+      , [ ESymbol Ord "\9963" ]+      , [ ESymbol Ord "\9979" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\9740" ]+      , [ ESymbol Ord "\9756" ]+      , [ ESymbol Ord "\9772" ]+      , [ ESymbol Ord "\9788" ]+      , [ ESymbol Ord "\9804" ]+      , [ ESymbol Ord "\9820" ]+      , [ ESymbol Ord "\9836" ]+      , [ ESymbol Ord "\9852" ]+      , [ ESymbol Ord "\9868" ]+      , [ ESymbol Ord "\9884" ]+      , [ ESymbol Ord "\9900" ]+      , [ ESymbol Ord "\9916" ]+      , [ ESymbol Ord "\9932" ]+      , [ ESymbol Ord "\9948" ]+      , [ ESymbol Ord "\9964" ]+      , [ ESymbol Ord "\9980" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\9741" ]+      , [ ESymbol Ord "\9757" ]+      , [ ESymbol Ord "\9773" ]+      , [ ESymbol Ord "\9789" ]+      , [ ESymbol Ord "\9805" ]+      , [ ESymbol Ord "\9821" ]+      , [ ESymbol Ord "\9837" ]+      , [ ESymbol Ord "\9853" ]+      , [ ESymbol Ord "\9869" ]+      , [ ESymbol Ord "\9885" ]+      , [ ESymbol Ord "\9901" ]+      , [ ESymbol Ord "\9917" ]+      , [ ESymbol Ord "\9933" ]+      , [ ESymbol Ord "\9949" ]+      , [ ESymbol Ord "\9965" ]+      , [ ESymbol Ord "\9981" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\9742" ]+      , [ ESymbol Ord "\9758" ]+      , [ ESymbol Ord "\9774" ]+      , [ ESymbol Ord "\9790" ]+      , [ ESymbol Ord "\9806" ]+      , [ ESymbol Ord "\9822" ]+      , [ ESymbol Ord "\9838" ]+      , [ ESymbol Ord "\9854" ]+      , [ ESymbol Ord "\9870" ]+      , [ ESymbol Ord "\9886" ]+      , [ ESymbol Ord "\9902" ]+      , [ ESymbol Ord "\9918" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\9950" ]+      , [ ESymbol Ord "\9966" ]+      , [ ESymbol Ord "\9982" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\9743" ]+      , [ ESymbol Ord "\9759" ]+      , [ ESymbol Ord "\9775" ]+      , [ ESymbol Ord "\9791" ]+      , [ ESymbol Ord "\9807" ]+      , [ ESymbol Ord "\9823" ]+      , [ ESymbol Ord "\9839" ]+      , [ ESymbol Ord "\9855" ]+      , [ ESymbol Ord "\9871" ]+      , [ ESymbol Ord "\9887" ]+      , [ ESymbol Ord "\9903" ]+      , [ ESymbol Ord "\9919" ]+      , [ ESymbol Ord "\9935" ]+      , [ ESymbol Ord "\9951" ]+      , [ ESymbol Ord "\9967" ]+      , [ ESymbol Ord "\9983" ]+      ]+    ]+]
+ test/reader/mml/02700_Dingbats.test view
@@ -0,0 +1,956 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>270</mtext>+      </mtd> +      <mtd>+        <mtext>271</mtext>+      </mtd> +      <mtd>+        <mtext>272</mtext>+      </mtd> +      <mtd>+        <mtext>273</mtext>+      </mtd> +      <mtd>+        <mtext>274</mtext>+      </mtd> +      <mtd>+        <mtext>275</mtext>+      </mtd> +      <mtd>+        <mtext>276</mtext>+      </mtd> +      <mtd>+        <mtext>277</mtext>+      </mtd> +      <mtd>+        <mtext>278</mtext>+      </mtd> +      <mtd>+        <mtext>279</mtext>+      </mtd> +      <mtd>+        <mtext>27A</mtext>+      </mtd> +      <mtd>+        <mtext>27B</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10000;</mo>+      </mtd> +      <mtd>+        <mo>&#10016;</mo>+      </mtd> +      <mtd>+        <mo>&#10032;</mo>+      </mtd> +      <mtd>+        <mo>&#10048;</mo>+      </mtd> +      <mtd>+        <mo>&#10064;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10096;</mo>+      </mtd> +      <mtd>+        <mo>&#10112;</mo>+      </mtd> +      <mtd>+        <mo>&#10128;</mo>+      </mtd> +      <mtd>+        <mo>&#10144;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#9985;</mo>+      </mtd> +      <mtd>+        <mo>&#10001;</mo>+      </mtd> +      <mtd>+        <mo>&#10017;</mo>+      </mtd> +      <mtd>+        <mo>&#10033;</mo>+      </mtd> +      <mtd>+        <mo>&#10049;</mo>+      </mtd> +      <mtd>+        <mo>&#10065;</mo>+      </mtd> +      <mtd>+        <mo>&#10081;</mo>+      </mtd> +      <mtd>+        <mo>&#10097;</mo>+      </mtd> +      <mtd>+        <mo>&#10113;</mo>+      </mtd> +      <mtd>+        <mo>&#10129;</mo>+      </mtd> +      <mtd>+        <mo>&#10145;</mo>+      </mtd> +      <mtd>+        <mo>&#10161;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#9986;</mo>+      </mtd> +      <mtd>+        <mo>&#10002;</mo>+      </mtd> +      <mtd>+        <mo>&#10018;</mo>+      </mtd> +      <mtd>+        <mo>&#10034;</mo>+      </mtd> +      <mtd>+        <mo>&#10050;</mo>+      </mtd> +      <mtd>+        <mo>&#10066;</mo>+      </mtd> +      <mtd>+        <mo>&#10082;</mo>+      </mtd> +      <mtd>+        <mo>&#10098;</mo>+      </mtd> +      <mtd>+        <mo>&#10114;</mo>+      </mtd> +      <mtd>+        <mo>&#10130;</mo>+      </mtd> +      <mtd>+        <mo>&#10146;</mo>+      </mtd> +      <mtd>+        <mo>&#10162;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#9987;</mo>+      </mtd> +      <mtd>+        <mo>&#10003;</mo>+      </mtd> +      <mtd>+        <mo>&#10019;</mo>+      </mtd> +      <mtd>+        <mo>&#10035;</mo>+      </mtd> +      <mtd>+        <mo>&#10051;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10083;</mo>+      </mtd> +      <mtd>+        <mo>&#10099;</mo>+      </mtd> +      <mtd>+        <mo>&#10115;</mo>+      </mtd> +      <mtd>+        <mo>&#10131;</mo>+      </mtd> +      <mtd>+        <mo>&#10147;</mo>+      </mtd> +      <mtd>+        <mo>&#10163;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#9988;</mo>+      </mtd> +      <mtd>+        <mo>&#10004;</mo>+      </mtd> +      <mtd>+        <mo>&#10020;</mo>+      </mtd> +      <mtd>+        <mo>&#10036;</mo>+      </mtd> +      <mtd>+        <mo>&#10052;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10084;</mo>+      </mtd> +      <mtd>+        <mo>&#10100;</mo>+      </mtd> +      <mtd>+        <mo>&#10116;</mo>+      </mtd> +      <mtd>+        <mo>&#10132;</mo>+      </mtd> +      <mtd>+        <mo>&#10148;</mo>+      </mtd> +      <mtd>+        <mo>&#10164;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10005;</mo>+      </mtd> +      <mtd>+        <mo>&#10021;</mo>+      </mtd> +      <mtd>+        <mo>&#10037;</mo>+      </mtd> +      <mtd>+        <mo>&#10053;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10085;</mo>+      </mtd> +      <mtd>+        <mo>&#10101;</mo>+      </mtd> +      <mtd>+        <mo>&#10117;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10149;</mo>+      </mtd> +      <mtd>+        <mo>&#10165;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#9990;</mo>+      </mtd> +      <mtd>+        <mo>&#10006;</mo>+      </mtd> +      <mtd>+        <mo>&#10022;</mo>+      </mtd> +      <mtd>+        <mo>&#10038;</mo>+      </mtd> +      <mtd>+        <mo>&#10054;</mo>+      </mtd> +      <mtd>+        <mo>&#10070;</mo>+      </mtd> +      <mtd>+        <mo>&#10086;</mo>+      </mtd> +      <mtd>+        <mo>&#10102;</mo>+      </mtd> +      <mtd>+        <mo>&#10118;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10150;</mo>+      </mtd> +      <mtd>+        <mo>&#10166;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#9991;</mo>+      </mtd> +      <mtd>+        <mo>&#10007;</mo>+      </mtd> +      <mtd>+        <mo>&#10023;</mo>+      </mtd> +      <mtd>+        <mo>&#10039;</mo>+      </mtd> +      <mtd>+        <mo>&#10055;</mo>+      </mtd> +      <mtd>+        <mo>&#10071;</mo>+      </mtd> +      <mtd>+        <mo>&#10087;</mo>+      </mtd> +      <mtd>+        <mo>&#10103;</mo>+      </mtd> +      <mtd>+        <mo>&#10119;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10151;</mo>+      </mtd> +      <mtd>+        <mo>&#10167;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#9992;</mo>+      </mtd> +      <mtd>+        <mo>&#10008;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10040;</mo>+      </mtd> +      <mtd>+        <mo>&#10056;</mo>+      </mtd> +      <mtd>+        <mo>&#10072;</mo>+      </mtd> +      <mtd>+        <mo>&#10088;</mo>+      </mtd> +      <mtd>+        <mo>&#10104;</mo>+      </mtd> +      <mtd>+        <mo>&#10120;</mo>+      </mtd> +      <mtd>+        <mo>&#10136;</mo>+      </mtd> +      <mtd>+        <mo>&#10152;</mo>+      </mtd> +      <mtd>+        <mo>&#10168;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#9993;</mo>+      </mtd> +      <mtd>+        <mo>&#10009;</mo>+      </mtd> +      <mtd>+        <mo>&#10025;</mo>+      </mtd> +      <mtd>+        <mo>&#10041;</mo>+      </mtd> +      <mtd>+        <mo>&#10057;</mo>+      </mtd> +      <mtd>+        <mo>&#10073;</mo>+      </mtd> +      <mtd>+        <mo>&#10089;</mo>+      </mtd> +      <mtd>+        <mo>&#10105;</mo>+      </mtd> +      <mtd>+        <mo>&#10121;</mo>+      </mtd> +      <mtd>+        <mo>&#10137;</mo>+      </mtd> +      <mtd>+        <mo>&#10153;</mo>+      </mtd> +      <mtd>+        <mo>&#10169;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10010;</mo>+      </mtd> +      <mtd>+        <mo>&#10026;</mo>+      </mtd> +      <mtd>+        <mo>&#10042;</mo>+      </mtd> +      <mtd>+        <mo>&#10058;</mo>+      </mtd> +      <mtd>+        <mo>&#10074;</mo>+      </mtd> +      <mtd>+        <mo>&#10090;</mo>+      </mtd> +      <mtd>+        <mo>&#10106;</mo>+      </mtd> +      <mtd>+        <mo>&#10122;</mo>+      </mtd> +      <mtd>+        <mo>&#10138;</mo>+      </mtd> +      <mtd>+        <mo>&#10154;</mo>+      </mtd> +      <mtd>+        <mo>&#10170;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10011;</mo>+      </mtd> +      <mtd>+        <mo>&#10027;</mo>+      </mtd> +      <mtd>+        <mo>&#10043;</mo>+      </mtd> +      <mtd>+        <mo>&#10059;</mo>+      </mtd> +      <mtd>+        <mo>&#10075;</mo>+      </mtd> +      <mtd>+        <mo>&#10091;</mo>+      </mtd> +      <mtd>+        <mo>&#10107;</mo>+      </mtd> +      <mtd>+        <mo>&#10123;</mo>+      </mtd> +      <mtd>+        <mo>&#10139;</mo>+      </mtd> +      <mtd>+        <mo>&#10155;</mo>+      </mtd> +      <mtd>+        <mo>&#10171;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#9996;</mo>+      </mtd> +      <mtd>+        <mo>&#10012;</mo>+      </mtd> +      <mtd>+        <mo>&#10028;</mo>+      </mtd> +      <mtd>+        <mo>&#10044;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10076;</mo>+      </mtd> +      <mtd>+        <mo>&#10092;</mo>+      </mtd> +      <mtd>+        <mo>&#10108;</mo>+      </mtd> +      <mtd>+        <mo>&#10124;</mo>+      </mtd> +      <mtd>+        <mo>&#10140;</mo>+      </mtd> +      <mtd>+        <mo>&#10156;</mo>+      </mtd> +      <mtd>+        <mo>&#10172;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#9997;</mo>+      </mtd> +      <mtd>+        <mo>&#10013;</mo>+      </mtd> +      <mtd>+        <mo>&#10029;</mo>+      </mtd> +      <mtd>+        <mo>&#10045;</mo>+      </mtd> +      <mtd>+        <mo>&#10061;</mo>+      </mtd> +      <mtd>+        <mo>&#10077;</mo>+      </mtd> +      <mtd>+        <mo>&#10093;</mo>+      </mtd> +      <mtd>+        <mo>&#10109;</mo>+      </mtd> +      <mtd>+        <mo>&#10125;</mo>+      </mtd> +      <mtd>+        <mo>&#10141;</mo>+      </mtd> +      <mtd>+        <mo>&#10157;</mo>+      </mtd> +      <mtd>+        <mo>&#10173;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#9998;</mo>+      </mtd> +      <mtd>+        <mo>&#10014;</mo>+      </mtd> +      <mtd>+        <mo>&#10030;</mo>+      </mtd> +      <mtd>+        <mo>&#10046;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10078;</mo>+      </mtd> +      <mtd>+        <mo>&#10094;</mo>+      </mtd> +      <mtd>+        <mo>&#10110;</mo>+      </mtd> +      <mtd>+        <mo>&#10126;</mo>+      </mtd> +      <mtd>+        <mo>&#10142;</mo>+      </mtd> +      <mtd>+        <mo>&#10158;</mo>+      </mtd> +      <mtd>+        <mo>&#10174;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#9999;</mo>+      </mtd> +      <mtd>+        <mo>&#10015;</mo>+      </mtd> +      <mtd>+        <mo>&#10031;</mo>+      </mtd> +      <mtd>+        <mo>&#10047;</mo>+      </mtd> +      <mtd>+        <mo>&#10063;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10095;</mo>+      </mtd> +      <mtd>+        <mo>&#10111;</mo>+      </mtd> +      <mtd>+        <mo>&#10127;</mo>+      </mtd> +      <mtd>+        <mo>&#10143;</mo>+      </mtd> +      <mtd>+        <mo>&#10159;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "270" ]+      , [ EText TextNormal "271" ]+      , [ EText TextNormal "272" ]+      , [ EText TextNormal "273" ]+      , [ EText TextNormal "274" ]+      , [ EText TextNormal "275" ]+      , [ EText TextNormal "276" ]+      , [ EText TextNormal "277" ]+      , [ EText TextNormal "278" ]+      , [ EText TextNormal "279" ]+      , [ EText TextNormal "27A" ]+      , [ EText TextNormal "27B" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10000" ]+      , [ ESymbol Ord "\10016" ]+      , [ ESymbol Ord "\10032" ]+      , [ ESymbol Ord "\10048" ]+      , [ ESymbol Ord "\10064" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10096" ]+      , [ ESymbol Ord "\10112" ]+      , [ ESymbol Ord "\10128" ]+      , [ ESymbol Ord "\10144" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\9985" ]+      , [ ESymbol Ord "\10001" ]+      , [ ESymbol Ord "\10017" ]+      , [ ESymbol Ord "\10033" ]+      , [ ESymbol Ord "\10049" ]+      , [ ESymbol Ord "\10065" ]+      , [ ESymbol Ord "\10081" ]+      , [ ESymbol Ord "\10097" ]+      , [ ESymbol Ord "\10113" ]+      , [ ESymbol Ord "\10129" ]+      , [ ESymbol Ord "\10145" ]+      , [ ESymbol Ord "\10161" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\9986" ]+      , [ ESymbol Ord "\10002" ]+      , [ ESymbol Ord "\10018" ]+      , [ ESymbol Ord "\10034" ]+      , [ ESymbol Ord "\10050" ]+      , [ ESymbol Ord "\10066" ]+      , [ ESymbol Ord "\10082" ]+      , [ ESymbol Open "\10098" ]+      , [ ESymbol Ord "\10114" ]+      , [ ESymbol Ord "\10130" ]+      , [ ESymbol Ord "\10146" ]+      , [ ESymbol Ord "\10162" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\9987" ]+      , [ ESymbol Ord "\10003" ]+      , [ ESymbol Ord "\10019" ]+      , [ ESymbol Ord "\10035" ]+      , [ ESymbol Ord "\10051" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10083" ]+      , [ ESymbol Close "\10099" ]+      , [ ESymbol Ord "\10115" ]+      , [ ESymbol Ord "\10131" ]+      , [ ESymbol Ord "\10147" ]+      , [ ESymbol Ord "\10163" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\9988" ]+      , [ ESymbol Ord "\10004" ]+      , [ ESymbol Ord "\10020" ]+      , [ ESymbol Ord "\10036" ]+      , [ ESymbol Ord "\10052" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10084" ]+      , [ ESymbol Ord "\10100" ]+      , [ ESymbol Ord "\10116" ]+      , [ ESymbol Ord "\10132" ]+      , [ ESymbol Ord "\10148" ]+      , [ ESymbol Ord "\10164" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10005" ]+      , [ ESymbol Ord "\10021" ]+      , [ ESymbol Ord "\10037" ]+      , [ ESymbol Ord "\10053" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10085" ]+      , [ ESymbol Ord "\10101" ]+      , [ ESymbol Ord "\10117" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10149" ]+      , [ ESymbol Ord "\10165" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\9990" ]+      , [ ESymbol Ord "\10006" ]+      , [ ESymbol Ord "\10022" ]+      , [ ESymbol Ord "\10038" ]+      , [ ESymbol Ord "\10054" ]+      , [ ESymbol Ord "\10070" ]+      , [ ESymbol Ord "\10086" ]+      , [ ESymbol Ord "\10102" ]+      , [ ESymbol Ord "\10118" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10150" ]+      , [ ESymbol Ord "\10166" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\9991" ]+      , [ ESymbol Ord "\10007" ]+      , [ ESymbol Ord "\10023" ]+      , [ ESymbol Ord "\10039" ]+      , [ ESymbol Ord "\10055" ]+      , [ ESymbol Ord "\10071" ]+      , [ ESymbol Ord "\10087" ]+      , [ ESymbol Ord "\10103" ]+      , [ ESymbol Ord "\10119" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10151" ]+      , [ ESymbol Ord "\10167" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\9992" ]+      , [ ESymbol Ord "\10008" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10040" ]+      , [ ESymbol Ord "\10056" ]+      , [ ESymbol Ord "\10072" ]+      , [ ESymbol Ord "\10088" ]+      , [ ESymbol Ord "\10104" ]+      , [ ESymbol Ord "\10120" ]+      , [ ESymbol Ord "\10136" ]+      , [ ESymbol Ord "\10152" ]+      , [ ESymbol Ord "\10168" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\9993" ]+      , [ ESymbol Ord "\10009" ]+      , [ ESymbol Ord "\10025" ]+      , [ ESymbol Ord "\10041" ]+      , [ ESymbol Ord "\10057" ]+      , [ ESymbol Ord "\10073" ]+      , [ ESymbol Ord "\10089" ]+      , [ ESymbol Ord "\10105" ]+      , [ ESymbol Ord "\10121" ]+      , [ ESymbol Ord "\10137" ]+      , [ ESymbol Ord "\10153" ]+      , [ ESymbol Ord "\10169" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10010" ]+      , [ ESymbol Ord "\10026" ]+      , [ ESymbol Ord "\10042" ]+      , [ ESymbol Ord "\10058" ]+      , [ ESymbol Ord "\10074" ]+      , [ ESymbol Ord "\10090" ]+      , [ ESymbol Ord "\10106" ]+      , [ ESymbol Ord "\10122" ]+      , [ ESymbol Ord "\10138" ]+      , [ ESymbol Ord "\10154" ]+      , [ ESymbol Ord "\10170" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10011" ]+      , [ ESymbol Ord "\10027" ]+      , [ ESymbol Ord "\10043" ]+      , [ ESymbol Ord "\10059" ]+      , [ ESymbol Ord "\10075" ]+      , [ ESymbol Ord "\10091" ]+      , [ ESymbol Ord "\10107" ]+      , [ ESymbol Ord "\10123" ]+      , [ ESymbol Ord "\10139" ]+      , [ ESymbol Ord "\10155" ]+      , [ ESymbol Ord "\10171" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\9996" ]+      , [ ESymbol Ord "\10012" ]+      , [ ESymbol Ord "\10028" ]+      , [ ESymbol Ord "\10044" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10076" ]+      , [ ESymbol Ord "\10092" ]+      , [ ESymbol Ord "\10108" ]+      , [ ESymbol Ord "\10124" ]+      , [ ESymbol Ord "\10140" ]+      , [ ESymbol Ord "\10156" ]+      , [ ESymbol Ord "\10172" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\9997" ]+      , [ ESymbol Ord "\10013" ]+      , [ ESymbol Ord "\10029" ]+      , [ ESymbol Ord "\10045" ]+      , [ ESymbol Ord "\10061" ]+      , [ ESymbol Ord "\10077" ]+      , [ ESymbol Ord "\10093" ]+      , [ ESymbol Ord "\10109" ]+      , [ ESymbol Ord "\10125" ]+      , [ ESymbol Ord "\10141" ]+      , [ ESymbol Ord "\10157" ]+      , [ ESymbol Ord "\10173" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\9998" ]+      , [ ESymbol Ord "\10014" ]+      , [ ESymbol Ord "\10030" ]+      , [ ESymbol Ord "\10046" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10078" ]+      , [ ESymbol Ord "\10094" ]+      , [ ESymbol Ord "\10110" ]+      , [ ESymbol Ord "\10126" ]+      , [ ESymbol Ord "\10142" ]+      , [ ESymbol Ord "\10158" ]+      , [ ESymbol Ord "\10174" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\9999" ]+      , [ ESymbol Ord "\10015" ]+      , [ ESymbol Ord "\10031" ]+      , [ ESymbol Ord "\10047" ]+      , [ ESymbol Ord "\10063" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\10095" ]+      , [ ESymbol Ord "\10111" ]+      , [ ESymbol Ord "\10127" ]+      , [ ESymbol Ord "\10143" ]+      , [ ESymbol Ord "\10159" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/027C0_Miscellaneous_Mathematical_Symbols-A.test view
@@ -0,0 +1,331 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>27C</mtext>+      </mtd> +      <mtd>+        <mtext>27D</mtext>+      </mtd> +      <mtd>+        <mtext>27E</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#10176;</mo>+      </mtd> +      <mtd>+        <mo>&#10192;</mo>+      </mtd> +      <mtd>+        <mo>&#10208;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#10177;</mo>+      </mtd> +      <mtd>+        <mo>&#10193;</mo>+      </mtd> +      <mtd>+        <mo>&#10209;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#10178;</mo>+      </mtd> +      <mtd>+        <mo>&#10194;</mo>+      </mtd> +      <mtd>+        <mo>&#10210;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#10179;</mo>+      </mtd> +      <mtd>+        <mo>&#10195;</mo>+      </mtd> +      <mtd>+        <mo>&#10211;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#10180;</mo>+      </mtd> +      <mtd>+        <mo>&#10196;</mo>+      </mtd> +      <mtd>+        <mo>&#10212;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#10181;</mo>+      </mtd> +      <mtd>+        <mo>&#10197;</mo>+      </mtd> +      <mtd>+        <mo>&#10213;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#10182;</mo>+      </mtd> +      <mtd>+        <mo>&#10198;</mo>+      </mtd> +      <mtd>+        <mo>&#10214;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#10183;</mo>+      </mtd> +      <mtd>+        <mo>&#10199;</mo>+      </mtd> +      <mtd>+        <mo>&#10215;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#10184;</mo>+      </mtd> +      <mtd>+        <mo>&#10200;</mo>+      </mtd> +      <mtd>+        <mo>&#10216;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#10185;</mo>+      </mtd> +      <mtd>+        <mo>&#10201;</mo>+      </mtd> +      <mtd>+        <mo>&#10217;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#10186;</mo>+      </mtd> +      <mtd>+        <mo>&#10202;</mo>+      </mtd> +      <mtd>+        <mo>&#10218;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10203;</mo>+      </mtd> +      <mtd>+        <mo>&#10219;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#10188;</mo>+      </mtd> +      <mtd>+        <mo>&#10204;</mo>+      </mtd> +      <mtd>+        <mo>&#10220;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10205;</mo>+      </mtd> +      <mtd>+        <mo>&#10221;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10206;</mo>+      </mtd> +      <mtd>+        <mo>&#10222;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#10207;</mo>+      </mtd> +      <mtd>+        <mo>&#10223;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter , AlignCenter ]+    [ [ []+      , [ EText TextNormal "27C" ]+      , [ EText TextNormal "27D" ]+      , [ EText TextNormal "27E" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\10176" ]+      , [ ESymbol Ord "\10192" ]+      , [ ESymbol Bin "\10208" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\10177" ]+      , [ ESymbol Bin "\10193" ]+      , [ ESymbol Bin "\10209" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Rel "\10178" ]+      , [ ESymbol Rel "\10194" ]+      , [ ESymbol Bin "\10210" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\10179" ]+      , [ ESymbol Rel "\10195" ]+      , [ ESymbol Bin "\10211" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\10180" ]+      , [ ESymbol Rel "\10196" ]+      , [ ESymbol Bin "\10212" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Open "\10181" ]+      , [ ESymbol Op "\10197" ]+      , [ ESymbol Bin "\10213" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Close "\10182" ]+      , [ ESymbol Op "\10198" ]+      , [ ESymbol Open "\10214" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Bin "\10183" ]+      , [ ESymbol Op "\10199" ]+      , [ ESymbol Close "\10215" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Rel "\10184" ]+      , [ ESymbol Op "\10200" ]+      , [ ESymbol Open "\10216" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Rel "\10185" ]+      , [ ESymbol Op "\10201" ]+      , [ ESymbol Close "\10217" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\10186" ]+      , [ ESymbol Rel "\10202" ]+      , [ ESymbol Open "\10218" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Rel "\10203" ]+      , [ ESymbol Close "\10219" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Open "\10188" ]+      , [ ESymbol Rel "\10204" ]+      , [ ESymbol Open "\10220" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Rel "\10205" ]+      , [ ESymbol Close "\10221" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Rel "\10206" ]+      , [ ESymbol Open "\10222" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Rel "\10207" ]+      , [ ESymbol Close "\10223" ]+      ]+    ]+]
+ test/reader/mml/027F0_Supplemental_Arrows-A.test view
@@ -0,0 +1,161 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>27F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#10224;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#10225;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#10226;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#10227;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#10228;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#10229;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#10230;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#10231;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#10232;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#10233;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#10234;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#10235;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#10236;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#10237;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#10238;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#10239;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [] , [ EText TextNormal "27F" ] ]+    , [ [ EText TextNormal "0" ] , [ ESymbol Rel "\10224" ] ]+    , [ [ EText TextNormal "1" ] , [ ESymbol Rel "\10225" ] ]+    , [ [ EText TextNormal "2" ] , [ ESymbol Rel "\10226" ] ]+    , [ [ EText TextNormal "3" ] , [ ESymbol Rel "\10227" ] ]+    , [ [ EText TextNormal "4" ] , [ ESymbol Rel "\10228" ] ]+    , [ [ EText TextNormal "5" ] , [ ESymbol Accent "\10229" ] ]+    , [ [ EText TextNormal "6" ] , [ ESymbol Accent "\10230" ] ]+    , [ [ EText TextNormal "7" ] , [ ESymbol Accent "\10231" ] ]+    , [ [ EText TextNormal "8" ] , [ ESymbol Accent "\10232" ] ]+    , [ [ EText TextNormal "9" ] , [ ESymbol Accent "\10233" ] ]+    , [ [ EText TextNormal "A" ] , [ ESymbol Accent "\10234" ] ]+    , [ [ EText TextNormal "B" ] , [ ESymbol Accent "\10235" ] ]+    , [ [ EText TextNormal "C" ] , [ ESymbol Accent "\10236" ] ]+    , [ [ EText TextNormal "D" ] , [ ESymbol Accent "\10237" ] ]+    , [ [ EText TextNormal "E" ] , [ ESymbol Accent "\10238" ] ]+    , [ [ EText TextNormal "F" ] , [ ESymbol Accent "\10239" ] ]+    ]+]
+ test/reader/mml/02900_Supplemental_Arrows-B.test view
@@ -0,0 +1,680 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>290</mtext>+      </mtd> +      <mtd>+        <mtext>291</mtext>+      </mtd> +      <mtd>+        <mtext>292</mtext>+      </mtd> +      <mtd>+        <mtext>293</mtext>+      </mtd> +      <mtd>+        <mtext>294</mtext>+      </mtd> +      <mtd>+        <mtext>295</mtext>+      </mtd> +      <mtd>+        <mtext>296</mtext>+      </mtd> +      <mtd>+        <mtext>297</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#10496;</mo>+      </mtd> +      <mtd>+        <mo>&#10512;</mo>+      </mtd> +      <mtd>+        <mo>&#10528;</mo>+      </mtd> +      <mtd>+        <mo>&#10544;</mo>+      </mtd> +      <mtd>+        <mo>&#10560;</mo>+      </mtd> +      <mtd>+        <mo>&#10576;</mo>+      </mtd> +      <mtd>+        <mo>&#10592;</mo>+      </mtd> +      <mtd>+        <mo>&#10608;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#10497;</mo>+      </mtd> +      <mtd>+        <mo>&#10513;</mo>+      </mtd> +      <mtd>+        <mo>&#10529;</mo>+      </mtd> +      <mtd>+        <mo>&#10545;</mo>+      </mtd> +      <mtd>+        <mo>&#10561;</mo>+      </mtd> +      <mtd>+        <mo>&#10577;</mo>+      </mtd> +      <mtd>+        <mo>&#10593;</mo>+      </mtd> +      <mtd>+        <mo>&#10609;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#10498;</mo>+      </mtd> +      <mtd>+        <mo>&#10514;</mo>+      </mtd> +      <mtd>+        <mo>&#10530;</mo>+      </mtd> +      <mtd>+        <mo>&#10546;</mo>+      </mtd> +      <mtd>+        <mo>&#10562;</mo>+      </mtd> +      <mtd>+        <mo>&#10578;</mo>+      </mtd> +      <mtd>+        <mo>&#10594;</mo>+      </mtd> +      <mtd>+        <mo>&#10610;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#10499;</mo>+      </mtd> +      <mtd>+        <mo>&#10515;</mo>+      </mtd> +      <mtd>+        <mo>&#10531;</mo>+      </mtd> +      <mtd>+        <mo>&#10547;</mo>+      </mtd> +      <mtd>+        <mo>&#10563;</mo>+      </mtd> +      <mtd>+        <mo>&#10579;</mo>+      </mtd> +      <mtd>+        <mo>&#10595;</mo>+      </mtd> +      <mtd>+        <mo>&#10611;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#10500;</mo>+      </mtd> +      <mtd>+        <mo>&#10516;</mo>+      </mtd> +      <mtd>+        <mo>&#10532;</mo>+      </mtd> +      <mtd>+        <mo>&#10548;</mo>+      </mtd> +      <mtd>+        <mo>&#10564;</mo>+      </mtd> +      <mtd>+        <mo>&#10580;</mo>+      </mtd> +      <mtd>+        <mo>&#10596;</mo>+      </mtd> +      <mtd>+        <mo>&#10612;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#10501;</mo>+      </mtd> +      <mtd>+        <mo>&#10517;</mo>+      </mtd> +      <mtd>+        <mo>&#10533;</mo>+      </mtd> +      <mtd>+        <mo>&#10549;</mo>+      </mtd> +      <mtd>+        <mo>&#10565;</mo>+      </mtd> +      <mtd>+        <mo>&#10581;</mo>+      </mtd> +      <mtd>+        <mo>&#10597;</mo>+      </mtd> +      <mtd>+        <mo>&#10613;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#10502;</mo>+      </mtd> +      <mtd>+        <mo>&#10518;</mo>+      </mtd> +      <mtd>+        <mo>&#10534;</mo>+      </mtd> +      <mtd>+        <mo>&#10550;</mo>+      </mtd> +      <mtd>+        <mo>&#10566;</mo>+      </mtd> +      <mtd>+        <mo>&#10582;</mo>+      </mtd> +      <mtd>+        <mo>&#10598;</mo>+      </mtd> +      <mtd>+        <mo>&#10614;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#10503;</mo>+      </mtd> +      <mtd>+        <mo>&#10519;</mo>+      </mtd> +      <mtd>+        <mo>&#10535;</mo>+      </mtd> +      <mtd>+        <mo>&#10551;</mo>+      </mtd> +      <mtd>+        <mo>&#10567;</mo>+      </mtd> +      <mtd>+        <mo>&#10583;</mo>+      </mtd> +      <mtd>+        <mo>&#10599;</mo>+      </mtd> +      <mtd>+        <mo>&#10615;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#10504;</mo>+      </mtd> +      <mtd>+        <mo>&#10520;</mo>+      </mtd> +      <mtd>+        <mo>&#10536;</mo>+      </mtd> +      <mtd>+        <mo>&#10552;</mo>+      </mtd> +      <mtd>+        <mo>&#10568;</mo>+      </mtd> +      <mtd>+        <mo>&#10584;</mo>+      </mtd> +      <mtd>+        <mo>&#10600;</mo>+      </mtd> +      <mtd>+        <mo>&#10616;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#10505;</mo>+      </mtd> +      <mtd>+        <mo>&#10521;</mo>+      </mtd> +      <mtd>+        <mo>&#10537;</mo>+      </mtd> +      <mtd>+        <mo>&#10553;</mo>+      </mtd> +      <mtd>+        <mo>&#10569;</mo>+      </mtd> +      <mtd>+        <mo>&#10585;</mo>+      </mtd> +      <mtd>+        <mo>&#10601;</mo>+      </mtd> +      <mtd>+        <mo>&#10617;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#10506;</mo>+      </mtd> +      <mtd>+        <mo>&#10522;</mo>+      </mtd> +      <mtd>+        <mo>&#10538;</mo>+      </mtd> +      <mtd>+        <mo>&#10554;</mo>+      </mtd> +      <mtd>+        <mo>&#10570;</mo>+      </mtd> +      <mtd>+        <mo>&#10586;</mo>+      </mtd> +      <mtd>+        <mo>&#10602;</mo>+      </mtd> +      <mtd>+        <mo>&#10618;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#10507;</mo>+      </mtd> +      <mtd>+        <mo>&#10523;</mo>+      </mtd> +      <mtd>+        <mo>&#10539;</mo>+      </mtd> +      <mtd>+        <mo>&#10555;</mo>+      </mtd> +      <mtd>+        <mo>&#10571;</mo>+      </mtd> +      <mtd>+        <mo>&#10587;</mo>+      </mtd> +      <mtd>+        <mo>&#10603;</mo>+      </mtd> +      <mtd>+        <mo>&#10619;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#10508;</mo>+      </mtd> +      <mtd>+        <mo>&#10524;</mo>+      </mtd> +      <mtd>+        <mo>&#10540;</mo>+      </mtd> +      <mtd>+        <mo>&#10556;</mo>+      </mtd> +      <mtd>+        <mo>&#10572;</mo>+      </mtd> +      <mtd>+        <mo>&#10588;</mo>+      </mtd> +      <mtd>+        <mo>&#10604;</mo>+      </mtd> +      <mtd>+        <mo>&#10620;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#10509;</mo>+      </mtd> +      <mtd>+        <mo>&#10525;</mo>+      </mtd> +      <mtd>+        <mo>&#10541;</mo>+      </mtd> +      <mtd>+        <mo>&#10557;</mo>+      </mtd> +      <mtd>+        <mo>&#10573;</mo>+      </mtd> +      <mtd>+        <mo>&#10589;</mo>+      </mtd> +      <mtd>+        <mo>&#10605;</mo>+      </mtd> +      <mtd>+        <mo>&#10621;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#10510;</mo>+      </mtd> +      <mtd>+        <mo>&#10526;</mo>+      </mtd> +      <mtd>+        <mo>&#10542;</mo>+      </mtd> +      <mtd>+        <mo>&#10558;</mo>+      </mtd> +      <mtd>+        <mo>&#10574;</mo>+      </mtd> +      <mtd>+        <mo>&#10590;</mo>+      </mtd> +      <mtd>+        <mo>&#10606;</mo>+      </mtd> +      <mtd>+        <mo>&#10622;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#10511;</mo>+      </mtd> +      <mtd>+        <mo>&#10527;</mo>+      </mtd> +      <mtd>+        <mo>&#10543;</mo>+      </mtd> +      <mtd>+        <mo>&#10559;</mo>+      </mtd> +      <mtd>+        <mo>&#10575;</mo>+      </mtd> +      <mtd>+        <mo>&#10591;</mo>+      </mtd> +      <mtd>+        <mo>&#10607;</mo>+      </mtd> +      <mtd>+        <mo>&#10623;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "290" ]+      , [ EText TextNormal "291" ]+      , [ EText TextNormal "292" ]+      , [ EText TextNormal "293" ]+      , [ EText TextNormal "294" ]+      , [ EText TextNormal "295" ]+      , [ EText TextNormal "296" ]+      , [ EText TextNormal "297" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Accent "\10496" ]+      , [ ESymbol Accent "\10512" ]+      , [ ESymbol Accent "\10528" ]+      , [ ESymbol Ord "\10544" ]+      , [ ESymbol Rel "\10560" ]+      , [ ESymbol Accent "\10576" ]+      , [ ESymbol Rel "\10592" ]+      , [ ESymbol Accent "\10608" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Accent "\10497" ]+      , [ ESymbol Accent "\10513" ]+      , [ ESymbol Rel "\10529" ]+      , [ ESymbol Ord "\10545" ]+      , [ ESymbol Rel "\10561" ]+      , [ ESymbol Rel "\10577" ]+      , [ ESymbol Rel "\10593" ]+      , [ ESymbol Accent "\10609" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Accent "\10498" ]+      , [ ESymbol Rel "\10514" ]+      , [ ESymbol Rel "\10530" ]+      , [ ESymbol Ord "\10546" ]+      , [ ESymbol Accent "\10562" ]+      , [ ESymbol Accent "\10578" ]+      , [ ESymbol Accent "\10594" ]+      , [ ESymbol Accent "\10610" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Accent "\10499" ]+      , [ ESymbol Rel "\10515" ]+      , [ ESymbol Rel "\10531" ]+      , [ ESymbol Accent "\10547" ]+      , [ ESymbol Accent "\10563" ]+      , [ ESymbol Accent "\10579" ]+      , [ ESymbol Rel "\10595" ]+      , [ ESymbol Accent "\10611" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Accent "\10500" ]+      , [ ESymbol Accent "\10516" ]+      , [ ESymbol Rel "\10532" ]+      , [ ESymbol Ord "\10548" ]+      , [ ESymbol Accent "\10564" ]+      , [ ESymbol Rel "\10580" ]+      , [ ESymbol Accent "\10596" ]+      , [ ESymbol Accent "\10612" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Accent "\10501" ]+      , [ ESymbol Accent "\10517" ]+      , [ ESymbol Rel "\10533" ]+      , [ ESymbol Ord "\10549" ]+      , [ ESymbol Accent "\10565" ]+      , [ ESymbol Rel "\10581" ]+      , [ ESymbol Rel "\10597" ]+      , [ ESymbol Accent "\10613" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Accent "\10502" ]+      , [ ESymbol Accent "\10518" ]+      , [ ESymbol Rel "\10534" ]+      , [ ESymbol Rel "\10550" ]+      , [ ESymbol Accent "\10566" ]+      , [ ESymbol Rel "\10582" ]+      , [ ESymbol Accent "\10598" ]+      , [ ESymbol Accent "\10614" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Accent "\10503" ]+      , [ ESymbol Accent "\10519" ]+      , [ ESymbol Rel "\10535" ]+      , [ ESymbol Rel "\10551" ]+      , [ ESymbol Accent "\10567" ]+      , [ ESymbol Rel "\10583" ]+      , [ ESymbol Accent "\10599" ]+      , [ ESymbol Accent "\10615" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Rel "\10504" ]+      , [ ESymbol Accent "\10520" ]+      , [ ESymbol Rel "\10536" ]+      , [ ESymbol Rel "\10552" ]+      , [ ESymbol Accent "\10568" ]+      , [ ESymbol Rel "\10584" ]+      , [ ESymbol Accent "\10600" ]+      , [ ESymbol Accent "\10616" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Rel "\10505" ]+      , [ ESymbol Accent "\10521" ]+      , [ ESymbol Rel "\10537" ]+      , [ ESymbol Rel "\10553" ]+      , [ ESymbol Rel "\10569" ]+      , [ ESymbol Rel "\10585" ]+      , [ ESymbol Accent "\10601" ]+      , [ ESymbol Accent "\10617" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Rel "\10506" ]+      , [ ESymbol Accent "\10522" ]+      , [ ESymbol Rel "\10538" ]+      , [ ESymbol Accent "\10554" ]+      , [ ESymbol Accent "\10570" ]+      , [ ESymbol Accent "\10586" ]+      , [ ESymbol Accent "\10602" ]+      , [ ESymbol Accent "\10618" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Rel "\10507" ]+      , [ ESymbol Accent "\10523" ]+      , [ ESymbol Ord "\10539" ]+      , [ ESymbol Accent "\10555" ]+      , [ ESymbol Accent "\10571" ]+      , [ ESymbol Accent "\10587" ]+      , [ ESymbol Accent "\10603" ]+      , [ ESymbol Accent "\10619" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Accent "\10508" ]+      , [ ESymbol Accent "\10524" ]+      , [ ESymbol Ord "\10540" ]+      , [ ESymbol Accent "\10556" ]+      , [ ESymbol Rel "\10572" ]+      , [ ESymbol Rel "\10588" ]+      , [ ESymbol Accent "\10604" ]+      , [ ESymbol Accent "\10620" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Accent "\10509" ]+      , [ ESymbol Accent "\10525" ]+      , [ ESymbol Ord "\10541" ]+      , [ ESymbol Accent "\10557" ]+      , [ ESymbol Rel "\10573" ]+      , [ ESymbol Rel "\10589" ]+      , [ ESymbol Accent "\10605" ]+      , [ ESymbol Accent "\10621" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Accent "\10510" ]+      , [ ESymbol Accent "\10526" ]+      , [ ESymbol Ord "\10542" ]+      , [ ESymbol Rel "\10558" ]+      , [ ESymbol Accent "\10574" ]+      , [ ESymbol Accent "\10590" ]+      , [ ESymbol Rel "\10606" ]+      , [ ESymbol Rel "\10622" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Accent "\10511" ]+      , [ ESymbol Accent "\10527" ]+      , [ ESymbol Ord "\10543" ]+      , [ ESymbol Rel "\10559" ]+      , [ ESymbol Rel "\10575" ]+      , [ ESymbol Accent "\10591" ]+      , [ ESymbol Rel "\10607" ]+      , [ ESymbol Rel "\10623" ]+      ]+    ]+]
+ test/reader/mml/02980_Miscellaneous_Mathematical_Symbols-B.test view
@@ -0,0 +1,680 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>298</mtext>+      </mtd> +      <mtd>+        <mtext>299</mtext>+      </mtd> +      <mtd>+        <mtext>29A</mtext>+      </mtd> +      <mtd>+        <mtext>29B</mtext>+      </mtd> +      <mtd>+        <mtext>29C</mtext>+      </mtd> +      <mtd>+        <mtext>29D</mtext>+      </mtd> +      <mtd>+        <mtext>29E</mtext>+      </mtd> +      <mtd>+        <mtext>29F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#10624;</mo>+      </mtd> +      <mtd>+        <mo>&#10640;</mo>+      </mtd> +      <mtd>+        <mo>&#10656;</mo>+      </mtd> +      <mtd>+        <mo>&#10672;</mo>+      </mtd> +      <mtd>+        <mo>&#10688;</mo>+      </mtd> +      <mtd>+        <mo>&#10704;</mo>+      </mtd> +      <mtd>+        <mo>&#10720;</mo>+      </mtd> +      <mtd>+        <mo>&#10736;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#10625;</mo>+      </mtd> +      <mtd>+        <mo>&#10641;</mo>+      </mtd> +      <mtd>+        <mo>&#10657;</mo>+      </mtd> +      <mtd>+        <mo>&#10673;</mo>+      </mtd> +      <mtd>+        <mo>&#10689;</mo>+      </mtd> +      <mtd>+        <mo>&#10705;</mo>+      </mtd> +      <mtd>+        <mo>&#10721;</mo>+      </mtd> +      <mtd>+        <mo>&#10737;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#10626;</mo>+      </mtd> +      <mtd>+        <mo>&#10642;</mo>+      </mtd> +      <mtd>+        <mo>&#10658;</mo>+      </mtd> +      <mtd>+        <mo>&#10674;</mo>+      </mtd> +      <mtd>+        <mo>&#10690;</mo>+      </mtd> +      <mtd>+        <mo>&#10706;</mo>+      </mtd> +      <mtd>+        <mo>&#10722;</mo>+      </mtd> +      <mtd>+        <mo>&#10738;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#10627;</mo>+      </mtd> +      <mtd>+        <mo>&#10643;</mo>+      </mtd> +      <mtd>+        <mo>&#10659;</mo>+      </mtd> +      <mtd>+        <mo>&#10675;</mo>+      </mtd> +      <mtd>+        <mo>&#10691;</mo>+      </mtd> +      <mtd>+        <mo>&#10707;</mo>+      </mtd> +      <mtd>+        <mo>&#10723;</mo>+      </mtd> +      <mtd>+        <mo>&#10739;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#10628;</mo>+      </mtd> +      <mtd>+        <mo>&#10644;</mo>+      </mtd> +      <mtd>+        <mo>&#10660;</mo>+      </mtd> +      <mtd>+        <mo>&#10676;</mo>+      </mtd> +      <mtd>+        <mo>&#10692;</mo>+      </mtd> +      <mtd>+        <mo>&#10708;</mo>+      </mtd> +      <mtd>+        <mo>&#10724;</mo>+      </mtd> +      <mtd>+        <mo>&#10740;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#10629;</mo>+      </mtd> +      <mtd>+        <mo>&#10645;</mo>+      </mtd> +      <mtd>+        <mo>&#10661;</mo>+      </mtd> +      <mtd>+        <mo>&#10677;</mo>+      </mtd> +      <mtd>+        <mo>&#10693;</mo>+      </mtd> +      <mtd>+        <mo>&#10709;</mo>+      </mtd> +      <mtd>+        <mo>&#10725;</mo>+      </mtd> +      <mtd>+        <mo>&#10741;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#10630;</mo>+      </mtd> +      <mtd>+        <mo>&#10646;</mo>+      </mtd> +      <mtd>+        <mo>&#10662;</mo>+      </mtd> +      <mtd>+        <mo>&#10678;</mo>+      </mtd> +      <mtd>+        <mo>&#10694;</mo>+      </mtd> +      <mtd>+        <mo>&#10710;</mo>+      </mtd> +      <mtd>+        <mo>&#10726;</mo>+      </mtd> +      <mtd>+        <mo>&#10742;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#10631;</mo>+      </mtd> +      <mtd>+        <mo>&#10647;</mo>+      </mtd> +      <mtd>+        <mo>&#10663;</mo>+      </mtd> +      <mtd>+        <mo>&#10679;</mo>+      </mtd> +      <mtd>+        <mo>&#10695;</mo>+      </mtd> +      <mtd>+        <mo>&#10711;</mo>+      </mtd> +      <mtd>+        <mo>&#10727;</mo>+      </mtd> +      <mtd>+        <mo>&#10743;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#10632;</mo>+      </mtd> +      <mtd>+        <mo>&#10648;</mo>+      </mtd> +      <mtd>+        <mo>&#10664;</mo>+      </mtd> +      <mtd>+        <mo>&#10680;</mo>+      </mtd> +      <mtd>+        <mo>&#10696;</mo>+      </mtd> +      <mtd>+        <mo>&#10712;</mo>+      </mtd> +      <mtd>+        <mo>&#10728;</mo>+      </mtd> +      <mtd>+        <mo>&#10744;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#10633;</mo>+      </mtd> +      <mtd>+        <mo>&#10649;</mo>+      </mtd> +      <mtd>+        <mo>&#10665;</mo>+      </mtd> +      <mtd>+        <mo>&#10681;</mo>+      </mtd> +      <mtd>+        <mo>&#10697;</mo>+      </mtd> +      <mtd>+        <mo>&#10713;</mo>+      </mtd> +      <mtd>+        <mo>&#10729;</mo>+      </mtd> +      <mtd>+        <mo>&#10745;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#10634;</mo>+      </mtd> +      <mtd>+        <mo>&#10650;</mo>+      </mtd> +      <mtd>+        <mo>&#10666;</mo>+      </mtd> +      <mtd>+        <mo>&#10682;</mo>+      </mtd> +      <mtd>+        <mo>&#10698;</mo>+      </mtd> +      <mtd>+        <mo>&#10714;</mo>+      </mtd> +      <mtd>+        <mo>&#10730;</mo>+      </mtd> +      <mtd>+        <mo>&#10746;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#10635;</mo>+      </mtd> +      <mtd>+        <mo>&#10651;</mo>+      </mtd> +      <mtd>+        <mo>&#10667;</mo>+      </mtd> +      <mtd>+        <mo>&#10683;</mo>+      </mtd> +      <mtd>+        <mo>&#10699;</mo>+      </mtd> +      <mtd>+        <mo>&#10715;</mo>+      </mtd> +      <mtd>+        <mo>&#10731;</mo>+      </mtd> +      <mtd>+        <mo>&#10747;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#10636;</mo>+      </mtd> +      <mtd>+        <mo>&#10652;</mo>+      </mtd> +      <mtd>+        <mo>&#10668;</mo>+      </mtd> +      <mtd>+        <mo>&#10684;</mo>+      </mtd> +      <mtd>+        <mo>&#10700;</mo>+      </mtd> +      <mtd>+        <mo>&#10716;</mo>+      </mtd> +      <mtd>+        <mo>&#10732;</mo>+      </mtd> +      <mtd>+        <mo>&#10748;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#10637;</mo>+      </mtd> +      <mtd>+        <mo>&#10653;</mo>+      </mtd> +      <mtd>+        <mo>&#10669;</mo>+      </mtd> +      <mtd>+        <mo>&#10685;</mo>+      </mtd> +      <mtd>+        <mo>&#10701;</mo>+      </mtd> +      <mtd>+        <mo>&#10717;</mo>+      </mtd> +      <mtd>+        <mo>&#10733;</mo>+      </mtd> +      <mtd>+        <mo>&#10749;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#10638;</mo>+      </mtd> +      <mtd>+        <mo>&#10654;</mo>+      </mtd> +      <mtd>+        <mo>&#10670;</mo>+      </mtd> +      <mtd>+        <mo>&#10686;</mo>+      </mtd> +      <mtd>+        <mo>&#10702;</mo>+      </mtd> +      <mtd>+        <mo>&#10718;</mo>+      </mtd> +      <mtd>+        <mo>&#10734;</mo>+      </mtd> +      <mtd>+        <mo>&#10750;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#10639;</mo>+      </mtd> +      <mtd>+        <mo>&#10655;</mo>+      </mtd> +      <mtd>+        <mo>&#10671;</mo>+      </mtd> +      <mtd>+        <mo>&#10687;</mo>+      </mtd> +      <mtd>+        <mo>&#10703;</mo>+      </mtd> +      <mtd>+        <mo>&#10719;</mo>+      </mtd> +      <mtd>+        <mo>&#10735;</mo>+      </mtd> +      <mtd>+        <mo>&#10751;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "298" ]+      , [ EText TextNormal "299" ]+      , [ EText TextNormal "29A" ]+      , [ EText TextNormal "29B" ]+      , [ EText TextNormal "29C" ]+      , [ EText TextNormal "29D" ]+      , [ EText TextNormal "29E" ]+      , [ EText TextNormal "29F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Close "\10624" ]+      , [ ESymbol Close "\10640" ]+      , [ ESymbol Ord "\10656" ]+      , [ ESymbol Ord "\10672" ]+      , [ ESymbol Bin "\10688" ]+      , [ ESymbol Rel "\10704" ]+      , [ ESymbol Ord "\10720" ]+      , [ ESymbol Ord "\10736" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\10625" ]+      , [ ESymbol Open "\10641" ]+      , [ ESymbol Ord "\10657" ]+      , [ ESymbol Ord "\10673" ]+      , [ ESymbol Bin "\10689" ]+      , [ ESymbol Rel "\10705" ]+      , [ ESymbol Rel "\10721" ]+      , [ ESymbol Ord "\10737" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Bin "\10626" ]+      , [ ESymbol Close "\10642" ]+      , [ ESymbol Ord "\10658" ]+      , [ ESymbol Ord "\10674" ]+      , [ ESymbol Ord "\10690" ]+      , [ ESymbol Rel "\10706" ]+      , [ ESymbol Bin "\10722" ]+      , [ ESymbol Ord "\10738" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Open "\10627" ]+      , [ ESymbol Open "\10643" ]+      , [ ESymbol Ord "\10659" ]+      , [ ESymbol Ord "\10675" ]+      , [ ESymbol Ord "\10691" ]+      , [ ESymbol Rel "\10707" ]+      , [ ESymbol Rel "\10723" ]+      , [ ESymbol Ord "\10739" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Close "\10628" ]+      , [ ESymbol Close "\10644" ]+      , [ ESymbol Ord "\10660" ]+      , [ ESymbol Ord "\10676" ]+      , [ ESymbol Bin "\10692" ]+      , [ ESymbol Rel "\10708" ]+      , [ ESymbol Rel "\10724" ]+      , [ ESymbol Rel "\10740" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Open "\10629" ]+      , [ ESymbol Open "\10645" ]+      , [ ESymbol Ord "\10661" ]+      , [ ESymbol Bin "\10677" ]+      , [ ESymbol Bin "\10693" ]+      , [ ESymbol Rel "\10709" ]+      , [ ESymbol Rel "\10725" ]+      , [ ESymbol Bin "\10741" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Close "\10630" ]+      , [ ESymbol Close "\10646" ]+      , [ ESymbol Ord "\10662" ]+      , [ ESymbol Bin "\10678" ]+      , [ ESymbol Bin "\10694" ]+      , [ ESymbol Bin "\10710" ]+      , [ ESymbol Rel "\10726" ]+      , [ ESymbol Bin "\10742" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Open "\10631" ]+      , [ ESymbol Open "\10647" ]+      , [ ESymbol Ord "\10663" ]+      , [ ESymbol Bin "\10679" ]+      , [ ESymbol Bin "\10695" ]+      , [ ESymbol Bin "\10711" ]+      , [ ESymbol Ord "\10727" ]+      , [ ESymbol Bin "\10743" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Close "\10632" ]+      , [ ESymbol Close "\10648" ]+      , [ ESymbol Ord "\10664" ]+      , [ ESymbol Bin "\10680" ]+      , [ ESymbol Bin "\10696" ]+      , [ ESymbol Open "\10712" ]+      , [ ESymbol Ord "\10728" ]+      , [ ESymbol Op "\10744" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Open "\10633" ]+      , [ ESymbol Ord "\10649" ]+      , [ ESymbol Ord "\10665" ]+      , [ ESymbol Bin "\10681" ]+      , [ ESymbol Ord "\10697" ]+      , [ ESymbol Close "\10713" ]+      , [ ESymbol Ord "\10729" ]+      , [ ESymbol Op "\10745" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Close "\10634" ]+      , [ ESymbol Ord "\10650" ]+      , [ ESymbol Ord "\10666" ]+      , [ ESymbol Ord "\10682" ]+      , [ ESymbol Ord "\10698" ]+      , [ ESymbol Open "\10714" ]+      , [ ESymbol Ord "\10730" ]+      , [ ESymbol Bin "\10746" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Open "\10635" ]+      , [ ESymbol Ord "\10651" ]+      , [ ESymbol Ord "\10667" ]+      , [ ESymbol Ord "\10683" ]+      , [ ESymbol Ord "\10699" ]+      , [ ESymbol Close "\10715" ]+      , [ ESymbol Bin "\10731" ]+      , [ ESymbol Bin "\10747" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Close "\10636" ]+      , [ ESymbol Ord "\10652" ]+      , [ ESymbol Ord "\10668" ]+      , [ ESymbol Ord "\10684" ]+      , [ ESymbol Ord "\10700" ]+      , [ ESymbol Ord "\10716" ]+      , [ ESymbol Ord "\10732" ]+      , [ ESymbol Open "\10748" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Open "\10637" ]+      , [ ESymbol Ord "\10653" ]+      , [ ESymbol Ord "\10669" ]+      , [ ESymbol Ord "\10685" ]+      , [ ESymbol Bin "\10701" ]+      , [ ESymbol Ord "\10717" ]+      , [ ESymbol Ord "\10733" ]+      , [ ESymbol Close "\10749" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Close "\10638" ]+      , [ ESymbol Ord "\10654" ]+      , [ ESymbol Ord "\10670" ]+      , [ ESymbol Ord "\10686" ]+      , [ ESymbol Rel "\10702" ]+      , [ ESymbol Ord "\10718" ]+      , [ ESymbol Ord "\10734" ]+      , [ ESymbol Bin "\10750" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Open "\10639" ]+      , [ ESymbol Ord "\10655" ]+      , [ ESymbol Ord "\10671" ]+      , [ ESymbol Ord "\10687" ]+      , [ ESymbol Rel "\10703" ]+      , [ ESymbol Rel "\10719" ]+      , [ ESymbol Ord "\10735" ]+      , [ ESymbol Bin "\10751" ]+      ]+    ]+]
+ test/reader/mml/02A00_Supplemental_Mathematical_Operators.test view
@@ -0,0 +1,1232 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>2A0</mtext>+      </mtd> +      <mtd>+        <mtext>2A1</mtext>+      </mtd> +      <mtd>+        <mtext>2A2</mtext>+      </mtd> +      <mtd>+        <mtext>2A3</mtext>+      </mtd> +      <mtd>+        <mtext>2A4</mtext>+      </mtd> +      <mtd>+        <mtext>2A5</mtext>+      </mtd> +      <mtd>+        <mtext>2A6</mtext>+      </mtd> +      <mtd>+        <mtext>2A7</mtext>+      </mtd> +      <mtd>+        <mtext>2A8</mtext>+      </mtd> +      <mtd>+        <mtext>2A9</mtext>+      </mtd> +      <mtd>+        <mtext>2AA</mtext>+      </mtd> +      <mtd>+        <mtext>2AB</mtext>+      </mtd> +      <mtd>+        <mtext>2AC</mtext>+      </mtd> +      <mtd>+        <mtext>2AD</mtext>+      </mtd> +      <mtd>+        <mtext>2AE</mtext>+      </mtd> +      <mtd>+        <mtext>2AF</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#10752;</mo>+      </mtd> +      <mtd>+        <mo>&#10768;</mo>+      </mtd> +      <mtd>+        <mo>&#10784;</mo>+      </mtd> +      <mtd>+        <mo>&#10800;</mo>+      </mtd> +      <mtd>+        <mo>&#10816;</mo>+      </mtd> +      <mtd>+        <mo>&#10832;</mo>+      </mtd> +      <mtd>+        <mo>&#10848;</mo>+      </mtd> +      <mtd>+        <mo>&#10864;</mo>+      </mtd> +      <mtd>+        <mo>&#10880;</mo>+      </mtd> +      <mtd>+        <mo>&#10896;</mo>+      </mtd> +      <mtd>+        <mo>&#10912;</mo>+      </mtd> +      <mtd>+        <mo>&#10928;</mo>+      </mtd> +      <mtd>+        <mo>&#10944;</mo>+      </mtd> +      <mtd>+        <mo>&#10960;</mo>+      </mtd> +      <mtd>+        <mo>&#10976;</mo>+      </mtd> +      <mtd>+        <mo>&#10992;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#10753;</mo>+      </mtd> +      <mtd>+        <mo>&#10769;</mo>+      </mtd> +      <mtd>+        <mo>&#10785;</mo>+      </mtd> +      <mtd>+        <mo>&#10801;</mo>+      </mtd> +      <mtd>+        <mo>&#10817;</mo>+      </mtd> +      <mtd>+        <mo>&#10833;</mo>+      </mtd> +      <mtd>+        <mo>&#10849;</mo>+      </mtd> +      <mtd>+        <mo>&#10865;</mo>+      </mtd> +      <mtd>+        <mo>&#10881;</mo>+      </mtd> +      <mtd>+        <mo>&#10897;</mo>+      </mtd> +      <mtd>+        <mo>&#10913;</mo>+      </mtd> +      <mtd>+        <mo>&#10929;</mo>+      </mtd> +      <mtd>+        <mo>&#10945;</mo>+      </mtd> +      <mtd>+        <mo>&#10961;</mo>+      </mtd> +      <mtd>+        <mo>&#10977;</mo>+      </mtd> +      <mtd>+        <mo>&#10993;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#10754;</mo>+      </mtd> +      <mtd>+        <mo>&#10770;</mo>+      </mtd> +      <mtd>+        <mo>&#10786;</mo>+      </mtd> +      <mtd>+        <mo>&#10802;</mo>+      </mtd> +      <mtd>+        <mo>&#10818;</mo>+      </mtd> +      <mtd>+        <mo>&#10834;</mo>+      </mtd> +      <mtd>+        <mo>&#10850;</mo>+      </mtd> +      <mtd>+        <mo>&#10866;</mo>+      </mtd> +      <mtd>+        <mo>&#10882;</mo>+      </mtd> +      <mtd>+        <mo>&#10898;</mo>+      </mtd> +      <mtd>+        <mo>&#10914;</mo>+      </mtd> +      <mtd>+        <mo>&#10930;</mo>+      </mtd> +      <mtd>+        <mo>&#10946;</mo>+      </mtd> +      <mtd>+        <mo>&#10962;</mo>+      </mtd> +      <mtd>+        <mo>&#10978;</mo>+      </mtd> +      <mtd>+        <mo>&#10994;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#10755;</mo>+      </mtd> +      <mtd>+        <mo>&#10771;</mo>+      </mtd> +      <mtd>+        <mo>&#10787;</mo>+      </mtd> +      <mtd>+        <mo>&#10803;</mo>+      </mtd> +      <mtd>+        <mo>&#10819;</mo>+      </mtd> +      <mtd>+        <mo>&#10835;</mo>+      </mtd> +      <mtd>+        <mo>&#10851;</mo>+      </mtd> +      <mtd>+        <mo>&#10867;</mo>+      </mtd> +      <mtd>+        <mo>&#10883;</mo>+      </mtd> +      <mtd>+        <mo>&#10899;</mo>+      </mtd> +      <mtd>+        <mo>&#10915;</mo>+      </mtd> +      <mtd>+        <mo>&#10931;</mo>+      </mtd> +      <mtd>+        <mo>&#10947;</mo>+      </mtd> +      <mtd>+        <mo>&#10963;</mo>+      </mtd> +      <mtd>+        <mo>&#10979;</mo>+      </mtd> +      <mtd>+        <mo>&#10995;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#10756;</mo>+      </mtd> +      <mtd>+        <mo>&#10772;</mo>+      </mtd> +      <mtd>+        <mo>&#10788;</mo>+      </mtd> +      <mtd>+        <mo>&#10804;</mo>+      </mtd> +      <mtd>+        <mo>&#10820;</mo>+      </mtd> +      <mtd>+        <mo>&#10836;</mo>+      </mtd> +      <mtd>+        <mo>&#10852;</mo>+      </mtd> +      <mtd>+        <mo>&#10868;</mo>+      </mtd> +      <mtd>+        <mo>&#10884;</mo>+      </mtd> +      <mtd>+        <mo>&#10900;</mo>+      </mtd> +      <mtd>+        <mo>&#10916;</mo>+      </mtd> +      <mtd>+        <mo>&#10932;</mo>+      </mtd> +      <mtd>+        <mo>&#10948;</mo>+      </mtd> +      <mtd>+        <mo>&#10964;</mo>+      </mtd> +      <mtd>+        <mo>&#10980;</mo>+      </mtd> +      <mtd>+        <mo>&#10996;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#10757;</mo>+      </mtd> +      <mtd>+        <mo>&#10773;</mo>+      </mtd> +      <mtd>+        <mo>&#10789;</mo>+      </mtd> +      <mtd>+        <mo>&#10805;</mo>+      </mtd> +      <mtd>+        <mo>&#10821;</mo>+      </mtd> +      <mtd>+        <mo>&#10837;</mo>+      </mtd> +      <mtd>+        <mo>&#10853;</mo>+      </mtd> +      <mtd>+        <mo>&#10869;</mo>+      </mtd> +      <mtd>+        <mo>&#10885;</mo>+      </mtd> +      <mtd>+        <mo>&#10901;</mo>+      </mtd> +      <mtd>+        <mo>&#10917;</mo>+      </mtd> +      <mtd>+        <mo>&#10933;</mo>+      </mtd> +      <mtd>+        <mo>&#10949;</mo>+      </mtd> +      <mtd>+        <mo>&#10965;</mo>+      </mtd> +      <mtd>+        <mo>&#10981;</mo>+      </mtd> +      <mtd>+        <mo>&#10997;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#10758;</mo>+      </mtd> +      <mtd>+        <mo>&#10774;</mo>+      </mtd> +      <mtd>+        <mo>&#10790;</mo>+      </mtd> +      <mtd>+        <mo>&#10806;</mo>+      </mtd> +      <mtd>+        <mo>&#10822;</mo>+      </mtd> +      <mtd>+        <mo>&#10838;</mo>+      </mtd> +      <mtd>+        <mo>&#10854;</mo>+      </mtd> +      <mtd>+        <mo>&#10870;</mo>+      </mtd> +      <mtd>+        <mo>&#10886;</mo>+      </mtd> +      <mtd>+        <mo>&#10902;</mo>+      </mtd> +      <mtd>+        <mo>&#10918;</mo>+      </mtd> +      <mtd>+        <mo>&#10934;</mo>+      </mtd> +      <mtd>+        <mo>&#10950;</mo>+      </mtd> +      <mtd>+        <mo>&#10966;</mo>+      </mtd> +      <mtd>+        <mo>&#10982;</mo>+      </mtd> +      <mtd>+        <mo>&#10998;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#10759;</mo>+      </mtd> +      <mtd>+        <mo>&#10775;</mo>+      </mtd> +      <mtd>+        <mo>&#10791;</mo>+      </mtd> +      <mtd>+        <mo>&#10807;</mo>+      </mtd> +      <mtd>+        <mo>&#10823;</mo>+      </mtd> +      <mtd>+        <mo>&#10839;</mo>+      </mtd> +      <mtd>+        <mo>&#10855;</mo>+      </mtd> +      <mtd>+        <mo>&#10871;</mo>+      </mtd> +      <mtd>+        <mo>&#10887;</mo>+      </mtd> +      <mtd>+        <mo>&#10903;</mo>+      </mtd> +      <mtd>+        <mo>&#10919;</mo>+      </mtd> +      <mtd>+        <mo>&#10935;</mo>+      </mtd> +      <mtd>+        <mo>&#10951;</mo>+      </mtd> +      <mtd>+        <mo>&#10967;</mo>+      </mtd> +      <mtd>+        <mo>&#10983;</mo>+      </mtd> +      <mtd>+        <mo>&#10999;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#10760;</mo>+      </mtd> +      <mtd>+        <mo>&#10776;</mo>+      </mtd> +      <mtd>+        <mo>&#10792;</mo>+      </mtd> +      <mtd>+        <mo>&#10808;</mo>+      </mtd> +      <mtd>+        <mo>&#10824;</mo>+      </mtd> +      <mtd>+        <mo>&#10840;</mo>+      </mtd> +      <mtd>+        <mo>&#10856;</mo>+      </mtd> +      <mtd>+        <mo>&#10872;</mo>+      </mtd> +      <mtd>+        <mo>&#10888;</mo>+      </mtd> +      <mtd>+        <mo>&#10904;</mo>+      </mtd> +      <mtd>+        <mo>&#10920;</mo>+      </mtd> +      <mtd>+        <mo>&#10936;</mo>+      </mtd> +      <mtd>+        <mo>&#10952;</mo>+      </mtd> +      <mtd>+        <mo>&#10968;</mo>+      </mtd> +      <mtd>+        <mo>&#10984;</mo>+      </mtd> +      <mtd>+        <mo>&#11000;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#10761;</mo>+      </mtd> +      <mtd>+        <mo>&#10777;</mo>+      </mtd> +      <mtd>+        <mo>&#10793;</mo>+      </mtd> +      <mtd>+        <mo>&#10809;</mo>+      </mtd> +      <mtd>+        <mo>&#10825;</mo>+      </mtd> +      <mtd>+        <mo>&#10841;</mo>+      </mtd> +      <mtd>+        <mo>&#10857;</mo>+      </mtd> +      <mtd>+        <mo>&#10873;</mo>+      </mtd> +      <mtd>+        <mo>&#10889;</mo>+      </mtd> +      <mtd>+        <mo>&#10905;</mo>+      </mtd> +      <mtd>+        <mo>&#10921;</mo>+      </mtd> +      <mtd>+        <mo>&#10937;</mo>+      </mtd> +      <mtd>+        <mo>&#10953;</mo>+      </mtd> +      <mtd>+        <mo>&#10969;</mo>+      </mtd> +      <mtd>+        <mo>&#10985;</mo>+      </mtd> +      <mtd>+        <mo>&#11001;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#10762;</mo>+      </mtd> +      <mtd>+        <mo>&#10778;</mo>+      </mtd> +      <mtd>+        <mo>&#10794;</mo>+      </mtd> +      <mtd>+        <mo>&#10810;</mo>+      </mtd> +      <mtd>+        <mo>&#10826;</mo>+      </mtd> +      <mtd>+        <mo>&#10842;</mo>+      </mtd> +      <mtd>+        <mo>&#10858;</mo>+      </mtd> +      <mtd>+        <mo>&#10874;</mo>+      </mtd> +      <mtd>+        <mo>&#10890;</mo>+      </mtd> +      <mtd>+        <mo>&#10906;</mo>+      </mtd> +      <mtd>+        <mo>&#10922;</mo>+      </mtd> +      <mtd>+        <mo>&#10938;</mo>+      </mtd> +      <mtd>+        <mo>&#10954;</mo>+      </mtd> +      <mtd>+        <mo>&#10970;</mo>+      </mtd> +      <mtd>+        <mo>&#10986;</mo>+      </mtd> +      <mtd>+        <mo>&#11002;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#10763;</mo>+      </mtd> +      <mtd>+        <mo>&#10779;</mo>+      </mtd> +      <mtd>+        <mo>&#10795;</mo>+      </mtd> +      <mtd>+        <mo>&#10811;</mo>+      </mtd> +      <mtd>+        <mo>&#10827;</mo>+      </mtd> +      <mtd>+        <mo>&#10843;</mo>+      </mtd> +      <mtd>+        <mo>&#10859;</mo>+      </mtd> +      <mtd>+        <mo>&#10875;</mo>+      </mtd> +      <mtd>+        <mo>&#10891;</mo>+      </mtd> +      <mtd>+        <mo>&#10907;</mo>+      </mtd> +      <mtd>+        <mo>&#10923;</mo>+      </mtd> +      <mtd>+        <mo>&#10939;</mo>+      </mtd> +      <mtd>+        <mo>&#10955;</mo>+      </mtd> +      <mtd>+        <mo>&#10971;</mo>+      </mtd> +      <mtd>+        <mo>&#10987;</mo>+      </mtd> +      <mtd>+        <mo>&#11003;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#10764;</mo>+      </mtd> +      <mtd>+        <mo>&#10780;</mo>+      </mtd> +      <mtd>+        <mo>&#10796;</mo>+      </mtd> +      <mtd>+        <mo>&#10812;</mo>+      </mtd> +      <mtd>+        <mo>&#10828;</mo>+      </mtd> +      <mtd>+        <mo>&#10844;</mo>+      </mtd> +      <mtd>+        <mo>&#10860;</mo>+      </mtd> +      <mtd>+        <mo>&#10876;</mo>+      </mtd> +      <mtd>+        <mo>&#10892;</mo>+      </mtd> +      <mtd>+        <mo>&#10908;</mo>+      </mtd> +      <mtd>+        <mo>&#10924;</mo>+      </mtd> +      <mtd>+        <mo>&#10940;</mo>+      </mtd> +      <mtd>+        <mo>&#10956;</mo>+      </mtd> +      <mtd>+        <mo>&#10972;</mo>+      </mtd> +      <mtd>+        <mo>&#10988;</mo>+      </mtd> +      <mtd>+        <mo>&#11004;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#10765;</mo>+      </mtd> +      <mtd>+        <mo>&#10781;</mo>+      </mtd> +      <mtd>+        <mo>&#10797;</mo>+      </mtd> +      <mtd>+        <mo>&#10813;</mo>+      </mtd> +      <mtd>+        <mo>&#10829;</mo>+      </mtd> +      <mtd>+        <mo>&#10845;</mo>+      </mtd> +      <mtd>+        <mo>&#10861;</mo>+      </mtd> +      <mtd>+        <mo>&#10877;</mo>+      </mtd> +      <mtd>+        <mo>&#10893;</mo>+      </mtd> +      <mtd>+        <mo>&#10909;</mo>+      </mtd> +      <mtd>+        <mo>&#10925;</mo>+      </mtd> +      <mtd>+        <mo>&#10941;</mo>+      </mtd> +      <mtd>+        <mo>&#10957;</mo>+      </mtd> +      <mtd>+        <mo>&#10973;</mo>+      </mtd> +      <mtd>+        <mo>&#10989;</mo>+      </mtd> +      <mtd>+        <mo>&#11005;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#10766;</mo>+      </mtd> +      <mtd>+        <mo>&#10782;</mo>+      </mtd> +      <mtd>+        <mo>&#10798;</mo>+      </mtd> +      <mtd>+        <mo>&#10814;</mo>+      </mtd> +      <mtd>+        <mo>&#10830;</mo>+      </mtd> +      <mtd>+        <mo>&#10846;</mo>+      </mtd> +      <mtd>+        <mo>&#10862;</mo>+      </mtd> +      <mtd>+        <mo>&#10878;</mo>+      </mtd> +      <mtd>+        <mo>&#10894;</mo>+      </mtd> +      <mtd>+        <mo>&#10910;</mo>+      </mtd> +      <mtd>+        <mo>&#10926;</mo>+      </mtd> +      <mtd>+        <mo>&#10942;</mo>+      </mtd> +      <mtd>+        <mo>&#10958;</mo>+      </mtd> +      <mtd>+        <mo>&#10974;</mo>+      </mtd> +      <mtd>+        <mo>&#10990;</mo>+      </mtd> +      <mtd>+        <mo>&#11006;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#10767;</mo>+      </mtd> +      <mtd>+        <mo>&#10783;</mo>+      </mtd> +      <mtd>+        <mo>&#10799;</mo>+      </mtd> +      <mtd>+        <mo>&#10815;</mo>+      </mtd> +      <mtd>+        <mo>&#10831;</mo>+      </mtd> +      <mtd>+        <mo>&#10847;</mo>+      </mtd> +      <mtd>+        <mo>&#10863;</mo>+      </mtd> +      <mtd>+        <mo>&#10879;</mo>+      </mtd> +      <mtd>+        <mo>&#10895;</mo>+      </mtd> +      <mtd>+        <mo>&#10911;</mo>+      </mtd> +      <mtd>+        <mo>&#10927;</mo>+      </mtd> +      <mtd>+        <mo>&#10943;</mo>+      </mtd> +      <mtd>+        <mo>&#10959;</mo>+      </mtd> +      <mtd>+        <mo>&#10975;</mo>+      </mtd> +      <mtd>+        <mo>&#10991;</mo>+      </mtd> +      <mtd>+        <mo>&#11007;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "2A0" ]+      , [ EText TextNormal "2A1" ]+      , [ EText TextNormal "2A2" ]+      , [ EText TextNormal "2A3" ]+      , [ EText TextNormal "2A4" ]+      , [ EText TextNormal "2A5" ]+      , [ EText TextNormal "2A6" ]+      , [ EText TextNormal "2A7" ]+      , [ EText TextNormal "2A8" ]+      , [ EText TextNormal "2A9" ]+      , [ EText TextNormal "2AA" ]+      , [ EText TextNormal "2AB" ]+      , [ EText TextNormal "2AC" ]+      , [ EText TextNormal "2AD" ]+      , [ EText TextNormal "2AE" ]+      , [ EText TextNormal "2AF" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Op "\10752" ]+      , [ ESymbol Op "\10768" ]+      , [ ESymbol Op "\10784" ]+      , [ ESymbol Bin "\10800" ]+      , [ ESymbol Bin "\10816" ]+      , [ ESymbol Bin "\10832" ]+      , [ ESymbol Bin "\10848" ]+      , [ ESymbol Rel "\10864" ]+      , [ ESymbol Rel "\10880" ]+      , [ ESymbol Rel "\10896" ]+      , [ ESymbol Rel "\10912" ]+      , [ ESymbol Rel "\10928" ]+      , [ ESymbol Rel "\10944" ]+      , [ ESymbol Rel "\10960" ]+      , [ ESymbol Rel "\10976" ]+      , [ ESymbol Rel "\10992" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Op "\10753" ]+      , [ ESymbol Op "\10769" ]+      , [ ESymbol Op "\10785" ]+      , [ ESymbol Bin "\10801" ]+      , [ ESymbol Bin "\10817" ]+      , [ ESymbol Bin "\10833" ]+      , [ ESymbol Bin "\10849" ]+      , [ ESymbol Bin "\10865" ]+      , [ ESymbol Rel "\10881" ]+      , [ ESymbol Rel "\10897" ]+      , [ ESymbol Rel "\10913" ]+      , [ ESymbol Rel "\10929" ]+      , [ ESymbol Rel "\10945" ]+      , [ ESymbol Rel "\10961" ]+      , [ ESymbol Ord "\10977" ]+      , [ ESymbol Ord "\10993" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Op "\10754" ]+      , [ ESymbol Op "\10770" ]+      , [ ESymbol Bin "\10786" ]+      , [ ESymbol Bin "\10802" ]+      , [ ESymbol Bin "\10818" ]+      , [ ESymbol Bin "\10834" ]+      , [ ESymbol Bin "\10850" ]+      , [ ESymbol Bin "\10866" ]+      , [ ESymbol Rel "\10882" ]+      , [ ESymbol Rel "\10898" ]+      , [ ESymbol Rel "\10914" ]+      , [ ESymbol Rel "\10930" ]+      , [ ESymbol Rel "\10946" ]+      , [ ESymbol Rel "\10962" ]+      , [ ESymbol Rel "\10978" ]+      , [ ESymbol Rel "\10994" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Op "\10755" ]+      , [ ESymbol Op "\10771" ]+      , [ ESymbol Bin "\10787" ]+      , [ ESymbol Bin "\10803" ]+      , [ ESymbol Bin "\10819" ]+      , [ ESymbol Bin "\10835" ]+      , [ ESymbol Bin "\10851" ]+      , [ ESymbol Rel "\10867" ]+      , [ ESymbol Rel "\10883" ]+      , [ ESymbol Rel "\10899" ]+      , [ ESymbol Rel "\10915" ]+      , [ ESymbol Rel "\10931" ]+      , [ ESymbol Rel "\10947" ]+      , [ ESymbol Rel "\10963" ]+      , [ ESymbol Rel "\10979" ]+      , [ ESymbol Rel "\10995" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Op "\10756" ]+      , [ ESymbol Op "\10772" ]+      , [ ESymbol Bin "\10788" ]+      , [ ESymbol Bin "\10804" ]+      , [ ESymbol Bin "\10820" ]+      , [ ESymbol Bin "\10836" ]+      , [ ESymbol Bin "\10852" ]+      , [ ESymbol Rel "\10868" ]+      , [ ESymbol Rel "\10884" ]+      , [ ESymbol Rel "\10900" ]+      , [ ESymbol Rel "\10916" ]+      , [ ESymbol Rel "\10932" ]+      , [ ESymbol Rel "\10948" ]+      , [ ESymbol Rel "\10964" ]+      , [ ESymbol Rel "\10980" ]+      , [ ESymbol Bin "\10996" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Op "\10757" ]+      , [ ESymbol Op "\10773" ]+      , [ ESymbol Bin "\10789" ]+      , [ ESymbol Bin "\10805" ]+      , [ ESymbol Bin "\10821" ]+      , [ ESymbol Bin "\10837" ]+      , [ ESymbol Bin "\10853" ]+      , [ ESymbol Rel "\10869" ]+      , [ ESymbol Rel "\10885" ]+      , [ ESymbol Rel "\10901" ]+      , [ ESymbol Rel "\10917" ]+      , [ ESymbol Rel "\10933" ]+      , [ ESymbol Rel "\10949" ]+      , [ ESymbol Rel "\10965" ]+      , [ ESymbol Rel "\10981" ]+      , [ ESymbol Bin "\10997" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Op "\10758" ]+      , [ ESymbol Op "\10774" ]+      , [ ESymbol Bin "\10790" ]+      , [ ESymbol Bin "\10806" ]+      , [ ESymbol Bin "\10822" ]+      , [ ESymbol Bin "\10838" ]+      , [ ESymbol Rel "\10854" ]+      , [ ESymbol Rel "\10870" ]+      , [ ESymbol Rel "\10886" ]+      , [ ESymbol Rel "\10902" ]+      , [ ESymbol Rel "\10918" ]+      , [ ESymbol Rel "\10934" ]+      , [ ESymbol Rel "\10950" ]+      , [ ESymbol Rel "\10966" ]+      , [ ESymbol Rel "\10982" ]+      , [ ESymbol Bin "\10998" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Op "\10759" ]+      , [ ESymbol Op "\10775" ]+      , [ ESymbol Bin "\10791" ]+      , [ ESymbol Bin "\10807" ]+      , [ ESymbol Bin "\10823" ]+      , [ ESymbol Bin "\10839" ]+      , [ ESymbol Rel "\10855" ]+      , [ ESymbol Rel "\10871" ]+      , [ ESymbol Rel "\10887" ]+      , [ ESymbol Rel "\10903" ]+      , [ ESymbol Rel "\10919" ]+      , [ ESymbol Rel "\10935" ]+      , [ ESymbol Rel "\10951" ]+      , [ ESymbol Rel "\10967" ]+      , [ ESymbol Rel "\10983" ]+      , [ ESymbol Rel "\10999" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Op "\10760" ]+      , [ ESymbol Op "\10776" ]+      , [ ESymbol Bin "\10792" ]+      , [ ESymbol Bin "\10808" ]+      , [ ESymbol Bin "\10824" ]+      , [ ESymbol Bin "\10840" ]+      , [ ESymbol Rel "\10856" ]+      , [ ESymbol Rel "\10872" ]+      , [ ESymbol Rel "\10888" ]+      , [ ESymbol Rel "\10904" ]+      , [ ESymbol Rel "\10920" ]+      , [ ESymbol Rel "\10936" ]+      , [ ESymbol Rel "\10952" ]+      , [ ESymbol Rel "\10968" ]+      , [ ESymbol Rel "\10984" ]+      , [ ESymbol Rel "\11000" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Op "\10761" ]+      , [ ESymbol Op "\10777" ]+      , [ ESymbol Bin "\10793" ]+      , [ ESymbol Bin "\10809" ]+      , [ ESymbol Bin "\10825" ]+      , [ ESymbol Rel "\10841" ]+      , [ ESymbol Rel "\10857" ]+      , [ ESymbol Rel "\10873" ]+      , [ ESymbol Rel "\10889" ]+      , [ ESymbol Rel "\10905" ]+      , [ ESymbol Rel "\10921" ]+      , [ ESymbol Rel "\10937" ]+      , [ ESymbol Rel "\10953" ]+      , [ ESymbol Rel "\10969" ]+      , [ ESymbol Rel "\10985" ]+      , [ ESymbol Rel "\11001" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\10762" ]+      , [ ESymbol Op "\10778" ]+      , [ ESymbol Bin "\10794" ]+      , [ ESymbol Bin "\10810" ]+      , [ ESymbol Bin "\10826" ]+      , [ ESymbol Bin "\10842" ]+      , [ ESymbol Rel "\10858" ]+      , [ ESymbol Rel "\10874" ]+      , [ ESymbol Rel "\10890" ]+      , [ ESymbol Rel "\10906" ]+      , [ ESymbol Rel "\10922" ]+      , [ ESymbol Rel "\10938" ]+      , [ ESymbol Rel "\10954" ]+      , [ ESymbol Rel "\10970" ]+      , [ ESymbol Rel "\10986" ]+      , [ ESymbol Rel "\11002" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Op "\10763" ]+      , [ ESymbol Op "\10779" ]+      , [ ESymbol Bin "\10795" ]+      , [ ESymbol Bin "\10811" ]+      , [ ESymbol Bin "\10827" ]+      , [ ESymbol Bin "\10843" ]+      , [ ESymbol Rel "\10859" ]+      , [ ESymbol Rel "\10875" ]+      , [ ESymbol Rel "\10891" ]+      , [ ESymbol Rel "\10907" ]+      , [ ESymbol Rel "\10923" ]+      , [ ESymbol Rel "\10939" ]+      , [ ESymbol Rel "\10955" ]+      , [ ESymbol Rel "\10971" ]+      , [ ESymbol Rel "\10987" ]+      , [ ESymbol Bin "\11003" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Op "\10764" ]+      , [ ESymbol Op "\10780" ]+      , [ ESymbol Bin "\10796" ]+      , [ ESymbol Bin "\10812" ]+      , [ ESymbol Bin "\10828" ]+      , [ ESymbol Bin "\10844" ]+      , [ ESymbol Rel "\10860" ]+      , [ ESymbol Rel "\10876" ]+      , [ ESymbol Rel "\10892" ]+      , [ ESymbol Rel "\10908" ]+      , [ ESymbol Rel "\10924" ]+      , [ ESymbol Rel "\10940" ]+      , [ ESymbol Rel "\10956" ]+      , [ ESymbol Rel "\10972" ]+      , [ ESymbol Rel "\10988" ]+      , [ ESymbol Op "\11004" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Op "\10765" ]+      , [ ESymbol Op "\10781" ]+      , [ ESymbol Bin "\10797" ]+      , [ ESymbol Bin "\10813" ]+      , [ ESymbol Bin "\10829" ]+      , [ ESymbol Bin "\10845" ]+      , [ ESymbol Rel "\10861" ]+      , [ ESymbol Rel "\10877" ]+      , [ ESymbol Rel "\10893" ]+      , [ ESymbol Rel "\10909" ]+      , [ ESymbol Rel "\10925" ]+      , [ ESymbol Rel "\10941" ]+      , [ ESymbol Rel "\10957" ]+      , [ ESymbol Rel "\10973" ]+      , [ ESymbol Rel "\10989" ]+      , [ ESymbol Bin "\11005" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Op "\10766" ]+      , [ ESymbol Op "\10782" ]+      , [ ESymbol Bin "\10798" ]+      , [ ESymbol Bin "\10814" ]+      , [ ESymbol Bin "\10830" ]+      , [ ESymbol Bin "\10846" ]+      , [ ESymbol Rel "\10862" ]+      , [ ESymbol Rel "\10878" ]+      , [ ESymbol Rel "\10894" ]+      , [ ESymbol Rel "\10910" ]+      , [ ESymbol Rel "\10926" ]+      , [ ESymbol Rel "\10942" ]+      , [ ESymbol Rel "\10958" ]+      , [ ESymbol Rel "\10974" ]+      , [ ESymbol Rel "\10990" ]+      , [ ESymbol Bin "\11006" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Op "\10767" ]+      , [ ESymbol Op "\10783" ]+      , [ ESymbol Bin "\10799" ]+      , [ ESymbol Bin "\10815" ]+      , [ ESymbol Bin "\10831" ]+      , [ ESymbol Bin "\10847" ]+      , [ ESymbol Rel "\10863" ]+      , [ ESymbol Rel "\10879" ]+      , [ ESymbol Rel "\10895" ]+      , [ ESymbol Rel "\10911" ]+      , [ ESymbol Rel "\10927" ]+      , [ ESymbol Rel "\10943" ]+      , [ ESymbol Rel "\10959" ]+      , [ ESymbol Rel "\10975" ]+      , [ ESymbol Rel "\10991" ]+      , [ ESymbol Op "\11007" ]+      ]+    ]+]
+ test/reader/mml/02B00_Miscellaneous_Symbols_and_Arrows.test view
@@ -0,0 +1,543 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>2B0</mtext>+      </mtd> +      <mtd>+        <mtext>2B1</mtext>+      </mtd> +      <mtd>+        <mtext>2B2</mtext>+      </mtd> +      <mtd>+        <mtext>2B3</mtext>+      </mtd> +      <mtd>+        <mtext>2B4</mtext>+      </mtd> +      <mtd>+        <mtext>2B5</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B00;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B10;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B20;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B30;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B40;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B50;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B01;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B11;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B21;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B31;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B41;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B51;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B02;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B12;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B22;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B32;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B42;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B52;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B03;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B13;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B23;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B33;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B43;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B53;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B04;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B14;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B24;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B34;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B44;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B54;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B05;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B15;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B25;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B35;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B45;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B55;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B06;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B16;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B26;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B36;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B46;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B56;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B07;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B17;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B27;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B37;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B47;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B57;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B08;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B18;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B28;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B38;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B48;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B58;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B09;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B19;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B29;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B39;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B49;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B59;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B0A;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B1A;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B2A;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B3A;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B4A;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B0B;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B1B;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B2B;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B3B;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B4B;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B0C;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B1C;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B2C;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B3C;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B4C;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B0D;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B1D;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B2D;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B3D;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B0E;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B1E;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B2E;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B3E;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#x2B0F;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B1F;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B2F;</mo>+      </mtd> +      <mtd>+        <mo>&#x2B3F;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "2B0" ]+      , [ EText TextNormal "2B1" ]+      , [ EText TextNormal "2B2" ]+      , [ EText TextNormal "2B3" ]+      , [ EText TextNormal "2B4" ]+      , [ EText TextNormal "2B5" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\11008" ]+      , [ ESymbol Ord "\11024" ]+      , [ ESymbol Ord "\11040" ]+      , [ ESymbol Rel "\11056" ]+      , [ ESymbol Rel "\11072" ]+      , [ ESymbol Ord "\11088" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\11009" ]+      , [ ESymbol Ord "\11025" ]+      , [ ESymbol Ord "\11041" ]+      , [ ESymbol Rel "\11057" ]+      , [ ESymbol Rel "\11073" ]+      , [ ESymbol Ord "\11089" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\11010" ]+      , [ ESymbol Ord "\11026" ]+      , [ ESymbol Ord "\11042" ]+      , [ ESymbol Rel "\11058" ]+      , [ ESymbol Rel "\11074" ]+      , [ ESymbol Ord "\11090" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\11011" ]+      , [ ESymbol Ord "\11027" ]+      , [ ESymbol Ord "\11043" ]+      , [ ESymbol Rel "\11059" ]+      , [ ESymbol Rel "\11075" ]+      , [ ESymbol Ord "\11091" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\11012" ]+      , [ ESymbol Ord "\11028" ]+      , [ ESymbol Ord "\11044" ]+      , [ ESymbol Rel "\11060" ]+      , [ ESymbol Rel "\11076" ]+      , [ ESymbol Ord "\11092" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\11013" ]+      , [ ESymbol Ord "\11029" ]+      , [ ESymbol Ord "\11045" ]+      , [ ESymbol Rel "\11061" ]+      , [ ESymbol Rel "\11077" ]+      , [ ESymbol Ord "\11093" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\11014" ]+      , [ ESymbol Ord "\11030" ]+      , [ ESymbol Ord "\11046" ]+      , [ ESymbol Rel "\11062" ]+      , [ ESymbol Rel "\11078" ]+      , [ ESymbol Ord "\11094" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\11015" ]+      , [ ESymbol Ord "\11031" ]+      , [ ESymbol Ord "\11047" ]+      , [ ESymbol Rel "\11063" ]+      , [ ESymbol Rel "\11079" ]+      , [ ESymbol Ord "\11095" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\11016" ]+      , [ ESymbol Ord "\11032" ]+      , [ ESymbol Ord "\11048" ]+      , [ ESymbol Rel "\11064" ]+      , [ ESymbol Rel "\11080" ]+      , [ ESymbol Ord "\11096" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\11017" ]+      , [ ESymbol Ord "\11033" ]+      , [ ESymbol Ord "\11049" ]+      , [ ESymbol Rel "\11065" ]+      , [ ESymbol Rel "\11081" ]+      , [ ESymbol Ord "\11097" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\11018" ]+      , [ ESymbol Ord "\11034" ]+      , [ ESymbol Ord "\11050" ]+      , [ ESymbol Rel "\11066" ]+      , [ ESymbol Rel "\11082" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\11019" ]+      , [ ESymbol Ord "\11035" ]+      , [ ESymbol Ord "\11051" ]+      , [ ESymbol Rel "\11067" ]+      , [ ESymbol Rel "\11083" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\11020" ]+      , [ ESymbol Ord "\11036" ]+      , [ ESymbol Ord "\11052" ]+      , [ ESymbol Rel "\11068" ]+      , [ ESymbol Rel "\11084" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\11021" ]+      , [ ESymbol Ord "\11037" ]+      , [ ESymbol Ord "\11053" ]+      , [ ESymbol Rel "\11069" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\11022" ]+      , [ ESymbol Ord "\11038" ]+      , [ ESymbol Ord "\11054" ]+      , [ ESymbol Rel "\11070" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\11023" ]+      , [ ESymbol Ord "\11039" ]+      , [ ESymbol Ord "\11055" ]+      , [ ESymbol Rel "\11071" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/0FB00_Alphabetic_Presentation_Forms.test view
@@ -0,0 +1,473 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>FB0</mtext>+      </mtd> +      <mtd>+        <mtext>FB1</mtext>+      </mtd> +      <mtd>+        <mtext>FB2</mtext>+      </mtd> +      <mtd>+        <mtext>FB3</mtext>+      </mtd> +      <mtd>+        <mtext>FB4</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#64256;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64288;</mo>+      </mtd> +      <mtd>+        <mo>&#64304;</mo>+      </mtd> +      <mtd>+        <mo>&#64320;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#64257;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64289;</mo>+      </mtd> +      <mtd>+        <mo>&#64305;</mo>+      </mtd> +      <mtd>+        <mo>&#64321;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#64258;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64290;</mo>+      </mtd> +      <mtd>+        <mo>&#64306;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#64259;</mo>+      </mtd> +      <mtd>+        <mo>&#64275;</mo>+      </mtd> +      <mtd>+        <mo>&#64291;</mo>+      </mtd> +      <mtd>+        <mo>&#64307;</mo>+      </mtd> +      <mtd>+        <mo>&#64323;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#64260;</mo>+      </mtd> +      <mtd>+        <mo>&#64276;</mo>+      </mtd> +      <mtd>+        <mo>&#64292;</mo>+      </mtd> +      <mtd>+        <mo>&#64308;</mo>+      </mtd> +      <mtd>+        <mo>&#64324;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#64261;</mo>+      </mtd> +      <mtd>+        <mo>&#64277;</mo>+      </mtd> +      <mtd>+        <mo>&#64293;</mo>+      </mtd> +      <mtd>+        <mo>&#64309;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#64262;</mo>+      </mtd> +      <mtd>+        <mo>&#64278;</mo>+      </mtd> +      <mtd>+        <mo>&#64294;</mo>+      </mtd> +      <mtd>+        <mo>&#64310;</mo>+      </mtd> +      <mtd>+        <mo>&#64326;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64279;</mo>+      </mtd> +      <mtd>+        <mo>&#64295;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64327;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64296;</mo>+      </mtd> +      <mtd>+        <mo>&#64312;</mo>+      </mtd> +      <mtd>+        <mo>&#64328;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64297;</mo>+      </mtd> +      <mtd>+        <mo>&#64313;</mo>+      </mtd> +      <mtd>+        <mo>&#64329;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64298;</mo>+      </mtd> +      <mtd>+        <mo>&#64314;</mo>+      </mtd> +      <mtd>+        <mo>&#64330;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64299;</mo>+      </mtd> +      <mtd>+        <mo>&#64315;</mo>+      </mtd> +      <mtd>+        <mo>&#64331;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64300;</mo>+      </mtd> +      <mtd>+        <mo>&#64316;</mo>+      </mtd> +      <mtd>+        <mo>&#64332;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64285;</mo>+      </mtd> +      <mtd>+        <mo>&#64301;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64333;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64286;</mo>+      </mtd> +      <mtd>+        <mo>&#64302;</mo>+      </mtd> +      <mtd>+        <mo>&#64318;</mo>+      </mtd> +      <mtd>+        <mo>&#64334;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64287;</mo>+      </mtd> +      <mtd>+        <mo>&#64303;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64335;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "FB0" ]+      , [ EText TextNormal "FB1" ]+      , [ EText TextNormal "FB2" ]+      , [ EText TextNormal "FB3" ]+      , [ EText TextNormal "FB4" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\64256" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64288" ]+      , [ ESymbol Ord "\64304" ]+      , [ ESymbol Ord "\64320" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\64257" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64289" ]+      , [ ESymbol Ord "\64305" ]+      , [ ESymbol Ord "\64321" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\64258" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64290" ]+      , [ ESymbol Ord "\64306" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\64259" ]+      , [ ESymbol Ord "\64275" ]+      , [ ESymbol Ord "\64291" ]+      , [ ESymbol Ord "\64307" ]+      , [ ESymbol Ord "\64323" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\64260" ]+      , [ ESymbol Ord "\64276" ]+      , [ ESymbol Ord "\64292" ]+      , [ ESymbol Ord "\64308" ]+      , [ ESymbol Ord "\64324" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\64261" ]+      , [ ESymbol Ord "\64277" ]+      , [ ESymbol Ord "\64293" ]+      , [ ESymbol Ord "\64309" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\64262" ]+      , [ ESymbol Ord "\64278" ]+      , [ ESymbol Ord "\64294" ]+      , [ ESymbol Ord "\64310" ]+      , [ ESymbol Ord "\64326" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64279" ]+      , [ ESymbol Ord "\64295" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64327" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64296" ]+      , [ ESymbol Ord "\64312" ]+      , [ ESymbol Ord "\64328" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64297" ]+      , [ ESymbol Ord "\64313" ]+      , [ ESymbol Ord "\64329" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64298" ]+      , [ ESymbol Ord "\64314" ]+      , [ ESymbol Ord "\64330" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64299" ]+      , [ ESymbol Ord "\64315" ]+      , [ ESymbol Ord "\64331" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64300" ]+      , [ ESymbol Ord "\64316" ]+      , [ ESymbol Ord "\64332" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64285" ]+      , [ ESymbol Ord "\64301" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64333" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64286" ]+      , [ ESymbol Ord "\64302" ]+      , [ ESymbol Ord "\64318" ]+      , [ ESymbol Ord "\64334" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64287" ]+      , [ ESymbol Ord "\64303" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64335" ]+      ]+    ]+]
+ test/reader/mml/0FB50_Arabic_Presentation_Forms-A.test view
@@ -0,0 +1,3095 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>FB5</mtext>+      </mtd> +      <mtd>+        <mtext>FB6</mtext>+      </mtd> +      <mtd>+        <mtext>FB7</mtext>+      </mtd> +      <mtd>+        <mtext>FB8</mtext>+      </mtd> +      <mtd>+        <mtext>FB9</mtext>+      </mtd> +      <mtd>+        <mtext>FBA</mtext>+      </mtd> +      <mtd>+        <mtext>FBB</mtext>+      </mtd> +      <mtd>+        <mtext>FBC</mtext>+      </mtd> +      <mtd>+        <mtext>FBD</mtext>+      </mtd> +      <mtd>+        <mtext>FBE</mtext>+      </mtd> +      <mtd>+        <mtext>FBF</mtext>+      </mtd> +      <mtd>+        <mtext>FC0</mtext>+      </mtd> +      <mtd>+        <mtext>FC1</mtext>+      </mtd> +      <mtd>+        <mtext>FC2</mtext>+      </mtd> +      <mtd>+        <mtext>FC3</mtext>+      </mtd> +      <mtd>+        <mtext>FC4</mtext>+      </mtd> +      <mtd>+        <mtext>FC5</mtext>+      </mtd> +      <mtd>+        <mtext>FC6</mtext>+      </mtd> +      <mtd>+        <mtext>FC7</mtext>+      </mtd> +      <mtd>+        <mtext>FC8</mtext>+      </mtd> +      <mtd>+        <mtext>FC9</mtext>+      </mtd> +      <mtd>+        <mtext>FCA</mtext>+      </mtd> +      <mtd>+        <mtext>FCB</mtext>+      </mtd> +      <mtd>+        <mtext>FCC</mtext>+      </mtd> +      <mtd>+        <mtext>FCD</mtext>+      </mtd> +      <mtd>+        <mtext>FCE</mtext>+      </mtd> +      <mtd>+        <mtext>FCF</mtext>+      </mtd> +      <mtd>+        <mtext>FD0</mtext>+      </mtd> +      <mtd>+        <mtext>FD1</mtext>+      </mtd> +      <mtd>+        <mtext>FD2</mtext>+      </mtd> +      <mtd>+        <mtext>FD3</mtext>+      </mtd> +      <mtd>+        <mtext>FD4</mtext>+      </mtd> +      <mtd>+        <mtext>FD5</mtext>+      </mtd> +      <mtd>+        <mtext>FD6</mtext>+      </mtd> +      <mtd>+        <mtext>FD7</mtext>+      </mtd> +      <mtd>+        <mtext>FD8</mtext>+      </mtd> +      <mtd>+        <mtext>FD9</mtext>+      </mtd> +      <mtd>+        <mtext>FDA</mtext>+      </mtd> +      <mtd>+        <mtext>FDB</mtext>+      </mtd> +      <mtd>+        <mtext>FDC</mtext>+      </mtd> +      <mtd>+        <mtext>FDD</mtext>+      </mtd> +      <mtd>+        <mtext>FDE</mtext>+      </mtd> +      <mtd>+        <mtext>FDF</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#64336;</mo>+      </mtd> +      <mtd>+        <mo>&#64352;</mo>+      </mtd> +      <mtd>+        <mo>&#64368;</mo>+      </mtd> +      <mtd>+        <mo>&#64384;</mo>+      </mtd> +      <mtd>+        <mo>&#64400;</mo>+      </mtd> +      <mtd>+        <mo>&#64416;</mo>+      </mtd> +      <mtd>+        <mo>&#64432;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64480;</mo>+      </mtd> +      <mtd>+        <mo>&#64496;</mo>+      </mtd> +      <mtd>+        <mo>&#64512;</mo>+      </mtd> +      <mtd>+        <mo>&#64528;</mo>+      </mtd> +      <mtd>+        <mo>&#64544;</mo>+      </mtd> +      <mtd>+        <mo>&#64560;</mo>+      </mtd> +      <mtd>+        <mo>&#64576;</mo>+      </mtd> +      <mtd>+        <mo>&#64592;</mo>+      </mtd> +      <mtd>+        <mo>&#64608;</mo>+      </mtd> +      <mtd>+        <mo>&#64624;</mo>+      </mtd> +      <mtd>+        <mo>&#64640;</mo>+      </mtd> +      <mtd>+        <mo>&#64656;</mo>+      </mtd> +      <mtd>+        <mo>&#64672;</mo>+      </mtd> +      <mtd>+        <mo>&#64688;</mo>+      </mtd> +      <mtd>+        <mo>&#64704;</mo>+      </mtd> +      <mtd>+        <mo>&#64720;</mo>+      </mtd> +      <mtd>+        <mo>&#64736;</mo>+      </mtd> +      <mtd>+        <mo>&#64752;</mo>+      </mtd> +      <mtd>+        <mo>&#64768;</mo>+      </mtd> +      <mtd>+        <mo>&#64784;</mo>+      </mtd> +      <mtd>+        <mo>&#64800;</mo>+      </mtd> +      <mtd>+        <mo>&#64816;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64848;</mo>+      </mtd> +      <mtd>+        <mo>&#64864;</mo>+      </mtd> +      <mtd>+        <mo>&#64880;</mo>+      </mtd> +      <mtd>+        <mo>&#64896;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64928;</mo>+      </mtd> +      <mtd>+        <mo>&#64944;</mo>+      </mtd> +      <mtd>+        <mo>&#64960;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65008;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#64337;</mo>+      </mtd> +      <mtd>+        <mo>&#64353;</mo>+      </mtd> +      <mtd>+        <mo>&#64369;</mo>+      </mtd> +      <mtd>+        <mo>&#64385;</mo>+      </mtd> +      <mtd>+        <mo>&#64401;</mo>+      </mtd> +      <mtd>+        <mo>&#64417;</mo>+      </mtd> +      <mtd>+        <mo>&#64433;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64481;</mo>+      </mtd> +      <mtd>+        <mo>&#64497;</mo>+      </mtd> +      <mtd>+        <mo>&#64513;</mo>+      </mtd> +      <mtd>+        <mo>&#64529;</mo>+      </mtd> +      <mtd>+        <mo>&#64545;</mo>+      </mtd> +      <mtd>+        <mo>&#64561;</mo>+      </mtd> +      <mtd>+        <mo>&#64577;</mo>+      </mtd> +      <mtd>+        <mo>&#64593;</mo>+      </mtd> +      <mtd>+        <mo>&#64609;</mo>+      </mtd> +      <mtd>+        <mo>&#64625;</mo>+      </mtd> +      <mtd>+        <mo>&#64641;</mo>+      </mtd> +      <mtd>+        <mo>&#64657;</mo>+      </mtd> +      <mtd>+        <mo>&#64673;</mo>+      </mtd> +      <mtd>+        <mo>&#64689;</mo>+      </mtd> +      <mtd>+        <mo>&#64705;</mo>+      </mtd> +      <mtd>+        <mo>&#64721;</mo>+      </mtd> +      <mtd>+        <mo>&#64737;</mo>+      </mtd> +      <mtd>+        <mo>&#64753;</mo>+      </mtd> +      <mtd>+        <mo>&#64769;</mo>+      </mtd> +      <mtd>+        <mo>&#64785;</mo>+      </mtd> +      <mtd>+        <mo>&#64801;</mo>+      </mtd> +      <mtd>+        <mo>&#64817;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64849;</mo>+      </mtd> +      <mtd>+        <mo>&#64865;</mo>+      </mtd> +      <mtd>+        <mo>&#64881;</mo>+      </mtd> +      <mtd>+        <mo>&#64897;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64929;</mo>+      </mtd> +      <mtd>+        <mo>&#64945;</mo>+      </mtd> +      <mtd>+        <mo>&#64961;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65009;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#64338;</mo>+      </mtd> +      <mtd>+        <mo>&#64354;</mo>+      </mtd> +      <mtd>+        <mo>&#64370;</mo>+      </mtd> +      <mtd>+        <mo>&#64386;</mo>+      </mtd> +      <mtd>+        <mo>&#64402;</mo>+      </mtd> +      <mtd>+        <mo>&#64418;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64482;</mo>+      </mtd> +      <mtd>+        <mo>&#64498;</mo>+      </mtd> +      <mtd>+        <mo>&#64514;</mo>+      </mtd> +      <mtd>+        <mo>&#64530;</mo>+      </mtd> +      <mtd>+        <mo>&#64546;</mo>+      </mtd> +      <mtd>+        <mo>&#64562;</mo>+      </mtd> +      <mtd>+        <mo>&#64578;</mo>+      </mtd> +      <mtd>+        <mo>&#64594;</mo>+      </mtd> +      <mtd>+        <mo>&#64610;</mo>+      </mtd> +      <mtd>+        <mo>&#64626;</mo>+      </mtd> +      <mtd>+        <mo>&#64642;</mo>+      </mtd> +      <mtd>+        <mo>&#64658;</mo>+      </mtd> +      <mtd>+        <mo>&#64674;</mo>+      </mtd> +      <mtd>+        <mo>&#64690;</mo>+      </mtd> +      <mtd>+        <mo>&#64706;</mo>+      </mtd> +      <mtd>+        <mo>&#64722;</mo>+      </mtd> +      <mtd>+        <mo>&#64738;</mo>+      </mtd> +      <mtd>+        <mo>&#64754;</mo>+      </mtd> +      <mtd>+        <mo>&#64770;</mo>+      </mtd> +      <mtd>+        <mo>&#64786;</mo>+      </mtd> +      <mtd>+        <mo>&#64802;</mo>+      </mtd> +      <mtd>+        <mo>&#64818;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64850;</mo>+      </mtd> +      <mtd>+        <mo>&#64866;</mo>+      </mtd> +      <mtd>+        <mo>&#64882;</mo>+      </mtd> +      <mtd>+        <mo>&#64898;</mo>+      </mtd> +      <mtd>+        <mo>&#64914;</mo>+      </mtd> +      <mtd>+        <mo>&#64930;</mo>+      </mtd> +      <mtd>+        <mo>&#64946;</mo>+      </mtd> +      <mtd>+        <mo>&#64962;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65010;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#64339;</mo>+      </mtd> +      <mtd>+        <mo>&#64355;</mo>+      </mtd> +      <mtd>+        <mo>&#64371;</mo>+      </mtd> +      <mtd>+        <mo>&#64387;</mo>+      </mtd> +      <mtd>+        <mo>&#64403;</mo>+      </mtd> +      <mtd>+        <mo>&#64419;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64467;</mo>+      </mtd> +      <mtd>+        <mo>&#64483;</mo>+      </mtd> +      <mtd>+        <mo>&#64499;</mo>+      </mtd> +      <mtd>+        <mo>&#64515;</mo>+      </mtd> +      <mtd>+        <mo>&#64531;</mo>+      </mtd> +      <mtd>+        <mo>&#64547;</mo>+      </mtd> +      <mtd>+        <mo>&#64563;</mo>+      </mtd> +      <mtd>+        <mo>&#64579;</mo>+      </mtd> +      <mtd>+        <mo>&#64595;</mo>+      </mtd> +      <mtd>+        <mo>&#64611;</mo>+      </mtd> +      <mtd>+        <mo>&#64627;</mo>+      </mtd> +      <mtd>+        <mo>&#64643;</mo>+      </mtd> +      <mtd>+        <mo>&#64659;</mo>+      </mtd> +      <mtd>+        <mo>&#64675;</mo>+      </mtd> +      <mtd>+        <mo>&#64691;</mo>+      </mtd> +      <mtd>+        <mo>&#64707;</mo>+      </mtd> +      <mtd>+        <mo>&#64723;</mo>+      </mtd> +      <mtd>+        <mo>&#64739;</mo>+      </mtd> +      <mtd>+        <mo>&#64755;</mo>+      </mtd> +      <mtd>+        <mo>&#64771;</mo>+      </mtd> +      <mtd>+        <mo>&#64787;</mo>+      </mtd> +      <mtd>+        <mo>&#64803;</mo>+      </mtd> +      <mtd>+        <mo>&#64819;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64851;</mo>+      </mtd> +      <mtd>+        <mo>&#64867;</mo>+      </mtd> +      <mtd>+        <mo>&#64883;</mo>+      </mtd> +      <mtd>+        <mo>&#64899;</mo>+      </mtd> +      <mtd>+        <mo>&#64915;</mo>+      </mtd> +      <mtd>+        <mo>&#64931;</mo>+      </mtd> +      <mtd>+        <mo>&#64947;</mo>+      </mtd> +      <mtd>+        <mo>&#64963;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65011;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#64340;</mo>+      </mtd> +      <mtd>+        <mo>&#64356;</mo>+      </mtd> +      <mtd>+        <mo>&#64372;</mo>+      </mtd> +      <mtd>+        <mo>&#64388;</mo>+      </mtd> +      <mtd>+        <mo>&#64404;</mo>+      </mtd> +      <mtd>+        <mo>&#64420;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64468;</mo>+      </mtd> +      <mtd>+        <mo>&#64484;</mo>+      </mtd> +      <mtd>+        <mo>&#64500;</mo>+      </mtd> +      <mtd>+        <mo>&#64516;</mo>+      </mtd> +      <mtd>+        <mo>&#64532;</mo>+      </mtd> +      <mtd>+        <mo>&#64548;</mo>+      </mtd> +      <mtd>+        <mo>&#64564;</mo>+      </mtd> +      <mtd>+        <mo>&#64580;</mo>+      </mtd> +      <mtd>+        <mo>&#64596;</mo>+      </mtd> +      <mtd>+        <mo>&#64612;</mo>+      </mtd> +      <mtd>+        <mo>&#64628;</mo>+      </mtd> +      <mtd>+        <mo>&#64644;</mo>+      </mtd> +      <mtd>+        <mo>&#64660;</mo>+      </mtd> +      <mtd>+        <mo>&#64676;</mo>+      </mtd> +      <mtd>+        <mo>&#64692;</mo>+      </mtd> +      <mtd>+        <mo>&#64708;</mo>+      </mtd> +      <mtd>+        <mo>&#64724;</mo>+      </mtd> +      <mtd>+        <mo>&#64740;</mo>+      </mtd> +      <mtd>+        <mo>&#64756;</mo>+      </mtd> +      <mtd>+        <mo>&#64772;</mo>+      </mtd> +      <mtd>+        <mo>&#64788;</mo>+      </mtd> +      <mtd>+        <mo>&#64804;</mo>+      </mtd> +      <mtd>+        <mo>&#64820;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64852;</mo>+      </mtd> +      <mtd>+        <mo>&#64868;</mo>+      </mtd> +      <mtd>+        <mo>&#64884;</mo>+      </mtd> +      <mtd>+        <mo>&#64900;</mo>+      </mtd> +      <mtd>+        <mo>&#64916;</mo>+      </mtd> +      <mtd>+        <mo>&#64932;</mo>+      </mtd> +      <mtd>+        <mo>&#64948;</mo>+      </mtd> +      <mtd>+        <mo>&#64964;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65012;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#64341;</mo>+      </mtd> +      <mtd>+        <mo>&#64357;</mo>+      </mtd> +      <mtd>+        <mo>&#64373;</mo>+      </mtd> +      <mtd>+        <mo>&#64389;</mo>+      </mtd> +      <mtd>+        <mo>&#64405;</mo>+      </mtd> +      <mtd>+        <mo>&#64421;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64469;</mo>+      </mtd> +      <mtd>+        <mo>&#64485;</mo>+      </mtd> +      <mtd>+        <mo>&#64501;</mo>+      </mtd> +      <mtd>+        <mo>&#64517;</mo>+      </mtd> +      <mtd>+        <mo>&#64533;</mo>+      </mtd> +      <mtd>+        <mo>&#64549;</mo>+      </mtd> +      <mtd>+        <mo>&#64565;</mo>+      </mtd> +      <mtd>+        <mo>&#64581;</mo>+      </mtd> +      <mtd>+        <mo>&#64597;</mo>+      </mtd> +      <mtd>+        <mo>&#64613;</mo>+      </mtd> +      <mtd>+        <mo>&#64629;</mo>+      </mtd> +      <mtd>+        <mo>&#64645;</mo>+      </mtd> +      <mtd>+        <mo>&#64661;</mo>+      </mtd> +      <mtd>+        <mo>&#64677;</mo>+      </mtd> +      <mtd>+        <mo>&#64693;</mo>+      </mtd> +      <mtd>+        <mo>&#64709;</mo>+      </mtd> +      <mtd>+        <mo>&#64725;</mo>+      </mtd> +      <mtd>+        <mo>&#64741;</mo>+      </mtd> +      <mtd>+        <mo>&#64757;</mo>+      </mtd> +      <mtd>+        <mo>&#64773;</mo>+      </mtd> +      <mtd>+        <mo>&#64789;</mo>+      </mtd> +      <mtd>+        <mo>&#64805;</mo>+      </mtd> +      <mtd>+        <mo>&#64821;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64853;</mo>+      </mtd> +      <mtd>+        <mo>&#64869;</mo>+      </mtd> +      <mtd>+        <mo>&#64885;</mo>+      </mtd> +      <mtd>+        <mo>&#64901;</mo>+      </mtd> +      <mtd>+        <mo>&#64917;</mo>+      </mtd> +      <mtd>+        <mo>&#64933;</mo>+      </mtd> +      <mtd>+        <mo>&#64949;</mo>+      </mtd> +      <mtd>+        <mo>&#64965;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65013;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#64342;</mo>+      </mtd> +      <mtd>+        <mo>&#64358;</mo>+      </mtd> +      <mtd>+        <mo>&#64374;</mo>+      </mtd> +      <mtd>+        <mo>&#64390;</mo>+      </mtd> +      <mtd>+        <mo>&#64406;</mo>+      </mtd> +      <mtd>+        <mo>&#64422;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64470;</mo>+      </mtd> +      <mtd>+        <mo>&#64486;</mo>+      </mtd> +      <mtd>+        <mo>&#64502;</mo>+      </mtd> +      <mtd>+        <mo>&#64518;</mo>+      </mtd> +      <mtd>+        <mo>&#64534;</mo>+      </mtd> +      <mtd>+        <mo>&#64550;</mo>+      </mtd> +      <mtd>+        <mo>&#64566;</mo>+      </mtd> +      <mtd>+        <mo>&#64582;</mo>+      </mtd> +      <mtd>+        <mo>&#64598;</mo>+      </mtd> +      <mtd>+        <mo>&#64614;</mo>+      </mtd> +      <mtd>+        <mo>&#64630;</mo>+      </mtd> +      <mtd>+        <mo>&#64646;</mo>+      </mtd> +      <mtd>+        <mo>&#64662;</mo>+      </mtd> +      <mtd>+        <mo>&#64678;</mo>+      </mtd> +      <mtd>+        <mo>&#64694;</mo>+      </mtd> +      <mtd>+        <mo>&#64710;</mo>+      </mtd> +      <mtd>+        <mo>&#64726;</mo>+      </mtd> +      <mtd>+        <mo>&#64742;</mo>+      </mtd> +      <mtd>+        <mo>&#64758;</mo>+      </mtd> +      <mtd>+        <mo>&#64774;</mo>+      </mtd> +      <mtd>+        <mo>&#64790;</mo>+      </mtd> +      <mtd>+        <mo>&#64806;</mo>+      </mtd> +      <mtd>+        <mo>&#64822;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64854;</mo>+      </mtd> +      <mtd>+        <mo>&#64870;</mo>+      </mtd> +      <mtd>+        <mo>&#64886;</mo>+      </mtd> +      <mtd>+        <mo>&#64902;</mo>+      </mtd> +      <mtd>+        <mo>&#64918;</mo>+      </mtd> +      <mtd>+        <mo>&#64934;</mo>+      </mtd> +      <mtd>+        <mo>&#64950;</mo>+      </mtd> +      <mtd>+        <mo>&#64966;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65014;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#64343;</mo>+      </mtd> +      <mtd>+        <mo>&#64359;</mo>+      </mtd> +      <mtd>+        <mo>&#64375;</mo>+      </mtd> +      <mtd>+        <mo>&#64391;</mo>+      </mtd> +      <mtd>+        <mo>&#64407;</mo>+      </mtd> +      <mtd>+        <mo>&#64423;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64471;</mo>+      </mtd> +      <mtd>+        <mo>&#64487;</mo>+      </mtd> +      <mtd>+        <mo>&#64503;</mo>+      </mtd> +      <mtd>+        <mo>&#64519;</mo>+      </mtd> +      <mtd>+        <mo>&#64535;</mo>+      </mtd> +      <mtd>+        <mo>&#64551;</mo>+      </mtd> +      <mtd>+        <mo>&#64567;</mo>+      </mtd> +      <mtd>+        <mo>&#64583;</mo>+      </mtd> +      <mtd>+        <mo>&#64599;</mo>+      </mtd> +      <mtd>+        <mo>&#64615;</mo>+      </mtd> +      <mtd>+        <mo>&#64631;</mo>+      </mtd> +      <mtd>+        <mo>&#64647;</mo>+      </mtd> +      <mtd>+        <mo>&#64663;</mo>+      </mtd> +      <mtd>+        <mo>&#64679;</mo>+      </mtd> +      <mtd>+        <mo>&#64695;</mo>+      </mtd> +      <mtd>+        <mo>&#64711;</mo>+      </mtd> +      <mtd>+        <mo>&#64727;</mo>+      </mtd> +      <mtd>+        <mo>&#64743;</mo>+      </mtd> +      <mtd>+        <mo>&#64759;</mo>+      </mtd> +      <mtd>+        <mo>&#64775;</mo>+      </mtd> +      <mtd>+        <mo>&#64791;</mo>+      </mtd> +      <mtd>+        <mo>&#64807;</mo>+      </mtd> +      <mtd>+        <mo>&#64823;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64855;</mo>+      </mtd> +      <mtd>+        <mo>&#64871;</mo>+      </mtd> +      <mtd>+        <mo>&#64887;</mo>+      </mtd> +      <mtd>+        <mo>&#64903;</mo>+      </mtd> +      <mtd>+        <mo>&#64919;</mo>+      </mtd> +      <mtd>+        <mo>&#64935;</mo>+      </mtd> +      <mtd>+        <mo>&#64951;</mo>+      </mtd> +      <mtd>+        <mo>&#64967;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65015;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#64344;</mo>+      </mtd> +      <mtd>+        <mo>&#64360;</mo>+      </mtd> +      <mtd>+        <mo>&#64376;</mo>+      </mtd> +      <mtd>+        <mo>&#64392;</mo>+      </mtd> +      <mtd>+        <mo>&#64408;</mo>+      </mtd> +      <mtd>+        <mo>&#64424;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64472;</mo>+      </mtd> +      <mtd>+        <mo>&#64488;</mo>+      </mtd> +      <mtd>+        <mo>&#64504;</mo>+      </mtd> +      <mtd>+        <mo>&#64520;</mo>+      </mtd> +      <mtd>+        <mo>&#64536;</mo>+      </mtd> +      <mtd>+        <mo>&#64552;</mo>+      </mtd> +      <mtd>+        <mo>&#64568;</mo>+      </mtd> +      <mtd>+        <mo>&#64584;</mo>+      </mtd> +      <mtd>+        <mo>&#64600;</mo>+      </mtd> +      <mtd>+        <mo>&#64616;</mo>+      </mtd> +      <mtd>+        <mo>&#64632;</mo>+      </mtd> +      <mtd>+        <mo>&#64648;</mo>+      </mtd> +      <mtd>+        <mo>&#64664;</mo>+      </mtd> +      <mtd>+        <mo>&#64680;</mo>+      </mtd> +      <mtd>+        <mo>&#64696;</mo>+      </mtd> +      <mtd>+        <mo>&#64712;</mo>+      </mtd> +      <mtd>+        <mo>&#64728;</mo>+      </mtd> +      <mtd>+        <mo>&#64744;</mo>+      </mtd> +      <mtd>+        <mo>&#64760;</mo>+      </mtd> +      <mtd>+        <mo>&#64776;</mo>+      </mtd> +      <mtd>+        <mo>&#64792;</mo>+      </mtd> +      <mtd>+        <mo>&#64808;</mo>+      </mtd> +      <mtd>+        <mo>&#64824;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64856;</mo>+      </mtd> +      <mtd>+        <mo>&#64872;</mo>+      </mtd> +      <mtd>+        <mo>&#64888;</mo>+      </mtd> +      <mtd>+        <mo>&#64904;</mo>+      </mtd> +      <mtd>+        <mo>&#64920;</mo>+      </mtd> +      <mtd>+        <mo>&#64936;</mo>+      </mtd> +      <mtd>+        <mo>&#64952;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65016;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#64345;</mo>+      </mtd> +      <mtd>+        <mo>&#64361;</mo>+      </mtd> +      <mtd>+        <mo>&#64377;</mo>+      </mtd> +      <mtd>+        <mo>&#64393;</mo>+      </mtd> +      <mtd>+        <mo>&#64409;</mo>+      </mtd> +      <mtd>+        <mo>&#64425;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64473;</mo>+      </mtd> +      <mtd>+        <mo>&#64489;</mo>+      </mtd> +      <mtd>+        <mo>&#64505;</mo>+      </mtd> +      <mtd>+        <mo>&#64521;</mo>+      </mtd> +      <mtd>+        <mo>&#64537;</mo>+      </mtd> +      <mtd>+        <mo>&#64553;</mo>+      </mtd> +      <mtd>+        <mo>&#64569;</mo>+      </mtd> +      <mtd>+        <mo>&#64585;</mo>+      </mtd> +      <mtd>+        <mo>&#64601;</mo>+      </mtd> +      <mtd>+        <mo>&#64617;</mo>+      </mtd> +      <mtd>+        <mo>&#64633;</mo>+      </mtd> +      <mtd>+        <mo>&#64649;</mo>+      </mtd> +      <mtd>+        <mo>&#64665;</mo>+      </mtd> +      <mtd>+        <mo>&#64681;</mo>+      </mtd> +      <mtd>+        <mo>&#64697;</mo>+      </mtd> +      <mtd>+        <mo>&#64713;</mo>+      </mtd> +      <mtd>+        <mo>&#64729;</mo>+      </mtd> +      <mtd>+        <mo>&#64745;</mo>+      </mtd> +      <mtd>+        <mo>&#64761;</mo>+      </mtd> +      <mtd>+        <mo>&#64777;</mo>+      </mtd> +      <mtd>+        <mo>&#64793;</mo>+      </mtd> +      <mtd>+        <mo>&#64809;</mo>+      </mtd> +      <mtd>+        <mo>&#64825;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64857;</mo>+      </mtd> +      <mtd>+        <mo>&#64873;</mo>+      </mtd> +      <mtd>+        <mo>&#64889;</mo>+      </mtd> +      <mtd>+        <mo>&#64905;</mo>+      </mtd> +      <mtd>+        <mo>&#64921;</mo>+      </mtd> +      <mtd>+        <mo>&#64937;</mo>+      </mtd> +      <mtd>+        <mo>&#64953;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65017;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#64346;</mo>+      </mtd> +      <mtd>+        <mo>&#64362;</mo>+      </mtd> +      <mtd>+        <mo>&#64378;</mo>+      </mtd> +      <mtd>+        <mo>&#64394;</mo>+      </mtd> +      <mtd>+        <mo>&#64410;</mo>+      </mtd> +      <mtd>+        <mo>&#64426;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64474;</mo>+      </mtd> +      <mtd>+        <mo>&#64490;</mo>+      </mtd> +      <mtd>+        <mo>&#64506;</mo>+      </mtd> +      <mtd>+        <mo>&#64522;</mo>+      </mtd> +      <mtd>+        <mo>&#64538;</mo>+      </mtd> +      <mtd>+        <mo>&#64554;</mo>+      </mtd> +      <mtd>+        <mo>&#64570;</mo>+      </mtd> +      <mtd>+        <mo>&#64586;</mo>+      </mtd> +      <mtd>+        <mo>&#64602;</mo>+      </mtd> +      <mtd>+        <mo>&#64618;</mo>+      </mtd> +      <mtd>+        <mo>&#64634;</mo>+      </mtd> +      <mtd>+        <mo>&#64650;</mo>+      </mtd> +      <mtd>+        <mo>&#64666;</mo>+      </mtd> +      <mtd>+        <mo>&#64682;</mo>+      </mtd> +      <mtd>+        <mo>&#64698;</mo>+      </mtd> +      <mtd>+        <mo>&#64714;</mo>+      </mtd> +      <mtd>+        <mo>&#64730;</mo>+      </mtd> +      <mtd>+        <mo>&#64746;</mo>+      </mtd> +      <mtd>+        <mo>&#64762;</mo>+      </mtd> +      <mtd>+        <mo>&#64778;</mo>+      </mtd> +      <mtd>+        <mo>&#64794;</mo>+      </mtd> +      <mtd>+        <mo>&#64810;</mo>+      </mtd> +      <mtd>+        <mo>&#64826;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64858;</mo>+      </mtd> +      <mtd>+        <mo>&#64874;</mo>+      </mtd> +      <mtd>+        <mo>&#64890;</mo>+      </mtd> +      <mtd>+        <mo>&#64906;</mo>+      </mtd> +      <mtd>+        <mo>&#64922;</mo>+      </mtd> +      <mtd>+        <mo>&#64938;</mo>+      </mtd> +      <mtd>+        <mo>&#64954;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65018;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#64347;</mo>+      </mtd> +      <mtd>+        <mo>&#64363;</mo>+      </mtd> +      <mtd>+        <mo>&#64379;</mo>+      </mtd> +      <mtd>+        <mo>&#64395;</mo>+      </mtd> +      <mtd>+        <mo>&#64411;</mo>+      </mtd> +      <mtd>+        <mo>&#64427;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64475;</mo>+      </mtd> +      <mtd>+        <mo>&#64491;</mo>+      </mtd> +      <mtd>+        <mo>&#64507;</mo>+      </mtd> +      <mtd>+        <mo>&#64523;</mo>+      </mtd> +      <mtd>+        <mo>&#64539;</mo>+      </mtd> +      <mtd>+        <mo>&#64555;</mo>+      </mtd> +      <mtd>+        <mo>&#64571;</mo>+      </mtd> +      <mtd>+        <mo>&#64587;</mo>+      </mtd> +      <mtd>+        <mo>&#64603;</mo>+      </mtd> +      <mtd>+        <mo>&#64619;</mo>+      </mtd> +      <mtd>+        <mo>&#64635;</mo>+      </mtd> +      <mtd>+        <mo>&#64651;</mo>+      </mtd> +      <mtd>+        <mo>&#64667;</mo>+      </mtd> +      <mtd>+        <mo>&#64683;</mo>+      </mtd> +      <mtd>+        <mo>&#64699;</mo>+      </mtd> +      <mtd>+        <mo>&#64715;</mo>+      </mtd> +      <mtd>+        <mo>&#64731;</mo>+      </mtd> +      <mtd>+        <mo>&#64747;</mo>+      </mtd> +      <mtd>+        <mo>&#64763;</mo>+      </mtd> +      <mtd>+        <mo>&#64779;</mo>+      </mtd> +      <mtd>+        <mo>&#64795;</mo>+      </mtd> +      <mtd>+        <mo>&#64811;</mo>+      </mtd> +      <mtd>+        <mo>&#64827;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64859;</mo>+      </mtd> +      <mtd>+        <mo>&#64875;</mo>+      </mtd> +      <mtd>+        <mo>&#64891;</mo>+      </mtd> +      <mtd>+        <mo>&#64907;</mo>+      </mtd> +      <mtd>+        <mo>&#64923;</mo>+      </mtd> +      <mtd>+        <mo>&#64939;</mo>+      </mtd> +      <mtd>+        <mo>&#64955;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65019;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#64348;</mo>+      </mtd> +      <mtd>+        <mo>&#64364;</mo>+      </mtd> +      <mtd>+        <mo>&#64380;</mo>+      </mtd> +      <mtd>+        <mo>&#64396;</mo>+      </mtd> +      <mtd>+        <mo>&#64412;</mo>+      </mtd> +      <mtd>+        <mo>&#64428;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64476;</mo>+      </mtd> +      <mtd>+        <mo>&#64492;</mo>+      </mtd> +      <mtd>+        <mo>&#64508;</mo>+      </mtd> +      <mtd>+        <mo>&#64524;</mo>+      </mtd> +      <mtd>+        <mo>&#64540;</mo>+      </mtd> +      <mtd>+        <mo>&#64556;</mo>+      </mtd> +      <mtd>+        <mo>&#64572;</mo>+      </mtd> +      <mtd>+        <mo>&#64588;</mo>+      </mtd> +      <mtd>+        <mo>&#64604;</mo>+      </mtd> +      <mtd>+        <mo>&#64620;</mo>+      </mtd> +      <mtd>+        <mo>&#64636;</mo>+      </mtd> +      <mtd>+        <mo>&#64652;</mo>+      </mtd> +      <mtd>+        <mo>&#64668;</mo>+      </mtd> +      <mtd>+        <mo>&#64684;</mo>+      </mtd> +      <mtd>+        <mo>&#64700;</mo>+      </mtd> +      <mtd>+        <mo>&#64716;</mo>+      </mtd> +      <mtd>+        <mo>&#64732;</mo>+      </mtd> +      <mtd>+        <mo>&#64748;</mo>+      </mtd> +      <mtd>+        <mo>&#64764;</mo>+      </mtd> +      <mtd>+        <mo>&#64780;</mo>+      </mtd> +      <mtd>+        <mo>&#64796;</mo>+      </mtd> +      <mtd>+        <mo>&#64812;</mo>+      </mtd> +      <mtd>+        <mo>&#64828;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64860;</mo>+      </mtd> +      <mtd>+        <mo>&#64876;</mo>+      </mtd> +      <mtd>+        <mo>&#64892;</mo>+      </mtd> +      <mtd>+        <mo>&#64908;</mo>+      </mtd> +      <mtd>+        <mo>&#64924;</mo>+      </mtd> +      <mtd>+        <mo>&#64940;</mo>+      </mtd> +      <mtd>+        <mo>&#64956;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65020;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#64349;</mo>+      </mtd> +      <mtd>+        <mo>&#64365;</mo>+      </mtd> +      <mtd>+        <mo>&#64381;</mo>+      </mtd> +      <mtd>+        <mo>&#64397;</mo>+      </mtd> +      <mtd>+        <mo>&#64413;</mo>+      </mtd> +      <mtd>+        <mo>&#64429;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64477;</mo>+      </mtd> +      <mtd>+        <mo>&#64493;</mo>+      </mtd> +      <mtd>+        <mo>&#64509;</mo>+      </mtd> +      <mtd>+        <mo>&#64525;</mo>+      </mtd> +      <mtd>+        <mo>&#64541;</mo>+      </mtd> +      <mtd>+        <mo>&#64557;</mo>+      </mtd> +      <mtd>+        <mo>&#64573;</mo>+      </mtd> +      <mtd>+        <mo>&#64589;</mo>+      </mtd> +      <mtd>+        <mo>&#64605;</mo>+      </mtd> +      <mtd>+        <mo>&#64621;</mo>+      </mtd> +      <mtd>+        <mo>&#64637;</mo>+      </mtd> +      <mtd>+        <mo>&#64653;</mo>+      </mtd> +      <mtd>+        <mo>&#64669;</mo>+      </mtd> +      <mtd>+        <mo>&#64685;</mo>+      </mtd> +      <mtd>+        <mo>&#64701;</mo>+      </mtd> +      <mtd>+        <mo>&#64717;</mo>+      </mtd> +      <mtd>+        <mo>&#64733;</mo>+      </mtd> +      <mtd>+        <mo>&#64749;</mo>+      </mtd> +      <mtd>+        <mo>&#64765;</mo>+      </mtd> +      <mtd>+        <mo>&#64781;</mo>+      </mtd> +      <mtd>+        <mo>&#64797;</mo>+      </mtd> +      <mtd>+        <mo>&#64813;</mo>+      </mtd> +      <mtd>+        <mo>&#64829;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64861;</mo>+      </mtd> +      <mtd>+        <mo>&#64877;</mo>+      </mtd> +      <mtd>+        <mo>&#64893;</mo>+      </mtd> +      <mtd>+        <mo>&#64909;</mo>+      </mtd> +      <mtd>+        <mo>&#64925;</mo>+      </mtd> +      <mtd>+        <mo>&#64941;</mo>+      </mtd> +      <mtd>+        <mo>&#64957;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65021;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#64350;</mo>+      </mtd> +      <mtd>+        <mo>&#64366;</mo>+      </mtd> +      <mtd>+        <mo>&#64382;</mo>+      </mtd> +      <mtd>+        <mo>&#64398;</mo>+      </mtd> +      <mtd>+        <mo>&#64414;</mo>+      </mtd> +      <mtd>+        <mo>&#64430;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64478;</mo>+      </mtd> +      <mtd>+        <mo>&#64494;</mo>+      </mtd> +      <mtd>+        <mo>&#64510;</mo>+      </mtd> +      <mtd>+        <mo>&#64526;</mo>+      </mtd> +      <mtd>+        <mo>&#64542;</mo>+      </mtd> +      <mtd>+        <mo>&#64558;</mo>+      </mtd> +      <mtd>+        <mo>&#64574;</mo>+      </mtd> +      <mtd>+        <mo>&#64590;</mo>+      </mtd> +      <mtd>+        <mo>&#64606;</mo>+      </mtd> +      <mtd>+        <mo>&#64622;</mo>+      </mtd> +      <mtd>+        <mo>&#64638;</mo>+      </mtd> +      <mtd>+        <mo>&#64654;</mo>+      </mtd> +      <mtd>+        <mo>&#64670;</mo>+      </mtd> +      <mtd>+        <mo>&#64686;</mo>+      </mtd> +      <mtd>+        <mo>&#64702;</mo>+      </mtd> +      <mtd>+        <mo>&#64718;</mo>+      </mtd> +      <mtd>+        <mo>&#64734;</mo>+      </mtd> +      <mtd>+        <mo>&#64750;</mo>+      </mtd> +      <mtd>+        <mo>&#64766;</mo>+      </mtd> +      <mtd>+        <mo>&#64782;</mo>+      </mtd> +      <mtd>+        <mo>&#64798;</mo>+      </mtd> +      <mtd>+        <mo>&#64814;</mo>+      </mtd> +      <mtd>+        <mo>&#64830;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64862;</mo>+      </mtd> +      <mtd>+        <mo>&#64878;</mo>+      </mtd> +      <mtd>+        <mo>&#64894;</mo>+      </mtd> +      <mtd>+        <mo>&#64910;</mo>+      </mtd> +      <mtd>+        <mo>&#64926;</mo>+      </mtd> +      <mtd>+        <mo>&#64942;</mo>+      </mtd> +      <mtd>+        <mo>&#64958;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#64351;</mo>+      </mtd> +      <mtd>+        <mo>&#64367;</mo>+      </mtd> +      <mtd>+        <mo>&#64383;</mo>+      </mtd> +      <mtd>+        <mo>&#64399;</mo>+      </mtd> +      <mtd>+        <mo>&#64415;</mo>+      </mtd> +      <mtd>+        <mo>&#64431;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64479;</mo>+      </mtd> +      <mtd>+        <mo>&#64495;</mo>+      </mtd> +      <mtd>+        <mo>&#64511;</mo>+      </mtd> +      <mtd>+        <mo>&#64527;</mo>+      </mtd> +      <mtd>+        <mo>&#64543;</mo>+      </mtd> +      <mtd>+        <mo>&#64559;</mo>+      </mtd> +      <mtd>+        <mo>&#64575;</mo>+      </mtd> +      <mtd>+        <mo>&#64591;</mo>+      </mtd> +      <mtd>+        <mo>&#64607;</mo>+      </mtd> +      <mtd>+        <mo>&#64623;</mo>+      </mtd> +      <mtd>+        <mo>&#64639;</mo>+      </mtd> +      <mtd>+        <mo>&#64655;</mo>+      </mtd> +      <mtd>+        <mo>&#64671;</mo>+      </mtd> +      <mtd>+        <mo>&#64687;</mo>+      </mtd> +      <mtd>+        <mo>&#64703;</mo>+      </mtd> +      <mtd>+        <mo>&#64719;</mo>+      </mtd> +      <mtd>+        <mo>&#64735;</mo>+      </mtd> +      <mtd>+        <mo>&#64751;</mo>+      </mtd> +      <mtd>+        <mo>&#64767;</mo>+      </mtd> +      <mtd>+        <mo>&#64783;</mo>+      </mtd> +      <mtd>+        <mo>&#64799;</mo>+      </mtd> +      <mtd>+        <mo>&#64815;</mo>+      </mtd> +      <mtd>+        <mo>&#64831;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#64863;</mo>+      </mtd> +      <mtd>+        <mo>&#64879;</mo>+      </mtd> +      <mtd>+        <mo>&#64895;</mo>+      </mtd> +      <mtd>+        <mo>&#64911;</mo>+      </mtd> +      <mtd>+        <mo>&#64927;</mo>+      </mtd> +      <mtd>+        <mo>&#64943;</mo>+      </mtd> +      <mtd>+        <mo>&#64959;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "FB5" ]+      , [ EText TextNormal "FB6" ]+      , [ EText TextNormal "FB7" ]+      , [ EText TextNormal "FB8" ]+      , [ EText TextNormal "FB9" ]+      , [ EText TextNormal "FBA" ]+      , [ EText TextNormal "FBB" ]+      , [ EText TextNormal "FBC" ]+      , [ EText TextNormal "FBD" ]+      , [ EText TextNormal "FBE" ]+      , [ EText TextNormal "FBF" ]+      , [ EText TextNormal "FC0" ]+      , [ EText TextNormal "FC1" ]+      , [ EText TextNormal "FC2" ]+      , [ EText TextNormal "FC3" ]+      , [ EText TextNormal "FC4" ]+      , [ EText TextNormal "FC5" ]+      , [ EText TextNormal "FC6" ]+      , [ EText TextNormal "FC7" ]+      , [ EText TextNormal "FC8" ]+      , [ EText TextNormal "FC9" ]+      , [ EText TextNormal "FCA" ]+      , [ EText TextNormal "FCB" ]+      , [ EText TextNormal "FCC" ]+      , [ EText TextNormal "FCD" ]+      , [ EText TextNormal "FCE" ]+      , [ EText TextNormal "FCF" ]+      , [ EText TextNormal "FD0" ]+      , [ EText TextNormal "FD1" ]+      , [ EText TextNormal "FD2" ]+      , [ EText TextNormal "FD3" ]+      , [ EText TextNormal "FD4" ]+      , [ EText TextNormal "FD5" ]+      , [ EText TextNormal "FD6" ]+      , [ EText TextNormal "FD7" ]+      , [ EText TextNormal "FD8" ]+      , [ EText TextNormal "FD9" ]+      , [ EText TextNormal "FDA" ]+      , [ EText TextNormal "FDB" ]+      , [ EText TextNormal "FDC" ]+      , [ EText TextNormal "FDD" ]+      , [ EText TextNormal "FDE" ]+      , [ EText TextNormal "FDF" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\64336" ]+      , [ ESymbol Ord "\64352" ]+      , [ ESymbol Ord "\64368" ]+      , [ ESymbol Ord "\64384" ]+      , [ ESymbol Ord "\64400" ]+      , [ ESymbol Ord "\64416" ]+      , [ ESymbol Ord "\64432" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64480" ]+      , [ ESymbol Ord "\64496" ]+      , [ ESymbol Ord "\64512" ]+      , [ ESymbol Ord "\64528" ]+      , [ ESymbol Ord "\64544" ]+      , [ ESymbol Ord "\64560" ]+      , [ ESymbol Ord "\64576" ]+      , [ ESymbol Ord "\64592" ]+      , [ ESymbol Ord "\64608" ]+      , [ ESymbol Ord "\64624" ]+      , [ ESymbol Ord "\64640" ]+      , [ ESymbol Ord "\64656" ]+      , [ ESymbol Ord "\64672" ]+      , [ ESymbol Ord "\64688" ]+      , [ ESymbol Ord "\64704" ]+      , [ ESymbol Ord "\64720" ]+      , [ ESymbol Ord "\64736" ]+      , [ ESymbol Ord "\64752" ]+      , [ ESymbol Ord "\64768" ]+      , [ ESymbol Ord "\64784" ]+      , [ ESymbol Ord "\64800" ]+      , [ ESymbol Ord "\64816" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64848" ]+      , [ ESymbol Ord "\64864" ]+      , [ ESymbol Ord "\64880" ]+      , [ ESymbol Ord "\64896" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64928" ]+      , [ ESymbol Ord "\64944" ]+      , [ ESymbol Ord "\64960" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65008" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\64337" ]+      , [ ESymbol Ord "\64353" ]+      , [ ESymbol Ord "\64369" ]+      , [ ESymbol Ord "\64385" ]+      , [ ESymbol Ord "\64401" ]+      , [ ESymbol Ord "\64417" ]+      , [ ESymbol Ord "\64433" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64481" ]+      , [ ESymbol Ord "\64497" ]+      , [ ESymbol Ord "\64513" ]+      , [ ESymbol Ord "\64529" ]+      , [ ESymbol Ord "\64545" ]+      , [ ESymbol Ord "\64561" ]+      , [ ESymbol Ord "\64577" ]+      , [ ESymbol Ord "\64593" ]+      , [ ESymbol Ord "\64609" ]+      , [ ESymbol Ord "\64625" ]+      , [ ESymbol Ord "\64641" ]+      , [ ESymbol Ord "\64657" ]+      , [ ESymbol Ord "\64673" ]+      , [ ESymbol Ord "\64689" ]+      , [ ESymbol Ord "\64705" ]+      , [ ESymbol Ord "\64721" ]+      , [ ESymbol Ord "\64737" ]+      , [ ESymbol Ord "\64753" ]+      , [ ESymbol Ord "\64769" ]+      , [ ESymbol Ord "\64785" ]+      , [ ESymbol Ord "\64801" ]+      , [ ESymbol Ord "\64817" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64849" ]+      , [ ESymbol Ord "\64865" ]+      , [ ESymbol Ord "\64881" ]+      , [ ESymbol Ord "\64897" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64929" ]+      , [ ESymbol Ord "\64945" ]+      , [ ESymbol Ord "\64961" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65009" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\64338" ]+      , [ ESymbol Ord "\64354" ]+      , [ ESymbol Ord "\64370" ]+      , [ ESymbol Ord "\64386" ]+      , [ ESymbol Ord "\64402" ]+      , [ ESymbol Ord "\64418" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64482" ]+      , [ ESymbol Ord "\64498" ]+      , [ ESymbol Ord "\64514" ]+      , [ ESymbol Ord "\64530" ]+      , [ ESymbol Ord "\64546" ]+      , [ ESymbol Ord "\64562" ]+      , [ ESymbol Ord "\64578" ]+      , [ ESymbol Ord "\64594" ]+      , [ ESymbol Ord "\64610" ]+      , [ ESymbol Ord "\64626" ]+      , [ ESymbol Ord "\64642" ]+      , [ ESymbol Ord "\64658" ]+      , [ ESymbol Ord "\64674" ]+      , [ ESymbol Ord "\64690" ]+      , [ ESymbol Ord "\64706" ]+      , [ ESymbol Ord "\64722" ]+      , [ ESymbol Ord "\64738" ]+      , [ ESymbol Ord "\64754" ]+      , [ ESymbol Ord "\64770" ]+      , [ ESymbol Ord "\64786" ]+      , [ ESymbol Ord "\64802" ]+      , [ ESymbol Ord "\64818" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64850" ]+      , [ ESymbol Ord "\64866" ]+      , [ ESymbol Ord "\64882" ]+      , [ ESymbol Ord "\64898" ]+      , [ ESymbol Ord "\64914" ]+      , [ ESymbol Ord "\64930" ]+      , [ ESymbol Ord "\64946" ]+      , [ ESymbol Ord "\64962" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65010" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\64339" ]+      , [ ESymbol Ord "\64355" ]+      , [ ESymbol Ord "\64371" ]+      , [ ESymbol Ord "\64387" ]+      , [ ESymbol Ord "\64403" ]+      , [ ESymbol Ord "\64419" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64467" ]+      , [ ESymbol Ord "\64483" ]+      , [ ESymbol Ord "\64499" ]+      , [ ESymbol Ord "\64515" ]+      , [ ESymbol Ord "\64531" ]+      , [ ESymbol Ord "\64547" ]+      , [ ESymbol Ord "\64563" ]+      , [ ESymbol Ord "\64579" ]+      , [ ESymbol Ord "\64595" ]+      , [ ESymbol Ord "\64611" ]+      , [ ESymbol Ord "\64627" ]+      , [ ESymbol Ord "\64643" ]+      , [ ESymbol Ord "\64659" ]+      , [ ESymbol Ord "\64675" ]+      , [ ESymbol Ord "\64691" ]+      , [ ESymbol Ord "\64707" ]+      , [ ESymbol Ord "\64723" ]+      , [ ESymbol Ord "\64739" ]+      , [ ESymbol Ord "\64755" ]+      , [ ESymbol Ord "\64771" ]+      , [ ESymbol Ord "\64787" ]+      , [ ESymbol Ord "\64803" ]+      , [ ESymbol Ord "\64819" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64851" ]+      , [ ESymbol Ord "\64867" ]+      , [ ESymbol Ord "\64883" ]+      , [ ESymbol Ord "\64899" ]+      , [ ESymbol Ord "\64915" ]+      , [ ESymbol Ord "\64931" ]+      , [ ESymbol Ord "\64947" ]+      , [ ESymbol Ord "\64963" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65011" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\64340" ]+      , [ ESymbol Ord "\64356" ]+      , [ ESymbol Ord "\64372" ]+      , [ ESymbol Ord "\64388" ]+      , [ ESymbol Ord "\64404" ]+      , [ ESymbol Ord "\64420" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64468" ]+      , [ ESymbol Ord "\64484" ]+      , [ ESymbol Ord "\64500" ]+      , [ ESymbol Ord "\64516" ]+      , [ ESymbol Ord "\64532" ]+      , [ ESymbol Ord "\64548" ]+      , [ ESymbol Ord "\64564" ]+      , [ ESymbol Ord "\64580" ]+      , [ ESymbol Ord "\64596" ]+      , [ ESymbol Ord "\64612" ]+      , [ ESymbol Ord "\64628" ]+      , [ ESymbol Ord "\64644" ]+      , [ ESymbol Ord "\64660" ]+      , [ ESymbol Ord "\64676" ]+      , [ ESymbol Ord "\64692" ]+      , [ ESymbol Ord "\64708" ]+      , [ ESymbol Ord "\64724" ]+      , [ ESymbol Ord "\64740" ]+      , [ ESymbol Ord "\64756" ]+      , [ ESymbol Ord "\64772" ]+      , [ ESymbol Ord "\64788" ]+      , [ ESymbol Ord "\64804" ]+      , [ ESymbol Ord "\64820" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64852" ]+      , [ ESymbol Ord "\64868" ]+      , [ ESymbol Ord "\64884" ]+      , [ ESymbol Ord "\64900" ]+      , [ ESymbol Ord "\64916" ]+      , [ ESymbol Ord "\64932" ]+      , [ ESymbol Ord "\64948" ]+      , [ ESymbol Ord "\64964" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65012" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\64341" ]+      , [ ESymbol Ord "\64357" ]+      , [ ESymbol Ord "\64373" ]+      , [ ESymbol Ord "\64389" ]+      , [ ESymbol Ord "\64405" ]+      , [ ESymbol Ord "\64421" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64469" ]+      , [ ESymbol Ord "\64485" ]+      , [ ESymbol Ord "\64501" ]+      , [ ESymbol Ord "\64517" ]+      , [ ESymbol Ord "\64533" ]+      , [ ESymbol Ord "\64549" ]+      , [ ESymbol Ord "\64565" ]+      , [ ESymbol Ord "\64581" ]+      , [ ESymbol Ord "\64597" ]+      , [ ESymbol Ord "\64613" ]+      , [ ESymbol Ord "\64629" ]+      , [ ESymbol Ord "\64645" ]+      , [ ESymbol Ord "\64661" ]+      , [ ESymbol Ord "\64677" ]+      , [ ESymbol Ord "\64693" ]+      , [ ESymbol Ord "\64709" ]+      , [ ESymbol Ord "\64725" ]+      , [ ESymbol Ord "\64741" ]+      , [ ESymbol Ord "\64757" ]+      , [ ESymbol Ord "\64773" ]+      , [ ESymbol Ord "\64789" ]+      , [ ESymbol Ord "\64805" ]+      , [ ESymbol Ord "\64821" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64853" ]+      , [ ESymbol Ord "\64869" ]+      , [ ESymbol Ord "\64885" ]+      , [ ESymbol Ord "\64901" ]+      , [ ESymbol Ord "\64917" ]+      , [ ESymbol Ord "\64933" ]+      , [ ESymbol Ord "\64949" ]+      , [ ESymbol Ord "\64965" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65013" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\64342" ]+      , [ ESymbol Ord "\64358" ]+      , [ ESymbol Ord "\64374" ]+      , [ ESymbol Ord "\64390" ]+      , [ ESymbol Ord "\64406" ]+      , [ ESymbol Ord "\64422" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64470" ]+      , [ ESymbol Ord "\64486" ]+      , [ ESymbol Ord "\64502" ]+      , [ ESymbol Ord "\64518" ]+      , [ ESymbol Ord "\64534" ]+      , [ ESymbol Ord "\64550" ]+      , [ ESymbol Ord "\64566" ]+      , [ ESymbol Ord "\64582" ]+      , [ ESymbol Ord "\64598" ]+      , [ ESymbol Ord "\64614" ]+      , [ ESymbol Ord "\64630" ]+      , [ ESymbol Ord "\64646" ]+      , [ ESymbol Ord "\64662" ]+      , [ ESymbol Ord "\64678" ]+      , [ ESymbol Ord "\64694" ]+      , [ ESymbol Ord "\64710" ]+      , [ ESymbol Ord "\64726" ]+      , [ ESymbol Ord "\64742" ]+      , [ ESymbol Ord "\64758" ]+      , [ ESymbol Ord "\64774" ]+      , [ ESymbol Ord "\64790" ]+      , [ ESymbol Ord "\64806" ]+      , [ ESymbol Ord "\64822" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64854" ]+      , [ ESymbol Ord "\64870" ]+      , [ ESymbol Ord "\64886" ]+      , [ ESymbol Ord "\64902" ]+      , [ ESymbol Ord "\64918" ]+      , [ ESymbol Ord "\64934" ]+      , [ ESymbol Ord "\64950" ]+      , [ ESymbol Ord "\64966" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65014" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\64343" ]+      , [ ESymbol Ord "\64359" ]+      , [ ESymbol Ord "\64375" ]+      , [ ESymbol Ord "\64391" ]+      , [ ESymbol Ord "\64407" ]+      , [ ESymbol Ord "\64423" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64471" ]+      , [ ESymbol Ord "\64487" ]+      , [ ESymbol Ord "\64503" ]+      , [ ESymbol Ord "\64519" ]+      , [ ESymbol Ord "\64535" ]+      , [ ESymbol Ord "\64551" ]+      , [ ESymbol Ord "\64567" ]+      , [ ESymbol Ord "\64583" ]+      , [ ESymbol Ord "\64599" ]+      , [ ESymbol Ord "\64615" ]+      , [ ESymbol Ord "\64631" ]+      , [ ESymbol Ord "\64647" ]+      , [ ESymbol Ord "\64663" ]+      , [ ESymbol Ord "\64679" ]+      , [ ESymbol Ord "\64695" ]+      , [ ESymbol Ord "\64711" ]+      , [ ESymbol Ord "\64727" ]+      , [ ESymbol Ord "\64743" ]+      , [ ESymbol Ord "\64759" ]+      , [ ESymbol Ord "\64775" ]+      , [ ESymbol Ord "\64791" ]+      , [ ESymbol Ord "\64807" ]+      , [ ESymbol Ord "\64823" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64855" ]+      , [ ESymbol Ord "\64871" ]+      , [ ESymbol Ord "\64887" ]+      , [ ESymbol Ord "\64903" ]+      , [ ESymbol Ord "\64919" ]+      , [ ESymbol Ord "\64935" ]+      , [ ESymbol Ord "\64951" ]+      , [ ESymbol Ord "\64967" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65015" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\64344" ]+      , [ ESymbol Ord "\64360" ]+      , [ ESymbol Ord "\64376" ]+      , [ ESymbol Ord "\64392" ]+      , [ ESymbol Ord "\64408" ]+      , [ ESymbol Ord "\64424" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64472" ]+      , [ ESymbol Ord "\64488" ]+      , [ ESymbol Ord "\64504" ]+      , [ ESymbol Ord "\64520" ]+      , [ ESymbol Ord "\64536" ]+      , [ ESymbol Ord "\64552" ]+      , [ ESymbol Ord "\64568" ]+      , [ ESymbol Ord "\64584" ]+      , [ ESymbol Ord "\64600" ]+      , [ ESymbol Ord "\64616" ]+      , [ ESymbol Ord "\64632" ]+      , [ ESymbol Ord "\64648" ]+      , [ ESymbol Ord "\64664" ]+      , [ ESymbol Ord "\64680" ]+      , [ ESymbol Ord "\64696" ]+      , [ ESymbol Ord "\64712" ]+      , [ ESymbol Ord "\64728" ]+      , [ ESymbol Ord "\64744" ]+      , [ ESymbol Ord "\64760" ]+      , [ ESymbol Ord "\64776" ]+      , [ ESymbol Ord "\64792" ]+      , [ ESymbol Ord "\64808" ]+      , [ ESymbol Ord "\64824" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64856" ]+      , [ ESymbol Ord "\64872" ]+      , [ ESymbol Ord "\64888" ]+      , [ ESymbol Ord "\64904" ]+      , [ ESymbol Ord "\64920" ]+      , [ ESymbol Ord "\64936" ]+      , [ ESymbol Ord "\64952" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65016" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\64345" ]+      , [ ESymbol Ord "\64361" ]+      , [ ESymbol Ord "\64377" ]+      , [ ESymbol Ord "\64393" ]+      , [ ESymbol Ord "\64409" ]+      , [ ESymbol Ord "\64425" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64473" ]+      , [ ESymbol Ord "\64489" ]+      , [ ESymbol Ord "\64505" ]+      , [ ESymbol Ord "\64521" ]+      , [ ESymbol Ord "\64537" ]+      , [ ESymbol Ord "\64553" ]+      , [ ESymbol Ord "\64569" ]+      , [ ESymbol Ord "\64585" ]+      , [ ESymbol Ord "\64601" ]+      , [ ESymbol Ord "\64617" ]+      , [ ESymbol Ord "\64633" ]+      , [ ESymbol Ord "\64649" ]+      , [ ESymbol Ord "\64665" ]+      , [ ESymbol Ord "\64681" ]+      , [ ESymbol Ord "\64697" ]+      , [ ESymbol Ord "\64713" ]+      , [ ESymbol Ord "\64729" ]+      , [ ESymbol Ord "\64745" ]+      , [ ESymbol Ord "\64761" ]+      , [ ESymbol Ord "\64777" ]+      , [ ESymbol Ord "\64793" ]+      , [ ESymbol Ord "\64809" ]+      , [ ESymbol Ord "\64825" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64857" ]+      , [ ESymbol Ord "\64873" ]+      , [ ESymbol Ord "\64889" ]+      , [ ESymbol Ord "\64905" ]+      , [ ESymbol Ord "\64921" ]+      , [ ESymbol Ord "\64937" ]+      , [ ESymbol Ord "\64953" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65017" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\64346" ]+      , [ ESymbol Ord "\64362" ]+      , [ ESymbol Ord "\64378" ]+      , [ ESymbol Ord "\64394" ]+      , [ ESymbol Ord "\64410" ]+      , [ ESymbol Ord "\64426" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64474" ]+      , [ ESymbol Ord "\64490" ]+      , [ ESymbol Ord "\64506" ]+      , [ ESymbol Ord "\64522" ]+      , [ ESymbol Ord "\64538" ]+      , [ ESymbol Ord "\64554" ]+      , [ ESymbol Ord "\64570" ]+      , [ ESymbol Ord "\64586" ]+      , [ ESymbol Ord "\64602" ]+      , [ ESymbol Ord "\64618" ]+      , [ ESymbol Ord "\64634" ]+      , [ ESymbol Ord "\64650" ]+      , [ ESymbol Ord "\64666" ]+      , [ ESymbol Ord "\64682" ]+      , [ ESymbol Ord "\64698" ]+      , [ ESymbol Ord "\64714" ]+      , [ ESymbol Ord "\64730" ]+      , [ ESymbol Ord "\64746" ]+      , [ ESymbol Ord "\64762" ]+      , [ ESymbol Ord "\64778" ]+      , [ ESymbol Ord "\64794" ]+      , [ ESymbol Ord "\64810" ]+      , [ ESymbol Ord "\64826" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64858" ]+      , [ ESymbol Ord "\64874" ]+      , [ ESymbol Ord "\64890" ]+      , [ ESymbol Ord "\64906" ]+      , [ ESymbol Ord "\64922" ]+      , [ ESymbol Ord "\64938" ]+      , [ ESymbol Ord "\64954" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65018" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\64347" ]+      , [ ESymbol Ord "\64363" ]+      , [ ESymbol Ord "\64379" ]+      , [ ESymbol Ord "\64395" ]+      , [ ESymbol Ord "\64411" ]+      , [ ESymbol Ord "\64427" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64475" ]+      , [ ESymbol Ord "\64491" ]+      , [ ESymbol Ord "\64507" ]+      , [ ESymbol Ord "\64523" ]+      , [ ESymbol Ord "\64539" ]+      , [ ESymbol Ord "\64555" ]+      , [ ESymbol Ord "\64571" ]+      , [ ESymbol Ord "\64587" ]+      , [ ESymbol Ord "\64603" ]+      , [ ESymbol Ord "\64619" ]+      , [ ESymbol Ord "\64635" ]+      , [ ESymbol Ord "\64651" ]+      , [ ESymbol Ord "\64667" ]+      , [ ESymbol Ord "\64683" ]+      , [ ESymbol Ord "\64699" ]+      , [ ESymbol Ord "\64715" ]+      , [ ESymbol Ord "\64731" ]+      , [ ESymbol Ord "\64747" ]+      , [ ESymbol Ord "\64763" ]+      , [ ESymbol Ord "\64779" ]+      , [ ESymbol Ord "\64795" ]+      , [ ESymbol Ord "\64811" ]+      , [ ESymbol Ord "\64827" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64859" ]+      , [ ESymbol Ord "\64875" ]+      , [ ESymbol Ord "\64891" ]+      , [ ESymbol Ord "\64907" ]+      , [ ESymbol Ord "\64923" ]+      , [ ESymbol Ord "\64939" ]+      , [ ESymbol Ord "\64955" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65019" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\64348" ]+      , [ ESymbol Ord "\64364" ]+      , [ ESymbol Ord "\64380" ]+      , [ ESymbol Ord "\64396" ]+      , [ ESymbol Ord "\64412" ]+      , [ ESymbol Ord "\64428" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64476" ]+      , [ ESymbol Ord "\64492" ]+      , [ ESymbol Ord "\64508" ]+      , [ ESymbol Ord "\64524" ]+      , [ ESymbol Ord "\64540" ]+      , [ ESymbol Ord "\64556" ]+      , [ ESymbol Ord "\64572" ]+      , [ ESymbol Ord "\64588" ]+      , [ ESymbol Ord "\64604" ]+      , [ ESymbol Ord "\64620" ]+      , [ ESymbol Ord "\64636" ]+      , [ ESymbol Ord "\64652" ]+      , [ ESymbol Ord "\64668" ]+      , [ ESymbol Ord "\64684" ]+      , [ ESymbol Ord "\64700" ]+      , [ ESymbol Ord "\64716" ]+      , [ ESymbol Ord "\64732" ]+      , [ ESymbol Ord "\64748" ]+      , [ ESymbol Ord "\64764" ]+      , [ ESymbol Ord "\64780" ]+      , [ ESymbol Ord "\64796" ]+      , [ ESymbol Ord "\64812" ]+      , [ ESymbol Ord "\64828" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64860" ]+      , [ ESymbol Ord "\64876" ]+      , [ ESymbol Ord "\64892" ]+      , [ ESymbol Ord "\64908" ]+      , [ ESymbol Ord "\64924" ]+      , [ ESymbol Ord "\64940" ]+      , [ ESymbol Ord "\64956" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65020" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\64349" ]+      , [ ESymbol Ord "\64365" ]+      , [ ESymbol Ord "\64381" ]+      , [ ESymbol Ord "\64397" ]+      , [ ESymbol Ord "\64413" ]+      , [ ESymbol Ord "\64429" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64477" ]+      , [ ESymbol Ord "\64493" ]+      , [ ESymbol Ord "\64509" ]+      , [ ESymbol Ord "\64525" ]+      , [ ESymbol Ord "\64541" ]+      , [ ESymbol Ord "\64557" ]+      , [ ESymbol Ord "\64573" ]+      , [ ESymbol Ord "\64589" ]+      , [ ESymbol Ord "\64605" ]+      , [ ESymbol Ord "\64621" ]+      , [ ESymbol Ord "\64637" ]+      , [ ESymbol Ord "\64653" ]+      , [ ESymbol Ord "\64669" ]+      , [ ESymbol Ord "\64685" ]+      , [ ESymbol Ord "\64701" ]+      , [ ESymbol Ord "\64717" ]+      , [ ESymbol Ord "\64733" ]+      , [ ESymbol Ord "\64749" ]+      , [ ESymbol Ord "\64765" ]+      , [ ESymbol Ord "\64781" ]+      , [ ESymbol Ord "\64797" ]+      , [ ESymbol Ord "\64813" ]+      , [ ESymbol Ord "\64829" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64861" ]+      , [ ESymbol Ord "\64877" ]+      , [ ESymbol Ord "\64893" ]+      , [ ESymbol Ord "\64909" ]+      , [ ESymbol Ord "\64925" ]+      , [ ESymbol Ord "\64941" ]+      , [ ESymbol Ord "\64957" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65021" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\64350" ]+      , [ ESymbol Ord "\64366" ]+      , [ ESymbol Ord "\64382" ]+      , [ ESymbol Ord "\64398" ]+      , [ ESymbol Ord "\64414" ]+      , [ ESymbol Ord "\64430" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64478" ]+      , [ ESymbol Ord "\64494" ]+      , [ ESymbol Ord "\64510" ]+      , [ ESymbol Ord "\64526" ]+      , [ ESymbol Ord "\64542" ]+      , [ ESymbol Ord "\64558" ]+      , [ ESymbol Ord "\64574" ]+      , [ ESymbol Ord "\64590" ]+      , [ ESymbol Ord "\64606" ]+      , [ ESymbol Ord "\64622" ]+      , [ ESymbol Ord "\64638" ]+      , [ ESymbol Ord "\64654" ]+      , [ ESymbol Ord "\64670" ]+      , [ ESymbol Ord "\64686" ]+      , [ ESymbol Ord "\64702" ]+      , [ ESymbol Ord "\64718" ]+      , [ ESymbol Ord "\64734" ]+      , [ ESymbol Ord "\64750" ]+      , [ ESymbol Ord "\64766" ]+      , [ ESymbol Ord "\64782" ]+      , [ ESymbol Ord "\64798" ]+      , [ ESymbol Ord "\64814" ]+      , [ ESymbol Ord "\64830" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64862" ]+      , [ ESymbol Ord "\64878" ]+      , [ ESymbol Ord "\64894" ]+      , [ ESymbol Ord "\64910" ]+      , [ ESymbol Ord "\64926" ]+      , [ ESymbol Ord "\64942" ]+      , [ ESymbol Ord "\64958" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\64351" ]+      , [ ESymbol Ord "\64367" ]+      , [ ESymbol Ord "\64383" ]+      , [ ESymbol Ord "\64399" ]+      , [ ESymbol Ord "\64415" ]+      , [ ESymbol Ord "\64431" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64479" ]+      , [ ESymbol Ord "\64495" ]+      , [ ESymbol Ord "\64511" ]+      , [ ESymbol Ord "\64527" ]+      , [ ESymbol Ord "\64543" ]+      , [ ESymbol Ord "\64559" ]+      , [ ESymbol Ord "\64575" ]+      , [ ESymbol Ord "\64591" ]+      , [ ESymbol Ord "\64607" ]+      , [ ESymbol Ord "\64623" ]+      , [ ESymbol Ord "\64639" ]+      , [ ESymbol Ord "\64655" ]+      , [ ESymbol Ord "\64671" ]+      , [ ESymbol Ord "\64687" ]+      , [ ESymbol Ord "\64703" ]+      , [ ESymbol Ord "\64719" ]+      , [ ESymbol Ord "\64735" ]+      , [ ESymbol Ord "\64751" ]+      , [ ESymbol Ord "\64767" ]+      , [ ESymbol Ord "\64783" ]+      , [ ESymbol Ord "\64799" ]+      , [ ESymbol Ord "\64815" ]+      , [ ESymbol Ord "\64831" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\64863" ]+      , [ ESymbol Ord "\64879" ]+      , [ ESymbol Ord "\64895" ]+      , [ ESymbol Ord "\64911" ]+      , [ ESymbol Ord "\64927" ]+      , [ ESymbol Ord "\64943" ]+      , [ ESymbol Ord "\64959" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/0FE00_Variation_Selectors.test view
@@ -0,0 +1,161 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>FE0</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#65024;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#65025;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#65026;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#65027;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#65028;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#65029;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#65030;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#65031;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#65032;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#65033;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#65034;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#65035;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#65036;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#65037;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#65038;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#65039;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [] , [ EText TextNormal "FE0" ] ]+    , [ [ EText TextNormal "0" ] , [ ESymbol Accent "\65024" ] ]+    , [ [ EText TextNormal "1" ] , [ ESymbol Ord "\65025" ] ]+    , [ [ EText TextNormal "2" ] , [ ESymbol Ord "\65026" ] ]+    , [ [ EText TextNormal "3" ] , [ ESymbol Ord "\65027" ] ]+    , [ [ EText TextNormal "4" ] , [ ESymbol Ord "\65028" ] ]+    , [ [ EText TextNormal "5" ] , [ ESymbol Ord "\65029" ] ]+    , [ [ EText TextNormal "6" ] , [ ESymbol Ord "\65030" ] ]+    , [ [ EText TextNormal "7" ] , [ ESymbol Ord "\65031" ] ]+    , [ [ EText TextNormal "8" ] , [ ESymbol Ord "\65032" ] ]+    , [ [ EText TextNormal "9" ] , [ ESymbol Ord "\65033" ] ]+    , [ [ EText TextNormal "A" ] , [ ESymbol Ord "\65034" ] ]+    , [ [ EText TextNormal "B" ] , [ ESymbol Ord "\65035" ] ]+    , [ [ EText TextNormal "C" ] , [ ESymbol Ord "\65036" ] ]+    , [ [ EText TextNormal "D" ] , [ ESymbol Ord "\65037" ] ]+    , [ [ EText TextNormal "E" ] , [ ESymbol Ord "\65038" ] ]+    , [ [ EText TextNormal "F" ] , [ ESymbol Ord "\65039" ] ]+    ]+]
+ test/reader/mml/0FE10_Vertical_Forms.test view
@@ -0,0 +1,161 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>FE1</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#65040;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#65041;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#65042;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#65043;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#65044;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#65045;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#65046;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#65047;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#65048;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#65049;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [] , [ EText TextNormal "FE1" ] ]+    , [ [ EText TextNormal "0" ] , [ ESymbol Ord "\65040" ] ]+    , [ [ EText TextNormal "1" ] , [ ESymbol Ord "\65041" ] ]+    , [ [ EText TextNormal "2" ] , [ ESymbol Ord "\65042" ] ]+    , [ [ EText TextNormal "3" ] , [ ESymbol Ord "\65043" ] ]+    , [ [ EText TextNormal "4" ] , [ ESymbol Ord "\65044" ] ]+    , [ [ EText TextNormal "5" ] , [ ESymbol Ord "\65045" ] ]+    , [ [ EText TextNormal "6" ] , [ ESymbol Ord "\65046" ] ]+    , [ [ EText TextNormal "7" ] , [ ESymbol Ord "\65047" ] ]+    , [ [ EText TextNormal "8" ] , [ ESymbol Ord "\65048" ] ]+    , [ [ EText TextNormal "9" ] , [ ESymbol Ord "\65049" ] ]+    , [ [ EText TextNormal "A" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "B" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "C" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "D" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "E" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "F" ] , [ ESymbol Ord "@" ] ]+    ]+]
+ test/reader/mml/0FE20_Combining_Half_Marks.test view
@@ -0,0 +1,161 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>FE2</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#65056;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#65057;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#65058;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#65059;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#65060;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#65061;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#65062;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [] , [ EText TextNormal "FE2" ] ]+    , [ [ EText TextNormal "0" ] , [ ESymbol Ord "\65056" ] ]+    , [ [ EText TextNormal "1" ] , [ ESymbol Ord "\65057" ] ]+    , [ [ EText TextNormal "2" ] , [ ESymbol Ord "\65058" ] ]+    , [ [ EText TextNormal "3" ] , [ ESymbol Ord "\65059" ] ]+    , [ [ EText TextNormal "4" ] , [ ESymbol Ord "\65060" ] ]+    , [ [ EText TextNormal "5" ] , [ ESymbol Ord "\65061" ] ]+    , [ [ EText TextNormal "6" ] , [ ESymbol Ord "\65062" ] ]+    , [ [ EText TextNormal "7" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "8" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "9" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "A" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "B" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "C" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "D" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "E" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "F" ] , [ ESymbol Ord "@" ] ]+    ]+]
+ test/reader/mml/0FE30_CJK_Compatibility_Forms.test view
@@ -0,0 +1,260 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>FE3</mtext>+      </mtd> +      <mtd>+        <mtext>FE4</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#65072;</mo>+      </mtd> +      <mtd>+        <mo>&#65088;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#65073;</mo>+      </mtd> +      <mtd>+        <mo>&#65089;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#65074;</mo>+      </mtd> +      <mtd>+        <mo>&#65090;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#65075;</mo>+      </mtd> +      <mtd>+        <mo>&#65091;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#65076;</mo>+      </mtd> +      <mtd>+        <mo>&#65092;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#65077;</mo>+      </mtd> +      <mtd>+        <mo>&#65093;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#65078;</mo>+      </mtd> +      <mtd>+        <mo>&#65094;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#65079;</mo>+      </mtd> +      <mtd>+        <mo>&#65095;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#65080;</mo>+      </mtd> +      <mtd>+        <mo>&#65096;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#65081;</mo>+      </mtd> +      <mtd>+        <mo>&#65097;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#65082;</mo>+      </mtd> +      <mtd>+        <mo>&#65098;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#65083;</mo>+      </mtd> +      <mtd>+        <mo>&#65099;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#65084;</mo>+      </mtd> +      <mtd>+        <mo>&#65100;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#65085;</mo>+      </mtd> +      <mtd>+        <mo>&#65101;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#65086;</mo>+      </mtd> +      <mtd>+        <mo>&#65102;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#65087;</mo>+      </mtd> +      <mtd>+        <mo>&#65103;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter ]+    [ [ [] , [ EText TextNormal "FE3" ] , [ EText TextNormal "FE4" ] ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\65072" ]+      , [ ESymbol Ord "\65088" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\65073" ]+      , [ ESymbol Ord "\65089" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\65074" ]+      , [ ESymbol Ord "\65090" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\65075" ]+      , [ ESymbol Ord "\65091" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\65076" ]+      , [ ESymbol Ord "\65092" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\65077" ]+      , [ ESymbol Ord "\65093" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\65078" ]+      , [ ESymbol Ord "\65094" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Accent "\65079" ]+      , [ ESymbol Ord "\65095" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Accent "\65080" ]+      , [ ESymbol Ord "\65096" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\65081" ]+      , [ ESymbol Ord "\65097" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\65082" ]+      , [ ESymbol Ord "\65098" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\65083" ]+      , [ ESymbol Ord "\65099" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\65084" ]+      , [ ESymbol Ord "\65100" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\65085" ]+      , [ ESymbol Ord "\65101" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\65086" ]+      , [ ESymbol Ord "\65102" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\65087" ]+      , [ ESymbol Ord "\65103" ]+      ]+    ]+]
+ test/reader/mml/0FE50_Small_Form_Variants.test view
@@ -0,0 +1,260 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>FE5</mtext>+      </mtd> +      <mtd>+        <mtext>FE6</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#65104;</mo>+      </mtd> +      <mtd>+        <mo>&#65120;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#65105;</mo>+      </mtd> +      <mtd>+        <mo>&#65121;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#65106;</mo>+      </mtd> +      <mtd>+        <mo>&#65122;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65123;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#65108;</mo>+      </mtd> +      <mtd>+        <mo>&#65124;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#65109;</mo>+      </mtd> +      <mtd>+        <mo>&#65125;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#65110;</mo>+      </mtd> +      <mtd>+        <mo>&#65126;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#65111;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#65112;</mo>+      </mtd> +      <mtd>+        <mo>&#65128;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#65113;</mo>+      </mtd> +      <mtd>+        <mo>&#65129;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#65114;</mo>+      </mtd> +      <mtd>+        <mo>&#65130;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#65115;</mo>+      </mtd> +      <mtd>+        <mo>&#65131;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#65116;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#65117;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#65118;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#65119;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter ]+    [ [ [] , [ EText TextNormal "FE5" ] , [ EText TextNormal "FE6" ] ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\65104" ]+      , [ ESymbol Ord "\65120" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\65105" ]+      , [ ESymbol Ord "\65121" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\65106" ]+      , [ ESymbol Ord "\65122" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65123" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\65108" ]+      , [ ESymbol Ord "\65124" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "\65109" ]+      , [ ESymbol Ord "\65125" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\65110" ]+      , [ ESymbol Ord "\65126" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\65111" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\65112" ]+      , [ ESymbol Ord "\65128" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\65113" ]+      , [ ESymbol Ord "\65129" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\65114" ]+      , [ ESymbol Ord "\65130" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\65115" ]+      , [ ESymbol Ord "\65131" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\65116" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\65117" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\65118" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\65119" ]+      , [ ESymbol Ord "@" ]+      ]+    ]+]
+ test/reader/mml/0FE70_Arabic_Presentation_Forms-B.test view
@@ -0,0 +1,749 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>FE7</mtext>+      </mtd> +      <mtd>+        <mtext>FE8</mtext>+      </mtd> +      <mtd>+        <mtext>FE9</mtext>+      </mtd> +      <mtd>+        <mtext>FEA</mtext>+      </mtd> +      <mtd>+        <mtext>FEB</mtext>+      </mtd> +      <mtd>+        <mtext>FEC</mtext>+      </mtd> +      <mtd>+        <mtext>FED</mtext>+      </mtd> +      <mtd>+        <mtext>FEE</mtext>+      </mtd> +      <mtd>+        <mtext>FEF</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#65136;</mo>+      </mtd> +      <mtd>+        <mo>&#65152;</mo>+      </mtd> +      <mtd>+        <mo>&#65168;</mo>+      </mtd> +      <mtd>+        <mo>&#65184;</mo>+      </mtd> +      <mtd>+        <mo>&#65200;</mo>+      </mtd> +      <mtd>+        <mo>&#65216;</mo>+      </mtd> +      <mtd>+        <mo>&#65232;</mo>+      </mtd> +      <mtd>+        <mo>&#65248;</mo>+      </mtd> +      <mtd>+        <mo>&#65264;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#65137;</mo>+      </mtd> +      <mtd>+        <mo>&#65153;</mo>+      </mtd> +      <mtd>+        <mo>&#65169;</mo>+      </mtd> +      <mtd>+        <mo>&#65185;</mo>+      </mtd> +      <mtd>+        <mo>&#65201;</mo>+      </mtd> +      <mtd>+        <mo>&#65217;</mo>+      </mtd> +      <mtd>+        <mo>&#65233;</mo>+      </mtd> +      <mtd>+        <mo>&#65249;</mo>+      </mtd> +      <mtd>+        <mo>&#65265;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#65138;</mo>+      </mtd> +      <mtd>+        <mo>&#65154;</mo>+      </mtd> +      <mtd>+        <mo>&#65170;</mo>+      </mtd> +      <mtd>+        <mo>&#65186;</mo>+      </mtd> +      <mtd>+        <mo>&#65202;</mo>+      </mtd> +      <mtd>+        <mo>&#65218;</mo>+      </mtd> +      <mtd>+        <mo>&#65234;</mo>+      </mtd> +      <mtd>+        <mo>&#65250;</mo>+      </mtd> +      <mtd>+        <mo>&#65266;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#65139;</mo>+      </mtd> +      <mtd>+        <mo>&#65155;</mo>+      </mtd> +      <mtd>+        <mo>&#65171;</mo>+      </mtd> +      <mtd>+        <mo>&#65187;</mo>+      </mtd> +      <mtd>+        <mo>&#65203;</mo>+      </mtd> +      <mtd>+        <mo>&#65219;</mo>+      </mtd> +      <mtd>+        <mo>&#65235;</mo>+      </mtd> +      <mtd>+        <mo>&#65251;</mo>+      </mtd> +      <mtd>+        <mo>&#65267;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#65140;</mo>+      </mtd> +      <mtd>+        <mo>&#65156;</mo>+      </mtd> +      <mtd>+        <mo>&#65172;</mo>+      </mtd> +      <mtd>+        <mo>&#65188;</mo>+      </mtd> +      <mtd>+        <mo>&#65204;</mo>+      </mtd> +      <mtd>+        <mo>&#65220;</mo>+      </mtd> +      <mtd>+        <mo>&#65236;</mo>+      </mtd> +      <mtd>+        <mo>&#65252;</mo>+      </mtd> +      <mtd>+        <mo>&#65268;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#65157;</mo>+      </mtd> +      <mtd>+        <mo>&#65173;</mo>+      </mtd> +      <mtd>+        <mo>&#65189;</mo>+      </mtd> +      <mtd>+        <mo>&#65205;</mo>+      </mtd> +      <mtd>+        <mo>&#65221;</mo>+      </mtd> +      <mtd>+        <mo>&#65237;</mo>+      </mtd> +      <mtd>+        <mo>&#65253;</mo>+      </mtd> +      <mtd>+        <mo>&#65269;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#65142;</mo>+      </mtd> +      <mtd>+        <mo>&#65158;</mo>+      </mtd> +      <mtd>+        <mo>&#65174;</mo>+      </mtd> +      <mtd>+        <mo>&#65190;</mo>+      </mtd> +      <mtd>+        <mo>&#65206;</mo>+      </mtd> +      <mtd>+        <mo>&#65222;</mo>+      </mtd> +      <mtd>+        <mo>&#65238;</mo>+      </mtd> +      <mtd>+        <mo>&#65254;</mo>+      </mtd> +      <mtd>+        <mo>&#65270;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#65143;</mo>+      </mtd> +      <mtd>+        <mo>&#65159;</mo>+      </mtd> +      <mtd>+        <mo>&#65175;</mo>+      </mtd> +      <mtd>+        <mo>&#65191;</mo>+      </mtd> +      <mtd>+        <mo>&#65207;</mo>+      </mtd> +      <mtd>+        <mo>&#65223;</mo>+      </mtd> +      <mtd>+        <mo>&#65239;</mo>+      </mtd> +      <mtd>+        <mo>&#65255;</mo>+      </mtd> +      <mtd>+        <mo>&#65271;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#65144;</mo>+      </mtd> +      <mtd>+        <mo>&#65160;</mo>+      </mtd> +      <mtd>+        <mo>&#65176;</mo>+      </mtd> +      <mtd>+        <mo>&#65192;</mo>+      </mtd> +      <mtd>+        <mo>&#65208;</mo>+      </mtd> +      <mtd>+        <mo>&#65224;</mo>+      </mtd> +      <mtd>+        <mo>&#65240;</mo>+      </mtd> +      <mtd>+        <mo>&#65256;</mo>+      </mtd> +      <mtd>+        <mo>&#65272;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#65145;</mo>+      </mtd> +      <mtd>+        <mo>&#65161;</mo>+      </mtd> +      <mtd>+        <mo>&#65177;</mo>+      </mtd> +      <mtd>+        <mo>&#65193;</mo>+      </mtd> +      <mtd>+        <mo>&#65209;</mo>+      </mtd> +      <mtd>+        <mo>&#65225;</mo>+      </mtd> +      <mtd>+        <mo>&#65241;</mo>+      </mtd> +      <mtd>+        <mo>&#65257;</mo>+      </mtd> +      <mtd>+        <mo>&#65273;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#65146;</mo>+      </mtd> +      <mtd>+        <mo>&#65162;</mo>+      </mtd> +      <mtd>+        <mo>&#65178;</mo>+      </mtd> +      <mtd>+        <mo>&#65194;</mo>+      </mtd> +      <mtd>+        <mo>&#65210;</mo>+      </mtd> +      <mtd>+        <mo>&#65226;</mo>+      </mtd> +      <mtd>+        <mo>&#65242;</mo>+      </mtd> +      <mtd>+        <mo>&#65258;</mo>+      </mtd> +      <mtd>+        <mo>&#65274;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#65147;</mo>+      </mtd> +      <mtd>+        <mo>&#65163;</mo>+      </mtd> +      <mtd>+        <mo>&#65179;</mo>+      </mtd> +      <mtd>+        <mo>&#65195;</mo>+      </mtd> +      <mtd>+        <mo>&#65211;</mo>+      </mtd> +      <mtd>+        <mo>&#65227;</mo>+      </mtd> +      <mtd>+        <mo>&#65243;</mo>+      </mtd> +      <mtd>+        <mo>&#65259;</mo>+      </mtd> +      <mtd>+        <mo>&#65275;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#65148;</mo>+      </mtd> +      <mtd>+        <mo>&#65164;</mo>+      </mtd> +      <mtd>+        <mo>&#65180;</mo>+      </mtd> +      <mtd>+        <mo>&#65196;</mo>+      </mtd> +      <mtd>+        <mo>&#65212;</mo>+      </mtd> +      <mtd>+        <mo>&#65228;</mo>+      </mtd> +      <mtd>+        <mo>&#65244;</mo>+      </mtd> +      <mtd>+        <mo>&#65260;</mo>+      </mtd> +      <mtd>+        <mo>&#65276;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#65149;</mo>+      </mtd> +      <mtd>+        <mo>&#65165;</mo>+      </mtd> +      <mtd>+        <mo>&#65181;</mo>+      </mtd> +      <mtd>+        <mo>&#65197;</mo>+      </mtd> +      <mtd>+        <mo>&#65213;</mo>+      </mtd> +      <mtd>+        <mo>&#65229;</mo>+      </mtd> +      <mtd>+        <mo>&#65245;</mo>+      </mtd> +      <mtd>+        <mo>&#65261;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#65150;</mo>+      </mtd> +      <mtd>+        <mo>&#65166;</mo>+      </mtd> +      <mtd>+        <mo>&#65182;</mo>+      </mtd> +      <mtd>+        <mo>&#65198;</mo>+      </mtd> +      <mtd>+        <mo>&#65214;</mo>+      </mtd> +      <mtd>+        <mo>&#65230;</mo>+      </mtd> +      <mtd>+        <mo>&#65246;</mo>+      </mtd> +      <mtd>+        <mo>&#65262;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#65151;</mo>+      </mtd> +      <mtd>+        <mo>&#65167;</mo>+      </mtd> +      <mtd>+        <mo>&#65183;</mo>+      </mtd> +      <mtd>+        <mo>&#65199;</mo>+      </mtd> +      <mtd>+        <mo>&#65215;</mo>+      </mtd> +      <mtd>+        <mo>&#65231;</mo>+      </mtd> +      <mtd>+        <mo>&#65247;</mo>+      </mtd> +      <mtd>+        <mo>&#65263;</mo>+      </mtd> +      <mtd>+        <mo>&#65279;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "FE7" ]+      , [ EText TextNormal "FE8" ]+      , [ EText TextNormal "FE9" ]+      , [ EText TextNormal "FEA" ]+      , [ EText TextNormal "FEB" ]+      , [ EText TextNormal "FEC" ]+      , [ EText TextNormal "FED" ]+      , [ EText TextNormal "FEE" ]+      , [ EText TextNormal "FEF" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Ord "\65136" ]+      , [ ESymbol Ord "\65152" ]+      , [ ESymbol Ord "\65168" ]+      , [ ESymbol Ord "\65184" ]+      , [ ESymbol Ord "\65200" ]+      , [ ESymbol Ord "\65216" ]+      , [ ESymbol Ord "\65232" ]+      , [ ESymbol Ord "\65248" ]+      , [ ESymbol Ord "\65264" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Ord "\65137" ]+      , [ ESymbol Ord "\65153" ]+      , [ ESymbol Ord "\65169" ]+      , [ ESymbol Ord "\65185" ]+      , [ ESymbol Ord "\65201" ]+      , [ ESymbol Ord "\65217" ]+      , [ ESymbol Ord "\65233" ]+      , [ ESymbol Ord "\65249" ]+      , [ ESymbol Ord "\65265" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Ord "\65138" ]+      , [ ESymbol Ord "\65154" ]+      , [ ESymbol Ord "\65170" ]+      , [ ESymbol Ord "\65186" ]+      , [ ESymbol Ord "\65202" ]+      , [ ESymbol Ord "\65218" ]+      , [ ESymbol Ord "\65234" ]+      , [ ESymbol Ord "\65250" ]+      , [ ESymbol Ord "\65266" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Ord "\65139" ]+      , [ ESymbol Ord "\65155" ]+      , [ ESymbol Ord "\65171" ]+      , [ ESymbol Ord "\65187" ]+      , [ ESymbol Ord "\65203" ]+      , [ ESymbol Ord "\65219" ]+      , [ ESymbol Ord "\65235" ]+      , [ ESymbol Ord "\65251" ]+      , [ ESymbol Ord "\65267" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Ord "\65140" ]+      , [ ESymbol Ord "\65156" ]+      , [ ESymbol Ord "\65172" ]+      , [ ESymbol Ord "\65188" ]+      , [ ESymbol Ord "\65204" ]+      , [ ESymbol Ord "\65220" ]+      , [ ESymbol Ord "\65236" ]+      , [ ESymbol Ord "\65252" ]+      , [ ESymbol Ord "\65268" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "\65157" ]+      , [ ESymbol Ord "\65173" ]+      , [ ESymbol Ord "\65189" ]+      , [ ESymbol Ord "\65205" ]+      , [ ESymbol Ord "\65221" ]+      , [ ESymbol Ord "\65237" ]+      , [ ESymbol Ord "\65253" ]+      , [ ESymbol Ord "\65269" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "\65142" ]+      , [ ESymbol Ord "\65158" ]+      , [ ESymbol Ord "\65174" ]+      , [ ESymbol Ord "\65190" ]+      , [ ESymbol Ord "\65206" ]+      , [ ESymbol Ord "\65222" ]+      , [ ESymbol Ord "\65238" ]+      , [ ESymbol Ord "\65254" ]+      , [ ESymbol Ord "\65270" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Ord "\65143" ]+      , [ ESymbol Ord "\65159" ]+      , [ ESymbol Ord "\65175" ]+      , [ ESymbol Ord "\65191" ]+      , [ ESymbol Ord "\65207" ]+      , [ ESymbol Ord "\65223" ]+      , [ ESymbol Ord "\65239" ]+      , [ ESymbol Ord "\65255" ]+      , [ ESymbol Ord "\65271" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Ord "\65144" ]+      , [ ESymbol Ord "\65160" ]+      , [ ESymbol Ord "\65176" ]+      , [ ESymbol Ord "\65192" ]+      , [ ESymbol Ord "\65208" ]+      , [ ESymbol Ord "\65224" ]+      , [ ESymbol Ord "\65240" ]+      , [ ESymbol Ord "\65256" ]+      , [ ESymbol Ord "\65272" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Ord "\65145" ]+      , [ ESymbol Ord "\65161" ]+      , [ ESymbol Ord "\65177" ]+      , [ ESymbol Ord "\65193" ]+      , [ ESymbol Ord "\65209" ]+      , [ ESymbol Ord "\65225" ]+      , [ ESymbol Ord "\65241" ]+      , [ ESymbol Ord "\65257" ]+      , [ ESymbol Ord "\65273" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "\65146" ]+      , [ ESymbol Ord "\65162" ]+      , [ ESymbol Ord "\65178" ]+      , [ ESymbol Ord "\65194" ]+      , [ ESymbol Ord "\65210" ]+      , [ ESymbol Ord "\65226" ]+      , [ ESymbol Ord "\65242" ]+      , [ ESymbol Ord "\65258" ]+      , [ ESymbol Ord "\65274" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "\65147" ]+      , [ ESymbol Ord "\65163" ]+      , [ ESymbol Ord "\65179" ]+      , [ ESymbol Ord "\65195" ]+      , [ ESymbol Ord "\65211" ]+      , [ ESymbol Ord "\65227" ]+      , [ ESymbol Ord "\65243" ]+      , [ ESymbol Ord "\65259" ]+      , [ ESymbol Ord "\65275" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "\65148" ]+      , [ ESymbol Ord "\65164" ]+      , [ ESymbol Ord "\65180" ]+      , [ ESymbol Ord "\65196" ]+      , [ ESymbol Ord "\65212" ]+      , [ ESymbol Ord "\65228" ]+      , [ ESymbol Ord "\65244" ]+      , [ ESymbol Ord "\65260" ]+      , [ ESymbol Ord "\65276" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "\65149" ]+      , [ ESymbol Ord "\65165" ]+      , [ ESymbol Ord "\65181" ]+      , [ ESymbol Ord "\65197" ]+      , [ ESymbol Ord "\65213" ]+      , [ ESymbol Ord "\65229" ]+      , [ ESymbol Ord "\65245" ]+      , [ ESymbol Ord "\65261" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Ord "\65150" ]+      , [ ESymbol Ord "\65166" ]+      , [ ESymbol Ord "\65182" ]+      , [ ESymbol Ord "\65198" ]+      , [ ESymbol Ord "\65214" ]+      , [ ESymbol Ord "\65230" ]+      , [ ESymbol Ord "\65246" ]+      , [ ESymbol Ord "\65262" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "\65151" ]+      , [ ESymbol Ord "\65167" ]+      , [ ESymbol Ord "\65183" ]+      , [ ESymbol Ord "\65199" ]+      , [ ESymbol Ord "\65215" ]+      , [ ESymbol Ord "\65231" ]+      , [ ESymbol Ord "\65247" ]+      , [ ESymbol Ord "\65263" ]+      , [ ESymbol Ord "\65279" ]+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test view
@@ -0,0 +1,380 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D56</mtext>+      </mtd> +      <mtd>+        <mtext>1D57</mtext>+      </mtd> +      <mtd>+        <mtext>1D58</mtext>+      </mtd> +      <mtd>+        <mtext>1D59</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120176;</mo>+      </mtd> +      <mtd>+        <mo>&#120192;</mo>+      </mtd> +      <mtd>+        <mo>&#120208;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120177;</mo>+      </mtd> +      <mtd>+        <mo>&#120193;</mo>+      </mtd> +      <mtd>+        <mo>&#120209;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120178;</mo>+      </mtd> +      <mtd>+        <mo>&#120194;</mo>+      </mtd> +      <mtd>+        <mo>&#120210;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120179;</mo>+      </mtd> +      <mtd>+        <mo>&#120195;</mo>+      </mtd> +      <mtd>+        <mo>&#120211;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120180;</mo>+      </mtd> +      <mtd>+        <mo>&#120196;</mo>+      </mtd> +      <mtd>+        <mo>&#120212;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120181;</mo>+      </mtd> +      <mtd>+        <mo>&#120197;</mo>+      </mtd> +      <mtd>+        <mo>&#120213;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120182;</mo>+      </mtd> +      <mtd>+        <mo>&#120198;</mo>+      </mtd> +      <mtd>+        <mo>&#120214;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120183;</mo>+      </mtd> +      <mtd>+        <mo>&#120199;</mo>+      </mtd> +      <mtd>+        <mo>&#120215;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120184;</mo>+      </mtd> +      <mtd>+        <mo>&#120200;</mo>+      </mtd> +      <mtd>+        <mo>&#120216;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120185;</mo>+      </mtd> +      <mtd>+        <mo>&#120201;</mo>+      </mtd> +      <mtd>+        <mo>&#120217;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120186;</mo>+      </mtd> +      <mtd>+        <mo>&#120202;</mo>+      </mtd> +      <mtd>+        <mo>&#120218;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120187;</mo>+      </mtd> +      <mtd>+        <mo>&#120203;</mo>+      </mtd> +      <mtd>+        <mo>&#120219;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#120172;</mo>+      </mtd> +      <mtd>+        <mo>&#120188;</mo>+      </mtd> +      <mtd>+        <mo>&#120204;</mo>+      </mtd> +      <mtd>+        <mo>&#120220;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120173;</mo>+      </mtd> +      <mtd>+        <mo>&#120189;</mo>+      </mtd> +      <mtd>+        <mo>&#120205;</mo>+      </mtd> +      <mtd>+        <mo>&#120221;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120174;</mo>+      </mtd> +      <mtd>+        <mo>&#120190;</mo>+      </mtd> +      <mtd>+        <mo>&#120206;</mo>+      </mtd> +      <mtd>+        <mo>&#120222;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#120175;</mo>+      </mtd> +      <mtd>+        <mo>&#120191;</mo>+      </mtd> +      <mtd>+        <mo>&#120207;</mo>+      </mtd> +      <mtd>+        <mo>&#120223;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D56" ]+      , [ EText TextNormal "1D57" ]+      , [ EText TextNormal "1D58" ]+      , [ EText TextNormal "1D59" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Alpha "\120176" ]+      , [ ESymbol Alpha "\120192" ]+      , [ ESymbol Alpha "\120208" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Alpha "\120177" ]+      , [ ESymbol Alpha "\120193" ]+      , [ ESymbol Alpha "\120209" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\120178" ]+      , [ ESymbol Alpha "\120194" ]+      , [ ESymbol Alpha "\120210" ]+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Alpha "\120179" ]+      , [ ESymbol Alpha "\120195" ]+      , [ ESymbol Alpha "\120211" ]+      ]+    , [ [ EText TextNormal "4" ]+      , []+      , [ ESymbol Alpha "\120180" ]+      , [ ESymbol Alpha "\120196" ]+      , [ ESymbol Alpha "\120212" ]+      ]+    , [ [ EText TextNormal "5" ]+      , []+      , [ ESymbol Alpha "\120181" ]+      , [ ESymbol Alpha "\120197" ]+      , [ ESymbol Alpha "\120213" ]+      ]+    , [ [ EText TextNormal "6" ]+      , []+      , [ ESymbol Alpha "\120182" ]+      , [ ESymbol Alpha "\120198" ]+      , [ ESymbol Alpha "\120214" ]+      ]+    , [ [ EText TextNormal "7" ]+      , []+      , [ ESymbol Alpha "\120183" ]+      , [ ESymbol Alpha "\120199" ]+      , [ ESymbol Alpha "\120215" ]+      ]+    , [ [ EText TextNormal "8" ]+      , []+      , [ ESymbol Alpha "\120184" ]+      , [ ESymbol Alpha "\120200" ]+      , [ ESymbol Alpha "\120216" ]+      ]+    , [ [ EText TextNormal "9" ]+      , []+      , [ ESymbol Alpha "\120185" ]+      , [ ESymbol Alpha "\120201" ]+      , [ ESymbol Alpha "\120217" ]+      ]+    , [ [ EText TextNormal "A" ]+      , []+      , [ ESymbol Alpha "\120186" ]+      , [ ESymbol Alpha "\120202" ]+      , [ ESymbol Alpha "\120218" ]+      ]+    , [ [ EText TextNormal "B" ]+      , []+      , [ ESymbol Alpha "\120187" ]+      , [ ESymbol Alpha "\120203" ]+      , [ ESymbol Alpha "\120219" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\120172" ]+      , [ ESymbol Alpha "\120188" ]+      , [ ESymbol Alpha "\120204" ]+      , [ ESymbol Alpha "\120220" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120173" ]+      , [ ESymbol Alpha "\120189" ]+      , [ ESymbol Alpha "\120205" ]+      , [ ESymbol Alpha "\120221" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120174" ]+      , [ ESymbol Alpha "\120190" ]+      , [ ESymbol Alpha "\120206" ]+      , [ ESymbol Alpha "\120222" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\120175" ]+      , [ ESymbol Alpha "\120191" ]+      , [ ESymbol Alpha "\120207" ]+      , [ ESymbol Alpha "\120223" ]+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test view
@@ -0,0 +1,681 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D46</mtext>+      </mtd> +      <mtd>+        <mtext>1D47</mtext>+      </mtd> +      <mtd>+        <mtext>1D48</mtext>+      </mtd> +      <mtd>+        <mtext>1D49</mtext>+      </mtd> +      <mtd>+        <mtext>1D71</mtext>+      </mtd> +      <mtd>+        <mtext>1D72</mtext>+      </mtd> +      <mtd>+        <mtext>1D73</mtext>+      </mtd> +      <mtd>+        <mtext>1D74</mtext>+      </mtd> +      <mtd>+        <mtext>1D75</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119920;</mo>+      </mtd> +      <mtd>+        <mo>&#119936;</mo>+      </mtd> +      <mtd>+        <mo>&#119952;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120608;</mo>+      </mtd> +      <mtd>+        <mo>&#120624;</mo>+      </mtd> +      <mtd>+        <mo>&#120640;</mo>+      </mtd> +      <mtd>+        <mo>&#120656;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119921;</mo>+      </mtd> +      <mtd>+        <mo>&#119937;</mo>+      </mtd> +      <mtd>+        <mo>&#119953;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120609;</mo>+      </mtd> +      <mtd>+        <mo>&#120625;</mo>+      </mtd> +      <mtd>+        <mo>&#120641;</mo>+      </mtd> +      <mtd>+        <mo>&#120657;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119922;</mo>+      </mtd> +      <mtd>+        <mo>&#119938;</mo>+      </mtd> +      <mtd>+        <mo>&#119954;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120610;</mo>+      </mtd> +      <mtd>+        <mo>&#120626;</mo>+      </mtd> +      <mtd>+        <mo>&#120642;</mo>+      </mtd> +      <mtd>+        <mo>&#120658;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119923;</mo>+      </mtd> +      <mtd>+        <mo>&#119939;</mo>+      </mtd> +      <mtd>+        <mo>&#119955;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120611;</mo>+      </mtd> +      <mtd>+        <mo>&#120627;</mo>+      </mtd> +      <mtd>+        <mo>&#120643;</mo>+      </mtd> +      <mtd>+        <mo>&#120659;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119924;</mo>+      </mtd> +      <mtd>+        <mo>&#119940;</mo>+      </mtd> +      <mtd>+        <mo>&#119956;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120612;</mo>+      </mtd> +      <mtd>+        <mo>&#120628;</mo>+      </mtd> +      <mtd>+        <mo>&#120644;</mo>+      </mtd> +      <mtd>+        <mo>&#120660;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119925;</mo>+      </mtd> +      <mtd>+        <mo>&#119941;</mo>+      </mtd> +      <mtd>+        <mo>&#119957;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120613;</mo>+      </mtd> +      <mtd>+        <mo>&#120629;</mo>+      </mtd> +      <mtd>+        <mo>&#120645;</mo>+      </mtd> +      <mtd>+        <mo>&#120661;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119926;</mo>+      </mtd> +      <mtd>+        <mo>&#119942;</mo>+      </mtd> +      <mtd>+        <mo>&#119958;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120614;</mo>+      </mtd> +      <mtd>+        <mo>&#120630;</mo>+      </mtd> +      <mtd>+        <mo>&#120646;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119927;</mo>+      </mtd> +      <mtd>+        <mo>&#119943;</mo>+      </mtd> +      <mtd>+        <mo>&#119959;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120615;</mo>+      </mtd> +      <mtd>+        <mo>&#120631;</mo>+      </mtd> +      <mtd>+        <mo>&#120647;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#119912;</mo>+      </mtd> +      <mtd>+        <mo>&#119928;</mo>+      </mtd> +      <mtd>+        <mo>&#119944;</mo>+      </mtd> +      <mtd>+        <mo>&#119960;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120616;</mo>+      </mtd> +      <mtd>+        <mo>&#120632;</mo>+      </mtd> +      <mtd>+        <mo>&#120648;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#119913;</mo>+      </mtd> +      <mtd>+        <mo>&#119929;</mo>+      </mtd> +      <mtd>+        <mo>&#119945;</mo>+      </mtd> +      <mtd>+        <mo>&#119961;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120617;</mo>+      </mtd> +      <mtd>+        <mo>&#120633;</mo>+      </mtd> +      <mtd>+        <mo>&#120649;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#119914;</mo>+      </mtd> +      <mtd>+        <mo>&#119930;</mo>+      </mtd> +      <mtd>+        <mo>&#119946;</mo>+      </mtd> +      <mtd>+        <mo>&#119962;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120618;</mo>+      </mtd> +      <mtd>+        <mo>&#120634;</mo>+      </mtd> +      <mtd>+        <mo>&#120650;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#119915;</mo>+      </mtd> +      <mtd>+        <mo>&#119931;</mo>+      </mtd> +      <mtd>+        <mo>&#119947;</mo>+      </mtd> +      <mtd>+        <mo>&#119963;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120619;</mo>+      </mtd> +      <mtd>+        <mo>&#120635;</mo>+      </mtd> +      <mtd>+        <mo>&#120651;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#119916;</mo>+      </mtd> +      <mtd>+        <mo>&#119932;</mo>+      </mtd> +      <mtd>+        <mo>&#119948;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120604;</mo>+      </mtd> +      <mtd>+        <mo>&#120620;</mo>+      </mtd> +      <mtd>+        <mo>&#120636;</mo>+      </mtd> +      <mtd>+        <mo>&#120652;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#119917;</mo>+      </mtd> +      <mtd>+        <mo>&#119933;</mo>+      </mtd> +      <mtd>+        <mo>&#119949;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120605;</mo>+      </mtd> +      <mtd>+        <mo>&#120621;</mo>+      </mtd> +      <mtd>+        <mo>&#120637;</mo>+      </mtd> +      <mtd>+        <mo>&#120653;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#119918;</mo>+      </mtd> +      <mtd>+        <mo>&#119934;</mo>+      </mtd> +      <mtd>+        <mo>&#119950;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120606;</mo>+      </mtd> +      <mtd>+        <mo>&#120622;</mo>+      </mtd> +      <mtd>+        <mo>&#120638;</mo>+      </mtd> +      <mtd>+        <mo>&#120654;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#119919;</mo>+      </mtd> +      <mtd>+        <mo>&#119935;</mo>+      </mtd> +      <mtd>+        <mo>&#119951;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120607;</mo>+      </mtd> +      <mtd>+        <mo>&#120623;</mo>+      </mtd> +      <mtd>+        <mo>&#120639;</mo>+      </mtd> +      <mtd>+        <mo>&#120655;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D46" ]+      , [ EText TextNormal "1D47" ]+      , [ EText TextNormal "1D48" ]+      , [ EText TextNormal "1D49" ]+      , [ EText TextNormal "1D71" ]+      , [ EText TextNormal "1D72" ]+      , [ EText TextNormal "1D73" ]+      , [ EText TextNormal "1D74" ]+      , [ EText TextNormal "1D75" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Alpha "\119920" ]+      , [ ESymbol Alpha "\119936" ]+      , [ ESymbol Alpha "\119952" ]+      , []+      , [ ESymbol Alpha "\120608" ]+      , [ ESymbol Alpha "\120624" ]+      , [ ESymbol Alpha "\120640" ]+      , [ ESymbol Alpha "\120656" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Alpha "\119921" ]+      , [ ESymbol Alpha "\119937" ]+      , [ ESymbol Alpha "\119953" ]+      , []+      , [ ESymbol Alpha "\120609" ]+      , [ ESymbol Alpha "\120625" ]+      , [ ESymbol Alpha "\120641" ]+      , [ ESymbol Alpha "\120657" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\119922" ]+      , [ ESymbol Alpha "\119938" ]+      , [ ESymbol Alpha "\119954" ]+      , []+      , [ ESymbol Alpha "\120610" ]+      , [ ESymbol Alpha "\120626" ]+      , [ ESymbol Alpha "\120642" ]+      , [ ESymbol Alpha "\120658" ]+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Alpha "\119923" ]+      , [ ESymbol Alpha "\119939" ]+      , [ ESymbol Alpha "\119955" ]+      , []+      , [ ESymbol Alpha "\120611" ]+      , [ ESymbol Alpha "\120627" ]+      , [ ESymbol Alpha "\120643" ]+      , [ ESymbol Alpha "\120659" ]+      ]+    , [ [ EText TextNormal "4" ]+      , []+      , [ ESymbol Alpha "\119924" ]+      , [ ESymbol Alpha "\119940" ]+      , [ ESymbol Alpha "\119956" ]+      , []+      , [ ESymbol Alpha "\120612" ]+      , [ ESymbol Alpha "\120628" ]+      , [ ESymbol Alpha "\120644" ]+      , [ ESymbol Alpha "\120660" ]+      ]+    , [ [ EText TextNormal "5" ]+      , []+      , [ ESymbol Alpha "\119925" ]+      , [ ESymbol Alpha "\119941" ]+      , [ ESymbol Alpha "\119957" ]+      , []+      , [ ESymbol Alpha "\120613" ]+      , [ ESymbol Ord "\120629" ]+      , [ ESymbol Alpha "\120645" ]+      , [ ESymbol Alpha "\120661" ]+      ]+    , [ [ EText TextNormal "6" ]+      , []+      , [ ESymbol Alpha "\119926" ]+      , [ ESymbol Alpha "\119942" ]+      , [ ESymbol Alpha "\119958" ]+      , []+      , [ ESymbol Alpha "\120614" ]+      , [ ESymbol Alpha "\120630" ]+      , [ ESymbol Alpha "\120646" ]+      , []+      ]+    , [ [ EText TextNormal "7" ]+      , []+      , [ ESymbol Alpha "\119927" ]+      , [ ESymbol Alpha "\119943" ]+      , [ ESymbol Alpha "\119959" ]+      , []+      , [ ESymbol Alpha "\120615" ]+      , [ ESymbol Alpha "\120631" ]+      , [ ESymbol Alpha "\120647" ]+      , []+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\119912" ]+      , [ ESymbol Alpha "\119928" ]+      , [ ESymbol Alpha "\119944" ]+      , [ ESymbol Alpha "\119960" ]+      , []+      , [ ESymbol Alpha "\120616" ]+      , [ ESymbol Alpha "\120632" ]+      , [ ESymbol Alpha "\120648" ]+      , []+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\119913" ]+      , [ ESymbol Alpha "\119929" ]+      , [ ESymbol Alpha "\119945" ]+      , [ ESymbol Alpha "\119961" ]+      , []+      , [ ESymbol Alpha "\120617" ]+      , [ ESymbol Alpha "\120633" ]+      , [ ESymbol Alpha "\120649" ]+      , []+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\119914" ]+      , [ ESymbol Alpha "\119930" ]+      , [ ESymbol Alpha "\119946" ]+      , [ ESymbol Alpha "\119962" ]+      , []+      , [ ESymbol Alpha "\120618" ]+      , [ ESymbol Alpha "\120634" ]+      , [ ESymbol Alpha "\120650" ]+      , []+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\119915" ]+      , [ ESymbol Alpha "\119931" ]+      , [ ESymbol Alpha "\119947" ]+      , [ ESymbol Alpha "\119963" ]+      , []+      , [ ESymbol Alpha "\120619" ]+      , [ ESymbol Alpha "\120635" ]+      , [ ESymbol Alpha "\120651" ]+      , []+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\119916" ]+      , [ ESymbol Alpha "\119932" ]+      , [ ESymbol Alpha "\119948" ]+      , []+      , [ ESymbol Alpha "\120604" ]+      , [ ESymbol Alpha "\120620" ]+      , [ ESymbol Alpha "\120636" ]+      , [ ESymbol Alpha "\120652" ]+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\119917" ]+      , [ ESymbol Alpha "\119933" ]+      , [ ESymbol Alpha "\119949" ]+      , []+      , [ ESymbol Alpha "\120605" ]+      , [ ESymbol Alpha "\120621" ]+      , [ ESymbol Alpha "\120637" ]+      , [ ESymbol Alpha "\120653" ]+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\119918" ]+      , [ ESymbol Alpha "\119934" ]+      , [ ESymbol Alpha "\119950" ]+      , []+      , [ ESymbol Alpha "\120606" ]+      , [ ESymbol Alpha "\120622" ]+      , [ ESymbol Alpha "\120638" ]+      , [ ESymbol Alpha "\120654" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\119919" ]+      , [ ESymbol Alpha "\119935" ]+      , [ ESymbol Alpha "\119951" ]+      , []+      , [ ESymbol Alpha "\120607" ]+      , [ ESymbol Alpha "\120623" ]+      , [ ESymbol Alpha "\120639" ]+      , [ ESymbol Ord "\120655" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test view
@@ -0,0 +1,738 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D5D</mtext>+      </mtd> +      <mtd>+        <mtext>1D5E</mtext>+      </mtd> +      <mtd>+        <mtext>1D5F</mtext>+      </mtd> +      <mtd>+        <mtext>1D60</mtext>+      </mtd> +      <mtd>+        <mtext>1D75</mtext>+      </mtd> +      <mtd>+        <mtext>1D76</mtext>+      </mtd> +      <mtd>+        <mtext>1D77</mtext>+      </mtd> +      <mtd>+        <mtext>1D78</mtext>+      </mtd> +      <mtd>+        <mtext>1D7E</mtext>+      </mtd> +      <mtd>+        <mtext>1D7F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120288;</mo>+      </mtd> +      <mtd>+        <mo>&#120304;</mo>+      </mtd> +      <mtd>+        <mo>&#120320;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120672;</mo>+      </mtd> +      <mtd>+        <mo>&#120688;</mo>+      </mtd> +      <mtd>+        <mo>&#120704;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120816;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120289;</mo>+      </mtd> +      <mtd>+        <mo>&#120305;</mo>+      </mtd> +      <mtd>+        <mo>&#120321;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120673;</mo>+      </mtd> +      <mtd>+        <mo>&#120689;</mo>+      </mtd> +      <mtd>+        <mo>&#120705;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120817;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120290;</mo>+      </mtd> +      <mtd>+        <mo>&#120306;</mo>+      </mtd> +      <mtd>+        <mo>&#120322;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120674;</mo>+      </mtd> +      <mtd>+        <mo>&#120690;</mo>+      </mtd> +      <mtd>+        <mo>&#120706;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120818;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120291;</mo>+      </mtd> +      <mtd>+        <mo>&#120307;</mo>+      </mtd> +      <mtd>+        <mo>&#120323;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120675;</mo>+      </mtd> +      <mtd>+        <mo>&#120691;</mo>+      </mtd> +      <mtd>+        <mo>&#120707;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120819;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#120276;</mo>+      </mtd> +      <mtd>+        <mo>&#120292;</mo>+      </mtd> +      <mtd>+        <mo>&#120308;</mo>+      </mtd> +      <mtd>+        <mo>&#120324;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120676;</mo>+      </mtd> +      <mtd>+        <mo>&#120692;</mo>+      </mtd> +      <mtd>+        <mo>&#120708;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120820;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#120277;</mo>+      </mtd> +      <mtd>+        <mo>&#120293;</mo>+      </mtd> +      <mtd>+        <mo>&#120309;</mo>+      </mtd> +      <mtd>+        <mo>&#120325;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120677;</mo>+      </mtd> +      <mtd>+        <mo>&#120693;</mo>+      </mtd> +      <mtd>+        <mo>&#120709;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120821;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#120278;</mo>+      </mtd> +      <mtd>+        <mo>&#120294;</mo>+      </mtd> +      <mtd>+        <mo>&#120310;</mo>+      </mtd> +      <mtd>+        <mo>&#120326;</mo>+      </mtd> +      <mtd>+        <mo>&#120662;</mo>+      </mtd> +      <mtd>+        <mo>&#120678;</mo>+      </mtd> +      <mtd>+        <mo>&#120694;</mo>+      </mtd> +      <mtd>+        <mo>&#120710;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#120279;</mo>+      </mtd> +      <mtd>+        <mo>&#120295;</mo>+      </mtd> +      <mtd>+        <mo>&#120311;</mo>+      </mtd> +      <mtd>+        <mo>&#120327;</mo>+      </mtd> +      <mtd>+        <mo>&#120663;</mo>+      </mtd> +      <mtd>+        <mo>&#120679;</mo>+      </mtd> +      <mtd>+        <mo>&#120695;</mo>+      </mtd> +      <mtd>+        <mo>&#120711;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#120280;</mo>+      </mtd> +      <mtd>+        <mo>&#120296;</mo>+      </mtd> +      <mtd>+        <mo>&#120312;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120664;</mo>+      </mtd> +      <mtd>+        <mo>&#120680;</mo>+      </mtd> +      <mtd>+        <mo>&#120696;</mo>+      </mtd> +      <mtd>+        <mo>&#120712;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#120281;</mo>+      </mtd> +      <mtd>+        <mo>&#120297;</mo>+      </mtd> +      <mtd>+        <mo>&#120313;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120665;</mo>+      </mtd> +      <mtd>+        <mo>&#120681;</mo>+      </mtd> +      <mtd>+        <mo>&#120697;</mo>+      </mtd> +      <mtd>+        <mo>&#120713;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#120282;</mo>+      </mtd> +      <mtd>+        <mo>&#120298;</mo>+      </mtd> +      <mtd>+        <mo>&#120314;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120666;</mo>+      </mtd> +      <mtd>+        <mo>&#120682;</mo>+      </mtd> +      <mtd>+        <mo>&#120698;</mo>+      </mtd> +      <mtd>+        <mo>&#120714;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#120283;</mo>+      </mtd> +      <mtd>+        <mo>&#120299;</mo>+      </mtd> +      <mtd>+        <mo>&#120315;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120667;</mo>+      </mtd> +      <mtd>+        <mo>&#120683;</mo>+      </mtd> +      <mtd>+        <mo>&#120699;</mo>+      </mtd> +      <mtd>+        <mo>&#120715;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#120284;</mo>+      </mtd> +      <mtd>+        <mo>&#120300;</mo>+      </mtd> +      <mtd>+        <mo>&#120316;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120668;</mo>+      </mtd> +      <mtd>+        <mo>&#120684;</mo>+      </mtd> +      <mtd>+        <mo>&#120700;</mo>+      </mtd> +      <mtd>+        <mo>&#120716;</mo>+      </mtd> +      <mtd>+        <mo>&#120812;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120285;</mo>+      </mtd> +      <mtd>+        <mo>&#120301;</mo>+      </mtd> +      <mtd>+        <mo>&#120317;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120669;</mo>+      </mtd> +      <mtd>+        <mo>&#120685;</mo>+      </mtd> +      <mtd>+        <mo>&#120701;</mo>+      </mtd> +      <mtd>+        <mo>&#120717;</mo>+      </mtd> +      <mtd>+        <mo>&#120813;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120286;</mo>+      </mtd> +      <mtd>+        <mo>&#120302;</mo>+      </mtd> +      <mtd>+        <mo>&#120318;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120670;</mo>+      </mtd> +      <mtd>+        <mo>&#120686;</mo>+      </mtd> +      <mtd>+        <mo>&#120702;</mo>+      </mtd> +      <mtd>+        <mo>&#120718;</mo>+      </mtd> +      <mtd>+        <mo>&#120814;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#120287;</mo>+      </mtd> +      <mtd>+        <mo>&#120303;</mo>+      </mtd> +      <mtd>+        <mo>&#120319;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120671;</mo>+      </mtd> +      <mtd>+        <mo>&#120687;</mo>+      </mtd> +      <mtd>+        <mo>&#120703;</mo>+      </mtd> +      <mtd>+        <mo>&#120719;</mo>+      </mtd> +      <mtd>+        <mo>&#120815;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D5D" ]+      , [ EText TextNormal "1D5E" ]+      , [ EText TextNormal "1D5F" ]+      , [ EText TextNormal "1D60" ]+      , [ EText TextNormal "1D75" ]+      , [ EText TextNormal "1D76" ]+      , [ EText TextNormal "1D77" ]+      , [ EText TextNormal "1D78" ]+      , [ EText TextNormal "1D7E" ]+      , [ EText TextNormal "1D7F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Alpha "\120288" ]+      , [ ESymbol Alpha "\120304" ]+      , [ ESymbol Alpha "\120320" ]+      , []+      , [ ESymbol Alpha "\120672" ]+      , [ ESymbol Alpha "\120688" ]+      , [ ESymbol Alpha "\120704" ]+      , []+      , [ ESymbol Ord "\120816" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Alpha "\120289" ]+      , [ ESymbol Alpha "\120305" ]+      , [ ESymbol Alpha "\120321" ]+      , []+      , [ ESymbol Alpha "\120673" ]+      , [ ESymbol Alpha "\120689" ]+      , [ ESymbol Alpha "\120705" ]+      , []+      , [ ESymbol Ord "\120817" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\120290" ]+      , [ ESymbol Alpha "\120306" ]+      , [ ESymbol Alpha "\120322" ]+      , []+      , [ ESymbol Alpha "\120674" ]+      , [ ESymbol Alpha "\120690" ]+      , [ ESymbol Alpha "\120706" ]+      , []+      , [ ESymbol Ord "\120818" ]+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Alpha "\120291" ]+      , [ ESymbol Alpha "\120307" ]+      , [ ESymbol Alpha "\120323" ]+      , []+      , [ ESymbol Alpha "\120675" ]+      , [ ESymbol Alpha "\120691" ]+      , [ ESymbol Alpha "\120707" ]+      , []+      , [ ESymbol Ord "\120819" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Alpha "\120276" ]+      , [ ESymbol Alpha "\120292" ]+      , [ ESymbol Alpha "\120308" ]+      , [ ESymbol Alpha "\120324" ]+      , []+      , [ ESymbol Alpha "\120676" ]+      , [ ESymbol Alpha "\120692" ]+      , [ ESymbol Alpha "\120708" ]+      , []+      , [ ESymbol Ord "\120820" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Alpha "\120277" ]+      , [ ESymbol Alpha "\120293" ]+      , [ ESymbol Alpha "\120309" ]+      , [ ESymbol Alpha "\120325" ]+      , []+      , [ ESymbol Alpha "\120677" ]+      , [ ESymbol Alpha "\120693" ]+      , [ ESymbol Alpha "\120709" ]+      , []+      , [ ESymbol Ord "\120821" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Alpha "\120278" ]+      , [ ESymbol Alpha "\120294" ]+      , [ ESymbol Alpha "\120310" ]+      , [ ESymbol Alpha "\120326" ]+      , [ ESymbol Alpha "\120662" ]+      , [ ESymbol Alpha "\120678" ]+      , [ ESymbol Alpha "\120694" ]+      , [ ESymbol Alpha "\120710" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Alpha "\120279" ]+      , [ ESymbol Alpha "\120295" ]+      , [ ESymbol Alpha "\120311" ]+      , [ ESymbol Alpha "\120327" ]+      , [ ESymbol Alpha "\120663" ]+      , [ ESymbol Alpha "\120679" ]+      , [ ESymbol Alpha "\120695" ]+      , [ ESymbol Alpha "\120711" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\120280" ]+      , [ ESymbol Alpha "\120296" ]+      , [ ESymbol Alpha "\120312" ]+      , []+      , [ ESymbol Alpha "\120664" ]+      , [ ESymbol Alpha "\120680" ]+      , [ ESymbol Alpha "\120696" ]+      , [ ESymbol Alpha "\120712" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\120281" ]+      , [ ESymbol Alpha "\120297" ]+      , [ ESymbol Alpha "\120313" ]+      , []+      , [ ESymbol Alpha "\120665" ]+      , [ ESymbol Alpha "\120681" ]+      , [ ESymbol Alpha "\120697" ]+      , [ ESymbol Ord "\120713" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\120282" ]+      , [ ESymbol Alpha "\120298" ]+      , [ ESymbol Alpha "\120314" ]+      , []+      , [ ESymbol Alpha "\120666" ]+      , [ ESymbol Alpha "\120682" ]+      , [ ESymbol Alpha "\120698" ]+      , [ ESymbol Alpha "\120714" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\120283" ]+      , [ ESymbol Alpha "\120299" ]+      , [ ESymbol Alpha "\120315" ]+      , []+      , [ ESymbol Alpha "\120667" ]+      , [ ESymbol Alpha "\120683" ]+      , [ ESymbol Alpha "\120699" ]+      , [ ESymbol Alpha "\120715" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\120284" ]+      , [ ESymbol Alpha "\120300" ]+      , [ ESymbol Alpha "\120316" ]+      , []+      , [ ESymbol Alpha "\120668" ]+      , [ ESymbol Alpha "\120684" ]+      , [ ESymbol Alpha "\120700" ]+      , [ ESymbol Alpha "\120716" ]+      , [ ESymbol Ord "\120812" ]+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120285" ]+      , [ ESymbol Alpha "\120301" ]+      , [ ESymbol Alpha "\120317" ]+      , []+      , [ ESymbol Alpha "\120669" ]+      , [ ESymbol Alpha "\120685" ]+      , [ ESymbol Alpha "\120701" ]+      , [ ESymbol Alpha "\120717" ]+      , [ ESymbol Ord "\120813" ]+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120286" ]+      , [ ESymbol Alpha "\120302" ]+      , [ ESymbol Alpha "\120318" ]+      , []+      , [ ESymbol Alpha "\120670" ]+      , [ ESymbol Alpha "\120686" ]+      , [ ESymbol Alpha "\120702" ]+      , [ ESymbol Alpha "\120718" ]+      , [ ESymbol Ord "\120814" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\120287" ]+      , [ ESymbol Alpha "\120303" ]+      , [ ESymbol Alpha "\120319" ]+      , []+      , [ ESymbol Alpha "\120671" ]+      , [ ESymbol Ord "\120687" ]+      , [ ESymbol Alpha "\120703" ]+      , [ ESymbol Alpha "\120719" ]+      , [ ESymbol Ord "\120815" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test view
@@ -0,0 +1,380 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D4D</mtext>+      </mtd> +      <mtd>+        <mtext>1D4E</mtext>+      </mtd> +      <mtd>+        <mtext>1D4F</mtext>+      </mtd> +      <mtd>+        <mtext>1D50</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#120016;</mo>+      </mtd> +      <mtd>+        <mo>&#120032;</mo>+      </mtd> +      <mtd>+        <mo>&#120048;</mo>+      </mtd> +      <mtd>+        <mo>&#120064;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#120017;</mo>+      </mtd> +      <mtd>+        <mo>&#120033;</mo>+      </mtd> +      <mtd>+        <mo>&#120049;</mo>+      </mtd> +      <mtd>+        <mo>&#120065;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#120018;</mo>+      </mtd> +      <mtd>+        <mo>&#120034;</mo>+      </mtd> +      <mtd>+        <mo>&#120050;</mo>+      </mtd> +      <mtd>+        <mo>&#120066;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#120019;</mo>+      </mtd> +      <mtd>+        <mo>&#120035;</mo>+      </mtd> +      <mtd>+        <mo>&#120051;</mo>+      </mtd> +      <mtd>+        <mo>&#120067;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#120020;</mo>+      </mtd> +      <mtd>+        <mo>&#120036;</mo>+      </mtd> +      <mtd>+        <mo>&#120052;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#120021;</mo>+      </mtd> +      <mtd>+        <mo>&#120037;</mo>+      </mtd> +      <mtd>+        <mo>&#120053;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#120022;</mo>+      </mtd> +      <mtd>+        <mo>&#120038;</mo>+      </mtd> +      <mtd>+        <mo>&#120054;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#120023;</mo>+      </mtd> +      <mtd>+        <mo>&#120039;</mo>+      </mtd> +      <mtd>+        <mo>&#120055;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#120024;</mo>+      </mtd> +      <mtd>+        <mo>&#120040;</mo>+      </mtd> +      <mtd>+        <mo>&#120056;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#120025;</mo>+      </mtd> +      <mtd>+        <mo>&#120041;</mo>+      </mtd> +      <mtd>+        <mo>&#120057;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#120026;</mo>+      </mtd> +      <mtd>+        <mo>&#120042;</mo>+      </mtd> +      <mtd>+        <mo>&#120058;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#120027;</mo>+      </mtd> +      <mtd>+        <mo>&#120043;</mo>+      </mtd> +      <mtd>+        <mo>&#120059;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#120028;</mo>+      </mtd> +      <mtd>+        <mo>&#120044;</mo>+      </mtd> +      <mtd>+        <mo>&#120060;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120029;</mo>+      </mtd> +      <mtd>+        <mo>&#120045;</mo>+      </mtd> +      <mtd>+        <mo>&#120061;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120030;</mo>+      </mtd> +      <mtd>+        <mo>&#120046;</mo>+      </mtd> +      <mtd>+        <mo>&#120062;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#120031;</mo>+      </mtd> +      <mtd>+        <mo>&#120047;</mo>+      </mtd> +      <mtd>+        <mo>&#120063;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D4D" ]+      , [ EText TextNormal "1D4E" ]+      , [ EText TextNormal "1D4F" ]+      , [ EText TextNormal "1D50" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Alpha "\120016" ]+      , [ ESymbol Alpha "\120032" ]+      , [ ESymbol Alpha "\120048" ]+      , [ ESymbol Alpha "\120064" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Alpha "\120017" ]+      , [ ESymbol Alpha "\120033" ]+      , [ ESymbol Alpha "\120049" ]+      , [ ESymbol Alpha "\120065" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Alpha "\120018" ]+      , [ ESymbol Alpha "\120034" ]+      , [ ESymbol Alpha "\120050" ]+      , [ ESymbol Alpha "\120066" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Alpha "\120019" ]+      , [ ESymbol Alpha "\120035" ]+      , [ ESymbol Alpha "\120051" ]+      , [ ESymbol Alpha "\120067" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Alpha "\120020" ]+      , [ ESymbol Alpha "\120036" ]+      , [ ESymbol Alpha "\120052" ]+      , []+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Alpha "\120021" ]+      , [ ESymbol Alpha "\120037" ]+      , [ ESymbol Alpha "\120053" ]+      , []+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Alpha "\120022" ]+      , [ ESymbol Alpha "\120038" ]+      , [ ESymbol Alpha "\120054" ]+      , []+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Alpha "\120023" ]+      , [ ESymbol Alpha "\120039" ]+      , [ ESymbol Alpha "\120055" ]+      , []+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\120024" ]+      , [ ESymbol Alpha "\120040" ]+      , [ ESymbol Alpha "\120056" ]+      , []+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\120025" ]+      , [ ESymbol Alpha "\120041" ]+      , [ ESymbol Alpha "\120057" ]+      , []+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\120026" ]+      , [ ESymbol Alpha "\120042" ]+      , [ ESymbol Alpha "\120058" ]+      , []+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\120027" ]+      , [ ESymbol Alpha "\120043" ]+      , [ ESymbol Alpha "\120059" ]+      , []+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\120028" ]+      , [ ESymbol Alpha "\120044" ]+      , [ ESymbol Alpha "\120060" ]+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120029" ]+      , [ ESymbol Alpha "\120045" ]+      , [ ESymbol Alpha "\120061" ]+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120030" ]+      , [ ESymbol Alpha "\120046" ]+      , [ ESymbol Alpha "\120062" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\120031" ]+      , [ ESymbol Alpha "\120047" ]+      , [ ESymbol Alpha "\120063" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_bold.test view
@@ -0,0 +1,779 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D40</mtext>+      </mtd> +      <mtd>+        <mtext>1D41</mtext>+      </mtd> +      <mtd>+        <mtext>1D42</mtext>+      </mtd> +      <mtd>+        <mtext>1D43</mtext>+      </mtd> +      <mtd>+        <mtext>1D6A</mtext>+      </mtd> +      <mtd>+        <mtext>1D6B</mtext>+      </mtd> +      <mtd>+        <mtext>1D6C</mtext>+      </mtd> +      <mtd>+        <mtext>1D6D</mtext>+      </mtd> +      <mtd>+        <mtext>1D6E</mtext>+      </mtd> +      <mtd>+        <mtext>1D7C</mtext>+      </mtd> +      <mtd>+        <mtext>1D7D</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#119808;</mo>+      </mtd> +      <mtd>+        <mo>&#119824;</mo>+      </mtd> +      <mtd>+        <mo>&#119840;</mo>+      </mtd> +      <mtd>+        <mo>&#119856;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120496;</mo>+      </mtd> +      <mtd>+        <mo>&#120512;</mo>+      </mtd> +      <mtd>+        <mo>&#120528;</mo>+      </mtd> +      <mtd>+        <mo>&#120544;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120784;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#119809;</mo>+      </mtd> +      <mtd>+        <mo>&#119825;</mo>+      </mtd> +      <mtd>+        <mo>&#119841;</mo>+      </mtd> +      <mtd>+        <mo>&#119857;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120497;</mo>+      </mtd> +      <mtd>+        <mo>&#120513;</mo>+      </mtd> +      <mtd>+        <mo>&#120529;</mo>+      </mtd> +      <mtd>+        <mo>&#120545;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120785;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#119810;</mo>+      </mtd> +      <mtd>+        <mo>&#119826;</mo>+      </mtd> +      <mtd>+        <mo>&#119842;</mo>+      </mtd> +      <mtd>+        <mo>&#119858;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120498;</mo>+      </mtd> +      <mtd>+        <mo>&#120514;</mo>+      </mtd> +      <mtd>+        <mo>&#120530;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120786;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#119811;</mo>+      </mtd> +      <mtd>+        <mo>&#119827;</mo>+      </mtd> +      <mtd>+        <mo>&#119843;</mo>+      </mtd> +      <mtd>+        <mo>&#119859;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120499;</mo>+      </mtd> +      <mtd>+        <mo>&#120515;</mo>+      </mtd> +      <mtd>+        <mo>&#120531;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120787;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#119812;</mo>+      </mtd> +      <mtd>+        <mo>&#119828;</mo>+      </mtd> +      <mtd>+        <mo>&#119844;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120500;</mo>+      </mtd> +      <mtd>+        <mo>&#120516;</mo>+      </mtd> +      <mtd>+        <mo>&#120532;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120788;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#119813;</mo>+      </mtd> +      <mtd>+        <mo>&#119829;</mo>+      </mtd> +      <mtd>+        <mo>&#119845;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120501;</mo>+      </mtd> +      <mtd>+        <mo>&#120517;</mo>+      </mtd> +      <mtd>+        <mo>&#120533;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120789;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#119814;</mo>+      </mtd> +      <mtd>+        <mo>&#119830;</mo>+      </mtd> +      <mtd>+        <mo>&#119846;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120502;</mo>+      </mtd> +      <mtd>+        <mo>&#120518;</mo>+      </mtd> +      <mtd>+        <mo>&#120534;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120790;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#119815;</mo>+      </mtd> +      <mtd>+        <mo>&#119831;</mo>+      </mtd> +      <mtd>+        <mo>&#119847;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120503;</mo>+      </mtd> +      <mtd>+        <mo>&#120519;</mo>+      </mtd> +      <mtd>+        <mo>&#120535;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120791;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#119816;</mo>+      </mtd> +      <mtd>+        <mo>&#119832;</mo>+      </mtd> +      <mtd>+        <mo>&#119848;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120488;</mo>+      </mtd> +      <mtd>+        <mo>&#120504;</mo>+      </mtd> +      <mtd>+        <mo>&#120520;</mo>+      </mtd> +      <mtd>+        <mo>&#120536;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#119817;</mo>+      </mtd> +      <mtd>+        <mo>&#119833;</mo>+      </mtd> +      <mtd>+        <mo>&#119849;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120489;</mo>+      </mtd> +      <mtd>+        <mo>&#120505;</mo>+      </mtd> +      <mtd>+        <mo>&#120521;</mo>+      </mtd> +      <mtd>+        <mo>&#120537;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#119818;</mo>+      </mtd> +      <mtd>+        <mo>&#119834;</mo>+      </mtd> +      <mtd>+        <mo>&#119850;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120490;</mo>+      </mtd> +      <mtd>+        <mo>&#120506;</mo>+      </mtd> +      <mtd>+        <mo>&#120522;</mo>+      </mtd> +      <mtd>+        <mo>&#120538;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120778;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#119819;</mo>+      </mtd> +      <mtd>+        <mo>&#119835;</mo>+      </mtd> +      <mtd>+        <mo>&#119851;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120491;</mo>+      </mtd> +      <mtd>+        <mo>&#120507;</mo>+      </mtd> +      <mtd>+        <mo>&#120523;</mo>+      </mtd> +      <mtd>+        <mo>&#120539;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120779;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#119820;</mo>+      </mtd> +      <mtd>+        <mo>&#119836;</mo>+      </mtd> +      <mtd>+        <mo>&#119852;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120492;</mo>+      </mtd> +      <mtd>+        <mo>&#120508;</mo>+      </mtd> +      <mtd>+        <mo>&#120524;</mo>+      </mtd> +      <mtd>+        <mo>&#120540;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#119821;</mo>+      </mtd> +      <mtd>+        <mo>&#119837;</mo>+      </mtd> +      <mtd>+        <mo>&#119853;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120493;</mo>+      </mtd> +      <mtd>+        <mo>&#120509;</mo>+      </mtd> +      <mtd>+        <mo>&#120525;</mo>+      </mtd> +      <mtd>+        <mo>&#120541;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#119822;</mo>+      </mtd> +      <mtd>+        <mo>&#119838;</mo>+      </mtd> +      <mtd>+        <mo>&#119854;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120494;</mo>+      </mtd> +      <mtd>+        <mo>&#120510;</mo>+      </mtd> +      <mtd>+        <mo>&#120526;</mo>+      </mtd> +      <mtd>+        <mo>&#120542;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120782;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#119823;</mo>+      </mtd> +      <mtd>+        <mo>&#119839;</mo>+      </mtd> +      <mtd>+        <mo>&#119855;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120495;</mo>+      </mtd> +      <mtd>+        <mo>&#120511;</mo>+      </mtd> +      <mtd>+        <mo>&#120527;</mo>+      </mtd> +      <mtd>+        <mo>&#120543;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120783;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D40" ]+      , [ EText TextNormal "1D41" ]+      , [ EText TextNormal "1D42" ]+      , [ EText TextNormal "1D43" ]+      , [ EText TextNormal "1D6A" ]+      , [ EText TextNormal "1D6B" ]+      , [ EText TextNormal "1D6C" ]+      , [ EText TextNormal "1D6D" ]+      , [ EText TextNormal "1D6E" ]+      , [ EText TextNormal "1D7C" ]+      , [ EText TextNormal "1D7D" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Alpha "\119808" ]+      , [ ESymbol Alpha "\119824" ]+      , [ ESymbol Alpha "\119840" ]+      , [ ESymbol Alpha "\119856" ]+      , []+      , [ ESymbol Alpha "\120496" ]+      , [ ESymbol Alpha "\120512" ]+      , [ ESymbol Alpha "\120528" ]+      , [ ESymbol Alpha "\120544" ]+      , []+      , [ ESymbol Ord "\120784" ]+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Alpha "\119809" ]+      , [ ESymbol Alpha "\119825" ]+      , [ ESymbol Alpha "\119841" ]+      , [ ESymbol Alpha "\119857" ]+      , []+      , [ ESymbol Alpha "\120497" ]+      , [ ESymbol Ord "\120513" ]+      , [ ESymbol Alpha "\120529" ]+      , [ ESymbol Alpha "\120545" ]+      , []+      , [ ESymbol Ord "\120785" ]+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Alpha "\119810" ]+      , [ ESymbol Alpha "\119826" ]+      , [ ESymbol Alpha "\119842" ]+      , [ ESymbol Alpha "\119858" ]+      , []+      , [ ESymbol Alpha "\120498" ]+      , [ ESymbol Alpha "\120514" ]+      , [ ESymbol Alpha "\120530" ]+      , []+      , []+      , [ ESymbol Ord "\120786" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Alpha "\119811" ]+      , [ ESymbol Alpha "\119827" ]+      , [ ESymbol Alpha "\119843" ]+      , [ ESymbol Alpha "\119859" ]+      , []+      , [ ESymbol Alpha "\120499" ]+      , [ ESymbol Alpha "\120515" ]+      , [ ESymbol Alpha "\120531" ]+      , []+      , []+      , [ ESymbol Ord "\120787" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Alpha "\119812" ]+      , [ ESymbol Alpha "\119828" ]+      , [ ESymbol Alpha "\119844" ]+      , []+      , []+      , [ ESymbol Alpha "\120500" ]+      , [ ESymbol Alpha "\120516" ]+      , [ ESymbol Alpha "\120532" ]+      , []+      , []+      , [ ESymbol Ord "\120788" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Alpha "\119813" ]+      , [ ESymbol Alpha "\119829" ]+      , [ ESymbol Alpha "\119845" ]+      , []+      , []+      , [ ESymbol Alpha "\120501" ]+      , [ ESymbol Alpha "\120517" ]+      , [ ESymbol Alpha "\120533" ]+      , []+      , []+      , [ ESymbol Ord "\120789" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Alpha "\119814" ]+      , [ ESymbol Alpha "\119830" ]+      , [ ESymbol Alpha "\119846" ]+      , []+      , []+      , [ ESymbol Alpha "\120502" ]+      , [ ESymbol Alpha "\120518" ]+      , [ ESymbol Alpha "\120534" ]+      , []+      , []+      , [ ESymbol Ord "\120790" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Alpha "\119815" ]+      , [ ESymbol Alpha "\119831" ]+      , [ ESymbol Alpha "\119847" ]+      , []+      , []+      , [ ESymbol Alpha "\120503" ]+      , [ ESymbol Alpha "\120519" ]+      , [ ESymbol Alpha "\120535" ]+      , []+      , []+      , [ ESymbol Ord "\120791" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\119816" ]+      , [ ESymbol Alpha "\119832" ]+      , [ ESymbol Alpha "\119848" ]+      , []+      , [ ESymbol Alpha "\120488" ]+      , [ ESymbol Alpha "\120504" ]+      , [ ESymbol Alpha "\120520" ]+      , [ ESymbol Alpha "\120536" ]+      , []+      , []+      , []+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\119817" ]+      , [ ESymbol Alpha "\119833" ]+      , [ ESymbol Alpha "\119849" ]+      , []+      , [ ESymbol Alpha "\120489" ]+      , [ ESymbol Alpha "\120505" ]+      , [ ESymbol Alpha "\120521" ]+      , [ ESymbol Alpha "\120537" ]+      , []+      , []+      , []+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\119818" ]+      , [ ESymbol Alpha "\119834" ]+      , [ ESymbol Alpha "\119850" ]+      , []+      , [ ESymbol Alpha "\120490" ]+      , [ ESymbol Alpha "\120506" ]+      , [ ESymbol Alpha "\120522" ]+      , [ ESymbol Alpha "\120538" ]+      , []+      , [ ESymbol Alpha "\120778" ]+      , []+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\119819" ]+      , [ ESymbol Alpha "\119835" ]+      , [ ESymbol Alpha "\119851" ]+      , []+      , [ ESymbol Alpha "\120491" ]+      , [ ESymbol Alpha "\120507" ]+      , [ ESymbol Alpha "\120523" ]+      , [ ESymbol Ord "\120539" ]+      , []+      , [ ESymbol Alpha "\120779" ]+      , []+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\119820" ]+      , [ ESymbol Alpha "\119836" ]+      , [ ESymbol Alpha "\119852" ]+      , []+      , [ ESymbol Alpha "\120492" ]+      , [ ESymbol Alpha "\120508" ]+      , [ ESymbol Alpha "\120524" ]+      , [ ESymbol Alpha "\120540" ]+      , []+      , []+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\119821" ]+      , [ ESymbol Alpha "\119837" ]+      , [ ESymbol Alpha "\119853" ]+      , []+      , [ ESymbol Alpha "\120493" ]+      , [ ESymbol Alpha "\120509" ]+      , [ ESymbol Alpha "\120525" ]+      , [ ESymbol Alpha "\120541" ]+      , []+      , []+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\119822" ]+      , [ ESymbol Alpha "\119838" ]+      , [ ESymbol Alpha "\119854" ]+      , []+      , [ ESymbol Alpha "\120494" ]+      , [ ESymbol Alpha "\120510" ]+      , [ ESymbol Alpha "\120526" ]+      , [ ESymbol Alpha "\120542" ]+      , []+      , [ ESymbol Ord "\120782" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\119823" ]+      , [ ESymbol Alpha "\119839" ]+      , [ ESymbol Alpha "\119855" ]+      , []+      , [ ESymbol Alpha "\120495" ]+      , [ ESymbol Alpha "\120511" ]+      , [ ESymbol Alpha "\120527" ]+      , [ ESymbol Alpha "\120543" ]+      , []+      , [ ESymbol Ord "\120783" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test view
@@ -0,0 +1,474 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D53</mtext>+      </mtd> +      <mtd>+        <mtext>1D54</mtext>+      </mtd> +      <mtd>+        <mtext>1D55</mtext>+      </mtd> +      <mtd>+        <mtext>1D56</mtext>+      </mtd> +      <mtd>+        <mtext>1D7D</mtext>+      </mtd> +      <mtd>+        <mtext>1D7E</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120128;</mo>+      </mtd> +      <mtd>+        <mo>&#120144;</mo>+      </mtd> +      <mtd>+        <mo>&#120160;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120800;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120129;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120161;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120801;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120130;</mo>+      </mtd> +      <mtd>+        <mo>&#120146;</mo>+      </mtd> +      <mtd>+        <mo>&#120162;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120131;</mo>+      </mtd> +      <mtd>+        <mo>&#120147;</mo>+      </mtd> +      <mtd>+        <mo>&#120163;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120132;</mo>+      </mtd> +      <mtd>+        <mo>&#120148;</mo>+      </mtd> +      <mtd>+        <mo>&#120164;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120149;</mo>+      </mtd> +      <mtd>+        <mo>&#120165;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120134;</mo>+      </mtd> +      <mtd>+        <mo>&#120150;</mo>+      </mtd> +      <mtd>+        <mo>&#120166;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120151;</mo>+      </mtd> +      <mtd>+        <mo>&#120167;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#120120;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120152;</mo>+      </mtd> +      <mtd>+        <mo>&#120168;</mo>+      </mtd> +      <mtd>+        <mo>&#120792;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#120121;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120153;</mo>+      </mtd> +      <mtd>+        <mo>&#120169;</mo>+      </mtd> +      <mtd>+        <mo>&#120793;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120138;</mo>+      </mtd> +      <mtd>+        <mo>&#120154;</mo>+      </mtd> +      <mtd>+        <mo>&#120170;</mo>+      </mtd> +      <mtd>+        <mo>&#120794;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#120123;</mo>+      </mtd> +      <mtd>+        <mo>&#120139;</mo>+      </mtd> +      <mtd>+        <mo>&#120155;</mo>+      </mtd> +      <mtd>+        <mo>&#120171;</mo>+      </mtd> +      <mtd>+        <mo>&#120795;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#120124;</mo>+      </mtd> +      <mtd>+        <mo>&#120140;</mo>+      </mtd> +      <mtd>+        <mo>&#120156;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120796;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120125;</mo>+      </mtd> +      <mtd>+        <mo>&#120141;</mo>+      </mtd> +      <mtd>+        <mo>&#120157;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120797;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120126;</mo>+      </mtd> +      <mtd>+        <mo>&#120142;</mo>+      </mtd> +      <mtd>+        <mo>&#120158;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120798;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120143;</mo>+      </mtd> +      <mtd>+        <mo>&#120159;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120799;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D53" ]+      , [ EText TextNormal "1D54" ]+      , [ EText TextNormal "1D55" ]+      , [ EText TextNormal "1D56" ]+      , [ EText TextNormal "1D7D" ]+      , [ EText TextNormal "1D7E" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Alpha "\120128" ]+      , [ ESymbol Alpha "\120144" ]+      , [ ESymbol Alpha "\120160" ]+      , []+      , [ ESymbol Ord "\120800" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Alpha "\120129" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120161" ]+      , []+      , [ ESymbol Ord "\120801" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\120130" ]+      , [ ESymbol Alpha "\120146" ]+      , [ ESymbol Alpha "\120162" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Alpha "\120131" ]+      , [ ESymbol Alpha "\120147" ]+      , [ ESymbol Alpha "\120163" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "4" ]+      , []+      , [ ESymbol Alpha "\120132" ]+      , [ ESymbol Alpha "\120148" ]+      , [ ESymbol Alpha "\120164" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "5" ]+      , []+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120149" ]+      , [ ESymbol Alpha "\120165" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "6" ]+      , []+      , [ ESymbol Alpha "\120134" ]+      , [ ESymbol Alpha "\120150" ]+      , [ ESymbol Alpha "\120166" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "7" ]+      , []+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120151" ]+      , [ ESymbol Alpha "\120167" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\120120" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120152" ]+      , [ ESymbol Alpha "\120168" ]+      , [ ESymbol Ord "\120792" ]+      , []+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\120121" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120153" ]+      , [ ESymbol Alpha "\120169" ]+      , [ ESymbol Ord "\120793" ]+      , []+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120138" ]+      , [ ESymbol Alpha "\120154" ]+      , [ ESymbol Alpha "\120170" ]+      , [ ESymbol Ord "\120794" ]+      , []+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\120123" ]+      , [ ESymbol Alpha "\120139" ]+      , [ ESymbol Alpha "\120155" ]+      , [ ESymbol Alpha "\120171" ]+      , [ ESymbol Ord "\120795" ]+      , []+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\120124" ]+      , [ ESymbol Alpha "\120140" ]+      , [ ESymbol Alpha "\120156" ]+      , []+      , [ ESymbol Ord "\120796" ]+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120125" ]+      , [ ESymbol Alpha "\120141" ]+      , [ ESymbol Alpha "\120157" ]+      , []+      , [ ESymbol Ord "\120797" ]+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120126" ]+      , [ ESymbol Alpha "\120142" ]+      , [ ESymbol Alpha "\120158" ]+      , []+      , [ ESymbol Ord "\120798" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120143" ]+      , [ ESymbol Alpha "\120159" ]+      , []+      , [ ESymbol Ord "\120799" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test view
@@ -0,0 +1,380 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D50</mtext>+      </mtd> +      <mtd>+        <mtext>1D51</mtext>+      </mtd> +      <mtd>+        <mtext>1D52</mtext>+      </mtd> +      <mtd>+        <mtext>1D53</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120080;</mo>+      </mtd> +      <mtd>+        <mo>&#120096;</mo>+      </mtd> +      <mtd>+        <mo>&#120112;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120081;</mo>+      </mtd> +      <mtd>+        <mo>&#120097;</mo>+      </mtd> +      <mtd>+        <mo>&#120113;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120082;</mo>+      </mtd> +      <mtd>+        <mo>&#120098;</mo>+      </mtd> +      <mtd>+        <mo>&#120114;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120083;</mo>+      </mtd> +      <mtd>+        <mo>&#120099;</mo>+      </mtd> +      <mtd>+        <mo>&#120115;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#120068;</mo>+      </mtd> +      <mtd>+        <mo>&#120084;</mo>+      </mtd> +      <mtd>+        <mo>&#120100;</mo>+      </mtd> +      <mtd>+        <mo>&#120116;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#120069;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120101;</mo>+      </mtd> +      <mtd>+        <mo>&#120117;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120086;</mo>+      </mtd> +      <mtd>+        <mo>&#120102;</mo>+      </mtd> +      <mtd>+        <mo>&#120118;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#120071;</mo>+      </mtd> +      <mtd>+        <mo>&#120087;</mo>+      </mtd> +      <mtd>+        <mo>&#120103;</mo>+      </mtd> +      <mtd>+        <mo>&#120119;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#120072;</mo>+      </mtd> +      <mtd>+        <mo>&#120088;</mo>+      </mtd> +      <mtd>+        <mo>&#120104;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#120073;</mo>+      </mtd> +      <mtd>+        <mo>&#120089;</mo>+      </mtd> +      <mtd>+        <mo>&#120105;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#120074;</mo>+      </mtd> +      <mtd>+        <mo>&#120090;</mo>+      </mtd> +      <mtd>+        <mo>&#120106;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120091;</mo>+      </mtd> +      <mtd>+        <mo>&#120107;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120092;</mo>+      </mtd> +      <mtd>+        <mo>&#120108;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120077;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120109;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120078;</mo>+      </mtd> +      <mtd>+        <mo>&#120094;</mo>+      </mtd> +      <mtd>+        <mo>&#120110;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#120079;</mo>+      </mtd> +      <mtd>+        <mo>&#120095;</mo>+      </mtd> +      <mtd>+        <mo>&#120111;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D50" ]+      , [ EText TextNormal "1D51" ]+      , [ EText TextNormal "1D52" ]+      , [ EText TextNormal "1D53" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Alpha "\120080" ]+      , [ ESymbol Alpha "\120096" ]+      , [ ESymbol Alpha "\120112" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Alpha "\120081" ]+      , [ ESymbol Alpha "\120097" ]+      , [ ESymbol Alpha "\120113" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\120082" ]+      , [ ESymbol Alpha "\120098" ]+      , [ ESymbol Alpha "\120114" ]+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Alpha "\120083" ]+      , [ ESymbol Alpha "\120099" ]+      , [ ESymbol Alpha "\120115" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Alpha "\120068" ]+      , [ ESymbol Alpha "\120084" ]+      , [ ESymbol Alpha "\120100" ]+      , [ ESymbol Alpha "\120116" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Alpha "\120069" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120101" ]+      , [ ESymbol Alpha "\120117" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120086" ]+      , [ ESymbol Alpha "\120102" ]+      , [ ESymbol Alpha "\120118" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Alpha "\120071" ]+      , [ ESymbol Alpha "\120087" ]+      , [ ESymbol Alpha "\120103" ]+      , [ ESymbol Alpha "\120119" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\120072" ]+      , [ ESymbol Alpha "\120088" ]+      , [ ESymbol Alpha "\120104" ]+      , []+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\120073" ]+      , [ ESymbol Alpha "\120089" ]+      , [ ESymbol Alpha "\120105" ]+      , []+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\120074" ]+      , [ ESymbol Alpha "\120090" ]+      , [ ESymbol Alpha "\120106" ]+      , []+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120091" ]+      , [ ESymbol Alpha "\120107" ]+      , []+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120092" ]+      , [ ESymbol Alpha "\120108" ]+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120077" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120109" ]+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120078" ]+      , [ ESymbol Alpha "\120094" ]+      , [ ESymbol Alpha "\120110" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\120079" ]+      , [ ESymbol Alpha "\120095" ]+      , [ ESymbol Alpha "\120111" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_italic.test view
@@ -0,0 +1,685 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D43</mtext>+      </mtd> +      <mtd>+        <mtext>1D44</mtext>+      </mtd> +      <mtd>+        <mtext>1D45</mtext>+      </mtd> +      <mtd>+        <mtext>1D46</mtext>+      </mtd> +      <mtd>+        <mtext>1D6A</mtext>+      </mtd> +      <mtd>+        <mtext>1D6E</mtext>+      </mtd> +      <mtd>+        <mtext>1D6F</mtext>+      </mtd> +      <mtd>+        <mtext>1D70</mtext>+      </mtd> +      <mtd>+        <mtext>1D71</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119872;</mo>+      </mtd> +      <mtd>+        <mo>&#119888;</mo>+      </mtd> +      <mtd>+        <mo>&#119904;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120560;</mo>+      </mtd> +      <mtd>+        <mo>&#120576;</mo>+      </mtd> +      <mtd>+        <mo>&#120592;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119873;</mo>+      </mtd> +      <mtd>+        <mo>&#119889;</mo>+      </mtd> +      <mtd>+        <mo>&#119905;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120561;</mo>+      </mtd> +      <mtd>+        <mo>&#120577;</mo>+      </mtd> +      <mtd>+        <mo>&#120593;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119874;</mo>+      </mtd> +      <mtd>+        <mo>&#119890;</mo>+      </mtd> +      <mtd>+        <mo>&#119906;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120546;</mo>+      </mtd> +      <mtd>+        <mo>&#120562;</mo>+      </mtd> +      <mtd>+        <mo>&#120578;</mo>+      </mtd> +      <mtd>+        <mo>&#120594;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119875;</mo>+      </mtd> +      <mtd>+        <mo>&#119891;</mo>+      </mtd> +      <mtd>+        <mo>&#119907;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120547;</mo>+      </mtd> +      <mtd>+        <mo>&#120563;</mo>+      </mtd> +      <mtd>+        <mo>&#120579;</mo>+      </mtd> +      <mtd>+        <mo>&#120595;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#119860;</mo>+      </mtd> +      <mtd>+        <mo>&#119876;</mo>+      </mtd> +      <mtd>+        <mo>&#119892;</mo>+      </mtd> +      <mtd>+        <mo>&#119908;</mo>+      </mtd> +      <mtd>+        <mo>&#120484;</mo>+      </mtd> +      <mtd>+        <mo>&#120548;</mo>+      </mtd> +      <mtd>+        <mo>&#120564;</mo>+      </mtd> +      <mtd>+        <mo>&#120580;</mo>+      </mtd> +      <mtd>+        <mo>&#120596;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#119861;</mo>+      </mtd> +      <mtd>+        <mo>&#119877;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#119909;</mo>+      </mtd> +      <mtd>+        <mo>&#120485;</mo>+      </mtd> +      <mtd>+        <mo>&#120549;</mo>+      </mtd> +      <mtd>+        <mo>&#120565;</mo>+      </mtd> +      <mtd>+        <mo>&#120581;</mo>+      </mtd> +      <mtd>+        <mo>&#120597;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#119862;</mo>+      </mtd> +      <mtd>+        <mo>&#119878;</mo>+      </mtd> +      <mtd>+        <mo>&#119894;</mo>+      </mtd> +      <mtd>+        <mo>&#119910;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120550;</mo>+      </mtd> +      <mtd>+        <mo>&#120566;</mo>+      </mtd> +      <mtd>+        <mo>&#120582;</mo>+      </mtd> +      <mtd>+        <mo>&#120598;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#119863;</mo>+      </mtd> +      <mtd>+        <mo>&#119879;</mo>+      </mtd> +      <mtd>+        <mo>&#119895;</mo>+      </mtd> +      <mtd>+        <mo>&#119911;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120551;</mo>+      </mtd> +      <mtd>+        <mo>&#120567;</mo>+      </mtd> +      <mtd>+        <mo>&#120583;</mo>+      </mtd> +      <mtd>+        <mo>&#120599;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#119864;</mo>+      </mtd> +      <mtd>+        <mo>&#119880;</mo>+      </mtd> +      <mtd>+        <mo>&#119896;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120552;</mo>+      </mtd> +      <mtd>+        <mo>&#120568;</mo>+      </mtd> +      <mtd>+        <mo>&#120584;</mo>+      </mtd> +      <mtd>+        <mo>&#120600;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#119865;</mo>+      </mtd> +      <mtd>+        <mo>&#119881;</mo>+      </mtd> +      <mtd>+        <mo>&#119897;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120553;</mo>+      </mtd> +      <mtd>+        <mo>&#120569;</mo>+      </mtd> +      <mtd>+        <mo>&#120585;</mo>+      </mtd> +      <mtd>+        <mo>&#120601;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#119866;</mo>+      </mtd> +      <mtd>+        <mo>&#119882;</mo>+      </mtd> +      <mtd>+        <mo>&#119898;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120554;</mo>+      </mtd> +      <mtd>+        <mo>&#120570;</mo>+      </mtd> +      <mtd>+        <mo>&#120586;</mo>+      </mtd> +      <mtd>+        <mo>&#120602;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#119867;</mo>+      </mtd> +      <mtd>+        <mo>&#119883;</mo>+      </mtd> +      <mtd>+        <mo>&#119899;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120555;</mo>+      </mtd> +      <mtd>+        <mo>&#120571;</mo>+      </mtd> +      <mtd>+        <mo>&#120587;</mo>+      </mtd> +      <mtd>+        <mo>&#120603;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#119868;</mo>+      </mtd> +      <mtd>+        <mo>&#119884;</mo>+      </mtd> +      <mtd>+        <mo>&#119900;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120556;</mo>+      </mtd> +      <mtd>+        <mo>&#120572;</mo>+      </mtd> +      <mtd>+        <mo>&#120588;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#119869;</mo>+      </mtd> +      <mtd>+        <mo>&#119885;</mo>+      </mtd> +      <mtd>+        <mo>&#119901;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120557;</mo>+      </mtd> +      <mtd>+        <mo>&#120573;</mo>+      </mtd> +      <mtd>+        <mo>&#120589;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#119870;</mo>+      </mtd> +      <mtd>+        <mo>&#119886;</mo>+      </mtd> +      <mtd>+        <mo>&#119902;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120558;</mo>+      </mtd> +      <mtd>+        <mo>&#120574;</mo>+      </mtd> +      <mtd>+        <mo>&#120590;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#119871;</mo>+      </mtd> +      <mtd>+        <mo>&#119887;</mo>+      </mtd> +      <mtd>+        <mo>&#119903;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120559;</mo>+      </mtd> +      <mtd>+        <mo>&#120575;</mo>+      </mtd> +      <mtd>+        <mo>&#120591;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D43" ]+      , [ EText TextNormal "1D44" ]+      , [ EText TextNormal "1D45" ]+      , [ EText TextNormal "1D46" ]+      , [ EText TextNormal "1D6A" ]+      , [ EText TextNormal "1D6E" ]+      , [ EText TextNormal "1D6F" ]+      , [ EText TextNormal "1D70" ]+      , [ EText TextNormal "1D71" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Alpha "\119872" ]+      , [ ESymbol Alpha "\119888" ]+      , [ ESymbol Alpha "\119904" ]+      , []+      , []+      , [ ESymbol Alpha "\120560" ]+      , [ ESymbol Alpha "\120576" ]+      , [ ESymbol Alpha "\120592" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Alpha "\119873" ]+      , [ ESymbol Alpha "\119889" ]+      , [ ESymbol Alpha "\119905" ]+      , []+      , []+      , [ ESymbol Alpha "\120561" ]+      , [ ESymbol Alpha "\120577" ]+      , [ ESymbol Alpha "\120593" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\119874" ]+      , [ ESymbol Alpha "\119890" ]+      , [ ESymbol Alpha "\119906" ]+      , []+      , [ ESymbol Alpha "\120546" ]+      , [ ESymbol Alpha "\120562" ]+      , [ ESymbol Alpha "\120578" ]+      , [ ESymbol Alpha "\120594" ]+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Alpha "\119875" ]+      , [ ESymbol Alpha "\119891" ]+      , [ ESymbol Alpha "\119907" ]+      , []+      , [ ESymbol Alpha "\120547" ]+      , [ ESymbol Alpha "\120563" ]+      , [ ESymbol Alpha "\120579" ]+      , [ ESymbol Alpha "\120595" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Alpha "\119860" ]+      , [ ESymbol Alpha "\119876" ]+      , [ ESymbol Alpha "\119892" ]+      , [ ESymbol Alpha "\119908" ]+      , [ ESymbol Alpha "\120484" ]+      , [ ESymbol Alpha "\120548" ]+      , [ ESymbol Alpha "\120564" ]+      , [ ESymbol Alpha "\120580" ]+      , [ ESymbol Alpha "\120596" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Alpha "\119861" ]+      , [ ESymbol Alpha "\119877" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\119909" ]+      , [ ESymbol Alpha "\120485" ]+      , [ ESymbol Alpha "\120549" ]+      , [ ESymbol Alpha "\120565" ]+      , [ ESymbol Alpha "\120581" ]+      , [ ESymbol Ord "\120597" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Alpha "\119862" ]+      , [ ESymbol Alpha "\119878" ]+      , [ ESymbol Alpha "\119894" ]+      , [ ESymbol Alpha "\119910" ]+      , []+      , [ ESymbol Alpha "\120550" ]+      , [ ESymbol Alpha "\120566" ]+      , [ ESymbol Alpha "\120582" ]+      , [ ESymbol Alpha "\120598" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Alpha "\119863" ]+      , [ ESymbol Alpha "\119879" ]+      , [ ESymbol Alpha "\119895" ]+      , [ ESymbol Alpha "\119911" ]+      , []+      , [ ESymbol Alpha "\120551" ]+      , [ ESymbol Alpha "\120567" ]+      , [ ESymbol Alpha "\120583" ]+      , [ ESymbol Alpha "\120599" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\119864" ]+      , [ ESymbol Alpha "\119880" ]+      , [ ESymbol Alpha "\119896" ]+      , []+      , []+      , [ ESymbol Alpha "\120552" ]+      , [ ESymbol Alpha "\120568" ]+      , [ ESymbol Alpha "\120584" ]+      , [ ESymbol Alpha "\120600" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\119865" ]+      , [ ESymbol Alpha "\119881" ]+      , [ ESymbol Alpha "\119897" ]+      , []+      , []+      , [ ESymbol Alpha "\120553" ]+      , [ ESymbol Alpha "\120569" ]+      , [ ESymbol Alpha "\120585" ]+      , [ ESymbol Alpha "\120601" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\119866" ]+      , [ ESymbol Alpha "\119882" ]+      , [ ESymbol Alpha "\119898" ]+      , []+      , []+      , [ ESymbol Alpha "\120554" ]+      , [ ESymbol Alpha "\120570" ]+      , [ ESymbol Alpha "\120586" ]+      , [ ESymbol Alpha "\120602" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\119867" ]+      , [ ESymbol Alpha "\119883" ]+      , [ ESymbol Alpha "\119899" ]+      , []+      , []+      , [ ESymbol Alpha "\120555" ]+      , [ ESymbol Ord "\120571" ]+      , [ ESymbol Alpha "\120587" ]+      , [ ESymbol Alpha "\120603" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\119868" ]+      , [ ESymbol Alpha "\119884" ]+      , [ ESymbol Alpha "\119900" ]+      , []+      , []+      , [ ESymbol Alpha "\120556" ]+      , [ ESymbol Alpha "\120572" ]+      , [ ESymbol Alpha "\120588" ]+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\119869" ]+      , [ ESymbol Alpha "\119885" ]+      , [ ESymbol Alpha "\119901" ]+      , []+      , []+      , [ ESymbol Alpha "\120557" ]+      , [ ESymbol Alpha "\120573" ]+      , [ ESymbol Alpha "\120589" ]+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\119870" ]+      , [ ESymbol Alpha "\119886" ]+      , [ ESymbol Alpha "\119902" ]+      , []+      , []+      , [ ESymbol Alpha "\120558" ]+      , [ ESymbol Alpha "\120574" ]+      , [ ESymbol Alpha "\120590" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\119871" ]+      , [ ESymbol Alpha "\119887" ]+      , [ ESymbol Alpha "\119903" ]+      , []+      , []+      , [ ESymbol Alpha "\120559" ]+      , [ ESymbol Alpha "\120575" ]+      , [ ESymbol Alpha "\120591" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_monospace.test view
@@ -0,0 +1,437 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D67</mtext>+      </mtd> +      <mtd>+        <mtext>1D68</mtext>+      </mtd> +      <mtd>+        <mtext>1D69</mtext>+      </mtd> +      <mtd>+        <mtext>1D6A</mtext>+      </mtd> +      <mtd>+        <mtext>1D7F</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#120432;</mo>+      </mtd> +      <mtd>+        <mo>&#120448;</mo>+      </mtd> +      <mtd>+        <mo>&#120464;</mo>+      </mtd> +      <mtd>+        <mo>&#120480;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#120433;</mo>+      </mtd> +      <mtd>+        <mo>&#120449;</mo>+      </mtd> +      <mtd>+        <mo>&#120465;</mo>+      </mtd> +      <mtd>+        <mo>&#120481;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#120434;</mo>+      </mtd> +      <mtd>+        <mo>&#120450;</mo>+      </mtd> +      <mtd>+        <mo>&#120466;</mo>+      </mtd> +      <mtd>+        <mo>&#120482;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#120435;</mo>+      </mtd> +      <mtd>+        <mo>&#120451;</mo>+      </mtd> +      <mtd>+        <mo>&#120467;</mo>+      </mtd> +      <mtd>+        <mo>&#120483;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#120436;</mo>+      </mtd> +      <mtd>+        <mo>&#120452;</mo>+      </mtd> +      <mtd>+        <mo>&#120468;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#120437;</mo>+      </mtd> +      <mtd>+        <mo>&#120453;</mo>+      </mtd> +      <mtd>+        <mo>&#120469;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#120438;</mo>+      </mtd> +      <mtd>+        <mo>&#120454;</mo>+      </mtd> +      <mtd>+        <mo>&#120470;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120822;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#120439;</mo>+      </mtd> +      <mtd>+        <mo>&#120455;</mo>+      </mtd> +      <mtd>+        <mo>&#120471;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120823;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#120440;</mo>+      </mtd> +      <mtd>+        <mo>&#120456;</mo>+      </mtd> +      <mtd>+        <mo>&#120472;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120824;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#120441;</mo>+      </mtd> +      <mtd>+        <mo>&#120457;</mo>+      </mtd> +      <mtd>+        <mo>&#120473;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120825;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#120442;</mo>+      </mtd> +      <mtd>+        <mo>&#120458;</mo>+      </mtd> +      <mtd>+        <mo>&#120474;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120826;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#120443;</mo>+      </mtd> +      <mtd>+        <mo>&#120459;</mo>+      </mtd> +      <mtd>+        <mo>&#120475;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120827;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#120444;</mo>+      </mtd> +      <mtd>+        <mo>&#120460;</mo>+      </mtd> +      <mtd>+        <mo>&#120476;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120828;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120445;</mo>+      </mtd> +      <mtd>+        <mo>&#120461;</mo>+      </mtd> +      <mtd>+        <mo>&#120477;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120829;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120446;</mo>+      </mtd> +      <mtd>+        <mo>&#120462;</mo>+      </mtd> +      <mtd>+        <mo>&#120478;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120830;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#120447;</mo>+      </mtd> +      <mtd>+        <mo>&#120463;</mo>+      </mtd> +      <mtd>+        <mo>&#120479;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120831;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D67" ]+      , [ EText TextNormal "1D68" ]+      , [ EText TextNormal "1D69" ]+      , [ EText TextNormal "1D6A" ]+      , [ EText TextNormal "1D7F" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Alpha "\120432" ]+      , [ ESymbol Alpha "\120448" ]+      , [ ESymbol Alpha "\120464" ]+      , [ ESymbol Alpha "\120480" ]+      , []+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Alpha "\120433" ]+      , [ ESymbol Alpha "\120449" ]+      , [ ESymbol Alpha "\120465" ]+      , [ ESymbol Alpha "\120481" ]+      , []+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Alpha "\120434" ]+      , [ ESymbol Alpha "\120450" ]+      , [ ESymbol Alpha "\120466" ]+      , [ ESymbol Alpha "\120482" ]+      , []+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Alpha "\120435" ]+      , [ ESymbol Alpha "\120451" ]+      , [ ESymbol Alpha "\120467" ]+      , [ ESymbol Alpha "\120483" ]+      , []+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Alpha "\120436" ]+      , [ ESymbol Alpha "\120452" ]+      , [ ESymbol Alpha "\120468" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Alpha "\120437" ]+      , [ ESymbol Alpha "\120453" ]+      , [ ESymbol Alpha "\120469" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Alpha "\120438" ]+      , [ ESymbol Alpha "\120454" ]+      , [ ESymbol Alpha "\120470" ]+      , []+      , [ ESymbol Ord "\120822" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Alpha "\120439" ]+      , [ ESymbol Alpha "\120455" ]+      , [ ESymbol Alpha "\120471" ]+      , []+      , [ ESymbol Ord "\120823" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\120440" ]+      , [ ESymbol Alpha "\120456" ]+      , [ ESymbol Alpha "\120472" ]+      , []+      , [ ESymbol Ord "\120824" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\120441" ]+      , [ ESymbol Alpha "\120457" ]+      , [ ESymbol Alpha "\120473" ]+      , []+      , [ ESymbol Ord "\120825" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\120442" ]+      , [ ESymbol Alpha "\120458" ]+      , [ ESymbol Alpha "\120474" ]+      , []+      , [ ESymbol Ord "\120826" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\120443" ]+      , [ ESymbol Alpha "\120459" ]+      , [ ESymbol Alpha "\120475" ]+      , []+      , [ ESymbol Ord "\120827" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\120444" ]+      , [ ESymbol Alpha "\120460" ]+      , [ ESymbol Alpha "\120476" ]+      , []+      , [ ESymbol Ord "\120828" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120445" ]+      , [ ESymbol Alpha "\120461" ]+      , [ ESymbol Alpha "\120477" ]+      , []+      , [ ESymbol Ord "\120829" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120446" ]+      , [ ESymbol Alpha "\120462" ]+      , [ ESymbol Alpha "\120478" ]+      , []+      , [ ESymbol Ord "\120830" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\120447" ]+      , [ ESymbol Alpha "\120463" ]+      , [ ESymbol Alpha "\120479" ]+      , []+      , [ ESymbol Ord "\120831" ]+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test view
@@ -0,0 +1,644 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D63</mtext>+      </mtd> +      <mtd>+        <mtext>1D64</mtext>+      </mtd> +      <mtd>+        <mtext>1D65</mtext>+      </mtd> +      <mtd>+        <mtext>1D66</mtext>+      </mtd> +      <mtd>+        <mtext>1D79</mtext>+      </mtd> +      <mtd>+        <mtext>1D7A</mtext>+      </mtd> +      <mtd>+        <mtext>1D7B</mtext>+      </mtd> +      <mtd>+        <mtext>1D7C</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120384;</mo>+      </mtd> +      <mtd>+        <mo>&#120400;</mo>+      </mtd> +      <mtd>+        <mo>&#120416;</mo>+      </mtd> +      <mtd>+        <mo>&#120720;</mo>+      </mtd> +      <mtd>+        <mo>&#120736;</mo>+      </mtd> +      <mtd>+        <mo>&#120752;</mo>+      </mtd> +      <mtd>+        <mo>&#120768;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120385;</mo>+      </mtd> +      <mtd>+        <mo>&#120401;</mo>+      </mtd> +      <mtd>+        <mo>&#120417;</mo>+      </mtd> +      <mtd>+        <mo>&#120721;</mo>+      </mtd> +      <mtd>+        <mo>&#120737;</mo>+      </mtd> +      <mtd>+        <mo>&#120753;</mo>+      </mtd> +      <mtd>+        <mo>&#120769;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120386;</mo>+      </mtd> +      <mtd>+        <mo>&#120402;</mo>+      </mtd> +      <mtd>+        <mo>&#120418;</mo>+      </mtd> +      <mtd>+        <mo>&#120722;</mo>+      </mtd> +      <mtd>+        <mo>&#120738;</mo>+      </mtd> +      <mtd>+        <mo>&#120754;</mo>+      </mtd> +      <mtd>+        <mo>&#120770;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120387;</mo>+      </mtd> +      <mtd>+        <mo>&#120403;</mo>+      </mtd> +      <mtd>+        <mo>&#120419;</mo>+      </mtd> +      <mtd>+        <mo>&#120723;</mo>+      </mtd> +      <mtd>+        <mo>&#120739;</mo>+      </mtd> +      <mtd>+        <mo>&#120755;</mo>+      </mtd> +      <mtd>+        <mo>&#120771;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120388;</mo>+      </mtd> +      <mtd>+        <mo>&#120404;</mo>+      </mtd> +      <mtd>+        <mo>&#120420;</mo>+      </mtd> +      <mtd>+        <mo>&#120724;</mo>+      </mtd> +      <mtd>+        <mo>&#120740;</mo>+      </mtd> +      <mtd>+        <mo>&#120756;</mo>+      </mtd> +      <mtd>+        <mo>&#120772;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120389;</mo>+      </mtd> +      <mtd>+        <mo>&#120405;</mo>+      </mtd> +      <mtd>+        <mo>&#120421;</mo>+      </mtd> +      <mtd>+        <mo>&#120725;</mo>+      </mtd> +      <mtd>+        <mo>&#120741;</mo>+      </mtd> +      <mtd>+        <mo>&#120757;</mo>+      </mtd> +      <mtd>+        <mo>&#120773;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120390;</mo>+      </mtd> +      <mtd>+        <mo>&#120406;</mo>+      </mtd> +      <mtd>+        <mo>&#120422;</mo>+      </mtd> +      <mtd>+        <mo>&#120726;</mo>+      </mtd> +      <mtd>+        <mo>&#120742;</mo>+      </mtd> +      <mtd>+        <mo>&#120758;</mo>+      </mtd> +      <mtd>+        <mo>&#120774;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120391;</mo>+      </mtd> +      <mtd>+        <mo>&#120407;</mo>+      </mtd> +      <mtd>+        <mo>&#120423;</mo>+      </mtd> +      <mtd>+        <mo>&#120727;</mo>+      </mtd> +      <mtd>+        <mo>&#120743;</mo>+      </mtd> +      <mtd>+        <mo>&#120759;</mo>+      </mtd> +      <mtd>+        <mo>&#120775;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120392;</mo>+      </mtd> +      <mtd>+        <mo>&#120408;</mo>+      </mtd> +      <mtd>+        <mo>&#120424;</mo>+      </mtd> +      <mtd>+        <mo>&#120728;</mo>+      </mtd> +      <mtd>+        <mo>&#120744;</mo>+      </mtd> +      <mtd>+        <mo>&#120760;</mo>+      </mtd> +      <mtd>+        <mo>&#120776;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120393;</mo>+      </mtd> +      <mtd>+        <mo>&#120409;</mo>+      </mtd> +      <mtd>+        <mo>&#120425;</mo>+      </mtd> +      <mtd>+        <mo>&#120729;</mo>+      </mtd> +      <mtd>+        <mo>&#120745;</mo>+      </mtd> +      <mtd>+        <mo>&#120761;</mo>+      </mtd> +      <mtd>+        <mo>&#120777;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120394;</mo>+      </mtd> +      <mtd>+        <mo>&#120410;</mo>+      </mtd> +      <mtd>+        <mo>&#120426;</mo>+      </mtd> +      <mtd>+        <mo>&#120730;</mo>+      </mtd> +      <mtd>+        <mo>&#120746;</mo>+      </mtd> +      <mtd>+        <mo>&#120762;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120395;</mo>+      </mtd> +      <mtd>+        <mo>&#120411;</mo>+      </mtd> +      <mtd>+        <mo>&#120427;</mo>+      </mtd> +      <mtd>+        <mo>&#120731;</mo>+      </mtd> +      <mtd>+        <mo>&#120747;</mo>+      </mtd> +      <mtd>+        <mo>&#120763;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#120380;</mo>+      </mtd> +      <mtd>+        <mo>&#120396;</mo>+      </mtd> +      <mtd>+        <mo>&#120412;</mo>+      </mtd> +      <mtd>+        <mo>&#120428;</mo>+      </mtd> +      <mtd>+        <mo>&#120732;</mo>+      </mtd> +      <mtd>+        <mo>&#120748;</mo>+      </mtd> +      <mtd>+        <mo>&#120764;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120381;</mo>+      </mtd> +      <mtd>+        <mo>&#120397;</mo>+      </mtd> +      <mtd>+        <mo>&#120413;</mo>+      </mtd> +      <mtd>+        <mo>&#120429;</mo>+      </mtd> +      <mtd>+        <mo>&#120733;</mo>+      </mtd> +      <mtd>+        <mo>&#120749;</mo>+      </mtd> +      <mtd>+        <mo>&#120765;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120382;</mo>+      </mtd> +      <mtd>+        <mo>&#120398;</mo>+      </mtd> +      <mtd>+        <mo>&#120414;</mo>+      </mtd> +      <mtd>+        <mo>&#120430;</mo>+      </mtd> +      <mtd>+        <mo>&#120734;</mo>+      </mtd> +      <mtd>+        <mo>&#120750;</mo>+      </mtd> +      <mtd>+        <mo>&#120766;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#120383;</mo>+      </mtd> +      <mtd>+        <mo>&#120399;</mo>+      </mtd> +      <mtd>+        <mo>&#120415;</mo>+      </mtd> +      <mtd>+        <mo>&#120431;</mo>+      </mtd> +      <mtd>+        <mo>&#120735;</mo>+      </mtd> +      <mtd>+        <mo>&#120751;</mo>+      </mtd> +      <mtd>+        <mo>&#120767;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D63" ]+      , [ EText TextNormal "1D64" ]+      , [ EText TextNormal "1D65" ]+      , [ EText TextNormal "1D66" ]+      , [ EText TextNormal "1D79" ]+      , [ EText TextNormal "1D7A" ]+      , [ EText TextNormal "1D7B" ]+      , [ EText TextNormal "1D7C" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Alpha "\120384" ]+      , [ ESymbol Alpha "\120400" ]+      , [ ESymbol Alpha "\120416" ]+      , [ ESymbol Alpha "\120720" ]+      , [ ESymbol Alpha "\120736" ]+      , [ ESymbol Alpha "\120752" ]+      , [ ESymbol Alpha "\120768" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Alpha "\120385" ]+      , [ ESymbol Alpha "\120401" ]+      , [ ESymbol Alpha "\120417" ]+      , [ ESymbol Alpha "\120721" ]+      , [ ESymbol Alpha "\120737" ]+      , [ ESymbol Alpha "\120753" ]+      , [ ESymbol Alpha "\120769" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\120386" ]+      , [ ESymbol Alpha "\120402" ]+      , [ ESymbol Alpha "\120418" ]+      , [ ESymbol Alpha "\120722" ]+      , [ ESymbol Alpha "\120738" ]+      , [ ESymbol Alpha "\120754" ]+      , [ ESymbol Alpha "\120770" ]+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Alpha "\120387" ]+      , [ ESymbol Alpha "\120403" ]+      , [ ESymbol Alpha "\120419" ]+      , [ ESymbol Alpha "\120723" ]+      , [ ESymbol Alpha "\120739" ]+      , [ ESymbol Alpha "\120755" ]+      , [ ESymbol Ord "\120771" ]+      ]+    , [ [ EText TextNormal "4" ]+      , []+      , [ ESymbol Alpha "\120388" ]+      , [ ESymbol Alpha "\120404" ]+      , [ ESymbol Alpha "\120420" ]+      , [ ESymbol Alpha "\120724" ]+      , [ ESymbol Alpha "\120740" ]+      , [ ESymbol Alpha "\120756" ]+      , [ ESymbol Alpha "\120772" ]+      ]+    , [ [ EText TextNormal "5" ]+      , []+      , [ ESymbol Alpha "\120389" ]+      , [ ESymbol Alpha "\120405" ]+      , [ ESymbol Alpha "\120421" ]+      , [ ESymbol Alpha "\120725" ]+      , [ ESymbol Alpha "\120741" ]+      , [ ESymbol Alpha "\120757" ]+      , [ ESymbol Alpha "\120773" ]+      ]+    , [ [ EText TextNormal "6" ]+      , []+      , [ ESymbol Alpha "\120390" ]+      , [ ESymbol Alpha "\120406" ]+      , [ ESymbol Alpha "\120422" ]+      , [ ESymbol Alpha "\120726" ]+      , [ ESymbol Alpha "\120742" ]+      , [ ESymbol Alpha "\120758" ]+      , [ ESymbol Alpha "\120774" ]+      ]+    , [ [ EText TextNormal "7" ]+      , []+      , [ ESymbol Alpha "\120391" ]+      , [ ESymbol Alpha "\120407" ]+      , [ ESymbol Alpha "\120423" ]+      , [ ESymbol Alpha "\120727" ]+      , [ ESymbol Alpha "\120743" ]+      , [ ESymbol Alpha "\120759" ]+      , [ ESymbol Alpha "\120775" ]+      ]+    , [ [ EText TextNormal "8" ]+      , []+      , [ ESymbol Alpha "\120392" ]+      , [ ESymbol Alpha "\120408" ]+      , [ ESymbol Alpha "\120424" ]+      , [ ESymbol Alpha "\120728" ]+      , [ ESymbol Alpha "\120744" ]+      , [ ESymbol Alpha "\120760" ]+      , [ ESymbol Alpha "\120776" ]+      ]+    , [ [ EText TextNormal "9" ]+      , []+      , [ ESymbol Alpha "\120393" ]+      , [ ESymbol Alpha "\120409" ]+      , [ ESymbol Alpha "\120425" ]+      , [ ESymbol Alpha "\120729" ]+      , [ ESymbol Ord "\120745" ]+      , [ ESymbol Alpha "\120761" ]+      , [ ESymbol Alpha "\120777" ]+      ]+    , [ [ EText TextNormal "A" ]+      , []+      , [ ESymbol Alpha "\120394" ]+      , [ ESymbol Alpha "\120410" ]+      , [ ESymbol Alpha "\120426" ]+      , [ ESymbol Alpha "\120730" ]+      , [ ESymbol Alpha "\120746" ]+      , [ ESymbol Alpha "\120762" ]+      , []+      ]+    , [ [ EText TextNormal "B" ]+      , []+      , [ ESymbol Alpha "\120395" ]+      , [ ESymbol Alpha "\120411" ]+      , [ ESymbol Alpha "\120427" ]+      , [ ESymbol Alpha "\120731" ]+      , [ ESymbol Alpha "\120747" ]+      , [ ESymbol Alpha "\120763" ]+      , []+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\120380" ]+      , [ ESymbol Alpha "\120396" ]+      , [ ESymbol Alpha "\120412" ]+      , [ ESymbol Alpha "\120428" ]+      , [ ESymbol Alpha "\120732" ]+      , [ ESymbol Alpha "\120748" ]+      , [ ESymbol Alpha "\120764" ]+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120381" ]+      , [ ESymbol Alpha "\120397" ]+      , [ ESymbol Alpha "\120413" ]+      , [ ESymbol Alpha "\120429" ]+      , [ ESymbol Alpha "\120733" ]+      , [ ESymbol Alpha "\120749" ]+      , [ ESymbol Alpha "\120765" ]+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120382" ]+      , [ ESymbol Alpha "\120398" ]+      , [ ESymbol Alpha "\120414" ]+      , [ ESymbol Alpha "\120430" ]+      , [ ESymbol Alpha "\120734" ]+      , [ ESymbol Alpha "\120750" ]+      , [ ESymbol Alpha "\120766" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\120383" ]+      , [ ESymbol Alpha "\120399" ]+      , [ ESymbol Alpha "\120415" ]+      , [ ESymbol Alpha "\120431" ]+      , [ ESymbol Alpha "\120735" ]+      , [ ESymbol Alpha "\120751" ]+      , [ ESymbol Alpha "\120767" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test view
@@ -0,0 +1,380 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D60</mtext>+      </mtd> +      <mtd>+        <mtext>1D61</mtext>+      </mtd> +      <mtd>+        <mtext>1D62</mtext>+      </mtd> +      <mtd>+        <mtext>1D63</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120336;</mo>+      </mtd> +      <mtd>+        <mo>&#120352;</mo>+      </mtd> +      <mtd>+        <mo>&#120368;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120337;</mo>+      </mtd> +      <mtd>+        <mo>&#120353;</mo>+      </mtd> +      <mtd>+        <mo>&#120369;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120338;</mo>+      </mtd> +      <mtd>+        <mo>&#120354;</mo>+      </mtd> +      <mtd>+        <mo>&#120370;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120339;</mo>+      </mtd> +      <mtd>+        <mo>&#120355;</mo>+      </mtd> +      <mtd>+        <mo>&#120371;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120340;</mo>+      </mtd> +      <mtd>+        <mo>&#120356;</mo>+      </mtd> +      <mtd>+        <mo>&#120372;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120341;</mo>+      </mtd> +      <mtd>+        <mo>&#120357;</mo>+      </mtd> +      <mtd>+        <mo>&#120373;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120342;</mo>+      </mtd> +      <mtd>+        <mo>&#120358;</mo>+      </mtd> +      <mtd>+        <mo>&#120374;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120343;</mo>+      </mtd> +      <mtd>+        <mo>&#120359;</mo>+      </mtd> +      <mtd>+        <mo>&#120375;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#120328;</mo>+      </mtd> +      <mtd>+        <mo>&#120344;</mo>+      </mtd> +      <mtd>+        <mo>&#120360;</mo>+      </mtd> +      <mtd>+        <mo>&#120376;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#120329;</mo>+      </mtd> +      <mtd>+        <mo>&#120345;</mo>+      </mtd> +      <mtd>+        <mo>&#120361;</mo>+      </mtd> +      <mtd>+        <mo>&#120377;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#120330;</mo>+      </mtd> +      <mtd>+        <mo>&#120346;</mo>+      </mtd> +      <mtd>+        <mo>&#120362;</mo>+      </mtd> +      <mtd>+        <mo>&#120378;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#120331;</mo>+      </mtd> +      <mtd>+        <mo>&#120347;</mo>+      </mtd> +      <mtd>+        <mo>&#120363;</mo>+      </mtd> +      <mtd>+        <mo>&#120379;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#120332;</mo>+      </mtd> +      <mtd>+        <mo>&#120348;</mo>+      </mtd> +      <mtd>+        <mo>&#120364;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120333;</mo>+      </mtd> +      <mtd>+        <mo>&#120349;</mo>+      </mtd> +      <mtd>+        <mo>&#120365;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120334;</mo>+      </mtd> +      <mtd>+        <mo>&#120350;</mo>+      </mtd> +      <mtd>+        <mo>&#120366;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#120335;</mo>+      </mtd> +      <mtd>+        <mo>&#120351;</mo>+      </mtd> +      <mtd>+        <mo>&#120367;</mo>+      </mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D60" ]+      , [ EText TextNormal "1D61" ]+      , [ EText TextNormal "1D62" ]+      , [ EText TextNormal "1D63" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Alpha "\120336" ]+      , [ ESymbol Alpha "\120352" ]+      , [ ESymbol Alpha "\120368" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Alpha "\120337" ]+      , [ ESymbol Alpha "\120353" ]+      , [ ESymbol Alpha "\120369" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\120338" ]+      , [ ESymbol Alpha "\120354" ]+      , [ ESymbol Alpha "\120370" ]+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Alpha "\120339" ]+      , [ ESymbol Alpha "\120355" ]+      , [ ESymbol Alpha "\120371" ]+      ]+    , [ [ EText TextNormal "4" ]+      , []+      , [ ESymbol Alpha "\120340" ]+      , [ ESymbol Alpha "\120356" ]+      , [ ESymbol Alpha "\120372" ]+      ]+    , [ [ EText TextNormal "5" ]+      , []+      , [ ESymbol Alpha "\120341" ]+      , [ ESymbol Alpha "\120357" ]+      , [ ESymbol Alpha "\120373" ]+      ]+    , [ [ EText TextNormal "6" ]+      , []+      , [ ESymbol Alpha "\120342" ]+      , [ ESymbol Alpha "\120358" ]+      , [ ESymbol Alpha "\120374" ]+      ]+    , [ [ EText TextNormal "7" ]+      , []+      , [ ESymbol Alpha "\120343" ]+      , [ ESymbol Alpha "\120359" ]+      , [ ESymbol Alpha "\120375" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\120328" ]+      , [ ESymbol Alpha "\120344" ]+      , [ ESymbol Alpha "\120360" ]+      , [ ESymbol Alpha "\120376" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\120329" ]+      , [ ESymbol Alpha "\120345" ]+      , [ ESymbol Alpha "\120361" ]+      , [ ESymbol Alpha "\120377" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\120330" ]+      , [ ESymbol Alpha "\120346" ]+      , [ ESymbol Alpha "\120362" ]+      , [ ESymbol Alpha "\120378" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\120331" ]+      , [ ESymbol Alpha "\120347" ]+      , [ ESymbol Alpha "\120363" ]+      , [ ESymbol Alpha "\120379" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\120332" ]+      , [ ESymbol Alpha "\120348" ]+      , [ ESymbol Alpha "\120364" ]+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120333" ]+      , [ ESymbol Alpha "\120349" ]+      , [ ESymbol Alpha "\120365" ]+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120334" ]+      , [ ESymbol Alpha "\120350" ]+      , [ ESymbol Alpha "\120366" ]+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\120335" ]+      , [ ESymbol Alpha "\120351" ]+      , [ ESymbol Alpha "\120367" ]+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test view
@@ -0,0 +1,437 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D5A</mtext>+      </mtd> +      <mtd>+        <mtext>1D5B</mtext>+      </mtd> +      <mtd>+        <mtext>1D5C</mtext>+      </mtd> +      <mtd>+        <mtext>1D5D</mtext>+      </mtd> +      <mtd>+        <mtext>1D7E</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd>+        <mo>&#120224;</mo>+      </mtd> +      <mtd>+        <mo>&#120240;</mo>+      </mtd> +      <mtd>+        <mo>&#120256;</mo>+      </mtd> +      <mtd>+        <mo>&#120272;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd>+        <mo>&#120225;</mo>+      </mtd> +      <mtd>+        <mo>&#120241;</mo>+      </mtd> +      <mtd>+        <mo>&#120257;</mo>+      </mtd> +      <mtd>+        <mo>&#120273;</mo>+      </mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd>+        <mo>&#120226;</mo>+      </mtd> +      <mtd>+        <mo>&#120242;</mo>+      </mtd> +      <mtd>+        <mo>&#120258;</mo>+      </mtd> +      <mtd>+        <mo>&#120274;</mo>+      </mtd> +      <mtd>+        <mo>&#120802;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd>+        <mo>&#120227;</mo>+      </mtd> +      <mtd>+        <mo>&#120243;</mo>+      </mtd> +      <mtd>+        <mo>&#120259;</mo>+      </mtd> +      <mtd>+        <mo>&#120275;</mo>+      </mtd> +      <mtd>+        <mo>&#120803;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd>+        <mo>&#120228;</mo>+      </mtd> +      <mtd>+        <mo>&#120244;</mo>+      </mtd> +      <mtd>+        <mo>&#120260;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120804;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd>+        <mo>&#120229;</mo>+      </mtd> +      <mtd>+        <mo>&#120245;</mo>+      </mtd> +      <mtd>+        <mo>&#120261;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120805;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd>+        <mo>&#120230;</mo>+      </mtd> +      <mtd>+        <mo>&#120246;</mo>+      </mtd> +      <mtd>+        <mo>&#120262;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120806;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd>+        <mo>&#120231;</mo>+      </mtd> +      <mtd>+        <mo>&#120247;</mo>+      </mtd> +      <mtd>+        <mo>&#120263;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120807;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd>+        <mo>&#120232;</mo>+      </mtd> +      <mtd>+        <mo>&#120248;</mo>+      </mtd> +      <mtd>+        <mo>&#120264;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120808;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd>+        <mo>&#120233;</mo>+      </mtd> +      <mtd>+        <mo>&#120249;</mo>+      </mtd> +      <mtd>+        <mo>&#120265;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120809;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd>+        <mo>&#120234;</mo>+      </mtd> +      <mtd>+        <mo>&#120250;</mo>+      </mtd> +      <mtd>+        <mo>&#120266;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120810;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd>+        <mo>&#120235;</mo>+      </mtd> +      <mtd>+        <mo>&#120251;</mo>+      </mtd> +      <mtd>+        <mo>&#120267;</mo>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#120811;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#120236;</mo>+      </mtd> +      <mtd>+        <mo>&#120252;</mo>+      </mtd> +      <mtd>+        <mo>&#120268;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo>&#120237;</mo>+      </mtd> +      <mtd>+        <mo>&#120253;</mo>+      </mtd> +      <mtd>+        <mo>&#120269;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#120238;</mo>+      </mtd> +      <mtd>+        <mo>&#120254;</mo>+      </mtd> +      <mtd>+        <mo>&#120270;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#120239;</mo>+      </mtd> +      <mtd>+        <mo>&#120255;</mo>+      </mtd> +      <mtd>+        <mo>&#120271;</mo>+      </mtd> +      <mtd></mtd> +      <mtd></mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D5A" ]+      , [ EText TextNormal "1D5B" ]+      , [ EText TextNormal "1D5C" ]+      , [ EText TextNormal "1D5D" ]+      , [ EText TextNormal "1D7E" ]+      ]+    , [ [ EText TextNormal "0" ]+      , [ ESymbol Alpha "\120224" ]+      , [ ESymbol Alpha "\120240" ]+      , [ ESymbol Alpha "\120256" ]+      , [ ESymbol Alpha "\120272" ]+      , []+      ]+    , [ [ EText TextNormal "1" ]+      , [ ESymbol Alpha "\120225" ]+      , [ ESymbol Alpha "\120241" ]+      , [ ESymbol Alpha "\120257" ]+      , [ ESymbol Alpha "\120273" ]+      , []+      ]+    , [ [ EText TextNormal "2" ]+      , [ ESymbol Alpha "\120226" ]+      , [ ESymbol Alpha "\120242" ]+      , [ ESymbol Alpha "\120258" ]+      , [ ESymbol Alpha "\120274" ]+      , [ ESymbol Ord "\120802" ]+      ]+    , [ [ EText TextNormal "3" ]+      , [ ESymbol Alpha "\120227" ]+      , [ ESymbol Alpha "\120243" ]+      , [ ESymbol Alpha "\120259" ]+      , [ ESymbol Alpha "\120275" ]+      , [ ESymbol Ord "\120803" ]+      ]+    , [ [ EText TextNormal "4" ]+      , [ ESymbol Alpha "\120228" ]+      , [ ESymbol Alpha "\120244" ]+      , [ ESymbol Alpha "\120260" ]+      , []+      , [ ESymbol Ord "\120804" ]+      ]+    , [ [ EText TextNormal "5" ]+      , [ ESymbol Alpha "\120229" ]+      , [ ESymbol Alpha "\120245" ]+      , [ ESymbol Alpha "\120261" ]+      , []+      , [ ESymbol Ord "\120805" ]+      ]+    , [ [ EText TextNormal "6" ]+      , [ ESymbol Alpha "\120230" ]+      , [ ESymbol Alpha "\120246" ]+      , [ ESymbol Alpha "\120262" ]+      , []+      , [ ESymbol Ord "\120806" ]+      ]+    , [ [ EText TextNormal "7" ]+      , [ ESymbol Alpha "\120231" ]+      , [ ESymbol Alpha "\120247" ]+      , [ ESymbol Alpha "\120263" ]+      , []+      , [ ESymbol Ord "\120807" ]+      ]+    , [ [ EText TextNormal "8" ]+      , [ ESymbol Alpha "\120232" ]+      , [ ESymbol Alpha "\120248" ]+      , [ ESymbol Alpha "\120264" ]+      , []+      , [ ESymbol Ord "\120808" ]+      ]+    , [ [ EText TextNormal "9" ]+      , [ ESymbol Alpha "\120233" ]+      , [ ESymbol Alpha "\120249" ]+      , [ ESymbol Alpha "\120265" ]+      , []+      , [ ESymbol Ord "\120809" ]+      ]+    , [ [ EText TextNormal "A" ]+      , [ ESymbol Alpha "\120234" ]+      , [ ESymbol Alpha "\120250" ]+      , [ ESymbol Alpha "\120266" ]+      , []+      , [ ESymbol Ord "\120810" ]+      ]+    , [ [ EText TextNormal "B" ]+      , [ ESymbol Alpha "\120235" ]+      , [ ESymbol Alpha "\120251" ]+      , [ ESymbol Alpha "\120267" ]+      , []+      , [ ESymbol Ord "\120811" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\120236" ]+      , [ ESymbol Alpha "\120252" ]+      , [ ESymbol Alpha "\120268" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Alpha "\120237" ]+      , [ ESymbol Alpha "\120253" ]+      , [ ESymbol Alpha "\120269" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\120238" ]+      , [ ESymbol Alpha "\120254" ]+      , [ ESymbol Alpha "\120270" ]+      , []+      , []+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\120239" ]+      , [ ESymbol Alpha "\120255" ]+      , [ ESymbol Alpha "\120271" ]+      , []+      , []+      ]+    ]+]
+ test/reader/mml/1D400_Mathematical_Alphanumeric_Symbols_script.test view
@@ -0,0 +1,380 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>1D49</mtext>+      </mtd> +      <mtd>+        <mtext>1D4A</mtext>+      </mtd> +      <mtd>+        <mtext>1D4B</mtext>+      </mtd> +      <mtd>+        <mtext>1D4C</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>0</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#119984;</mo>+      </mtd> +      <mtd>+        <mo>&#120000;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>1</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#119985;</mo>+      </mtd> +      <mtd>+        <mo>&#120001;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>2</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119970;</mo>+      </mtd> +      <mtd>+        <mo>&#119986;</mo>+      </mtd> +      <mtd>+        <mo>&#120002;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>3</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#119987;</mo>+      </mtd> +      <mtd>+        <mo>&#120003;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>4</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#119988;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>5</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119973;</mo>+      </mtd> +      <mtd>+        <mo>&#119989;</mo>+      </mtd> +      <mtd>+        <mo>&#120005;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>6</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119974;</mo>+      </mtd> +      <mtd>+        <mo>&#119990;</mo>+      </mtd> +      <mtd>+        <mo>&#120006;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>7</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#119991;</mo>+      </mtd> +      <mtd>+        <mo>&#120007;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>8</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#119992;</mo>+      </mtd> +      <mtd>+        <mo>&#120008;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>9</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119977;</mo>+      </mtd> +      <mtd>+        <mo>&#119993;</mo>+      </mtd> +      <mtd>+        <mo>&#120009;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>A</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119978;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120010;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>B</mtext>+      </mtd> +      <mtd></mtd> +      <mtd>+        <mo>&#119979;</mo>+      </mtd> +      <mtd>+        <mo>&#119995;</mo>+      </mtd> +      <mtd>+        <mo>&#120011;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>C</mtext>+      </mtd> +      <mtd>+        <mo>&#119964;</mo>+      </mtd> +      <mtd>+        <mo>&#119980;</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#120012;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>D</mtext>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo mathcolor="gray">@</mo>+      </mtd> +      <mtd>+        <mo>&#119997;</mo>+      </mtd> +      <mtd>+        <mo>&#120013;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>E</mtext>+      </mtd> +      <mtd>+        <mo>&#119966;</mo>+      </mtd> +      <mtd>+        <mo>&#119982;</mo>+      </mtd> +      <mtd>+        <mo>&#119998;</mo>+      </mtd> +      <mtd>+        <mo>&#120014;</mo>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>F</mtext>+      </mtd> +      <mtd>+        <mo>&#119967;</mo>+      </mtd> +      <mtd>+        <mo>&#119983;</mo>+      </mtd> +      <mtd>+        <mo>&#119999;</mo>+      </mtd> +      <mtd>+        <mo>&#120015;</mo>+      </mtd> +    </mtr>   </mtable></math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , [ EText TextNormal "1D49" ]+      , [ EText TextNormal "1D4A" ]+      , [ EText TextNormal "1D4B" ]+      , [ EText TextNormal "1D4C" ]+      ]+    , [ [ EText TextNormal "0" ]+      , []+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\119984" ]+      , [ ESymbol Alpha "\120000" ]+      ]+    , [ [ EText TextNormal "1" ]+      , []+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\119985" ]+      , [ ESymbol Alpha "\120001" ]+      ]+    , [ [ EText TextNormal "2" ]+      , []+      , [ ESymbol Alpha "\119970" ]+      , [ ESymbol Alpha "\119986" ]+      , [ ESymbol Alpha "\120002" ]+      ]+    , [ [ EText TextNormal "3" ]+      , []+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\119987" ]+      , [ ESymbol Alpha "\120003" ]+      ]+    , [ [ EText TextNormal "4" ]+      , []+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\119988" ]+      , [ ESymbol Ord "@" ]+      ]+    , [ [ EText TextNormal "5" ]+      , []+      , [ ESymbol Alpha "\119973" ]+      , [ ESymbol Alpha "\119989" ]+      , [ ESymbol Alpha "\120005" ]+      ]+    , [ [ EText TextNormal "6" ]+      , []+      , [ ESymbol Alpha "\119974" ]+      , [ ESymbol Alpha "\119990" ]+      , [ ESymbol Alpha "\120006" ]+      ]+    , [ [ EText TextNormal "7" ]+      , []+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\119991" ]+      , [ ESymbol Alpha "\120007" ]+      ]+    , [ [ EText TextNormal "8" ]+      , []+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\119992" ]+      , [ ESymbol Alpha "\120008" ]+      ]+    , [ [ EText TextNormal "9" ]+      , []+      , [ ESymbol Alpha "\119977" ]+      , [ ESymbol Alpha "\119993" ]+      , [ ESymbol Alpha "\120009" ]+      ]+    , [ [ EText TextNormal "A" ]+      , []+      , [ ESymbol Alpha "\119978" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120010" ]+      ]+    , [ [ EText TextNormal "B" ]+      , []+      , [ ESymbol Alpha "\119979" ]+      , [ ESymbol Alpha "\119995" ]+      , [ ESymbol Alpha "\120011" ]+      ]+    , [ [ EText TextNormal "C" ]+      , [ ESymbol Alpha "\119964" ]+      , [ ESymbol Alpha "\119980" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\120012" ]+      ]+    , [ [ EText TextNormal "D" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Ord "@" ]+      , [ ESymbol Alpha "\119997" ]+      , [ ESymbol Alpha "\120013" ]+      ]+    , [ [ EText TextNormal "E" ]+      , [ ESymbol Alpha "\119966" ]+      , [ ESymbol Alpha "\119982" ]+      , [ ESymbol Alpha "\119998" ]+      , [ ESymbol Alpha "\120014" ]+      ]+    , [ [ EText TextNormal "F" ]+      , [ ESymbol Alpha "\119967" ]+      , [ ESymbol Alpha "\119983" ]+      , [ ESymbol Alpha "\119999" ]+      , [ ESymbol Alpha "\120015" ]+      ]+    ]+]
+ test/reader/mml/a.test view
@@ -0,0 +1,698 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>aacute</mtext> +      </mtd> +      <mtd>+        <mo>á</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Aacute</mtext> +      </mtd> +      <mtd>+        <mo>Á</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>abreve</mtext> +      </mtd> +      <mtd>+        <mo>ă</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Abreve</mtext> +      </mtd> +      <mtd>+        <mo>Ă</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ac</mtext> +      </mtd> +      <mtd>+        <mo>∾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>acd</mtext> +      </mtd> +      <mtd>+        <mo>∿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>acE</mtext> +      </mtd> +      <mtd>+        <mo>∾̳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>acirc</mtext> +      </mtd> +      <mtd>+        <mo>â</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Acirc</mtext> +      </mtd> +      <mtd>+        <mo>Â</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>acute</mtext> +      </mtd> +      <mtd>+        <mo>´</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>acy</mtext> +      </mtd> +      <mtd>+        <mo>а</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Acy</mtext> +      </mtd> +      <mtd>+        <mo>А</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>aelig</mtext> +      </mtd> +      <mtd>+        <mo>æ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>AElig</mtext> +      </mtd> +      <mtd>+        <mo>Æ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>af</mtext> +      </mtd> +      <mtd>+        <mo>⁡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>afr</mtext> +      </mtd> +      <mtd>+        <mo>𝔞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Afr</mtext> +      </mtd> +      <mtd>+        <mo>𝔄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>agrave</mtext> +      </mtd> +      <mtd>+        <mo>à</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Agrave</mtext> +      </mtd> +      <mtd>+        <mo>À</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>aleph</mtext> +      </mtd> +      <mtd>+        <mo>ℵ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>alpha</mtext> +      </mtd> +      <mtd>+        <mo>α</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>amacr</mtext> +      </mtd> +      <mtd>+        <mo>ā</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Amacr</mtext> +      </mtd> +      <mtd>+        <mo>Ā</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>amalg</mtext> +      </mtd> +      <mtd>+        <mo>⨿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>amp</mtext> +      </mtd> +      <mtd>+        <mo>&amp;</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>and</mtext> +      </mtd> +      <mtd>+        <mo>∧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>And</mtext> +      </mtd> +      <mtd>+        <mo>⩓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>andand</mtext> +      </mtd> +      <mtd>+        <mo>⩕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>andd</mtext> +      </mtd> +      <mtd>+        <mo>⩜</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>andslope</mtext> +      </mtd> +      <mtd>+        <mo>⩘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>andv</mtext> +      </mtd> +      <mtd>+        <mo>⩚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ang</mtext> +      </mtd> +      <mtd>+        <mo>∠</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ange</mtext> +      </mtd> +      <mtd>+        <mo>⦤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angle</mtext> +      </mtd> +      <mtd>+        <mo>∠</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsd</mtext> +      </mtd> +      <mtd>+        <mo>∡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsdaa</mtext> +      </mtd> +      <mtd>+        <mo>⦨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsdab</mtext> +      </mtd> +      <mtd>+        <mo>⦩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsdac</mtext> +      </mtd> +      <mtd>+        <mo>⦪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsdad</mtext> +      </mtd> +      <mtd>+        <mo>⦫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsdae</mtext> +      </mtd> +      <mtd>+        <mo>⦬</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsdaf</mtext> +      </mtd> +      <mtd>+        <mo>⦭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsdag</mtext> +      </mtd> +      <mtd>+        <mo>⦮</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angmsdah</mtext> +      </mtd> +      <mtd>+        <mo>⦯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angrt</mtext> +      </mtd> +      <mtd>+        <mo>∟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angrtvb</mtext> +      </mtd> +      <mtd>+        <mo>⊾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angrtvbd</mtext> +      </mtd> +      <mtd>+        <mo>⦝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angsph</mtext> +      </mtd> +      <mtd>+        <mo>∢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angst</mtext> +      </mtd> +      <mtd>+        <mo>Å</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>angzarr</mtext> +      </mtd> +      <mtd>+        <mo>⍼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>aogon</mtext> +      </mtd> +      <mtd>+        <mo>ą</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Aogon</mtext> +      </mtd> +      <mtd>+        <mo>Ą</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>aopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Aopf</mtext> +      </mtd> +      <mtd>+        <mo>𝔸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ap</mtext> +      </mtd> +      <mtd>+        <mo>≈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>apacir</mtext> +      </mtd> +      <mtd>+        <mo>⩯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ape</mtext> +      </mtd> +      <mtd>+        <mo>≊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>apE</mtext> +      </mtd> +      <mtd>+        <mo>⩰</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>apid</mtext> +      </mtd> +      <mtd>+        <mo>≋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>apos</mtext> +      </mtd> +      <mtd>+        <mo>'</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ApplyFunction</mtext> +      </mtd> +      <mtd>+        <mo>⁡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>approx</mtext> +      </mtd> +      <mtd>+        <mo>≈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>approxeq</mtext> +      </mtd> +      <mtd>+        <mo>≊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>aring</mtext> +      </mtd> +      <mtd>+        <mo>å</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Aring</mtext> +      </mtd> +      <mtd>+        <mo>Å</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ascr</mtext> +      </mtd> +      <mtd>+        <mo>𝒶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ascr</mtext> +      </mtd> +      <mtd>+        <mo>𝒜</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Assign</mtext> +      </mtd> +      <mtd>+        <mo>≔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ast</mtext> +      </mtd> +      <mtd>+        <mo>*</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>asymp</mtext> +      </mtd> +      <mtd>+        <mo>≈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>asympeq</mtext> +      </mtd> +      <mtd>+        <mo>≍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>atilde</mtext> +      </mtd> +      <mtd>+        <mo>ã</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Atilde</mtext> +      </mtd> +      <mtd>+        <mo>Ã</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>auml</mtext> +      </mtd> +      <mtd>+        <mo>ä</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Auml</mtext> +      </mtd> +      <mtd>+        <mo>Ä</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>awconint</mtext> +      </mtd> +      <mtd>+        <mo>∳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>awint</mtext> +      </mtd> +      <mtd>+        <mo>⨑</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "aacute" ] , [ ESymbol Ord "\225" ] ]+    , [ [ EText TextNormal "Aacute" ] , [ ESymbol Ord "\193" ] ]+    , [ [ EText TextNormal "abreve" ] , [ ESymbol Ord "\259" ] ]+    , [ [ EText TextNormal "Abreve" ] , [ ESymbol Ord "\258" ] ]+    , [ [ EText TextNormal "ac" ] , [ ESymbol Bin "\8766" ] ]+    , [ [ EText TextNormal "acd" ] , [ ESymbol Ord "\8767" ] ]+    , [ [ EText TextNormal "acE" ] , [ EMathOperator "\8766\819" ] ]+    , [ [ EText TextNormal "acirc" ] , [ ESymbol Ord "\226" ] ]+    , [ [ EText TextNormal "Acirc" ] , [ ESymbol Ord "\194" ] ]+    , [ [ EText TextNormal "acute" ] , [ ESymbol Accent "\180" ] ]+    , [ [ EText TextNormal "acy" ] , [ ESymbol Ord "\1072" ] ]+    , [ [ EText TextNormal "Acy" ] , [ ESymbol Ord "\1040" ] ]+    , [ [ EText TextNormal "aelig" ] , [ ESymbol Ord "\230" ] ]+    , [ [ EText TextNormal "AElig" ] , [ ESymbol Ord "\198" ] ]+    , [ [ EText TextNormal "af" ] , [ ESymbol Ord "\8289" ] ]+    , [ [ EText TextNormal "afr" ] , [ ESymbol Alpha "\120094" ] ]+    , [ [ EText TextNormal "Afr" ] , [ ESymbol Alpha "\120068" ] ]+    , [ [ EText TextNormal "agrave" ] , [ ESymbol Ord "\224" ] ]+    , [ [ EText TextNormal "Agrave" ] , [ ESymbol Ord "\192" ] ]+    , [ [ EText TextNormal "aleph" ] , [ ESymbol Alpha "\8501" ] ]+    , [ [ EText TextNormal "alpha" ] , [ ESymbol Alpha "\945" ] ]+    , [ [ EText TextNormal "amacr" ] , [ ESymbol Ord "\257" ] ]+    , [ [ EText TextNormal "Amacr" ] , [ ESymbol Ord "\256" ] ]+    , [ [ EText TextNormal "amalg" ] , [ ESymbol Bin "\10815" ] ]+    , [ [ EText TextNormal "amp" ] , [ ESymbol Ord "&" ] ]+    , [ [ EText TextNormal "and" ] , [ ESymbol Bin "\8743" ] ]+    , [ [ EText TextNormal "And" ] , [ ESymbol Bin "\10835" ] ]+    , [ [ EText TextNormal "andand" ] , [ ESymbol Bin "\10837" ] ]+    , [ [ EText TextNormal "andd" ] , [ ESymbol Bin "\10844" ] ]+    , [ [ EText TextNormal "andslope" ] , [ ESymbol Bin "\10840" ] ]+    , [ [ EText TextNormal "andv" ] , [ ESymbol Bin "\10842" ] ]+    , [ [ EText TextNormal "ang" ] , [ ESymbol Ord "\8736" ] ]+    , [ [ EText TextNormal "ange" ] , [ ESymbol Ord "\10660" ] ]+    , [ [ EText TextNormal "angle" ] , [ ESymbol Ord "\8736" ] ]+    , [ [ EText TextNormal "angmsd" ] , [ ESymbol Ord "\8737" ] ]+    , [ [ EText TextNormal "angmsdaa" ] , [ ESymbol Ord "\10664" ] ]+    , [ [ EText TextNormal "angmsdab" ] , [ ESymbol Ord "\10665" ] ]+    , [ [ EText TextNormal "angmsdac" ] , [ ESymbol Ord "\10666" ] ]+    , [ [ EText TextNormal "angmsdad" ] , [ ESymbol Ord "\10667" ] ]+    , [ [ EText TextNormal "angmsdae" ] , [ ESymbol Ord "\10668" ] ]+    , [ [ EText TextNormal "angmsdaf" ] , [ ESymbol Ord "\10669" ] ]+    , [ [ EText TextNormal "angmsdag" ] , [ ESymbol Ord "\10670" ] ]+    , [ [ EText TextNormal "angmsdah" ] , [ ESymbol Ord "\10671" ] ]+    , [ [ EText TextNormal "angrt" ] , [ ESymbol Ord "\8735" ] ]+    , [ [ EText TextNormal "angrtvb" ] , [ ESymbol Ord "\8894" ] ]+    , [ [ EText TextNormal "angrtvbd" ] , [ ESymbol Ord "\10653" ] ]+    , [ [ EText TextNormal "angsph" ] , [ ESymbol Ord "\8738" ] ]+    , [ [ EText TextNormal "angst" ] , [ ESymbol Ord "\197" ] ]+    , [ [ EText TextNormal "angzarr" ] , [ ESymbol Ord "\9084" ] ]+    , [ [ EText TextNormal "aogon" ] , [ ESymbol Ord "\261" ] ]+    , [ [ EText TextNormal "Aogon" ] , [ ESymbol Ord "\260" ] ]+    , [ [ EText TextNormal "aopf" ] , [ ESymbol Alpha "\120146" ] ]+    , [ [ EText TextNormal "Aopf" ] , [ ESymbol Alpha "\120120" ] ]+    , [ [ EText TextNormal "ap" ] , [ ESymbol Rel "\8776" ] ]+    , [ [ EText TextNormal "apacir" ] , [ ESymbol Rel "\10863" ] ]+    , [ [ EText TextNormal "ape" ] , [ ESymbol Rel "\8778" ] ]+    , [ [ EText TextNormal "apE" ] , [ ESymbol Rel "\10864" ] ]+    , [ [ EText TextNormal "apid" ] , [ ESymbol Rel "\8779" ] ]+    , [ [ EText TextNormal "apos" ] , [ ESymbol Accent "'" ] ]+    , [ [ EText TextNormal "ApplyFunction" ]+      , [ ESymbol Ord "\8289" ]+      ]+    , [ [ EText TextNormal "approx" ] , [ ESymbol Rel "\8776" ] ]+    , [ [ EText TextNormal "approxeq" ] , [ ESymbol Rel "\8778" ] ]+    , [ [ EText TextNormal "aring" ] , [ ESymbol Ord "\229" ] ]+    , [ [ EText TextNormal "Aring" ] , [ ESymbol Ord "\197" ] ]+    , [ [ EText TextNormal "ascr" ] , [ ESymbol Alpha "\119990" ] ]+    , [ [ EText TextNormal "Ascr" ] , [ ESymbol Alpha "\119964" ] ]+    , [ [ EText TextNormal "Assign" ] , [ ESymbol Rel "\8788" ] ]+    , [ [ EText TextNormal "ast" ] , [ ESymbol Ord "*" ] ]+    , [ [ EText TextNormal "asymp" ] , [ ESymbol Rel "\8776" ] ]+    , [ [ EText TextNormal "asympeq" ] , [ ESymbol Rel "\8781" ] ]+    , [ [ EText TextNormal "atilde" ] , [ ESymbol Ord "\227" ] ]+    , [ [ EText TextNormal "Atilde" ] , [ ESymbol Ord "\195" ] ]+    , [ [ EText TextNormal "auml" ] , [ ESymbol Ord "\228" ] ]+    , [ [ EText TextNormal "Auml" ] , [ ESymbol Ord "\196" ] ]+    , [ [ EText TextNormal "awconint" ] , [ ESymbol Op "\8755" ] ]+    , [ [ EText TextNormal "awint" ] , [ ESymbol Op "\10769" ] ]+    ]+]
+ test/reader/mml/abs1.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mo>|</mo> +  <mi>x</mi> +  <mo>|</mo> </math>+>>> native+[ EDelimited "|" "|" [ Right (EIdentifier "x") ] ]
+ test/reader/mml/abs2.test view
@@ -0,0 +1,17 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mo>|</mo> +  <mfrac>+    <mi>H</mi> +    <mi>K</mi> +  </mfrac> +  <mo>|</mo> </math>+>>> native+[ EDelimited+    "|"+    "|"+    [ Right (EFraction NormalFrac (EIdentifier "H") (EIdentifier "K"))+    ]+]
+ test/reader/mml/accents1.test view
@@ -0,0 +1,403 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>default: (accent=true)</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mover>+            <mi>H</mi> +            <mo>'</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>^</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>_</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>`</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>~</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x00A8;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x00AF;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x00B4;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x00B8;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02C6;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02C7;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02D8;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02D9;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02DA;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02DC;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02DD;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x0302;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x0311;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x203E;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x20DB;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x20DC;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x2190;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x2192;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x2194;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x21BC;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x21BD;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x21C0;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x21C1;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23B4;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23B5;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23DC;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23DD;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23DE;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23DF;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x294E;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x2950;</mo> +          </mover> +        </mrow> +      </mtd>+    </mtr> +    <mtr>+      <mtd>+        <mtext>accent=false:</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mstyle accent="false">+          <mover>+            <mi>H</mi> +            <mo>'</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>^</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>_</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>`</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>~</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x00A8;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x00AF;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x00B4;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x00B8;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02C6;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02C7;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02D8;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02D9;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02DA;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02DC;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x02DD;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x0302;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x0311;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x203E;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x20DB;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x20DC;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x2190;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x2192;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x2194;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x21BC;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x21BD;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x21C0;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x21C1;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23B4;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23B5;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23DC;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23DD;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23DE;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x23DF;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x294E;</mo> +          </mover> +          <mover>+            <mi>H</mi> +            <mo>&#x2950;</mo> +          </mover> +        </mstyle> +      </mtd>+    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText TextNormal "default: (accent=true)" ] ]+    , [ [ EGrouped+            [ EOver False (EIdentifier "H") (ESymbol Accent "'")+            , EOver False (EIdentifier "H") (ESymbol Accent "^")+            , EOver False (EIdentifier "H") (ESymbol Accent "_")+            , EOver False (EIdentifier "H") (ESymbol Accent "`")+            , EOver False (EIdentifier "H") (ESymbol Accent "~")+            , EOver False (EIdentifier "H") (ESymbol Accent "\168")+            , EOver False (EIdentifier "H") (ESymbol Accent "\175")+            , EOver False (EIdentifier "H") (ESymbol Accent "\180")+            , EOver False (EIdentifier "H") (ESymbol Accent "\184")+            , EOver False (EIdentifier "H") (ESymbol Accent "\710")+            , EOver False (EIdentifier "H") (ESymbol Accent "\711")+            , EOver False (EIdentifier "H") (ESymbol Accent "\728")+            , EOver False (EIdentifier "H") (ESymbol Accent "\729")+            , EOver False (EIdentifier "H") (ESymbol Accent "\730")+            , EOver False (EIdentifier "H") (ESymbol Accent "\732")+            , EOver False (EIdentifier "H") (ESymbol Accent "\733")+            , EOver False (EIdentifier "H") (ESymbol Accent "\770")+            , EOver False (EIdentifier "H") (ESymbol Accent "\785")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8254")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8411")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8412")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8592")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8594")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8596")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8636")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8637")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8640")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8641")+            , EOver False (EIdentifier "H") (ESymbol Accent "\9140")+            , EOver False (EIdentifier "H") (ESymbol Accent "\9141")+            , EOver False (EIdentifier "H") (ESymbol Accent "\9180")+            , EOver False (EIdentifier "H") (ESymbol Accent "\9181")+            , EOver False (EIdentifier "H") (ESymbol Accent "\9182")+            , EOver False (EIdentifier "H") (ESymbol Accent "\9183")+            , EOver False (EIdentifier "H") (ESymbol Accent "\10574")+            , EOver False (EIdentifier "H") (ESymbol Accent "\10576")+            ]+        ]+      ]+    , [ [ EText TextNormal "accent=false:" ] ]+    , [ [ EGrouped+            [ EOver False (EIdentifier "H") (ESymbol Ord "'")+            , EOver False (EIdentifier "H") (ESymbol Ord "^")+            , EOver False (EIdentifier "H") (ESymbol Ord "_")+            , EOver False (EIdentifier "H") (ESymbol Ord "`")+            , EOver False (EIdentifier "H") (ESymbol Ord "~")+            , EOver False (EIdentifier "H") (ESymbol Ord "\168")+            , EOver False (EIdentifier "H") (ESymbol Ord "\175")+            , EOver False (EIdentifier "H") (ESymbol Ord "\180")+            , EOver False (EIdentifier "H") (ESymbol Ord "\184")+            , EOver False (EIdentifier "H") (ESymbol Alpha "\710")+            , EOver False (EIdentifier "H") (ESymbol Alpha "\711")+            , EOver False (EIdentifier "H") (ESymbol Ord "\728")+            , EOver False (EIdentifier "H") (ESymbol Ord "\729")+            , EOver False (EIdentifier "H") (ESymbol Ord "\730")+            , EOver False (EIdentifier "H") (ESymbol Ord "\732")+            , EOver False (EIdentifier "H") (ESymbol Ord "\733")+            , EOver False (EIdentifier "H") (ESymbol Accent "\770")+            , EOver False (EIdentifier "H") (ESymbol Accent "\785")+            , EOver False (EIdentifier "H") (ESymbol Ord "\8254")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8411")+            , EOver False (EIdentifier "H") (ESymbol Accent "\8412")+            , EOver False (EIdentifier "H") (ESymbol Rel "\8592")+            , EOver False (EIdentifier "H") (ESymbol Rel "\8594")+            , EOver False (EIdentifier "H") (ESymbol Rel "\8596")+            , EOver False (EIdentifier "H") (ESymbol Rel "\8636")+            , EOver False (EIdentifier "H") (ESymbol Rel "\8637")+            , EOver False (EIdentifier "H") (ESymbol Rel "\8640")+            , EOver False (EIdentifier "H") (ESymbol Rel "\8641")+            , EOver False (EIdentifier "H") (ESymbol TOver "\9140")+            , EOver False (EIdentifier "H") (ESymbol TUnder "\9141")+            , EOver False (EIdentifier "H") (ESymbol TOver "\9180")+            , EOver False (EIdentifier "H") (ESymbol TUnder "\9181")+            , EOver False (EIdentifier "H") (ESymbol TOver "\9182")+            , EOver False (EIdentifier "H") (ESymbol TUnder "\9183")+            , EOver False (EIdentifier "H") (ESymbol Rel "\10574")+            , EOver False (EIdentifier "H") (ESymbol Rel "\10576")+            ]+        ]+      ]+    ]+]
+ test/reader/mml/accents2.test view
@@ -0,0 +1,403 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>default: (accent=true)</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mover>+            <mi>x</mi> +            <mo>'</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>^</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>_</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>`</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>~</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x00A8;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x00AF;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x00B4;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x00B8;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02C6;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02C7;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02D8;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02D9;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02DA;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02DC;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02DD;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x0302;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x0311;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x203E;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x20DB;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x20DC;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x2190;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x2192;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x2194;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x21BC;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x21BD;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x21C0;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x21C1;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23B4;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23B5;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23DC;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23DD;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23DE;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23DF;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x294E;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x2950;</mo> +          </mover> +        </mrow> +      </mtd>+    </mtr> +    <mtr>+      <mtd>+        <mtext>accent=false:</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mstyle accent="false">+          <mover>+            <mi>x</mi> +            <mo>'</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>^</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>_</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>`</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>~</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x00A8;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x00AF;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x00B4;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x00B8;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02C6;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02C7;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02D8;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02D9;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02DA;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02DC;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x02DD;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x0302;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x0311;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x203E;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x20DB;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x20DC;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x2190;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x2192;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x2194;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x21BC;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x21BD;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x21C0;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x21C1;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23B4;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23B5;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23DC;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23DD;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23DE;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x23DF;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x294E;</mo> +          </mover> +          <mover>+            <mi>x</mi> +            <mo>&#x2950;</mo> +          </mover> +        </mstyle> +      </mtd>+    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText TextNormal "default: (accent=true)" ] ]+    , [ [ EGrouped+            [ EOver False (EIdentifier "x") (ESymbol Accent "'")+            , EOver False (EIdentifier "x") (ESymbol Accent "^")+            , EOver False (EIdentifier "x") (ESymbol Accent "_")+            , EOver False (EIdentifier "x") (ESymbol Accent "`")+            , EOver False (EIdentifier "x") (ESymbol Accent "~")+            , EOver False (EIdentifier "x") (ESymbol Accent "\168")+            , EOver False (EIdentifier "x") (ESymbol Accent "\175")+            , EOver False (EIdentifier "x") (ESymbol Accent "\180")+            , EOver False (EIdentifier "x") (ESymbol Accent "\184")+            , EOver False (EIdentifier "x") (ESymbol Accent "\710")+            , EOver False (EIdentifier "x") (ESymbol Accent "\711")+            , EOver False (EIdentifier "x") (ESymbol Accent "\728")+            , EOver False (EIdentifier "x") (ESymbol Accent "\729")+            , EOver False (EIdentifier "x") (ESymbol Accent "\730")+            , EOver False (EIdentifier "x") (ESymbol Accent "\732")+            , EOver False (EIdentifier "x") (ESymbol Accent "\733")+            , EOver False (EIdentifier "x") (ESymbol Accent "\770")+            , EOver False (EIdentifier "x") (ESymbol Accent "\785")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8254")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8411")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8412")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8592")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8594")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8596")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8636")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8637")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8640")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8641")+            , EOver False (EIdentifier "x") (ESymbol Accent "\9140")+            , EOver False (EIdentifier "x") (ESymbol Accent "\9141")+            , EOver False (EIdentifier "x") (ESymbol Accent "\9180")+            , EOver False (EIdentifier "x") (ESymbol Accent "\9181")+            , EOver False (EIdentifier "x") (ESymbol Accent "\9182")+            , EOver False (EIdentifier "x") (ESymbol Accent "\9183")+            , EOver False (EIdentifier "x") (ESymbol Accent "\10574")+            , EOver False (EIdentifier "x") (ESymbol Accent "\10576")+            ]+        ]+      ]+    , [ [ EText TextNormal "accent=false:" ] ]+    , [ [ EGrouped+            [ EOver False (EIdentifier "x") (ESymbol Ord "'")+            , EOver False (EIdentifier "x") (ESymbol Ord "^")+            , EOver False (EIdentifier "x") (ESymbol Ord "_")+            , EOver False (EIdentifier "x") (ESymbol Ord "`")+            , EOver False (EIdentifier "x") (ESymbol Ord "~")+            , EOver False (EIdentifier "x") (ESymbol Ord "\168")+            , EOver False (EIdentifier "x") (ESymbol Ord "\175")+            , EOver False (EIdentifier "x") (ESymbol Ord "\180")+            , EOver False (EIdentifier "x") (ESymbol Ord "\184")+            , EOver False (EIdentifier "x") (ESymbol Alpha "\710")+            , EOver False (EIdentifier "x") (ESymbol Alpha "\711")+            , EOver False (EIdentifier "x") (ESymbol Ord "\728")+            , EOver False (EIdentifier "x") (ESymbol Ord "\729")+            , EOver False (EIdentifier "x") (ESymbol Ord "\730")+            , EOver False (EIdentifier "x") (ESymbol Ord "\732")+            , EOver False (EIdentifier "x") (ESymbol Ord "\733")+            , EOver False (EIdentifier "x") (ESymbol Accent "\770")+            , EOver False (EIdentifier "x") (ESymbol Accent "\785")+            , EOver False (EIdentifier "x") (ESymbol Ord "\8254")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8411")+            , EOver False (EIdentifier "x") (ESymbol Accent "\8412")+            , EOver False (EIdentifier "x") (ESymbol Rel "\8592")+            , EOver False (EIdentifier "x") (ESymbol Rel "\8594")+            , EOver False (EIdentifier "x") (ESymbol Rel "\8596")+            , EOver False (EIdentifier "x") (ESymbol Rel "\8636")+            , EOver False (EIdentifier "x") (ESymbol Rel "\8637")+            , EOver False (EIdentifier "x") (ESymbol Rel "\8640")+            , EOver False (EIdentifier "x") (ESymbol Rel "\8641")+            , EOver False (EIdentifier "x") (ESymbol TOver "\9140")+            , EOver False (EIdentifier "x") (ESymbol TUnder "\9141")+            , EOver False (EIdentifier "x") (ESymbol TOver "\9180")+            , EOver False (EIdentifier "x") (ESymbol TUnder "\9181")+            , EOver False (EIdentifier "x") (ESymbol TOver "\9182")+            , EOver False (EIdentifier "x") (ESymbol TUnder "\9183")+            , EOver False (EIdentifier "x") (ESymbol Rel "\10574")+            , EOver False (EIdentifier "x") (ESymbol Rel "\10576")+            ]+        ]+      ]+    ]+]
+ test/reader/mml/accents3.test view
@@ -0,0 +1,403 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>default: (accent=true)</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <munder>+            <mi>H</mi> +            <mo>'</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>^</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>_</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>`</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>~</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x00A8;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x00AF;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x00B4;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x00B8;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02C6;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02C7;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02D8;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02D9;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02DA;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02DC;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02DD;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x0302;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x0311;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x203E;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x20DB;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x20DC;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x2190;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x2192;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x2194;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x21BC;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x21BD;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x21C0;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x21C1;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23B4;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23B5;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23DC;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23DD;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23DE;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23DF;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x294E;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x2950;</mo> +          </munder> +        </mrow> +      </mtd>+    </mtr> +    <mtr>+      <mtd>+        <mtext>accent=false:</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mstyle accent="false">+          <munder>+            <mi>H</mi> +            <mo>'</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>^</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>_</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>`</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>~</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x00A8;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x00AF;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x00B4;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x00B8;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02C6;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02C7;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02D8;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02D9;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02DA;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02DC;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x02DD;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x0302;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x0311;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x203E;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x20DB;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x20DC;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x2190;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x2192;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x2194;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x21BC;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x21BD;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x21C0;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x21C1;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23B4;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23B5;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23DC;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23DD;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23DE;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x23DF;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x294E;</mo> +          </munder> +          <munder>+            <mi>H</mi> +            <mo>&#x2950;</mo> +          </munder> +        </mstyle> +      </mtd>+    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText TextNormal "default: (accent=true)" ] ]+    , [ [ EGrouped+            [ EUnder False (EIdentifier "H") (ESymbol Accent "'")+            , EUnder False (EIdentifier "H") (ESymbol Accent "^")+            , EUnder False (EIdentifier "H") (ESymbol Accent "_")+            , EUnder False (EIdentifier "H") (ESymbol Accent "`")+            , EUnder False (EIdentifier "H") (ESymbol Accent "~")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\168")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\175")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\180")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\184")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\710")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\711")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\728")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\729")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\730")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\732")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\733")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\770")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\785")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8254")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8411")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8412")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8592")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8594")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8596")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8636")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8637")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8640")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8641")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\9140")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\9141")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\9180")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\9181")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\9182")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\9183")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\10574")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\10576")+            ]+        ]+      ]+    , [ [ EText TextNormal "accent=false:" ] ]+    , [ [ EGrouped+            [ EUnder False (EIdentifier "H") (ESymbol Ord "'")+            , EUnder False (EIdentifier "H") (ESymbol Ord "^")+            , EUnder False (EIdentifier "H") (ESymbol Ord "_")+            , EUnder False (EIdentifier "H") (ESymbol Ord "`")+            , EUnder False (EIdentifier "H") (ESymbol Ord "~")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\168")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\175")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\180")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\184")+            , EUnder False (EIdentifier "H") (ESymbol Alpha "\710")+            , EUnder False (EIdentifier "H") (ESymbol Alpha "\711")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\728")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\729")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\730")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\732")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\733")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\770")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\785")+            , EUnder False (EIdentifier "H") (ESymbol Ord "\8254")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8411")+            , EUnder False (EIdentifier "H") (ESymbol Accent "\8412")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\8592")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\8594")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\8596")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\8636")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\8637")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\8640")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\8641")+            , EUnder False (EIdentifier "H") (ESymbol TOver "\9140")+            , EUnder False (EIdentifier "H") (ESymbol TUnder "\9141")+            , EUnder False (EIdentifier "H") (ESymbol TOver "\9180")+            , EUnder False (EIdentifier "H") (ESymbol TUnder "\9181")+            , EUnder False (EIdentifier "H") (ESymbol TOver "\9182")+            , EUnder False (EIdentifier "H") (ESymbol TUnder "\9183")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\10574")+            , EUnder False (EIdentifier "H") (ESymbol Rel "\10576")+            ]+        ]+      ]+    ]+]
+ test/reader/mml/accents4.test view
@@ -0,0 +1,403 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>default: (accent=true)</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <munder>+            <mi>x</mi> +            <mo>'</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>^</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>_</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>`</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>~</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x00A8;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x00AF;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x00B4;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x00B8;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02C6;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02C7;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02D8;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02D9;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02DA;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02DC;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02DD;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x0302;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x0311;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x203E;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x20DB;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x20DC;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x2190;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x2192;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x2194;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x21BC;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x21BD;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x21C0;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x21C1;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23B4;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23B5;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23DC;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23DD;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23DE;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23DF;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x294E;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x2950;</mo> +          </munder> +        </mrow> +      </mtd>+    </mtr> +    <mtr>+      <mtd>+        <mtext>accent=false:</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mstyle accent="false">+          <munder>+            <mi>x</mi> +            <mo>'</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>^</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>_</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>`</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>~</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x00A8;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x00AF;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x00B4;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x00B8;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02C6;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02C7;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02D8;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02D9;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02DA;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02DC;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x02DD;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x0302;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x0311;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x203E;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x20DB;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x20DC;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x2190;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x2192;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x2194;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x21BC;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x21BD;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x21C0;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x21C1;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23B4;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23B5;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23DC;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23DD;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23DE;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x23DF;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x294E;</mo> +          </munder> +          <munder>+            <mi>x</mi> +            <mo>&#x2950;</mo> +          </munder> +        </mstyle> +      </mtd>+    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText TextNormal "default: (accent=true)" ] ]+    , [ [ EGrouped+            [ EUnder False (EIdentifier "x") (ESymbol Accent "'")+            , EUnder False (EIdentifier "x") (ESymbol Accent "^")+            , EUnder False (EIdentifier "x") (ESymbol Accent "_")+            , EUnder False (EIdentifier "x") (ESymbol Accent "`")+            , EUnder False (EIdentifier "x") (ESymbol Accent "~")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\168")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\175")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\180")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\184")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\710")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\711")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\728")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\729")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\730")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\732")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\733")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\770")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\785")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8254")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8411")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8412")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8592")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8594")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8596")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8636")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8637")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8640")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8641")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\9140")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\9141")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\9180")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\9181")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\9182")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\9183")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\10574")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\10576")+            ]+        ]+      ]+    , [ [ EText TextNormal "accent=false:" ] ]+    , [ [ EGrouped+            [ EUnder False (EIdentifier "x") (ESymbol Ord "'")+            , EUnder False (EIdentifier "x") (ESymbol Ord "^")+            , EUnder False (EIdentifier "x") (ESymbol Ord "_")+            , EUnder False (EIdentifier "x") (ESymbol Ord "`")+            , EUnder False (EIdentifier "x") (ESymbol Ord "~")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\168")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\175")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\180")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\184")+            , EUnder False (EIdentifier "x") (ESymbol Alpha "\710")+            , EUnder False (EIdentifier "x") (ESymbol Alpha "\711")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\728")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\729")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\730")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\732")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\733")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\770")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\785")+            , EUnder False (EIdentifier "x") (ESymbol Ord "\8254")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8411")+            , EUnder False (EIdentifier "x") (ESymbol Accent "\8412")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\8592")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\8594")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\8596")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\8636")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\8637")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\8640")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\8641")+            , EUnder False (EIdentifier "x") (ESymbol TOver "\9140")+            , EUnder False (EIdentifier "x") (ESymbol TUnder "\9141")+            , EUnder False (EIdentifier "x") (ESymbol TOver "\9180")+            , EUnder False (EIdentifier "x") (ESymbol TUnder "\9181")+            , EUnder False (EIdentifier "x") (ESymbol TOver "\9182")+            , EUnder False (EIdentifier "x") (ESymbol TUnder "\9183")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\10574")+            , EUnder False (EIdentifier "x") (ESymbol Rel "\10576")+            ]+        ]+      ]+    ]+]
+ test/reader/mml/accents5.test view
@@ -0,0 +1,682 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>default: (accent=true)</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <munderover>+            <mi>H</mi> +            <mo>'</mo> +            <mo>'</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>^</mo> +            <mo>^</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>_</mo> +            <mo>_</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>`</mo> +            <mo>`</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>~</mo> +            <mo>~</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x00A8;</mo> +            <mo>&#x00A8;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x00AF;</mo> +            <mo>&#x00AF;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x00B4;</mo> +            <mo>&#x00B4;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x00B8;</mo> +            <mo>&#x00B8;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02C6;</mo> +            <mo>&#x02C6;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02C7;</mo> +            <mo>&#x02C7;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02D8;</mo> +            <mo>&#x02D8;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02D9;</mo> +            <mo>&#x02D9;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02DA;</mo> +            <mo>&#x02DA;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02DC;</mo> +            <mo>&#x02DC;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02DD;</mo> +            <mo>&#x02DD;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x0302;</mo> +            <mo>&#x0302;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x0311;</mo> +            <mo>&#x0311;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x203E;</mo> +            <mo>&#x203E;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x20DB;</mo> +            <mo>&#x20DB;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x20DC;</mo> +            <mo>&#x20DC;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x2190;</mo> +            <mo>&#x2190;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x2192;</mo> +            <mo>&#x2192;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x2194;</mo> +            <mo>&#x2194;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x21BC;</mo> +            <mo>&#x21BC;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x21BD;</mo> +            <mo>&#x21BD;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x21C0;</mo> +            <mo>&#x21C0;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x21C1;</mo> +            <mo>&#x21C1;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23B4;</mo> +            <mo>&#x23B4;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23B5;</mo> +            <mo>&#x23B5;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23DC;</mo> +            <mo>&#x23DC;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23DD;</mo> +            <mo>&#x23DD;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23DE;</mo> +            <mo>&#x23DE;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23DF;</mo> +            <mo>&#x23DF;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x294E;</mo> +            <mo>&#x294E;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x2950;</mo> +            <mo>&#x2950;</mo> +          </munderover> +        </mrow> +      </mtd>+    </mtr> +    <mtr>+      <mtd>+        <mtext>accent=false:</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mstyle accent="false" accentunder="false">+          <munderover>+            <mi>H</mi> +            <mo>'</mo> +            <mo>'</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>^</mo> +            <mo>^</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>_</mo> +            <mo>_</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>`</mo> +            <mo>`</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>~</mo> +            <mo>~</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x00A8;</mo> +            <mo>&#x00A8;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x00AF;</mo> +            <mo>&#x00AF;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x00B4;</mo> +            <mo>&#x00B4;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x00B8;</mo> +            <mo>&#x00B8;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02C6;</mo> +            <mo>&#x02C6;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02C7;</mo> +            <mo>&#x02C7;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02D8;</mo> +            <mo>&#x02D8;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02D9;</mo> +            <mo>&#x02D9;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02DA;</mo> +            <mo>&#x02DA;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02DC;</mo> +            <mo>&#x02DC;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x02DD;</mo> +            <mo>&#x02DD;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x0302;</mo> +            <mo>&#x0302;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x0311;</mo> +            <mo>&#x0311;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x203E;</mo> +            <mo>&#x203E;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x20DB;</mo> +            <mo>&#x20DB;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x20DC;</mo> +            <mo>&#x20DC;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x2190;</mo> +            <mo>&#x2190;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x2192;</mo> +            <mo>&#x2192;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x2194;</mo> +            <mo>&#x2194;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x21BC;</mo> +            <mo>&#x21BC;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x21BD;</mo> +            <mo>&#x21BD;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x21C0;</mo> +            <mo>&#x21C0;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x21C1;</mo> +            <mo>&#x21C1;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23B4;</mo> +            <mo>&#x23B4;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23B5;</mo> +            <mo>&#x23B5;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23DC;</mo> +            <mo>&#x23DC;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23DD;</mo> +            <mo>&#x23DD;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23DE;</mo> +            <mo>&#x23DE;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x23DF;</mo> +            <mo>&#x23DF;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x294E;</mo> +            <mo>&#x294E;</mo> +          </munderover> +          <munderover>+            <mi>H</mi> +            <mo>&#x2950;</mo> +            <mo>&#x2950;</mo> +          </munderover> +        </mstyle> +      </mtd>+    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText TextNormal "default: (accent=true)" ] ]+    , [ [ EGrouped+            [ EUnderover+                False (EIdentifier "H") (ESymbol Accent "'") (ESymbol Accent "'")+            , EUnderover+                False (EIdentifier "H") (ESymbol Accent "^") (ESymbol Accent "^")+            , EUnderover+                False (EIdentifier "H") (ESymbol Accent "_") (ESymbol Accent "_")+            , EUnderover+                False (EIdentifier "H") (ESymbol Accent "`") (ESymbol Accent "`")+            , EUnderover+                False (EIdentifier "H") (ESymbol Accent "~") (ESymbol Accent "~")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\168")+                (ESymbol Accent "\168")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\175")+                (ESymbol Accent "\175")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\180")+                (ESymbol Accent "\180")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\184")+                (ESymbol Accent "\184")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\710")+                (ESymbol Accent "\710")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\711")+                (ESymbol Accent "\711")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\728")+                (ESymbol Accent "\728")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\729")+                (ESymbol Accent "\729")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\730")+                (ESymbol Accent "\730")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\732")+                (ESymbol Accent "\732")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\733")+                (ESymbol Accent "\733")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\770")+                (ESymbol Accent "\770")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\785")+                (ESymbol Accent "\785")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8254")+                (ESymbol Accent "\8254")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8411")+                (ESymbol Accent "\8411")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8412")+                (ESymbol Accent "\8412")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8592")+                (ESymbol Accent "\8592")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8594")+                (ESymbol Accent "\8594")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8596")+                (ESymbol Accent "\8596")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8636")+                (ESymbol Accent "\8636")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8637")+                (ESymbol Accent "\8637")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8640")+                (ESymbol Accent "\8640")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8641")+                (ESymbol Accent "\8641")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\9140")+                (ESymbol Accent "\9140")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\9141")+                (ESymbol Accent "\9141")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\9180")+                (ESymbol Accent "\9180")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\9181")+                (ESymbol Accent "\9181")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\9182")+                (ESymbol Accent "\9182")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\9183")+                (ESymbol Accent "\9183")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\10574")+                (ESymbol Accent "\10574")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\10576")+                (ESymbol Accent "\10576")+            ]+        ]+      ]+    , [ [ EText TextNormal "accent=false:" ] ]+    , [ [ EGrouped+            [ EUnderover+                False (EIdentifier "H") (ESymbol Ord "'") (ESymbol Ord "'")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "^") (ESymbol Ord "^")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "_") (ESymbol Ord "_")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "`") (ESymbol Ord "`")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "~") (ESymbol Ord "~")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\168") (ESymbol Ord "\168")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\175") (ESymbol Ord "\175")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\180") (ESymbol Ord "\180")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\184") (ESymbol Ord "\184")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Alpha "\710")+                (ESymbol Alpha "\710")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Alpha "\711")+                (ESymbol Alpha "\711")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\728") (ESymbol Ord "\728")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\729") (ESymbol Ord "\729")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\730") (ESymbol Ord "\730")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\732") (ESymbol Ord "\732")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\733") (ESymbol Ord "\733")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\770")+                (ESymbol Accent "\770")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\785")+                (ESymbol Accent "\785")+            , EUnderover+                False (EIdentifier "H") (ESymbol Ord "\8254") (ESymbol Ord "\8254")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8411")+                (ESymbol Accent "\8411")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Accent "\8412")+                (ESymbol Accent "\8412")+            , EUnderover+                False (EIdentifier "H") (ESymbol Rel "\8592") (ESymbol Rel "\8592")+            , EUnderover+                False (EIdentifier "H") (ESymbol Rel "\8594") (ESymbol Rel "\8594")+            , EUnderover+                False (EIdentifier "H") (ESymbol Rel "\8596") (ESymbol Rel "\8596")+            , EUnderover+                False (EIdentifier "H") (ESymbol Rel "\8636") (ESymbol Rel "\8636")+            , EUnderover+                False (EIdentifier "H") (ESymbol Rel "\8637") (ESymbol Rel "\8637")+            , EUnderover+                False (EIdentifier "H") (ESymbol Rel "\8640") (ESymbol Rel "\8640")+            , EUnderover+                False (EIdentifier "H") (ESymbol Rel "\8641") (ESymbol Rel "\8641")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol TOver "\9140")+                (ESymbol TOver "\9140")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol TUnder "\9141")+                (ESymbol TUnder "\9141")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol TOver "\9180")+                (ESymbol TOver "\9180")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol TUnder "\9181")+                (ESymbol TUnder "\9181")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol TOver "\9182")+                (ESymbol TOver "\9182")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol TUnder "\9183")+                (ESymbol TUnder "\9183")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Rel "\10574")+                (ESymbol Rel "\10574")+            , EUnderover+                False+                (EIdentifier "H")+                (ESymbol Rel "\10576")+                (ESymbol Rel "\10576")+            ]+        ]+      ]+    ]+]
+ test/reader/mml/accents6.test view
@@ -0,0 +1,682 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>default: (accent=true)</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <munderover>+            <mi>x</mi> +            <mo>'</mo> +            <mo>'</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>^</mo> +            <mo>^</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>_</mo> +            <mo>_</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>`</mo> +            <mo>`</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>~</mo> +            <mo>~</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x00A8;</mo> +            <mo>&#x00A8;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x00AF;</mo> +            <mo>&#x00AF;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x00B4;</mo> +            <mo>&#x00B4;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x00B8;</mo> +            <mo>&#x00B8;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02C6;</mo> +            <mo>&#x02C6;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02C7;</mo> +            <mo>&#x02C7;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02D8;</mo> +            <mo>&#x02D8;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02D9;</mo> +            <mo>&#x02D9;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02DA;</mo> +            <mo>&#x02DA;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02DC;</mo> +            <mo>&#x02DC;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02DD;</mo> +            <mo>&#x02DD;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x0302;</mo> +            <mo>&#x0302;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x0311;</mo> +            <mo>&#x0311;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x203E;</mo> +            <mo>&#x203E;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x20DB;</mo> +            <mo>&#x20DB;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x20DC;</mo> +            <mo>&#x20DC;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x2190;</mo> +            <mo>&#x2190;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x2192;</mo> +            <mo>&#x2192;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x2194;</mo> +            <mo>&#x2194;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x21BC;</mo> +            <mo>&#x21BC;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x21BD;</mo> +            <mo>&#x21BD;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x21C0;</mo> +            <mo>&#x21C0;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x21C1;</mo> +            <mo>&#x21C1;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23B4;</mo> +            <mo>&#x23B4;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23B5;</mo> +            <mo>&#x23B5;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23DC;</mo> +            <mo>&#x23DC;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23DD;</mo> +            <mo>&#x23DD;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23DE;</mo> +            <mo>&#x23DE;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23DF;</mo> +            <mo>&#x23DF;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x294E;</mo> +            <mo>&#x294E;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x2950;</mo> +            <mo>&#x2950;</mo> +          </munderover> +        </mrow> +      </mtd>+    </mtr> +    <mtr>+      <mtd>+        <mtext>accent=false:</mtext>+      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mstyle accent="false" accentunder="false">+          <munderover>+            <mi>x</mi> +            <mo>'</mo> +            <mo>'</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>^</mo> +            <mo>^</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>_</mo> +            <mo>_</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>`</mo> +            <mo>`</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>~</mo> +            <mo>~</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x00A8;</mo> +            <mo>&#x00A8;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x00AF;</mo> +            <mo>&#x00AF;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x00B4;</mo> +            <mo>&#x00B4;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x00B8;</mo> +            <mo>&#x00B8;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02C6;</mo> +            <mo>&#x02C6;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02C7;</mo> +            <mo>&#x02C7;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02D8;</mo> +            <mo>&#x02D8;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02D9;</mo> +            <mo>&#x02D9;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02DA;</mo> +            <mo>&#x02DA;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02DC;</mo> +            <mo>&#x02DC;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x02DD;</mo> +            <mo>&#x02DD;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x0302;</mo> +            <mo>&#x0302;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x0311;</mo> +            <mo>&#x0311;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x203E;</mo> +            <mo>&#x203E;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x20DB;</mo> +            <mo>&#x20DB;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x20DC;</mo> +            <mo>&#x20DC;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x2190;</mo> +            <mo>&#x2190;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x2192;</mo> +            <mo>&#x2192;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x2194;</mo> +            <mo>&#x2194;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x21BC;</mo> +            <mo>&#x21BC;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x21BD;</mo> +            <mo>&#x21BD;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x21C0;</mo> +            <mo>&#x21C0;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x21C1;</mo> +            <mo>&#x21C1;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23B4;</mo> +            <mo>&#x23B4;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23B5;</mo> +            <mo>&#x23B5;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23DC;</mo> +            <mo>&#x23DC;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23DD;</mo> +            <mo>&#x23DD;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23DE;</mo> +            <mo>&#x23DE;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x23DF;</mo> +            <mo>&#x23DF;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x294E;</mo> +            <mo>&#x294E;</mo> +          </munderover> +          <munderover>+            <mi>x</mi> +            <mo>&#x2950;</mo> +            <mo>&#x2950;</mo> +          </munderover> +        </mstyle> +      </mtd>+    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText TextNormal "default: (accent=true)" ] ]+    , [ [ EGrouped+            [ EUnderover+                False (EIdentifier "x") (ESymbol Accent "'") (ESymbol Accent "'")+            , EUnderover+                False (EIdentifier "x") (ESymbol Accent "^") (ESymbol Accent "^")+            , EUnderover+                False (EIdentifier "x") (ESymbol Accent "_") (ESymbol Accent "_")+            , EUnderover+                False (EIdentifier "x") (ESymbol Accent "`") (ESymbol Accent "`")+            , EUnderover+                False (EIdentifier "x") (ESymbol Accent "~") (ESymbol Accent "~")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\168")+                (ESymbol Accent "\168")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\175")+                (ESymbol Accent "\175")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\180")+                (ESymbol Accent "\180")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\184")+                (ESymbol Accent "\184")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\710")+                (ESymbol Accent "\710")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\711")+                (ESymbol Accent "\711")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\728")+                (ESymbol Accent "\728")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\729")+                (ESymbol Accent "\729")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\730")+                (ESymbol Accent "\730")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\732")+                (ESymbol Accent "\732")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\733")+                (ESymbol Accent "\733")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\770")+                (ESymbol Accent "\770")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\785")+                (ESymbol Accent "\785")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8254")+                (ESymbol Accent "\8254")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8411")+                (ESymbol Accent "\8411")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8412")+                (ESymbol Accent "\8412")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8592")+                (ESymbol Accent "\8592")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8594")+                (ESymbol Accent "\8594")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8596")+                (ESymbol Accent "\8596")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8636")+                (ESymbol Accent "\8636")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8637")+                (ESymbol Accent "\8637")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8640")+                (ESymbol Accent "\8640")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8641")+                (ESymbol Accent "\8641")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\9140")+                (ESymbol Accent "\9140")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\9141")+                (ESymbol Accent "\9141")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\9180")+                (ESymbol Accent "\9180")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\9181")+                (ESymbol Accent "\9181")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\9182")+                (ESymbol Accent "\9182")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\9183")+                (ESymbol Accent "\9183")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\10574")+                (ESymbol Accent "\10574")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\10576")+                (ESymbol Accent "\10576")+            ]+        ]+      ]+    , [ [ EText TextNormal "accent=false:" ] ]+    , [ [ EGrouped+            [ EUnderover+                False (EIdentifier "x") (ESymbol Ord "'") (ESymbol Ord "'")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "^") (ESymbol Ord "^")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "_") (ESymbol Ord "_")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "`") (ESymbol Ord "`")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "~") (ESymbol Ord "~")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\168") (ESymbol Ord "\168")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\175") (ESymbol Ord "\175")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\180") (ESymbol Ord "\180")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\184") (ESymbol Ord "\184")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Alpha "\710")+                (ESymbol Alpha "\710")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Alpha "\711")+                (ESymbol Alpha "\711")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\728") (ESymbol Ord "\728")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\729") (ESymbol Ord "\729")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\730") (ESymbol Ord "\730")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\732") (ESymbol Ord "\732")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\733") (ESymbol Ord "\733")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\770")+                (ESymbol Accent "\770")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\785")+                (ESymbol Accent "\785")+            , EUnderover+                False (EIdentifier "x") (ESymbol Ord "\8254") (ESymbol Ord "\8254")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8411")+                (ESymbol Accent "\8411")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Accent "\8412")+                (ESymbol Accent "\8412")+            , EUnderover+                False (EIdentifier "x") (ESymbol Rel "\8592") (ESymbol Rel "\8592")+            , EUnderover+                False (EIdentifier "x") (ESymbol Rel "\8594") (ESymbol Rel "\8594")+            , EUnderover+                False (EIdentifier "x") (ESymbol Rel "\8596") (ESymbol Rel "\8596")+            , EUnderover+                False (EIdentifier "x") (ESymbol Rel "\8636") (ESymbol Rel "\8636")+            , EUnderover+                False (EIdentifier "x") (ESymbol Rel "\8637") (ESymbol Rel "\8637")+            , EUnderover+                False (EIdentifier "x") (ESymbol Rel "\8640") (ESymbol Rel "\8640")+            , EUnderover+                False (EIdentifier "x") (ESymbol Rel "\8641") (ESymbol Rel "\8641")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol TOver "\9140")+                (ESymbol TOver "\9140")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol TUnder "\9141")+                (ESymbol TUnder "\9141")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol TOver "\9180")+                (ESymbol TOver "\9180")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol TUnder "\9181")+                (ESymbol TUnder "\9181")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol TOver "\9182")+                (ESymbol TOver "\9182")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol TUnder "\9183")+                (ESymbol TUnder "\9183")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Rel "\10574")+                (ESymbol Rel "\10574")+            , EUnderover+                False+                (EIdentifier "x")+                (ESymbol Rel "\10576")+                (ESymbol Rel "\10576")+            ]+        ]+      ]+    ]+]
+ test/reader/mml/attribQuote1.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mi mathsize="small">A</mi> +  <mo>+</mo> +  <mi mathsize="big">A</mi> </math>+>>> native+[ EIdentifier "A" , ESymbol Bin "+" , EIdentifier "A" ]
+ test/reader/mml/b.test view
@@ -0,0 +1,1153 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>backcong</mtext> +      </mtd> +      <mtd>+        <mo>≌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>backepsilon</mtext> +      </mtd> +      <mtd>+        <mo>϶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>backprime</mtext> +      </mtd> +      <mtd>+        <mo>‵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>backsim</mtext> +      </mtd> +      <mtd>+        <mo>∽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>backsimeq</mtext> +      </mtd> +      <mtd>+        <mo>⋍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Backslash</mtext> +      </mtd> +      <mtd>+        <mo>∖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Barv</mtext> +      </mtd> +      <mtd>+        <mo>⫧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>barvee</mtext> +      </mtd> +      <mtd>+        <mo>⊽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>barwed</mtext> +      </mtd> +      <mtd>+        <mo>⌅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Barwed</mtext> +      </mtd> +      <mtd>+        <mo>⌆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>barwedge</mtext> +      </mtd> +      <mtd>+        <mo>⌅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bbrk</mtext> +      </mtd> +      <mtd>+        <mo>⎵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bbrktbrk</mtext> +      </mtd> +      <mtd>+        <mo>⎶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bcong</mtext> +      </mtd> +      <mtd>+        <mo>≌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bcy</mtext> +      </mtd> +      <mtd>+        <mo>б</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Bcy</mtext> +      </mtd> +      <mtd>+        <mo>Б</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>becaus</mtext> +      </mtd> +      <mtd>+        <mo>∵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>because</mtext> +      </mtd> +      <mtd>+        <mo>∵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Because</mtext> +      </mtd> +      <mtd>+        <mo>∵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bemptyv</mtext> +      </mtd> +      <mtd>+        <mo>⦰</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bepsi</mtext> +      </mtd> +      <mtd>+        <mo>϶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bernou</mtext> +      </mtd> +      <mtd>+        <mo>ℬ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Bernoullis</mtext> +      </mtd> +      <mtd>+        <mo>ℬ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>beta</mtext> +      </mtd> +      <mtd>+        <mo>β</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>beth</mtext> +      </mtd> +      <mtd>+        <mo>ℶ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>between</mtext> +      </mtd> +      <mtd>+        <mo>≬</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Bfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigcap</mtext> +      </mtd> +      <mtd>+        <mo>⋂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigcirc</mtext> +      </mtd> +      <mtd>+        <mo>◯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigcup</mtext> +      </mtd> +      <mtd>+        <mo>⋃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigodot</mtext> +      </mtd> +      <mtd>+        <mo>⨀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigoplus</mtext> +      </mtd> +      <mtd>+        <mo>⨁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigotimes</mtext> +      </mtd> +      <mtd>+        <mo>⨂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigsqcup</mtext> +      </mtd> +      <mtd>+        <mo>⨆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigstar</mtext> +      </mtd> +      <mtd>+        <mo>★</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigtriangledown</mtext> +      </mtd> +      <mtd>+        <mo>▽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigtriangleup</mtext> +      </mtd> +      <mtd>+        <mo>△</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>biguplus</mtext> +      </mtd> +      <mtd>+        <mo>⨄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigvee</mtext> +      </mtd> +      <mtd>+        <mo>⋁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bigwedge</mtext> +      </mtd> +      <mtd>+        <mo>⋀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bkarow</mtext> +      </mtd> +      <mtd>+        <mo>⤍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blacklozenge</mtext> +      </mtd> +      <mtd>+        <mo>⧫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blacksquare</mtext> +      </mtd> +      <mtd>+        <mo>▪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blacktriangle</mtext> +      </mtd> +      <mtd>+        <mo>▴</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blacktriangledown</mtext> +      </mtd> +      <mtd>+        <mo>▾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blacktriangleleft</mtext> +      </mtd> +      <mtd>+        <mo>◂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blacktriangleright</mtext> +      </mtd> +      <mtd>+        <mo>▸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blank</mtext> +      </mtd> +      <mtd>+        <mo>␣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blk12</mtext> +      </mtd> +      <mtd>+        <mo>▒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blk14</mtext> +      </mtd> +      <mtd>+        <mo>░</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>blk34</mtext> +      </mtd> +      <mtd>+        <mo>▓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>block</mtext> +      </mtd> +      <mtd>+        <mo>█</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bne</mtext> +      </mtd> +      <mtd>+        <mo>=⃥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bnequiv</mtext> +      </mtd> +      <mtd>+        <mo>≡⃥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bnot</mtext> +      </mtd> +      <mtd>+        <mo>⌐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bNot</mtext> +      </mtd> +      <mtd>+        <mo>⫭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Bopf</mtext> +      </mtd> +      <mtd>+        <mo>𝔹</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bot</mtext> +      </mtd> +      <mtd>+        <mo>⊥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bottom</mtext> +      </mtd> +      <mtd>+        <mo>⊥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bowtie</mtext> +      </mtd> +      <mtd>+        <mo>⋈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxbox</mtext> +      </mtd> +      <mtd>+        <mo>⧉</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxdl</mtext> +      </mtd> +      <mtd>+        <mo>┐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxdL</mtext> +      </mtd> +      <mtd>+        <mo>╕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxDl</mtext> +      </mtd> +      <mtd>+        <mo>╖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxDL</mtext> +      </mtd> +      <mtd>+        <mo>╗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxdr</mtext> +      </mtd> +      <mtd>+        <mo>┌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxdR</mtext> +      </mtd> +      <mtd>+        <mo>╒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxDr</mtext> +      </mtd> +      <mtd>+        <mo>╓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxDR</mtext> +      </mtd> +      <mtd>+        <mo>╔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxh</mtext> +      </mtd> +      <mtd>+        <mo>─</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxH</mtext> +      </mtd> +      <mtd>+        <mo>═</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxhd</mtext> +      </mtd> +      <mtd>+        <mo>┬</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxhD</mtext> +      </mtd> +      <mtd>+        <mo>╥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxHd</mtext> +      </mtd> +      <mtd>+        <mo>╤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxHD</mtext> +      </mtd> +      <mtd>+        <mo>╦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxhu</mtext> +      </mtd> +      <mtd>+        <mo>┴</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxhU</mtext> +      </mtd> +      <mtd>+        <mo>╨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxHu</mtext> +      </mtd> +      <mtd>+        <mo>╧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxHU</mtext> +      </mtd> +      <mtd>+        <mo>╩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxminus</mtext> +      </mtd> +      <mtd>+        <mo>⊟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxplus</mtext> +      </mtd> +      <mtd>+        <mo>⊞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxtimes</mtext> +      </mtd> +      <mtd>+        <mo>⊠</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxul</mtext> +      </mtd> +      <mtd>+        <mo>┘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxuL</mtext> +      </mtd> +      <mtd>+        <mo>╛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxUl</mtext> +      </mtd> +      <mtd>+        <mo>╜</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxUL</mtext> +      </mtd> +      <mtd>+        <mo>╝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxur</mtext> +      </mtd> +      <mtd>+        <mo>└</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxuR</mtext> +      </mtd> +      <mtd>+        <mo>╘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxUr</mtext> +      </mtd> +      <mtd>+        <mo>╙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxUR</mtext> +      </mtd> +      <mtd>+        <mo>╚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxv</mtext> +      </mtd> +      <mtd>+        <mo>│</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxV</mtext> +      </mtd> +      <mtd>+        <mo>║</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxvh</mtext> +      </mtd> +      <mtd>+        <mo>┼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxvH</mtext> +      </mtd> +      <mtd>+        <mo>╪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxVh</mtext> +      </mtd> +      <mtd>+        <mo>╫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxVH</mtext> +      </mtd> +      <mtd>+        <mo>╬</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxvl</mtext> +      </mtd> +      <mtd>+        <mo>┤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxvL</mtext> +      </mtd> +      <mtd>+        <mo>╡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxVl</mtext> +      </mtd> +      <mtd>+        <mo>╢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxVL</mtext> +      </mtd> +      <mtd>+        <mo>╣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxvr</mtext> +      </mtd> +      <mtd>+        <mo>├</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxvR</mtext> +      </mtd> +      <mtd>+        <mo>╞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxVr</mtext> +      </mtd> +      <mtd>+        <mo>╟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>boxVR</mtext> +      </mtd> +      <mtd>+        <mo>╠</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bprime</mtext> +      </mtd> +      <mtd>+        <mo>‵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>breve</mtext> +      </mtd> +      <mtd>+        <mo>˘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Breve</mtext> +      </mtd> +      <mtd>+        <mo>˘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>brvbar</mtext> +      </mtd> +      <mtd>+        <mo>¦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Bscr</mtext> +      </mtd> +      <mtd>+        <mo>ℬ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bsemi</mtext> +      </mtd> +      <mtd>+        <mo>⁏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bsim</mtext> +      </mtd> +      <mtd>+        <mo>∽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bsime</mtext> +      </mtd> +      <mtd>+        <mo>⋍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bsol</mtext> +      </mtd> +      <mtd>+        <mo>\</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bsolb</mtext> +      </mtd> +      <mtd>+        <mo>⧅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bsolhsub</mtext> +      </mtd> +      <mtd>+        <mo>⟈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bull</mtext> +      </mtd> +      <mtd>+        <mo>•</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bullet</mtext> +      </mtd> +      <mtd>+        <mo>•</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bump</mtext> +      </mtd> +      <mtd>+        <mo>≎</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bumpe</mtext> +      </mtd> +      <mtd>+        <mo>≏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bumpE</mtext> +      </mtd> +      <mtd>+        <mo>⪮</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>bumpeq</mtext> +      </mtd> +      <mtd>+        <mo>≏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Bumpeq</mtext> +      </mtd> +      <mtd>+        <mo>≎</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "backcong" ] , [ ESymbol Rel "\8780" ] ]+    , [ [ EText TextNormal "backepsilon" ] , [ ESymbol Ord "\1014" ] ]+    , [ [ EText TextNormal "backprime" ] , [ ESymbol Accent "\8245" ] ]+    , [ [ EText TextNormal "backsim" ] , [ ESymbol Rel "\8765" ] ]+    , [ [ EText TextNormal "backsimeq" ] , [ ESymbol Rel "\8909" ] ]+    , [ [ EText TextNormal "Backslash" ] , [ ESymbol Bin "\8726" ] ]+    , [ [ EText TextNormal "Barv" ] , [ ESymbol Rel "\10983" ] ]+    , [ [ EText TextNormal "barvee" ] , [ ESymbol Bin "\8893" ] ]+    , [ [ EText TextNormal "barwed" ] , [ ESymbol Bin "\8965" ] ]+    , [ [ EText TextNormal "Barwed" ] , [ ESymbol Bin "\8966" ] ]+    , [ [ EText TextNormal "barwedge" ] , [ ESymbol Bin "\8965" ] ]+    , [ [ EText TextNormal "bbrk" ] , [ ESymbol Accent "\9141" ] ]+    , [ [ EText TextNormal "bbrktbrk" ] , [ ESymbol Ord "\9142" ] ]+    , [ [ EText TextNormal "bcong" ] , [ ESymbol Rel "\8780" ] ]+    , [ [ EText TextNormal "bcy" ] , [ ESymbol Ord "\1073" ] ]+    , [ [ EText TextNormal "Bcy" ] , [ ESymbol Ord "\1041" ] ]+    , [ [ EText TextNormal "becaus" ] , [ ESymbol Ord "\8757" ] ]+    , [ [ EText TextNormal "because" ] , [ ESymbol Ord "\8757" ] ]+    , [ [ EText TextNormal "Because" ] , [ ESymbol Ord "\8757" ] ]+    , [ [ EText TextNormal "bemptyv" ] , [ ESymbol Ord "\10672" ] ]+    , [ [ EText TextNormal "bepsi" ] , [ ESymbol Ord "\1014" ] ]+    , [ [ EText TextNormal "bernou" ] , [ ESymbol Alpha "\8492" ] ]+    , [ [ EText TextNormal "Bernoullis" ] , [ ESymbol Alpha "\8492" ] ]+    , [ [ EText TextNormal "beta" ] , [ ESymbol Alpha "\946" ] ]+    , [ [ EText TextNormal "beth" ] , [ ESymbol Alpha "\8502" ] ]+    , [ [ EText TextNormal "between" ] , [ ESymbol Rel "\8812" ] ]+    , [ [ EText TextNormal "bfr" ] , [ ESymbol Alpha "\120095" ] ]+    , [ [ EText TextNormal "Bfr" ] , [ ESymbol Alpha "\120069" ] ]+    , [ [ EText TextNormal "bigcap" ] , [ ESymbol Op "\8898" ] ]+    , [ [ EText TextNormal "bigcirc" ] , [ ESymbol Ord "\9711" ] ]+    , [ [ EText TextNormal "bigcup" ] , [ ESymbol Op "\8899" ] ]+    , [ [ EText TextNormal "bigodot" ] , [ ESymbol Op "\10752" ] ]+    , [ [ EText TextNormal "bigoplus" ] , [ ESymbol Op "\10753" ] ]+    , [ [ EText TextNormal "bigotimes" ] , [ ESymbol Op "\10754" ] ]+    , [ [ EText TextNormal "bigsqcup" ] , [ ESymbol Op "\10758" ] ]+    , [ [ EText TextNormal "bigstar" ] , [ ESymbol Ord "\9733" ] ]+    , [ [ EText TextNormal "bigtriangledown" ]+      , [ ESymbol Bin "\9661" ]+      ]+    , [ [ EText TextNormal "bigtriangleup" ]+      , [ ESymbol Bin "\9651" ]+      ]+    , [ [ EText TextNormal "biguplus" ] , [ ESymbol Op "\10756" ] ]+    , [ [ EText TextNormal "bigvee" ] , [ ESymbol Op "\8897" ] ]+    , [ [ EText TextNormal "bigwedge" ] , [ ESymbol Op "\8896" ] ]+    , [ [ EText TextNormal "bkarow" ] , [ ESymbol Accent "\10509" ] ]+    , [ [ EText TextNormal "blacklozenge" ]+      , [ ESymbol Bin "\10731" ]+      ]+    , [ [ EText TextNormal "blacksquare" ] , [ ESymbol Ord "\9642" ] ]+    , [ [ EText TextNormal "blacktriangle" ]+      , [ ESymbol Bin "\9652" ]+      ]+    , [ [ EText TextNormal "blacktriangledown" ]+      , [ ESymbol Bin "\9662" ]+      ]+    , [ [ EText TextNormal "blacktriangleleft" ]+      , [ ESymbol Bin "\9666" ]+      ]+    , [ [ EText TextNormal "blacktriangleright" ]+      , [ ESymbol Bin "\9656" ]+      ]+    , [ [ EText TextNormal "blank" ] , [ ESymbol Ord "\9251" ] ]+    , [ [ EText TextNormal "blk12" ] , [ ESymbol Ord "\9618" ] ]+    , [ [ EText TextNormal "blk14" ] , [ ESymbol Ord "\9617" ] ]+    , [ [ EText TextNormal "blk34" ] , [ ESymbol Ord "\9619" ] ]+    , [ [ EText TextNormal "block" ] , [ ESymbol Ord "\9608" ] ]+    , [ [ EText TextNormal "bne" ] , [ EMathOperator "=\8421" ] ]+    , [ [ EText TextNormal "bnequiv" ]+      , [ EMathOperator "\8801\8421" ]+      ]+    , [ [ EText TextNormal "bnot" ] , [ ESymbol Ord "\8976" ] ]+    , [ [ EText TextNormal "bNot" ] , [ ESymbol Rel "\10989" ] ]+    , [ [ EText TextNormal "bopf" ] , [ ESymbol Alpha "\120147" ] ]+    , [ [ EText TextNormal "Bopf" ] , [ ESymbol Alpha "\120121" ] ]+    , [ [ EText TextNormal "bot" ] , [ ESymbol Ord "\8869" ] ]+    , [ [ EText TextNormal "bottom" ] , [ ESymbol Ord "\8869" ] ]+    , [ [ EText TextNormal "bowtie" ] , [ ESymbol Rel "\8904" ] ]+    , [ [ EText TextNormal "boxbox" ] , [ ESymbol Ord "\10697" ] ]+    , [ [ EText TextNormal "boxdl" ] , [ ESymbol Ord "\9488" ] ]+    , [ [ EText TextNormal "boxdL" ] , [ ESymbol Ord "\9557" ] ]+    , [ [ EText TextNormal "boxDl" ] , [ ESymbol Ord "\9558" ] ]+    , [ [ EText TextNormal "boxDL" ] , [ ESymbol Ord "\9559" ] ]+    , [ [ EText TextNormal "boxdr" ] , [ ESymbol Ord "\9484" ] ]+    , [ [ EText TextNormal "boxdR" ] , [ ESymbol Ord "\9554" ] ]+    , [ [ EText TextNormal "boxDr" ] , [ ESymbol Ord "\9555" ] ]+    , [ [ EText TextNormal "boxDR" ] , [ ESymbol Ord "\9556" ] ]+    , [ [ EText TextNormal "boxh" ] , [ ESymbol Ord "\9472" ] ]+    , [ [ EText TextNormal "boxH" ] , [ ESymbol Ord "\9552" ] ]+    , [ [ EText TextNormal "boxhd" ] , [ ESymbol Ord "\9516" ] ]+    , [ [ EText TextNormal "boxhD" ] , [ ESymbol Ord "\9573" ] ]+    , [ [ EText TextNormal "boxHd" ] , [ ESymbol Ord "\9572" ] ]+    , [ [ EText TextNormal "boxHD" ] , [ ESymbol Ord "\9574" ] ]+    , [ [ EText TextNormal "boxhu" ] , [ ESymbol Ord "\9524" ] ]+    , [ [ EText TextNormal "boxhU" ] , [ ESymbol Ord "\9576" ] ]+    , [ [ EText TextNormal "boxHu" ] , [ ESymbol Ord "\9575" ] ]+    , [ [ EText TextNormal "boxHU" ] , [ ESymbol Ord "\9577" ] ]+    , [ [ EText TextNormal "boxminus" ] , [ ESymbol Bin "\8863" ] ]+    , [ [ EText TextNormal "boxplus" ] , [ ESymbol Bin "\8862" ] ]+    , [ [ EText TextNormal "boxtimes" ] , [ ESymbol Bin "\8864" ] ]+    , [ [ EText TextNormal "boxul" ] , [ ESymbol Ord "\9496" ] ]+    , [ [ EText TextNormal "boxuL" ] , [ ESymbol Ord "\9563" ] ]+    , [ [ EText TextNormal "boxUl" ] , [ ESymbol Ord "\9564" ] ]+    , [ [ EText TextNormal "boxUL" ] , [ ESymbol Ord "\9565" ] ]+    , [ [ EText TextNormal "boxur" ] , [ ESymbol Ord "\9492" ] ]+    , [ [ EText TextNormal "boxuR" ] , [ ESymbol Ord "\9560" ] ]+    , [ [ EText TextNormal "boxUr" ] , [ ESymbol Ord "\9561" ] ]+    , [ [ EText TextNormal "boxUR" ] , [ ESymbol Ord "\9562" ] ]+    , [ [ EText TextNormal "boxv" ] , [ ESymbol Ord "\9474" ] ]+    , [ [ EText TextNormal "boxV" ] , [ ESymbol Ord "\9553" ] ]+    , [ [ EText TextNormal "boxvh" ] , [ ESymbol Ord "\9532" ] ]+    , [ [ EText TextNormal "boxvH" ] , [ ESymbol Ord "\9578" ] ]+    , [ [ EText TextNormal "boxVh" ] , [ ESymbol Ord "\9579" ] ]+    , [ [ EText TextNormal "boxVH" ] , [ ESymbol Ord "\9580" ] ]+    , [ [ EText TextNormal "boxvl" ] , [ ESymbol Ord "\9508" ] ]+    , [ [ EText TextNormal "boxvL" ] , [ ESymbol Ord "\9569" ] ]+    , [ [ EText TextNormal "boxVl" ] , [ ESymbol Ord "\9570" ] ]+    , [ [ EText TextNormal "boxVL" ] , [ ESymbol Ord "\9571" ] ]+    , [ [ EText TextNormal "boxvr" ] , [ ESymbol Ord "\9500" ] ]+    , [ [ EText TextNormal "boxvR" ] , [ ESymbol Ord "\9566" ] ]+    , [ [ EText TextNormal "boxVr" ] , [ ESymbol Ord "\9567" ] ]+    , [ [ EText TextNormal "boxVR" ] , [ ESymbol Ord "\9568" ] ]+    , [ [ EText TextNormal "bprime" ] , [ ESymbol Accent "\8245" ] ]+    , [ [ EText TextNormal "breve" ] , [ ESymbol Accent "\728" ] ]+    , [ [ EText TextNormal "Breve" ] , [ ESymbol Accent "\728" ] ]+    , [ [ EText TextNormal "brvbar" ] , [ ESymbol Ord "\166" ] ]+    , [ [ EText TextNormal "bscr" ] , [ ESymbol Alpha "\119991" ] ]+    , [ [ EText TextNormal "Bscr" ] , [ ESymbol Alpha "\8492" ] ]+    , [ [ EText TextNormal "bsemi" ] , [ ESymbol Ord "\8271" ] ]+    , [ [ EText TextNormal "bsim" ] , [ ESymbol Rel "\8765" ] ]+    , [ [ EText TextNormal "bsime" ] , [ ESymbol Rel "\8909" ] ]+    , [ [ EText TextNormal "bsol" ] , [ ESymbol Ord "\\" ] ]+    , [ [ EText TextNormal "bsolb" ] , [ ESymbol Bin "\10693" ] ]+    , [ [ EText TextNormal "bsolhsub" ] , [ ESymbol Rel "\10184" ] ]+    , [ [ EText TextNormal "bull" ] , [ ESymbol Bin "\8226" ] ]+    , [ [ EText TextNormal "bullet" ] , [ ESymbol Bin "\8226" ] ]+    , [ [ EText TextNormal "bump" ] , [ ESymbol Rel "\8782" ] ]+    , [ [ EText TextNormal "bumpe" ] , [ ESymbol Rel "\8783" ] ]+    , [ [ EText TextNormal "bumpE" ] , [ ESymbol Rel "\10926" ] ]+    , [ [ EText TextNormal "bumpeq" ] , [ ESymbol Rel "\8783" ] ]+    , [ [ EText TextNormal "Bumpeq" ] , [ ESymbol Rel "\8782" ] ]+    ]+]
+ test/reader/mml/badAttribs2.test view
@@ -0,0 +1,16 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <msup foo="blue">+    <mn>2</mn> +    <mn>5</mn> +  </msup> +  <mo bar="2ex">+</mo> +  <mi>x</mi> +</math>+>>> native+[ ESuper (ENumber "2") (ENumber "5")+, ESymbol Bin "+"+, EIdentifier "x"+]
+ test/reader/mml/badAttribsAction.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <maction>+    <mn>2</mn> +  </maction> +</math>+>>> native+[ ENumber "2" ]
+ test/reader/mml/badAttribsGlyph4.test view
@@ -0,0 +1,29 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mn>+    <mglyph fontfamily="Arial" index="97" alt="lowercase 'a'"></mglyph> +  </mn> +  <mspace width="10px"></mspace> +  <mi>+    <mglyph fontfamily="Arial" index="105"></mglyph> +  </mi> +  <mspace width="10px"></mspace> +  <mn>+    <mglyph fontfamily="fake-font" index="105"></mglyph> +  </mn> +  <mspace width="10px"></mspace> +  <mi>+    <mglyph index="97" alt="lowercase 'a'"></mglyph> +  </mi> +</math>+>>> native+[ ENumber ""+, ESpace (0 % 1)+, EIdentifier ""+, ESpace (0 % 1)+, ENumber ""+, ESpace (0 % 1)+, EIdentifier ""+]
+ test/reader/mml/badAttribsVal3.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mn mathbackground="quagmire">2</mn> +  <mo color="potato">+</mo> +  <mn>5</mn> +</math>+>>> native+[ ENumber "2" , ESymbol Bin "+" , ENumber "5" ]
+ test/reader/mml/badEntity1.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE math PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mn>&foo;</mn> +</math>+>>> native+[ ENumber "foo" ]
+ test/reader/mml/badTag1.test view
@@ -0,0 +1,24 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <msup>+    <mn>5</mn> +    <foo>2</foo> +  </msup> +  <mo>+</mo> +  <msup>+    <foo>2</foo> +    <mn>5</mn> +  </msup> +  <mo>+</mo> +  <mrow>+    <mn>5</mn> +    <foo>+</foo> +    <mn>5</mn> +  </mrow> +  <mo>+</mo> +  <foo></foo> +</math>+>>> native+Unexpected element foo line 6
+ test/reader/mml/badTagPhantom2.test view
@@ -0,0 +1,12 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mn>2</mn> +  <mo>+</mo> +  <mphantom>+    <foo>14</foo> +  </mphantom> +</math>+>>> native+Unexpected element foo line 7
+ test/reader/mml/c.test view
@@ -0,0 +1,1157 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>cacute</mtext> +      </mtd> +      <mtd>+        <mo>ć</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cacute</mtext> +      </mtd> +      <mtd>+        <mo>Ć</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cap</mtext> +      </mtd> +      <mtd>+        <mo>∩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cap</mtext> +      </mtd> +      <mtd>+        <mo>⋒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>capand</mtext> +      </mtd> +      <mtd>+        <mo>⩄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>capbrcup</mtext> +      </mtd> +      <mtd>+        <mo>⩉</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>capcap</mtext> +      </mtd> +      <mtd>+        <mo>⩋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>capcup</mtext> +      </mtd> +      <mtd>+        <mo>⩇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>capdot</mtext> +      </mtd> +      <mtd>+        <mo>⩀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CapitalDifferentialD</mtext> +      </mtd> +      <mtd>+        <mo>ⅅ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>caps</mtext> +      </mtd> +      <mtd>+        <mo>∩︀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>caret</mtext> +      </mtd> +      <mtd>+        <mo>⁁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>caron</mtext> +      </mtd> +      <mtd>+        <mo>ˇ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cayleys</mtext> +      </mtd> +      <mtd>+        <mo>ℭ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ccaps</mtext> +      </mtd> +      <mtd>+        <mo>⩍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ccaron</mtext> +      </mtd> +      <mtd>+        <mo>č</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ccaron</mtext> +      </mtd> +      <mtd>+        <mo>Č</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ccedil</mtext> +      </mtd> +      <mtd>+        <mo>ç</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ccedil</mtext> +      </mtd> +      <mtd>+        <mo>Ç</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ccirc</mtext> +      </mtd> +      <mtd>+        <mo>ĉ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ccirc</mtext> +      </mtd> +      <mtd>+        <mo>Ĉ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cconint</mtext> +      </mtd> +      <mtd>+        <mo>∰</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ccups</mtext> +      </mtd> +      <mtd>+        <mo>⩌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ccupssm</mtext> +      </mtd> +      <mtd>+        <mo>⩐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cdot</mtext> +      </mtd> +      <mtd>+        <mo>ċ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cdot</mtext> +      </mtd> +      <mtd>+        <mo>Ċ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cedil</mtext> +      </mtd> +      <mtd>+        <mo>¸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cedilla</mtext> +      </mtd> +      <mtd>+        <mo>¸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cemptyv</mtext> +      </mtd> +      <mtd>+        <mo>⦲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cent</mtext> +      </mtd> +      <mtd>+        <mo>¢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>centerdot</mtext> +      </mtd> +      <mtd>+        <mo>·</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CenterDot</mtext> +      </mtd> +      <mtd>+        <mo>·</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔠</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cfr</mtext> +      </mtd> +      <mtd>+        <mo>ℭ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>chcy</mtext> +      </mtd> +      <mtd>+        <mo>ч</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CHcy</mtext> +      </mtd> +      <mtd>+        <mo>Ч</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>check</mtext> +      </mtd> +      <mtd>+        <mo>✓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>checkmark</mtext> +      </mtd> +      <mtd>+        <mo>✓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>chi</mtext> +      </mtd> +      <mtd>+        <mo>χ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cir</mtext> +      </mtd> +      <mtd>+        <mo>○</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circ</mtext> +      </mtd> +      <mtd>+        <mo>ˆ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circeq</mtext> +      </mtd> +      <mtd>+        <mo>≗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circlearrowleft</mtext> +      </mtd> +      <mtd>+        <mo>↺</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circlearrowright</mtext> +      </mtd> +      <mtd>+        <mo>↻</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circledast</mtext> +      </mtd> +      <mtd>+        <mo>⊛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circledcirc</mtext> +      </mtd> +      <mtd>+        <mo>⊚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circleddash</mtext> +      </mtd> +      <mtd>+        <mo>⊝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CircleDot</mtext> +      </mtd> +      <mtd>+        <mo>⊙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circledR</mtext> +      </mtd> +      <mtd>+        <mo>®</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>circledS</mtext> +      </mtd> +      <mtd>+        <mo>Ⓢ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CircleMinus</mtext> +      </mtd> +      <mtd>+        <mo>⊖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CirclePlus</mtext> +      </mtd> +      <mtd>+        <mo>⊕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CircleTimes</mtext> +      </mtd> +      <mtd>+        <mo>⊗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cire</mtext> +      </mtd> +      <mtd>+        <mo>≗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cirE</mtext> +      </mtd> +      <mtd>+        <mo>⧃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cirfnint</mtext> +      </mtd> +      <mtd>+        <mo>⨐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cirmid</mtext> +      </mtd> +      <mtd>+        <mo>⫯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cirscir</mtext> +      </mtd> +      <mtd>+        <mo>⧂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ClockwiseContourIntegral</mtext> +      </mtd> +      <mtd>+        <mo>∲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CloseCurlyDoubleQuote</mtext> +      </mtd> +      <mtd>+        <mo>”</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CloseCurlyQuote</mtext> +      </mtd> +      <mtd>+        <mo>’</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>clubs</mtext> +      </mtd> +      <mtd>+        <mo>♣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>clubsuit</mtext> +      </mtd> +      <mtd>+        <mo>♣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>colon</mtext> +      </mtd> +      <mtd>+        <mo>:</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Colon</mtext> +      </mtd> +      <mtd>+        <mo>∷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>colone</mtext> +      </mtd> +      <mtd>+        <mo>≔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Colone</mtext> +      </mtd> +      <mtd>+        <mo>⩴</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>coloneq</mtext> +      </mtd> +      <mtd>+        <mo>≔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>comma</mtext> +      </mtd> +      <mtd>+        <mo>,</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>commat</mtext> +      </mtd> +      <mtd>+        <mo>@</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>comp</mtext> +      </mtd> +      <mtd>+        <mo>∁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>compfn</mtext> +      </mtd> +      <mtd>+        <mo>∘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>complement</mtext> +      </mtd> +      <mtd>+        <mo>∁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>complexes</mtext> +      </mtd> +      <mtd>+        <mo>ℂ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cong</mtext> +      </mtd> +      <mtd>+        <mo>≅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>congdot</mtext> +      </mtd> +      <mtd>+        <mo>⩭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Congruent</mtext> +      </mtd> +      <mtd>+        <mo>≡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>conint</mtext> +      </mtd> +      <mtd>+        <mo>∮</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Conint</mtext> +      </mtd> +      <mtd>+        <mo>∯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ContourIntegral</mtext> +      </mtd> +      <mtd>+        <mo>∮</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>copf</mtext> +      </mtd> +      <mtd>+        <mo>𝕔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Copf</mtext> +      </mtd> +      <mtd>+        <mo>ℂ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>coprod</mtext> +      </mtd> +      <mtd>+        <mo>∐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Coproduct</mtext> +      </mtd> +      <mtd>+        <mo>∐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>copy</mtext> +      </mtd> +      <mtd>+        <mo>©</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>copysr</mtext> +      </mtd> +      <mtd>+        <mo>℗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CounterClockwiseContourIntegral</mtext> +      </mtd> +      <mtd>+        <mo>∳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cross</mtext> +      </mtd> +      <mtd>+        <mo>✗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cross</mtext> +      </mtd> +      <mtd>+        <mo>⨯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>csub</mtext> +      </mtd> +      <mtd>+        <mo>⫏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>csube</mtext> +      </mtd> +      <mtd>+        <mo>⫑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>csup</mtext> +      </mtd> +      <mtd>+        <mo>⫐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>csupe</mtext> +      </mtd> +      <mtd>+        <mo>⫒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ctdot</mtext> +      </mtd> +      <mtd>+        <mo>⋯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cudarrl</mtext> +      </mtd> +      <mtd>+        <mo>⤸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cudarrr</mtext> +      </mtd> +      <mtd>+        <mo>⤵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cuepr</mtext> +      </mtd> +      <mtd>+        <mo>⋞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cuesc</mtext> +      </mtd> +      <mtd>+        <mo>⋟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cularr</mtext> +      </mtd> +      <mtd>+        <mo>↶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cularrp</mtext> +      </mtd> +      <mtd>+        <mo>⤽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cup</mtext> +      </mtd> +      <mtd>+        <mo>∪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cup</mtext> +      </mtd> +      <mtd>+        <mo>⋓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cupbrcap</mtext> +      </mtd> +      <mtd>+        <mo>⩈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cupcap</mtext> +      </mtd> +      <mtd>+        <mo>⩆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>CupCap</mtext> +      </mtd> +      <mtd>+        <mo>≍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cupcup</mtext> +      </mtd> +      <mtd>+        <mo>⩊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cupdot</mtext> +      </mtd> +      <mtd>+        <mo>⊍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cupor</mtext> +      </mtd> +      <mtd>+        <mo>⩅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cups</mtext> +      </mtd> +      <mtd>+        <mo>∪︀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curarr</mtext> +      </mtd> +      <mtd>+        <mo>↷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curarrm</mtext> +      </mtd> +      <mtd>+        <mo>⤼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curlyeqprec</mtext> +      </mtd> +      <mtd>+        <mo>⋞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curlyeqsucc</mtext> +      </mtd> +      <mtd>+        <mo>⋟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curlyvee</mtext> +      </mtd> +      <mtd>+        <mo>⋎</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curlywedge</mtext> +      </mtd> +      <mtd>+        <mo>⋏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curren</mtext> +      </mtd> +      <mtd>+        <mo>¤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curvearrowleft</mtext> +      </mtd> +      <mtd>+        <mo>↶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>curvearrowright</mtext> +      </mtd> +      <mtd>+        <mo>↷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cuvee</mtext> +      </mtd> +      <mtd>+        <mo>⋎</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cuwed</mtext> +      </mtd> +      <mtd>+        <mo>⋏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cwconint</mtext> +      </mtd> +      <mtd>+        <mo>∲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cwint</mtext> +      </mtd> +      <mtd>+        <mo>∱</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>cylcty</mtext> +      </mtd> +      <mtd>+        <mo>⌭</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "cacute" ] , [ ESymbol Ord "\263" ] ]+    , [ [ EText TextNormal "Cacute" ] , [ ESymbol Ord "\262" ] ]+    , [ [ EText TextNormal "cap" ] , [ ESymbol Bin "\8745" ] ]+    , [ [ EText TextNormal "Cap" ] , [ ESymbol Bin "\8914" ] ]+    , [ [ EText TextNormal "capand" ] , [ ESymbol Bin "\10820" ] ]+    , [ [ EText TextNormal "capbrcup" ] , [ ESymbol Bin "\10825" ] ]+    , [ [ EText TextNormal "capcap" ] , [ ESymbol Bin "\10827" ] ]+    , [ [ EText TextNormal "capcup" ] , [ ESymbol Bin "\10823" ] ]+    , [ [ EText TextNormal "capdot" ] , [ ESymbol Bin "\10816" ] ]+    , [ [ EText TextNormal "CapitalDifferentialD" ]+      , [ ESymbol Ord "\8517" ]+      ]+    , [ [ EText TextNormal "caps" ] , [ EMathOperator "\8745\65024" ] ]+    , [ [ EText TextNormal "caret" ] , [ ESymbol Ord "\8257" ] ]+    , [ [ EText TextNormal "caron" ] , [ ESymbol Accent "\711" ] ]+    , [ [ EText TextNormal "Cayleys" ] , [ ESymbol Alpha "\8493" ] ]+    , [ [ EText TextNormal "ccaps" ] , [ ESymbol Bin "\10829" ] ]+    , [ [ EText TextNormal "ccaron" ] , [ ESymbol Ord "\269" ] ]+    , [ [ EText TextNormal "Ccaron" ] , [ ESymbol Ord "\268" ] ]+    , [ [ EText TextNormal "ccedil" ] , [ ESymbol Ord "\231" ] ]+    , [ [ EText TextNormal "Ccedil" ] , [ ESymbol Ord "\199" ] ]+    , [ [ EText TextNormal "ccirc" ] , [ ESymbol Ord "\265" ] ]+    , [ [ EText TextNormal "Ccirc" ] , [ ESymbol Ord "\264" ] ]+    , [ [ EText TextNormal "Cconint" ] , [ ESymbol Op "\8752" ] ]+    , [ [ EText TextNormal "ccups" ] , [ ESymbol Bin "\10828" ] ]+    , [ [ EText TextNormal "ccupssm" ] , [ ESymbol Bin "\10832" ] ]+    , [ [ EText TextNormal "cdot" ] , [ ESymbol Ord "\267" ] ]+    , [ [ EText TextNormal "Cdot" ] , [ ESymbol Ord "\266" ] ]+    , [ [ EText TextNormal "cedil" ] , [ ESymbol Accent "\184" ] ]+    , [ [ EText TextNormal "Cedilla" ] , [ ESymbol Accent "\184" ] ]+    , [ [ EText TextNormal "cemptyv" ] , [ ESymbol Ord "\10674" ] ]+    , [ [ EText TextNormal "cent" ] , [ ESymbol Ord "\162" ] ]+    , [ [ EText TextNormal "centerdot" ] , [ ESymbol Bin "\183" ] ]+    , [ [ EText TextNormal "CenterDot" ] , [ ESymbol Bin "\183" ] ]+    , [ [ EText TextNormal "cfr" ] , [ ESymbol Alpha "\120096" ] ]+    , [ [ EText TextNormal "Cfr" ] , [ ESymbol Alpha "\8493" ] ]+    , [ [ EText TextNormal "chcy" ] , [ ESymbol Ord "\1095" ] ]+    , [ [ EText TextNormal "CHcy" ] , [ ESymbol Ord "\1063" ] ]+    , [ [ EText TextNormal "check" ] , [ ESymbol Ord "\10003" ] ]+    , [ [ EText TextNormal "checkmark" ] , [ ESymbol Ord "\10003" ] ]+    , [ [ EText TextNormal "chi" ] , [ ESymbol Alpha "\967" ] ]+    , [ [ EText TextNormal "cir" ] , [ ESymbol Bin "\9675" ] ]+    , [ [ EText TextNormal "circ" ] , [ ESymbol Accent "\710" ] ]+    , [ [ EText TextNormal "circeq" ] , [ ESymbol Rel "\8791" ] ]+    , [ [ EText TextNormal "circlearrowleft" ]+      , [ ESymbol Ord "\8634" ]+      ]+    , [ [ EText TextNormal "circlearrowright" ]+      , [ ESymbol Ord "\8635" ]+      ]+    , [ [ EText TextNormal "circledast" ] , [ ESymbol Bin "\8859" ] ]+    , [ [ EText TextNormal "circledcirc" ] , [ ESymbol Bin "\8858" ] ]+    , [ [ EText TextNormal "circleddash" ] , [ ESymbol Bin "\8861" ] ]+    , [ [ EText TextNormal "CircleDot" ] , [ ESymbol Bin "\8857" ] ]+    , [ [ EText TextNormal "circledR" ] , [ ESymbol Ord "\174" ] ]+    , [ [ EText TextNormal "circledS" ] , [ ESymbol Ord "\9416" ] ]+    , [ [ EText TextNormal "CircleMinus" ] , [ ESymbol Bin "\8854" ] ]+    , [ [ EText TextNormal "CirclePlus" ] , [ ESymbol Bin "\8853" ] ]+    , [ [ EText TextNormal "CircleTimes" ] , [ ESymbol Bin "\8855" ] ]+    , [ [ EText TextNormal "cire" ] , [ ESymbol Rel "\8791" ] ]+    , [ [ EText TextNormal "cirE" ] , [ ESymbol Ord "\10691" ] ]+    , [ [ EText TextNormal "cirfnint" ] , [ ESymbol Op "\10768" ] ]+    , [ [ EText TextNormal "cirmid" ] , [ ESymbol Rel "\10991" ] ]+    , [ [ EText TextNormal "cirscir" ] , [ ESymbol Ord "\10690" ] ]+    , [ [ EText TextNormal "ClockwiseContourIntegral" ]+      , [ ESymbol Op "\8754" ]+      ]+    , [ [ EText TextNormal "CloseCurlyDoubleQuote" ]+      , [ ESymbol Close "\8221" ]+      ]+    , [ [ EText TextNormal "CloseCurlyQuote" ]+      , [ ESymbol Close "\8217" ]+      ]+    , [ [ EText TextNormal "clubs" ] , [ ESymbol Ord "\9827" ] ]+    , [ [ EText TextNormal "clubsuit" ] , [ ESymbol Ord "\9827" ] ]+    , [ [ EText TextNormal "colon" ] , [ ESymbol Pun ":" ] ]+    , [ [ EText TextNormal "Colon" ] , [ ESymbol Rel "\8759" ] ]+    , [ [ EText TextNormal "colone" ] , [ ESymbol Rel "\8788" ] ]+    , [ [ EText TextNormal "Colone" ] , [ ESymbol Rel "\10868" ] ]+    , [ [ EText TextNormal "coloneq" ] , [ ESymbol Rel "\8788" ] ]+    , [ [ EText TextNormal "comma" ] , [ ESymbol Pun "," ] ]+    , [ [ EText TextNormal "commat" ] , [ ESymbol Ord "@" ] ]+    , [ [ EText TextNormal "comp" ] , [ ESymbol Ord "\8705" ] ]+    , [ [ EText TextNormal "compfn" ] , [ ESymbol Bin "\8728" ] ]+    , [ [ EText TextNormal "complement" ] , [ ESymbol Ord "\8705" ] ]+    , [ [ EText TextNormal "complexes" ] , [ ESymbol Alpha "\8450" ] ]+    , [ [ EText TextNormal "cong" ] , [ ESymbol Rel "\8773" ] ]+    , [ [ EText TextNormal "congdot" ] , [ ESymbol Rel "\10861" ] ]+    , [ [ EText TextNormal "Congruent" ] , [ ESymbol Rel "\8801" ] ]+    , [ [ EText TextNormal "conint" ] , [ ESymbol Op "\8750" ] ]+    , [ [ EText TextNormal "Conint" ] , [ ESymbol Op "\8751" ] ]+    , [ [ EText TextNormal "ContourIntegral" ]+      , [ ESymbol Op "\8750" ]+      ]+    , [ [ EText TextNormal "copf" ] , [ ESymbol Alpha "\120148" ] ]+    , [ [ EText TextNormal "Copf" ] , [ ESymbol Alpha "\8450" ] ]+    , [ [ EText TextNormal "coprod" ] , [ ESymbol Op "\8720" ] ]+    , [ [ EText TextNormal "Coproduct" ] , [ ESymbol Op "\8720" ] ]+    , [ [ EText TextNormal "copy" ] , [ ESymbol Ord "\169" ] ]+    , [ [ EText TextNormal "copysr" ] , [ ESymbol Ord "\8471" ] ]+    , [ [ EText TextNormal "CounterClockwiseContourIntegral" ]+      , [ ESymbol Op "\8755" ]+      ]+    , [ [ EText TextNormal "cross" ] , [ ESymbol Ord "\10007" ] ]+    , [ [ EText TextNormal "Cross" ] , [ ESymbol Bin "\10799" ] ]+    , [ [ EText TextNormal "cscr" ] , [ ESymbol Alpha "\119992" ] ]+    , [ [ EText TextNormal "Cscr" ] , [ ESymbol Alpha "\119966" ] ]+    , [ [ EText TextNormal "csub" ] , [ ESymbol Rel "\10959" ] ]+    , [ [ EText TextNormal "csube" ] , [ ESymbol Rel "\10961" ] ]+    , [ [ EText TextNormal "csup" ] , [ ESymbol Rel "\10960" ] ]+    , [ [ EText TextNormal "csupe" ] , [ ESymbol Rel "\10962" ] ]+    , [ [ EText TextNormal "ctdot" ] , [ ESymbol Ord "\8943" ] ]+    , [ [ EText TextNormal "cudarrl" ] , [ ESymbol Rel "\10552" ] ]+    , [ [ EText TextNormal "cudarrr" ] , [ ESymbol Ord "\10549" ] ]+    , [ [ EText TextNormal "cuepr" ] , [ ESymbol Rel "\8926" ] ]+    , [ [ EText TextNormal "cuesc" ] , [ ESymbol Rel "\8927" ] ]+    , [ [ EText TextNormal "cularr" ] , [ ESymbol Accent "\8630" ] ]+    , [ [ EText TextNormal "cularrp" ] , [ ESymbol Accent "\10557" ] ]+    , [ [ EText TextNormal "cup" ] , [ ESymbol Bin "\8746" ] ]+    , [ [ EText TextNormal "Cup" ] , [ ESymbol Bin "\8915" ] ]+    , [ [ EText TextNormal "cupbrcap" ] , [ ESymbol Bin "\10824" ] ]+    , [ [ EText TextNormal "cupcap" ] , [ ESymbol Bin "\10822" ] ]+    , [ [ EText TextNormal "CupCap" ] , [ ESymbol Rel "\8781" ] ]+    , [ [ EText TextNormal "cupcup" ] , [ ESymbol Bin "\10826" ] ]+    , [ [ EText TextNormal "cupdot" ] , [ ESymbol Bin "\8845" ] ]+    , [ [ EText TextNormal "cupor" ] , [ ESymbol Bin "\10821" ] ]+    , [ [ EText TextNormal "cups" ] , [ EMathOperator "\8746\65024" ] ]+    , [ [ EText TextNormal "curarr" ] , [ ESymbol Accent "\8631" ] ]+    , [ [ EText TextNormal "curarrm" ] , [ ESymbol Accent "\10556" ] ]+    , [ [ EText TextNormal "curlyeqprec" ] , [ ESymbol Rel "\8926" ] ]+    , [ [ EText TextNormal "curlyeqsucc" ] , [ ESymbol Rel "\8927" ] ]+    , [ [ EText TextNormal "curlyvee" ] , [ ESymbol Bin "\8910" ] ]+    , [ [ EText TextNormal "curlywedge" ] , [ ESymbol Bin "\8911" ] ]+    , [ [ EText TextNormal "curren" ] , [ ESymbol Ord "\164" ] ]+    , [ [ EText TextNormal "curvearrowleft" ]+      , [ ESymbol Accent "\8630" ]+      ]+    , [ [ EText TextNormal "curvearrowright" ]+      , [ ESymbol Accent "\8631" ]+      ]+    , [ [ EText TextNormal "cuvee" ] , [ ESymbol Bin "\8910" ] ]+    , [ [ EText TextNormal "cuwed" ] , [ ESymbol Bin "\8911" ] ]+    , [ [ EText TextNormal "cwconint" ] , [ ESymbol Op "\8754" ] ]+    , [ [ EText TextNormal "cwint" ] , [ ESymbol Op "\8753" ] ]+    , [ [ EText TextNormal "cylcty" ] , [ ESymbol Ord "\9005" ] ]+    ]+]
+ test/reader/mml/chain1.test view
@@ -0,0 +1,155 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <msubsup>+    <mo>&#x222B;</mo> +    <mn>0</mn> +    <mn>1</mn> +  </msubsup> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> +  <mo>=</mo> +  <munderover>+    <mo>&#x2211;</mo> +    <mrow>+      <mi>i</mi> +      <mo>=</mo> +      <mn>0</mn> +    </mrow> +    <mi>&#x221E;</mi> +  </munderover> +  <msub>+    <mi>x</mi> +    <mi>i</mi> +  </msub> +  <mo>=</mo> +  <munderover>+    <mo>&#x220F;</mo> +    <mrow>+      <mi>i</mi> +      <mo>=</mo> +      <mn>0</mn> +    </mrow> +    <mi>&#x221E;</mi> +  </munderover> +  <msub>+    <mi>x</mi> +    <mi>i</mi> +  </msub> +  <mo>=</mo> +  <munderover>+    <mo>&#x2210;</mo> +    <mrow>+      <mi>i</mi> +      <mo>=</mo> +      <mn>0</mn> +    </mrow> +    <mi>&#x221E;</mi> +  </munderover> +  <msub>+    <mi>x</mi> +    <mi>i</mi> +  </msub> +  <mo>=</mo> +  <msubsup>+    <mo>&#x222E;</mo> +    <mn>0</mn> +    <mn>1</mn> +  </msubsup> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> +  <mo>=</mo> +  <msubsup>+    <mo>&#x222C;</mo> +    <mn>0</mn> +    <mn>1</mn> +  </msubsup> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> +  <mo>=</mo> +  <msubsup>+    <mo>&#x222D;</mo> +    <mn>0</mn> +    <mn>1</mn> +  </msubsup> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> </math>+>>> native+[ ESubsup (ESymbol Op "\8747") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+, ESymbol Rel "="+, EUnderover+    False+    (ESymbol Op "\8721")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, ESub (EIdentifier "x") (EIdentifier "i")+, ESymbol Rel "="+, EUnderover+    False+    (ESymbol Op "\8719")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, ESub (EIdentifier "x") (EIdentifier "i")+, ESymbol Rel "="+, EUnderover+    False+    (ESymbol Op "\8720")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, ESub (EIdentifier "x") (EIdentifier "i")+, ESymbol Rel "="+, ESubsup (ESymbol Op "\8750") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+, ESymbol Rel "="+, ESubsup (ESymbol Op "\8748") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+, ESymbol Rel "="+, ESubsup (ESymbol Op "\8749") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/chain2.test view
@@ -0,0 +1,157 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <msubsup>+      <mo>&#x222B;</mo> +      <mn>0</mn> +      <mn>1</mn> +    </msubsup> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +    <mo>=</mo> +    <munderover>+      <mo>&#x2211;</mo> +      <mrow>+        <mi>i</mi> +        <mo>=</mo> +        <mn>0</mn> +      </mrow> +      <mi>&#x221E;</mi> +    </munderover> +    <msub>+      <mi>x</mi> +      <mi>i</mi> +    </msub> +    <mo>=</mo> +    <munderover>+      <mo>&#x220F;</mo> +      <mrow>+        <mi>i</mi> +        <mo>=</mo> +        <mn>0</mn> +      </mrow> +      <mi>&#x221E;</mi> +    </munderover> +    <msub>+      <mi>x</mi> +      <mi>i</mi> +    </msub> +    <mo>=</mo> +    <munderover>+      <mo>&#x2210;</mo> +      <mrow>+        <mi>i</mi> +        <mo>=</mo> +        <mn>0</mn> +      </mrow> +      <mi>&#x221E;</mi> +    </munderover> +    <msub>+      <mi>x</mi> +      <mi>i</mi> +    </msub> +    <mo>=</mo> +    <msubsup>+      <mo>&#x222E;</mo> +      <mn>0</mn> +      <mn>1</mn> +    </msubsup> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +    <mo>=</mo> +    <msubsup>+      <mo>&#x222C;</mo> +      <mn>0</mn> +      <mn>1</mn> +    </msubsup> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +    <mo>=</mo> +    <msubsup>+      <mo>&#x222D;</mo> +      <mn>0</mn> +      <mn>1</mn> +    </msubsup> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +  </mstyle> </math>+>>> native+[ ESubsup (ESymbol Op "\8747") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+, ESymbol Rel "="+, EUnderover+    False+    (ESymbol Op "\8721")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, ESub (EIdentifier "x") (EIdentifier "i")+, ESymbol Rel "="+, EUnderover+    False+    (ESymbol Op "\8719")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, ESub (EIdentifier "x") (EIdentifier "i")+, ESymbol Rel "="+, EUnderover+    False+    (ESymbol Op "\8720")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, ESub (EIdentifier "x") (EIdentifier "i")+, ESymbol Rel "="+, ESubsup (ESymbol Op "\8750") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+, ESymbol Rel "="+, ESubsup (ESymbol Op "\8748") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+, ESymbol Rel "="+, ESubsup (ESymbol Op "\8749") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/class1.test view
@@ -0,0 +1,7 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" class="mathclass">+  <mi>x</mi> </math>+>>> native+[ EIdentifier "x" ]
+ test/reader/mml/class2.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mi class="identifiers">x</mi> +    <mn class="numbers">2</mn> +  </mfrac> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (ENumber "2") ]
+ test/reader/mml/clipboard1.test view
@@ -0,0 +1,18 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mi>x</mi> +    <mrow>+      <mi>x</mi>+      <mo>+</mo>+      <mn>1</mn>+    </mrow> +  </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EIdentifier "x")+    (EGrouped [ EIdentifier "x" , ESymbol Bin "+" , ENumber "1" ])+]
+ test/reader/mml/clipboard2.test view
@@ -0,0 +1,21 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <semantics>+    <mfrac>+      <mn>1</mn>+      <mi>x</mi>+    </mfrac> +    <annotation-xml encoding="MathML-Content">+      <apply>+        <divide></divide> +        <cn>1</cn> +        <ci>x</ci> +      </apply> +    </annotation-xml> +    <annotation encoding="TeX">{1 \over x}</annotation> +    <annotation encoding="image/png" href="clipboard2.png"></annotation> +  </semantics> </math>+>>> native+[ EFraction NormalFrac (ENumber "1") (EIdentifier "x") ]
+ test/reader/mml/complex1.test view
@@ -0,0 +1,1902 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE math PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mtext>Bernoulli Trials</mtext> +      </mtd> +      <mtd>+        <mrow>+          <maction actiontype="statusline">+            <mrow>+              <mi>P</mi> +              <mo stretchy="false">(</mo> +              <mi>E</mi> +              <mo stretchy="false">)</mo> +            </mrow> +            <mtext>Probability of event E: Get exactly k heads in n coin flips.</mtext> +          </maction> +          <mo>=</mo> +          <maction actiontype="statusline">+            <mrow>+              <mo>(</mo> +              <mfrac linethickness="0">+                <mi>n</mi> +                <mi>k</mi> +              </mfrac> +              <mo>)</mo> +            </mrow> +            <mtext>Number of ways to get exactly k heads in n coin flips</mtext> +          </maction> +          <msubsup>+            <maction actiontype="statusline">+              <mi>p</mi> +              <mtext>Probability of getting heads in one flip</mtext> +            </maction> +            <mrow></mrow> +            <maction actiontype="statusline">+              <mi>k</mi> +              <mtext>Number of heads</mtext> +            </maction> +          </msubsup> +          <msubsup>+            <maction actiontype="statusline">+              <mrow>+                <mo stretchy="false">(</mo> +                <mn>1</mn> +                <mo>-</mo> +                <mi>p</mi> +                <mo stretchy="false">)</mo> +              </mrow> +              <mtext>Probability of getting tails in one flip</mtext> +            </maction> +            <mrow></mrow> +            <maction actiontype="statusline">+              <mrow>+                <mi>n</mi> +                <mo>-</mo> +                <mi>k</mi> +              </mrow> +              <mtext>Number of tails</mtext> +            </maction> +          </msubsup> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cauchy-Schwarz Inequality</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mrow>+            <msubsup>+              <mrow>+                <mo>(</mo> +                <munderover>+                  <mo>&#x2211;</mo> +                  <mrow>+                    <mi>k</mi> +                    <mo>=</mo> +                    <mn>1</mn> +                  </mrow> +                  <mi>n</mi> +                </munderover> +                <msubsup>+                  <mi>a</mi> +                  <mi>k</mi> +                  <mrow></mrow> +                </msubsup> +                <msubsup>+                  <mi>b</mi> +                  <mi>k</mi> +                  <mrow></mrow> +                </msubsup> +                <mo>)</mo> +              </mrow> +              <mrow></mrow> +              <mn>2</mn> +            </msubsup> +            <mo>&#x2264;</mo> +            <mrow>+              <mo>(</mo> +              <munderover>+                <mo>&#x2211;</mo> +                <mrow>+                  <mi>k</mi> +                  <mo>=</mo> +                  <mn>1</mn> +                </mrow> +                <mi>n</mi> +              </munderover> +              <msubsup>+                <mi>a</mi> +                <mi>k</mi> +                <mn>2</mn> +              </msubsup> +              <mo>)</mo> +            </mrow> +            <mrow>+              <mo>(</mo> +              <munderover>+                <mo>&#x2211;</mo> +                <mrow>+                  <mi>k</mi> +                  <mo>=</mo> +                  <mn>1</mn> +                </mrow> +                <mi>n</mi> +              </munderover> +              <msubsup>+                <mi>b</mi> +                <mi>k</mi> +                <mn>2</mn> +              </msubsup> +              <mo>)</mo> +            </mrow> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cauchy Formula</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mrow>+            <mi>f</mi> +            <mo stretchy="false">(</mo> +            <mi>z</mi> +            <mo stretchy="false">)</mo> +            <mtext>&#x2009;</mtext> +            <mo>&#x00B7;</mo> +            <msubsup>+              <mi>Ind</mi> +              <mi>&#x03B3;</mi> +              <mrow></mrow> +            </msubsup> +            <mo stretchy="false">(</mo> +            <mi>z</mi> +            <mo stretchy="false">)</mo> +            <mo>=</mo> +            <mfrac>+              <mn>1</mn> +              <mrow>+                <mn>2</mn> +                <mi>&#x03C0;</mi> +                <mi>i</mi> +              </mrow> +            </mfrac> +            <munderover>+              <mo>&#x222E;</mo> +              <mi>&#x03B3;</mi> +              <mrow></mrow> +            </munderover> +            <mfrac>+              <mrow>+                <mi>f</mi> +                <mo stretchy="false">(</mo> +                <mstyle scriptlevel="1">+                  <mi>&#x03BE;</mi> +                </mstyle> +                <mo stretchy="false">)</mo> +              </mrow> +              <mrow>+                <mstyle scriptlevel="1">+                  <mi>&#x03BE;</mi> +                </mstyle> +                <mo>-</mo> +                <mi>z</mi> +              </mrow> +            </mfrac> +            <mtext>&#x2009;</mtext> +            <mi>d</mi> +            <mstyle scriptlevel="1">+              <mi>&#x03BE;</mi> +            </mstyle> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cross Product</mtext> +      </mtd> +      <mtd>+        <mrow>+          <msubsup>+            <mstyle fontweight="bold">+              <mi>V</mi> +            </mstyle> +            <mn>1</mn> +            <mrow></mrow> +          </msubsup> +          <mo>&#x00D7;</mo> +          <msubsup>+            <mstyle fontweight="bold">+              <mi>V</mi> +            </mstyle> +            <mn>2</mn> +            <mrow></mrow> +          </msubsup> +          <mo>=</mo> +          <mrow>+            <mo>|</mo> +            <mtable equalrows="false">+              <mtr>+                <mtd>+                  <mstyle fontweight="bold">+                    <mi>i</mi> +                  </mstyle> +                </mtd> +                <mtd>+                  <mstyle fontweight="bold">+                    <mi>j</mi> +                  </mstyle> +                </mtd> +                <mtd>+                  <mstyle fontweight="bold">+                    <mi>k</mi> +                  </mstyle> +                </mtd> +              </mtr> +              <mtr>+                <mtd>+                  <mfrac>+                    <mrow>+                      <mo>&#x2202;</mo> +                      <mi>X</mi> +                    </mrow> +                    <mrow>+                      <mo>&#x2202;</mo> +                      <mi>u</mi> +                    </mrow> +                  </mfrac> +                </mtd> +                <mtd>+                  <mfrac>+                    <mrow>+                      <mo>&#x2202;</mo> +                      <mi>Y</mi> +                    </mrow> +                    <mrow>+                      <mo>&#x2202;</mo> +                      <mi>u</mi> +                    </mrow> +                  </mfrac> +                </mtd> +                <mtd>+                  <mn>0</mn> +                </mtd> +              </mtr> +              <mtr>+                <mtd>+                  <mfrac>+                    <mrow>+                      <mo>&#x2202;</mo> +                      <mi>X</mi> +                    </mrow> +                    <mrow>+                      <mo>&#x2202;</mo> +                      <mi>v</mi> +                    </mrow> +                  </mfrac> +                </mtd> +                <mtd>+                  <mfrac>+                    <mrow>+                      <mo>&#x2202;</mo> +                      <mi>Y</mi> +                    </mrow> +                    <mrow>+                      <mo>&#x2202;</mo> +                      <mi>v</mi> +                    </mrow> +                  </mfrac> +                </mtd> +                <mtd>+                  <mn>0</mn> +                </mtd> +              </mtr> +            </mtable> +            <mo>|</mo> +          </mrow> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Vandermonde Determinant</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mrow>+            <mrow>+              <mo>|</mo> +              <mtable equalrows="false">+                <mtr>+                  <mtd>+                    <mn>1</mn> +                  </mtd> +                  <mtd>+                    <mn>1</mn> +                  </mtd> +                  <mtd>+                    <mo>&#x22EF;</mo> +                  </mtd> +                  <mtd>+                    <mn>1</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mn>1</mn> +                      <mrow></mrow> +                    </msubsup> +                  </mtd> +                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mn>2</mn> +                      <mrow></mrow> +                    </msubsup> +                  </mtd> +                  <mtd>+                    <mo>&#x22EF;</mo> +                  </mtd> +                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mi>n</mi> +                      <mrow></mrow> +                    </msubsup> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mn>1</mn> +                      <mn>2</mn> +                    </msubsup> +                  </mtd> +                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mn>2</mn> +                      <mn>2</mn> +                    </msubsup> +                  </mtd> +                  <mtd>+                    <mo>&#x22EF;</mo> +                  </mtd> +                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mi>n</mi> +                      <mn>2</mn> +                    </msubsup> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mo>&#x22EE;</mo> +                  </mtd> +                  <mtd>+                    <mo>&#x22EE;</mo> +                  </mtd> +                  <mtd>+                    <mo>&#x22F1;</mo> +                  </mtd> +                  <mtd>+                    <mo>&#x22EE;</mo> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mn>1</mn> +                      <mrow>+                        <mi>n</mi> +                        <mo>-</mo> +                        <mn>1</mn> +                      </mrow> +                    </msubsup> +                  </mtd> +                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mn>2</mn> +                      <mrow>+                        <mi>n</mi> +                        <mo>-</mo> +                        <mn>1</mn> +                      </mrow> +                    </msubsup> +                  </mtd> +                  <mtd>+                    <mo>&#x22EF;</mo> +                  </mtd> +                  <mtd>+                    <msubsup>+                      <mi>v</mi> +                      <mi>n</mi> +                      <mrow>+                        <mi>n</mi> +                        <mo>-</mo> +                        <mn>1</mn> +                      </mrow> +                    </msubsup> +                  </mtd> +                </mtr> +              </mtable> +              <mo>|</mo> +            </mrow> +            <mo>=</mo> +            <munderover>+              <mo>&#x220F;</mo> +              <mrow>+                <mn>1</mn> +                <mo>&#x2264;</mo> +                <mi>i</mi> +                <mo>&lt;</mo> +                <mi>j</mi> +                <mo>&#x2264;</mo> +                <mi>n</mi> +              </mrow> +              <mrow></mrow> +            </munderover> +            <mo stretchy="false">(</mo> +            <msubsup>+              <mi>v</mi> +              <mi>j</mi> +              <mrow></mrow> +            </msubsup> +            <mo>-</mo> +            <msubsup>+              <mi>v</mi> +              <mi>i</mi> +              <mrow></mrow> +            </msubsup> +            <mo stretchy="false">)</mo> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lorenz Equations</mtext> +      </mtd> +      <mtd>+        <mtable columnalign="right center left" equalcolumns="false">+          <mtr>+            <mtd>+              <munderover accent="true">+                <mi>x</mi> +                <mrow></mrow> +                <mo>&#x02D9;</mo> +              </munderover> +            </mtd> +            <mtd>+              <mo>=</mo> +            </mtd> +            <mtd>+              <mrow>+                <mi>&#x03C3;</mi> +                <mo stretchy="false">(</mo> +                <mi>y</mi> +                <mo>-</mo> +                <mi>x</mi> +                <mo stretchy="false">)</mo> +              </mrow> +            </mtd> +          </mtr> +          <mtr>+            <mtd>+              <munderover accent="true">+                <mi>y</mi> +                <mrow></mrow> +                <mo>&#x02D9;</mo> +              </munderover> +            </mtd> +            <mtd>+              <mo>=</mo> +            </mtd> +            <mtd>+              <mrow>+                <mi>&#x03C1;</mi> +                <mi>x</mi> +                <mo>-</mo> +                <mi>y</mi> +                <mo>-</mo> +                <mi>x</mi> +                <mi>z</mi> +              </mrow> +            </mtd> +          </mtr> +          <mtr>+            <mtd>+              <munderover accent="true">+                <mi>z</mi> +                <mrow></mrow> +                <mo>&#x02D9;</mo> +              </munderover> +            </mtd> +            <mtd>+              <mo>=</mo> +            </mtd> +            <mtd>+              <mrow>+                <mo>-</mo> +                <mi>&#x03B2;</mi> +                <mi>z</mi> +                <mo>+</mo> +                <mi>x</mi> +                <mi>y</mi> +              </mrow> +            </mtd> +          </mtr> +        </mtable> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Maxwell's Equations</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mrow>+            <mo>{</mo> +            <mtable columnalign="right center left" equalrows="false" equalcolumns="false">+              <mtr>+                <mtd>+                  <mrow>+                    <mo>&#x2207;</mo> +                    <mtext>&#x200B;</mtext> +                    <mo>&#x00D7;</mo> +                    <munderover accent="true">+                      <mstyle fontweight="bold">+                        <mi>B</mi> +                      </mstyle> +                      <mrow></mrow> +                      <mo stretchy="true">&#x21BC;</mo> +                    </munderover> +                    <mo>-</mo> +                    <mtext>&#x2009;</mtext> +                    <mfrac>+                      <mn>1</mn> +                      <mi>c</mi> +                    </mfrac> +                    <mtext>&#x2009;</mtext> +                    <mfrac>+                      <mrow>+                        <mo>&#x2202;</mo> +                        <mtext>&#x200B;</mtext> +                        <munderover accent="true">+                          <mstyle fontweight="bold">+                            <mi>E</mi> +                          </mstyle> +                          <mrow></mrow> +                          <mo stretchy="true">&#x21BC;</mo> +                        </munderover> +                      </mrow> +                      <mrow>+                        <mo>&#x2202;</mo> +                        <mtext>&#x200B;</mtext> +                        <mi>t</mi> +                      </mrow> +                    </mfrac> +                  </mrow> +                </mtd> +                <mtd>+                  <mo>=</mo> +                </mtd> +                <mtd>+                  <mrow>+                    <mfrac>+                      <mrow>+                        <mn>4</mn> +                        <mi>&#x03C0;</mi> +                      </mrow> +                      <mi>c</mi> +                    </mfrac> +                    <mtext>&#x2009;</mtext> +                    <munderover accent="true">+                      <mstyle fontweight="bold">+                        <mi>j</mi> +                      </mstyle> +                      <mrow></mrow> +                      <mo stretchy="true">&#x21BC;</mo> +                    </munderover> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd>+                  <mrow>+                    <mo>&#x2207;</mo> +                    <mtext>&#x200B;</mtext> +                    <mo>&#x00B7;</mo> +                    <munderover accent="true">+                      <mstyle fontweight="bold">+                        <mi>E</mi> +                      </mstyle> +                      <mrow></mrow> +                      <mo stretchy="true">&#x21BC;</mo> +                    </munderover> +                  </mrow> +                </mtd> +                <mtd>+                  <mo>=</mo> +                </mtd> +                <mtd>+                  <mrow>+                    <mn>4</mn> +                    <mi>&#x03C0;</mi> +                    <mi>&#x03C1;</mi> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd>+                  <mrow>+                    <mo>&#x2207;</mo> +                    <mtext>&#x200B;</mtext> +                    <mo>&#x00D7;</mo> +                    <munderover accent="true">+                      <mstyle fontweight="bold">+                        <mi>E</mi> +                      </mstyle> +                      <mrow></mrow> +                      <mo stretchy="true">&#x21BC;</mo> +                    </munderover> +                    <mtext>&#x2009;</mtext> +                    <mo>+</mo> +                    <mtext>&#x2009;</mtext> +                    <mfrac>+                      <mn>1</mn> +                      <mi>c</mi> +                    </mfrac> +                    <mtext>&#x2009;</mtext> +                    <mfrac>+                      <mrow>+                        <mo>&#x2202;</mo> +                        <mtext>&#x200B;</mtext> +                        <munderover accent="true">+                          <mstyle fontweight="bold">+                            <mi>B</mi> +                          </mstyle> +                          <mrow></mrow> +                          <mo stretchy="true">&#x21BC;</mo> +                        </munderover> +                      </mrow> +                      <mrow>+                        <mo>&#x2202;</mo> +                        <mtext>&#x200B;</mtext> +                        <mi>t</mi> +                      </mrow> +                    </mfrac> +                  </mrow> +                </mtd> +                <mtd>+                  <mo>=</mo> +                </mtd> +                <mtd>+                  <munderover accent="true">+                    <mstyle fontweight="bold">+                      <mn>0</mn> +                    </mstyle> +                    <mrow></mrow> +                    <mo stretchy="true">&#x21BC;</mo> +                  </munderover> +                </mtd> +              </mtr> +              <mtr>+                <mtd>+                  <mrow>+                    <mo>&#x2207;</mo> +                    <mtext>&#x200B;</mtext> +                    <mo>&#x00B7;</mo> +                    <munderover accent="true">+                      <mstyle fontweight="bold">+                        <mi>B</mi> +                      </mstyle> +                      <mrow></mrow> +                      <mo stretchy="true">&#x21BC;</mo> +                    </munderover> +                  </mrow> +                </mtd> +                <mtd>+                  <mo>=</mo> +                </mtd> +                <mtd>+                  <mn>0</mn> +                </mtd> +              </mtr> +            </mtable> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Einstein Field Equations</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mrow>+            <msubsup>+              <mstyle fontstyle="normal">+                <mi>R</mi> +              </mstyle> +              <mstyle scriptlevel="1">+                <mrow>+                  <mi>&#x03BC;</mi> +                  <mi>&#x03BD;</mi> +                </mrow> +              </mstyle> +              <mrow></mrow> +            </msubsup> +            <mo>-</mo> +            <mfrac>+              <mn>1</mn> +              <mn>2</mn> +            </mfrac> +            <mtext>&#x2009;</mtext> +            <msubsup>+              <mi>g</mi> +              <mstyle scriptlevel="1">+                <mrow>+                  <mi>&#x03BC;</mi> +                  <mi>&#x03BD;</mi> +                </mrow> +              </mstyle> +              <mrow></mrow> +            </msubsup> +            <mtext>&#x2009;</mtext> +            <mstyle fontstyle="normal">+              <mi>R</mi> +            </mstyle> +            <mo>=</mo> +            <mfrac>+              <mrow>+                <mn>8</mn> +                <mi>&#x03C0;</mi> +                <mstyle fontstyle="normal">+                  <mi>G</mi> +                </mstyle> +              </mrow> +              <msubsup>+                <mi>c</mi> +                <mrow></mrow> +                <mn>4</mn> +              </msubsup> +            </mfrac> +            <mtext>&#x2009;</mtext> +            <msubsup>+              <mstyle fontstyle="normal">+                <mi>T</mi> +              </mstyle> +              <mstyle scriptlevel="1">+                <mrow>+                  <mi>&#x03BC;</mi> +                  <mi>&#x03BD;</mi> +                </mrow> +              </mstyle> +              <mrow></mrow> +            </msubsup> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ramanujan Identity</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mfrac>+            <mn>1</mn> +            <mrow>+              <mo stretchy="false">(</mo> +              <msqrt>+                <mrow>+                  <mi>&#x03C6;</mi> +                  <msqrt>+                    <mn>5</mn> +                  </msqrt> +                </mrow> +              </msqrt> +              <mo>-</mo> +              <mi>&#x03C6;</mi> +              <mo stretchy="false">)</mo> +              <msubsup>+                <mi>e</mi> +                <mrow></mrow> +                <mfrac>+                  <mn>25</mn> +                  <mi>&#x03C0;</mi> +                </mfrac> +              </msubsup> +            </mrow> +          </mfrac> +          <mo>=</mo> +          <mn>1</mn> +          <mo>+</mo> +          <mstyle scriptlevel="1">+            <mfrac>+              <msubsup>+                <mi>e</mi> +                <mrow></mrow> +                <mstyle scriptlevel="2">+                  <mrow>+                    <mo>-</mo> +                    <mn>2</mn> +                    <mi>&#x03C0;</mi> +                  </mrow> +                </mstyle> +              </msubsup> +              <mrow>+                <mn>1</mn> +                <mo>+</mo> +                <mfrac>+                  <msubsup>+                    <mi>e</mi> +                    <mrow></mrow> +                    <mstyle scriptlevel="2">+                      <mrow>+                        <mo>-</mo> +                        <mn>4</mn> +                        <mi>&#x03C0;</mi> +                      </mrow> +                    </mstyle> +                  </msubsup> +                  <mrow>+                    <mn>1</mn> +                    <mo>+</mo> +                    <mfrac>+                      <msubsup>+                        <mi>e</mi> +                        <mrow></mrow> +                        <mstyle scriptlevel="2">+                          <mrow>+                            <mo>-</mo> +                            <mn>6</mn> +                            <mi>&#x03C0;</mi> +                          </mrow> +                        </mstyle> +                      </msubsup> +                      <mrow>+                        <mn>1</mn> +                        <mo>+</mo> +                        <mfrac>+                          <msubsup>+                            <mi>e</mi> +                            <mrow></mrow> +                            <mstyle scriptlevel="2">+                              <mrow>+                                <mo>-</mo> +                                <mn>8</mn> +                                <mi>&#x03C0;</mi> +                              </mrow> +                            </mstyle> +                          </msubsup> +                          <mrow>+                            <mn>1</mn> +                            <mo>+</mo> +                            <mo>&#x2026;</mo> +                          </mrow> +                        </mfrac> +                      </mrow> +                    </mfrac> +                  </mrow> +                </mfrac> +              </mrow> +            </mfrac> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Another Ramanujan identity</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mrow>+            <munderover>+              <mo>&#x2211;</mo> +              <mrow>+                <mi>k</mi> +                <mo>=</mo> +                <mn>1</mn> +              </mrow> +              <mi>&#x221E;</mi> +            </munderover> +            <mfrac>+              <mn>1</mn> +              <msubsup>+                <mn>2</mn> +                <mrow></mrow> +                <mrow>+                  <mo stretchy="false">&#x230A;</mo> +                  <mi>k</mi> +                  <mo>&#x00B7;</mo> +                  <mtext>&#x200B;</mtext> +                  <mi>&#x03C6;</mi> +                  <mo stretchy="false">&#x230B;</mo> +                </mrow> +              </msubsup> +            </mfrac> +            <mo>=</mo> +            <mstyle scriptlevel="1">+              <mfrac>+                <mn>1</mn> +                <mrow>+                  <msubsup>+                    <mn>2</mn> +                    <mrow></mrow> +                    <mstyle scriptlevel="2">+                      <mn>0</mn> +                    </mstyle> +                  </msubsup> +                  <mo>+</mo> +                  <mfrac>+                    <mn>1</mn> +                    <mrow>+                      <msubsup>+                        <mn>2</mn> +                        <mrow></mrow> +                        <mstyle scriptlevel="2">+                          <mn>1</mn> +                        </mstyle> +                      </msubsup> +                      <mo>+</mo> +                      <maction actiontype="toggle">+                        <mo>&#x22EF;</mo> +                        <mfrac>+                          <mn>1</mn> +                          <mrow>+                            <msubsup>+                              <mn>2</mn> +                              <mrow></mrow> +                              <mstyle scriptlevel="2">+                                <mn>1</mn> +                              </mstyle> +                            </msubsup> +                            <mo>+</mo> +                            <mfrac>+                              <mn>1</mn> +                              <mrow>+                                <msubsup>+                                  <mn>2</mn> +                                  <mrow></mrow> +                                  <mstyle scriptlevel="2">+                                    <mn>2</mn> +                                  </mstyle> +                                </msubsup> +                                <mo>+</mo> +                                <maction actiontype="toggle">+                                  <mo>&#x22EF;</mo> +                                  <mfrac>+                                    <mn>1</mn> +                                    <mrow>+                                      <msubsup>+                                        <mn>2</mn> +                                        <mrow></mrow> +                                        <mstyle scriptlevel="2">+                                          <mn>3</mn> +                                        </mstyle> +                                      </msubsup> +                                      <mo>+</mo> +                                      <mfrac>+                                        <mn>1</mn> +                                        <mrow>+                                          <msubsup>+                                            <mn>2</mn> +                                            <mrow></mrow> +                                            <mstyle scriptlevel="2">+                                              <mn>5</mn> +                                            </mstyle> +                                          </msubsup> +                                          <mo>+</mo> +                                          <mo>&#x2026;</mo> +                                        </mrow> +                                      </mfrac> +                                    </mrow> +                                  </mfrac> +                                </maction> +                              </mrow> +                            </mfrac> +                          </mrow> +                        </mfrac> +                      </maction> +                    </mrow> +                  </mfrac> +                </mrow> +              </mfrac> +            </mstyle> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Rogers-Ramanujan Identity</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mrow>+            <mn>1</mn> +            <mo>+</mo> +            <maction xmlns:dsi="http://www.dessci.com/mathml" actiontype="highlight" dsi:background="#0000ff">+              <maction actiontype="toggle">+                <mrow>+                  <munderover>+                    <mo>&#x2211;</mo> +                    <mrow>+                      <mi>k</mi> +                      <mo>=</mo> +                      <mn>1</mn> +                    </mrow> +                    <mi>&#x221E;</mi> +                  </munderover> +                  <mfrac>+                    <msubsup>+                      <mi>q</mi> +                      <mrow></mrow> +                      <mrow>+                        <msubsup>+                          <mi>k</mi> +                          <mrow></mrow> +                          <mn>2</mn> +                        </msubsup> +                        <mo>+</mo> +                        <mi>k</mi> +                      </mrow> +                    </msubsup> +                    <mrow>+                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <mi>q</mi> +                      <mo stretchy="false">)</mo> +                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mn>2</mn> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                      <mo>&#x22EF;</mo> +                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mi>k</mi> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                    </mrow> +                  </mfrac> +                </mrow> +                <mrow>+                  <mfrac>+                    <msubsup>+                      <mi>q</mi> +                      <mrow></mrow> +                      <mn>2</mn> +                    </msubsup> +                    <mrow>+                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <mi>q</mi> +                      <mo stretchy="false">)</mo> +                    </mrow> +                  </mfrac> +                  <mo>+</mo> +                  <mfrac>+                    <msubsup>+                      <mi>q</mi> +                      <mrow></mrow> +                      <mn>6</mn> +                    </msubsup> +                    <mrow>+                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <mi>q</mi> +                      <mo stretchy="false">)</mo> +                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mn>2</mn> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                    </mrow> +                  </mfrac> +                  <mo>+</mo> +                  <mo>&#x22EF;</mo> +                </mrow> +              </maction> +            </maction> +            <mo>=</mo> +            <maction xmlns:dsi="http://www.dessci.com/mathml" actiontype="highlight" dsi:background="#0000ff">+              <maction actiontype="toggle">+                <mrow>+                  <munderover>+                    <mo>&#x220F;</mo> +                    <mrow>+                      <mi>j</mi> +                      <mo>=</mo> +                      <mn>0</mn> +                    </mrow> +                    <mi>&#x221E;</mi> +                  </munderover> +                  <mfrac>+                    <mn>1</mn> +                    <mrow>+                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mrow>+                          <mn>5</mn> +                          <mi>j</mi> +                          <mo>+</mo> +                          <mn>2</mn> +                        </mrow> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mrow>+                          <mn>5</mn> +                          <mi>j</mi> +                          <mo>+</mo> +                          <mn>3</mn> +                        </mrow> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                    </mrow> +                  </mfrac> +                </mrow> +                <mrow>+                  <mfrac>+                    <mn>1</mn> +                    <mrow>+                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mn>2</mn> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mn>3</mn> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                    </mrow> +                  </mfrac> +                  <mo>&#x00D7;</mo> +                  <mfrac>+                    <mn>1</mn> +                    <mrow>+                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mn>7</mn> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                      <mo stretchy="false">(</mo> +                      <mn>1</mn> +                      <mo>-</mo> +                      <msubsup>+                        <mi>q</mi> +                        <mrow></mrow> +                        <mn>8</mn> +                      </msubsup> +                      <mo stretchy="false">)</mo> +                    </mrow> +                  </mfrac> +                  <mo>&#x00D7;</mo> +                  <mo>&#x22EF;</mo> +                </mrow> +              </maction> +            </maction> +            <mo>,</mo> +            <mtext>&#x205F;&#x0200A;</mtext> +            <mtext>&#x205F;&#x0200A;</mtext> +            <mstyle fontstyle="normal">+              <mrow>+                <mi>f</mi> +                <mi>o</mi> +                <mi>r</mi> +              </mrow> +            </mstyle> +            <mtext>&#x205F;</mtext> +            <mo stretchy="false">|</mo> +            <mi>q</mi> +            <mo stretchy="false">|</mo> +            <mo>&lt;</mo> +            <mn>1</mn> +            <mi>.</mi> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Commutative Diagram</mtext> +      </mtd> +      <mtd>+        <mtable equalcolumns="false" equalrows="false">+          <mtr>+            <mtd>+              <mi>H</mi> +            </mtd> +            <mtd>+              <mo>&#x2190;</mo> +            </mtd> +            <mtd>+              <mi>K</mi> +            </mtd> +          </mtr> +          <mtr>+            <mtd>+              <mo>&#x2193;</mo> +            </mtd> +            <mtd>+              <mspace height="100px" width="150px"></mspace> +            </mtd> +            <mtd>+              <mo>&#x2191;</mo> +            </mtd> +          </mtr> +          <mtr>+            <mtd>+              <mi>H</mi> +            </mtd> +            <mtd>+              <mo>&#x2192;</mo> +            </mtd> +            <mtd>+              <mi>K</mi> +            </mtd> +          </mtr> +        </mtable> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "Bernoulli Trials" ]+      , [ EGrouped+            [ EGrouped+                [ EIdentifier "P"+                , ESymbol Open "("+                , EIdentifier "E"+                , ESymbol Close ")"+                ]+            , ESymbol Rel "="+            , EDelimited+                "("+                ")"+                [ Right (EFraction NormalFrac (EIdentifier "n") (EIdentifier "k"))+                ]+            , ESubsup (EIdentifier "p") (EGrouped []) (EIdentifier "k")+            , ESubsup+                (EGrouped+                   [ ESymbol Open "("+                   , ENumber "1"+                   , ESymbol Bin "-"+                   , EIdentifier "p"+                   , ESymbol Close ")"+                   ])+                (EGrouped [])+                (EGrouped [ EIdentifier "n" , ESymbol Bin "-" , EIdentifier "k" ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Cauchy-Schwarz Inequality" ]+      , [ EGrouped+            [ ESubsup+                (EDelimited+                   "("+                   ")"+                   [ Right+                       (EUnderover+                          False+                          (ESymbol Op "\8721")+                          (EGrouped [ EIdentifier "k" , ESymbol Rel "=" , ENumber "1" ])+                          (EIdentifier "n"))+                   , Right (ESubsup (EIdentifier "a") (EIdentifier "k") (EGrouped []))+                   , Right (ESubsup (EIdentifier "b") (EIdentifier "k") (EGrouped []))+                   ])+                (EGrouped [])+                (ENumber "2")+            , ESymbol Rel "\8804"+            , EDelimited+                "("+                ")"+                [ Right+                    (EUnderover+                       False+                       (ESymbol Op "\8721")+                       (EGrouped [ EIdentifier "k" , ESymbol Rel "=" , ENumber "1" ])+                       (EIdentifier "n"))+                , Right (ESubsup (EIdentifier "a") (EIdentifier "k") (ENumber "2"))+                ]+            , EDelimited+                "("+                ")"+                [ Right+                    (EUnderover+                       False+                       (ESymbol Op "\8721")+                       (EGrouped [ EIdentifier "k" , ESymbol Rel "=" , ENumber "1" ])+                       (EIdentifier "n"))+                , Right (ESubsup (EIdentifier "b") (EIdentifier "k") (ENumber "2"))+                ]+            ]+        ]+      ]+    , [ [ EText TextNormal "Cauchy Formula" ]+      , [ EGrouped+            [ EIdentifier "f"+            , ESymbol Open "("+            , EIdentifier "z"+            , ESymbol Close ")"+            , ESpace (1 % 6)+            , ESymbol Bin "\183"+            , ESubsup (EIdentifier "Ind") (EIdentifier "\947") (EGrouped [])+            , ESymbol Open "("+            , EIdentifier "z"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (ENumber "1")+                (EGrouped [ ENumber "2" , EIdentifier "\960" , EIdentifier "i" ])+            , EUnderover+                False (ESymbol Op "\8750") (EIdentifier "\947") (EGrouped [])+            , EFraction+                NormalFrac+                (EGrouped+                   [ EIdentifier "f"+                   , ESymbol Open "("+                   , EIdentifier "\958"+                   , ESymbol Close ")"+                   ])+                (EGrouped+                   [ EIdentifier "\958" , ESymbol Bin "-" , EIdentifier "z" ])+            , ESpace (1 % 6)+            , EIdentifier "d"+            , EIdentifier "\958"+            ]+        ]+      ]+    , [ [ EText TextNormal "Cross Product" ]+      , [ EGrouped+            [ ESubsup (EIdentifier "V") (ENumber "1") (EGrouped [])+            , ESymbol Bin "\215"+            , ESubsup (EIdentifier "V") (ENumber "2") (EGrouped [])+            , ESymbol Rel "="+            , EDelimited+                "|"+                "|"+                [ Right+                    (EArray+                       [ AlignCenter , AlignCenter , AlignCenter ]+                       [ [ [ EIdentifier "i" ]+                         , [ EIdentifier "j" ]+                         , [ EIdentifier "k" ]+                         ]+                       , [ [ EFraction+                               NormalFrac+                               (EGrouped [ ESymbol Ord "\8706" , EIdentifier "X" ])+                               (EGrouped [ ESymbol Ord "\8706" , EIdentifier "u" ])+                           ]+                         , [ EFraction+                               NormalFrac+                               (EGrouped [ ESymbol Ord "\8706" , EIdentifier "Y" ])+                               (EGrouped [ ESymbol Ord "\8706" , EIdentifier "u" ])+                           ]+                         , [ ENumber "0" ]+                         ]+                       , [ [ EFraction+                               NormalFrac+                               (EGrouped [ ESymbol Ord "\8706" , EIdentifier "X" ])+                               (EGrouped [ ESymbol Ord "\8706" , EIdentifier "v" ])+                           ]+                         , [ EFraction+                               NormalFrac+                               (EGrouped [ ESymbol Ord "\8706" , EIdentifier "Y" ])+                               (EGrouped [ ESymbol Ord "\8706" , EIdentifier "v" ])+                           ]+                         , [ ENumber "0" ]+                         ]+                       ])+                ]+            ]+        ]+      ]+    , [ [ EText TextNormal "Vandermonde Determinant" ]+      , [ EGrouped+            [ EDelimited+                "|"+                "|"+                [ Right+                    (EArray+                       [ AlignCenter , AlignCenter , AlignCenter , AlignCenter ]+                       [ [ [ ENumber "1" ]+                         , [ ENumber "1" ]+                         , [ ESymbol Ord "\8943" ]+                         , [ ENumber "1" ]+                         ]+                       , [ [ ESubsup (EIdentifier "v") (ENumber "1") (EGrouped []) ]+                         , [ ESubsup (EIdentifier "v") (ENumber "2") (EGrouped []) ]+                         , [ ESymbol Ord "\8943" ]+                         , [ ESubsup (EIdentifier "v") (EIdentifier "n") (EGrouped []) ]+                         ]+                       , [ [ ESubsup (EIdentifier "v") (ENumber "1") (ENumber "2") ]+                         , [ ESubsup (EIdentifier "v") (ENumber "2") (ENumber "2") ]+                         , [ ESymbol Ord "\8943" ]+                         , [ ESubsup (EIdentifier "v") (EIdentifier "n") (ENumber "2") ]+                         ]+                       , [ [ ESymbol Rel "\8942" ]+                         , [ ESymbol Rel "\8942" ]+                         , [ ESymbol Rel "\8945" ]+                         , [ ESymbol Rel "\8942" ]+                         ]+                       , [ [ ESubsup+                               (EIdentifier "v")+                               (ENumber "1")+                               (EGrouped [ EIdentifier "n" , ESymbol Bin "-" , ENumber "1" ])+                           ]+                         , [ ESubsup+                               (EIdentifier "v")+                               (ENumber "2")+                               (EGrouped [ EIdentifier "n" , ESymbol Bin "-" , ENumber "1" ])+                           ]+                         , [ ESymbol Ord "\8943" ]+                         , [ ESubsup+                               (EIdentifier "v")+                               (EIdentifier "n")+                               (EGrouped [ EIdentifier "n" , ESymbol Bin "-" , ENumber "1" ])+                           ]+                         ]+                       ])+                ]+            , ESymbol Rel "="+            , EUnderover+                False+                (ESymbol Op "\8719")+                (EGrouped+                   [ ENumber "1"+                   , ESymbol Rel "\8804"+                   , EIdentifier "i"+                   , ESymbol Rel "<"+                   , EIdentifier "j"+                   , ESymbol Rel "\8804"+                   , EIdentifier "n"+                   ])+                (EGrouped [])+            , ESymbol Open "("+            , ESubsup (EIdentifier "v") (EIdentifier "j") (EGrouped [])+            , ESymbol Bin "-"+            , ESubsup (EIdentifier "v") (EIdentifier "i") (EGrouped [])+            , ESymbol Close ")"+            ]+        ]+      ]+    , [ [ EText TextNormal "Lorenz Equations" ]+      , [ EArray+            [ AlignCenter , AlignCenter , AlignCenter ]+            [ [ [ EUnderover+                    False (EIdentifier "x") (EGrouped []) (ESymbol Accent "\729")+                ]+              , [ ESymbol Rel "=" ]+              , [ EGrouped+                    [ EIdentifier "\963"+                    , ESymbol Open "("+                    , EIdentifier "y"+                    , ESymbol Bin "-"+                    , EIdentifier "x"+                    , ESymbol Close ")"+                    ]+                ]+              ]+            , [ [ EUnderover+                    False (EIdentifier "y") (EGrouped []) (ESymbol Accent "\729")+                ]+              , [ ESymbol Rel "=" ]+              , [ EGrouped+                    [ EIdentifier "\961"+                    , EIdentifier "x"+                    , ESymbol Bin "-"+                    , EIdentifier "y"+                    , ESymbol Bin "-"+                    , EIdentifier "x"+                    , EIdentifier "z"+                    ]+                ]+              ]+            , [ [ EUnderover+                    False (EIdentifier "z") (EGrouped []) (ESymbol Accent "\729")+                ]+              , [ ESymbol Rel "=" ]+              , [ EGrouped+                    [ ESymbol Bin "-"+                    , EIdentifier "\946"+                    , EIdentifier "z"+                    , ESymbol Bin "+"+                    , EIdentifier "x"+                    , EIdentifier "y"+                    ]+                ]+              ]+            ]+        ]+      ]+    , [ [ EText TextNormal "Maxwell's Equations" ]+      , [ EDelimited+            "{"+            ""+            [ Right+                (EArray+                   [ AlignCenter , AlignCenter , AlignCenter ]+                   [ [ [ EGrouped+                           [ ESymbol Ord "\8711"+                           , ESpace (0 % 1)+                           , ESymbol Bin "\215"+                           , EUnderover+                               False (EIdentifier "B") (EGrouped []) (ESymbol Accent "\8636")+                           , ESymbol Bin "-"+                           , ESpace (1 % 6)+                           , EFraction NormalFrac (ENumber "1") (EIdentifier "c")+                           , ESpace (1 % 6)+                           , EFraction+                               NormalFrac+                               (EGrouped+                                  [ ESymbol Ord "\8706"+                                  , ESpace (0 % 1)+                                  , EUnderover+                                      False (EIdentifier "E") (EGrouped []) (ESymbol Accent "\8636")+                                  ])+                               (EGrouped+                                  [ ESymbol Ord "\8706" , ESpace (0 % 1) , EIdentifier "t" ])+                           ]+                       ]+                     , [ ESymbol Rel "=" ]+                     , [ EGrouped+                           [ EFraction+                               NormalFrac+                               (EGrouped [ ENumber "4" , EIdentifier "\960" ])+                               (EIdentifier "c")+                           , ESpace (1 % 6)+                           , EUnderover+                               False (EIdentifier "j") (EGrouped []) (ESymbol Accent "\8636")+                           ]+                       ]+                     ]+                   , [ [ EGrouped+                           [ ESymbol Ord "\8711"+                           , ESpace (0 % 1)+                           , ESymbol Bin "\183"+                           , EUnderover+                               False (EIdentifier "E") (EGrouped []) (ESymbol Accent "\8636")+                           ]+                       ]+                     , [ ESymbol Rel "=" ]+                     , [ EGrouped+                           [ ENumber "4" , EIdentifier "\960" , EIdentifier "\961" ]+                       ]+                     ]+                   , [ [ EGrouped+                           [ ESymbol Ord "\8711"+                           , ESpace (0 % 1)+                           , ESymbol Bin "\215"+                           , EUnderover+                               False (EIdentifier "E") (EGrouped []) (ESymbol Accent "\8636")+                           , ESpace (1 % 6)+                           , ESymbol Bin "+"+                           , ESpace (1 % 6)+                           , EFraction NormalFrac (ENumber "1") (EIdentifier "c")+                           , ESpace (1 % 6)+                           , EFraction+                               NormalFrac+                               (EGrouped+                                  [ ESymbol Ord "\8706"+                                  , ESpace (0 % 1)+                                  , EUnderover+                                      False (EIdentifier "B") (EGrouped []) (ESymbol Accent "\8636")+                                  ])+                               (EGrouped+                                  [ ESymbol Ord "\8706" , ESpace (0 % 1) , EIdentifier "t" ])+                           ]+                       ]+                     , [ ESymbol Rel "=" ]+                     , [ EUnderover+                           False (ENumber "0") (EGrouped []) (ESymbol Accent "\8636")+                       ]+                     ]+                   , [ [ EGrouped+                           [ ESymbol Ord "\8711"+                           , ESpace (0 % 1)+                           , ESymbol Bin "\183"+                           , EUnderover+                               False (EIdentifier "B") (EGrouped []) (ESymbol Accent "\8636")+                           ]+                       ]+                     , [ ESymbol Rel "=" ]+                     , [ ENumber "0" ]+                     ]+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Einstein Field Equations" ]+      , [ EGrouped+            [ ESubsup+                (EIdentifier "R")+                (EGrouped [ EIdentifier "\956" , EIdentifier "\957" ])+                (EGrouped [])+            , ESymbol Bin "-"+            , EFraction NormalFrac (ENumber "1") (ENumber "2")+            , ESpace (1 % 6)+            , ESubsup+                (EIdentifier "g")+                (EGrouped [ EIdentifier "\956" , EIdentifier "\957" ])+                (EGrouped [])+            , ESpace (1 % 6)+            , EIdentifier "R"+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped [ ENumber "8" , EIdentifier "\960" , EIdentifier "G" ])+                (ESubsup (EIdentifier "c") (EGrouped []) (ENumber "4"))+            , ESpace (1 % 6)+            , ESubsup+                (EIdentifier "T")+                (EGrouped [ EIdentifier "\956" , EIdentifier "\957" ])+                (EGrouped [])+            ]+        ]+      ]+    , [ [ EText TextNormal "Ramanujan Identity" ]+      , [ EGrouped+            [ EFraction+                NormalFrac+                (ENumber "1")+                (EGrouped+                   [ ESymbol Open "("+                   , ESqrt (EGrouped [ EIdentifier "\966" , ESqrt (ENumber "5") ])+                   , ESymbol Bin "-"+                   , EIdentifier "\966"+                   , ESymbol Close ")"+                   , ESubsup+                       (EIdentifier "e")+                       (EGrouped [])+                       (EFraction NormalFrac (ENumber "25") (EIdentifier "\960"))+                   ])+            , ESymbol Rel "="+            , ENumber "1"+            , ESymbol Bin "+"+            , EFraction+                NormalFrac+                (ESubsup+                   (EIdentifier "e")+                   (EGrouped [])+                   (EGrouped [ ESymbol Bin "-" , ENumber "2" , EIdentifier "\960" ]))+                (EGrouped+                   [ ENumber "1"+                   , ESymbol Bin "+"+                   , EFraction+                       NormalFrac+                       (ESubsup+                          (EIdentifier "e")+                          (EGrouped [])+                          (EGrouped [ ESymbol Bin "-" , ENumber "4" , EIdentifier "\960" ]))+                       (EGrouped+                          [ ENumber "1"+                          , ESymbol Bin "+"+                          , EFraction+                              NormalFrac+                              (ESubsup+                                 (EIdentifier "e")+                                 (EGrouped [])+                                 (EGrouped [ ESymbol Bin "-" , ENumber "6" , EIdentifier "\960" ]))+                              (EGrouped+                                 [ ENumber "1"+                                 , ESymbol Bin "+"+                                 , EFraction+                                     NormalFrac+                                     (ESubsup+                                        (EIdentifier "e")+                                        (EGrouped [])+                                        (EGrouped+                                           [ ESymbol Bin "-" , ENumber "8" , EIdentifier "\960" ]))+                                     (EGrouped+                                        [ ENumber "1" , ESymbol Bin "+" , ESymbol Ord "\8230" ])+                                 ])+                          ])+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Another Ramanujan identity" ]+      , [ EGrouped+            [ EUnderover+                False+                (ESymbol Op "\8721")+                (EGrouped [ EIdentifier "k" , ESymbol Rel "=" , ENumber "1" ])+                (EIdentifier "\8734")+            , EFraction+                NormalFrac+                (ENumber "1")+                (ESubsup+                   (ENumber "2")+                   (EGrouped [])+                   (EGrouped+                      [ ESymbol Open "\8970"+                      , EIdentifier "k"+                      , ESymbol Bin "\183"+                      , ESpace (0 % 1)+                      , EIdentifier "\966"+                      , ESymbol Close "\8971"+                      ]))+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (ENumber "1")+                (EGrouped+                   [ ESubsup (ENumber "2") (EGrouped []) (ENumber "0")+                   , ESymbol Bin "+"+                   , EFraction+                       NormalFrac+                       (ENumber "1")+                       (EGrouped+                          [ ESubsup (ENumber "2") (EGrouped []) (ENumber "1")+                          , ESymbol Bin "+"+                          , ESymbol Ord "\8943"+                          ])+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Rogers-Ramanujan Identity" ]+      , [ EGrouped+            [ ENumber "1"+            , ESymbol Bin "+"+            , EGrouped+                [ EUnderover+                    False+                    (ESymbol Op "\8721")+                    (EGrouped [ EIdentifier "k" , ESymbol Rel "=" , ENumber "1" ])+                    (EIdentifier "\8734")+                , EFraction+                    NormalFrac+                    (ESubsup+                       (EIdentifier "q")+                       (EGrouped [])+                       (EGrouped+                          [ ESubsup (EIdentifier "k") (EGrouped []) (ENumber "2")+                          , ESymbol Bin "+"+                          , EIdentifier "k"+                          ]))+                    (EGrouped+                       [ ESymbol Open "("+                       , ENumber "1"+                       , ESymbol Bin "-"+                       , EIdentifier "q"+                       , ESymbol Close ")"+                       , ESymbol Open "("+                       , ENumber "1"+                       , ESymbol Bin "-"+                       , ESubsup (EIdentifier "q") (EGrouped []) (ENumber "2")+                       , ESymbol Close ")"+                       , ESymbol Ord "\8943"+                       , ESymbol Open "("+                       , ENumber "1"+                       , ESymbol Bin "-"+                       , ESubsup (EIdentifier "q") (EGrouped []) (EIdentifier "k")+                       , ESymbol Close ")"+                       ])+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EUnderover+                    False+                    (ESymbol Op "\8719")+                    (EGrouped [ EIdentifier "j" , ESymbol Rel "=" , ENumber "0" ])+                    (EIdentifier "\8734")+                , EFraction+                    NormalFrac+                    (ENumber "1")+                    (EGrouped+                       [ ESymbol Open "("+                       , ENumber "1"+                       , ESymbol Bin "-"+                       , ESubsup+                           (EIdentifier "q")+                           (EGrouped [])+                           (EGrouped+                              [ ENumber "5" , EIdentifier "j" , ESymbol Bin "+" , ENumber "2" ])+                       , ESymbol Close ")"+                       , ESymbol Open "("+                       , ENumber "1"+                       , ESymbol Bin "-"+                       , ESubsup+                           (EIdentifier "q")+                           (EGrouped [])+                           (EGrouped+                              [ ENumber "5" , EIdentifier "j" , ESymbol Bin "+" , ENumber "3" ])+                       , ESymbol Close ")"+                       ])+                ]+            , ESymbol Pun ","+            , EText TextNormal "\8287\8202"+            , EText TextNormal "\8287\8202"+            , EGrouped [ EIdentifier "f" , EIdentifier "o" , EIdentifier "r" ]+            , ESpace (2 % 9)+            , ESymbol Op "|"+            , EIdentifier "q"+            , ESymbol Op "|"+            , ESymbol Rel "<"+            , ENumber "1"+            , EIdentifier "."+            ]+        ]+      ]+    , [ [ EText TextNormal "Commutative Diagram" ]+      , [ EArray+            [ AlignCenter , AlignCenter , AlignCenter ]+            [ [ [ EIdentifier "H" ]+              , [ ESymbol Accent "\8592" ]+              , [ EIdentifier "K" ]+              ]+            , [ [ ESymbol Rel "\8595" ]+              , [ ESpace (0 % 1) ]+              , [ ESymbol Rel "\8593" ]+              ]+            , [ [ EIdentifier "H" ]+              , [ ESymbol Accent "\8594" ]+              , [ EIdentifier "K" ]+              ]+            ]+        ]+      ]+    ]+]
+ test/reader/mml/complex2.test view
@@ -0,0 +1,1069 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mtext>Quadratic Equation</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>x</mi> +          <mo>=</mo> +          <mfrac>+            <mrow>+              <mo>-</mo> +              <mi>b</mi> +              <mo>&#x00B1;</mo> +              <msqrt>+                <mrow>+                  <msubsup>+                    <mi>b</mi> +                    <mrow></mrow> +                    <mn>2</mn> +                  </msubsup> +                  <mo>-</mo> +                  <mn>4</mn> +                  <mi>a</mi> +                  <mi>c</mi> +                </mrow> +              </msqrt> +            </mrow> +            <mrow>+              <mn>2</mn> +              <mi>a</mi> +            </mrow> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DisplayQuadratic Equation</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mi>x</mi> +          <mo>=</mo> +          <mfrac>+            <mrow>+              <mo>-</mo> +              <mi>b</mi> +              <mo>&#x00B1;</mo> +              <msqrt>+                <mrow>+                  <msubsup>+                    <mi>b</mi> +                    <mrow></mrow> +                    <mn>2</mn> +                  </msubsup> +                  <mo>-</mo> +                  <mn>4</mn> +                  <mi>a</mi> +                  <mi>c</mi> +                </mrow> +              </msqrt> +            </mrow> +            <mrow>+              <mn>2</mn> +              <mi>a</mi> +            </mrow> +          </mfrac> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Rational Function</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>f</mi> +          <mo stretchy="false">(</mo> +          <mi>x</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <mfrac>+            <mrow>+              <mn>1</mn> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>2</mn> +              </msubsup> +            </mrow> +            <mrow>+              <mn>1</mn> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>3</mn> +              </msubsup> +            </mrow> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Rational Function</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>f</mi> +          <mo stretchy="false">(</mo> +          <mi>x</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <mfrac>+            <mrow>+              <mo stretchy="false">(</mo> +              <mn>1</mn> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>2</mn> +              </msubsup> +              <mo stretchy="false">)</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>3</mn> +              </msubsup> +            </mrow> +            <mrow>+              <mn>1</mn> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>3</mn> +              </msubsup> +            </mrow> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Rational Function</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>f</mi> +          <mo stretchy="false">(</mo> +          <mi>x</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <mfrac>+            <mrow>+              <mo stretchy="false">(</mo> +              <mn>1</mn> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>2</mn> +              </msubsup> +              <mo stretchy="false">)</mo> +              <mo stretchy="false">(</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>3</mn> +              </msubsup> +              <mo>-</mo> +              <mn>5</mn> +              <mi>x</mi> +              <mo stretchy="false">)</mo> +            </mrow> +            <mrow>+              <mn>1</mn> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>3</mn> +              </msubsup> +            </mrow> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Parametrize Rational Function</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>f</mi> +          <mo stretchy="false">(</mo> +          <mi>x</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <mfrac>+            <mrow>+              <mo stretchy="false">(</mo> +              <msubsup>+                <mi>a</mi> +                <mi>i</mi> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>2</mn> +              </msubsup> +              <msubsup>+                <mo stretchy="false">)</mo> +                <mrow></mrow> +                <mn>5</mn> +              </msubsup> +            </mrow> +            <mrow>+              <mn>1</mn> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>3</mn> +              </msubsup> +            </mrow> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Stacked exponents</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>g</mi> +          <mo stretchy="false">(</mo> +          <mi>z</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <msubsup>+            <mi>e</mi> +            <mrow></mrow> +            <mrow>+              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mrow></mrow> +                <mn>2</mn> +              </msubsup> +            </mrow> +          </msubsup> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Stacked exponents</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>g</mi> +          <mo stretchy="false">(</mo> +          <mi>z</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <msubsup>+            <mi>e</mi> +            <mrow></mrow> +            <mrow>+              <mo>-</mo> +              <mo stretchy="false">(</mo> +              <mi>z</mi> +              <mo>-</mo> +              <mi>a</mi> +              <msubsup>+                <mo stretchy="false">)</mo> +                <mrow></mrow> +                <mn>2</mn> +              </msubsup> +            </mrow> +          </msubsup> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Stacked exponents</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>g</mi> +          <mo stretchy="false">(</mo> +          <mi>z</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <msubsup>+            <mi>e</mi> +            <mrow></mrow> +            <mrow>+              <mo>-</mo> +              <munderover>+                <mo>&#x2211;</mo> +                <mrow>+                  <mi>i</mi> +                  <mo>=</mo> +                  <mn>0</mn> +                </mrow> +                <mi>&#x221E;</mi> +              </munderover> +              <msubsup>+                <mi>z</mi> +                <mi>i</mi> +                <mn>2</mn> +              </msubsup> +            </mrow> +          </msubsup> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Stacked exponents</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>g</mi> +          <mo stretchy="false">(</mo> +          <mi>y</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <msubsup>+            <mi>e</mi> +            <mrow></mrow> +            <mrow>+              <mo>-</mo> +              <munderover>+                <mo>&#x2211;</mo> +                <mrow>+                  <mi>i</mi> +                  <mo>=</mo> +                  <mn>0</mn> +                </mrow> +                <mi>&#x221E;</mi> +              </munderover> +              <msubsup>+                <mi>y</mi> +                <mi>i</mi> +                <mn>2</mn> +              </msubsup> +            </mrow> +          </msubsup> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Stacked exponents</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mi>g</mi> +          <mo stretchy="false">(</mo> +          <mi>z</mi> +          <mo stretchy="false">)</mo> +          <mo>=</mo> +          <msubsup>+            <mi>e</mi> +            <mrow></mrow> +            <mrow>+              <mo>-</mo> +              <munderover>+                <mo>&#x2211;</mo> +                <mrow>+                  <mi>i</mi> +                  <mo>=</mo> +                  <mn>0</mn> +                </mrow> +                <mi>&#x221E;</mi> +              </munderover> +              <msubsup>+                <mi>z</mi> +                <mrow></mrow> +                <mfrac>+                  <mn>2</mn> +                  <mrow>+                    <mi>a</mi> +                    <mo>-</mo> +                    <mi>i</mi> +                  </mrow> +                </mfrac> +              </msubsup> +            </mrow> +          </msubsup> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cross Product</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mfrac>+            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>1</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>2</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>3</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>4</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +          </mfrac> +          <mfrac>+            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>1</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>4</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>2</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>3</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cross Product</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo stretchy="false">(</mo> +          <mfrac>+            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>1</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>2</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>3</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>4</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +          </mfrac> +          <mo stretchy="false">)</mo> +          <mo stretchy="false">(</mo> +          <mfrac>+            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>1</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>4</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>2</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>3</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +          </mfrac> +          <mo stretchy="false">)</mo> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cross Product</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo>(</mo> +          <mfrac>+            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>1</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>2</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>3</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>4</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +          </mfrac> +          <mo>)</mo> +          <mo>(</mo> +          <mfrac>+            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>1</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>4</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +            <mrow>+              <msubsup>+                <mi>x</mi> +                <mn>2</mn> +                <mrow></mrow> +              </msubsup> +              <mo>-</mo> +              <msubsup>+                <mi>x</mi> +                <mn>3</mn> +                <mrow></mrow> +              </msubsup> +            </mrow> +          </mfrac> +          <mo>)</mo> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Cross Product</mtext> +      </mtd> +      <mtd>+        <mfrac>+          <mrow>+            <mo stretchy="false">(</mo> +            <msubsup>+              <mi>x</mi> +              <mn>1</mn> +              <mrow></mrow> +            </msubsup> +            <mo>-</mo> +            <msubsup>+              <mi>x</mi> +              <mn>2</mn> +              <mrow></mrow> +            </msubsup> +            <mo stretchy="false">)</mo> +            <mo stretchy="false">(</mo> +            <msubsup>+              <mi>x</mi> +              <mn>3</mn> +              <mrow></mrow> +            </msubsup> +            <mo>-</mo> +            <msubsup>+              <mi>x</mi> +              <mn>4</mn> +              <mrow></mrow> +            </msubsup> +            <mo stretchy="false">)</mo> +          </mrow> +          <mrow>+            <mo stretchy="false">(</mo> +            <msubsup>+              <mi>x</mi> +              <mn>1</mn> +              <mrow></mrow> +            </msubsup> +            <mo>-</mo> +            <msubsup>+              <mi>x</mi> +              <mn>4</mn> +              <mrow></mrow> +            </msubsup> +            <mo stretchy="false">)</mo> +            <mo stretchy="false">(</mo> +            <msubsup>+              <mi>x</mi> +              <mn>2</mn> +              <mrow></mrow> +            </msubsup> +            <mo>-</mo> +            <msubsup>+              <mi>x</mi> +              <mn>3</mn> +              <mrow></mrow> +            </msubsup> +            <mo stretchy="false">)</mo> +          </mrow> +        </mfrac> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "Quadratic Equation" ]+      , [ EGrouped+            [ EIdentifier "x"+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESymbol Bin "-"+                   , EIdentifier "b"+                   , ESymbol Bin "\177"+                   , ESqrt+                       (EGrouped+                          [ ESubsup (EIdentifier "b") (EGrouped []) (ENumber "2")+                          , ESymbol Bin "-"+                          , ENumber "4"+                          , EIdentifier "a"+                          , EIdentifier "c"+                          ])+                   ])+                (EGrouped [ ENumber "2" , EIdentifier "a" ])+            ]+        ]+      ]+    , [ [ EText TextNormal "DisplayQuadratic Equation" ]+      , [ EGrouped+            [ EIdentifier "x"+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESymbol Bin "-"+                   , EIdentifier "b"+                   , ESymbol Bin "\177"+                   , ESqrt+                       (EGrouped+                          [ ESubsup (EIdentifier "b") (EGrouped []) (ENumber "2")+                          , ESymbol Bin "-"+                          , ENumber "4"+                          , EIdentifier "a"+                          , EIdentifier "c"+                          ])+                   ])+                (EGrouped [ ENumber "2" , EIdentifier "a" ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Rational Function" ]+      , [ EGrouped+            [ EIdentifier "f"+            , ESymbol Open "("+            , EIdentifier "x"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped+                   [ ENumber "1"+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "2")+                   ])+                (EGrouped+                   [ ENumber "1"+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "3")+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Rational Function" ]+      , [ EGrouped+            [ EIdentifier "f"+            , ESymbol Open "("+            , EIdentifier "x"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESymbol Open "("+                   , ENumber "1"+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "2")+                   , ESymbol Close ")"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "3")+                   ])+                (EGrouped+                   [ ENumber "1"+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "3")+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Rational Function" ]+      , [ EGrouped+            [ EIdentifier "f"+            , ESymbol Open "("+            , EIdentifier "x"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESymbol Open "("+                   , ENumber "1"+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "2")+                   , ESymbol Close ")"+                   , ESymbol Open "("+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "3")+                   , ESymbol Bin "-"+                   , ENumber "5"+                   , EIdentifier "x"+                   , ESymbol Close ")"+                   ])+                (EGrouped+                   [ ENumber "1"+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "3")+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Parametrize Rational Function" ]+      , [ EGrouped+            [ EIdentifier "f"+            , ESymbol Open "("+            , EIdentifier "x"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESymbol Open "("+                   , ESubsup (EIdentifier "a") (EIdentifier "i") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "2")+                   , ESubsup (ESymbol Close ")") (EGrouped []) (ENumber "5")+                   ])+                (EGrouped+                   [ ENumber "1"+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "3")+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Stacked exponents" ]+      , [ EGrouped+            [ EIdentifier "g"+            , ESymbol Open "("+            , EIdentifier "z"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , ESubsup+                (EIdentifier "e")+                (EGrouped [])+                (EGrouped+                   [ ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (EGrouped []) (ENumber "2")+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Stacked exponents" ]+      , [ EGrouped+            [ EIdentifier "g"+            , ESymbol Open "("+            , EIdentifier "z"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , ESubsup+                (EIdentifier "e")+                (EGrouped [])+                (EGrouped+                   [ ESymbol Bin "-"+                   , ESymbol Open "("+                   , EIdentifier "z"+                   , ESymbol Bin "-"+                   , EIdentifier "a"+                   , ESubsup (ESymbol Close ")") (EGrouped []) (ENumber "2")+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Stacked exponents" ]+      , [ EGrouped+            [ EIdentifier "g"+            , ESymbol Open "("+            , EIdentifier "z"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , ESubsup+                (EIdentifier "e")+                (EGrouped [])+                (EGrouped+                   [ ESymbol Bin "-"+                   , EUnderover+                       False+                       (ESymbol Op "\8721")+                       (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+                       (EIdentifier "\8734")+                   , ESubsup (EIdentifier "z") (EIdentifier "i") (ENumber "2")+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Stacked exponents" ]+      , [ EGrouped+            [ EIdentifier "g"+            , ESymbol Open "("+            , EIdentifier "y"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , ESubsup+                (EIdentifier "e")+                (EGrouped [])+                (EGrouped+                   [ ESymbol Bin "-"+                   , EUnderover+                       False+                       (ESymbol Op "\8721")+                       (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+                       (EIdentifier "\8734")+                   , ESubsup (EIdentifier "y") (EIdentifier "i") (ENumber "2")+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Stacked exponents" ]+      , [ EGrouped+            [ EIdentifier "g"+            , ESymbol Open "("+            , EIdentifier "z"+            , ESymbol Close ")"+            , ESymbol Rel "="+            , ESubsup+                (EIdentifier "e")+                (EGrouped [])+                (EGrouped+                   [ ESymbol Bin "-"+                   , EUnderover+                       False+                       (ESymbol Op "\8721")+                       (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+                       (EIdentifier "\8734")+                   , ESubsup+                       (EIdentifier "z")+                       (EGrouped [])+                       (EFraction+                          NormalFrac+                          (ENumber "2")+                          (EGrouped [ EIdentifier "a" , ESymbol Bin "-" , EIdentifier "i" ]))+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Cross Product" ]+      , [ EGrouped+            [ EFraction+                NormalFrac+                (EGrouped+                   [ ESubsup (EIdentifier "x") (ENumber "1") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (ENumber "2") (EGrouped [])+                   ])+                (EGrouped+                   [ ESubsup (EIdentifier "x") (ENumber "3") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (ENumber "4") (EGrouped [])+                   ])+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESubsup (EIdentifier "x") (ENumber "1") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (ENumber "4") (EGrouped [])+                   ])+                (EGrouped+                   [ ESubsup (EIdentifier "x") (ENumber "2") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (ENumber "3") (EGrouped [])+                   ])+            ]+        ]+      ]+    , [ [ EText TextNormal "Cross Product" ]+      , [ EGrouped+            [ ESymbol Open "("+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESubsup (EIdentifier "x") (ENumber "1") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (ENumber "2") (EGrouped [])+                   ])+                (EGrouped+                   [ ESubsup (EIdentifier "x") (ENumber "3") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (ENumber "4") (EGrouped [])+                   ])+            , ESymbol Close ")"+            , ESymbol Open "("+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESubsup (EIdentifier "x") (ENumber "1") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (ENumber "4") (EGrouped [])+                   ])+                (EGrouped+                   [ ESubsup (EIdentifier "x") (ENumber "2") (EGrouped [])+                   , ESymbol Bin "-"+                   , ESubsup (EIdentifier "x") (ENumber "3") (EGrouped [])+                   ])+            , ESymbol Close ")"+            ]+        ]+      ]+    , [ [ EText TextNormal "Cross Product" ]+      , [ EGrouped+            [ EDelimited+                "("+                ")"+                [ Right+                    (EFraction+                       NormalFrac+                       (EGrouped+                          [ ESubsup (EIdentifier "x") (ENumber "1") (EGrouped [])+                          , ESymbol Bin "-"+                          , ESubsup (EIdentifier "x") (ENumber "2") (EGrouped [])+                          ])+                       (EGrouped+                          [ ESubsup (EIdentifier "x") (ENumber "3") (EGrouped [])+                          , ESymbol Bin "-"+                          , ESubsup (EIdentifier "x") (ENumber "4") (EGrouped [])+                          ]))+                ]+            , EDelimited+                "("+                ")"+                [ Right+                    (EFraction+                       NormalFrac+                       (EGrouped+                          [ ESubsup (EIdentifier "x") (ENumber "1") (EGrouped [])+                          , ESymbol Bin "-"+                          , ESubsup (EIdentifier "x") (ENumber "4") (EGrouped [])+                          ])+                       (EGrouped+                          [ ESubsup (EIdentifier "x") (ENumber "2") (EGrouped [])+                          , ESymbol Bin "-"+                          , ESubsup (EIdentifier "x") (ENumber "3") (EGrouped [])+                          ]))+                ]+            ]+        ]+      ]+    , [ [ EText TextNormal "Cross Product" ]+      , [ EFraction+            NormalFrac+            (EGrouped+               [ ESymbol Open "("+               , ESubsup (EIdentifier "x") (ENumber "1") (EGrouped [])+               , ESymbol Bin "-"+               , ESubsup (EIdentifier "x") (ENumber "2") (EGrouped [])+               , ESymbol Close ")"+               , ESymbol Open "("+               , ESubsup (EIdentifier "x") (ENumber "3") (EGrouped [])+               , ESymbol Bin "-"+               , ESubsup (EIdentifier "x") (ENumber "4") (EGrouped [])+               , ESymbol Close ")"+               ])+            (EGrouped+               [ ESymbol Open "("+               , ESubsup (EIdentifier "x") (ENumber "1") (EGrouped [])+               , ESymbol Bin "-"+               , ESubsup (EIdentifier "x") (ENumber "4") (EGrouped [])+               , ESymbol Close ")"+               , ESymbol Open "("+               , ESubsup (EIdentifier "x") (ENumber "2") (EGrouped [])+               , ESymbol Bin "-"+               , ESubsup (EIdentifier "x") (ENumber "3") (EGrouped [])+               , ESymbol Close ")"+               ])+        ]+      ]+    ]+]
+ test/reader/mml/complex3.test view
@@ -0,0 +1,21211 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mn>2</mn> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" largeop="false" stretchy="false" lspace="0.166667em" rspace="0em">&#x02211;</mo> +                <mrow>+                  <mi>a</mi> +                  <mo>&#x02062;</mo> +                  <mi>b</mi> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <msup>+                <mi>x</mi> +                <mrow>+                  <mo form="postfix" lspace="0em" rspace="0.000000em">&#x02032;</mo> +                  <mn>3</mn> +                </mrow> +              </msup> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <msup>+                    <mi>f</mi> +                    <mo form="postfix">&#x02032;</mo> +                  </msup> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mi>x</mi> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi mathcolor="gray">cos</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>1</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mi>f</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mi>z</mi> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mrow>+                  <munderover>+                    <mo form="prefix" movablelimits="false" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" lspace="0.277778em" rspace="0em">&#x02211;</mo> +                    <mrow>+                      <mi>n</mi> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mn>0</mn> +                    </mrow> +                    <mi>&#x0221E;</mi> +                  </munderover> +                  <mrow>+                    <msub>+                      <mi>a</mi> +                      <mi>n</mi> +                    </msub> +                    <mo>&#x02062;</mo> +                    <msup>+                      <mi>z</mi> +                      <mi>n</mi> +                    </msup> +                  </mrow> +                </mrow> +              </mrow> +              <mtext mathcolor="black">,&#x02002;</mtext> +              <mrow>+                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                    <mi>z</mi> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +                  </mrow> +                  <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                  <mi>R</mi> +                </mrow> +                <mo>&#x0200B;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mi>R</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02260;</mo> +                    <mn>0</mn> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow id="one">+              <mrow>+                <msub>+                  <mo form="prefix" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" rspace="0em">&#x0222B;</mo> +                  <mi>C</mi> +                </msub> +                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <munderover>+                        <mo form="prefix" movablelimits="false" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" rspace="0em">&#x02211;</mo> +                        <mrow>+                          <mi>n</mi> +                          <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                          <mn>0</mn> +                        </mrow> +                        <mi>&#x0221E;</mi> +                      </munderover> +                      <mrow>+                        <msub>+                          <mi>a</mi> +                          <mi>n</mi> +                        </msub> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>z</mi> +                          <mi>n</mi> +                        </msup> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                    <mi>z</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <munderover>+                  <mo form="prefix" movablelimits="false" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" lspace="0.277778em" rspace="0em">&#x02211;</mo> +                  <mrow>+                    <mi>n</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>0</mn> +                  </mrow> +                  <mi>&#x0221E;</mi> +                </munderover> +                <mrow>+                  <msub>+                    <mi>a</mi> +                    <mi>n</mi> +                  </msub> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <msub>+                      <mo form="prefix" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" lspace="0.166667em" rspace="0em">&#x0222B;</mo> +                      <mi>C</mi> +                    </msub> +                    <mrow>+                      <msup>+                        <mi>z</mi> +                        <mi>n</mi> +                      </msup> +                      <mo>&#x02062;</mo> +                      <mrow>+                        <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                        <mi>z</mi> +                      </mrow> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow id="two">+              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="false" rspace="0.166667em">lim</mo> +                  <mrow>+                    <mi>n</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                    <mi>&#x0221E;</mi> +                  </mrow> +                </munder> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                  <mrow>+                    <msub>+                      <mo form="prefix" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" rspace="0em">&#x0222B;</mo> +                      <mi>C</mi> +                    </msub> +                    <mrow>+                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                        <mrow>+                          <mrow>+                            <mi>f</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mrow>+                              <mo form="prefix" fence="true" stretchy="false">(</mo> +                              <mi>z</mi> +                              <mo form="postfix" fence="true" stretchy="false">)</mo> +                            </mrow> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                          <mrow>+                            <munderover>+                              <mo form="prefix" movablelimits="false" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" lspace="0.222222em" rspace="0em">&#x02211;</mo> +                              <mrow>+                                <mi>k</mi> +                                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                                <mn>0</mn> +                              </mrow> +                              <mi>n</mi> +                            </munderover> +                            <mrow>+                              <msub>+                                <mi>a</mi> +                                <mi>k</mi> +                              </msub> +                              <mo>&#x02062;</mo> +                              <msup>+                                <mi>z</mi> +                                <mi>k</mi> +                              </msup> +                            </mrow> +                          </mrow> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                      </mrow> +                      <mo>&#x02062;</mo> +                      <mrow>+                        <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                        <mi>z</mi> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>0</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>n</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02265;</mo> +                <mrow>+                  <mi>N</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mi>&#x003B5;</mi> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x021D2;</mo> +              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                  <mrow>+                    <mrow>+                      <mi>f</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mi>z</mi> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mrow>+                      <munderover>+                        <mo form="prefix" movablelimits="false" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" lspace="0.222222em" rspace="0em">&#x02211;</mo> +                        <mrow>+                          <mi>k</mi> +                          <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                          <mn>0</mn> +                        </mrow> +                        <mi>n</mi> +                      </munderover> +                      <mrow>+                        <msub>+                          <mi>a</mi> +                          <mi>k</mi> +                        </msub> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>z</mi> +                          <mi>k</mi> +                        </msup> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                <mi>&#x003B5;</mi> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Bq</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Ci</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;amol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Emol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;fmol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Gmol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kmol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Mmol</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;mol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mmol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nmol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Pmol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;pmol</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Tmol</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;acre</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;hectare</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mstyle mathcolor="green">+                  <msup>+                    <mtext>&#x02009;ft</mtext> +                    <mn>2</mn> +                  </msup> +                </mstyle> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mstyle mathcolor="green">+                  <msup>+                    <mtext>&#x02009;in</mtext> +                    <mn>2</mn> +                  </msup> +                </mstyle> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mstyle mathcolor="green">+                  <msup>+                    <mtext>&#x02009;m</mtext> +                    <mn>2</mn> +                  </msup> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;A</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kA</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;A</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mA</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nA</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;F</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;F</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mF</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nF</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;pF</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;C</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>1.0</mn> +                <mtext mathcolor="green">&#x02009;m/s/s</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>0.1</mn> +                <mstyle mathcolor="green">+                  <mrow>+                    <mtext>&#x02009;m</mtext> +                    <mo>/</mo> +                    <mstyle mathcolor="green">+                      <msup>+                        <mtext>s</mtext> +                        <mn>2</mn> +                      </msup> +                    </mstyle> +                  </mrow> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kS</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;S</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mS</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;S</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kV</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;MV</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;V</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mV</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nV</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;pV</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;V</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;G&#x003A9;</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;k&#x003A9;</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;M&#x003A9;</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;m&#x003A9;</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003A9;</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Btu</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;cal</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;eV</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;erg</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;GeV</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;GJ</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;J</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kcal</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kJ</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;MeV</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;MJ</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;J</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mJ</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nJ</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;dyn</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kN</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;MN</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;N</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mN</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;N</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;ozf</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;lbf</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;EHz</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;GHz</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Hz</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kHz</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;MHz</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;PHz</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;THz</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;fc</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;lx</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;phot</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x0212B;</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;am</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;cm</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;dm</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;fm</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;ft</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;in</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;km</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;m</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;m</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mi</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mm</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nm</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;pm</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mn>10</mn> +              <mtext mathcolor="green">&#x02009;sb</mtext> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mn>10</mn> +              <mtext mathcolor="green">&#x02009;lm</mtext> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mn>10</mn> +              <mtext mathcolor="green">&#x02009;cd</mtext> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Mx</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;Wb</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mWb</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nWb</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Wb</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;G</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;T</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mT</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nT</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;pT</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;T</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;H</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;H</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mH</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;u</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;cg</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;dg</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;g</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kg</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;g</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mg</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;lb</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;slug</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x000B0;</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;rad</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mrad</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mstyle mathcolor="green">+                  <msup>+                    <mtext>&#x0200B;</mtext> +                    <mtext mathcolor="green">&#x02032;</mtext> +                  </msup> +                </mstyle> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;rad</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mstyle mathcolor="green">+                  <msup>+                    <mtext>&#x0200B;</mtext> +                    <mtext mathcolor="green">&#x02032;&#x02032;</mtext> +                  </msup> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;GW</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;hp</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kW</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;MW</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;W</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mW</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;nW</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;W</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;atm</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;bar</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kbar</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;kPa</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;MPa</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;Pa</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mbar</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;mmHg</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;Pa</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;torr</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mn>10</mn> +              <mtext mathcolor="green">&#x02009;sr</mtext> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x000B0;C</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x000B0;F</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;K</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;as</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;d</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;fs</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;h</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;&#x003BC;s</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;ms</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;min</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;ns</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;ps</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;s</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;y</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mstyle mathcolor="green">+                  <msup>+                    <mtext>&#x02009;ft</mtext> +                    <mn>3</mn> +                  </msup> +                </mstyle> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mstyle mathcolor="green">+                  <msup>+                    <mtext>&#x02009;in</mtext> +                    <mn>3</mn> +                  </msup> +                </mstyle> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mstyle mathcolor="green">+                  <msup>+                    <mtext>&#x02009;m</mtext> +                    <mn>3</mn> +                  </msup> +                </mstyle> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;gal</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;l</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;ml</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;pint</mtext> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>10</mn> +                <mtext mathcolor="green">&#x02009;qt</mtext> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac>+                <mn>1</mn> +                <mrow>+                  <mi>x</mi> +                  <mo rspace="0.000000em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mi>y</mi> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +              </mfrac> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mrow>+                        <mo form="prefix" largeop="false" stretchy="false" lspace="0.222222em" rspace="0em">&#x0222B;</mo> +                        <mrow>+                          <msup>+                            <mi>e</mi> +                            <mrow>+                              <mrow>+                                <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                                <mfrac>+                                  <mn>1</mn> +                                  <mn>2</mn> +                                </mfrac> +                              </mrow> +                              <mo>&#x02062;</mo> +                              <msup>+                                <mi>y</mi> +                                <mn>2</mn> +                              </msup> +                            </mrow> +                          </msup> +                          <mo>&#x02062;</mo> +                          <mrow>+                            <mi mathcolor="gray">sin</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mi>y</mi> +                          </mrow> +                          <mo>&#x02062;</mo> +                          <mrow>+                            <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                            <mi>y</mi> +                          </mrow> +                        </mrow> +                      </mrow> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <msub>+                      <mi>C</mi> +                      <mn>1</mn> +                    </msub> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mo>&#x02062;</mo> +                <msup>+                  <mi>e</mi> +                  <mrow>+                    <mfrac>+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                    <mo>&#x02062;</mo> +                    <msup>+                      <mi>y</mi> +                      <mn>2</mn> +                    </msup> +                  </mrow> +                </msup> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <msub>+                    <mo form="prefix" rspace="0em">&#x02145;</mo> +                    <mi>x</mi> +                  </msub> +                  <mi>y</mi> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mi>y</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi mathcolor="gray">sin</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mi>x</mi> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +                <mfrac linethickness="0px">+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +                <mrow>+                  <mstyle displaystyle="false" scriptlevel="0">+                    <mfrac linethickness="0px">+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac linethickness="0px">+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">[</mo> +                <mfrac linethickness="0px">+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">]</mo> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +                <mrow>+                  <mstyle displaystyle="false" scriptlevel="0">+                    <mfrac linethickness="0px">+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">{</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac linethickness="0px">+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">}</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02329;</mo> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0232A;</mo> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230A;</mo> +                <mrow>+                  <mstyle displaystyle="false" scriptlevel="0">+                    <mfrac>+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02308;</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02309;</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02191;</mo> +                <mfrac linethickness="1pt">+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02191;</mo> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02193;</mo> +                <mrow>+                  <mstyle displaystyle="false" scriptlevel="0">+                    <mfrac linethickness="1pt">+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02193;</mo> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02195;</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac linethickness="1pt">+                      <mn>1</mn> +                      <mn>2</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02195;</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac>+                <mn>1</mn> +                <mn>2</mn> +              </mfrac> +              <mo>&#x02062;</mo> +              <mrow>+                <mstyle displaystyle="false" scriptlevel="0">+                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac linethickness="1pt">+                <mn>1</mn> +                <mn>2</mn> +              </mfrac> +              <mo>&#x02062;</mo> +              <mrow>+                <mstyle displaystyle="false" scriptlevel="0">+                  <mfrac linethickness="1pt">+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac linethickness="1pt">+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac linethickness="0px">+                <mn>1</mn> +                <mn>2</mn> +              </mfrac> +              <mo>&#x02062;</mo> +              <mrow>+                <mstyle displaystyle="false" scriptlevel="0">+                  <mfrac linethickness="0px">+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo>&#x02062;</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac linethickness="0px">+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mi>a</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mi>b</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi>b</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mi>a</mi> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mn>2</mn> +                      <mn>5</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mn>3</mn> +                      <mn>7</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac>+                    <mrow>+                      <mrow>+                        <mn>2</mn> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                        <mn>7</mn> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mn>3</mn> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                        <mn>5</mn> +                      </mrow> +                    </mrow> +                    <mn>35</mn> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac>+                    <mn>29</mn> +                    <mn>35</mn> +                  </mfrac> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                <mi>a</mi> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                <mtable align="axis" columnalign="right left left">+                  <mtr>+                    <mtd>+                      <mi>a</mi> +                    </mtd> +                    <mtd>+                      <mtext mathcolor="black">if</mtext> +                    </mtd> +                    <mtd>+                      <mrow>+                        <mi>a</mi> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02265;</mo> +                        <mn>0</mn> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mi>a</mi> +                      </mrow> +                    </mtd> +                    <mtd>+                      <mtext mathcolor="black">if</mtext> +                    </mtd> +                    <mtd>+                      <mrow>+                        <mi>a</mi> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                        <mn>0</mn> +                      </mrow> +                    </mtd> +                  </mtr> +                </mtable> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace"></mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <msup>+                <mi>a</mi> +                <mi>n</mi> +              </msup> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <munder>+                <munder>+                  <mrow>+                    <mi>a</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                    <mi>a</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                    <mi>&#x022EF;</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                    <mi>a</mi> +                  </mrow> +                  <mo stretchy="true">&#x0FE38;</mo> +                </munder> +                <mrow>+                  <mi>n</mi> +                  <mtext mathcolor="black">&#x02002;factors</mtext> +                </mrow> +              </munder> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <msup>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mstyle displaystyle="true" scriptlevel="0">+                      <mfrac>+                        <mi>a</mi> +                        <mi>b</mi> +                      </mfrac> +                    </mstyle> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mrow>+                  <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                  <mi>n</mi> +                </mrow> +              </msup> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <msup>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mstyle displaystyle="true" scriptlevel="0">+                      <mfrac>+                        <mi>b</mi> +                        <mi>a</mi> +                      </mfrac> +                    </mstyle> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mi>n</mi> +              </msup> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mroot>+                  <mi>a</mi> +                  <mi>n</mi> +                </mroot> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mi>b</mi> +              </mrow> +              <mtext mathcolor="black">&#x02002;&#x02002;means&#x02002;</mtext> +              <mrow>+                <msup>+                  <mi>b</mi> +                  <mi>n</mi> +                </msup> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mi>a</mi> +              </mrow> +              <mtext>.</mtext> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mroot>+                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mn>16</mn> +                      <mn>81</mn> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mn>4</mn> +              </mroot> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac>+                    <mroot>+                      <mn>16</mn> +                      <mn>4</mn> +                    </mroot> +                    <mroot>+                      <mn>81</mn> +                      <mn>4</mn> +                    </mroot> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac>+                    <mn>2</mn> +                    <mn>3</mn> +                  </mfrac> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02223;</mo> +                <mrow>+                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02260;</mo> +                    <mn>0</mn> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02260;</mo> +                    <mn>1</mn> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msub>+                  <mi>a</mi> +                  <mi>n</mi> +                </msub> +                <mo>&#x02062;</mo> +                <msup>+                  <mi>x</mi> +                  <mi>n</mi> +                </msup> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <msub>+                  <mi>a</mi> +                  <mrow>+                    <mi>n</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mn>1</mn> +                  </mrow> +                </msub> +                <mo>&#x02062;</mo> +                <msup>+                  <mi>x</mi> +                  <mrow>+                    <mi>n</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mn>1</mn> +                  </mrow> +                </msup> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mi>&#x022EF;</mi> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <msub>+                  <mi>a</mi> +                  <mn>1</mn> +                </msub> +                <mo>&#x02062;</mo> +                <mi>x</mi> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <msub>+                <mi>a</mi> +                <mn>0</mn> +              </msub> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msup>+                  <mi>a</mi> +                  <mn>3</mn> +                </msup> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <msup>+                  <mi>b</mi> +                  <mn>3</mn> +                </msup> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mi>a</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mi>b</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <msup>+                      <mi>a</mi> +                      <mn>2</mn> +                    </msup> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mrow>+                      <mi>a</mi> +                      <mo>&#x02062;</mo> +                      <mi>b</mi> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <msup>+                      <mi>b</mi> +                      <mn>2</mn> +                    </msup> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <msup>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mi>y</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +                <mn>2</mn> +              </msup> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>H</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                <mrow>+                  <mrow>+                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                      <mtable align="axis">+                        <mtr>+                          <mtd>+                            <mi>a</mi> +                          </mtd> +                          <mtd>+                            <mi>b</mi> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mi>c</mi> +                          </mtd> +                          <mtd>+                            <mi>d</mi> +                          </mtd> +                        </mtr> +                      </mtable> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                    </mrow> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02208;</mo> +                    <mi>G</mi> +                  </mrow> +                  <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02223;</mo> +                  <mrow>+                    <mrow>+                      <mrow>+                        <mi>a</mi> +                        <mo>&#x02062;</mo> +                        <mi>d</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mi>b</mi> +                        <mo>&#x02062;</mo> +                        <mi>c</mi> +                      </mrow> +                    </mrow> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>1</mn> +                  </mrow> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">|</mo> +                  <mi>x</mi> +                  <mo form="postfix" fence="true" stretchy="false">|</mo> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">||</mo> +                  <mi>y</mi> +                  <mo form="postfix" fence="true" stretchy="false">||</mo> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">{</mo> +                  <mi>z</mi> +                  <mo form="postfix" fence="true" stretchy="false">}</mo> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">[</mo> +                  <mrow>+                    <mi>a</mi> +                    <mo>&#x02062;</mo> +                    <mi>c</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">]</mo> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mi>b</mi> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="false">[</mo> +                <mrow>+                  <mi>a</mi> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                  <mi>b</mi> +                </mrow> +                <mo form="postfix" fence="true" stretchy="false">]</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.055556em">=</mo> +              <mn>1</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>1</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.388889em">=</mo> +              <mn>1</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.500000em">=</mo> +              <mn>1</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                <mrow>+                  <mrow>+                    <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                    <mfrac>+                      <mn>10</mn> +                      <mn>3</mn> +                    </mfrac> +                  </mrow> +                  <mo form="infix" lspace="0.166667em" rspace="0.222222em">,</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.222222em" rspace="0em">&#x02212;</mo> +                    <mfrac>+                      <mn>7</mn> +                      <mn>3</mn> +                    </mfrac> +                  </mrow> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x0222A;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                <mrow>+                  <mrow>+                    <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                    <mfrac>+                      <mn>7</mn> +                      <mn>3</mn> +                    </mfrac> +                  </mrow> +                  <mo form="infix" lspace="0.166667em" rspace="0.222222em">,</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.222222em" rspace="0em">&#x02212;</mo> +                    <mfrac>+                      <mn>4</mn> +                      <mn>3</mn> +                    </mfrac> +                  </mrow> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mi>A</mi> +                  <mo>&#x02062;</mo> +                  <mfrac>+                    <mrow>+                      <mo form="prefix" rspace="0em">&#x02202;</mo> +                      <mi>u</mi> +                    </mrow> +                    <mrow>+                      <mo form="prefix" rspace="0em">&#x02202;</mo> +                      <mi>x</mi> +                    </mrow> +                  </mfrac> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mi>B</mi> +                  <mo>&#x02062;</mo> +                  <mfrac>+                    <mrow>+                      <mo form="prefix" rspace="0em">&#x02202;</mo> +                      <mi>u</mi> +                    </mrow> +                    <mrow>+                      <mo form="prefix" rspace="0em">&#x02202;</mo> +                      <mi>y</mi> +                    </mrow> +                  </mfrac> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mi>C</mi> +                  <mo>&#x02062;</mo> +                  <mi>u</mi> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mi>E</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <munderover>+                <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" rspace="0em">&#x02211;</mo> +                <mtext>&#x0200B;</mtext> +                <mtext>&#x0200B;</mtext> +              </munderover> +              <mi>x</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <munderover>+                <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" rspace="0em">&#x02211;</mo> +                <mtable rowspacing="0px" columnspacing="0px">+                  <mtr>+                    <mtd>+                      <mrow>+                        <mn>1</mn> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                        <mi>i</mi> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                        <mn>10</mn> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mrow>+                        <mn>1</mn> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                        <mi>j</mi> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                        <mn>10</mn> +                      </mrow> +                    </mtd> +                  </mtr> +                </mtable> +                <mtext>&#x0200B;</mtext> +              </munderover> +              <msup>+                <mn>2</mn> +                <mrow>+                  <mi>i</mi> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">+</mo> +                  <mi>j</mi> +                </mrow> +              </msup> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <msubsup>+                <mi>&#x00393;</mi> +                <msubsup>+                  <mn>1</mn> +                  <msup>+                    <mspace width="veryverythinmathspace"></mspace> +                    <mtable rowspacing="0px" columnspacing="0px">+                      <mtr>+                        <mtd>+                          <msubsup>+                            <mn>2</mn> +                            <msup>+                              <mspace width="veryverythinmathspace"></mspace> +                              <mtable rowspacing="0px" columnspacing="0px">+                                <mtr>+                                  <mtd>+                                    <mn>3</mn> +                                  </mtd> +                                </mtr> +                                <mtr>+                                  <mtd>+                                    <mn>4</mn> +                                  </mtd> +                                </mtr> +                              </mtable> +                            </msup> +                            <mtext>&#x0200B;</mtext> +                          </msubsup> +                        </mtd> +                      </mtr> +                      <mtr>+                        <mtd>+                          <msubsup>+                            <mn>5</mn> +                            <msup>+                              <mspace width="veryverythinmathspace"></mspace> +                              <mtable rowspacing="0px" columnspacing="0px">+                                <mtr>+                                  <mtd>+                                    <mn>6</mn> +                                  </mtd> +                                </mtr> +                                <mtr>+                                  <mtd>+                                    <mn>7</mn> +                                  </mtd> +                                </mtr> +                              </mtable> +                            </msup> +                            <mtext>&#x0200B;</mtext> +                          </msubsup> +                        </mtd> +                      </mtr> +                    </mtable> +                  </msup> +                  <mtext>&#x0200B;</mtext> +                </msubsup> +                <msup>+                  <mn>1</mn> +                  <mtable rowspacing="0px" columnspacing="0px">+                    <mtr>+                      <mtd>+                        <msup>+                          <mn>5</mn> +                          <mtable rowspacing="0px" columnspacing="0px">+                            <mtr>+                              <mtd>+                                <mn>7</mn> +                              </mtd> +                            </mtr> +                            <mtr>+                              <mtd>+                                <mn>6</mn> +                              </mtd> +                            </mtr> +                          </mtable> +                        </msup> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <msup>+                          <mn>2</mn> +                          <mtable rowspacing="0px" columnspacing="0px">+                            <mtr>+                              <mtd>+                                <mn>4</mn> +                              </mtd> +                            </mtr> +                            <mtr>+                              <mtd>+                                <mn>3</mn> +                              </mtd> +                            </mtr> +                          </mtable> +                        </msup> +                      </mtd> +                    </mtr> +                  </mtable> +                </msup> +              </msubsup> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>y</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mi>x</mi> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mfrac>+                <mrow>+                  <mrow>+                    <mi>x</mi> +                    <mo>&#x02062;</mo> +                    <msup>+                      <mi>e</mi> +                      <mi>x</mi> +                    </msup> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02212;</mo> +                  <msup>+                    <mi>e</mi> +                    <mi>x</mi> +                  </msup> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">+</mo> +                  <mn>2</mn> +                </mrow> +                <msup>+                  <mi>e</mi> +                  <mi>x</mi> +                </msup> +              </mfrac> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mn>1</mn> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mfrac>+                  <mn>2</mn> +                  <msup>+                    <mi>e</mi> +                    <mi>x</mi> +                  </msup> +                </mfrac> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis" columnalign="right">+                <mtr>+                  <mtd>+                    <mrow>+                      <mrow>+                        <mrow>+                          <msub>+                            <mo form="prefix" rspace="0em">&#x02145;</mo> +                            <mrow>+                              <mi>x</mi> +                              <mo>&#x0200B;</mo> +                              <mi>x</mi> +                            </mrow> +                          </msub> +                          <mi>y</mi> +                        </mrow> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                        <mi>y</mi> +                      </mrow> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mn>0</mn> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mrow>+                      <mrow>+                        <mi>y</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mn>0</mn> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                      </mrow> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mn>1</mn> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mrow>+                      <mrow>+                        <msup>+                          <mi>y</mi> +                          <mo form="postfix">&#x02032;</mo> +                        </msup> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <mn>0</mn> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                      </mrow> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mn>0</mn> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>y</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mi>x</mi> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <mfrac>+                    <mn>1</mn> +                    <mn>3</mn> +                  </mfrac> +                  <mo>&#x02062;</mo> +                  <msup>+                    <mi>e</mi> +                    <mrow>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mroot>+                          <mrow>+                            <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                            <mrow>+                              <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                              <mn>1</mn> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                          </mrow> +                          <mn>3</mn> +                        </mroot> +                      </mrow> +                      <mo>&#x02062;</mo> +                      <mi>x</mi> +                    </mrow> +                  </msup> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mfrac>+                    <mn>2</mn> +                    <mn>3</mn> +                  </mfrac> +                  <mo>&#x02062;</mo> +                  <msup>+                    <mi>e</mi> +                    <mrow>+                      <mfrac>+                        <mn>1</mn> +                        <mn>2</mn> +                      </mfrac> +                      <mo>&#x02062;</mo> +                      <mroot>+                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <mrow>+                            <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                            <mn>1</mn> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                        <mn>3</mn> +                      </mroot> +                      <mo>&#x02062;</mo> +                      <mi>x</mi> +                    </mrow> +                  </msup> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mi mathcolor="gray">cos</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mfrac>+                        <mn>1</mn> +                        <mn>2</mn> +                      </mfrac> +                      <mo>&#x02062;</mo> +                      <msqrt>+                        <mn>3</mn> +                      </msqrt> +                      <mo>&#x02062;</mo> +                      <mroot>+                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <mrow>+                            <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                            <mn>1</mn> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                        <mn>3</mn> +                      </mroot> +                      <mo>&#x02062;</mo> +                      <mi>x</mi> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>y</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mi>t</mi> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mn>2</mn> +                <mo>&#x02062;</mo> +                <mrow>+                  <mi mathcolor="gray">tan</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <mi>t</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mrow>+                          <mstyle displaystyle="true" scriptlevel="0">+                            <mfrac>+                              <mn>1</mn> +                              <mn>4</mn> +                            </mfrac> +                          </mstyle> +                        </mrow> +                        <mo>&#x02062;</mo> +                        <mi>&#x003C0;</mi> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>&#x02131;</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mtable align="axis">+                      <mtr>+                        <mtd>+                          <msup>+                            <mi>e</mi> +                            <mrow>+                              <mn>2</mn> +                              <mo>&#x02062;</mo> +                              <mi>&#x003C0;</mi> +                              <mo>&#x02062;</mo> +                              <mi>i</mi> +                              <mo>&#x02062;</mo> +                              <mi>x</mi> +                            </mrow> +                          </msup> +                        </mtd> +                      </mtr> +                      <mtr>+                        <mtd>+                          <mrow>+                            <mn>2</mn> +                            <mo>&#x02062;</mo> +                            <mi>&#x003C0;</mi> +                            <mo>&#x02062;</mo> +                            <mrow>+                              <mi mathcolor="gray">Dirac</mi> +                              <mo rspace="0.166667em">&#x02061;</mo> +                              <mrow>+                                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                                <mrow>+                                  <mi>x</mi> +                                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                                  <mrow>+                                    <mn>2</mn> +                                    <mo>&#x02062;</mo> +                                    <mi>&#x003C0;</mi> +                                  </mrow> +                                </mrow> +                                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                              </mrow> +                            </mrow> +                          </mrow> +                        </mtd> +                      </mtr> +                    </mtable> +                    <mo form="infix" lspace="0.166667em" rspace="0.000000em">,</mo> +                    <mi>x</mi> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mi>s</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                <mtable align="axis">+                  <mtr>+                    <mtd>+                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <mi>&#x003C0;</mi> +                        <mo>&#x02062;</mo> +                        <mrow>+                          <mi mathcolor="gray">Dirac</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mrow>+                            <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                            <mrow>+                              <mi>s</mi> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                              <mrow>+                                <mn>2</mn> +                                <mo>&#x02062;</mo> +                                <mi>&#x003C0;</mi> +                              </mrow> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                          </mrow> +                        </mrow> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <mi>&#x003C0;</mi> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>e</mi> +                          <mrow>+                            <mrow>+                              <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                              <mn>2</mn> +                            </mrow> +                            <mo>&#x02062;</mo> +                            <mi>i</mi> +                            <mo>&#x02062;</mo> +                            <mi>&#x003C0;</mi> +                            <mo>&#x02062;</mo> +                            <mi>s</mi> +                          </mrow> +                        </msup> +                      </mrow> +                    </mtd> +                  </mtr> +                </mtable> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi>x</mi> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mn>1</mn> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mi>x</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mn>3</mn> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mn>123</mn> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis" columnalign="right right right right">+                <mtr>+                  <mtd>+                    <mi>t</mi> +                  </mtd> +                  <mtd>+                    <mi>x</mi> +                  </mtd> +                  <mtd>+                    <mi>y</mi> +                  </mtd> +                  <mtd>+                    <mi>z</mi> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>0</mn> +                  </mtd> +                  <mtd>+                    <mn>1.0000</mn> +                  </mtd> +                  <mtd>+                    <mn>1.0000</mn> +                  </mtd> +                  <mtd>+                    <mn>1.0000</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.1</mn> +                  </mtd> +                  <mtd>+                    <mn>1.1158</mn> +                  </mtd> +                  <mtd>+                    <mn>1.0938</mn> +                  </mtd> +                  <mtd>+                    <mn>.8842</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.2</mn> +                  </mtd> +                  <mtd>+                    <mn>1.2668</mn> +                  </mtd> +                  <mtd>+                    <mn>1.1695</mn> +                  </mtd> +                  <mtd>+                    <mn>.7332</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.3</mn> +                  </mtd> +                  <mtd>+                    <mn>1.4582</mn> +                  </mtd> +                  <mtd>+                    <mn>1.2173</mn> +                  </mtd> +                  <mtd>+                    <mn>.5418</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.4</mn> +                  </mtd> +                  <mtd>+                    <mn>1.6953</mn> +                  </mtd> +                  <mtd>+                    <mn>1.2253</mn> +                  </mtd> +                  <mtd>+                    <mn>.3047</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.5</mn> +                  </mtd> +                  <mtd>+                    <mn>1.9830</mn> +                  </mtd> +                  <mtd>+                    <mn>1.1791</mn> +                  </mtd> +                  <mtd>+                    <mn>.0170</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.6</mn> +                  </mtd> +                  <mtd>+                    <mn>2.3256</mn> +                  </mtd> +                  <mtd>+                    <mn>1.0619</mn> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>.3256</mn> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.7</mn> +                  </mtd> +                  <mtd>+                    <mn>2.7265</mn> +                  </mtd> +                  <mtd>+                    <mn>.8542</mn> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>.7265</mn> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.8</mn> +                  </mtd> +                  <mtd>+                    <mn>3.1873</mn> +                  </mtd> +                  <mtd>+                    <mn>.5344</mn> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>1.1873</mn> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>.9</mn> +                  </mtd> +                  <mtd>+                    <mn>3.7077</mn> +                  </mtd> +                  <mtd>+                    <mn>.0777</mn> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>1.7077</mn> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>1.0</mn> +                  </mtd> +                  <mtd>+                    <mn>4.2842</mn> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>.5424</mn> +                    </mrow> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>2.2842</mn> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msub>+                  <mi>K</mi> +                  <mi>v</mi> +                </msub> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mi>z</mi> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <msub>+                  <mi mathcolor="gray">BesselK</mi> +                  <mi>v</mi> +                </msub> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mi>z</mi> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <msup>+                    <mi>z</mi> +                    <mn>2</mn> +                  </msup> +                  <mo>&#x02062;</mo> +                  <mfrac>+                    <mrow>+                      <msup>+                        <mo form="prefix" rspace="0em">&#x02146;</mo> +                        <mn>2</mn> +                      </msup> +                      <mi>w</mi> +                    </mrow> +                    <mrow>+                      <mo form="prefix" rspace="0em">&#x02146;</mo> +                      <msup>+                        <mi>z</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                  </mfrac> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mi>z</mi> +                  <mo>&#x02062;</mo> +                  <mfrac>+                    <mrow>+                      <mo form="prefix" rspace="0em">&#x02146;</mo> +                      <mi>w</mi> +                    </mrow> +                    <mrow>+                      <mo form="prefix" rspace="0em">&#x02146;</mo> +                      <mi>z</mi> +                    </mrow> +                  </mfrac> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <msup>+                        <mi>z</mi> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <msup>+                        <mi>v</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mi>w</mi> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>0</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mfrac>+                  <mrow>+                    <msup>+                      <mo form="prefix" rspace="0em">&#x02202;</mo> +                      <mn>2</mn> +                    </msup> +                    <mrow>+                      <mi>u</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>x</mi> +                          <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                          <mi>y</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mrow>+                    <mo form="prefix" rspace="0em">&#x02202;</mo> +                    <msup>+                      <mi>x</mi> +                      <mn>2</mn> +                    </msup> +                  </mrow> +                </mfrac> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mfrac>+                  <mrow>+                    <msup>+                      <mo form="prefix" rspace="0em">&#x02202;</mo> +                      <mn>2</mn> +                    </msup> +                    <mrow>+                      <mi>u</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>x</mi> +                          <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                          <mi>y</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mrow>+                    <mo form="prefix" rspace="0em">&#x02202;</mo> +                    <msup>+                      <mi>y</mi> +                      <mn>2</mn> +                    </msup> +                  </mrow> +                </mfrac> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>0</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>y</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mi>t</mi> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mi>x</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <msub>+                    <mi>F</mi> +                    <mn>1</mn> +                  </msub> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mi>x</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mi>a</mi> +                        <mo>&#x02062;</mo> +                        <mi>t</mi> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <msub>+                    <mi>F</mi> +                    <mn>2</mn> +                  </msub> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <mi>x</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mi>a</mi> +                        <mo>&#x02062;</mo> +                        <mi>t</mi> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis" columnlines="solid none" columnalign="left center right">+                <mtr>+                  <mtd>+                    <mn>1</mn> +                  </mtd> +                  <mtd>+                    <mn>2</mn> +                  </mtd> +                  <mtd>+                    <mn>3</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>4</mn> +                  </mtd> +                  <mtd>+                    <mn>5</mn> +                  </mtd> +                  <mtd>+                    <mn>6</mn> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mn>2</mn> +                  <mo>&#x02062;</mo> +                  <mi>x</mi> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mn>1</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>5</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mn>1</mn> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mn>3</mn> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mn>9</mn> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mn>7</mn> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi>a</mi> +                    <maligngroup></maligngroup> +                    <mo>&#x02062;</mo> +                    <mi>b</mi> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi>c</mi> +                    <maligngroup></maligngroup> +                    <mo>&#x02062;</mo> +                    <mi>d</mi> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi>e</mi> +                    <maligngroup></maligngroup> +                    <mo>&#x02062;</mo> +                    <mi>f</mi> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mi>x</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <mi>y</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mn>3</mn> +                    </mrow> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>5</mn> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mrow>+                        <mn>4</mn> +                        <mo>&#x02062;</mo> +                        <mi>x</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mi>y</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mn>5</mn> +                    </mrow> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>98</mn> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi>x</mi> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mi>z</mi> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mn>1</mn> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mn>3</mn> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <msub>+                      <mi>A</mi> +                      <mn>1</mn> +                    </msub> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mrow>+                      <mrow>+                        <msub>+                          <mi>N</mi> +                          <mn>0</mn> +                        </msub> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>&#x003BB;</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">;</mo> +                            <msup>+                              <mi>&#x003A9;</mi> +                              <mo form="postfix">&#x02032;</mo> +                            </msup> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mi>&#x003C6;</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>&#x003BB;</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">;</mo> +                            <msup>+                              <mi>&#x003A9;</mi> +                              <mo form="postfix">&#x02032;</mo> +                            </msup> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mtext>,</mtext> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <msub>+                      <mi>A</mi> +                      <mn>2</mn> +                    </msub> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mrow>+                      <mrow>+                        <mi>&#x003C6;</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>&#x003BB;</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">;</mo> +                            <msup>+                              <mi>&#x003A9;</mi> +                              <mo form="postfix">&#x02032;</mo> +                            </msup> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mi>&#x003C6;</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>&#x003BB;</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">;</mo> +                            <mi>&#x003A9;</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mtext>,</mtext> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <msub>+                      <mi>A</mi> +                      <mn>3</mn> +                    </msub> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mrow>+                      <mi mathvariant="script">N</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>&#x003BB;</mi> +                          <mo form="infix" lspace="0.000000em" rspace="0.000000em">;</mo> +                          <mi>&#x003C9;</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mtext>.</mtext> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>&#x003B8;</mi> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi mathcolor="gray">cos</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>&#x003B3;</mi> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" lspace="0.5em" rspace="0.5em">{</mo> +                <mtable columnalign="left">+                  <mtr>+                    <mtd>+                      <mi>x</mi> +                    </mtd> +                    <mtd>+                      <mtext mathcolor="black">if&#x02002;</mtext> +                      <mrow>+                        <mi>x</mi> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                        <mn>0</mn> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mi>x</mi> +                      </mrow> +                    </mtd> +                    <mtd>+                      <mtext mathcolor="black">if&#x02002;</mtext> +                      <mrow>+                        <mi>x</mi> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02265;</mo> +                        <mn>0</mn> +                      </mrow> +                    </mtd> +                  </mtr> +                </mtable> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable>+                <mtr>+                  <mtd groupalign="right left">+                    <maligngroup></maligngroup> +                    <mrow>+                      <mi>L</mi> +                      <mo>&#x02062;</mo> +                      <mi>M</mi> +                      <maligngroup></maligngroup> +                      <mo>&#x02062;</mo> +                      <mi>R</mi> +                      <mo>&#x02062;</mo> +                      <mi>M</mi> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd groupalign="right left">+                    <maligngroup></maligngroup> +                    <mrow>+                      <mi>L</mi> +                      <mo>&#x02062;</mo> +                      <mi>M</mi> +                      <maligngroup></maligngroup> +                      <mo>&#x02062;</mo> +                      <mi>R</mi> +                      <mo>&#x02062;</mo> +                      <mi>M</mi> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable>+                <mtr>+                  <mtd groupalign="center">+                    <maligngroup></maligngroup> +                    <mrow>+                      <mi>M</mi> +                      <mo>&#x02062;</mo> +                      <mi>A</mi> +                      <mo>&#x02062;</mo> +                      <mi>T</mi> +                      <mo>&#x02062;</mo> +                      <mi>H</mi> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd groupalign="center">+                    <maligngroup></maligngroup> +                    <mrow>+                      <mi>M</mi> +                      <mo>&#x02062;</mo> +                      <mi>A</mi> +                      <mo>&#x02062;</mo> +                      <mi>T</mi> +                      <mo>&#x02062;</mo> +                      <mi>H</mi> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtext>&#x022EE;</mtext> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" rspace="0em">&#x02207;&#x000D7;</mo> +                <mi>F</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>0</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" rspace="0em">&#x02207;&#x000B7;</mo> +              <mi>F</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" rspace="0em">&#x02207;&#x000B7;&#x02207;</mo> +                <mi>F</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <msup>+                    <mo form="prefix" lspace="0.277778em" rspace="0em">&#x02207;</mo> +                    <mn>2</mn> +                  </msup> +                  <mi>F</mi> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mn>7</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mi>A</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" rspace="0em">&#x02207;&#x000D7;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mrow>+                      <mi>x</mi> +                      <mo>&#x02062;</mo> +                      <mi>y</mi> +                    </mrow> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mrow>+                      <mi>y</mi> +                      <mo>&#x02062;</mo> +                      <mi>z</mi> +                    </mrow> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mrow>+                      <mi>z</mi> +                      <mo>&#x02062;</mo> +                      <mi>x</mi> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.388889em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                <mtable align="axis">+                  <mtr>+                    <mtd>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mi>y</mi> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mi>z</mi> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mi>x</mi> +                      </mrow> +                    </mtd> +                  </mtr> +                </mtable> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" rspace="0em">&#x02207;&#x000D7;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mi>y</mi> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mi>z</mi> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mi>x</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                <mrow>+                  <mrow>+                    <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                    <mn>1</mn> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.222222em">,</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.222222em" rspace="0em">&#x02212;</mo> +                    <mn>1</mn> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.222222em">,</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.222222em" rspace="0em">&#x02212;</mo> +                    <mn>1</mn> +                  </mrow> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02260;</mo> +              <mn>0</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle fontweight="bold">+                <mrow>+                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mi>y</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mi>&#x003B1;</mi> +                  </mrow> +                  <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                  <mn>102</mn> +                </mrow> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi mathvariant="bold">a</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mi mathvariant="bold">b</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mi mathvariant="bold">c</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mn>1</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mi>f</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mi mathvariant="bold">x</mi> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                </mrow> +                <mrow>+                  <mstyle fontweight="bold">+                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                  </mstyle> +                </mrow> +                <mn>1</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>123</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi mathvariant="italic">T</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="italic">h</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="italic">e</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="italic">q</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="italic">u</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="italic">i</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="italic">c</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="italic">k</mi> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontstyle="italic">+                    <mi>b</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontstyle="italic">+                    <mi>r</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontstyle="italic">+                    <mi>o</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontstyle="italic">+                    <mi>w</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontstyle="italic">+                    <mi>n</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mi>f</mi> +                <mo>&#x02062;</mo> +                <mi>o</mi> +                <mo>&#x02062;</mo> +                <mi>x</mi> +                <mo>&#x02062;</mo> +                <mi>j</mi> +                <mo>&#x02062;</mo> +                <mi>u</mi> +                <mo>&#x02062;</mo> +                <mi>m</mi> +                <mo>&#x02062;</mo> +                <mi>p</mi> +                <mo>&#x02062;</mo> +                <mi>s</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="bold">o</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="bold">v</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="bold">e</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="bold">r</mi> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontweight="normal">+                    <mi>t</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontweight="normal">+                    <mi>h</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontweight="normal">+                    <mi>e</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mi mathvariant="sans-serif">l</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="sans-serif">a</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="sans-serif">z</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="sans-serif">y</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="monospace">d</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="monospace">o</mi> +                <mo>&#x02062;</mo> +                <mi mathvariant="monospace">g</mi> +              </mrow> +              <mrow>+                <mstyle fontstyle="italic">+                  <mtext>.</mtext> +                </mstyle> +              </mrow> +              <mrow>+                <mrow>+                  <mstyle fontweight="bold">+                    <mi>T</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontweight="bold">+                    <mi>h</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontweight="bold">+                    <mi>e</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontweight="bold">+                    <mi>e</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontweight="bold">+                    <mi>n</mi> +                  </mstyle> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mstyle fontweight="bold">+                    <mi>d</mi> +                  </mstyle> +                </mrow> +              </mrow> +              <mrow>+                <mstyle fontweight="bold">+                  <mtext>.</mtext> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +              <mrow>+                <mrow>+                  <mrow>+                    <mstyle displaystyle="true" scriptlevel="0">+                      <mfrac>+                        <mrow>+                          <mo form="prefix" rspace="0em">&#x02202;</mo> +                          <mi>f</mi> +                        </mrow> +                        <mrow>+                          <mo form="prefix" rspace="0em">&#x02202;</mo> +                          <msub>+                            <mi>x</mi> +                            <mn>1</mn> +                          </msub> +                        </mrow> +                      </mfrac> +                    </mstyle> +                  </mrow> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <msub>+                        <mi>c</mi> +                        <mn>1</mn> +                      </msub> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <msub>+                        <mi>c</mi> +                        <mn>2</mn> +                      </msub> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <mi>&#x02026;</mi> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <msub>+                        <mi>c</mi> +                        <mi>n</mi> +                      </msub> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.166667em" rspace="0.166667em">,</mo> +                <mrow>+                  <mrow>+                    <mstyle displaystyle="true" scriptlevel="0">+                      <mfrac>+                        <mrow>+                          <mo form="prefix" rspace="0em">&#x02202;</mo> +                          <mi>f</mi> +                        </mrow> +                        <mrow>+                          <mo form="prefix" rspace="0em">&#x02202;</mo> +                          <msub>+                            <mi>x</mi> +                            <mn>2</mn> +                          </msub> +                        </mrow> +                      </mfrac> +                    </mstyle> +                  </mrow> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <msub>+                        <mi>c</mi> +                        <mn>1</mn> +                      </msub> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <msub>+                        <mi>c</mi> +                        <mn>2</mn> +                      </msub> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <mi>&#x02026;</mi> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <msub>+                        <mi>c</mi> +                        <mi>n</mi> +                      </msub> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.166667em" rspace="0.000000em">,</mo> +                <mi>&#x02026;</mi> +                <mo form="infix" lspace="0.000000em" rspace="0.166667em">,</mo> +                <mrow>+                  <mrow>+                    <mstyle displaystyle="true" scriptlevel="0">+                      <mfrac>+                        <mrow>+                          <mo form="prefix" rspace="0em">&#x02202;</mo> +                          <mi>f</mi> +                        </mrow> +                        <mrow>+                          <mo form="prefix" rspace="0em">&#x02202;</mo> +                          <msub>+                            <mi>x</mi> +                            <mrow>+                              <mi>n</mi> +                              <mo>&#x0200B;</mo> +                              <mn>1</mn> +                            </mrow> +                          </msub> +                        </mrow> +                      </mfrac> +                    </mstyle> +                  </mrow> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <msub>+                        <mi>c</mi> +                        <mn>1</mn> +                      </msub> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <msub>+                        <mi>c</mi> +                        <mn>2</mn> +                      </msub> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <mi>&#x02026;</mi> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <msub>+                        <mi>c</mi> +                        <mi>n</mi> +                      </msub> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" rspace="0em">&#x02207;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mrow>+                      <mi>c</mi> +                      <mo>&#x02062;</mo> +                      <mi>u</mi> +                      <mo>&#x02062;</mo> +                      <mi>v</mi> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mrow>+                      <msup>+                        <mi>v</mi> +                        <mn>2</mn> +                      </msup> +                      <mo>&#x02062;</mo> +                      <mi>w</mi> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                <mrow>+                  <mrow>+                    <mi>u</mi> +                    <mo>&#x02062;</mo> +                    <mi>v</mi> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                  <mrow>+                    <mi>c</mi> +                    <mo>&#x02062;</mo> +                    <mi>v</mi> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                  <mrow>+                    <mrow>+                      <mi>c</mi> +                      <mo>&#x02062;</mo> +                      <mi>u</mi> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mrow>+                      <mn>2</mn> +                      <mo>&#x02062;</mo> +                      <mi>v</mi> +                      <mo>&#x02062;</mo> +                      <mi>w</mi> +                    </mrow> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                  <msup>+                    <mi>v</mi> +                    <mn>2</mn> +                  </msup> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <msub>+                        <mi>D</mi> +                        <mrow>+                          <mstyle fontweight="bold">+                            <mi>u</mi> +                          </mstyle> +                        </mrow> +                      </msub> +                      <mo>&#x02062;</mo> +                      <mrow>+                        <mi>f</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <mrow>+                            <mi>a</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>b</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>c</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                      </mrow> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mrow>+                      <mrow>+                        <mo form="prefix" lspace="0.277778em" rspace="0em">&#x02207;</mo> +                        <mrow>+                          <mi>f</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mrow>+                            <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                            <mrow>+                              <mi>a</mi> +                              <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                              <mi>b</mi> +                              <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                              <mi>c</mi> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                          </mrow> +                        </mrow> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                      <mi mathvariant="bold">u</mi> +                    </mrow> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <maligngroup></maligngroup> +                  <mo form="infix" lspace="thickmathspace" rspace="0.277778em">=</mo> +                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mrow>+                        <mfrac>+                          <mrow>+                            <mo form="prefix" rspace="0em">&#x02202;</mo> +                            <mi>f</mi> +                          </mrow> +                          <mrow>+                            <mo form="prefix" rspace="0em">&#x02202;</mo> +                            <mi>x</mi> +                          </mrow> +                        </mfrac> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <mrow>+                            <mi>a</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>b</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>c</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                      </mrow> +                      <mo>&#x02062;</mo> +                      <msub>+                        <mi>u</mi> +                        <mn>1</mn> +                      </msub> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mrow>+                      <mrow>+                        <mfrac>+                          <mrow>+                            <mo form="prefix" rspace="0em">&#x02202;</mo> +                            <mi>f</mi> +                          </mrow> +                          <mrow>+                            <mo form="prefix" rspace="0em">&#x02202;</mo> +                            <mi>y</mi> +                          </mrow> +                        </mfrac> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <mrow>+                            <mi>a</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>b</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>c</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                      </mrow> +                      <mo>&#x02062;</mo> +                      <msub>+                        <mi>u</mi> +                        <mn>2</mn> +                      </msub> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mrow>+                      <mrow>+                        <mfrac>+                          <mrow>+                            <mo form="prefix" rspace="0em">&#x02202;</mo> +                            <mi>f</mi> +                          </mrow> +                          <mrow>+                            <mo form="prefix" rspace="0em">&#x02202;</mo> +                            <mi>z</mi> +                          </mrow> +                        </mfrac> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <mrow>+                            <mi>a</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>b</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>c</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                      </mrow> +                      <mo>&#x02062;</mo> +                      <msub>+                        <mi>u</mi> +                        <mn>3</mn> +                      </msub> +                    </mrow> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>&#x003B8;</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02208;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                  <mrow>+                    <mrow>+                      <mi>&#x003C0;</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <msub>+                          <mi>X</mi> +                          <mn>3</mn> +                        </msub> +                        <mo>&#x02062;</mo> +                        <mi>&#x003C0;</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <mrow>+                          <mi mathcolor="gray">arccos</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mrow>+                            <mfrac>+                              <mn>1</mn> +                              <mn>7</mn> +                            </mfrac> +                            <mo>&#x02062;</mo> +                            <msqrt>+                              <mn>14</mn> +                            </msqrt> +                          </mrow> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </mrow> +                    <mo form="infix" stretchy="true" minsize="0" lspace="0.555556em" rspace="0.555556em">|</mo> +                    <mrow>+                      <msub>+                        <mi>X</mi> +                        <mn>3</mn> +                      </msub> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02208;</mo> +                      <mi>&#x02124;</mi> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.166667em" rspace="0.000000em">,</mo> +              <mrow>+                <mi>&#x003B8;</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02208;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                  <mrow>+                    <mrow>+                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <msub>+                          <mi>X</mi> +                          <mn>4</mn> +                        </msub> +                        <mo>&#x02062;</mo> +                        <mi>&#x003C0;</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mi>&#x003C0;</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <mrow>+                          <mi mathcolor="gray">arccos</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mrow>+                            <mfrac>+                              <mn>1</mn> +                              <mn>7</mn> +                            </mfrac> +                            <mo>&#x02062;</mo> +                            <msqrt>+                              <mn>14</mn> +                            </msqrt> +                          </mrow> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </mrow> +                    <mo form="infix" stretchy="true" minsize="0" lspace="0.555556em" rspace="0.555556em">|</mo> +                    <mrow>+                      <msub>+                        <mi>X</mi> +                        <mn>4</mn> +                      </msub> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02208;</mo> +                      <mi>&#x02124;</mi> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>P</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi>A</mi> +                <mo>&#x02062;</mo> +                <msup>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <msup>+                        <mi>A</mi> +                        <mi>T</mi> +                      </msup> +                      <mo>&#x02062;</mo> +                      <mi>A</mi> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                  <mrow>+                    <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                    <mn>1</mn> +                  </mrow> +                </msup> +                <mo>&#x02062;</mo> +                <msup>+                  <mi>A</mi> +                  <mi>T</mi> +                </msup> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo mathcolor="gray" form="prefix" rspace="0em">det</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mtable align="axis">+                    <mtr>+                      <mtd>+                        <mi>x</mi> +                      </mtd> +                      <mtd>+                        <mi>y</mi> +                      </mtd> +                      <mtd>+                        <mn>1</mn> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <mi>a</mi> +                      </mtd> +                      <mtd>+                        <mi>b</mi> +                      </mtd> +                      <mtd>+                        <mn>1</mn> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <mi>a</mi> +                      </mtd> +                      <mtd>+                        <mi>d</mi> +                      </mtd> +                      <mtd>+                        <mn>1</mn> +                      </mtd> +                    </mtr> +                  </mtable> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <mi>x</mi> +                  <mo>&#x02062;</mo> +                  <mi>b</mi> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mrow>+                  <mi>x</mi> +                  <mo>&#x02062;</mo> +                  <mi>d</mi> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mi>a</mi> +                  <mo>&#x02062;</mo> +                  <mi>d</mi> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mrow>+                  <mi>a</mi> +                  <mo>&#x02062;</mo> +                  <mi>b</mi> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>0</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mi>A</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mi>&#x003B8;</mi> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mi>A</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mi>&#x003B8;</mi> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.388889em">=</mo> +              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                  <mtable align="axis" columnalign="right right">+                    <mtr>+                      <mtd>+                        <mrow>+                          <mi mathcolor="gray">cos</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mi>&#x003B8;</mi> +                        </mrow> +                      </mtd> +                      <mtd>+                        <mrow>+                          <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                          <mrow>+                            <mi mathcolor="gray">sin</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mi>&#x003B8;</mi> +                          </mrow> +                        </mrow> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <mrow>+                          <mi mathcolor="gray">sin</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mi>&#x003B8;</mi> +                        </mrow> +                      </mtd> +                      <mtd>+                        <mrow>+                          <mi mathcolor="gray">cos</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mi>&#x003B8;</mi> +                        </mrow> +                      </mtd> +                    </mtr> +                  </mtable> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                  <mtable align="axis" columnalign="right right">+                    <mtr>+                      <mtd>+                        <mrow>+                          <mi mathcolor="gray">cos</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mi>&#x003B8;</mi> +                        </mrow> +                      </mtd> +                      <mtd>+                        <mrow>+                          <mi mathcolor="gray">sin</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mi>&#x003B8;</mi> +                        </mrow> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <mrow>+                          <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                          <mrow>+                            <mi mathcolor="gray">sin</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mi>&#x003B8;</mi> +                          </mrow> +                        </mrow> +                      </mtd> +                      <mtd>+                        <mrow>+                          <mi mathcolor="gray">cos</mi> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mi>&#x003B8;</mi> +                        </mrow> +                      </mtd> +                    </mtr> +                  </mtable> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>J</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mi>A</mi> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                <mtable align="axis">+                  <mtr>+                    <mtd>+                      <mrow>+                        <msub>+                          <mi>J</mi> +                          <msub>+                            <mi>n</mi> +                            <mn>1</mn> +                          </msub> +                        </msub> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <msub>+                            <mi>&#x003BB;</mi> +                            <mn>1</mn> +                          </msub> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                      </mrow> +                    </mtd> +                    <mtd>+                      <mn>0</mn> +                    </mtd> +                    <mtd>+                      <mi>&#x022EF;</mi> +                    </mtd> +                    <mtd>+                      <mn>0</mn> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mn>0</mn> +                    </mtd> +                    <mtd>+                      <mrow>+                        <msub>+                          <mi>J</mi> +                          <msub>+                            <mi>n</mi> +                            <mn>2</mn> +                          </msub> +                        </msub> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <msub>+                            <mi>&#x003BB;</mi> +                            <mn>2</mn> +                          </msub> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                      </mrow> +                    </mtd> +                    <mtd>+                      <mi>&#x022EF;</mi> +                    </mtd> +                    <mtd>+                      <mn>0</mn> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mtext>&#x022EE;</mtext> +                    </mtd> +                    <mtd>+                      <mtext>&#x022EE;</mtext> +                    </mtd> +                    <mtd>+                      <mtext>&#x022F1;</mtext> +                    </mtd> +                    <mtd>+                      <mtext>&#x022EE;</mtext> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mn>0</mn> +                    </mtd> +                    <mtd>+                      <mn>0</mn> +                    </mtd> +                    <mtd>+                      <mi>&#x022EF;</mi> +                    </mtd> +                    <mtd>+                      <mrow>+                        <msub>+                          <mi>J</mi> +                          <msub>+                            <mi>n</mi> +                            <mi>k</mi> +                          </msub> +                        </msub> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <msub>+                            <mi>&#x003BB;</mi> +                            <mi>k</mi> +                          </msub> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                      </mrow> +                    </mtd> +                  </mtr> +                </mtable> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo mathcolor="gray" form="prefix" rspace="0.388889em">det</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mtable align="axis">+                    <mtr>+                      <mtd>+                        <mrow>+                          <mrow>+                            <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                            <mn>4</mn> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mi>X</mi> +                        </mrow> +                      </mtd> +                      <mtd>+                        <mrow>+                          <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                          <mn>1</mn> +                        </mrow> +                      </mtd> +                      <mtd>+                        <mn>0</mn> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <mn>0</mn> +                      </mtd> +                      <mtd>+                        <mrow>+                          <mrow>+                            <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                            <mn>4</mn> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mi>X</mi> +                        </mrow> +                      </mtd> +                      <mtd>+                        <mn>0</mn> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <mn>0</mn> +                      </mtd> +                      <mtd>+                        <mn>0</mn> +                      </mtd> +                      <mtd>+                        <mrow>+                          <mrow>+                            <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                            <mn>4</mn> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mi>X</mi> +                        </mrow> +                      </mtd> +                    </mtr> +                  </mtable> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <msup>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mi>X</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mn>4</mn> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mn>3</mn> +              </msup> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mtable align="axis">+                    <mtr>+                      <mtd>+                        <mrow>+                          <mrow>+                            <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                            <mfrac>+                              <mn>1</mn> +                              <mn>2</mn> +                            </mfrac> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                          <mrow>+                            <mfrac>+                              <mn>1</mn> +                              <mn>6</mn> +                            </mfrac> +                            <mo>&#x02062;</mo> +                            <msqrt>+                              <mn>33</mn> +                            </msqrt> +                          </mrow> +                        </mrow> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <mn>1</mn> +                      </mtd> +                    </mtr> +                  </mtable> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02194;</mo> +              <mrow>+                <mfrac>+                  <mn>5</mn> +                  <mn>2</mn> +                </mfrac> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mrow>+                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                  <mo>&#x02062;</mo> +                  <msqrt>+                    <mn>33</mn> +                  </msqrt> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02225;</mo> +                <mi>A</mi> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02225;</mo> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="false" lspace="0.277778em" rspace="0.166667em">max</mo> +                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02260;</mo> +                    <mn>0</mn> +                  </mrow> +                </munder> +                <mfrac>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02225;</mo> +                    <mrow>+                      <mi>A</mi> +                      <mo>&#x02062;</mo> +                      <mi>x</mi> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02225;</mo> +                  </mrow> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02225;</mo> +                    <mi>x</mi> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02225;</mo> +                  </mrow> +                </mfrac> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mtable align="axis">+                    <mtr>+                      <mtd>+                        <msub>+                          <mi>a</mi> +                          <mrow>+                            <mn>1</mn> +                            <mo>&#x0200B;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msub> +                      </mtd> +                      <mtd>+                        <msub>+                          <mi>a</mi> +                          <mrow>+                            <mn>1</mn> +                            <mo>&#x0200B;</mo> +                            <mn>2</mn> +                          </mrow> +                        </msub> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <msub>+                          <mi>a</mi> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x0200B;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msub> +                      </mtd> +                      <mtd>+                        <msub>+                          <mi>a</mi> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x0200B;</mo> +                            <mn>2</mn> +                          </mrow> +                        </msub> +                      </mtd> +                    </mtr> +                  </mtable> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.388889em">+</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mtable align="axis">+                    <mtr>+                      <mtd>+                        <msub>+                          <mi>b</mi> +                          <mrow>+                            <mn>1</mn> +                            <mo>&#x0200B;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msub> +                      </mtd> +                      <mtd>+                        <msub>+                          <mi>b</mi> +                          <mrow>+                            <mn>1</mn> +                            <mo>&#x0200B;</mo> +                            <mn>2</mn> +                          </mrow> +                        </msub> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <msub>+                          <mi>b</mi> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x0200B;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msub> +                      </mtd> +                      <mtd>+                        <msub>+                          <mi>b</mi> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x0200B;</mo> +                            <mn>2</mn> +                          </mrow> +                        </msub> +                      </mtd> +                    </mtr> +                  </mtable> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.388889em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                <mtable align="axis">+                  <mtr>+                    <mtd>+                      <mrow>+                        <msub>+                          <mi>a</mi> +                          <mrow>+                            <mn>1</mn> +                            <mo>&#x0200B;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msub> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <msub>+                          <mi>b</mi> +                          <mrow>+                            <mn>1</mn> +                            <mo>&#x0200B;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msub> +                      </mrow> +                    </mtd> +                    <mtd>+                      <mrow>+                        <msub>+                          <mi>a</mi> +                          <mrow>+                            <mn>1</mn> +                            <mo>&#x0200B;</mo> +                            <mn>2</mn> +                          </mrow> +                        </msub> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <msub>+                          <mi>b</mi> +                          <mrow>+                            <mn>1</mn> +                            <mo>&#x0200B;</mo> +                            <mn>2</mn> +                          </mrow> +                        </msub> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mrow>+                        <msub>+                          <mi>a</mi> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x0200B;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msub> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <msub>+                          <mi>b</mi> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x0200B;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msub> +                      </mrow> +                    </mtd> +                    <mtd>+                      <mrow>+                        <msub>+                          <mi>a</mi> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x0200B;</mo> +                            <mn>2</mn> +                          </mrow> +                        </msub> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <msub>+                          <mi>b</mi> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x0200B;</mo> +                            <mn>2</mn> +                          </mrow> +                        </msub> +                      </mrow> +                    </mtd> +                  </mtr> +                </mtable> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>f</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                    <mtable align="axis">+                      <mtr>+                        <mtd>+                          <mn>1</mn> +                        </mtd> +                        <mtd>+                          <mn>2</mn> +                        </mtd> +                      </mtr> +                      <mtr>+                        <mtd>+                          <mn>4</mn> +                        </mtd> +                        <mtd>+                          <mn>3</mn> +                        </mtd> +                      </mtr> +                    </mtable> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <msup>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                    <mtable align="axis">+                      <mtr>+                        <mtd>+                          <mn>1</mn> +                        </mtd> +                        <mtd>+                          <mn>2</mn> +                        </mtd> +                      </mtr> +                      <mtr>+                        <mtd>+                          <mn>4</mn> +                        </mtd> +                        <mtd>+                          <mn>3</mn> +                        </mtd> +                      </mtr> +                    </mtable> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                  </mrow> +                  <mn>2</mn> +                </msup> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mrow>+                  <mn>5</mn> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                    <mtable align="axis">+                      <mtr>+                        <mtd>+                          <mn>1</mn> +                        </mtd> +                        <mtd>+                          <mn>2</mn> +                        </mtd> +                      </mtr> +                      <mtr>+                        <mtd>+                          <mn>4</mn> +                        </mtd> +                        <mtd>+                          <mn>3</mn> +                        </mtd> +                      </mtr> +                    </mtable> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mn>2</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                <mtable align="axis">+                  <mtr>+                    <mtd>+                      <mn>2</mn> +                    </mtd> +                    <mtd>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mn>2</mn> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mn>4</mn> +                      </mrow> +                    </mtd> +                    <mtd>+                      <mn>0</mn> +                    </mtd> +                  </mtr> +                </mtable> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="true" lspace="0.277778em" rspace="0.166667em">lim</mo> +                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>1</mn> +                  </mrow> +                </munder> +                <mrow>+                  <munderover>+                    <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" lspace="0.166667em" rspace="0em">&#x02211;</mo> +                    <mn>1</mn> +                    <mn>2</mn> +                  </munderover> +                  <mi>a</mi> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msubsup>+                  <mo form="prefix" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" rspace="0em">&#x0222B;</mo> +                  <mi>a</mi> +                  <mi>b</mi> +                </msubsup> +                <mrow>+                  <mrow>+                    <mi>f</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mi>x</mi> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="false" lspace="0.277778em" rspace="0.166667em">lim</mo> +                  <mrow>+                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02225;</mo> +                      <mi>P</mi> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02225;</mo> +                    </mrow> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                    <mn>0</mn> +                  </mrow> +                </munder> +                <mrow>+                  <munderover>+                    <mo form="prefix" movablelimits="false" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" lspace="0.166667em" rspace="0em">&#x02211;</mo> +                    <mrow>+                      <mi>i</mi> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mn>1</mn> +                    </mrow> +                    <mi>n</mi> +                  </munderover> +                  <mrow>+                    <mrow>+                      <mi>f</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <msub>+                          <mover>+                            <mi>x</mi> +                            <mo stretchy="true" accent="true">&#x000AF;</mo> +                          </mover> +                          <mi>i</mi> +                        </msub> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </mrow> +                    <mo>&#x02062;</mo> +                    <mrow>+                      <mo form="prefix" lspace="0.166667em" rspace="0em">&#x00394;</mo> +                      <msub>+                        <mi>x</mi> +                        <mi>i</mi> +                      </msub> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msubsup>+                  <mo form="prefix" largeop="false" stretchy="false" rspace="0em">&#x0222B;</mo> +                  <mi>a</mi> +                  <mi>b</mi> +                </msubsup> +                <mrow>+                  <mrow>+                    <mi>f</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mi>x</mi> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="true" lspace="0.277778em" rspace="0.166667em">lim</mo> +                  <mrow>+                    <mi>n</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                    <mi>&#x0221E;</mi> +                  </mrow> +                </munder> +                <mrow>+                  <mfrac>+                    <mrow>+                      <mi>b</mi> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02212;</mo> +                      <mi>a</mi> +                    </mrow> +                    <mi>n</mi> +                  </mfrac> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <munderover>+                      <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" lspace="0.166667em" rspace="0em">&#x02211;</mo> +                      <mrow>+                        <mi>i</mi> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                        <mn>1</mn> +                      </mrow> +                      <mi>n</mi> +                    </munderover> +                    <mrow>+                      <mi>f</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <mrow>+                          <mi>a</mi> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mrow>+                            <mi>i</mi> +                            <mo>&#x02062;</mo> +                            <mfrac>+                              <mrow>+                                <mi>b</mi> +                                <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02212;</mo> +                                <mi>a</mi> +                              </mrow> +                              <mi>n</mi> +                            </mfrac> +                          </mrow> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msubsup>+                  <mo form="prefix" largeop="false" stretchy="false" rspace="0em">&#x0222B;</mo> +                  <mn>0</mn> +                  <mn>2</mn> +                </msubsup> +                <mrow>+                  <msup>+                    <mi>x</mi> +                    <mn>5</mn> +                  </msup> +                  <mo>&#x02062;</mo> +                  <msqrt>+                    <mrow>+                      <msup>+                        <mi>x</mi> +                        <mn>3</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mn>1</mn> +                    </mrow> +                  </msqrt> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <msubsup>+                  <mo form="prefix" largeop="false" stretchy="false" lspace="0.277778em" rspace="0em">&#x0222B;</mo> +                  <mn>1</mn> +                  <mn>3</mn> +                </msubsup> +                <mrow>+                  <mfrac>+                    <mn>2</mn> +                    <mn>3</mn> +                  </mfrac> +                  <mo>&#x02062;</mo> +                  <mi>u</mi> +                  <mo>&#x02062;</mo> +                  <mfrac>+                    <msqrt>+                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <msup>+                          <mi>u</mi> +                          <mn>2</mn> +                        </msup> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </msqrt> +                    <msup>+                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <mrow>+                          <msup>+                            <mi>u</mi> +                            <mn>2</mn> +                          </msup> +                          <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02212;</mo> +                          <mn>1</mn> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                      <mfrac>+                        <mn>2</mn> +                        <mn>3</mn> +                      </mfrac> +                    </msup> +                  </mfrac> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <mrow>+                        <msup>+                          <mi>u</mi> +                          <mn>2</mn> +                        </msup> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mrow>+                            <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                            <mrow>+                              <msup>+                                <mi>u</mi> +                                <mn>2</mn> +                              </msup> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                              <mn>1</mn> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                          </mrow> +                          <mfrac>+                            <mn>2</mn> +                            <mn>3</mn> +                          </mfrac> +                        </msup> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <msup>+                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                          <mrow>+                            <msup>+                              <mi>u</mi> +                              <mn>2</mn> +                            </msup> +                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                            <mn>1</mn> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                        </mrow> +                        <mfrac>+                          <mn>2</mn> +                          <mn>3</mn> +                        </mfrac> +                      </msup> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                    <mi>u</mi> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" rspace="0em">&#x0222B;</mo> +                <mrow>+                  <mrow>+                    <mi>f</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mrow>+                        <mi>g</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mi>x</mi> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                  <mo lspace="0.333333em">&#x02062;</mo> +                  <mrow>+                    <msup>+                      <mi>g</mi> +                      <mo form="postfix">&#x02032;</mo> +                    </msup> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mi>x</mi> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" lspace="0.277778em" rspace="0em">&#x0222B;</mo> +                <mrow>+                  <mrow>+                    <mi>f</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mi>u</mi> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                    <mi>u</mi> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mn>2</mn> +                <mo>&#x02062;</mo> +                <mrow>+                  <munderover>+                    <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" lspace="0.166667em" rspace="0em">&#x02211;</mo> +                    <mrow>+                      <mi>n</mi> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mn>1</mn> +                    </mrow> +                    <mn>100</mn> +                  </munderover> +                  <mrow>+                    <mi>n</mi> +                    <mo>&#x02062;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mrow>+                        <mi>n</mi> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                        <mn>1</mn> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="false" rspace="0.166667em">lim</mo> +                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                    <mn>0</mn> +                  </mrow> +                </munder> +                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mfrac>+                      <mn>1</mn> +                      <mi>x</mi> +                    </mfrac> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="thickmathspace">=</mo> +              <mrow>+                <mrow>+                  <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                  <mn>1</mn> +                </mrow> +                <mo form="infix" lspace="0.000000em" rspace="0.000000em">..</mo> +                <mn>1</mn> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>h</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mi>i</mi> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mi>j</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mrow>+                      <mn>2</mn> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mi>j</mi> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mi>g</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mi>i</mi> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mrow>+                      <mi>j</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mn>1</mn> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mi>f</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mrow>+                        <mi>g</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mi>i</mi> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>&#x025B3;</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.166667em">:</mo> +              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                  <mrow>+                    <mn>0</mn> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mn>1</mn> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                  <mrow>+                    <mn>0</mn> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mn>1</mn> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>0</mn> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x025BD;</mo> +                <mi>x</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mi>x</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x025B3;</mo> +                <mi>y</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <msup>+                  <mi>h</mi> +                  <mrow>+                    <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                    <mn>1</mn> +                  </mrow> +                </msup> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mrow>+                      <mi>h</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <mi>x</mi> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </mrow> +                    <mo>&#x02062;</mo> +                    <mrow>+                      <mi>h</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <mi>y</mi> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x025B3;</mo> +                <mi>y</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <msup>+                  <mi>f</mi> +                  <mrow>+                    <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                    <mn>1</mn> +                  </mrow> +                </msup> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mo mathcolor="gray" form="prefix" rspace="0em">max</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                      <mrow>+                        <mrow>+                          <mrow>+                            <mi>f</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                              <mi>x</mi> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                            </mrow> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mrow>+                            <mi>f</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                              <mi>y</mi> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                            </mrow> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                          <mn>1</mn> +                        </mrow> +                        <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                        <mn>0</mn> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x025BD;</mo> +                <mi>y</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi>&#x003B7;</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mrow>+                      <mi>&#x003B7;</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <mi>x</mi> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x025B3;</mo> +                    <mrow>+                      <mi>&#x003B7;</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                        <mi>y</mi> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo>&#x02062;</mo> +                <mrow>+                  <msub>+                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x025B3;</mo> +                    <mn>0</mn> +                  </msub> +                  <mi>y</mi> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                <mtable align="axis">+                  <mtr>+                    <mtd>+                      <mrow>+                        <mi>x</mi> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02227;</mo> +                        <mi>y</mi> +                      </mrow> +                    </mtd> +                    <mtd>+                      <mtext mathcolor="black">if</mtext> +                    </mtd> +                    <mtd>+                      <mrow>+                        <mi>x</mi> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02228;</mo> +                        <mrow>+                          <mi>y</mi> +                          <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                          <mn>1</mn> +                        </mrow> +                      </mrow> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mn>0</mn> +                    </mtd> +                    <mtd>+                      <mtext mathcolor="black">if</mtext> +                    </mtd> +                    <mtd>+                      <mrow>+                        <mi>x</mi> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02228;</mo> +                        <mrow>+                          <mi>y</mi> +                          <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                          <mn>1</mn> +                        </mrow> +                      </mrow> +                    </mtd> +                  </mtr> +                </mtable> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace"></mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="true" rspace="0.166667em">lim</mo> +                  <mrow>+                    <mi>a</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                    <msup>+                      <mn>1</mn> +                      <mo>+</mo> +                    </msup> +                  </mrow> +                </munder> +                <mrow>+                  <msub>+                    <mi mathcolor="gray">log</mi> +                    <mi>a</mi> +                  </msub> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                    <mrow>+                      <mn>1</mn> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mstyle displaystyle="true" scriptlevel="0">+                          <mfrac>+                            <mrow>+                              <mrow>+                                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                                <mrow>+                                  <msup>+                                    <mi>a</mi> +                                    <mi>x</mi> +                                  </msup> +                                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                                  <mn>1</mn> +                                </mrow> +                                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                              </mrow> +                              <mo>&#x02062;</mo> +                              <mrow>+                                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                                <mrow>+                                  <msup>+                                    <mi>a</mi> +                                    <mi>y</mi> +                                  </msup> +                                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                                  <mn>1</mn> +                                </mrow> +                                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                              </mrow> +                            </mrow> +                            <mrow>+                              <mi>a</mi> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                              <mn>1</mn> +                            </mrow> +                          </mfrac> +                        </mstyle> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="true" lspace="0.277778em" rspace="0.166667em">lim</mo> +                  <mrow>+                    <mi>a</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                    <msup>+                      <mn>1</mn> +                      <mo>&#x02212;</mo> +                    </msup> +                  </mrow> +                </munder> +                <mrow>+                  <msub>+                    <mi mathcolor="gray">log</mi> +                    <mi>a</mi> +                  </msub> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                    <mrow>+                      <mn>1</mn> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mstyle displaystyle="true" scriptlevel="0">+                          <mfrac>+                            <mrow>+                              <mrow>+                                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                                <mrow>+                                  <msup>+                                    <mi>a</mi> +                                    <mi>x</mi> +                                  </msup> +                                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                                  <mn>1</mn> +                                </mrow> +                                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                              </mrow> +                              <mo>&#x02062;</mo> +                              <mrow>+                                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                                <mrow>+                                  <msup>+                                    <mi>a</mi> +                                    <mi>y</mi> +                                  </msup> +                                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                                  <mn>1</mn> +                                </mrow> +                                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                              </mrow> +                            </mrow> +                            <mrow>+                              <mi>a</mi> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                              <mn>1</mn> +                            </mrow> +                          </mfrac> +                        </mstyle> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi>x</mi> +                <mo>&#x02062;</mo> +                <mi>y</mi> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>g</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mi>x</mi> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi mathcolor="gray">exp</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                    <mrow>+                      <mstyle displaystyle="true" scriptlevel="0">+                        <mfrac>+                          <mrow>+                            <mn>1</mn> +                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                            <msup>+                              <mrow>+                                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                                <mrow>+                                  <mn>1</mn> +                                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                                  <mi>x</mi> +                                </mrow> +                                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                              </mrow> +                              <mi>a</mi> +                            </msup> +                          </mrow> +                          <mrow>+                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                              <mrow>+                                <msup>+                                  <mn>2</mn> +                                  <mi>a</mi> +                                </msup> +                                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                                <mn>1</mn> +                              </mrow> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                            </mrow> +                            <mo>&#x02062;</mo> +                            <msup>+                              <mrow>+                                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                                <mrow>+                                  <mn>1</mn> +                                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                                  <mi>x</mi> +                                </mrow> +                                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                              </mrow> +                              <mi>a</mi> +                            </msup> +                          </mrow> +                        </mfrac> +                      </mstyle> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo mathcolor="gray" form="prefix" rspace="0em">Aut</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mi mathvariant="bold">I</mi> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                <mrow>+                  <mi>f</mi> +                  <mo form="infix" lspace="0.000000em" rspace="0.166667em">:</mo> +                  <mrow>+                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                      <mrow>+                        <mn>0</mn> +                        <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                        <mn>1</mn> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                    </mrow> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                      <mrow>+                        <mn>0</mn> +                        <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                        <mn>1</mn> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                    </mrow> +                  </mrow> +                </mrow> +                <mspace width="thickmathspace"></mspace> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                  <mtable align="axis" columnalign="left">+                    <mtr>+                      <mtd>+                        <mi>f</mi> +                        <mtext mathcolor="black">&#x02002;is one-to-one and onto, and</mtext> +                      </mtd> +                    </mtr> +                    <mtr>+                      <mtd>+                        <mrow>+                          <mi>x</mi> +                          <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02264;</mo> +                          <mi>y</mi> +                        </mrow> +                        <mtext mathcolor="black">&#x02002;implies&#x02002;</mtext> +                        <mrow>+                          <mrow>+                            <mi>f</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                              <mi>x</mi> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                            </mrow> +                          </mrow> +                          <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02264;</mo> +                          <mrow>+                            <mi>f</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                              <mi>y</mi> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                            </mrow> +                          </mrow> +                        </mrow> +                      </mtd> +                    </mtr> +                  </mtable> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace"></mo> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <msup>+                    <mi>x</mi> +                    <mn>2</mn> +                  </msup> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                  <msup>+                    <mi>y</mi> +                    <mn>2</mn> +                  </msup> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <msup>+                  <mi>r</mi> +                  <mn>2</mn> +                </msup> +              </mrow> +              <mo form="infix" lspace="0.000000em" rspace="0.166667em">,</mo> +              <mtext>&#x02003;&#x02003;</mtext> +              <mrow>+                <mrow>+                  <mi mathcolor="gray">tan</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mi>y</mi> +                      <mi>x</mi> +                    </mfrac> +                  </mstyle> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <msqrt>+                <mn>2</mn> +              </msqrt> +              <mo>&#x02062;</mo> +              <msqrt>+                <mrow>+                  <mn>1</mn> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                  <msup>+                    <mi>t</mi> +                    <mn>2</mn> +                  </msup> +                </mrow> +              </msqrt> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +              <mrow>+                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mrow>+                      <mn>2</mn> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mi mathcolor="gray">sin</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mi>t</mi> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mn>10</mn> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mi mathcolor="gray">cos</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>t</mi> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.000000em" rspace="0.555556em">,</mo> +                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mrow>+                      <mn>2</mn> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mi mathcolor="gray">cos</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mi>t</mi> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mn>10</mn> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>t</mi> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                <mrow>+                  <mn>3</mn> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mn>3</mn> +                      <mo>&#x02062;</mo> +                      <mi>t</mi> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                <mrow>+                  <mrow>+                    <mi>t</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>0</mn> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                  <mrow>+                    <mi>s</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>0</mn> +                  </mrow> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +              </mrow> +              <mo form="infix" lspace="0.166667em" rspace="0.166667em">,</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                <mrow>+                  <mrow>+                    <mi>t</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mi>&#x003C0;</mi> +                  </mrow> +                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                  <mrow>+                    <mi>s</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mi>&#x003C0;</mi> +                  </mrow> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable frame="solid" framespacing="0.8em 1.0ex">+                <mtr>+                  <mtd>+                    <mrow>+                      <mtable align="axis">+                        <mtr>+                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                        </mtr> +                        <mtr>+                          <mtd>+                            <mn>10</mn> +                          </mtd> +                          <mtd>+                            <mn>9</mn> +                          </mtd> +                          <mtd>+                            <mn>8</mn> +                          </mtd> +                          <mtd>+                            <mn>7</mn> +                          </mtd> +                          <mtd>+                            <mn>6</mn> +                          </mtd> +                          <mtd>+                            <mn>5</mn> +                          </mtd> +                          <mtd>+                            <mn>4</mn> +                          </mtd> +                          <mtd>+                            <mn>3</mn> +                          </mtd> +                          <mtd>+                            <mn>2</mn> +                          </mtd> +                          <mtd>+                            <mn>1</mn> +                          </mtd> +                        </mtr> +                      </mtable> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable frame="solid" framespacing="0.8em 1.0ex">+                <mtr>+                  <mtd>+                    <mtext mathcolor="black">testing&#x02002;</mtext> +                    <mrow>+                      <msup>+                        <mi>x</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                    <mtext mathcolor="black">&#x02002;end.</mtext> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable frame="solid" framespacing="0.8em 1.0ex">+                <mtr>+                  <mtd>+                    <mtext mathcolor="black">x</mtext> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable frame="solid" framespacing="0.8em 1.0ex">+                <mtr>+                  <mtd>+                    <mrow>+                      <mi>x</mi> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable frame="solid">+                <mtr>+                  <mtd>+                    <mtext mathcolor="black">x</mtext> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable frame="solid">+                <mtr>+                  <mtd>+                    <mrow>+                      <mi>x</mi> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mfrac>+                  <mrow>+                    <mo form="prefix" rspace="0em">&#x02146;</mo> +                    <mi>f</mi> +                  </mrow> +                  <mrow>+                    <mo form="prefix" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                </mfrac> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <msub>+                    <mi>x</mi> +                    <mn>1</mn> +                  </msub> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>5</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" largeop="false" stretchy="false" rspace="0em">&#x0222B;</mo> +                <mrow>+                  <mi>x</mi> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" largeop="false" stretchy="false" lspace="0.277778em" rspace="0em">&#x0222C;</mo> +                <mrow>+                  <mi>x</mi> +                  <mo>&#x02062;</mo> +                  <mi>y</mi> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>y</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" largeop="false" stretchy="false" lspace="0.277778em" rspace="0em">&#x0222D;</mo> +                <mrow>+                  <mi>x</mi> +                  <mo>&#x02062;</mo> +                  <mi>y</mi> +                  <mo>&#x02062;</mo> +                  <mi>z</mi> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>y</mi> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>z</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" largeop="false" stretchy="false" lspace="0.277778em" rspace="0em">&#x02A0C;</mo> +                <mrow>+                  <mi>x</mi> +                  <mo>&#x02062;</mo> +                  <mi>y</mi> +                  <mo>&#x02062;</mo> +                  <mi>z</mi> +                  <mo>&#x02062;</mo> +                  <mi>t</mi> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>y</mi> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>z</mi> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                    <mi>t</mi> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" mathcolor="gray" rspace="0em">mod</mo> +              <mi>a</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>5</mn> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em" mathcolor="gray">mod</mo> +                <mn>3</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>2</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mi>f</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mn>0</mn> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em" mathcolor="gray">mod</mo> +                <mn>3</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>1</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mrow>+                    <mn>5</mn> +                    <mo>&#x02062;</mo> +                    <mi>x</mi> +                  </mrow> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                  <mn>4</mn> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02261;</mo> +                <mn>8</mn> +              </mrow> +              <mo lspace="0.444444em">&#x0200B;</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                <mrow>+                  <mo form="prefix" mathcolor="gray" rspace="0em">mod</mo> +                  <mn>13</mn> +                </mrow> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>a</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mrow>+                      <mn>5</mn> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mn>3</mn> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">/</mo> +                  <mn>5</mn> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em" mathcolor="gray">mod</mo> +                <mn>7</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>6</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>x</mi> +                          <mn>2</mn> +                        </msup> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mi>x</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mn>2</mn> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <mi>x</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mn>1</mn> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em" mathcolor="gray">mod</mo> +                <mn>3</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mn>2</mn> +                <mo>&#x02062;</mo> +                <msup>+                  <mi>x</mi> +                  <mn>2</mn> +                </msup> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis" frame="solid" rowlines="solid none" columnlines="solid solid" columnalign="right center left">+                <mtr>+                  <mtd>+                    <mo>+</mo> +                  </mtd> +                  <mtd>+                    <mn>0</mn> +                  </mtd> +                  <mtd>+                    <mn>1</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>000</mn> +                  </mtd> +                  <mtd>+                    <mn>000</mn> +                  </mtd> +                  <mtd>+                    <mn>111</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>1</mn> +                  </mtd> +                  <mtd>+                    <mn>1</mn> +                  </mtd> +                  <mtd>+                    <mn>0</mn> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mn>4.&#x02009;974&#x02009;9</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac>+                <mo form="prefix">&#x02146;</mo> +                <mrow>+                  <mo form="prefix" rspace="0em">&#x02146;</mo> +                  <mi>x</mi> +                </mrow> +              </mfrac> +              <mrow>+                <mi>F</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mi>x</mi> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +              <mrow>+                <mn>86.333</mn> +                <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                <mn>146.33</mn> +                <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                <mn>129.33</mn> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi mathcolor="gray">BinomialDist</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">;</mo> +                    <mrow>+                      <mi>n</mi> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <mi>p</mi> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <munderover>+                  <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" lspace="0.277778em" rspace="0em">&#x02211;</mo> +                  <mrow>+                    <mi>k</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>0</mn> +                  </mrow> +                  <mi>x</mi> +                </munderover> +                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +                    <mfrac linethickness="0px">+                      <mi>n</mi> +                      <mi>k</mi> +                    </mfrac> +                    <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <msup>+                    <mi>p</mi> +                    <mi>k</mi> +                  </msup> +                  <mo>&#x02062;</mo> +                  <msup>+                    <mi>q</mi> +                    <mrow>+                      <mi>n</mi> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02212;</mo> +                      <mi>k</mi> +                    </mrow> +                  </msup> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo mathcolor="gray" form="prefix" rspace="0em">Pr</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mi>X</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02264;</mo> +                    <mn>54</mn> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi mathcolor="gray">BinomialDist</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mn>54</mn> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">;</mo> +                    <mrow>+                      <mn>100</mn> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                      <mn>.55</mn> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>.45846</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>k</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mrow>+                  <mo mathcolor="gray" form="prefix" lspace="0.277778em" rspace="0em">max</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +                    <mrow>+                      <mrow>+                        <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                        <mrow>+                          <mfrac>+                            <mrow>+                              <mo form="prefix" rspace="0em">&#x02202;</mo> +                              <mi>f</mi> +                            </mrow> +                            <mrow>+                              <mo form="prefix" rspace="0em">&#x02202;</mo> +                              <mi>y</mi> +                            </mrow> +                          </mfrac> +                          <mo rspace="0.166667em">&#x02061;</mo> +                          <mrow>+                            <mo form="prefix" fence="true" stretchy="false">(</mo> +                            <mrow>+                              <mi>x</mi> +                              <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                              <mi>y</mi> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="false">)</mo> +                          </mrow> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +                      </mrow> +                      <mo form="infix" lspace="0.166667em" rspace="0.166667em">:</mo> +                      <mrow>+                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>x</mi> +                            <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                            <mi>y</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                        <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02208;</mo> +                        <mi>D</mi> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +                  </mrow> +                </mrow> +              </mrow> +              <mtext mathcolor="black">.</mtext> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>m</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="false" lspace="0.277778em" rspace="0.166667em">lim</mo> +                  <mrow>+                    <mi>x</mi> +                    <mover>+                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02192;</mo> +                      <mrow></mrow> +                    </mover> +                    <mi>a</mi> +                  </mrow> +                </munder> +                <mfrac>+                  <mrow>+                    <mrow>+                      <mi>f</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mi>x</mi> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mrow>+                      <mi>f</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mi>a</mi> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mrow> +                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mi>a</mi> +                  </mrow> +                </mfrac> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                <mi>A</mi> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                <mtable align="axis" columnalign="left left left left left left">+                  <mtr>+                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mn>1</mn> +                          <mo>&#x0200B;</mo> +                          <mn>1</mn> +                        </mrow> +                      </msub> +                    </mtd> +                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mn>1</mn> +                          <mo>&#x0200B;</mo> +                          <mn>2</mn> +                        </mrow> +                      </msub> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mn>1</mn> +                          <mo>&#x0200B;</mo> +                          <mi>n</mi> +                        </mrow> +                      </msub> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mn>2</mn> +                          <mo>&#x0200B;</mo> +                          <mn>1</mn> +                        </mrow> +                      </msub> +                    </mtd> +                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mn>2</mn> +                          <mo>&#x0200B;</mo> +                          <mn>2</mn> +                        </mrow> +                      </msub> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mn>2</mn> +                          <mo>&#x0200B;</mo> +                          <mi>n</mi> +                        </mrow> +                      </msub> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mspace width="veryverythinmathspace"></mspace> +                    </mtd> +                    <mtd>+                      <mspace width="veryverythinmathspace"></mspace> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mspace width="veryverythinmathspace"></mspace> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mspace width="veryverythinmathspace"></mspace> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mspace width="veryverythinmathspace"></mspace> +                    </mtd> +                    <mtd>+                      <mspace width="veryverythinmathspace"></mspace> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mi>n</mi> +                          <mo>&#x0200B;</mo> +                          <mn>1</mn> +                        </mrow> +                      </msub> +                    </mtd> +                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mi>n</mi> +                          <mo>&#x0200B;</mo> +                          <mn>2</mn> +                        </mrow> +                      </msub> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x022C5;</mo> +                    </mtd> +                    <mtd>+                      <msub>+                        <mi>a</mi> +                        <mrow>+                          <mi>n</mi> +                          <mo>&#x0200B;</mo> +                          <mi>n</mi> +                        </mrow> +                      </msub> +                    </mtd> +                  </mtr> +                </mtable> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <msub>+                    <mi>a</mi> +                    <mrow>+                      <mn>1</mn> +                      <mo>&#x0200B;</mo> +                      <mn>1</mn> +                    </mrow> +                  </msub> +                  <mo>&#x02062;</mo> +                  <msub>+                    <mi>A</mi> +                    <mrow>+                      <mn>1</mn> +                      <mo>&#x0200B;</mo> +                      <mn>1</mn> +                    </mrow> +                  </msub> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <msub>+                    <mi>a</mi> +                    <mrow>+                      <mn>1</mn> +                      <mo>&#x0200B;</mo> +                      <mn>2</mn> +                    </mrow> +                  </msub> +                  <mo>&#x02062;</mo> +                  <msub>+                    <mi>A</mi> +                    <mrow>+                      <mn>1</mn> +                      <mo>&#x0200B;</mo> +                      <mn>2</mn> +                    </mrow> +                  </msub> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mi>&#x022EF;</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <msub>+                    <mi>a</mi> +                    <mrow>+                      <mn>1</mn> +                      <mo>&#x0200B;</mo> +                      <mi>n</mi> +                    </mrow> +                  </msub> +                  <mo>&#x02062;</mo> +                  <msub>+                    <mi>A</mi> +                    <mrow>+                      <mn>1</mn> +                      <mo>&#x0200B;</mo> +                      <mi>n</mi> +                    </mrow> +                  </msub> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mn>1</mn> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="false">(</mo> +                <mtext mathcolor="green">hl text&#x02002;</mtext> +                <mrow>+                  <mi>x</mi> +                </mrow> +                <mtext mathcolor="black">&#x02002;end.</mtext> +                <mo form="postfix" fence="true" stretchy="false">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mn>1</mn> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="false">(</mo> +                <mtext mathcolor="green">hl to URI&#x02002;</mtext> +                <mrow>+                  <mi>x</mi> +                </mrow> +                <mtext mathcolor="black">&#x02002;end</mtext> +                <mo form="postfix" fence="true" stretchy="false">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow id="ht">+              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mn>1</mn> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="false">(</mo> +                <mtext mathcolor="green">sex</mtext> +                <mo form="postfix" fence="true" stretchy="false">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mn>1</mn> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="false">(</mo> +                <mtext mathcolor="green">jbm</mtext> +                <mo form="postfix" fence="true" stretchy="false">)</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr></mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mi>f</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mi>x</mi> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                </mrow> +                <mo>&#x02062;</mo> +                <mi>g</mi> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">[</mo> +                  <mi>y</mi> +                  <mo form="postfix" fence="true" stretchy="false">]</mo> +                </mrow> +                <mo>&#x02062;</mo> +                <mi>h</mi> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">{</mo> +                  <mi>z</mi> +                  <mo form="postfix" fence="true" stretchy="false">}</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">&#x0230A;</mo> +                  <mi>a</mi> +                  <mo form="postfix" fence="true" stretchy="false">&#x0230B;</mo> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">&#x02308;</mo> +                  <mi>b</mi> +                  <mo form="postfix" fence="true" stretchy="false">&#x02309;</mo> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">&#x02329;</mo> +                  <mi>c</mi> +                  <mo form="postfix" fence="true" stretchy="false">&#x0232A;</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace"></mo> +                <mfrac>+                  <mn>123</mn> +                  <mfrac>+                    <mn>456</mn> +                    <mi>A</mi> +                  </mfrac> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02225;</mo> +                <mfrac>+                  <mi>A</mi> +                  <mfrac>+                    <mi>B</mi> +                    <mi>A</mi> +                  </mfrac> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace"></mo> +              </mrow> +              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">/</mo> +                  <mfrac>+                    <mn>1</mn> +                    <mfrac>+                      <mn>2</mn> +                      <mi>A</mi> +                    </mfrac> +                  </mfrac> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">/</mo> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mfrac>+                    <mn>3</mn> +                    <mfrac>+                      <mn>4</mn> +                      <mi>A</mi> +                    </mfrac> +                  </mfrac> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02195;</mo> +                <mfrac>+                  <mn>5</mn> +                  <mfrac>+                    <mn>6</mn> +                    <mi>A</mi> +                  </mfrac> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02195;</mo> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace"></mo> +                <mfrac>+                  <mn>7</mn> +                  <mfrac>+                    <mn>8</mn> +                    <mi>A</mi> +                  </mfrac> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace"></mo> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x021D5;</mo> +                <mfrac>+                  <mfrac>+                    <mn>9</mn> +                    <mn>20</mn> +                  </mfrac> +                  <mfrac>+                    <mn>10</mn> +                    <mi>A</mi> +                  </mfrac> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x021D5;</mo> +              </mrow> +              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02191;</mo> +                  <mfrac>+                    <mn>11</mn> +                    <mfrac>+                      <mn>12</mn> +                      <mi>A</mi> +                    </mfrac> +                  </mfrac> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02191;</mo> +                </mrow> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x021D1;</mo> +                  <mfrac>+                    <mn>13</mn> +                    <mfrac>+                      <mn>14</mn> +                      <mi>A</mi> +                    </mfrac> +                  </mfrac> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x021D1;</mo> +                </mrow> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02193;</mo> +                <mfrac>+                  <mn>15</mn> +                  <mfrac>+                    <mn>16</mn> +                    <mi>A</mi> +                  </mfrac> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02193;</mo> +              </mrow> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x021D3;</mo> +                <mfrac>+                  <mn>17</mn> +                  <mfrac>+                    <mn>18</mn> +                    <mi>A</mi> +                  </mfrac> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x021D3;</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo>&#x02062;</mo> +              <mtable align="axis" columnalign="left left">+                <mtr>+                  <mtd>+                    <mrow>+                      <mi>x</mi> +                    </mrow> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mi>x</mi> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mrow>+                      <mi>x</mi> +                    </mrow> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mi>x</mi> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +              <mo>&#x02062;</mo> +              <mi>x</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <msub>+                      <mi>a</mi> +                      <mn>1</mn> +                    </msub> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <msub>+                      <mi>a</mi> +                      <mn>2</mn> +                    </msub> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mi>&#x02026;</mi> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <msub>+                      <mi>a</mi> +                      <mi>n</mi> +                    </msub> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <msub>+                      <mi>b</mi> +                      <mn>1</mn> +                    </msub> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <msub>+                      <mi>b</mi> +                      <mn>2</mn> +                    </msub> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <mi>&#x02026;</mi> +                    <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                    <msub>+                      <mi>b</mi> +                      <mi>n</mi> +                    </msub> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <msub>+                    <mi>a</mi> +                    <mn>1</mn> +                  </msub> +                  <mo>&#x02062;</mo> +                  <msubsup>+                    <mi>b</mi> +                    <mn>1</mn> +                    <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x0002A;</mo> +                  </msubsup> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <msub>+                    <mi>a</mi> +                    <mn>2</mn> +                  </msub> +                  <mo>&#x02062;</mo> +                  <msubsup>+                    <mi>b</mi> +                    <mn>2</mn> +                    <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x0002A;</mo> +                  </msubsup> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mi>&#x022EF;</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <msub>+                    <mi>a</mi> +                    <mi>n</mi> +                  </msub> +                  <mo>&#x02062;</mo> +                  <msubsup>+                    <mi>b</mi> +                    <mi>n</mi> +                    <mo form="infix" lspace="mediummathspace" rspace="mediummathspace">&#x0002A;</mo> +                  </msubsup> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x0230A;</mo> +                <mfrac>+                  <mi>n</mi> +                  <mn>5</mn> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x0230B;</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x0230A;</mo> +                <mfrac>+                  <mi>n</mi> +                  <msup>+                    <mn>5</mn> +                    <mn>2</mn> +                  </msup> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x0230B;</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x0230A;</mo> +                <mfrac>+                  <mi>n</mi> +                  <msup>+                    <mn>5</mn> +                    <mn>3</mn> +                  </msup> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x0230B;</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x0230A;</mo> +                <mfrac>+                  <mi>n</mi> +                  <msup>+                    <mn>5</mn> +                    <mn>4</mn> +                  </msup> +                </mfrac> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x0230B;</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mi>&#x022EF;</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <msub>+                <mi>x</mi> +                <mn>1</mn> +              </msub> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mi>&#x022EF;</mi> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <msub>+                <mi>x</mi> +                <mi>n</mi> +              </msub> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <munder>+                <munder>+                  <mrow>+                    <mi>x</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mi>&#x022EF;</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mi>x</mi> +                  </mrow> +                  <mo stretchy="true">&#x0FE38;</mo> +                </munder> +                <mrow>+                  <mi>k</mi> +                  <mtext mathcolor="black">&#x02002;times</mtext> +                </mrow> +              </munder> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mroot>+                <mrow>+                  <msub>+                    <mi>x</mi> +                    <mn>1</mn> +                  </msub> +                  <mo>&#x02062;</mo> +                  <msub>+                    <mi>x</mi> +                    <mn>2</mn> +                  </msub> +                  <mo>&#x02062;</mo> +                  <mi>&#x022EF;</mi> +                  <mo>&#x02062;</mo> +                  <msub>+                    <mi>x</mi> +                    <mi>n</mi> +                  </msub> +                </mrow> +                <mi>n</mi> +              </mroot> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>n</mi> +                <mo form="postfix" lspace="0em" rspace="0.277778em">!</mo> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mn>1</mn> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x000D7;</mo> +                <mn>2</mn> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x000D7;</mo> +                <mn>3</mn> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x000D7;</mo> +                <mn>4</mn> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x000D7;</mo> +                <mi>&#x022EF;</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x000D7;</mo> +                <mi>n</mi> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>P</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">:</mo> +              <mrow>+                <mi>a</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <msub>+                  <mi>x</mi> +                  <mn>0</mn> +                </msub> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                <msub>+                  <mi>x</mi> +                  <mn>1</mn> +                </msub> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                <msub>+                  <mi>x</mi> +                  <mn>2</mn> +                </msub> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                <mi>&#x022EF;</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                <msub>+                  <mi>x</mi> +                  <mi>n</mi> +                </msub> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mi>b</mi> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>f</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mi>x</mi> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mfrac>+                  <mn>30</mn> +                  <mrow>+                    <mn>13</mn> +                    <mo>&#x02062;</mo> +                    <mrow>+                      <mi mathcolor="gray">cos</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>x</mi> +                    </mrow> +                  </mrow> +                </mfrac> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mfrac>+                    <mn>10</mn> +                    <mn>3</mn> +                  </mfrac> +                  <mo>&#x02062;</mo> +                  <msqrt>+                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                      <mrow>+                        <mn>100</mn> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <mfrac>+                          <mn>9</mn> +                          <mrow>+                            <msup>+                              <mi mathcolor="gray">cos</mi> +                              <mn>2</mn> +                            </msup> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mi>x</mi> +                          </mrow> +                        </mfrac> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                        <mrow>+                          <mfrac>+                            <mn>60</mn> +                            <mrow>+                              <mi mathcolor="gray">cos</mi> +                              <mo rspace="0.166667em">&#x02061;</mo> +                              <mi>x</mi> +                            </mrow> +                          </mfrac> +                          <mo>&#x02062;</mo> +                          <mrow>+                            <mi mathcolor="gray">sin</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                              <mrow>+                                <mi>x</mi> +                                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                                <mrow>+                                  <mfrac>+                                    <mn>29</mn> +                                    <mn>90</mn> +                                  </mfrac> +                                  <mo>&#x02062;</mo> +                                  <mi>&#x003C0;</mi> +                                </mrow> +                              </mrow> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                            </mrow> +                          </mrow> +                        </mrow> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                    </mrow> +                  </msqrt> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mo form="prefix" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" rspace="0em">&#x0222B;</mo> +                  <mrow>+                    <mrow>+                      <mi mathcolor="gray">cos</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>A</mi> +                          <mo>&#x02062;</mo> +                          <mi>x</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                    <mo>&#x02062;</mo> +                    <mrow>+                      <mi mathcolor="gray">sin</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>B</mi> +                          <mo>&#x02062;</mo> +                          <mi>x</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                    <mo>&#x02062;</mo> +                    <mrow>+                      <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                      <mi>x</mi> +                    </mrow> +                  </mrow> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mrow>+                  <mfrac>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mrow>+                        <mi mathcolor="gray">cos</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mrow>+                            <mo form="prefix" fence="true" stretchy="false">(</mo> +                            <mrow>+                              <mi>B</mi> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                              <mi>A</mi> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="false">)</mo> +                          </mrow> +                          <mo>&#x02062;</mo> +                          <mi>x</mi> +                        </mrow> +                      </mrow> +                    </mrow> +                    <mrow>+                      <mn>2</mn> +                      <mo>&#x02062;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>B</mi> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                          <mi>A</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mfrac> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                  <mfrac>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mrow>+                        <mi mathcolor="gray">cos</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <mrow>+                          <mrow>+                            <mo form="prefix" fence="true" stretchy="false">(</mo> +                            <mrow>+                              <mi>B</mi> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                              <mi>A</mi> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="false">)</mo> +                          </mrow> +                          <mo>&#x02062;</mo> +                          <mi>x</mi> +                        </mrow> +                      </mrow> +                    </mrow> +                    <mrow>+                      <mn>2</mn> +                      <mo>&#x02062;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>B</mi> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mi>A</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mfrac> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                  <mi>C</mi> +                </mrow> +              </mrow> +              <mtext mathcolor="black">&#x02002;.</mtext> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mn>235.3</mn> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mn>813</mn> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>1048.&#x02009;3</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <munder>+                  <mo mathcolor="gray" form="prefix" movablelimits="true" rspace="0.166667em">max</mo> +                  <mrow>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>2</mn> +                    </mrow> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02264;</mo> +                    <mi>x</mi> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02264;</mo> +                    <mn>2</mn> +                  </mrow> +                </munder> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <msup>+                      <mi>x</mi> +                      <mn>3</mn> +                    </msup> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mrow>+                      <mn>6</mn> +                      <mo>&#x02062;</mo> +                      <mi>x</mi> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mn>3</mn> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mn>8.0</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>x</mi> +                <mo>&#x02062;</mo> +                <mi mathcolor="gray">decade</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mn>2</mn> +                <mo>&#x02062;</mo> +                <mi mathcolor="gray">century</mi> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac>+                <mrow>+                  <msup>+                    <mo form="prefix" rspace="0em">&#x02146;</mo> +                    <mn>5</mn> +                  </msup> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <msup>+                        <mi>x</mi> +                        <mn>7</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mn>3</mn> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>x</mi> +                          <mn>6</mn> +                        </msup> +                      </mrow> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                </mrow> +                <mrow>+                  <mo form="prefix" rspace="0em">&#x02146;</mo> +                  <msup>+                    <mi>x</mi> +                    <mn>5</mn> +                  </msup> +                </mrow> +              </mfrac> +              <mtext mathcolor="black">&#x02003;&#x02003;</mtext> +              <mfrac>+                <mrow>+                  <msup>+                    <mo form="prefix" rspace="0em">&#x02146;</mo> +                    <mi>n</mi> +                  </msup> +                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>x</mi> +                  </mrow> +                </mrow> +                <mrow>+                  <mo form="prefix" rspace="0em">&#x02146;</mo> +                  <msup>+                    <mi>x</mi> +                    <mi>n</mi> +                  </msup> +                </mrow> +              </mfrac> +              <mtext mathcolor="black">&#x02003;&#x02003;</mtext> +              <mrow>+                <mfrac>+                  <msup>+                    <mo form="prefix" rspace="0em">&#x02146;</mo> +                    <mn>3</mn> +                  </msup> +                  <mrow>+                    <mo form="prefix" rspace="0em">&#x02146;</mo> +                    <msup>+                      <mi>x</mi> +                      <mn>3</mn> +                    </msup> +                  </mrow> +                </mfrac> +                <mrow>+                  <mi>f</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mrow>+                    <mo form="prefix" fence="true" stretchy="false">(</mo> +                    <mi>x</mi> +                    <mo form="postfix" fence="true" stretchy="false">)</mo> +                  </mrow> +                </mrow> +              </mrow> +              <mtext mathcolor="black">&#x02003;&#x02003;</mtext> +              <mrow>+                <mfrac>+                  <msup>+                    <mo form="prefix" rspace="0em">&#x02146;</mo> +                    <mn>2</mn> +                  </msup> +                  <mrow>+                    <mo form="prefix" rspace="0em">&#x02146;</mo> +                    <msup>+                      <mi>t</mi> +                      <mn>2</mn> +                    </msup> +                  </mrow> +                </mfrac> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mrow>+                      <mn>4</mn> +                      <mo>&#x02062;</mo> +                      <msup>+                        <mi>t</mi> +                        <mn>5</mn> +                      </msup> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                    <mrow>+                      <mn>3</mn> +                      <mo>&#x02062;</mo> +                      <mi>t</mi> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>f</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mi>x</mi> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mfrac>+                  <mn>30</mn> +                  <mrow>+                    <mn>13</mn> +                    <mo>&#x02062;</mo> +                    <mrow>+                      <mi mathcolor="gray">cos</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>x</mi> +                    </mrow> +                  </mrow> +                </mfrac> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mfrac>+                    <mn>10</mn> +                    <mn>3</mn> +                  </mfrac> +                  <mo>&#x02062;</mo> +                  <msqrt>+                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                      <mrow>+                        <mn>100</mn> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <mfrac>+                          <mn>9</mn> +                          <mrow>+                            <msup>+                              <mi mathcolor="gray">cos</mi> +                              <mn>2</mn> +                            </msup> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mi>x</mi> +                          </mrow> +                        </mfrac> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                        <mrow>+                          <mfrac>+                            <mn>60</mn> +                            <mrow>+                              <mi mathcolor="gray">cos</mi> +                              <mo rspace="0.166667em">&#x02061;</mo> +                              <mi>x</mi> +                            </mrow> +                          </mfrac> +                          <mo>&#x02062;</mo> +                          <mrow>+                            <mi mathcolor="gray">sin</mi> +                            <mo rspace="0.166667em">&#x02061;</mo> +                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                              <mrow>+                                <mi>x</mi> +                                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                                <mrow>+                                  <mfrac>+                                    <mn>29</mn> +                                    <mn>90</mn> +                                  </mfrac> +                                  <mo>&#x02062;</mo> +                                  <mi>&#x003C0;</mi> +                                </mrow> +                              </mrow> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                            </mrow> +                          </mrow> +                        </mrow> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                    </mrow> +                  </msqrt> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msub>+                  <mo form="prefix" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4" rspace="0em">&#x0222B;</mo> +                  <msup>+                    <mi mathvariant="bold">R</mi> +                    <mn>3</mn> +                  </msup> +                </msub> +                <mrow>+                  <mrow>+                    <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                    <mrow>+                      <mfrac>+                        <mrow>+                          <msup>+                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                              <msub>+                                <mi>u</mi> +                                <mn>1</mn> +                              </msub> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +                            </mrow> +                            <mn>2</mn> +                          </msup> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <msup>+                            <mrow>+                              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                              <mrow>+                                <mo form="prefix" rspace="0em">&#x02207;</mo> +                                <msub>+                                  <mi>u</mi> +                                  <mn>0</mn> +                                </msub> +                              </mrow> +                              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +                            </mrow> +                            <mn>2</mn> +                          </msup> +                        </mrow> +                        <mn>2</mn> +                      </mfrac> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mfrac>+                        <msup>+                          <mrow>+                            <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                            <msub>+                              <mi>u</mi> +                              <mn>0</mn> +                            </msub> +                            <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +                          </mrow> +                          <mn>6</mn> +                        </msup> +                        <mn>6</mn> +                      </mfrac> +                    </mrow> +                    <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02146;</mo> +                    <mi>x</mi> +                  </mrow> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +              <mi>&#x0221E;</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <mo form="prefix" rspace="0em">&#x02207;&#x000D7;</mo> +                    <mi mathvariant="bold">F</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                <mi mathvariant="bold">k</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi>z</mi> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mn>1</mn> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>M</mi> +              <mo>&#x02062;</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac>+                    <msup>+                      <mi>M</mi> +                      <mrow>+                        <mstyle displaystyle="true" scriptlevel="0">+                          <mfrac>+                            <mi>M</mi> +                            <mi>M</mi> +                          </mfrac> +                        </mstyle> +                      </mrow> +                    </msup> +                    <mi>M</mi> +                  </mfrac> +                </mstyle> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msub>+                  <mo form="prefix" rspace="0em">&#x02145;</mo> +                  <mi>x</mi> +                </msub> +                <msup>+                  <mi>x</mi> +                  <mn>2</mn> +                </msup> +              </mrow> +              <mtext>&#x02003;&#x02003;</mtext> +              <mrow>+                <msub>+                  <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02145;</mo> +                  <mi>x</mi> +                </msub> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <msup>+                    <mi>x</mi> +                    <mn>2</mn> +                  </msup> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mtext>&#x02003;&#x02003;</mtext> +              <mrow>+                <msub>+                  <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02145;</mo> +                  <mrow>+                    <mi>x</mi> +                    <mo>&#x0200B;</mo> +                    <mi>x</mi> +                  </mrow> +                </msub> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <msup>+                    <mi>x</mi> +                    <mn>2</mn> +                  </msup> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mtext>&#x02003;&#x02003;</mtext> +              <mrow>+                <msub>+                  <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02145;</mo> +                  <msup>+                    <mi>x</mi> +                    <mn>2</mn> +                  </msup> +                </msub> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <msup>+                    <mi>x</mi> +                    <mn>2</mn> +                  </msup> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mtext>&#x02003;&#x02003;</mtext> +              <mrow>+                <msub>+                  <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02145;</mo> +                  <mrow>+                    <mi>x</mi> +                    <mo>&#x0200B;</mo> +                    <mi>y</mi> +                  </mrow> +                </msub> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <msup>+                      <mi>x</mi> +                      <mn>2</mn> +                    </msup> +                    <mo>&#x02062;</mo> +                    <msup>+                      <mi>y</mi> +                      <mn>3</mn> +                    </msup> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +              <mtext>&#x02003;&#x02003;</mtext> +              <mrow>+                <msub>+                  <mo form="prefix" lspace="0.166667em" rspace="0em">&#x02145;</mo> +                  <mrow>+                    <msup>+                      <mi>x</mi> +                      <mi>s</mi> +                    </msup> +                    <mo>&#x0200B;</mo> +                    <msup>+                      <mi>y</mi> +                      <mi>t</mi> +                    </msup> +                  </mrow> +                </msub> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                  <mrow>+                    <msup>+                      <mi>x</mi> +                      <mn>2</mn> +                    </msup> +                    <mo>&#x02062;</mo> +                    <msup>+                      <mi>y</mi> +                      <mn>3</mn> +                    </msup> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mn>5</mn> +              <mspace width="0.500000in"></mspace> +              <mrow>+                <mn>24</mn> +                <mo form="postfix" lspace="0em" rspace="0.000000em">!</mo> +              </mrow> +              <mspace width="0.500000in"></mspace> +              <msup>+                <mi>x</mi> +                <mn>6</mn> +              </msup> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable frame="solid">+                <mtr>+                  <mtd>+                    <mpadded depth="1.500000in" height="1.500000in">+                      <mrow>+                        <mtable align="axis">+                          <mtr>+                            <mtd>+                              <mrow>+                                <mi>x</mi> +                                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                                <mroot>+                                  <mfrac>+                                    <msup>+                                      <mi>a</mi> +                                      <mpadded depth="0.100000in" height="0.200000in">+                                        <mrow>+                                          <mi>y</mi> +                                          <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02212;</mo> +                                          <mn>1</mn> +                                        </mrow> +                                      </mpadded> +                                    </msup> +                                    <mpadded depth="+3.5pt" height="+8.5pt">+                                      <mn>12.34</mn> +                                    </mpadded> +                                  </mfrac> +                                  <mpadded depth="0.300000in" height="0.300000in">+                                    <mn>2</mn> +                                  </mpadded> +                                </mroot> +                              </mrow> +                            </mtd> +                            <mtd>+                              <mpadded depth="0.300000in" height="0.300000in">+                                <mrow>+                                  <mi mathcolor="gray">sin</mi> +                                  <mo rspace="0.166667em">&#x02061;</mo> +                                  <mi>&#x003B8;</mi> +                                </mrow> +                              </mpadded> +                            </mtd> +                          </mtr> +                          <mtr>+                            <mtd>+                              <mpadded depth="+3.5pt" height="+8.5pt">+                                <mspace width="veryverythinmathspace"></mspace> +                              </mpadded> +                            </mtd> +                            <mtd>+                              <mn>1</mn> +                            </mtd> +                          </mtr> +                        </mtable> +                      </mrow> +                    </mpadded> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis" rowlines="solid" columnalign="center">+                <mtr>+                  <mtd>+                    <mn>0</mn> +                  </mtd> +                  <mtd>+                    <mn>1</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>1</mn> +                  </mtd> +                  <mtd>+                    <mn>0</mn> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="0em" rspace="0em">(</mo> +              <mtable align="axis" columnalign="center">+                <mtr>+                  <mtd>+                    <mn>0</mn> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mi>i</mi> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mi>i</mi> +                  </mtd> +                  <mtd>+                    <mn>0</mn> +                  </mtd> +                </mtr> +              </mtable> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" lspace="0em" rspace="0em">)</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="0em" rspace="0em">[</mo> +              <mtable align="axis" columnalign="center">+                <mtr>+                  <mtd>+                    <mn>1</mn> +                  </mtd> +                  <mtd>+                    <mn>0</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>0</mn> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>1</mn> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" lspace="0em" rspace="0em">]</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="0em" rspace="0em">|</mo> +              <mtable align="axis" columnalign="center">+                <mtr>+                  <mtd>+                    <mi>a</mi> +                  </mtd> +                  <mtd>+                    <mi>b</mi> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mi>c</mi> +                  </mtd> +                  <mtd>+                    <mi>d</mi> +                  </mtd> +                </mtr> +              </mtable> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" lspace="0em" rspace="0em">|</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="0em" rspace="0em">&#x02225;</mo> +              <mtable align="axis" columnalign="center">+                <mtr>+                  <mtd>+                    <mn>1</mn> +                  </mtd> +                  <mtd>+                    <mn>0</mn> +                  </mtd> +                  <mtd>+                    <mn>1</mn> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mn>0</mn> +                  </mtd> +                  <mtd>+                    <mn>11</mn> +                  </mtd> +                  <mtd>+                    <mspace width="veryverythinmathspace"></mspace> +                  </mtd> +                </mtr> +              </mtable> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" lspace="0em" rspace="0em">&#x02225;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle scriptlevel="+1">+                <mtable align="axis" columnalign="center">+                  <mtr>+                    <mtd>+                      <mn>1</mn> +                    </mtd> +                    <mtd>+                      <mn>2</mn> +                    </mtd> +                    <mtd>+                      <mn>3</mn> +                    </mtd> +                  </mtr> +                  <mtr>+                    <mtd>+                      <mn>4</mn> +                    </mtd> +                    <mtd>+                      <mn>5</mn> +                    </mtd> +                    <mtd>+                      <mspace width="veryverythinmathspace"></mspace> +                    </mtd> +                  </mtr> +                </mtable> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtext mathcolor="black">testing&#x02002;</mtext> +              <mtable frame="solid">+                <mtr>+                  <mtd>+                    <mrow>+                      <mi mathcolor="gray">sin</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>&#x003B8;</mi> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mover>+                <mi>a</mi> +                <mo form="postfix" accent="true">&#x00302;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>b</mi> +                <mo form="postfix" accent="true">&#x002C7;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>c</mi> +                <mo form="postfix" accent="true">&#x002DC;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>d</mi> +                <mo form="postfix" accent="true">&#x000B4;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>e</mi> +                <mo form="postfix" accent="true">&#x00060;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>f</mi> +                <mo form="postfix" accent="true">&#x002D8;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>g</mi> +                <mo form="postfix" accent="true">&#x000AF;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mi>h</mi> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>i</mi> +                <mo form="postfix" accent="true">&#x002DA;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>j</mi> +                <mo form="postfix" accent="true">&#x002D9;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>k</mi> +                <mo form="postfix" accent="true">&#x000A8;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>l</mi> +                <mo form="postfix" accent="true">&#x020DB;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>m</mi> +                <mo form="postfix" accent="true">&#x020DC;</mo> +              </mover> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mover>+                <mi>n</mi> +                <mo form="postfix" accent="true">&#x02192;</mo> +              </mover> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>f</mi> +                <mo rspace="0.166667em">&#x02061;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <mi>g</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="false">(</mo> +                      <mi>x</mi> +                      <mo form="postfix" fence="true" stretchy="false">)</mo> +                    </mrow> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mrow>+                  <msup>+                    <mi mathcolor="gray">sin</mi> +                    <mn>3</mn> +                  </msup> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <msup>+                    <mi>x</mi> +                    <mn>2</mn> +                  </msup> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <msup>+                      <mi>x</mi> +                      <mn>2</mn> +                    </msup> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                      <mrow>+                        <mi mathcolor="gray">sin</mi> +                        <mo rspace="0.166667em">&#x02061;</mo> +                        <msup>+                          <mi>x</mi> +                          <mn>2</mn> +                        </msup> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                <maction actiontype="toggle" selection="2">+                  <mrow>+                    <msup>+                      <mi>x</mi> +                      <mn>2</mn> +                    </msup> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mn>12</mn> +                  </mrow> +                  <mrow>+                    <msup>+                      <mi>x</mi> +                      <mn>2</mn> +                    </msup> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mn>12</mn> +                  </mrow> +                </maction> +                <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mn>1234</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis" columnalign="left left left left">+                <mtr>+                  <mtd columnspan="2" columnalign="left">+                    <mrow>+                      <mi>x</mi> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mn>1</mn> +                    </mrow> +                  </mtd> +                  <mtd>+                    <mtext mathcolor="black">not</mtext> +                  </mtd> +                  <mtd>+                    <mtext mathcolor="black">here</mtext> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mrow>+                      <msup>+                        <mi>x</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                  </mtd> +                  <mtd columnspan="2" columnalign="left">+                    <mtext mathcolor="black">merged</mtext> +                  </mtd> +                  <mtd>+                    <mrow>+                      <msub>+                        <mi>y</mi> +                        <mn>1</mn> +                      </msub> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mtext mathcolor="black">jbm</mtext> +                  </mtd> +                  <mtd>+                    <mtext mathcolor="black">lowlife</mtext> +                  </mtd> +                  <mtd columnspan="2" columnalign="left">+                    <mtext mathcolor="black">The end.</mtext> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <msup>+                  <mi>x</mi> +                  <mn>2</mn> +                </msup> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <msup>+                  <mi>y</mi> +                  <mn>2</mn> +                </msup> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <msup>+                  <mi>z</mi> +                  <mn>2</mn> +                </msup> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                <mn>1</mn> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <msup>+                        <mi>x</mi> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <msup>+                        <mi>y</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mrow>+                      <msup>+                        <mi>z</mi> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mn>1</mn> +                    </mrow> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mi>x</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <msup>+                        <mi>y</mi> +                        <mn>3</mn> +                      </msup> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <msup>+                      <mi>z</mi> +                      <mn>3</mn> +                    </msup> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <msup>+                        <mi>x</mi> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <msup>+                        <mi>y</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mrow>+                      <msup>+                        <mi>z</mi> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mn>1</mn> +                    </mrow> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mi>x</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <msup>+                        <mi>y</mi> +                        <mn>3</mn> +                      </msup> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <msup>+                      <mi>z</mi> +                      <mn>3</mn> +                    </msup> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <msup>+                        <mi>x</mi> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <msup>+                        <mi>y</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mn>1</mn> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi>x</mi> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <msqrt>+                      <mrow>+                        <mn>1</mn> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                        <msup>+                          <mi>y</mi> +                          <mn>2</mn> +                        </msup> +                      </mrow> +                    </msqrt> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mrow>+                    <msup>+                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>a</mi> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mi>b</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                      <mn>2</mn> +                    </msup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mrow>+                      <msup>+                        <mi>a</mi> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <mi>a</mi> +                        <mo>&#x02062;</mo> +                        <mi>b</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <msup>+                        <mi>b</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>a</mi> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mi>b</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mi>a</mi> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                          <mi>b</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <mrow>+                      <msup>+                        <mi>a</mi> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <msup>+                        <mi>b</mi> +                        <mn>2</mn> +                      </msup> +                    </mrow> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right">+                  <maligngroup></maligngroup> +                  <mtext mathcolor="black">First line of equation</mtext> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mtext mathcolor="black">Middle line of equation</mtext> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mtext mathcolor="black">Other middle line of equation</mtext> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="center">+                  <maligngroup></maligngroup> +                  <mtext mathcolor="black">Last line of equation</mtext> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right left right left right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <msub>+                      <mi>L</mi> +                      <mn>1</mn> +                    </msub> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <msub>+                      <mi>R</mi> +                      <mn>1</mn> +                    </msub> +                  </mrow> +                  <maligngroup></maligngroup> +                  <mtext>&#x02003;&#x02003;</mtext> +                  <mrow>+                    <msub>+                      <mi>L</mi> +                      <mn>2</mn> +                    </msub> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <msub>+                      <mi>R</mi> +                      <mn>2</mn> +                    </msub> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right left right left right left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <msub>+                      <mi>L</mi> +                      <mn>3</mn> +                    </msub> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <msub>+                      <mi>R</mi> +                      <mn>3</mn> +                    </msub> +                  </mrow> +                  <maligngroup></maligngroup> +                  <mtext>&#x02003;&#x02003;</mtext> +                  <mrow>+                    <msub>+                      <mi>L</mi> +                      <mn>4</mn> +                    </msub> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <msub>+                      <mi>R</mi> +                      <mn>4</mn> +                    </msub> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable>+                <mtr>+                  <mtd groupalign="right left">+                    <maligngroup></maligngroup> +                    <mrow>+                      <msup>+                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>a</mi> +                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                            <mi>b</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                        <mn>4</mn> +                      </msup> +                      <maligngroup></maligngroup> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mrow>+                        <msup>+                          <mrow>+                            <mo form="prefix" fence="true" stretchy="false">(</mo> +                            <mrow>+                              <mi>a</mi> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                              <mi>b</mi> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="false">)</mo> +                          </mrow> +                          <mn>2</mn> +                        </msup> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mrow>+                            <mo form="prefix" fence="true" stretchy="false">(</mo> +                            <mrow>+                              <mi>a</mi> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                              <mi>b</mi> +                            </mrow> +                            <mo form="postfix" fence="true" stretchy="false">)</mo> +                          </mrow> +                          <mn>2</mn> +                        </msup> +                      </mrow> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd groupalign="right left">+                    <maligngroup></maligngroup> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="thickmathspace" rspace="0.277778em">=</mo> +                    <mrow>+                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <msup>+                            <mi>a</mi> +                            <mn>2</mn> +                          </msup> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x02062;</mo> +                            <mi>a</mi> +                            <mo>&#x02062;</mo> +                            <mi>b</mi> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <msup>+                            <mi>b</mi> +                            <mn>2</mn> +                          </msup> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                      <mo>&#x02062;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <msup>+                            <mi>a</mi> +                            <mn>2</mn> +                          </msup> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <mrow>+                            <mn>2</mn> +                            <mo>&#x02062;</mo> +                            <mi>a</mi> +                            <mo>&#x02062;</mo> +                            <mi>b</mi> +                          </mrow> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                          <msup>+                            <mi>b</mi> +                            <mn>2</mn> +                          </msup> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd groupalign="right left">+                    <maligngroup></maligngroup> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="thickmathspace" rspace="0.277778em">=</mo> +                    <mrow>+                      <msup>+                        <mi>a</mi> +                        <mn>4</mn> +                      </msup> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mn>4</mn> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>a</mi> +                          <mn>3</mn> +                        </msup> +                        <mo>&#x02062;</mo> +                        <mi>b</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mn>6</mn> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>a</mi> +                          <mn>2</mn> +                        </msup> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>b</mi> +                          <mn>2</mn> +                        </msup> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mrow>+                        <mn>4</mn> +                        <mo>&#x02062;</mo> +                        <mi>a</mi> +                        <mo>&#x02062;</mo> +                        <msup>+                          <mi>b</mi> +                          <mn>3</mn> +                        </msup> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <msup>+                        <mi>b</mi> +                        <mn>4</mn> +                      </msup> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable>+                <mtr>+                  <mtd groupalign="right left">+                    <maligngroup></maligngroup> +                    <mrow>+                      <mrow>+                        <msup>+                          <mi>x</mi> +                          <mn>2</mn> +                        </msup> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <msup>+                          <mi>y</mi> +                          <mn>2</mn> +                        </msup> +                      </mrow> +                      <maligngroup></maligngroup> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mn>1</mn> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd groupalign="right left">+                    <maligngroup></maligngroup> +                    <mrow>+                      <mi>x</mi> +                      <maligngroup></maligngroup> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <msqrt>+                        <mrow>+                          <mn>1</mn> +                          <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                          <msup>+                            <mi>y</mi> +                            <mn>2</mn> +                          </msup> +                        </mrow> +                      </msqrt> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +              <mtext>&#x02003;&#x02003;</mtext> +              <mtable>+                <mtr>+                  <mtd groupalign="center">+                    <maligngroup></maligngroup> +                    <mrow>+                      <msup>+                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>a</mi> +                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                            <mi>b</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                        <mn>2</mn> +                      </msup> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mrow>+                        <msup>+                          <mi>a</mi> +                          <mn>2</mn> +                        </msup> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <mrow>+                          <mn>2</mn> +                          <mo>&#x02062;</mo> +                          <mi>a</mi> +                          <mo>&#x02062;</mo> +                          <mi>b</mi> +                        </mrow> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                        <msup>+                          <mi>b</mi> +                          <mn>2</mn> +                        </msup> +                      </mrow> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd groupalign="center">+                    <maligngroup></maligngroup> +                    <mrow>+                      <mrow>+                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>a</mi> +                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                            <mi>b</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x022C5;</mo> +                        <mrow>+                          <mo form="prefix" fence="true" stretchy="false">(</mo> +                          <mrow>+                            <mi>a</mi> +                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                            <mi>b</mi> +                          </mrow> +                          <mo form="postfix" fence="true" stretchy="false">)</mo> +                        </mrow> +                      </mrow> +                      <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                      <mrow>+                        <msup>+                          <mi>a</mi> +                          <mn>2</mn> +                        </msup> +                        <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                        <msup>+                          <mi>b</mi> +                          <mn>2</mn> +                        </msup> +                      </mrow> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis" columnalign="left left">+                <mtr>+                  <mtd>+                    <mstyle fontweight="bold">+                      <mtext mathcolor="black">Vertex</mtext> +                    </mstyle> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mi>V</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mn>0</mn> +                          <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                          <mn>0</mn> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mstyle fontweight="bold">+                      <mtext mathcolor="black">Focus</mtext> +                    </mstyle> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mi>F</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mrow>+                        <mo form="prefix" fence="true" stretchy="false">(</mo> +                        <mrow>+                          <mn>0</mn> +                          <mo form="infix" lspace="0.000000em" rspace="0.000000em">,</mo> +                          <mi>p</mi> +                        </mrow> +                        <mo form="postfix" fence="true" stretchy="false">)</mo> +                      </mrow> +                    </mrow> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mstyle fontweight="bold">+                      <mtext mathcolor="black">Directrix</mtext> +                    </mstyle> +                  </mtd> +                  <mtd>+                    <mrow>+                      <mi>y</mi> +                      <mo form="infix" lspace="0.277778em" rspace="thickmathspace">=</mo> +                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mi>p</mi> +                      </mrow> +                    </mrow> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mo form="prefix">&#x02146;</mo> +                      <mrow>+                        <mo form="prefix" rspace="0em">&#x02146;</mo> +                        <mi>x</mi> +                      </mrow> +                    </mfrac> +                  </mstyle> +                </mrow> +                <mtext>&#x02009;&#x02009;</mtext> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="false">(</mo> +                  <mrow>+                    <msup>+                      <mi mathcolor="gray">csc</mi> +                      <mrow>+                        <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                        <mn>1</mn> +                      </mrow> +                    </msup> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>x</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="false">)</mo> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="thickmathspace">=</mo> +              <mrow>+                <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mn>1</mn> +                      <mrow>+                        <mrow>+                          <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +                          <mi>x</mi> +                          <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +                        </mrow> +                        <mo>&#x02062;</mo> +                        <msqrt>+                          <mrow>+                            <msup>+                              <mi>x</mi> +                              <mn>2</mn> +                            </msup> +                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                            <mn>1</mn> +                          </mrow> +                        </msqrt> +                      </mrow> +                    </mfrac> +                  </mstyle> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <msup>+                    <mi mathcolor="gray">tanh</mi> +                    <mrow>+                      <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                      <mn>1</mn> +                    </mrow> +                  </msup> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>x</mi> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                <mrow>+                  <mrow>+                    <mstyle displaystyle="false" scriptlevel="0">+                      <mfrac>+                        <mn>1</mn> +                        <mn>2</mn> +                      </mfrac> +                    </mstyle> +                  </mrow> +                  <mo>&#x02062;</mo> +                  <mrow>+                    <mi mathcolor="gray">ln</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mrow>+                      <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +                      <mrow>+                        <mstyle displaystyle="true" scriptlevel="0">+                          <mfrac>+                            <mrow>+                              <mn>1</mn> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                              <mi>x</mi> +                            </mrow> +                            <mrow>+                              <mn>1</mn> +                              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                              <mi>x</mi> +                            </mrow> +                          </mfrac> +                        </mstyle> +                      </mrow> +                      <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +                    </mrow> +                  </mrow> +                </mrow> +              </mrow> +              <mtext>&#x02003;&#x02003;</mtext> +              <mrow>+                <mrow>+                  <mo form="prefix" lspace="0.222222em" rspace="0em">&#x02212;</mo> +                  <mn>1</mn> +                </mrow> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                <mi>x</mi> +                <mo form="infix" lspace="0.277778em" rspace="0.277778em">&lt;</mo> +                <mn>1</mn> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mrow>+                  <mi>&#x02220;</mi> +                  <mi>&#x003B1;</mi> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mi>&#x02220;</mi> +                  <mi>A</mi> +                  <mi>B</mi> +                  <mi>C</mi> +                </mrow> +                <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                <mrow>+                  <mi>&#x02220;</mi> +                  <mn>1</mn> +                </mrow> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mi>&#x025B5;</mi> +                <mi>a</mi> +                <mi>b</mi> +                <mi>c</mi> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>y</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <msup>+                  <mi>e</mi> +                  <mrow>+                    <mo form="prefix" lspace="mediummathspace" rspace="0em">&#x02212;</mo> +                    <mrow>+                      <mo form="prefix" largeop="false" stretchy="false" lspace="0.000000em" rspace="0em">&#x0222B;</mo> +                      <mrow>+                        <mi>P</mi> +                        <mo>&#x02062;</mo> +                        <mrow>+                          <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                          <mi>x</mi> +                        </mrow> +                      </mrow> +                    </mrow> +                  </mrow> +                </msup> +                <mo>&#x02062;</mo> +                <mrow>+                  <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +                  <mrow>+                    <mrow>+                      <mo form="prefix" largeop="false" stretchy="false" rspace="0em">&#x0222B;</mo> +                      <mrow>+                        <msup>+                          <mi>e</mi> +                          <mrow>+                            <mo form="prefix" largeop="false" stretchy="false" rspace="0em">&#x0222B;</mo> +                            <mrow>+                              <mi>P</mi> +                              <mo>&#x02062;</mo> +                              <mrow>+                                <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                                <mi>x</mi> +                              </mrow> +                            </mrow> +                          </mrow> +                        </msup> +                        <mo>&#x02062;</mo> +                        <mi>Q</mi> +                        <mo>&#x02062;</mo> +                        <mrow>+                          <mo form="prefix" lspace="0.000000em" rspace="0em">&#x02146;</mo> +                          <mi>x</mi> +                        </mrow> +                      </mrow> +                    </mrow> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mi>c</mi> +                  </mrow> +                  <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +                </mrow> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +              <mrow>+                <mn>1</mn> +                <mrow>+                  <mstyle mathsize="2.50ex">+                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                  </mstyle> +                </mrow> +                <msup>+                  <mrow>+                    <mstyle mathsize="2.50ex">+                      <mi>y</mi> +                    </mstyle> +                  </mrow> +                  <mn>3</mn> +                </msup> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle mathsize="2.50ex">+                <mrow>+                  <mi>x</mi> +                  <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                  <mrow>+                    <mn>1</mn> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mi>y</mi> +                  </mrow> +                </mrow> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mo form="prefix" rspace="0em">$</mo> +                <mn>1.00</mn> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>25</mn> +                <mo form="postfix" lspace="0em" rspace="0.222222em">&#x000A2;</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>3</mn> +                <mo form="postfix" lspace="0em" rspace="0.222222em">&#x000A3;</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>2.45</mn> +                <mo form="postfix" lspace="0em" rspace="0.222222em">&#x000A4;</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>0.7</mn> +                <mo form="postfix" lspace="0em" rspace="0.222222em">&#x000A5;</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mi>a</mi> +                <mo form="postfix" lspace="0em" rspace="0.222222em">₠</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>20</mn> +                <mo form="postfix" lspace="0em" rspace="0.222222em">₣</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +              <mrow>+                <mn>30</mn> +                <mo form="postfix" lspace="0em" rspace="0.222222em">₤</mo> +              </mrow> +              <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +              <mrow>+                <mn>4.56</mn> +                <mo form="postfix" lspace="0em">₧</mo> +              </mrow> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable rowspacing="2.000000ex 3.000000ex 1.500000ex ">+              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mrow>+                        <mn>2</mn> +                        <mo>&#x02062;</mo> +                        <mi>x</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mi>y</mi> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mn>3</mn> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mrow>+                        <mn>3</mn> +                        <mo>&#x02062;</mo> +                        <mi>x</mi> +                      </mrow> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                      <mrow>+                        <mn>4</mn> +                        <mo>&#x02062;</mo> +                        <mi>y</mi> +                      </mrow> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mn>5</mn> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mrow>+                      <mi>a</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mi>b</mi> +                    </mrow> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mrow>+                      <mi>c</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mn>12345</mn> +                    </mrow> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis">+                <mtr>+                  <mtd>+                    <mstyle fontweight="bold">+                      <mtext mathcolor="black">Unrestricted</mtext> +                    </mstyle> +                  </mtd> +                  <mtd>+                    <mtext mathcolor="black">&#x02003;&#x02003;&#x02003;</mtext> +                  </mtd> +                  <mtd>+                    <mstyle fontweight="bold">+                      <mtext mathcolor="black">Symmetric</mtext> +                    </mstyle> +                  </mtd> +                  <mtd>+                    <mtext mathcolor="black">&#x02003;</mtext> +                  </mtd> +                  <mtd>+                    <mstyle fontweight="bold">+                      <mtext mathcolor="black">Antisymmetric</mtext> +                    </mstyle> +                  </mtd> +                  <mtd>+                    <mtext mathcolor="black">&#x02003;&#x02003;</mtext> +                  </mtd> +                  <mtd>+                    <mstyle fontweight="bold">+                      <mtext mathcolor="black">Triangular</mtext> +                    </mstyle> +                  </mtd> +                </mtr> +              </mtable> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>a</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02260;</mo> +              <mi>b</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02260;</mo> +              <mi>x</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>c</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x0226E;</mo> +              <mi>d</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x0226E;</mo> +              <mi>y</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>e</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x0226F;</mo> +              <mi>f</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x0226F;</mo> +              <mn>11</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>g</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02209;</mo> +              <mi>h</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02209;</mo> +              <mi>Z</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>k</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02241;</mo> +              <mi>l</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02241;</mo> +              <mn>3</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mrow>+                <mi>A</mi> +                <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02284;</mo> +                <mi>B</mi> +              </mrow> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02282;</mo> +              <mi>C</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>A</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02288;</mo> +              <mi>B</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02288;</mo> +              <mi>C</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mn>10</mn> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02262;</mo> +              <mn>11</mn> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02261;</mo> +              <mn>12</mn> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>x</mi> +              <mo form="infix" lspace="0.000000em" rspace="0.000000em">&#x02270;&#x020E5;</mo> +              <mi>y</mi> +              <mo form="infix" lspace="0.277778em" rspace="0.277778em">&#x02270;&#x020E5;</mo> +              <mi>z</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mover>+                <mi mathcolor="gray">lim</mi> +                <mo stretchy="true" accent="true">&#x000AF;</mo> +              </mover> +              <mi>x</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <munder>+                <mi mathcolor="gray">lim</mi> +                <mo stretchy="true" accent="true">&#x00332;</mo> +              </munder> +              <mi>x</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <munder>+                <mi mathcolor="gray">lim</mi> +                <mo stretchy="true" accent="true">&#x02192;</mo> +              </munder> +              <mi>x</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <munder>+                <mi mathcolor="gray">lim</mi> +                <mo stretchy="true" accent="true">&#x02190;</mo> +              </munder> +              <mi>x</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" mathbackground="transparent">+            <mtable>+              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <mrow>+                    <mi>x</mi> +                    <maligngroup></maligngroup> +                    <mo form="infix" lspace="0.277778em" rspace="0.277778em">=</mo> +                    <maligngroup></maligngroup> +                    <mrow>+                      <mi>y</mi> +                      <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                      <mi>z</mi> +                    </mrow> +                  </mrow> +                </mtd> +              </mtr> +              <mtr>+                <mtd groupalign="right center left">+                  <maligngroup></maligngroup> +                  <maligngroup></maligngroup> +                  <mo form="infix" lspace="thickmathspace" rspace="0.277778em">=</mo> +                  <maligngroup></maligngroup> +                  <mrow>+                    <mi>k</mi> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mi>m</mi> +                  </mrow> +                </mtd> +              </mtr> +            </mtable> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mtable align="axis" columnalign="left">+                <mtr>+                  <mtd>+                    <mstyle mathsize="2.00ex">+                      <mtext mathcolor="black">College Algebra&#x02002;</mtext> +                    </mstyle> +                    <mtext mathcolor="black">Second Edition</mtext> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mstyle mathsize="2.00ex">+                      <mtext mathcolor="black">James Stewart&#x02002;</mtext> +                    </mstyle> +                    <mtext mathcolor="black">McMaster Universitiy</mtext> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mstyle mathsize="2.00ex">+                      <mtext mathcolor="black">Lothar Redlin</mtext> +                    </mstyle> +                    <mtext mathcolor="black">&#x02002;Pennsylvania State University</mtext> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mstyle mathsize="2.00ex">+                      <mtext mathcolor="black">Saleem Watson</mtext> +                    </mstyle> +                    <mtext mathcolor="black">&#x02002;California State University, Long Beach</mtext> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mtext mathcolor="black">Copyright 1996, ISBN 0 534-33983-2</mtext> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mtext mathcolor="black">Brooks/Cole Publishing Company</mtext> +                  </mtd> +                </mtr> +                <mtr>+                  <mtd>+                    <mtext mathcolor="black">An International Thomson Publishing Company</mtext> +                  </mtd> +                </mtr> +              </mtable> +              <mspace width="thickmathspace"></mspace> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo stretchy="true" minsize="1.2" maxsize="1.2" form="prefix" fence="true">{</mo> +              <mrow>+                <mfrac>+                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mfrac> +                <mo stretchy="true" minsize="1.2" maxsize="1.2" lspace="0.222222em" rspace="0.222222em">&#x02191;</mo> +                <munderover>+                  <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" lspace="0.222222em" rspace="0em">&#x02211;</mo> +                  <mn>1</mn> +                  <mn>2</mn> +                </munderover> +              </mrow> +              <mo stretchy="true" minsize="1.2" maxsize="1.2" form="postfix" fence="true">}</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo stretchy="true" minsize="1.8" maxsize="1.8" form="prefix" fence="true">&#x02329;</mo> +              <mrow>+                <mfrac>+                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mfrac> +                <mo stretchy="true" minsize="1.8" maxsize="1.8" lspace="0.222222em" rspace="0.222222em">|</mo> +                <munderover>+                  <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" lspace="0.222222em" rspace="0em">&#x02211;</mo> +                  <mn>1</mn> +                  <mn>2</mn> +                </munderover> +              </mrow> +              <mo stretchy="true" minsize="1.8" maxsize="1.8" form="postfix" fence="true">&#x0232A;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo stretchy="true" minsize="2.4" maxsize="2.4" form="prefix" fence="true">&#x02308;</mo> +              <mrow>+                <mfrac>+                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mfrac> +                <mo stretchy="true" minsize="2.4" maxsize="2.4" lspace="0.222222em" rspace="0.555556em">|</mo> +                <munderover>+                  <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" lspace="0.222222em" rspace="0em">&#x02211;</mo> +                  <mn>1</mn> +                  <mn>2</mn> +                </munderover> +              </mrow> +              <mo stretchy="true" minsize="2.4" maxsize="2.4" form="postfix" fence="true">&#x02309;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo stretchy="true" minsize="3.0" maxsize="3.0" form="prefix" fence="true">&#x021D3;</mo> +              <mrow>+                <mfrac>+                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                  <mfrac>+                    <mn>1</mn> +                    <mn>2</mn> +                  </mfrac> +                </mfrac> +                <mo stretchy="true" minsize="3.0" maxsize="3.0" lspace="0.222222em" rspace="0.222222em">&#x02195;</mo> +                <munderover>+                  <mo form="prefix" movablelimits="true" largeop="false" stretchy="false" lspace="0.222222em" rspace="0em">&#x02211;</mo> +                  <mn>1</mn> +                  <mn>2</mn> +                </munderover> +              </mrow> +              <mo stretchy="true" minsize="3.0" maxsize="3.0" form="postfix" fence="true">&#x021D3;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">[</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">]</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">(</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">)</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">{</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">}</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02329;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x0232A;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x0230A;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02308;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02309;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02191;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02191;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02193;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02193;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02195;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02195;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x021D1;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x021D1;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x021D3;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x021D3;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x021D5;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x021D5;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace"></mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace"></mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">\arrowvert</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">\arrowvert</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">\Arrowvert</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">\Arrowvert</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">\bracevert</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">\bracevert</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">|</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">|</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02225;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02225;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x02225;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x02225;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">/</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">/</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">\</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">\</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x023B1;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x023B0;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">\lgroup</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">\rgroup</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x0231E;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x0231F;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" symmetric="true" lspace="thinmathspace">&#x0231C;</mo> +              <mfrac>+                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +                <mfrac>+                  <mn>1</mn> +                  <mn>2</mn> +                </mfrac> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" symmetric="true" rspace="thinmathspace">&#x0231D;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mi>A</mi> +              <munderover>+                <mo stretchy="true" form="infix" lspace="0.277778em" rspace="0.277778em">&#x02190;</mo> +                <mspace width="veryverythinmathspace"></mspace> +                <mrow>+                  <mi>n</mi> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                  <mi>&#x003BC;</mi> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                  <mn>1</mn> +                </mrow> +              </munderover> +              <mi>B</mi> +              <munderover>+                <mo stretchy="true" form="infix" lspace="0.277778em" rspace="0.277778em">&#x02192;</mo> +                <mi>T</mi> +                <mrow>+                  <mi>n</mi> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x000B1;</mo> +                  <mi>i</mi> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">&#x02212;</mo> +                  <mn>1</mn> +                </mrow> +              </munderover> +              <mi>C</mi> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle displaystyle="true" scriptlevel="0">+                <mfrac>+                  <mn>1</mn> +                  <mrow>+                    <msqrt>+                      <mn>2</mn> +                    </msqrt> +                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                    <mrow>+                      <mstyle displaystyle="true" scriptlevel="0">+                        <mfrac>+                          <mn>1</mn> +                          <mrow>+                            <msqrt>+                              <mn>3</mn> +                            </msqrt> +                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                            <mrow>+                              <mstyle displaystyle="true" scriptlevel="0">+                                <mfrac>+                                  <mn>1</mn> +                                  <mrow>+                                    <msqrt>+                                      <mn>4</mn> +                                    </msqrt> +                                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                                    <mrow>+                                      <mstyle displaystyle="true" scriptlevel="0">+                                        <mfrac>+                                          <mn>1</mn> +                                          <mrow>+                                            <msqrt>+                                              <mn>5</mn> +                                            </msqrt> +                                            <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                                            <mrow>+                                              <mstyle displaystyle="true" scriptlevel="0">+                                                <mfrac>+                                                  <mn>1</mn> +                                                  <mrow>+                                                    <msqrt>+                                                      <mn>6</mn> +                                                    </msqrt> +                                                    <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                                                    <mi>&#x02026;</mi> +                                                  </mrow> +                                                </mfrac> +                                              </mstyle> +                                            </mrow> +                                          </mrow> +                                        </mfrac> +                                      </mstyle> +                                    </mrow> +                                  </mrow> +                                </mfrac> +                              </mstyle> +                            </mrow> +                          </mrow> +                        </mfrac> +                      </mstyle> +                    </mrow> +                  </mrow> +                </mfrac> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="true" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac>+                <mn>1</mn> +                <mrow>+                  <msqrt>+                    <mn>2</mn> +                  </msqrt> +                  <mo form="infix" lspace="0.222222em" rspace="0.222222em">+</mo> +                  <mfrac>+                    <mn>1</mn> +                    <mrow>+                      <msqrt>+                        <mn>3</mn> +                      </msqrt> +                      <mo form="infix" lspace="0.000000em" rspace="0.000000em">+</mo> +                      <mfrac>+                        <mn>1</mn> +                        <mrow>+                          <msqrt>+                            <mn>4</mn> +                          </msqrt> +                          <mo form="infix" lspace="0.000000em" rspace="0.000000em">+</mo> +                          <mfrac>+                            <mn>1</mn> +                            <mrow>+                              <msqrt>+                                <mn>5</mn> +                              </msqrt> +                              <mo form="infix" lspace="0.000000em" rspace="0.000000em">+</mo> +                              <mfrac>+                                <mn>1</mn> +                                <mrow>+                                  <msqrt>+                                    <mn>6</mn> +                                  </msqrt> +                                  <mo form="infix" lspace="0.000000em" rspace="0.000000em">+</mo> +                                  <mi>&#x02026;</mi> +                                </mrow> +                              </mfrac> +                            </mrow> +                          </mfrac> +                        </mrow> +                      </mfrac> +                    </mrow> +                  </mfrac> +                </mrow> +              </mfrac> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mfrac linethickness="0px">+                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +                <mi>M</mi> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac linethickness="0px">+                    <mrow>+                      <mi mathcolor="gray">sin</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>&#x003B8;</mi> +                    </mrow> +                    <mi>M</mi> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mrow>+                <mstyle displaystyle="false" scriptlevel="0">+                  <mfrac linethickness="0px">+                    <mrow>+                      <mi mathcolor="gray">sin</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>&#x003B8;</mi> +                    </mrow> +                    <mi>M</mi> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mfrac>+                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +                <mi>M</mi> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac>+                    <mrow>+                      <mi mathcolor="gray">sin</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>&#x003B8;</mi> +                    </mrow> +                    <mi>M</mi> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mrow>+                <mstyle displaystyle="false" scriptlevel="0">+                  <mfrac>+                    <mrow>+                      <mi mathcolor="gray">sin</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>&#x003B8;</mi> +                    </mrow> +                    <mi>M</mi> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mfrac linethickness="1pt">+                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +                <mi>M</mi> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mrow>+                <mstyle displaystyle="true" scriptlevel="0">+                  <mfrac linethickness="1pt">+                    <mrow>+                      <mi mathcolor="gray">sin</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>&#x003B8;</mi> +                    </mrow> +                    <mi>M</mi> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +              <mrow>+                <mstyle displaystyle="false" scriptlevel="0">+                  <mfrac linethickness="1pt">+                    <mrow>+                      <mi mathcolor="gray">sin</mi> +                      <mo rspace="0.166667em">&#x02061;</mo> +                      <mi>&#x003B8;</mi> +                    </mrow> +                    <mi>M</mi> +                  </mfrac> +                </mstyle> +              </mrow> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac linethickness="0px">+                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +                <mi>M</mi> +              </mfrac> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle displaystyle="true" scriptlevel="0">+                <mfrac linethickness="0px">+                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>&#x003B8;</mi> +                  </mrow> +                  <mi>M</mi> +                </mfrac> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle displaystyle="false" scriptlevel="0">+                <mfrac linethickness="0px">+                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>&#x003B8;</mi> +                  </mrow> +                  <mi>M</mi> +                </mfrac> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac>+                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +                <mi>M</mi> +              </mfrac> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle displaystyle="true" scriptlevel="0">+                <mfrac>+                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>&#x003B8;</mi> +                  </mrow> +                  <mi>M</mi> +                </mfrac> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle displaystyle="false" scriptlevel="0">+                <mfrac>+                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>&#x003B8;</mi> +                  </mrow> +                  <mi>M</mi> +                </mfrac> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mfrac linethickness="1pt">+                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="0.166667em">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +                <mi>M</mi> +              </mfrac> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle displaystyle="true" scriptlevel="0">+                <mfrac linethickness="1pt">+                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>&#x003B8;</mi> +                  </mrow> +                  <mi>M</mi> +                </mfrac> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mstyle displaystyle="false" scriptlevel="0" mathbackground="transparent">+            <mrow>+              <mstyle displaystyle="false" scriptlevel="0">+                <mfrac linethickness="1pt">+                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="0.166667em">&#x02061;</mo> +                    <mi>&#x003B8;</mi> +                  </mrow> +                  <mi>M</mi> +                </mfrac> +              </mstyle> +            </mrow> +          </mstyle> +        </mrow> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EGrouped+            [ ENumber "2"+            , ESymbol Ord "\8290"+            , EGrouped+                [ ESymbol Op "\8721"+                , EGrouped+                    [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "b" ]+                ]+            ]+        ]+      , []+      ]+    , [ [ ESuper+            (EIdentifier "x") (EGrouped [ ESymbol Ord "\8242" , ENumber "3" ])+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ ESuper (EIdentifier "f") (ESymbol Ord "\8242")+                    , ESymbol Ord "\8289"+                    , EGrouped+                        [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EMathOperator "sin"+                    , ESymbol Ord "\8289"+                    , EMathOperator "cos"+                    , ESymbol Ord "\8289"+                    , EIdentifier "\952"+                    ]+                ]+            , ESymbol Rel "="+            , ENumber "1"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ EIdentifier "f"+                    , ESymbol Ord "\8289"+                    , EGrouped+                        [ ESymbol Open "(" , EIdentifier "z" , ESymbol Close ")" ]+                    ]+                , ESymbol Rel "="+                , EGrouped+                    [ EUnderover+                        False+                        (ESymbol Op "\8721")+                        (EGrouped [ EIdentifier "n" , ESymbol Rel "=" , ENumber "0" ])+                        (EIdentifier "\8734")+                    , EGrouped+                        [ ESub (EIdentifier "a") (EIdentifier "n")+                        , ESymbol Ord "\8290"+                        , ESuper (EIdentifier "z") (EIdentifier "n")+                        ]+                    ]+                ]+            , EText TextNormal ",\8194"+            , EGrouped+                [ EGrouped+                    [ EDelimited "|" "|" [ Right (EIdentifier "z") ]+                    , ESymbol Rel "<"+                    , EIdentifier "R"+                    ]+                , ESymbol Ord "\8203"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped [ EIdentifier "R" , ESymbol Rel "\8800" , ENumber "0" ]+                    , ESymbol Close ")"+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right (ESub (EGrouped []) (EIdentifier "C"))+                , Right+                    (EGrouped+                       [ EDelimited+                           "("+                           ")"+                           [ Right+                               (EGrouped+                                  [ EUnderover+                                      False+                                      (ESymbol Op "\8721")+                                      (EGrouped [ EIdentifier "n" , ESymbol Rel "=" , ENumber "0" ])+                                      (EIdentifier "\8734")+                                  , EGrouped+                                      [ ESub (EIdentifier "a") (EIdentifier "n")+                                      , ESymbol Ord "\8290"+                                      , ESuper (EIdentifier "z") (EIdentifier "n")+                                      ]+                                  ])+                           ]+                       , ESymbol Ord "\8290"+                       , EGrouped [ ESymbol Ord "\8518" , EIdentifier "z" ]+                       ])+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EUnderover+                    False+                    (ESymbol Op "\8721")+                    (EGrouped [ EIdentifier "n" , ESymbol Rel "=" , ENumber "0" ])+                    (EIdentifier "\8734")+                , EGrouped+                    [ ESub (EIdentifier "a") (EIdentifier "n")+                    , ESymbol Ord "\8290"+                    , EDelimited+                        "\8747"+                        ""+                        [ Right (ESub (EGrouped []) (EIdentifier "C"))+                        , Right+                            (EGrouped+                               [ ESuper (EIdentifier "z") (EIdentifier "n")+                               , ESymbol Ord "\8290"+                               , EGrouped [ ESymbol Ord "\8518" , EIdentifier "z" ]+                               ])+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EUnder+                    False+                    (EMathOperator "lim")+                    (EGrouped+                       [ EIdentifier "n" , ESymbol Accent "\8594" , EIdentifier "\8734" ])+                , EDelimited+                    "|"+                    "|"+                    [ Right+                        (EDelimited+                           "\8747"+                           ""+                           [ Right (ESub (EGrouped []) (EIdentifier "C"))+                           , Right+                               (EGrouped+                                  [ EDelimited+                                      "["+                                      "]"+                                      [ Right+                                          (EGrouped+                                             [ EGrouped+                                                 [ EIdentifier "f"+                                                 , ESymbol Ord "\8289"+                                                 , EGrouped+                                                     [ ESymbol Open "("+                                                     , EIdentifier "z"+                                                     , ESymbol Close ")"+                                                     ]+                                                 ]+                                             , ESymbol Bin "\8722"+                                             , EGrouped+                                                 [ EUnderover+                                                     False+                                                     (ESymbol Op "\8721")+                                                     (EGrouped+                                                        [ EIdentifier "k"+                                                        , ESymbol Rel "="+                                                        , ENumber "0"+                                                        ])+                                                     (EIdentifier "n")+                                                 , EGrouped+                                                     [ ESub (EIdentifier "a") (EIdentifier "k")+                                                     , ESymbol Ord "\8290"+                                                     , ESuper (EIdentifier "z") (EIdentifier "k")+                                                     ]+                                                 ]+                                             ])+                                      ]+                                  , ESymbol Ord "\8290"+                                  , EGrouped [ ESymbol Ord "\8518" , EIdentifier "z" ]+                                  ])+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , ENumber "0"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Right+                (EGrouped+                   [ EIdentifier "n"+                   , ESymbol Rel "\8805"+                   , EGrouped+                       [ EIdentifier "N"+                       , ESymbol Ord "\8289"+                       , EGrouped+                           [ ESymbol Open "(" , EIdentifier "\949" , ESymbol Close ")" ]+                       ]+                   ])+            , Left "\8658"+            , Right+                (EGrouped+                   [ EDelimited+                       "|"+                       "|"+                       [ Right+                           (EGrouped+                              [ EGrouped+                                  [ EIdentifier "f"+                                  , ESymbol Ord "\8289"+                                  , EGrouped+                                      [ ESymbol Open "(" , EIdentifier "z" , ESymbol Close ")" ]+                                  ]+                              , ESymbol Bin "\8722"+                              , EGrouped+                                  [ EUnderover+                                      False+                                      (ESymbol Op "\8721")+                                      (EGrouped [ EIdentifier "k" , ESymbol Rel "=" , ENumber "0" ])+                                      (EIdentifier "n")+                                  , EGrouped+                                      [ ESub (EIdentifier "a") (EIdentifier "k")+                                      , ESymbol Ord "\8290"+                                      , ESuper (EIdentifier "z") (EIdentifier "k")+                                      ]+                                  ]+                              ])+                       ]+                   , ESymbol Rel "<"+                   , EIdentifier "\949"+                   ])+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201Bq" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Ci" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201amol" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Emol" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201fmol" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Gmol" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kmol" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Mmol" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201\956mol" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mmol" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mol" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nmol" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Pmol" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201pmol" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Tmol" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201acre" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201hectare" ]+            , ESymbol Bin "\8722"+            , EGrouped+                [ ENumber "10"+                , ESuper (EText TextNormal "\8201ft") (ENumber "2")+                ]+            , ESymbol Bin "+"+            , EGrouped+                [ ENumber "10"+                , ESuper (EText TextNormal "\8201in") (ENumber "2")+                ]+            , ESymbol Bin "\8722"+            , EGrouped+                [ ENumber "10" , ESuper (EText TextNormal "\8201m") (ENumber "2") ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201A" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kA" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956A" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mA" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nA" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201F" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956F" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mF" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nF" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201pF" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201C" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "1.0" , EText TextNormal "\8201m/s/s" ]+            , ESymbol Bin "\8722"+            , EGrouped+                [ ENumber "0.1"+                , EGrouped+                    [ EText TextNormal "\8201m"+                    , ESymbol Ord "/"+                    , ESuper (EText TextNormal "s") (ENumber "2")+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201kS" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956S" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mS" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201S" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201kV" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201MV" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956V" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mV" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nV" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201pV" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201V" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201G\937" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201k\937" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201M\937" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201m\937" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\937" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201Btu" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201cal" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201eV" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201erg" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201GeV" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201GJ" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201J" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kcal" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kJ" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201MeV" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201MJ" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956J" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mJ" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nJ" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201dyn" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kN" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201MN" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956N" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mN" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201N" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201ozf" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201lbf" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201EHz" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201GHz" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Hz" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kHz" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201MHz" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201PHz" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201THz" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201fc" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201lx" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201phot" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201\8491" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201am" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201cm" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201dm" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201fm" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201ft" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201in" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201km" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201m" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956m" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mi" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mm" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nm" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201pm" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped [ ENumber "10" , EText TextNormal "\8201sb" ] ]+      , []+      ]+    , [ [ EGrouped [ ENumber "10" , EText TextNormal "\8201lm" ] ]+      , []+      ]+    , [ [ EGrouped [ ENumber "10" , EText TextNormal "\8201cd" ] ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201Mx" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956Wb" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mWb" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nWb" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Wb" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201G" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956T" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mT" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nT" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201pT" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201T" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201H" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956H" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mH" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201u" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201cg" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201dg" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201g" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kg" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956g" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mg" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201lb" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201slug" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201\176" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956rad" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mrad" ]+            , ESymbol Bin "+"+            , EGrouped+                [ ENumber "10"+                , ESuper (ESpace (0 % 1)) (EText TextNormal "\8242")+                ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201rad" ]+            , ESymbol Bin "+"+            , EGrouped+                [ ENumber "10"+                , ESuper (ESpace (0 % 1)) (EText TextNormal "\8242\8242")+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201GW" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201hp" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kW" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201MW" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956W" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mW" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201nW" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201W" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201atm" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201bar" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kbar" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201kPa" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201MPa" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956Pa" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mbar" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201mmHg" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201Pa" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201torr" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped [ ENumber "10" , EText TextNormal "\8201sr" ] ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201\176C" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\176F" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201K" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201as" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201d" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201fs" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201h" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201\956s" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201ms" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201min" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201ns" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201ps" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201s" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201y" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ENumber "10"+                , ESuper (EText TextNormal "\8201ft") (ENumber "3")+                ]+            , ESymbol Bin "+"+            , EGrouped+                [ ENumber "10"+                , ESuper (EText TextNormal "\8201in") (ENumber "3")+                ]+            , ESymbol Bin "\8722"+            , EGrouped+                [ ENumber "10" , ESuper (EText TextNormal "\8201m") (ENumber "3") ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201gal" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201l" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "10" , EText TextNormal "\8201ml" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201pint" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "10" , EText TextNormal "\8201qt" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EFraction+                NormalFrac+                (ENumber "1")+                (EGrouped+                   [ EIdentifier "x"+                   , ESymbol Ord "\8289"+                   , EDelimited "(" ")" [ Right (EIdentifier "y") ]+                   ])+            , ESymbol Rel "="+            , EGrouped+                [ EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EGrouped+                               [ ESymbol Bin "\8722"+                               , EGrouped+                                   [ ESymbol Op "\8747"+                                   , EGrouped+                                       [ ESuper+                                           (EIdentifier "e")+                                           (EGrouped+                                              [ EGrouped+                                                  [ ESymbol Bin "\8722"+                                                  , EFraction NormalFrac (ENumber "1") (ENumber "2")+                                                  ]+                                              , ESymbol Ord "\8290"+                                              , ESuper (EIdentifier "y") (ENumber "2")+                                              ])+                                       , ESymbol Ord "\8290"+                                       , EGrouped+                                           [ EMathOperator "sin"+                                           , ESymbol Ord "\8289"+                                           , EIdentifier "y"+                                           ]+                                       , ESymbol Ord "\8290"+                                       , EGrouped [ ESymbol Ord "\8518" , EIdentifier "y" ]+                                       ]+                                   ]+                               ]+                           , ESymbol Bin "+"+                           , ESub (EIdentifier "C") (ENumber "1")+                           ])+                    ]+                , ESymbol Ord "\8290"+                , ESuper+                    (EIdentifier "e")+                    (EGrouped+                       [ EFraction NormalFrac (ENumber "1") (ENumber "2")+                       , ESymbol Ord "\8290"+                       , ESuper (EIdentifier "y") (ENumber "2")+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ ESub (ESymbol Ord "\8517") (EIdentifier "x") , EIdentifier "y" ]+                , ESymbol Bin "\8722"+                , EIdentifier "y"+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "x" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "("+                ")"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            , ESymbol Ord "\8290"+            , EDelimited+                "("+                ")"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            , ESymbol Ord "\8290"+            , EDelimited+                "("+                ")"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "["+                "]"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            , ESymbol Ord "\8290"+            , EDelimited+                "("+                ")"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            , ESymbol Ord "\8290"+            , EDelimited+                "{"+                "}"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "\9001"+                "\9002"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            , ESymbol Ord "\8290"+            , EDelimited+                "\8970"+                "\8971"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            , ESymbol Ord "\8290"+            , EDelimited+                "\8968"+                "\8969"+                [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                ""+                ""+                [ Left "\8593"+                , Right (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                , Left "\8593"+                ]+            , ESymbol Ord "\8290"+            , EDelimited+                ""+                ""+                [ Left "\8595"+                , Right (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                , Left "\8595"+                ]+            , ESymbol Ord "\8290"+            , EDelimited+                ""+                ""+                [ Left "\8597"+                , Right (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                , Left "\8597"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EFraction NormalFrac (ENumber "1") (ENumber "2")+            , ESymbol Ord "\8290"+            , EFraction NormalFrac (ENumber "1") (ENumber "2")+            , ESymbol Ord "\8290"+            , EFraction NormalFrac (ENumber "1") (ENumber "2")+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EFraction NormalFrac (ENumber "1") (ENumber "2")+            , ESymbol Ord "\8290"+            , EFraction NormalFrac (ENumber "1") (ENumber "2")+            , ESymbol Ord "\8290"+            , EFraction NormalFrac (ENumber "1") (ENumber "2")+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EFraction NormalFrac (ENumber "1") (ENumber "2")+            , ESymbol Ord "\8290"+            , EFraction NormalFrac (ENumber "1") (ENumber "2")+            , ESymbol Ord "\8290"+            , EFraction NormalFrac (ENumber "1") (ENumber "2")+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESymbol Bin "\8722"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped+                        [ EIdentifier "a" , ESymbol Bin "\8722" , EIdentifier "b" ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EIdentifier "b" , ESymbol Bin "\8722" , EIdentifier "a" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EFraction NormalFrac (ENumber "2") (ENumber "5")+                , ESymbol Bin "+"+                , EFraction NormalFrac (ENumber "3") (ENumber "7")+                ]+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped+                   [ EGrouped [ ENumber "2" , ESymbol Bin "\8901" , ENumber "7" ]+                   , ESymbol Bin "+"+                   , EGrouped [ ENumber "3" , ESymbol Bin "\8901" , ENumber "5" ]+                   ])+                (ENumber "35")+            , ESymbol Rel "="+            , EFraction NormalFrac (ENumber "29") (ENumber "35")+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited "|" "|" [ Right (EIdentifier "a") ]+            , ESymbol Rel "="+            , EDelimited+                "{"+                ""+                [ Right+                    (EArray+                       [ AlignCenter , AlignCenter , AlignCenter ]+                       [ [ [ EIdentifier "a" ]+                         , [ EText TextNormal "if" ]+                         , [ EGrouped+                               [ EIdentifier "a" , ESymbol Rel "\8805" , ENumber "0" ]+                           ]+                         ]+                       , [ [ EGrouped [ ESymbol Bin "\8722" , EIdentifier "a" ] ]+                         , [ EText TextNormal "if" ]+                         , [ EGrouped [ EIdentifier "a" , ESymbol Rel "<" , ENumber "0" ] ]+                         ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ ESuper (EIdentifier "a") (EIdentifier "n")+            , ESymbol Rel "="+            , EUnder+                False+                (EUnder+                   False+                   (EGrouped+                      [ EIdentifier "a"+                      , ESymbol Bin "\8901"+                      , EIdentifier "a"+                      , ESymbol Bin "\8901"+                      , EIdentifier "\8943"+                      , ESymbol Bin "\8901"+                      , EIdentifier "a"+                      ])+                   (ESymbol Accent "\65080"))+                (EGrouped [ EIdentifier "n" , EText TextNormal "\8194factors" ])+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ ESuper+                (EDelimited+                   "("+                   ")"+                   [ Right (EFraction NormalFrac (EIdentifier "a") (EIdentifier "b"))+                   ])+                (EGrouped [ ESymbol Bin "\8722" , EIdentifier "n" ])+            , ESymbol Rel "="+            , ESuper+                (EDelimited+                   "("+                   ")"+                   [ Right (EFraction NormalFrac (EIdentifier "b") (EIdentifier "a"))+                   ])+                (EIdentifier "n")+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ERoot (EIdentifier "n") (EIdentifier "a")+                , ESymbol Rel "="+                , EIdentifier "b"+                ]+            , EText TextNormal "\8194\8194means\8194"+            , EGrouped+                [ ESuper (EIdentifier "b") (EIdentifier "n")+                , ESymbol Rel "="+                , EIdentifier "a"+                ]+            , EText TextNormal "."+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ ERoot+                (ENumber "4") (EFraction NormalFrac (ENumber "16") (ENumber "81"))+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (ERoot (ENumber "4") (ENumber "16"))+                (ERoot (ENumber "4") (ENumber "81"))+            , ESymbol Rel "="+            , EFraction NormalFrac (ENumber "2") (ENumber "3")+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "{"+            "}"+            [ Right+                (EGrouped+                   [ EIdentifier "x"+                   , ESymbol Rel "\8739"+                   , EGrouped+                       [ EGrouped [ EIdentifier "x" , ESymbol Rel "\8800" , ENumber "0" ]+                       , ESymbol Pun ","+                       , EGrouped [ EIdentifier "x" , ESymbol Rel "\8800" , ENumber "1" ]+                       ]+                   ])+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESub (EIdentifier "a") (EIdentifier "n")+                , ESymbol Ord "\8290"+                , ESuper (EIdentifier "x") (EIdentifier "n")+                ]+            , ESymbol Bin "+"+            , EGrouped+                [ ESub+                    (EIdentifier "a")+                    (EGrouped [ EIdentifier "n" , ESymbol Bin "\8722" , ENumber "1" ])+                , ESymbol Ord "\8290"+                , ESuper+                    (EIdentifier "x")+                    (EGrouped [ EIdentifier "n" , ESymbol Bin "\8722" , ENumber "1" ])+                ]+            , ESymbol Bin "+"+            , EIdentifier "\8943"+            , ESymbol Bin "+"+            , EGrouped+                [ ESub (EIdentifier "a") (ENumber "1")+                , ESymbol Ord "\8290"+                , EIdentifier "x"+                ]+            , ESymbol Bin "+"+            , ESub (EIdentifier "a") (ENumber "0")+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESuper (EIdentifier "a") (ENumber "3")+                , ESymbol Bin "\8722"+                , ESuper (EIdentifier "b") (ENumber "3")+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EIdentifier "a" , ESymbol Bin "\8722" , EIdentifier "b" ])+                    ]+                , ESymbol Ord "\8290"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ ESuper (EIdentifier "a") (ENumber "2")+                           , ESymbol Bin "+"+                           , EGrouped+                               [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "b" ]+                           , ESymbol Bin "+"+                           , ESuper (EIdentifier "b") (ENumber "2")+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ ESuper+            (EGrouped+               [ ESymbol Open "("+               , EGrouped [ EIdentifier "x" , ESymbol Bin "+" , EIdentifier "y" ]+               , ESymbol Close ")"+               ])+            (ENumber "2")+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "H"+            , ESymbol Rel "="+            , EDelimited+                "{"+                "}"+                [ Right+                    (EGrouped+                       [ EGrouped+                           [ EDelimited+                               "("+                               ")"+                               [ Right+                                   (EArray+                                      [ AlignCenter , AlignCenter ]+                                      [ [ [ EIdentifier "a" ] , [ EIdentifier "b" ] ]+                                      , [ [ EIdentifier "c" ] , [ EIdentifier "d" ] ]+                                      ])+                               ]+                           , ESymbol Rel "\8712"+                           , EIdentifier "G"+                           ]+                       , ESymbol Rel "\8739"+                       , EGrouped+                           [ EGrouped+                               [ EGrouped+                                   [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "d" ]+                               , ESymbol Bin "\8722"+                               , EGrouped+                                   [ EIdentifier "b" , ESymbol Ord "\8290" , EIdentifier "c" ]+                               ]+                           , ESymbol Rel "="+                           , ENumber "1"+                           ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ ESymbol Open "|" , EIdentifier "x" , ESymbol Close "|" ]+                , ESymbol Bin "+"+                , EGrouped+                    [ ESymbol Open "||" , EIdentifier "y" , ESymbol Close "||" ]+                , ESymbol Bin "+"+                , EGrouped+                    [ ESymbol Open "{" , EIdentifier "z" , ESymbol Close "}" ]+                , ESymbol Bin "\8722"+                , EGrouped+                    [ ESymbol Open "["+                    , EGrouped+                        [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "c" ]+                    , ESymbol Close "]"+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ ESymbol Open "(" , EIdentifier "b" , ESymbol Close ")" ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESymbol Open "["+                , EGrouped [ EIdentifier "a" , ESymbol Pun "," , EIdentifier "b" ]+                , ESymbol Close "]"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+        ]+      , []+      ]+    , [ [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+        ]+      , []+      ]+    , [ [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+        ]+      , []+      ]+    , [ [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "["+                ")"+                [ Right+                    (EGrouped+                       [ EGrouped+                           [ ESymbol Bin "\8722"+                           , EFraction NormalFrac (ENumber "10") (ENumber "3")+                           ]+                       , ESymbol Pun ","+                       , EGrouped+                           [ ESymbol Bin "\8722"+                           , EFraction NormalFrac (ENumber "7") (ENumber "3")+                           ]+                       ])+                ]+            , ESymbol Bin "\8746"+            , EDelimited+                "("+                "]"+                [ Right+                    (EGrouped+                       [ EGrouped+                           [ ESymbol Bin "\8722"+                           , EFraction NormalFrac (ENumber "7") (ENumber "3")+                           ]+                       , ESymbol Pun ","+                       , EGrouped+                           [ ESymbol Bin "\8722"+                           , EFraction NormalFrac (ENumber "4") (ENumber "3")+                           ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ EIdentifier "A"+                    , ESymbol Ord "\8290"+                    , EFraction+                        NormalFrac+                        (EGrouped [ ESymbol Ord "\8706" , EIdentifier "u" ])+                        (EGrouped [ ESymbol Ord "\8706" , EIdentifier "x" ])+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EIdentifier "B"+                    , ESymbol Ord "\8290"+                    , EFraction+                        NormalFrac+                        (EGrouped [ ESymbol Ord "\8706" , EIdentifier "u" ])+                        (EGrouped [ ESymbol Ord "\8706" , EIdentifier "y" ])+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EIdentifier "C" , ESymbol Ord "\8290" , EIdentifier "u" ]+                ]+            , ESymbol Rel "="+            , EIdentifier "E"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EUnderover+                False (ESymbol Op "\8721") (ESpace (0 % 1)) (ESpace (0 % 1))+            , EIdentifier "x"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EUnderover+                False+                (ESymbol Op "\8721")+                (EArray+                   [ AlignCenter ]+                   [ [ [ EGrouped+                           [ ENumber "1"+                           , ESymbol Rel "<"+                           , EIdentifier "i"+                           , ESymbol Rel "<"+                           , ENumber "10"+                           ]+                       ]+                     ]+                   , [ [ EGrouped+                           [ ENumber "1"+                           , ESymbol Rel "<"+                           , EIdentifier "j"+                           , ESymbol Rel "<"+                           , ENumber "10"+                           ]+                       ]+                     ]+                   ])+                (ESpace (0 % 1))+            , ESuper+                (ENumber "2")+                (EGrouped [ EIdentifier "i" , ESymbol Bin "+" , EIdentifier "j" ])+            ]+        ]+      , []+      ]+    , [ [ ESubsup+            (EIdentifier "\915")+            (ESubsup+               (ENumber "1")+               (ESuper+                  (ESpace (1 % 18))+                  (EArray+                     [ AlignCenter ]+                     [ [ [ ESubsup+                             (ENumber "2")+                             (ESuper+                                (ESpace (1 % 18))+                                (EArray+                                   [ AlignCenter ] [ [ [ ENumber "3" ] ] , [ [ ENumber "4" ] ] ]))+                             (ESpace (0 % 1))+                         ]+                       ]+                     , [ [ ESubsup+                             (ENumber "5")+                             (ESuper+                                (ESpace (1 % 18))+                                (EArray+                                   [ AlignCenter ] [ [ [ ENumber "6" ] ] , [ [ ENumber "7" ] ] ]))+                             (ESpace (0 % 1))+                         ]+                       ]+                     ]))+               (ESpace (0 % 1)))+            (ESuper+               (ENumber "1")+               (EArray+                  [ AlignCenter ]+                  [ [ [ ESuper+                          (ENumber "5")+                          (EArray+                             [ AlignCenter ] [ [ [ ENumber "7" ] ] , [ [ ENumber "6" ] ] ])+                      ]+                    ]+                  , [ [ ESuper+                          (ENumber "2")+                          (EArray+                             [ AlignCenter ] [ [ [ ENumber "4" ] ] , [ [ ENumber "3" ] ] ])+                      ]+                    ]+                  ]))+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "y"+                , ESymbol Ord "\8289"+                , EDelimited "(" ")" [ Right (EIdentifier "x") ]+                ]+            , ESymbol Rel "="+            , EFraction+                NormalFrac+                (EGrouped+                   [ EGrouped+                       [ EIdentifier "x"+                       , ESymbol Ord "\8290"+                       , ESuper (EIdentifier "e") (EIdentifier "x")+                       ]+                   , ESymbol Bin "\8722"+                   , ESuper (EIdentifier "e") (EIdentifier "x")+                   , ESymbol Bin "+"+                   , ENumber "2"+                   ])+                (ESuper (EIdentifier "e") (EIdentifier "x"))+            , ESymbol Rel "="+            , EGrouped+                [ EIdentifier "x"+                , ESymbol Bin "\8722"+                , ENumber "1"+                , ESymbol Bin "+"+                , EFraction+                    NormalFrac+                    (ENumber "2")+                    (ESuper (EIdentifier "e") (EIdentifier "x"))+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignRight ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ EGrouped+                            [ ESub+                                (ESymbol Ord "\8517")+                                (EGrouped+                                   [ EIdentifier "x" , ESymbol Ord "\8203" , EIdentifier "x" ])+                            , EIdentifier "y"+                            ]+                        , ESymbol Bin "\8722"+                        , EIdentifier "y"+                        ]+                    , ESymbol Rel "="+                    , ENumber "0"+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ EIdentifier "y"+                        , ESymbol Ord "\8289"+                        , EGrouped [ ESymbol Open "(" , ENumber "0" , ESymbol Close ")" ]+                        ]+                    , ESymbol Rel "="+                    , ENumber "1"+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ ESuper (EIdentifier "y") (ESymbol Ord "\8242")+                        , ESymbol Ord "\8289"+                        , EDelimited "(" ")" [ Right (ENumber "0") ]+                        ]+                    , ESymbol Rel "="+                    , ENumber "0"+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "y"+                , ESymbol Ord "\8289"+                , EDelimited "(" ")" [ Right (EIdentifier "x") ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ EFraction NormalFrac (ENumber "1") (ENumber "3")+                    , ESymbol Ord "\8290"+                    , ESuper+                        (EIdentifier "e")+                        (EGrouped+                           [ EGrouped+                               [ ESymbol Bin "\8722"+                               , ERoot+                                   (ENumber "3")+                                   (EGrouped+                                      [ ESymbol Open "("+                                      , EGrouped [ ESymbol Bin "\8722" , ENumber "1" ]+                                      , ESymbol Close ")"+                                      ])+                               ]+                           , ESymbol Ord "\8290"+                           , EIdentifier "x"+                           ])+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EFraction NormalFrac (ENumber "2") (ENumber "3")+                    , ESymbol Ord "\8290"+                    , ESuper+                        (EIdentifier "e")+                        (EGrouped+                           [ EFraction NormalFrac (ENumber "1") (ENumber "2")+                           , ESymbol Ord "\8290"+                           , ERoot+                               (ENumber "3")+                               (EGrouped+                                  [ ESymbol Open "("+                                  , EGrouped [ ESymbol Bin "\8722" , ENumber "1" ]+                                  , ESymbol Close ")"+                                  ])+                           , ESymbol Ord "\8290"+                           , EIdentifier "x"+                           ])+                    , ESymbol Ord "\8290"+                    , EGrouped+                        [ EMathOperator "cos"+                        , ESymbol Ord "\8289"+                        , EGrouped+                            [ EFraction NormalFrac (ENumber "1") (ENumber "2")+                            , ESymbol Ord "\8290"+                            , ESqrt (ENumber "3")+                            , ESymbol Ord "\8290"+                            , ERoot+                                (ENumber "3")+                                (EDelimited+                                   "("+                                   ")"+                                   [ Right (EGrouped [ ESymbol Bin "\8722" , ENumber "1" ]) ])+                            , ESymbol Ord "\8290"+                            , EIdentifier "x"+                            ]+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "y"+                , ESymbol Ord "\8289"+                , EDelimited "(" ")" [ Right (EIdentifier "t") ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ENumber "2"+                , ESymbol Ord "\8290"+                , EGrouped+                    [ EMathOperator "tan"+                    , ESymbol Ord "\8289"+                    , EDelimited+                        "("+                        ")"+                        [ Right+                            (EGrouped+                               [ EGrouped [ ENumber "2" , ESymbol Ord "\8290" , EIdentifier "t" ]+                               , ESymbol Bin "\8722"+                               , EGrouped+                                   [ EFraction NormalFrac (ENumber "1") (ENumber "4")+                                   , ESymbol Ord "\8290"+                                   , EIdentifier "\960"+                                   ]+                               ])+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "\8497"+                , ESymbol Ord "\8289"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EArray+                               [ AlignCenter ]+                               [ [ [ ESuper+                                       (EIdentifier "e")+                                       (EGrouped+                                          [ ENumber "2"+                                          , ESymbol Ord "\8290"+                                          , EIdentifier "\960"+                                          , ESymbol Ord "\8290"+                                          , EIdentifier "i"+                                          , ESymbol Ord "\8290"+                                          , EIdentifier "x"+                                          ])+                                   ]+                                 ]+                               , [ [ EGrouped+                                       [ ENumber "2"+                                       , ESymbol Ord "\8290"+                                       , EIdentifier "\960"+                                       , ESymbol Ord "\8290"+                                       , EGrouped+                                           [ EIdentifier "Dirac"+                                           , ESymbol Ord "\8289"+                                           , EDelimited+                                               "("+                                               ")"+                                               [ Right+                                                   (EGrouped+                                                      [ EIdentifier "x"+                                                      , ESymbol Bin "\8722"+                                                      , EGrouped+                                                          [ ENumber "2"+                                                          , ESymbol Ord "\8290"+                                                          , EIdentifier "\960"+                                                          ]+                                                      ])+                                               ]+                                           ]+                                       ]+                                   ]+                                 ]+                               ]+                           , ESymbol Pun ","+                           , EIdentifier "x"+                           , ESymbol Pun ","+                           , EIdentifier "s"+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , EDelimited+                "("+                ")"+                [ Right+                    (EArray+                       [ AlignCenter ]+                       [ [ [ EGrouped+                               [ ENumber "2"+                               , ESymbol Ord "\8290"+                               , EIdentifier "\960"+                               , ESymbol Ord "\8290"+                               , EGrouped+                                   [ EIdentifier "Dirac"+                                   , ESymbol Ord "\8289"+                                   , EDelimited+                                       "("+                                       ")"+                                       [ Right+                                           (EGrouped+                                              [ EIdentifier "s"+                                              , ESymbol Bin "\8722"+                                              , EGrouped+                                                  [ ENumber "2"+                                                  , ESymbol Ord "\8290"+                                                  , EIdentifier "\960"+                                                  ]+                                              ])+                                       ]+                                   ]+                               ]+                           ]+                         ]+                       , [ [ EGrouped+                               [ ENumber "2"+                               , ESymbol Ord "\8290"+                               , EIdentifier "\960"+                               , ESymbol Ord "\8290"+                               , ESuper+                                   (EIdentifier "e")+                                   (EGrouped+                                      [ EGrouped [ ESymbol Bin "\8722" , ENumber "2" ]+                                      , ESymbol Ord "\8290"+                                      , EIdentifier "i"+                                      , ESymbol Ord "\8290"+                                      , EIdentifier "\960"+                                      , ESymbol Ord "\8290"+                                      , EIdentifier "s"+                                      ])+                               ]+                           ]+                         ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped [ EIdentifier "x" , ESymbol Bin "+" , ENumber "3" ]+                    , ESymbol Rel "="+                    , ENumber "123"+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter , AlignCenter , AlignCenter , AlignCenter ]+            [ [ [ EIdentifier "t" ]+              , [ EIdentifier "x" ]+              , [ EIdentifier "y" ]+              , [ EIdentifier "z" ]+              ]+            , [ [ ENumber "0" ]+              , [ ENumber "1.0000" ]+              , [ ENumber "1.0000" ]+              , [ ENumber "1.0000" ]+              ]+            , [ [ ENumber ".1" ]+              , [ ENumber "1.1158" ]+              , [ ENumber "1.0938" ]+              , [ ENumber ".8842" ]+              ]+            , [ [ ENumber ".2" ]+              , [ ENumber "1.2668" ]+              , [ ENumber "1.1695" ]+              , [ ENumber ".7332" ]+              ]+            , [ [ ENumber ".3" ]+              , [ ENumber "1.4582" ]+              , [ ENumber "1.2173" ]+              , [ ENumber ".5418" ]+              ]+            , [ [ ENumber ".4" ]+              , [ ENumber "1.6953" ]+              , [ ENumber "1.2253" ]+              , [ ENumber ".3047" ]+              ]+            , [ [ ENumber ".5" ]+              , [ ENumber "1.9830" ]+              , [ ENumber "1.1791" ]+              , [ ENumber ".0170" ]+              ]+            , [ [ ENumber ".6" ]+              , [ ENumber "2.3256" ]+              , [ ENumber "1.0619" ]+              , [ EGrouped [ ESymbol Bin "\8722" , ENumber ".3256" ] ]+              ]+            , [ [ ENumber ".7" ]+              , [ ENumber "2.7265" ]+              , [ ENumber ".8542" ]+              , [ EGrouped [ ESymbol Bin "\8722" , ENumber ".7265" ] ]+              ]+            , [ [ ENumber ".8" ]+              , [ ENumber "3.1873" ]+              , [ ENumber ".5344" ]+              , [ EGrouped [ ESymbol Bin "\8722" , ENumber "1.1873" ] ]+              ]+            , [ [ ENumber ".9" ]+              , [ ENumber "3.7077" ]+              , [ ENumber ".0777" ]+              , [ EGrouped [ ESymbol Bin "\8722" , ENumber "1.7077" ] ]+              ]+            , [ [ ENumber "1.0" ]+              , [ ENumber "4.2842" ]+              , [ EGrouped [ ESymbol Bin "\8722" , ENumber ".5424" ] ]+              , [ EGrouped [ ESymbol Bin "\8722" , ENumber "2.2842" ] ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESub (EIdentifier "K") (EIdentifier "v")+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "(" , EIdentifier "z" , ESymbol Close ")" ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESub (EIdentifier "BesselK") (EIdentifier "v")+                , ESymbol Ord "\8289"+                , EDelimited "(" ")" [ Right (EIdentifier "z") ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ ESuper (EIdentifier "z") (ENumber "2")+                    , ESymbol Ord "\8290"+                    , EFraction+                        NormalFrac+                        (EGrouped+                           [ ESuper (ESymbol Ord "\8518") (ENumber "2") , EIdentifier "w" ])+                        (EGrouped+                           [ ESymbol Ord "\8518" , ESuper (EIdentifier "z") (ENumber "2") ])+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EIdentifier "z"+                    , ESymbol Ord "\8290"+                    , EFraction+                        NormalFrac+                        (EGrouped [ ESymbol Ord "\8518" , EIdentifier "w" ])+                        (EGrouped [ ESymbol Ord "\8518" , EIdentifier "z" ])+                    ]+                , ESymbol Bin "\8722"+                , EGrouped+                    [ EDelimited+                        "("+                        ")"+                        [ Right+                            (EGrouped+                               [ ESuper (EIdentifier "z") (ENumber "2")+                               , ESymbol Bin "+"+                               , ESuper (EIdentifier "v") (ENumber "2")+                               ])+                        ]+                    , ESymbol Ord "\8290"+                    , EIdentifier "w"+                    ]+                ]+            , ESymbol Rel "="+            , ENumber "0"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EFraction+                    NormalFrac+                    (EGrouped+                       [ ESuper (ESymbol Ord "\8706") (ENumber "2")+                       , EGrouped+                           [ EIdentifier "u"+                           , ESymbol Ord "\8289"+                           , EGrouped+                               [ ESymbol Open "("+                               , EGrouped [ EIdentifier "x" , ESymbol Pun "," , EIdentifier "y" ]+                               , ESymbol Close ")"+                               ]+                           ]+                       ])+                    (EGrouped+                       [ ESymbol Ord "\8706" , ESuper (EIdentifier "x") (ENumber "2") ])+                , ESymbol Bin "\8722"+                , EFraction+                    NormalFrac+                    (EGrouped+                       [ ESuper (ESymbol Ord "\8706") (ENumber "2")+                       , EGrouped+                           [ EIdentifier "u"+                           , ESymbol Ord "\8289"+                           , EGrouped+                               [ ESymbol Open "("+                               , EGrouped [ EIdentifier "x" , ESymbol Pun "," , EIdentifier "y" ]+                               , ESymbol Close ")"+                               ]+                           ]+                       ])+                    (EGrouped+                       [ ESymbol Ord "\8706" , ESuper (EIdentifier "y") (ENumber "2") ])+                ]+            , ESymbol Rel "="+            , ENumber "0"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "y"+                , ESymbol Ord "\8289"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped [ EIdentifier "t" , ESymbol Pun "," , EIdentifier "x" ])+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ ESub (EIdentifier "F") (ENumber "1")+                    , ESymbol Ord "\8290"+                    , EDelimited+                        "("+                        ")"+                        [ Right+                            (EGrouped+                               [ EGrouped [ ESymbol Bin "\8722" , EIdentifier "x" ]+                               , ESymbol Bin "\8722"+                               , EGrouped+                                   [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "t" ]+                               ])+                        ]+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ ESub (EIdentifier "F") (ENumber "2")+                    , ESymbol Ord "\8290"+                    , EDelimited+                        "("+                        ")"+                        [ Right+                            (EGrouped+                               [ EIdentifier "x"+                               , ESymbol Bin "\8722"+                               , EGrouped+                                   [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "t" ]+                               ])+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter , AlignCenter , AlignCenter ]+            [ [ [ ENumber "1" ] , [ ENumber "2" ] , [ ENumber "3" ] ]+            , [ [ ENumber "4" ] , [ ENumber "5" ] , [ ENumber "6" ] ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped [ ENumber "2" , ESymbol Ord "\8290" , EIdentifier "x" ]+                , ESymbol Bin "+"+                , ENumber "1"+                ]+            , ESymbol Rel "="+            , ENumber "5"+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped [ ENumber "1" , ESymbol Rel "=" , ENumber "3" ] ] ]+            , [ [ EGrouped [ ENumber "9" , ESymbol Rel "=" , ENumber "7" ] ] ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "b" ]+                ]+              ]+            , [ [ EGrouped+                    [ EIdentifier "c" , ESymbol Ord "\8290" , EIdentifier "d" ]+                ]+              ]+            , [ [ EGrouped+                    [ EIdentifier "e" , ESymbol Ord "\8290" , EIdentifier "f" ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ EIdentifier "x"+                        , ESymbol Bin "+"+                        , EGrouped [ ENumber "2" , ESymbol Ord "\8290" , EIdentifier "y" ]+                        , ESymbol Bin "\8722"+                        , ENumber "3"+                        ]+                    , ESymbol Rel "="+                    , ENumber "5"+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ EGrouped [ ENumber "4" , ESymbol Ord "\8290" , EIdentifier "x" ]+                        , ESymbol Bin "\8722"+                        , EIdentifier "y"+                        , ESymbol Bin "\8722"+                        , ENumber "5"+                        ]+                    , ESymbol Rel "="+                    , ENumber "98"+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EIdentifier "x" , ESymbol Rel "=" , EIdentifier "z" ]+                ]+              ]+            , [ [ EGrouped [ ENumber "1" , ESymbol Rel "=" , ENumber "3" ] ] ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ ESub (EIdentifier "A") (ENumber "1")+                        , ESymbol Rel "="+                        , EGrouped+                            [ EGrouped+                                [ ESub (EIdentifier "N") (ENumber "0")+                                , ESymbol Ord "\8289"+                                , EGrouped+                                    [ ESymbol Open "("+                                    , EGrouped+                                        [ EIdentifier "\955"+                                        , ESymbol Pun ";"+                                        , ESuper (EIdentifier "\937") (ESymbol Ord "\8242")+                                        ]+                                    , ESymbol Close ")"+                                    ]+                                ]+                            , ESymbol Bin "\8722"+                            , EGrouped+                                [ EIdentifier "\966"+                                , ESymbol Ord "\8289"+                                , EGrouped+                                    [ ESymbol Open "("+                                    , EGrouped+                                        [ EIdentifier "\955"+                                        , ESymbol Pun ";"+                                        , ESuper (EIdentifier "\937") (ESymbol Ord "\8242")+                                        ]+                                    , ESymbol Close ")"+                                    ]+                                ]+                            ]+                        ]+                    , EText TextNormal ","+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ ESub (EIdentifier "A") (ENumber "2")+                        , ESymbol Rel "="+                        , EGrouped+                            [ EGrouped+                                [ EIdentifier "\966"+                                , ESymbol Ord "\8289"+                                , EGrouped+                                    [ ESymbol Open "("+                                    , EGrouped+                                        [ EIdentifier "\955"+                                        , ESymbol Pun ";"+                                        , ESuper (EIdentifier "\937") (ESymbol Ord "\8242")+                                        ]+                                    , ESymbol Close ")"+                                    ]+                                ]+                            , ESymbol Bin "\8722"+                            , EGrouped+                                [ EIdentifier "\966"+                                , ESymbol Ord "\8289"+                                , EGrouped+                                    [ ESymbol Open "("+                                    , EGrouped+                                        [ EIdentifier "\955"+                                        , ESymbol Pun ";"+                                        , EIdentifier "\937"+                                        ]+                                    , ESymbol Close ")"+                                    ]+                                ]+                            ]+                        ]+                    , EText TextNormal ","+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ ESub (EIdentifier "A") (ENumber "3")+                        , ESymbol Rel "="+                        , EGrouped+                            [ EStyled TextScript [ EIdentifier "N" ]+                            , ESymbol Ord "\8289"+                            , EGrouped+                                [ ESymbol Open "("+                                , EGrouped+                                    [ EIdentifier "\955" , ESymbol Pun ";" , EIdentifier "\969" ]+                                , ESymbol Close ")"+                                ]+                            ]+                        ]+                    , EText TextNormal "."+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ]+                ]+              ]+            , [ [ EGrouped+                    [ EMathOperator "cos" , ESymbol Ord "\8289" , EIdentifier "\947" ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Rel "="+            , EDelimited+                "{"+                ""+                [ Right+                    (EArray+                       [ AlignLeft , AlignLeft ]+                       [ [ [ EIdentifier "x" ]+                         , [ EGrouped+                               [ EText TextNormal "if\8194"+                               , EGrouped [ EIdentifier "x" , ESymbol Rel "<" , ENumber "0" ]+                               ]+                           ]+                         ]+                       , [ [ EGrouped [ ESymbol Bin "\8722" , EIdentifier "x" ] ]+                         , [ EGrouped+                               [ EText TextNormal "if\8194"+                               , EGrouped [ EIdentifier "x" , ESymbol Rel "\8805" , ENumber "0" ]+                               ]+                           ]+                         ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EIdentifier "L"+                    , ESymbol Ord "\8290"+                    , EIdentifier "M"+                    , ESymbol Ord "\8290"+                    , EIdentifier "R"+                    , ESymbol Ord "\8290"+                    , EIdentifier "M"+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EIdentifier "L"+                    , ESymbol Ord "\8290"+                    , EIdentifier "M"+                    , ESymbol Ord "\8290"+                    , EIdentifier "R"+                    , ESymbol Ord "\8290"+                    , EIdentifier "M"+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EIdentifier "M"+                    , ESymbol Ord "\8290"+                    , EIdentifier "A"+                    , ESymbol Ord "\8290"+                    , EIdentifier "T"+                    , ESymbol Ord "\8290"+                    , EIdentifier "H"+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EIdentifier "M"+                    , ESymbol Ord "\8290"+                    , EIdentifier "A"+                    , ESymbol Ord "\8290"+                    , EIdentifier "T"+                    , ESymbol Ord "\8290"+                    , EIdentifier "H"+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EText TextNormal "\8942" ] , [] ]+    , [ [ EGrouped+            [ EGrouped [ EMathOperator "\8711\215" , EIdentifier "F" ]+            , ESymbol Rel "="+            , ENumber "0"+            ]+        ]+      , []+      ]+    , [ [ EGrouped [ EMathOperator "\8711\183" , EIdentifier "F" ] ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ EMathOperator "\8711\183\8711" , EIdentifier "F" ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ ESuper (ESymbol Ord "\8711") (ENumber "2") , EIdentifier "F" ]+                , ESymbol Bin "+"+                , ENumber "7"+                ]+            , ESymbol Rel "="+            , EIdentifier "A"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EMathOperator "\8711\215"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped+                        [ EGrouped+                            [ EIdentifier "x" , ESymbol Ord "\8290" , EIdentifier "y" ]+                        , ESymbol Pun ","+                        , EGrouped+                            [ EIdentifier "y" , ESymbol Ord "\8290" , EIdentifier "z" ]+                        , ESymbol Pun ","+                        , EGrouped+                            [ EIdentifier "z" , ESymbol Ord "\8290" , EIdentifier "x" ]+                        ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EDelimited+                "["+                "]"+                [ Right+                    (EArray+                       [ AlignCenter ]+                       [ [ [ EGrouped [ ESymbol Bin "\8722" , EIdentifier "y" ] ] ]+                       , [ [ EGrouped [ ESymbol Bin "\8722" , EIdentifier "z" ] ] ]+                       , [ [ EGrouped [ ESymbol Bin "\8722" , EIdentifier "x" ] ] ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EMathOperator "\8711\215"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped+                        [ EIdentifier "y"+                        , ESymbol Pun ","+                        , EIdentifier "z"+                        , ESymbol Pun ","+                        , EIdentifier "x"+                        ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EDelimited+                "("+                ")"+                [ Right+                    (EGrouped+                       [ EGrouped [ ESymbol Bin "\8722" , ENumber "1" ]+                       , ESymbol Pun ","+                       , EGrouped [ ESymbol Bin "\8722" , ENumber "1" ]+                       , ESymbol Pun ","+                       , EGrouped [ ESymbol Bin "\8722" , ENumber "1" ]+                       ])+                ]+            , ESymbol Rel "\8800"+            , ENumber "0"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "x"+                , ESymbol Bin "+"+                , EIdentifier "y"+                , ESymbol Bin "+"+                , EIdentifier "\945"+                ]+            , ESymbol Rel "="+            , ENumber "102"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EStyled TextBold [ EIdentifier "a" ]+                , ESymbol Bin "+"+                , EStyled TextBold [ EIdentifier "b" ]+                ]+            , ESymbol Rel "="+            , EStyled TextBold [ EIdentifier "c" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped [ EIdentifier "x" , ESymbol Bin "+" , ENumber "1" ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "x"+                , ESymbol Bin "+"+                , EGrouped+                    [ EIdentifier "f"+                    , ESymbol Ord "\8289"+                    , EGrouped+                        [ ESymbol Open "("+                        , EStyled TextBold [ EIdentifier "x" ]+                        , ESymbol Close ")"+                        ]+                    ]+                , ESymbol Bin "\8722"+                , ENumber "1"+                ]+            , ESymbol Rel "="+            , ENumber "123"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EStyled TextItalic [ EIdentifier "T" ]+                , ESymbol Ord "\8290"+                , EStyled TextItalic [ EIdentifier "h" ]+                , ESymbol Ord "\8290"+                , EStyled TextItalic [ EIdentifier "e" ]+                , ESymbol Ord "\8290"+                , EStyled TextItalic [ EIdentifier "q" ]+                , ESymbol Ord "\8290"+                , EStyled TextItalic [ EIdentifier "u" ]+                , ESymbol Ord "\8290"+                , EStyled TextItalic [ EIdentifier "i" ]+                , ESymbol Ord "\8290"+                , EStyled TextItalic [ EIdentifier "c" ]+                , ESymbol Ord "\8290"+                , EStyled TextItalic [ EIdentifier "k" ]+                , ESymbol Ord "\8290"+                , EIdentifier "b"+                , ESymbol Ord "\8290"+                , EIdentifier "r"+                , ESymbol Ord "\8290"+                , EIdentifier "o"+                , ESymbol Ord "\8290"+                , EIdentifier "w"+                , ESymbol Ord "\8290"+                , EIdentifier "n"+                , ESymbol Ord "\8290"+                , EIdentifier "f"+                , ESymbol Ord "\8290"+                , EIdentifier "o"+                , ESymbol Ord "\8290"+                , EIdentifier "x"+                , ESymbol Ord "\8290"+                , EIdentifier "j"+                , ESymbol Ord "\8290"+                , EIdentifier "u"+                , ESymbol Ord "\8290"+                , EIdentifier "m"+                , ESymbol Ord "\8290"+                , EIdentifier "p"+                , ESymbol Ord "\8290"+                , EIdentifier "s"+                , ESymbol Ord "\8290"+                , EStyled TextBold [ EIdentifier "o" ]+                , ESymbol Ord "\8290"+                , EStyled TextBold [ EIdentifier "v" ]+                , ESymbol Ord "\8290"+                , EStyled TextBold [ EIdentifier "e" ]+                , ESymbol Ord "\8290"+                , EStyled TextBold [ EIdentifier "r" ]+                , ESymbol Ord "\8290"+                , EIdentifier "t"+                , ESymbol Ord "\8290"+                , EIdentifier "h"+                , ESymbol Ord "\8290"+                , EIdentifier "e"+                , ESymbol Ord "\8290"+                , EStyled TextSansSerif [ EIdentifier "l" ]+                , ESymbol Ord "\8290"+                , EStyled TextSansSerif [ EIdentifier "a" ]+                , ESymbol Ord "\8290"+                , EStyled TextSansSerif [ EIdentifier "z" ]+                , ESymbol Ord "\8290"+                , EStyled TextSansSerif [ EIdentifier "y" ]+                , ESymbol Ord "\8290"+                , EStyled TextMonospace [ EIdentifier "d" ]+                , ESymbol Ord "\8290"+                , EStyled TextMonospace [ EIdentifier "o" ]+                , ESymbol Ord "\8290"+                , EStyled TextMonospace [ EIdentifier "g" ]+                ]+            , EText TextNormal "."+            , EGrouped+                [ EIdentifier "T"+                , ESymbol Ord "\8290"+                , EIdentifier "h"+                , ESymbol Ord "\8290"+                , EIdentifier "e"+                , ESymbol Ord "\8290"+                , EIdentifier "e"+                , ESymbol Ord "\8290"+                , EIdentifier "n"+                , ESymbol Ord "\8290"+                , EIdentifier "d"+                ]+            , EText TextNormal "."+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            ")"+            [ Right+                (EGrouped+                   [ EGrouped+                       [ EFraction+                           NormalFrac+                           (EGrouped [ ESymbol Ord "\8706" , EIdentifier "f" ])+                           (EGrouped+                              [ ESymbol Ord "\8706" , ESub (EIdentifier "x") (ENumber "1") ])+                       , ESymbol Ord "\8289"+                       , EDelimited+                           "("+                           ")"+                           [ Right+                               (EGrouped+                                  [ ESub (EIdentifier "c") (ENumber "1")+                                  , ESymbol Pun ","+                                  , ESub (EIdentifier "c") (ENumber "2")+                                  , ESymbol Pun ","+                                  , EIdentifier "\8230"+                                  , ESymbol Pun ","+                                  , ESub (EIdentifier "c") (EIdentifier "n")+                                  ])+                           ]+                       ]+                   , ESymbol Pun ","+                   , EGrouped+                       [ EFraction+                           NormalFrac+                           (EGrouped [ ESymbol Ord "\8706" , EIdentifier "f" ])+                           (EGrouped+                              [ ESymbol Ord "\8706" , ESub (EIdentifier "x") (ENumber "2") ])+                       , ESymbol Ord "\8289"+                       , EDelimited+                           "("+                           ")"+                           [ Right+                               (EGrouped+                                  [ ESub (EIdentifier "c") (ENumber "1")+                                  , ESymbol Pun ","+                                  , ESub (EIdentifier "c") (ENumber "2")+                                  , ESymbol Pun ","+                                  , EIdentifier "\8230"+                                  , ESymbol Pun ","+                                  , ESub (EIdentifier "c") (EIdentifier "n")+                                  ])+                           ]+                       ]+                   , ESymbol Pun ","+                   , EIdentifier "\8230"+                   , ESymbol Pun ","+                   , EGrouped+                       [ EFraction+                           NormalFrac+                           (EGrouped [ ESymbol Ord "\8706" , EIdentifier "f" ])+                           (EGrouped+                              [ ESymbol Ord "\8706"+                              , ESub+                                  (EIdentifier "x")+                                  (EGrouped [ EIdentifier "n" , ESymbol Ord "\8203" , ENumber "1" ])+                              ])+                       , ESymbol Ord "\8289"+                       , EDelimited+                           "("+                           ")"+                           [ Right+                               (EGrouped+                                  [ ESub (EIdentifier "c") (ENumber "1")+                                  , ESymbol Pun ","+                                  , ESub (EIdentifier "c") (ENumber "2")+                                  , ESymbol Pun ","+                                  , EIdentifier "\8230"+                                  , ESymbol Pun ","+                                  , ESub (EIdentifier "c") (EIdentifier "n")+                                  ])+                           ]+                       ]+                   ])+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESymbol Ord "\8711"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EGrouped+                               [ EIdentifier "c"+                               , ESymbol Ord "\8290"+                               , EIdentifier "u"+                               , ESymbol Ord "\8290"+                               , EIdentifier "v"+                               ]+                           , ESymbol Bin "+"+                           , EGrouped+                               [ ESuper (EIdentifier "v") (ENumber "2")+                               , ESymbol Ord "\8290"+                               , EIdentifier "w"+                               ]+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , EDelimited+                "("+                ")"+                [ Right+                    (EGrouped+                       [ EGrouped+                           [ EIdentifier "u" , ESymbol Ord "\8290" , EIdentifier "v" ]+                       , ESymbol Pun ","+                       , EGrouped+                           [ EIdentifier "c" , ESymbol Ord "\8290" , EIdentifier "v" ]+                       , ESymbol Pun ","+                       , EGrouped+                           [ EGrouped+                               [ EIdentifier "c" , ESymbol Ord "\8290" , EIdentifier "u" ]+                           , ESymbol Bin "+"+                           , EGrouped+                               [ ENumber "2"+                               , ESymbol Ord "\8290"+                               , EIdentifier "v"+                               , ESymbol Ord "\8290"+                               , EIdentifier "w"+                               ]+                           ]+                       , ESymbol Pun ","+                       , ESuper (EIdentifier "v") (ENumber "2")+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ ESub (EIdentifier "D") (EIdentifier "u")+                        , ESymbol Ord "\8290"+                        , EGrouped+                            [ EIdentifier "f"+                            , ESymbol Ord "\8289"+                            , EDelimited+                                "("+                                ")"+                                [ Right+                                    (EGrouped+                                       [ EIdentifier "a"+                                       , ESymbol Pun ","+                                       , EIdentifier "b"+                                       , ESymbol Pun ","+                                       , EIdentifier "c"+                                       ])+                                ]+                            ]+                        ]+                    , ESymbol Rel "="+                    , EGrouped+                        [ EGrouped+                            [ ESymbol Ord "\8711"+                            , EGrouped+                                [ EIdentifier "f"+                                , ESymbol Ord "\8289"+                                , EDelimited+                                    "("+                                    ")"+                                    [ Right+                                        (EGrouped+                                           [ EIdentifier "a"+                                           , ESymbol Pun ","+                                           , EIdentifier "b"+                                           , ESymbol Pun ","+                                           , EIdentifier "c"+                                           ])+                                    ]+                                ]+                            ]+                        , ESymbol Bin "\8901"+                        , EStyled TextBold [ EIdentifier "u" ]+                        ]+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ ESymbol Rel "="+                    , EGrouped+                        [ EGrouped+                            [ EGrouped+                                [ EFraction+                                    NormalFrac+                                    (EGrouped [ ESymbol Ord "\8706" , EIdentifier "f" ])+                                    (EGrouped [ ESymbol Ord "\8706" , EIdentifier "x" ])+                                , ESymbol Ord "\8289"+                                , EDelimited+                                    "("+                                    ")"+                                    [ Right+                                        (EGrouped+                                           [ EIdentifier "a"+                                           , ESymbol Pun ","+                                           , EIdentifier "b"+                                           , ESymbol Pun ","+                                           , EIdentifier "c"+                                           ])+                                    ]+                                ]+                            , ESymbol Ord "\8290"+                            , ESub (EIdentifier "u") (ENumber "1")+                            ]+                        , ESymbol Bin "+"+                        , EGrouped+                            [ EGrouped+                                [ EFraction+                                    NormalFrac+                                    (EGrouped [ ESymbol Ord "\8706" , EIdentifier "f" ])+                                    (EGrouped [ ESymbol Ord "\8706" , EIdentifier "y" ])+                                , ESymbol Ord "\8289"+                                , EDelimited+                                    "("+                                    ")"+                                    [ Right+                                        (EGrouped+                                           [ EIdentifier "a"+                                           , ESymbol Pun ","+                                           , EIdentifier "b"+                                           , ESymbol Pun ","+                                           , EIdentifier "c"+                                           ])+                                    ]+                                ]+                            , ESymbol Ord "\8290"+                            , ESub (EIdentifier "u") (ENumber "2")+                            ]+                        , ESymbol Bin "+"+                        , EGrouped+                            [ EGrouped+                                [ EFraction+                                    NormalFrac+                                    (EGrouped [ ESymbol Ord "\8706" , EIdentifier "f" ])+                                    (EGrouped [ ESymbol Ord "\8706" , EIdentifier "z" ])+                                , ESymbol Ord "\8289"+                                , EDelimited+                                    "("+                                    ")"+                                    [ Right+                                        (EGrouped+                                           [ EIdentifier "a"+                                           , ESymbol Pun ","+                                           , EIdentifier "b"+                                           , ESymbol Pun ","+                                           , EIdentifier "c"+                                           ])+                                    ]+                                ]+                            , ESymbol Ord "\8290"+                            , ESub (EIdentifier "u") (ENumber "3")+                            ]+                        ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "\952"+                , ESymbol Rel "\8712"+                , EDelimited+                    "{"+                    "}"+                    [ Right+                        (EGrouped+                           [ EIdentifier "\960"+                           , ESymbol Bin "+"+                           , EGrouped+                               [ ENumber "2"+                               , ESymbol Ord "\8290"+                               , ESub (EIdentifier "X") (ENumber "3")+                               , ESymbol Ord "\8290"+                               , EIdentifier "\960"+                               ]+                           , ESymbol Bin "\8722"+                           , EDelimited+                               "("+                               ")"+                               [ Right+                                   (EGrouped+                                      [ EMathOperator "arccos"+                                      , ESymbol Ord "\8289"+                                      , EGrouped+                                          [ EFraction NormalFrac (ENumber "1") (ENumber "7")+                                          , ESymbol Ord "\8290"+                                          , ESqrt (ENumber "14")+                                          ]+                                      ])+                               ]+                           ])+                    , Left "|"+                    , Right+                        (EGrouped+                           [ ESub (EIdentifier "X") (ENumber "3")+                           , ESymbol Rel "\8712"+                           , EIdentifier "\8484"+                           ])+                    ]+                ]+            , ESymbol Pun ","+            , EGrouped+                [ EIdentifier "\952"+                , ESymbol Rel "\8712"+                , EDelimited+                    "{"+                    "}"+                    [ Right+                        (EGrouped+                           [ EGrouped+                               [ ENumber "2"+                               , ESymbol Ord "\8290"+                               , ESub (EIdentifier "X") (ENumber "4")+                               , ESymbol Ord "\8290"+                               , EIdentifier "\960"+                               ]+                           , ESymbol Bin "\8722"+                           , EIdentifier "\960"+                           , ESymbol Bin "+"+                           , EDelimited+                               "("+                               ")"+                               [ Right+                                   (EGrouped+                                      [ EMathOperator "arccos"+                                      , ESymbol Ord "\8289"+                                      , EGrouped+                                          [ EFraction NormalFrac (ENumber "1") (ENumber "7")+                                          , ESymbol Ord "\8290"+                                          , ESqrt (ENumber "14")+                                          ]+                                      ])+                               ]+                           ])+                    , Left "|"+                    , Right+                        (EGrouped+                           [ ESub (EIdentifier "X") (ENumber "4")+                           , ESymbol Rel "\8712"+                           , EIdentifier "\8484"+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "P"+            , ESymbol Rel "="+            , EGrouped+                [ EIdentifier "A"+                , ESymbol Ord "\8290"+                , ESuper+                    (EDelimited+                       "("+                       ")"+                       [ Right+                           (EGrouped+                              [ ESuper (EIdentifier "A") (EIdentifier "T")+                              , ESymbol Ord "\8290"+                              , EIdentifier "A"+                              ])+                       ])+                    (EGrouped [ ESymbol Bin "\8722" , ENumber "1" ])+                , ESymbol Ord "\8290"+                , ESuper (EIdentifier "A") (EIdentifier "T")+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EMathOperator "det"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EArray+                           [ AlignCenter , AlignCenter , AlignCenter ]+                           [ [ [ EIdentifier "x" ] , [ EIdentifier "y" ] , [ ENumber "1" ] ]+                           , [ [ EIdentifier "a" ] , [ EIdentifier "b" ] , [ ENumber "1" ] ]+                           , [ [ EIdentifier "a" ] , [ EIdentifier "d" ] , [ ENumber "1" ] ]+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ EIdentifier "x" , ESymbol Ord "\8290" , EIdentifier "b" ]+                , ESymbol Bin "\8722"+                , EGrouped+                    [ EIdentifier "x" , ESymbol Ord "\8290" , EIdentifier "d" ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "d" ]+                , ESymbol Bin "\8722"+                , EGrouped+                    [ EIdentifier "a" , ESymbol Ord "\8290" , EIdentifier "b" ]+                ]+            , ESymbol Rel "="+            , ENumber "0"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ EIdentifier "A"+                    , ESymbol Ord "\8289"+                    , EDelimited "(" ")" [ Right (EIdentifier "\952") ]+                    ]+                , ESymbol Ord "\8290"+                , EGrouped+                    [ EIdentifier "A"+                    , ESymbol Ord "\8289"+                    , EDelimited+                        "("+                        ")"+                        [ Right (EGrouped [ ESymbol Bin "\8722" , EIdentifier "\952" ]) ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EDelimited+                    "["+                    "]"+                    [ Right+                        (EArray+                           [ AlignCenter , AlignCenter ]+                           [ [ [ EGrouped+                                   [ EMathOperator "cos"+                                   , ESymbol Ord "\8289"+                                   , EIdentifier "\952"+                                   ]+                               ]+                             , [ EGrouped+                                   [ ESymbol Bin "\8722"+                                   , EGrouped+                                       [ EMathOperator "sin"+                                       , ESymbol Ord "\8289"+                                       , EIdentifier "\952"+                                       ]+                                   ]+                               ]+                             ]+                           , [ [ EGrouped+                                   [ EMathOperator "sin"+                                   , ESymbol Ord "\8289"+                                   , EIdentifier "\952"+                                   ]+                               ]+                             , [ EGrouped+                                   [ EMathOperator "cos"+                                   , ESymbol Ord "\8289"+                                   , EIdentifier "\952"+                                   ]+                               ]+                             ]+                           ])+                    ]+                , ESymbol Ord "\8290"+                , EDelimited+                    "["+                    "]"+                    [ Right+                        (EArray+                           [ AlignCenter , AlignCenter ]+                           [ [ [ EGrouped+                                   [ EMathOperator "cos"+                                   , ESymbol Ord "\8289"+                                   , EIdentifier "\952"+                                   ]+                               ]+                             , [ EGrouped+                                   [ EMathOperator "sin"+                                   , ESymbol Ord "\8289"+                                   , EIdentifier "\952"+                                   ]+                               ]+                             ]+                           , [ [ EGrouped+                                   [ ESymbol Bin "\8722"+                                   , EGrouped+                                       [ EMathOperator "sin"+                                       , ESymbol Ord "\8289"+                                       , EIdentifier "\952"+                                       ]+                                   ]+                               ]+                             , [ EGrouped+                                   [ EMathOperator "cos"+                                   , ESymbol Ord "\8289"+                                   , EIdentifier "\952"+                                   ]+                               ]+                             ]+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "J"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "(" , EIdentifier "A" , ESymbol Close ")" ]+                ]+            , ESymbol Rel "="+            , EDelimited+                "["+                "]"+                [ Right+                    (EArray+                       [ AlignCenter , AlignCenter , AlignCenter , AlignCenter ]+                       [ [ [ EGrouped+                               [ ESub (EIdentifier "J") (ESub (EIdentifier "n") (ENumber "1"))+                               , ESymbol Ord "\8289"+                               , EDelimited+                                   "(" ")" [ Right (ESub (EIdentifier "\955") (ENumber "1")) ]+                               ]+                           ]+                         , [ ENumber "0" ]+                         , [ EIdentifier "\8943" ]+                         , [ ENumber "0" ]+                         ]+                       , [ [ ENumber "0" ]+                         , [ EGrouped+                               [ ESub (EIdentifier "J") (ESub (EIdentifier "n") (ENumber "2"))+                               , ESymbol Ord "\8289"+                               , EDelimited+                                   "(" ")" [ Right (ESub (EIdentifier "\955") (ENumber "2")) ]+                               ]+                           ]+                         , [ EIdentifier "\8943" ]+                         , [ ENumber "0" ]+                         ]+                       , [ [ EText TextNormal "\8942" ]+                         , [ EText TextNormal "\8942" ]+                         , [ EText TextNormal "\8945" ]+                         , [ EText TextNormal "\8942" ]+                         ]+                       , [ [ ENumber "0" ]+                         , [ ENumber "0" ]+                         , [ EIdentifier "\8943" ]+                         , [ EGrouped+                               [ ESub (EIdentifier "J") (ESub (EIdentifier "n") (EIdentifier "k"))+                               , ESymbol Ord "\8289"+                               , EDelimited+                                   "(" ")" [ Right (ESub (EIdentifier "\955") (EIdentifier "k")) ]+                               ]+                           ]+                         ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EMathOperator "det"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EArray+                           [ AlignCenter , AlignCenter , AlignCenter ]+                           [ [ [ EGrouped+                                   [ EGrouped [ ESymbol Bin "\8722" , ENumber "4" ]+                                   , ESymbol Bin "+"+                                   , EIdentifier "X"+                                   ]+                               ]+                             , [ EGrouped [ ESymbol Bin "\8722" , ENumber "1" ] ]+                             , [ ENumber "0" ]+                             ]+                           , [ [ ENumber "0" ]+                             , [ EGrouped+                                   [ EGrouped [ ESymbol Bin "\8722" , ENumber "4" ]+                                   , ESymbol Bin "+"+                                   , EIdentifier "X"+                                   ]+                               ]+                             , [ ENumber "0" ]+                             ]+                           , [ [ ENumber "0" ]+                             , [ ENumber "0" ]+                             , [ EGrouped+                                   [ EGrouped [ ESymbol Bin "\8722" , ENumber "4" ]+                                   , ESymbol Bin "+"+                                   , EIdentifier "X"+                                   ]+                               ]+                             ]+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , ESuper+                (EDelimited+                   "("+                   ")"+                   [ Right+                       (EGrouped [ EIdentifier "X" , ESymbol Bin "\8722" , ENumber "4" ])+                   ])+                (ENumber "3")+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Right+                (EDelimited+                   "{"+                   "}"+                   [ Right+                       (EDelimited+                          "("+                          ")"+                          [ Right+                              (EArray+                                 [ AlignCenter ]+                                 [ [ [ EGrouped+                                         [ EGrouped+                                             [ ESymbol Bin "\8722"+                                             , EFraction NormalFrac (ENumber "1") (ENumber "2")+                                             ]+                                         , ESymbol Bin "\8722"+                                         , EGrouped+                                             [ EFraction NormalFrac (ENumber "1") (ENumber "6")+                                             , ESymbol Ord "\8290"+                                             , ESqrt (ENumber "33")+                                             ]+                                         ]+                                     ]+                                   ]+                                 , [ [ ENumber "1" ] ]+                                 ])+                          ])+                   ])+            , Left "\8596"+            , Right+                (EGrouped+                   [ EFraction NormalFrac (ENumber "5") (ENumber "2")+                   , ESymbol Bin "\8722"+                   , EGrouped+                       [ EFraction NormalFrac (ENumber "1") (ENumber "2")+                       , ESymbol Ord "\8290"+                       , ESqrt (ENumber "33")+                       ]+                   ])+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "" "" [ Left "\8741" , Right (EIdentifier "A") , Left "\8741" ]+            , ESymbol Rel "="+            , EGrouped+                [ EUnder+                    False+                    (EMathOperator "max")+                    (EGrouped [ EIdentifier "x" , ESymbol Rel "\8800" , ENumber "0" ])+                , EFraction+                    NormalFrac+                    (EDelimited+                       ""+                       ""+                       [ Left "\8741"+                       , Right+                           (EGrouped+                              [ EIdentifier "A" , ESymbol Ord "\8290" , EIdentifier "x" ])+                       , Left "\8741"+                       ])+                    (EDelimited+                       "" "" [ Left "\8741" , Right (EIdentifier "x") , Left "\8741" ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EDelimited+                    "("+                    ")"+                    [ Right+                        (EArray+                           [ AlignCenter , AlignCenter ]+                           [ [ [ ESub+                                   (EIdentifier "a")+                                   (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "1" ])+                               ]+                             , [ ESub+                                   (EIdentifier "a")+                                   (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "2" ])+                               ]+                             ]+                           , [ [ ESub+                                   (EIdentifier "a")+                                   (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "1" ])+                               ]+                             , [ ESub+                                   (EIdentifier "a")+                                   (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "2" ])+                               ]+                             ]+                           ])+                    ]+                , ESymbol Bin "+"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EArray+                           [ AlignCenter , AlignCenter ]+                           [ [ [ ESub+                                   (EIdentifier "b")+                                   (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "1" ])+                               ]+                             , [ ESub+                                   (EIdentifier "b")+                                   (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "2" ])+                               ]+                             ]+                           , [ [ ESub+                                   (EIdentifier "b")+                                   (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "1" ])+                               ]+                             , [ ESub+                                   (EIdentifier "b")+                                   (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "2" ])+                               ]+                             ]+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , EDelimited+                "("+                ")"+                [ Right+                    (EArray+                       [ AlignCenter , AlignCenter ]+                       [ [ [ EGrouped+                               [ ESub+                                   (EIdentifier "a")+                                   (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "1" ])+                               , ESymbol Bin "+"+                               , ESub+                                   (EIdentifier "b")+                                   (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "1" ])+                               ]+                           ]+                         , [ EGrouped+                               [ ESub+                                   (EIdentifier "a")+                                   (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "2" ])+                               , ESymbol Bin "+"+                               , ESub+                                   (EIdentifier "b")+                                   (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "2" ])+                               ]+                           ]+                         ]+                       , [ [ EGrouped+                               [ ESub+                                   (EIdentifier "a")+                                   (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "1" ])+                               , ESymbol Bin "+"+                               , ESub+                                   (EIdentifier "b")+                                   (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "1" ])+                               ]+                           ]+                         , [ EGrouped+                               [ ESub+                                   (EIdentifier "a")+                                   (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "2" ])+                               , ESymbol Bin "+"+                               , ESub+                                   (EIdentifier "b")+                                   (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "2" ])+                               ]+                           ]+                         ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "f"+                , ESymbol Ord "\8289"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EDelimited+                           "["+                           "]"+                           [ Right+                               (EArray+                                  [ AlignCenter , AlignCenter ]+                                  [ [ [ ENumber "1" ] , [ ENumber "2" ] ]+                                  , [ [ ENumber "4" ] , [ ENumber "3" ] ]+                                  ])+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESuper+                    (EDelimited+                       "["+                       "]"+                       [ Right+                           (EArray+                              [ AlignCenter , AlignCenter ]+                              [ [ [ ENumber "1" ] , [ ENumber "2" ] ]+                              , [ [ ENumber "4" ] , [ ENumber "3" ] ]+                              ])+                       ])+                    (ENumber "2")+                , ESymbol Bin "\8722"+                , EGrouped+                    [ ENumber "5"+                    , ESymbol Ord "\8290"+                    , EDelimited+                        "["+                        "]"+                        [ Right+                            (EArray+                               [ AlignCenter , AlignCenter ]+                               [ [ [ ENumber "1" ] , [ ENumber "2" ] ]+                               , [ [ ENumber "4" ] , [ ENumber "3" ] ]+                               ])+                        ]+                    ]+                , ESymbol Bin "\8722"+                , ENumber "2"+                ]+            , ESymbol Rel "="+            , EDelimited+                "["+                "]"+                [ Right+                    (EArray+                       [ AlignCenter , AlignCenter ]+                       [ [ [ ENumber "2" ]+                         , [ EGrouped [ ESymbol Bin "\8722" , ENumber "2" ] ]+                         ]+                       , [ [ EGrouped [ ESymbol Bin "\8722" , ENumber "4" ] ]+                         , [ ENumber "0" ]+                         ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Rel "="+            , EGrouped+                [ EUnder+                    False+                    (EMathOperator "lim")+                    (EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ])+                , EGrouped+                    [ EUnderover False (ESymbol Op "\8721") (ENumber "1") (ENumber "2")+                    , EIdentifier "a"+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESubsup (ESymbol Op "\8747") (EIdentifier "a") (EIdentifier "b")+                , EGrouped+                    [ EGrouped+                        [ EIdentifier "f"+                        , ESymbol Ord "\8289"+                        , EGrouped+                            [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                        ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EUnder+                    False+                    (EMathOperator "lim")+                    (EGrouped+                       [ EGrouped+                           [ ESymbol Op "\8741" , EIdentifier "P" , ESymbol Op "\8741" ]+                       , ESymbol Accent "\8594"+                       , ENumber "0"+                       ])+                , EGrouped+                    [ EUnderover+                        False+                        (ESymbol Op "\8721")+                        (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "1" ])+                        (EIdentifier "n")+                    , EGrouped+                        [ EGrouped+                            [ EIdentifier "f"+                            , ESymbol Ord "\8289"+                            , EDelimited+                                "("+                                ")"+                                [ Right+                                    (ESub+                                       (EOver False (EIdentifier "x") (ESymbol Accent "\175"))+                                       (EIdentifier "i"))+                                ]+                            ]+                        , ESymbol Ord "\8290"+                        , EGrouped+                            [ ESymbol Alpha "\916" , ESub (EIdentifier "x") (EIdentifier "i") ]+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESubsup (ESymbol Op "\8747") (EIdentifier "a") (EIdentifier "b")+                , EGrouped+                    [ EGrouped+                        [ EIdentifier "f"+                        , ESymbol Ord "\8289"+                        , EGrouped+                            [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                        ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EUnder+                    False+                    (EMathOperator "lim")+                    (EGrouped+                       [ EIdentifier "n" , ESymbol Accent "\8594" , EIdentifier "\8734" ])+                , EGrouped+                    [ EFraction+                        NormalFrac+                        (EGrouped+                           [ EIdentifier "b" , ESymbol Bin "\8722" , EIdentifier "a" ])+                        (EIdentifier "n")+                    , ESymbol Ord "\8290"+                    , EGrouped+                        [ EUnderover+                            False+                            (ESymbol Op "\8721")+                            (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "1" ])+                            (EIdentifier "n")+                        , EGrouped+                            [ EIdentifier "f"+                            , ESymbol Ord "\8289"+                            , EDelimited+                                "("+                                ")"+                                [ Right+                                    (EGrouped+                                       [ EIdentifier "a"+                                       , ESymbol Bin "+"+                                       , EGrouped+                                           [ EIdentifier "i"+                                           , ESymbol Ord "\8290"+                                           , EFraction+                                               NormalFrac+                                               (EGrouped+                                                  [ EIdentifier "b"+                                                  , ESymbol Bin "\8722"+                                                  , EIdentifier "a"+                                                  ])+                                               (EIdentifier "n")+                                           ]+                                       ])+                                ]+                            ]+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESubsup (ESymbol Op "\8747") (ENumber "0") (ENumber "2")+                , EGrouped+                    [ ESuper (EIdentifier "x") (ENumber "5")+                    , ESymbol Ord "\8290"+                    , ESqrt+                        (EGrouped+                           [ ESuper (EIdentifier "x") (ENumber "3")+                           , ESymbol Bin "+"+                           , ENumber "1"+                           ])+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESubsup (ESymbol Op "\8747") (ENumber "1") (ENumber "3")+                , EGrouped+                    [ EFraction NormalFrac (ENumber "2") (ENumber "3")+                    , ESymbol Ord "\8290"+                    , EIdentifier "u"+                    , ESymbol Ord "\8290"+                    , EFraction+                        NormalFrac+                        (ESqrt+                           (EDelimited+                              "(" ")" [ Right (ESuper (EIdentifier "u") (ENumber "2")) ]))+                        (ESuper+                           (EDelimited+                              "("+                              ")"+                              [ Right+                                  (EGrouped+                                     [ ESuper (EIdentifier "u") (ENumber "2")+                                     , ESymbol Bin "\8722"+                                     , ENumber "1"+                                     ])+                              ])+                           (EFraction NormalFrac (ENumber "2") (ENumber "3")))+                    , ESymbol Ord "\8290"+                    , EDelimited+                        "("+                        ")"+                        [ Right+                            (EGrouped+                               [ EGrouped+                                   [ ESuper (EIdentifier "u") (ENumber "2")+                                   , ESymbol Ord "\8290"+                                   , ESuper+                                       (EDelimited+                                          "("+                                          ")"+                                          [ Right+                                              (EGrouped+                                                 [ ESuper (EIdentifier "u") (ENumber "2")+                                                 , ESymbol Bin "\8722"+                                                 , ENumber "1"+                                                 ])+                                          ])+                                       (EFraction NormalFrac (ENumber "2") (ENumber "3"))+                                   ]+                               , ESymbol Bin "\8722"+                               , ESuper+                                   (EDelimited+                                      "("+                                      ")"+                                      [ Right+                                          (EGrouped+                                             [ ESuper (EIdentifier "u") (ENumber "2")+                                             , ESymbol Bin "\8722"+                                             , ENumber "1"+                                             ])+                                      ])+                                   (EFraction NormalFrac (ENumber "2") (ENumber "3"))+                               ])+                        ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "u" ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right+                    (EGrouped+                       [ EGrouped+                           [ EIdentifier "f"+                           , ESymbol Ord "\8289"+                           , EGrouped+                               [ ESymbol Open "("+                               , EGrouped+                                   [ EIdentifier "g"+                                   , ESymbol Ord "\8289"+                                   , EGrouped+                                       [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                                   ]+                               , ESymbol Close ")"+                               ]+                           ]+                       , ESymbol Ord "\8290"+                       , EGrouped+                           [ ESuper (EIdentifier "g") (ESymbol Ord "\8242")+                           , ESymbol Ord "\8289"+                           , EGrouped+                               [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                           ]+                       , ESymbol Ord "\8290"+                       , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                       ])+                ]+            , ESymbol Rel "="+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EGrouped+                       [ EGrouped+                           [ EIdentifier "f"+                           , ESymbol Ord "\8289"+                           , EGrouped+                               [ ESymbol Open "(" , EIdentifier "u" , ESymbol Close ")" ]+                           ]+                       , ESymbol Ord "\8290"+                       , EGrouped [ ESymbol Ord "\8518" , EIdentifier "u" ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Rel "="+            , EGrouped+                [ ENumber "2"+                , ESymbol Ord "\8290"+                , EGrouped+                    [ EUnderover+                        False+                        (ESymbol Op "\8721")+                        (EGrouped [ EIdentifier "n" , ESymbol Rel "=" , ENumber "1" ])+                        (ENumber "100")+                    , EGrouped+                        [ EIdentifier "n"+                        , ESymbol Ord "\8290"+                        , EGrouped+                            [ ESymbol Open "("+                            , EGrouped [ EIdentifier "n" , ESymbol Bin "\8722" , ENumber "1" ]+                            , ESymbol Close ")"+                            ]+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EUnder+                    False+                    (EMathOperator "lim")+                    (EGrouped+                       [ EIdentifier "x" , ESymbol Accent "\8594" , ENumber "0" ])+                , EGrouped+                    [ EMathOperator "sin"+                    , ESymbol Ord "\8289"+                    , EDelimited+                        "("+                        ")"+                        [ Right (EFraction NormalFrac (ENumber "1") (EIdentifier "x")) ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped [ ESymbol Bin "\8722" , ENumber "1" ]+                , ESymbol Ord ".."+                , ENumber "1"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "h"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped [ EIdentifier "i" , ESymbol Pun "," , EIdentifier "j" ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ EGrouped+                        [ ESymbol Open "("+                        , EGrouped [ ENumber "2" , ESymbol Bin "\8722" , EIdentifier "j" ]+                        , ESymbol Close ")"+                        ]+                    , ESymbol Ord "\8290"+                    , EGrouped+                        [ EIdentifier "g"+                        , ESymbol Ord "\8289"+                        , EGrouped+                            [ ESymbol Open "(" , EIdentifier "i" , ESymbol Close ")" ]+                        ]+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EGrouped+                        [ ESymbol Open "("+                        , EGrouped [ EIdentifier "j" , ESymbol Bin "\8722" , ENumber "1" ]+                        , ESymbol Close ")"+                        ]+                    , ESymbol Ord "\8290"+                    , EGrouped+                        [ EIdentifier "f"+                        , ESymbol Ord "\8289"+                        , EGrouped+                            [ ESymbol Open "("+                            , EGrouped+                                [ EIdentifier "g"+                                , ESymbol Ord "\8289"+                                , EGrouped+                                    [ ESymbol Open "(" , EIdentifier "i" , ESymbol Close ")" ]+                                ]+                            , ESymbol Close ")"+                            ]+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "\9651"+            , ESymbol Pun ":"+            , EDelimited+                ""+                ""+                [ Right+                    (EDelimited+                       "["+                       "]"+                       [ Right (EGrouped [ ENumber "0" , ESymbol Pun "," , ENumber "1" ])+                       ])+                , Left "\8594"+                , Right+                    (EDelimited+                       "["+                       "]"+                       [ Right (EGrouped [ ENumber "0" , ESymbol Pun "," , ENumber "1" ])+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "0" , ESymbol Bin "\9661" , EIdentifier "x" ]+            , ESymbol Rel "="+            , EIdentifier "x"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "x" , ESymbol Bin "\9651" , EIdentifier "y" ]+            , ESymbol Rel "="+            , EGrouped+                [ ESuper+                    (EIdentifier "h") (EGrouped [ ESymbol Bin "\8722" , ENumber "1" ])+                , ESymbol Ord "\8290"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EGrouped+                               [ EIdentifier "h"+                               , ESymbol Ord "\8289"+                               , EDelimited "(" ")" [ Right (EIdentifier "x") ]+                               ]+                           , ESymbol Ord "\8290"+                           , EGrouped+                               [ EIdentifier "h"+                               , ESymbol Ord "\8289"+                               , EDelimited "(" ")" [ Right (EIdentifier "y") ]+                               ]+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "x" , ESymbol Bin "\9651" , EIdentifier "y" ]+            , ESymbol Rel "="+            , EGrouped+                [ ESuper+                    (EIdentifier "f") (EGrouped [ ESymbol Bin "\8722" , ENumber "1" ])+                , ESymbol Ord "\8290"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EMathOperator "max"+                           , EDelimited+                               "{"+                               "}"+                               [ Right+                                   (EGrouped+                                      [ EGrouped+                                          [ EGrouped+                                              [ EIdentifier "f"+                                              , ESymbol Ord "\8289"+                                              , EDelimited "(" ")" [ Right (EIdentifier "x") ]+                                              ]+                                          , ESymbol Bin "+"+                                          , EGrouped+                                              [ EIdentifier "f"+                                              , ESymbol Ord "\8289"+                                              , EDelimited "(" ")" [ Right (EIdentifier "y") ]+                                              ]+                                          , ESymbol Bin "\8722"+                                          , ENumber "1"+                                          ]+                                      , ESymbol Pun ","+                                      , ENumber "0"+                                      ])+                               ]+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "x" , ESymbol Bin "\9661" , EIdentifier "y" ]+            , ESymbol Rel "="+            , EGrouped+                [ EIdentifier "\951"+                , ESymbol Ord "\8289"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EGrouped+                               [ EIdentifier "\951"+                               , ESymbol Ord "\8289"+                               , EDelimited "(" ")" [ Right (EIdentifier "x") ]+                               ]+                           , ESymbol Bin "\9651"+                           , EGrouped+                               [ EIdentifier "\951"+                               , ESymbol Ord "\8289"+                               , EDelimited "(" ")" [ Right (EIdentifier "y") ]+                               ]+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "x"+                , ESymbol Ord "\8290"+                , EGrouped+                    [ ESub (ESymbol Bin "\9651") (ENumber "0") , EIdentifier "y" ]+                ]+            , ESymbol Rel "="+            , EDelimited+                "{"+                ""+                [ Right+                    (EArray+                       [ AlignCenter , AlignCenter , AlignCenter ]+                       [ [ [ EGrouped+                               [ EIdentifier "x" , ESymbol Bin "\8743" , EIdentifier "y" ]+                           ]+                         , [ EText TextNormal "if" ]+                         , [ EGrouped+                               [ EIdentifier "x"+                               , ESymbol Bin "\8744"+                               , EGrouped [ EIdentifier "y" , ESymbol Rel "=" , ENumber "1" ]+                               ]+                           ]+                         ]+                       , [ [ ENumber "0" ]+                         , [ EText TextNormal "if" ]+                         , [ EGrouped+                               [ EIdentifier "x"+                               , ESymbol Bin "\8744"+                               , EGrouped [ EIdentifier "y" , ESymbol Rel "<" , ENumber "1" ]+                               ]+                           ]+                         ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EUnder+                    False+                    (EMathOperator "lim")+                    (EGrouped+                       [ EIdentifier "a"+                       , ESymbol Accent "\8594"+                       , ESuper (ENumber "1") (ESymbol Bin "+")+                       ])+                , EGrouped+                    [ ESub (EMathOperator "log") (EIdentifier "a")+                    , ESymbol Ord "\8289"+                    , EDelimited+                        "["+                        "]"+                        [ Right+                            (EGrouped+                               [ ENumber "1"+                               , ESymbol Bin "+"+                               , EFraction+                                   NormalFrac+                                   (EGrouped+                                      [ EDelimited+                                          "("+                                          ")"+                                          [ Right+                                              (EGrouped+                                                 [ ESuper (EIdentifier "a") (EIdentifier "x")+                                                 , ESymbol Bin "\8722"+                                                 , ENumber "1"+                                                 ])+                                          ]+                                      , ESymbol Ord "\8290"+                                      , EDelimited+                                          "("+                                          ")"+                                          [ Right+                                              (EGrouped+                                                 [ ESuper (EIdentifier "a") (EIdentifier "y")+                                                 , ESymbol Bin "\8722"+                                                 , ENumber "1"+                                                 ])+                                          ]+                                      ])+                                   (EGrouped+                                      [ EIdentifier "a" , ESymbol Bin "\8722" , ENumber "1" ])+                               ])+                        ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EUnder+                    False+                    (EMathOperator "lim")+                    (EGrouped+                       [ EIdentifier "a"+                       , ESymbol Accent "\8594"+                       , ESuper (ENumber "1") (ESymbol Bin "\8722")+                       ])+                , EGrouped+                    [ ESub (EMathOperator "log") (EIdentifier "a")+                    , ESymbol Ord "\8289"+                    , EDelimited+                        "["+                        "]"+                        [ Right+                            (EGrouped+                               [ ENumber "1"+                               , ESymbol Bin "+"+                               , EFraction+                                   NormalFrac+                                   (EGrouped+                                      [ EDelimited+                                          "("+                                          ")"+                                          [ Right+                                              (EGrouped+                                                 [ ESuper (EIdentifier "a") (EIdentifier "x")+                                                 , ESymbol Bin "\8722"+                                                 , ENumber "1"+                                                 ])+                                          ]+                                      , ESymbol Ord "\8290"+                                      , EDelimited+                                          "("+                                          ")"+                                          [ Right+                                              (EGrouped+                                                 [ ESuper (EIdentifier "a") (EIdentifier "y")+                                                 , ESymbol Bin "\8722"+                                                 , ENumber "1"+                                                 ])+                                          ]+                                      ])+                                   (EGrouped+                                      [ EIdentifier "a" , ESymbol Bin "\8722" , ENumber "1" ])+                               ])+                        ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EIdentifier "x" , ESymbol Ord "\8290" , EIdentifier "y" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "g"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EMathOperator "exp"+                , ESymbol Ord "\8289"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ ESymbol Bin "\8722"+                           , EFraction+                               NormalFrac+                               (EGrouped+                                  [ ENumber "1"+                                  , ESymbol Bin "\8722"+                                  , ESuper+                                      (EDelimited+                                         "("+                                         ")"+                                         [ Right+                                             (EGrouped+                                                [ ENumber "1"+                                                , ESymbol Bin "\8722"+                                                , EIdentifier "x"+                                                ])+                                         ])+                                      (EIdentifier "a")+                                  ])+                               (EGrouped+                                  [ EDelimited+                                      "("+                                      ")"+                                      [ Right+                                          (EGrouped+                                             [ ESuper (ENumber "2") (EIdentifier "a")+                                             , ESymbol Bin "\8722"+                                             , ENumber "1"+                                             ])+                                      ]+                                  , ESymbol Ord "\8290"+                                  , ESuper+                                      (EDelimited+                                         "("+                                         ")"+                                         [ Right+                                             (EGrouped+                                                [ ENumber "1"+                                                , ESymbol Bin "\8722"+                                                , EIdentifier "x"+                                                ])+                                         ])+                                      (EIdentifier "a")+                                  ])+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EMathOperator "Aut"+                , EGrouped+                    [ ESymbol Open "("+                    , EStyled TextBold [ EIdentifier "I" ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EDelimited+                "{"+                "}"+                [ Right+                    (EGrouped+                       [ EIdentifier "f"+                       , ESymbol Pun ":"+                       , EDelimited+                           ""+                           ""+                           [ Right+                               (EDelimited+                                  "["+                                  "]"+                                  [ Right (EGrouped [ ENumber "0" , ESymbol Pun "," , ENumber "1" ])+                                  ])+                           , Left "\8594"+                           , Right+                               (EDelimited+                                  "["+                                  "]"+                                  [ Right (EGrouped [ ENumber "0" , ESymbol Pun "," , ENumber "1" ])+                                  ])+                           ]+                       ])+                , Right (ESpace (5 % 18))+                , Right+                    (EDelimited+                       "|"+                       ""+                       [ Right+                           (EArray+                              [ AlignLeft ]+                              [ [ [ EGrouped+                                      [ EIdentifier "f"+                                      , EText TextNormal "\8194is one-to-one and onto, and"+                                      ]+                                  ]+                                ]+                              , [ [ EGrouped+                                      [ EGrouped+                                          [ EIdentifier "x"+                                          , ESymbol Rel "\8804"+                                          , EIdentifier "y"+                                          ]+                                      , EText TextNormal "\8194implies\8194"+                                      , EGrouped+                                          [ EGrouped+                                              [ EIdentifier "f"+                                              , ESymbol Ord "\8289"+                                              , EDelimited "(" ")" [ Right (EIdentifier "x") ]+                                              ]+                                          , ESymbol Rel "\8804"+                                          , EGrouped+                                              [ EIdentifier "f"+                                              , ESymbol Ord "\8289"+                                              , EDelimited "(" ")" [ Right (EIdentifier "y") ]+                                              ]+                                          ]+                                      ]+                                  ]+                                ]+                              ])+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ ESuper (EIdentifier "x") (ENumber "2")+                    , ESymbol Bin "+"+                    , ESuper (EIdentifier "y") (ENumber "2")+                    ]+                , ESymbol Rel "="+                , ESuper (EIdentifier "r") (ENumber "2")+                ]+            , ESymbol Pun ","+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ EGrouped+                    [ EMathOperator "tan" , ESymbol Ord "\8289" , EIdentifier "\952" ]+                , ESymbol Rel "="+                , EFraction NormalFrac (EIdentifier "y") (EIdentifier "x")+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ ESqrt (ENumber "2")+            , ESymbol Ord "\8290"+            , ESqrt+                (EGrouped+                   [ ENumber "1"+                   , ESymbol Bin "\8722"+                   , ESuper (EIdentifier "t") (ENumber "2")+                   ])+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "["+            "]"+            [ Right+                (EGrouped+                   [ EGrouped+                       [ EGrouped+                           [ ESymbol Open "("+                           , EGrouped+                               [ ENumber "2"+                               , ESymbol Bin "+"+                               , EGrouped+                                   [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "t" ]+                               ]+                           , ESymbol Close ")"+                           ]+                       , ESymbol Ord "\8290"+                       , ENumber "10"+                       , ESymbol Ord "\8290"+                       , EGrouped+                           [ EMathOperator "cos" , ESymbol Ord "\8289" , EIdentifier "t" ]+                       ]+                   , ESymbol Pun ","+                   , EGrouped+                       [ EGrouped+                           [ ESymbol Open "("+                           , EGrouped+                               [ ENumber "2"+                               , ESymbol Bin "+"+                               , EGrouped+                                   [ EMathOperator "cos" , ESymbol Ord "\8289" , EIdentifier "t" ]+                               ]+                           , ESymbol Close ")"+                           ]+                       , ESymbol Ord "\8290"+                       , ENumber "10"+                       , ESymbol Ord "\8290"+                       , EGrouped+                           [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "t" ]+                       ]+                   , ESymbol Pun ","+                   , EGrouped+                       [ ENumber "3"+                       , ESymbol Ord "\8290"+                       , EGrouped+                           [ EMathOperator "sin"+                           , ESymbol Ord "\8289"+                           , EGrouped [ ENumber "3" , ESymbol Ord "\8290" , EIdentifier "t" ]+                           ]+                       ]+                   ])+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "{"+                "}"+                [ Right+                    (EGrouped+                       [ EGrouped [ EIdentifier "t" , ESymbol Rel "=" , ENumber "0" ]+                       , ESymbol Pun ","+                       , EGrouped [ EIdentifier "s" , ESymbol Rel "=" , ENumber "0" ]+                       ])+                ]+            , ESymbol Pun ","+            , EDelimited+                "{"+                "}"+                [ Right+                    (EGrouped+                       [ EGrouped+                           [ EIdentifier "t" , ESymbol Rel "=" , EIdentifier "\960" ]+                       , ESymbol Pun ","+                       , EGrouped+                           [ EIdentifier "s" , ESymbol Rel "=" , EIdentifier "\960" ]+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EArray+                    [ AlignCenter+                    , AlignCenter+                    , AlignCenter+                    , AlignCenter+                    , AlignCenter+                    , AlignCenter+                    , AlignCenter+                    , AlignCenter+                    , AlignCenter+                    , AlignCenter+                    ]+                    [ [ [ ENumber "1" ]+                      , [ ENumber "2" ]+                      , [ ENumber "3" ]+                      , [ ENumber "4" ]+                      , [ ENumber "5" ]+                      , [ ENumber "6" ]+                      , [ ENumber "7" ]+                      , [ ENumber "8" ]+                      , [ ENumber "9" ]+                      , [ ENumber "10" ]+                      ]+                    , [ [ ENumber "2" ]+                      , [ ENumber "4" ]+                      , [ ENumber "6" ]+                      , [ ENumber "8" ]+                      , [ ENumber "10" ]+                      , [ ENumber "1" ]+                      , [ ENumber "3" ]+                      , [ ENumber "5" ]+                      , [ ENumber "7" ]+                      , [ ENumber "9" ]+                      ]+                    , [ [ ENumber "3" ]+                      , [ ENumber "6" ]+                      , [ ENumber "9" ]+                      , [ ENumber "1" ]+                      , [ ENumber "4" ]+                      , [ ENumber "7" ]+                      , [ ENumber "10" ]+                      , [ ENumber "2" ]+                      , [ ENumber "5" ]+                      , [ ENumber "8" ]+                      ]+                    , [ [ ENumber "4" ]+                      , [ ENumber "8" ]+                      , [ ENumber "1" ]+                      , [ ENumber "5" ]+                      , [ ENumber "9" ]+                      , [ ENumber "2" ]+                      , [ ENumber "6" ]+                      , [ ENumber "10" ]+                      , [ ENumber "3" ]+                      , [ ENumber "7" ]+                      ]+                    , [ [ ENumber "5" ]+                      , [ ENumber "10" ]+                      , [ ENumber "4" ]+                      , [ ENumber "9" ]+                      , [ ENumber "3" ]+                      , [ ENumber "8" ]+                      , [ ENumber "2" ]+                      , [ ENumber "7" ]+                      , [ ENumber "1" ]+                      , [ ENumber "6" ]+                      ]+                    , [ [ ENumber "6" ]+                      , [ ENumber "1" ]+                      , [ ENumber "7" ]+                      , [ ENumber "2" ]+                      , [ ENumber "8" ]+                      , [ ENumber "3" ]+                      , [ ENumber "9" ]+                      , [ ENumber "4" ]+                      , [ ENumber "10" ]+                      , [ ENumber "5" ]+                      ]+                    , [ [ ENumber "7" ]+                      , [ ENumber "3" ]+                      , [ ENumber "10" ]+                      , [ ENumber "6" ]+                      , [ ENumber "2" ]+                      , [ ENumber "9" ]+                      , [ ENumber "5" ]+                      , [ ENumber "1" ]+                      , [ ENumber "8" ]+                      , [ ENumber "4" ]+                      ]+                    , [ [ ENumber "8" ]+                      , [ ENumber "5" ]+                      , [ ENumber "2" ]+                      , [ ENumber "10" ]+                      , [ ENumber "7" ]+                      , [ ENumber "4" ]+                      , [ ENumber "1" ]+                      , [ ENumber "9" ]+                      , [ ENumber "6" ]+                      , [ ENumber "3" ]+                      ]+                    , [ [ ENumber "9" ]+                      , [ ENumber "7" ]+                      , [ ENumber "5" ]+                      , [ ENumber "3" ]+                      , [ ENumber "1" ]+                      , [ ENumber "10" ]+                      , [ ENumber "8" ]+                      , [ ENumber "6" ]+                      , [ ENumber "4" ]+                      , [ ENumber "2" ]+                      ]+                    , [ [ ENumber "10" ]+                      , [ ENumber "9" ]+                      , [ ENumber "8" ]+                      , [ ENumber "7" ]+                      , [ ENumber "6" ]+                      , [ ENumber "5" ]+                      , [ ENumber "4" ]+                      , [ ENumber "3" ]+                      , [ ENumber "2" ]+                      , [ ENumber "1" ]+                      ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EText TextNormal "testing\8194"+                    , ESuper (EIdentifier "x") (ENumber "2")+                    , EText TextNormal "\8194end."+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray [ AlignCenter ] [ [ [ EText TextNormal "x" ] ] ] ]+      , []+      ]+    , [ [ EArray [ AlignCenter ] [ [ [ EIdentifier "x" ] ] ] ] , [] ]+    , [ [ EArray [ AlignCenter ] [ [ [ EText TextNormal "x" ] ] ] ]+      , []+      ]+    , [ [ EArray [ AlignCenter ] [ [ [ EIdentifier "x" ] ] ] ] , [] ]+    , [ [ EGrouped+            [ EGrouped+                [ EFraction+                    NormalFrac+                    (EGrouped [ ESymbol Ord "\8518" , EIdentifier "f" ])+                    (EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ])+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "("+                    , ESub (EIdentifier "x") (ENumber "1")+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , ENumber "5"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESymbol Op "\8747"+                , EGrouped+                    [ EIdentifier "x"+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESymbol Op "\8748"+                , EGrouped+                    [ EIdentifier "x"+                    , ESymbol Ord "\8290"+                    , EIdentifier "y"+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "y" ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESymbol Op "\8749"+                , EGrouped+                    [ EIdentifier "x"+                    , ESymbol Ord "\8290"+                    , EIdentifier "y"+                    , ESymbol Ord "\8290"+                    , EIdentifier "z"+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "y" ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "z" ]+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESymbol Op "\10764"+                , EGrouped+                    [ EIdentifier "x"+                    , ESymbol Ord "\8290"+                    , EIdentifier "y"+                    , ESymbol Ord "\8290"+                    , EIdentifier "z"+                    , ESymbol Ord "\8290"+                    , EIdentifier "t"+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "y" ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "z" ]+                    , ESymbol Ord "\8290"+                    , EGrouped [ ESymbol Ord "\8518" , EIdentifier "t" ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped [ EMathOperator "mod" , EIdentifier "a" ] ] , [] ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "5" , EMathOperator "mod" , ENumber "3" ]+            , ESymbol Rel "="+            , ENumber "2"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ EIdentifier "f"+                    , ESymbol Ord "\8289"+                    , EGrouped [ ESymbol Open "(" , ENumber "0" , ESymbol Close ")" ]+                    ]+                , EMathOperator "mod"+                , ENumber "3"+                ]+            , ESymbol Rel "="+            , ENumber "1"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ EGrouped [ ENumber "5" , ESymbol Ord "\8290" , EIdentifier "x" ]+                    , ESymbol Bin "+"+                    , ENumber "4"+                    ]+                , ESymbol Rel "\8801"+                , ENumber "8"+                ]+            , ESymbol Ord "\8203"+            , EDelimited+                "(" ")" [ Right (EGrouped [ EMathOperator "mod" , ENumber "13" ]) ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "a"+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ EGrouped+                        [ ESymbol Open "("+                        , EGrouped [ ENumber "5" , ESymbol Bin "\8722" , ENumber "3" ]+                        , ESymbol Close ")"+                        ]+                    , ESymbol Ord "/"+                    , ENumber "5"+                    ]+                , EMathOperator "mod"+                , ENumber "7"+                ]+            , ESymbol Rel "="+            , ENumber "6"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ EDelimited+                        "("+                        ")"+                        [ Right+                            (EGrouped+                               [ EGrouped+                                   [ ENumber "2"+                                   , ESymbol Ord "\8290"+                                   , ESuper (EIdentifier "x") (ENumber "2")+                                   ]+                               , ESymbol Bin "+"+                               , EIdentifier "x"+                               , ESymbol Bin "+"+                               , ENumber "2"+                               ])+                        ]+                    , ESymbol Bin "+"+                    , EDelimited+                        "("+                        ")"+                        [ Right+                            (EGrouped+                               [ EGrouped [ ENumber "2" , ESymbol Ord "\8290" , EIdentifier "x" ]+                               , ESymbol Bin "+"+                               , ENumber "1"+                               ])+                        ]+                    ]+                , EMathOperator "mod"+                , ENumber "3"+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ENumber "2"+                , ESymbol Ord "\8290"+                , ESuper (EIdentifier "x") (ENumber "2")+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter , AlignCenter , AlignCenter ]+            [ [ [ ESymbol Bin "+" ] , [ ENumber "0" ] , [ ENumber "1" ] ]+            , [ [ ENumber "000" ] , [ ENumber "000" ] , [ ENumber "111" ] ]+            , [ [ ENumber "1" ] , [ ENumber "1" ] , [ ENumber "0" ] ]+            ]+        ]+      , []+      ]+    , [ [ ENumber "4.\8201\&974\8201\&9" ] , [] ]+    , [ [ EGrouped+            [ EFraction+                NormalFrac+                (ESymbol Ord "\8518")+                (EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ])+            , EGrouped+                [ EIdentifier "F"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "["+            "]"+            [ Right+                (EGrouped+                   [ ENumber "86.333"+                   , ESymbol Pun ","+                   , ENumber "146.33"+                   , ESymbol Pun ","+                   , ENumber "129.33"+                   ])+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "BinomialDist"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped+                        [ EIdentifier "x"+                        , ESymbol Pun ";"+                        , EGrouped [ EIdentifier "n" , ESymbol Pun "," , EIdentifier "p" ]+                        ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EUnderover+                    False+                    (ESymbol Op "\8721")+                    (EGrouped [ EIdentifier "k" , ESymbol Rel "=" , ENumber "0" ])+                    (EIdentifier "x")+                , EGrouped+                    [ EDelimited+                        "("+                        ")"+                        [ Right (EFraction NormalFrac (EIdentifier "n") (EIdentifier "k"))+                        ]+                    , ESymbol Ord "\8290"+                    , ESuper (EIdentifier "p") (EIdentifier "k")+                    , ESymbol Ord "\8290"+                    , ESuper+                        (EIdentifier "q")+                        (EGrouped+                           [ EIdentifier "n" , ESymbol Bin "\8722" , EIdentifier "k" ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EMathOperator "Pr"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped [ EIdentifier "X" , ESymbol Rel "\8804" , ENumber "54" ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EIdentifier "BinomialDist"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped+                        [ ENumber "54"+                        , ESymbol Pun ";"+                        , EGrouped [ ENumber "100" , ESymbol Pun "," , ENumber ".55" ]+                        ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , ENumber ".45846"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "k"+                , ESymbol Rel "="+                , EGrouped+                    [ EMathOperator "max"+                    , EDelimited+                        "{"+                        "}"+                        [ Right+                            (EGrouped+                               [ EDelimited+                                   "|"+                                   "|"+                                   [ Right+                                       (EGrouped+                                          [ EFraction+                                              NormalFrac+                                              (EGrouped [ ESymbol Ord "\8706" , EIdentifier "f" ])+                                              (EGrouped [ ESymbol Ord "\8706" , EIdentifier "y" ])+                                          , ESymbol Ord "\8289"+                                          , EGrouped+                                              [ ESymbol Open "("+                                              , EGrouped+                                                  [ EIdentifier "x"+                                                  , ESymbol Pun ","+                                                  , EIdentifier "y"+                                                  ]+                                              , ESymbol Close ")"+                                              ]+                                          ])+                                   ]+                               , ESymbol Pun ":"+                               , EGrouped+                                   [ EGrouped+                                       [ ESymbol Open "("+                                       , EGrouped+                                           [ EIdentifier "x" , ESymbol Pun "," , EIdentifier "y" ]+                                       , ESymbol Close ")"+                                       ]+                                   , ESymbol Rel "\8712"+                                   , EIdentifier "D"+                                   ]+                               ])+                        ]+                    ]+                ]+            , EText TextNormal "."+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "m"+            , ESymbol Rel "="+            , EGrouped+                [ EUnder+                    False+                    (EMathOperator "lim")+                    (EGrouped+                       [ EIdentifier "x"+                       , EOver False (ESymbol Accent "\8594") (EGrouped [])+                       , EIdentifier "a"+                       ])+                , EFraction+                    NormalFrac+                    (EGrouped+                       [ EGrouped+                           [ EIdentifier "f"+                           , ESymbol Ord "\8289"+                           , EGrouped+                               [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                           ]+                       , ESymbol Bin "\8722"+                       , EGrouped+                           [ EIdentifier "f"+                           , ESymbol Ord "\8289"+                           , EGrouped+                               [ ESymbol Open "(" , EIdentifier "a" , ESymbol Close ")" ]+                           ]+                       ])+                    (EGrouped+                       [ EIdentifier "x" , ESymbol Bin "\8722" , EIdentifier "a" ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited "|" "|" [ Right (EIdentifier "A") ]+            , ESymbol Rel "="+            , EDelimited+                "|"+                "|"+                [ Right+                    (EArray+                       [ AlignCenter+                       , AlignCenter+                       , AlignCenter+                       , AlignCenter+                       , AlignCenter+                       , AlignCenter+                       ]+                       [ [ [ ESub+                               (EIdentifier "a")+                               (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "1" ])+                           ]+                         , [ ESub+                               (EIdentifier "a")+                               (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "2" ])+                           ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESub+                               (EIdentifier "a")+                               (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , EIdentifier "n" ])+                           ]+                         ]+                       , [ [ ESub+                               (EIdentifier "a")+                               (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "1" ])+                           ]+                         , [ ESub+                               (EIdentifier "a")+                               (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , ENumber "2" ])+                           ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESub+                               (EIdentifier "a")+                               (EGrouped [ ENumber "2" , ESymbol Ord "\8203" , EIdentifier "n" ])+                           ]+                         ]+                       , [ [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESpace (1 % 18) ]+                         , [ ESpace (1 % 18) ]+                         , [ ESymbol Bin "\8901" ]+                         ]+                       , [ [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESpace (1 % 18) ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESpace (1 % 18) ]+                         , [ ESymbol Bin "\8901" ]+                         ]+                       , [ [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESpace (1 % 18) ]+                         , [ ESpace (1 % 18) ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         ]+                       , [ [ ESub+                               (EIdentifier "a")+                               (EGrouped [ EIdentifier "n" , ESymbol Ord "\8203" , ENumber "1" ])+                           ]+                         , [ ESub+                               (EIdentifier "a")+                               (EGrouped [ EIdentifier "n" , ESymbol Ord "\8203" , ENumber "2" ])+                           ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESymbol Bin "\8901" ]+                         , [ ESub+                               (EIdentifier "a")+                               (EGrouped+                                  [ EIdentifier "n" , ESymbol Ord "\8203" , EIdentifier "n" ])+                           ]+                         ]+                       ])+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ ESub+                        (EIdentifier "a")+                        (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "1" ])+                    , ESymbol Ord "\8290"+                    , ESub+                        (EIdentifier "A")+                        (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "1" ])+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ ESub+                        (EIdentifier "a")+                        (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "2" ])+                    , ESymbol Ord "\8290"+                    , ESub+                        (EIdentifier "A")+                        (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , ENumber "2" ])+                    ]+                , ESymbol Bin "+"+                , EIdentifier "\8943"+                , ESymbol Bin "+"+                , EGrouped+                    [ ESub+                        (EIdentifier "a")+                        (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , EIdentifier "n" ])+                    , ESymbol Ord "\8290"+                    , ESub+                        (EIdentifier "A")+                        (EGrouped [ ENumber "1" , ESymbol Ord "\8203" , EIdentifier "n" ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+            , EGrouped+                [ ESymbol Open "("+                , EText TextNormal "hl text\8194"+                , EIdentifier "x"+                , EText TextNormal "\8194end."+                , ESymbol Close ")"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+            , EGrouped+                [ ESymbol Open "("+                , EText TextNormal "hl to URI\8194"+                , EIdentifier "x"+                , EText TextNormal "\8194end"+                , ESymbol Close ")"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+            , EGrouped+                [ ESymbol Open "(" , EText TextNormal "sex" , ESymbol Close ")" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+            , EGrouped+                [ ESymbol Open "(" , EText TextNormal "jbm" , ESymbol Close ")" ]+            ]+        ]+      , []+      ]+    , [ [] , [] ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ EIdentifier "f"+                    , ESymbol Ord "\8289"+                    , EGrouped+                        [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                    ]+                , ESymbol Ord "\8290"+                , EIdentifier "g"+                , ESymbol Ord "\8290"+                , EGrouped+                    [ ESymbol Open "[" , EIdentifier "y" , ESymbol Close "]" ]+                , ESymbol Ord "\8290"+                , EIdentifier "h"+                , ESymbol Ord "\8290"+                , EGrouped+                    [ ESymbol Open "{" , EIdentifier "z" , ESymbol Close "}" ]+                ]+            , ESymbol Bin "+"+            , EGrouped+                [ EGrouped+                    [ ESymbol Open "\8970" , EIdentifier "a" , ESymbol Close "\8971" ]+                , ESymbol Ord "\8290"+                , EGrouped+                    [ ESymbol Open "\8968" , EIdentifier "b" , ESymbol Close "\8969" ]+                , ESymbol Ord "\8290"+                , EGrouped+                    [ ESymbol Open "\9001" , EIdentifier "c" , ESymbol Close "\9002" ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                ""+                "|"+                [ Right+                    (EFraction+                       NormalFrac+                       (ENumber "123")+                       (EFraction NormalFrac (ENumber "456") (EIdentifier "A")))+                ]+            , EDelimited+                ""+                ""+                [ Left "\8741"+                , Right+                    (EFraction+                       NormalFrac+                       (EIdentifier "A")+                       (EFraction NormalFrac (EIdentifier "B") (EIdentifier "A")))+                ]+            , EGrouped+                [ EDelimited+                    ""+                    ""+                    [ Left "/"+                    , Right+                        (EFraction+                           NormalFrac+                           (ENumber "1")+                           (EFraction NormalFrac (ENumber "2") (EIdentifier "A")))+                    , Left "/"+                    ]+                , ESymbol Ord "\8290"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EFraction+                           NormalFrac+                           (ENumber "3")+                           (EFraction NormalFrac (ENumber "4") (EIdentifier "A")))+                    ]+                ]+            , EDelimited+                ""+                ""+                [ Left "\8597"+                , Right+                    (EFraction+                       NormalFrac+                       (ENumber "5")+                       (EFraction NormalFrac (ENumber "6") (EIdentifier "A")))+                , Left "\8597"+                ]+            , EFraction+                NormalFrac+                (ENumber "7")+                (EFraction NormalFrac (ENumber "8") (EIdentifier "A"))+            , EDelimited+                ""+                ""+                [ Left "\8661"+                , Right+                    (EFraction+                       NormalFrac+                       (EFraction NormalFrac (ENumber "9") (ENumber "20"))+                       (EFraction NormalFrac (ENumber "10") (EIdentifier "A")))+                , Left "\8661"+                ]+            , EGrouped+                [ EDelimited+                    ""+                    ""+                    [ Left "\8593"+                    , Right+                        (EFraction+                           NormalFrac+                           (ENumber "11")+                           (EFraction NormalFrac (ENumber "12") (EIdentifier "A")))+                    , Left "\8593"+                    ]+                , ESymbol Ord "\8290"+                , EDelimited+                    ""+                    ""+                    [ Left "\8657"+                    , Right+                        (EFraction+                           NormalFrac+                           (ENumber "13")+                           (EFraction NormalFrac (ENumber "14") (EIdentifier "A")))+                    , Left "\8657"+                    ]+                ]+            , EDelimited+                ""+                ""+                [ Left "\8595"+                , Right+                    (EFraction+                       NormalFrac+                       (ENumber "15")+                       (EFraction NormalFrac (ENumber "16") (EIdentifier "A")))+                , Left "\8595"+                ]+            , EDelimited+                ""+                ""+                [ Left "\8659"+                , Right+                    (EFraction+                       NormalFrac+                       (ENumber "17")+                       (EFraction NormalFrac (ENumber "18") (EIdentifier "A")))+                , Left "\8659"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Ord "\8290"+            , EArray+                [ AlignCenter , AlignCenter ]+                [ [ [ EIdentifier "x" ] , [ EIdentifier "x" ] ]+                , [ [ EIdentifier "x" ] , [ EIdentifier "x" ] ]+                ]+            , ESymbol Ord "\8290"+            , EIdentifier "x"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ ESub (EIdentifier "a") (ENumber "1")+                           , ESymbol Pun ","+                           , ESub (EIdentifier "a") (ENumber "2")+                           , ESymbol Pun ","+                           , EIdentifier "\8230"+                           , ESymbol Pun ","+                           , ESub (EIdentifier "a") (EIdentifier "n")+                           ])+                    ]+                , ESymbol Bin "\8901"+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ ESub (EIdentifier "b") (ENumber "1")+                           , ESymbol Pun ","+                           , ESub (EIdentifier "b") (ENumber "2")+                           , ESymbol Pun ","+                           , EIdentifier "\8230"+                           , ESymbol Pun ","+                           , ESub (EIdentifier "b") (EIdentifier "n")+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ ESub (EIdentifier "a") (ENumber "1")+                    , ESymbol Ord "\8290"+                    , ESubsup (EIdentifier "b") (ENumber "1") (ESymbol Ord "*")+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ ESub (EIdentifier "a") (ENumber "2")+                    , ESymbol Ord "\8290"+                    , ESubsup (EIdentifier "b") (ENumber "2") (ESymbol Ord "*")+                    ]+                , ESymbol Bin "+"+                , EIdentifier "\8943"+                , ESymbol Bin "+"+                , EGrouped+                    [ ESub (EIdentifier "a") (EIdentifier "n")+                    , ESymbol Ord "\8290"+                    , ESubsup (EIdentifier "b") (EIdentifier "n") (ESymbol Ord "*")+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "\8970"+                "\8971"+                [ Right (EFraction NormalFrac (EIdentifier "n") (ENumber "5")) ]+            , ESymbol Bin "+"+            , EDelimited+                "\8970"+                "\8971"+                [ Right+                    (EFraction+                       NormalFrac (EIdentifier "n") (ESuper (ENumber "5") (ENumber "2")))+                ]+            , ESymbol Bin "+"+            , EDelimited+                "\8970"+                "\8971"+                [ Right+                    (EFraction+                       NormalFrac (EIdentifier "n") (ESuper (ENumber "5") (ENumber "3")))+                ]+            , ESymbol Bin "+"+            , EDelimited+                "\8970"+                "\8971"+                [ Right+                    (EFraction+                       NormalFrac (EIdentifier "n") (ESuper (ENumber "5") (ENumber "4")))+                ]+            , ESymbol Bin "+"+            , EIdentifier "\8943"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ ESub (EIdentifier "x") (ENumber "1")+            , ESymbol Bin "+"+            , EIdentifier "\8943"+            , ESymbol Bin "+"+            , ESub (EIdentifier "x") (EIdentifier "n")+            ]+        ]+      , []+      ]+    , [ [ EUnder+            False+            (EUnder+               False+               (EGrouped+                  [ EIdentifier "x"+                  , ESymbol Bin "+"+                  , EIdentifier "\8943"+                  , ESymbol Bin "+"+                  , EIdentifier "x"+                  ])+               (ESymbol Accent "\65080"))+            (EGrouped [ EIdentifier "k" , EText TextNormal "\8194times" ])+        ]+      , []+      ]+    , [ [ ERoot+            (EIdentifier "n")+            (EGrouped+               [ ESub (EIdentifier "x") (ENumber "1")+               , ESymbol Ord "\8290"+               , ESub (EIdentifier "x") (ENumber "2")+               , ESymbol Ord "\8290"+               , EIdentifier "\8943"+               , ESymbol Ord "\8290"+               , ESub (EIdentifier "x") (EIdentifier "n")+               ])+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ EIdentifier "n" , ESymbol Pun "!" ]+            , ESymbol Rel "="+            , EGrouped+                [ ENumber "1"+                , ESymbol Bin "\215"+                , ENumber "2"+                , ESymbol Bin "\215"+                , ENumber "3"+                , ESymbol Bin "\215"+                , ENumber "4"+                , ESymbol Bin "\215"+                , EIdentifier "\8943"+                , ESymbol Bin "\215"+                , EIdentifier "n"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "P"+            , ESymbol Pun ":"+            , EGrouped+                [ EIdentifier "a"+                , ESymbol Rel "="+                , ESub (EIdentifier "x") (ENumber "0")+                , ESymbol Rel "<"+                , ESub (EIdentifier "x") (ENumber "1")+                , ESymbol Rel "<"+                , ESub (EIdentifier "x") (ENumber "2")+                , ESymbol Rel "<"+                , EIdentifier "\8943"+                , ESymbol Rel "<"+                , ESub (EIdentifier "x") (EIdentifier "n")+                , ESymbol Rel "="+                , EIdentifier "b"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "f"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EFraction+                    NormalFrac+                    (ENumber "30")+                    (EGrouped+                       [ ENumber "13"+                       , ESymbol Ord "\8290"+                       , EGrouped+                           [ EMathOperator "cos" , ESymbol Ord "\8289" , EIdentifier "x" ]+                       ])+                , ESymbol Bin "+"+                , EGrouped+                    [ EFraction NormalFrac (ENumber "10") (ENumber "3")+                    , ESymbol Ord "\8290"+                    , ESqrt+                        (EDelimited+                           "("+                           ")"+                           [ Right+                               (EGrouped+                                  [ ENumber "100"+                                  , ESymbol Bin "+"+                                  , EFraction+                                      NormalFrac+                                      (ENumber "9")+                                      (EGrouped+                                         [ ESuper (EMathOperator "cos") (ENumber "2")+                                         , ESymbol Ord "\8289"+                                         , EIdentifier "x"+                                         ])+                                  , ESymbol Bin "\8722"+                                  , EGrouped+                                      [ EFraction+                                          NormalFrac+                                          (ENumber "60")+                                          (EGrouped+                                             [ EMathOperator "cos"+                                             , ESymbol Ord "\8289"+                                             , EIdentifier "x"+                                             ])+                                      , ESymbol Ord "\8290"+                                      , EGrouped+                                          [ EMathOperator "sin"+                                          , ESymbol Ord "\8289"+                                          , EDelimited+                                              "("+                                              ")"+                                              [ Right+                                                  (EGrouped+                                                     [ EIdentifier "x"+                                                     , ESymbol Bin "+"+                                                     , EGrouped+                                                         [ EFraction+                                                             NormalFrac+                                                             (ENumber "29")+                                                             (ENumber "90")+                                                         , ESymbol Ord "\8290"+                                                         , EIdentifier "\960"+                                                         ]+                                                     ])+                                              ]+                                          ]+                                      ]+                                  ])+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EDelimited+                    "\8747"+                    ""+                    [ Right+                        (EGrouped+                           [ EGrouped+                               [ EMathOperator "cos"+                               , ESymbol Ord "\8289"+                               , EGrouped+                                   [ ESymbol Open "("+                                   , EGrouped+                                       [ EIdentifier "A" , ESymbol Ord "\8290" , EIdentifier "x" ]+                                   , ESymbol Close ")"+                                   ]+                               ]+                           , ESymbol Ord "\8290"+                           , EGrouped+                               [ EMathOperator "sin"+                               , ESymbol Ord "\8289"+                               , EGrouped+                                   [ ESymbol Open "("+                                   , EGrouped+                                       [ EIdentifier "B" , ESymbol Ord "\8290" , EIdentifier "x" ]+                                   , ESymbol Close ")"+                                   ]+                               ]+                           , ESymbol Ord "\8290"+                           , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                           ])+                    ]+                , ESymbol Rel "="+                , EGrouped+                    [ EFraction+                        NormalFrac+                        (EGrouped+                           [ ESymbol Bin "\8722"+                           , EGrouped+                               [ EMathOperator "cos"+                               , ESymbol Ord "\8289"+                               , EGrouped+                                   [ EGrouped+                                       [ ESymbol Open "("+                                       , EGrouped+                                           [ EIdentifier "B"+                                           , ESymbol Bin "\8722"+                                           , EIdentifier "A"+                                           ]+                                       , ESymbol Close ")"+                                       ]+                                   , ESymbol Ord "\8290"+                                   , EIdentifier "x"+                                   ]+                               ]+                           ])+                        (EGrouped+                           [ ENumber "2"+                           , ESymbol Ord "\8290"+                           , EGrouped+                               [ ESymbol Open "("+                               , EGrouped+                                   [ EIdentifier "B" , ESymbol Bin "\8722" , EIdentifier "A" ]+                               , ESymbol Close ")"+                               ]+                           ])+                    , ESymbol Bin "+"+                    , EFraction+                        NormalFrac+                        (EGrouped+                           [ ESymbol Bin "\8722"+                           , EGrouped+                               [ EMathOperator "cos"+                               , ESymbol Ord "\8289"+                               , EGrouped+                                   [ EGrouped+                                       [ ESymbol Open "("+                                       , EGrouped+                                           [ EIdentifier "B" , ESymbol Bin "+" , EIdentifier "A" ]+                                       , ESymbol Close ")"+                                       ]+                                   , ESymbol Ord "\8290"+                                   , EIdentifier "x"+                                   ]+                               ]+                           ])+                        (EGrouped+                           [ ENumber "2"+                           , ESymbol Ord "\8290"+                           , EGrouped+                               [ ESymbol Open "("+                               , EGrouped [ EIdentifier "B" , ESymbol Bin "+" , EIdentifier "A" ]+                               , ESymbol Close ")"+                               ]+                           ])+                    , ESymbol Bin "+"+                    , EIdentifier "C"+                    ]+                ]+            , EText TextNormal "\8194."+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped [ ENumber "235.3" , ESymbol Bin "+" , ENumber "813" ]+            , ESymbol Rel "="+            , ENumber "1048.\8201\&3"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EUnder+                    False+                    (EMathOperator "max")+                    (EGrouped+                       [ EGrouped [ ESymbol Bin "\8722" , ENumber "2" ]+                       , ESymbol Rel "\8804"+                       , EIdentifier "x"+                       , ESymbol Rel "\8804"+                       , ENumber "2"+                       ])+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ ESuper (EIdentifier "x") (ENumber "3")+                           , ESymbol Bin "\8722"+                           , EGrouped [ ENumber "6" , ESymbol Ord "\8290" , EIdentifier "x" ]+                           , ESymbol Bin "+"+                           , ENumber "3"+                           ])+                    ]+                ]+            , ESymbol Rel "="+            , ENumber "8.0"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "x" , ESymbol Ord "\8290" , EIdentifier "decade" ]+            , ESymbol Rel "="+            , EGrouped+                [ ENumber "2" , ESymbol Ord "\8290" , EIdentifier "century" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EFraction+                NormalFrac+                (EGrouped+                   [ ESuper (ESymbol Ord "\8518") (ENumber "5")+                   , EDelimited+                       "("+                       ")"+                       [ Right+                           (EGrouped+                              [ ESuper (EIdentifier "x") (ENumber "7")+                              , ESymbol Bin "\8722"+                              , EGrouped+                                  [ ENumber "3"+                                  , ESymbol Ord "\8290"+                                  , ESuper (EIdentifier "x") (ENumber "6")+                                  ]+                              ])+                       ]+                   ])+                (EGrouped+                   [ ESymbol Ord "\8518" , ESuper (EIdentifier "x") (ENumber "5") ])+            , EText TextNormal "\8195\8195"+            , EFraction+                NormalFrac+                (EGrouped+                   [ ESuper (ESymbol Ord "\8518") (EIdentifier "n")+                   , EGrouped+                       [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "x" ]+                   ])+                (EGrouped+                   [ ESymbol Ord "\8518"+                   , ESuper (EIdentifier "x") (EIdentifier "n")+                   ])+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ EFraction+                    NormalFrac+                    (ESuper (ESymbol Ord "\8518") (ENumber "3"))+                    (EGrouped+                       [ ESymbol Ord "\8518" , ESuper (EIdentifier "x") (ENumber "3") ])+                , EGrouped+                    [ EIdentifier "f"+                    , ESymbol Ord "\8289"+                    , EGrouped+                        [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                    ]+                ]+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ EFraction+                    NormalFrac+                    (ESuper (ESymbol Ord "\8518") (ENumber "2"))+                    (EGrouped+                       [ ESymbol Ord "\8518" , ESuper (EIdentifier "t") (ENumber "2") ])+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EGrouped+                               [ ENumber "4"+                               , ESymbol Ord "\8290"+                               , ESuper (EIdentifier "t") (ENumber "5")+                               ]+                           , ESymbol Bin "\8722"+                           , EGrouped [ ENumber "3" , ESymbol Ord "\8290" , EIdentifier "t" ]+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "f"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EFraction+                    NormalFrac+                    (ENumber "30")+                    (EGrouped+                       [ ENumber "13"+                       , ESymbol Ord "\8290"+                       , EGrouped+                           [ EMathOperator "cos" , ESymbol Ord "\8289" , EIdentifier "x" ]+                       ])+                , ESymbol Bin "+"+                , EGrouped+                    [ EFraction NormalFrac (ENumber "10") (ENumber "3")+                    , ESymbol Ord "\8290"+                    , ESqrt+                        (EDelimited+                           "("+                           ")"+                           [ Right+                               (EGrouped+                                  [ ENumber "100"+                                  , ESymbol Bin "+"+                                  , EFraction+                                      NormalFrac+                                      (ENumber "9")+                                      (EGrouped+                                         [ ESuper (EMathOperator "cos") (ENumber "2")+                                         , ESymbol Ord "\8289"+                                         , EIdentifier "x"+                                         ])+                                  , ESymbol Bin "\8722"+                                  , EGrouped+                                      [ EFraction+                                          NormalFrac+                                          (ENumber "60")+                                          (EGrouped+                                             [ EMathOperator "cos"+                                             , ESymbol Ord "\8289"+                                             , EIdentifier "x"+                                             ])+                                      , ESymbol Ord "\8290"+                                      , EGrouped+                                          [ EMathOperator "sin"+                                          , ESymbol Ord "\8289"+                                          , EDelimited+                                              "("+                                              ")"+                                              [ Right+                                                  (EGrouped+                                                     [ EIdentifier "x"+                                                     , ESymbol Bin "+"+                                                     , EGrouped+                                                         [ EFraction+                                                             NormalFrac+                                                             (ENumber "29")+                                                             (ENumber "90")+                                                         , ESymbol Ord "\8290"+                                                         , EIdentifier "\960"+                                                         ]+                                                     ])+                                              ]+                                          ]+                                      ]+                                  ])+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right+                    (ESub+                       (EGrouped [])+                       (ESuper (EStyled TextBold [ EIdentifier "R" ]) (ENumber "3")))+                , Right+                    (EGrouped+                       [ EDelimited+                           "("+                           ")"+                           [ Right+                               (EGrouped+                                  [ EFraction+                                      NormalFrac+                                      (EGrouped+                                         [ ESuper+                                             (EDelimited+                                                "|"+                                                "|"+                                                [ Right (ESub (EIdentifier "u") (ENumber "1")) ])+                                             (ENumber "2")+                                         , ESymbol Bin "+"+                                         , ESuper+                                             (EDelimited+                                                "|"+                                                "|"+                                                [ Right+                                                    (EGrouped+                                                       [ ESymbol Ord "\8711"+                                                       , ESub (EIdentifier "u") (ENumber "0")+                                                       ])+                                                ])+                                             (ENumber "2")+                                         ])+                                      (ENumber "2")+                                  , ESymbol Bin "+"+                                  , EFraction+                                      NormalFrac+                                      (ESuper+                                         (EDelimited+                                            "|"+                                            "|"+                                            [ Right (ESub (EIdentifier "u") (ENumber "0")) ])+                                         (ENumber "6"))+                                      (ENumber "6")+                                  ])+                           ]+                       , ESymbol Ord "\8290"+                       , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                       ])+                ]+            , ESymbol Rel "<"+            , EIdentifier "\8734"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ EMathOperator "\8711\215"+                           , EStyled TextBold [ EIdentifier "F" ]+                           ])+                    ]+                , ESymbol Bin "\8901"+                , EStyled TextBold [ EIdentifier "k" ]+                ]+            , ESymbol Rel "="+            , EGrouped [ EIdentifier "z" , ESymbol Bin "+" , ENumber "1" ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "M"+            , ESymbol Ord "\8290"+            , EFraction+                NormalFrac+                (ESuper+                   (EIdentifier "M")+                   (EFraction NormalFrac (EIdentifier "M") (EIdentifier "M")))+                (EIdentifier "M")+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESub (ESymbol Ord "\8517") (EIdentifier "x")+                , ESuper (EIdentifier "x") (ENumber "2")+                ]+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ ESub (ESymbol Ord "\8517") (EIdentifier "x")+                , EDelimited+                    "(" ")" [ Right (ESuper (EIdentifier "x") (ENumber "2")) ]+                ]+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ ESub+                    (ESymbol Ord "\8517")+                    (EGrouped+                       [ EIdentifier "x" , ESymbol Ord "\8203" , EIdentifier "x" ])+                , EDelimited+                    "(" ")" [ Right (ESuper (EIdentifier "x") (ENumber "2")) ]+                ]+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ ESub+                    (ESymbol Ord "\8517") (ESuper (EIdentifier "x") (ENumber "2"))+                , EDelimited+                    "(" ")" [ Right (ESuper (EIdentifier "x") (ENumber "2")) ]+                ]+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ ESub+                    (ESymbol Ord "\8517")+                    (EGrouped+                       [ EIdentifier "x" , ESymbol Ord "\8203" , EIdentifier "y" ])+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ ESuper (EIdentifier "x") (ENumber "2")+                           , ESymbol Ord "\8290"+                           , ESuper (EIdentifier "y") (ENumber "3")+                           ])+                    ]+                ]+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ ESub+                    (ESymbol Ord "\8517")+                    (EGrouped+                       [ ESuper (EIdentifier "x") (EIdentifier "s")+                       , ESymbol Ord "\8203"+                       , ESuper (EIdentifier "y") (EIdentifier "t")+                       ])+                , EDelimited+                    "("+                    ")"+                    [ Right+                        (EGrouped+                           [ ESuper (EIdentifier "x") (ENumber "2")+                           , ESymbol Ord "\8290"+                           , ESuper (EIdentifier "y") (ENumber "3")+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ ENumber "5"+            , ESpace (7 % 100)+            , EGrouped [ ENumber "24" , ESymbol Pun "!" ]+            , ESpace (7 % 100)+            , ESuper (EIdentifier "x") (ENumber "6")+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EArray+                    [ AlignCenter , AlignCenter ]+                    [ [ [ EGrouped+                            [ EIdentifier "x"+                            , ESymbol Bin "+"+                            , ERoot+                                (ENumber "2")+                                (EFraction+                                   NormalFrac+                                   (ESuper+                                      (EIdentifier "a")+                                      (EGrouped+                                         [ EIdentifier "y" , ESymbol Bin "\8722" , ENumber "1" ]))+                                   (ENumber "12.34"))+                            ]+                        ]+                      , [ EGrouped+                            [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ]+                        ]+                      ]+                    , [ [ ESpace (1 % 18) ] , [ ENumber "1" ] ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter , AlignCenter ]+            [ [ [ ENumber "0" ] , [ ENumber "1" ] ]+            , [ [ ENumber "1" ] , [ ENumber "0" ] ]+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            ")"+            [ Right+                (EArray+                   [ AlignCenter , AlignCenter ]+                   [ [ [ ENumber "0" ]+                     , [ EGrouped [ ESymbol Bin "\8722" , EIdentifier "i" ] ]+                     ]+                   , [ [ EIdentifier "i" ] , [ ENumber "0" ] ]+                   ])+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "["+            "]"+            [ Right+                (EArray+                   [ AlignCenter , AlignCenter ]+                   [ [ [ ENumber "1" ] , [ ENumber "0" ] ]+                   , [ [ ENumber "0" ]+                     , [ EGrouped [ ESymbol Bin "\8722" , ENumber "1" ] ]+                     ]+                   ])+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "|"+            "|"+            [ Right+                (EArray+                   [ AlignCenter , AlignCenter ]+                   [ [ [ EIdentifier "a" ] , [ EIdentifier "b" ] ]+                   , [ [ EIdentifier "c" ] , [ EIdentifier "d" ] ]+                   ])+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8741"+            , Right+                (EArray+                   [ AlignCenter , AlignCenter , AlignCenter ]+                   [ [ [ ENumber "1" ] , [ ENumber "0" ] , [ ENumber "1" ] ]+                   , [ [ ENumber "0" ] , [ ENumber "11" ] , [ ESpace (1 % 18) ] ]+                   ])+            , Left "\8741"+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter , AlignCenter , AlignCenter ]+            [ [ [ ENumber "1" ] , [ ENumber "2" ] , [ ENumber "3" ] ]+            , [ [ ENumber "4" ] , [ ENumber "5" ] , [ ESpace (1 % 18) ] ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EText TextNormal "testing\8194"+            , EArray+                [ AlignCenter ]+                [ [ [ EGrouped+                        [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ]+                    ]+                  ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EOver False (EIdentifier "a") (ESymbol Accent "\770")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "b") (ESymbol Accent "\711")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "c") (ESymbol Accent "\732")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "d") (ESymbol Accent "\180")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "e") (ESymbol Accent "`")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "f") (ESymbol Accent "\728")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "g") (ESymbol Accent "\175")+            , ESymbol Bin "+"+            , EIdentifier "h"+            , ESymbol Bin "+"+            , EOver False (EIdentifier "i") (ESymbol Accent "\730")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "j") (ESymbol Accent "\729")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "k") (ESymbol Accent "\168")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "l") (ESymbol Accent "\8411")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "m") (ESymbol Accent "\8412")+            , ESymbol Bin "+"+            , EOver False (EIdentifier "n") (ESymbol Accent "\8594")+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "f"+                , ESymbol Ord "\8289"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped+                        [ EIdentifier "g"+                        , ESymbol Ord "\8289"+                        , EGrouped+                            [ ESymbol Open "(" , EIdentifier "x" , ESymbol Close ")" ]+                        ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EGrouped+                    [ ESuper (EMathOperator "sin") (ENumber "3")+                    , ESymbol Ord "\8289"+                    , ESuper (EIdentifier "x") (ENumber "2")+                    ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EGrouped+                        [ EMathOperator "sin"+                        , ESymbol Ord "\8289"+                        , ESuper (EIdentifier "x") (ENumber "2")+                        ]+                    , ESymbol Ord "\8290"+                    , EGrouped+                        [ EMathOperator "sin"+                        , ESymbol Ord "\8289"+                        , EDelimited+                            "("+                            ")"+                            [ Right+                                (EGrouped+                                   [ EMathOperator "sin"+                                   , ESymbol Ord "\8289"+                                   , ESuper (EIdentifier "x") (ENumber "2")+                                   ])+                            ]+                        ]+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EDelimited+                "("+                ")"+                [ Right+                    (EGrouped+                       [ ESuper (EIdentifier "x") (ENumber "2")+                       , ESymbol Bin "+"+                       , ENumber "12"+                       ])+                ]+            , ESymbol Bin "+"+            , ENumber "1234"+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter , AlignCenter , AlignCenter ]+            [ [ [ EGrouped [ EIdentifier "x" , ESymbol Rel "=" , ENumber "1" ]+                ]+              , [ EText TextNormal "not" ]+              , [ EText TextNormal "here" ]+              ]+            , [ [ ESuper (EIdentifier "x") (ENumber "2") ]+              , [ EText TextNormal "merged" ]+              , [ ESub (EIdentifier "y") (ENumber "1") ]+              ]+            , [ [ EText TextNormal "jbm" ]+              , [ EText TextNormal "lowlife" ]+              , [ EText TextNormal "The end." ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ ESuper (EIdentifier "x") (ENumber "2")+                , ESymbol Bin "+"+                , ESuper (EIdentifier "y") (ENumber "2")+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESuper (EIdentifier "z") (ENumber "2")+                , ESymbol Bin "\8722"+                , ENumber "1"+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ ESuper (EIdentifier "x") (ENumber "2")+                        , ESymbol Bin "+"+                        , ESuper (EIdentifier "y") (ENumber "2")+                        ]+                    , ESymbol Rel "="+                    , EGrouped+                        [ ESuper (EIdentifier "z") (ENumber "2")+                        , ESymbol Bin "\8722"+                        , ENumber "1"+                        ]+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ EIdentifier "x"+                        , ESymbol Bin "+"+                        , ESuper (EIdentifier "y") (ENumber "3")+                        ]+                    , ESymbol Rel "="+                    , ESuper (EIdentifier "z") (ENumber "3")+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ ESuper (EIdentifier "x") (ENumber "2")+                        , ESymbol Bin "+"+                        , ESuper (EIdentifier "y") (ENumber "2")+                        ]+                    , ESymbol Rel "="+                    , EGrouped+                        [ ESuper (EIdentifier "z") (ENumber "2")+                        , ESymbol Bin "\8722"+                        , ENumber "1"+                        ]+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ EIdentifier "x"+                        , ESymbol Bin "+"+                        , ESuper (EIdentifier "y") (ENumber "3")+                        ]+                    , ESymbol Rel "="+                    , ESuper (EIdentifier "z") (ENumber "3")+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ ESuper (EIdentifier "x") (ENumber "2")+                        , ESymbol Bin "+"+                        , ESuper (EIdentifier "y") (ENumber "2")+                        ]+                    , ESymbol Rel "="+                    , ENumber "1"+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EIdentifier "x"+                    , ESymbol Rel "="+                    , ESqrt+                        (EGrouped+                           [ ENumber "1"+                           , ESymbol Bin "\8722"+                           , ESuper (EIdentifier "y") (ENumber "2")+                           ])+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ ESuper+                        (EGrouped+                           [ ESymbol Open "("+                           , EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ]+                           , ESymbol Close ")"+                           ])+                        (ENumber "2")+                    , ESymbol Rel "="+                    , EGrouped+                        [ ESuper (EIdentifier "a") (ENumber "2")+                        , ESymbol Bin "+"+                        , EGrouped+                            [ ENumber "2"+                            , ESymbol Ord "\8290"+                            , EIdentifier "a"+                            , ESymbol Ord "\8290"+                            , EIdentifier "b"+                            ]+                        , ESymbol Bin "+"+                        , ESuper (EIdentifier "b") (ENumber "2")+                        ]+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ EGrouped+                            [ ESymbol Open "("+                            , EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ]+                            , ESymbol Close ")"+                            ]+                        , ESymbol Bin "\8901"+                        , EGrouped+                            [ ESymbol Open "("+                            , EGrouped+                                [ EIdentifier "a" , ESymbol Bin "\8722" , EIdentifier "b" ]+                            , ESymbol Close ")"+                            ]+                        ]+                    , ESymbol Rel "="+                    , EGrouped+                        [ ESuper (EIdentifier "a") (ENumber "2")+                        , ESymbol Bin "\8722"+                        , ESuper (EIdentifier "b") (ENumber "2")+                        ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EText TextNormal "First line of equation" ] ]+            , [ [ EText TextNormal "Middle line of equation" ] ]+            , [ [ EText TextNormal "Other middle line of equation" ] ]+            , [ [ EText TextNormal "Last line of equation" ] ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ ESub (EIdentifier "L") (ENumber "1")+                        , ESymbol Rel "="+                        , ESub (EIdentifier "R") (ENumber "1")+                        ]+                    , EText TextNormal "\8195\8195"+                    , EGrouped+                        [ ESub (EIdentifier "L") (ENumber "2")+                        , ESymbol Rel "="+                        , ESub (EIdentifier "R") (ENumber "2")+                        ]+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ ESub (EIdentifier "L") (ENumber "3")+                        , ESymbol Rel "="+                        , ESub (EIdentifier "R") (ENumber "3")+                        ]+                    , EText TextNormal "\8195\8195"+                    , EGrouped+                        [ ESub (EIdentifier "L") (ENumber "4")+                        , ESymbol Rel "="+                        , ESub (EIdentifier "R") (ENumber "4")+                        ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ ESuper+                        (EGrouped+                           [ ESymbol Open "("+                           , EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ]+                           , ESymbol Close ")"+                           ])+                        (ENumber "4")+                    , ESymbol Rel "="+                    , EGrouped+                        [ ESuper+                            (EGrouped+                               [ ESymbol Open "("+                               , EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ]+                               , ESymbol Close ")"+                               ])+                            (ENumber "2")+                        , ESymbol Ord "\8290"+                        , ESuper+                            (EGrouped+                               [ ESymbol Open "("+                               , EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ]+                               , ESymbol Close ")"+                               ])+                            (ENumber "2")+                        ]+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ ESymbol Rel "="+                    , EGrouped+                        [ EGrouped+                            [ ESymbol Open "("+                            , EGrouped+                                [ ESuper (EIdentifier "a") (ENumber "2")+                                , ESymbol Bin "+"+                                , EGrouped+                                    [ ENumber "2"+                                    , ESymbol Ord "\8290"+                                    , EIdentifier "a"+                                    , ESymbol Ord "\8290"+                                    , EIdentifier "b"+                                    ]+                                , ESymbol Bin "+"+                                , ESuper (EIdentifier "b") (ENumber "2")+                                ]+                            , ESymbol Close ")"+                            ]+                        , ESymbol Ord "\8290"+                        , EGrouped+                            [ ESymbol Open "("+                            , EGrouped+                                [ ESuper (EIdentifier "a") (ENumber "2")+                                , ESymbol Bin "+"+                                , EGrouped+                                    [ ENumber "2"+                                    , ESymbol Ord "\8290"+                                    , EIdentifier "a"+                                    , ESymbol Ord "\8290"+                                    , EIdentifier "b"+                                    ]+                                , ESymbol Bin "+"+                                , ESuper (EIdentifier "b") (ENumber "2")+                                ]+                            , ESymbol Close ")"+                            ]+                        ]+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ ESymbol Rel "="+                    , EGrouped+                        [ ESuper (EIdentifier "a") (ENumber "4")+                        , ESymbol Bin "+"+                        , EGrouped+                            [ ENumber "4"+                            , ESymbol Ord "\8290"+                            , ESuper (EIdentifier "a") (ENumber "3")+                            , ESymbol Ord "\8290"+                            , EIdentifier "b"+                            ]+                        , ESymbol Bin "+"+                        , EGrouped+                            [ ENumber "6"+                            , ESymbol Ord "\8290"+                            , ESuper (EIdentifier "a") (ENumber "2")+                            , ESymbol Ord "\8290"+                            , ESuper (EIdentifier "b") (ENumber "2")+                            ]+                        , ESymbol Bin "+"+                        , EGrouped+                            [ ENumber "4"+                            , ESymbol Ord "\8290"+                            , EIdentifier "a"+                            , ESymbol Ord "\8290"+                            , ESuper (EIdentifier "b") (ENumber "3")+                            ]+                        , ESymbol Bin "+"+                        , ESuper (EIdentifier "b") (ENumber "4")+                        ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EArray+                [ AlignCenter ]+                [ [ [ EGrouped+                        [ EGrouped+                            [ ESuper (EIdentifier "x") (ENumber "2")+                            , ESymbol Bin "+"+                            , ESuper (EIdentifier "y") (ENumber "2")+                            ]+                        , ESymbol Rel "="+                        , ENumber "1"+                        ]+                    ]+                  ]+                , [ [ EGrouped+                        [ EIdentifier "x"+                        , ESymbol Rel "="+                        , ESqrt+                            (EGrouped+                               [ ENumber "1"+                               , ESymbol Bin "\8722"+                               , ESuper (EIdentifier "y") (ENumber "2")+                               ])+                        ]+                    ]+                  ]+                ]+            , EText TextNormal "\8195\8195"+            , EArray+                [ AlignCenter ]+                [ [ [ EGrouped+                        [ ESuper+                            (EGrouped+                               [ ESymbol Open "("+                               , EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ]+                               , ESymbol Close ")"+                               ])+                            (ENumber "2")+                        , ESymbol Rel "="+                        , EGrouped+                            [ ESuper (EIdentifier "a") (ENumber "2")+                            , ESymbol Bin "+"+                            , EGrouped+                                [ ENumber "2"+                                , ESymbol Ord "\8290"+                                , EIdentifier "a"+                                , ESymbol Ord "\8290"+                                , EIdentifier "b"+                                ]+                            , ESymbol Bin "+"+                            , ESuper (EIdentifier "b") (ENumber "2")+                            ]+                        ]+                    ]+                  ]+                , [ [ EGrouped+                        [ EGrouped+                            [ EGrouped+                                [ ESymbol Open "("+                                , EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ]+                                , ESymbol Close ")"+                                ]+                            , ESymbol Bin "\8901"+                            , EGrouped+                                [ ESymbol Open "("+                                , EGrouped+                                    [ EIdentifier "a" , ESymbol Bin "\8722" , EIdentifier "b" ]+                                , ESymbol Close ")"+                                ]+                            ]+                        , ESymbol Rel "="+                        , EGrouped+                            [ ESuper (EIdentifier "a") (ENumber "2")+                            , ESymbol Bin "\8722"+                            , ESuper (EIdentifier "b") (ENumber "2")+                            ]+                        ]+                    ]+                  ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter , AlignCenter ]+            [ [ [ EText TextNormal "Vertex" ]+              , [ EGrouped+                    [ EIdentifier "V"+                    , ESymbol Ord "\8289"+                    , EGrouped+                        [ ESymbol Open "("+                        , EGrouped [ ENumber "0" , ESymbol Pun "," , ENumber "0" ]+                        , ESymbol Close ")"+                        ]+                    ]+                ]+              ]+            , [ [ EText TextNormal "Focus" ]+              , [ EGrouped+                    [ EIdentifier "F"+                    , ESymbol Ord "\8289"+                    , EGrouped+                        [ ESymbol Open "("+                        , EGrouped [ ENumber "0" , ESymbol Pun "," , EIdentifier "p" ]+                        , ESymbol Close ")"+                        ]+                    ]+                ]+              ]+            , [ [ EText TextNormal "Directrix" ]+              , [ EGrouped+                    [ EIdentifier "y"+                    , ESymbol Rel "="+                    , EGrouped [ ESymbol Bin "\8722" , EIdentifier "p" ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EFraction+                    NormalFrac+                    (ESymbol Ord "\8518")+                    (EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ])+                , EText TextNormal "\8201\8201"+                , EGrouped+                    [ ESymbol Open "("+                    , EGrouped+                        [ ESuper+                            (EMathOperator "csc")+                            (EGrouped [ ESymbol Bin "\8722" , ENumber "1" ])+                        , ESymbol Ord "\8289"+                        , EIdentifier "x"+                        ]+                    , ESymbol Close ")"+                    ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ ESymbol Bin "\8722"+                , EFraction+                    NormalFrac+                    (ENumber "1")+                    (EGrouped+                       [ EDelimited "|" "|" [ Right (EIdentifier "x") ]+                       , ESymbol Ord "\8290"+                       , ESqrt+                           (EGrouped+                              [ ESuper (EIdentifier "x") (ENumber "2")+                              , ESymbol Bin "\8722"+                              , ENumber "1"+                              ])+                       ])+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ ESuper+                        (EMathOperator "tanh")+                        (EGrouped [ ESymbol Bin "\8722" , ENumber "1" ])+                    , ESymbol Ord "\8289"+                    , EIdentifier "x"+                    ]+                , ESymbol Rel "="+                , EGrouped+                    [ EFraction NormalFrac (ENumber "1") (ENumber "2")+                    , ESymbol Ord "\8290"+                    , EGrouped+                        [ EMathOperator "ln"+                        , ESymbol Ord "\8289"+                        , EDelimited+                            "("+                            ")"+                            [ Right+                                (EFraction+                                   NormalFrac+                                   (EGrouped [ ENumber "1" , ESymbol Bin "+" , EIdentifier "x" ])+                                   (EGrouped+                                      [ ENumber "1" , ESymbol Bin "\8722" , EIdentifier "x" ]))+                            ]+                        ]+                    ]+                ]+            , EText TextNormal "\8195\8195"+            , EGrouped+                [ EGrouped [ ESymbol Bin "\8722" , ENumber "1" ]+                , ESymbol Rel "<"+                , EIdentifier "x"+                , ESymbol Rel "<"+                , ENumber "1"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped [ EIdentifier "\8736" , EIdentifier "\945" ]+                , ESymbol Bin "+"+                , EGrouped+                    [ EIdentifier "\8736"+                    , EIdentifier "A"+                    , EIdentifier "B"+                    , EIdentifier "C"+                    ]+                , ESymbol Bin "+"+                , EGrouped [ EIdentifier "\8736" , ENumber "1" ]+                ]+            , ESymbol Rel "="+            , EGrouped+                [ EIdentifier "\9653"+                , EIdentifier "a"+                , EIdentifier "b"+                , EIdentifier "c"+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "y"+            , ESymbol Rel "="+            , EGrouped+                [ ESuper+                    (EIdentifier "e")+                    (EGrouped+                       [ ESymbol Bin "\8722"+                       , EGrouped+                           [ ESymbol Op "\8747"+                           , EGrouped+                               [ EIdentifier "P"+                               , ESymbol Ord "\8290"+                               , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                               ]+                           ]+                       ])+                , ESymbol Ord "\8290"+                , EDelimited+                    "["+                    "]"+                    [ Right+                        (EGrouped+                           [ EGrouped+                               [ ESymbol Op "\8747"+                               , EGrouped+                                   [ ESuper+                                       (EIdentifier "e")+                                       (EGrouped+                                          [ ESymbol Op "\8747"+                                          , EGrouped+                                              [ EIdentifier "P"+                                              , ESymbol Ord "\8290"+                                              , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                                              ]+                                          ])+                                   , ESymbol Ord "\8290"+                                   , EIdentifier "Q"+                                   , ESymbol Ord "\8290"+                                   , EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ]+                                   ]+                               ]+                           , ESymbol Bin "+"+                           , EIdentifier "c"+                           ])+                    ]+                ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Rel "="+            , EGrouped+                [ ENumber "1"+                , ESymbol Bin "+"+                , ESuper (EIdentifier "y") (ENumber "3")+                ]+            ]+        ]+      , [ EGrouped+            [ EIdentifier "x"+            , ESymbol Rel "="+            , EGrouped [ ENumber "1" , ESymbol Bin "+" , EIdentifier "y" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EGrouped [ ESymbol Ord "$" , ENumber "1.00" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "25" , ESymbol Ord "\162" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "3" , ESymbol Ord "\163" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "2.45" , ESymbol Ord "\164" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "0.7" , ESymbol Ord "\165" ]+            , ESymbol Bin "\8722"+            , EGrouped [ EIdentifier "a" , ESymbol Ord "\8352" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "20" , ESymbol Ord "\8355" ]+            , ESymbol Bin "+"+            , EGrouped [ ENumber "30" , ESymbol Ord "\8356" ]+            , ESymbol Bin "\8722"+            , EGrouped [ ENumber "4.56" , ESymbol Ord "\8359" ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EGrouped+                        [ EGrouped [ ENumber "2" , ESymbol Ord "\8290" , EIdentifier "x" ]+                        , ESymbol Bin "+"+                        , EIdentifier "y"+                        ]+                    , ESymbol Rel "="+                    , ENumber "3"+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped+                        [ EGrouped [ ENumber "3" , ESymbol Ord "\8290" , EIdentifier "x" ]+                        , ESymbol Bin "\8722"+                        , EGrouped [ ENumber "4" , ESymbol Ord "\8290" , EIdentifier "y" ]+                        ]+                    , ESymbol Rel "="+                    , ENumber "5"+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ]+                    , ESymbol Rel "="+                    , EGrouped [ EIdentifier "c" , ESymbol Bin "+" , ENumber "12345" ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter+            , AlignCenter+            , AlignCenter+            , AlignCenter+            , AlignCenter+            , AlignCenter+            , AlignCenter+            ]+            [ [ [ EText TextNormal "Unrestricted" ]+              , [ EText TextNormal "\8195\8195\8195" ]+              , [ EText TextNormal "Symmetric" ]+              , [ ESpace (1 % 1) ]+              , [ EText TextNormal "Antisymmetric" ]+              , [ EText TextNormal "\8195\8195" ]+              , [ EText TextNormal "Triangular" ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "a"+            , ESymbol Rel "\8800"+            , EIdentifier "b"+            , ESymbol Rel "\8800"+            , EIdentifier "x"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "c"+            , ESymbol Rel "\8814"+            , EIdentifier "d"+            , ESymbol Rel "\8814"+            , EIdentifier "y"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "e"+            , ESymbol Rel "\8815"+            , EIdentifier "f"+            , ESymbol Rel "\8815"+            , ENumber "11"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "g"+            , ESymbol Rel "\8713"+            , EIdentifier "h"+            , ESymbol Rel "\8713"+            , EIdentifier "Z"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "k"+            , ESymbol Rel "\8769"+            , EIdentifier "l"+            , ESymbol Rel "\8769"+            , ENumber "3"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EIdentifier "A" , ESymbol Rel "\8836" , EIdentifier "B" ]+            , ESymbol Rel "\8834"+            , EIdentifier "C"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "A"+            , ESymbol Rel "\8840"+            , EIdentifier "B"+            , ESymbol Rel "\8840"+            , EIdentifier "C"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ ENumber "10"+            , ESymbol Rel "\8802"+            , ENumber "11"+            , ESymbol Rel "\8801"+            , ENumber "12"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , EMathOperator "\8816\8421"+            , EIdentifier "y"+            , EMathOperator "\8816\8421"+            , EIdentifier "z"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EOver False (EMathOperator "lim") (ESymbol Accent "\175")+            , EIdentifier "x"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EUnder False (EMathOperator "lim") (ESymbol Accent "\818")+            , EIdentifier "x"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EUnder False (EMathOperator "lim") (ESymbol Accent "\8594")+            , EIdentifier "x"+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EUnder False (EMathOperator "lim") (ESymbol Accent "\8592")+            , EIdentifier "x"+            ]+        ]+      , []+      ]+    , [ [ EArray+            [ AlignCenter ]+            [ [ [ EGrouped+                    [ EIdentifier "x"+                    , ESymbol Rel "="+                    , EGrouped [ EIdentifier "y" , ESymbol Bin "+" , EIdentifier "z" ]+                    ]+                ]+              ]+            , [ [ EGrouped+                    [ ESymbol Rel "="+                    , EGrouped [ EIdentifier "k" , ESymbol Bin "+" , EIdentifier "m" ]+                    ]+                ]+              ]+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EArray+                [ AlignLeft ]+                [ [ [ EGrouped+                        [ EText TextNormal "College Algebra\8194"+                        , EText TextNormal "Second Edition"+                        ]+                    ]+                  ]+                , [ [ EGrouped+                        [ EText TextNormal "James Stewart\8194"+                        , EText TextNormal "McMaster Universitiy"+                        ]+                    ]+                  ]+                , [ [ EGrouped+                        [ EText TextNormal "Lothar Redlin"+                        , EText TextNormal "\8194Pennsylvania State University"+                        ]+                    ]+                  ]+                , [ [ EGrouped+                        [ EText TextNormal "Saleem Watson"+                        , EText TextNormal "\8194California State University, Long Beach"+                        ]+                    ]+                  ]+                , [ [ EText TextNormal "Copyright 1996, ISBN 0 534-33983-2" ] ]+                , [ [ EText TextNormal "Brooks/Cole Publishing Company" ] ]+                , [ [ EText+                        TextNormal "An International Thomson Publishing Company"+                    ]+                  ]+                ]+            , ESpace (5 % 18)+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "{"+            "}"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8593"+            , Right+                (EUnderover False (ESymbol Op "\8721") (ENumber "1") (ENumber "2"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\9001"+            "\9002"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "|"+            , Right+                (EUnderover False (ESymbol Op "\8721") (ENumber "1") (ENumber "2"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\8968"+            "\8969"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "|"+            , Right+                (EUnderover False (ESymbol Op "\8721") (ENumber "1") (ENumber "2"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8659"+            , Right+                (EDelimited+                   ""+                   ""+                   [ Right+                       (EFraction+                          NormalFrac+                          (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                          (EFraction NormalFrac (ENumber "1") (ENumber "2")))+                   , Left "\8597"+                   , Right+                       (EUnderover False (ESymbol Op "\8721") (ENumber "1") (ENumber "2"))+                   ])+            , Left "\8659"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "["+            "]"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            ")"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "{"+            "}"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\9001"+            "\9002"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\8970"+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\8968"+            "\8969"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8593"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8593"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8595"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8595"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8597"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8597"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8657"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8657"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8659"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8659"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8661"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8661"+            ]+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EFraction NormalFrac (ENumber "1") (ENumber "2"))+            (EFraction NormalFrac (ENumber "1") (ENumber "2"))+        ]+      , []+      ]+    , [ [ EDelimited+            "\\arrowvert"+            "\\arrowvert"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\\Arrowvert"+            "\\Arrowvert"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\\bracevert"+            "\\bracevert"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "|"+            "|"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "|"+            "|"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "|"+            "|"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8741"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8741"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\8741"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\8741"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "/"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "/"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            ""+            ""+            [ Left "\\"+            , Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            , Left "\\"+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\9137"+            "\9136"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\\lgroup"+            "\\rgroup"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\8990"+            "\8991"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "\8988"+            "\8989"+            [ Right+                (EFraction+                   NormalFrac+                   (EFraction NormalFrac (ENumber "1") (ENumber "2"))+                   (EFraction NormalFrac (ENumber "1") (ENumber "2")))+            ]+        ]+      , []+      ]+    , [ [ EGrouped+            [ EIdentifier "A"+            , EUnderover+                False+                (ESymbol Accent "\8592")+                (ESpace (1 % 18))+                (EGrouped+                   [ EIdentifier "n"+                   , ESymbol Bin "+"+                   , EIdentifier "\956"+                   , ESymbol Bin "\8722"+                   , ENumber "1"+                   ])+            , EIdentifier "B"+            , EUnderover+                False+                (ESymbol Accent "\8594")+                (EIdentifier "T")+                (EGrouped+                   [ EIdentifier "n"+                   , ESymbol Bin "\177"+                   , EIdentifier "i"+                   , ESymbol Bin "\8722"+                   , ENumber "1"+                   ])+            , EIdentifier "C"+            ]+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (ENumber "1")+            (EGrouped+               [ ESqrt (ENumber "2")+               , ESymbol Bin "+"+               , EFraction+                   NormalFrac+                   (ENumber "1")+                   (EGrouped+                      [ ESqrt (ENumber "3")+                      , ESymbol Bin "+"+                      , EFraction+                          NormalFrac+                          (ENumber "1")+                          (EGrouped+                             [ ESqrt (ENumber "4")+                             , ESymbol Bin "+"+                             , EFraction+                                 NormalFrac+                                 (ENumber "1")+                                 (EGrouped+                                    [ ESqrt (ENumber "5")+                                    , ESymbol Bin "+"+                                    , EFraction+                                        NormalFrac+                                        (ENumber "1")+                                        (EGrouped+                                           [ ESqrt (ENumber "6")+                                           , ESymbol Bin "+"+                                           , EIdentifier "\8230"+                                           ])+                                    ])+                             ])+                      ])+               ])+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (ENumber "1")+            (EGrouped+               [ ESqrt (ENumber "2")+               , ESymbol Bin "+"+               , EFraction+                   NormalFrac+                   (ENumber "1")+                   (EGrouped+                      [ ESqrt (ENumber "3")+                      , ESymbol Bin "+"+                      , EFraction+                          NormalFrac+                          (ENumber "1")+                          (EGrouped+                             [ ESqrt (ENumber "4")+                             , ESymbol Bin "+"+                             , EFraction+                                 NormalFrac+                                 (ENumber "1")+                                 (EGrouped+                                    [ ESqrt (ENumber "5")+                                    , ESymbol Bin "+"+                                    , EFraction+                                        NormalFrac+                                        (ENumber "1")+                                        (EGrouped+                                           [ ESqrt (ENumber "6")+                                           , ESymbol Bin "+"+                                           , EIdentifier "\8230"+                                           ])+                                    ])+                             ])+                      ])+               ])+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EDelimited+            "("+            "\8971"+            [ Right+                (EFraction+                   NormalFrac+                   (EGrouped+                      [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+                   (EIdentifier "M"))+            ]+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    , [ [ EFraction+            NormalFrac+            (EGrouped+               [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+            (EIdentifier "M")+        ]+      , []+      ]+    ]+]
+ test/reader/mml/complex4.test view
@@ -0,0 +1,16 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <apply>+    <plus></plus> +    <ci>a</ci> +    <apply>+      <minus></minus> +      <ci>b</ci> +      <ci>c</ci> +    </apply> +  </apply> +</math>+>>> native+Unexpected element apply line 4
+ test/reader/mml/coprod1.test view
@@ -0,0 +1,25 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <munderover>+    <mo>&#x2210;</mo> +    <mrow>+      <mi>i</mi> +      <mo>=</mo> +      <mn>0</mn> +    </mrow> +    <mi>&#x221E;</mi> +  </munderover> +  <msub>+    <mi>x</mi> +    <mi>i</mi> +  </msub> </math>+>>> native+[ EUnderover+    False+    (ESymbol Op "\8720")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, ESub (EIdentifier "x") (EIdentifier "i")+]
+ test/reader/mml/coprod2.test view
@@ -0,0 +1,27 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <munderover>+      <mo>&#x2210;</mo> +      <mrow>+        <mi>i</mi> +        <mo>=</mo> +        <mn>0</mn> +      </mrow> +      <mi>&#x221E;</mi> +    </munderover> +    <msub>+      <mi>x</mi> +      <mi>i</mi> +    </msub> +  </mstyle> </math>+>>> native+[ EUnderover+    False+    (ESymbol Op "\8720")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, ESub (EIdentifier "x") (EIdentifier "i")+]
+ test/reader/mml/d.test view
@@ -0,0 +1,1158 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>dagger</mtext> +      </mtd> +      <mtd>+        <mo>†</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dagger</mtext> +      </mtd> +      <mtd>+        <mo>†</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dagger</mtext> +      </mtd> +      <mtd>+        <mo>‡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dagger</mtext> +      </mtd> +      <mtd>+        <mo>‡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>daleth</mtext> +      </mtd> +      <mtd>+        <mo>ℸ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>darr</mtext> +      </mtd> +      <mtd>+        <mo>↓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dArr</mtext> +      </mtd> +      <mtd>+        <mo>⇓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Darr</mtext> +      </mtd> +      <mtd>+        <mo>↡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dash</mtext> +      </mtd> +      <mtd>+        <mo>‐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dashv</mtext> +      </mtd> +      <mtd>+        <mo>⊣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dashv</mtext> +      </mtd> +      <mtd>+        <mo>⫤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dbkarow</mtext> +      </mtd> +      <mtd>+        <mo>⤏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dblac</mtext> +      </mtd> +      <mtd>+        <mo>˝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dcaron</mtext> +      </mtd> +      <mtd>+        <mo>ď</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dcaron</mtext> +      </mtd> +      <mtd>+        <mo>Ď</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dcy</mtext> +      </mtd> +      <mtd>+        <mo>д</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dcy</mtext> +      </mtd> +      <mtd>+        <mo>Д</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dd</mtext> +      </mtd> +      <mtd>+        <mo>ⅆ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DD</mtext> +      </mtd> +      <mtd>+        <mo>ⅅ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ddagger</mtext> +      </mtd> +      <mtd>+        <mo>‡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ddarr</mtext> +      </mtd> +      <mtd>+        <mo>⇊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DDotrahd</mtext> +      </mtd> +      <mtd>+        <mo>⤑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ddotseq</mtext> +      </mtd> +      <mtd>+        <mo>⩷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>deg</mtext> +      </mtd> +      <mtd>+        <mo>°</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Del</mtext> +      </mtd> +      <mtd>+        <mo>∇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>delta</mtext> +      </mtd> +      <mtd>+        <mo>δ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Delta</mtext> +      </mtd> +      <mtd>+        <mo>Δ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>demptyv</mtext> +      </mtd> +      <mtd>+        <mo>⦱</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dfisht</mtext> +      </mtd> +      <mtd>+        <mo>⥿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dHar</mtext> +      </mtd> +      <mtd>+        <mo>⥥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dharl</mtext> +      </mtd> +      <mtd>+        <mo>⇃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dharr</mtext> +      </mtd> +      <mtd>+        <mo>⇂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DiacriticalAcute</mtext> +      </mtd> +      <mtd>+        <mo>´</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DiacriticalDot</mtext> +      </mtd> +      <mtd>+        <mo>˙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DiacriticalDoubleAcute</mtext> +      </mtd> +      <mtd>+        <mo>˝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DiacriticalGrave</mtext> +      </mtd> +      <mtd>+        <mo>`</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DiacriticalTilde</mtext> +      </mtd> +      <mtd>+        <mo>˜</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>diam</mtext> +      </mtd> +      <mtd>+        <mo>⋄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>diamond</mtext> +      </mtd> +      <mtd>+        <mo>⋄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Diamond</mtext> +      </mtd> +      <mtd>+        <mo>⋄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>diamondsuit</mtext> +      </mtd> +      <mtd>+        <mo>♦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>diams</mtext> +      </mtd> +      <mtd>+        <mo>♦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>die</mtext> +      </mtd> +      <mtd>+        <mo>¨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DifferentialD</mtext> +      </mtd> +      <mtd>+        <mo>ⅆ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>digamma</mtext> +      </mtd> +      <mtd>+        <mo>ϝ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>disin</mtext> +      </mtd> +      <mtd>+        <mo>⋲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>div</mtext> +      </mtd> +      <mtd>+        <mo>÷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>divide</mtext> +      </mtd> +      <mtd>+        <mo>÷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>divideontimes</mtext> +      </mtd> +      <mtd>+        <mo>⋇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>divonx</mtext> +      </mtd> +      <mtd>+        <mo>⋇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>djcy</mtext> +      </mtd> +      <mtd>+        <mo>ђ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DJcy</mtext> +      </mtd> +      <mtd>+        <mo>Ђ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dlcorn</mtext> +      </mtd> +      <mtd>+        <mo>⌞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dlcrop</mtext> +      </mtd> +      <mtd>+        <mo>⌍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dollar</mtext> +      </mtd> +      <mtd>+        <mo>$</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dopf</mtext> +      </mtd> +      <mtd>+        <mo>𝔻</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dot</mtext> +      </mtd> +      <mtd>+        <mo>˙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dot</mtext> +      </mtd> +      <mtd>+        <mo>¨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DotDot</mtext> +      </mtd> +      <mtd>+        <mo>⃜</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>doteq</mtext> +      </mtd> +      <mtd>+        <mo>≐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>doteqdot</mtext> +      </mtd> +      <mtd>+        <mo>≑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DotEqual</mtext> +      </mtd> +      <mtd>+        <mo>≐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dotminus</mtext> +      </mtd> +      <mtd>+        <mo>∸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dotplus</mtext> +      </mtd> +      <mtd>+        <mo>∔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dotsquare</mtext> +      </mtd> +      <mtd>+        <mo>⊡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>doublebarwedge</mtext> +      </mtd> +      <mtd>+        <mo>⌆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleContourIntegral</mtext> +      </mtd> +      <mtd>+        <mo>∯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleDot</mtext> +      </mtd> +      <mtd>+        <mo>¨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleDownArrow</mtext> +      </mtd> +      <mtd>+        <mo>⇓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleLeftArrow</mtext> +      </mtd> +      <mtd>+        <mo>⇐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleLeftRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>⇔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleLeftTee</mtext> +      </mtd> +      <mtd>+        <mo>⫤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleLongLeftArrow</mtext> +      </mtd> +      <mtd>+        <mo>⟸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleLongLeftRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>⟺</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleLongRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>⟹</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>⇒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleRightTee</mtext> +      </mtd> +      <mtd>+        <mo>⊨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleUpArrow</mtext> +      </mtd> +      <mtd>+        <mo>⇑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleUpDownArrow</mtext> +      </mtd> +      <mtd>+        <mo>⇕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DoubleVerticalBar</mtext> +      </mtd> +      <mtd>+        <mo>∥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>downarrow</mtext> +      </mtd> +      <mtd>+        <mo>↓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Downarrow</mtext> +      </mtd> +      <mtd>+        <mo>⇓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownArrow</mtext> +      </mtd> +      <mtd>+        <mo>↓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownArrowBar</mtext> +      </mtd> +      <mtd>+        <mo>⤓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownArrowUpArrow</mtext> +      </mtd> +      <mtd>+        <mo>⇵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownBreve</mtext> +      </mtd> +      <mtd>+        <mo>̑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>downdownarrows</mtext> +      </mtd> +      <mtd>+        <mo>⇊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>downharpoonleft</mtext> +      </mtd> +      <mtd>+        <mo>⇃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>downharpoonright</mtext> +      </mtd> +      <mtd>+        <mo>⇂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownLeftRightVector</mtext> +      </mtd> +      <mtd>+        <mo>⥐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownLeftTeeVector</mtext> +      </mtd> +      <mtd>+        <mo>⥞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownLeftVector</mtext> +      </mtd> +      <mtd>+        <mo>↽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownLeftVectorBar</mtext> +      </mtd> +      <mtd>+        <mo>⥖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownRightTeeVector</mtext> +      </mtd> +      <mtd>+        <mo>⥟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownRightVector</mtext> +      </mtd> +      <mtd>+        <mo>⇁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownRightVectorBar</mtext> +      </mtd> +      <mtd>+        <mo>⥗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownTee</mtext> +      </mtd> +      <mtd>+        <mo>⊤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DownTeeArrow</mtext> +      </mtd> +      <mtd>+        <mo>↧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>drbkarow</mtext> +      </mtd> +      <mtd>+        <mo>⤐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>drcorn</mtext> +      </mtd> +      <mtd>+        <mo>⌟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>drcrop</mtext> +      </mtd> +      <mtd>+        <mo>⌌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒹</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dscy</mtext> +      </mtd> +      <mtd>+        <mo>ѕ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DScy</mtext> +      </mtd> +      <mtd>+        <mo>Ѕ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dsol</mtext> +      </mtd> +      <mtd>+        <mo>⧶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dstrok</mtext> +      </mtd> +      <mtd>+        <mo>đ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Dstrok</mtext> +      </mtd> +      <mtd>+        <mo>Đ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dtdot</mtext> +      </mtd> +      <mtd>+        <mo>⋱</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dtri</mtext> +      </mtd> +      <mtd>+        <mo>▿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dtrif</mtext> +      </mtd> +      <mtd>+        <mo>▾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>duarr</mtext> +      </mtd> +      <mtd>+        <mo>⇵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>duhar</mtext> +      </mtd> +      <mtd>+        <mo>⥯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dwangle</mtext> +      </mtd> +      <mtd>+        <mo>⦦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dzcy</mtext> +      </mtd> +      <mtd>+        <mo>џ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>DZcy</mtext> +      </mtd> +      <mtd>+        <mo>Џ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>dzigrarr</mtext> +      </mtd> +      <mtd>+        <mo>⟿</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "dagger" ] , [ ESymbol Bin "\8224" ] ]+    , [ [ EText TextNormal "dagger" ] , [ ESymbol Bin "\8224" ] ]+    , [ [ EText TextNormal "Dagger" ] , [ ESymbol Bin "\8225" ] ]+    , [ [ EText TextNormal "Dagger" ] , [ ESymbol Bin "\8225" ] ]+    , [ [ EText TextNormal "daleth" ] , [ ESymbol Alpha "\8504" ] ]+    , [ [ EText TextNormal "darr" ] , [ ESymbol Rel "\8595" ] ]+    , [ [ EText TextNormal "dArr" ] , [ ESymbol Rel "\8659" ] ]+    , [ [ EText TextNormal "Darr" ] , [ ESymbol Rel "\8609" ] ]+    , [ [ EText TextNormal "dash" ] , [ ESymbol Ord "\8208" ] ]+    , [ [ EText TextNormal "dashv" ] , [ ESymbol Rel "\8867" ] ]+    , [ [ EText TextNormal "Dashv" ] , [ ESymbol Rel "\10980" ] ]+    , [ [ EText TextNormal "dbkarow" ] , [ ESymbol Accent "\10511" ] ]+    , [ [ EText TextNormal "dblac" ] , [ ESymbol Accent "\733" ] ]+    , [ [ EText TextNormal "dcaron" ] , [ ESymbol Ord "\271" ] ]+    , [ [ EText TextNormal "Dcaron" ] , [ ESymbol Ord "\270" ] ]+    , [ [ EText TextNormal "dcy" ] , [ ESymbol Ord "\1076" ] ]+    , [ [ EText TextNormal "Dcy" ] , [ ESymbol Ord "\1044" ] ]+    , [ [ EText TextNormal "dd" ] , [ ESymbol Ord "\8518" ] ]+    , [ [ EText TextNormal "DD" ] , [ ESymbol Ord "\8517" ] ]+    , [ [ EText TextNormal "ddagger" ] , [ ESymbol Bin "\8225" ] ]+    , [ [ EText TextNormal "ddarr" ] , [ ESymbol Rel "\8650" ] ]+    , [ [ EText TextNormal "DDotrahd" ] , [ ESymbol Accent "\10513" ] ]+    , [ [ EText TextNormal "ddotseq" ] , [ ESymbol Rel "\10871" ] ]+    , [ [ EText TextNormal "deg" ] , [ ESymbol Ord "\176" ] ]+    , [ [ EText TextNormal "Del" ] , [ ESymbol Ord "\8711" ] ]+    , [ [ EText TextNormal "delta" ] , [ ESymbol Alpha "\948" ] ]+    , [ [ EText TextNormal "Delta" ] , [ ESymbol Alpha "\916" ] ]+    , [ [ EText TextNormal "demptyv" ] , [ ESymbol Ord "\10673" ] ]+    , [ [ EText TextNormal "dfisht" ] , [ ESymbol Rel "\10623" ] ]+    , [ [ EText TextNormal "dfr" ] , [ ESymbol Alpha "\120097" ] ]+    , [ [ EText TextNormal "Dfr" ] , [ ESymbol Alpha "\120071" ] ]+    , [ [ EText TextNormal "dHar" ] , [ ESymbol Rel "\10597" ] ]+    , [ [ EText TextNormal "dharl" ] , [ ESymbol Rel "\8643" ] ]+    , [ [ EText TextNormal "dharr" ] , [ ESymbol Rel "\8642" ] ]+    , [ [ EText TextNormal "DiacriticalAcute" ]+      , [ ESymbol Accent "\180" ]+      ]+    , [ [ EText TextNormal "DiacriticalDot" ]+      , [ ESymbol Accent "\729" ]+      ]+    , [ [ EText TextNormal "DiacriticalDoubleAcute" ]+      , [ ESymbol Accent "\733" ]+      ]+    , [ [ EText TextNormal "DiacriticalGrave" ]+      , [ ESymbol Accent "`" ]+      ]+    , [ [ EText TextNormal "DiacriticalTilde" ]+      , [ ESymbol Accent "\732" ]+      ]+    , [ [ EText TextNormal "diam" ] , [ ESymbol Bin "\8900" ] ]+    , [ [ EText TextNormal "diamond" ] , [ ESymbol Bin "\8900" ] ]+    , [ [ EText TextNormal "Diamond" ] , [ ESymbol Bin "\8900" ] ]+    , [ [ EText TextNormal "diamondsuit" ] , [ ESymbol Ord "\9830" ] ]+    , [ [ EText TextNormal "diams" ] , [ ESymbol Ord "\9830" ] ]+    , [ [ EText TextNormal "die" ] , [ ESymbol Accent "\168" ] ]+    , [ [ EText TextNormal "DifferentialD" ]+      , [ ESymbol Ord "\8518" ]+      ]+    , [ [ EText TextNormal "digamma" ] , [ ESymbol Alpha "\989" ] ]+    , [ [ EText TextNormal "disin" ] , [ ESymbol Rel "\8946" ] ]+    , [ [ EText TextNormal "div" ] , [ ESymbol Bin "\247" ] ]+    , [ [ EText TextNormal "divide" ] , [ ESymbol Bin "\247" ] ]+    , [ [ EText TextNormal "divideontimes" ]+      , [ ESymbol Bin "\8903" ]+      ]+    , [ [ EText TextNormal "divonx" ] , [ ESymbol Bin "\8903" ] ]+    , [ [ EText TextNormal "djcy" ] , [ ESymbol Ord "\1106" ] ]+    , [ [ EText TextNormal "DJcy" ] , [ ESymbol Ord "\1026" ] ]+    , [ [ EText TextNormal "dlcorn" ] , [ ESymbol Open "\8990" ] ]+    , [ [ EText TextNormal "dlcrop" ] , [ ESymbol Ord "\8973" ] ]+    , [ [ EText TextNormal "dollar" ] , [ ESymbol Ord "$" ] ]+    , [ [ EText TextNormal "dopf" ] , [ ESymbol Alpha "\120149" ] ]+    , [ [ EText TextNormal "Dopf" ] , [ ESymbol Alpha "\120123" ] ]+    , [ [ EText TextNormal "dot" ] , [ ESymbol Accent "\729" ] ]+    , [ [ EText TextNormal "Dot" ] , [ ESymbol Accent "\168" ] ]+    , [ [ EText TextNormal "DotDot" ] , [ ESymbol Accent "\8412" ] ]+    , [ [ EText TextNormal "doteq" ] , [ ESymbol Rel "\8784" ] ]+    , [ [ EText TextNormal "doteqdot" ] , [ ESymbol Rel "\8785" ] ]+    , [ [ EText TextNormal "DotEqual" ] , [ ESymbol Rel "\8784" ] ]+    , [ [ EText TextNormal "dotminus" ] , [ ESymbol Bin "\8760" ] ]+    , [ [ EText TextNormal "dotplus" ] , [ ESymbol Bin "\8724" ] ]+    , [ [ EText TextNormal "dotsquare" ] , [ ESymbol Bin "\8865" ] ]+    , [ [ EText TextNormal "doublebarwedge" ]+      , [ ESymbol Bin "\8966" ]+      ]+    , [ [ EText TextNormal "DoubleContourIntegral" ]+      , [ ESymbol Op "\8751" ]+      ]+    , [ [ EText TextNormal "DoubleDot" ] , [ ESymbol Accent "\168" ] ]+    , [ [ EText TextNormal "DoubleDownArrow" ]+      , [ ESymbol Rel "\8659" ]+      ]+    , [ [ EText TextNormal "DoubleLeftArrow" ]+      , [ ESymbol Accent "\8656" ]+      ]+    , [ [ EText TextNormal "DoubleLeftRightArrow" ]+      , [ ESymbol Accent "\8660" ]+      ]+    , [ [ EText TextNormal "DoubleLeftTee" ]+      , [ ESymbol Rel "\10980" ]+      ]+    , [ [ EText TextNormal "DoubleLongLeftArrow" ]+      , [ ESymbol Accent "\10232" ]+      ]+    , [ [ EText TextNormal "DoubleLongLeftRightArrow" ]+      , [ ESymbol Accent "\10234" ]+      ]+    , [ [ EText TextNormal "DoubleLongRightArrow" ]+      , [ ESymbol Accent "\10233" ]+      ]+    , [ [ EText TextNormal "DoubleRightArrow" ]+      , [ ESymbol Accent "\8658" ]+      ]+    , [ [ EText TextNormal "DoubleRightTee" ]+      , [ ESymbol Rel "\8872" ]+      ]+    , [ [ EText TextNormal "DoubleUpArrow" ]+      , [ ESymbol Rel "\8657" ]+      ]+    , [ [ EText TextNormal "DoubleUpDownArrow" ]+      , [ ESymbol Rel "\8661" ]+      ]+    , [ [ EText TextNormal "DoubleVerticalBar" ]+      , [ ESymbol Rel "\8741" ]+      ]+    , [ [ EText TextNormal "downarrow" ] , [ ESymbol Rel "\8595" ] ]+    , [ [ EText TextNormal "Downarrow" ] , [ ESymbol Rel "\8659" ] ]+    , [ [ EText TextNormal "DownArrow" ] , [ ESymbol Rel "\8595" ] ]+    , [ [ EText TextNormal "DownArrowBar" ]+      , [ ESymbol Rel "\10515" ]+      ]+    , [ [ EText TextNormal "DownArrowUpArrow" ]+      , [ ESymbol Rel "\8693" ]+      ]+    , [ [ EText TextNormal "DownBreve" ] , [ ESymbol Accent "\785" ] ]+    , [ [ EText TextNormal "downdownarrows" ]+      , [ ESymbol Rel "\8650" ]+      ]+    , [ [ EText TextNormal "downharpoonleft" ]+      , [ ESymbol Rel "\8643" ]+      ]+    , [ [ EText TextNormal "downharpoonright" ]+      , [ ESymbol Rel "\8642" ]+      ]+    , [ [ EText TextNormal "DownLeftRightVector" ]+      , [ ESymbol Accent "\10576" ]+      ]+    , [ [ EText TextNormal "DownLeftTeeVector" ]+      , [ ESymbol Accent "\10590" ]+      ]+    , [ [ EText TextNormal "DownLeftVector" ]+      , [ ESymbol Accent "\8637" ]+      ]+    , [ [ EText TextNormal "DownLeftVectorBar" ]+      , [ ESymbol Rel "\10582" ]+      ]+    , [ [ EText TextNormal "DownRightTeeVector" ]+      , [ ESymbol Accent "\10591" ]+      ]+    , [ [ EText TextNormal "DownRightVector" ]+      , [ ESymbol Accent "\8641" ]+      ]+    , [ [ EText TextNormal "DownRightVectorBar" ]+      , [ ESymbol Rel "\10583" ]+      ]+    , [ [ EText TextNormal "DownTee" ] , [ ESymbol Ord "\8868" ] ]+    , [ [ EText TextNormal "DownTeeArrow" ] , [ ESymbol Rel "\8615" ] ]+    , [ [ EText TextNormal "drbkarow" ] , [ ESymbol Accent "\10512" ] ]+    , [ [ EText TextNormal "drcorn" ] , [ ESymbol Close "\8991" ] ]+    , [ [ EText TextNormal "drcrop" ] , [ ESymbol Ord "\8972" ] ]+    , [ [ EText TextNormal "dscr" ] , [ ESymbol Alpha "\119993" ] ]+    , [ [ EText TextNormal "Dscr" ] , [ ESymbol Alpha "\119967" ] ]+    , [ [ EText TextNormal "dscy" ] , [ ESymbol Ord "\1109" ] ]+    , [ [ EText TextNormal "DScy" ] , [ ESymbol Ord "\1029" ] ]+    , [ [ EText TextNormal "dsol" ] , [ ESymbol Bin "\10742" ] ]+    , [ [ EText TextNormal "dstrok" ] , [ ESymbol Ord "\273" ] ]+    , [ [ EText TextNormal "Dstrok" ] , [ ESymbol Ord "\272" ] ]+    , [ [ EText TextNormal "dtdot" ] , [ ESymbol Rel "\8945" ] ]+    , [ [ EText TextNormal "dtri" ] , [ ESymbol Bin "\9663" ] ]+    , [ [ EText TextNormal "dtrif" ] , [ ESymbol Bin "\9662" ] ]+    , [ [ EText TextNormal "duarr" ] , [ ESymbol Rel "\8693" ] ]+    , [ [ EText TextNormal "duhar" ] , [ ESymbol Rel "\10607" ] ]+    , [ [ EText TextNormal "dwangle" ] , [ ESymbol Ord "\10662" ] ]+    , [ [ EText TextNormal "dzcy" ] , [ ESymbol Ord "\1119" ] ]+    , [ [ EText TextNormal "DZcy" ] , [ ESymbol Ord "\1039" ] ]+    , [ [ EText TextNormal "dzigrarr" ] , [ ESymbol Accent "\10239" ] ]+    ]+]
+ test/reader/mml/digamma.test view
@@ -0,0 +1,7 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>&#x1D7CA;&#x1D7CB;</mtext> </math>+>>> native+[ EText TextNormal "\120778\120779" ]
+ test/reader/mml/digit-bold.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>&#x1D7CE;&#x1D7CF;&#x1D7D0;&#x1D7D1;&#x1D7D2;&#x1D7D3;&#x1D7D4;&#x1D7D5;&#x1D7D6;&#x1D7D7;</mtext> </math>+>>> native+[ EText+    TextNormal+    "\120782\120783\120784\120785\120786\120787\120788\120789\120790\120791"+]
+ test/reader/mml/digit-double-struck.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>&#x1D7D8;&#x1D7D9;&#x1D7DA;&#x1D7DB;&#x1D7DC;&#x1D7DD;&#x1D7DE;&#x1D7DF;&#x1D7E0;&#x1D7E1;</mtext> </math>+>>> native+[ EText+    TextNormal+    "\120792\120793\120794\120795\120796\120797\120798\120799\120800\120801"+]
+ test/reader/mml/digit-monospace.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>&#x1D7F6;&#x1D7F7;&#x1D7F8;&#x1D7F9;&#x1D7FA;&#x1D7FB;&#x1D7FC;&#x1D7FD;&#x1D7FE;&#x1D7FF;</mtext> </math>+>>> native+[ EText+    TextNormal+    "\120822\120823\120824\120825\120826\120827\120828\120829\120830\120831"+]
+ test/reader/mml/digit-sans-serif-bold.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>&#x1D7EC;&#x1D7ED;&#x1D7EE;&#x1D7EF;&#x1D7F0;&#x1D7F1;&#x1D7F2;&#x1D7F3;&#x1D7F4;&#x1D7F5;</mtext> </math>+>>> native+[ EText+    TextNormal+    "\120812\120813\120814\120815\120816\120817\120818\120819\120820\120821"+]
+ test/reader/mml/digit-sans-serif.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>&#x1D7E2;&#x1D7E3;&#x1D7E4;&#x1D7E5;&#x1D7E6;&#x1D7E7;&#x1D7E8;&#x1D7E9;&#x1D7EA;&#x1D7EB;</mtext> </math>+>>> native+[ EText+    TextNormal+    "\120802\120803\120804\120805\120806\120807\120808\120809\120810\120811"+]
+ test/reader/mml/dotless.test view
@@ -0,0 +1,7 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>&#x1D6A4;&#x1D6A5;</mtext> </math>+>>> native+[ EText TextNormal "\120484\120485" ]
+ test/reader/mml/double-struck.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathvariant="double-struck">+    <mtable columnalign="left">+      <mtr>+        <mtd>+          <mtext>0123456789</mtext> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mtext>ABCDEFGHIJKLMNOPQRSTUVWXYZ</mtext> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mtext>abcdefghijklmnopqrstuvwxyz</mtext> +        </mtd> +      </mtr> +    </mtable> +  </mstyle> </math>+>>> native+[ EStyled+    TextDoubleStruck+    [ EArray+        [ AlignLeft ]+        [ [ [ EText TextNormal "0123456789" ] ]+        , [ [ EText TextNormal "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ] ]+        , [ [ EText TextNormal "abcdefghijklmnopqrstuvwxyz" ] ]+        ]+    ]+]
+ test/reader/mml/doubleint1.test view
@@ -0,0 +1,26 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <msubsup>+    <mo>&#x222C;</mo> +    <mn>0</mn> +    <mn>1</mn> +  </msubsup> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> </math>+>>> native+[ ESubsup (ESymbol Op "\8748") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/doubleint2.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <msubsup>+      <mo>&#x222C;</mo> +      <mn>0</mn> +      <mn>1</mn> +    </msubsup> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +  </mstyle> </math>+>>> native+[ ESubsup (ESymbol Op "\8748") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/e.test view
@@ -0,0 +1,767 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>eacute</mtext> +      </mtd> +      <mtd>+        <mo>é</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Eacute</mtext> +      </mtd> +      <mtd>+        <mo>É</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>easter</mtext> +      </mtd> +      <mtd>+        <mo>⩮</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ecaron</mtext> +      </mtd> +      <mtd>+        <mo>ě</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ecaron</mtext> +      </mtd> +      <mtd>+        <mo>Ě</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ecir</mtext> +      </mtd> +      <mtd>+        <mo>≖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ecirc</mtext> +      </mtd> +      <mtd>+        <mo>ê</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ecirc</mtext> +      </mtd> +      <mtd>+        <mo>Ê</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ecolon</mtext> +      </mtd> +      <mtd>+        <mo>≕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ecy</mtext> +      </mtd> +      <mtd>+        <mo>э</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ecy</mtext> +      </mtd> +      <mtd>+        <mo>Э</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eDDot</mtext> +      </mtd> +      <mtd>+        <mo>⩷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>edot</mtext> +      </mtd> +      <mtd>+        <mo>ė</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eDot</mtext> +      </mtd> +      <mtd>+        <mo>≑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Edot</mtext> +      </mtd> +      <mtd>+        <mo>Ė</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ee</mtext> +      </mtd> +      <mtd>+        <mo>ⅇ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>efDot</mtext> +      </mtd> +      <mtd>+        <mo>≒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>efr</mtext> +      </mtd> +      <mtd>+        <mo>𝔢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Efr</mtext> +      </mtd> +      <mtd>+        <mo>𝔈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eg</mtext> +      </mtd> +      <mtd>+        <mo>⪚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>egrave</mtext> +      </mtd> +      <mtd>+        <mo>è</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Egrave</mtext> +      </mtd> +      <mtd>+        <mo>È</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>egs</mtext> +      </mtd> +      <mtd>+        <mo>⪖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>egsdot</mtext> +      </mtd> +      <mtd>+        <mo>⪘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>el</mtext> +      </mtd> +      <mtd>+        <mo>⪙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Element</mtext> +      </mtd> +      <mtd>+        <mo>∈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>elinters</mtext> +      </mtd> +      <mtd>+        <mo>⏧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ell</mtext> +      </mtd> +      <mtd>+        <mo>ℓ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>els</mtext> +      </mtd> +      <mtd>+        <mo>⪕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>elsdot</mtext> +      </mtd> +      <mtd>+        <mo>⪗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>emacr</mtext> +      </mtd> +      <mtd>+        <mo>ē</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Emacr</mtext> +      </mtd> +      <mtd>+        <mo>Ē</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>empty</mtext> +      </mtd> +      <mtd>+        <mo>∅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>emptyset</mtext> +      </mtd> +      <mtd>+        <mo>∅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>EmptySmallSquare</mtext> +      </mtd> +      <mtd>+        <mo>◻</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>emptyv</mtext> +      </mtd> +      <mtd>+        <mo>∅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>EmptyVerySmallSquare</mtext> +      </mtd> +      <mtd>+        <mo>▫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>emsp</mtext> +      </mtd> +      <mtd>+        <mo> </mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>emsp13</mtext> +      </mtd> +      <mtd>+        <mo> </mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>emsp14</mtext> +      </mtd> +      <mtd>+        <mo> </mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eng</mtext> +      </mtd> +      <mtd>+        <mo>ŋ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ENG</mtext> +      </mtd> +      <mtd>+        <mo>Ŋ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ensp</mtext> +      </mtd> +      <mtd>+        <mo> </mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eogon</mtext> +      </mtd> +      <mtd>+        <mo>ę</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Eogon</mtext> +      </mtd> +      <mtd>+        <mo>Ę</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Eopf</mtext> +      </mtd> +      <mtd>+        <mo>𝔼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>epar</mtext> +      </mtd> +      <mtd>+        <mo>⋕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eparsl</mtext> +      </mtd> +      <mtd>+        <mo>⧣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eplus</mtext> +      </mtd> +      <mtd>+        <mo>⩱</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>epsi</mtext> +      </mtd> +      <mtd>+        <mo>ε</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>epsiv</mtext> +      </mtd> +      <mtd>+        <mo>ϵ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eqcirc</mtext> +      </mtd> +      <mtd>+        <mo>≖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eqcolon</mtext> +      </mtd> +      <mtd>+        <mo>≕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eqsim</mtext> +      </mtd> +      <mtd>+        <mo>≂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eqslantgtr</mtext> +      </mtd> +      <mtd>+        <mo>⪖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eqslantless</mtext> +      </mtd> +      <mtd>+        <mo>⪕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Equal</mtext> +      </mtd> +      <mtd>+        <mo>⩵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>equals</mtext> +      </mtd> +      <mtd>+        <mo>=</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>EqualTilde</mtext> +      </mtd> +      <mtd>+        <mo>≂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>equest</mtext> +      </mtd> +      <mtd>+        <mo>≟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Equilibrium</mtext> +      </mtd> +      <mtd>+        <mo>⇌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>equiv</mtext> +      </mtd> +      <mtd>+        <mo>≡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>equivDD</mtext> +      </mtd> +      <mtd>+        <mo>⩸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eqvparsl</mtext> +      </mtd> +      <mtd>+        <mo>⧥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>erarr</mtext> +      </mtd> +      <mtd>+        <mo>⥱</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>erDot</mtext> +      </mtd> +      <mtd>+        <mo>≓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>escr</mtext> +      </mtd> +      <mtd>+        <mo>ℯ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Escr</mtext> +      </mtd> +      <mtd>+        <mo>ℰ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>esdot</mtext> +      </mtd> +      <mtd>+        <mo>≐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>esim</mtext> +      </mtd> +      <mtd>+        <mo>≂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Esim</mtext> +      </mtd> +      <mtd>+        <mo>⩳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eta</mtext> +      </mtd> +      <mtd>+        <mo>η</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>eth</mtext> +      </mtd> +      <mtd>+        <mo>ð</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ETH</mtext> +      </mtd> +      <mtd>+        <mo>Ð</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>euml</mtext> +      </mtd> +      <mtd>+        <mo>ë</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Euml</mtext> +      </mtd> +      <mtd>+        <mo>Ë</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>excl</mtext> +      </mtd> +      <mtd>+        <mo>!</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>exist</mtext> +      </mtd> +      <mtd>+        <mo>∃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Exists</mtext> +      </mtd> +      <mtd>+        <mo>∃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>expectation</mtext> +      </mtd> +      <mtd>+        <mo>ℰ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>exponentiale</mtext> +      </mtd> +      <mtd>+        <mo>ⅇ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ExponentialE</mtext> +      </mtd> +      <mtd>+        <mo>ⅇ</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "eacute" ] , [ ESymbol Ord "\233" ] ]+    , [ [ EText TextNormal "Eacute" ] , [ ESymbol Ord "\201" ] ]+    , [ [ EText TextNormal "easter" ] , [ ESymbol Rel "\10862" ] ]+    , [ [ EText TextNormal "ecaron" ] , [ ESymbol Ord "\283" ] ]+    , [ [ EText TextNormal "Ecaron" ] , [ ESymbol Ord "\282" ] ]+    , [ [ EText TextNormal "ecir" ] , [ ESymbol Rel "\8790" ] ]+    , [ [ EText TextNormal "ecirc" ] , [ ESymbol Ord "\234" ] ]+    , [ [ EText TextNormal "Ecirc" ] , [ ESymbol Ord "\202" ] ]+    , [ [ EText TextNormal "ecolon" ] , [ ESymbol Rel "\8789" ] ]+    , [ [ EText TextNormal "ecy" ] , [ ESymbol Ord "\1101" ] ]+    , [ [ EText TextNormal "Ecy" ] , [ ESymbol Ord "\1069" ] ]+    , [ [ EText TextNormal "eDDot" ] , [ ESymbol Rel "\10871" ] ]+    , [ [ EText TextNormal "edot" ] , [ ESymbol Ord "\279" ] ]+    , [ [ EText TextNormal "eDot" ] , [ ESymbol Rel "\8785" ] ]+    , [ [ EText TextNormal "Edot" ] , [ ESymbol Ord "\278" ] ]+    , [ [ EText TextNormal "ee" ] , [ ESymbol Ord "\8519" ] ]+    , [ [ EText TextNormal "efDot" ] , [ ESymbol Rel "\8786" ] ]+    , [ [ EText TextNormal "efr" ] , [ ESymbol Alpha "\120098" ] ]+    , [ [ EText TextNormal "Efr" ] , [ ESymbol Alpha "\120072" ] ]+    , [ [ EText TextNormal "eg" ] , [ ESymbol Rel "\10906" ] ]+    , [ [ EText TextNormal "egrave" ] , [ ESymbol Ord "\232" ] ]+    , [ [ EText TextNormal "Egrave" ] , [ ESymbol Ord "\200" ] ]+    , [ [ EText TextNormal "egs" ] , [ ESymbol Rel "\10902" ] ]+    , [ [ EText TextNormal "egsdot" ] , [ ESymbol Rel "\10904" ] ]+    , [ [ EText TextNormal "el" ] , [ ESymbol Rel "\10905" ] ]+    , [ [ EText TextNormal "Element" ] , [ ESymbol Rel "\8712" ] ]+    , [ [ EText TextNormal "elinters" ] , [ ESymbol Ord "\9191" ] ]+    , [ [ EText TextNormal "ell" ] , [ ESymbol Alpha "\8467" ] ]+    , [ [ EText TextNormal "els" ] , [ ESymbol Rel "\10901" ] ]+    , [ [ EText TextNormal "elsdot" ] , [ ESymbol Rel "\10903" ] ]+    , [ [ EText TextNormal "emacr" ] , [ ESymbol Ord "\275" ] ]+    , [ [ EText TextNormal "Emacr" ] , [ ESymbol Ord "\274" ] ]+    , [ [ EText TextNormal "empty" ] , [ ESymbol Ord "\8709" ] ]+    , [ [ EText TextNormal "emptyset" ] , [ ESymbol Ord "\8709" ] ]+    , [ [ EText TextNormal "EmptySmallSquare" ]+      , [ ESymbol Ord "\9723" ]+      ]+    , [ [ EText TextNormal "emptyv" ] , [ ESymbol Ord "\8709" ] ]+    , [ [ EText TextNormal "EmptyVerySmallSquare" ]+      , [ ESymbol Ord "\9643" ]+      ]+    , [ [ EText TextNormal "emsp" ] , [ ESymbol Ord "\8195" ] ]+    , [ [ EText TextNormal "emsp13" ] , [ ESymbol Ord "\8196" ] ]+    , [ [ EText TextNormal "emsp14" ] , [ ESymbol Ord "\8197" ] ]+    , [ [ EText TextNormal "eng" ] , [ ESymbol Ord "\331" ] ]+    , [ [ EText TextNormal "ENG" ] , [ ESymbol Ord "\330" ] ]+    , [ [ EText TextNormal "ensp" ] , [ ESymbol Ord "\8194" ] ]+    , [ [ EText TextNormal "eogon" ] , [ ESymbol Ord "\281" ] ]+    , [ [ EText TextNormal "Eogon" ] , [ ESymbol Ord "\280" ] ]+    , [ [ EText TextNormal "eopf" ] , [ ESymbol Alpha "\120150" ] ]+    , [ [ EText TextNormal "Eopf" ] , [ ESymbol Alpha "\120124" ] ]+    , [ [ EText TextNormal "epar" ] , [ ESymbol Rel "\8917" ] ]+    , [ [ EText TextNormal "eparsl" ] , [ ESymbol Rel "\10723" ] ]+    , [ [ EText TextNormal "eplus" ] , [ ESymbol Bin "\10865" ] ]+    , [ [ EText TextNormal "epsi" ] , [ ESymbol Alpha "\949" ] ]+    , [ [ EText TextNormal "epsiv" ] , [ ESymbol Alpha "\1013" ] ]+    , [ [ EText TextNormal "eqcirc" ] , [ ESymbol Rel "\8790" ] ]+    , [ [ EText TextNormal "eqcolon" ] , [ ESymbol Rel "\8789" ] ]+    , [ [ EText TextNormal "eqsim" ] , [ ESymbol Rel "\8770" ] ]+    , [ [ EText TextNormal "eqslantgtr" ] , [ ESymbol Rel "\10902" ] ]+    , [ [ EText TextNormal "eqslantless" ] , [ ESymbol Rel "\10901" ] ]+    , [ [ EText TextNormal "Equal" ] , [ ESymbol Rel "\10869" ] ]+    , [ [ EText TextNormal "equals" ] , [ ESymbol Rel "=" ] ]+    , [ [ EText TextNormal "EqualTilde" ] , [ ESymbol Rel "\8770" ] ]+    , [ [ EText TextNormal "equest" ] , [ ESymbol Rel "\8799" ] ]+    , [ [ EText TextNormal "Equilibrium" ]+      , [ ESymbol Accent "\8652" ]+      ]+    , [ [ EText TextNormal "equiv" ] , [ ESymbol Rel "\8801" ] ]+    , [ [ EText TextNormal "equivDD" ] , [ ESymbol Rel "\10872" ] ]+    , [ [ EText TextNormal "eqvparsl" ] , [ ESymbol Rel "\10725" ] ]+    , [ [ EText TextNormal "erarr" ] , [ ESymbol Accent "\10609" ] ]+    , [ [ EText TextNormal "erDot" ] , [ ESymbol Rel "\8787" ] ]+    , [ [ EText TextNormal "escr" ] , [ ESymbol Alpha "\8495" ] ]+    , [ [ EText TextNormal "Escr" ] , [ ESymbol Alpha "\8496" ] ]+    , [ [ EText TextNormal "esdot" ] , [ ESymbol Rel "\8784" ] ]+    , [ [ EText TextNormal "esim" ] , [ ESymbol Rel "\8770" ] ]+    , [ [ EText TextNormal "Esim" ] , [ ESymbol Rel "\10867" ] ]+    , [ [ EText TextNormal "eta" ] , [ ESymbol Alpha "\951" ] ]+    , [ [ EText TextNormal "eth" ] , [ ESymbol Alpha "\240" ] ]+    , [ [ EText TextNormal "ETH" ] , [ ESymbol Ord "\208" ] ]+    , [ [ EText TextNormal "euml" ] , [ ESymbol Ord "\235" ] ]+    , [ [ EText TextNormal "Euml" ] , [ ESymbol Ord "\203" ] ]+    , [ [ EText TextNormal "excl" ] , [ ESymbol Pun "!" ] ]+    , [ [ EText TextNormal "exist" ] , [ ESymbol Ord "\8707" ] ]+    , [ [ EText TextNormal "Exists" ] , [ ESymbol Ord "\8707" ] ]+    , [ [ EText TextNormal "expectation" ]+      , [ ESymbol Alpha "\8496" ]+      ]+    , [ [ EText TextNormal "exponentiale" ] , [ ESymbol Ord "\8519" ] ]+    , [ [ EText TextNormal "ExponentialE" ] , [ ESymbol Ord "\8519" ] ]+    ]+]
+ test/reader/mml/embStretch1.test view
@@ -0,0 +1,22 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mo>(</mo> +  <mfrac>+    <mn>2</mn> +    <mi>x</mi> +  </mfrac> +  <msup>+    <mo>)</mo> +    <mo>-</mo> +  </msup> +</math>+>>> native+[ ESuper+    (EDelimited+       "("+       ")"+       [ Right (EFraction NormalFrac (ENumber "2") (EIdentifier "x")) ])+    (ESymbol Bin "-")+]
+ test/reader/mml/emptyContent1.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <msub>+    <mn></mn> +    <mo></mo> +  </msub> +</math>+>>> native+[ ESub (ENumber "") (EMathOperator "") ]
+ test/reader/mml/f.test view
@@ -0,0 +1,405 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>fallingdotseq</mtext> +      </mtd> +      <mtd>+        <mo>≒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fcy</mtext> +      </mtd> +      <mtd>+        <mo>ф</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Fcy</mtext> +      </mtd> +      <mtd>+        <mo>Ф</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>female</mtext> +      </mtd> +      <mtd>+        <mo>♀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ffilig</mtext> +      </mtd> +      <mtd>+        <mo>ffi</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fflig</mtext> +      </mtd> +      <mtd>+        <mo>ff</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ffllig</mtext> +      </mtd> +      <mtd>+        <mo>ffl</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ffr</mtext> +      </mtd> +      <mtd>+        <mo>𝔣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ffr</mtext> +      </mtd> +      <mtd>+        <mo>𝔉</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>filig</mtext> +      </mtd> +      <mtd>+        <mo>fi</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>FilledSmallSquare</mtext> +      </mtd> +      <mtd>+        <mo>◼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>FilledVerySmallSquare</mtext> +      </mtd> +      <mtd>+        <mo>▪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fjlig</mtext> +      </mtd> +      <mtd>+        <mo>fj</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>flat</mtext> +      </mtd> +      <mtd>+        <mo>♭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fllig</mtext> +      </mtd> +      <mtd>+        <mo>fl</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fltns</mtext> +      </mtd> +      <mtd>+        <mo>▱</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fnof</mtext> +      </mtd> +      <mtd>+        <mo>ƒ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Fopf</mtext> +      </mtd> +      <mtd>+        <mo>𝔽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>forall</mtext> +      </mtd> +      <mtd>+        <mo>∀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ForAll</mtext> +      </mtd> +      <mtd>+        <mo>∀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fork</mtext> +      </mtd> +      <mtd>+        <mo>⋔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>forkv</mtext> +      </mtd> +      <mtd>+        <mo>⫙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Fouriertrf</mtext> +      </mtd> +      <mtd>+        <mo>ℱ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fpartint</mtext> +      </mtd> +      <mtd>+        <mo>⨍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac12</mtext> +      </mtd> +      <mtd>+        <mo>½</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac13</mtext> +      </mtd> +      <mtd>+        <mo>⅓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac14</mtext> +      </mtd> +      <mtd>+        <mo>¼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac15</mtext> +      </mtd> +      <mtd>+        <mo>⅕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac16</mtext> +      </mtd> +      <mtd>+        <mo>⅙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac18</mtext> +      </mtd> +      <mtd>+        <mo>⅛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac23</mtext> +      </mtd> +      <mtd>+        <mo>⅔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac25</mtext> +      </mtd> +      <mtd>+        <mo>⅖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac34</mtext> +      </mtd> +      <mtd>+        <mo>¾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac35</mtext> +      </mtd> +      <mtd>+        <mo>⅗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac38</mtext> +      </mtd> +      <mtd>+        <mo>⅜</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac45</mtext> +      </mtd> +      <mtd>+        <mo>⅘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac56</mtext> +      </mtd> +      <mtd>+        <mo>⅚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac58</mtext> +      </mtd> +      <mtd>+        <mo>⅝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frac78</mtext> +      </mtd> +      <mtd>+        <mo>⅞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>frown</mtext> +      </mtd> +      <mtd>+        <mo>⌢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>fscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒻</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Fscr</mtext> +      </mtd> +      <mtd>+        <mo>ℱ</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "fallingdotseq" ]+      , [ ESymbol Rel "\8786" ]+      ]+    , [ [ EText TextNormal "fcy" ] , [ ESymbol Ord "\1092" ] ]+    , [ [ EText TextNormal "Fcy" ] , [ ESymbol Ord "\1060" ] ]+    , [ [ EText TextNormal "female" ] , [ ESymbol Ord "\9792" ] ]+    , [ [ EText TextNormal "ffilig" ] , [ ESymbol Ord "\64259" ] ]+    , [ [ EText TextNormal "fflig" ] , [ ESymbol Ord "\64256" ] ]+    , [ [ EText TextNormal "ffllig" ] , [ ESymbol Ord "\64260" ] ]+    , [ [ EText TextNormal "ffr" ] , [ ESymbol Alpha "\120099" ] ]+    , [ [ EText TextNormal "Ffr" ] , [ ESymbol Alpha "\120073" ] ]+    , [ [ EText TextNormal "filig" ] , [ ESymbol Ord "\64257" ] ]+    , [ [ EText TextNormal "FilledSmallSquare" ]+      , [ ESymbol Ord "\9724" ]+      ]+    , [ [ EText TextNormal "FilledVerySmallSquare" ]+      , [ ESymbol Ord "\9642" ]+      ]+    , [ [ EText TextNormal "fjlig" ] , [ EMathOperator "fj" ] ]+    , [ [ EText TextNormal "flat" ] , [ ESymbol Ord "\9837" ] ]+    , [ [ EText TextNormal "fllig" ] , [ ESymbol Ord "\64258" ] ]+    , [ [ EText TextNormal "fltns" ] , [ ESymbol Ord "\9649" ] ]+    , [ [ EText TextNormal "fnof" ] , [ ESymbol Ord "\402" ] ]+    , [ [ EText TextNormal "fopf" ] , [ ESymbol Alpha "\120151" ] ]+    , [ [ EText TextNormal "Fopf" ] , [ ESymbol Alpha "\120125" ] ]+    , [ [ EText TextNormal "forall" ] , [ ESymbol Ord "\8704" ] ]+    , [ [ EText TextNormal "ForAll" ] , [ ESymbol Ord "\8704" ] ]+    , [ [ EText TextNormal "fork" ] , [ ESymbol Rel "\8916" ] ]+    , [ [ EText TextNormal "forkv" ] , [ ESymbol Rel "\10969" ] ]+    , [ [ EText TextNormal "Fouriertrf" ] , [ ESymbol Alpha "\8497" ] ]+    , [ [ EText TextNormal "fpartint" ] , [ ESymbol Op "\10765" ] ]+    , [ [ EText TextNormal "frac12" ] , [ ESymbol Ord "\189" ] ]+    , [ [ EText TextNormal "frac13" ] , [ ESymbol Ord "\8531" ] ]+    , [ [ EText TextNormal "frac14" ] , [ ESymbol Ord "\188" ] ]+    , [ [ EText TextNormal "frac15" ] , [ ESymbol Ord "\8533" ] ]+    , [ [ EText TextNormal "frac16" ] , [ ESymbol Ord "\8537" ] ]+    , [ [ EText TextNormal "frac18" ] , [ ESymbol Ord "\8539" ] ]+    , [ [ EText TextNormal "frac23" ] , [ ESymbol Ord "\8532" ] ]+    , [ [ EText TextNormal "frac25" ] , [ ESymbol Ord "\8534" ] ]+    , [ [ EText TextNormal "frac34" ] , [ ESymbol Ord "\190" ] ]+    , [ [ EText TextNormal "frac35" ] , [ ESymbol Ord "\8535" ] ]+    , [ [ EText TextNormal "frac38" ] , [ ESymbol Ord "\8540" ] ]+    , [ [ EText TextNormal "frac45" ] , [ ESymbol Ord "\8536" ] ]+    , [ [ EText TextNormal "frac56" ] , [ ESymbol Ord "\8538" ] ]+    , [ [ EText TextNormal "frac58" ] , [ ESymbol Ord "\8541" ] ]+    , [ [ EText TextNormal "frac78" ] , [ ESymbol Ord "\8542" ] ]+    , [ [ EText TextNormal "frown" ] , [ ESymbol Rel "\8994" ] ]+    , [ [ EText TextNormal "fscr" ] , [ ESymbol Alpha "\119995" ] ]+    , [ [ EText TextNormal "Fscr" ] , [ ESymbol Alpha "\8497" ] ]+    ]+]
+ test/reader/mml/fraktur-bold.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathvariant="bold-fraktur">+    <mtable columnalign="left">+      <mtr>+        <mtd>+          <mtext>ABCDEFGHIJKLMNOPQRSTUVWXYZ</mtext> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mtext>abcdefghijklmnopqrstuvwxyz</mtext> +        </mtd> +      </mtr> +    </mtable> +  </mstyle> </math>+>>> native+[ EStyled+    TextBoldFraktur+    [ EArray+        [ AlignLeft ]+        [ [ [ EText TextNormal "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ] ]+        , [ [ EText TextNormal "abcdefghijklmnopqrstuvwxyz" ] ]+        ]+    ]+]
+ test/reader/mml/fraktur.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathvariant="fraktur">+    <mtable columnalign="left">+      <mtr>+        <mtd>+          <mtext>ABCDEFGHIJKLMNOPQRSTUVWXYZ</mtext> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mtext>abcdefghijklmnopqrstuvwxyz</mtext> +        </mtd> +      </mtr> +    </mtable> +  </mstyle> </math>+>>> native+[ EStyled+    TextFraktur+    [ EArray+        [ AlignLeft ]+        [ [ [ EText TextNormal "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ] ]+        , [ [ EText TextNormal "abcdefghijklmnopqrstuvwxyz" ] ]+        ]+    ]+]
+ test/reader/mml/g.test view
@@ -0,0 +1,733 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>gacute</mtext> +      </mtd> +      <mtd>+        <mo>ǵ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gamma</mtext> +      </mtd> +      <mtd>+        <mo>γ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gamma</mtext> +      </mtd> +      <mtd>+        <mo>Γ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gammad</mtext> +      </mtd> +      <mtd>+        <mo>ϝ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gammad</mtext> +      </mtd> +      <mtd>+        <mo>Ϝ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gap</mtext> +      </mtd> +      <mtd>+        <mo>⪆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gbreve</mtext> +      </mtd> +      <mtd>+        <mo>ğ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gbreve</mtext> +      </mtd> +      <mtd>+        <mo>Ğ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gcedil</mtext> +      </mtd> +      <mtd>+        <mo>Ģ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gcirc</mtext> +      </mtd> +      <mtd>+        <mo>ĝ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gcirc</mtext> +      </mtd> +      <mtd>+        <mo>Ĝ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gcy</mtext> +      </mtd> +      <mtd>+        <mo>г</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gcy</mtext> +      </mtd> +      <mtd>+        <mo>Г</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gdot</mtext> +      </mtd> +      <mtd>+        <mo>ġ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gdot</mtext> +      </mtd> +      <mtd>+        <mo>Ġ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ge</mtext> +      </mtd> +      <mtd>+        <mo>≥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gE</mtext> +      </mtd> +      <mtd>+        <mo>≧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gel</mtext> +      </mtd> +      <mtd>+        <mo>⋛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gEl</mtext> +      </mtd> +      <mtd>+        <mo>⪌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>geq</mtext> +      </mtd> +      <mtd>+        <mo>≥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>geqq</mtext> +      </mtd> +      <mtd>+        <mo>≧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>geqslant</mtext> +      </mtd> +      <mtd>+        <mo>⩾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ges</mtext> +      </mtd> +      <mtd>+        <mo>⩾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gescc</mtext> +      </mtd> +      <mtd>+        <mo>⪩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gesdot</mtext> +      </mtd> +      <mtd>+        <mo>⪀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gesdoto</mtext> +      </mtd> +      <mtd>+        <mo>⪂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gesdotol</mtext> +      </mtd> +      <mtd>+        <mo>⪄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gesl</mtext> +      </mtd> +      <mtd>+        <mo>⋛︀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gesles</mtext> +      </mtd> +      <mtd>+        <mo>⪔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gg</mtext> +      </mtd> +      <mtd>+        <mo>≫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gg</mtext> +      </mtd> +      <mtd>+        <mo>⋙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ggg</mtext> +      </mtd> +      <mtd>+        <mo>⋙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gimel</mtext> +      </mtd> +      <mtd>+        <mo>ℷ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gjcy</mtext> +      </mtd> +      <mtd>+        <mo>ѓ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>GJcy</mtext> +      </mtd> +      <mtd>+        <mo>Ѓ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gl</mtext> +      </mtd> +      <mtd>+        <mo>≷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gla</mtext> +      </mtd> +      <mtd>+        <mo>⪥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>glE</mtext> +      </mtd> +      <mtd>+        <mo>⪒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>glj</mtext> +      </mtd> +      <mtd>+        <mo>⪤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gnap</mtext> +      </mtd> +      <mtd>+        <mo>⪊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gnapprox</mtext> +      </mtd> +      <mtd>+        <mo>⪊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gne</mtext> +      </mtd> +      <mtd>+        <mo>⪈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gnE</mtext> +      </mtd> +      <mtd>+        <mo>≩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gneq</mtext> +      </mtd> +      <mtd>+        <mo>⪈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gneqq</mtext> +      </mtd> +      <mtd>+        <mo>≩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gnsim</mtext> +      </mtd> +      <mtd>+        <mo>⋧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gopf</mtext> +      </mtd> +      <mtd>+        <mo>𝔾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>grave</mtext> +      </mtd> +      <mtd>+        <mo>`</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>GreaterEqual</mtext> +      </mtd> +      <mtd>+        <mo>≥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>GreaterEqualLess</mtext> +      </mtd> +      <mtd>+        <mo>⋛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>GreaterFullEqual</mtext> +      </mtd> +      <mtd>+        <mo>≧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>GreaterGreater</mtext> +      </mtd> +      <mtd>+        <mo>⪢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>GreaterLess</mtext> +      </mtd> +      <mtd>+        <mo>≷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>GreaterSlantEqual</mtext> +      </mtd> +      <mtd>+        <mo>⩾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>GreaterTilde</mtext> +      </mtd> +      <mtd>+        <mo>≳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gscr</mtext> +      </mtd> +      <mtd>+        <mo>ℊ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gsim</mtext> +      </mtd> +      <mtd>+        <mo>≳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gsime</mtext> +      </mtd> +      <mtd>+        <mo>⪎</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gsiml</mtext> +      </mtd> +      <mtd>+        <mo>⪐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gt</mtext> +      </mtd> +      <mtd>+        <mo>&gt;</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Gt</mtext> +      </mtd> +      <mtd>+        <mo>≫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtcc</mtext> +      </mtd> +      <mtd>+        <mo>⪧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtcir</mtext> +      </mtd> +      <mtd>+        <mo>⩺</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtdot</mtext> +      </mtd> +      <mtd>+        <mo>⋗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtlPar</mtext> +      </mtd> +      <mtd>+        <mo>⦕</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtquest</mtext> +      </mtd> +      <mtd>+        <mo>⩼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtrapprox</mtext> +      </mtd> +      <mtd>+        <mo>⪆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtrarr</mtext> +      </mtd> +      <mtd>+        <mo>⥸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtrdot</mtext> +      </mtd> +      <mtd>+        <mo>⋗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtreqless</mtext> +      </mtd> +      <mtd>+        <mo>⋛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtreqqless</mtext> +      </mtd> +      <mtd>+        <mo>⪌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtrless</mtext> +      </mtd> +      <mtd>+        <mo>≷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gtrsim</mtext> +      </mtd> +      <mtd>+        <mo>≳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gvertneqq</mtext> +      </mtd> +      <mtd>+        <mo>≩︀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>gvnE</mtext> +      </mtd> +      <mtd>+        <mo>≩︀</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "gacute" ] , [ ESymbol Ord "\501" ] ]+    , [ [ EText TextNormal "gamma" ] , [ ESymbol Alpha "\947" ] ]+    , [ [ EText TextNormal "Gamma" ] , [ ESymbol Alpha "\915" ] ]+    , [ [ EText TextNormal "gammad" ] , [ ESymbol Alpha "\989" ] ]+    , [ [ EText TextNormal "Gammad" ] , [ ESymbol Alpha "\988" ] ]+    , [ [ EText TextNormal "gap" ] , [ ESymbol Rel "\10886" ] ]+    , [ [ EText TextNormal "gbreve" ] , [ ESymbol Ord "\287" ] ]+    , [ [ EText TextNormal "Gbreve" ] , [ ESymbol Ord "\286" ] ]+    , [ [ EText TextNormal "Gcedil" ] , [ ESymbol Ord "\290" ] ]+    , [ [ EText TextNormal "gcirc" ] , [ ESymbol Ord "\285" ] ]+    , [ [ EText TextNormal "Gcirc" ] , [ ESymbol Ord "\284" ] ]+    , [ [ EText TextNormal "gcy" ] , [ ESymbol Ord "\1075" ] ]+    , [ [ EText TextNormal "Gcy" ] , [ ESymbol Ord "\1043" ] ]+    , [ [ EText TextNormal "gdot" ] , [ ESymbol Ord "\289" ] ]+    , [ [ EText TextNormal "Gdot" ] , [ ESymbol Ord "\288" ] ]+    , [ [ EText TextNormal "ge" ] , [ ESymbol Rel "\8805" ] ]+    , [ [ EText TextNormal "gE" ] , [ ESymbol Rel "\8807" ] ]+    , [ [ EText TextNormal "gel" ] , [ ESymbol Rel "\8923" ] ]+    , [ [ EText TextNormal "gEl" ] , [ ESymbol Rel "\10892" ] ]+    , [ [ EText TextNormal "geq" ] , [ ESymbol Rel "\8805" ] ]+    , [ [ EText TextNormal "geqq" ] , [ ESymbol Rel "\8807" ] ]+    , [ [ EText TextNormal "geqslant" ] , [ ESymbol Rel "\10878" ] ]+    , [ [ EText TextNormal "ges" ] , [ ESymbol Rel "\10878" ] ]+    , [ [ EText TextNormal "gescc" ] , [ ESymbol Rel "\10921" ] ]+    , [ [ EText TextNormal "gesdot" ] , [ ESymbol Rel "\10880" ] ]+    , [ [ EText TextNormal "gesdoto" ] , [ ESymbol Rel "\10882" ] ]+    , [ [ EText TextNormal "gesdotol" ] , [ ESymbol Rel "\10884" ] ]+    , [ [ EText TextNormal "gesl" ] , [ EMathOperator "\8923\65024" ] ]+    , [ [ EText TextNormal "gesles" ] , [ ESymbol Rel "\10900" ] ]+    , [ [ EText TextNormal "gfr" ] , [ ESymbol Alpha "\120100" ] ]+    , [ [ EText TextNormal "Gfr" ] , [ ESymbol Alpha "\120074" ] ]+    , [ [ EText TextNormal "gg" ] , [ ESymbol Rel "\8811" ] ]+    , [ [ EText TextNormal "Gg" ] , [ ESymbol Rel "\8921" ] ]+    , [ [ EText TextNormal "ggg" ] , [ ESymbol Rel "\8921" ] ]+    , [ [ EText TextNormal "gimel" ] , [ ESymbol Alpha "\8503" ] ]+    , [ [ EText TextNormal "gjcy" ] , [ ESymbol Ord "\1107" ] ]+    , [ [ EText TextNormal "GJcy" ] , [ ESymbol Ord "\1027" ] ]+    , [ [ EText TextNormal "gl" ] , [ ESymbol Rel "\8823" ] ]+    , [ [ EText TextNormal "gla" ] , [ ESymbol Rel "\10917" ] ]+    , [ [ EText TextNormal "glE" ] , [ ESymbol Rel "\10898" ] ]+    , [ [ EText TextNormal "glj" ] , [ ESymbol Rel "\10916" ] ]+    , [ [ EText TextNormal "gnap" ] , [ ESymbol Rel "\10890" ] ]+    , [ [ EText TextNormal "gnapprox" ] , [ ESymbol Rel "\10890" ] ]+    , [ [ EText TextNormal "gne" ] , [ ESymbol Rel "\10888" ] ]+    , [ [ EText TextNormal "gnE" ] , [ ESymbol Rel "\8809" ] ]+    , [ [ EText TextNormal "gneq" ] , [ ESymbol Rel "\10888" ] ]+    , [ [ EText TextNormal "gneqq" ] , [ ESymbol Rel "\8809" ] ]+    , [ [ EText TextNormal "gnsim" ] , [ ESymbol Rel "\8935" ] ]+    , [ [ EText TextNormal "gopf" ] , [ ESymbol Alpha "\120152" ] ]+    , [ [ EText TextNormal "Gopf" ] , [ ESymbol Alpha "\120126" ] ]+    , [ [ EText TextNormal "grave" ] , [ ESymbol Accent "`" ] ]+    , [ [ EText TextNormal "GreaterEqual" ] , [ ESymbol Rel "\8805" ] ]+    , [ [ EText TextNormal "GreaterEqualLess" ]+      , [ ESymbol Rel "\8923" ]+      ]+    , [ [ EText TextNormal "GreaterFullEqual" ]+      , [ ESymbol Rel "\8807" ]+      ]+    , [ [ EText TextNormal "GreaterGreater" ]+      , [ ESymbol Rel "\10914" ]+      ]+    , [ [ EText TextNormal "GreaterLess" ] , [ ESymbol Rel "\8823" ] ]+    , [ [ EText TextNormal "GreaterSlantEqual" ]+      , [ ESymbol Rel "\10878" ]+      ]+    , [ [ EText TextNormal "GreaterTilde" ] , [ ESymbol Rel "\8819" ] ]+    , [ [ EText TextNormal "gscr" ] , [ ESymbol Alpha "\8458" ] ]+    , [ [ EText TextNormal "Gscr" ] , [ ESymbol Alpha "\119970" ] ]+    , [ [ EText TextNormal "gsim" ] , [ ESymbol Rel "\8819" ] ]+    , [ [ EText TextNormal "gsime" ] , [ ESymbol Rel "\10894" ] ]+    , [ [ EText TextNormal "gsiml" ] , [ ESymbol Rel "\10896" ] ]+    , [ [ EText TextNormal "gt" ] , [ ESymbol Rel ">" ] ]+    , [ [ EText TextNormal "Gt" ] , [ ESymbol Rel "\8811" ] ]+    , [ [ EText TextNormal "gtcc" ] , [ ESymbol Rel "\10919" ] ]+    , [ [ EText TextNormal "gtcir" ] , [ ESymbol Rel "\10874" ] ]+    , [ [ EText TextNormal "gtdot" ] , [ ESymbol Rel "\8919" ] ]+    , [ [ EText TextNormal "gtlPar" ] , [ ESymbol Open "\10645" ] ]+    , [ [ EText TextNormal "gtquest" ] , [ ESymbol Rel "\10876" ] ]+    , [ [ EText TextNormal "gtrapprox" ] , [ ESymbol Rel "\10886" ] ]+    , [ [ EText TextNormal "gtrarr" ] , [ ESymbol Accent "\10616" ] ]+    , [ [ EText TextNormal "gtrdot" ] , [ ESymbol Rel "\8919" ] ]+    , [ [ EText TextNormal "gtreqless" ] , [ ESymbol Rel "\8923" ] ]+    , [ [ EText TextNormal "gtreqqless" ] , [ ESymbol Rel "\10892" ] ]+    , [ [ EText TextNormal "gtrless" ] , [ ESymbol Rel "\8823" ] ]+    , [ [ EText TextNormal "gtrsim" ] , [ ESymbol Rel "\8819" ] ]+    , [ [ EText TextNormal "gvertneqq" ]+      , [ EMathOperator "\8809\65024" ]+      ]+    , [ [ EText TextNormal "gvnE" ] , [ EMathOperator "\8809\65024" ] ]+    ]+]
+ test/reader/mml/genBvert1.test view
@@ -0,0 +1,68 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mo stretchy="false">(</mo> +  <mi>H</mi> +  <mo stretchy="false">)</mo> +  <mi>H</mi> +  <mo stretchy="false">[</mo> +  <mi>H</mi> +  <mo stretchy="false">]</mo> +  <mo stretchy="false">&#x230A;</mo> +  <mi>H</mi> +  <mo stretchy="false">&#x230B;</mo> +  <mi>H</mi> +  <mo stretchy="false">&#x2308;</mo> +  <mi>H</mi> +  <mo stretchy="false">&#x2309;</mo> +  <mi>H</mi> +  <mo stretchy="false">&#x2016;</mo> +  <mi>H</mi> +  <mo stretchy="false">{</mo> +  <mi>H</mi> +  <mo stretchy="false">}</mo> +  <mi>H</mi> +  <mo stretchy="false">&#x27E8;</mo> +  <mi>H</mi> +  <mo stretchy="false">&#x27E9;</mo> +  <mi>H</mi> +  <mi>&#x21C0;</mi> +  <mi>H</mi> +  <mo stretchy="false">&#x22F1;</mo> +  <mi>H</mi> +  <mo stretchy="false">&#x02D9;</mo> +  <mi>H</mi> </math>+>>> native+[ ESymbol Open "("+, EIdentifier "H"+, ESymbol Close ")"+, EIdentifier "H"+, ESymbol Open "["+, EIdentifier "H"+, ESymbol Close "]"+, ESymbol Open "\8970"+, EIdentifier "H"+, ESymbol Close "\8971"+, EIdentifier "H"+, ESymbol Open "\8968"+, EIdentifier "H"+, ESymbol Close "\8969"+, EIdentifier "H"+, ESymbol Close "\8214"+, EIdentifier "H"+, ESymbol Open "{"+, EIdentifier "H"+, ESymbol Close "}"+, EIdentifier "H"+, ESymbol Open "\10216"+, EIdentifier "H"+, ESymbol Close "\10217"+, EIdentifier "H"+, EIdentifier "\8640"+, EIdentifier "H"+, ESymbol Rel "\8945"+, EIdentifier "H"+, ESymbol Accent "\729"+, EIdentifier "H"+]
+ test/reader/mml/greek-bold-italic.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D71C;&#x1D71D;&#x1D71E;&#x1D71F;&#x1D720;&#x1D721;&#x1D722;&#x1D723;&#x1D724;&#x1D725;&#x1D726;&#x1D727;&#x1D728;&#x1D729;&#x1D72A;&#x1D72B;&#x1D72C;&#x1D72D;&#x1D72E;&#x1D72F;&#x1D730;&#x1D731;&#x1D732;&#x1D733;&#x1D734;&#x1D735;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D736;&#x1D737;&#x1D738;&#x1D739;&#x1D73A;&#x1D73B;&#x1D73C;&#x1D73D;&#x1D73E;&#x1D73F;&#x1D740;&#x1D741;&#x1D742;&#x1D743;&#x1D744;&#x1D745;&#x1D746;&#x1D747;&#x1D748;&#x1D749;&#x1D74A;&#x1D74B;&#x1D74C;&#x1D74D;&#x1D74E;&#x1D74F;&#x1D750;&#x1D751;&#x1D752;&#x1D753;&#x1D754;&#x1D755;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120604\120605\120606\120607\120608\120609\120610\120611\120612\120613\120614\120615\120616\120617\120618\120619\120620\120621\120622\120623\120624\120625\120626\120627\120628\120629"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120630\120631\120632\120633\120634\120635\120636\120637\120638\120639\120640\120641\120642\120643\120644\120645\120646\120647\120648\120649\120650\120651\120652\120653\120654\120655\120656\120657\120658\120659\120660\120661"+        ]+      ]+    ]+]
+ test/reader/mml/greek-bold.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D6A8;&#x1D6A9;&#x1D6AA;&#x1D6AB;&#x1D6AC;&#x1D6AD;&#x1D6AE;&#x1D6AF;&#x1D6B0;&#x1D6B1;&#x1D6B2;&#x1D6B3;&#x1D6B4;&#x1D6B5;&#x1D6B6;&#x1D6B7;&#x1D6B8;&#x1D6B9;&#x1D6BA;&#x1D6BB;&#x1D6BC;&#x1D6BD;&#x1D6BE;&#x1D6BF;&#x1D6C0;&#x1D6C1;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D6C2;&#x1D6C3;&#x1D6C4;&#x1D6C5;&#x1D6C6;&#x1D6C7;&#x1D6C8;&#x1D6C9;&#x1D6CA;&#x1D6CB;&#x1D6CC;&#x1D6CD;&#x1D6CE;&#x1D6CF;&#x1D6D0;&#x1D6D1;&#x1D6D2;&#x1D6D3;&#x1D6D4;&#x1D6D5;&#x1D6D6;&#x1D6D7;&#x1D6D8;&#x1D6D9;&#x1D6DA;&#x1D6DB;&#x1D6DC;&#x1D6DD;&#x1D6DE;&#x1D6DF;&#x1D6E0;&#x1D6E1;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120488\120489\120490\120491\120492\120493\120494\120495\120496\120497\120498\120499\120500\120501\120502\120503\120504\120505\120506\120507\120508\120509\120510\120511\120512\120513"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120514\120515\120516\120517\120518\120519\120520\120521\120522\120523\120524\120525\120526\120527\120528\120529\120530\120531\120532\120533\120534\120535\120536\120537\120538\120539\120540\120541\120542\120543\120544\120545"+        ]+      ]+    ]+]
+ test/reader/mml/greek-italic.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D6E2;&#x1D6E3;&#x1D6E4;&#x1D6E5;&#x1D6E6;&#x1D6E7;&#x1D6E8;&#x1D6E9;&#x1D6EA;&#x1D6EB;&#x1D6EC;&#x1D6ED;&#x1D6EE;&#x1D6EF;&#x1D6F0;&#x1D6F1;&#x1D6F2;&#x1D6F3;&#x1D6F4;&#x1D6F5;&#x1D6F6;&#x1D6F7;&#x1D6F8;&#x1D6F9;&#x1D6FA;&#x1D6FB;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D6FC;&#x1D6FD;&#x1D6FE;&#x1D6FF;&#x1D700;&#x1D701;&#x1D702;&#x1D703;&#x1D704;&#x1D705;&#x1D706;&#x1D707;&#x1D708;&#x1D709;&#x1D70A;&#x1D70B;&#x1D70C;&#x1D70D;&#x1D70E;&#x1D70F;&#x1D710;&#x1D711;&#x1D712;&#x1D713;&#x1D714;&#x1D715;&#x1D716;&#x1D717;&#x1D718;&#x1D719;&#x1D71A;&#x1D71B;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120546\120547\120548\120549\120550\120551\120552\120553\120554\120555\120556\120557\120558\120559\120560\120561\120562\120563\120564\120565\120566\120567\120568\120569\120570\120571"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120572\120573\120574\120575\120576\120577\120578\120579\120580\120581\120582\120583\120584\120585\120586\120587\120588\120589\120590\120591\120592\120593\120594\120595\120596\120597\120598\120599\120600\120601\120602\120603"+        ]+      ]+    ]+]
+ test/reader/mml/greek-sans-serif-bold-italic.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D790;&#x1D791;&#x1D792;&#x1D793;&#x1D794;&#x1D795;&#x1D796;&#x1D797;&#x1D798;&#x1D799;&#x1D79A;&#x1D79B;&#x1D79C;&#x1D79D;&#x1D79E;&#x1D79F;&#x1D7A0;&#x1D7A1;&#x1D7A2;&#x1D7A3;&#x1D7A4;&#x1D7A5;&#x1D7A6;&#x1D7A7;&#x1D7A8;&#x1D7A9;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D7AA;&#x1D7AB;&#x1D7AC;&#x1D7AD;&#x1D7AE;&#x1D7AF;&#x1D7B0;&#x1D7B1;&#x1D7B2;&#x1D7B3;&#x1D7B4;&#x1D7B5;&#x1D7B6;&#x1D7B7;&#x1D7B8;&#x1D7B9;&#x1D7BA;&#x1D7BB;&#x1D7BC;&#x1D7BD;&#x1D7BE;&#x1D7BF;&#x1D7C0;&#x1D7C1;&#x1D7C2;&#x1D7C3;&#x1D7C4;&#x1D7C5;&#x1D7C6;&#x1D7C7;&#x1D7C8;&#x1D7C9;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120720\120721\120722\120723\120724\120725\120726\120727\120728\120729\120730\120731\120732\120733\120734\120735\120736\120737\120738\120739\120740\120741\120742\120743\120744\120745"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120746\120747\120748\120749\120750\120751\120752\120753\120754\120755\120756\120757\120758\120759\120760\120761\120762\120763\120764\120765\120766\120767\120768\120769\120770\120771\120772\120773\120774\120775\120776\120777"+        ]+      ]+    ]+]
+ test/reader/mml/greek-sans-serif-bold.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D756;&#x1D757;&#x1D758;&#x1D759;&#x1D75A;&#x1D75B;&#x1D75C;&#x1D75D;&#x1D75E;&#x1D75F;&#x1D760;&#x1D761;&#x1D762;&#x1D763;&#x1D764;&#x1D765;&#x1D766;&#x1D767;&#x1D768;&#x1D769;&#x1D76A;&#x1D76B;&#x1D76C;&#x1D76D;&#x1D76E;&#x1D76F;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D770;&#x1D771;&#x1D772;&#x1D773;&#x1D774;&#x1D775;&#x1D776;&#x1D777;&#x1D778;&#x1D779;&#x1D77A;&#x1D77B;&#x1D77C;&#x1D77D;&#x1D77E;&#x1D77F;&#x1D780;&#x1D781;&#x1D782;&#x1D783;&#x1D784;&#x1D785;&#x1D786;&#x1D787;&#x1D788;&#x1D789;&#x1D78A;&#x1D78B;&#x1D78C;&#x1D78D;&#x1D78E;&#x1D78F;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120662\120663\120664\120665\120666\120667\120668\120669\120670\120671\120672\120673\120674\120675\120676\120677\120678\120679\120680\120681\120682\120683\120684\120685\120686\120687"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120688\120689\120690\120691\120692\120693\120694\120695\120696\120697\120698\120699\120700\120701\120702\120703\120704\120705\120706\120707\120708\120709\120710\120711\120712\120713\120714\120715\120716\120717\120718\120719"+        ]+      ]+    ]+]
+ test/reader/mml/h.test view
@@ -0,0 +1,380 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>Hacek</mtext> +      </mtd> +      <mtd>+        <mo>ˇ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hairsp</mtext> +      </mtd> +      <mtd>+        <mo> </mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>half</mtext> +      </mtd> +      <mtd>+        <mo>½</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hamilt</mtext> +      </mtd> +      <mtd>+        <mo>ℋ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hardcy</mtext> +      </mtd> +      <mtd>+        <mo>ъ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>HARDcy</mtext> +      </mtd> +      <mtd>+        <mo>Ъ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>harr</mtext> +      </mtd> +      <mtd>+        <mo>↔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hArr</mtext> +      </mtd> +      <mtd>+        <mo>⇔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>harrcir</mtext> +      </mtd> +      <mtd>+        <mo>⥈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>harrw</mtext> +      </mtd> +      <mtd>+        <mo>↭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Hat</mtext> +      </mtd> +      <mtd>+        <mo>^</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hbar</mtext> +      </mtd> +      <mtd>+        <mo>ℏ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hcirc</mtext> +      </mtd> +      <mtd>+        <mo>ĥ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Hcirc</mtext> +      </mtd> +      <mtd>+        <mo>Ĥ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hearts</mtext> +      </mtd> +      <mtd>+        <mo>♥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>heartsuit</mtext> +      </mtd> +      <mtd>+        <mo>♥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hellip</mtext> +      </mtd> +      <mtd>+        <mo>…</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hercon</mtext> +      </mtd> +      <mtd>+        <mo>⊹</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Hfr</mtext> +      </mtd> +      <mtd>+        <mo>ℌ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>HilbertSpace</mtext> +      </mtd> +      <mtd>+        <mo>ℋ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hksearow</mtext> +      </mtd> +      <mtd>+        <mo>⤥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hkswarow</mtext> +      </mtd> +      <mtd>+        <mo>⤦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hoarr</mtext> +      </mtd> +      <mtd>+        <mo>⇿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>homtht</mtext> +      </mtd> +      <mtd>+        <mo>∻</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hookleftarrow</mtext> +      </mtd> +      <mtd>+        <mo>↩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hookrightarrow</mtext> +      </mtd> +      <mtd>+        <mo>↪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Hopf</mtext> +      </mtd> +      <mtd>+        <mo>ℍ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>horbar</mtext> +      </mtd> +      <mtd>+        <mo>―</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>HorizontalLine</mtext> +      </mtd> +      <mtd>+        <mo>─</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Hscr</mtext> +      </mtd> +      <mtd>+        <mo>ℋ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hslash</mtext> +      </mtd> +      <mtd>+        <mo>ℏ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hstrok</mtext> +      </mtd> +      <mtd>+        <mo>ħ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Hstrok</mtext> +      </mtd> +      <mtd>+        <mo>Ħ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>HumpDownHump</mtext> +      </mtd> +      <mtd>+        <mo>≎</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>HumpEqual</mtext> +      </mtd> +      <mtd>+        <mo>≏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hybull</mtext> +      </mtd> +      <mtd>+        <mo>⁃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>hyphen</mtext> +      </mtd> +      <mtd>+        <mo>‐</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "Hacek" ] , [ ESymbol Accent "\711" ] ]+    , [ [ EText TextNormal "hairsp" ] , [ ESymbol Ord "\8202" ] ]+    , [ [ EText TextNormal "half" ] , [ ESymbol Ord "\189" ] ]+    , [ [ EText TextNormal "hamilt" ] , [ ESymbol Alpha "\8459" ] ]+    , [ [ EText TextNormal "hardcy" ] , [ ESymbol Ord "\1098" ] ]+    , [ [ EText TextNormal "HARDcy" ] , [ ESymbol Ord "\1066" ] ]+    , [ [ EText TextNormal "harr" ] , [ ESymbol Accent "\8596" ] ]+    , [ [ EText TextNormal "hArr" ] , [ ESymbol Accent "\8660" ] ]+    , [ [ EText TextNormal "harrcir" ] , [ ESymbol Accent "\10568" ] ]+    , [ [ EText TextNormal "harrw" ] , [ ESymbol Accent "\8621" ] ]+    , [ [ EText TextNormal "Hat" ] , [ ESymbol Ord "^" ] ]+    , [ [ EText TextNormal "hbar" ] , [ ESymbol Alpha "\8463" ] ]+    , [ [ EText TextNormal "hcirc" ] , [ ESymbol Ord "\293" ] ]+    , [ [ EText TextNormal "Hcirc" ] , [ ESymbol Ord "\292" ] ]+    , [ [ EText TextNormal "hearts" ] , [ ESymbol Ord "\9829" ] ]+    , [ [ EText TextNormal "heartsuit" ] , [ ESymbol Ord "\9829" ] ]+    , [ [ EText TextNormal "hellip" ] , [ ESymbol Ord "\8230" ] ]+    , [ [ EText TextNormal "hercon" ] , [ ESymbol Ord "\8889" ] ]+    , [ [ EText TextNormal "hfr" ] , [ ESymbol Alpha "\120101" ] ]+    , [ [ EText TextNormal "Hfr" ] , [ ESymbol Alpha "\8460" ] ]+    , [ [ EText TextNormal "HilbertSpace" ]+      , [ ESymbol Alpha "\8459" ]+      ]+    , [ [ EText TextNormal "hksearow" ] , [ ESymbol Rel "\10533" ] ]+    , [ [ EText TextNormal "hkswarow" ] , [ ESymbol Rel "\10534" ] ]+    , [ [ EText TextNormal "hoarr" ] , [ ESymbol Accent "\8703" ] ]+    , [ [ EText TextNormal "homtht" ] , [ ESymbol Rel "\8763" ] ]+    , [ [ EText TextNormal "hookleftarrow" ]+      , [ ESymbol Accent "\8617" ]+      ]+    , [ [ EText TextNormal "hookrightarrow" ]+      , [ ESymbol Accent "\8618" ]+      ]+    , [ [ EText TextNormal "hopf" ] , [ ESymbol Alpha "\120153" ] ]+    , [ [ EText TextNormal "Hopf" ] , [ ESymbol Alpha "\8461" ] ]+    , [ [ EText TextNormal "horbar" ] , [ ESymbol Ord "\8213" ] ]+    , [ [ EText TextNormal "HorizontalLine" ]+      , [ ESymbol Ord "\9472" ]+      ]+    , [ [ EText TextNormal "hscr" ] , [ ESymbol Alpha "\119997" ] ]+    , [ [ EText TextNormal "Hscr" ] , [ ESymbol Alpha "\8459" ] ]+    , [ [ EText TextNormal "hslash" ] , [ ESymbol Alpha "\8463" ] ]+    , [ [ EText TextNormal "hstrok" ] , [ ESymbol Ord "\295" ] ]+    , [ [ EText TextNormal "Hstrok" ] , [ ESymbol Ord "\294" ] ]+    , [ [ EText TextNormal "HumpDownHump" ] , [ ESymbol Rel "\8782" ] ]+    , [ [ EText TextNormal "HumpEqual" ] , [ ESymbol Rel "\8783" ] ]+    , [ [ EText TextNormal "hybull" ] , [ ESymbol Ord "\8259" ] ]+    , [ [ EText TextNormal "hyphen" ] , [ ESymbol Ord "\8208" ] ]+    ]+]
+ test/reader/mml/href1.test view
@@ -0,0 +1,30 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" href="http://en.wikipedia.org/wiki/Euler%27s_identity">+  <mrow>+    <mrow>+      <msup>+        <mi>&#8519;</mi> +        <mrow>+          <mi>&#8520;</mi> +          <mi>&#960;</mi> +        </mrow> +      </msup> +      <mo>+</mo> +      <mn>1</mn> +    </mrow> +    <mo>=</mo> +    <mn>0</mn> +  </mrow> </math>+>>> native+[ EGrouped+    [ ESuper+        (EIdentifier "\8519")+        (EGrouped [ EIdentifier "\8520" , EIdentifier "\960" ])+    , ESymbol Bin "+"+    , ENumber "1"+    ]+, ESymbol Rel "="+, ENumber "0"+]
+ test/reader/mml/href2.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mi href="http://en.wikipedia.org/wiki/Pi">&#x03c0;</mi> +  <mo>+</mo> +  <mn href="http://www.youtube.com/watch?v=pUlw3ACdN5s">1</mn> </math>+>>> native+[ EIdentifier "\960" , ESymbol Bin "+" , ENumber "1" ]
+ test/reader/mml/href3.test view
@@ -0,0 +1,51 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mrow>+    <mi>x</mi> +    <mo>=</mo> +    <mfrac href="http://mathworld.wolfram.com/QuadraticEquation.html">+      <mrow>+        <mo>&#x2212;</mo> +        <mi>b</mi> +        <mo>&#x00B1;</mo> +        <msqrt>+          <mrow>+            <msup>+              <mi>b</mi> +              <mn>2</mn> +            </msup> +            <mo>&#x2212;</mo> +            <mn>4</mn> +            <mi>a</mi> +            <mi>c</mi> +          </mrow> +        </msqrt> +      </mrow> +      <mrow>+        <mn>2</mn> +        <mi>a</mi> +      </mrow> +    </mfrac> +  </mrow> </math>+>>> native+[ EIdentifier "x"+, ESymbol Rel "="+, EFraction+    NormalFrac+    (EGrouped+       [ ESymbol Bin "\8722"+       , EIdentifier "b"+       , ESymbol Bin "\177"+       , ESqrt+           (EGrouped+              [ ESuper (EIdentifier "b") (ENumber "2")+              , ESymbol Bin "\8722"+              , ENumber "4"+              , EIdentifier "a"+              , EIdentifier "c"+              ])+       ])+    (EGrouped [ ENumber "2" , EIdentifier "a" ])+]
+ test/reader/mml/i.test view
@@ -0,0 +1,682 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>iacute</mtext> +      </mtd> +      <mtd>+        <mo>í</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Iacute</mtext> +      </mtd> +      <mtd>+        <mo>Í</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ic</mtext> +      </mtd> +      <mtd>+        <mo>⁣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>icirc</mtext> +      </mtd> +      <mtd>+        <mo>î</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Icirc</mtext> +      </mtd> +      <mtd>+        <mo>Î</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>icy</mtext> +      </mtd> +      <mtd>+        <mo>и</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Icy</mtext> +      </mtd> +      <mtd>+        <mo>И</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Idot</mtext> +      </mtd> +      <mtd>+        <mo>İ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iecy</mtext> +      </mtd> +      <mtd>+        <mo>е</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>IEcy</mtext> +      </mtd> +      <mtd>+        <mo>Е</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iexcl</mtext> +      </mtd> +      <mtd>+        <mo>¡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iff</mtext> +      </mtd> +      <mtd>+        <mo>⇔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ifr</mtext> +      </mtd> +      <mtd>+        <mo>𝔦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ifr</mtext> +      </mtd> +      <mtd>+        <mo>ℑ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>igrave</mtext> +      </mtd> +      <mtd>+        <mo>ì</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Igrave</mtext> +      </mtd> +      <mtd>+        <mo>Ì</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ii</mtext> +      </mtd> +      <mtd>+        <mo>ⅈ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iiiint</mtext> +      </mtd> +      <mtd>+        <mo>⨌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iiint</mtext> +      </mtd> +      <mtd>+        <mo>∭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iinfin</mtext> +      </mtd> +      <mtd>+        <mo>⧜</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iiota</mtext> +      </mtd> +      <mtd>+        <mo>℩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ijlig</mtext> +      </mtd> +      <mtd>+        <mo>ij</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>IJlig</mtext> +      </mtd> +      <mtd>+        <mo>IJ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Im</mtext> +      </mtd> +      <mtd>+        <mo>ℑ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>imacr</mtext> +      </mtd> +      <mtd>+        <mo>ī</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Imacr</mtext> +      </mtd> +      <mtd>+        <mo>Ī</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>image</mtext> +      </mtd> +      <mtd>+        <mo>ℑ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ImaginaryI</mtext> +      </mtd> +      <mtd>+        <mo>ⅈ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>imagline</mtext> +      </mtd> +      <mtd>+        <mo>ℐ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>imagpart</mtext> +      </mtd> +      <mtd>+        <mo>ℑ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>imath</mtext> +      </mtd> +      <mtd>+        <mo>ı</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>imof</mtext> +      </mtd> +      <mtd>+        <mo>⊷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>imped</mtext> +      </mtd> +      <mtd>+        <mo>Ƶ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Implies</mtext> +      </mtd> +      <mtd>+        <mo>⇒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>in</mtext> +      </mtd> +      <mtd>+        <mo>∈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>incare</mtext> +      </mtd> +      <mtd>+        <mo>℅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>infin</mtext> +      </mtd> +      <mtd>+        <mo>∞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>infintie</mtext> +      </mtd> +      <mtd>+        <mo>⧝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>inodot</mtext> +      </mtd> +      <mtd>+        <mo>ı</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>int</mtext> +      </mtd> +      <mtd>+        <mo>∫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Int</mtext> +      </mtd> +      <mtd>+        <mo>∬</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>intcal</mtext> +      </mtd> +      <mtd>+        <mo>⊺</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>integers</mtext> +      </mtd> +      <mtd>+        <mo>ℤ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Integral</mtext> +      </mtd> +      <mtd>+        <mo>∫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>intercal</mtext> +      </mtd> +      <mtd>+        <mo>⊺</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Intersection</mtext> +      </mtd> +      <mtd>+        <mo>⋂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>intlarhk</mtext> +      </mtd> +      <mtd>+        <mo>⨗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>intprod</mtext> +      </mtd> +      <mtd>+        <mo>⨼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>InvisibleComma</mtext> +      </mtd> +      <mtd>+        <mo>⁣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>InvisibleTimes</mtext> +      </mtd> +      <mtd>+        <mo>⁢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iocy</mtext> +      </mtd> +      <mtd>+        <mo>ё</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>IOcy</mtext> +      </mtd> +      <mtd>+        <mo>Ё</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iogon</mtext> +      </mtd> +      <mtd>+        <mo>į</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Iogon</mtext> +      </mtd> +      <mtd>+        <mo>Į</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Iopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iota</mtext> +      </mtd> +      <mtd>+        <mo>ι</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iprod</mtext> +      </mtd> +      <mtd>+        <mo>⨼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iquest</mtext> +      </mtd> +      <mtd>+        <mo>¿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Iscr</mtext> +      </mtd> +      <mtd>+        <mo>ℐ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>isin</mtext> +      </mtd> +      <mtd>+        <mo>∈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>isindot</mtext> +      </mtd> +      <mtd>+        <mo>⋵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>isinE</mtext> +      </mtd> +      <mtd>+        <mo>⋹</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>isins</mtext> +      </mtd> +      <mtd>+        <mo>⋴</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>isinsv</mtext> +      </mtd> +      <mtd>+        <mo>⋳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>isinv</mtext> +      </mtd> +      <mtd>+        <mo>∈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>it</mtext> +      </mtd> +      <mtd>+        <mo>⁢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>itilde</mtext> +      </mtd> +      <mtd>+        <mo>ĩ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Itilde</mtext> +      </mtd> +      <mtd>+        <mo>Ĩ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iukcy</mtext> +      </mtd> +      <mtd>+        <mo>і</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Iukcy</mtext> +      </mtd> +      <mtd>+        <mo>І</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>iuml</mtext> +      </mtd> +      <mtd>+        <mo>ï</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Iuml</mtext> +      </mtd> +      <mtd>+        <mo>Ï</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "iacute" ] , [ ESymbol Ord "\237" ] ]+    , [ [ EText TextNormal "Iacute" ] , [ ESymbol Ord "\205" ] ]+    , [ [ EText TextNormal "ic" ] , [ ESymbol Ord "\8291" ] ]+    , [ [ EText TextNormal "icirc" ] , [ ESymbol Ord "\238" ] ]+    , [ [ EText TextNormal "Icirc" ] , [ ESymbol Ord "\206" ] ]+    , [ [ EText TextNormal "icy" ] , [ ESymbol Ord "\1080" ] ]+    , [ [ EText TextNormal "Icy" ] , [ ESymbol Ord "\1048" ] ]+    , [ [ EText TextNormal "Idot" ] , [ ESymbol Ord "\304" ] ]+    , [ [ EText TextNormal "iecy" ] , [ ESymbol Ord "\1077" ] ]+    , [ [ EText TextNormal "IEcy" ] , [ ESymbol Ord "\1045" ] ]+    , [ [ EText TextNormal "iexcl" ] , [ ESymbol Ord "\161" ] ]+    , [ [ EText TextNormal "iff" ] , [ ESymbol Accent "\8660" ] ]+    , [ [ EText TextNormal "ifr" ] , [ ESymbol Alpha "\120102" ] ]+    , [ [ EText TextNormal "Ifr" ] , [ ESymbol Alpha "\8465" ] ]+    , [ [ EText TextNormal "igrave" ] , [ ESymbol Ord "\236" ] ]+    , [ [ EText TextNormal "Igrave" ] , [ ESymbol Ord "\204" ] ]+    , [ [ EText TextNormal "ii" ] , [ ESymbol Ord "\8520" ] ]+    , [ [ EText TextNormal "iiiint" ] , [ ESymbol Op "\10764" ] ]+    , [ [ EText TextNormal "iiint" ] , [ ESymbol Op "\8749" ] ]+    , [ [ EText TextNormal "iinfin" ] , [ ESymbol Ord "\10716" ] ]+    , [ [ EText TextNormal "iiota" ] , [ ESymbol Alpha "\8489" ] ]+    , [ [ EText TextNormal "ijlig" ] , [ ESymbol Ord "\307" ] ]+    , [ [ EText TextNormal "IJlig" ] , [ ESymbol Ord "\306" ] ]+    , [ [ EText TextNormal "Im" ] , [ ESymbol Alpha "\8465" ] ]+    , [ [ EText TextNormal "imacr" ] , [ ESymbol Ord "\299" ] ]+    , [ [ EText TextNormal "Imacr" ] , [ ESymbol Ord "\298" ] ]+    , [ [ EText TextNormal "image" ] , [ ESymbol Alpha "\8465" ] ]+    , [ [ EText TextNormal "ImaginaryI" ] , [ ESymbol Ord "\8520" ] ]+    , [ [ EText TextNormal "imagline" ] , [ ESymbol Alpha "\8464" ] ]+    , [ [ EText TextNormal "imagpart" ] , [ ESymbol Alpha "\8465" ] ]+    , [ [ EText TextNormal "imath" ] , [ ESymbol Alpha "\305" ] ]+    , [ [ EText TextNormal "imof" ] , [ ESymbol Rel "\8887" ] ]+    , [ [ EText TextNormal "imped" ] , [ ESymbol Ord "\437" ] ]+    , [ [ EText TextNormal "Implies" ] , [ ESymbol Accent "\8658" ] ]+    , [ [ EText TextNormal "in" ] , [ ESymbol Rel "\8712" ] ]+    , [ [ EText TextNormal "incare" ] , [ ESymbol Ord "\8453" ] ]+    , [ [ EText TextNormal "infin" ] , [ ESymbol Ord "\8734" ] ]+    , [ [ EText TextNormal "infintie" ] , [ ESymbol Ord "\10717" ] ]+    , [ [ EText TextNormal "inodot" ] , [ ESymbol Alpha "\305" ] ]+    , [ [ EText TextNormal "int" ] , [ ESymbol Op "\8747" ] ]+    , [ [ EText TextNormal "Int" ] , [ ESymbol Op "\8748" ] ]+    , [ [ EText TextNormal "intcal" ] , [ ESymbol Bin "\8890" ] ]+    , [ [ EText TextNormal "integers" ] , [ ESymbol Alpha "\8484" ] ]+    , [ [ EText TextNormal "Integral" ] , [ ESymbol Op "\8747" ] ]+    , [ [ EText TextNormal "intercal" ] , [ ESymbol Bin "\8890" ] ]+    , [ [ EText TextNormal "Intersection" ] , [ ESymbol Op "\8898" ] ]+    , [ [ EText TextNormal "intlarhk" ] , [ ESymbol Op "\10775" ] ]+    , [ [ EText TextNormal "intprod" ] , [ ESymbol Bin "\10812" ] ]+    , [ [ EText TextNormal "InvisibleComma" ]+      , [ ESymbol Ord "\8291" ]+      ]+    , [ [ EText TextNormal "InvisibleTimes" ]+      , [ ESymbol Ord "\8290" ]+      ]+    , [ [ EText TextNormal "iocy" ] , [ ESymbol Ord "\1105" ] ]+    , [ [ EText TextNormal "IOcy" ] , [ ESymbol Ord "\1025" ] ]+    , [ [ EText TextNormal "iogon" ] , [ ESymbol Ord "\303" ] ]+    , [ [ EText TextNormal "Iogon" ] , [ ESymbol Ord "\302" ] ]+    , [ [ EText TextNormal "iopf" ] , [ ESymbol Alpha "\120154" ] ]+    , [ [ EText TextNormal "Iopf" ] , [ ESymbol Alpha "\120128" ] ]+    , [ [ EText TextNormal "iota" ] , [ ESymbol Alpha "\953" ] ]+    , [ [ EText TextNormal "iprod" ] , [ ESymbol Bin "\10812" ] ]+    , [ [ EText TextNormal "iquest" ] , [ ESymbol Ord "\191" ] ]+    , [ [ EText TextNormal "iscr" ] , [ ESymbol Alpha "\119998" ] ]+    , [ [ EText TextNormal "Iscr" ] , [ ESymbol Alpha "\8464" ] ]+    , [ [ EText TextNormal "isin" ] , [ ESymbol Rel "\8712" ] ]+    , [ [ EText TextNormal "isindot" ] , [ ESymbol Rel "\8949" ] ]+    , [ [ EText TextNormal "isinE" ] , [ ESymbol Rel "\8953" ] ]+    , [ [ EText TextNormal "isins" ] , [ ESymbol Rel "\8948" ] ]+    , [ [ EText TextNormal "isinsv" ] , [ ESymbol Rel "\8947" ] ]+    , [ [ EText TextNormal "isinv" ] , [ ESymbol Rel "\8712" ] ]+    , [ [ EText TextNormal "it" ] , [ ESymbol Ord "\8290" ] ]+    , [ [ EText TextNormal "itilde" ] , [ ESymbol Ord "\297" ] ]+    , [ [ EText TextNormal "Itilde" ] , [ ESymbol Ord "\296" ] ]+    , [ [ EText TextNormal "iukcy" ] , [ ESymbol Ord "\1110" ] ]+    , [ [ EText TextNormal "Iukcy" ] , [ ESymbol Ord "\1030" ] ]+    , [ [ EText TextNormal "iuml" ] , [ ESymbol Ord "\239" ] ]+    , [ [ EText TextNormal "Iuml" ] , [ ESymbol Ord "\207" ] ]+    ]+]
+ test/reader/mml/id1.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mn id="number">2</mn> +  <mo id="operator">+</mo> +  <mi id="identifier">x</mi> </math>+>>> native+[ ENumber "2" , ESymbol Bin "+" , EIdentifier "x" ]
+ test/reader/mml/int1.test view
@@ -0,0 +1,22 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mo>&#x222B;</mo> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> </math>+>>> native+[ ESymbol Op "\8747"+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int10.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <munderover>+      <mo>&#x222B;</mo> +      <mn>0</mn> +      <mn>1</mn> +    </munderover> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +  </mstyle> </math>+>>> native+[ EUnderover False (ESymbol Op "\8747") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int2.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mo>&#x222B;</mo> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mfrac>+      <mi>x</mi> +      <mn>2</mn> +    </mfrac> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> </math>+>>> native+[ ESymbol Op "\8747"+, EIdentifier "f"+, EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "x") (ENumber "2")) ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int3.test view
@@ -0,0 +1,26 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <msubsup>+    <mo>&#x222B;</mo> +    <mn>0</mn> +    <mn>1</mn> +  </msubsup> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> </math>+>>> native+[ ESubsup (ESymbol Op "\8747") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int4.test view
@@ -0,0 +1,32 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <msubsup>+    <mo>&#x222B;</mo> +    <mn>0</mn> +    <mn>1</mn> +  </msubsup> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mfrac>+      <mi>x</mi> +      <mn>2</mn> +    </mfrac> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> </math>+>>> native+[ ESubsup (ESymbol Op "\8747") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "x") (ENumber "2")) ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int5.test view
@@ -0,0 +1,24 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <mo>&#x222B;</mo> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +  </mstyle> </math>+>>> native+[ ESymbol Op "\8747"+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int6.test view
@@ -0,0 +1,30 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <mo>&#x222B;</mo> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mfrac>+        <mi>x</mi> +        <mn>2</mn> +      </mfrac> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +  </mstyle> </math>+>>> native+[ ESymbol Op "\8747"+, EIdentifier "f"+, EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "x") (ENumber "2")) ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int7.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <msubsup>+      <mo>&#x222B;</mo> +      <mn>0</mn> +      <mn>1</mn> +    </msubsup> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +  </mstyle> </math>+>>> native+[ ESubsup (ESymbol Op "\8747") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int8.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <msubsup>+      <mo>&#x222B;</mo> +      <mn>0</mn> +      <mn>1</mn> +    </msubsup> +    <mi>f</mi> +    <mrow>+      <mo>(</mo> +      <mfrac>+        <mi>x</mi> +        <mn>2</mn> +      </mfrac> +      <mo>)</mo> +    </mrow> +    <mtext>&#x200A;</mtext> +    <mo>&#x2146;</mo> +    <mi>x</mi> +  </mstyle> </math>+>>> native+[ ESubsup (ESymbol Op "\8747") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "x") (ENumber "2")) ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/int9.test view
@@ -0,0 +1,26 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <munderover>+    <mo>&#x222B;</mo> +    <mn>0</mn> +    <mn>1</mn> +  </munderover> +  <mi>f</mi> +  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> +  <mtext>&#x200A;</mtext> +  <mo>&#x2146;</mo> +  <mi>x</mi> </math>+>>> native+[ EUnderover False (ESymbol Op "\8747") (ENumber "0") (ENumber "1")+, EIdentifier "f"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESpace (1 % 9)+, ESymbol Ord "\8518"+, EIdentifier "x"+]
+ test/reader/mml/intDispStyle.test view
@@ -0,0 +1,278 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnlines="solid" rowlines="solid">+    <mtr>+      <mtd></mtd> +      <mtd>+        <mtext>ds=true</mtext> +      </mtd> +      <mtd>+        <mtext>ds=false</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>stretch=t, large=t</mtext> +      </mtd> +      <mtd>+        <mstyle fontsize="150%" displaystyle="true">+          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mstyle> +      </mtd> +      <mtd>+        <mstyle fontsize="150%" displaystyle="false">+          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>stretch=f, large=t</mtext> +      </mtd> +      <mtd>+        <mstyle fontsize="150%" displaystyle="true">+          <mrow>+            <mo stretchy="false" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="false" largeop="true">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mstyle> +      </mtd> +      <mtd>+        <mstyle fontsize="150%" displaystyle="false">+          <mrow>+            <mo stretchy="false" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="false" largeop="true">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>stretch=t, large=f</mtext> +      </mtd> +      <mtd>+        <mstyle fontsize="150%" displaystyle="true">+          <mrow>+            <mo stretchy="true" largeop="false">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="true" largeop="false">&#x222B;</mo> +            <mfrac>+              <mi>A</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="true" largeop="false">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mstyle> +      </mtd> +      <mtd>+        <mstyle fontsize="150%" displaystyle="false">+          <mrow>+            <mo stretchy="true" largeop="false">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="true" largeop="false">&#x222B;</mo> +            <mfrac>+              <mi>A</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="true" largeop="false">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>stretch=f, large=f</mtext> +      </mtd> +      <mtd>+        <mstyle fontsize="150%" displaystyle="true">+          <mrow>+            <mo stretchy="false" largeop="false">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="false" largeop="false">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mstyle> +      </mtd> +      <mtd>+        <mstyle fontsize="150%" displaystyle="false">+          <mrow>+            <mo stretchy="false" largeop="false">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mn>5</mn> +            </mfrac> +          </mrow> +          <mo>=</mo> +          <mrow>+            <mo stretchy="false" largeop="false">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter ]+    [ [ []+      , [ EText TextNormal "ds=true" ]+      , [ EText TextNormal "ds=false" ]+      ]+    , [ [ EText TextNormal "stretch=t, large=t" ]+      , [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "x") (ENumber "5")) ]+            , ESymbol Rel "="+            , EDelimited "\8747" "" [ Right (EIdentifier "x") ]+            ]+        ]+      , [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "x") (ENumber "5")) ]+            , ESymbol Rel "="+            , EDelimited "\8747" "" [ Right (EIdentifier "x") ]+            ]+        ]+      ]+    , [ [ EText TextNormal "stretch=f, large=t" ]+      , [ EGrouped+            [ EGrouped+                [ ESymbol Op "\8747"+                , EFraction NormalFrac (EIdentifier "x") (ENumber "5")+                ]+            , ESymbol Rel "="+            , EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ]+            ]+        ]+      , [ EGrouped+            [ EGrouped+                [ ESymbol Op "\8747"+                , EFraction NormalFrac (EIdentifier "x") (ENumber "5")+                ]+            , ESymbol Rel "="+            , EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ]+            ]+        ]+      ]+    , [ [ EText TextNormal "stretch=t, large=f" ]+      , [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "x") (ENumber "5")) ]+            , ESymbol Rel "="+            , EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "A") (ENumber "5")) ]+            , ESymbol Rel "="+            , EDelimited "\8747" "" [ Right (EIdentifier "x") ]+            ]+        ]+      , [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "x") (ENumber "5")) ]+            , ESymbol Rel "="+            , EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "A") (ENumber "5")) ]+            , ESymbol Rel "="+            , EDelimited "\8747" "" [ Right (EIdentifier "x") ]+            ]+        ]+      ]+    , [ [ EText TextNormal "stretch=f, large=f" ]+      , [ EGrouped+            [ EGrouped+                [ ESymbol Op "\8747"+                , EFraction NormalFrac (EIdentifier "x") (ENumber "5")+                ]+            , ESymbol Rel "="+            , EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ]+            ]+        ]+      , [ EGrouped+            [ EGrouped+                [ ESymbol Op "\8747"+                , EFraction NormalFrac (EIdentifier "x") (ENumber "5")+                ]+            , ESymbol Rel "="+            , EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ]+            ]+        ]+      ]+    ]+]
+ test/reader/mml/intNested3.test view
@@ -0,0 +1,345 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable displaystyle="true">+    <mtr>+      <mtd>+        <mtext>single integral</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo stretchy="false" largeop="true">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +        <mrow>+          <mo stretchy="false" largeop="false">&#x222B;</mo> +          <mi>M</mi> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>o</mi> +          </mfrac> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>A</mi> +            <mi>o</mi> +          </mfrac> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>A</mi> +          </mfrac> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>A</mi> +            <mi>M</mi> +          </mfrac> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>.</mi> +            <mi>''</mi> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>double integral</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mi>M</mi> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>o</mi> +          </mfrac> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>A</mi> +            <mi>o</mi> +          </mfrac> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>A</mi> +          </mfrac> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>A</mi> +            <mi>M</mi> +          </mfrac> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mfrac>+            <mi>.</mi> +            <mi>''</mi> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>double nested integral</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mi>x</mi> +          </mrow> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mi>M</mi> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mi>o</mi> +            </mfrac> +          </mrow> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>A</mi> +              <mi>o</mi> +            </mfrac> +          </mrow> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>x</mi> +              <mi>A</mi> +            </mfrac> +          </mrow> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>A</mi> +              <mi>M</mi> +            </mfrac> +          </mrow> +        </mrow> +        <mrow>+          <mo stretchy="true" largeop="true">&#x222B;</mo> +          <mrow>+            <mo stretchy="true" largeop="true">&#x222B;</mo> +            <mfrac>+              <mi>.</mi> +              <mi>''</mi> +            </mfrac> +          </mrow> +        </mrow> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "single integral" ]+      , [ EGrouped+            [ EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ]+            , EGrouped [ ESymbol Op "\8747" , EIdentifier "M" ]+            , EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "o"))+                ]+            , EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "A") (EIdentifier "o"))+                ]+            , EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "A"))+                ]+            , EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier "A") (EIdentifier "M"))+                ]+            , EDelimited+                "\8747"+                ""+                [ Right (EFraction NormalFrac (EIdentifier ".") (EIdentifier "''"))+                ]+            ]+        ]+      ]+    , [ [ EText TextNormal "double integral" ]+      , [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right (EDelimited "\8747" "" [ Right (EIdentifier "x") ]) ]+            , EDelimited+                "\8747"+                ""+                [ Right (EDelimited "\8747" "" [ Right (EIdentifier "M") ]) ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "o"))+                       ])+                ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier "A") (EIdentifier "o"))+                       ])+                ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "A"))+                       ])+                ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier "A") (EIdentifier "M"))+                       ])+                ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier ".") (EIdentifier "''"))+                       ])+                ]+            ]+        ]+      ]+    , [ [ EText TextNormal "double nested integral" ]+      , [ EGrouped+            [ EDelimited+                "\8747"+                ""+                [ Right (EDelimited "\8747" "" [ Right (EIdentifier "x") ]) ]+            , EDelimited+                "\8747"+                ""+                [ Right (EDelimited "\8747" "" [ Right (EIdentifier "M") ]) ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "o"))+                       ])+                ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier "A") (EIdentifier "o"))+                       ])+                ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "A"))+                       ])+                ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier "A") (EIdentifier "M"))+                       ])+                ]+            , EDelimited+                "\8747"+                ""+                [ Right+                    (EDelimited+                       "\8747"+                       ""+                       [ Right (EFraction NormalFrac (EIdentifier ".") (EIdentifier "''"))+                       ])+                ]+            ]+        ]+      ]+    ]+]
+ test/reader/mml/intSize1.test view
@@ -0,0 +1,76 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo stretchy="false" largeop="true">&#x222B;</mo> +    <mi>x</mi> +  </mrow> +  <mrow>+    <mo stretchy="false" largeop="false">&#x222B;</mo> +    <mi>M</mi> +  </mrow> +  <mrow>+    <mo stretchy="true" largeop="true">&#x222B;</mo> +    <mfrac>+      <mi>x</mi> +      <mi>o</mi> +    </mfrac> +  </mrow> +  <mrow>+    <mo stretchy="true" largeop="true">&#x222B;</mo> +    <mfrac>+      <mi>A</mi> +      <mi>o</mi> +    </mfrac> +  </mrow> +  <mrow>+    <mo stretchy="true" largeop="true">&#x222B;</mo> +    <mfrac>+      <mi>x</mi> +      <mi>A</mi> +    </mfrac> +  </mrow> +  <mrow>+    <mo stretchy="true" largeop="true">&#x222B;</mo> +    <mfrac>+      <mi>A</mi> +      <mi>M</mi> +    </mfrac> +  </mrow> +  <mrow>+    <mo stretchy="true" largeop="true">&#x222B;</mo> +    <mfrac>+      <mi>.</mi> +      <mi>''</mi> +    </mfrac> +  </mrow> </math>+>>> native+[ EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ]+, EGrouped [ ESymbol Op "\8747" , EIdentifier "M" ]+, EDelimited+    "\8747"+    ""+    [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "o"))+    ]+, EDelimited+    "\8747"+    ""+    [ Right (EFraction NormalFrac (EIdentifier "A") (EIdentifier "o"))+    ]+, EDelimited+    "\8747"+    ""+    [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "A"))+    ]+, EDelimited+    "\8747"+    ""+    [ Right (EFraction NormalFrac (EIdentifier "A") (EIdentifier "M"))+    ]+, EDelimited+    "\8747"+    ""+    [ Right (EFraction NormalFrac (EIdentifier ".") (EIdentifier "''"))+    ]+]
+ test/reader/mml/intSize2.test view
@@ -0,0 +1,235 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd></mtd> +      <mtd></mtd> +      <mtd>+        <mtext>symm</mtext> +      </mtd> +      <mtd>+        <mtext>stretch</mtext> +      </mtd> +      <mtd>+        <mtext>symm/stretch</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>small op</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="false" stretchy="false" symmetric="false">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="false" stretchy="false" symmetric="true">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="false" stretchy="true" symmetric="false">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="false" stretchy="true" symmetric="true">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>large op</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="true" stretchy="false" symmetric="false">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="true" stretchy="false" symmetric="true">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="true" stretchy="true" symmetric="false">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="true" stretchy="true" symmetric="true">&#x222B;</mo> +          <mi>x</mi> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>small op</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="false" stretchy="false" symmetric="false">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="false" stretchy="false" symmetric="true">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="false" stretchy="true" symmetric="false">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="false" stretchy="true" symmetric="true">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>large op</mtext> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="true" stretchy="false" symmetric="false">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="true" stretchy="false" symmetric="true">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="true" stretchy="true" symmetric="false">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +        </mrow> +      </mtd> +      <mtd>+        <mrow>+          <mo largeop="true" stretchy="true" symmetric="true">&#x222B;</mo> +          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +        </mrow> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ []+      , []+      , [ EText TextNormal "symm" ]+      , [ EText TextNormal "stretch" ]+      , [ EText TextNormal "symm/stretch" ]+      ]+    , [ [ EText TextNormal "small op" ]+      , [ EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ] ]+      , [ EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ] ]+      , [ EDelimited "\8747" "" [ Right (EIdentifier "x") ] ]+      , [ EDelimited "\8747" "" [ Right (EIdentifier "x") ] ]+      ]+    , [ [ EText TextNormal "large op" ]+      , [ EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ] ]+      , [ EGrouped [ ESymbol Op "\8747" , EIdentifier "x" ] ]+      , [ EDelimited "\8747" "" [ Right (EIdentifier "x") ] ]+      , [ EDelimited "\8747" "" [ Right (EIdentifier "x") ] ]+      ]+    , [ [ EText TextNormal "small op" ]+      , [ EGrouped+            [ ESymbol Op "\8747"+            , EFraction NormalFrac (EIdentifier "x") (EIdentifier "y")+            ]+        ]+      , [ EGrouped+            [ ESymbol Op "\8747"+            , EFraction NormalFrac (EIdentifier "x") (EIdentifier "y")+            ]+        ]+      , [ EDelimited+            "\8747"+            ""+            [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "y"))+            ]+        ]+      , [ EDelimited+            "\8747"+            ""+            [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "y"))+            ]+        ]+      ]+    , [ [ EText TextNormal "large op" ]+      , [ EGrouped+            [ ESymbol Op "\8747"+            , EFraction NormalFrac (EIdentifier "x") (EIdentifier "y")+            ]+        ]+      , [ EGrouped+            [ ESymbol Op "\8747"+            , EFraction NormalFrac (EIdentifier "x") (EIdentifier "y")+            ]+        ]+      , [ EDelimited+            "\8747"+            ""+            [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "y"))+            ]+        ]+      , [ EDelimited+            "\8747"+            ""+            [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "y"))+            ]+        ]+      ]+    ]+]
+ test/reader/mml/invChars.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mn></mn> +  <mo></mo> +  <mi></mi> +  <mo>&#x2062;</mo> +  <mn>&#x0009;</mn> +  <mo>&#x2061;</mo> +  <mtext> &#x200B;</mtext> </math>+>>> native+[ ENumber ""+, EMathOperator ""+, EIdentifier ""+, ESymbol Ord "\8290"+, ENumber ""+, ESymbol Ord "\8289"+, ESpace (0 % 1)+]
+ test/reader/mml/j.test view
@@ -0,0 +1,147 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>jcirc</mtext> +      </mtd> +      <mtd>+        <mo>ĵ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Jcirc</mtext> +      </mtd> +      <mtd>+        <mo>Ĵ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>jcy</mtext> +      </mtd> +      <mtd>+        <mo>й</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Jcy</mtext> +      </mtd> +      <mtd>+        <mo>Й</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>jfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Jfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>jmath</mtext> +      </mtd> +      <mtd>+        <mo>ȷ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>jopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Jopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>jscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Jscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>jsercy</mtext> +      </mtd> +      <mtd>+        <mo>ј</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Jsercy</mtext> +      </mtd> +      <mtd>+        <mo>Ј</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>jukcy</mtext> +      </mtd> +      <mtd>+        <mo>є</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Jukcy</mtext> +      </mtd> +      <mtd>+        <mo>Є</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "jcirc" ] , [ ESymbol Ord "\309" ] ]+    , [ [ EText TextNormal "Jcirc" ] , [ ESymbol Ord "\308" ] ]+    , [ [ EText TextNormal "jcy" ] , [ ESymbol Ord "\1081" ] ]+    , [ [ EText TextNormal "Jcy" ] , [ ESymbol Ord "\1049" ] ]+    , [ [ EText TextNormal "jfr" ] , [ ESymbol Alpha "\120103" ] ]+    , [ [ EText TextNormal "Jfr" ] , [ ESymbol Alpha "\120077" ] ]+    , [ [ EText TextNormal "jmath" ] , [ ESymbol Alpha "\567" ] ]+    , [ [ EText TextNormal "jopf" ] , [ ESymbol Alpha "\120155" ] ]+    , [ [ EText TextNormal "Jopf" ] , [ ESymbol Alpha "\120129" ] ]+    , [ [ EText TextNormal "jscr" ] , [ ESymbol Alpha "\119999" ] ]+    , [ [ EText TextNormal "Jscr" ] , [ ESymbol Alpha "\119973" ] ]+    , [ [ EText TextNormal "jsercy" ] , [ ESymbol Ord "\1112" ] ]+    , [ [ EText TextNormal "Jsercy" ] , [ ESymbol Ord "\1032" ] ]+    , [ [ EText TextNormal "jukcy" ] , [ ESymbol Ord "\1108" ] ]+    , [ [ EText TextNormal "Jukcy" ] , [ ESymbol Ord "\1028" ] ]+    ]+]
+ test/reader/mml/k.test view
@@ -0,0 +1,165 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>kappa</mtext> +      </mtd> +      <mtd>+        <mo>κ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>kappav</mtext> +      </mtd> +      <mtd>+        <mo>ϰ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>kcedil</mtext> +      </mtd> +      <mtd>+        <mo>ķ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Kcedil</mtext> +      </mtd> +      <mtd>+        <mo>Ķ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>kcy</mtext> +      </mtd> +      <mtd>+        <mo>к</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Kcy</mtext> +      </mtd> +      <mtd>+        <mo>К</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>kfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Kfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔎</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>kgreen</mtext> +      </mtd> +      <mtd>+        <mo>ĸ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>khcy</mtext> +      </mtd> +      <mtd>+        <mo>х</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>KHcy</mtext> +      </mtd> +      <mtd>+        <mo>Х</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>kjcy</mtext> +      </mtd> +      <mtd>+        <mo>ќ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>KJcy</mtext> +      </mtd> +      <mtd>+        <mo>Ќ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>kopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕜</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Kopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>kscr</mtext> +      </mtd> +      <mtd>+        <mo>𝓀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Kscr</mtext> +      </mtd> +      <mtd>+        <mo>𝒦</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "kappa" ] , [ ESymbol Alpha "\954" ] ]+    , [ [ EText TextNormal "kappav" ] , [ ESymbol Alpha "\1008" ] ]+    , [ [ EText TextNormal "kcedil" ] , [ ESymbol Ord "\311" ] ]+    , [ [ EText TextNormal "Kcedil" ] , [ ESymbol Ord "\310" ] ]+    , [ [ EText TextNormal "kcy" ] , [ ESymbol Ord "\1082" ] ]+    , [ [ EText TextNormal "Kcy" ] , [ ESymbol Ord "\1050" ] ]+    , [ [ EText TextNormal "kfr" ] , [ ESymbol Alpha "\120104" ] ]+    , [ [ EText TextNormal "Kfr" ] , [ ESymbol Alpha "\120078" ] ]+    , [ [ EText TextNormal "kgreen" ] , [ ESymbol Ord "\312" ] ]+    , [ [ EText TextNormal "khcy" ] , [ ESymbol Ord "\1093" ] ]+    , [ [ EText TextNormal "KHcy" ] , [ ESymbol Ord "\1061" ] ]+    , [ [ EText TextNormal "kjcy" ] , [ ESymbol Ord "\1116" ] ]+    , [ [ EText TextNormal "KJcy" ] , [ ESymbol Ord "\1036" ] ]+    , [ [ EText TextNormal "kopf" ] , [ ESymbol Alpha "\120156" ] ]+    , [ [ EText TextNormal "Kopf" ] , [ ESymbol Alpha "\120130" ] ]+    , [ [ EText TextNormal "kscr" ] , [ ESymbol Alpha "\120000" ] ]+    , [ [ EText TextNormal "Kscr" ] , [ ESymbol Alpha "\119974" ] ]+    ]+]
+ test/reader/mml/l.test view
@@ -0,0 +1,1980 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>lAarr</mtext> +      </mtd> +      <mtd>+        <mo>⇚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lacute</mtext> +      </mtd> +      <mtd>+        <mo>ĺ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lacute</mtext> +      </mtd> +      <mtd>+        <mo>Ĺ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>laemptyv</mtext> +      </mtd> +      <mtd>+        <mo>⦴</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lagran</mtext> +      </mtd> +      <mtd>+        <mo>ℒ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lambda</mtext> +      </mtd> +      <mtd>+        <mo>λ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lambda</mtext> +      </mtd> +      <mtd>+        <mo>Λ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lang</mtext> +      </mtd> +      <mtd>+        <mo>⟨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lang</mtext> +      </mtd> +      <mtd>+        <mo>⟪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>langd</mtext> +      </mtd> +      <mtd>+        <mo>⦑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>langle</mtext> +      </mtd> +      <mtd>+        <mo>⟨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lap</mtext> +      </mtd> +      <mtd>+        <mo>⪅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Laplacetrf</mtext> +      </mtd> +      <mtd>+        <mo>ℒ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>laquo</mtext> +      </mtd> +      <mtd>+        <mo>«</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larr</mtext> +      </mtd> +      <mtd>+        <mo>←</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lArr</mtext> +      </mtd> +      <mtd>+        <mo>⇐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Larr</mtext> +      </mtd> +      <mtd>+        <mo>↞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larrb</mtext> +      </mtd> +      <mtd>+        <mo>⇤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larrbfs</mtext> +      </mtd> +      <mtd>+        <mo>⤟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larrfs</mtext> +      </mtd> +      <mtd>+        <mo>⤝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larrhk</mtext> +      </mtd> +      <mtd>+        <mo>↩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larrlp</mtext> +      </mtd> +      <mtd>+        <mo>↫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larrpl</mtext> +      </mtd> +      <mtd>+        <mo>⤹</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larrsim</mtext> +      </mtd> +      <mtd>+        <mo>⥳</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>larrtl</mtext> +      </mtd> +      <mtd>+        <mo>↢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lat</mtext> +      </mtd> +      <mtd>+        <mo>⪫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>latail</mtext> +      </mtd> +      <mtd>+        <mo>⤙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lAtail</mtext> +      </mtd> +      <mtd>+        <mo>⤛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>late</mtext> +      </mtd> +      <mtd>+        <mo>⪭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lates</mtext> +      </mtd> +      <mtd>+        <mo>⪭︀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lbarr</mtext> +      </mtd> +      <mtd>+        <mo>⤌</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lBarr</mtext> +      </mtd> +      <mtd>+        <mo>⤎</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lbbrk</mtext> +      </mtd> +      <mtd>+        <mo>❲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lbrace</mtext> +      </mtd> +      <mtd>+        <mo>{</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lbrack</mtext> +      </mtd> +      <mtd>+        <mo>[</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lbrke</mtext> +      </mtd> +      <mtd>+        <mo>⦋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lbrksld</mtext> +      </mtd> +      <mtd>+        <mo>⦏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lbrkslu</mtext> +      </mtd> +      <mtd>+        <mo>⦍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lcaron</mtext> +      </mtd> +      <mtd>+        <mo>ľ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lcaron</mtext> +      </mtd> +      <mtd>+        <mo>Ľ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lcedil</mtext> +      </mtd> +      <mtd>+        <mo>ļ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lcedil</mtext> +      </mtd> +      <mtd>+        <mo>Ļ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lceil</mtext> +      </mtd> +      <mtd>+        <mo>⌈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lcub</mtext> +      </mtd> +      <mtd>+        <mo>{</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lcy</mtext> +      </mtd> +      <mtd>+        <mo>л</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lcy</mtext> +      </mtd> +      <mtd>+        <mo>Л</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ldca</mtext> +      </mtd> +      <mtd>+        <mo>⤶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ldquo</mtext> +      </mtd> +      <mtd>+        <mo>“</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ldquor</mtext> +      </mtd> +      <mtd>+        <mo>„</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ldrdhar</mtext> +      </mtd> +      <mtd>+        <mo>⥧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ldrushar</mtext> +      </mtd> +      <mtd>+        <mo>⥋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ldsh</mtext> +      </mtd> +      <mtd>+        <mo>↲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>le</mtext> +      </mtd> +      <mtd>+        <mo>≤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lE</mtext> +      </mtd> +      <mtd>+        <mo>≦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftAngleBracket</mtext> +      </mtd> +      <mtd>+        <mo>⟨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftarrow</mtext> +      </mtd> +      <mtd>+        <mo>←</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Leftarrow</mtext> +      </mtd> +      <mtd>+        <mo>⇐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftArrow</mtext> +      </mtd> +      <mtd>+        <mo>←</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftArrowBar</mtext> +      </mtd> +      <mtd>+        <mo>⇤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftArrowRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>⇆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftarrowtail</mtext> +      </mtd> +      <mtd>+        <mo>↢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftCeiling</mtext> +      </mtd> +      <mtd>+        <mo>⌈</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftDoubleBracket</mtext> +      </mtd> +      <mtd>+        <mo>⟦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftDownTeeVector</mtext> +      </mtd> +      <mtd>+        <mo>⥡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftDownVector</mtext> +      </mtd> +      <mtd>+        <mo>⇃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftDownVectorBar</mtext> +      </mtd> +      <mtd>+        <mo>⥙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftFloor</mtext> +      </mtd> +      <mtd>+        <mo>⌊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftharpoondown</mtext> +      </mtd> +      <mtd>+        <mo>↽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftharpoonup</mtext> +      </mtd> +      <mtd>+        <mo>↼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftleftarrows</mtext> +      </mtd> +      <mtd>+        <mo>⇇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftrightarrow</mtext> +      </mtd> +      <mtd>+        <mo>↔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Leftrightarrow</mtext> +      </mtd> +      <mtd>+        <mo>⇔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>↔</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftrightarrows</mtext> +      </mtd> +      <mtd>+        <mo>⇆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftrightharpoons</mtext> +      </mtd> +      <mtd>+        <mo>⇋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftrightsquigarrow</mtext> +      </mtd> +      <mtd>+        <mo>↭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftRightVector</mtext> +      </mtd> +      <mtd>+        <mo>⥎</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftTee</mtext> +      </mtd> +      <mtd>+        <mo>⊣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftTeeArrow</mtext> +      </mtd> +      <mtd>+        <mo>↤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftTeeVector</mtext> +      </mtd> +      <mtd>+        <mo>⥚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leftthreetimes</mtext> +      </mtd> +      <mtd>+        <mo>⋋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftTriangle</mtext> +      </mtd> +      <mtd>+        <mo>⊲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftTriangleBar</mtext> +      </mtd> +      <mtd>+        <mo>⧏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftTriangleEqual</mtext> +      </mtd> +      <mtd>+        <mo>⊴</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftUpDownVector</mtext> +      </mtd> +      <mtd>+        <mo>⥑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftUpTeeVector</mtext> +      </mtd> +      <mtd>+        <mo>⥠</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftUpVector</mtext> +      </mtd> +      <mtd>+        <mo>↿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftUpVectorBar</mtext> +      </mtd> +      <mtd>+        <mo>⥘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftVector</mtext> +      </mtd> +      <mtd>+        <mo>↼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LeftVectorBar</mtext> +      </mtd> +      <mtd>+        <mo>⥒</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leg</mtext> +      </mtd> +      <mtd>+        <mo>⋚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lEg</mtext> +      </mtd> +      <mtd>+        <mo>⪋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leq</mtext> +      </mtd> +      <mtd>+        <mo>≤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leqq</mtext> +      </mtd> +      <mtd>+        <mo>≦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>leqslant</mtext> +      </mtd> +      <mtd>+        <mo>⩽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>les</mtext> +      </mtd> +      <mtd>+        <mo>⩽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lescc</mtext> +      </mtd> +      <mtd>+        <mo>⪨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lesdot</mtext> +      </mtd> +      <mtd>+        <mo>⩿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lesdoto</mtext> +      </mtd> +      <mtd>+        <mo>⪁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lesdotor</mtext> +      </mtd> +      <mtd>+        <mo>⪃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lesg</mtext> +      </mtd> +      <mtd>+        <mo>⋚︀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lesges</mtext> +      </mtd> +      <mtd>+        <mo>⪓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lessapprox</mtext> +      </mtd> +      <mtd>+        <mo>⪅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lessdot</mtext> +      </mtd> +      <mtd>+        <mo>⋖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lesseqgtr</mtext> +      </mtd> +      <mtd>+        <mo>⋚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lesseqqgtr</mtext> +      </mtd> +      <mtd>+        <mo>⪋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LessEqualGreater</mtext> +      </mtd> +      <mtd>+        <mo>⋚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LessFullEqual</mtext> +      </mtd> +      <mtd>+        <mo>≦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LessGreater</mtext> +      </mtd> +      <mtd>+        <mo>≶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lessgtr</mtext> +      </mtd> +      <mtd>+        <mo>≶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LessLess</mtext> +      </mtd> +      <mtd>+        <mo>⪡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lesssim</mtext> +      </mtd> +      <mtd>+        <mo>≲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LessSlantEqual</mtext> +      </mtd> +      <mtd>+        <mo>⩽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LessTilde</mtext> +      </mtd> +      <mtd>+        <mo>≲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lfisht</mtext> +      </mtd> +      <mtd>+        <mo>⥼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lfloor</mtext> +      </mtd> +      <mtd>+        <mo>⌊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lg</mtext> +      </mtd> +      <mtd>+        <mo>≶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lgE</mtext> +      </mtd> +      <mtd>+        <mo>⪑</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lHar</mtext> +      </mtd> +      <mtd>+        <mo>⥢</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lhard</mtext> +      </mtd> +      <mtd>+        <mo>↽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lharu</mtext> +      </mtd> +      <mtd>+        <mo>↼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lharul</mtext> +      </mtd> +      <mtd>+        <mo>⥪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lhblk</mtext> +      </mtd> +      <mtd>+        <mo>▄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ljcy</mtext> +      </mtd> +      <mtd>+        <mo>љ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LJcy</mtext> +      </mtd> +      <mtd>+        <mo>Љ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ll</mtext> +      </mtd> +      <mtd>+        <mo>≪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Ll</mtext> +      </mtd> +      <mtd>+        <mo>⋘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>llarr</mtext> +      </mtd> +      <mtd>+        <mo>⇇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>llcorner</mtext> +      </mtd> +      <mtd>+        <mo>⌞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lleftarrow</mtext> +      </mtd> +      <mtd>+        <mo>⇚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>llhard</mtext> +      </mtd> +      <mtd>+        <mo>⥫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lltri</mtext> +      </mtd> +      <mtd>+        <mo>◺</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lmidot</mtext> +      </mtd> +      <mtd>+        <mo>ŀ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lmidot</mtext> +      </mtd> +      <mtd>+        <mo>Ŀ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lmoust</mtext> +      </mtd> +      <mtd>+        <mo>⎰</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lmoustache</mtext> +      </mtd> +      <mtd>+        <mo>⎰</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lnap</mtext> +      </mtd> +      <mtd>+        <mo>⪉</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lnapprox</mtext> +      </mtd> +      <mtd>+        <mo>⪉</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lne</mtext> +      </mtd> +      <mtd>+        <mo>⪇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lnE</mtext> +      </mtd> +      <mtd>+        <mo>≨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lneq</mtext> +      </mtd> +      <mtd>+        <mo>⪇</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lneqq</mtext> +      </mtd> +      <mtd>+        <mo>≨</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lnsim</mtext> +      </mtd> +      <mtd>+        <mo>⋦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>loang</mtext> +      </mtd> +      <mtd>+        <mo>⟬</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>loarr</mtext> +      </mtd> +      <mtd>+        <mo>⇽</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lobrk</mtext> +      </mtd> +      <mtd>+        <mo>⟦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>longleftarrow</mtext> +      </mtd> +      <mtd>+        <mo>⟵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Longleftarrow</mtext> +      </mtd> +      <mtd>+        <mo>⟸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LongLeftArrow</mtext> +      </mtd> +      <mtd>+        <mo>⟵</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>longleftrightarrow</mtext> +      </mtd> +      <mtd>+        <mo>⟷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Longleftrightarrow</mtext> +      </mtd> +      <mtd>+        <mo>⟺</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LongLeftRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>⟷</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>longmapsto</mtext> +      </mtd> +      <mtd>+        <mo>⟼</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>longrightarrow</mtext> +      </mtd> +      <mtd>+        <mo>⟶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Longrightarrow</mtext> +      </mtd> +      <mtd>+        <mo>⟹</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LongRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>⟶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>looparrowleft</mtext> +      </mtd> +      <mtd>+        <mo>↫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>looparrowright</mtext> +      </mtd> +      <mtd>+        <mo>↬</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lopar</mtext> +      </mtd> +      <mtd>+        <mo>⦅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕝</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>loplus</mtext> +      </mtd> +      <mtd>+        <mo>⨭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lotimes</mtext> +      </mtd> +      <mtd>+        <mo>⨴</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lowast</mtext> +      </mtd> +      <mtd>+        <mo>∗</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lowbar</mtext> +      </mtd> +      <mtd>+        <mo>_</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LowerLeftArrow</mtext> +      </mtd> +      <mtd>+        <mo>↙</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>LowerRightArrow</mtext> +      </mtd> +      <mtd>+        <mo>↘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>loz</mtext> +      </mtd> +      <mtd>+        <mo>◊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lozenge</mtext> +      </mtd> +      <mtd>+        <mo>◊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lozf</mtext> +      </mtd> +      <mtd>+        <mo>⧫</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lpar</mtext> +      </mtd> +      <mtd>+        <mo>(</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lparlt</mtext> +      </mtd> +      <mtd>+        <mo>⦓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lrarr</mtext> +      </mtd> +      <mtd>+        <mo>⇆</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lrcorner</mtext> +      </mtd> +      <mtd>+        <mo>⌟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lrhar</mtext> +      </mtd> +      <mtd>+        <mo>⇋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lrhard</mtext> +      </mtd> +      <mtd>+        <mo>⥭</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lrtri</mtext> +      </mtd> +      <mtd>+        <mo>⊿</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lscr</mtext> +      </mtd> +      <mtd>+        <mo>𝓁</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lscr</mtext> +      </mtd> +      <mtd>+        <mo>ℒ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lsh</mtext> +      </mtd> +      <mtd>+        <mo>↰</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lsh</mtext> +      </mtd> +      <mtd>+        <mo>↰</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lsim</mtext> +      </mtd> +      <mtd>+        <mo>≲</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lsime</mtext> +      </mtd> +      <mtd>+        <mo>⪍</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lsimg</mtext> +      </mtd> +      <mtd>+        <mo>⪏</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lsqb</mtext> +      </mtd> +      <mtd>+        <mo>[</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lsquo</mtext> +      </mtd> +      <mtd>+        <mo>‘</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lsquor</mtext> +      </mtd> +      <mtd>+        <mo>‚</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lstrok</mtext> +      </mtd> +      <mtd>+        <mo>ł</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lstrok</mtext> +      </mtd> +      <mtd>+        <mo>Ł</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lt</mtext> +      </mtd> +      <mtd>+        <mo>&lt;</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Lt</mtext> +      </mtd> +      <mtd>+        <mo>≪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltcc</mtext> +      </mtd> +      <mtd>+        <mo>⪦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltcir</mtext> +      </mtd> +      <mtd>+        <mo>⩹</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltdot</mtext> +      </mtd> +      <mtd>+        <mo>⋖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lthree</mtext> +      </mtd> +      <mtd>+        <mo>⋋</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltimes</mtext> +      </mtd> +      <mtd>+        <mo>⋉</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltlarr</mtext> +      </mtd> +      <mtd>+        <mo>⥶</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltquest</mtext> +      </mtd> +      <mtd>+        <mo>⩻</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltri</mtext> +      </mtd> +      <mtd>+        <mo>◃</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltrie</mtext> +      </mtd> +      <mtd>+        <mo>⊴</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltrif</mtext> +      </mtd> +      <mtd>+        <mo>◂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>ltrPar</mtext> +      </mtd> +      <mtd>+        <mo>⦖</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lurdshar</mtext> +      </mtd> +      <mtd>+        <mo>⥊</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>luruhar</mtext> +      </mtd> +      <mtd>+        <mo>⥦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lvertneqq</mtext> +      </mtd> +      <mtd>+        <mo>≨︀</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>lvnE</mtext> +      </mtd> +      <mtd>+        <mo>≨︀</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "lAarr" ] , [ ESymbol Accent "\8666" ] ]+    , [ [ EText TextNormal "lacute" ] , [ ESymbol Ord "\314" ] ]+    , [ [ EText TextNormal "Lacute" ] , [ ESymbol Ord "\313" ] ]+    , [ [ EText TextNormal "laemptyv" ] , [ ESymbol Ord "\10676" ] ]+    , [ [ EText TextNormal "lagran" ] , [ ESymbol Alpha "\8466" ] ]+    , [ [ EText TextNormal "lambda" ] , [ ESymbol Alpha "\955" ] ]+    , [ [ EText TextNormal "Lambda" ] , [ ESymbol Alpha "\923" ] ]+    , [ [ EText TextNormal "lang" ] , [ ESymbol Open "\10216" ] ]+    , [ [ EText TextNormal "Lang" ] , [ ESymbol Open "\10218" ] ]+    , [ [ EText TextNormal "langd" ] , [ ESymbol Open "\10641" ] ]+    , [ [ EText TextNormal "langle" ] , [ ESymbol Open "\10216" ] ]+    , [ [ EText TextNormal "lap" ] , [ ESymbol Rel "\10885" ] ]+    , [ [ EText TextNormal "Laplacetrf" ] , [ ESymbol Alpha "\8466" ] ]+    , [ [ EText TextNormal "laquo" ] , [ ESymbol Ord "\171" ] ]+    , [ [ EText TextNormal "larr" ] , [ ESymbol Accent "\8592" ] ]+    , [ [ EText TextNormal "lArr" ] , [ ESymbol Accent "\8656" ] ]+    , [ [ EText TextNormal "Larr" ] , [ ESymbol Accent "\8606" ] ]+    , [ [ EText TextNormal "larrb" ] , [ ESymbol Accent "\8676" ] ]+    , [ [ EText TextNormal "larrbfs" ] , [ ESymbol Accent "\10527" ] ]+    , [ [ EText TextNormal "larrfs" ] , [ ESymbol Accent "\10525" ] ]+    , [ [ EText TextNormal "larrhk" ] , [ ESymbol Accent "\8617" ] ]+    , [ [ EText TextNormal "larrlp" ] , [ ESymbol Accent "\8619" ] ]+    , [ [ EText TextNormal "larrpl" ] , [ ESymbol Rel "\10553" ] ]+    , [ [ EText TextNormal "larrsim" ] , [ ESymbol Accent "\10611" ] ]+    , [ [ EText TextNormal "larrtl" ] , [ ESymbol Accent "\8610" ] ]+    , [ [ EText TextNormal "lat" ] , [ ESymbol Rel "\10923" ] ]+    , [ [ EText TextNormal "latail" ] , [ ESymbol Accent "\10521" ] ]+    , [ [ EText TextNormal "lAtail" ] , [ ESymbol Accent "\10523" ] ]+    , [ [ EText TextNormal "late" ] , [ ESymbol Rel "\10925" ] ]+    , [ [ EText TextNormal "lates" ]+      , [ EMathOperator "\10925\65024" ]+      ]+    , [ [ EText TextNormal "lbarr" ] , [ ESymbol Accent "\10508" ] ]+    , [ [ EText TextNormal "lBarr" ] , [ ESymbol Accent "\10510" ] ]+    , [ [ EText TextNormal "lbbrk" ] , [ ESymbol Open "\10098" ] ]+    , [ [ EText TextNormal "lbrace" ] , [ ESymbol Open "{" ] ]+    , [ [ EText TextNormal "lbrack" ] , [ ESymbol Open "[" ] ]+    , [ [ EText TextNormal "lbrke" ] , [ ESymbol Open "\10635" ] ]+    , [ [ EText TextNormal "lbrksld" ] , [ ESymbol Open "\10639" ] ]+    , [ [ EText TextNormal "lbrkslu" ] , [ ESymbol Open "\10637" ] ]+    , [ [ EText TextNormal "lcaron" ] , [ ESymbol Ord "\318" ] ]+    , [ [ EText TextNormal "Lcaron" ] , [ ESymbol Ord "\317" ] ]+    , [ [ EText TextNormal "lcedil" ] , [ ESymbol Ord "\316" ] ]+    , [ [ EText TextNormal "Lcedil" ] , [ ESymbol Ord "\315" ] ]+    , [ [ EText TextNormal "lceil" ] , [ ESymbol Open "\8968" ] ]+    , [ [ EText TextNormal "lcub" ] , [ ESymbol Open "{" ] ]+    , [ [ EText TextNormal "lcy" ] , [ ESymbol Ord "\1083" ] ]+    , [ [ EText TextNormal "Lcy" ] , [ ESymbol Ord "\1051" ] ]+    , [ [ EText TextNormal "ldca" ] , [ ESymbol Rel "\10550" ] ]+    , [ [ EText TextNormal "ldquo" ] , [ ESymbol Open "\8220" ] ]+    , [ [ EText TextNormal "ldquor" ] , [ ESymbol Accent "\8222" ] ]+    , [ [ EText TextNormal "ldrdhar" ] , [ ESymbol Accent "\10599" ] ]+    , [ [ EText TextNormal "ldrushar" ] , [ ESymbol Accent "\10571" ] ]+    , [ [ EText TextNormal "ldsh" ] , [ ESymbol Rel "\8626" ] ]+    , [ [ EText TextNormal "le" ] , [ ESymbol Rel "\8804" ] ]+    , [ [ EText TextNormal "lE" ] , [ ESymbol Rel "\8806" ] ]+    , [ [ EText TextNormal "LeftAngleBracket" ]+      , [ ESymbol Open "\10216" ]+      ]+    , [ [ EText TextNormal "leftarrow" ] , [ ESymbol Accent "\8592" ] ]+    , [ [ EText TextNormal "Leftarrow" ] , [ ESymbol Accent "\8656" ] ]+    , [ [ EText TextNormal "LeftArrow" ] , [ ESymbol Accent "\8592" ] ]+    , [ [ EText TextNormal "LeftArrowBar" ]+      , [ ESymbol Accent "\8676" ]+      ]+    , [ [ EText TextNormal "LeftArrowRightArrow" ]+      , [ ESymbol Accent "\8646" ]+      ]+    , [ [ EText TextNormal "leftarrowtail" ]+      , [ ESymbol Accent "\8610" ]+      ]+    , [ [ EText TextNormal "LeftCeiling" ] , [ ESymbol Open "\8968" ] ]+    , [ [ EText TextNormal "LeftDoubleBracket" ]+      , [ ESymbol Open "\10214" ]+      ]+    , [ [ EText TextNormal "LeftDownTeeVector" ]+      , [ ESymbol Rel "\10593" ]+      ]+    , [ [ EText TextNormal "LeftDownVector" ]+      , [ ESymbol Rel "\8643" ]+      ]+    , [ [ EText TextNormal "LeftDownVectorBar" ]+      , [ ESymbol Rel "\10585" ]+      ]+    , [ [ EText TextNormal "LeftFloor" ] , [ ESymbol Open "\8970" ] ]+    , [ [ EText TextNormal "leftharpoondown" ]+      , [ ESymbol Accent "\8637" ]+      ]+    , [ [ EText TextNormal "leftharpoonup" ]+      , [ ESymbol Accent "\8636" ]+      ]+    , [ [ EText TextNormal "leftleftarrows" ]+      , [ ESymbol Accent "\8647" ]+      ]+    , [ [ EText TextNormal "leftrightarrow" ]+      , [ ESymbol Accent "\8596" ]+      ]+    , [ [ EText TextNormal "Leftrightarrow" ]+      , [ ESymbol Accent "\8660" ]+      ]+    , [ [ EText TextNormal "LeftRightArrow" ]+      , [ ESymbol Accent "\8596" ]+      ]+    , [ [ EText TextNormal "leftrightarrows" ]+      , [ ESymbol Accent "\8646" ]+      ]+    , [ [ EText TextNormal "leftrightharpoons" ]+      , [ ESymbol Accent "\8651" ]+      ]+    , [ [ EText TextNormal "leftrightsquigarrow" ]+      , [ ESymbol Accent "\8621" ]+      ]+    , [ [ EText TextNormal "LeftRightVector" ]+      , [ ESymbol Accent "\10574" ]+      ]+    , [ [ EText TextNormal "LeftTee" ] , [ ESymbol Rel "\8867" ] ]+    , [ [ EText TextNormal "LeftTeeArrow" ]+      , [ ESymbol Accent "\8612" ]+      ]+    , [ [ EText TextNormal "LeftTeeVector" ]+      , [ ESymbol Accent "\10586" ]+      ]+    , [ [ EText TextNormal "leftthreetimes" ]+      , [ ESymbol Bin "\8907" ]+      ]+    , [ [ EText TextNormal "LeftTriangle" ] , [ ESymbol Rel "\8882" ] ]+    , [ [ EText TextNormal "LeftTriangleBar" ]+      , [ ESymbol Rel "\10703" ]+      ]+    , [ [ EText TextNormal "LeftTriangleEqual" ]+      , [ ESymbol Rel "\8884" ]+      ]+    , [ [ EText TextNormal "LeftUpDownVector" ]+      , [ ESymbol Rel "\10577" ]+      ]+    , [ [ EText TextNormal "LeftUpTeeVector" ]+      , [ ESymbol Rel "\10592" ]+      ]+    , [ [ EText TextNormal "LeftUpVector" ] , [ ESymbol Rel "\8639" ] ]+    , [ [ EText TextNormal "LeftUpVectorBar" ]+      , [ ESymbol Rel "\10584" ]+      ]+    , [ [ EText TextNormal "LeftVector" ]+      , [ ESymbol Accent "\8636" ]+      ]+    , [ [ EText TextNormal "LeftVectorBar" ]+      , [ ESymbol Accent "\10578" ]+      ]+    , [ [ EText TextNormal "leg" ] , [ ESymbol Rel "\8922" ] ]+    , [ [ EText TextNormal "lEg" ] , [ ESymbol Rel "\10891" ] ]+    , [ [ EText TextNormal "leq" ] , [ ESymbol Rel "\8804" ] ]+    , [ [ EText TextNormal "leqq" ] , [ ESymbol Rel "\8806" ] ]+    , [ [ EText TextNormal "leqslant" ] , [ ESymbol Rel "\10877" ] ]+    , [ [ EText TextNormal "les" ] , [ ESymbol Rel "\10877" ] ]+    , [ [ EText TextNormal "lescc" ] , [ ESymbol Rel "\10920" ] ]+    , [ [ EText TextNormal "lesdot" ] , [ ESymbol Rel "\10879" ] ]+    , [ [ EText TextNormal "lesdoto" ] , [ ESymbol Rel "\10881" ] ]+    , [ [ EText TextNormal "lesdotor" ] , [ ESymbol Rel "\10883" ] ]+    , [ [ EText TextNormal "lesg" ] , [ EMathOperator "\8922\65024" ] ]+    , [ [ EText TextNormal "lesges" ] , [ ESymbol Rel "\10899" ] ]+    , [ [ EText TextNormal "lessapprox" ] , [ ESymbol Rel "\10885" ] ]+    , [ [ EText TextNormal "lessdot" ] , [ ESymbol Rel "\8918" ] ]+    , [ [ EText TextNormal "lesseqgtr" ] , [ ESymbol Rel "\8922" ] ]+    , [ [ EText TextNormal "lesseqqgtr" ] , [ ESymbol Rel "\10891" ] ]+    , [ [ EText TextNormal "LessEqualGreater" ]+      , [ ESymbol Rel "\8922" ]+      ]+    , [ [ EText TextNormal "LessFullEqual" ]+      , [ ESymbol Rel "\8806" ]+      ]+    , [ [ EText TextNormal "LessGreater" ] , [ ESymbol Rel "\8822" ] ]+    , [ [ EText TextNormal "lessgtr" ] , [ ESymbol Rel "\8822" ] ]+    , [ [ EText TextNormal "LessLess" ] , [ ESymbol Rel "\10913" ] ]+    , [ [ EText TextNormal "lesssim" ] , [ ESymbol Rel "\8818" ] ]+    , [ [ EText TextNormal "LessSlantEqual" ]+      , [ ESymbol Rel "\10877" ]+      ]+    , [ [ EText TextNormal "LessTilde" ] , [ ESymbol Rel "\8818" ] ]+    , [ [ EText TextNormal "lfisht" ] , [ ESymbol Accent "\10620" ] ]+    , [ [ EText TextNormal "lfloor" ] , [ ESymbol Open "\8970" ] ]+    , [ [ EText TextNormal "lfr" ] , [ ESymbol Alpha "\120105" ] ]+    , [ [ EText TextNormal "Lfr" ] , [ ESymbol Alpha "\120079" ] ]+    , [ [ EText TextNormal "lg" ] , [ ESymbol Rel "\8822" ] ]+    , [ [ EText TextNormal "lgE" ] , [ ESymbol Rel "\10897" ] ]+    , [ [ EText TextNormal "lHar" ] , [ ESymbol Accent "\10594" ] ]+    , [ [ EText TextNormal "lhard" ] , [ ESymbol Accent "\8637" ] ]+    , [ [ EText TextNormal "lharu" ] , [ ESymbol Accent "\8636" ] ]+    , [ [ EText TextNormal "lharul" ] , [ ESymbol Accent "\10602" ] ]+    , [ [ EText TextNormal "lhblk" ] , [ ESymbol Ord "\9604" ] ]+    , [ [ EText TextNormal "ljcy" ] , [ ESymbol Ord "\1113" ] ]+    , [ [ EText TextNormal "LJcy" ] , [ ESymbol Ord "\1033" ] ]+    , [ [ EText TextNormal "ll" ] , [ ESymbol Rel "\8810" ] ]+    , [ [ EText TextNormal "Ll" ] , [ ESymbol Rel "\8920" ] ]+    , [ [ EText TextNormal "llarr" ] , [ ESymbol Accent "\8647" ] ]+    , [ [ EText TextNormal "llcorner" ] , [ ESymbol Open "\8990" ] ]+    , [ [ EText TextNormal "Lleftarrow" ]+      , [ ESymbol Accent "\8666" ]+      ]+    , [ [ EText TextNormal "llhard" ] , [ ESymbol Accent "\10603" ] ]+    , [ [ EText TextNormal "lltri" ] , [ ESymbol Ord "\9722" ] ]+    , [ [ EText TextNormal "lmidot" ] , [ ESymbol Ord "\320" ] ]+    , [ [ EText TextNormal "Lmidot" ] , [ ESymbol Ord "\319" ] ]+    , [ [ EText TextNormal "lmoust" ] , [ ESymbol Ord "\9136" ] ]+    , [ [ EText TextNormal "lmoustache" ] , [ ESymbol Ord "\9136" ] ]+    , [ [ EText TextNormal "lnap" ] , [ ESymbol Rel "\10889" ] ]+    , [ [ EText TextNormal "lnapprox" ] , [ ESymbol Rel "\10889" ] ]+    , [ [ EText TextNormal "lne" ] , [ ESymbol Rel "\10887" ] ]+    , [ [ EText TextNormal "lnE" ] , [ ESymbol Rel "\8808" ] ]+    , [ [ EText TextNormal "lneq" ] , [ ESymbol Rel "\10887" ] ]+    , [ [ EText TextNormal "lneqq" ] , [ ESymbol Rel "\8808" ] ]+    , [ [ EText TextNormal "lnsim" ] , [ ESymbol Rel "\8934" ] ]+    , [ [ EText TextNormal "loang" ] , [ ESymbol Open "\10220" ] ]+    , [ [ EText TextNormal "loarr" ] , [ ESymbol Accent "\8701" ] ]+    , [ [ EText TextNormal "lobrk" ] , [ ESymbol Open "\10214" ] ]+    , [ [ EText TextNormal "longleftarrow" ]+      , [ ESymbol Accent "\10229" ]+      ]+    , [ [ EText TextNormal "Longleftarrow" ]+      , [ ESymbol Accent "\10232" ]+      ]+    , [ [ EText TextNormal "LongLeftArrow" ]+      , [ ESymbol Accent "\10229" ]+      ]+    , [ [ EText TextNormal "longleftrightarrow" ]+      , [ ESymbol Accent "\10231" ]+      ]+    , [ [ EText TextNormal "Longleftrightarrow" ]+      , [ ESymbol Accent "\10234" ]+      ]+    , [ [ EText TextNormal "LongLeftRightArrow" ]+      , [ ESymbol Accent "\10231" ]+      ]+    , [ [ EText TextNormal "longmapsto" ]+      , [ ESymbol Accent "\10236" ]+      ]+    , [ [ EText TextNormal "longrightarrow" ]+      , [ ESymbol Accent "\10230" ]+      ]+    , [ [ EText TextNormal "Longrightarrow" ]+      , [ ESymbol Accent "\10233" ]+      ]+    , [ [ EText TextNormal "LongRightArrow" ]+      , [ ESymbol Accent "\10230" ]+      ]+    , [ [ EText TextNormal "looparrowleft" ]+      , [ ESymbol Accent "\8619" ]+      ]+    , [ [ EText TextNormal "looparrowright" ]+      , [ ESymbol Accent "\8620" ]+      ]+    , [ [ EText TextNormal "lopar" ] , [ ESymbol Open "\10629" ] ]+    , [ [ EText TextNormal "lopf" ] , [ ESymbol Alpha "\120157" ] ]+    , [ [ EText TextNormal "Lopf" ] , [ ESymbol Alpha "\120131" ] ]+    , [ [ EText TextNormal "loplus" ] , [ ESymbol Bin "\10797" ] ]+    , [ [ EText TextNormal "lotimes" ] , [ ESymbol Bin "\10804" ] ]+    , [ [ EText TextNormal "lowast" ] , [ ESymbol Bin "\8727" ] ]+    , [ [ EText TextNormal "lowbar" ] , [ ESymbol Ord "_" ] ]+    , [ [ EText TextNormal "LowerLeftArrow" ]+      , [ ESymbol Rel "\8601" ]+      ]+    , [ [ EText TextNormal "LowerRightArrow" ]+      , [ ESymbol Rel "\8600" ]+      ]+    , [ [ EText TextNormal "loz" ] , [ ESymbol Ord "\9674" ] ]+    , [ [ EText TextNormal "lozenge" ] , [ ESymbol Ord "\9674" ] ]+    , [ [ EText TextNormal "lozf" ] , [ ESymbol Bin "\10731" ] ]+    , [ [ EText TextNormal "lpar" ] , [ ESymbol Open "(" ] ]+    , [ [ EText TextNormal "lparlt" ] , [ ESymbol Open "\10643" ] ]+    , [ [ EText TextNormal "lrarr" ] , [ ESymbol Accent "\8646" ] ]+    , [ [ EText TextNormal "lrcorner" ] , [ ESymbol Close "\8991" ] ]+    , [ [ EText TextNormal "lrhar" ] , [ ESymbol Accent "\8651" ] ]+    , [ [ EText TextNormal "lrhard" ] , [ ESymbol Accent "\10605" ] ]+    , [ [ EText TextNormal "lrtri" ] , [ ESymbol Ord "\8895" ] ]+    , [ [ EText TextNormal "lscr" ] , [ ESymbol Alpha "\120001" ] ]+    , [ [ EText TextNormal "Lscr" ] , [ ESymbol Alpha "\8466" ] ]+    , [ [ EText TextNormal "lsh" ] , [ ESymbol Rel "\8624" ] ]+    , [ [ EText TextNormal "Lsh" ] , [ ESymbol Rel "\8624" ] ]+    , [ [ EText TextNormal "lsim" ] , [ ESymbol Rel "\8818" ] ]+    , [ [ EText TextNormal "lsime" ] , [ ESymbol Rel "\10893" ] ]+    , [ [ EText TextNormal "lsimg" ] , [ ESymbol Rel "\10895" ] ]+    , [ [ EText TextNormal "lsqb" ] , [ ESymbol Open "[" ] ]+    , [ [ EText TextNormal "lsquo" ] , [ ESymbol Open "\8216" ] ]+    , [ [ EText TextNormal "lsquor" ] , [ ESymbol Accent "\8218" ] ]+    , [ [ EText TextNormal "lstrok" ] , [ ESymbol Ord "\322" ] ]+    , [ [ EText TextNormal "Lstrok" ] , [ ESymbol Ord "\321" ] ]+    , [ [ EText TextNormal "lt" ] , [ ESymbol Rel "<" ] ]+    , [ [ EText TextNormal "Lt" ] , [ ESymbol Rel "\8810" ] ]+    , [ [ EText TextNormal "ltcc" ] , [ ESymbol Rel "\10918" ] ]+    , [ [ EText TextNormal "ltcir" ] , [ ESymbol Rel "\10873" ] ]+    , [ [ EText TextNormal "ltdot" ] , [ ESymbol Rel "\8918" ] ]+    , [ [ EText TextNormal "lthree" ] , [ ESymbol Bin "\8907" ] ]+    , [ [ EText TextNormal "ltimes" ] , [ ESymbol Bin "\8905" ] ]+    , [ [ EText TextNormal "ltlarr" ] , [ ESymbol Accent "\10614" ] ]+    , [ [ EText TextNormal "ltquest" ] , [ ESymbol Rel "\10875" ] ]+    , [ [ EText TextNormal "ltri" ] , [ ESymbol Bin "\9667" ] ]+    , [ [ EText TextNormal "ltrie" ] , [ ESymbol Rel "\8884" ] ]+    , [ [ EText TextNormal "ltrif" ] , [ ESymbol Bin "\9666" ] ]+    , [ [ EText TextNormal "ltrPar" ] , [ ESymbol Close "\10646" ] ]+    , [ [ EText TextNormal "lurdshar" ] , [ ESymbol Accent "\10570" ] ]+    , [ [ EText TextNormal "luruhar" ] , [ ESymbol Accent "\10598" ] ]+    , [ [ EText TextNormal "lvertneqq" ]+      , [ EMathOperator "\8808\65024" ]+      ]+    , [ [ EText TextNormal "lvnE" ] , [ EMathOperator "\8808\65024" ] ]+    ]+]
+ test/reader/mml/largeop1.test view
@@ -0,0 +1,179 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mtext>displaystyle: false largeop: false</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="false">+          <mo largeop="false">&#x22C0;</mo> +          <mo largeop="false">&#x22C1;</mo> +          <mo largeop="false">&#x222B;</mo> +          <mo largeop="false">&#x2211;</mo> +          <mo largeop="false">&#x220F;</mo> +          <mo largeop="false">&#x22C3;</mo> +          <mo largeop="false">&#x22C2;</mo> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>displaystyle: false largeop: true</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="false">+          <mo largeop="true">&#x22C0;</mo> +          <mo largeop="true">&#x22C1;</mo> +          <mo largeop="true">&#x222B;</mo> +          <mo largeop="true">&#x2211;</mo> +          <mo largeop="true">&#x220F;</mo> +          <mo largeop="true">&#x22C3;</mo> +          <mo largeop="true">&#x22C2;</mo> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>displaystyle: true largeop: false</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mo largeop="false">&#x22C0;</mo> +          <mo largeop="false">&#x22C1;</mo> +          <mo largeop="false">&#x222B;</mo> +          <mo largeop="false">&#x2211;</mo> +          <mo largeop="false">&#x220F;</mo> +          <mo largeop="false">&#x22C3;</mo> +          <mo largeop="false">&#x22C2;</mo> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>displaystyle: true largeop: true</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mo largeop="true">&#x22C0;</mo> +          <mo largeop="true">&#x22C1;</mo> +          <mo largeop="true">&#x222B;</mo> +          <mo largeop="true">&#x2211;</mo> +          <mo largeop="true">&#x220F;</mo> +          <mo largeop="true">&#x22C3;</mo> +          <mo largeop="true">&#x22C2;</mo> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>displaystyle: false largeop: default</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="false">+          <mo>&#x22C0;</mo> +          <mo>&#x22C1;</mo> +          <mo>&#x222B;</mo> +          <mo>&#x2211;</mo> +          <mo>&#x220F;</mo> +          <mo>&#x22C3;</mo> +          <mo>&#x22C2;</mo> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>displaystyle: true largeop: default</mtext> +      </mtd> +      <mtd>+        <mstyle displaystyle="true">+          <mo>&#x22C0;</mo> +          <mo>&#x22C1;</mo> +          <mo>&#x222B;</mo> +          <mo>&#x2211;</mo> +          <mo>&#x220F;</mo> +          <mo>&#x22C3;</mo> +          <mo>&#x22C2;</mo> +        </mstyle> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "displaystyle: false largeop: false" ]+      , [ EGrouped+            [ ESymbol Op "\8896"+            , ESymbol Op "\8897"+            , ESymbol Op "\8747"+            , ESymbol Op "\8721"+            , ESymbol Op "\8719"+            , ESymbol Op "\8899"+            , ESymbol Op "\8898"+            ]+        ]+      ]+    , [ [ EText TextNormal "displaystyle: false largeop: true" ]+      , [ EGrouped+            [ ESymbol Op "\8896"+            , ESymbol Op "\8897"+            , ESymbol Op "\8747"+            , ESymbol Op "\8721"+            , ESymbol Op "\8719"+            , ESymbol Op "\8899"+            , ESymbol Op "\8898"+            ]+        ]+      ]+    , [ [ EText TextNormal "displaystyle: true largeop: false" ]+      , [ EGrouped+            [ ESymbol Op "\8896"+            , ESymbol Op "\8897"+            , ESymbol Op "\8747"+            , ESymbol Op "\8721"+            , ESymbol Op "\8719"+            , ESymbol Op "\8899"+            , ESymbol Op "\8898"+            ]+        ]+      ]+    , [ [ EText TextNormal "displaystyle: true largeop: true" ]+      , [ EGrouped+            [ ESymbol Op "\8896"+            , ESymbol Op "\8897"+            , ESymbol Op "\8747"+            , ESymbol Op "\8721"+            , ESymbol Op "\8719"+            , ESymbol Op "\8899"+            , ESymbol Op "\8898"+            ]+        ]+      ]+    , [ [ EText TextNormal "displaystyle: false largeop: default" ]+      , [ EGrouped+            [ ESymbol Op "\8896"+            , ESymbol Op "\8897"+            , ESymbol Op "\8747"+            , ESymbol Op "\8721"+            , ESymbol Op "\8719"+            , ESymbol Op "\8899"+            , ESymbol Op "\8898"+            ]+        ]+      ]+    , [ [ EText TextNormal "displaystyle: true largeop: default" ]+      , [ EGrouped+            [ ESymbol Op "\8896"+            , ESymbol Op "\8897"+            , ESymbol Op "\8747"+            , ESymbol Op "\8721"+            , ESymbol Op "\8719"+            , ESymbol Op "\8899"+            , ESymbol Op "\8898"+            ]+        ]+      ]+    ]+]
+ test/reader/mml/largeop2.test view
@@ -0,0 +1,30 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="false">+    <mo largeop="false">&#x22C1;</mo> +  </mstyle> +  <mstyle displaystyle="false">+    <mo largeop="true">&#x22C1;</mo> +  </mstyle> +  <mstyle displaystyle="true">+    <mo largeop="false">&#x22C1;</mo> +  </mstyle> +  <mstyle displaystyle="true">+    <mo largeop="true">&#x22C1;</mo> +  </mstyle> +  <mstyle displaystyle="false">+    <mo>&#x22C1;</mo> +  </mstyle> +  <mstyle displaystyle="true">+    <mo>&#x22C1;</mo> +  </mstyle> </math>+>>> native+[ ESymbol Op "\8897"+, ESymbol Op "\8897"+, ESymbol Op "\8897"+, ESymbol Op "\8897"+, ESymbol Op "\8897"+, ESymbol Op "\8897"+]
+ test/reader/mml/largeopPos3.test view
@@ -0,0 +1,35 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mrow>+      <munderover>+        <mrow>+          <mo>&#x22C2;</mo> +        </mrow> +        <mrow>+          <mi>i</mi> +          <mo>=</mo> +          <mn>0</mn> +        </mrow> +        <mrow>+          <mi>&#x221E;</mi> +        </mrow> +      </munderover> +    </mrow> +    <mrow>+      <mi>A</mi> +      <mo>&#x2229;</mo> +      <mi>B</mi> +    </mrow> +  </mrow> </math>+>>> native+[ EUnderover+    False+    (ESymbol Op "\8898")+    (EGrouped [ EIdentifier "i" , ESymbol Rel "=" , ENumber "0" ])+    (EIdentifier "\8734")+, EGrouped+    [ EIdentifier "A" , ESymbol Bin "\8745" , EIdentifier "B" ]+]
+ test/reader/mml/latin-bold-italic.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D468;&#x1D469;&#x1D46A;&#x1D46B;&#x1D46C;&#x1D46D;&#x1D46E;&#x1D46F;&#x1D470;&#x1D471;&#x1D472;&#x1D473;&#x1D474;&#x1D475;&#x1D476;&#x1D477;&#x1D478;&#x1D479;&#x1D47A;&#x1D47B;&#x1D47C;&#x1D47D;&#x1D47E;&#x1D47F;&#x1D480;&#x1D481;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D482;&#x1D483;&#x1D484;&#x1D485;&#x1D486;&#x1D487;&#x1D488;&#x1D489;&#x1D48A;&#x1D48B;&#x1D48C;&#x1D48D;&#x1D48E;&#x1D48F;&#x1D490;&#x1D491;&#x1D492;&#x1D493;&#x1D494;&#x1D495;&#x1D496;&#x1D497;&#x1D498;&#x1D499;&#x1D49A;&#x1D49B;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\119912\119913\119914\119915\119916\119917\119918\119919\119920\119921\119922\119923\119924\119925\119926\119927\119928\119929\119930\119931\119932\119933\119934\119935\119936\119937"+        ]+      ]+    , [ [ EText+            TextNormal+            "\119938\119939\119940\119941\119942\119943\119944\119945\119946\119947\119948\119949\119950\119951\119952\119953\119954\119955\119956\119957\119958\119959\119960\119961\119962\119963"+        ]+      ]+    ]+]
+ test/reader/mml/latin-bold.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D400;&#x1D401;&#x1D402;&#x1D403;&#x1D404;&#x1D405;&#x1D406;&#x1D407;&#x1D408;&#x1D409;&#x1D40A;&#x1D40B;&#x1D40C;&#x1D40D;&#x1D40E;&#x1D40F;&#x1D410;&#x1D411;&#x1D412;&#x1D413;&#x1D414;&#x1D415;&#x1D416;&#x1D417;&#x1D418;&#x1D419;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D41A;&#x1D41B;&#x1D41C;&#x1D41D;&#x1D41E;&#x1D41F;&#x1D420;&#x1D421;&#x1D422;&#x1D423;&#x1D424;&#x1D425;&#x1D426;&#x1D427;&#x1D428;&#x1D429;&#x1D42A;&#x1D42B;&#x1D42C;&#x1D42D;&#x1D42E;&#x1D42F;&#x1D430;&#x1D431;&#x1D432;&#x1D433;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\119808\119809\119810\119811\119812\119813\119814\119815\119816\119817\119818\119819\119820\119821\119822\119823\119824\119825\119826\119827\119828\119829\119830\119831\119832\119833"+        ]+      ]+    , [ [ EText+            TextNormal+            "\119834\119835\119836\119837\119838\119839\119840\119841\119842\119843\119844\119845\119846\119847\119848\119849\119850\119851\119852\119853\119854\119855\119856\119857\119858\119859"+        ]+      ]+    ]+]
+ test/reader/mml/latin-italic.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D434;&#x1D435;&#x1D436;&#x1D437;&#x1D438;&#x1D439;&#x1D43A;&#x1D43B;&#x1D43C;&#x1D43D;&#x1D43E;&#x1D43F;&#x1D440;&#x1D441;&#x1D442;&#x1D443;&#x1D444;&#x1D445;&#x1D446;&#x1D447;&#x1D448;&#x1D449;&#x1D44A;&#x1D44B;&#x1D44C;&#x1D44D;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D44E;&#x1D44F;&#x1D450;&#x1D451;&#x1D452;&#x1D453;&#x1D454;&#x210E;&#x1D456;&#x1D457;&#x1D458;&#x1D459;&#x1D45A;&#x1D45B;&#x1D45C;&#x1D45D;&#x1D45E;&#x1D45F;&#x1D460;&#x1D461;&#x1D462;&#x1D463;&#x1D464;&#x1D465;&#x1D466;&#x1D467;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\119860\119861\119862\119863\119864\119865\119866\119867\119868\119869\119870\119871\119872\119873\119874\119875\119876\119877\119878\119879\119880\119881\119882\119883\119884\119885"+        ]+      ]+    , [ [ EText+            TextNormal+            "\119886\119887\119888\119889\119890\119891\119892\8462\119894\119895\119896\119897\119898\119899\119900\119901\119902\119903\119904\119905\119906\119907\119908\119909\119910\119911"+        ]+      ]+    ]+]
+ test/reader/mml/latin-sans-serif-bold-italic.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D63C;&#x1D63D;&#x1D63E;&#x1D63F;&#x1D640;&#x1D641;&#x1D642;&#x1D643;&#x1D644;&#x1D645;&#x1D646;&#x1D647;&#x1D648;&#x1D649;&#x1D64A;&#x1D64B;&#x1D64C;&#x1D64D;&#x1D64E;&#x1D64F;&#x1D650;&#x1D651;&#x1D652;&#x1D653;&#x1D654;&#x1D655;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D656;&#x1D657;&#x1D658;&#x1D659;&#x1D65A;&#x1D65B;&#x1D65C;&#x1D65D;&#x1D65E;&#x1D65F;&#x1D660;&#x1D661;&#x1D662;&#x1D663;&#x1D664;&#x1D665;&#x1D666;&#x1D667;&#x1D668;&#x1D669;&#x1D66A;&#x1D66B;&#x1D66C;&#x1D66D;&#x1D66E;&#x1D66F;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120380\120381\120382\120383\120384\120385\120386\120387\120388\120389\120390\120391\120392\120393\120394\120395\120396\120397\120398\120399\120400\120401\120402\120403\120404\120405"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120406\120407\120408\120409\120410\120411\120412\120413\120414\120415\120416\120417\120418\120419\120420\120421\120422\120423\120424\120425\120426\120427\120428\120429\120430\120431"+        ]+      ]+    ]+]
+ test/reader/mml/latin-sans-serif-bold.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D5D4;&#x1D5D5;&#x1D5D6;&#x1D5D7;&#x1D5D8;&#x1D5D9;&#x1D5DA;&#x1D5DB;&#x1D5DC;&#x1D5DD;&#x1D5DE;&#x1D5DF;&#x1D5E0;&#x1D5E1;&#x1D5E2;&#x1D5E3;&#x1D5E4;&#x1D5E5;&#x1D5E6;&#x1D5E7;&#x1D5E8;&#x1D5E9;&#x1D5EA;&#x1D5EB;&#x1D5EC;&#x1D5ED;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D5EE;&#x1D5EF;&#x1D5F0;&#x1D5F1;&#x1D5F2;&#x1D5F3;&#x1D5F4;&#x1D5F5;&#x1D5F6;&#x1D5F7;&#x1D5F8;&#x1D5F9;&#x1D5FA;&#x1D5FB;&#x1D5FC;&#x1D5FD;&#x1D5FE;&#x1D5FF;&#x1D600;&#x1D601;&#x1D602;&#x1D603;&#x1D604;&#x1D605;&#x1D606;&#x1D607;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120276\120277\120278\120279\120280\120281\120282\120283\120284\120285\120286\120287\120288\120289\120290\120291\120292\120293\120294\120295\120296\120297\120298\120299\120300\120301"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120302\120303\120304\120305\120306\120307\120308\120309\120310\120311\120312\120313\120314\120315\120316\120317\120318\120319\120320\120321\120322\120323\120324\120325\120326\120327"+        ]+      ]+    ]+]
+ test/reader/mml/latin-sans-serif-italic.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D608;&#x1D609;&#x1D60A;&#x1D60B;&#x1D60C;&#x1D60D;&#x1D60E;&#x1D60F;&#x1D610;&#x1D611;&#x1D612;&#x1D613;&#x1D614;&#x1D615;&#x1D616;&#x1D617;&#x1D618;&#x1D619;&#x1D61A;&#x1D61B;&#x1D61C;&#x1D61D;&#x1D61E;&#x1D61F;&#x1D620;&#x1D621;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D622;&#x1D623;&#x1D624;&#x1D625;&#x1D626;&#x1D627;&#x1D628;&#x1D629;&#x1D62A;&#x1D62B;&#x1D62C;&#x1D62D;&#x1D62E;&#x1D62F;&#x1D630;&#x1D631;&#x1D632;&#x1D633;&#x1D634;&#x1D635;&#x1D636;&#x1D637;&#x1D638;&#x1D639;&#x1D63A;&#x1D63B;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120328\120329\120330\120331\120332\120333\120334\120335\120336\120337\120338\120339\120340\120341\120342\120343\120344\120345\120346\120347\120348\120349\120350\120351\120352\120353"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120354\120355\120356\120357\120358\120359\120360\120361\120362\120363\120364\120365\120366\120367\120368\120369\120370\120371\120372\120373\120374\120375\120376\120377\120378\120379"+        ]+      ]+    ]+]
+ test/reader/mml/latin-sans-serif.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>&#x1D5A0;&#x1D5A1;&#x1D5A2;&#x1D5A3;&#x1D5A4;&#x1D5A5;&#x1D5A6;&#x1D5A7;&#x1D5A8;&#x1D5A9;&#x1D5AA;&#x1D5AB;&#x1D5AC;&#x1D5AD;&#x1D5AE;&#x1D5AF;&#x1D5B0;&#x1D5B1;&#x1D5B2;&#x1D5B3;&#x1D5B4;&#x1D5B5;&#x1D5B6;&#x1D5B7;&#x1D5B8;&#x1D5B9;</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>&#x1D5BA;&#x1D5BB;&#x1D5BC;&#x1D5BD;&#x1D5BE;&#x1D5BF;&#x1D5C0;&#x1D5C1;&#x1D5C2;&#x1D5C3;&#x1D5C4;&#x1D5C5;&#x1D5C6;&#x1D5C7;&#x1D5C8;&#x1D5C9;&#x1D5CA;&#x1D5CB;&#x1D5CC;&#x1D5CD;&#x1D5CE;&#x1D5CF;&#x1D5D0;&#x1D5D1;&#x1D5D2;&#x1D5D3;</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EText+            TextNormal+            "\120224\120225\120226\120227\120228\120229\120230\120231\120232\120233\120234\120235\120236\120237\120238\120239\120240\120241\120242\120243\120244\120245\120246\120247\120248\120249"+        ]+      ]+    , [ [ EText+            TextNormal+            "\120250\120251\120252\120253\120254\120255\120256\120257\120258\120259\120260\120261\120262\120263\120264\120265\120266\120267\120268\120269\120270\120271\120272\120273\120274\120275"+        ]+      ]+    ]+]
+ test/reader/mml/m.test view
@@ -0,0 +1,421 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtable>+    <mtr>+      <mtd>+        <mtext>macr</mtext> +      </mtd> +      <mtd>+        <mo>¯</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>male</mtext> +      </mtd> +      <mtd>+        <mo>♂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>malt</mtext> +      </mtd> +      <mtd>+        <mo>✠</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>maltese</mtext> +      </mtd> +      <mtd>+        <mo>✠</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>map</mtext> +      </mtd> +      <mtd>+        <mo>↦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Map</mtext> +      </mtd> +      <mtd>+        <mo>⤅</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mapsto</mtext> +      </mtd> +      <mtd>+        <mo>↦</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mapstodown</mtext> +      </mtd> +      <mtd>+        <mo>↧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mapstoleft</mtext> +      </mtd> +      <mtd>+        <mo>↤</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mapstoup</mtext> +      </mtd> +      <mtd>+        <mo>↥</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>marker</mtext> +      </mtd> +      <mtd>+        <mo>▮</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mcomma</mtext> +      </mtd> +      <mtd>+        <mo>⨩</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mcy</mtext> +      </mtd> +      <mtd>+        <mo>м</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Mcy</mtext> +      </mtd> +      <mtd>+        <mo>М</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mdash</mtext> +      </mtd> +      <mtd>+        <mo>—</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mDDot</mtext> +      </mtd> +      <mtd>+        <mo>∺</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>measuredangle</mtext> +      </mtd> +      <mtd>+        <mo>∡</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>MediumSpace</mtext> +      </mtd> +      <mtd>+        <mo> </mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Mellintrf</mtext> +      </mtd> +      <mtd>+        <mo>ℳ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Mfr</mtext> +      </mtd> +      <mtd>+        <mo>𝔐</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mho</mtext> +      </mtd> +      <mtd>+        <mo>℧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>micro</mtext> +      </mtd> +      <mtd>+        <mo>µ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mid</mtext> +      </mtd> +      <mtd>+        <mo>∣</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>midast</mtext> +      </mtd> +      <mtd>+        <mo>*</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>midcir</mtext> +      </mtd> +      <mtd>+        <mo>⫰</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>middot</mtext> +      </mtd> +      <mtd>+        <mo>·</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>minus</mtext> +      </mtd> +      <mtd>+        <mo>−</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>minusb</mtext> +      </mtd> +      <mtd>+        <mo>⊟</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>minusd</mtext> +      </mtd> +      <mtd>+        <mo>∸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>minusdu</mtext> +      </mtd> +      <mtd>+        <mo>⨪</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>MinusPlus</mtext> +      </mtd> +      <mtd>+        <mo>∓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mlcp</mtext> +      </mtd> +      <mtd>+        <mo>⫛</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mldr</mtext> +      </mtd> +      <mtd>+        <mo>…</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mnplus</mtext> +      </mtd> +      <mtd>+        <mo>∓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>models</mtext> +      </mtd> +      <mtd>+        <mo>⊧</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕞</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Mopf</mtext> +      </mtd> +      <mtd>+        <mo>𝕄</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mp</mtext> +      </mtd> +      <mtd>+        <mo>∓</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mscr</mtext> +      </mtd> +      <mtd>+        <mo>𝓂</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Mscr</mtext> +      </mtd> +      <mtd>+        <mo>ℳ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mstpos</mtext> +      </mtd> +      <mtd>+        <mo>∾</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mu</mtext> +      </mtd> +      <mtd>+        <mo>μ</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>multimap</mtext> +      </mtd> +      <mtd>+        <mo>⊸</mo> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>mumap</mtext> +      </mtd> +      <mtd>+        <mo>⊸</mo> +      </mtd> +    </mtr> +  </mtable> +</math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "macr" ] , [ ESymbol Accent "\175" ] ]+    , [ [ EText TextNormal "male" ] , [ ESymbol Ord "\9794" ] ]+    , [ [ EText TextNormal "malt" ] , [ ESymbol Ord "\10016" ] ]+    , [ [ EText TextNormal "maltese" ] , [ ESymbol Ord "\10016" ] ]+    , [ [ EText TextNormal "map" ] , [ ESymbol Accent "\8614" ] ]+    , [ [ EText TextNormal "Map" ] , [ ESymbol Accent "\10501" ] ]+    , [ [ EText TextNormal "mapsto" ] , [ ESymbol Accent "\8614" ] ]+    , [ [ EText TextNormal "mapstodown" ] , [ ESymbol Rel "\8615" ] ]+    , [ [ EText TextNormal "mapstoleft" ]+      , [ ESymbol Accent "\8612" ]+      ]+    , [ [ EText TextNormal "mapstoup" ] , [ ESymbol Rel "\8613" ] ]+    , [ [ EText TextNormal "marker" ] , [ ESymbol Ord "\9646" ] ]+    , [ [ EText TextNormal "mcomma" ] , [ ESymbol Bin "\10793" ] ]+    , [ [ EText TextNormal "mcy" ] , [ ESymbol Ord "\1084" ] ]+    , [ [ EText TextNormal "Mcy" ] , [ ESymbol Ord "\1052" ] ]+    , [ [ EText TextNormal "mdash" ] , [ ESymbol Ord "\8212" ] ]+    , [ [ EText TextNormal "mDDot" ] , [ ESymbol Rel "\8762" ] ]+    , [ [ EText TextNormal "measuredangle" ]+      , [ ESymbol Ord "\8737" ]+      ]+    , [ [ EText TextNormal "MediumSpace" ] , [ ESymbol Ord "\8287" ] ]+    , [ [ EText TextNormal "Mellintrf" ] , [ ESymbol Alpha "\8499" ] ]+    , [ [ EText TextNormal "mfr" ] , [ ESymbol Alpha "\120106" ] ]+    , [ [ EText TextNormal "Mfr" ] , [ ESymbol Alpha "\120080" ] ]+    , [ [ EText TextNormal "mho" ] , [ ESymbol Ord "\8487" ] ]+    , [ [ EText TextNormal "micro" ] , [ ESymbol Alpha "\181" ] ]+    , [ [ EText TextNormal "mid" ] , [ ESymbol Rel "\8739" ] ]+    , [ [ EText TextNormal "midast" ] , [ ESymbol Ord "*" ] ]+    , [ [ EText TextNormal "midcir" ] , [ ESymbol Rel "\10992" ] ]+    , [ [ EText TextNormal "middot" ] , [ ESymbol Bin "\183" ] ]+    , [ [ EText TextNormal "minus" ] , [ ESymbol Bin "\8722" ] ]+    , [ [ EText TextNormal "minusb" ] , [ ESymbol Bin "\8863" ] ]+    , [ [ EText TextNormal "minusd" ] , [ ESymbol Bin "\8760" ] ]+    , [ [ EText TextNormal "minusdu" ] , [ ESymbol Bin "\10794" ] ]+    , [ [ EText TextNormal "MinusPlus" ] , [ ESymbol Bin "\8723" ] ]+    , [ [ EText TextNormal "mlcp" ] , [ ESymbol Rel "\10971" ] ]+    , [ [ EText TextNormal "mldr" ] , [ ESymbol Ord "\8230" ] ]+    , [ [ EText TextNormal "mnplus" ] , [ ESymbol Bin "\8723" ] ]+    , [ [ EText TextNormal "models" ] , [ ESymbol Rel "\8871" ] ]+    , [ [ EText TextNormal "mopf" ] , [ ESymbol Alpha "\120158" ] ]+    , [ [ EText TextNormal "Mopf" ] , [ ESymbol Alpha "\120132" ] ]+    , [ [ EText TextNormal "mp" ] , [ ESymbol Bin "\8723" ] ]+    , [ [ EText TextNormal "mscr" ] , [ ESymbol Alpha "\120002" ] ]+    , [ [ EText TextNormal "Mscr" ] , [ ESymbol Alpha "\8499" ] ]+    , [ [ EText TextNormal "mstpos" ] , [ ESymbol Bin "\8766" ] ]+    , [ [ EText TextNormal "mu" ] , [ ESymbol Alpha "\956" ] ]+    , [ [ EText TextNormal "multimap" ] , [ ESymbol Rel "\8888" ] ]+    , [ [ EText TextNormal "mumap" ] , [ ESymbol Rel "\8888" ] ]+    ]+]
+ test/reader/mml/m10.test view
@@ -0,0 +1,301 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>0</mn> +          </msup> +          <mo>+</mo> +          <mn>0</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>1</mn> +          </msup> +          <mo>+</mo> +          <mn>1</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>2</mn> +          </msup> +          <mo>+</mo> +          <mn>2</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>3</mn> +          </msup> +          <mo>+</mo> +          <mn>3</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>4</mn> +          </msup> +          <mo>+</mo> +          <mn>4</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>5</mn> +          </msup> +          <mo>+</mo> +          <mn>5</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>6</mn> +          </msup> +          <mo>+</mo> +          <mn>6</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>7</mn> +          </msup> +          <mo>+</mo> +          <mn>7</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>8</mn> +          </msup> +          <mo>+</mo> +          <mn>8</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>9</mn> +          </msup> +          <mo>+</mo> +          <mn>9</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "0")+                , ESymbol Bin "+"+                , ENumber "0"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "1")+                , ESymbol Bin "+"+                , ENumber "1"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "2")+                , ESymbol Bin "+"+                , ENumber "2"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "3")+                , ESymbol Bin "+"+                , ENumber "3"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "4")+                , ESymbol Bin "+"+                , ENumber "4"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "5")+                , ESymbol Bin "+"+                , ENumber "5"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "6")+                , ESymbol Bin "+"+                , ENumber "6"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "7")+                , ESymbol Bin "+"+                , ENumber "7"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "8")+                , ESymbol Bin "+"+                , ENumber "8"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "9")+                , ESymbol Bin "+"+                , ENumber "9"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    ]+]
+ test/reader/mml/m100.test view
@@ -0,0 +1,2911 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>0</mn> +          </msup> +          <mo>+</mo> +          <mn>0</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>1</mn> +          </msup> +          <mo>+</mo> +          <mn>1</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>2</mn> +          </msup> +          <mo>+</mo> +          <mn>2</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>3</mn> +          </msup> +          <mo>+</mo> +          <mn>3</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>4</mn> +          </msup> +          <mo>+</mo> +          <mn>4</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>5</mn> +          </msup> +          <mo>+</mo> +          <mn>5</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>6</mn> +          </msup> +          <mo>+</mo> +          <mn>6</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>7</mn> +          </msup> +          <mo>+</mo> +          <mn>7</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>8</mn> +          </msup> +          <mo>+</mo> +          <mn>8</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>9</mn> +          </msup> +          <mo>+</mo> +          <mn>9</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>10</mn> +          </msup> +          <mo>+</mo> +          <mn>10</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>11</mn> +          </msup> +          <mo>+</mo> +          <mn>11</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>12</mn> +          </msup> +          <mo>+</mo> +          <mn>12</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>13</mn> +          </msup> +          <mo>+</mo> +          <mn>13</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>14</mn> +          </msup> +          <mo>+</mo> +          <mn>14</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>15</mn> +          </msup> +          <mo>+</mo> +          <mn>15</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>16</mn> +          </msup> +          <mo>+</mo> +          <mn>16</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>17</mn> +          </msup> +          <mo>+</mo> +          <mn>17</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>18</mn> +          </msup> +          <mo>+</mo> +          <mn>18</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>19</mn> +          </msup> +          <mo>+</mo> +          <mn>19</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>20</mn> +          </msup> +          <mo>+</mo> +          <mn>20</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>21</mn> +          </msup> +          <mo>+</mo> +          <mn>21</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>22</mn> +          </msup> +          <mo>+</mo> +          <mn>22</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>23</mn> +          </msup> +          <mo>+</mo> +          <mn>23</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>24</mn> +          </msup> +          <mo>+</mo> +          <mn>24</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>25</mn> +          </msup> +          <mo>+</mo> +          <mn>25</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>26</mn> +          </msup> +          <mo>+</mo> +          <mn>26</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>27</mn> +          </msup> +          <mo>+</mo> +          <mn>27</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>28</mn> +          </msup> +          <mo>+</mo> +          <mn>28</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>29</mn> +          </msup> +          <mo>+</mo> +          <mn>29</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>30</mn> +          </msup> +          <mo>+</mo> +          <mn>30</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>31</mn> +          </msup> +          <mo>+</mo> +          <mn>31</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>32</mn> +          </msup> +          <mo>+</mo> +          <mn>32</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>33</mn> +          </msup> +          <mo>+</mo> +          <mn>33</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>34</mn> +          </msup> +          <mo>+</mo> +          <mn>34</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>35</mn> +          </msup> +          <mo>+</mo> +          <mn>35</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>36</mn> +          </msup> +          <mo>+</mo> +          <mn>36</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>37</mn> +          </msup> +          <mo>+</mo> +          <mn>37</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>38</mn> +          </msup> +          <mo>+</mo> +          <mn>38</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>39</mn> +          </msup> +          <mo>+</mo> +          <mn>39</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>40</mn> +          </msup> +          <mo>+</mo> +          <mn>40</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>41</mn> +          </msup> +          <mo>+</mo> +          <mn>41</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>42</mn> +          </msup> +          <mo>+</mo> +          <mn>42</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>43</mn> +          </msup> +          <mo>+</mo> +          <mn>43</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>44</mn> +          </msup> +          <mo>+</mo> +          <mn>44</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>45</mn> +          </msup> +          <mo>+</mo> +          <mn>45</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>46</mn> +          </msup> +          <mo>+</mo> +          <mn>46</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>47</mn> +          </msup> +          <mo>+</mo> +          <mn>47</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>48</mn> +          </msup> +          <mo>+</mo> +          <mn>48</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>49</mn> +          </msup> +          <mo>+</mo> +          <mn>49</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>50</mn> +          </msup> +          <mo>+</mo> +          <mn>50</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>51</mn> +          </msup> +          <mo>+</mo> +          <mn>51</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>52</mn> +          </msup> +          <mo>+</mo> +          <mn>52</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>53</mn> +          </msup> +          <mo>+</mo> +          <mn>53</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>54</mn> +          </msup> +          <mo>+</mo> +          <mn>54</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>55</mn> +          </msup> +          <mo>+</mo> +          <mn>55</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>56</mn> +          </msup> +          <mo>+</mo> +          <mn>56</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>57</mn> +          </msup> +          <mo>+</mo> +          <mn>57</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>58</mn> +          </msup> +          <mo>+</mo> +          <mn>58</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>59</mn> +          </msup> +          <mo>+</mo> +          <mn>59</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>60</mn> +          </msup> +          <mo>+</mo> +          <mn>60</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>61</mn> +          </msup> +          <mo>+</mo> +          <mn>61</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>62</mn> +          </msup> +          <mo>+</mo> +          <mn>62</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>63</mn> +          </msup> +          <mo>+</mo> +          <mn>63</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>64</mn> +          </msup> +          <mo>+</mo> +          <mn>64</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>65</mn> +          </msup> +          <mo>+</mo> +          <mn>65</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>66</mn> +          </msup> +          <mo>+</mo> +          <mn>66</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>67</mn> +          </msup> +          <mo>+</mo> +          <mn>67</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>68</mn> +          </msup> +          <mo>+</mo> +          <mn>68</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>69</mn> +          </msup> +          <mo>+</mo> +          <mn>69</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>70</mn> +          </msup> +          <mo>+</mo> +          <mn>70</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>71</mn> +          </msup> +          <mo>+</mo> +          <mn>71</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>72</mn> +          </msup> +          <mo>+</mo> +          <mn>72</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>73</mn> +          </msup> +          <mo>+</mo> +          <mn>73</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>74</mn> +          </msup> +          <mo>+</mo> +          <mn>74</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>75</mn> +          </msup> +          <mo>+</mo> +          <mn>75</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>76</mn> +          </msup> +          <mo>+</mo> +          <mn>76</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>77</mn> +          </msup> +          <mo>+</mo> +          <mn>77</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>78</mn> +          </msup> +          <mo>+</mo> +          <mn>78</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>79</mn> +          </msup> +          <mo>+</mo> +          <mn>79</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>80</mn> +          </msup> +          <mo>+</mo> +          <mn>80</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>81</mn> +          </msup> +          <mo>+</mo> +          <mn>81</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>82</mn> +          </msup> +          <mo>+</mo> +          <mn>82</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>83</mn> +          </msup> +          <mo>+</mo> +          <mn>83</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>84</mn> +          </msup> +          <mo>+</mo> +          <mn>84</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>85</mn> +          </msup> +          <mo>+</mo> +          <mn>85</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>86</mn> +          </msup> +          <mo>+</mo> +          <mn>86</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>87</mn> +          </msup> +          <mo>+</mo> +          <mn>87</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>88</mn> +          </msup> +          <mo>+</mo> +          <mn>88</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>89</mn> +          </msup> +          <mo>+</mo> +          <mn>89</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>90</mn> +          </msup> +          <mo>+</mo> +          <mn>90</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>91</mn> +          </msup> +          <mo>+</mo> +          <mn>91</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>92</mn> +          </msup> +          <mo>+</mo> +          <mn>92</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>93</mn> +          </msup> +          <mo>+</mo> +          <mn>93</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>94</mn> +          </msup> +          <mo>+</mo> +          <mn>94</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>95</mn> +          </msup> +          <mo>+</mo> +          <mn>95</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>96</mn> +          </msup> +          <mo>+</mo> +          <mn>96</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>97</mn> +          </msup> +          <mo>+</mo> +          <mn>97</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>98</mn> +          </msup> +          <mo>+</mo> +          <mn>98</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>99</mn> +          </msup> +          <mo>+</mo> +          <mn>99</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "0")+                , ESymbol Bin "+"+                , ENumber "0"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "1")+                , ESymbol Bin "+"+                , ENumber "1"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "2")+                , ESymbol Bin "+"+                , ENumber "2"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "3")+                , ESymbol Bin "+"+                , ENumber "3"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "4")+                , ESymbol Bin "+"+                , ENumber "4"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "5")+                , ESymbol Bin "+"+                , ENumber "5"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "6")+                , ESymbol Bin "+"+                , ENumber "6"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "7")+                , ESymbol Bin "+"+                , ENumber "7"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "8")+                , ESymbol Bin "+"+                , ENumber "8"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "9")+                , ESymbol Bin "+"+                , ENumber "9"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "10")+                , ESymbol Bin "+"+                , ENumber "10"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "11")+                , ESymbol Bin "+"+                , ENumber "11"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "12")+                , ESymbol Bin "+"+                , ENumber "12"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "13")+                , ESymbol Bin "+"+                , ENumber "13"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "14")+                , ESymbol Bin "+"+                , ENumber "14"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "15")+                , ESymbol Bin "+"+                , ENumber "15"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "16")+                , ESymbol Bin "+"+                , ENumber "16"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "17")+                , ESymbol Bin "+"+                , ENumber "17"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "18")+                , ESymbol Bin "+"+                , ENumber "18"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "19")+                , ESymbol Bin "+"+                , ENumber "19"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "20")+                , ESymbol Bin "+"+                , ENumber "20"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "21")+                , ESymbol Bin "+"+                , ENumber "21"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "22")+                , ESymbol Bin "+"+                , ENumber "22"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "23")+                , ESymbol Bin "+"+                , ENumber "23"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "24")+                , ESymbol Bin "+"+                , ENumber "24"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "25")+                , ESymbol Bin "+"+                , ENumber "25"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "26")+                , ESymbol Bin "+"+                , ENumber "26"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "27")+                , ESymbol Bin "+"+                , ENumber "27"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "28")+                , ESymbol Bin "+"+                , ENumber "28"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "29")+                , ESymbol Bin "+"+                , ENumber "29"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "30")+                , ESymbol Bin "+"+                , ENumber "30"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "31")+                , ESymbol Bin "+"+                , ENumber "31"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "32")+                , ESymbol Bin "+"+                , ENumber "32"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "33")+                , ESymbol Bin "+"+                , ENumber "33"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "34")+                , ESymbol Bin "+"+                , ENumber "34"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "35")+                , ESymbol Bin "+"+                , ENumber "35"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "36")+                , ESymbol Bin "+"+                , ENumber "36"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "37")+                , ESymbol Bin "+"+                , ENumber "37"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "38")+                , ESymbol Bin "+"+                , ENumber "38"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "39")+                , ESymbol Bin "+"+                , ENumber "39"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "40")+                , ESymbol Bin "+"+                , ENumber "40"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "41")+                , ESymbol Bin "+"+                , ENumber "41"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "42")+                , ESymbol Bin "+"+                , ENumber "42"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "43")+                , ESymbol Bin "+"+                , ENumber "43"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "44")+                , ESymbol Bin "+"+                , ENumber "44"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "45")+                , ESymbol Bin "+"+                , ENumber "45"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "46")+                , ESymbol Bin "+"+                , ENumber "46"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "47")+                , ESymbol Bin "+"+                , ENumber "47"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "48")+                , ESymbol Bin "+"+                , ENumber "48"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "49")+                , ESymbol Bin "+"+                , ENumber "49"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "50")+                , ESymbol Bin "+"+                , ENumber "50"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "51")+                , ESymbol Bin "+"+                , ENumber "51"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "52")+                , ESymbol Bin "+"+                , ENumber "52"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "53")+                , ESymbol Bin "+"+                , ENumber "53"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "54")+                , ESymbol Bin "+"+                , ENumber "54"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "55")+                , ESymbol Bin "+"+                , ENumber "55"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "56")+                , ESymbol Bin "+"+                , ENumber "56"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "57")+                , ESymbol Bin "+"+                , ENumber "57"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "58")+                , ESymbol Bin "+"+                , ENumber "58"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "59")+                , ESymbol Bin "+"+                , ENumber "59"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "60")+                , ESymbol Bin "+"+                , ENumber "60"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "61")+                , ESymbol Bin "+"+                , ENumber "61"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "62")+                , ESymbol Bin "+"+                , ENumber "62"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "63")+                , ESymbol Bin "+"+                , ENumber "63"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "64")+                , ESymbol Bin "+"+                , ENumber "64"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "65")+                , ESymbol Bin "+"+                , ENumber "65"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "66")+                , ESymbol Bin "+"+                , ENumber "66"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "67")+                , ESymbol Bin "+"+                , ENumber "67"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "68")+                , ESymbol Bin "+"+                , ENumber "68"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "69")+                , ESymbol Bin "+"+                , ENumber "69"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "70")+                , ESymbol Bin "+"+                , ENumber "70"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "71")+                , ESymbol Bin "+"+                , ENumber "71"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "72")+                , ESymbol Bin "+"+                , ENumber "72"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "73")+                , ESymbol Bin "+"+                , ENumber "73"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "74")+                , ESymbol Bin "+"+                , ENumber "74"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "75")+                , ESymbol Bin "+"+                , ENumber "75"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "76")+                , ESymbol Bin "+"+                , ENumber "76"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "77")+                , ESymbol Bin "+"+                , ENumber "77"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "78")+                , ESymbol Bin "+"+                , ENumber "78"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "79")+                , ESymbol Bin "+"+                , ENumber "79"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "80")+                , ESymbol Bin "+"+                , ENumber "80"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "81")+                , ESymbol Bin "+"+                , ENumber "81"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "82")+                , ESymbol Bin "+"+                , ENumber "82"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "83")+                , ESymbol Bin "+"+                , ENumber "83"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "84")+                , ESymbol Bin "+"+                , ENumber "84"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "85")+                , ESymbol Bin "+"+                , ENumber "85"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "86")+                , ESymbol Bin "+"+                , ENumber "86"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "87")+                , ESymbol Bin "+"+                , ENumber "87"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "88")+                , ESymbol Bin "+"+                , ENumber "88"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "89")+                , ESymbol Bin "+"+                , ENumber "89"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "90")+                , ESymbol Bin "+"+                , ENumber "90"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "91")+                , ESymbol Bin "+"+                , ENumber "91"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "92")+                , ESymbol Bin "+"+                , ENumber "92"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "93")+                , ESymbol Bin "+"+                , ENumber "93"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "94")+                , ESymbol Bin "+"+                , ENumber "94"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "95")+                , ESymbol Bin "+"+                , ENumber "95"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "96")+                , ESymbol Bin "+"+                , ENumber "96"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "97")+                , ESymbol Bin "+"+                , ENumber "97"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "98")+                , ESymbol Bin "+"+                , ENumber "98"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "99")+                , ESymbol Bin "+"+                , ENumber "99"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    ]+]
+ test/reader/mml/m1000.test view
@@ -0,0 +1,26321 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>0</mn> +          </msup> +          <mo>+</mo> +          <mn>0</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>1</mn> +          </msup> +          <mo>+</mo> +          <mn>1</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>2</mn> +          </msup> +          <mo>+</mo> +          <mn>2</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>3</mn> +          </msup> +          <mo>+</mo> +          <mn>3</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>4</mn> +          </msup> +          <mo>+</mo> +          <mn>4</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>5</mn> +          </msup> +          <mo>+</mo> +          <mn>5</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>6</mn> +          </msup> +          <mo>+</mo> +          <mn>6</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>7</mn> +          </msup> +          <mo>+</mo> +          <mn>7</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>8</mn> +          </msup> +          <mo>+</mo> +          <mn>8</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>9</mn> +          </msup> +          <mo>+</mo> +          <mn>9</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>10</mn> +          </msup> +          <mo>+</mo> +          <mn>10</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>11</mn> +          </msup> +          <mo>+</mo> +          <mn>11</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>12</mn> +          </msup> +          <mo>+</mo> +          <mn>12</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>13</mn> +          </msup> +          <mo>+</mo> +          <mn>13</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>14</mn> +          </msup> +          <mo>+</mo> +          <mn>14</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>15</mn> +          </msup> +          <mo>+</mo> +          <mn>15</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>16</mn> +          </msup> +          <mo>+</mo> +          <mn>16</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>17</mn> +          </msup> +          <mo>+</mo> +          <mn>17</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>18</mn> +          </msup> +          <mo>+</mo> +          <mn>18</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>19</mn> +          </msup> +          <mo>+</mo> +          <mn>19</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>20</mn> +          </msup> +          <mo>+</mo> +          <mn>20</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>21</mn> +          </msup> +          <mo>+</mo> +          <mn>21</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>22</mn> +          </msup> +          <mo>+</mo> +          <mn>22</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>23</mn> +          </msup> +          <mo>+</mo> +          <mn>23</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>24</mn> +          </msup> +          <mo>+</mo> +          <mn>24</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>25</mn> +          </msup> +          <mo>+</mo> +          <mn>25</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>26</mn> +          </msup> +          <mo>+</mo> +          <mn>26</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>27</mn> +          </msup> +          <mo>+</mo> +          <mn>27</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>28</mn> +          </msup> +          <mo>+</mo> +          <mn>28</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>29</mn> +          </msup> +          <mo>+</mo> +          <mn>29</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>30</mn> +          </msup> +          <mo>+</mo> +          <mn>30</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>31</mn> +          </msup> +          <mo>+</mo> +          <mn>31</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>32</mn> +          </msup> +          <mo>+</mo> +          <mn>32</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>33</mn> +          </msup> +          <mo>+</mo> +          <mn>33</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>34</mn> +          </msup> +          <mo>+</mo> +          <mn>34</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>35</mn> +          </msup> +          <mo>+</mo> +          <mn>35</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>36</mn> +          </msup> +          <mo>+</mo> +          <mn>36</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>37</mn> +          </msup> +          <mo>+</mo> +          <mn>37</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>38</mn> +          </msup> +          <mo>+</mo> +          <mn>38</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>39</mn> +          </msup> +          <mo>+</mo> +          <mn>39</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>40</mn> +          </msup> +          <mo>+</mo> +          <mn>40</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>41</mn> +          </msup> +          <mo>+</mo> +          <mn>41</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>42</mn> +          </msup> +          <mo>+</mo> +          <mn>42</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>43</mn> +          </msup> +          <mo>+</mo> +          <mn>43</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>44</mn> +          </msup> +          <mo>+</mo> +          <mn>44</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>45</mn> +          </msup> +          <mo>+</mo> +          <mn>45</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>46</mn> +          </msup> +          <mo>+</mo> +          <mn>46</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>47</mn> +          </msup> +          <mo>+</mo> +          <mn>47</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>48</mn> +          </msup> +          <mo>+</mo> +          <mn>48</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>49</mn> +          </msup> +          <mo>+</mo> +          <mn>49</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>50</mn> +          </msup> +          <mo>+</mo> +          <mn>50</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>51</mn> +          </msup> +          <mo>+</mo> +          <mn>51</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>52</mn> +          </msup> +          <mo>+</mo> +          <mn>52</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>53</mn> +          </msup> +          <mo>+</mo> +          <mn>53</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>54</mn> +          </msup> +          <mo>+</mo> +          <mn>54</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>55</mn> +          </msup> +          <mo>+</mo> +          <mn>55</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>56</mn> +          </msup> +          <mo>+</mo> +          <mn>56</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>57</mn> +          </msup> +          <mo>+</mo> +          <mn>57</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>58</mn> +          </msup> +          <mo>+</mo> +          <mn>58</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>59</mn> +          </msup> +          <mo>+</mo> +          <mn>59</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>60</mn> +          </msup> +          <mo>+</mo> +          <mn>60</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>61</mn> +          </msup> +          <mo>+</mo> +          <mn>61</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>62</mn> +          </msup> +          <mo>+</mo> +          <mn>62</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>63</mn> +          </msup> +          <mo>+</mo> +          <mn>63</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>64</mn> +          </msup> +          <mo>+</mo> +          <mn>64</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>65</mn> +          </msup> +          <mo>+</mo> +          <mn>65</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>66</mn> +          </msup> +          <mo>+</mo> +          <mn>66</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>67</mn> +          </msup> +          <mo>+</mo> +          <mn>67</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>68</mn> +          </msup> +          <mo>+</mo> +          <mn>68</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>69</mn> +          </msup> +          <mo>+</mo> +          <mn>69</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>70</mn> +          </msup> +          <mo>+</mo> +          <mn>70</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>71</mn> +          </msup> +          <mo>+</mo> +          <mn>71</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>72</mn> +          </msup> +          <mo>+</mo> +          <mn>72</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>73</mn> +          </msup> +          <mo>+</mo> +          <mn>73</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>74</mn> +          </msup> +          <mo>+</mo> +          <mn>74</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>75</mn> +          </msup> +          <mo>+</mo> +          <mn>75</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>76</mn> +          </msup> +          <mo>+</mo> +          <mn>76</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>77</mn> +          </msup> +          <mo>+</mo> +          <mn>77</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>78</mn> +          </msup> +          <mo>+</mo> +          <mn>78</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>79</mn> +          </msup> +          <mo>+</mo> +          <mn>79</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>80</mn> +          </msup> +          <mo>+</mo> +          <mn>80</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>81</mn> +          </msup> +          <mo>+</mo> +          <mn>81</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>82</mn> +          </msup> +          <mo>+</mo> +          <mn>82</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>83</mn> +          </msup> +          <mo>+</mo> +          <mn>83</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>84</mn> +          </msup> +          <mo>+</mo> +          <mn>84</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>85</mn> +          </msup> +          <mo>+</mo> +          <mn>85</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>86</mn> +          </msup> +          <mo>+</mo> +          <mn>86</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>87</mn> +          </msup> +          <mo>+</mo> +          <mn>87</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>88</mn> +          </msup> +          <mo>+</mo> +          <mn>88</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>89</mn> +          </msup> +          <mo>+</mo> +          <mn>89</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>90</mn> +          </msup> +          <mo>+</mo> +          <mn>90</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>91</mn> +          </msup> +          <mo>+</mo> +          <mn>91</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>92</mn> +          </msup> +          <mo>+</mo> +          <mn>92</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>93</mn> +          </msup> +          <mo>+</mo> +          <mn>93</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>94</mn> +          </msup> +          <mo>+</mo> +          <mn>94</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>95</mn> +          </msup> +          <mo>+</mo> +          <mn>95</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>96</mn> +          </msup> +          <mo>+</mo> +          <mn>96</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>97</mn> +          </msup> +          <mo>+</mo> +          <mn>97</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>98</mn> +          </msup> +          <mo>+</mo> +          <mn>98</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>99</mn> +          </msup> +          <mo>+</mo> +          <mn>99</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>100</mn> +          </msup> +          <mo>+</mo> +          <mn>100</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>101</mn> +          </msup> +          <mo>+</mo> +          <mn>101</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>102</mn> +          </msup> +          <mo>+</mo> +          <mn>102</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>103</mn> +          </msup> +          <mo>+</mo> +          <mn>103</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>104</mn> +          </msup> +          <mo>+</mo> +          <mn>104</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>105</mn> +          </msup> +          <mo>+</mo> +          <mn>105</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>106</mn> +          </msup> +          <mo>+</mo> +          <mn>106</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>107</mn> +          </msup> +          <mo>+</mo> +          <mn>107</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>108</mn> +          </msup> +          <mo>+</mo> +          <mn>108</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>109</mn> +          </msup> +          <mo>+</mo> +          <mn>109</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>110</mn> +          </msup> +          <mo>+</mo> +          <mn>110</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>111</mn> +          </msup> +          <mo>+</mo> +          <mn>111</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>112</mn> +          </msup> +          <mo>+</mo> +          <mn>112</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>113</mn> +          </msup> +          <mo>+</mo> +          <mn>113</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>114</mn> +          </msup> +          <mo>+</mo> +          <mn>114</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>115</mn> +          </msup> +          <mo>+</mo> +          <mn>115</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>116</mn> +          </msup> +          <mo>+</mo> +          <mn>116</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>117</mn> +          </msup> +          <mo>+</mo> +          <mn>117</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>118</mn> +          </msup> +          <mo>+</mo> +          <mn>118</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>119</mn> +          </msup> +          <mo>+</mo> +          <mn>119</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>120</mn> +          </msup> +          <mo>+</mo> +          <mn>120</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>121</mn> +          </msup> +          <mo>+</mo> +          <mn>121</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>122</mn> +          </msup> +          <mo>+</mo> +          <mn>122</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>123</mn> +          </msup> +          <mo>+</mo> +          <mn>123</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>124</mn> +          </msup> +          <mo>+</mo> +          <mn>124</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>125</mn> +          </msup> +          <mo>+</mo> +          <mn>125</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>126</mn> +          </msup> +          <mo>+</mo> +          <mn>126</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>127</mn> +          </msup> +          <mo>+</mo> +          <mn>127</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>128</mn> +          </msup> +          <mo>+</mo> +          <mn>128</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>129</mn> +          </msup> +          <mo>+</mo> +          <mn>129</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>130</mn> +          </msup> +          <mo>+</mo> +          <mn>130</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>131</mn> +          </msup> +          <mo>+</mo> +          <mn>131</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>132</mn> +          </msup> +          <mo>+</mo> +          <mn>132</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>133</mn> +          </msup> +          <mo>+</mo> +          <mn>133</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>134</mn> +          </msup> +          <mo>+</mo> +          <mn>134</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>135</mn> +          </msup> +          <mo>+</mo> +          <mn>135</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>136</mn> +          </msup> +          <mo>+</mo> +          <mn>136</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>137</mn> +          </msup> +          <mo>+</mo> +          <mn>137</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>138</mn> +          </msup> +          <mo>+</mo> +          <mn>138</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>139</mn> +          </msup> +          <mo>+</mo> +          <mn>139</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>140</mn> +          </msup> +          <mo>+</mo> +          <mn>140</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>141</mn> +          </msup> +          <mo>+</mo> +          <mn>141</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>142</mn> +          </msup> +          <mo>+</mo> +          <mn>142</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>143</mn> +          </msup> +          <mo>+</mo> +          <mn>143</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>144</mn> +          </msup> +          <mo>+</mo> +          <mn>144</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>145</mn> +          </msup> +          <mo>+</mo> +          <mn>145</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>146</mn> +          </msup> +          <mo>+</mo> +          <mn>146</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>147</mn> +          </msup> +          <mo>+</mo> +          <mn>147</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>148</mn> +          </msup> +          <mo>+</mo> +          <mn>148</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>149</mn> +          </msup> +          <mo>+</mo> +          <mn>149</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>150</mn> +          </msup> +          <mo>+</mo> +          <mn>150</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>151</mn> +          </msup> +          <mo>+</mo> +          <mn>151</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>152</mn> +          </msup> +          <mo>+</mo> +          <mn>152</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>153</mn> +          </msup> +          <mo>+</mo> +          <mn>153</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>154</mn> +          </msup> +          <mo>+</mo> +          <mn>154</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>155</mn> +          </msup> +          <mo>+</mo> +          <mn>155</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>156</mn> +          </msup> +          <mo>+</mo> +          <mn>156</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>157</mn> +          </msup> +          <mo>+</mo> +          <mn>157</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>158</mn> +          </msup> +          <mo>+</mo> +          <mn>158</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>159</mn> +          </msup> +          <mo>+</mo> +          <mn>159</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>160</mn> +          </msup> +          <mo>+</mo> +          <mn>160</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>161</mn> +          </msup> +          <mo>+</mo> +          <mn>161</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>162</mn> +          </msup> +          <mo>+</mo> +          <mn>162</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>163</mn> +          </msup> +          <mo>+</mo> +          <mn>163</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>164</mn> +          </msup> +          <mo>+</mo> +          <mn>164</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>165</mn> +          </msup> +          <mo>+</mo> +          <mn>165</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>166</mn> +          </msup> +          <mo>+</mo> +          <mn>166</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>167</mn> +          </msup> +          <mo>+</mo> +          <mn>167</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>168</mn> +          </msup> +          <mo>+</mo> +          <mn>168</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>169</mn> +          </msup> +          <mo>+</mo> +          <mn>169</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>170</mn> +          </msup> +          <mo>+</mo> +          <mn>170</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>171</mn> +          </msup> +          <mo>+</mo> +          <mn>171</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>172</mn> +          </msup> +          <mo>+</mo> +          <mn>172</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>173</mn> +          </msup> +          <mo>+</mo> +          <mn>173</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>174</mn> +          </msup> +          <mo>+</mo> +          <mn>174</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>175</mn> +          </msup> +          <mo>+</mo> +          <mn>175</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>176</mn> +          </msup> +          <mo>+</mo> +          <mn>176</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>177</mn> +          </msup> +          <mo>+</mo> +          <mn>177</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>178</mn> +          </msup> +          <mo>+</mo> +          <mn>178</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>179</mn> +          </msup> +          <mo>+</mo> +          <mn>179</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>180</mn> +          </msup> +          <mo>+</mo> +          <mn>180</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>181</mn> +          </msup> +          <mo>+</mo> +          <mn>181</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>182</mn> +          </msup> +          <mo>+</mo> +          <mn>182</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>183</mn> +          </msup> +          <mo>+</mo> +          <mn>183</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>184</mn> +          </msup> +          <mo>+</mo> +          <mn>184</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>185</mn> +          </msup> +          <mo>+</mo> +          <mn>185</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>186</mn> +          </msup> +          <mo>+</mo> +          <mn>186</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>187</mn> +          </msup> +          <mo>+</mo> +          <mn>187</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>188</mn> +          </msup> +          <mo>+</mo> +          <mn>188</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>189</mn> +          </msup> +          <mo>+</mo> +          <mn>189</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>190</mn> +          </msup> +          <mo>+</mo> +          <mn>190</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>191</mn> +          </msup> +          <mo>+</mo> +          <mn>191</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>192</mn> +          </msup> +          <mo>+</mo> +          <mn>192</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>193</mn> +          </msup> +          <mo>+</mo> +          <mn>193</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>194</mn> +          </msup> +          <mo>+</mo> +          <mn>194</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>195</mn> +          </msup> +          <mo>+</mo> +          <mn>195</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>196</mn> +          </msup> +          <mo>+</mo> +          <mn>196</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>197</mn> +          </msup> +          <mo>+</mo> +          <mn>197</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>198</mn> +          </msup> +          <mo>+</mo> +          <mn>198</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>199</mn> +          </msup> +          <mo>+</mo> +          <mn>199</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>200</mn> +          </msup> +          <mo>+</mo> +          <mn>200</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>201</mn> +          </msup> +          <mo>+</mo> +          <mn>201</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>202</mn> +          </msup> +          <mo>+</mo> +          <mn>202</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>203</mn> +          </msup> +          <mo>+</mo> +          <mn>203</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>204</mn> +          </msup> +          <mo>+</mo> +          <mn>204</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>205</mn> +          </msup> +          <mo>+</mo> +          <mn>205</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>206</mn> +          </msup> +          <mo>+</mo> +          <mn>206</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>207</mn> +          </msup> +          <mo>+</mo> +          <mn>207</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>208</mn> +          </msup> +          <mo>+</mo> +          <mn>208</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>209</mn> +          </msup> +          <mo>+</mo> +          <mn>209</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>210</mn> +          </msup> +          <mo>+</mo> +          <mn>210</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>211</mn> +          </msup> +          <mo>+</mo> +          <mn>211</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>212</mn> +          </msup> +          <mo>+</mo> +          <mn>212</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>213</mn> +          </msup> +          <mo>+</mo> +          <mn>213</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>214</mn> +          </msup> +          <mo>+</mo> +          <mn>214</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>215</mn> +          </msup> +          <mo>+</mo> +          <mn>215</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>216</mn> +          </msup> +          <mo>+</mo> +          <mn>216</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>217</mn> +          </msup> +          <mo>+</mo> +          <mn>217</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>218</mn> +          </msup> +          <mo>+</mo> +          <mn>218</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>219</mn> +          </msup> +          <mo>+</mo> +          <mn>219</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>220</mn> +          </msup> +          <mo>+</mo> +          <mn>220</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>221</mn> +          </msup> +          <mo>+</mo> +          <mn>221</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>222</mn> +          </msup> +          <mo>+</mo> +          <mn>222</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>223</mn> +          </msup> +          <mo>+</mo> +          <mn>223</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>224</mn> +          </msup> +          <mo>+</mo> +          <mn>224</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>225</mn> +          </msup> +          <mo>+</mo> +          <mn>225</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>226</mn> +          </msup> +          <mo>+</mo> +          <mn>226</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>227</mn> +          </msup> +          <mo>+</mo> +          <mn>227</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>228</mn> +          </msup> +          <mo>+</mo> +          <mn>228</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>229</mn> +          </msup> +          <mo>+</mo> +          <mn>229</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>230</mn> +          </msup> +          <mo>+</mo> +          <mn>230</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>231</mn> +          </msup> +          <mo>+</mo> +          <mn>231</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>232</mn> +          </msup> +          <mo>+</mo> +          <mn>232</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>233</mn> +          </msup> +          <mo>+</mo> +          <mn>233</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>234</mn> +          </msup> +          <mo>+</mo> +          <mn>234</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>235</mn> +          </msup> +          <mo>+</mo> +          <mn>235</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>236</mn> +          </msup> +          <mo>+</mo> +          <mn>236</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>237</mn> +          </msup> +          <mo>+</mo> +          <mn>237</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>238</mn> +          </msup> +          <mo>+</mo> +          <mn>238</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>239</mn> +          </msup> +          <mo>+</mo> +          <mn>239</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>240</mn> +          </msup> +          <mo>+</mo> +          <mn>240</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>241</mn> +          </msup> +          <mo>+</mo> +          <mn>241</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>242</mn> +          </msup> +          <mo>+</mo> +          <mn>242</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>243</mn> +          </msup> +          <mo>+</mo> +          <mn>243</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>244</mn> +          </msup> +          <mo>+</mo> +          <mn>244</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>245</mn> +          </msup> +          <mo>+</mo> +          <mn>245</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>246</mn> +          </msup> +          <mo>+</mo> +          <mn>246</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>247</mn> +          </msup> +          <mo>+</mo> +          <mn>247</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>248</mn> +          </msup> +          <mo>+</mo> +          <mn>248</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>249</mn> +          </msup> +          <mo>+</mo> +          <mn>249</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>250</mn> +          </msup> +          <mo>+</mo> +          <mn>250</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>251</mn> +          </msup> +          <mo>+</mo> +          <mn>251</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>252</mn> +          </msup> +          <mo>+</mo> +          <mn>252</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>253</mn> +          </msup> +          <mo>+</mo> +          <mn>253</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>254</mn> +          </msup> +          <mo>+</mo> +          <mn>254</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>255</mn> +          </msup> +          <mo>+</mo> +          <mn>255</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>256</mn> +          </msup> +          <mo>+</mo> +          <mn>256</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>257</mn> +          </msup> +          <mo>+</mo> +          <mn>257</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>258</mn> +          </msup> +          <mo>+</mo> +          <mn>258</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>259</mn> +          </msup> +          <mo>+</mo> +          <mn>259</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>260</mn> +          </msup> +          <mo>+</mo> +          <mn>260</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>261</mn> +          </msup> +          <mo>+</mo> +          <mn>261</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>262</mn> +          </msup> +          <mo>+</mo> +          <mn>262</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>263</mn> +          </msup> +          <mo>+</mo> +          <mn>263</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>264</mn> +          </msup> +          <mo>+</mo> +          <mn>264</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>265</mn> +          </msup> +          <mo>+</mo> +          <mn>265</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>266</mn> +          </msup> +          <mo>+</mo> +          <mn>266</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>267</mn> +          </msup> +          <mo>+</mo> +          <mn>267</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>268</mn> +          </msup> +          <mo>+</mo> +          <mn>268</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>269</mn> +          </msup> +          <mo>+</mo> +          <mn>269</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>270</mn> +          </msup> +          <mo>+</mo> +          <mn>270</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>271</mn> +          </msup> +          <mo>+</mo> +          <mn>271</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>272</mn> +          </msup> +          <mo>+</mo> +          <mn>272</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>273</mn> +          </msup> +          <mo>+</mo> +          <mn>273</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>274</mn> +          </msup> +          <mo>+</mo> +          <mn>274</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>275</mn> +          </msup> +          <mo>+</mo> +          <mn>275</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>276</mn> +          </msup> +          <mo>+</mo> +          <mn>276</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>277</mn> +          </msup> +          <mo>+</mo> +          <mn>277</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>278</mn> +          </msup> +          <mo>+</mo> +          <mn>278</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>279</mn> +          </msup> +          <mo>+</mo> +          <mn>279</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>280</mn> +          </msup> +          <mo>+</mo> +          <mn>280</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>281</mn> +          </msup> +          <mo>+</mo> +          <mn>281</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>282</mn> +          </msup> +          <mo>+</mo> +          <mn>282</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>283</mn> +          </msup> +          <mo>+</mo> +          <mn>283</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>284</mn> +          </msup> +          <mo>+</mo> +          <mn>284</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>285</mn> +          </msup> +          <mo>+</mo> +          <mn>285</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>286</mn> +          </msup> +          <mo>+</mo> +          <mn>286</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>287</mn> +          </msup> +          <mo>+</mo> +          <mn>287</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>288</mn> +          </msup> +          <mo>+</mo> +          <mn>288</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>289</mn> +          </msup> +          <mo>+</mo> +          <mn>289</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>290</mn> +          </msup> +          <mo>+</mo> +          <mn>290</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>291</mn> +          </msup> +          <mo>+</mo> +          <mn>291</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>292</mn> +          </msup> +          <mo>+</mo> +          <mn>292</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>293</mn> +          </msup> +          <mo>+</mo> +          <mn>293</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>294</mn> +          </msup> +          <mo>+</mo> +          <mn>294</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>295</mn> +          </msup> +          <mo>+</mo> +          <mn>295</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>296</mn> +          </msup> +          <mo>+</mo> +          <mn>296</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>297</mn> +          </msup> +          <mo>+</mo> +          <mn>297</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>298</mn> +          </msup> +          <mo>+</mo> +          <mn>298</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>299</mn> +          </msup> +          <mo>+</mo> +          <mn>299</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>300</mn> +          </msup> +          <mo>+</mo> +          <mn>300</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>301</mn> +          </msup> +          <mo>+</mo> +          <mn>301</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>302</mn> +          </msup> +          <mo>+</mo> +          <mn>302</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>303</mn> +          </msup> +          <mo>+</mo> +          <mn>303</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>304</mn> +          </msup> +          <mo>+</mo> +          <mn>304</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>305</mn> +          </msup> +          <mo>+</mo> +          <mn>305</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>306</mn> +          </msup> +          <mo>+</mo> +          <mn>306</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>307</mn> +          </msup> +          <mo>+</mo> +          <mn>307</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>308</mn> +          </msup> +          <mo>+</mo> +          <mn>308</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>309</mn> +          </msup> +          <mo>+</mo> +          <mn>309</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>310</mn> +          </msup> +          <mo>+</mo> +          <mn>310</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>311</mn> +          </msup> +          <mo>+</mo> +          <mn>311</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>312</mn> +          </msup> +          <mo>+</mo> +          <mn>312</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>313</mn> +          </msup> +          <mo>+</mo> +          <mn>313</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>314</mn> +          </msup> +          <mo>+</mo> +          <mn>314</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>315</mn> +          </msup> +          <mo>+</mo> +          <mn>315</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>316</mn> +          </msup> +          <mo>+</mo> +          <mn>316</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>317</mn> +          </msup> +          <mo>+</mo> +          <mn>317</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>318</mn> +          </msup> +          <mo>+</mo> +          <mn>318</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>319</mn> +          </msup> +          <mo>+</mo> +          <mn>319</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>320</mn> +          </msup> +          <mo>+</mo> +          <mn>320</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>321</mn> +          </msup> +          <mo>+</mo> +          <mn>321</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>322</mn> +          </msup> +          <mo>+</mo> +          <mn>322</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>323</mn> +          </msup> +          <mo>+</mo> +          <mn>323</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>324</mn> +          </msup> +          <mo>+</mo> +          <mn>324</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>325</mn> +          </msup> +          <mo>+</mo> +          <mn>325</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>326</mn> +          </msup> +          <mo>+</mo> +          <mn>326</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>327</mn> +          </msup> +          <mo>+</mo> +          <mn>327</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>328</mn> +          </msup> +          <mo>+</mo> +          <mn>328</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>329</mn> +          </msup> +          <mo>+</mo> +          <mn>329</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>330</mn> +          </msup> +          <mo>+</mo> +          <mn>330</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>331</mn> +          </msup> +          <mo>+</mo> +          <mn>331</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>332</mn> +          </msup> +          <mo>+</mo> +          <mn>332</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>333</mn> +          </msup> +          <mo>+</mo> +          <mn>333</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>334</mn> +          </msup> +          <mo>+</mo> +          <mn>334</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>335</mn> +          </msup> +          <mo>+</mo> +          <mn>335</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>336</mn> +          </msup> +          <mo>+</mo> +          <mn>336</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>337</mn> +          </msup> +          <mo>+</mo> +          <mn>337</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>338</mn> +          </msup> +          <mo>+</mo> +          <mn>338</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>339</mn> +          </msup> +          <mo>+</mo> +          <mn>339</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>340</mn> +          </msup> +          <mo>+</mo> +          <mn>340</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>341</mn> +          </msup> +          <mo>+</mo> +          <mn>341</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>342</mn> +          </msup> +          <mo>+</mo> +          <mn>342</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>343</mn> +          </msup> +          <mo>+</mo> +          <mn>343</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>344</mn> +          </msup> +          <mo>+</mo> +          <mn>344</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>345</mn> +          </msup> +          <mo>+</mo> +          <mn>345</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>346</mn> +          </msup> +          <mo>+</mo> +          <mn>346</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>347</mn> +          </msup> +          <mo>+</mo> +          <mn>347</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>348</mn> +          </msup> +          <mo>+</mo> +          <mn>348</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>349</mn> +          </msup> +          <mo>+</mo> +          <mn>349</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>350</mn> +          </msup> +          <mo>+</mo> +          <mn>350</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>351</mn> +          </msup> +          <mo>+</mo> +          <mn>351</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>352</mn> +          </msup> +          <mo>+</mo> +          <mn>352</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>353</mn> +          </msup> +          <mo>+</mo> +          <mn>353</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>354</mn> +          </msup> +          <mo>+</mo> +          <mn>354</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>355</mn> +          </msup> +          <mo>+</mo> +          <mn>355</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>356</mn> +          </msup> +          <mo>+</mo> +          <mn>356</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>357</mn> +          </msup> +          <mo>+</mo> +          <mn>357</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>358</mn> +          </msup> +          <mo>+</mo> +          <mn>358</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>359</mn> +          </msup> +          <mo>+</mo> +          <mn>359</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>360</mn> +          </msup> +          <mo>+</mo> +          <mn>360</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>361</mn> +          </msup> +          <mo>+</mo> +          <mn>361</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>362</mn> +          </msup> +          <mo>+</mo> +          <mn>362</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>363</mn> +          </msup> +          <mo>+</mo> +          <mn>363</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>364</mn> +          </msup> +          <mo>+</mo> +          <mn>364</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>365</mn> +          </msup> +          <mo>+</mo> +          <mn>365</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>366</mn> +          </msup> +          <mo>+</mo> +          <mn>366</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>367</mn> +          </msup> +          <mo>+</mo> +          <mn>367</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>368</mn> +          </msup> +          <mo>+</mo> +          <mn>368</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>369</mn> +          </msup> +          <mo>+</mo> +          <mn>369</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>370</mn> +          </msup> +          <mo>+</mo> +          <mn>370</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>371</mn> +          </msup> +          <mo>+</mo> +          <mn>371</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>372</mn> +          </msup> +          <mo>+</mo> +          <mn>372</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>373</mn> +          </msup> +          <mo>+</mo> +          <mn>373</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>374</mn> +          </msup> +          <mo>+</mo> +          <mn>374</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>375</mn> +          </msup> +          <mo>+</mo> +          <mn>375</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>376</mn> +          </msup> +          <mo>+</mo> +          <mn>376</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>377</mn> +          </msup> +          <mo>+</mo> +          <mn>377</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>378</mn> +          </msup> +          <mo>+</mo> +          <mn>378</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>379</mn> +          </msup> +          <mo>+</mo> +          <mn>379</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>380</mn> +          </msup> +          <mo>+</mo> +          <mn>380</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>381</mn> +          </msup> +          <mo>+</mo> +          <mn>381</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>382</mn> +          </msup> +          <mo>+</mo> +          <mn>382</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>383</mn> +          </msup> +          <mo>+</mo> +          <mn>383</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>384</mn> +          </msup> +          <mo>+</mo> +          <mn>384</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>385</mn> +          </msup> +          <mo>+</mo> +          <mn>385</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>386</mn> +          </msup> +          <mo>+</mo> +          <mn>386</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>387</mn> +          </msup> +          <mo>+</mo> +          <mn>387</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>388</mn> +          </msup> +          <mo>+</mo> +          <mn>388</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>389</mn> +          </msup> +          <mo>+</mo> +          <mn>389</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>390</mn> +          </msup> +          <mo>+</mo> +          <mn>390</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>391</mn> +          </msup> +          <mo>+</mo> +          <mn>391</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>392</mn> +          </msup> +          <mo>+</mo> +          <mn>392</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>393</mn> +          </msup> +          <mo>+</mo> +          <mn>393</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>394</mn> +          </msup> +          <mo>+</mo> +          <mn>394</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>395</mn> +          </msup> +          <mo>+</mo> +          <mn>395</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>396</mn> +          </msup> +          <mo>+</mo> +          <mn>396</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>397</mn> +          </msup> +          <mo>+</mo> +          <mn>397</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>398</mn> +          </msup> +          <mo>+</mo> +          <mn>398</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>399</mn> +          </msup> +          <mo>+</mo> +          <mn>399</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>400</mn> +          </msup> +          <mo>+</mo> +          <mn>400</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>401</mn> +          </msup> +          <mo>+</mo> +          <mn>401</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>402</mn> +          </msup> +          <mo>+</mo> +          <mn>402</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>403</mn> +          </msup> +          <mo>+</mo> +          <mn>403</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>404</mn> +          </msup> +          <mo>+</mo> +          <mn>404</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>405</mn> +          </msup> +          <mo>+</mo> +          <mn>405</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>406</mn> +          </msup> +          <mo>+</mo> +          <mn>406</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>407</mn> +          </msup> +          <mo>+</mo> +          <mn>407</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>408</mn> +          </msup> +          <mo>+</mo> +          <mn>408</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>409</mn> +          </msup> +          <mo>+</mo> +          <mn>409</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>410</mn> +          </msup> +          <mo>+</mo> +          <mn>410</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>411</mn> +          </msup> +          <mo>+</mo> +          <mn>411</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>412</mn> +          </msup> +          <mo>+</mo> +          <mn>412</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>413</mn> +          </msup> +          <mo>+</mo> +          <mn>413</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>414</mn> +          </msup> +          <mo>+</mo> +          <mn>414</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>415</mn> +          </msup> +          <mo>+</mo> +          <mn>415</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>416</mn> +          </msup> +          <mo>+</mo> +          <mn>416</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>417</mn> +          </msup> +          <mo>+</mo> +          <mn>417</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>418</mn> +          </msup> +          <mo>+</mo> +          <mn>418</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>419</mn> +          </msup> +          <mo>+</mo> +          <mn>419</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>420</mn> +          </msup> +          <mo>+</mo> +          <mn>420</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>421</mn> +          </msup> +          <mo>+</mo> +          <mn>421</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>422</mn> +          </msup> +          <mo>+</mo> +          <mn>422</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>423</mn> +          </msup> +          <mo>+</mo> +          <mn>423</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>424</mn> +          </msup> +          <mo>+</mo> +          <mn>424</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>425</mn> +          </msup> +          <mo>+</mo> +          <mn>425</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>426</mn> +          </msup> +          <mo>+</mo> +          <mn>426</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>427</mn> +          </msup> +          <mo>+</mo> +          <mn>427</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>428</mn> +          </msup> +          <mo>+</mo> +          <mn>428</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>429</mn> +          </msup> +          <mo>+</mo> +          <mn>429</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>430</mn> +          </msup> +          <mo>+</mo> +          <mn>430</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>431</mn> +          </msup> +          <mo>+</mo> +          <mn>431</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>432</mn> +          </msup> +          <mo>+</mo> +          <mn>432</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>433</mn> +          </msup> +          <mo>+</mo> +          <mn>433</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>434</mn> +          </msup> +          <mo>+</mo> +          <mn>434</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>435</mn> +          </msup> +          <mo>+</mo> +          <mn>435</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>436</mn> +          </msup> +          <mo>+</mo> +          <mn>436</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>437</mn> +          </msup> +          <mo>+</mo> +          <mn>437</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>438</mn> +          </msup> +          <mo>+</mo> +          <mn>438</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>439</mn> +          </msup> +          <mo>+</mo> +          <mn>439</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>440</mn> +          </msup> +          <mo>+</mo> +          <mn>440</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>441</mn> +          </msup> +          <mo>+</mo> +          <mn>441</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>442</mn> +          </msup> +          <mo>+</mo> +          <mn>442</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>443</mn> +          </msup> +          <mo>+</mo> +          <mn>443</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>444</mn> +          </msup> +          <mo>+</mo> +          <mn>444</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>445</mn> +          </msup> +          <mo>+</mo> +          <mn>445</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>446</mn> +          </msup> +          <mo>+</mo> +          <mn>446</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>447</mn> +          </msup> +          <mo>+</mo> +          <mn>447</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>448</mn> +          </msup> +          <mo>+</mo> +          <mn>448</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>449</mn> +          </msup> +          <mo>+</mo> +          <mn>449</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>450</mn> +          </msup> +          <mo>+</mo> +          <mn>450</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>451</mn> +          </msup> +          <mo>+</mo> +          <mn>451</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>452</mn> +          </msup> +          <mo>+</mo> +          <mn>452</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>453</mn> +          </msup> +          <mo>+</mo> +          <mn>453</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>454</mn> +          </msup> +          <mo>+</mo> +          <mn>454</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>455</mn> +          </msup> +          <mo>+</mo> +          <mn>455</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>456</mn> +          </msup> +          <mo>+</mo> +          <mn>456</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>457</mn> +          </msup> +          <mo>+</mo> +          <mn>457</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>458</mn> +          </msup> +          <mo>+</mo> +          <mn>458</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>459</mn> +          </msup> +          <mo>+</mo> +          <mn>459</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>460</mn> +          </msup> +          <mo>+</mo> +          <mn>460</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>461</mn> +          </msup> +          <mo>+</mo> +          <mn>461</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>462</mn> +          </msup> +          <mo>+</mo> +          <mn>462</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>463</mn> +          </msup> +          <mo>+</mo> +          <mn>463</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>464</mn> +          </msup> +          <mo>+</mo> +          <mn>464</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>465</mn> +          </msup> +          <mo>+</mo> +          <mn>465</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>466</mn> +          </msup> +          <mo>+</mo> +          <mn>466</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>467</mn> +          </msup> +          <mo>+</mo> +          <mn>467</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>468</mn> +          </msup> +          <mo>+</mo> +          <mn>468</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>469</mn> +          </msup> +          <mo>+</mo> +          <mn>469</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>470</mn> +          </msup> +          <mo>+</mo> +          <mn>470</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>471</mn> +          </msup> +          <mo>+</mo> +          <mn>471</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>472</mn> +          </msup> +          <mo>+</mo> +          <mn>472</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>473</mn> +          </msup> +          <mo>+</mo> +          <mn>473</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>474</mn> +          </msup> +          <mo>+</mo> +          <mn>474</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>475</mn> +          </msup> +          <mo>+</mo> +          <mn>475</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>476</mn> +          </msup> +          <mo>+</mo> +          <mn>476</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>477</mn> +          </msup> +          <mo>+</mo> +          <mn>477</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>478</mn> +          </msup> +          <mo>+</mo> +          <mn>478</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>479</mn> +          </msup> +          <mo>+</mo> +          <mn>479</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>480</mn> +          </msup> +          <mo>+</mo> +          <mn>480</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>481</mn> +          </msup> +          <mo>+</mo> +          <mn>481</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>482</mn> +          </msup> +          <mo>+</mo> +          <mn>482</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>483</mn> +          </msup> +          <mo>+</mo> +          <mn>483</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>484</mn> +          </msup> +          <mo>+</mo> +          <mn>484</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>485</mn> +          </msup> +          <mo>+</mo> +          <mn>485</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>486</mn> +          </msup> +          <mo>+</mo> +          <mn>486</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>487</mn> +          </msup> +          <mo>+</mo> +          <mn>487</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>488</mn> +          </msup> +          <mo>+</mo> +          <mn>488</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>489</mn> +          </msup> +          <mo>+</mo> +          <mn>489</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>490</mn> +          </msup> +          <mo>+</mo> +          <mn>490</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>491</mn> +          </msup> +          <mo>+</mo> +          <mn>491</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>492</mn> +          </msup> +          <mo>+</mo> +          <mn>492</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>493</mn> +          </msup> +          <mo>+</mo> +          <mn>493</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>494</mn> +          </msup> +          <mo>+</mo> +          <mn>494</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>495</mn> +          </msup> +          <mo>+</mo> +          <mn>495</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>496</mn> +          </msup> +          <mo>+</mo> +          <mn>496</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>497</mn> +          </msup> +          <mo>+</mo> +          <mn>497</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>498</mn> +          </msup> +          <mo>+</mo> +          <mn>498</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>499</mn> +          </msup> +          <mo>+</mo> +          <mn>499</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>500</mn> +          </msup> +          <mo>+</mo> +          <mn>500</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>501</mn> +          </msup> +          <mo>+</mo> +          <mn>501</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>502</mn> +          </msup> +          <mo>+</mo> +          <mn>502</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>503</mn> +          </msup> +          <mo>+</mo> +          <mn>503</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>504</mn> +          </msup> +          <mo>+</mo> +          <mn>504</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>505</mn> +          </msup> +          <mo>+</mo> +          <mn>505</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>506</mn> +          </msup> +          <mo>+</mo> +          <mn>506</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>507</mn> +          </msup> +          <mo>+</mo> +          <mn>507</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>508</mn> +          </msup> +          <mo>+</mo> +          <mn>508</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>509</mn> +          </msup> +          <mo>+</mo> +          <mn>509</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>510</mn> +          </msup> +          <mo>+</mo> +          <mn>510</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>511</mn> +          </msup> +          <mo>+</mo> +          <mn>511</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>512</mn> +          </msup> +          <mo>+</mo> +          <mn>512</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>513</mn> +          </msup> +          <mo>+</mo> +          <mn>513</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>514</mn> +          </msup> +          <mo>+</mo> +          <mn>514</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>515</mn> +          </msup> +          <mo>+</mo> +          <mn>515</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>516</mn> +          </msup> +          <mo>+</mo> +          <mn>516</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>517</mn> +          </msup> +          <mo>+</mo> +          <mn>517</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>518</mn> +          </msup> +          <mo>+</mo> +          <mn>518</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>519</mn> +          </msup> +          <mo>+</mo> +          <mn>519</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>520</mn> +          </msup> +          <mo>+</mo> +          <mn>520</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>521</mn> +          </msup> +          <mo>+</mo> +          <mn>521</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>522</mn> +          </msup> +          <mo>+</mo> +          <mn>522</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>523</mn> +          </msup> +          <mo>+</mo> +          <mn>523</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>524</mn> +          </msup> +          <mo>+</mo> +          <mn>524</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>525</mn> +          </msup> +          <mo>+</mo> +          <mn>525</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>526</mn> +          </msup> +          <mo>+</mo> +          <mn>526</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>527</mn> +          </msup> +          <mo>+</mo> +          <mn>527</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>528</mn> +          </msup> +          <mo>+</mo> +          <mn>528</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>529</mn> +          </msup> +          <mo>+</mo> +          <mn>529</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>530</mn> +          </msup> +          <mo>+</mo> +          <mn>530</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>531</mn> +          </msup> +          <mo>+</mo> +          <mn>531</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>532</mn> +          </msup> +          <mo>+</mo> +          <mn>532</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>533</mn> +          </msup> +          <mo>+</mo> +          <mn>533</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>534</mn> +          </msup> +          <mo>+</mo> +          <mn>534</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>535</mn> +          </msup> +          <mo>+</mo> +          <mn>535</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>536</mn> +          </msup> +          <mo>+</mo> +          <mn>536</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>537</mn> +          </msup> +          <mo>+</mo> +          <mn>537</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>538</mn> +          </msup> +          <mo>+</mo> +          <mn>538</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>539</mn> +          </msup> +          <mo>+</mo> +          <mn>539</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>540</mn> +          </msup> +          <mo>+</mo> +          <mn>540</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>541</mn> +          </msup> +          <mo>+</mo> +          <mn>541</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>542</mn> +          </msup> +          <mo>+</mo> +          <mn>542</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>543</mn> +          </msup> +          <mo>+</mo> +          <mn>543</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>544</mn> +          </msup> +          <mo>+</mo> +          <mn>544</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>545</mn> +          </msup> +          <mo>+</mo> +          <mn>545</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>546</mn> +          </msup> +          <mo>+</mo> +          <mn>546</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>547</mn> +          </msup> +          <mo>+</mo> +          <mn>547</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>548</mn> +          </msup> +          <mo>+</mo> +          <mn>548</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>549</mn> +          </msup> +          <mo>+</mo> +          <mn>549</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>550</mn> +          </msup> +          <mo>+</mo> +          <mn>550</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>551</mn> +          </msup> +          <mo>+</mo> +          <mn>551</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>552</mn> +          </msup> +          <mo>+</mo> +          <mn>552</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>553</mn> +          </msup> +          <mo>+</mo> +          <mn>553</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>554</mn> +          </msup> +          <mo>+</mo> +          <mn>554</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>555</mn> +          </msup> +          <mo>+</mo> +          <mn>555</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>556</mn> +          </msup> +          <mo>+</mo> +          <mn>556</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>557</mn> +          </msup> +          <mo>+</mo> +          <mn>557</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>558</mn> +          </msup> +          <mo>+</mo> +          <mn>558</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>559</mn> +          </msup> +          <mo>+</mo> +          <mn>559</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>560</mn> +          </msup> +          <mo>+</mo> +          <mn>560</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>561</mn> +          </msup> +          <mo>+</mo> +          <mn>561</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>562</mn> +          </msup> +          <mo>+</mo> +          <mn>562</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>563</mn> +          </msup> +          <mo>+</mo> +          <mn>563</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>564</mn> +          </msup> +          <mo>+</mo> +          <mn>564</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>565</mn> +          </msup> +          <mo>+</mo> +          <mn>565</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>566</mn> +          </msup> +          <mo>+</mo> +          <mn>566</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>567</mn> +          </msup> +          <mo>+</mo> +          <mn>567</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>568</mn> +          </msup> +          <mo>+</mo> +          <mn>568</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>569</mn> +          </msup> +          <mo>+</mo> +          <mn>569</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>570</mn> +          </msup> +          <mo>+</mo> +          <mn>570</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>571</mn> +          </msup> +          <mo>+</mo> +          <mn>571</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>572</mn> +          </msup> +          <mo>+</mo> +          <mn>572</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>573</mn> +          </msup> +          <mo>+</mo> +          <mn>573</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>574</mn> +          </msup> +          <mo>+</mo> +          <mn>574</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>575</mn> +          </msup> +          <mo>+</mo> +          <mn>575</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>576</mn> +          </msup> +          <mo>+</mo> +          <mn>576</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>577</mn> +          </msup> +          <mo>+</mo> +          <mn>577</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>578</mn> +          </msup> +          <mo>+</mo> +          <mn>578</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>579</mn> +          </msup> +          <mo>+</mo> +          <mn>579</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>580</mn> +          </msup> +          <mo>+</mo> +          <mn>580</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>581</mn> +          </msup> +          <mo>+</mo> +          <mn>581</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>582</mn> +          </msup> +          <mo>+</mo> +          <mn>582</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>583</mn> +          </msup> +          <mo>+</mo> +          <mn>583</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>584</mn> +          </msup> +          <mo>+</mo> +          <mn>584</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>585</mn> +          </msup> +          <mo>+</mo> +          <mn>585</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>586</mn> +          </msup> +          <mo>+</mo> +          <mn>586</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>587</mn> +          </msup> +          <mo>+</mo> +          <mn>587</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>588</mn> +          </msup> +          <mo>+</mo> +          <mn>588</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>589</mn> +          </msup> +          <mo>+</mo> +          <mn>589</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>590</mn> +          </msup> +          <mo>+</mo> +          <mn>590</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>591</mn> +          </msup> +          <mo>+</mo> +          <mn>591</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>592</mn> +          </msup> +          <mo>+</mo> +          <mn>592</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>593</mn> +          </msup> +          <mo>+</mo> +          <mn>593</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>594</mn> +          </msup> +          <mo>+</mo> +          <mn>594</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>595</mn> +          </msup> +          <mo>+</mo> +          <mn>595</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>596</mn> +          </msup> +          <mo>+</mo> +          <mn>596</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>597</mn> +          </msup> +          <mo>+</mo> +          <mn>597</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>598</mn> +          </msup> +          <mo>+</mo> +          <mn>598</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>599</mn> +          </msup> +          <mo>+</mo> +          <mn>599</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>600</mn> +          </msup> +          <mo>+</mo> +          <mn>600</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>601</mn> +          </msup> +          <mo>+</mo> +          <mn>601</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>602</mn> +          </msup> +          <mo>+</mo> +          <mn>602</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>603</mn> +          </msup> +          <mo>+</mo> +          <mn>603</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>604</mn> +          </msup> +          <mo>+</mo> +          <mn>604</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>605</mn> +          </msup> +          <mo>+</mo> +          <mn>605</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>606</mn> +          </msup> +          <mo>+</mo> +          <mn>606</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>607</mn> +          </msup> +          <mo>+</mo> +          <mn>607</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>608</mn> +          </msup> +          <mo>+</mo> +          <mn>608</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>609</mn> +          </msup> +          <mo>+</mo> +          <mn>609</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>610</mn> +          </msup> +          <mo>+</mo> +          <mn>610</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>611</mn> +          </msup> +          <mo>+</mo> +          <mn>611</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>612</mn> +          </msup> +          <mo>+</mo> +          <mn>612</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>613</mn> +          </msup> +          <mo>+</mo> +          <mn>613</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>614</mn> +          </msup> +          <mo>+</mo> +          <mn>614</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>615</mn> +          </msup> +          <mo>+</mo> +          <mn>615</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>616</mn> +          </msup> +          <mo>+</mo> +          <mn>616</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>617</mn> +          </msup> +          <mo>+</mo> +          <mn>617</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>618</mn> +          </msup> +          <mo>+</mo> +          <mn>618</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>619</mn> +          </msup> +          <mo>+</mo> +          <mn>619</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>620</mn> +          </msup> +          <mo>+</mo> +          <mn>620</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>621</mn> +          </msup> +          <mo>+</mo> +          <mn>621</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>622</mn> +          </msup> +          <mo>+</mo> +          <mn>622</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>623</mn> +          </msup> +          <mo>+</mo> +          <mn>623</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>624</mn> +          </msup> +          <mo>+</mo> +          <mn>624</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>625</mn> +          </msup> +          <mo>+</mo> +          <mn>625</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>626</mn> +          </msup> +          <mo>+</mo> +          <mn>626</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>627</mn> +          </msup> +          <mo>+</mo> +          <mn>627</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>628</mn> +          </msup> +          <mo>+</mo> +          <mn>628</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>629</mn> +          </msup> +          <mo>+</mo> +          <mn>629</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>630</mn> +          </msup> +          <mo>+</mo> +          <mn>630</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>631</mn> +          </msup> +          <mo>+</mo> +          <mn>631</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>632</mn> +          </msup> +          <mo>+</mo> +          <mn>632</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>633</mn> +          </msup> +          <mo>+</mo> +          <mn>633</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>634</mn> +          </msup> +          <mo>+</mo> +          <mn>634</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>635</mn> +          </msup> +          <mo>+</mo> +          <mn>635</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>636</mn> +          </msup> +          <mo>+</mo> +          <mn>636</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>637</mn> +          </msup> +          <mo>+</mo> +          <mn>637</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>638</mn> +          </msup> +          <mo>+</mo> +          <mn>638</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>639</mn> +          </msup> +          <mo>+</mo> +          <mn>639</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>640</mn> +          </msup> +          <mo>+</mo> +          <mn>640</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>641</mn> +          </msup> +          <mo>+</mo> +          <mn>641</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>642</mn> +          </msup> +          <mo>+</mo> +          <mn>642</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>643</mn> +          </msup> +          <mo>+</mo> +          <mn>643</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>644</mn> +          </msup> +          <mo>+</mo> +          <mn>644</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>645</mn> +          </msup> +          <mo>+</mo> +          <mn>645</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>646</mn> +          </msup> +          <mo>+</mo> +          <mn>646</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>647</mn> +          </msup> +          <mo>+</mo> +          <mn>647</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>648</mn> +          </msup> +          <mo>+</mo> +          <mn>648</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>649</mn> +          </msup> +          <mo>+</mo> +          <mn>649</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>650</mn> +          </msup> +          <mo>+</mo> +          <mn>650</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>651</mn> +          </msup> +          <mo>+</mo> +          <mn>651</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>652</mn> +          </msup> +          <mo>+</mo> +          <mn>652</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>653</mn> +          </msup> +          <mo>+</mo> +          <mn>653</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>654</mn> +          </msup> +          <mo>+</mo> +          <mn>654</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>655</mn> +          </msup> +          <mo>+</mo> +          <mn>655</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>656</mn> +          </msup> +          <mo>+</mo> +          <mn>656</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>657</mn> +          </msup> +          <mo>+</mo> +          <mn>657</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>658</mn> +          </msup> +          <mo>+</mo> +          <mn>658</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>659</mn> +          </msup> +          <mo>+</mo> +          <mn>659</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>660</mn> +          </msup> +          <mo>+</mo> +          <mn>660</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>661</mn> +          </msup> +          <mo>+</mo> +          <mn>661</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>662</mn> +          </msup> +          <mo>+</mo> +          <mn>662</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>663</mn> +          </msup> +          <mo>+</mo> +          <mn>663</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>664</mn> +          </msup> +          <mo>+</mo> +          <mn>664</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>665</mn> +          </msup> +          <mo>+</mo> +          <mn>665</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>666</mn> +          </msup> +          <mo>+</mo> +          <mn>666</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>667</mn> +          </msup> +          <mo>+</mo> +          <mn>667</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>668</mn> +          </msup> +          <mo>+</mo> +          <mn>668</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>669</mn> +          </msup> +          <mo>+</mo> +          <mn>669</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>670</mn> +          </msup> +          <mo>+</mo> +          <mn>670</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>671</mn> +          </msup> +          <mo>+</mo> +          <mn>671</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>672</mn> +          </msup> +          <mo>+</mo> +          <mn>672</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>673</mn> +          </msup> +          <mo>+</mo> +          <mn>673</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>674</mn> +          </msup> +          <mo>+</mo> +          <mn>674</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>675</mn> +          </msup> +          <mo>+</mo> +          <mn>675</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>676</mn> +          </msup> +          <mo>+</mo> +          <mn>676</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>677</mn> +          </msup> +          <mo>+</mo> +          <mn>677</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>678</mn> +          </msup> +          <mo>+</mo> +          <mn>678</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>679</mn> +          </msup> +          <mo>+</mo> +          <mn>679</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>680</mn> +          </msup> +          <mo>+</mo> +          <mn>680</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>681</mn> +          </msup> +          <mo>+</mo> +          <mn>681</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>682</mn> +          </msup> +          <mo>+</mo> +          <mn>682</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>683</mn> +          </msup> +          <mo>+</mo> +          <mn>683</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>684</mn> +          </msup> +          <mo>+</mo> +          <mn>684</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>685</mn> +          </msup> +          <mo>+</mo> +          <mn>685</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>686</mn> +          </msup> +          <mo>+</mo> +          <mn>686</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>687</mn> +          </msup> +          <mo>+</mo> +          <mn>687</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>688</mn> +          </msup> +          <mo>+</mo> +          <mn>688</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>689</mn> +          </msup> +          <mo>+</mo> +          <mn>689</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>690</mn> +          </msup> +          <mo>+</mo> +          <mn>690</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>691</mn> +          </msup> +          <mo>+</mo> +          <mn>691</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>692</mn> +          </msup> +          <mo>+</mo> +          <mn>692</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>693</mn> +          </msup> +          <mo>+</mo> +          <mn>693</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>694</mn> +          </msup> +          <mo>+</mo> +          <mn>694</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>695</mn> +          </msup> +          <mo>+</mo> +          <mn>695</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>696</mn> +          </msup> +          <mo>+</mo> +          <mn>696</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>697</mn> +          </msup> +          <mo>+</mo> +          <mn>697</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>698</mn> +          </msup> +          <mo>+</mo> +          <mn>698</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>699</mn> +          </msup> +          <mo>+</mo> +          <mn>699</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>700</mn> +          </msup> +          <mo>+</mo> +          <mn>700</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>701</mn> +          </msup> +          <mo>+</mo> +          <mn>701</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>702</mn> +          </msup> +          <mo>+</mo> +          <mn>702</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>703</mn> +          </msup> +          <mo>+</mo> +          <mn>703</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>704</mn> +          </msup> +          <mo>+</mo> +          <mn>704</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>705</mn> +          </msup> +          <mo>+</mo> +          <mn>705</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>706</mn> +          </msup> +          <mo>+</mo> +          <mn>706</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>707</mn> +          </msup> +          <mo>+</mo> +          <mn>707</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>708</mn> +          </msup> +          <mo>+</mo> +          <mn>708</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>709</mn> +          </msup> +          <mo>+</mo> +          <mn>709</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>710</mn> +          </msup> +          <mo>+</mo> +          <mn>710</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>711</mn> +          </msup> +          <mo>+</mo> +          <mn>711</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>712</mn> +          </msup> +          <mo>+</mo> +          <mn>712</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>713</mn> +          </msup> +          <mo>+</mo> +          <mn>713</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>714</mn> +          </msup> +          <mo>+</mo> +          <mn>714</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>715</mn> +          </msup> +          <mo>+</mo> +          <mn>715</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>716</mn> +          </msup> +          <mo>+</mo> +          <mn>716</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>717</mn> +          </msup> +          <mo>+</mo> +          <mn>717</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>718</mn> +          </msup> +          <mo>+</mo> +          <mn>718</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>719</mn> +          </msup> +          <mo>+</mo> +          <mn>719</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>720</mn> +          </msup> +          <mo>+</mo> +          <mn>720</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>721</mn> +          </msup> +          <mo>+</mo> +          <mn>721</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>722</mn> +          </msup> +          <mo>+</mo> +          <mn>722</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>723</mn> +          </msup> +          <mo>+</mo> +          <mn>723</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>724</mn> +          </msup> +          <mo>+</mo> +          <mn>724</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>725</mn> +          </msup> +          <mo>+</mo> +          <mn>725</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>726</mn> +          </msup> +          <mo>+</mo> +          <mn>726</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>727</mn> +          </msup> +          <mo>+</mo> +          <mn>727</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>728</mn> +          </msup> +          <mo>+</mo> +          <mn>728</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>729</mn> +          </msup> +          <mo>+</mo> +          <mn>729</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>730</mn> +          </msup> +          <mo>+</mo> +          <mn>730</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>731</mn> +          </msup> +          <mo>+</mo> +          <mn>731</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>732</mn> +          </msup> +          <mo>+</mo> +          <mn>732</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>733</mn> +          </msup> +          <mo>+</mo> +          <mn>733</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>734</mn> +          </msup> +          <mo>+</mo> +          <mn>734</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>735</mn> +          </msup> +          <mo>+</mo> +          <mn>735</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>736</mn> +          </msup> +          <mo>+</mo> +          <mn>736</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>737</mn> +          </msup> +          <mo>+</mo> +          <mn>737</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>738</mn> +          </msup> +          <mo>+</mo> +          <mn>738</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>739</mn> +          </msup> +          <mo>+</mo> +          <mn>739</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>740</mn> +          </msup> +          <mo>+</mo> +          <mn>740</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>741</mn> +          </msup> +          <mo>+</mo> +          <mn>741</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>742</mn> +          </msup> +          <mo>+</mo> +          <mn>742</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>743</mn> +          </msup> +          <mo>+</mo> +          <mn>743</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>744</mn> +          </msup> +          <mo>+</mo> +          <mn>744</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>745</mn> +          </msup> +          <mo>+</mo> +          <mn>745</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>746</mn> +          </msup> +          <mo>+</mo> +          <mn>746</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>747</mn> +          </msup> +          <mo>+</mo> +          <mn>747</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>748</mn> +          </msup> +          <mo>+</mo> +          <mn>748</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>749</mn> +          </msup> +          <mo>+</mo> +          <mn>749</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>750</mn> +          </msup> +          <mo>+</mo> +          <mn>750</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>751</mn> +          </msup> +          <mo>+</mo> +          <mn>751</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>752</mn> +          </msup> +          <mo>+</mo> +          <mn>752</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>753</mn> +          </msup> +          <mo>+</mo> +          <mn>753</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>754</mn> +          </msup> +          <mo>+</mo> +          <mn>754</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>755</mn> +          </msup> +          <mo>+</mo> +          <mn>755</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>756</mn> +          </msup> +          <mo>+</mo> +          <mn>756</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>757</mn> +          </msup> +          <mo>+</mo> +          <mn>757</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>758</mn> +          </msup> +          <mo>+</mo> +          <mn>758</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>759</mn> +          </msup> +          <mo>+</mo> +          <mn>759</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>760</mn> +          </msup> +          <mo>+</mo> +          <mn>760</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>761</mn> +          </msup> +          <mo>+</mo> +          <mn>761</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>762</mn> +          </msup> +          <mo>+</mo> +          <mn>762</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>763</mn> +          </msup> +          <mo>+</mo> +          <mn>763</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>764</mn> +          </msup> +          <mo>+</mo> +          <mn>764</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>765</mn> +          </msup> +          <mo>+</mo> +          <mn>765</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>766</mn> +          </msup> +          <mo>+</mo> +          <mn>766</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>767</mn> +          </msup> +          <mo>+</mo> +          <mn>767</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>768</mn> +          </msup> +          <mo>+</mo> +          <mn>768</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>769</mn> +          </msup> +          <mo>+</mo> +          <mn>769</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>770</mn> +          </msup> +          <mo>+</mo> +          <mn>770</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>771</mn> +          </msup> +          <mo>+</mo> +          <mn>771</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>772</mn> +          </msup> +          <mo>+</mo> +          <mn>772</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>773</mn> +          </msup> +          <mo>+</mo> +          <mn>773</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>774</mn> +          </msup> +          <mo>+</mo> +          <mn>774</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>775</mn> +          </msup> +          <mo>+</mo> +          <mn>775</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>776</mn> +          </msup> +          <mo>+</mo> +          <mn>776</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>777</mn> +          </msup> +          <mo>+</mo> +          <mn>777</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>778</mn> +          </msup> +          <mo>+</mo> +          <mn>778</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>779</mn> +          </msup> +          <mo>+</mo> +          <mn>779</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>780</mn> +          </msup> +          <mo>+</mo> +          <mn>780</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>781</mn> +          </msup> +          <mo>+</mo> +          <mn>781</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>782</mn> +          </msup> +          <mo>+</mo> +          <mn>782</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>783</mn> +          </msup> +          <mo>+</mo> +          <mn>783</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>784</mn> +          </msup> +          <mo>+</mo> +          <mn>784</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>785</mn> +          </msup> +          <mo>+</mo> +          <mn>785</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>786</mn> +          </msup> +          <mo>+</mo> +          <mn>786</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>787</mn> +          </msup> +          <mo>+</mo> +          <mn>787</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>788</mn> +          </msup> +          <mo>+</mo> +          <mn>788</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>789</mn> +          </msup> +          <mo>+</mo> +          <mn>789</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>790</mn> +          </msup> +          <mo>+</mo> +          <mn>790</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>791</mn> +          </msup> +          <mo>+</mo> +          <mn>791</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>792</mn> +          </msup> +          <mo>+</mo> +          <mn>792</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>793</mn> +          </msup> +          <mo>+</mo> +          <mn>793</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>794</mn> +          </msup> +          <mo>+</mo> +          <mn>794</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>795</mn> +          </msup> +          <mo>+</mo> +          <mn>795</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>796</mn> +          </msup> +          <mo>+</mo> +          <mn>796</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>797</mn> +          </msup> +          <mo>+</mo> +          <mn>797</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>798</mn> +          </msup> +          <mo>+</mo> +          <mn>798</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>799</mn> +          </msup> +          <mo>+</mo> +          <mn>799</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>800</mn> +          </msup> +          <mo>+</mo> +          <mn>800</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>801</mn> +          </msup> +          <mo>+</mo> +          <mn>801</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>802</mn> +          </msup> +          <mo>+</mo> +          <mn>802</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>803</mn> +          </msup> +          <mo>+</mo> +          <mn>803</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>804</mn> +          </msup> +          <mo>+</mo> +          <mn>804</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>805</mn> +          </msup> +          <mo>+</mo> +          <mn>805</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>806</mn> +          </msup> +          <mo>+</mo> +          <mn>806</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>807</mn> +          </msup> +          <mo>+</mo> +          <mn>807</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>808</mn> +          </msup> +          <mo>+</mo> +          <mn>808</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>809</mn> +          </msup> +          <mo>+</mo> +          <mn>809</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>810</mn> +          </msup> +          <mo>+</mo> +          <mn>810</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>811</mn> +          </msup> +          <mo>+</mo> +          <mn>811</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>812</mn> +          </msup> +          <mo>+</mo> +          <mn>812</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>813</mn> +          </msup> +          <mo>+</mo> +          <mn>813</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>814</mn> +          </msup> +          <mo>+</mo> +          <mn>814</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>815</mn> +          </msup> +          <mo>+</mo> +          <mn>815</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>816</mn> +          </msup> +          <mo>+</mo> +          <mn>816</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>817</mn> +          </msup> +          <mo>+</mo> +          <mn>817</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>818</mn> +          </msup> +          <mo>+</mo> +          <mn>818</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>819</mn> +          </msup> +          <mo>+</mo> +          <mn>819</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>820</mn> +          </msup> +          <mo>+</mo> +          <mn>820</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>821</mn> +          </msup> +          <mo>+</mo> +          <mn>821</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>822</mn> +          </msup> +          <mo>+</mo> +          <mn>822</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>823</mn> +          </msup> +          <mo>+</mo> +          <mn>823</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>824</mn> +          </msup> +          <mo>+</mo> +          <mn>824</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>825</mn> +          </msup> +          <mo>+</mo> +          <mn>825</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>826</mn> +          </msup> +          <mo>+</mo> +          <mn>826</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>827</mn> +          </msup> +          <mo>+</mo> +          <mn>827</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>828</mn> +          </msup> +          <mo>+</mo> +          <mn>828</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>829</mn> +          </msup> +          <mo>+</mo> +          <mn>829</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>830</mn> +          </msup> +          <mo>+</mo> +          <mn>830</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>831</mn> +          </msup> +          <mo>+</mo> +          <mn>831</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>832</mn> +          </msup> +          <mo>+</mo> +          <mn>832</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>833</mn> +          </msup> +          <mo>+</mo> +          <mn>833</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>834</mn> +          </msup> +          <mo>+</mo> +          <mn>834</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>835</mn> +          </msup> +          <mo>+</mo> +          <mn>835</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>836</mn> +          </msup> +          <mo>+</mo> +          <mn>836</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>837</mn> +          </msup> +          <mo>+</mo> +          <mn>837</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>838</mn> +          </msup> +          <mo>+</mo> +          <mn>838</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>839</mn> +          </msup> +          <mo>+</mo> +          <mn>839</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>840</mn> +          </msup> +          <mo>+</mo> +          <mn>840</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>841</mn> +          </msup> +          <mo>+</mo> +          <mn>841</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>842</mn> +          </msup> +          <mo>+</mo> +          <mn>842</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>843</mn> +          </msup> +          <mo>+</mo> +          <mn>843</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>844</mn> +          </msup> +          <mo>+</mo> +          <mn>844</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>845</mn> +          </msup> +          <mo>+</mo> +          <mn>845</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>846</mn> +          </msup> +          <mo>+</mo> +          <mn>846</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>847</mn> +          </msup> +          <mo>+</mo> +          <mn>847</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>848</mn> +          </msup> +          <mo>+</mo> +          <mn>848</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>849</mn> +          </msup> +          <mo>+</mo> +          <mn>849</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>850</mn> +          </msup> +          <mo>+</mo> +          <mn>850</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>851</mn> +          </msup> +          <mo>+</mo> +          <mn>851</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>852</mn> +          </msup> +          <mo>+</mo> +          <mn>852</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>853</mn> +          </msup> +          <mo>+</mo> +          <mn>853</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>854</mn> +          </msup> +          <mo>+</mo> +          <mn>854</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>855</mn> +          </msup> +          <mo>+</mo> +          <mn>855</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>856</mn> +          </msup> +          <mo>+</mo> +          <mn>856</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>857</mn> +          </msup> +          <mo>+</mo> +          <mn>857</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>858</mn> +          </msup> +          <mo>+</mo> +          <mn>858</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>859</mn> +          </msup> +          <mo>+</mo> +          <mn>859</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>860</mn> +          </msup> +          <mo>+</mo> +          <mn>860</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>861</mn> +          </msup> +          <mo>+</mo> +          <mn>861</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>862</mn> +          </msup> +          <mo>+</mo> +          <mn>862</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>863</mn> +          </msup> +          <mo>+</mo> +          <mn>863</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>864</mn> +          </msup> +          <mo>+</mo> +          <mn>864</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>865</mn> +          </msup> +          <mo>+</mo> +          <mn>865</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>866</mn> +          </msup> +          <mo>+</mo> +          <mn>866</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>867</mn> +          </msup> +          <mo>+</mo> +          <mn>867</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>868</mn> +          </msup> +          <mo>+</mo> +          <mn>868</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>869</mn> +          </msup> +          <mo>+</mo> +          <mn>869</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>870</mn> +          </msup> +          <mo>+</mo> +          <mn>870</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>871</mn> +          </msup> +          <mo>+</mo> +          <mn>871</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>872</mn> +          </msup> +          <mo>+</mo> +          <mn>872</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>873</mn> +          </msup> +          <mo>+</mo> +          <mn>873</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>874</mn> +          </msup> +          <mo>+</mo> +          <mn>874</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>875</mn> +          </msup> +          <mo>+</mo> +          <mn>875</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>876</mn> +          </msup> +          <mo>+</mo> +          <mn>876</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>877</mn> +          </msup> +          <mo>+</mo> +          <mn>877</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>878</mn> +          </msup> +          <mo>+</mo> +          <mn>878</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>879</mn> +          </msup> +          <mo>+</mo> +          <mn>879</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>880</mn> +          </msup> +          <mo>+</mo> +          <mn>880</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>881</mn> +          </msup> +          <mo>+</mo> +          <mn>881</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>882</mn> +          </msup> +          <mo>+</mo> +          <mn>882</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>883</mn> +          </msup> +          <mo>+</mo> +          <mn>883</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>884</mn> +          </msup> +          <mo>+</mo> +          <mn>884</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>885</mn> +          </msup> +          <mo>+</mo> +          <mn>885</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>886</mn> +          </msup> +          <mo>+</mo> +          <mn>886</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>887</mn> +          </msup> +          <mo>+</mo> +          <mn>887</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>888</mn> +          </msup> +          <mo>+</mo> +          <mn>888</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>889</mn> +          </msup> +          <mo>+</mo> +          <mn>889</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>890</mn> +          </msup> +          <mo>+</mo> +          <mn>890</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>891</mn> +          </msup> +          <mo>+</mo> +          <mn>891</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>892</mn> +          </msup> +          <mo>+</mo> +          <mn>892</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>893</mn> +          </msup> +          <mo>+</mo> +          <mn>893</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>894</mn> +          </msup> +          <mo>+</mo> +          <mn>894</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>895</mn> +          </msup> +          <mo>+</mo> +          <mn>895</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>896</mn> +          </msup> +          <mo>+</mo> +          <mn>896</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>897</mn> +          </msup> +          <mo>+</mo> +          <mn>897</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>898</mn> +          </msup> +          <mo>+</mo> +          <mn>898</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>899</mn> +          </msup> +          <mo>+</mo> +          <mn>899</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>900</mn> +          </msup> +          <mo>+</mo> +          <mn>900</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>901</mn> +          </msup> +          <mo>+</mo> +          <mn>901</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>902</mn> +          </msup> +          <mo>+</mo> +          <mn>902</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>903</mn> +          </msup> +          <mo>+</mo> +          <mn>903</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>904</mn> +          </msup> +          <mo>+</mo> +          <mn>904</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>905</mn> +          </msup> +          <mo>+</mo> +          <mn>905</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>906</mn> +          </msup> +          <mo>+</mo> +          <mn>906</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>907</mn> +          </msup> +          <mo>+</mo> +          <mn>907</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>908</mn> +          </msup> +          <mo>+</mo> +          <mn>908</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>909</mn> +          </msup> +          <mo>+</mo> +          <mn>909</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>910</mn> +          </msup> +          <mo>+</mo> +          <mn>910</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>911</mn> +          </msup> +          <mo>+</mo> +          <mn>911</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>912</mn> +          </msup> +          <mo>+</mo> +          <mn>912</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>913</mn> +          </msup> +          <mo>+</mo> +          <mn>913</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>914</mn> +          </msup> +          <mo>+</mo> +          <mn>914</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>915</mn> +          </msup> +          <mo>+</mo> +          <mn>915</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>916</mn> +          </msup> +          <mo>+</mo> +          <mn>916</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>917</mn> +          </msup> +          <mo>+</mo> +          <mn>917</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>918</mn> +          </msup> +          <mo>+</mo> +          <mn>918</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>919</mn> +          </msup> +          <mo>+</mo> +          <mn>919</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>920</mn> +          </msup> +          <mo>+</mo> +          <mn>920</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>921</mn> +          </msup> +          <mo>+</mo> +          <mn>921</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>922</mn> +          </msup> +          <mo>+</mo> +          <mn>922</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>923</mn> +          </msup> +          <mo>+</mo> +          <mn>923</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>924</mn> +          </msup> +          <mo>+</mo> +          <mn>924</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>925</mn> +          </msup> +          <mo>+</mo> +          <mn>925</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>926</mn> +          </msup> +          <mo>+</mo> +          <mn>926</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>927</mn> +          </msup> +          <mo>+</mo> +          <mn>927</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>928</mn> +          </msup> +          <mo>+</mo> +          <mn>928</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>929</mn> +          </msup> +          <mo>+</mo> +          <mn>929</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>930</mn> +          </msup> +          <mo>+</mo> +          <mn>930</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>931</mn> +          </msup> +          <mo>+</mo> +          <mn>931</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>932</mn> +          </msup> +          <mo>+</mo> +          <mn>932</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>933</mn> +          </msup> +          <mo>+</mo> +          <mn>933</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>934</mn> +          </msup> +          <mo>+</mo> +          <mn>934</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>935</mn> +          </msup> +          <mo>+</mo> +          <mn>935</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>936</mn> +          </msup> +          <mo>+</mo> +          <mn>936</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>937</mn> +          </msup> +          <mo>+</mo> +          <mn>937</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>938</mn> +          </msup> +          <mo>+</mo> +          <mn>938</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>939</mn> +          </msup> +          <mo>+</mo> +          <mn>939</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>940</mn> +          </msup> +          <mo>+</mo> +          <mn>940</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>941</mn> +          </msup> +          <mo>+</mo> +          <mn>941</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>942</mn> +          </msup> +          <mo>+</mo> +          <mn>942</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>943</mn> +          </msup> +          <mo>+</mo> +          <mn>943</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>944</mn> +          </msup> +          <mo>+</mo> +          <mn>944</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>945</mn> +          </msup> +          <mo>+</mo> +          <mn>945</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>946</mn> +          </msup> +          <mo>+</mo> +          <mn>946</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>947</mn> +          </msup> +          <mo>+</mo> +          <mn>947</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>948</mn> +          </msup> +          <mo>+</mo> +          <mn>948</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>949</mn> +          </msup> +          <mo>+</mo> +          <mn>949</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>950</mn> +          </msup> +          <mo>+</mo> +          <mn>950</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>951</mn> +          </msup> +          <mo>+</mo> +          <mn>951</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>952</mn> +          </msup> +          <mo>+</mo> +          <mn>952</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>953</mn> +          </msup> +          <mo>+</mo> +          <mn>953</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>954</mn> +          </msup> +          <mo>+</mo> +          <mn>954</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>955</mn> +          </msup> +          <mo>+</mo> +          <mn>955</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>956</mn> +          </msup> +          <mo>+</mo> +          <mn>956</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>957</mn> +          </msup> +          <mo>+</mo> +          <mn>957</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>958</mn> +          </msup> +          <mo>+</mo> +          <mn>958</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>959</mn> +          </msup> +          <mo>+</mo> +          <mn>959</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>960</mn> +          </msup> +          <mo>+</mo> +          <mn>960</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>961</mn> +          </msup> +          <mo>+</mo> +          <mn>961</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>962</mn> +          </msup> +          <mo>+</mo> +          <mn>962</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>963</mn> +          </msup> +          <mo>+</mo> +          <mn>963</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>964</mn> +          </msup> +          <mo>+</mo> +          <mn>964</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>965</mn> +          </msup> +          <mo>+</mo> +          <mn>965</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>966</mn> +          </msup> +          <mo>+</mo> +          <mn>966</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>967</mn> +          </msup> +          <mo>+</mo> +          <mn>967</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>968</mn> +          </msup> +          <mo>+</mo> +          <mn>968</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>969</mn> +          </msup> +          <mo>+</mo> +          <mn>969</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>970</mn> +          </msup> +          <mo>+</mo> +          <mn>970</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>971</mn> +          </msup> +          <mo>+</mo> +          <mn>971</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>972</mn> +          </msup> +          <mo>+</mo> +          <mn>972</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>973</mn> +          </msup> +          <mo>+</mo> +          <mn>973</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>974</mn> +          </msup> +          <mo>+</mo> +          <mn>974</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>975</mn> +          </msup> +          <mo>+</mo> +          <mn>975</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>976</mn> +          </msup> +          <mo>+</mo> +          <mn>976</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>977</mn> +          </msup> +          <mo>+</mo> +          <mn>977</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>978</mn> +          </msup> +          <mo>+</mo> +          <mn>978</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>979</mn> +          </msup> +          <mo>+</mo> +          <mn>979</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>980</mn> +          </msup> +          <mo>+</mo> +          <mn>980</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>981</mn> +          </msup> +          <mo>+</mo> +          <mn>981</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>982</mn> +          </msup> +          <mo>+</mo> +          <mn>982</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>983</mn> +          </msup> +          <mo>+</mo> +          <mn>983</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>984</mn> +          </msup> +          <mo>+</mo> +          <mn>984</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>985</mn> +          </msup> +          <mo>+</mo> +          <mn>985</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>986</mn> +          </msup> +          <mo>+</mo> +          <mn>986</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>987</mn> +          </msup> +          <mo>+</mo> +          <mn>987</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>988</mn> +          </msup> +          <mo>+</mo> +          <mn>988</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>989</mn> +          </msup> +          <mo>+</mo> +          <mn>989</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>990</mn> +          </msup> +          <mo>+</mo> +          <mn>990</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>991</mn> +          </msup> +          <mo>+</mo> +          <mn>991</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>992</mn> +          </msup> +          <mo>+</mo> +          <mn>992</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>993</mn> +          </msup> +          <mo>+</mo> +          <mn>993</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>994</mn> +          </msup> +          <mo>+</mo> +          <mn>994</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>995</mn> +          </msup> +          <mo>+</mo> +          <mn>995</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>996</mn> +          </msup> +          <mo>+</mo> +          <mn>996</mn> +          <mo>=</mo> +          <mi>&#x003B1;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>997</mn> +          </msup> +          <mo>+</mo> +          <mn>997</mn> +          <mo>=</mo> +          <mi>&#x003B2;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>998</mn> +          </msup> +          <mo>+</mo> +          <mn>998</mn> +          <mo>=</mo> +          <mi>&#x003B3;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +      <mtd>+        <mtext>Consider the equation&#x00A0;</mtext> +        <mrow>+          <msup>+            <mi>x</mi> +            <mn>999</mn> +          </msup> +          <mo>+</mo> +          <mn>999</mn> +          <mo>=</mo> +          <mi>&#x003B4;</mi> +        </mrow> +        <mtext>.</mtext> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft+    , AlignLeft+    , AlignLeft+    , AlignLeft+    , AlignLeft+    , AlignLeft+    , AlignLeft+    , AlignLeft+    , AlignLeft+    , AlignLeft+    ]+    [ [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "0")+                , ESymbol Bin "+"+                , ENumber "0"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "1")+                , ESymbol Bin "+"+                , ENumber "1"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "2")+                , ESymbol Bin "+"+                , ENumber "2"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "3")+                , ESymbol Bin "+"+                , ENumber "3"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "4")+                , ESymbol Bin "+"+                , ENumber "4"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "5")+                , ESymbol Bin "+"+                , ENumber "5"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "6")+                , ESymbol Bin "+"+                , ENumber "6"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "7")+                , ESymbol Bin "+"+                , ENumber "7"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "8")+                , ESymbol Bin "+"+                , ENumber "8"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "9")+                , ESymbol Bin "+"+                , ENumber "9"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "10")+                , ESymbol Bin "+"+                , ENumber "10"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "11")+                , ESymbol Bin "+"+                , ENumber "11"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "12")+                , ESymbol Bin "+"+                , ENumber "12"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "13")+                , ESymbol Bin "+"+                , ENumber "13"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "14")+                , ESymbol Bin "+"+                , ENumber "14"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "15")+                , ESymbol Bin "+"+                , ENumber "15"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "16")+                , ESymbol Bin "+"+                , ENumber "16"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "17")+                , ESymbol Bin "+"+                , ENumber "17"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "18")+                , ESymbol Bin "+"+                , ENumber "18"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "19")+                , ESymbol Bin "+"+                , ENumber "19"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "20")+                , ESymbol Bin "+"+                , ENumber "20"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "21")+                , ESymbol Bin "+"+                , ENumber "21"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "22")+                , ESymbol Bin "+"+                , ENumber "22"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "23")+                , ESymbol Bin "+"+                , ENumber "23"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "24")+                , ESymbol Bin "+"+                , ENumber "24"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "25")+                , ESymbol Bin "+"+                , ENumber "25"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "26")+                , ESymbol Bin "+"+                , ENumber "26"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "27")+                , ESymbol Bin "+"+                , ENumber "27"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "28")+                , ESymbol Bin "+"+                , ENumber "28"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "29")+                , ESymbol Bin "+"+                , ENumber "29"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "30")+                , ESymbol Bin "+"+                , ENumber "30"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "31")+                , ESymbol Bin "+"+                , ENumber "31"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "32")+                , ESymbol Bin "+"+                , ENumber "32"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "33")+                , ESymbol Bin "+"+                , ENumber "33"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "34")+                , ESymbol Bin "+"+                , ENumber "34"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "35")+                , ESymbol Bin "+"+                , ENumber "35"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "36")+                , ESymbol Bin "+"+                , ENumber "36"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "37")+                , ESymbol Bin "+"+                , ENumber "37"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "38")+                , ESymbol Bin "+"+                , ENumber "38"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "39")+                , ESymbol Bin "+"+                , ENumber "39"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "40")+                , ESymbol Bin "+"+                , ENumber "40"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "41")+                , ESymbol Bin "+"+                , ENumber "41"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "42")+                , ESymbol Bin "+"+                , ENumber "42"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "43")+                , ESymbol Bin "+"+                , ENumber "43"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "44")+                , ESymbol Bin "+"+                , ENumber "44"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "45")+                , ESymbol Bin "+"+                , ENumber "45"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "46")+                , ESymbol Bin "+"+                , ENumber "46"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "47")+                , ESymbol Bin "+"+                , ENumber "47"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "48")+                , ESymbol Bin "+"+                , ENumber "48"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "49")+                , ESymbol Bin "+"+                , ENumber "49"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "50")+                , ESymbol Bin "+"+                , ENumber "50"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "51")+                , ESymbol Bin "+"+                , ENumber "51"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "52")+                , ESymbol Bin "+"+                , ENumber "52"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "53")+                , ESymbol Bin "+"+                , ENumber "53"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "54")+                , ESymbol Bin "+"+                , ENumber "54"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "55")+                , ESymbol Bin "+"+                , ENumber "55"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "56")+                , ESymbol Bin "+"+                , ENumber "56"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "57")+                , ESymbol Bin "+"+                , ENumber "57"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "58")+                , ESymbol Bin "+"+                , ENumber "58"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "59")+                , ESymbol Bin "+"+                , ENumber "59"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "60")+                , ESymbol Bin "+"+                , ENumber "60"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "61")+                , ESymbol Bin "+"+                , ENumber "61"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "62")+                , ESymbol Bin "+"+                , ENumber "62"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "63")+                , ESymbol Bin "+"+                , ENumber "63"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "64")+                , ESymbol Bin "+"+                , ENumber "64"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "65")+                , ESymbol Bin "+"+                , ENumber "65"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "66")+                , ESymbol Bin "+"+                , ENumber "66"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "67")+                , ESymbol Bin "+"+                , ENumber "67"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "68")+                , ESymbol Bin "+"+                , ENumber "68"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "69")+                , ESymbol Bin "+"+                , ENumber "69"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "70")+                , ESymbol Bin "+"+                , ENumber "70"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "71")+                , ESymbol Bin "+"+                , ENumber "71"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "72")+                , ESymbol Bin "+"+                , ENumber "72"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "73")+                , ESymbol Bin "+"+                , ENumber "73"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "74")+                , ESymbol Bin "+"+                , ENumber "74"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "75")+                , ESymbol Bin "+"+                , ENumber "75"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "76")+                , ESymbol Bin "+"+                , ENumber "76"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "77")+                , ESymbol Bin "+"+                , ENumber "77"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "78")+                , ESymbol Bin "+"+                , ENumber "78"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "79")+                , ESymbol Bin "+"+                , ENumber "79"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "80")+                , ESymbol Bin "+"+                , ENumber "80"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "81")+                , ESymbol Bin "+"+                , ENumber "81"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "82")+                , ESymbol Bin "+"+                , ENumber "82"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "83")+                , ESymbol Bin "+"+                , ENumber "83"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "84")+                , ESymbol Bin "+"+                , ENumber "84"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "85")+                , ESymbol Bin "+"+                , ENumber "85"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "86")+                , ESymbol Bin "+"+                , ENumber "86"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "87")+                , ESymbol Bin "+"+                , ENumber "87"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "88")+                , ESymbol Bin "+"+                , ENumber "88"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "89")+                , ESymbol Bin "+"+                , ENumber "89"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "90")+                , ESymbol Bin "+"+                , ENumber "90"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "91")+                , ESymbol Bin "+"+                , ENumber "91"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "92")+                , ESymbol Bin "+"+                , ENumber "92"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "93")+                , ESymbol Bin "+"+                , ENumber "93"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "94")+                , ESymbol Bin "+"+                , ENumber "94"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "95")+                , ESymbol Bin "+"+                , ENumber "95"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "96")+                , ESymbol Bin "+"+                , ENumber "96"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "97")+                , ESymbol Bin "+"+                , ENumber "97"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "98")+                , ESymbol Bin "+"+                , ENumber "98"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "99")+                , ESymbol Bin "+"+                , ENumber "99"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "100")+                , ESymbol Bin "+"+                , ENumber "100"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "101")+                , ESymbol Bin "+"+                , ENumber "101"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "102")+                , ESymbol Bin "+"+                , ENumber "102"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "103")+                , ESymbol Bin "+"+                , ENumber "103"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "104")+                , ESymbol Bin "+"+                , ENumber "104"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "105")+                , ESymbol Bin "+"+                , ENumber "105"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "106")+                , ESymbol Bin "+"+                , ENumber "106"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "107")+                , ESymbol Bin "+"+                , ENumber "107"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "108")+                , ESymbol Bin "+"+                , ENumber "108"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "109")+                , ESymbol Bin "+"+                , ENumber "109"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "110")+                , ESymbol Bin "+"+                , ENumber "110"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "111")+                , ESymbol Bin "+"+                , ENumber "111"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "112")+                , ESymbol Bin "+"+                , ENumber "112"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "113")+                , ESymbol Bin "+"+                , ENumber "113"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "114")+                , ESymbol Bin "+"+                , ENumber "114"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "115")+                , ESymbol Bin "+"+                , ENumber "115"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "116")+                , ESymbol Bin "+"+                , ENumber "116"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "117")+                , ESymbol Bin "+"+                , ENumber "117"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "118")+                , ESymbol Bin "+"+                , ENumber "118"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "119")+                , ESymbol Bin "+"+                , ENumber "119"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "120")+                , ESymbol Bin "+"+                , ENumber "120"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "121")+                , ESymbol Bin "+"+                , ENumber "121"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "122")+                , ESymbol Bin "+"+                , ENumber "122"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "123")+                , ESymbol Bin "+"+                , ENumber "123"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "124")+                , ESymbol Bin "+"+                , ENumber "124"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "125")+                , ESymbol Bin "+"+                , ENumber "125"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "126")+                , ESymbol Bin "+"+                , ENumber "126"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "127")+                , ESymbol Bin "+"+                , ENumber "127"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "128")+                , ESymbol Bin "+"+                , ENumber "128"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "129")+                , ESymbol Bin "+"+                , ENumber "129"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "130")+                , ESymbol Bin "+"+                , ENumber "130"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "131")+                , ESymbol Bin "+"+                , ENumber "131"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "132")+                , ESymbol Bin "+"+                , ENumber "132"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "133")+                , ESymbol Bin "+"+                , ENumber "133"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "134")+                , ESymbol Bin "+"+                , ENumber "134"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "135")+                , ESymbol Bin "+"+                , ENumber "135"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "136")+                , ESymbol Bin "+"+                , ENumber "136"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "137")+                , ESymbol Bin "+"+                , ENumber "137"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "138")+                , ESymbol Bin "+"+                , ENumber "138"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "139")+                , ESymbol Bin "+"+                , ENumber "139"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "140")+                , ESymbol Bin "+"+                , ENumber "140"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "141")+                , ESymbol Bin "+"+                , ENumber "141"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "142")+                , ESymbol Bin "+"+                , ENumber "142"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "143")+                , ESymbol Bin "+"+                , ENumber "143"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "144")+                , ESymbol Bin "+"+                , ENumber "144"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "145")+                , ESymbol Bin "+"+                , ENumber "145"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "146")+                , ESymbol Bin "+"+                , ENumber "146"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "147")+                , ESymbol Bin "+"+                , ENumber "147"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "148")+                , ESymbol Bin "+"+                , ENumber "148"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "149")+                , ESymbol Bin "+"+                , ENumber "149"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "150")+                , ESymbol Bin "+"+                , ENumber "150"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "151")+                , ESymbol Bin "+"+                , ENumber "151"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "152")+                , ESymbol Bin "+"+                , ENumber "152"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "153")+                , ESymbol Bin "+"+                , ENumber "153"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "154")+                , ESymbol Bin "+"+                , ENumber "154"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "155")+                , ESymbol Bin "+"+                , ENumber "155"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "156")+                , ESymbol Bin "+"+                , ENumber "156"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "157")+                , ESymbol Bin "+"+                , ENumber "157"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "158")+                , ESymbol Bin "+"+                , ENumber "158"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "159")+                , ESymbol Bin "+"+                , ENumber "159"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "160")+                , ESymbol Bin "+"+                , ENumber "160"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "161")+                , ESymbol Bin "+"+                , ENumber "161"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "162")+                , ESymbol Bin "+"+                , ENumber "162"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "163")+                , ESymbol Bin "+"+                , ENumber "163"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "164")+                , ESymbol Bin "+"+                , ENumber "164"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "165")+                , ESymbol Bin "+"+                , ENumber "165"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "166")+                , ESymbol Bin "+"+                , ENumber "166"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "167")+                , ESymbol Bin "+"+                , ENumber "167"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "168")+                , ESymbol Bin "+"+                , ENumber "168"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "169")+                , ESymbol Bin "+"+                , ENumber "169"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "170")+                , ESymbol Bin "+"+                , ENumber "170"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "171")+                , ESymbol Bin "+"+                , ENumber "171"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "172")+                , ESymbol Bin "+"+                , ENumber "172"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "173")+                , ESymbol Bin "+"+                , ENumber "173"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "174")+                , ESymbol Bin "+"+                , ENumber "174"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "175")+                , ESymbol Bin "+"+                , ENumber "175"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "176")+                , ESymbol Bin "+"+                , ENumber "176"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "177")+                , ESymbol Bin "+"+                , ENumber "177"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "178")+                , ESymbol Bin "+"+                , ENumber "178"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "179")+                , ESymbol Bin "+"+                , ENumber "179"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "180")+                , ESymbol Bin "+"+                , ENumber "180"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "181")+                , ESymbol Bin "+"+                , ENumber "181"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "182")+                , ESymbol Bin "+"+                , ENumber "182"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "183")+                , ESymbol Bin "+"+                , ENumber "183"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "184")+                , ESymbol Bin "+"+                , ENumber "184"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "185")+                , ESymbol Bin "+"+                , ENumber "185"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "186")+                , ESymbol Bin "+"+                , ENumber "186"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "187")+                , ESymbol Bin "+"+                , ENumber "187"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "188")+                , ESymbol Bin "+"+                , ENumber "188"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "189")+                , ESymbol Bin "+"+                , ENumber "189"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "190")+                , ESymbol Bin "+"+                , ENumber "190"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "191")+                , ESymbol Bin "+"+                , ENumber "191"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "192")+                , ESymbol Bin "+"+                , ENumber "192"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "193")+                , ESymbol Bin "+"+                , ENumber "193"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "194")+                , ESymbol Bin "+"+                , ENumber "194"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "195")+                , ESymbol Bin "+"+                , ENumber "195"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "196")+                , ESymbol Bin "+"+                , ENumber "196"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "197")+                , ESymbol Bin "+"+                , ENumber "197"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "198")+                , ESymbol Bin "+"+                , ENumber "198"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "199")+                , ESymbol Bin "+"+                , ENumber "199"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "200")+                , ESymbol Bin "+"+                , ENumber "200"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "201")+                , ESymbol Bin "+"+                , ENumber "201"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "202")+                , ESymbol Bin "+"+                , ENumber "202"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "203")+                , ESymbol Bin "+"+                , ENumber "203"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "204")+                , ESymbol Bin "+"+                , ENumber "204"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "205")+                , ESymbol Bin "+"+                , ENumber "205"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "206")+                , ESymbol Bin "+"+                , ENumber "206"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "207")+                , ESymbol Bin "+"+                , ENumber "207"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "208")+                , ESymbol Bin "+"+                , ENumber "208"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "209")+                , ESymbol Bin "+"+                , ENumber "209"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "210")+                , ESymbol Bin "+"+                , ENumber "210"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "211")+                , ESymbol Bin "+"+                , ENumber "211"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "212")+                , ESymbol Bin "+"+                , ENumber "212"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "213")+                , ESymbol Bin "+"+                , ENumber "213"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "214")+                , ESymbol Bin "+"+                , ENumber "214"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "215")+                , ESymbol Bin "+"+                , ENumber "215"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "216")+                , ESymbol Bin "+"+                , ENumber "216"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "217")+                , ESymbol Bin "+"+                , ENumber "217"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "218")+                , ESymbol Bin "+"+                , ENumber "218"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "219")+                , ESymbol Bin "+"+                , ENumber "219"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "220")+                , ESymbol Bin "+"+                , ENumber "220"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "221")+                , ESymbol Bin "+"+                , ENumber "221"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "222")+                , ESymbol Bin "+"+                , ENumber "222"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "223")+                , ESymbol Bin "+"+                , ENumber "223"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "224")+                , ESymbol Bin "+"+                , ENumber "224"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "225")+                , ESymbol Bin "+"+                , ENumber "225"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "226")+                , ESymbol Bin "+"+                , ENumber "226"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "227")+                , ESymbol Bin "+"+                , ENumber "227"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "228")+                , ESymbol Bin "+"+                , ENumber "228"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "229")+                , ESymbol Bin "+"+                , ENumber "229"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "230")+                , ESymbol Bin "+"+                , ENumber "230"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "231")+                , ESymbol Bin "+"+                , ENumber "231"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "232")+                , ESymbol Bin "+"+                , ENumber "232"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "233")+                , ESymbol Bin "+"+                , ENumber "233"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "234")+                , ESymbol Bin "+"+                , ENumber "234"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "235")+                , ESymbol Bin "+"+                , ENumber "235"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "236")+                , ESymbol Bin "+"+                , ENumber "236"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "237")+                , ESymbol Bin "+"+                , ENumber "237"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "238")+                , ESymbol Bin "+"+                , ENumber "238"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "239")+                , ESymbol Bin "+"+                , ENumber "239"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "240")+                , ESymbol Bin "+"+                , ENumber "240"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "241")+                , ESymbol Bin "+"+                , ENumber "241"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "242")+                , ESymbol Bin "+"+                , ENumber "242"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "243")+                , ESymbol Bin "+"+                , ENumber "243"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "244")+                , ESymbol Bin "+"+                , ENumber "244"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "245")+                , ESymbol Bin "+"+                , ENumber "245"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "246")+                , ESymbol Bin "+"+                , ENumber "246"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "247")+                , ESymbol Bin "+"+                , ENumber "247"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "248")+                , ESymbol Bin "+"+                , ENumber "248"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "249")+                , ESymbol Bin "+"+                , ENumber "249"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "250")+                , ESymbol Bin "+"+                , ENumber "250"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "251")+                , ESymbol Bin "+"+                , ENumber "251"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "252")+                , ESymbol Bin "+"+                , ENumber "252"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "253")+                , ESymbol Bin "+"+                , ENumber "253"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "254")+                , ESymbol Bin "+"+                , ENumber "254"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "255")+                , ESymbol Bin "+"+                , ENumber "255"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "256")+                , ESymbol Bin "+"+                , ENumber "256"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "257")+                , ESymbol Bin "+"+                , ENumber "257"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "258")+                , ESymbol Bin "+"+                , ENumber "258"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "259")+                , ESymbol Bin "+"+                , ENumber "259"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "260")+                , ESymbol Bin "+"+                , ENumber "260"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "261")+                , ESymbol Bin "+"+                , ENumber "261"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "262")+                , ESymbol Bin "+"+                , ENumber "262"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "263")+                , ESymbol Bin "+"+                , ENumber "263"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "264")+                , ESymbol Bin "+"+                , ENumber "264"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "265")+                , ESymbol Bin "+"+                , ENumber "265"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "266")+                , ESymbol Bin "+"+                , ENumber "266"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "267")+                , ESymbol Bin "+"+                , ENumber "267"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "268")+                , ESymbol Bin "+"+                , ENumber "268"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "269")+                , ESymbol Bin "+"+                , ENumber "269"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "270")+                , ESymbol Bin "+"+                , ENumber "270"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "271")+                , ESymbol Bin "+"+                , ENumber "271"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "272")+                , ESymbol Bin "+"+                , ENumber "272"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "273")+                , ESymbol Bin "+"+                , ENumber "273"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "274")+                , ESymbol Bin "+"+                , ENumber "274"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "275")+                , ESymbol Bin "+"+                , ENumber "275"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "276")+                , ESymbol Bin "+"+                , ENumber "276"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "277")+                , ESymbol Bin "+"+                , ENumber "277"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "278")+                , ESymbol Bin "+"+                , ENumber "278"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "279")+                , ESymbol Bin "+"+                , ENumber "279"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "280")+                , ESymbol Bin "+"+                , ENumber "280"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "281")+                , ESymbol Bin "+"+                , ENumber "281"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "282")+                , ESymbol Bin "+"+                , ENumber "282"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "283")+                , ESymbol Bin "+"+                , ENumber "283"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "284")+                , ESymbol Bin "+"+                , ENumber "284"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "285")+                , ESymbol Bin "+"+                , ENumber "285"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "286")+                , ESymbol Bin "+"+                , ENumber "286"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "287")+                , ESymbol Bin "+"+                , ENumber "287"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "288")+                , ESymbol Bin "+"+                , ENumber "288"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "289")+                , ESymbol Bin "+"+                , ENumber "289"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "290")+                , ESymbol Bin "+"+                , ENumber "290"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "291")+                , ESymbol Bin "+"+                , ENumber "291"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "292")+                , ESymbol Bin "+"+                , ENumber "292"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "293")+                , ESymbol Bin "+"+                , ENumber "293"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "294")+                , ESymbol Bin "+"+                , ENumber "294"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "295")+                , ESymbol Bin "+"+                , ENumber "295"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "296")+                , ESymbol Bin "+"+                , ENumber "296"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "297")+                , ESymbol Bin "+"+                , ENumber "297"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "298")+                , ESymbol Bin "+"+                , ENumber "298"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "299")+                , ESymbol Bin "+"+                , ENumber "299"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "300")+                , ESymbol Bin "+"+                , ENumber "300"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "301")+                , ESymbol Bin "+"+                , ENumber "301"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "302")+                , ESymbol Bin "+"+                , ENumber "302"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "303")+                , ESymbol Bin "+"+                , ENumber "303"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "304")+                , ESymbol Bin "+"+                , ENumber "304"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "305")+                , ESymbol Bin "+"+                , ENumber "305"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "306")+                , ESymbol Bin "+"+                , ENumber "306"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "307")+                , ESymbol Bin "+"+                , ENumber "307"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "308")+                , ESymbol Bin "+"+                , ENumber "308"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "309")+                , ESymbol Bin "+"+                , ENumber "309"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "310")+                , ESymbol Bin "+"+                , ENumber "310"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "311")+                , ESymbol Bin "+"+                , ENumber "311"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "312")+                , ESymbol Bin "+"+                , ENumber "312"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "313")+                , ESymbol Bin "+"+                , ENumber "313"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "314")+                , ESymbol Bin "+"+                , ENumber "314"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "315")+                , ESymbol Bin "+"+                , ENumber "315"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "316")+                , ESymbol Bin "+"+                , ENumber "316"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "317")+                , ESymbol Bin "+"+                , ENumber "317"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "318")+                , ESymbol Bin "+"+                , ENumber "318"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "319")+                , ESymbol Bin "+"+                , ENumber "319"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "320")+                , ESymbol Bin "+"+                , ENumber "320"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "321")+                , ESymbol Bin "+"+                , ENumber "321"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "322")+                , ESymbol Bin "+"+                , ENumber "322"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "323")+                , ESymbol Bin "+"+                , ENumber "323"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "324")+                , ESymbol Bin "+"+                , ENumber "324"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "325")+                , ESymbol Bin "+"+                , ENumber "325"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "326")+                , ESymbol Bin "+"+                , ENumber "326"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "327")+                , ESymbol Bin "+"+                , ENumber "327"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "328")+                , ESymbol Bin "+"+                , ENumber "328"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "329")+                , ESymbol Bin "+"+                , ENumber "329"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "330")+                , ESymbol Bin "+"+                , ENumber "330"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "331")+                , ESymbol Bin "+"+                , ENumber "331"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "332")+                , ESymbol Bin "+"+                , ENumber "332"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "333")+                , ESymbol Bin "+"+                , ENumber "333"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "334")+                , ESymbol Bin "+"+                , ENumber "334"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "335")+                , ESymbol Bin "+"+                , ENumber "335"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "336")+                , ESymbol Bin "+"+                , ENumber "336"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "337")+                , ESymbol Bin "+"+                , ENumber "337"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "338")+                , ESymbol Bin "+"+                , ENumber "338"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "339")+                , ESymbol Bin "+"+                , ENumber "339"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "340")+                , ESymbol Bin "+"+                , ENumber "340"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "341")+                , ESymbol Bin "+"+                , ENumber "341"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "342")+                , ESymbol Bin "+"+                , ENumber "342"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "343")+                , ESymbol Bin "+"+                , ENumber "343"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "344")+                , ESymbol Bin "+"+                , ENumber "344"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "345")+                , ESymbol Bin "+"+                , ENumber "345"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "346")+                , ESymbol Bin "+"+                , ENumber "346"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "347")+                , ESymbol Bin "+"+                , ENumber "347"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "348")+                , ESymbol Bin "+"+                , ENumber "348"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "349")+                , ESymbol Bin "+"+                , ENumber "349"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "350")+                , ESymbol Bin "+"+                , ENumber "350"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "351")+                , ESymbol Bin "+"+                , ENumber "351"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "352")+                , ESymbol Bin "+"+                , ENumber "352"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "353")+                , ESymbol Bin "+"+                , ENumber "353"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "354")+                , ESymbol Bin "+"+                , ENumber "354"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "355")+                , ESymbol Bin "+"+                , ENumber "355"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "356")+                , ESymbol Bin "+"+                , ENumber "356"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "357")+                , ESymbol Bin "+"+                , ENumber "357"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "358")+                , ESymbol Bin "+"+                , ENumber "358"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "359")+                , ESymbol Bin "+"+                , ENumber "359"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "360")+                , ESymbol Bin "+"+                , ENumber "360"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "361")+                , ESymbol Bin "+"+                , ENumber "361"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "362")+                , ESymbol Bin "+"+                , ENumber "362"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "363")+                , ESymbol Bin "+"+                , ENumber "363"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "364")+                , ESymbol Bin "+"+                , ENumber "364"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "365")+                , ESymbol Bin "+"+                , ENumber "365"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "366")+                , ESymbol Bin "+"+                , ENumber "366"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "367")+                , ESymbol Bin "+"+                , ENumber "367"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "368")+                , ESymbol Bin "+"+                , ENumber "368"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "369")+                , ESymbol Bin "+"+                , ENumber "369"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "370")+                , ESymbol Bin "+"+                , ENumber "370"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "371")+                , ESymbol Bin "+"+                , ENumber "371"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "372")+                , ESymbol Bin "+"+                , ENumber "372"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "373")+                , ESymbol Bin "+"+                , ENumber "373"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "374")+                , ESymbol Bin "+"+                , ENumber "374"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "375")+                , ESymbol Bin "+"+                , ENumber "375"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "376")+                , ESymbol Bin "+"+                , ENumber "376"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "377")+                , ESymbol Bin "+"+                , ENumber "377"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "378")+                , ESymbol Bin "+"+                , ENumber "378"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "379")+                , ESymbol Bin "+"+                , ENumber "379"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "380")+                , ESymbol Bin "+"+                , ENumber "380"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "381")+                , ESymbol Bin "+"+                , ENumber "381"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "382")+                , ESymbol Bin "+"+                , ENumber "382"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "383")+                , ESymbol Bin "+"+                , ENumber "383"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "384")+                , ESymbol Bin "+"+                , ENumber "384"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "385")+                , ESymbol Bin "+"+                , ENumber "385"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "386")+                , ESymbol Bin "+"+                , ENumber "386"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "387")+                , ESymbol Bin "+"+                , ENumber "387"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "388")+                , ESymbol Bin "+"+                , ENumber "388"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "389")+                , ESymbol Bin "+"+                , ENumber "389"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "390")+                , ESymbol Bin "+"+                , ENumber "390"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "391")+                , ESymbol Bin "+"+                , ENumber "391"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "392")+                , ESymbol Bin "+"+                , ENumber "392"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "393")+                , ESymbol Bin "+"+                , ENumber "393"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "394")+                , ESymbol Bin "+"+                , ENumber "394"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "395")+                , ESymbol Bin "+"+                , ENumber "395"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "396")+                , ESymbol Bin "+"+                , ENumber "396"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "397")+                , ESymbol Bin "+"+                , ENumber "397"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "398")+                , ESymbol Bin "+"+                , ENumber "398"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "399")+                , ESymbol Bin "+"+                , ENumber "399"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "400")+                , ESymbol Bin "+"+                , ENumber "400"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "401")+                , ESymbol Bin "+"+                , ENumber "401"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "402")+                , ESymbol Bin "+"+                , ENumber "402"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "403")+                , ESymbol Bin "+"+                , ENumber "403"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "404")+                , ESymbol Bin "+"+                , ENumber "404"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "405")+                , ESymbol Bin "+"+                , ENumber "405"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "406")+                , ESymbol Bin "+"+                , ENumber "406"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "407")+                , ESymbol Bin "+"+                , ENumber "407"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "408")+                , ESymbol Bin "+"+                , ENumber "408"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "409")+                , ESymbol Bin "+"+                , ENumber "409"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "410")+                , ESymbol Bin "+"+                , ENumber "410"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "411")+                , ESymbol Bin "+"+                , ENumber "411"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "412")+                , ESymbol Bin "+"+                , ENumber "412"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "413")+                , ESymbol Bin "+"+                , ENumber "413"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "414")+                , ESymbol Bin "+"+                , ENumber "414"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "415")+                , ESymbol Bin "+"+                , ENumber "415"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "416")+                , ESymbol Bin "+"+                , ENumber "416"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "417")+                , ESymbol Bin "+"+                , ENumber "417"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "418")+                , ESymbol Bin "+"+                , ENumber "418"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "419")+                , ESymbol Bin "+"+                , ENumber "419"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "420")+                , ESymbol Bin "+"+                , ENumber "420"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "421")+                , ESymbol Bin "+"+                , ENumber "421"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "422")+                , ESymbol Bin "+"+                , ENumber "422"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "423")+                , ESymbol Bin "+"+                , ENumber "423"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "424")+                , ESymbol Bin "+"+                , ENumber "424"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "425")+                , ESymbol Bin "+"+                , ENumber "425"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "426")+                , ESymbol Bin "+"+                , ENumber "426"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "427")+                , ESymbol Bin "+"+                , ENumber "427"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "428")+                , ESymbol Bin "+"+                , ENumber "428"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "429")+                , ESymbol Bin "+"+                , ENumber "429"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "430")+                , ESymbol Bin "+"+                , ENumber "430"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "431")+                , ESymbol Bin "+"+                , ENumber "431"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "432")+                , ESymbol Bin "+"+                , ENumber "432"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "433")+                , ESymbol Bin "+"+                , ENumber "433"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "434")+                , ESymbol Bin "+"+                , ENumber "434"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "435")+                , ESymbol Bin "+"+                , ENumber "435"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "436")+                , ESymbol Bin "+"+                , ENumber "436"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "437")+                , ESymbol Bin "+"+                , ENumber "437"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "438")+                , ESymbol Bin "+"+                , ENumber "438"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "439")+                , ESymbol Bin "+"+                , ENumber "439"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "440")+                , ESymbol Bin "+"+                , ENumber "440"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "441")+                , ESymbol Bin "+"+                , ENumber "441"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "442")+                , ESymbol Bin "+"+                , ENumber "442"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "443")+                , ESymbol Bin "+"+                , ENumber "443"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "444")+                , ESymbol Bin "+"+                , ENumber "444"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "445")+                , ESymbol Bin "+"+                , ENumber "445"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "446")+                , ESymbol Bin "+"+                , ENumber "446"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "447")+                , ESymbol Bin "+"+                , ENumber "447"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "448")+                , ESymbol Bin "+"+                , ENumber "448"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "449")+                , ESymbol Bin "+"+                , ENumber "449"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "450")+                , ESymbol Bin "+"+                , ENumber "450"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "451")+                , ESymbol Bin "+"+                , ENumber "451"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "452")+                , ESymbol Bin "+"+                , ENumber "452"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "453")+                , ESymbol Bin "+"+                , ENumber "453"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "454")+                , ESymbol Bin "+"+                , ENumber "454"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "455")+                , ESymbol Bin "+"+                , ENumber "455"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "456")+                , ESymbol Bin "+"+                , ENumber "456"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "457")+                , ESymbol Bin "+"+                , ENumber "457"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "458")+                , ESymbol Bin "+"+                , ENumber "458"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "459")+                , ESymbol Bin "+"+                , ENumber "459"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "460")+                , ESymbol Bin "+"+                , ENumber "460"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "461")+                , ESymbol Bin "+"+                , ENumber "461"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "462")+                , ESymbol Bin "+"+                , ENumber "462"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "463")+                , ESymbol Bin "+"+                , ENumber "463"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "464")+                , ESymbol Bin "+"+                , ENumber "464"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "465")+                , ESymbol Bin "+"+                , ENumber "465"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "466")+                , ESymbol Bin "+"+                , ENumber "466"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "467")+                , ESymbol Bin "+"+                , ENumber "467"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "468")+                , ESymbol Bin "+"+                , ENumber "468"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "469")+                , ESymbol Bin "+"+                , ENumber "469"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "470")+                , ESymbol Bin "+"+                , ENumber "470"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "471")+                , ESymbol Bin "+"+                , ENumber "471"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "472")+                , ESymbol Bin "+"+                , ENumber "472"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "473")+                , ESymbol Bin "+"+                , ENumber "473"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "474")+                , ESymbol Bin "+"+                , ENumber "474"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "475")+                , ESymbol Bin "+"+                , ENumber "475"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "476")+                , ESymbol Bin "+"+                , ENumber "476"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "477")+                , ESymbol Bin "+"+                , ENumber "477"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "478")+                , ESymbol Bin "+"+                , ENumber "478"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "479")+                , ESymbol Bin "+"+                , ENumber "479"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "480")+                , ESymbol Bin "+"+                , ENumber "480"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "481")+                , ESymbol Bin "+"+                , ENumber "481"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "482")+                , ESymbol Bin "+"+                , ENumber "482"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "483")+                , ESymbol Bin "+"+                , ENumber "483"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "484")+                , ESymbol Bin "+"+                , ENumber "484"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "485")+                , ESymbol Bin "+"+                , ENumber "485"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "486")+                , ESymbol Bin "+"+                , ENumber "486"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "487")+                , ESymbol Bin "+"+                , ENumber "487"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "488")+                , ESymbol Bin "+"+                , ENumber "488"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "489")+                , ESymbol Bin "+"+                , ENumber "489"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "490")+                , ESymbol Bin "+"+                , ENumber "490"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "491")+                , ESymbol Bin "+"+                , ENumber "491"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "492")+                , ESymbol Bin "+"+                , ENumber "492"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "493")+                , ESymbol Bin "+"+                , ENumber "493"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "494")+                , ESymbol Bin "+"+                , ENumber "494"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "495")+                , ESymbol Bin "+"+                , ENumber "495"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "496")+                , ESymbol Bin "+"+                , ENumber "496"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "497")+                , ESymbol Bin "+"+                , ENumber "497"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "498")+                , ESymbol Bin "+"+                , ENumber "498"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "499")+                , ESymbol Bin "+"+                , ENumber "499"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "500")+                , ESymbol Bin "+"+                , ENumber "500"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "501")+                , ESymbol Bin "+"+                , ENumber "501"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "502")+                , ESymbol Bin "+"+                , ENumber "502"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "503")+                , ESymbol Bin "+"+                , ENumber "503"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "504")+                , ESymbol Bin "+"+                , ENumber "504"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "505")+                , ESymbol Bin "+"+                , ENumber "505"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "506")+                , ESymbol Bin "+"+                , ENumber "506"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "507")+                , ESymbol Bin "+"+                , ENumber "507"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "508")+                , ESymbol Bin "+"+                , ENumber "508"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "509")+                , ESymbol Bin "+"+                , ENumber "509"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "510")+                , ESymbol Bin "+"+                , ENumber "510"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "511")+                , ESymbol Bin "+"+                , ENumber "511"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "512")+                , ESymbol Bin "+"+                , ENumber "512"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "513")+                , ESymbol Bin "+"+                , ENumber "513"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "514")+                , ESymbol Bin "+"+                , ENumber "514"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "515")+                , ESymbol Bin "+"+                , ENumber "515"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "516")+                , ESymbol Bin "+"+                , ENumber "516"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "517")+                , ESymbol Bin "+"+                , ENumber "517"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "518")+                , ESymbol Bin "+"+                , ENumber "518"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "519")+                , ESymbol Bin "+"+                , ENumber "519"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "520")+                , ESymbol Bin "+"+                , ENumber "520"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "521")+                , ESymbol Bin "+"+                , ENumber "521"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "522")+                , ESymbol Bin "+"+                , ENumber "522"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "523")+                , ESymbol Bin "+"+                , ENumber "523"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "524")+                , ESymbol Bin "+"+                , ENumber "524"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "525")+                , ESymbol Bin "+"+                , ENumber "525"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "526")+                , ESymbol Bin "+"+                , ENumber "526"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "527")+                , ESymbol Bin "+"+                , ENumber "527"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "528")+                , ESymbol Bin "+"+                , ENumber "528"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "529")+                , ESymbol Bin "+"+                , ENumber "529"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "530")+                , ESymbol Bin "+"+                , ENumber "530"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "531")+                , ESymbol Bin "+"+                , ENumber "531"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "532")+                , ESymbol Bin "+"+                , ENumber "532"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "533")+                , ESymbol Bin "+"+                , ENumber "533"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "534")+                , ESymbol Bin "+"+                , ENumber "534"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "535")+                , ESymbol Bin "+"+                , ENumber "535"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "536")+                , ESymbol Bin "+"+                , ENumber "536"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "537")+                , ESymbol Bin "+"+                , ENumber "537"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "538")+                , ESymbol Bin "+"+                , ENumber "538"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "539")+                , ESymbol Bin "+"+                , ENumber "539"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "540")+                , ESymbol Bin "+"+                , ENumber "540"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "541")+                , ESymbol Bin "+"+                , ENumber "541"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "542")+                , ESymbol Bin "+"+                , ENumber "542"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "543")+                , ESymbol Bin "+"+                , ENumber "543"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "544")+                , ESymbol Bin "+"+                , ENumber "544"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "545")+                , ESymbol Bin "+"+                , ENumber "545"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "546")+                , ESymbol Bin "+"+                , ENumber "546"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "547")+                , ESymbol Bin "+"+                , ENumber "547"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "548")+                , ESymbol Bin "+"+                , ENumber "548"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "549")+                , ESymbol Bin "+"+                , ENumber "549"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "550")+                , ESymbol Bin "+"+                , ENumber "550"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "551")+                , ESymbol Bin "+"+                , ENumber "551"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "552")+                , ESymbol Bin "+"+                , ENumber "552"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "553")+                , ESymbol Bin "+"+                , ENumber "553"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "554")+                , ESymbol Bin "+"+                , ENumber "554"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "555")+                , ESymbol Bin "+"+                , ENumber "555"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "556")+                , ESymbol Bin "+"+                , ENumber "556"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "557")+                , ESymbol Bin "+"+                , ENumber "557"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "558")+                , ESymbol Bin "+"+                , ENumber "558"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "559")+                , ESymbol Bin "+"+                , ENumber "559"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "560")+                , ESymbol Bin "+"+                , ENumber "560"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "561")+                , ESymbol Bin "+"+                , ENumber "561"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "562")+                , ESymbol Bin "+"+                , ENumber "562"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "563")+                , ESymbol Bin "+"+                , ENumber "563"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "564")+                , ESymbol Bin "+"+                , ENumber "564"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "565")+                , ESymbol Bin "+"+                , ENumber "565"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "566")+                , ESymbol Bin "+"+                , ENumber "566"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "567")+                , ESymbol Bin "+"+                , ENumber "567"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "568")+                , ESymbol Bin "+"+                , ENumber "568"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "569")+                , ESymbol Bin "+"+                , ENumber "569"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "570")+                , ESymbol Bin "+"+                , ENumber "570"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "571")+                , ESymbol Bin "+"+                , ENumber "571"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "572")+                , ESymbol Bin "+"+                , ENumber "572"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "573")+                , ESymbol Bin "+"+                , ENumber "573"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "574")+                , ESymbol Bin "+"+                , ENumber "574"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "575")+                , ESymbol Bin "+"+                , ENumber "575"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "576")+                , ESymbol Bin "+"+                , ENumber "576"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "577")+                , ESymbol Bin "+"+                , ENumber "577"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "578")+                , ESymbol Bin "+"+                , ENumber "578"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "579")+                , ESymbol Bin "+"+                , ENumber "579"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "580")+                , ESymbol Bin "+"+                , ENumber "580"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "581")+                , ESymbol Bin "+"+                , ENumber "581"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "582")+                , ESymbol Bin "+"+                , ENumber "582"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "583")+                , ESymbol Bin "+"+                , ENumber "583"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "584")+                , ESymbol Bin "+"+                , ENumber "584"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "585")+                , ESymbol Bin "+"+                , ENumber "585"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "586")+                , ESymbol Bin "+"+                , ENumber "586"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "587")+                , ESymbol Bin "+"+                , ENumber "587"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "588")+                , ESymbol Bin "+"+                , ENumber "588"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "589")+                , ESymbol Bin "+"+                , ENumber "589"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "590")+                , ESymbol Bin "+"+                , ENumber "590"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "591")+                , ESymbol Bin "+"+                , ENumber "591"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "592")+                , ESymbol Bin "+"+                , ENumber "592"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "593")+                , ESymbol Bin "+"+                , ENumber "593"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "594")+                , ESymbol Bin "+"+                , ENumber "594"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "595")+                , ESymbol Bin "+"+                , ENumber "595"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "596")+                , ESymbol Bin "+"+                , ENumber "596"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "597")+                , ESymbol Bin "+"+                , ENumber "597"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "598")+                , ESymbol Bin "+"+                , ENumber "598"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "599")+                , ESymbol Bin "+"+                , ENumber "599"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "600")+                , ESymbol Bin "+"+                , ENumber "600"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "601")+                , ESymbol Bin "+"+                , ENumber "601"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "602")+                , ESymbol Bin "+"+                , ENumber "602"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "603")+                , ESymbol Bin "+"+                , ENumber "603"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "604")+                , ESymbol Bin "+"+                , ENumber "604"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "605")+                , ESymbol Bin "+"+                , ENumber "605"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "606")+                , ESymbol Bin "+"+                , ENumber "606"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "607")+                , ESymbol Bin "+"+                , ENumber "607"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "608")+                , ESymbol Bin "+"+                , ENumber "608"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "609")+                , ESymbol Bin "+"+                , ENumber "609"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "610")+                , ESymbol Bin "+"+                , ENumber "610"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "611")+                , ESymbol Bin "+"+                , ENumber "611"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "612")+                , ESymbol Bin "+"+                , ENumber "612"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "613")+                , ESymbol Bin "+"+                , ENumber "613"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "614")+                , ESymbol Bin "+"+                , ENumber "614"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "615")+                , ESymbol Bin "+"+                , ENumber "615"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "616")+                , ESymbol Bin "+"+                , ENumber "616"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "617")+                , ESymbol Bin "+"+                , ENumber "617"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "618")+                , ESymbol Bin "+"+                , ENumber "618"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "619")+                , ESymbol Bin "+"+                , ENumber "619"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "620")+                , ESymbol Bin "+"+                , ENumber "620"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "621")+                , ESymbol Bin "+"+                , ENumber "621"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "622")+                , ESymbol Bin "+"+                , ENumber "622"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "623")+                , ESymbol Bin "+"+                , ENumber "623"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "624")+                , ESymbol Bin "+"+                , ENumber "624"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "625")+                , ESymbol Bin "+"+                , ENumber "625"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "626")+                , ESymbol Bin "+"+                , ENumber "626"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "627")+                , ESymbol Bin "+"+                , ENumber "627"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "628")+                , ESymbol Bin "+"+                , ENumber "628"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "629")+                , ESymbol Bin "+"+                , ENumber "629"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "630")+                , ESymbol Bin "+"+                , ENumber "630"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "631")+                , ESymbol Bin "+"+                , ENumber "631"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "632")+                , ESymbol Bin "+"+                , ENumber "632"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "633")+                , ESymbol Bin "+"+                , ENumber "633"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "634")+                , ESymbol Bin "+"+                , ENumber "634"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "635")+                , ESymbol Bin "+"+                , ENumber "635"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "636")+                , ESymbol Bin "+"+                , ENumber "636"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "637")+                , ESymbol Bin "+"+                , ENumber "637"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "638")+                , ESymbol Bin "+"+                , ENumber "638"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "639")+                , ESymbol Bin "+"+                , ENumber "639"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "640")+                , ESymbol Bin "+"+                , ENumber "640"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "641")+                , ESymbol Bin "+"+                , ENumber "641"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "642")+                , ESymbol Bin "+"+                , ENumber "642"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "643")+                , ESymbol Bin "+"+                , ENumber "643"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "644")+                , ESymbol Bin "+"+                , ENumber "644"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "645")+                , ESymbol Bin "+"+                , ENumber "645"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "646")+                , ESymbol Bin "+"+                , ENumber "646"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "647")+                , ESymbol Bin "+"+                , ENumber "647"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "648")+                , ESymbol Bin "+"+                , ENumber "648"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "649")+                , ESymbol Bin "+"+                , ENumber "649"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "650")+                , ESymbol Bin "+"+                , ENumber "650"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "651")+                , ESymbol Bin "+"+                , ENumber "651"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "652")+                , ESymbol Bin "+"+                , ENumber "652"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "653")+                , ESymbol Bin "+"+                , ENumber "653"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "654")+                , ESymbol Bin "+"+                , ENumber "654"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "655")+                , ESymbol Bin "+"+                , ENumber "655"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "656")+                , ESymbol Bin "+"+                , ENumber "656"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "657")+                , ESymbol Bin "+"+                , ENumber "657"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "658")+                , ESymbol Bin "+"+                , ENumber "658"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "659")+                , ESymbol Bin "+"+                , ENumber "659"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "660")+                , ESymbol Bin "+"+                , ENumber "660"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "661")+                , ESymbol Bin "+"+                , ENumber "661"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "662")+                , ESymbol Bin "+"+                , ENumber "662"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "663")+                , ESymbol Bin "+"+                , ENumber "663"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "664")+                , ESymbol Bin "+"+                , ENumber "664"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "665")+                , ESymbol Bin "+"+                , ENumber "665"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "666")+                , ESymbol Bin "+"+                , ENumber "666"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "667")+                , ESymbol Bin "+"+                , ENumber "667"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "668")+                , ESymbol Bin "+"+                , ENumber "668"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "669")+                , ESymbol Bin "+"+                , ENumber "669"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "670")+                , ESymbol Bin "+"+                , ENumber "670"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "671")+                , ESymbol Bin "+"+                , ENumber "671"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "672")+                , ESymbol Bin "+"+                , ENumber "672"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "673")+                , ESymbol Bin "+"+                , ENumber "673"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "674")+                , ESymbol Bin "+"+                , ENumber "674"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "675")+                , ESymbol Bin "+"+                , ENumber "675"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "676")+                , ESymbol Bin "+"+                , ENumber "676"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "677")+                , ESymbol Bin "+"+                , ENumber "677"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "678")+                , ESymbol Bin "+"+                , ENumber "678"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "679")+                , ESymbol Bin "+"+                , ENumber "679"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "680")+                , ESymbol Bin "+"+                , ENumber "680"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "681")+                , ESymbol Bin "+"+                , ENumber "681"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "682")+                , ESymbol Bin "+"+                , ENumber "682"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "683")+                , ESymbol Bin "+"+                , ENumber "683"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "684")+                , ESymbol Bin "+"+                , ENumber "684"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "685")+                , ESymbol Bin "+"+                , ENumber "685"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "686")+                , ESymbol Bin "+"+                , ENumber "686"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "687")+                , ESymbol Bin "+"+                , ENumber "687"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "688")+                , ESymbol Bin "+"+                , ENumber "688"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "689")+                , ESymbol Bin "+"+                , ENumber "689"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "690")+                , ESymbol Bin "+"+                , ENumber "690"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "691")+                , ESymbol Bin "+"+                , ENumber "691"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "692")+                , ESymbol Bin "+"+                , ENumber "692"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "693")+                , ESymbol Bin "+"+                , ENumber "693"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "694")+                , ESymbol Bin "+"+                , ENumber "694"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "695")+                , ESymbol Bin "+"+                , ENumber "695"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "696")+                , ESymbol Bin "+"+                , ENumber "696"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "697")+                , ESymbol Bin "+"+                , ENumber "697"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "698")+                , ESymbol Bin "+"+                , ENumber "698"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "699")+                , ESymbol Bin "+"+                , ENumber "699"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "700")+                , ESymbol Bin "+"+                , ENumber "700"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "701")+                , ESymbol Bin "+"+                , ENumber "701"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "702")+                , ESymbol Bin "+"+                , ENumber "702"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "703")+                , ESymbol Bin "+"+                , ENumber "703"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "704")+                , ESymbol Bin "+"+                , ENumber "704"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "705")+                , ESymbol Bin "+"+                , ENumber "705"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "706")+                , ESymbol Bin "+"+                , ENumber "706"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "707")+                , ESymbol Bin "+"+                , ENumber "707"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "708")+                , ESymbol Bin "+"+                , ENumber "708"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "709")+                , ESymbol Bin "+"+                , ENumber "709"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "710")+                , ESymbol Bin "+"+                , ENumber "710"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "711")+                , ESymbol Bin "+"+                , ENumber "711"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "712")+                , ESymbol Bin "+"+                , ENumber "712"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "713")+                , ESymbol Bin "+"+                , ENumber "713"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "714")+                , ESymbol Bin "+"+                , ENumber "714"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "715")+                , ESymbol Bin "+"+                , ENumber "715"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "716")+                , ESymbol Bin "+"+                , ENumber "716"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "717")+                , ESymbol Bin "+"+                , ENumber "717"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "718")+                , ESymbol Bin "+"+                , ENumber "718"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "719")+                , ESymbol Bin "+"+                , ENumber "719"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "720")+                , ESymbol Bin "+"+                , ENumber "720"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "721")+                , ESymbol Bin "+"+                , ENumber "721"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "722")+                , ESymbol Bin "+"+                , ENumber "722"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "723")+                , ESymbol Bin "+"+                , ENumber "723"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "724")+                , ESymbol Bin "+"+                , ENumber "724"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "725")+                , ESymbol Bin "+"+                , ENumber "725"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "726")+                , ESymbol Bin "+"+                , ENumber "726"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "727")+                , ESymbol Bin "+"+                , ENumber "727"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "728")+                , ESymbol Bin "+"+                , ENumber "728"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "729")+                , ESymbol Bin "+"+                , ENumber "729"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "730")+                , ESymbol Bin "+"+                , ENumber "730"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "731")+                , ESymbol Bin "+"+                , ENumber "731"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "732")+                , ESymbol Bin "+"+                , ENumber "732"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "733")+                , ESymbol Bin "+"+                , ENumber "733"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "734")+                , ESymbol Bin "+"+                , ENumber "734"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "735")+                , ESymbol Bin "+"+                , ENumber "735"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "736")+                , ESymbol Bin "+"+                , ENumber "736"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "737")+                , ESymbol Bin "+"+                , ENumber "737"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "738")+                , ESymbol Bin "+"+                , ENumber "738"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "739")+                , ESymbol Bin "+"+                , ENumber "739"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "740")+                , ESymbol Bin "+"+                , ENumber "740"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "741")+                , ESymbol Bin "+"+                , ENumber "741"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "742")+                , ESymbol Bin "+"+                , ENumber "742"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "743")+                , ESymbol Bin "+"+                , ENumber "743"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "744")+                , ESymbol Bin "+"+                , ENumber "744"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "745")+                , ESymbol Bin "+"+                , ENumber "745"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "746")+                , ESymbol Bin "+"+                , ENumber "746"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "747")+                , ESymbol Bin "+"+                , ENumber "747"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "748")+                , ESymbol Bin "+"+                , ENumber "748"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "749")+                , ESymbol Bin "+"+                , ENumber "749"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "750")+                , ESymbol Bin "+"+                , ENumber "750"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "751")+                , ESymbol Bin "+"+                , ENumber "751"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "752")+                , ESymbol Bin "+"+                , ENumber "752"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "753")+                , ESymbol Bin "+"+                , ENumber "753"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "754")+                , ESymbol Bin "+"+                , ENumber "754"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "755")+                , ESymbol Bin "+"+                , ENumber "755"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "756")+                , ESymbol Bin "+"+                , ENumber "756"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "757")+                , ESymbol Bin "+"+                , ENumber "757"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "758")+                , ESymbol Bin "+"+                , ENumber "758"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "759")+                , ESymbol Bin "+"+                , ENumber "759"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "760")+                , ESymbol Bin "+"+                , ENumber "760"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "761")+                , ESymbol Bin "+"+                , ENumber "761"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "762")+                , ESymbol Bin "+"+                , ENumber "762"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "763")+                , ESymbol Bin "+"+                , ENumber "763"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "764")+                , ESymbol Bin "+"+                , ENumber "764"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "765")+                , ESymbol Bin "+"+                , ENumber "765"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "766")+                , ESymbol Bin "+"+                , ENumber "766"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "767")+                , ESymbol Bin "+"+                , ENumber "767"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "768")+                , ESymbol Bin "+"+                , ENumber "768"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "769")+                , ESymbol Bin "+"+                , ENumber "769"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "770")+                , ESymbol Bin "+"+                , ENumber "770"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "771")+                , ESymbol Bin "+"+                , ENumber "771"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "772")+                , ESymbol Bin "+"+                , ENumber "772"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "773")+                , ESymbol Bin "+"+                , ENumber "773"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "774")+                , ESymbol Bin "+"+                , ENumber "774"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "775")+                , ESymbol Bin "+"+                , ENumber "775"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "776")+                , ESymbol Bin "+"+                , ENumber "776"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "777")+                , ESymbol Bin "+"+                , ENumber "777"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "778")+                , ESymbol Bin "+"+                , ENumber "778"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "779")+                , ESymbol Bin "+"+                , ENumber "779"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "780")+                , ESymbol Bin "+"+                , ENumber "780"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "781")+                , ESymbol Bin "+"+                , ENumber "781"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "782")+                , ESymbol Bin "+"+                , ENumber "782"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "783")+                , ESymbol Bin "+"+                , ENumber "783"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "784")+                , ESymbol Bin "+"+                , ENumber "784"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "785")+                , ESymbol Bin "+"+                , ENumber "785"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "786")+                , ESymbol Bin "+"+                , ENumber "786"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "787")+                , ESymbol Bin "+"+                , ENumber "787"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "788")+                , ESymbol Bin "+"+                , ENumber "788"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "789")+                , ESymbol Bin "+"+                , ENumber "789"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "790")+                , ESymbol Bin "+"+                , ENumber "790"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "791")+                , ESymbol Bin "+"+                , ENumber "791"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "792")+                , ESymbol Bin "+"+                , ENumber "792"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "793")+                , ESymbol Bin "+"+                , ENumber "793"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "794")+                , ESymbol Bin "+"+                , ENumber "794"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "795")+                , ESymbol Bin "+"+                , ENumber "795"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "796")+                , ESymbol Bin "+"+                , ENumber "796"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "797")+                , ESymbol Bin "+"+                , ENumber "797"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "798")+                , ESymbol Bin "+"+                , ENumber "798"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "799")+                , ESymbol Bin "+"+                , ENumber "799"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "800")+                , ESymbol Bin "+"+                , ENumber "800"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "801")+                , ESymbol Bin "+"+                , ENumber "801"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "802")+                , ESymbol Bin "+"+                , ENumber "802"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "803")+                , ESymbol Bin "+"+                , ENumber "803"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "804")+                , ESymbol Bin "+"+                , ENumber "804"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "805")+                , ESymbol Bin "+"+                , ENumber "805"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "806")+                , ESymbol Bin "+"+                , ENumber "806"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "807")+                , ESymbol Bin "+"+                , ENumber "807"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "808")+                , ESymbol Bin "+"+                , ENumber "808"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "809")+                , ESymbol Bin "+"+                , ENumber "809"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "810")+                , ESymbol Bin "+"+                , ENumber "810"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "811")+                , ESymbol Bin "+"+                , ENumber "811"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "812")+                , ESymbol Bin "+"+                , ENumber "812"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "813")+                , ESymbol Bin "+"+                , ENumber "813"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "814")+                , ESymbol Bin "+"+                , ENumber "814"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "815")+                , ESymbol Bin "+"+                , ENumber "815"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "816")+                , ESymbol Bin "+"+                , ENumber "816"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "817")+                , ESymbol Bin "+"+                , ENumber "817"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "818")+                , ESymbol Bin "+"+                , ENumber "818"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "819")+                , ESymbol Bin "+"+                , ENumber "819"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "820")+                , ESymbol Bin "+"+                , ENumber "820"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "821")+                , ESymbol Bin "+"+                , ENumber "821"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "822")+                , ESymbol Bin "+"+                , ENumber "822"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "823")+                , ESymbol Bin "+"+                , ENumber "823"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "824")+                , ESymbol Bin "+"+                , ENumber "824"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "825")+                , ESymbol Bin "+"+                , ENumber "825"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "826")+                , ESymbol Bin "+"+                , ENumber "826"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "827")+                , ESymbol Bin "+"+                , ENumber "827"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "828")+                , ESymbol Bin "+"+                , ENumber "828"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "829")+                , ESymbol Bin "+"+                , ENumber "829"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "830")+                , ESymbol Bin "+"+                , ENumber "830"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "831")+                , ESymbol Bin "+"+                , ENumber "831"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "832")+                , ESymbol Bin "+"+                , ENumber "832"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "833")+                , ESymbol Bin "+"+                , ENumber "833"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "834")+                , ESymbol Bin "+"+                , ENumber "834"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "835")+                , ESymbol Bin "+"+                , ENumber "835"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "836")+                , ESymbol Bin "+"+                , ENumber "836"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "837")+                , ESymbol Bin "+"+                , ENumber "837"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "838")+                , ESymbol Bin "+"+                , ENumber "838"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "839")+                , ESymbol Bin "+"+                , ENumber "839"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "840")+                , ESymbol Bin "+"+                , ENumber "840"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "841")+                , ESymbol Bin "+"+                , ENumber "841"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "842")+                , ESymbol Bin "+"+                , ENumber "842"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "843")+                , ESymbol Bin "+"+                , ENumber "843"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "844")+                , ESymbol Bin "+"+                , ENumber "844"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "845")+                , ESymbol Bin "+"+                , ENumber "845"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "846")+                , ESymbol Bin "+"+                , ENumber "846"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "847")+                , ESymbol Bin "+"+                , ENumber "847"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "848")+                , ESymbol Bin "+"+                , ENumber "848"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "849")+                , ESymbol Bin "+"+                , ENumber "849"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "850")+                , ESymbol Bin "+"+                , ENumber "850"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "851")+                , ESymbol Bin "+"+                , ENumber "851"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "852")+                , ESymbol Bin "+"+                , ENumber "852"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "853")+                , ESymbol Bin "+"+                , ENumber "853"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "854")+                , ESymbol Bin "+"+                , ENumber "854"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "855")+                , ESymbol Bin "+"+                , ENumber "855"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "856")+                , ESymbol Bin "+"+                , ENumber "856"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "857")+                , ESymbol Bin "+"+                , ENumber "857"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "858")+                , ESymbol Bin "+"+                , ENumber "858"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "859")+                , ESymbol Bin "+"+                , ENumber "859"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "860")+                , ESymbol Bin "+"+                , ENumber "860"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "861")+                , ESymbol Bin "+"+                , ENumber "861"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "862")+                , ESymbol Bin "+"+                , ENumber "862"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "863")+                , ESymbol Bin "+"+                , ENumber "863"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "864")+                , ESymbol Bin "+"+                , ENumber "864"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "865")+                , ESymbol Bin "+"+                , ENumber "865"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "866")+                , ESymbol Bin "+"+                , ENumber "866"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "867")+                , ESymbol Bin "+"+                , ENumber "867"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "868")+                , ESymbol Bin "+"+                , ENumber "868"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "869")+                , ESymbol Bin "+"+                , ENumber "869"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "870")+                , ESymbol Bin "+"+                , ENumber "870"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "871")+                , ESymbol Bin "+"+                , ENumber "871"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "872")+                , ESymbol Bin "+"+                , ENumber "872"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "873")+                , ESymbol Bin "+"+                , ENumber "873"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "874")+                , ESymbol Bin "+"+                , ENumber "874"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "875")+                , ESymbol Bin "+"+                , ENumber "875"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "876")+                , ESymbol Bin "+"+                , ENumber "876"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "877")+                , ESymbol Bin "+"+                , ENumber "877"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "878")+                , ESymbol Bin "+"+                , ENumber "878"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "879")+                , ESymbol Bin "+"+                , ENumber "879"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "880")+                , ESymbol Bin "+"+                , ENumber "880"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "881")+                , ESymbol Bin "+"+                , ENumber "881"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "882")+                , ESymbol Bin "+"+                , ENumber "882"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "883")+                , ESymbol Bin "+"+                , ENumber "883"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "884")+                , ESymbol Bin "+"+                , ENumber "884"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "885")+                , ESymbol Bin "+"+                , ENumber "885"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "886")+                , ESymbol Bin "+"+                , ENumber "886"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "887")+                , ESymbol Bin "+"+                , ENumber "887"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "888")+                , ESymbol Bin "+"+                , ENumber "888"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "889")+                , ESymbol Bin "+"+                , ENumber "889"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "890")+                , ESymbol Bin "+"+                , ENumber "890"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "891")+                , ESymbol Bin "+"+                , ENumber "891"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "892")+                , ESymbol Bin "+"+                , ENumber "892"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "893")+                , ESymbol Bin "+"+                , ENumber "893"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "894")+                , ESymbol Bin "+"+                , ENumber "894"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "895")+                , ESymbol Bin "+"+                , ENumber "895"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "896")+                , ESymbol Bin "+"+                , ENumber "896"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "897")+                , ESymbol Bin "+"+                , ENumber "897"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "898")+                , ESymbol Bin "+"+                , ENumber "898"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "899")+                , ESymbol Bin "+"+                , ENumber "899"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "900")+                , ESymbol Bin "+"+                , ENumber "900"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "901")+                , ESymbol Bin "+"+                , ENumber "901"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "902")+                , ESymbol Bin "+"+                , ENumber "902"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "903")+                , ESymbol Bin "+"+                , ENumber "903"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "904")+                , ESymbol Bin "+"+                , ENumber "904"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "905")+                , ESymbol Bin "+"+                , ENumber "905"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "906")+                , ESymbol Bin "+"+                , ENumber "906"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "907")+                , ESymbol Bin "+"+                , ENumber "907"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "908")+                , ESymbol Bin "+"+                , ENumber "908"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "909")+                , ESymbol Bin "+"+                , ENumber "909"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "910")+                , ESymbol Bin "+"+                , ENumber "910"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "911")+                , ESymbol Bin "+"+                , ENumber "911"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "912")+                , ESymbol Bin "+"+                , ENumber "912"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "913")+                , ESymbol Bin "+"+                , ENumber "913"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "914")+                , ESymbol Bin "+"+                , ENumber "914"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "915")+                , ESymbol Bin "+"+                , ENumber "915"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "916")+                , ESymbol Bin "+"+                , ENumber "916"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "917")+                , ESymbol Bin "+"+                , ENumber "917"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "918")+                , ESymbol Bin "+"+                , ENumber "918"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "919")+                , ESymbol Bin "+"+                , ENumber "919"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "920")+                , ESymbol Bin "+"+                , ENumber "920"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "921")+                , ESymbol Bin "+"+                , ENumber "921"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "922")+                , ESymbol Bin "+"+                , ENumber "922"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "923")+                , ESymbol Bin "+"+                , ENumber "923"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "924")+                , ESymbol Bin "+"+                , ENumber "924"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "925")+                , ESymbol Bin "+"+                , ENumber "925"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "926")+                , ESymbol Bin "+"+                , ENumber "926"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "927")+                , ESymbol Bin "+"+                , ENumber "927"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "928")+                , ESymbol Bin "+"+                , ENumber "928"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "929")+                , ESymbol Bin "+"+                , ENumber "929"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "930")+                , ESymbol Bin "+"+                , ENumber "930"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "931")+                , ESymbol Bin "+"+                , ENumber "931"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "932")+                , ESymbol Bin "+"+                , ENumber "932"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "933")+                , ESymbol Bin "+"+                , ENumber "933"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "934")+                , ESymbol Bin "+"+                , ENumber "934"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "935")+                , ESymbol Bin "+"+                , ENumber "935"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "936")+                , ESymbol Bin "+"+                , ENumber "936"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "937")+                , ESymbol Bin "+"+                , ENumber "937"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "938")+                , ESymbol Bin "+"+                , ENumber "938"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "939")+                , ESymbol Bin "+"+                , ENumber "939"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "940")+                , ESymbol Bin "+"+                , ENumber "940"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "941")+                , ESymbol Bin "+"+                , ENumber "941"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "942")+                , ESymbol Bin "+"+                , ENumber "942"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "943")+                , ESymbol Bin "+"+                , ENumber "943"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "944")+                , ESymbol Bin "+"+                , ENumber "944"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "945")+                , ESymbol Bin "+"+                , ENumber "945"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "946")+                , ESymbol Bin "+"+                , ENumber "946"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "947")+                , ESymbol Bin "+"+                , ENumber "947"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "948")+                , ESymbol Bin "+"+                , ENumber "948"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "949")+                , ESymbol Bin "+"+                , ENumber "949"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "950")+                , ESymbol Bin "+"+                , ENumber "950"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "951")+                , ESymbol Bin "+"+                , ENumber "951"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "952")+                , ESymbol Bin "+"+                , ENumber "952"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "953")+                , ESymbol Bin "+"+                , ENumber "953"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "954")+                , ESymbol Bin "+"+                , ENumber "954"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "955")+                , ESymbol Bin "+"+                , ENumber "955"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "956")+                , ESymbol Bin "+"+                , ENumber "956"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "957")+                , ESymbol Bin "+"+                , ENumber "957"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "958")+                , ESymbol Bin "+"+                , ENumber "958"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "959")+                , ESymbol Bin "+"+                , ENumber "959"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "960")+                , ESymbol Bin "+"+                , ENumber "960"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "961")+                , ESymbol Bin "+"+                , ENumber "961"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "962")+                , ESymbol Bin "+"+                , ENumber "962"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "963")+                , ESymbol Bin "+"+                , ENumber "963"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "964")+                , ESymbol Bin "+"+                , ENumber "964"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "965")+                , ESymbol Bin "+"+                , ENumber "965"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "966")+                , ESymbol Bin "+"+                , ENumber "966"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "967")+                , ESymbol Bin "+"+                , ENumber "967"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "968")+                , ESymbol Bin "+"+                , ENumber "968"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "969")+                , ESymbol Bin "+"+                , ENumber "969"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "970")+                , ESymbol Bin "+"+                , ENumber "970"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "971")+                , ESymbol Bin "+"+                , ENumber "971"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "972")+                , ESymbol Bin "+"+                , ENumber "972"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "973")+                , ESymbol Bin "+"+                , ENumber "973"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "974")+                , ESymbol Bin "+"+                , ENumber "974"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "975")+                , ESymbol Bin "+"+                , ENumber "975"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "976")+                , ESymbol Bin "+"+                , ENumber "976"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "977")+                , ESymbol Bin "+"+                , ENumber "977"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "978")+                , ESymbol Bin "+"+                , ENumber "978"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "979")+                , ESymbol Bin "+"+                , ENumber "979"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "980")+                , ESymbol Bin "+"+                , ENumber "980"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "981")+                , ESymbol Bin "+"+                , ENumber "981"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "982")+                , ESymbol Bin "+"+                , ENumber "982"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "983")+                , ESymbol Bin "+"+                , ENumber "983"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "984")+                , ESymbol Bin "+"+                , ENumber "984"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "985")+                , ESymbol Bin "+"+                , ENumber "985"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "986")+                , ESymbol Bin "+"+                , ENumber "986"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "987")+                , ESymbol Bin "+"+                , ENumber "987"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "988")+                , ESymbol Bin "+"+                , ENumber "988"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "989")+                , ESymbol Bin "+"+                , ENumber "989"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    , [ [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "990")+                , ESymbol Bin "+"+                , ENumber "990"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "991")+                , ESymbol Bin "+"+                , ENumber "991"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "992")+                , ESymbol Bin "+"+                , ENumber "992"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "993")+                , ESymbol Bin "+"+                , ENumber "993"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "994")+                , ESymbol Bin "+"+                , ENumber "994"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "995")+                , ESymbol Bin "+"+                , ENumber "995"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "996")+                , ESymbol Bin "+"+                , ENumber "996"+                , ESymbol Rel "="+                , EIdentifier "\945"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "997")+                , ESymbol Bin "+"+                , ENumber "997"+                , ESymbol Rel "="+                , EIdentifier "\946"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "998")+                , ESymbol Bin "+"+                , ENumber "998"+                , ESymbol Rel "="+                , EIdentifier "\947"+                ]+            , EText TextNormal "."+            ]+        ]+      , [ EGrouped+            [ EText TextNormal "Consider the equation\160"+            , EGrouped+                [ ESuper (EIdentifier "x") (ENumber "999")+                , ESymbol Bin "+"+                , ENumber "999"+                , ESymbol Rel "="+                , EIdentifier "\948"+                ]+            , EText TextNormal "."+            ]+        ]+      ]+    ]+]
+ test/reader/mml/maction-01.test view
@@ -0,0 +1,6 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <maction actiontype="tooltip">    <mrow>      <menclose notation="box">        <mtext>Place mouse pointer over this box</mtext>       </menclose>     </mrow>     <mtext>PASS</mtext>   </maction> </math>+>>> native+[ EBoxed (EText TextNormal "Place mouse pointer over this box") ]
+ test/reader/mml/maction-02.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <maction actiontype="tooltip">    <mrow>      <mfenced>        <mrow>          <mtable>            <mtr>              <mtd>                <mi>n</mi>+              </mtd>+            </mtr>             <mtr>              <mtd>                <mi>k</mi>+              </mtd>+            </mtr>           </mtable>         </mrow>       </mfenced>     </mrow>     <mrow>      <mfrac>        <mrow>          <mi>n</mi>+          <mo form="postfix">!</mo>+        </mrow>         <mrow>          <mi>k</mi>+          <mo form="postfix">!</mo>+          <mo fence="true">(</mo>+          <mi>n</mi>+          <mo>−</mo>+          <mi>k</mi>+          <mo fence="true">)</mo>+          <mo form="postfix">!</mo>+        </mrow>       </mfrac>     </mrow>   </maction> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "n" ] ] , [ [ EIdentifier "k" ] ] ])+    ]+]
+ test/reader/mml/maction-03.test view
@@ -0,0 +1,38 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <maction actiontype="tooltip">    <mrow>      <msup>        <mrow>          <mfenced>            <mrow>              <mtable>                <mtr>                  <mtd>                    <mn>0</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                </mtr>                 <mtr>                  <mtd>                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                </mtr>               </mtable>             </mrow>           </mfenced>         </mrow>         <mo>T</mo>       </msup>     </mrow>     <mrow>      <mfenced>        <mrow>          <mtable>            <mtr>              <mtd>                <mn>0</mn>+              </mtd>+              <mtd>+                <mn>2</mn>+              </mtd>+            </mtr>             <mtr>              <mtd>                <mn>1</mn>+              </mtd>+              <mtd>+                <mn>3</mn>+              </mtd>+            </mtr>           </mtable>         </mrow>       </mfenced>     </mrow>   </maction> </math>+>>> native+[ ESuper+    (EDelimited+       "("+       ")"+       [ Right+           (EArray+              [ AlignCenter , AlignCenter ]+              [ [ [ ENumber "0" ] , [ ENumber "1" ] ]+              , [ [ ENumber "2" ] , [ ENumber "3" ] ]+              ])+       ])+    (ESymbol Alpha "T")+]
+ test/reader/mml/maction-04.test view
@@ -0,0 +1,8 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <maction actiontype="tooltip">    <mrow>      <mfrac>        <mi>a</mi>+        <mi>b</mi>+      </mfrac>     </mrow>     <mtext>&lt;mfrac&gt;&lt;mi&gt;a&lt;/mi&gt;&lt;mi&gt;b&lt;/mi&gt;&lt;/mfrac&gt;</mtext>   </maction> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "a") (EIdentifier "b") ]
+ test/reader/mml/maction-05.test view
@@ -0,0 +1,17 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <maction actiontype="tooltip">    <mrow>      <msup>        <mi>x</mi>+        <mn>2</mn>+      </msup>+      <mo>−</mo>+      <mn>1</mn>+      <mo>=</mo>+      <mn>0</mn>     </mrow>     <mtext>(x − 1)(x + 1) = 0</mtext>   </maction> </math>+>>> native+[ ESuper (EIdentifier "x") (ENumber "2")+, ESymbol Bin "\8722"+, ENumber "1"+, ESymbol Rel "="+, ENumber "0"+]
+ test/reader/mml/maction-06.test view
@@ -0,0 +1,12 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <maction actiontype="tooltip">    <mrow>      <mn>100</mn>       <mtext>m</mtext>+      <mo>/</mo>+      <mtext>s</mtext>     </mrow>     <mrow>      <mtext>360 km/h</mtext>     </mrow>   </maction> </math>+>>> native+[ ENumber "100"+, EText TextNormal "m"+, ESymbol Ord "/"+, EText TextNormal "s"+]
+ test/reader/mml/maction-07.test view
@@ -0,0 +1,6 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mrow>      <maction actiontype="tooltip">        <mn>43867</mn>         <mtext>Mouse pointer is over numerator</mtext>       </maction>     </mrow>     <mrow>      <maction actiontype="tooltip">        <mn>798</mn>         <mtext>Mouse pointer is over denominator</mtext>       </maction>     </mrow>   </mfrac> </math>+>>> native+[ EFraction NormalFrac (ENumber "43867") (ENumber "798") ]
+ test/reader/mml/maction-08.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced>    <mrow>      <mtable>        <mtr>          <mtd>            <maction actiontype="tooltip">              <mrow>                <mn>12</mn>+                <mi>x</mi>+              </mrow>               <mtext>First row, first column</mtext>             </maction>           </mtd>           <mtd>            <maction actiontype="tooltip">              <mn>0</mn>               <mtext>First row, last column</mtext>             </maction>           </mtd>         </mtr>         <mtr>          <mtd>            <maction actiontype="tooltip">              <mn>0</mn>               <mtext>Last row, first column</mtext>             </maction>           </mtd>           <mtd>            <maction actiontype="tooltip">              <mn>117</mn>               <mtext>Last row, last column</mtext>             </maction>           </mtd>         </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EArray+           [ AlignCenter , AlignCenter ]+           [ [ [ EGrouped [ ENumber "12" , EIdentifier "x" ] ]+             , [ ENumber "0" ]+             ]+           , [ [ ENumber "0" ] , [ ENumber "117" ] ]+           ])+    ]+]
+ test/reader/mml/mactionBhigh1.test view
@@ -0,0 +1,17 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <maction xmlns:dsi="http://www.dessci.com/mathml" actiontype="highlight" dsi:background="#dddd66" dsi:color="#bb2244">+    <mfrac>+      <mi>x</mi> +      <mn>2</mn> +    </mfrac> +  </maction> +  <mo>+</mo> +  <mn>2</mn> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (ENumber "2")+, ESymbol Bin "+"+, ENumber "2"+]
+ test/reader/mml/mactionBstatus1.test view
@@ -0,0 +1,14 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <maction actiontype="statusline">+    <mrow>+      <mn>2</mn> +      <mo>+</mo> +      <mi>x</mi> +    </mrow> +    <mtext>Add 2 to the value of x</mtext> +  </maction> </math>+>>> native+[ ENumber "2" , ESymbol Bin "+" , EIdentifier "x" ]
+ test/reader/mml/mactionBtoggle1.test view
@@ -0,0 +1,40 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <maction actiontype="toggle">+    <mrow>+      <mfrac>+        <mi>x</mi> +        <mn>2</mn> +      </mfrac> +      <mo>+</mo> +      <mn>2</mn> +    </mrow> +    <mrow>+      <mfrac>+        <mi>x</mi> +        <mn>2</mn> +      </mfrac> +      <mo>+</mo> +      <mfrac>+        <mn>2</mn> +        <mn>2</mn> +      </mfrac> +    </mrow> +    <mrow>+      <mfrac>+        <mrow>+          <mi>x</mi> +          <mo>+</mo> +          <mn>2</mn> +        </mrow> +        <mn>2</mn> +      </mfrac> +    </mrow> +  </maction> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (ENumber "2")+, ESymbol Bin "+"+, ENumber "2"+]
+ test/reader/mml/mactionBtooltip1.test view
@@ -0,0 +1,13 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <maction actiontype="tooltip">+    <mfrac>+      <mi>y</mi> +      <mi>x</mi> +    </mfrac> +    <mtext>Divide y by x</mtext> +  </maction> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "y") (EIdentifier "x") ]
+ test/reader/mml/maligngroup1.test view
@@ -0,0 +1,91 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable groupalign="{decimalpoint left left decimalpoint left left decimalpoint}">+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <maligngroup></maligngroup> +            <mn>8.44</mn> +            <mo> &#x2062;</mo> +            <maligngroup></maligngroup> +            <mi>x</mi> +          </mrow> +          <maligngroup></maligngroup> +          <mo>+</mo> +          <mrow>+            <maligngroup></maligngroup> +            <mn>55</mn> +            <mo> &#x2062;</mo> +            <maligngroup></maligngroup> +            <mi>y</mi> +          </mrow> +        </mrow> +        <maligngroup></maligngroup> +        <mo>=</mo> +        <maligngroup></maligngroup> +        <mn>0</mn> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <maligngroup></maligngroup> +            <mn>3.1</mn> +            <mo> &#x2062;</mo> +            <maligngroup></maligngroup> +            <mi>x</mi> +          </mrow> +          <maligngroup></maligngroup> +          <mo>-</mo> +          <mrow>+            <maligngroup></maligngroup> +            <mn>0.7</mn> +            <mo> &#x2062;</mo> +            <maligngroup></maligngroup> +            <mi>y</mi> +          </mrow> +        </mrow> +        <maligngroup></maligngroup> +        <mo>=</mo> +        <maligngroup></maligngroup> +        <mrow>+          <mo>-</mo> +          <mn>1.1</mn> +        </mrow> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter ]+    [ [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ ENumber "8.44" , ESymbol Ord "\8290" , EIdentifier "x" ]+                , ESymbol Bin "+"+                , EGrouped [ ENumber "55" , ESymbol Ord "\8290" , EIdentifier "y" ]+                ]+            , ESymbol Rel "="+            , ENumber "0"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EGrouped+                [ EGrouped+                    [ ENumber "3.1" , ESymbol Ord "\8290" , EIdentifier "x" ]+                , ESymbol Bin "-"+                , EGrouped+                    [ ENumber "0.7" , ESymbol Ord "\8290" , EIdentifier "y" ]+                ]+            , ESymbol Rel "="+            , EGrouped [ ESymbol Bin "-" , ENumber "1.1" ]+            ]+        ]+      ]+    ]+]
+ test/reader/mml/math1.test view
@@ -0,0 +1,7 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mi>x</mi> </math>+>>> native+[ EIdentifier "x" ]
+ test/reader/mml/math3.test view
@@ -0,0 +1,8 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mn>2</mn> +  <mi>x</mi> </math>+>>> native+[ ENumber "2" , EIdentifier "x" ]
+ test/reader/mml/mathAdisplay1.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">+  <mfrac>+    <mi>x</mi> +    <mi>y</mi> +  </mfrac> +</math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (EIdentifier "y") ]
+ test/reader/mml/mathAdisplay2.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="inline" mode="display">+  <mfrac>+    <mi>x</mi> +    <mi>y</mi> +  </mfrac> +</math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (EIdentifier "y") ]
+ test/reader/mml/mathAmacros1.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" macros="testdir/testfile testdir2/testfile2">+  <mfrac>+    <mi>x</mi> +    <mi>y</mi> +  </mfrac> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (EIdentifier "y") ]
+ test/reader/mml/mathAmode1.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" mode="inline">+  <mfrac>+    <mi>x</mi> +    <mi>y</mi> +  </mfrac> +</math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (EIdentifier "y") ]
+ test/reader/mml/mathBevelledFrac.test view
@@ -0,0 +1,16 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" bevelled="true">+  <mfrac>+    <mi>x</mi> +    <mi>y</mi> +  </mfrac> +  <mfrac bevelled="false">+    <mi>x</mi> +    <mi>y</mi> +  </mfrac> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (EIdentifier "y")+, EFraction NormalFrac (EIdentifier "x") (EIdentifier "y")+]
+ test/reader/mml/mathDir.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" dir="rtl">+  <mi>x</mi> +  <mo>+</mo> +  <mi>y</mi> </math>+>>> native+[ EIdentifier "x" , ESymbol Bin "+" , EIdentifier "y" ]
+ test/reader/mml/mathTable1.test view
@@ -0,0 +1,65 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" frame="solid" columnlines="dashed" rowlines="dashed" rowalign="top baseline bottom" columnalign="left right" columnspacing="4em" rowspacing="3ex">+  <mtable>+    <mtr>+      <mtd>+        <mfrac>+          <mi>xxx</mi> +          <mi>y</mi> +        </mfrac> +      </mtd> +      <mtd>+        <mi>bbbb</mi> +      </mtd> +      <mtd>+        <mi>c</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mfrac>+          <mi>x</mi> +          <mi>y</mi> +        </mfrac> +      </mtd> +      <mtd>+        <mi>y</mi> +      </mtd> +      <mtd>+        <mi>z</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mfrac>+          <mi>x</mi> +          <mi>y</mi> +        </mfrac> +      </mtd> +      <mtd>+        <mn>2</mn> +      </mtd> +      <mtd>+        <mn>333333</mn> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter ]+    [ [ [ EFraction NormalFrac (EIdentifier "xxx") (EIdentifier "y") ]+      , [ EIdentifier "bbbb" ]+      , [ EIdentifier "c" ]+      ]+    , [ [ EFraction NormalFrac (EIdentifier "x") (EIdentifier "y") ]+      , [ EIdentifier "y" ]+      , [ EIdentifier "z" ]+      ]+    , [ [ EFraction NormalFrac (EIdentifier "x") (EIdentifier "y") ]+      , [ ENumber "2" ]+      , [ ENumber "333333" ]+      ]+    ]+]
+ test/reader/mml/menclose.test view
@@ -0,0 +1,23 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  +  <menclose notation="box">    +    <mn>0</mn>+  </menclose>+  <menclose notation="updiagonalstrike">+    <mn>1</mn>+  </menclose>+  <menclose notation="downdiagonalstrike">+    <mn>2</mn>+  </menclose>+  <menclose notation="updiagonalstrike downdiagonalstrike">+    <mn>3</mn>+  </menclose> +</math>+>>> native+[ EBoxed (ENumber "0")+, ECancel ForwardSlash (ENumber "1")+, ECancel BackSlash (ENumber "2")+, ECancel XSlash (ENumber "3")+]
+ test/reader/mml/merror-01.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <merror>    <mrow>      <mi>A</mi>+      <mo>/</mo>+      <mn>0</mn>+    </mrow>   </merror> </math>+>>> native+[]
+ test/reader/mml/merror1.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <merror>+    <mi>x</mi> +    <mo>=</mo> +    <mn>2</mn> +  </merror> </math>+>>> native+[]
+ test/reader/mml/merrorB3.test view
@@ -0,0 +1,19 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE math PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <merror>+    <mtext>Unrecognized element: &lt;mfraction&gt;arguments were:</mtext> +    <mrow>+      <mn>1</mn> +      <mo>+</mo> +      <msqrt>+        <mn>5</mn> +      </msqrt> +    </mrow> +    <mtext> &#x0205F;and &#x0205F;</mtext> +    <mn>2</mn> +  </merror> </math>+>>> native+[]
+ test/reader/mml/mfenced-01.test view
@@ -0,0 +1,35 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced open="[" close="]">    <mrow>      <mtable>        <mtr>          <mtd>            <mi>A</mi>+          </mtd>           <mtd>            <mi>B</mi>+          </mtd>           <mtd>            <mi>C</mi>+          </mtd>         </mtr>         <mtr>          <mtd>            <mi>D</mi>+          </mtd>           <mtd>            <mi>E</mi>+          </mtd>           <mtd>            <mi>F</mi>+          </mtd>         </mtr>         <mtr>          <mtd>            <mi>G</mi>+          </mtd>           <mtd>            <mi>H</mi>+          </mtd>           <mtd>            <mi>I</mi>+          </mtd>         </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "["+    "]"+    [ Right+        (EArray+           [ AlignCenter , AlignCenter , AlignCenter ]+           [ [ [ EIdentifier "A" ]+             , [ EIdentifier "B" ]+             , [ EIdentifier "C" ]+             ]+           , [ [ EIdentifier "D" ]+             , [ EIdentifier "E" ]+             , [ EIdentifier "F" ]+             ]+           , [ [ EIdentifier "G" ]+             , [ EIdentifier "H" ]+             , [ EIdentifier "I" ]+             ]+           ])+    ]+]
+ test/reader/mml/mfenced-02.test view
@@ -0,0 +1,35 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced open="{" close="}">    <mrow>      <mtable>        <mtr>          <mtd>            <mi>A</mi>+          </mtd>           <mtd>            <mi>B</mi>+          </mtd>           <mtd>            <mi>C</mi>+          </mtd>         </mtr>         <mtr>          <mtd>            <mi>D</mi>+          </mtd>           <mtd>            <mi>E</mi>+          </mtd>           <mtd>            <mi>F</mi>+          </mtd>         </mtr>         <mtr>          <mtd>            <mi>G</mi>+          </mtd>           <mtd>            <mi>H</mi>+          </mtd>           <mtd>            <mi>I</mi>+          </mtd>         </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "{"+    "}"+    [ Right+        (EArray+           [ AlignCenter , AlignCenter , AlignCenter ]+           [ [ [ EIdentifier "A" ]+             , [ EIdentifier "B" ]+             , [ EIdentifier "C" ]+             ]+           , [ [ EIdentifier "D" ]+             , [ EIdentifier "E" ]+             , [ EIdentifier "F" ]+             ]+           , [ [ EIdentifier "G" ]+             , [ EIdentifier "H" ]+             , [ EIdentifier "I" ]+             ]+           ])+    ]+]
+ test/reader/mml/mfenced-03.test view
@@ -0,0 +1,35 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced>    <mrow>      <mtable>        <mtr>          <mtd>            <mi>A</mi>+          </mtd>           <mtd>            <mi>B</mi>+          </mtd>           <mtd>            <mi>C</mi>+          </mtd>         </mtr>         <mtr>          <mtd>            <mi>D</mi>+          </mtd>           <mtd>            <mi>E</mi>+          </mtd>           <mtd>            <mi>F</mi>+          </mtd>         </mtr>         <mtr>          <mtd>            <mi>G</mi>+          </mtd>           <mtd>            <mi>H</mi>+          </mtd>           <mtd>            <mi>I</mi>+          </mtd>         </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EArray+           [ AlignCenter , AlignCenter , AlignCenter ]+           [ [ [ EIdentifier "A" ]+             , [ EIdentifier "B" ]+             , [ EIdentifier "C" ]+             ]+           , [ [ EIdentifier "D" ]+             , [ EIdentifier "E" ]+             , [ EIdentifier "F" ]+             ]+           , [ [ EIdentifier "G" ]+             , [ EIdentifier "H" ]+             , [ EIdentifier "I" ]+             ]+           ])+    ]+]
+ test/reader/mml/mfenced-04.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced open="⌈" close="⌋">    <mrow>      <mtable>        <mtr>          <mtd>            <mi mathvariant="normal">U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi mathvariant="normal">V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced>   <mo>=</mo>   <mfenced open="⌊" close="⌉">    <mrow>      <mtable>        <mtr>          <mtd>            <mi mathvariant="normal">U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi mathvariant="normal">V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "\8968"+    "\8971"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+, ESymbol Rel "="+, EDelimited+    "\8970"+    "\8969"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+]
+ test/reader/mml/mfenced-05.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced open="{" close="|">    <mrow>      <mtable>        <mtr>          <mtd>            <mi mathvariant="normal">U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi mathvariant="normal">V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced>   <mo>=</mo>   <mfenced open="|" close="}">    <mrow>      <mtable>        <mtr>          <mtd>            <mi mathvariant="normal">U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi mathvariant="normal">V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "{"+    "|"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+, ESymbol Rel "="+, EDelimited+    "|"+    "}"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+]
+ test/reader/mml/mfenced-06.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced open="[" close="|">    <mrow>      <mtable>        <mtr>          <mtd>            <mi mathvariant="normal">U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi mathvariant="normal">V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced>   <mo>=</mo>   <mfenced open="|" close="]">    <mrow>      <mtable>        <mtr>          <mtd>            <mi mathvariant="normal">U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi mathvariant="normal">V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "["+    "|"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+, ESymbol Rel "="+, EDelimited+    "|"+    "]"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+]
+ test/reader/mml/mfenced-07.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced open="(" close=")">    <mrow>      <mtable>        <mtr>          <mtd>            <mi>U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi>V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced>   <mo>=</mo>   <mfenced>    <mrow>      <mtable>        <mtr>          <mtd>            <mi>U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi>V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+, ESymbol Rel "="+, EDelimited+    "("+    ")"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+]
+ test/reader/mml/mfenced-08.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfenced open="|" close="|">    <mrow>      <mtable>        <mtr>          <mtd>            <mi>U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi>V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced>   <mo>=</mo>   <mfenced open="‖" close="‖">    <mrow>      <mtable>        <mtr>          <mtd>            <mi>U</mi>+          </mtd>+        </mtr>         <mtr>          <mtd>            <mi>V</mi>+          </mtd>+        </mtr>       </mtable>     </mrow>   </mfenced> </math>+>>> native+[ EDelimited+    "|"+    "|"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+, ESymbol Rel "="+, EDelimited+    "\8214"+    "\8214"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ EIdentifier "U" ] ] , [ [ EIdentifier "V" ] ] ])+    ]+]
+ test/reader/mml/mfenced1.test view
@@ -0,0 +1,7 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced></mfenced> </math>+>>> native+[ EDelimited "(" ")" [ Right (EGrouped []) ] ]
+ test/reader/mml/mfenced2.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced>+    <mi>x</mi> +  </mfenced> </math>+>>> native+[ EDelimited "(" ")" [ Right (EIdentifier "x") ] ]
+ test/reader/mml/mfenced3.test view
@@ -0,0 +1,16 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced>+    <mi>x</mi> +    <mi>y</mi> +  </mfenced> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EGrouped [ EIdentifier "x" , ESymbol Pun "," , EIdentifier "y" ])+    ]+]
+ test/reader/mml/mfenced4.test view
@@ -0,0 +1,19 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced>+    <mrow>+      <mi>a</mi> +      <mo>+</mo> +      <mi>b</mi> +    </mrow> +  </mfenced> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ])+    ]+]
+ test/reader/mml/mfenced5.test view
@@ -0,0 +1,15 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced open="[">+    <mn>0</mn> +    <mn>1</mn> +  </mfenced> </math>+>>> native+[ EDelimited+    "["+    ")"+    [ Right (EGrouped [ ENumber "0" , ESymbol Pun "," , ENumber "1" ])+    ]+]
+ test/reader/mml/mfencedAdelims6.test view
@@ -0,0 +1,48 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced open="[">+    <mrow>+      <mi>a</mi> +      <mo>+</mo> +      <mi>b</mi> +    </mrow> +  </mfenced> +  <mfenced open="{" close="}" separators="|;+">+    <mfrac>+      <mi>a</mi> +      <mi>b</mi> +    </mfrac> +    <mfrac>+      <mi>d</mi> +      <mi>e</mi> +    </mfrac> +    <mi>a</mi> +    <mi>b</mi> +    <mi>a</mi> +    <mi>b</mi> +  </mfenced> </math>+>>> native+[ EDelimited+    "["+    ")"+    [ Right+        (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ])+    ]+, EDelimited+    "{"+    "}"+    [ Right (EFraction NormalFrac (EIdentifier "a") (EIdentifier "b"))+    , Left "|"+    , Right (EFraction NormalFrac (EIdentifier "d") (EIdentifier "e"))+    , Right (ESymbol Pun ";")+    , Right (EIdentifier "a")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "b")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "a")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "b")+    ]+]
+ test/reader/mml/mfencedAempty.test view
@@ -0,0 +1,12 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced separators="" open="" close=" ">+    <mi>x</mi> +    <mi>y</mi> +  </mfenced> </math>+>>> native+[ EGrouped [ EIdentifier "x" , EIdentifier "y" ]+, EMathOperator ""+]
+ test/reader/mml/mfencedBfences7.test view
@@ -0,0 +1,31 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced>+    <mrow>+      <mi>a</mi> +      <mo>+</mo> +      <mi>b</mi> +    </mrow> +  </mfenced> +  <mo>+</mo> +  <mfenced>+    <mfrac>+      <mn>1</mn> +      <mn>2</mn> +    </mfrac> +  </mfenced> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ])+    ]+, ESymbol Bin "+"+, EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (ENumber "1") (ENumber "2")) ]+]
+ test/reader/mml/mfencedBseparators8.test view
@@ -0,0 +1,32 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfenced>+    <msub>+      <mi>a</mi> +      <mn>1</mn> +    </msub> +    <msub>+      <mi>a</mi> +      <mn>2</mn> +    </msub> +    <msub>+      <mi>a</mi> +      <mn>3</mn> +    </msub> +  </mfenced> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EGrouped+           [ ESub (EIdentifier "a") (ENumber "1")+           , ESymbol Pun ","+           , ESub (EIdentifier "a") (ENumber "2")+           , ESymbol Pun ","+           , ESub (EIdentifier "a") (ENumber "3")+           ])+    ]+]
+ test/reader/mml/mfencedSfonts9.test view
@@ -0,0 +1,54 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathbackground="#88cc88">+    <mfenced>+      <mrow>+        <mi>a</mi> +        <mo>+</mo> +        <mi>b</mi> +      </mrow> +    </mfenced> +  </mstyle> +  <mo>=</mo> +  <mstyle fontweight="bold">+    <mfenced>+      <mfrac>+        <mi>&#x03B1;</mi> +        <mi>&#x03B2;</mi> +      </mfrac> +    </mfenced> +  </mstyle> +  <mo>=</mo> +  <mstyle fontfamily="Helvetica">+    <mfenced open="[">+      <mrow>+        <mi>a</mi> +        <mo>+</mo> +        <mi>b</mi> +      </mrow> +    </mfenced> +  </mstyle> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ])+    ]+, ESymbol Rel "="+, EDelimited+    "("+    ")"+    [ Right+        (EFraction NormalFrac (EIdentifier "\945") (EIdentifier "\946"))+    ]+, ESymbol Rel "="+, EDelimited+    "["+    ")"+    [ Right+        (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ])+    ]+]
+ test/reader/mml/mfrac-01.test view
@@ -0,0 +1,17 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mn>1</mn>     <mn>8</mn>   </mfrac>   <mo>=</mo>   <mfrac>    <mn>1</mn>     <mrow>      <munder>        <mn>8</mn>+        <mphantom>+          <mn>0</mn>+        </mphantom>+      </munder>+    </mrow>   </mfrac> </math>+>>> native+[ EFraction NormalFrac (ENumber "1") (ENumber "8")+, ESymbol Rel "="+, EFraction+    NormalFrac+    (ENumber "1")+    (EUnder False (ENumber "8") (EPhantom (ENumber "0")))+]
+ test/reader/mml/mfrac-02.test view
@@ -0,0 +1,24 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mn>1</mn>     <mrow>      <mn>2</mn>+      <mi>π</mi>+    </mrow>   </mfrac>   <mo>=</mo>   <mfrac>    <mrow>      <mover>        <mn>1</mn>+        <mphantom>+          <mn>0</mn>+        </mphantom>+      </mover>+    </mrow>     <mrow>      <mn>2</mn>+      <mi>π</mi>+    </mrow>   </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ ENumber "2" , EIdentifier "\960" ])+, ESymbol Rel "="+, EFraction+    NormalFrac+    (EOver False (ENumber "1") (EPhantom (ENumber "0")))+    (EGrouped [ ENumber "2" , EIdentifier "\960" ])+]
+ test/reader/mml/mfrac-03.test view
@@ -0,0 +1,50 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mi>A</mi>     <mrow>      <mi>B</mi>       <mo>+</mo>       <mfrac>        <mi>C</mi>         <mrow>          <mi>D</mi>           <mo>+</mo>           <mfrac>            <mi>E</mi>             <mi>F</mi>           </mfrac>         </mrow>       </mfrac>     </mrow>   </mfrac>   <mo>=</mo>   <mfrac>    <mrow>      <mover>        <mi>A</mi>+        <mphantom>+          <mn>0</mn>+        </mphantom>+      </mover>+    </mrow>     <mrow>      <mi>B</mi>       <mo>+</mo>       <mfrac>        <mi>C</mi>         <mrow>          <mi>D</mi>           <mo>+</mo>           <mfrac>            <mi>E</mi>             <mrow>              <munder>                <mi>F</mi>+                <mphantom>+                  <mn>0</mn>+                </mphantom>+              </munder>+            </mrow>           </mfrac>         </mrow>       </mfrac>     </mrow>   </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EIdentifier "A")+    (EGrouped+       [ EIdentifier "B"+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (EIdentifier "C")+           (EGrouped+              [ EIdentifier "D"+              , ESymbol Bin "+"+              , EFraction NormalFrac (EIdentifier "E") (EIdentifier "F")+              ])+       ])+, ESymbol Rel "="+, EFraction+    NormalFrac+    (EOver False (EIdentifier "A") (EPhantom (ENumber "0")))+    (EGrouped+       [ EIdentifier "B"+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (EIdentifier "C")+           (EGrouped+              [ EIdentifier "D"+              , ESymbol Bin "+"+              , EFraction+                  NormalFrac+                  (EIdentifier "E")+                  (EUnder False (EIdentifier "F") (EPhantom (ENumber "0")))+              ])+       ])+]
+ test/reader/mml/mfrac-04.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac linethickness="medium">    <mn>854513</mn>     <mn>138</mn>   </mfrac>   <mo>=</mo>   <mfrac linethickness="1">    <mn>854513</mn>     <mn>138</mn>   </mfrac> </math>+>>> native+[ EFraction NormalFrac (ENumber "854513") (ENumber "138")+, ESymbol Rel "="+, EFraction NormalFrac (ENumber "854513") (ENumber "138")+]
+ test/reader/mml/mfrac-05.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mn>1</mn>     <mn>42</mn>   </mfrac>   <mo>=</mo>   <mfrac linethickness="1">    <mn>1</mn>     <mn>42</mn>   </mfrac> </math>+>>> native+[ EFraction NormalFrac (ENumber "1") (ENumber "42")+, ESymbol Rel "="+, EFraction NormalFrac (ENumber "1") (ENumber "42")+]
+ test/reader/mml/mfrac-06.test view
@@ -0,0 +1,25 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac linethickness="thick">    <mrow>      <mfrac>        <mrow>          <mi>a</mi>+        </mrow>         <mrow>          <mi>b</mi>+        </mrow>       </mfrac>     </mrow>     <mrow>      <mfrac>        <mrow>          <mi>c</mi>+        </mrow>         <mrow>          <mi>d</mi>+        </mrow>       </mfrac>     </mrow>   </mfrac>   <mo>=</mo>   <mfrac linethickness="thick">    <mrow>      <mfrac>        <mi>a</mi>+        <mi>b</mi>+      </mfrac>+    </mrow>     <mrow>      <mfrac>        <mi>c</mi>+        <mi>d</mi>+      </mfrac>+    </mrow>   </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EFraction NormalFrac (EIdentifier "a") (EIdentifier "b"))+    (EFraction NormalFrac (EIdentifier "c") (EIdentifier "d"))+, ESymbol Rel "="+, EFraction+    NormalFrac+    (EFraction NormalFrac (EIdentifier "a") (EIdentifier "b"))+    (EFraction NormalFrac (EIdentifier "c") (EIdentifier "d"))+]
+ test/reader/mml/mfrac-07.test view
@@ -0,0 +1,45 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac linethickness="2">    <mrow>      <mfrac>        <mrow>          <mover>            <mi>a</mi>+            <mphantom>+              <mtext>!</mtext>+            </mphantom>+          </mover>+        </mrow>+        <mi>b</mi>+      </mfrac>+    </mrow>     <mrow>      <mfrac>        <mi>c</mi>+        <mi>d</mi>+      </mfrac>+    </mrow>   </mfrac>   <mo>=</mo>   <mfrac linethickness="thick">    <mrow>      <mfrac>        <mi>a</mi>+        <mi>b</mi>+      </mfrac>+    </mrow>     <mrow>      <mfrac>        <mi>c</mi>+        <mrow>+          <munder>+            <mi>d</mi>+            <mphantom>+              <mtext>!</mtext>+            </mphantom>+          </munder>+        </mrow>+      </mfrac>+    </mrow>   </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EFraction+       NormalFrac+       (EOver False (EIdentifier "a") (EPhantom (EText TextNormal "!")))+       (EIdentifier "b"))+    (EFraction NormalFrac (EIdentifier "c") (EIdentifier "d"))+, ESymbol Rel "="+, EFraction+    NormalFrac+    (EFraction NormalFrac (EIdentifier "a") (EIdentifier "b"))+    (EFraction+       NormalFrac+       (EIdentifier "c")+       (EUnder False (EIdentifier "d") (EPhantom (EText TextNormal "!"))))+]
+ test/reader/mml/mfrac-08.test view
@@ -0,0 +1,35 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mrow>      <mphantom>        <mi>a</mi>+      </mphantom>+      <mn>12</mn>+      <mphantom>+        <mi>a</mi>+      </mphantom>+    </mrow>     <mn>13</mn>   </mfrac>   <mo>=</mo>   <mfrac>    <mn>12</mn>     <mrow>      <mphantom>        <mi>a</mi>+      </mphantom>+      <mn>13</mn>+      <mphantom>+        <mi>a</mi>+      </mphantom>+    </mrow>   </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EGrouped+       [ EPhantom (EIdentifier "a")+       , ENumber "12"+       , EPhantom (EIdentifier "a")+       ])+    (ENumber "13")+, ESymbol Rel "="+, EFraction+    NormalFrac+    (ENumber "12")+    (EGrouped+       [ EPhantom (EIdentifier "a")+       , ENumber "13"+       , EPhantom (EIdentifier "a")+       ])+]
+ test/reader/mml/mfrac-09.test view
@@ -0,0 +1,21 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mn>9</mn>     <mn>14</mn>   </mfrac>   <mo>=</mo>   <mfrac>    <mn>9</mn>     <mn>14</mn>   </mfrac>   <mfrac linethickness="0">    <mphantom>      <mfrac linethickness="0">        <mphantom>          <mn>1</mn>+        </mphantom>         <mphantom>          <mn>2</mn>+        </mphantom>       </mfrac>     </mphantom>     <mphantom>      <mfrac linethickness="0">        <mphantom>          <mn>1</mn>+        </mphantom>         <mphantom>          <mn>2</mn>+        </mphantom>       </mfrac>     </mphantom>   </mfrac> </math>+>>> native+[ EFraction NormalFrac (ENumber "9") (ENumber "14")+, ESymbol Rel "="+, EFraction NormalFrac (ENumber "9") (ENumber "14")+, EFraction+    NormalFrac+    (EPhantom+       (EFraction+          NormalFrac (EPhantom (ENumber "1")) (EPhantom (ENumber "2"))))+    (EPhantom+       (EFraction+          NormalFrac (EPhantom (ENumber "1")) (EPhantom (ENumber "2"))))+]
+ test/reader/mml/mfrac-10.test view
@@ -0,0 +1,37 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mn>4</mn>     <mrow>      <mn>2</mn>       <mo>+</mo>       <mfrac>        <mn>3</mn>         <mrow>          <mn>1</mn>           <mo>+</mo>           <mfrac>            <mn>1</mn>             <mn>2</mn>           </mfrac>         </mrow>       </mfrac>     </mrow>   </mfrac>   <mo>=</mo>   <mfrac>    <mrow>      <mn>1</mn>       <mo>+</mo>       <mfrac>        <mn>9</mn>         <mrow>          <mn>2</mn>           <mo>+</mo>           <mfrac>            <mn>1</mn>             <mn>4</mn>           </mfrac>         </mrow>       </mfrac>     </mrow>     <mn>5</mn>   </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (ENumber "4")+    (EGrouped+       [ ENumber "2"+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (ENumber "3")+           (EGrouped+              [ ENumber "1"+              , ESymbol Bin "+"+              , EFraction NormalFrac (ENumber "1") (ENumber "2")+              ])+       ])+, ESymbol Rel "="+, EFraction+    NormalFrac+    (EGrouped+       [ ENumber "1"+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (ENumber "9")+           (EGrouped+              [ ENumber "2"+              , ESymbol Bin "+"+              , EFraction NormalFrac (ENumber "1") (ENumber "4")+              ])+       ])+    (ENumber "5")+]
+ test/reader/mml/mfrac-11.test view
@@ -0,0 +1,51 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mi>A</mi>     <mrow>      <mi>B</mi>       <mo>+</mo>       <mfrac>        <mi>C</mi>         <mrow>          <mi>D</mi>           <mo>+</mo>           <mfrac>            <mi>E</mi>             <mi>F</mi>           </mfrac>         </mrow>       </mfrac>     </mrow>   </mfrac>   <mo>=</mo>   <mfrac>    <mrow>      <mphantom>        <mn>1</mn>+      </mphantom>+      <mspace linebreak="newline"></mspace>+      <mi>A</mi>+    </mrow>     <mrow>      <mi>B</mi>       <mo>+</mo>       <mfrac>        <mi>C</mi>         <mrow>          <mi>D</mi>           <mo>+</mo>           <mfrac>            <mi>E</mi>             <mrow>              <mi>F</mi>+              <mspace linebreak="newline"></mspace>+              <mphantom>+                <mn>1</mn>+              </mphantom>+            </mrow>           </mfrac>         </mrow>       </mfrac>     </mrow>   </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EIdentifier "A")+    (EGrouped+       [ EIdentifier "B"+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (EIdentifier "C")+           (EGrouped+              [ EIdentifier "D"+              , ESymbol Bin "+"+              , EFraction NormalFrac (EIdentifier "E") (EIdentifier "F")+              ])+       ])+, ESymbol Rel "="+, EFraction+    NormalFrac+    (EGrouped+       [ EPhantom (ENumber "1") , ESpace (0 % 1) , EIdentifier "A" ])+    (EGrouped+       [ EIdentifier "B"+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (EIdentifier "C")+           (EGrouped+              [ EIdentifier "D"+              , ESymbol Bin "+"+              , EFraction+                  NormalFrac+                  (EIdentifier "E")+                  (EGrouped+                     [ EIdentifier "F" , ESpace (0 % 1) , EPhantom (ENumber "1") ])+              ])+       ])+]
+ test/reader/mml/mfrac-12.test view
@@ -0,0 +1,23 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mn>1</mn>     <mn>2</mn>   </mfrac>   <mo>=</mo>   <mfrac>    <mrow>      <mphantom>        <mn>1</mn>+      </mphantom>+      <mspace linebreak="newline"></mspace>+      <mn>1</mn>+    </mrow>     <mrow>      <mn>2</mn>+      <mspace linebreak="newline"></mspace>+      <mphantom>+        <mn>1</mn>+      </mphantom>+    </mrow>   </mfrac> </math>+>>> native+[ EFraction NormalFrac (ENumber "1") (ENumber "2")+, ESymbol Rel "="+, EFraction+    NormalFrac+    (EGrouped+       [ EPhantom (ENumber "1") , ESpace (0 % 1) , ENumber "1" ])+    (EGrouped+       [ ENumber "2" , ESpace (0 % 1) , EPhantom (ENumber "1") ])+]
+ test/reader/mml/mfrac1.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mn>1</mn> +    <mn>2</mn> +  </mfrac> </math>+>>> native+[ EFraction NormalFrac (ENumber "1") (ENumber "2") ]
+ test/reader/mml/mfrac2.test view
@@ -0,0 +1,17 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mo> &#x02146;</mo> +    <mrow>+      <mo> &#x02146;</mo> +      <mi>x</mi> +    </mrow> +  </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (ESymbol Ord "\8518")+    (EGrouped [ ESymbol Ord "\8518" , EIdentifier "x" ])+]
+ test/reader/mml/mfrac3.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac linethickness="2">+    <mfrac>+      <mi>a</mi> +      <mi>b</mi> +    </mfrac> +    <mfrac>+      <mi>c</mi> +      <mi>d</mi> +    </mfrac> +  </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EFraction NormalFrac (EIdentifier "a") (EIdentifier "b"))+    (EFraction NormalFrac (EIdentifier "c") (EIdentifier "d"))+]
+ test/reader/mml/mfrac4.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mrow>+      <mn>1</mn> +      <mo>+</mo> +      <msqrt>+        <mn>5</mn> +      </msqrt> +    </mrow> +    <mn>2</mn> +  </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EGrouped [ ENumber "1" , ESymbol Bin "+" , ESqrt (ENumber "5") ])+    (ENumber "2")+]
+ test/reader/mml/mfrac7.test view
@@ -0,0 +1,42 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mrow>+      <mi>x</mi> +      <mo>+</mo> +      <mi>y</mi> +      <mo>+</mo> +      <mi>z</mi> +    </mrow> +    <mrow>+      <mi>x</mi> +      <mphantom>+        <mo>+</mo> +      </mphantom> +      <mphantom>+        <mi>y</mi> +      </mphantom> +      <mo>+</mo> +      <mi>z</mi> +    </mrow> +  </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EGrouped+       [ EIdentifier "x"+       , ESymbol Bin "+"+       , EIdentifier "y"+       , ESymbol Bin "+"+       , EIdentifier "z"+       ])+    (EGrouped+       [ EIdentifier "x"+       , EPhantom (ESymbol Bin "+")+       , EPhantom (EIdentifier "y")+       , ESymbol Bin "+"+       , EIdentifier "z"+       ])+]
+ test/reader/mml/mfracAbevelled16.test view
@@ -0,0 +1,12 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mfrac bevelled="true">+      <mi>a</mi> +      <mn>2</mn> +    </mfrac> +  </mrow> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "a") (ENumber "2") ]
+ test/reader/mml/mfracAcss8.test view
@@ -0,0 +1,32 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mfrac linethickness="0.2cm">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +    <mfrac linethickness="0.3ex">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +  </mrow> </math>+>>> native+[ EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+]
+ test/reader/mml/mfracAkeyword9.test view
@@ -0,0 +1,44 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mfrac linethickness="thin">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +    <mfrac linethickness="medium">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +    <mfrac linethickness="thick">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +  </mrow> </math>+>>> native+[ EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+]
+ test/reader/mml/mfracAmultiplier10.test view
@@ -0,0 +1,56 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mfrac linethickness="0">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +    <mfrac linethickness="0.5">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +    <mfrac linethickness="2">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +    <mfrac linethickness="3">+      <mn>1</mn> +      <mrow>+        <mi>y</mi> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +    </mfrac> +  </mrow> </math>+>>> native+[ EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+]
+ test/reader/mml/mfracBalign16.test view
@@ -0,0 +1,116 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle fontsize="150%">+    <mtable>+      <mtr>+        <mtd>+          <mi>x</mi> +          <mo>-</mo> +          <mfrac>+            <mi>a</mi> +            <mi>b</mi> +          </mfrac> +          <mi>x</mi> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mi>x</mi> +          <mo>-</mo> +          <mfrac>+            <mn>1</mn> +            <mi>b</mi> +          </mfrac> +          <mi>x</mi> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mi>x</mi> +          <mo>-</mo> +          <mfrac>+            <mn>1</mn> +            <mn>2</mn> +          </mfrac> +          <mi>x</mi> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mi>x</mi> +          <mo>-</mo> +          <mfrac>+            <msup>+              <mn>1</mn> +              <mn>2</mn> +            </msup> +            <mi>z</mi> +          </mfrac> +          <mi>x</mi> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mi>x</mi> +          <mo>-</mo> +          <mfrac>+            <mi>z</mi> +            <msup>+              <mn>1</mn> +              <mn>2</mn> +            </msup> +          </mfrac> +          <mi>x</mi> +        </mtd> +      </mtr> +    </mtable> +  </mstyle> </math>+>>> native+[ EArray+    [ AlignCenter ]+    [ [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Bin "-"+            , EFraction NormalFrac (EIdentifier "a") (EIdentifier "b")+            , EIdentifier "x"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Bin "-"+            , EFraction NormalFrac (ENumber "1") (EIdentifier "b")+            , EIdentifier "x"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Bin "-"+            , EFraction NormalFrac (ENumber "1") (ENumber "2")+            , EIdentifier "x"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Bin "-"+            , EFraction+                NormalFrac (ESuper (ENumber "1") (ENumber "2")) (EIdentifier "z")+            , EIdentifier "x"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "x"+            , ESymbol Bin "-"+            , EFraction+                NormalFrac (EIdentifier "z") (ESuper (ENumber "1") (ENumber "2"))+            , EIdentifier "x"+            ]+        ]+      ]+    ]+]
+ test/reader/mml/mfracBheight17.test view
@@ -0,0 +1,109 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mtext>taller num</mtext> +      </mtd> +      <mtd>+        <msup>+          <mi>x</mi> +          <mn>2</mn> +        </msup> +        <mo>+</mo> +        <msup>+          <mfrac>+            <mi>h</mi> +            <mi>x</mi> +          </mfrac> +          <mn>2</mn> +        </msup> +        <mo>+</mo> +        <msup>+          <mrow>+            <mo>(</mo> +            <mfrac>+              <mi>h</mi> +              <mi>x</mi> +            </mfrac> +            <mo>)</mo> +          </mrow> +          <mn>2</mn> +        </msup> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mtext>taller denom</mtext> +      </mtd> +      <mtd>+        <msup>+          <mi>x</mi> +          <mn>2</mn> +        </msup> +        <mo>+</mo> +        <msup>+          <mfrac>+            <mi>x</mi> +            <mi>y</mi> +          </mfrac> +          <mn>2</mn> +        </msup> +        <mo>+</mo> +        <msup>+          <mrow>+            <mo>(</mo> +            <mfrac>+              <mi>x</mi> +              <mi>y</mi> +            </mfrac> +            <mo>)</mo> +          </mrow> +          <mn>2</mn> +        </msup> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter ]+    [ [ [ EText TextNormal "taller num" ]+      , [ EGrouped+            [ ESuper (EIdentifier "x") (ENumber "2")+            , ESymbol Bin "+"+            , ESuper+                (EFraction NormalFrac (EIdentifier "h") (EIdentifier "x"))+                (ENumber "2")+            , ESymbol Bin "+"+            , ESuper+                (EDelimited+                   "("+                   ")"+                   [ Right (EFraction NormalFrac (EIdentifier "h") (EIdentifier "x"))+                   ])+                (ENumber "2")+            ]+        ]+      ]+    , [ [ EText TextNormal "taller denom" ]+      , [ EGrouped+            [ ESuper (EIdentifier "x") (ENumber "2")+            , ESymbol Bin "+"+            , ESuper+                (EFraction NormalFrac (EIdentifier "x") (EIdentifier "y"))+                (ENumber "2")+            , ESymbol Bin "+"+            , ESuper+                (EDelimited+                   "("+                   ")"+                   [ Right (EFraction NormalFrac (EIdentifier "x") (EIdentifier "y"))+                   ])+                (ENumber "2")+            ]+        ]+      ]+    ]+]
+ test/reader/mml/mfracBhoriz11.test view
@@ -0,0 +1,87 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mn>1</mn> +    <mi>a</mi> +  </mfrac> +  <mo>-</mo> +  <mfrac>+    <mn>1</mn> +    <mrow>+      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +    </mrow> +  </mfrac> +  <mo>-</mo> +  <mfrac>+    <mn>1</mn> +    <mrow>+      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +      <mo>+</mo> +      <mi>a</mi> +    </mrow> +  </mfrac> </math>+>>> native+[ EFraction NormalFrac (ENumber "1") (EIdentifier "a")+, ESymbol Bin "-"+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped+       [ EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       ])+, ESymbol Bin "-"+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped+       [ EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       , ESymbol Bin "+"+       , EIdentifier "a"+       ])+]
+ test/reader/mml/mfracBvert12.test view
@@ -0,0 +1,93 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>x</mi> +    <mo>-</mo> +    <mfrac>+      <mn>1</mn> +      <mn>3</mn> +    </mfrac> +    <mo>-</mo> +    <mfrac>+      <mi>x</mi> +      <mn>3</mn> +    </mfrac> +    <mo>-</mo> +    <mfrac>+      <mn>3</mn> +      <mi>x</mi> +    </mfrac> +    <mo>-</mo> +    <mfrac>+      <mi>a</mi> +      <mi>x</mi> +    </mfrac> +    <mo>-</mo> +    <mfrac>+      <mi>y</mi> +      <mi>x</mi> +    </mfrac> +    <mo>-</mo> +    <mfrac>+      <msub>+        <mi>y</mi> +        <mn>2</mn> +      </msub> +      <mi>x</mi> +    </mfrac> +    <mo>-</mo> +    <mfrac>+      <msub>+        <mi>x</mi> +        <mn>2</mn> +      </msub> +      <mi>x</mi> +    </mfrac> +    <mo>-</mo> +    <mfrac>+      <mi>y</mi> +      <msup>+        <mi>x</mi> +        <mn>2</mn> +      </msup> +    </mfrac> +    <mo>-</mo> +    <mfrac>+      <mi>y</mi> +      <msup>+        <mi>H</mi> +        <mn>2</mn> +      </msup> +    </mfrac> +  </mrow> </math>+>>> native+[ EIdentifier "x"+, ESymbol Bin "-"+, EFraction NormalFrac (ENumber "1") (ENumber "3")+, ESymbol Bin "-"+, EFraction NormalFrac (EIdentifier "x") (ENumber "3")+, ESymbol Bin "-"+, EFraction NormalFrac (ENumber "3") (EIdentifier "x")+, ESymbol Bin "-"+, EFraction NormalFrac (EIdentifier "a") (EIdentifier "x")+, ESymbol Bin "-"+, EFraction NormalFrac (EIdentifier "y") (EIdentifier "x")+, ESymbol Bin "-"+, EFraction+    NormalFrac (ESub (EIdentifier "y") (ENumber "2")) (EIdentifier "x")+, ESymbol Bin "-"+, EFraction+    NormalFrac (ESub (EIdentifier "x") (ENumber "2")) (EIdentifier "x")+, ESymbol Bin "-"+, EFraction+    NormalFrac+    (EIdentifier "y")+    (ESuper (EIdentifier "x") (ENumber "2"))+, ESymbol Bin "-"+, EFraction+    NormalFrac+    (EIdentifier "y")+    (ESuper (EIdentifier "H") (ENumber "2"))+]
+ test/reader/mml/mfracSfonts13.test view
@@ -0,0 +1,50 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mstyle fontweight="bold" fontsize="7px">+      <mfrac>+        <mn>1</mn> +        <mrow>+          <mi>y</mi> +          <mo>+</mo> +          <mn>3</mn> +        </mrow> +      </mfrac> +    </mstyle> +    <mstyle fontstyle="normal">+      <mfrac>+        <mn>1</mn> +        <mrow>+          <mi>y</mi> +          <mo>+</mo> +          <mn>3</mn> +        </mrow> +      </mfrac> +    </mstyle> +    <mstyle fontsize="12pt">+      <mfrac>+        <mn>1</mn> +        <mrow>+          <mi>y</mi> +          <mo>+</mo> +          <mn>3</mn> +        </mrow> +      </mfrac> +    </mstyle> +  </mrow> </math>+>>> native+[ EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+]
+ test/reader/mml/mfracSinheritance14.test view
@@ -0,0 +1,72 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mstyle color="#48c" scriptlevel="+0">+      <mfrac>+        <mfrac>+          <mn>1</mn> +          <mrow>+            <mi>y</mi> +            <mo>+</mo> +            <mn>3</mn> +          </mrow> +        </mfrac> +        <mrow>+          <mi>y</mi> +          <mo>+</mo> +          <mn>3</mn> +        </mrow> +      </mfrac> +    </mstyle> +    <mstyle color="#48c" scriptlevel="+1">+      <mfrac>+        <mn>1</mn> +        <mrow>+          <mi>y</mi> +          <mo>+</mo> +          <mn>3</mn> +        </mrow> +      </mfrac> +    </mstyle> +    <mstyle color="#48c" scriptlevel="+2">+      <mfrac>+        <mstyle color="#48c" scriptlevel="-3">+          <mfrac>+            <mn>1</mn> +            <mrow>+              <mi>y</mi> +              <mo>+</mo> +              <mn>3</mn> +            </mrow> +          </mfrac> +        </mstyle> +        <mrow>+          <mi>y</mi> +          <mo>+</mo> +          <mn>3</mn> +        </mrow> +      </mfrac> +    </mstyle> +  </mrow> </math>+>>> native+[ EFraction+    NormalFrac+    (EFraction+       NormalFrac+       (ENumber "1")+       (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ]))+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+, EFraction+    NormalFrac+    (EFraction+       NormalFrac+       (ENumber "1")+       (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ]))+    (EGrouped [ EIdentifier "y" , ESymbol Bin "+" , ENumber "3" ])+]
+ test/reader/mml/mfracSscriptlevel15.test view
@@ -0,0 +1,89 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mn>1</mn> +    <mn>2</mn> +  </mfrac> +  <mo>+</mo> +  <mstyle displaystyle="true">+    <mfrac>+      <mn>1</mn> +      <mn>2</mn> +    </mfrac> +  </mstyle> +  <mo>+</mo> +  <mfrac>+    <mn>1</mn> +    <mrow>+      <mn>1</mn> +      <mo>+</mo> +      <mfrac>+        <mi>x</mi> +        <mn>3</mn> +      </mfrac> +    </mrow> +  </mfrac> +  <mo>+</mo> +  <mstyle displaystyle="true">+    <mfrac>+      <mn>1</mn> +      <mrow>+        <mn>1</mn> +        <mo>+</mo> +        <mfrac>+          <mi>x</mi> +          <mn>3</mn> +        </mfrac> +      </mrow> +    </mfrac> +  </mstyle> +  <mo>+</mo> +  <mstyle displaystyle="true">+    <mfrac>+      <mn>1</mn> +      <mrow>+        <mn>1</mn> +        <mo>+</mo> +        <mstyle displaystyle="true">+          <mfrac>+            <mi>x</mi> +            <mn>3</mn> +          </mfrac> +        </mstyle> +      </mrow> +    </mfrac> +  </mstyle> </math>+>>> native+[ EFraction NormalFrac (ENumber "1") (ENumber "2")+, ESymbol Bin "+"+, EFraction NormalFrac (ENumber "1") (ENumber "2")+, ESymbol Bin "+"+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped+       [ ENumber "1"+       , ESymbol Bin "+"+       , EFraction NormalFrac (EIdentifier "x") (ENumber "3")+       ])+, ESymbol Bin "+"+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped+       [ ENumber "1"+       , ESymbol Bin "+"+       , EFraction NormalFrac (EIdentifier "x") (ENumber "3")+       ])+, ESymbol Bin "+"+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped+       [ ENumber "1"+       , ESymbol Bin "+"+       , EFraction NormalFrac (EIdentifier "x") (ENumber "3")+       ])+]
+ test/reader/mml/mfracZcomp-01.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, auto, normal line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mfrac>+        <mrow>+          <mi mathcolor="gray">sin</mi> +          <mo rspace="verythinmathspace">&#x02061;</mo> +          <mi>&#x003B8;</mi> +        </mrow> +        <mi>&#x003C0;</mi> +      </mfrac> +    </mrow> +  </mstyle> +  <mtext>, numerator and denominator should render script size.</mtext> </math>+>>> native+[ EText TextNormal "Inline, auto, normal line\160"+, EFraction+    NormalFrac+    (EGrouped+       [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+    (EIdentifier "\960")+, EText+    TextNormal ", numerator and denominator should render script size."+]
+ test/reader/mml/mfracZcomp-02.test view
@@ -0,0 +1,30 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, display style, normal line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mstyle displaystyle="true" scriptlevel="0">+        <mfrac>+          <mrow>+            <mi mathcolor="gray">ln</mi> +            <mo rspace="verythinmathspace">&#x02061;</mo> +            <mi>x</mi> +          </mrow> +          <mi>y</mi> +        </mfrac> +      </mstyle> +    </mrow> +  </mstyle> +  <mtext>, numerator and denominator should render normal size.</mtext> </math>+>>> native+[ EText TextNormal "Inline, display style, normal line\160"+, EFraction+    NormalFrac+    (EGrouped+       [ EMathOperator "ln" , ESymbol Ord "\8289" , EIdentifier "x" ])+    (EIdentifier "y")+, EText+    TextNormal ", numerator and denominator should render normal size."+]
+ test/reader/mml/mfracZcomp-03.test view
@@ -0,0 +1,30 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, text style, normal line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mstyle displaystyle="false" scriptlevel="0">+        <mfrac>+          <mrow>+            <mi mathcolor="gray">tan</mi> +            <mo rspace="verythinmathspace">&#x02061;</mo> +            <mi>&#x003B8;</mi> +          </mrow> +          <mn>67</mn> +        </mfrac> +      </mstyle> +    </mrow> +  </mstyle> +  <mtext>, numerator and denominator should render script size.</mtext> </math>+>>> native+[ EText TextNormal "Inline, text style, normal line\160"+, EFraction+    NormalFrac+    (EGrouped+       [ EMathOperator "tan" , ESymbol Ord "\8289" , EIdentifier "\952" ])+    (ENumber "67")+, EText+    TextNormal ", numerator and denominator should render script size."+]
+ test/reader/mml/mfracZcomp-04.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, auto, thick line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mfrac linethickness="1pt">+        <mrow>+          <msup>+            <mi>x</mi> +            <mn>2</mn> +          </msup> +          <mo form="infix">+</mo> +          <mn>1</mn> +        </mrow> +        <mi>x</mi> +      </mfrac> +    </mrow> +  </mstyle> +  <mtext>, the superscripted 2 should be script-script size.</mtext> </math>+>>> native+[ EText TextNormal "Inline, auto, thick line\160"+, EFraction+    NormalFrac+    (EGrouped+       [ ESuper (EIdentifier "x") (ENumber "2")+       , ESymbol Bin "+"+       , ENumber "1"+       ])+    (EIdentifier "x")+, EText+    TextNormal ", the superscripted 2 should be script-script size."+]
+ test/reader/mml/mfracZcomp-05.test view
@@ -0,0 +1,47 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, display style, thick line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mstyle displaystyle="true" scriptlevel="0">+        <mfrac linethickness="1pt">+          <mrow>+            <mi>x</mi> +            <mo form="infix">-</mo> +            <mn>1</mn> +          </mrow> +          <mrow>+            <mrow>+              <mn>0.98</mn> +              <mo form="infix">&#x000D7;</mo> +              <msup>+                <mn>10</mn> +                <mn>2</mn> +              </msup> +            </mrow> +            <mo form="infix">+</mo> +            <mi>y</mi> +          </mrow> +        </mfrac> +      </mstyle> +    </mrow> +  </mstyle> +  <mtext>, the superscripted 2 should be script size.</mtext> </math>+>>> native+[ EText TextNormal "Inline, display style, thick line\160"+, EFraction+    NormalFrac+    (EGrouped [ EIdentifier "x" , ESymbol Bin "-" , ENumber "1" ])+    (EGrouped+       [ EGrouped+           [ ENumber "0.98"+           , ESymbol Bin "\215"+           , ESuper (ENumber "10") (ENumber "2")+           ]+       , ESymbol Bin "+"+       , EIdentifier "y"+       ])+, EText TextNormal ", the superscripted 2 should be script size."+]
+ test/reader/mml/mfracZcomp-06.test view
@@ -0,0 +1,56 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, text style, thick line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mstyle displaystyle="true" scriptlevel="0">+      <mfrac linethickness="1pt">+        <mrow>+          <msup>+            <mi>x</mi> +            <mn>2</mn> +          </msup> +          <mo form="infix">+</mo> +          <mn>1</mn> +        </mrow> +        <mi>x</mi> +      </mfrac> +    </mstyle> +    <mstyle displaystyle="false" scriptlevel="0">+      <mfrac linethickness="1pt">+        <mrow>+          <msup>+            <mi>x</mi> +            <mn>2</mn> +          </msup> +          <mo form="infix">+</mo> +          <mn>1</mn> +        </mrow> +        <mi>x</mi> +      </mfrac> +    </mstyle> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline, text style, thick line\160"+, EGrouped+    [ EFraction+        NormalFrac+        (EGrouped+           [ ESuper (EIdentifier "x") (ENumber "2")+           , ESymbol Bin "+"+           , ENumber "1"+           ])+        (EIdentifier "x")+    , EFraction+        NormalFrac+        (EGrouped+           [ ESuper (EIdentifier "x") (ENumber "2")+           , ESymbol Bin "+"+           , ENumber "1"+           ])+        (EIdentifier "x")+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-07.test view
@@ -0,0 +1,33 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, auto, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mfrac linethickness="0">+        <mrow>+          <msup>+            <mi>x</mi> +            <mn>2</mn> +          </msup> +          <mo form="infix">+</mo> +          <mn>1</mn> +        </mrow> +        <mi>x</mi> +      </mfrac> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline, auto, no line\160"+, EFraction+    NormalFrac+    (EGrouped+       [ ESuper (EIdentifier "x") (ENumber "2")+       , ESymbol Bin "+"+       , ENumber "1"+       ])+    (EIdentifier "x")+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-08.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, display style, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mstyle displaystyle="true" scriptlevel="0">+        <mfrac linethickness="0">+          <mn>1.234567</mn> +          <mrow>+            <mn>89</mn> +            <mo form="infix">+</mo> +            <mi>x</mi> +          </mrow> +        </mfrac> +      </mstyle> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline, display style, no line\160"+, EFraction+    NormalFrac+    (ENumber "1.234567")+    (EGrouped [ ENumber "89" , ESymbol Bin "+" , EIdentifier "x" ])+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-09.test view
@@ -0,0 +1,35 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, text style, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mstyle displaystyle="false" scriptlevel="0">+        <mfrac linethickness="0">+          <mrow>+            <msup>+              <mi>x</mi> +              <mn>2</mn> +            </msup> +            <mo form="infix">+</mo> +            <mn>1</mn> +          </mrow> +          <mi>x</mi> +        </mfrac> +      </mstyle> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline, text style, no line\160"+, EFraction+    NormalFrac+    (EGrouped+       [ ESuper (EIdentifier "x") (ENumber "2")+       , ESymbol Bin "+"+       , ENumber "1"+       ])+    (EIdentifier "x")+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-10.test view
@@ -0,0 +1,24 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline binomial, auto, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +      <mfrac linethickness="0">+        <mn>5</mn> +        <mn>8</mn> +      </mfrac> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline binomial, auto, no line\160"+, EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (ENumber "5") (ENumber "8")) ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-11.test view
@@ -0,0 +1,37 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline binomial, display style, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +      <mrow>+        <mstyle displaystyle="true" scriptlevel="0">+          <mfrac linethickness="0">+            <mrow>+              <mi>n</mi> +              <mo form="infix">-</mo> +              <mi>k</mi> +            </mrow> +            <mi>n</mi> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline binomial, display style, no line\160"+, EDelimited+    "("+    ")"+    [ Right+        (EFraction+           NormalFrac+           (EGrouped [ EIdentifier "n" , ESymbol Bin "-" , EIdentifier "k" ])+           (EIdentifier "n"))+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-12.test view
@@ -0,0 +1,38 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline binomial, text style, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +      <mrow>+        <mstyle displaystyle="false" scriptlevel="0">+          <mfrac linethickness="0">+            <mrow>+              <mi mathcolor="gray">log</mi> +              <mo rspace="verythinmathspace">&#x02061;</mo> +              <mi>x</mi> +            </mrow> +            <mi>y</mi> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline binomial, text style, no line\160"+, EDelimited+    "("+    ")"+    [ Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "log" , ESymbol Ord "\8289" , EIdentifier "x" ])+           (EIdentifier "y"))+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-13.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline built-in verts, auto, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">|</mo> +      <mfrac linethickness="0">+        <mrow>+          <mi mathcolor="gray">sin</mi> +          <mo rspace="verythinmathspace">&#x02061;</mo> +          <mi>&#x003B8;</mi> +        </mrow> +        <mi>M</mi> +      </mfrac> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">|</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline built-in verts, auto, no line\160"+, EDelimited+    "|"+    "|"+    [ Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-14.test view
@@ -0,0 +1,40 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline up arrows, display style, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02191;</mo> +      <mrow>+        <mstyle displaystyle="true" scriptlevel="0">+          <mfrac linethickness="0">+            <mrow>+              <mi mathcolor="gray">sin</mi> +              <mo rspace="verythinmathspace">&#x02061;</mo> +              <mi>&#x003B8;</mi> +            </mrow> +            <mi>M</mi> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02191;</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline up arrows, display style, no line\160"+, EDelimited+    ""+    ""+    [ Left "\8593"+    , Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    , Left "\8593"+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-15.test view
@@ -0,0 +1,40 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline down arrows, text style, no line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02193;</mo> +      <mrow>+        <mstyle displaystyle="false" scriptlevel="0">+          <mfrac linethickness="0">+            <mrow>+              <mi mathcolor="gray">sin</mi> +              <mo rspace="verythinmathspace">&#x02061;</mo> +              <mi>&#x003B8;</mi> +            </mrow> +            <mi>M</mi> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02193;</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline down arrows, text style, no line\160"+, EDelimited+    ""+    ""+    [ Left "\8595"+    , Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    , Left "\8595"+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-16.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline floor, auto, normal line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230A;</mo> +      <mfrac>+        <mrow>+          <mi mathcolor="gray">sin</mi> +          <mo rspace="verythinmathspace">&#x02061;</mo> +          <mi>&#x003B8;</mi> +        </mrow> +        <mi>M</mi> +      </mfrac> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x0230B;</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline floor, auto, normal line\160"+, EDelimited+    "\8970"+    "\8971"+    [ Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-17.test view
@@ -0,0 +1,38 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline ceiling, display style, normal line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02308;</mo> +      <mrow>+        <mstyle displaystyle="true" scriptlevel="0">+          <mfrac>+            <mrow>+              <mi mathcolor="gray">sin</mi> +              <mo rspace="verythinmathspace">&#x02061;</mo> +              <mi>&#x003B8;</mi> +            </mrow> +            <mi>M</mi> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02309;</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline ceiling, display style, normal line\160"+, EDelimited+    "\8968"+    "\8969"+    [ Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-18.test view
@@ -0,0 +1,41 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline updown arrows, text style, normal line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02195;</mo> +      <mrow>+        <mstyle displaystyle="false" scriptlevel="0">+          <mfrac>+            <mrow>+              <mi mathcolor="gray">sin</mi> +              <mo rspace="verythinmathspace">&#x02061;</mo> +              <mi>&#x003B8;</mi> +            </mrow> +            <mi>M</mi> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02195;</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText+    TextNormal "Inline updown arrows, text style, normal line\160"+, EDelimited+    ""+    ""+    [ Left "\8597"+    , Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    , Left "\8597"+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-19.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline double up arrows, auto, thick line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x021D1;</mo> +      <mfrac linethickness="1pt">+        <mrow>+          <mi mathcolor="gray">sin</mi> +          <mo rspace="verythinmathspace">&#x02061;</mo> +          <mi>&#x003B8;</mi> +        </mrow> +        <mi>M</mi> +      </mfrac> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x021D1;</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText TextNormal "Inline double up arrows, auto, thick line\160"+, EDelimited+    ""+    ""+    [ Left "\8657"+    , Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    , Left "\8657"+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-20.test view
@@ -0,0 +1,42 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline double down arrows, display style, thick line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x021D3;</mo> +      <mrow>+        <mstyle displaystyle="true" scriptlevel="0">+          <mfrac linethickness="1pt">+            <mrow>+              <mi mathcolor="gray">sin</mi> +              <mo rspace="verythinmathspace">&#x02061;</mo> +              <mi>&#x003B8;</mi> +            </mrow> +            <mi>M</mi> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x021D3;</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText+    TextNormal+    "Inline double down arrows, display style, thick line\160"+, EDelimited+    ""+    ""+    [ Left "\8659"+    , Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    , Left "\8659"+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-21.test view
@@ -0,0 +1,42 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline double up down arrows, text style, thick line </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x021D5;</mo> +      <mrow>+        <mstyle displaystyle="false" scriptlevel="0">+          <mfrac linethickness="1pt">+            <mrow>+              <mi mathcolor="gray">sin</mi> +              <mo rspace="verythinmathspace">&#x02061;</mo> +              <mi>&#x003B8;</mi> +            </mrow> +            <mi>M</mi> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x021D5;</mo> +    </mrow> +  </mstyle> +  <mtext> the end.</mtext> </math>+>>> native+[ EText+    TextNormal+    "Inline double up down arrows, text style, thick line\160"+, EDelimited+    ""+    ""+    [ Left "\8661"+    , Right+        (EFraction+           NormalFrac+           (EGrouped+              [ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "\952" ])+           (EIdentifier "M"))+    , Left "\8661"+    ]+, EText TextNormal "\160the end."+]
+ test/reader/mml/mfracZcomp-22.test view
@@ -0,0 +1,45 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline, styles auto, display and text </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mfrac>+        <mn>1</mn> +        <mn>2</mn> +      </mfrac> +      <mo form="infix">-</mo> +      <mrow>+        <mstyle displaystyle="true" scriptlevel="0">+          <mfrac>+            <mn>1</mn> +            <mn>2</mn> +          </mfrac> +        </mstyle> +      </mrow> +      <mo form="infix">+</mo> +      <mrow>+        <mstyle displaystyle="false" scriptlevel="0">+          <mfrac>+            <mn>1.23456</mn> +            <mn>7890</mn> +          </mfrac> +        </mstyle> +      </mrow> +    </mrow> +  </mstyle> +  <mtext>, the rendering should be script-size, normal-size and script-size in this example. Fraction lines should align vertically with the math axis.</mtext> </math>+>>> native+[ EText TextNormal "Inline, styles auto, display and text\160"+, EGrouped+    [ EFraction NormalFrac (ENumber "1") (ENumber "2")+    , ESymbol Bin "-"+    , EFraction NormalFrac (ENumber "1") (ENumber "2")+    , ESymbol Bin "+"+    , EFraction NormalFrac (ENumber "1.23456") (ENumber "7890")+    ]+, EText+    TextNormal+    ", the rendering should be script-size, normal-size and script-size in this example. Fraction lines should align vertically with the math axis."+]
+ test/reader/mml/mfracZcomp-23.test view
@@ -0,0 +1,41 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtext>The same expression </mtext> +  <mstyle displaystyle="true" scriptlevel="0">+    <mfrac>+      <mn>1</mn> +      <mn>2</mn> +    </mfrac> +    <mo form="infix">-</mo> +    <mrow>+      <mstyle displaystyle="true" scriptlevel="0">+        <mfrac>+          <mn>1</mn> +          <mn>2</mn> +        </mfrac> +      </mstyle> +    </mrow> +    <mo form="infix">+</mo> +    <mrow>+      <mstyle displaystyle="false" scriptlevel="0">+        <mfrac>+          <mn>1.23456</mn> +          <mn>7890</mn> +        </mfrac> +      </mstyle> +    </mrow> +  </mstyle> +  <mtext> in a display.</mtext> </math>+>>> native+[ EText TextNormal "The same expression\160"+, EGrouped+    [ EFraction NormalFrac (ENumber "1") (ENumber "2")+    , ESymbol Bin "-"+    , EFraction NormalFrac (ENumber "1") (ENumber "2")+    , ESymbol Bin "+"+    , EFraction NormalFrac (ENumber "1.23456") (ENumber "7890")+    ]+, EText TextNormal "\160in a display."+]
+ test/reader/mml/mfracZcomp-24.test view
@@ -0,0 +1,94 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline fenced nested fractions </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mrow>+      <mrow>+        <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">[</mo> +        <mfrac>+          <mrow>+            <mrow>+              <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02225;</mo> +              <mfrac>+                <mrow>+                  <mrow>+                    <mi mathcolor="gray">sin</mi> +                    <mo rspace="verythinmathspace">&#x02061;</mo> +                    <mi>&#x003B8;</mi> +                  </mrow> +                  <mo form="infix">+</mo> +                  <mn>1</mn> +                </mrow> +                <mn>11</mn> +              </mfrac> +              <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02225;</mo> +            </mrow> +            <mo form="infix">-</mo> +            <mi>x</mi> +          </mrow> +          <mfrac>+            <msup>+              <mi>x</mi> +              <mn>2</mn> +            </msup> +            <msub>+              <mi>a</mi> +              <mn>1</mn> +            </msub> +          </mfrac> +        </mfrac> +        <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">]</mo> +      </mrow> +      <mo form="infix">+</mo> +      <mrow>+        <mo form="prefix" fence="true" stretchy="false">[</mo> +        <mn>1.0</mn> +        <mo form="postfix" fence="true" stretchy="false">]</mo> +      </mrow> +    </mrow> +  </mstyle> +  <mtext> etc.</mtext> </math>+>>> native+[ EText TextNormal "Inline fenced nested fractions\160"+, EGrouped+    [ EDelimited+        "["+        "]"+        [ Right+            (EFraction+               NormalFrac+               (EGrouped+                  [ EDelimited+                      ""+                      ""+                      [ Left "\8741"+                      , Right+                          (EFraction+                             NormalFrac+                             (EGrouped+                                [ EGrouped+                                    [ EMathOperator "sin"+                                    , ESymbol Ord "\8289"+                                    , EIdentifier "\952"+                                    ]+                                , ESymbol Bin "+"+                                , ENumber "1"+                                ])+                             (ENumber "11"))+                      , Left "\8741"+                      ]+                  , ESymbol Bin "-"+                  , EIdentifier "x"+                  ])+               (EFraction+                  NormalFrac+                  (ESuper (EIdentifier "x") (ENumber "2"))+                  (ESub (EIdentifier "a") (ENumber "1"))))+        ]+    , ESymbol Bin "+"+    , EGrouped [ ESymbol Open "[" , ENumber "1.0" , ESymbol Close "]" ]+    ]+, EText TextNormal "\160etc."+]
+ test/reader/mml/mfracZcomp-25.test view
@@ -0,0 +1,92 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtext>The same expression </mtext> +  <mstyle displaystyle="true" scriptlevel="0">+    <mrow>+      <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">[</mo> +      <mfrac>+        <mrow>+          <mrow>+            <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02225;</mo> +            <mfrac>+              <mrow>+                <mrow>+                  <mi mathcolor="gray">sin</mi> +                  <mo rspace="verythinmathspace">&#x02061;</mo> +                  <mi>&#x003B8;</mi> +                </mrow> +                <mo form="infix">+</mo> +                <mn>1</mn> +              </mrow> +              <mn>11</mn> +            </mfrac> +            <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02225;</mo> +          </mrow> +          <mo form="infix">-</mo> +          <mi>x</mi> +        </mrow> +        <mfrac>+          <msup>+            <mi>x</mi> +            <mn>2</mn> +          </msup> +          <msub>+            <mi>a</mi> +            <mn>1</mn> +          </msub> +        </mfrac> +      </mfrac> +      <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">]</mo> +    </mrow> +    <mo form="infix">+</mo> +    <mrow>+      <mo form="prefix" fence="true" stretchy="false">[</mo> +      <mn>1.0</mn> +      <mo form="postfix" fence="true" stretchy="false">]</mo> +    </mrow> +  </mstyle> +  <mtext> in a display.</mtext> </math>+>>> native+[ EText TextNormal "The same expression\160"+, EGrouped+    [ EDelimited+        "["+        "]"+        [ Right+            (EFraction+               NormalFrac+               (EGrouped+                  [ EDelimited+                      ""+                      ""+                      [ Left "\8741"+                      , Right+                          (EFraction+                             NormalFrac+                             (EGrouped+                                [ EGrouped+                                    [ EMathOperator "sin"+                                    , ESymbol Ord "\8289"+                                    , EIdentifier "\952"+                                    ]+                                , ESymbol Bin "+"+                                , ENumber "1"+                                ])+                             (ENumber "11"))+                      , Left "\8741"+                      ]+                  , ESymbol Bin "-"+                  , EIdentifier "x"+                  ])+               (EFraction+                  NormalFrac+                  (ESuper (EIdentifier "x") (ENumber "2"))+                  (ESub (EIdentifier "a") (ENumber "1"))))+        ]+    , ESymbol Bin "+"+    , EGrouped [ ESymbol Open "[" , ENumber "1.0" , ESymbol Close "]" ]+    ]+, EText TextNormal "\160in a display."+]
+ test/reader/mml/mfracZcomp-26.test view
@@ -0,0 +1,107 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>LaTeX renders continued fractions </mtext> +  <mstyle displaystyle="true" scriptlevel="0">+    <mfrac>+      <mn>1</mn> +      <mrow>+        <msqrt>+          <mn>2</mn> +        </msqrt> +        <mo form="infix">+</mo> +        <mrow>+          <mstyle displaystyle="true" scriptlevel="0">+            <mfrac>+              <mn>1</mn> +              <mrow>+                <msqrt>+                  <mn>3</mn> +                </msqrt> +                <mo form="infix">+</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mn>1</mn> +                      <mrow>+                        <msqrt>+                          <mn>4</mn> +                        </msqrt> +                        <mo form="infix">+</mo> +                        <mrow>+                          <mstyle displaystyle="true" scriptlevel="0">+                            <mfrac>+                              <mn>1</mn> +                              <mrow>+                                <msqrt>+                                  <mn>5</mn> +                                </msqrt> +                                <mo form="infix">+</mo> +                                <mrow>+                                  <mstyle displaystyle="true" scriptlevel="0">+                                    <mfrac>+                                      <mn>1</mn> +                                      <mrow>+                                        <msqrt>+                                          <mn>6</mn> +                                        </msqrt> +                                        <mo form="infix">+</mo> +                                        <mi>&#x02026;</mi> +                                      </mrow> +                                    </mfrac> +                                  </mstyle> +                                </mrow> +                              </mrow> +                            </mfrac> +                          </mstyle> +                        </mrow> +                      </mrow> +                    </mfrac> +                  </mstyle> +                </mrow> +              </mrow> +            </mfrac> +          </mstyle> +        </mrow> +      </mrow> +    </mfrac> +  </mstyle> +  <mtext> normal size at all levels in all contexts</mtext> </math>+>>> native+[ EText TextNormal "LaTeX renders continued fractions\160"+, EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped+       [ ESqrt (ENumber "2")+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (ENumber "1")+           (EGrouped+              [ ESqrt (ENumber "3")+              , ESymbol Bin "+"+              , EFraction+                  NormalFrac+                  (ENumber "1")+                  (EGrouped+                     [ ESqrt (ENumber "4")+                     , ESymbol Bin "+"+                     , EFraction+                         NormalFrac+                         (ENumber "1")+                         (EGrouped+                            [ ESqrt (ENumber "5")+                            , ESymbol Bin "+"+                            , EFraction+                                NormalFrac+                                (ENumber "1")+                                (EGrouped+                                   [ ESqrt (ENumber "6") , ESymbol Bin "+" , EIdentifier "\8230" ])+                            ])+                     ])+              ])+       ])+, EText TextNormal "\160normal size at all levels in all contexts"+]
+ test/reader/mml/mfracZcomp-27.test view
@@ -0,0 +1,103 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mstyle displaystyle="true" scriptlevel="0">+    <mfrac>+      <mn>1</mn> +      <mrow>+        <msqrt>+          <mn>2</mn> +        </msqrt> +        <mo form="infix">+</mo> +        <mrow>+          <mstyle displaystyle="true" scriptlevel="0">+            <mfrac>+              <mn>1</mn> +              <mrow>+                <msqrt>+                  <mn>3</mn> +                </msqrt> +                <mo form="infix">+</mo> +                <mrow>+                  <mstyle displaystyle="true" scriptlevel="0">+                    <mfrac>+                      <mn>1</mn> +                      <mrow>+                        <msqrt>+                          <mn>4</mn> +                        </msqrt> +                        <mo form="infix">+</mo> +                        <mrow>+                          <mstyle displaystyle="true" scriptlevel="0">+                            <mfrac>+                              <mn>1</mn> +                              <mrow>+                                <msqrt>+                                  <mn>5</mn> +                                </msqrt> +                                <mo form="infix">+</mo> +                                <mrow>+                                  <mstyle displaystyle="true" scriptlevel="0">+                                    <mfrac>+                                      <mn>1</mn> +                                      <mrow>+                                        <msqrt>+                                          <mn>6</mn> +                                        </msqrt> +                                        <mo form="infix">+</mo> +                                        <mi>&#x02026;</mi> +                                      </mrow> +                                    </mfrac> +                                  </mstyle> +                                </mrow> +                              </mrow> +                            </mfrac> +                          </mstyle> +                        </mrow> +                      </mrow> +                    </mfrac> +                  </mstyle> +                </mrow> +              </mrow> +            </mfrac> +          </mstyle> +        </mrow> +      </mrow> +    </mfrac> +  </mstyle> </math>+>>> native+[ EFraction+    NormalFrac+    (ENumber "1")+    (EGrouped+       [ ESqrt (ENumber "2")+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (ENumber "1")+           (EGrouped+              [ ESqrt (ENumber "3")+              , ESymbol Bin "+"+              , EFraction+                  NormalFrac+                  (ENumber "1")+                  (EGrouped+                     [ ESqrt (ENumber "4")+                     , ESymbol Bin "+"+                     , EFraction+                         NormalFrac+                         (ENumber "1")+                         (EGrouped+                            [ ESqrt (ENumber "5")+                            , ESymbol Bin "+"+                            , EFraction+                                NormalFrac+                                (ENumber "1")+                                (EGrouped+                                   [ ESqrt (ENumber "6") , ESymbol Bin "+" , EIdentifier "\8230" ])+                            ])+                     ])+              ])+       ])+]
+ test/reader/mml/mfracZcomp-28.test view
@@ -0,0 +1,98 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtext>Inline nested fracs </mtext> +  <mstyle displaystyle="false" scriptlevel="0">+    <mfrac>+      <msup>+        <mn>1</mn> +        <msqrt>+          <mn>6</mn> +        </msqrt> +      </msup> +      <mrow>+        <msqrt>+          <mn>2</mn> +        </msqrt> +        <mo form="infix">+</mo> +        <mfrac>+          <mn>1</mn> +          <mrow>+            <msqrt>+              <mn>3</mn> +            </msqrt> +            <mo form="infix">+</mo> +            <mfrac>+              <mn>1</mn> +              <mrow>+                <msqrt>+                  <mn>4</mn> +                </msqrt> +                <mo form="infix">+</mo> +                <mfrac>+                  <mn>1</mn> +                  <mrow>+                    <msqrt>+                      <mn>5</mn> +                    </msqrt> +                    <mo form="infix">+</mo> +                    <mfrac>+                      <mn>1</mn> +                      <mrow>+                        <msqrt>+                          <mn>6</mn> +                        </msqrt> +                        <mo form="infix">+</mo> +                        <mi>&#x02026;</mi> +                      </mrow> +                    </mfrac> +                  </mrow> +                </mfrac> +              </mrow> +            </mfrac> +          </mrow> +        </mfrac> +      </mrow> +    </mfrac> +  </mstyle> +  <mtext> are script size at the first level and decrease to script script size for all more nested levels.</mtext> </math>+>>> native+[ EText TextNormal "Inline nested fracs\160"+, EFraction+    NormalFrac+    (ESuper (ENumber "1") (ESqrt (ENumber "6")))+    (EGrouped+       [ ESqrt (ENumber "2")+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (ENumber "1")+           (EGrouped+              [ ESqrt (ENumber "3")+              , ESymbol Bin "+"+              , EFraction+                  NormalFrac+                  (ENumber "1")+                  (EGrouped+                     [ ESqrt (ENumber "4")+                     , ESymbol Bin "+"+                     , EFraction+                         NormalFrac+                         (ENumber "1")+                         (EGrouped+                            [ ESqrt (ENumber "5")+                            , ESymbol Bin "+"+                            , EFraction+                                NormalFrac+                                (ENumber "1")+                                (EGrouped+                                   [ ESqrt (ENumber "6") , ESymbol Bin "+" , EIdentifier "\8230" ])+                            ])+                     ])+              ])+       ])+, EText+    TextNormal+    "\160are script size at the first level and decrease to script script size for all more nested levels."+]
+ test/reader/mml/mfracZcomp-29.test view
@@ -0,0 +1,100 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtext>Displayed nested fractions are normal size at the first level, </mtext> +  <mstyle displaystyle="true" scriptlevel="0">+    <mfrac>+      <msup>+        <mn>1</mn> +        <msqrt>+          <mn>6</mn> +        </msqrt> +      </msup> +      <mrow>+        <msqrt>+          <mn>2</mn> +        </msqrt> +        <mo form="infix">+</mo> +        <mfrac>+          <mn>1</mn> +          <mrow>+            <msqrt>+              <mn>3</mn> +            </msqrt> +            <mo form="infix">+</mo> +            <mfrac>+              <mn>1</mn> +              <mrow>+                <msqrt>+                  <mn>4</mn> +                </msqrt> +                <mo form="infix">+</mo> +                <mfrac>+                  <mn>1</mn> +                  <mrow>+                    <msqrt>+                      <mn>5</mn> +                    </msqrt> +                    <mo form="infix">+</mo> +                    <mfrac>+                      <mn>1</mn> +                      <mrow>+                        <msqrt>+                          <mn>6</mn> +                        </msqrt> +                        <mo form="infix">+</mo> +                        <mi>&#x02026;</mi> +                      </mrow> +                    </mfrac> +                  </mrow> +                </mfrac> +              </mrow> +            </mfrac> +          </mrow> +        </mfrac> +      </mrow> +    </mfrac> +  </mstyle> +  <mtext> script size at second level, and script-script size at all more nested levels.</mtext> </math>+>>> native+[ EText+    TextNormal+    "Displayed nested fractions are normal size at the first level,\160"+, EFraction+    NormalFrac+    (ESuper (ENumber "1") (ESqrt (ENumber "6")))+    (EGrouped+       [ ESqrt (ENumber "2")+       , ESymbol Bin "+"+       , EFraction+           NormalFrac+           (ENumber "1")+           (EGrouped+              [ ESqrt (ENumber "3")+              , ESymbol Bin "+"+              , EFraction+                  NormalFrac+                  (ENumber "1")+                  (EGrouped+                     [ ESqrt (ENumber "4")+                     , ESymbol Bin "+"+                     , EFraction+                         NormalFrac+                         (ENumber "1")+                         (EGrouped+                            [ ESqrt (ENumber "5")+                            , ESymbol Bin "+"+                            , EFraction+                                NormalFrac+                                (ENumber "1")+                                (EGrouped+                                   [ ESqrt (ENumber "6") , ESymbol Bin "+" , EIdentifier "\8230" ])+                            ])+                     ])+              ])+       ])+, EText+    TextNormal+    "\160script size at second level, and script-script size at all more nested levels."+]
+ test/reader/mml/mfracZcomp-30.test view
@@ -0,0 +1,128 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mstyle displaystyle="true" scriptlevel="0">+    <mrow>+      <mi mathcolor="gray">HypergeomDist</mi> +      <mo>&#x02061;</mo> +      <mrow>+        <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +        <mrow>+          <mi>x</mi> +          <mo form="infix">;</mo> +          <mrow>+            <mi>M</mi> +            <mo form="infix">,</mo> +            <mi>K</mi> +            <mo form="infix">,</mo> +            <mi>n</mi> +          </mrow> +        </mrow> +        <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +      </mrow> +    </mrow> +    <mo form="infix">=</mo> +    <mrow>+      <munderover>+        <mo form="prefix" movablelimits="false" largeop="false" stretchy="true" maxsize="1.4" minsize="1.4">&#x02211;</mo> +        <mrow>+          <mi>k</mi> +          <mo form="infix">=</mo> +          <mn>0</mn> +        </mrow> +        <mi>x</mi> +      </munderover> +      <mfrac>+        <mrow>+          <mrow>+            <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +            <mfrac linethickness="0">+              <mi>K</mi> +              <mi>k</mi> +            </mfrac> +            <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +          </mrow> +          <mo>&#x02062;</mo> +          <mrow>+            <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +            <mfrac linethickness="0">+              <mrow>+                <mi>M</mi> +                <mo form="infix">-</mo> +                <mi>K</mi> +              </mrow> +              <mrow>+                <mi>n</mi> +                <mo form="infix">-</mo> +                <mi>k</mi> +              </mrow> +            </mfrac> +            <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +          </mrow> +        </mrow> +        <mrow>+          <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +          <mfrac linethickness="0">+            <mi>M</mi> +            <mi>n</mi> +          </mfrac> +          <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +        </mrow> +      </mfrac> +    </mrow> +  </mstyle> </math>+>>> native+[ EGrouped+    [ EIdentifier "HypergeomDist"+    , ESymbol Ord "\8289"+    , EDelimited+        "("+        ")"+        [ Right+            (EGrouped+               [ EIdentifier "x"+               , ESymbol Pun ";"+               , EGrouped+                   [ EIdentifier "M"+                   , ESymbol Pun ","+                   , EIdentifier "K"+                   , ESymbol Pun ","+                   , EIdentifier "n"+                   ]+               ])+        ]+    ]+, ESymbol Rel "="+, EGrouped+    [ EUnderover+        False+        (ESymbol Op "\8721")+        (EGrouped [ EIdentifier "k" , ESymbol Rel "=" , ENumber "0" ])+        (EIdentifier "x")+    , EFraction+        NormalFrac+        (EGrouped+           [ EDelimited+               "("+               ")"+               [ Right (EFraction NormalFrac (EIdentifier "K") (EIdentifier "k"))+               ]+           , ESymbol Ord "\8290"+           , EDelimited+               "("+               ")"+               [ Right+                   (EFraction+                      NormalFrac+                      (EGrouped [ EIdentifier "M" , ESymbol Bin "-" , EIdentifier "K" ])+                      (EGrouped [ EIdentifier "n" , ESymbol Bin "-" , EIdentifier "k" ]))+               ]+           ])+        (EDelimited+           "("+           ")"+           [ Right (EFraction NormalFrac (EIdentifier "M") (EIdentifier "n"))+           ])+    ]+]
+ test/reader/mml/mfracZcomp-31.test view
@@ -0,0 +1,116 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">+  <mtext>Here's a display </mtext> +  <mstyle displaystyle="true" scriptlevel="0">+    <mrow>+      <mi>F</mi> +      <mo>&#x02061;</mo> +      <mrow>+        <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +        <mrow>+          <mi>t</mi> +          <mo form="infix">,</mo> +          <mi>y</mi> +        </mrow> +        <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +      </mrow> +    </mrow> +    <mo form="infix">=</mo> +    <mfrac>+      <mrow>+        <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +        <mrow>+          <mn>1</mn> +          <mo form="infix">,</mo> +          <mfrac>+            <mrow>+              <mo form="prefix">&#x02146;</mo> +              <mi>y</mi> +            </mrow> +            <mrow>+              <mo form="prefix">&#x02146;</mo> +              <mi>t</mi> +            </mrow> +          </mfrac> +        </mrow> +        <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +      </mrow> +      <mrow>+        <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02225;</mo> +        <mrow>+          <mo form="prefix" fence="true" stretchy="true" lspace="0em" rspace="0em">(</mo> +          <mrow>+            <mn>1</mn> +            <mo form="infix">,</mo> +            <mfrac>+              <mrow>+                <mo form="prefix">&#x02146;</mo> +                <mi>y</mi> +              </mrow> +              <mrow>+                <mo form="prefix">&#x02146;</mo> +                <mi>t</mi> +              </mrow> +            </mfrac> +          </mrow> +          <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">)</mo> +        </mrow> +        <mo form="postfix" fence="true" stretchy="true" lspace="0em" rspace="0em">&#x02225;</mo> +      </mrow> +    </mfrac> +  </mstyle> +  <mtext> with some real math in it.</mtext> </math>+>>> native+[ EText TextNormal "Here's a display\160"+, EGrouped+    [ EGrouped+        [ EIdentifier "F"+        , ESymbol Ord "\8289"+        , EDelimited+            "("+            ")"+            [ Right+                (EGrouped [ EIdentifier "t" , ESymbol Pun "," , EIdentifier "y" ])+            ]+        ]+    , ESymbol Rel "="+    , EFraction+        NormalFrac+        (EDelimited+           "("+           ")"+           [ Right+               (EGrouped+                  [ ENumber "1"+                  , ESymbol Pun ","+                  , EFraction+                      NormalFrac+                      (EGrouped [ ESymbol Ord "\8518" , EIdentifier "y" ])+                      (EGrouped [ ESymbol Ord "\8518" , EIdentifier "t" ])+                  ])+           ])+        (EDelimited+           ""+           ""+           [ Left "\8741"+           , Right+               (EDelimited+                  "("+                  ")"+                  [ Right+                      (EGrouped+                         [ ENumber "1"+                         , ESymbol Pun ","+                         , EFraction+                             NormalFrac+                             (EGrouped [ ESymbol Ord "\8518" , EIdentifier "y" ])+                             (EGrouped [ ESymbol Ord "\8518" , EIdentifier "t" ])+                         ])+                  ])+           , Left "\8741"+           ])+    ]+, EText TextNormal "\160with some real math in it."+]
+ test/reader/mml/mfracZcomp-32.test view
@@ -0,0 +1,82 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" mode="display">+  <mtext>And this is an example where the bevelled attribute is set inside the radical </mtext>  +  <mfrac>+    <mrow>+      <msup>+        <mi>y</mi> +        <mn>2</mn> +      </msup> +      <mo>-</mo> +      <msup>+        <mi>t</mi> +        <mn>2</mn> +      </msup> +    </mrow> +    <msqrt>+      <mfrac bevelled="true">+        <mn>1</mn> +        <mrow>+          <mo>(</mo> +          <mn>1</mn> +          <mo>+</mo> +          <msup>+            <mrow>+              <mo>|</mo> +              <mrow>+                <msup>+                  <mi>y</mi> +                  <mn>2</mn> +                </msup> +                <mo>-</mo> +                <msup>+                  <mi>t</mi> +                  <mn>2</mn> +                </msup> +              </mrow> +              <mo>|</mo> +            </mrow> +            <mn>2</mn> +          </msup> +          <mo>)</mo> +        </mrow> +      </mfrac> +    </msqrt> +  </mfrac> </math>+>>> native+[ EText+    TextNormal+    "And this is an example where the bevelled attribute is set inside the radical\160"+, EFraction+    NormalFrac+    (EGrouped+       [ ESuper (EIdentifier "y") (ENumber "2")+       , ESymbol Bin "-"+       , ESuper (EIdentifier "t") (ENumber "2")+       ])+    (ESqrt+       (EFraction+          NormalFrac+          (ENumber "1")+          (EDelimited+             "("+             ")"+             [ Right (ENumber "1")+             , Right (ESymbol Bin "+")+             , Right+                 (ESuper+                    (EDelimited+                       "|"+                       "|"+                       [ Right+                           (EGrouped+                              [ ESuper (EIdentifier "y") (ENumber "2")+                              , ESymbol Bin "-"+                              , ESuper (EIdentifier "t") (ENumber "2")+                              ])+                       ])+                    (ENumber "2"))+             ])))+]
+ test/reader/mml/mfracZcomp-33.test view
@@ -0,0 +1,126 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" mode="display" class="background">+  <mtext>And this shows a combination with a background image at a desired opacity </mtext> +  <mrow class="foreground">+    <msub>+      <mi>Z</mi> +      <mi>&#x003B1;</mi> +    </msub> +    <mrow>+      <mo>(</mo> +      <mi>f</mi> +      <mo>)</mo> +    </mrow> +    <mo>=</mo> +    <mfrac>+      <mn>1</mn> +      <mrow>+        <mn>2</mn> +        <mi>i</mi> +        <mo>&#x02009;</mo> +        <mi>cos</mi> +        <mo>(</mo> +        <mfrac>+          <mrow>+            <mi>&#x003B1;</mi> +            <mi>&#x003C0;</mi> +          </mrow> +          <mn>2</mn> +        </mfrac> +        <mo>)</mo> +      </mrow> +    </mfrac> +    <mrow>+      <msub>+        <mo>&#x0222B;</mo> +        <mi>C</mi> +      </msub> +      <mfrac>+        <mrow>+          <mi>f</mi> +          <mo stretchy="false">(</mo> +          <mi>i</mi> +          <mi>z</mi> +          <mo stretchy="false">)</mo> +          <msup>+            <mrow>+              <mo>(</mo> +              <mo>-</mo> +              <mi>z</mi> +              <mo>)</mo> +            </mrow> +            <mi>&#x003B1;</mi> +          </msup> +        </mrow> +        <mrow>+          <msup>+            <mi>e</mi> +            <mrow>+              <mn>2</mn> +              <mi>&#x003C0;</mi> +              <mi>z</mi> +            </mrow> +          </msup> +          <mo>-</mo> +          <mn>1</mn> +        </mrow> +      </mfrac> +    </mrow> +    <mo>&#x02146;</mo> +    <mi>z</mi> +  </mrow> </math>+>>> native+[ EText+    TextNormal+    "And this shows a combination with a background image at a desired opacity\160"+, EGrouped+    [ ESub (EIdentifier "Z") (EIdentifier "\945")+    , EDelimited "(" ")" [ Right (EIdentifier "f") ]+    , ESymbol Rel "="+    , EFraction+        NormalFrac+        (ENumber "1")+        (EGrouped+           [ ENumber "2"+           , EIdentifier "i"+           , ESymbol Ord "\8201"+           , EMathOperator "cos"+           , EDelimited+               "("+               ")"+               [ Right+                   (EFraction+                      NormalFrac+                      (EGrouped [ EIdentifier "\945" , EIdentifier "\960" ])+                      (ENumber "2"))+               ]+           ])+    , EGrouped+        [ ESub (ESymbol Op "\8747") (EIdentifier "C")+        , EFraction+            NormalFrac+            (EGrouped+               [ EIdentifier "f"+               , ESymbol Open "("+               , EIdentifier "i"+               , EIdentifier "z"+               , ESymbol Close ")"+               , ESuper+                   (EDelimited+                      "(" ")" [ Right (ESymbol Bin "-") , Right (EIdentifier "z") ])+                   (EIdentifier "\945")+               ])+            (EGrouped+               [ ESuper+                   (EIdentifier "e")+                   (EGrouped [ ENumber "2" , EIdentifier "\960" , EIdentifier "z" ])+               , ESymbol Bin "-"+               , ENumber "1"+               ])+        ]+    , ESymbol Ord "\8518"+    , EIdentifier "z"+    ]+]
+ test/reader/mml/mi1.test view
@@ -0,0 +1,18 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>x</mi> +    <mo>+</mo> +    <mrow>+      <mi>a</mi> +      <mo>/</mo> +      <mi>b</mi> +    </mrow> +  </mrow> </math>+>>> native+[ EIdentifier "x"+, ESymbol Bin "+"+, EGrouped [ EIdentifier "a" , ESymbol Ord "/" , EIdentifier "b" ]+]
+ test/reader/mml/mi2.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>sin</mi> +    <mo> &#x2061;</mo> +    <mi>x</mi> +  </mrow> </math>+>>> native+[ EMathOperator "sin" , ESymbol Ord "\8289" , EIdentifier "x" ]
+ test/reader/mml/mi3.test view
@@ -0,0 +1,17 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>x</mi> +    <mover>+      <mo> &#x2192;</mo> +      <mtext>maps to</mtext> +    </mover> +    <mi>y</mi> +  </mrow> </math>+>>> native+[ EIdentifier "x"+, EOver False (ESymbol Accent "\8594") (EText TextNormal "maps to")+, EIdentifier "y"+]
+ test/reader/mml/mi4.test view
@@ -0,0 +1,18 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>f</mi> +    <mo> &#x2061;</mo> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +  </mrow> </math>+>>> native+[ EIdentifier "f"+, ESymbol Ord "\8289"+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+]
+ test/reader/mml/miAtoken5.test view
@@ -0,0 +1,85 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mi>A</mi> +        <mo>+</mo> +        <mi fontweight="bold">A</mi> +        <mo>+</mo> +        <mi fontsize="36pt">A</mi> +        <mo>+</mo> +        <mi fontstyle="normal">A</mi> +        <mo>+</mo> +        <mi color="#9c0fff">A</mi> +        <mo>+</mo> +        <mi fontfamily="Helvetica">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi mathvariant="script">A</mi> +        <mo>+</mo> +        <mi mathsize="36pt">A</mi> +        <mo>+</mo> +        <mi mathcolor="#9c0fff">A</mi> +        <mo>+</mo> +        <mi mathbackground="blue">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi mathvariant="script" fontweight="bold">A</mi> +        <mo>+</mo> +        <mi mathsize="36pt" fontsize="12pt">A</mi> +        <mo>+</mo> +        <mi mathcolor="#9c0fff" color="red">A</mi> +        <mo>+</mo> +        <mi mathbackground="blue" color="gray">A</mi> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter ]+    [ [ [ EGrouped+            [ EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EStyled TextScript [ EIdentifier "A" ]+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EStyled TextScript [ EIdentifier "A" ]+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            ]+        ]+      ]+    ]+]
+ test/reader/mml/miSfonts8.test view
@@ -0,0 +1,32 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle fontstyle="italic" fontfamily="Helvetica">+    <mrow>+      <mi>a</mi> +      <mo>+</mo> +      <mi fontweight="bold">b</mi> +      <mo>+</mo> +      <mi fontstyle="normal">c</mi> +      <mo>+</mo> +      <mi fontfamily="Courier" color="#00ff00">f</mi> +      <mo>+</mo> +      <mi fontsize="36pt">&#x0393;</mi> +      <mo>+</mo> +      <mi fontweight="bold" fontstyle="normal">d</mi> +    </mrow> +  </mstyle> </math>+>>> native+[ EIdentifier "a"+, ESymbol Bin "+"+, EIdentifier "b"+, ESymbol Bin "+"+, EIdentifier "c"+, ESymbol Bin "+"+, EIdentifier "f"+, ESymbol Bin "+"+, EIdentifier "\915"+, ESymbol Bin "+"+, EIdentifier "d"+]
+ test/reader/mml/miSfontsize9.test view
@@ -0,0 +1,99 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mstyle fontweight="bold" color="#ff0000">+          <mrow>+            <mi>A</mi> +            <mo>+</mo> +            <mi fontweight="normal" fontstyle="italic">A</mi> +            <mo>+</mo> +            <mstyle fontsize="0.1in">+              <mi>A</mi> +              <mo>+</mo> +              <mi fontsize="2em">A</mi> +              <mo>+</mo> +              <mi fontsize="36pt">A</mi> +            </mstyle> +            <mo>+</mo> +            <mi fontsize="20mm">A</mi> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mstyle mathcolor="#ff0000">+          <mrow>+            <mi>A</mi> +            <mo>+</mo> +            <mstyle mathsize="0.1in">+              <mi>A</mi> +              <mo>+</mo> +              <mi mathsize="2em">A</mi> +              <mo>+</mo> +              <mi mathsize="36pt">A</mi> +            </mstyle> +            <mo>+</mo> +            <mi mathsize="20mm">A</mi> +            <mo>+</mo> +            <mstyle mathsize="big">+              <mi>A</mi> +              <mo>+</mo> +              <mi mathsize="small">A</mi> +              <mo>+</mo> +              <mi mathsize="normal">A</mi> +            </mstyle> +          </mrow> +        </mstyle> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter ]+    [ [ [ EGrouped+            [ EIdentifier "A"+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EGrouped+                [ EIdentifier "A"+                , ESymbol Bin "+"+                , EIdentifier "A"+                , ESymbol Bin "+"+                , EIdentifier "A"+                ]+            , ESymbol Bin "+"+            , EIdentifier "A"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "A"+            , ESymbol Bin "+"+            , EGrouped+                [ EIdentifier "A"+                , ESymbol Bin "+"+                , EIdentifier "A"+                , ESymbol Bin "+"+                , EIdentifier "A"+                ]+            , ESymbol Bin "+"+            , EIdentifier "A"+            , ESymbol Bin "+"+            , EGrouped+                [ EIdentifier "A"+                , ESymbol Bin "+"+                , EIdentifier "A"+                , ESymbol Bin "+"+                , EIdentifier "A"+                ]+            ]+        ]+      ]+    ]+]
+ test/reader/mml/miSmathsize16.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mi mathsize="2em">A</mi> +  <mo>+</mo> +  <mi>B</mi> </math>+>>> native+[ EIdentifier "A" , ESymbol Bin "+" , EIdentifier "B" ]
+ test/reader/mml/miSmathsize17.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mi mathsize="small">A</mi> +  <mo>+</mo> +  <mi mathsize="big">A</mi> +  <mo>+</mo> +  <mi mathsize="3ex">A</mi> +  <mo>+</mo> +  <mi>B</mi> </math>+>>> native+[ EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "B"+]
+ test/reader/mml/miStoken10.test view
@@ -0,0 +1,44 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <mrow>+      <mi>A</mi> +      <mo>+</mo> +      <mi fontweight="bold">A</mi> +      <mo>+</mo> +      <mi fontweight="normal" fontstyle="italic">A</mi> +      <mo>+</mo> +      <mi fontstyle="normal">A</mi> +      <mo>+</mo> +      <mi fontweight="bold" fontstyle="normal">A</mi> +      <mo>+</mo> +      <mi color="#9c0fff">A</mi> +      <mo>+</mo> +      <mi color="#0ee">A</mi> +      <mo>+</mo> +      <mi color="Green">A</mi> +      <mo>+</mo> +      <mi fontfamily="Helvetica">A</mi> +    </mrow> +  </mstyle> </math>+>>> native+[ EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+]
+ test/reader/mml/mid1.test view
@@ -0,0 +1,9 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mo>&#x2223;</mo> +  <mi>x</mi> +  <mo>&#x2223;</mo> </math>+>>> native+[ ESymbol Rel "\8739" , EIdentifier "x" , ESymbol Rel "\8739" ]
+ test/reader/mml/mid2.test view
@@ -0,0 +1,15 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mo>&#x2223;</mo> +  <mfrac>+    <mi>H</mi> +    <mi>K</mi> +  </mfrac> +  <mo>&#x2223;</mo> </math>+>>> native+[ ESymbol Rel "\8739"+, EFraction NormalFrac (EIdentifier "H") (EIdentifier "K")+, ESymbol Rel "\8739"+]
+ test/reader/mml/miequivalents11.test view
@@ -0,0 +1,216 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mi>&#x00041;</mi> +        <mo>=</mo> +        <mi mathvariant="normal">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D400;</mi> +        <mo>=</mo> +        <mi mathvariant="bold">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D434;</mi> +        <mo>=</mo> +        <mi mathvariant="italic">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D468;</mi> +        <mo>=</mo> +        <mi mathvariant="bold-italic">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D538;</mi> +        <mo>=</mo> +        <mi mathvariant="double-struck">A</mi> +        <mo>=</mo> +        <mi>&#x1D538;</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D49C;</mi> +        <mo>=</mo> +        <mi mathvariant="script">A</mi> +        <mo>=</mo> +        <mi>&#x1D49C;</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D4D0;</mi> +        <mo>=</mo> +        <mi mathvariant="bold-script">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D504;</mi> +        <mo>=</mo> +        <mi mathvariant="fraktur">A</mi> +        <mo>=</mo> +        <mi>&#x1D504;</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D56C;</mi> +        <mo>=</mo> +        <mi mathvariant="bold-fraktur">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D5A0;</mi> +        <mo>=</mo> +        <mi mathvariant="sans-serif">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D5D4;</mi> +        <mo>=</mo> +        <mi mathvariant="bold-sans-serif">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D608;</mi> +        <mo>=</mo> +        <mi mathvariant="sans-serif-italic">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D63C;</mi> +        <mo>=</mo> +        <mi mathvariant="sans-serif-bold-italic">A</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>&#x1D670;</mi> +        <mo>=</mo> +        <mi mathvariant="monospace">A</mi> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter ]+    [ [ [ EGrouped+            [ EIdentifier "A" , ESymbol Rel "=" , EIdentifier "A" ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\119808"+            , ESymbol Rel "="+            , EStyled TextBold [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\119860"+            , ESymbol Rel "="+            , EStyled TextItalic [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\119912"+            , ESymbol Rel "="+            , EStyled TextBoldItalic [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120120"+            , ESymbol Rel "="+            , EStyled TextDoubleStruck [ EIdentifier "A" ]+            , ESymbol Rel "="+            , EIdentifier "\120120"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\119964"+            , ESymbol Rel "="+            , EStyled TextScript [ EIdentifier "A" ]+            , ESymbol Rel "="+            , EIdentifier "\119964"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120016"+            , ESymbol Rel "="+            , EStyled TextBoldScript [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120068"+            , ESymbol Rel "="+            , EStyled TextFraktur [ EIdentifier "A" ]+            , ESymbol Rel "="+            , EIdentifier "\120068"+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120172"+            , ESymbol Rel "="+            , EStyled TextBoldFraktur [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120224"+            , ESymbol Rel "="+            , EStyled TextSansSerif [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120276"+            , ESymbol Rel "="+            , EStyled TextSansSerifBold [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120328"+            , ESymbol Rel "="+            , EStyled TextSansSerifItalic [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120380"+            , ESymbol Rel "="+            , EStyled TextSansSerifBoldItalic [ EIdentifier "A" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EIdentifier "\120432"+            , ESymbol Rel "="+            , EStyled TextMonospace [ EIdentifier "A" ]+            ]+        ]+      ]+    ]+]
+ test/reader/mml/mifontstyle12.test view
@@ -0,0 +1,22 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>h</mi> +    <mo>+</mo> +    <mi>hhh</mi> +    <mo>+</mo> +    <mi fontstyle="normal">h</mi> +    <mo>+</mo> +    <mi fontstyle="normal">hhh</mi> +  </mrow> </math>+>>> native+[ EIdentifier "h"+, ESymbol Bin "+"+, EIdentifier "hhh"+, ESymbol Bin "+"+, EIdentifier "h"+, ESymbol Bin "+"+, EIdentifier "hhh"+]
+ test/reader/mml/mimathvariant13.test view
@@ -0,0 +1,161 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable>+    <mtr>+      <mtd>+        <mi>a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="normal">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="italic">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold-italic">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="double-struck">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold-fraktur">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="script">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold-script">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="fraktur">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="sans-serif">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold-sans-serif">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="sans-serif-italic">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="sans-serif-bold-italic">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="monospace">a</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold">ab</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi>A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="normal">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="italic">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold-italic">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="double-struck">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold-fraktur">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="script">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold-script">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="fraktur">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="sans-serif">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold-sans-serif">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="sans-serif-italic">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="sans-serif-bold-italic">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="monospace">A</mi> +      </mtd> +      <mtd>+        <mi mathvariant="bold">&#x03B1;</mi> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ [ EIdentifier "a" ]+      , [ EIdentifier "a" ]+      , [ EStyled TextBold [ EIdentifier "a" ] ]+      , [ EStyled TextItalic [ EIdentifier "a" ] ]+      , [ EStyled TextBoldItalic [ EIdentifier "a" ] ]+      , [ EStyled TextDoubleStruck [ EIdentifier "a" ] ]+      , [ EStyled TextBoldFraktur [ EIdentifier "a" ] ]+      , [ EStyled TextScript [ EIdentifier "a" ] ]+      , [ EStyled TextBoldScript [ EIdentifier "a" ] ]+      , [ EStyled TextFraktur [ EIdentifier "a" ] ]+      , [ EStyled TextSansSerif [ EIdentifier "a" ] ]+      , [ EStyled TextSansSerifBold [ EIdentifier "a" ] ]+      , [ EStyled TextSansSerifItalic [ EIdentifier "a" ] ]+      , [ EStyled TextSansSerifBoldItalic [ EIdentifier "a" ] ]+      , [ EStyled TextMonospace [ EIdentifier "a" ] ]+      , [ EStyled TextBold [ EIdentifier "ab" ] ]+      ]+    , [ [ EIdentifier "A" ]+      , [ EIdentifier "A" ]+      , [ EStyled TextBold [ EIdentifier "A" ] ]+      , [ EStyled TextItalic [ EIdentifier "A" ] ]+      , [ EStyled TextBoldItalic [ EIdentifier "A" ] ]+      , [ EStyled TextDoubleStruck [ EIdentifier "A" ] ]+      , [ EStyled TextBoldFraktur [ EIdentifier "A" ] ]+      , [ EStyled TextScript [ EIdentifier "A" ] ]+      , [ EStyled TextBoldScript [ EIdentifier "A" ] ]+      , [ EStyled TextFraktur [ EIdentifier "A" ] ]+      , [ EStyled TextSansSerif [ EIdentifier "A" ] ]+      , [ EStyled TextSansSerifBold [ EIdentifier "A" ] ]+      , [ EStyled TextSansSerifItalic [ EIdentifier "A" ] ]+      , [ EStyled TextSansSerifBoldItalic [ EIdentifier "A" ] ]+      , [ EStyled TextMonospace [ EIdentifier "A" ] ]+      , [ EStyled TextBold [ EIdentifier "\945" ] ]+      ]+    ]+]
+ test/reader/mml/mimathvariant14.test view
@@ -0,0 +1,77 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable columnalign="left">+    <mtr>+      <mtd>+        <mi mathvariant="fraktur">ABCDEFGHIJKLMNOPQRSTUVWXYZ</mi> +        <mi mathvariant="fraktur">abcdefghijklmnopqrstuvwxyz</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi mathvariant="bold-fraktur">ABCDEFGHIJKLMNOPQRSTUVWXYZ</mi> +        <mi mathvariant="bold-fraktur">abcdefghijklmnopqrstuvwxyz</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi mathvariant="double-struck">ABCDEFGHIJKLMNOPQRSTUVWXYZ</mi> +        <mi mathvariant="double-struck">abcdefghijklmnopqrstuvwxyz</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi mathvariant="script">ABCDEFGHIJKLMNOPQRSTUVWXYZ</mi> +        <mi mathvariant="script">abcdefghijklmnopqrstuvwxyz</mi> +      </mtd> +    </mtr> +    <mtr>+      <mtd>+        <mi mathvariant="bold-script">ABCDEFGHIJKLMNOPQRSTUVWXYZ</mi> +        <mi mathvariant="bold-script">abcdefghijklmnopqrstuvwxyz</mi> +      </mtd> +    </mtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignLeft ]+    [ [ [ EGrouped+            [ EStyled TextFraktur [ EIdentifier "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ]+            , EStyled TextFraktur [ EIdentifier "abcdefghijklmnopqrstuvwxyz" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EStyled+                TextBoldFraktur [ EIdentifier "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ]+            , EStyled+                TextBoldFraktur [ EIdentifier "abcdefghijklmnopqrstuvwxyz" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EStyled+                TextDoubleStruck [ EIdentifier "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ]+            , EStyled+                TextDoubleStruck [ EIdentifier "abcdefghijklmnopqrstuvwxyz" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EStyled TextScript [ EIdentifier "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ]+            , EStyled TextScript [ EIdentifier "abcdefghijklmnopqrstuvwxyz" ]+            ]+        ]+      ]+    , [ [ EGrouped+            [ EStyled+                TextBoldScript [ EIdentifier "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ]+            , EStyled+                TextBoldScript [ EIdentifier "abcdefghijklmnopqrstuvwxyz" ]+            ]+        ]+      ]+    ]+]
+ test/reader/mml/mlabeledtr1.test view
@@ -0,0 +1,87 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable frame="solid" columnlines="solid" rowlines="solid">+    <mlabeledtr>+      <mtd>+        <mtext>1st</mtext> +      </mtd> +      <mtd>+        <mfrac>+          <mrow>+            <mi>a</mi> +            <mo>+</mo> +            <mn>1</mn> +          </mrow> +          <mn>2</mn> +        </mfrac> +      </mtd> +      <mtd>+        <mi>b</mi> +      </mtd> +      <mtd>+        <mi>c</mi> +      </mtd> +    </mlabeledtr> +    <mlabeledtr>+      <mtd>+        <mtext>2nd</mtext> +      </mtd> +      <mtd>+        <mi>x</mi> +      </mtd> +      <mtd>+        <mrow>+          <mfrac>+            <mn>2</mn> +            <mn>3</mn> +          </mfrac> +          <mi>y</mi> +          <mo>+</mo> +          <mn>5</mn> +        </mrow> +      </mtd> +      <mtd>+        <mi>z</mi> +      </mtd> +    </mlabeledtr> +    <mlabeledtr>+      <mtd>+        <mtext>3rd</mtext> +      </mtd> +      <mtd>+        <mn>1</mn> +      </mtd> +      <mtd>+        <mn>2</mn> +      </mtd> +      <mtd>+        <mn>5</mn> +      </mtd> +    </mlabeledtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter ]+    [ [ [ EFraction+            NormalFrac+            (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , ENumber "1" ])+            (ENumber "2")+        ]+      , [ EIdentifier "b" ]+      , [ EIdentifier "c" ]+      ]+    , [ [ EIdentifier "x" ]+      , [ EGrouped+            [ EFraction NormalFrac (ENumber "2") (ENumber "3")+            , EIdentifier "y"+            , ESymbol Bin "+"+            , ENumber "5"+            ]+        ]+      , [ EIdentifier "z" ]+      ]+    , [ [ ENumber "1" ] , [ ENumber "2" ] , [ ENumber "5" ] ]+    ]+]
+ test/reader/mml/mlabeledtrAside1.test view
@@ -0,0 +1,87 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable frame="solid" columnlines="solid" rowlines="solid" side="left">+    <mlabeledtr>+      <mtd>+        <mtext>1st</mtext> +      </mtd> +      <mtd>+        <mfrac>+          <mrow>+            <mi>a</mi> +            <mo>+</mo> +            <mn>1</mn> +          </mrow> +          <mn>2</mn> +        </mfrac> +      </mtd> +      <mtd>+        <mi>b</mi> +      </mtd> +      <mtd>+        <mi>c</mi> +      </mtd> +    </mlabeledtr> +    <mlabeledtr>+      <mtd>+        <mtext>2nd</mtext> +      </mtd> +      <mtd>+        <mi>x</mi> +      </mtd> +      <mtd>+        <mrow>+          <mfrac>+            <mn>2</mn> +            <mn>3</mn> +          </mfrac> +          <mi>y</mi> +          <mo>+</mo> +          <mn>5</mn> +        </mrow> +      </mtd> +      <mtd>+        <mi>z</mi> +      </mtd> +    </mlabeledtr> +    <mlabeledtr>+      <mtd>+        <mtext>3rd</mtext> +      </mtd> +      <mtd>+        <mn>1</mn> +      </mtd> +      <mtd>+        <mn>2</mn> +      </mtd> +      <mtd>+        <mn>5</mn> +      </mtd> +    </mlabeledtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter , AlignCenter , AlignCenter ]+    [ [ [ EFraction+            NormalFrac+            (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , ENumber "1" ])+            (ENumber "2")+        ]+      , [ EIdentifier "b" ]+      , [ EIdentifier "c" ]+      ]+    , [ [ EIdentifier "x" ]+      , [ EGrouped+            [ EFraction NormalFrac (ENumber "2") (ENumber "3")+            , EIdentifier "y"+            , ESymbol Bin "+"+            , ENumber "5"+            ]+        ]+      , [ EIdentifier "z" ]+      ]+    , [ [ ENumber "1" ] , [ ENumber "2" ] , [ ENumber "5" ] ]+    ]+]
+ test/reader/mml/mlabeledtrAside2.test view
@@ -0,0 +1,119 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mtable frame="solid" columnlines="solid" rowlines="solid" side="leftoverlap" rowalign="top">+    <mlabeledtr>+      <mtd>+        <mtext>1st</mtext> +      </mtd> +      <mtd>+        <mfrac>+          <mrow>+            <mi>a</mi> +            <mo>+</mo> +            <mn>1</mn> +          </mrow> +          <mn>2</mn> +        </mfrac> +      </mtd> +      <mtd>+        <mi>b</mi> +      </mtd> +      <mtd>+        <mi>c</mi> +      </mtd> +      <mtd>+        <mi>d</mi> +      </mtd> +      <mtd>+        <mi>e</mi> +      </mtd> +    </mlabeledtr> +    <mlabeledtr>+      <mtd>+        <mtext>2nd</mtext> +      </mtd> +      <mtd>+        <mi>x</mi> +      </mtd> +      <mtd>+        <mrow>+          <mfrac>+            <mn>2</mn> +            <mn>3</mn> +          </mfrac> +          <mi>y</mi> +          <mo>+</mo> +          <mn>5</mn> +        </mrow> +      </mtd> +      <mtd>+        <mi>z</mi> +      </mtd> +      <mtd>+        <mi>d</mi> +      </mtd> +      <mtd>+        <mi>e</mi> +      </mtd> +    </mlabeledtr> +    <mlabeledtr>+      <mtd>+        <mtext>3rd</mtext> +      </mtd> +      <mtd>+        <mn>1</mn> +      </mtd> +      <mtd>+        <mn>2</mn> +      </mtd> +      <mtd>+        <mn>5</mn> +      </mtd> +      <mtd>+        <mi>d</mi> +      </mtd> +      <mtd>+        <mi>e</mi> +      </mtd> +    </mlabeledtr> +  </mtable> </math>+>>> native+[ EArray+    [ AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    , AlignCenter+    ]+    [ [ [ EFraction+            NormalFrac+            (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , ENumber "1" ])+            (ENumber "2")+        ]+      , [ EIdentifier "b" ]+      , [ EIdentifier "c" ]+      , [ EIdentifier "d" ]+      , [ EIdentifier "e" ]+      ]+    , [ [ EIdentifier "x" ]+      , [ EGrouped+            [ EFraction NormalFrac (ENumber "2") (ENumber "3")+            , EIdentifier "y"+            , ESymbol Bin "+"+            , ENumber "5"+            ]+        ]+      , [ EIdentifier "z" ]+      , [ EIdentifier "d" ]+      , [ EIdentifier "e" ]+      ]+    , [ [ ENumber "1" ]+      , [ ENumber "2" ]+      , [ ENumber "5" ]+      , [ EIdentifier "d" ]+      , [ EIdentifier "e" ]+      ]+    ]+]
+ test/reader/mml/mn1.test view
@@ -0,0 +1,18 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mn>1</mn> +    <mo>+</mo> +    <mi>...</mi> +    <mo>+</mo> +    <mi>n</mi> +  </mrow> </math>+>>> native+[ ENumber "1"+, ESymbol Bin "+"+, EIdentifier "..."+, ESymbol Bin "+"+, EIdentifier "n"+]
+ test/reader/mml/mn2.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mn>2</mn> +    <mo>,</mo> +    <mn>0.123</mn> +    <mo>,</mo> +    <mn>1,000,000</mn> +    <mo>,</mo> +    <mn>2.1e10</mn> +    <mo>,</mo> +    <mn>0xFFEF</mn> +    <mo>,</mo> +    <mn>MCMLXIX</mn> +    <mo>,</mo> +    <mn>twenty one</mn> +  </mrow> </math>+>>> native+[ ENumber "2"+, ESymbol Pun ","+, ENumber "0.123"+, ESymbol Pun ","+, ENumber "1,000,000"+, ESymbol Pun ","+, ENumber "2.1e10"+, ESymbol Pun ","+, ENumber "0xFFEF"+, ESymbol Pun ","+, ENumber "MCMLXIX"+, ESymbol Pun ","+, ENumber "twenty one"+]
+ test/reader/mml/mn3.test view
@@ -0,0 +1,19 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mn>2</mn> +    <mo>+</mo> +    <mrow>+      <mn>3</mn> +      <mo> &#x2062;</mo> +      <mi> &#x2148;</mi> +    </mrow> +  </mrow> </math>+>>> native+[ ENumber "2"+, ESymbol Bin "+"+, EGrouped+    [ ENumber "3" , ESymbol Ord "\8290" , EIdentifier "\8520" ]+]
+ test/reader/mml/mn4.test view
@@ -0,0 +1,16 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mn>100</mn> +    <mo>!</mo> +  </mrow> +  <mo>=</mo> +  <mn>93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000</mn> </math>+>>> native+[ EGrouped [ ENumber "100" , ESymbol Pun "!" ]+, ESymbol Rel "="+, ENumber+    "93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000"+]
+ test/reader/mml/mnAtoken6.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mn>5</mn> +    <mo>+</mo> +    <mn fontweight="bold">5</mn> +    <mo>+</mo> +    <mn fontstyle="italic">1</mn> +    <mo>+</mo> +    <mn fontstyle="normal">1</mn> +    <mo>+</mo> +    <mn fontsize="35pt">5</mn> +    <mo>+</mo> +    <mn color="#9c0fff">3</mn> +    <mo>+</mo> +    <mn fontfamily="Helvetica">9</mn> +  </mrow> </math>+>>> native+[ ENumber "5"+, ESymbol Bin "+"+, ENumber "5"+, ESymbol Bin "+"+, ENumber "1"+, ESymbol Bin "+"+, ENumber "1"+, ESymbol Bin "+"+, ENumber "5"+, ESymbol Bin "+"+, ENumber "3"+, ESymbol Bin "+"+, ENumber "9"+]
+ test/reader/mml/mnAtoken7.test view
@@ -0,0 +1,26 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mn>5</mn> +    <mo>+</mo> +    <mn fontweight="bold" fontstyle="italic">31</mn> +    <mo>+</mo> +    <mn fontfamily="Helvetica" color="#00ff00">0</mn> +    <mo>+</mo> +    <mn fontweight="bold" fontsize="36pt">14</mn> +    <mo>+</mo> +    <mn fontweight="bold" fontstyle="normal">123456789</mn> +  </mrow> </math>+>>> native+[ ENumber "5"+, ESymbol Bin "+"+, ENumber "31"+, ESymbol Bin "+"+, ENumber "0"+, ESymbol Bin "+"+, ENumber "14"+, ESymbol Bin "+"+, ENumber "123456789"+]
+ test/reader/mml/mnSdisplaystyle9.test view
@@ -0,0 +1,44 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <mrow>+      <mn>5</mn> +      <mo>+</mo> +      <mn fontweight="bold">23</mn> +      <mo>+</mo> +      <mn fontweight="normal" fontstyle="italic">0.5</mn> +      <mo>+</mo> +      <mn fontstyle="normal">5.0</mn> +      <mo>+</mo> +      <mn fontweight="bold" fontstyle="normal">.1</mn> +      <mo>+</mo> +      <mn color="#9c0fff">100</mn> +      <mo>+</mo> +      <mn color="#0ee">0xFFEF</mn> +      <mo>+</mo> +      <mn color="Green">5</mn> +      <mo>+</mo> +      <mn fontfamily="Helvetica">5</mn> +    </mrow> +  </mstyle> </math>+>>> native+[ ENumber "5"+, ESymbol Bin "+"+, ENumber "23"+, ESymbol Bin "+"+, ENumber "0.5"+, ESymbol Bin "+"+, ENumber "5.0"+, ESymbol Bin "+"+, ENumber ".1"+, ESymbol Bin "+"+, ENumber "100"+, ESymbol Bin "+"+, ENumber "0xFFEF"+, ESymbol Bin "+"+, ENumber "5"+, ESymbol Bin "+"+, ENumber "5"+]
+ test/reader/mml/mnSfont10.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle fontweight="bold">+    <mrow>+      <mn>5</mn> +      <mo>+</mo> +      <mn fontweight="bold">5</mn> +      <mo>+</mo> +      <mn fontweight="normal">5</mn> +      <mo>+</mo> +      <mn fontstyle="italic">5</mn> +      <mo>+</mo> +      <mn fontfamily="Helvetica">5</mn> +    </mrow> +  </mstyle> </math>+>>> native+[ ENumber "5"+, ESymbol Bin "+"+, ENumber "5"+, ESymbol Bin "+"+, ENumber "5"+, ESymbol Bin "+"+, ENumber "5"+, ESymbol Bin "+"+, ENumber "5"+]
+ test/reader/mml/mnSscriptlevel11.test view
@@ -0,0 +1,62 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mstyle scriptlevel="+1">+      <mrow>+        <mn>5</mn> +        <mo>+</mo> +        <mn fontweight="bold">3</mn> +        <mo>+</mo> +        <mn fontstyle="normal">12.3</mn> +        <mo>+</mo> +        <mn fontfamily="Helvetica" color="#009900">10000</mn> +        <mo>+</mo> +        <mn fontsize="36pt">0.01</mn> +        <mo>+</mo> +        <mn fontweight="bold" fontstyle="normal">2</mn> +      </mrow> +    </mstyle> +    <mrow>+      <mn>5</mn> +      <mo>+</mo> +      <mn fontweight="bold">3</mn> +      <mo>+</mo> +      <mn fontstyle="normal">12.3</mn> +      <mo>+</mo> +      <mn fontfamily="Times" color="#009900">10000</mn> +      <mo>+</mo> +      <mn fontsize="36pt">0.01</mn> +      <mo>+</mo> +      <mn fontweight="bold" fontstyle="normal">2</mn> +    </mrow> +  </mrow> </math>+>>> native+[ EGrouped+    [ ENumber "5"+    , ESymbol Bin "+"+    , ENumber "3"+    , ESymbol Bin "+"+    , ENumber "12.3"+    , ESymbol Bin "+"+    , ENumber "10000"+    , ESymbol Bin "+"+    , ENumber "0.01"+    , ESymbol Bin "+"+    , ENumber "2"+    ]+, EGrouped+    [ ENumber "5"+    , ESymbol Bin "+"+    , ENumber "3"+    , ESymbol Bin "+"+    , ENumber "12.3"+    , ESymbol Bin "+"+    , ENumber "10000"+    , ESymbol Bin "+"+    , ENumber "0.01"+    , ESymbol Bin "+"+    , ENumber "2"+    ]+]
+ test/reader/mml/mo1.test view
@@ -0,0 +1,10 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>-</mo> +    <mn>1</mn> +  </mrow> </math>+>>> native+[ ESymbol Bin "-" , ENumber "1" ]
+ test/reader/mml/mo2.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>(</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mrow> </math>+>>> native+[ EDelimited "(" ")" [ Right (EIdentifier "x") ] ]
+ test/reader/mml/mo3.test view
@@ -0,0 +1,21 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>(</mo> +    <mrow>+      <mi>a</mi> +      <mo>+</mo> +      <mi>b</mi> +    </mrow> +    <mo>)</mo> +  </mrow> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EGrouped [ EIdentifier "a" , ESymbol Bin "+" , EIdentifier "b" ])+    ]+]
+ test/reader/mml/mo4.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>[</mo> +    <mrow>+      <mn>0</mn> +      <mo>,</mo> +      <mn>1</mn> +    </mrow> +    <mo>)</mo> +  </mrow> </math>+>>> native+[ EDelimited+    "["+    ")"+    [ Right (EGrouped [ ENumber "0" , ESymbol Pun "," , ENumber "1" ])+    ]+]
+ test/reader/mml/mo5.test view
@@ -0,0 +1,19 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo maxsize="1">(</mo> +    <mfrac>+      <mi>a</mi> +      <mi>b</mi> +    </mfrac> +    <mo maxsize="1">)</mo> +  </mrow> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "a") (EIdentifier "b"))+    ]+]
+ test/reader/mml/mo6.test view
@@ -0,0 +1,44 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>there exists</mo> +    <mrow>+      <mrow>+        <mi> &#x003B4;</mi> +        <mo>&gt;</mo> +        <mn>0</mn> +      </mrow> +      <mo>such that</mo> +      <mrow>+        <mrow>+          <mi>f</mi> +          <mo> &#x02061;</mo> +          <mrow>+            <mo>(</mo> +            <mi>x</mi> +            <mo>)</mo> +          </mrow> +        </mrow> +        <mo>&lt;</mo> +        <mn>1</mn> +      </mrow> +    </mrow> +  </mrow> </math>+>>> native+[ EMathOperator "there exists"+, EGrouped+    [ EGrouped [ EIdentifier "\948" , ESymbol Rel ">" , ENumber "0" ]+    , EMathOperator "such that"+    , EGrouped+        [ EGrouped+            [ EIdentifier "f"+            , ESymbol Ord "\8289"+            , EDelimited "(" ")" [ Right (EIdentifier "x") ]+            ]+        , ESymbol Rel "<"+        , ENumber "1"+        ]+    ]+]
+ test/reader/mml/mo7.test view
@@ -0,0 +1,21 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>(</mo> +    <mrow>+      <mi>x</mi> +      <mo>,</mo> +      <mi>y</mi> +    </mrow> +    <mo>)</mo> +  </mrow> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EGrouped [ EIdentifier "x" , ESymbol Pun "," , EIdentifier "y" ])+    ]+]
+ test/reader/mml/mo8.test view
@@ -0,0 +1,19 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>(</mo> +    <mfrac linethickness="0">+      <mi>a</mi> +      <mi>b</mi> +    </mfrac> +    <mo>)</mo> +  </mrow> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "a") (EIdentifier "b"))+    ]+]
+ test/reader/mml/moAaccent10.test view
@@ -0,0 +1,48 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mover>+      <mrow>+        <mi>G</mi> +        <mo>-</mo> +        <mn>1</mn> +      </mrow> +      <mo accent="false">&#x203E;</mo> +    </mover> +    <mo accent="false">+</mo> +    <mover accent="true">+      <mrow>+        <mi>G</mi> +        <mo>-</mo> +        <mn>1</mn> +      </mrow> +      <mo accent="false">&#x203E;</mo> +    </mover> +    <mo accent="true">+</mo> +    <mover accent="false">+      <mrow>+        <mi>G</mi> +        <mo>-</mo> +        <mn>1</mn> +      </mrow> +      <mo accent="false">&#x203E;</mo> +    </mover> +  </mrow> </math>+>>> native+[ EOver+    False+    (EGrouped [ EIdentifier "G" , ESymbol Bin "-" , ENumber "1" ])+    (ESymbol Ord "\8254")+, ESymbol Bin "+"+, EOver+    False+    (EGrouped [ EIdentifier "G" , ESymbol Accent "-" , ENumber "1" ])+    (ESymbol Ord "\8254")+, ESymbol Accent "+"+, EOver+    False+    (EGrouped [ EIdentifier "G" , ESymbol Bin "-" , ENumber "1" ])+    (ESymbol Ord "\8254")+]
+ test/reader/mml/moAaccent9.test view
@@ -0,0 +1,48 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mover>+      <mrow>+        <mi>G</mi> +        <mo>-</mo> +        <mn>1</mn> +      </mrow> +      <mo>&#x203E;</mo> +    </mover> +    <mo>+</mo> +    <mover accent="true">+      <mrow>+        <mi>G</mi> +        <mo>-</mo> +        <mn>1</mn> +      </mrow> +      <mo>&#x203E;</mo> +    </mover> +    <mo>+</mo> +    <mover accent="false">+      <mrow>+        <mi>G</mi> +        <mo>-</mo> +        <mn>1</mn> +      </mrow> +      <mo>&#x203E;</mo> +    </mover> +  </mrow> </math>+>>> native+[ EOver+    False+    (EGrouped [ EIdentifier "G" , ESymbol Bin "-" , ENumber "1" ])+    (ESymbol Accent "\8254")+, ESymbol Bin "+"+, EOver+    False+    (EGrouped [ EIdentifier "G" , ESymbol Accent "-" , ENumber "1" ])+    (ESymbol Accent "\8254")+, ESymbol Bin "+"+, EOver+    False+    (EGrouped [ EIdentifier "G" , ESymbol Bin "-" , ENumber "1" ])+    (ESymbol Ord "\8254")+]
+ test/reader/mml/moAform11.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>-</mo> +    <mi>x</mi> +  </mrow> +  <mrow>+    <mo form="infix">-</mo> +    <mi>x</mi> +  </mrow> +  <mrow>+    <mo form="prefix">-</mo> +    <mi>x</mi> +  </mrow> +  <mrow>+    <mo form="postfix">-</mo> +    <mi>x</mi> +  </mrow> +  <mo>-</mo> +  <mi>x</mi> +  <mo form="prefix">-</mo> +  <mi>x</mi> </math>+>>> native+[ EGrouped [ ESymbol Bin "-" , EIdentifier "x" ]+, EGrouped [ ESymbol Bin "-" , EIdentifier "x" ]+, EGrouped [ ESymbol Bin "-" , EIdentifier "x" ]+, EGrouped [ ESymbol Bin "-" , EIdentifier "x" ]+, ESymbol Bin "-"+, EIdentifier "x"+, ESymbol Bin "-"+, EIdentifier "x"+]
+ test/reader/mml/moAlargeop12.test view
@@ -0,0 +1,46 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>&#x222B;</mo> +    <mi>x</mi> +    <mo>=</mo> +    <mo largeop="true">&#x222B;</mo> +    <mi>x</mi> +    <mo>=</mo> +    <mo largeop="false">&#x222B;</mo> +    <mi>x</mi> +    <mo>=</mo> +    <mstyle displaystyle="true">+      <mo>&#x222B;</mo> +      <mi>x</mi> +      <mo>=</mo> +      <mo largeop="true">&#x222B;</mo> +      <mi>x</mi> +      <mo>=</mo> +      <mo largeop="false">&#x222B;</mo> +      <mi>x</mi> +    </mstyle> +  </mrow> </math>+>>> native+[ ESymbol Op "\8747"+, EIdentifier "x"+, ESymbol Rel "="+, ESymbol Op "\8747"+, EIdentifier "x"+, ESymbol Rel "="+, ESymbol Op "\8747"+, EIdentifier "x"+, ESymbol Rel "="+, EGrouped+    [ ESymbol Op "\8747"+    , EIdentifier "x"+    , ESymbol Rel "="+    , ESymbol Op "\8747"+    , EIdentifier "x"+    , ESymbol Rel "="+    , ESymbol Op "\8747"+    , EIdentifier "x"+    ]+]
+ test/reader/mml/moAlrspace13.test view
@@ -0,0 +1,28 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mi>x</mi> +  <mo>+</mo> +  <mi>x</mi> +  <mo lspace="0px">+</mo> +  <mi>x</mi> +  <mo rspace="0%">+</mo> +  <mi>x</mi> +  <mo lspace="2em" rspace="1em">+</mo> +  <mi>x</mi> +  <mo lspace="1cm" rspace="10px">+</mo> +  <mi>x</mi> </math>+>>> native+[ EIdentifier "x"+, ESymbol Bin "+"+, EIdentifier "x"+, ESymbol Bin "+"+, EIdentifier "x"+, ESymbol Bin "+"+, EIdentifier "x"+, ESymbol Bin "+"+, EIdentifier "x"+, ESymbol Bin "+"+, EIdentifier "x"+]
+ test/reader/mml/moAminmax14.test view
@@ -0,0 +1,32 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>(</mo> +    <mfrac>+      <mi>y</mi> +      <mi>z</mi> +    </mfrac> +    <mo minsize="2cm">)</mo> +    <mo>+</mo> +    <mo maxsize=".9">(</mo> +    <mfrac>+      <mi>y</mi> +      <mi>z</mi> +    </mfrac> +    <mo maxsize="infinity">)</mo> +  </mrow> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "y") (EIdentifier "z"))+    ]+, ESymbol Bin "+"+, EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "y") (EIdentifier "z"))+    ]+]
+ test/reader/mml/moAmovable15.test view
@@ -0,0 +1,64 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <munderover>+      <mo>&#x2211;</mo> +      <mi>x</mi> +      <mn>0</mn> +    </munderover> +    <mo>=</mo> +    <munderover>+      <mo movablelimits="true">&#x2211;</mo> +      <mi>x</mi> +      <mn>0</mn> +    </munderover> +    <mo>=</mo> +    <munderover>+      <mo movablelimits="false">&#x2211;</mo> +      <mi>x</mi> +      <mn>0</mn> +    </munderover> +    <mo>=</mo> +    <mstyle displaystyle="true">+      <munderover>+        <mo>&#x2211;</mo> +        <mi>x</mi> +        <mn>0</mn> +      </munderover> +      <mo>=</mo> +      <munderover>+        <mo movablelimits="true">&#x2211;</mo> +        <mi>x</mi> +        <mn>0</mn> +      </munderover> +      <mo>=</mo> +      <munderover>+        <mo movablelimits="false">&#x2211;</mo> +        <mi>x</mi> +        <mn>0</mn> +      </munderover> +    </mstyle> +  </mrow> </math>+>>> native+[ EUnderover+    False (ESymbol Op "\8721") (EIdentifier "x") (ENumber "0")+, ESymbol Rel "="+, EUnderover+    False (ESymbol Op "\8721") (EIdentifier "x") (ENumber "0")+, ESymbol Rel "="+, EUnderover+    False (ESymbol Op "\8721") (EIdentifier "x") (ENumber "0")+, ESymbol Rel "="+, EGrouped+    [ EUnderover+        False (ESymbol Op "\8721") (EIdentifier "x") (ENumber "0")+    , ESymbol Rel "="+    , EUnderover+        False (ESymbol Op "\8721") (EIdentifier "x") (ENumber "0")+    , ESymbol Rel "="+    , EUnderover+        False (ESymbol Op "\8721") (EIdentifier "x") (ENumber "0")+    ]+]
+ test/reader/mml/moAprime16.test view
@@ -0,0 +1,32 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <msup>+      <mi>f</mi> +      <mo>'</mo> +    </msup> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +    <mo>=</mo> +    <msup>+      <mi>f</mi> +      <mo>&#x2032;</mo> +    </msup> +    <mrow>+      <mo>(</mo> +      <mi>x</mi> +      <mo>)</mo> +    </mrow> +  </mrow> </math>+>>> native+[ ESuper (EIdentifier "f") (ESymbol Accent "'")+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+, ESymbol Rel "="+, ESuper (EIdentifier "f") (ESymbol Ord "\8242")+, EDelimited "(" ")" [ Right (EIdentifier "x") ]+]
+ test/reader/mml/moAsep17.test view
@@ -0,0 +1,72 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>(</mo> +    <mrow>+      <mi>x</mi> +      <mo>,</mo> +      <mfrac>+        <mi>y</mi> +        <mi>z</mi> +      </mfrac> +    </mrow> +    <mo>)</mo> +    <mo>+</mo> +    <mo fence="true">(</mo> +    <mrow>+      <mi>x</mi> +      <mo separator="true">,</mo> +      <mfrac>+        <mi>y</mi> +        <mi>z</mi> +      </mfrac> +    </mrow> +    <mo fence="true">)</mo> +    <mo>+</mo> +    <mo fence="false">(</mo> +    <mrow>+      <mi>x</mi> +      <mo separator="false">,</mo> +      <mfrac>+        <mi>y</mi> +        <mi>z</mi> +      </mfrac> +    </mrow> +    <mo fence="false">)</mo> +  </mrow> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EGrouped+           [ EIdentifier "x"+           , ESymbol Pun ","+           , EFraction NormalFrac (EIdentifier "y") (EIdentifier "z")+           ])+    ]+, ESymbol Bin "+"+, EDelimited+    "("+    ")"+    [ Right+        (EGrouped+           [ EIdentifier "x"+           , ESymbol Pun ","+           , EFraction NormalFrac (EIdentifier "y") (EIdentifier "z")+           ])+    ]+, ESymbol Bin "+"+, EDelimited+    "("+    ")"+    [ Right+        (EGrouped+           [ EIdentifier "x"+           , ESymbol Pun ","+           , EFraction NormalFrac (EIdentifier "y") (EIdentifier "z")+           ])+    ]+]
+ test/reader/mml/moAstretchy18.test view
@@ -0,0 +1,131 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mo>(</mo> +    <mtable>+      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +    </mtable> +    <mo>)</mo> +    <mo stretchy="false">(</mo> +    <mtable>+      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +    </mtable> +    <mo stretchy="false">)</mo> +    <mo stretchy="true">(</mo> +    <mtable>+      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +    </mtable> +    <mo stretchy="true">)</mo> +  </mrow> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ ENumber "0" ] ]+           , [ [ ENumber "0" ] ]+           , [ [ ENumber "0" ] ]+           , [ [ ENumber "0" ] ]+           , [ [ ENumber "0" ] ]+           ])+    ]+, ESymbol Open "("+, EArray+    [ AlignCenter ]+    [ [ [ ENumber "0" ] ]+    , [ [ ENumber "0" ] ]+    , [ [ ENumber "0" ] ]+    , [ [ ENumber "0" ] ]+    , [ [ ENumber "0" ] ]+    ]+, ESymbol Close ")"+, EDelimited+    "("+    ")"+    [ Right+        (EArray+           [ AlignCenter ]+           [ [ [ ENumber "0" ] ]+           , [ [ ENumber "0" ] ]+           , [ [ ENumber "0" ] ]+           , [ [ ENumber "0" ] ]+           , [ [ ENumber "0" ] ]+           ])+    ]+]
+ test/reader/mml/moAsymmetric19.test view
@@ -0,0 +1,79 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mi>x</mi> +  <mo>=</mo> +  <mrow>+    <mo>(</mo> +    <mtable align="bottom">+      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +    </mtable> +    <mo>)</mo> +    <mrow>+      <mo symmetric="false">(</mo> +      <mtable align="bottom">+        <mtr>+          <mtd>+            <mn>0</mn> +          </mtd> +        </mtr> +        <mtr>+          <mtd>+            <mn>0</mn> +          </mtd> +        </mtr> +      </mtable> +      <mo symmetric="false">)</mo> +    </mrow> +    <mo symmetric="true">(</mo> +    <mtable align="bottom">+      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mn>0</mn> +        </mtd> +      </mtr> +    </mtable> +    <mo symmetric="true">)</mo> +  </mrow> </math>+>>> native+[ EIdentifier "x"+, ESymbol Rel "="+, EGrouped+    [ EDelimited+        "("+        ")"+        [ Right+            (EArray+               [ AlignCenter ] [ [ [ ENumber "0" ] ] , [ [ ENumber "0" ] ] ])+        ]+    , EDelimited+        "("+        ")"+        [ Right+            (EArray+               [ AlignCenter ] [ [ [ ENumber "0" ] ] , [ [ ENumber "0" ] ] ])+        ]+    , EDelimited+        "("+        ")"+        [ Right+            (EArray+               [ AlignCenter ] [ [ [ ENumber "0" ] ] , [ [ ENumber "0" ] ] ])+        ]+    ]+]
+ test/reader/mml/moSminmax20.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle minsize="1cm" maxsize="3cm">+    <mrow>+      <mo>(</mo> +      <mfrac>+        <mi>y</mi> +        <mi>z</mi> +      </mfrac> +      <mo maxsize="25%">)</mo> +      <mo>+</mo> +      <mo minsize="225%">(</mo> +      <mfrac>+        <mi>y</mi> +        <mi>z</mi> +      </mfrac> +      <mo maxsize="infinity">)</mo> +    </mrow> +  </mstyle> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "y") (EIdentifier "z"))+    ]+, ESymbol Bin "+"+, EDelimited+    "("+    ")"+    [ Right (EFraction NormalFrac (EIdentifier "y") (EIdentifier "z"))+    ]+]
+ test/reader/mml/monospace.test view
@@ -0,0 +1,34 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathvariant="monospace">+    <mtable columnalign="left">+      <mtr>+        <mtd>+          <mtext>0123456789</mtext> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mtext>ABCDEFGHIJKLMNOPQRSTUVWXYZ</mtext> +        </mtd> +      </mtr> +      <mtr>+        <mtd>+          <mtext>abcdefghijklmnopqrstuvwxyz</mtext> +        </mtd> +      </mtr> +    </mtable> +  </mstyle> </math>+>>> native+[ EStyled+    TextMonospace+    [ EArray+        [ AlignLeft ]+        [ [ [ EText TextNormal "0123456789" ] ]+        , [ [ EText TextNormal "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ] ]+        , [ [ EText TextNormal "abcdefghijklmnopqrstuvwxyz" ] ]+        ]+    ]+]
+ test/reader/mml/mover-01.test view
@@ -0,0 +1,13 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">BASE</mi>     <mi mathvariant="normal">over</mi>   </mover>   <mo>=</mo>   <mover>    <mrow>      <mover>        <mi mathvariant="normal">BASE</mi>         <mi mathvariant="normal">over</mi>       </mover>     </mrow>     <mphantom>      <mi mathvariant="normal">over</mi>+    </mphantom>   </mover> </math>+>>> native+[ EOver False (EIdentifier "BASE") (EIdentifier "over")+, ESymbol Rel "="+, EOver+    False+    (EOver False (EIdentifier "BASE") (EIdentifier "over"))+    (EPhantom (EIdentifier "over"))+]
+ test/reader/mml/mover-02.test view
@@ -0,0 +1,17 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">BASE</mi>     <mi mathvariant="normal">over script</mi>   </mover>   <mo>=</mo>   <mover>    <mrow>      <mover>        <mrow>          <mover>            <mi mathvariant="normal">BASE</mi>             <mi mathvariant="normal">over script</mi>           </mover>         </mrow>         <mphantom>          <mi mathvariant="normal">over</mi>+        </mphantom>       </mover>     </mrow>     <mphantom>      <mi mathvariant="normal">over</mi>+    </mphantom>   </mover> </math>+>>> native+[ EOver False (EIdentifier "BASE") (EIdentifier "over script")+, ESymbol Rel "="+, EOver+    False+    (EOver+       False+       (EOver False (EIdentifier "BASE") (EIdentifier "over script"))+       (EPhantom (EIdentifier "over")))+    (EPhantom (EIdentifier "over"))+]
+ test/reader/mml/mover-03.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">BASE</mi>     <mrow>      <mfrac linethickness="0">        <mi mathvariant="normal">first</mi>         <mi mathvariant="normal">second</mi>       </mfrac>     </mrow>   </mover>   <mo>=</mo>   <mover>    <mrow>      <mover>        <mi mathvariant="normal">BASE</mi>         <mrow>          <mfrac linethickness="0">            <mi mathvariant="normal">first</mi>             <mi mathvariant="normal">second</mi>           </mfrac>         </mrow>       </mover>     </mrow>     <mphantom>      <mi mathvariant="normal">over</mi>+    </mphantom>   </mover> </math>+>>> native+[ EOver+    False+    (EIdentifier "BASE")+    (EFraction NormalFrac (EIdentifier "first") (EIdentifier "second"))+, ESymbol Rel "="+, EOver+    False+    (EOver+       False+       (EIdentifier "BASE")+       (EFraction+          NormalFrac (EIdentifier "first") (EIdentifier "second")))+    (EPhantom (EIdentifier "over"))+]
+ test/reader/mml/mover-04.test view
@@ -0,0 +1,14 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">middle</mi>     <mi mathvariant="normal">top</mi>   </mover>   <mo>=</mo>   <munderover>    <mi mathvariant="normal">middle</mi>     <mphantom>      <mi mathvariant="normal">fail</mi>+    </mphantom>     <mi mathvariant="normal">top</mi>   </munderover> </math>+>>> native+[ EOver False (EIdentifier "middle") (EIdentifier "top")+, ESymbol Rel "="+, EUnderover+    False+    (EIdentifier "middle")+    (EPhantom (EIdentifier "fail"))+    (EIdentifier "top")+]
+ test/reader/mml/mover-05.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mi mathvariant="normal">_ baseline _</mi>   <mo>=</mo>   <mover>    <mi mathvariant="normal">_ baseline _</mi>     <mphantom>      <mi mathvariant="normal">fail</mi>+    </mphantom>   </mover> </math>+>>> native+[ EIdentifier "_ baseline _"+, ESymbol Rel "="+, EOver+    False (EIdentifier "_ baseline _") (EPhantom (EIdentifier "fail"))+]
+ test/reader/mml/mover-06.test view
@@ -0,0 +1,15 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mi mathvariant="normal">- middle -</mi>   <mo>=</mo>   <mover>    <mrow>      <mover>        <mi mathvariant="normal">- middle -</mi>         <mphantom>          <mi mathvariant="normal">fail</mi>+        </mphantom>       </mover>     </mrow>     <mphantom>      <mi mathvariant="normal">fail</mi>+    </mphantom>   </mover> </math>+>>> native+[ EIdentifier "- middle -"+, ESymbol Rel "="+, EOver+    False+    (EOver+       False (EIdentifier "- middle -") (EPhantom (EIdentifier "fail")))+    (EPhantom (EIdentifier "fail"))+]
+ test/reader/mml/mover-07.test view
@@ -0,0 +1,19 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">mover baseline</mi>     <mi mathvariant="normal">mover over script</mi>   </mover>   <mo>=</mo>   <mover>    <mrow>      <mover>        <mi mathvariant="normal">mover baseline</mi>         <mi mathvariant="normal">mover over script</mi>       </mover>     </mrow>     <mphantom>      <mi mathvariant="normal">fail</mi>+    </mphantom>   </mover> </math>+>>> native+[ EOver+    False+    (EIdentifier "mover baseline")+    (EIdentifier "mover over script")+, ESymbol Rel "="+, EOver+    False+    (EOver+       False+       (EIdentifier "mover baseline")+       (EIdentifier "mover over script"))+    (EPhantom (EIdentifier "fail"))+]
+ test/reader/mml/mover-08.test view
@@ -0,0 +1,15 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">_ baseline _</mi>     <mi mathvariant="normal">over script</mi>   </mover>   <mo>=</mo>   <mover>    <mrow>      <munder>        <mi mathvariant="normal">_ baseline _</mi>         <mphantom>          <mi mathvariant="normal">fail</mi>+        </mphantom>       </munder>     </mrow>     <mi mathvariant="normal">over script</mi>   </mover> </math>+>>> native+[ EOver+    False (EIdentifier "_ baseline _") (EIdentifier "over script")+, ESymbol Rel "="+, EOver+    False+    (EUnder+       False (EIdentifier "_ baseline _") (EPhantom (EIdentifier "fail")))+    (EIdentifier "over script")+]
+ test/reader/mml/mover-09.test view
@@ -0,0 +1,18 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <munder>    <mrow>      <mover>        <mi mathvariant="normal">- middle -</mi>         <mi mathvariant="normal">top</mi>       </mover>     </mrow>     <mphantom>      <mi mathvariant="normal">fail</mi>+    </mphantom>   </munder>   <mo>=</mo>   <mover>    <mrow>      <munder>        <mi mathvariant="normal">- middle -</mi>         <mphantom>          <mi mathvariant="normal">fail</mi>+        </mphantom>       </munder>     </mrow>     <mi mathvariant="normal">top</mi>   </mover> </math>+>>> native+[ EUnder+    False+    (EOver False (EIdentifier "- middle -") (EIdentifier "top"))+    (EPhantom (EIdentifier "fail"))+, ESymbol Rel "="+, EOver+    False+    (EUnder+       False (EIdentifier "- middle -") (EPhantom (EIdentifier "fail")))+    (EIdentifier "top")+]
+ test/reader/mml/mover-10.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">B</mi>     <mi mathvariant="normal">long over script</mi>   </mover>   <mo>=</mo>   <mover>    <mrow>      <mi mathvariant="normal">B</mi>+    </mrow>     <mrow>      <mi mathvariant="normal">long over script</mi>+    </mrow>   </mover> </math>+>>> native+[ EOver False (EIdentifier "B") (EIdentifier "long over script")+, ESymbol Rel "="+, EOver False (EIdentifier "B") (EIdentifier "long over script")+]
+ test/reader/mml/mover-11.test view
@@ -0,0 +1,22 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">BASE</mi>     <mi mathvariant="normal">x</mi>   </mover>   <mo>=</mo>   <mover>    <mi mathvariant="normal">BASE</mi>     <mrow>      <mphantom>        <mn>1</mn>+      </mphantom>+      <mi mathvariant="normal">x</mi>+      <mphantom>+        <mn>1</mn>+      </mphantom>+    </mrow>   </mover> </math>+>>> native+[ EOver False (EIdentifier "BASE") (EIdentifier "x")+, ESymbol Rel "="+, EOver+    False+    (EIdentifier "BASE")+    (EGrouped+       [ EPhantom (ENumber "1")+       , EIdentifier "x"+       , EPhantom (ENumber "1")+       ])+]
+ test/reader/mml/mover-12.test view
@@ -0,0 +1,22 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mover>    <mi mathvariant="normal">B</mi>     <mi mathvariant="normal">overscript</mi>   </mover>   <mo>=</mo>   <mover>    <mrow>      <mphantom>        <mn>1</mn>+      </mphantom>+      <mi mathvariant="normal">B</mi>+      <mphantom>+        <mn>1</mn>+      </mphantom>+    </mrow>     <mi mathvariant="normal">overscript</mi>   </mover> </math>+>>> native+[ EOver False (EIdentifier "B") (EIdentifier "overscript")+, ESymbol Rel "="+, EOver+    False+    (EGrouped+       [ EPhantom (ENumber "1")+       , EIdentifier "B"+       , EPhantom (ENumber "1")+       ])+    (EIdentifier "overscript")+]
+ test/reader/mml/mover1.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x00B4;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x00B4;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x00B4;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x00B4;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "\180")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Ord "\180")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "\180")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "\180")+]
+ test/reader/mml/mover2.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x0060;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x0060;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x0060;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x0060;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "`")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Ord "`")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "`")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "`")+]
+ test/reader/mml/mover3.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x02C6;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x02C6;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x02C6;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x02C6;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "\710")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Alpha "\710")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Alpha "\710")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Alpha "\710")+]
+ test/reader/mml/mover4.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x02C7;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x02C7;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x02C7;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x02C7;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "\711")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Alpha "\711")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Alpha "\711")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Alpha "\711")+]
+ test/reader/mml/mover5.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x02DC;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x02DC;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x02DC;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x02DC;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "\732")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Ord "\732")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "\732")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "\732")+]
+ test/reader/mml/mover6.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x02D9;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x02D9;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x02D9;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x02D9;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "\729")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Ord "\729")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "\729")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "\729")+]
+ test/reader/mml/mover7.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x00A8;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x00A8;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x00A8;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x00A8;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "\168")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Ord "\168")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "\168")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Ord "\168")+]
+ test/reader/mml/mover8.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x20DB;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x20DB;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x20DB;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x20DB;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "\8411")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Accent "\8411")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Accent "\8411")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Accent "\8411")+]
+ test/reader/mml/mover9.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathsize="200%" displaystyle="false">+    <mover>+      <mi>x</mi> +      <mo> &#x20DC;</mo> +    </mover> +    <mo> &#x2260;</mo> +    <mstyle accent="false">+      <mover>+        <mi>x</mi> +        <mo> &#x20DC;</mo> +      </mover> +    </mstyle> +    <mo> &#x003D;</mo> +    <mover accent="false">+      <mi>x</mi> +      <mo> &#x20DC;</mo> +    </mover> +    <mo> &#x003D;</mo> +    <mover>+      <mi>x</mi> +      <mo accent="false"> &#x20DC;</mo> +    </mover> +  </mstyle> </math>+>>> native+[ EOver False (EIdentifier "x") (ESymbol Accent "\8412")+, ESymbol Rel "\8800"+, EOver False (EIdentifier "x") (ESymbol Accent "\8412")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Accent "\8412")+, ESymbol Rel "="+, EOver False (EIdentifier "x") (ESymbol Accent "\8412")+]
+ test/reader/mml/mphantomB1.test view
@@ -0,0 +1,51 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>A</mi> +    <mphantom>+      <mi>A</mi> +    </mphantom> +    <mi>A</mi> +    <mo>+</mo> +    <mfrac>+      <mrow>+        <mn>1</mn> +        <mo>+</mo> +        <mn>2</mn> +        <mo>+</mo> +        <mn>3</mn> +      </mrow> +      <mrow>+        <mn>1</mn> +        <mo>+</mo> +        <mphantom>+          <mn>2</mn> +          <mo form="infix">+</mo> +        </mphantom> +        <mn>3</mn> +      </mrow> +    </mfrac> +  </mrow> </math>+>>> native+[ EIdentifier "A"+, EPhantom (EIdentifier "A")+, EIdentifier "A"+, ESymbol Bin "+"+, EFraction+    NormalFrac+    (EGrouped+       [ ENumber "1"+       , ESymbol Bin "+"+       , ENumber "2"+       , ESymbol Bin "+"+       , ENumber "3"+       ])+    (EGrouped+       [ ENumber "1"+       , ESymbol Bin "+"+       , EPhantom (EGrouped [ ENumber "2" , ESymbol Bin "+" ])+       , ENumber "3"+       ])+]
+ test/reader/mml/mphantomBinferred2.test view
@@ -0,0 +1,25 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>A</mi> +    <mphantom>+      <mi>A</mi> +    </mphantom> +    <mi>A</mi> +    <mphantom>+      <mi>A</mi> +      <mo>+</mo> +      <mi>A</mi> +    </mphantom> +    <mi>A</mi> +  </mrow> </math>+>>> native+[ EIdentifier "A"+, EPhantom (EIdentifier "A")+, EIdentifier "A"+, EPhantom+    (EGrouped [ EIdentifier "A" , ESymbol Bin "+" , EIdentifier "A" ])+, EIdentifier "A"+]
+ test/reader/mml/mphantomBoperators3.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>A</mi> +    <mo>+</mo> +    <mi>A</mi> +    <mphantom>+      <mo>+</mo> +    </mphantom> +    <mi>A</mi> +  </mrow> </math>+>>> native+[ EIdentifier "A"+, ESymbol Bin "+"+, EIdentifier "A"+, EPhantom (ESymbol Bin "+")+, EIdentifier "A"+]
+ test/reader/mml/mphantomSinheritance5.test view
@@ -0,0 +1,53 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathbackground="Blue">+    <mi>A</mi> +    <mstyle scriptlevel="2">+      <mphantom>+        <mi>A</mi> +      </mphantom> +    </mstyle> +    <mi>A</mi> +    <mstyle fontweight="bold">+      <mphantom>+        <mi>A</mi> +        <mo>+</mo> +        <mi>A</mi> +      </mphantom> +      <mi>A</mi> +    </mstyle> +  </mstyle> +  <mi>A</mi> +  <mstyle scriptlevel="2">+    <mi>A</mi> +  </mstyle> +  <mi>A</mi> +  <mstyle fontweight="bold">+    <mi>A</mi> +    <mo>+</mo> +    <mi>A</mi> +    <mi>A</mi> +  </mstyle> </math>+>>> native+[ EGrouped+    [ EIdentifier "A"+    , EPhantom (EIdentifier "A")+    , EIdentifier "A"+    , EGrouped+        [ EPhantom+            (EGrouped [ EIdentifier "A" , ESymbol Bin "+" , EIdentifier "A" ])+        , EIdentifier "A"+        ]+    ]+, EIdentifier "A"+, EIdentifier "A"+, EIdentifier "A"+, EGrouped+    [ EIdentifier "A"+    , ESymbol Bin "+"+    , EIdentifier "A"+    , EIdentifier "A"+    ]+]
+ test/reader/mml/mrootB1.test view
@@ -0,0 +1,54 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mroot>+      <mn>3</mn> +      <mrow>+        <mi>x</mi> +        <mo>-</mo> +        <mn>3</mn> +      </mrow> +    </mroot> +    <mo>+</mo> +    <mroot>+      <mn>3</mn> +      <mi>x</mi> +    </mroot> +    <mo>+</mo> +    <mroot>+      <mfrac>+        <mroot>+          <mrow>+            <mn>3</mn> +            <mi>x</mi> +          </mrow> +          <mn>3</mn> +        </mroot> +        <mrow>+          <mi>x</mi> +          <mo>-</mo> +          <mn>3</mn> +        </mrow> +      </mfrac> +      <mfrac>+        <mn>3</mn> +        <mn>2</mn> +      </mfrac> +    </mroot> +  </mrow> </math>+>>> native+[ ERoot+    (EGrouped [ EIdentifier "x" , ESymbol Bin "-" , ENumber "3" ])+    (ENumber "3")+, ESymbol Bin "+"+, ERoot (EIdentifier "x") (ENumber "3")+, ESymbol Bin "+"+, ERoot+    (EFraction NormalFrac (ENumber "3") (ENumber "2"))+    (EFraction+       NormalFrac+       (ERoot (ENumber "3") (EGrouped [ ENumber "3" , EIdentifier "x" ]))+       (EGrouped [ EIdentifier "x" , ESymbol Bin "-" , ENumber "3" ]))+]
+ test/reader/mml/mrootSfonts3.test view
@@ -0,0 +1,50 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mfrac>+      <mstyle fontfamily="Helvetica">+        <mroot>+          <mrow>+            <mi>x</mi> +            <mo>-</mo> +            <mn>3</mn> +          </mrow> +          <mrow>+            <mi>x</mi> +            <mo>-</mo> +            <mn>3</mn> +          </mrow> +        </mroot> +      </mstyle> +      <mstyle fontweight="bold">+        <mroot>+          <mrow>+            <mn>3</mn> +            <mi>x</mi> +          </mrow> +          <mrow>+            <mi>x</mi> +            <mo>-</mo> +            <mn>3</mn> +          </mrow> +        </mroot> +      </mstyle> +    </mfrac> +    <mroot>+      <mn>3</mn> +      <mi>x</mi> +    </mroot> +  </mrow> </math>+>>> native+[ EFraction+    NormalFrac+    (ERoot+       (EGrouped [ EIdentifier "x" , ESymbol Bin "-" , ENumber "3" ])+       (EGrouped [ EIdentifier "x" , ESymbol Bin "-" , ENumber "3" ]))+    (ERoot+       (EGrouped [ EIdentifier "x" , ESymbol Bin "-" , ENumber "3" ])+       (EGrouped [ ENumber "3" , EIdentifier "x" ]))+, ERoot (EIdentifier "x") (ENumber "3")+]
+ test/reader/mml/mrootSscriptlevel4.test view
@@ -0,0 +1,72 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <mroot>+      <mrow>+        <mi>x</mi> +        <mo>-</mo> +        <mfrac>+          <mi>x</mi> +          <mn>3</mn> +        </mfrac> +      </mrow> +      <mfrac>+        <mi>x</mi> +        <mn>3</mn> +      </mfrac> +    </mroot> +  </mstyle> +  <mo>+</mo> +  <mstyle scriptlevel="2">+    <mroot>+      <mrow>+        <mi>x</mi> +        <mo>-</mo> +        <mn>3</mn> +      </mrow> +      <mfrac>+        <mi>x</mi> +        <mn>3</mn> +      </mfrac> +    </mroot> +  </mstyle> +  <mo>+</mo> +  <mroot>+    <mrow>+      <mi>x</mi> +      <mo>-</mo> +      <mn>3</mn> +    </mrow> +    <mfrac>+      <mi>x</mi> +      <mn>3</mn> +    </mfrac> +  </mroot> +  <mo>+</mo> +  <mstyle scriptlevel="2" displaystyle="true">+    <mfrac>+      <mi>x</mi> +      <mn>3</mn> +    </mfrac> +  </mstyle> </math>+>>> native+[ ERoot+    (EFraction NormalFrac (EIdentifier "x") (ENumber "3"))+    (EGrouped+       [ EIdentifier "x"+       , ESymbol Bin "-"+       , EFraction NormalFrac (EIdentifier "x") (ENumber "3")+       ])+, ESymbol Bin "+"+, ERoot+    (EFraction NormalFrac (EIdentifier "x") (ENumber "3"))+    (EGrouped [ EIdentifier "x" , ESymbol Bin "-" , ENumber "3" ])+, ESymbol Bin "+"+, ERoot+    (EFraction NormalFrac (EIdentifier "x") (ENumber "3"))+    (EGrouped [ EIdentifier "x" , ESymbol Bin "-" , ENumber "3" ])+, ESymbol Bin "+"+, EFraction NormalFrac (EIdentifier "x") (ENumber "3")+]
+ test/reader/mml/mrow-01.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mfrac>    <mi>x</mi>     <mn>4</mn>   </mfrac>   <mo>=</mo>   <mfrac>    <mrow>      <mi>x</mi>+    </mrow>     <mrow>      <mn>4</mn>+    </mrow>   </mfrac> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (ENumber "4")+, ESymbol Rel "="+, EFraction NormalFrac (EIdentifier "x") (ENumber "4")+]
+ test/reader/mml/mrow-02.test view
@@ -0,0 +1,13 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <msup>    <mi>x</mi>     <mn>2</mn>   </msup>   <mo>=</mo>   <msup>    <mrow>      <mrow>        <mi>x</mi>+      </mrow>+    </mrow>     <mrow>      <mrow>        <mn>2</mn>+      </mrow>+    </mrow>   </msup> </math>+>>> native+[ ESuper (EIdentifier "x") (ENumber "2")+, ESymbol Rel "="+, ESuper (EIdentifier "x") (ENumber "2")+]
+ test/reader/mml/mrow1.test view
@@ -0,0 +1,7 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow></mrow> </math>+>>> native+[]
+ test/reader/mml/mrowAbg4.test view
@@ -0,0 +1,64 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathbackground="yellow">+    <mo>(</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>+</mo> +    <mi>x</mi> +    <mo>)</mo> +  </mstyle> </math>+>>> native+[ EDelimited+    "("+    ")"+    [ Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    , Right (ESymbol Bin "+")+    , Right (EIdentifier "x")+    ]+]
+ test/reader/mml/mrowBinferred2.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mn>2</mn> +  <mo>+</mo> +  <msqrt>+    <mi>x</mi> +    <mo>+</mo> +    <mn>1</mn> +  </msqrt> +  <mspace width="20px"></mspace> +  <mrow>+    <mn>2</mn> +    <mo>+</mo> +    <msqrt>+      <mrow>+        <mi>x</mi> +        <mo>+</mo> +        <mn>1</mn> +      </mrow> +    </msqrt> +  </mrow> </math>+>>> native+[ ENumber "2"+, ESymbol Bin "+"+, ESqrt+    (EGrouped [ EIdentifier "x" , ESymbol Bin "+" , ENumber "1" ])+, ESpace (0 % 1)+, EGrouped+    [ ENumber "2"+    , ESymbol Bin "+"+    , ESqrt+        (EGrouped [ EIdentifier "x" , ESymbol Bin "+" , ENumber "1" ])+    ]+]
+ test/reader/mml/mrowBnested3.test view
@@ -0,0 +1,20 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mrow>+      <mfrac>+        <mrow>+          <mi>x</mi> +        </mrow> +        <mrow>+          <mrow>+            <mi>y</mi> +          </mrow> +        </mrow> +      </mfrac> +    </mrow> +  </mrow> </math>+>>> native+[ EFraction NormalFrac (EIdentifier "x") (EIdentifier "y") ]
+ test/reader/mml/ms-11.test view
@@ -0,0 +1,6 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <ms lquote="PA" rquote="">SS</ms> </math>+>>> native+[ EText TextNormal "PASS" ]
+ test/reader/mml/ms-12.test view
@@ -0,0 +1,6 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <ms lquote="" rquote="SS">PA</ms> </math>+>>> native+[ EText TextNormal "PASS" ]
+ test/reader/mml/ms-13.test view
@@ -0,0 +1,6 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <ms lquote="P" rquote="SS">A</ms> </math>+>>> native+[ EText TextNormal "PASS" ]
+ test/reader/mml/ms-14.test view
@@ -0,0 +1,6 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <ms lquote="" rquote=""> </ms> </math>+>>> native+[ EText TextNormal "\160" ]
+ test/reader/mml/ms-15.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <ms lquote="&quot;">string</ms>+  <mo>=</mo>+  <ms rquote="&quot;">string</ms> </math>+>>> native+[ EText TextNormal "\"string\8221"+, ESymbol Rel "="+, EText TextNormal "\8220string\""+]
+ test/reader/mml/ms-16.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <ms lquote="&quot;" rquote="&quot;">string</ms>+  <mo>=</mo>+  <ms>string</ms> </math>+>>> native+[ EText TextNormal "\"string\""+, ESymbol Rel "="+, EText TextNormal "\8220string\8221"+]
+ test/reader/mml/ms1.test view
@@ -0,0 +1,7 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <ms>Minneapolis</ms> </math>+>>> native+[ EText TextNormal "\8220Minneapolis\8221" ]
+ test/reader/mml/msAdisplaystyle2.test view
@@ -0,0 +1,44 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle displaystyle="true">+    <mrow>+      <ms>A</ms> +      <mo>+</mo> +      <ms fontweight="bold">A</ms> +      <mo>+</mo> +      <ms fontweight="normal" fontstyle="italic">A</ms> +      <mo>+</mo> +      <ms fontstyle="normal">A</ms> +      <mo>+</mo> +      <ms fontweight="bold" fontstyle="normal">A</ms> +      <mo>+</mo> +      <ms color="#9c0fff">A</ms> +      <mo>+</mo> +      <ms color="#0ee">A</ms> +      <mo>+</mo> +      <ms color="Green">A</ms> +      <mo>+</mo> +      <ms fontfamily="Helvetica">A</ms> +    </mrow> +  </mstyle> </math>+>>> native+[ EText TextNormal "\8220A\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220A\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220A\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220A\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220A\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220A\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220A\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220A\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220A\8221"+]
+ test/reader/mml/msAquotes3.test view
@@ -0,0 +1,7 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <ms lquote="(" rquote="|)">St. Paul</ms> </math>+>>> native+[ EText TextNormal "(St. Paul|)" ]
+ test/reader/mml/msAtoken4.test view
@@ -0,0 +1,30 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <ms>dog</ms> +    <mo>+</mo> +    <ms fontweight="bold">cat</ms> +    <mo>+</mo> +    <ms fontsize="36pt">dog</ms> +    <mo>+</mo> +    <ms fontstyle="normal">cat</ms> +    <mo>+</mo> +    <ms color="#9c0fff">pig</ms> +    <mo>+</mo> +    <ms fontfamily="Helvetica">goat</ms> +  </mrow> </math>+>>> native+[ EText TextNormal "\8220dog\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220cat\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220dog\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220cat\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220pig\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220goat\8221"+]
+ test/reader/mml/msAtoken5.test view
@@ -0,0 +1,30 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <ms>dog</ms> +    <mo>+</mo> +    <ms fontweight="bold" fontstyle="normal">cat</ms> +    <mo>+</mo> +    <ms fontweight="normal" fontstyle="normal">pig</ms> +    <mo>+</mo> +    <ms fontfamily="Helvetica" color="#00ff00">fish</ms> +    <mo>+</mo> +    <ms fontsize="36pt">&#x03BA;&#x03B1;&#x03C4;</ms> +    <mo>+</mo> +    <ms fontweight="bold" fontstyle="normal">goat</ms> +  </mrow> </math>+>>> native+[ EText TextNormal "\8220dog\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220cat\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220pig\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220fish\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220\954\945\964\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220goat\8221"+]
+ test/reader/mml/msSinheritance7.test view
@@ -0,0 +1,36 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle fontweight="bold" color="#ff0000">+    <mrow>+      <ms>big</ms> +      <mo>+</mo> +      <ms fontweight="normal" fontstyle="italic">bog</ms> +      <mo>+</mo> +      <mstyle fontsize="0.05in">+        <ms>new</ms> +        <mo>+</mo> +        <ms fontsize="2em">net</ms> +        <mo>+</mo> +        <ms fontsize="36pt">nod</ms> +      </mstyle> +      <mo>+</mo> +      <ms fontsize="20mm">nix</ms> +    </mrow> +  </mstyle> </math>+>>> native+[ EText TextNormal "\8220big\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220bog\8221"+, ESymbol Bin "+"+, EGrouped+    [ EText TextNormal "\8220new\8221"+    , ESymbol Bin "+"+    , EText TextNormal "\8220net\8221"+    , ESymbol Bin "+"+    , EText TextNormal "\8220nod\8221"+    ]+, ESymbol Bin "+"+, EText TextNormal "\8220nix\8221"+]
+ test/reader/mml/msSinheritance8.test view
@@ -0,0 +1,32 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle fontstyle="italic" fontfamily="Helvetica">+    <mrow>+      <ms>a</ms> +      <mo>+</mo> +      <ms fontweight="bold">b</ms> +      <mo>+</mo> +      <ms fontstyle="normal">c</ms> +      <mo>+</mo> +      <ms fontfamily="Courier" color="#00ff00">f</ms> +      <mo>+</mo> +      <ms fontsize="36pt">&#x0393;</ms> +      <mo>+</mo> +      <ms fontweight="bold" fontstyle="normal">d</ms> +    </mrow> +  </mstyle> </math>+>>> native+[ EText TextNormal "\8220a\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220b\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220c\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220f\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220\915\8221"+, ESymbol Bin "+"+, EText TextNormal "\8220d\8221"+]
+ test/reader/mml/mspace-01.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mtext>First line</mtext>+  <mspace linebreak="newline"></mspace>+  <mtext>Second line</mtext> </math>+>>> native+[ EText TextNormal "First line"+, ESpace (0 % 1)+, EText TextNormal "Second line"+]
+ test/reader/mml/mspace-02.test view
@@ -0,0 +1,162 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mrow>    <mn>1</mn>     <mn>2</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>3</mn>     <mn>4</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>5</mn>     <mn>6</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>7</mn>     <mn>8</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>9</mn>     <mn>10</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>11</mn>     <mn>12</mn>+  </mrow>   <mrow>    <mn>11</mn>     <mn>12</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>13</mn>     <mn>14</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>15</mn>     <mn>16</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>17</mn>     <mn>18</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>19</mn>     <mn>20</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>21</mn>     <mn>22</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>21</mn>     <mn>22</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>23</mn>     <mn>24</mn>+  </mrow>   <mrow>    <mn>25</mn>     <mn>26</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>27</mn>     <mn>28</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>29</mn>     <mn>30</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>31</mn>     <mn>32</mn>+  </mrow>   <mrow>    <mn>31</mn>     <mn>32</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>33</mn>     <mn>34</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>35</mn>     <mn>36</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>37</mn>     <mn>38</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>39</mn>     <mn>40</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>41</mn>     <mn>42</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>41</mn>     <mn>42</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>43</mn>     <mn>44</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>45</mn>     <mn>46</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>47</mn>     <mn>48</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>49</mn>     <mn>50</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>51</mn>     <mn>52</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>51</mn>     <mn>52</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>53</mn>     <mn>54</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>55</mn>     <mn>56</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>57</mn>     <mn>58</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>59</mn>     <mn>60</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>61</mn>     <mn>62</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>61</mn>     <mn>62</mn>+    <mspace linebreak="goodbreak"></mspace>     <mn>63</mn>     <mn>64</mn>+  </mrow> </math>+>>> native+[ EGrouped+    [ ENumber "1"+    , ENumber "2"+    , ESpace (0 % 1)+    , ENumber "3"+    , ENumber "4"+    , ESpace (0 % 1)+    , ENumber "5"+    , ENumber "6"+    , ESpace (0 % 1)+    , ENumber "7"+    , ENumber "8"+    , ESpace (0 % 1)+    , ENumber "9"+    , ENumber "10"+    , ESpace (0 % 1)+    , ENumber "11"+    , ENumber "12"+    ]+, EGrouped+    [ ENumber "11"+    , ENumber "12"+    , ESpace (0 % 1)+    , ENumber "13"+    , ENumber "14"+    , ESpace (0 % 1)+    , ENumber "15"+    , ENumber "16"+    , ESpace (0 % 1)+    , ENumber "17"+    , ENumber "18"+    , ESpace (0 % 1)+    , ENumber "19"+    , ENumber "20"+    , ESpace (0 % 1)+    , ENumber "21"+    , ENumber "22"+    , ESpace (0 % 1)+    , ENumber "21"+    , ENumber "22"+    , ESpace (0 % 1)+    , ENumber "23"+    , ENumber "24"+    ]+, EGrouped+    [ ENumber "25"+    , ENumber "26"+    , ESpace (0 % 1)+    , ENumber "27"+    , ENumber "28"+    , ESpace (0 % 1)+    , ENumber "29"+    , ENumber "30"+    , ESpace (0 % 1)+    , ENumber "31"+    , ENumber "32"+    ]+, EGrouped+    [ ENumber "31"+    , ENumber "32"+    , ESpace (0 % 1)+    , ENumber "33"+    , ENumber "34"+    , ESpace (0 % 1)+    , ENumber "35"+    , ENumber "36"+    , ESpace (0 % 1)+    , ENumber "37"+    , ENumber "38"+    , ESpace (0 % 1)+    , ENumber "39"+    , ENumber "40"+    , ESpace (0 % 1)+    , ENumber "41"+    , ENumber "42"+    , ESpace (0 % 1)+    , ENumber "41"+    , ENumber "42"+    , ESpace (0 % 1)+    , ENumber "43"+    , ENumber "44"+    , ESpace (0 % 1)+    , ENumber "45"+    , ENumber "46"+    , ESpace (0 % 1)+    , ENumber "47"+    , ENumber "48"+    , ESpace (0 % 1)+    , ENumber "49"+    , ENumber "50"+    , ESpace (0 % 1)+    , ENumber "51"+    , ENumber "52"+    , ESpace (0 % 1)+    , ENumber "51"+    , ENumber "52"+    , ESpace (0 % 1)+    , ENumber "53"+    , ENumber "54"+    , ESpace (0 % 1)+    , ENumber "55"+    , ENumber "56"+    , ESpace (0 % 1)+    , ENumber "57"+    , ENumber "58"+    , ESpace (0 % 1)+    , ENumber "59"+    , ENumber "60"+    , ESpace (0 % 1)+    , ENumber "61"+    , ENumber "62"+    , ESpace (0 % 1)+    , ENumber "61"+    , ENumber "62"+    , ESpace (0 % 1)+    , ENumber "63"+    , ENumber "64"+    ]+]
+ test/reader/mml/mspace-03.test view
@@ -0,0 +1,8 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <mn>1</mn>+  <mspace linebreak="newline" width="thinmathspace"></mspace>+  <mn>2</mn> </math>+>>> native+[ ENumber "1" , ESpace (1 % 6) , ENumber "2" ]
+ test/reader/mml/mspace-04.test view
@@ -0,0 +1,42 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">  <menclose notation="box">    <mn>0</mn>+  </menclose>+  <menclose notation="box">+    <mn>1</mn>+  </menclose>+  <mspace width="verythinmathspace"></mspace>+  <menclose notation="box">+    <mn>2</mn>+  </menclose>+  <mspace width="thinmathspace"></mspace>+  <menclose notation="box">+    <mn>3</mn>+  </menclose>+  <mspace width="mediummathspace"></mspace>+  <menclose notation="box">+    <mn>4</mn>+  </menclose>+  <mspace width="thickmathspace"></mspace>+  <menclose notation="box">+    <mn>5</mn>+  </menclose>+  <mspace width="verythickmathspace"></mspace>+  <menclose notation="box">+    <mn>6</mn>+  </menclose> </math>+>>> native+[ EBoxed (ENumber "0")+, EBoxed (ENumber "1")+, ESpace (1 % 9)+, EBoxed (ENumber "2")+, ESpace (1 % 6)+, EBoxed (ENumber "3")+, ESpace (2 % 9)+, EBoxed (ENumber "4")+, ESpace (5 % 18)+, EBoxed (ENumber "5")+, ESpace (1 % 3)+, EBoxed (ENumber "6")+]
+ test/reader/mml/mspace1.test view
@@ -0,0 +1,26 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>x</mi> +    <mstyle mathbackground="#000099">+      <mspace height="1ex" width="1ex"></mspace> +    </mstyle> +    <mi>M</mi> +    <mstyle mathbackground="#000099">+      <mspace height="1ex" depth="1em" width="1ex"></mspace> +    </mstyle> +    <mi>x</mi> +    <mstyle mathbackground="#000099">+      <mspace depth="2mm" width=".2in"></mspace> +    </mstyle> +  </mrow> </math>+>>> native+[ EIdentifier "x"+, ESpace (58 % 25)+, EIdentifier "M"+, ESpace (58 % 25)+, EIdentifier "x"+, ESpace (0 % 1)+]
+ test/reader/mml/mspace2.test view
@@ -0,0 +1,11 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mstyle mathbackground="#ccffff">+    <mi>H</mi> +    <mspace width="-10px"></mspace> +    <mi>H</mi> +  </mstyle> </math>+>>> native+[ EIdentifier "H" , ESpace (0 % 1) , EIdentifier "H" ]
+ test/reader/mml/mspaceAbreak3.test view
@@ -0,0 +1,54 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mrow>+    <mi>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</mi> +    <mo>+</mo> +    <mspace linebreak="auto"></mspace> +    <mi>bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb</mi> +    <mo>+</mo> +    <mspace linebreak="newline"></mspace> +    <mi>cccccccccccccccccccccccccccccccccccccccccccccccccccccccccc</mi> +    <mo>+</mo> +    <mspace linebreak="indentingnewline"></mspace> +    <mi>dddddddddddddddddddddddddddddddddddddddddddddddddddddddddd</mi> +    <mo>+</mo> +    <mspace linebreak="nobreak"></mspace> +    <mi>eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee</mi> +    <mo>+</mo> +    <mspace linebreak="goodbreak"></mspace> +    <mi>fffffffffffffffffffffffffff</mi> +    <mo>+</mo> +    <mspace linebreak="badbreak"></mspace> +    <mi>gggggggggggggggggggggggggggggggggggggggggggggggggggggg</mi> +    <mo>+</mo> +  </mrow> </math>+>>> native+[ EIdentifier+    "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"+, ESymbol Bin "+"+, ESpace (0 % 1)+, EIdentifier+    "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"+, ESymbol Bin "+"+, ESpace (0 % 1)+, EIdentifier+    "cccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"+, ESymbol Bin "+"+, ESpace (0 % 1)+, EIdentifier+    "dddddddddddddddddddddddddddddddddddddddddddddddddddddddddd"+, ESymbol Bin "+"+, ESpace (0 % 1)+, EIdentifier+    "eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"+, ESymbol Bin "+"+, ESpace (0 % 1)+, EIdentifier "fffffffffffffffffffffffffff"+, ESymbol Bin "+"+, ESpace (0 % 1)+, EIdentifier+    "gggggggggggggggggggggggggggggggggggggggggggggggggggggg"+, ESymbol Bin "+"+]
+ test/reader/mml/mspacestruts2.test view
@@ -0,0 +1,46 @@+<<< mml+<?xml version="1.0" encoding="UTF-8"?>++<math xmlns="http://www.w3.org/1998/Math/MathML">+  <mfrac>+    <mrow>+      <mi>x</mi> +      <mspace width="1cm"></mspace> +      <mi>y</mi> +    </mrow> +    <mn>2</mn> +  </mfrac> +  <mo>+</mo> +  <mfrac>+    <mn>2</mn> +    <mrow>+      <mi>x</mi> +      <mspace height="1cm"></mspace> +      <mi>y</mi> +    </mrow> +  </mfrac> +  <mo>+</mo> +  <mfrac>+    <mrow>+      <mi>x</mi> +      <mspace depth="1cm"></mspace> +      <mi>y</mi> +    </mrow> +    <mn>2</mn> +  </mfrac> </math>+>>> native+[ EFraction+    NormalFrac+    (EGrouped [ EIdentifier "x" , ESpace (7 % 20) , EIdentifier "y" ])+    (ENumber "2")+, ESymbol Bin "+"+, EFraction+    NormalFrac+    (ENumber "2")+    (EGrouped [ EIdentifier "x" , ESpace (0 % 1) , EIdentifier "y" ])+, ESymbol Bin "+"+, EFraction+    NormalFrac+    (EGrouped [ EIdentifier "x" , ESpace (0 % 1) , EIdentifier "y" ])+    (ENumber "2")+]
+ test/reader/mml/msqrt-01.test view

file too large to diff

+ test/reader/mml/msqrt-02.test view

file too large to diff

+ test/reader/mml/msqrt-03.test view

file too large to diff

+ test/reader/mml/msqrt-04.test view

file too large to diff

+ test/reader/mml/msqrt-05.test view

file too large to diff

+ test/reader/mml/msqrt-06.test view

file too large to diff

+ test/reader/mml/msqrt-07.test view

file too large to diff

+ test/reader/mml/msqrt-08.test view

file too large to diff

+ test/reader/mml/msqrt5.test view

file too large to diff

+ test/reader/mml/msqrt6.test view

file too large to diff

+ test/reader/mml/msqrtB7.test view

file too large to diff

+ test/reader/mml/msqrtBimplied8.test view

file too large to diff

+ test/reader/mml/msqrtSinheritance9.test view

file too large to diff

+ test/reader/mml/mstyle1.test view

file too large to diff

+ test/reader/mml/mstyleA2.test view

file too large to diff

+ test/reader/mml/mstyleAdep1.test view

file too large to diff

+ test/reader/mml/mstyleAlinethick1.test view

file too large to diff

+ test/reader/mml/mstyleAminscript1.test view

file too large to diff

+ test/reader/mml/mstyleAscriptlevel1.test view

file too large to diff

+ test/reader/mml/msub-01.test view

file too large to diff

+ test/reader/mml/msub-02.test view

file too large to diff

+ test/reader/mml/msub-03.test view

file too large to diff

+ test/reader/mml/msub-04.test view

file too large to diff

+ test/reader/mml/msub-05.test view

file too large to diff

+ test/reader/mml/msub-06.test view

file too large to diff

+ test/reader/mml/msub-07.test view

file too large to diff

+ test/reader/mml/msub-08.test view

file too large to diff

+ test/reader/mml/msub-09.test view

file too large to diff

+ test/reader/mml/msub-10.test view

file too large to diff

+ test/reader/mml/msub-11.test view

file too large to diff

+ test/reader/mml/msub-12.test view

file too large to diff

+ test/reader/mml/msub1.test view

file too large to diff

+ test/reader/mml/msubsup-01.test view

file too large to diff

+ test/reader/mml/msubsup-02.test view

file too large to diff

+ test/reader/mml/msubsup-03.test view

file too large to diff

+ test/reader/mml/msubsup-04.test view

file too large to diff

+ test/reader/mml/msubsup-05.test view

file too large to diff

+ test/reader/mml/msubsup-06.test view

file too large to diff

+ test/reader/mml/msubsup-07.test view

file too large to diff

+ test/reader/mml/msubsup-08.test view

file too large to diff

+ test/reader/mml/msubsup-09.test view

file too large to diff

+ test/reader/mml/msubsup-10.test view

file too large to diff

+ test/reader/mml/msubsup-11.test view

file too large to diff

+ test/reader/mml/msubsup-12.test view

file too large to diff

+ test/reader/mml/msubsup1.test view

file too large to diff

+ test/reader/mml/msubsupBsize1.test view

file too large to diff

+ test/reader/mml/msubsupBsize2.test view

file too large to diff

+ test/reader/mml/msup-01.test view

file too large to diff

+ test/reader/mml/msup-02.test view

file too large to diff

+ test/reader/mml/msup-03.test view

file too large to diff

+ test/reader/mml/msup-04.test view

file too large to diff

+ test/reader/mml/msup-05.test view

file too large to diff

+ test/reader/mml/msup-06.test view

file too large to diff

+ test/reader/mml/msup-07.test view

file too large to diff

+ test/reader/mml/msup-08.test view

file too large to diff

+ test/reader/mml/msup-09.test view

file too large to diff

+ test/reader/mml/msup-10.test view

file too large to diff

+ test/reader/mml/msup-11.test view

file too large to diff

+ test/reader/mml/msup-12.test view

file too large to diff

+ test/reader/mml/msup1.test view

file too large to diff

+ test/reader/mml/msup2.test view

file too large to diff

+ test/reader/mml/msupBnest1.test view

file too large to diff

+ test/reader/mml/msupBsize1.test view

file too large to diff

+ test/reader/mml/msupBsize2.test view

file too large to diff

+ test/reader/mml/msupBsize3.test view

file too large to diff

+ test/reader/mml/msupSadvance1.test view

file too large to diff

+ test/reader/mml/mtable-01.test view

file too large to diff

+ test/reader/mml/mtable-03.test view

file too large to diff

+ test/reader/mml/mtable-04.test view

file too large to diff

+ test/reader/mml/mtable-05.test view

file too large to diff

+ test/reader/mml/mtable-06.test view

file too large to diff

+ test/reader/mml/mtable-07.test view

file too large to diff

+ test/reader/mml/mtable-08.test view

file too large to diff

+ test/reader/mml/mtable-09.test view

file too large to diff

+ test/reader/mml/mtable-10.test view

file too large to diff

+ test/reader/mml/mtable-11.test view

file too large to diff

+ test/reader/mml/mtable-12.test view

file too large to diff

+ test/reader/mml/mtable-13.test view

file too large to diff

+ test/reader/mml/mtable-14.test view

file too large to diff

+ test/reader/mml/mtable-15.test view

file too large to diff

+ test/reader/mml/mtable-16.test view

file too large to diff

+ test/reader/mml/mtable2.test view

file too large to diff

+ test/reader/mml/mtableAalign1.test view

file too large to diff

+ test/reader/mml/mtableAalign2.test view

file too large to diff

+ test/reader/mml/mtableAalign3.test view

file too large to diff

+ test/reader/mml/mtableAframe1.test view

file too large to diff

+ test/reader/mml/mtableAframe2.test view

file too large to diff

+ test/reader/mml/mtableAgroupalign.test view

file too large to diff

+ test/reader/mml/mtableAlines1.test view

file too large to diff

+ test/reader/mml/mtableAlines2.test view

file too large to diff

+ test/reader/mml/mtableAspacing1.test view

file too large to diff

+ test/reader/mml/mtableAspacing2.test view

file too large to diff

+ test/reader/mml/mtableAspacing3.test view

file too large to diff

+ test/reader/mml/mtableAspacing4.test view

file too large to diff

+ test/reader/mml/mtableAwidth1.test view

file too large to diff

+ test/reader/mml/mtableAwidth2.test view

file too large to diff

+ test/reader/mml/mtableAwidth3.test view

file too large to diff

+ test/reader/mml/mtableAwidth4.test view

file too large to diff

+ test/reader/mml/mtableBgap1.test view

file too large to diff

+ test/reader/mml/mtableBsize2.test view

file too large to diff

+ test/reader/mml/mtableBspan3.test view

file too large to diff

+ test/reader/mml/mtext1.test view

file too large to diff

+ test/reader/mml/mtext2.test view

file too large to diff

+ test/reader/mml/mtextAtoken3.test view

file too large to diff

+ test/reader/mml/mtextSbg4.test view

file too large to diff

+ test/reader/mml/mtextStoken6.test view

file too large to diff

+ test/reader/mml/mtextspaces7.test view

file too large to diff

+ test/reader/mml/munder-01.test view

file too large to diff

+ test/reader/mml/munder-02.test view

file too large to diff

+ test/reader/mml/munder-03.test view

file too large to diff

+ test/reader/mml/munder-04.test view

file too large to diff

+ test/reader/mml/munder-05.test view

file too large to diff

+ test/reader/mml/munder-06.test view

file too large to diff

+ test/reader/mml/munder-07.test view

file too large to diff

+ test/reader/mml/munder-08.test view

file too large to diff

+ test/reader/mml/munder-09.test view

file too large to diff

+ test/reader/mml/munder-10.test view

file too large to diff

+ test/reader/mml/munder-11.test view

file too large to diff

+ test/reader/mml/munder-12.test view

file too large to diff

+ test/reader/mml/munder1.test view

file too large to diff

+ test/reader/mml/munder2.test view

file too large to diff

+ test/reader/mml/munder3.test view

file too large to diff

+ test/reader/mml/munder4.test view

file too large to diff

+ test/reader/mml/munder5.test view

file too large to diff

+ test/reader/mml/munder6.test view

file too large to diff

+ test/reader/mml/munder7.test view

file too large to diff

+ test/reader/mml/munder8.test view

file too large to diff

+ test/reader/mml/munder9.test view

file too large to diff

+ test/reader/mml/munderover-01.test view

file too large to diff

+ test/reader/mml/munderover-02.test view

file too large to diff

+ test/reader/mml/munderover-03.test view

file too large to diff

+ test/reader/mml/munderover-04.test view

file too large to diff

+ test/reader/mml/munderover-05.test view

file too large to diff

+ test/reader/mml/munderover-06.test view

file too large to diff

+ test/reader/mml/munderover-07.test view

file too large to diff

+ test/reader/mml/munderover-08.test view

file too large to diff

+ test/reader/mml/munderover-09.test view

file too large to diff

+ test/reader/mml/munderover-10.test view

file too large to diff

+ test/reader/mml/munderover-11.test view

file too large to diff

+ test/reader/mml/munderover-12.test view

file too large to diff

+ test/reader/mml/n.test view

file too large to diff

+ test/reader/mml/nestAction1.test view

file too large to diff

+ test/reader/mml/nestFrac1.test view

file too large to diff

+ test/reader/mml/nestScript.test view

file too large to diff

+ test/reader/mml/nestTable1.test view

file too large to diff

+ test/reader/mml/nestedAwidth1.test view

file too large to diff

+ test/reader/mml/nestedMath3.test view

file too large to diff

+ test/reader/mml/o.test view

file too large to diff

+ test/reader/mml/oint1.test view

file too large to diff

+ test/reader/mml/oint2.test view

file too large to diff

+ test/reader/mml/p.test view

file too large to diff

+ test/reader/mml/primes1.test view

file too large to diff

+ test/reader/mml/primes2.test view

file too large to diff

+ test/reader/mml/prod1.test view

file too large to diff

+ test/reader/mml/prod2.test view

file too large to diff

+ test/reader/mml/q.test view

file too large to diff

+ test/reader/mml/r.test view

file too large to diff

+ test/reader/mml/rec-mlabeledtr.test view

file too large to diff

+ test/reader/mml/rec-mtable1.test view

file too large to diff

+ test/reader/mml/rec3-mphantom-1.test view

file too large to diff

+ test/reader/mml/s.test view

file too large to diff

+ test/reader/mml/sans-serif-bold-italic.test view

file too large to diff

+ test/reader/mml/sans-serif-bold.test view

file too large to diff

+ test/reader/mml/sans-serif-italic.test view

file too large to diff

+ test/reader/mml/sans-serif.test view

file too large to diff

+ test/reader/mml/script-bold.test view

file too large to diff

+ test/reader/mml/script.test view

file too large to diff

+ test/reader/mml/semantics-01.test view

file too large to diff

+ test/reader/mml/semantics-02.test view

file too large to diff

+ test/reader/mml/semantics-03.test view

file too large to diff

+ test/reader/mml/semantics-04.test view

file too large to diff

+ test/reader/mml/serif-bold-italic.test view

file too large to diff

+ test/reader/mml/serif-bold.test view

file too large to diff

+ test/reader/mml/serif-italic.test view

file too large to diff

+ test/reader/mml/serif.test view

file too large to diff

+ test/reader/mml/simplePres.test view

file too large to diff

+ test/reader/mml/sizeunits3.test view

file too large to diff

+ test/reader/mml/sizeunits4.test view

file too large to diff

+ test/reader/mml/stretchAccents1.test view

file too large to diff

+ test/reader/mml/stretchAccents2.test view

file too large to diff

+ test/reader/mml/stretchBrack1.test view

file too large to diff

+ test/reader/mml/stretchHoriz1.test view

file too large to diff

+ test/reader/mml/stretchHoriz2.test view

file too large to diff

+ test/reader/mml/stretchHoriz3.test view

file too large to diff

+ test/reader/mml/stretchTable1.test view

file too large to diff

+ test/reader/mml/stretchTable2.test view

file too large to diff

+ test/reader/mml/stretchTilde1.test view

file too large to diff

+ test/reader/mml/stretchVert1.test view

file too large to diff

+ test/reader/mml/stretchVert2.test view

file too large to diff

+ test/reader/mml/stretchVertNest2.test view

file too large to diff

+ test/reader/mml/style1.test view

file too large to diff

+ test/reader/mml/style2.test view

file too large to diff

+ test/reader/mml/sum1.test view

file too large to diff

+ test/reader/mml/sum2.test view

file too large to diff

+ test/reader/mml/t.test view

file too large to diff

+ test/reader/mml/tripleint1.test view

file too large to diff

+ test/reader/mml/tripleint2.test view

file too large to diff

+ test/reader/mml/u.test view

file too large to diff

+ test/reader/mml/v.test view

file too large to diff

+ test/reader/mml/verbar1.test view

file too large to diff

+ test/reader/mml/verbar2.test view

file too large to diff

+ test/reader/mml/w.test view

file too large to diff

+ test/reader/mml/whBcomments1.test view

file too large to diff

+ test/reader/mml/whBgeneral1.test view

file too large to diff

+ test/reader/mml/white1.test view

file too large to diff

+ test/reader/mml/white10.test view

file too large to diff

+ test/reader/mml/white2.test view

file too large to diff

+ test/reader/mml/white3.test view

file too large to diff

+ test/reader/mml/white4.test view

file too large to diff

+ test/reader/mml/white5.test view

file too large to diff

+ test/reader/mml/white6.test view

file too large to diff

+ test/reader/mml/white7.test view

file too large to diff

+ test/reader/mml/white8.test view

file too large to diff

+ test/reader/mml/white9.test view

file too large to diff

+ test/reader/mml/x.test view

file too large to diff

+ test/reader/mml/xmllang1.test view

file too large to diff

+ test/reader/mml/xref1.test view

file too large to diff

+ test/reader/mml/y.test view

file too large to diff

+ test/reader/mml/z.test view

file too large to diff

+ test/reader/omml/01.test view

file too large to diff

+ test/reader/omml/02.test view

file too large to diff

+ test/reader/omml/03.test view

file too large to diff

+ test/reader/omml/04.test view

file too large to diff

+ test/reader/omml/05.test view

file too large to diff

+ test/reader/omml/06.test view

file too large to diff

+ test/reader/omml/07.test view

file too large to diff

+ test/reader/omml/08.test view

file too large to diff

+ test/reader/omml/09.test view

file too large to diff

+ test/reader/omml/10.test view

file too large to diff

+ test/reader/omml/11.test view

file too large to diff

+ test/reader/omml/12.test view

file too large to diff

+ test/reader/omml/13.test view

file too large to diff

+ test/reader/omml/14.test view

file too large to diff

+ test/reader/omml/15.test view

file too large to diff

+ test/reader/omml/153a.test view

file too large to diff

+ test/reader/omml/153b.test view

file too large to diff

+ test/reader/omml/153c.test view

file too large to diff

+ test/reader/omml/16.test view

file too large to diff

+ test/reader/omml/17.test view

file too large to diff

+ test/reader/omml/18.test view

file too large to diff

+ test/reader/omml/19.test view

file too large to diff

+ test/reader/omml/20.test view

file too large to diff

+ test/reader/omml/21.test view

file too large to diff

+ test/reader/omml/22.test view

file too large to diff

+ test/reader/omml/axiom_of_power_set.test view

file too large to diff

+ test/reader/omml/binomial_coefficient.test view

file too large to diff

+ test/reader/omml/boxed.test view

file too large to diff

+ test/reader/omml/cancel.test view

file too large to diff

+ test/reader/omml/choose.test view

file too large to diff

+ test/reader/omml/complex_number.test view

file too large to diff

+ test/reader/omml/deMorgans_law.test view

file too large to diff

+ test/reader/omml/differentiable_manifold.test view

file too large to diff

+ test/reader/omml/divergence.test view

file too large to diff

+ test/reader/omml/ensuremath.test view

file too large to diff

+ test/reader/omml/genfrac.test view

file too large to diff

+ test/reader/omml/issue112.test view

file too large to diff

+ test/reader/omml/labels.test view

file too large to diff

+ test/reader/omml/macros.test view

file too large to diff

+ test/reader/omml/moore_determinant.test view

file too large to diff

+ test/reader/omml/notin.test view

file too large to diff

+ test/reader/omml/operatorname.test view

file too large to diff

+ test/reader/omml/phantom.test view

file too large to diff

+ test/reader/omml/schwinger_dyson.test view

file too large to diff

+ test/reader/omml/sophomores_dream.test view

file too large to diff

+ test/reader/omml/sphere_volume.test view

file too large to diff

+ test/reader/omml/stackrel.test view

file too large to diff

+ test/reader/omml/substack.test view

file too large to diff

+ test/reader/omml/subsup.test view

file too large to diff

+ test/reader/omml/text.test view

file too large to diff

+ test/reader/omml/tokens.test view

file too large to diff

+ test/reader/omml/unicode.test view

file too large to diff

+ test/reader/tex/01.test view

file too large to diff

+ test/reader/tex/02.test view

file too large to diff

+ test/reader/tex/03.test view

file too large to diff

+ test/reader/tex/04.test view

file too large to diff

+ test/reader/tex/05.test view

file too large to diff

+ test/reader/tex/06.test view

file too large to diff

+ test/reader/tex/07.test view

file too large to diff

+ test/reader/tex/08.test view

file too large to diff

+ test/reader/tex/09.test view

file too large to diff

+ test/reader/tex/10.test view

file too large to diff

+ test/reader/tex/11.test view

file too large to diff

+ test/reader/tex/12.test view

file too large to diff

+ test/reader/tex/13.test view

file too large to diff

+ test/reader/tex/14.test view

file too large to diff

+ test/reader/tex/15.test view

file too large to diff

+ test/reader/tex/16.test view

file too large to diff

+ test/reader/tex/17.test view

file too large to diff

+ test/reader/tex/18.test view

file too large to diff

+ test/reader/tex/19.test view

file too large to diff

+ test/reader/tex/20.test view

file too large to diff

+ test/reader/tex/21.test view

file too large to diff

+ test/reader/tex/22.test view

file too large to diff

+ test/reader/tex/23.test view

file too large to diff

+ test/reader/tex/axiom_of_power_set.test view

file too large to diff

+ test/reader/tex/binomial_coefficient.test view

file too large to diff

+ test/reader/tex/boxed.test view

file too large to diff

+ test/reader/tex/cancel.test view

file too large to diff

+ test/reader/tex/choose.test view

file too large to diff

+ test/reader/tex/complex_number.test view

file too large to diff

+ test/reader/tex/cospan.test view

file too large to diff

+ test/reader/tex/deMorgans_law.test view

file too large to diff

+ test/reader/tex/differentiable_manifold.test view

file too large to diff

+ test/reader/tex/divergence.test view

file too large to diff

+ test/reader/tex/ensuremath.test view

file too large to diff

+ test/reader/tex/genfrac.test view

file too large to diff

+ test/reader/tex/issue109.test view

file too large to diff

+ test/reader/tex/issue204.test view

file too large to diff

+ test/reader/tex/issue229.test view

file too large to diff

+ test/reader/tex/labels.test view

file too large to diff

+ test/reader/tex/macros.test view

file too large to diff

+ test/reader/tex/math-in-text.test view

file too large to diff

+ test/reader/tex/moore_determinant.test view

file too large to diff

+ test/reader/tex/notin.test view

file too large to diff

+ test/reader/tex/operatorname.test view

file too large to diff

+ test/reader/tex/phantom.test view

file too large to diff

+ test/reader/tex/quadratic_formula.test view

file too large to diff

+ test/reader/tex/schwinger_dyson.test view

file too large to diff

+ test/reader/tex/simple_sum_formula.test view

file too large to diff

+ test/reader/tex/sophomores_dream.test view

file too large to diff

+ test/reader/tex/span.test view

file too large to diff

+ test/reader/tex/sphere_volume.test view

file too large to diff

+ test/reader/tex/stackrel.test view

file too large to diff

+ test/reader/tex/substack.test view

file too large to diff

+ test/reader/tex/subsup.test view

file too large to diff

+ test/reader/tex/text.test view

file too large to diff

+ test/reader/tex/tokens.test view

file too large to diff

+ test/reader/tex/unicode.test view

file too large to diff

+ test/regression/187.test view

file too large to diff

+ test/regression/191.test view

file too large to diff

+ test/regression/196.test view

file too large to diff

+ test/regression/203.test view

file too large to diff

+ test/regression/234.test view

file too large to diff

+ test/regression/235.test view

file too large to diff

+ test/regression/236a.test view

file too large to diff

+ test/regression/236b.test view

file too large to diff

+ test/regression/238.test view

file too large to diff

+ test/regression/239.test view

file too large to diff

+ test/regression/241.test view

file too large to diff

+ test/regression/244.test view

file too large to diff

+ test/regression/245a.test view

file too large to diff

+ test/regression/245b.test view

file too large to diff

+ test/regression/252.test view

file too large to diff

+ test/regression/258.test view

file too large to diff

+ test/regression/259.test view

file too large to diff

+ test/regression/264.test view

file too large to diff

+ test/regression/273.test view

file too large to diff

+ test/regression/275.test view

file too large to diff

+ test/regression/276.test view

file too large to diff

+ test/regression/277.test view

file too large to diff

+ test/regression/278.test view

file too large to diff

+ test/regression/280.test view

file too large to diff

+ test/regression/280b.test view

file too large to diff

+ test/roundtrip/00000_C0_Controls_and_Basic_Latin.native view

file too large to diff

+ test/roundtrip/00080_C1_Controls_and_Latin-1_Supplement.native view

file too large to diff

+ test/roundtrip/00100_Latin_Extended-A.native view

file too large to diff

+ test/roundtrip/00180_Latin_Extended-B.native view

file too large to diff

+ test/roundtrip/00250_IPA_Extensions.native view

file too large to diff

+ test/roundtrip/002B0_Spacing_Modifier_Letters.native view

file too large to diff

+ test/roundtrip/00300_Combining_Diacritical_Marks.native view

file too large to diff

+ test/roundtrip/00370_Greek_and_Coptic.native view

file too large to diff

+ test/roundtrip/00400_Cyrillic.native view

file too large to diff

+ test/roundtrip/01.native view

file too large to diff

+ test/roundtrip/01E00_Latin_Extended_Additional.native view

file too large to diff

+ test/roundtrip/01F00_Greek_Extended.native view

file too large to diff

+ test/roundtrip/02.native view

file too large to diff

+ test/roundtrip/02000_General_Punctuation.native view

file too large to diff

+ test/roundtrip/02070_Superscripts_and_Subscripts.native view

file too large to diff

+ test/roundtrip/020A0_Currency_Symbols.native view

file too large to diff

+ test/roundtrip/020D0_Combining_Diacritical_Marks_for_Symbols.native view

file too large to diff

+ test/roundtrip/02100_Letterlike_Symbols.native view

file too large to diff

+ test/roundtrip/02150_Number_Forms.native view

file too large to diff

+ test/roundtrip/02190_Arrows.native view

file too large to diff

+ test/roundtrip/02200_Mathematical_Operators.native view

file too large to diff

+ test/roundtrip/02300_Miscellaneous_Technical.native view

file too large to diff

+ test/roundtrip/02400_Control_Pictures.native view

file too large to diff

+ test/roundtrip/02440_Optical_Character_Recognition.native view

file too large to diff

+ test/roundtrip/02460_Enclosed_Alphanumerics.native view

file too large to diff

+ test/roundtrip/02500_Box_Drawing.native view

file too large to diff

+ test/roundtrip/02580_Block_Elements.native view

file too large to diff

+ test/roundtrip/025A0_Geometric_Shapes.native view

file too large to diff

+ test/roundtrip/02600_Miscellaneous_Symbols.native view

file too large to diff

+ test/roundtrip/02700_Dingbats.native view

file too large to diff

+ test/roundtrip/027C0_Miscellaneous_Mathematical_Symbols-A.native view

file too large to diff

+ test/roundtrip/027F0_Supplemental_Arrows-A.native view

file too large to diff

+ test/roundtrip/02900_Supplemental_Arrows-B.native view

file too large to diff

+ test/roundtrip/02980_Miscellaneous_Mathematical_Symbols-B.native view

file too large to diff

+ test/roundtrip/02A00_Supplemental_Mathematical_Operators.native view

file too large to diff

+ test/roundtrip/02B00_Miscellaneous_Symbols_and_Arrows.native view

file too large to diff

+ test/roundtrip/03.native view

file too large to diff

+ test/roundtrip/04.native view

file too large to diff

+ test/roundtrip/05.native view

file too large to diff

+ test/roundtrip/06.native view

file too large to diff

+ test/roundtrip/07.native view

file too large to diff

+ test/roundtrip/08.native view

file too large to diff

+ test/roundtrip/09.native view

file too large to diff

+ test/roundtrip/0FB00_Alphabetic_Presentation_Forms.native view

file too large to diff

+ test/roundtrip/0FB50_Arabic_Presentation_Forms-A.native view

file too large to diff

+ test/roundtrip/0FE00_Variation_Selectors.native view

file too large to diff

+ test/roundtrip/0FE10_Vertical_Forms.native view

file too large to diff

+ test/roundtrip/0FE20_Combining_Half_Marks.native view

file too large to diff

+ test/roundtrip/0FE30_CJK_Compatibility_Forms.native view

file too large to diff

+ test/roundtrip/0FE50_Small_Form_Variants.native view

file too large to diff

+ test/roundtrip/0FE70_Arabic_Presentation_Forms-B.native view

file too large to diff

+ test/roundtrip/10.native view

file too large to diff

+ test/roundtrip/11.native view

file too large to diff

+ test/roundtrip/12.native view

file too large to diff

+ test/roundtrip/13.native view

file too large to diff

+ test/roundtrip/14.native view

file too large to diff

+ test/roundtrip/15.native view

file too large to diff

+ test/roundtrip/16.native view

file too large to diff

+ test/roundtrip/17.native view

file too large to diff

+ test/roundtrip/18.native view

file too large to diff

+ test/roundtrip/19.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_bold-script.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_bold.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_double-struck.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_fraktur.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_italic.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_monospace.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.native view

file too large to diff

+ test/roundtrip/1D400_Mathematical_Alphanumeric_Symbols_script.native view

file too large to diff

+ test/roundtrip/20.native view

file too large to diff

+ test/roundtrip/21.native view

file too large to diff

+ test/roundtrip/22.native view

file too large to diff

+ test/roundtrip/23.native view

file too large to diff

+ test/roundtrip/a.native view

file too large to diff

+ test/roundtrip/abs1.native view

file too large to diff

+ test/roundtrip/accents1.native view

file too large to diff

+ test/roundtrip/accents2.native view

file too large to diff

+ test/roundtrip/accents3.native view

file too large to diff

+ test/roundtrip/accents4.native view

file too large to diff

+ test/roundtrip/accents5.native view

file too large to diff

+ test/roundtrip/accents6.native view

file too large to diff

+ test/roundtrip/attribQuote1.native view

file too large to diff

+ test/roundtrip/axiom_of_power_set.native view

file too large to diff

+ test/roundtrip/b.native view

file too large to diff

+ test/roundtrip/badAttribs2.native view

file too large to diff

+ test/roundtrip/badAttribsGlyph4.native view

file too large to diff

+ test/roundtrip/badAttribsVal3.native view

file too large to diff

+ test/roundtrip/badEntity1.native view

file too large to diff

+ test/roundtrip/binomial_coefficient.native view

file too large to diff

+ test/roundtrip/boxed.native view

file too large to diff

+ test/roundtrip/c.native view

file too large to diff

+ test/roundtrip/cancel.native view

file too large to diff

+ test/roundtrip/chain1.native view

file too large to diff

+ test/roundtrip/choose.native view

file too large to diff

+ test/roundtrip/class1.native view

file too large to diff

+ test/roundtrip/class2.native view

file too large to diff

+ test/roundtrip/clipboard1.native view

file too large to diff

+ test/roundtrip/clipboard2.native view

file too large to diff

+ test/roundtrip/complex1.native view

file too large to diff

+ test/roundtrip/complex2.native view

file too large to diff

+ test/roundtrip/complex3.native view

file too large to diff

+ test/roundtrip/complex_number.native view

file too large to diff

+ test/roundtrip/coprod2.native view

file too large to diff

+ test/roundtrip/cospan.native view

file too large to diff

+ test/roundtrip/d.native view

file too large to diff

+ test/roundtrip/deMorgans_law.native view

file too large to diff

+ test/roundtrip/differentiable_manifold.native view

file too large to diff

+ test/roundtrip/digamma.native view

file too large to diff

+ test/roundtrip/digit-bold.native view

file too large to diff

+ test/roundtrip/digit-double-struck.native view

file too large to diff

+ test/roundtrip/digit-monospace.native view

file too large to diff

+ test/roundtrip/digit-sans-serif-bold.native view

file too large to diff

+ test/roundtrip/digit-sans-serif.native view

file too large to diff

+ test/roundtrip/divergence.native view

file too large to diff

+ test/roundtrip/dotless.native view

file too large to diff

+ test/roundtrip/double-struck.native view

file too large to diff

+ test/roundtrip/doubleint1.native view

file too large to diff

+ test/roundtrip/e.native view

file too large to diff

+ test/roundtrip/embStretch1.native view

file too large to diff

+ test/roundtrip/emptyContent1.native view

file too large to diff

+ test/roundtrip/ensuremath.native view

file too large to diff

+ test/roundtrip/f.native view

file too large to diff

+ test/roundtrip/fraktur-bold.native view

file too large to diff

+ test/roundtrip/fraktur.native view

file too large to diff

+ test/roundtrip/g.native view

file too large to diff

+ test/roundtrip/genBvert1.native view

file too large to diff

+ test/roundtrip/genfrac.native view

file too large to diff

+ test/roundtrip/greek-bold-italic.native view

file too large to diff

+ test/roundtrip/greek-bold.native view

file too large to diff

+ test/roundtrip/greek-italic.native view

file too large to diff

+ test/roundtrip/greek-sans-serif-bold-italic.native view

file too large to diff

+ test/roundtrip/greek-sans-serif-bold.native view

file too large to diff

+ test/roundtrip/h.native view

file too large to diff

+ test/roundtrip/href1.native view

file too large to diff

+ test/roundtrip/href2.native view

file too large to diff

+ test/roundtrip/href3.native view

file too large to diff

+ test/roundtrip/i.native view

file too large to diff

+ test/roundtrip/int10.native view

file too large to diff

+ test/roundtrip/int4.native view

file too large to diff

+ test/roundtrip/int5.native view

file too large to diff

+ test/roundtrip/int6.native view

file too large to diff

+ test/roundtrip/int7.native view

file too large to diff

+ test/roundtrip/intDispStyle.native view

file too large to diff

+ test/roundtrip/intNested3.native view

file too large to diff

+ test/roundtrip/intSize1.native view

file too large to diff

+ test/roundtrip/intSize2.native view

file too large to diff

+ test/roundtrip/invChars.native view

file too large to diff

+ test/roundtrip/issue109.native view

file too large to diff

+ test/roundtrip/j.native view

file too large to diff

+ test/roundtrip/k.native view

file too large to diff

+ test/roundtrip/l.native view

file too large to diff

+ test/roundtrip/labels.native view

file too large to diff

+ test/roundtrip/largeop1.native view

file too large to diff

+ test/roundtrip/largeop2.native view

file too large to diff

+ test/roundtrip/largeopPos3.native view

file too large to diff

+ test/roundtrip/latin-bold-italic.native view

file too large to diff

+ test/roundtrip/latin-bold.native view

file too large to diff

+ test/roundtrip/latin-italic.native view

file too large to diff

+ test/roundtrip/latin-sans-serif-bold-italic.native view

file too large to diff

+ test/roundtrip/latin-sans-serif-bold.native view

file too large to diff

+ test/roundtrip/latin-sans-serif-italic.native view

file too large to diff

+ test/roundtrip/latin-sans-serif.native view

file too large to diff

+ test/roundtrip/m.native view

file too large to diff

+ test/roundtrip/m10.native view

file too large to diff

+ test/roundtrip/m100.native view

file too large to diff

+ test/roundtrip/m1000.native view

file too large to diff

+ test/roundtrip/macros.native view

file too large to diff

+ test/roundtrip/maction-01.native view

file too large to diff

+ test/roundtrip/maction-02.native view

file too large to diff

+ test/roundtrip/maction-03.native view

file too large to diff

+ test/roundtrip/maction-04.native view

file too large to diff

+ test/roundtrip/maction-05.native view

file too large to diff

+ test/roundtrip/maction-06.native view

file too large to diff

+ test/roundtrip/maction-07.native view

file too large to diff

+ test/roundtrip/maction-08.native view

file too large to diff

+ test/roundtrip/mactionBhigh1.native view

file too large to diff

+ test/roundtrip/mactionBtooltip1.native view

file too large to diff

+ test/roundtrip/maligngroup1.native view

file too large to diff

+ test/roundtrip/math-in-text.native view

file too large to diff

+ test/roundtrip/math3.native view

file too large to diff

+ test/roundtrip/mathAdisplay1.native view

file too large to diff

+ test/roundtrip/mathBevelledFrac.native view

file too large to diff

+ test/roundtrip/mathDir.native view

file too large to diff

+ test/roundtrip/mathTable1.native view

file too large to diff

+ test/roundtrip/mfenced-01.native view

file too large to diff

+ test/roundtrip/mfenced-02.native view

file too large to diff

+ test/roundtrip/mfenced-03.native view

file too large to diff

+ test/roundtrip/mfenced-04.native view

file too large to diff

+ test/roundtrip/mfenced-05.native view

file too large to diff

+ test/roundtrip/mfenced-06.native view

file too large to diff

+ test/roundtrip/mfenced-07.native view

file too large to diff

+ test/roundtrip/mfenced-08.native view

file too large to diff

+ test/roundtrip/mfenced1.native view

file too large to diff

+ test/roundtrip/mfenced2.native view

file too large to diff

+ test/roundtrip/mfenced5.native view

file too large to diff

+ test/roundtrip/mfencedAdelims6.native view

file too large to diff

+ test/roundtrip/mfencedAempty.native view

file too large to diff

+ test/roundtrip/mfencedBfences7.native view

file too large to diff

+ test/roundtrip/mfencedBseparators8.native view

file too large to diff

+ test/roundtrip/mfencedSfonts9.native view

file too large to diff

+ test/roundtrip/mfrac-01.native view

file too large to diff

+ test/roundtrip/mfrac-02.native view

file too large to diff

+ test/roundtrip/mfrac-03.native view

file too large to diff

+ test/roundtrip/mfrac-04.native view

file too large to diff

+ test/roundtrip/mfrac-05.native view

file too large to diff

+ test/roundtrip/mfrac-06.native view

file too large to diff

+ test/roundtrip/mfrac-07.native view

file too large to diff

+ test/roundtrip/mfrac-08.native view

file too large to diff

+ test/roundtrip/mfrac-09.native view

file too large to diff

+ test/roundtrip/mfrac-10.native view

file too large to diff

+ test/roundtrip/mfrac-11.native view

file too large to diff

+ test/roundtrip/mfrac-12.native view

file too large to diff

+ test/roundtrip/mfrac1.native view

file too large to diff

+ test/roundtrip/mfrac2.native view

file too large to diff

+ test/roundtrip/mfrac3.native view

file too large to diff

+ test/roundtrip/mfrac5.native view

file too large to diff

+ test/roundtrip/mfrac6.native view

file too large to diff

+ test/roundtrip/mfrac7.native view

file too large to diff

+ test/roundtrip/mfracAcss8.native view

file too large to diff

+ test/roundtrip/mfracAmultiplier10.native view

file too large to diff

+ test/roundtrip/mfracBalign16.native view

file too large to diff

+ test/roundtrip/mfracBheight17.native view

file too large to diff

+ test/roundtrip/mfracBhoriz11.native view

file too large to diff

+ test/roundtrip/mfracBvert12.native view

file too large to diff

+ test/roundtrip/mfracSfonts13.native view

file too large to diff

+ test/roundtrip/mfracSinheritance14.native view

file too large to diff

+ test/roundtrip/mfracSscriptlevel15.native view

file too large to diff

+ test/roundtrip/mfracZcomp-01.native view

file too large to diff

+ test/roundtrip/mfracZcomp-02.native view

file too large to diff

+ test/roundtrip/mfracZcomp-03.native view

file too large to diff

+ test/roundtrip/mfracZcomp-04.native view

file too large to diff

+ test/roundtrip/mfracZcomp-05.native view

file too large to diff

+ test/roundtrip/mfracZcomp-06.native view

file too large to diff

+ test/roundtrip/mfracZcomp-07.native view

file too large to diff

+ test/roundtrip/mfracZcomp-08.native view

file too large to diff

+ test/roundtrip/mfracZcomp-09.native view

file too large to diff

+ test/roundtrip/mfracZcomp-10.native view

file too large to diff

+ test/roundtrip/mfracZcomp-11.native view

file too large to diff

+ test/roundtrip/mfracZcomp-12.native view

file too large to diff

+ test/roundtrip/mfracZcomp-13.native view

file too large to diff

+ test/roundtrip/mfracZcomp-14.native view

file too large to diff

+ test/roundtrip/mfracZcomp-15.native view

file too large to diff

+ test/roundtrip/mfracZcomp-16.native view

file too large to diff

+ test/roundtrip/mfracZcomp-17.native view

file too large to diff

+ test/roundtrip/mfracZcomp-18.native view

file too large to diff

+ test/roundtrip/mfracZcomp-19.native view

file too large to diff

+ test/roundtrip/mfracZcomp-20.native view

file too large to diff

+ test/roundtrip/mfracZcomp-21.native view

file too large to diff

+ test/roundtrip/mfracZcomp-22.native view

file too large to diff

+ test/roundtrip/mfracZcomp-23.native view

file too large to diff

+ test/roundtrip/mfracZcomp-24.native view

file too large to diff

+ test/roundtrip/mfracZcomp-25.native view

file too large to diff

+ test/roundtrip/mfracZcomp-26.native view

file too large to diff

+ test/roundtrip/mfracZcomp-28.native view

file too large to diff

+ test/roundtrip/mfracZcomp-29.native view

file too large to diff

+ test/roundtrip/mfracZcomp-30.native view

file too large to diff

+ test/roundtrip/mfracZcomp-31.native view

file too large to diff

+ test/roundtrip/mfracZcomp-32.native view

file too large to diff

+ test/roundtrip/mfracZcomp-33.native view

file too large to diff

+ test/roundtrip/mi1.native view

file too large to diff

+ test/roundtrip/mi2.native view

file too large to diff

+ test/roundtrip/mi3.native view

file too large to diff

+ test/roundtrip/mi4.native view

file too large to diff

+ test/roundtrip/miAtoken5.native view

file too large to diff

+ test/roundtrip/miSfonts8.native view

file too large to diff

+ test/roundtrip/miSfontsize9.native view

file too large to diff

+ test/roundtrip/miSmathsize16.native view

file too large to diff

+ test/roundtrip/miSmathsize17.native view

file too large to diff

+ test/roundtrip/miStoken10.native view

file too large to diff

+ test/roundtrip/mid1.native view

file too large to diff

+ test/roundtrip/mid2.native view

file too large to diff

+ test/roundtrip/miequivalents11.native view

file too large to diff

+ test/roundtrip/mifontstyle12.native view

file too large to diff

+ test/roundtrip/mimathvariant13.native view

file too large to diff

+ test/roundtrip/mimathvariant14.native view

file too large to diff

+ test/roundtrip/mlabeledtrAside1.native view

file too large to diff

+ test/roundtrip/mlabeledtrAside2.native view

file too large to diff

+ test/roundtrip/mn1.native view

file too large to diff

+ test/roundtrip/mn2.native view

file too large to diff

+ test/roundtrip/mn3.native view

file too large to diff

+ test/roundtrip/mn4.native view

file too large to diff

+ test/roundtrip/mnAtoken6.native view

file too large to diff

+ test/roundtrip/mnAtoken7.native view

file too large to diff

+ test/roundtrip/mnSdisplaystyle9.native view

file too large to diff

+ test/roundtrip/mnSfont10.native view

file too large to diff

+ test/roundtrip/mnSscriptlevel11.native view

file too large to diff

+ test/roundtrip/mo1.native view

file too large to diff

+ test/roundtrip/mo3.native view

file too large to diff

+ test/roundtrip/mo6.native view

file too large to diff

+ test/roundtrip/mo7.native view

file too large to diff

+ test/roundtrip/moAaccent10.native view

file too large to diff

+ test/roundtrip/moAaccent9.native view

file too large to diff

+ test/roundtrip/moAform11.native view

file too large to diff

+ test/roundtrip/moAlargeop12.native view

file too large to diff

+ test/roundtrip/moAlrspace13.native view

file too large to diff

+ test/roundtrip/moAmovable15.native view

file too large to diff

+ test/roundtrip/moAprime16.native view

file too large to diff

+ test/roundtrip/moAsep17.native view

file too large to diff

+ test/roundtrip/moAstretchy18.native view

file too large to diff

+ test/roundtrip/moAsymmetric19.native view

file too large to diff

+ test/roundtrip/moSminmax20.native view

file too large to diff

+ test/roundtrip/monospace.native view

file too large to diff

+ test/roundtrip/moore_determinant.native view

file too large to diff

+ test/roundtrip/mover-01.native view

file too large to diff

+ test/roundtrip/mover-02.native view

file too large to diff

+ test/roundtrip/mover-03.native view

file too large to diff

+ test/roundtrip/mover-04.native view

file too large to diff

+ test/roundtrip/mover-05.native view

file too large to diff

+ test/roundtrip/mover-06.native view

file too large to diff

+ test/roundtrip/mover-07.native view

file too large to diff

+ test/roundtrip/mover-08.native view

file too large to diff

+ test/roundtrip/mover-09.native view

file too large to diff

+ test/roundtrip/mover-10.native view

file too large to diff

+ test/roundtrip/mover-11.native view

file too large to diff

+ test/roundtrip/mover-12.native view

file too large to diff

+ test/roundtrip/mover1.native view

file too large to diff

+ test/roundtrip/mover2.native view

file too large to diff

+ test/roundtrip/mover3.native view

file too large to diff

+ test/roundtrip/mover4.native view

file too large to diff

+ test/roundtrip/mover5.native view

file too large to diff

+ test/roundtrip/mover6.native view

file too large to diff

+ test/roundtrip/mover7.native view

file too large to diff

+ test/roundtrip/mover8.native view

file too large to diff

+ test/roundtrip/mover9.native view

file too large to diff

+ test/roundtrip/mphantomB1.native view

file too large to diff

+ test/roundtrip/mphantomBinferred2.native view

file too large to diff

+ test/roundtrip/mphantomBoperators3.native view

file too large to diff

+ test/roundtrip/mphantomSinheritance5.native view

file too large to diff

+ test/roundtrip/mrootB1.native view

file too large to diff

+ test/roundtrip/mrootSfonts3.native view

file too large to diff

+ test/roundtrip/mrootSscriptlevel4.native view

file too large to diff

+ test/roundtrip/mrow-01.native view

file too large to diff

+ test/roundtrip/mrow-02.native view

file too large to diff

+ test/roundtrip/mrow1.native view

file too large to diff

+ test/roundtrip/mrowAbg4.native view

file too large to diff

+ test/roundtrip/mrowBinferred2.native view

file too large to diff

+ test/roundtrip/ms-12.native view

file too large to diff

+ test/roundtrip/ms-14.native view

file too large to diff

+ test/roundtrip/ms-15.native view

file too large to diff

+ test/roundtrip/ms-16.native view

file too large to diff

+ test/roundtrip/ms1.native view

file too large to diff

+ test/roundtrip/msAdisplaystyle2.native view

file too large to diff

+ test/roundtrip/msAquotes3.native view

file too large to diff

+ test/roundtrip/msAtoken4.native view

file too large to diff

+ test/roundtrip/msAtoken5.native view

file too large to diff

+ test/roundtrip/msSinheritance7.native view

file too large to diff

+ test/roundtrip/msSinheritance8.native view

file too large to diff

+ test/roundtrip/mspace-01.native view

file too large to diff

+ test/roundtrip/mspace-02.native view

file too large to diff

+ test/roundtrip/mspace-03.native view

file too large to diff

+ test/roundtrip/mspace-04.native view

file too large to diff

+ test/roundtrip/mspace1.native view

file too large to diff

+ test/roundtrip/mspace2.native view

file too large to diff

+ test/roundtrip/mspaceAbreak3.native view

file too large to diff

+ test/roundtrip/mspacestruts2.native view

file too large to diff

+ test/roundtrip/msqrt-01.native view

file too large to diff

+ test/roundtrip/msqrt-02.native view

file too large to diff

+ test/roundtrip/msqrt-03.native view

file too large to diff

+ test/roundtrip/msqrt-04.native view

file too large to diff

+ test/roundtrip/msqrt-05.native view

file too large to diff

+ test/roundtrip/msqrt-06.native view

file too large to diff

+ test/roundtrip/msqrt-07.native view

file too large to diff

+ test/roundtrip/msqrt-08.native view

file too large to diff

+ test/roundtrip/msqrt5.native view

file too large to diff

+ test/roundtrip/msqrtB7.native view

file too large to diff

+ test/roundtrip/msqrtBimplied8.native view

file too large to diff

+ test/roundtrip/msqrtSinheritance9.native view

file too large to diff

+ test/roundtrip/mstyle1.native view

file too large to diff

+ test/roundtrip/mstyleA2.native view

file too large to diff

+ test/roundtrip/mstyleAdep1.native view

file too large to diff

+ test/roundtrip/mstyleAlinethick1.native view

file too large to diff

+ test/roundtrip/mstyleAminscript1.native view

file too large to diff

+ test/roundtrip/mstyleAscriptlevel1.native view

file too large to diff

+ test/roundtrip/msub-01.native view

file too large to diff

+ test/roundtrip/msub-02.native view

file too large to diff

+ test/roundtrip/msub-03.native view

file too large to diff

+ test/roundtrip/msub-04.native view

file too large to diff

+ test/roundtrip/msub-05.native view

file too large to diff

+ test/roundtrip/msub-06.native view

file too large to diff

+ test/roundtrip/msub-07.native view

file too large to diff

+ test/roundtrip/msub-08.native view

file too large to diff

+ test/roundtrip/msub-09.native view

file too large to diff

+ test/roundtrip/msub-10.native view

file too large to diff

+ test/roundtrip/msub-11.native view

file too large to diff

+ test/roundtrip/msub-12.native view

file too large to diff

+ test/roundtrip/msub1.native view

file too large to diff

+ test/roundtrip/msubsup-01.native view

file too large to diff

+ test/roundtrip/msubsup-02.native view

file too large to diff

+ test/roundtrip/msubsup-03.native view

file too large to diff

+ test/roundtrip/msubsup-04.native view

file too large to diff

+ test/roundtrip/msubsup-05.native view

file too large to diff

+ test/roundtrip/msubsup-06.native view

file too large to diff

+ test/roundtrip/msubsup-07.native view

file too large to diff

+ test/roundtrip/msubsup-08.native view

file too large to diff

+ test/roundtrip/msubsup-09.native view

file too large to diff

+ test/roundtrip/msubsup-10.native view

file too large to diff

+ test/roundtrip/msubsup-11.native view

file too large to diff

+ test/roundtrip/msubsup-12.native view

file too large to diff

+ test/roundtrip/msubsup1.native view

file too large to diff

+ test/roundtrip/msubsupBsize1.native view

file too large to diff

+ test/roundtrip/msubsupBsize2.native view

file too large to diff

+ test/roundtrip/msup-01.native view

file too large to diff

+ test/roundtrip/msup-02.native view

file too large to diff

+ test/roundtrip/msup-03.native view

file too large to diff

+ test/roundtrip/msup-04.native view

file too large to diff

+ test/roundtrip/msup-05.native view

file too large to diff

+ test/roundtrip/msup-06.native view

file too large to diff

+ test/roundtrip/msup-07.native view

file too large to diff

+ test/roundtrip/msup-08.native view

file too large to diff

+ test/roundtrip/msup-09.native view

file too large to diff

+ test/roundtrip/msup-10.native view

file too large to diff

+ test/roundtrip/msup-11.native view

file too large to diff

+ test/roundtrip/msup-12.native view

file too large to diff

+ test/roundtrip/msup1.native view

file too large to diff

+ test/roundtrip/msup2.native view

file too large to diff

+ test/roundtrip/msupBnest1.native view

file too large to diff

+ test/roundtrip/msupBsize1.native view

file too large to diff

+ test/roundtrip/msupBsize2.native view

file too large to diff

+ test/roundtrip/msupBsize3.native view

file too large to diff

+ test/roundtrip/msupSadvance1.native view

file too large to diff

+ test/roundtrip/mtable-01.native view

file too large to diff

+ test/roundtrip/mtable-05.native view

file too large to diff

+ test/roundtrip/mtable-07.native view

file too large to diff

+ test/roundtrip/mtable-08.native view

file too large to diff

+ test/roundtrip/mtable-09.native view

file too large to diff

+ test/roundtrip/mtable-11.native view

file too large to diff

+ test/roundtrip/mtable-13.native view

file too large to diff

+ test/roundtrip/mtable-15.native view

file too large to diff

+ test/roundtrip/mtable2.native view

file too large to diff

+ test/roundtrip/mtableAalign1.native view

file too large to diff

+ test/roundtrip/mtableAalign2.native view

file too large to diff

+ test/roundtrip/mtableAalign3.native view

file too large to diff

+ test/roundtrip/mtableAgroupalign.native view

file too large to diff

+ test/roundtrip/mtableAwidth2.native view

file too large to diff

+ test/roundtrip/mtableAwidth4.native view

file too large to diff

+ test/roundtrip/mtableBgap1.native view

file too large to diff

+ test/roundtrip/mtableBsize2.native view

file too large to diff

+ test/roundtrip/mtableBspan3.native view

file too large to diff

+ test/roundtrip/mtext2.native view

file too large to diff

+ test/roundtrip/mtextAtoken3.native view

file too large to diff

+ test/roundtrip/mtextSbg4.native view

file too large to diff

+ test/roundtrip/mtextspaces7.native view

file too large to diff

+ test/roundtrip/munder-01.native view

file too large to diff

+ test/roundtrip/munder-02.native view

file too large to diff

+ test/roundtrip/munder-03.native view

file too large to diff

+ test/roundtrip/munder-04.native view

file too large to diff

+ test/roundtrip/munder-05.native view

file too large to diff

+ test/roundtrip/munder-06.native view

file too large to diff

+ test/roundtrip/munder-07.native view

file too large to diff

+ test/roundtrip/munder-08.native view

file too large to diff

+ test/roundtrip/munder-09.native view

file too large to diff

+ test/roundtrip/munder-10.native view

file too large to diff

+ test/roundtrip/munder-11.native view

file too large to diff

+ test/roundtrip/munder-12.native view

file too large to diff

+ test/roundtrip/munder1.native view

file too large to diff

+ test/roundtrip/munder2.native view

file too large to diff

+ test/roundtrip/munder3.native view

file too large to diff

+ test/roundtrip/munder4.native view

file too large to diff

+ test/roundtrip/munder5.native view

file too large to diff

+ test/roundtrip/munder6.native view

file too large to diff

+ test/roundtrip/munder7.native view

file too large to diff

+ test/roundtrip/munder8.native view

file too large to diff

+ test/roundtrip/munder9.native view

file too large to diff

+ test/roundtrip/munderover-01.native view

file too large to diff

+ test/roundtrip/munderover-02.native view

file too large to diff

+ test/roundtrip/munderover-03.native view

file too large to diff

+ test/roundtrip/munderover-04.native view

file too large to diff

+ test/roundtrip/munderover-05.native view

file too large to diff

+ test/roundtrip/munderover-06.native view

file too large to diff

+ test/roundtrip/munderover-07.native view

file too large to diff

+ test/roundtrip/munderover-08.native view

file too large to diff

+ test/roundtrip/munderover-09.native view

file too large to diff

+ test/roundtrip/munderover-10.native view

file too large to diff

+ test/roundtrip/munderover-11.native view

file too large to diff

+ test/roundtrip/munderover-12.native view

file too large to diff

+ test/roundtrip/n.native view

file too large to diff

+ test/roundtrip/nestAction1.native view

file too large to diff

+ test/roundtrip/nestFrac1.native view

file too large to diff

+ test/roundtrip/nestScript.native view

file too large to diff

+ test/roundtrip/nestTable1.native view

file too large to diff

+ test/roundtrip/nestedAwidth1.native view

file too large to diff

+ test/roundtrip/notin.native view

file too large to diff

+ test/roundtrip/o.native view

file too large to diff

+ test/roundtrip/oint2.native view

file too large to diff

+ test/roundtrip/operatorname.native view

file too large to diff

+ test/roundtrip/p.native view

file too large to diff

+ test/roundtrip/phantom.native view

file too large to diff

+ test/roundtrip/primes1.native view

file too large to diff

+ test/roundtrip/primes2.native view

file too large to diff

+ test/roundtrip/prod1.native view

file too large to diff

+ test/roundtrip/q.native view

file too large to diff

+ test/roundtrip/r.native view

file too large to diff

+ test/roundtrip/rec-mlabeledtr.native view

file too large to diff

+ test/roundtrip/rec-mtable1.native view

file too large to diff

+ test/roundtrip/s.native view

file too large to diff

+ test/roundtrip/sans-serif-bold-italic.native view

file too large to diff

+ test/roundtrip/sans-serif-bold.native view

file too large to diff

+ test/roundtrip/sans-serif-italic.native view

file too large to diff

+ test/roundtrip/sans-serif.native view

file too large to diff

+ test/roundtrip/schwinger_dyson.native view

file too large to diff

+ test/roundtrip/script-bold.native view

file too large to diff

+ test/roundtrip/script.native view

file too large to diff

+ test/roundtrip/semantics-01.native view

file too large to diff

+ test/roundtrip/semantics-02.native view

file too large to diff

+ test/roundtrip/serif-bold-italic.native view

file too large to diff

+ test/roundtrip/serif-bold.native view

file too large to diff

+ test/roundtrip/serif-italic.native view

file too large to diff

+ test/roundtrip/serif.native view

file too large to diff

+ test/roundtrip/simplePres.native view

file too large to diff

+ test/roundtrip/simple_sum_formula.native view

file too large to diff

+ test/roundtrip/sizeunits3.native view

file too large to diff

+ test/roundtrip/sizeunits4.native view

file too large to diff

+ test/roundtrip/sophomores_dream.native view

file too large to diff

+ test/roundtrip/span.native view

file too large to diff

+ test/roundtrip/sphere_volume.native view

file too large to diff

+ test/roundtrip/stackrel.native view

file too large to diff

+ test/roundtrip/stretchAccents1.native view

file too large to diff

+ test/roundtrip/stretchAccents2.native view

file too large to diff

+ test/roundtrip/stretchBrack1.native view

file too large to diff

+ test/roundtrip/stretchHoriz1.native view

file too large to diff

+ test/roundtrip/stretchHoriz2.native view

file too large to diff

+ test/roundtrip/stretchHoriz3.native view

file too large to diff

+ test/roundtrip/stretchTable1.native view

file too large to diff

+ test/roundtrip/stretchTable2.native view

file too large to diff

+ test/roundtrip/stretchTilde1.native view

file too large to diff

+ test/roundtrip/stretchVert1.native view

file too large to diff

+ test/roundtrip/stretchVert2.native view

file too large to diff

+ test/roundtrip/stretchVertNest2.native view

file too large to diff

+ test/roundtrip/style2.native view

file too large to diff

+ test/roundtrip/substack.native view

file too large to diff

+ test/roundtrip/subsup.native view

file too large to diff

+ test/roundtrip/sum2.native view

file too large to diff

+ test/roundtrip/t.native view

file too large to diff

+ test/roundtrip/text.native view

file too large to diff

+ test/roundtrip/tokens.native view

file too large to diff

+ test/roundtrip/tripleint1.native view

file too large to diff

+ test/roundtrip/u.native view

file too large to diff

+ test/roundtrip/unicode.native view

file too large to diff

+ test/roundtrip/v.native view

file too large to diff

+ test/roundtrip/verbar2.native view

file too large to diff

+ test/roundtrip/w.native view

file too large to diff

+ test/roundtrip/whBcomments1.native view

file too large to diff

+ test/roundtrip/white1.native view

file too large to diff

+ test/roundtrip/white10.native view

file too large to diff

+ test/roundtrip/white2.native view

file too large to diff

+ test/roundtrip/white3.native view

file too large to diff

+ test/roundtrip/white4.native view

file too large to diff

+ test/roundtrip/white5.native view

file too large to diff

+ test/roundtrip/white6.native view

file too large to diff

+ test/roundtrip/white7.native view

file too large to diff

+ test/roundtrip/white8.native view

file too large to diff

+ test/roundtrip/white9.native view

file too large to diff

+ test/roundtrip/x.native view

file too large to diff

+ test/roundtrip/xref1.native view

file too large to diff

+ test/roundtrip/y.native view

file too large to diff

+ test/roundtrip/z.native view

file too large to diff

+ test/test-texmath.hs view

file too large to diff

+ test/writer/eqn/00000_C0_Controls_and_Basic_Latin.test view

file too large to diff

+ test/writer/eqn/00080_C1_Controls_and_Latin-1_Supplement.test view

file too large to diff

+ test/writer/eqn/00100_Latin_Extended-A.test view

file too large to diff

+ test/writer/eqn/00180_Latin_Extended-B.test view

file too large to diff

+ test/writer/eqn/00250_IPA_Extensions.test view

file too large to diff

+ test/writer/eqn/002B0_Spacing_Modifier_Letters.test view

file too large to diff

+ test/writer/eqn/00300_Combining_Diacritical_Marks.test view

file too large to diff

+ test/writer/eqn/00370_Greek_and_Coptic.test view

file too large to diff

+ test/writer/eqn/00400_Cyrillic.test view

file too large to diff

+ test/writer/eqn/01.test view

file too large to diff

+ test/writer/eqn/01E00_Latin_Extended_Additional.test view

file too large to diff

+ test/writer/eqn/01F00_Greek_Extended.test view

file too large to diff

+ test/writer/eqn/02.test view

file too large to diff

+ test/writer/eqn/02000_General_Punctuation.test view

file too large to diff

+ test/writer/eqn/02070_Superscripts_and_Subscripts.test view

file too large to diff

+ test/writer/eqn/020A0_Currency_Symbols.test view

file too large to diff

+ test/writer/eqn/020D0_Combining_Diacritical_Marks_for_Symbols.test view

file too large to diff

+ test/writer/eqn/02100_Letterlike_Symbols.test view

file too large to diff

+ test/writer/eqn/02150_Number_Forms.test view

file too large to diff

+ test/writer/eqn/02190_Arrows.test view

file too large to diff

+ test/writer/eqn/02200_Mathematical_Operators.test view

file too large to diff

+ test/writer/eqn/02300_Miscellaneous_Technical.test view

file too large to diff

+ test/writer/eqn/02400_Control_Pictures.test view

file too large to diff

+ test/writer/eqn/02440_Optical_Character_Recognition.test view

file too large to diff

+ test/writer/eqn/02460_Enclosed_Alphanumerics.test view

file too large to diff

+ test/writer/eqn/02500_Box_Drawing.test view

file too large to diff

+ test/writer/eqn/02580_Block_Elements.test view

file too large to diff

+ test/writer/eqn/025A0_Geometric_Shapes.test view

file too large to diff

+ test/writer/eqn/02600_Miscellaneous_Symbols.test view

file too large to diff

+ test/writer/eqn/02700_Dingbats.test view

file too large to diff

+ test/writer/eqn/027C0_Miscellaneous_Mathematical_Symbols-A.test view

file too large to diff

+ test/writer/eqn/027F0_Supplemental_Arrows-A.test view

file too large to diff

+ test/writer/eqn/02900_Supplemental_Arrows-B.test view

file too large to diff

+ test/writer/eqn/02980_Miscellaneous_Mathematical_Symbols-B.test view

file too large to diff

+ test/writer/eqn/02A00_Supplemental_Mathematical_Operators.test view

file too large to diff

+ test/writer/eqn/02B00_Miscellaneous_Symbols_and_Arrows.test view

file too large to diff

+ test/writer/eqn/03.test view

file too large to diff

+ test/writer/eqn/04.test view

file too large to diff

+ test/writer/eqn/05.test view

file too large to diff

+ test/writer/eqn/06.test view

file too large to diff

+ test/writer/eqn/07.test view

file too large to diff

+ test/writer/eqn/08.test view

file too large to diff

+ test/writer/eqn/09.test view

file too large to diff

+ test/writer/eqn/0FB00_Alphabetic_Presentation_Forms.test view

file too large to diff

+ test/writer/eqn/0FB50_Arabic_Presentation_Forms-A.test view

file too large to diff

+ test/writer/eqn/0FE00_Variation_Selectors.test view

file too large to diff

+ test/writer/eqn/0FE10_Vertical_Forms.test view

file too large to diff

+ test/writer/eqn/0FE20_Combining_Half_Marks.test view

file too large to diff

+ test/writer/eqn/0FE30_CJK_Compatibility_Forms.test view

file too large to diff

+ test/writer/eqn/0FE50_Small_Form_Variants.test view

file too large to diff

+ test/writer/eqn/0FE70_Arabic_Presentation_Forms-B.test view

file too large to diff

+ test/writer/eqn/10.test view

file too large to diff

+ test/writer/eqn/11.test view

file too large to diff

+ test/writer/eqn/12.test view

file too large to diff

+ test/writer/eqn/13.test view

file too large to diff

+ test/writer/eqn/14.test view

file too large to diff

+ test/writer/eqn/15.test view

file too large to diff

+ test/writer/eqn/16.test view

file too large to diff

+ test/writer/eqn/17.test view

file too large to diff

+ test/writer/eqn/18.test view

file too large to diff

+ test/writer/eqn/19.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_bold.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_italic.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_monospace.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test view

file too large to diff

+ test/writer/eqn/1D400_Mathematical_Alphanumeric_Symbols_script.test view

file too large to diff

+ test/writer/eqn/20.test view

file too large to diff

+ test/writer/eqn/21.test view

file too large to diff

+ test/writer/eqn/22.test view

file too large to diff

+ test/writer/eqn/23.test view

file too large to diff

+ test/writer/eqn/a.test view

file too large to diff

+ test/writer/eqn/abs1.test view

file too large to diff

+ test/writer/eqn/accents1.test view

file too large to diff

+ test/writer/eqn/accents2.test view

file too large to diff

+ test/writer/eqn/accents3.test view

file too large to diff

+ test/writer/eqn/accents4.test view

file too large to diff

+ test/writer/eqn/accents5.test view

file too large to diff

+ test/writer/eqn/accents6.test view

file too large to diff

+ test/writer/eqn/attribQuote1.test view

file too large to diff

+ test/writer/eqn/axiom_of_power_set.test view

file too large to diff

+ test/writer/eqn/b.test view

file too large to diff

+ test/writer/eqn/badAttribs2.test view

file too large to diff

+ test/writer/eqn/badAttribsGlyph4.test view

file too large to diff

+ test/writer/eqn/badAttribsVal3.test view

file too large to diff

+ test/writer/eqn/badEntity1.test view

file too large to diff

+ test/writer/eqn/binomial_coefficient.test view

file too large to diff

+ test/writer/eqn/boxed.test view

file too large to diff

+ test/writer/eqn/c.test view

file too large to diff

+ test/writer/eqn/cancel.test view

file too large to diff

+ test/writer/eqn/chain2.test view

file too large to diff

+ test/writer/eqn/choose.test view

file too large to diff

+ test/writer/eqn/class2.test view

file too large to diff

+ test/writer/eqn/clipboard1.test view

file too large to diff

+ test/writer/eqn/clipboard2.test view

file too large to diff

+ test/writer/eqn/complex1.test view

file too large to diff

+ test/writer/eqn/complex2.test view

file too large to diff

+ test/writer/eqn/complex3.test view

file too large to diff

+ test/writer/eqn/complex_number.test view

file too large to diff

+ test/writer/eqn/coprod2.test view

file too large to diff

+ test/writer/eqn/cospan.test view

file too large to diff

+ test/writer/eqn/d.test view

file too large to diff

+ test/writer/eqn/deMorgans_law.test view

file too large to diff

+ test/writer/eqn/differentiable_manifold.test view

file too large to diff

+ test/writer/eqn/digamma.test view

file too large to diff

+ test/writer/eqn/digit-bold.test view

file too large to diff

+ test/writer/eqn/digit-double-struck.test view

file too large to diff

+ test/writer/eqn/digit-monospace.test view

file too large to diff

+ test/writer/eqn/digit-sans-serif-bold.test view

file too large to diff

+ test/writer/eqn/digit-sans-serif.test view

file too large to diff

+ test/writer/eqn/divergence.test view

file too large to diff

+ test/writer/eqn/dotless.test view

file too large to diff

+ test/writer/eqn/double-struck.test view

file too large to diff

+ test/writer/eqn/doubleint1.test view

file too large to diff

+ test/writer/eqn/e.test view

file too large to diff

+ test/writer/eqn/embStretch1.test view

file too large to diff

+ test/writer/eqn/emptyContent1.test view

file too large to diff

+ test/writer/eqn/ensuremath.test view

file too large to diff

+ test/writer/eqn/f.test view

file too large to diff

+ test/writer/eqn/fraktur-bold.test view

file too large to diff

+ test/writer/eqn/fraktur.test view

file too large to diff

+ test/writer/eqn/g.test view

file too large to diff

+ test/writer/eqn/genBvert1.test view

file too large to diff

+ test/writer/eqn/genfrac.test view

file too large to diff

+ test/writer/eqn/greek-bold-italic.test view

file too large to diff

+ test/writer/eqn/greek-bold.test view

file too large to diff

+ test/writer/eqn/greek-italic.test view

file too large to diff

+ test/writer/eqn/greek-sans-serif-bold-italic.test view

file too large to diff

+ test/writer/eqn/greek-sans-serif-bold.test view

file too large to diff

+ test/writer/eqn/h.test view

file too large to diff

+ test/writer/eqn/href1.test view

file too large to diff

+ test/writer/eqn/href2.test view

file too large to diff

+ test/writer/eqn/href3.test view

file too large to diff

+ test/writer/eqn/i.test view

file too large to diff

+ test/writer/eqn/int1.test view

file too large to diff

+ test/writer/eqn/int4.test view

file too large to diff

+ test/writer/eqn/int6.test view

file too large to diff

+ test/writer/eqn/int7.test view

file too large to diff

+ test/writer/eqn/int9.test view

file too large to diff

+ test/writer/eqn/intDispStyle.test view

file too large to diff

+ test/writer/eqn/intNested3.test view

file too large to diff

+ test/writer/eqn/intSize1.test view

file too large to diff

+ test/writer/eqn/intSize2.test view

file too large to diff

+ test/writer/eqn/invChars.test view

file too large to diff

+ test/writer/eqn/issue109.test view

file too large to diff

+ test/writer/eqn/j.test view

file too large to diff

+ test/writer/eqn/k.test view

file too large to diff

+ test/writer/eqn/l.test view

file too large to diff

+ test/writer/eqn/labels.test view

file too large to diff

+ test/writer/eqn/largeop1.test view

file too large to diff

+ test/writer/eqn/largeop2.test view

file too large to diff

+ test/writer/eqn/largeopPos3.test view

file too large to diff

+ test/writer/eqn/latin-bold-italic.test view

file too large to diff

+ test/writer/eqn/latin-bold.test view

file too large to diff

+ test/writer/eqn/latin-italic.test view

file too large to diff

+ test/writer/eqn/latin-sans-serif-bold-italic.test view

file too large to diff

+ test/writer/eqn/latin-sans-serif-bold.test view

file too large to diff

+ test/writer/eqn/latin-sans-serif-italic.test view

file too large to diff

+ test/writer/eqn/latin-sans-serif.test view

file too large to diff

+ test/writer/eqn/m.test view

file too large to diff

+ test/writer/eqn/m10.test view

file too large to diff

+ test/writer/eqn/m100.test view

file too large to diff

+ test/writer/eqn/m1000.test view

file too large to diff

+ test/writer/eqn/macros.test view

file too large to diff

+ test/writer/eqn/maction-01.test view

file too large to diff

+ test/writer/eqn/maction-02.test view

file too large to diff

+ test/writer/eqn/maction-03.test view

file too large to diff

+ test/writer/eqn/maction-04.test view

file too large to diff

+ test/writer/eqn/maction-05.test view

file too large to diff

+ test/writer/eqn/maction-06.test view

file too large to diff

+ test/writer/eqn/maction-07.test view

file too large to diff

+ test/writer/eqn/maction-08.test view

file too large to diff

+ test/writer/eqn/mactionBstatus1.test view

file too large to diff

+ test/writer/eqn/mactionBtoggle1.test view

file too large to diff

+ test/writer/eqn/mactionBtooltip1.test view

file too large to diff

+ test/writer/eqn/maligngroup1.test view

file too large to diff

+ test/writer/eqn/math-in-text.test view

file too large to diff

+ test/writer/eqn/math3.test view

file too large to diff

+ test/writer/eqn/mathAdisplay1.test view

file too large to diff

+ test/writer/eqn/mathBevelledFrac.test view

file too large to diff

+ test/writer/eqn/mathTable1.test view

file too large to diff

+ test/writer/eqn/merrorB3.test view

file too large to diff

+ test/writer/eqn/mfenced-01.test view

file too large to diff

+ test/writer/eqn/mfenced-02.test view

file too large to diff

+ test/writer/eqn/mfenced-03.test view

file too large to diff

+ test/writer/eqn/mfenced-04.test view

file too large to diff

+ test/writer/eqn/mfenced-05.test view

file too large to diff

+ test/writer/eqn/mfenced-06.test view

file too large to diff

+ test/writer/eqn/mfenced-07.test view

file too large to diff

+ test/writer/eqn/mfenced-08.test view

file too large to diff

+ test/writer/eqn/mfenced1.test view

file too large to diff

+ test/writer/eqn/mfenced5.test view

file too large to diff

+ test/writer/eqn/mfencedAdelims6.test view

file too large to diff

+ test/writer/eqn/mfencedAempty.test view

file too large to diff

+ test/writer/eqn/mfencedBfences7.test view

file too large to diff

+ test/writer/eqn/mfencedBseparators8.test view

file too large to diff

+ test/writer/eqn/mfencedSfonts9.test view

file too large to diff

+ test/writer/eqn/mfrac-01.test view

file too large to diff

+ test/writer/eqn/mfrac-02.test view

file too large to diff

+ test/writer/eqn/mfrac-03.test view

file too large to diff

+ test/writer/eqn/mfrac-04.test view

file too large to diff

+ test/writer/eqn/mfrac-05.test view

file too large to diff

+ test/writer/eqn/mfrac-06.test view

file too large to diff

+ test/writer/eqn/mfrac-07.test view

file too large to diff

+ test/writer/eqn/mfrac-08.test view

file too large to diff

+ test/writer/eqn/mfrac-09.test view

file too large to diff

+ test/writer/eqn/mfrac-10.test view

file too large to diff

+ test/writer/eqn/mfrac-11.test view

file too large to diff

+ test/writer/eqn/mfrac-12.test view

file too large to diff

+ test/writer/eqn/mfrac1.test view

file too large to diff

+ test/writer/eqn/mfrac2.test view

file too large to diff

+ test/writer/eqn/mfrac3.test view

file too large to diff

+ test/writer/eqn/mfrac4.test view

file too large to diff

+ test/writer/eqn/mfrac7.test view

file too large to diff

+ test/writer/eqn/mfracAcss8.test view

file too large to diff

+ test/writer/eqn/mfracAmultiplier10.test view

file too large to diff

+ test/writer/eqn/mfracBalign16.test view

file too large to diff

+ test/writer/eqn/mfracBheight17.test view

file too large to diff

+ test/writer/eqn/mfracBhoriz11.test view

file too large to diff

+ test/writer/eqn/mfracBvert12.test view

file too large to diff

+ test/writer/eqn/mfracSfonts13.test view

file too large to diff

+ test/writer/eqn/mfracSinheritance14.test view

file too large to diff

+ test/writer/eqn/mfracSscriptlevel15.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-01.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-02.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-03.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-04.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-05.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-06.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-07.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-08.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-09.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-10.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-11.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-12.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-13.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-14.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-15.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-16.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-17.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-18.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-19.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-20.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-21.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-22.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-23.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-24.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-25.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-26.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-28.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-29.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-30.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-31.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-32.test view

file too large to diff

+ test/writer/eqn/mfracZcomp-33.test view

file too large to diff

+ test/writer/eqn/mi1.test view

file too large to diff

+ test/writer/eqn/mi2.test view

file too large to diff

+ test/writer/eqn/mi3.test view

file too large to diff

+ test/writer/eqn/mi4.test view

file too large to diff

+ test/writer/eqn/miAtoken5.test view

file too large to diff

+ test/writer/eqn/miSfonts8.test view

file too large to diff

+ test/writer/eqn/miSfontsize9.test view

file too large to diff

+ test/writer/eqn/miSmathsize16.test view

file too large to diff

+ test/writer/eqn/miSmathsize17.test view

file too large to diff

+ test/writer/eqn/miStoken10.test view

file too large to diff

+ test/writer/eqn/mid1.test view

file too large to diff

+ test/writer/eqn/mid2.test view

file too large to diff

+ test/writer/eqn/miequivalents11.test view

file too large to diff

+ test/writer/eqn/mifontstyle12.test view

file too large to diff

+ test/writer/eqn/mimathvariant13.test view

file too large to diff

+ test/writer/eqn/mimathvariant14.test view

file too large to diff

+ test/writer/eqn/mlabeledtrAside2.test view

file too large to diff

+ test/writer/eqn/mn1.test view

file too large to diff

+ test/writer/eqn/mn2.test view

file too large to diff

+ test/writer/eqn/mn3.test view

file too large to diff

+ test/writer/eqn/mn4.test view

file too large to diff

+ test/writer/eqn/mnAtoken6.test view

file too large to diff

+ test/writer/eqn/mnAtoken7.test view

file too large to diff

+ test/writer/eqn/mnSdisplaystyle9.test view

file too large to diff

+ test/writer/eqn/mnSfont10.test view

file too large to diff

+ test/writer/eqn/mnSscriptlevel11.test view

file too large to diff

+ test/writer/eqn/mo1.test view

file too large to diff

+ test/writer/eqn/mo2.test view

file too large to diff

+ test/writer/eqn/mo3.test view

file too large to diff

+ test/writer/eqn/mo6.test view

file too large to diff

+ test/writer/eqn/mo7.test view

file too large to diff

+ test/writer/eqn/moAaccent10.test view

file too large to diff

+ test/writer/eqn/moAaccent9.test view

file too large to diff

+ test/writer/eqn/moAform11.test view

file too large to diff

+ test/writer/eqn/moAlargeop12.test view

file too large to diff

+ test/writer/eqn/moAlrspace13.test view

file too large to diff

+ test/writer/eqn/moAmovable15.test view

file too large to diff

+ test/writer/eqn/moAprime16.test view

file too large to diff

+ test/writer/eqn/moAsep17.test view

file too large to diff

+ test/writer/eqn/moAstretchy18.test view

file too large to diff

+ test/writer/eqn/moAsymmetric19.test view

file too large to diff

+ test/writer/eqn/moSminmax20.test view

file too large to diff

+ test/writer/eqn/monospace.test view

file too large to diff

+ test/writer/eqn/moore_determinant.test view

file too large to diff

+ test/writer/eqn/mover-01.test view

file too large to diff

+ test/writer/eqn/mover-02.test view

file too large to diff

+ test/writer/eqn/mover-03.test view

file too large to diff

+ test/writer/eqn/mover-04.test view

file too large to diff

+ test/writer/eqn/mover-05.test view

file too large to diff

+ test/writer/eqn/mover-06.test view

file too large to diff

+ test/writer/eqn/mover-07.test view

file too large to diff

+ test/writer/eqn/mover-08.test view

file too large to diff

+ test/writer/eqn/mover-09.test view

file too large to diff

+ test/writer/eqn/mover-10.test view

file too large to diff

+ test/writer/eqn/mover-11.test view

file too large to diff

+ test/writer/eqn/mover-12.test view

file too large to diff

+ test/writer/eqn/mover1.test view

file too large to diff

+ test/writer/eqn/mover2.test view

file too large to diff

+ test/writer/eqn/mover3.test view

file too large to diff

+ test/writer/eqn/mover4.test view

file too large to diff

+ test/writer/eqn/mover5.test view

file too large to diff

+ test/writer/eqn/mover6.test view

file too large to diff

+ test/writer/eqn/mover7.test view

file too large to diff

+ test/writer/eqn/mover8.test view

file too large to diff

+ test/writer/eqn/mover9.test view

file too large to diff

+ test/writer/eqn/mphantomB1.test view

file too large to diff

+ test/writer/eqn/mphantomBinferred2.test view

file too large to diff

+ test/writer/eqn/mphantomBoperators3.test view

file too large to diff

+ test/writer/eqn/mphantomSinheritance5.test view

file too large to diff

+ test/writer/eqn/mrootB1.test view

file too large to diff

+ test/writer/eqn/mrootSfonts3.test view

file too large to diff

+ test/writer/eqn/mrootSscriptlevel4.test view

file too large to diff

+ test/writer/eqn/mrow-01.test view

file too large to diff

+ test/writer/eqn/mrow-02.test view

file too large to diff

+ test/writer/eqn/mrowAbg4.test view

file too large to diff

+ test/writer/eqn/mrowBinferred2.test view

file too large to diff

+ test/writer/eqn/ms-13.test view

file too large to diff

+ test/writer/eqn/ms-14.test view

file too large to diff

+ test/writer/eqn/ms-15.test view

file too large to diff

+ test/writer/eqn/ms-16.test view

file too large to diff

+ test/writer/eqn/ms1.test view

file too large to diff

+ test/writer/eqn/msAdisplaystyle2.test view

file too large to diff

+ test/writer/eqn/msAquotes3.test view

file too large to diff

+ test/writer/eqn/msAtoken4.test view

file too large to diff

+ test/writer/eqn/msAtoken5.test view

file too large to diff

+ test/writer/eqn/msSinheritance7.test view

file too large to diff

+ test/writer/eqn/msSinheritance8.test view

file too large to diff

+ test/writer/eqn/mspace-01.test view

file too large to diff

+ test/writer/eqn/mspace-02.test view

file too large to diff

+ test/writer/eqn/mspace-03.test view

file too large to diff

+ test/writer/eqn/mspace-04.test view

file too large to diff

+ test/writer/eqn/mspace1.test view

file too large to diff

+ test/writer/eqn/mspace2.test view

file too large to diff

+ test/writer/eqn/mspaceAbreak3.test view

file too large to diff

+ test/writer/eqn/mspacestruts2.test view

file too large to diff

+ test/writer/eqn/msqrt-01.test view

file too large to diff

+ test/writer/eqn/msqrt-02.test view

file too large to diff

+ test/writer/eqn/msqrt-03.test view

file too large to diff

+ test/writer/eqn/msqrt-04.test view

file too large to diff

+ test/writer/eqn/msqrt-05.test view

file too large to diff

+ test/writer/eqn/msqrt-06.test view

file too large to diff

+ test/writer/eqn/msqrt-07.test view

file too large to diff

+ test/writer/eqn/msqrt-08.test view

file too large to diff

+ test/writer/eqn/msqrt5.test view

file too large to diff

+ test/writer/eqn/msqrtB7.test view

file too large to diff

+ test/writer/eqn/msqrtBimplied8.test view

file too large to diff

+ test/writer/eqn/msqrtSinheritance9.test view

file too large to diff

+ test/writer/eqn/mstyle1.test view

file too large to diff

+ test/writer/eqn/mstyleA2.test view

file too large to diff

+ test/writer/eqn/mstyleAlinethick1.test view

file too large to diff

+ test/writer/eqn/mstyleAminscript1.test view

file too large to diff

+ test/writer/eqn/mstyleAscriptlevel1.test view

file too large to diff

+ test/writer/eqn/msub-01.test view

file too large to diff

+ test/writer/eqn/msub-02.test view

file too large to diff

+ test/writer/eqn/msub-03.test view

file too large to diff

+ test/writer/eqn/msub-04.test view

file too large to diff

+ test/writer/eqn/msub-05.test view

file too large to diff

+ test/writer/eqn/msub-06.test view

file too large to diff

+ test/writer/eqn/msub-07.test view

file too large to diff

+ test/writer/eqn/msub-08.test view

file too large to diff

+ test/writer/eqn/msub-09.test view

file too large to diff

+ test/writer/eqn/msub-10.test view

file too large to diff

+ test/writer/eqn/msub-11.test view

file too large to diff

+ test/writer/eqn/msub-12.test view

file too large to diff

+ test/writer/eqn/msub1.test view

file too large to diff

+ test/writer/eqn/msubsup-01.test view

file too large to diff

+ test/writer/eqn/msubsup-02.test view

file too large to diff

+ test/writer/eqn/msubsup-03.test view

file too large to diff

+ test/writer/eqn/msubsup-04.test view

file too large to diff

+ test/writer/eqn/msubsup-05.test view

file too large to diff

+ test/writer/eqn/msubsup-06.test view

file too large to diff

+ test/writer/eqn/msubsup-07.test view

file too large to diff

+ test/writer/eqn/msubsup-08.test view

file too large to diff

+ test/writer/eqn/msubsup-09.test view

file too large to diff

+ test/writer/eqn/msubsup-10.test view

file too large to diff

+ test/writer/eqn/msubsup-11.test view

file too large to diff

+ test/writer/eqn/msubsup-12.test view

file too large to diff

+ test/writer/eqn/msubsup1.test view

file too large to diff

+ test/writer/eqn/msubsupBsize1.test view

file too large to diff

+ test/writer/eqn/msubsupBsize2.test view

file too large to diff

+ test/writer/eqn/msup-01.test view

file too large to diff

+ test/writer/eqn/msup-02.test view

file too large to diff

+ test/writer/eqn/msup-03.test view

file too large to diff

+ test/writer/eqn/msup-04.test view

file too large to diff

+ test/writer/eqn/msup-05.test view

file too large to diff

+ test/writer/eqn/msup-06.test view

file too large to diff

+ test/writer/eqn/msup-07.test view

file too large to diff

+ test/writer/eqn/msup-08.test view

file too large to diff

+ test/writer/eqn/msup-09.test view

file too large to diff

+ test/writer/eqn/msup-10.test view

file too large to diff

+ test/writer/eqn/msup-11.test view

file too large to diff

+ test/writer/eqn/msup-12.test view

file too large to diff

+ test/writer/eqn/msup1.test view

file too large to diff

+ test/writer/eqn/msup2.test view

file too large to diff

+ test/writer/eqn/msupBnest1.test view

file too large to diff

+ test/writer/eqn/msupBsize1.test view

file too large to diff

+ test/writer/eqn/msupBsize2.test view

file too large to diff

+ test/writer/eqn/msupBsize3.test view

file too large to diff

+ test/writer/eqn/msupSadvance1.test view

file too large to diff

+ test/writer/eqn/mtable-01.test view

file too large to diff

+ test/writer/eqn/mtable-05.test view

file too large to diff

+ test/writer/eqn/mtable-07.test view

file too large to diff

+ test/writer/eqn/mtable-08.test view

file too large to diff

+ test/writer/eqn/mtable-09.test view

file too large to diff

+ test/writer/eqn/mtable-10.test view

file too large to diff

+ test/writer/eqn/mtable-11.test view

file too large to diff

+ test/writer/eqn/mtable-16.test view

file too large to diff

+ test/writer/eqn/mtable2.test view

file too large to diff

+ test/writer/eqn/mtableAalign2.test view

file too large to diff

+ test/writer/eqn/mtableAalign3.test view

file too large to diff

+ test/writer/eqn/mtableAgroupalign.test view

file too large to diff

+ test/writer/eqn/mtableAlines2.test view

file too large to diff

+ test/writer/eqn/mtableAspacing4.test view

file too large to diff

+ test/writer/eqn/mtableAwidth2.test view

file too large to diff

+ test/writer/eqn/mtableAwidth3.test view

file too large to diff

+ test/writer/eqn/mtableBgap1.test view

file too large to diff

+ test/writer/eqn/mtableBsize2.test view

file too large to diff

+ test/writer/eqn/mtableBspan3.test view

file too large to diff

+ test/writer/eqn/mtext2.test view

file too large to diff

+ test/writer/eqn/mtextAtoken3.test view

file too large to diff

+ test/writer/eqn/mtextStoken6.test view

file too large to diff

+ test/writer/eqn/mtextspaces7.test view

file too large to diff

+ test/writer/eqn/munder-01.test view

file too large to diff

+ test/writer/eqn/munder-02.test view

file too large to diff

+ test/writer/eqn/munder-03.test view

file too large to diff

+ test/writer/eqn/munder-04.test view

file too large to diff

+ test/writer/eqn/munder-05.test view

file too large to diff

+ test/writer/eqn/munder-06.test view

file too large to diff

+ test/writer/eqn/munder-07.test view

file too large to diff

+ test/writer/eqn/munder-08.test view

file too large to diff

+ test/writer/eqn/munder-09.test view

file too large to diff

+ test/writer/eqn/munder-10.test view

file too large to diff

+ test/writer/eqn/munder-11.test view

file too large to diff

+ test/writer/eqn/munder-12.test view

file too large to diff

+ test/writer/eqn/munder1.test view

file too large to diff

+ test/writer/eqn/munder2.test view

file too large to diff

+ test/writer/eqn/munder3.test view

file too large to diff

+ test/writer/eqn/munder4.test view

file too large to diff

+ test/writer/eqn/munder5.test view

file too large to diff

+ test/writer/eqn/munder6.test view

file too large to diff

+ test/writer/eqn/munder7.test view

file too large to diff

+ test/writer/eqn/munder8.test view

file too large to diff

+ test/writer/eqn/munder9.test view

file too large to diff

+ test/writer/eqn/munderover-01.test view

file too large to diff

+ test/writer/eqn/munderover-02.test view

file too large to diff

+ test/writer/eqn/munderover-03.test view

file too large to diff

+ test/writer/eqn/munderover-04.test view

file too large to diff

+ test/writer/eqn/munderover-05.test view

file too large to diff

+ test/writer/eqn/munderover-06.test view

file too large to diff

+ test/writer/eqn/munderover-07.test view

file too large to diff

+ test/writer/eqn/munderover-08.test view

file too large to diff

+ test/writer/eqn/munderover-09.test view

file too large to diff

+ test/writer/eqn/munderover-10.test view

file too large to diff

+ test/writer/eqn/munderover-11.test view

file too large to diff

+ test/writer/eqn/munderover-12.test view

file too large to diff

+ test/writer/eqn/n.test view

file too large to diff

+ test/writer/eqn/nestAction1.test view

file too large to diff

+ test/writer/eqn/nestFrac1.test view

file too large to diff

+ test/writer/eqn/nestScript.test view

file too large to diff

+ test/writer/eqn/nestTable1.test view

file too large to diff

+ test/writer/eqn/nestedAwidth1.test view

file too large to diff

+ test/writer/eqn/notin.test view

file too large to diff

+ test/writer/eqn/o.test view

file too large to diff

+ test/writer/eqn/oint1.test view

file too large to diff

+ test/writer/eqn/operatorname.test view

file too large to diff

+ test/writer/eqn/p.test view

file too large to diff

+ test/writer/eqn/phantom.test view

file too large to diff

+ test/writer/eqn/primes1.test view

file too large to diff

+ test/writer/eqn/primes2.test view

file too large to diff

+ test/writer/eqn/prod2.test view

file too large to diff

+ test/writer/eqn/q.test view

file too large to diff

+ test/writer/eqn/r.test view

file too large to diff

+ test/writer/eqn/rec-mlabeledtr.test view

file too large to diff

+ test/writer/eqn/rec-mtable1.test view

file too large to diff

+ test/writer/eqn/rec3-mphantom-1.test view

file too large to diff

+ test/writer/eqn/s.test view

file too large to diff

+ test/writer/eqn/sans-serif-bold-italic.test view

file too large to diff

+ test/writer/eqn/sans-serif-bold.test view

file too large to diff

+ test/writer/eqn/sans-serif-italic.test view

file too large to diff

+ test/writer/eqn/sans-serif.test view

file too large to diff

+ test/writer/eqn/schwinger_dyson.test view

file too large to diff

+ test/writer/eqn/script-bold.test view

file too large to diff

+ test/writer/eqn/script.test view

file too large to diff

+ test/writer/eqn/semantics-01.test view

file too large to diff

+ test/writer/eqn/semantics-03.test view

file too large to diff

+ test/writer/eqn/serif-bold-italic.test view

file too large to diff

+ test/writer/eqn/serif-bold.test view

file too large to diff

+ test/writer/eqn/serif-italic.test view

file too large to diff

+ test/writer/eqn/serif.test view

file too large to diff

+ test/writer/eqn/simplePres.test view

file too large to diff

+ test/writer/eqn/simple_sum_formula.test view

file too large to diff

+ test/writer/eqn/sizeunits3.test view

file too large to diff

+ test/writer/eqn/sizeunits4.test view

file too large to diff

+ test/writer/eqn/sophomores_dream.test view

file too large to diff

+ test/writer/eqn/span.test view

file too large to diff

+ test/writer/eqn/sphere_volume.test view

file too large to diff

+ test/writer/eqn/stackrel.test view

file too large to diff

+ test/writer/eqn/stretchAccents1.test view

file too large to diff

+ test/writer/eqn/stretchAccents2.test view

file too large to diff

+ test/writer/eqn/stretchBrack1.test view

file too large to diff

+ test/writer/eqn/stretchHoriz1.test view

file too large to diff

+ test/writer/eqn/stretchHoriz2.test view

file too large to diff

+ test/writer/eqn/stretchHoriz3.test view

file too large to diff

+ test/writer/eqn/stretchTable1.test view

file too large to diff

+ test/writer/eqn/stretchTable2.test view

file too large to diff

+ test/writer/eqn/stretchTilde1.test view

file too large to diff

+ test/writer/eqn/stretchVert1.test view

file too large to diff

+ test/writer/eqn/stretchVert2.test view

file too large to diff

+ test/writer/eqn/stretchVertNest2.test view

file too large to diff

+ test/writer/eqn/style1.test view

file too large to diff

+ test/writer/eqn/style2.test view

file too large to diff

+ test/writer/eqn/substack.test view

file too large to diff

+ test/writer/eqn/subsup.test view

file too large to diff

+ test/writer/eqn/sum1.test view

file too large to diff

+ test/writer/eqn/t.test view

file too large to diff

+ test/writer/eqn/text.test view

file too large to diff

+ test/writer/eqn/tokens.test view

file too large to diff

+ test/writer/eqn/tripleint2.test view

file too large to diff

+ test/writer/eqn/u.test view

file too large to diff

+ test/writer/eqn/unicode.test view

file too large to diff

+ test/writer/eqn/v.test view

file too large to diff

+ test/writer/eqn/verbar2.test view

file too large to diff

+ test/writer/eqn/w.test view

file too large to diff

+ test/writer/eqn/whBcomments1.test view

file too large to diff

+ test/writer/eqn/whBgeneral1.test view

file too large to diff

+ test/writer/eqn/white1.test view

file too large to diff

+ test/writer/eqn/white10.test view

file too large to diff

+ test/writer/eqn/white2.test view

file too large to diff

+ test/writer/eqn/white3.test view

file too large to diff

+ test/writer/eqn/white4.test view

file too large to diff

+ test/writer/eqn/white5.test view

file too large to diff

+ test/writer/eqn/white6.test view

file too large to diff

+ test/writer/eqn/white7.test view

file too large to diff

+ test/writer/eqn/white8.test view

file too large to diff

+ test/writer/eqn/white9.test view

file too large to diff

+ test/writer/eqn/x.test view

file too large to diff

+ test/writer/eqn/xmllang1.test view

file too large to diff

+ test/writer/eqn/y.test view

file too large to diff

+ test/writer/eqn/z.test view

file too large to diff

+ test/writer/mml/00000_C0_Controls_and_Basic_Latin.test view

file too large to diff

+ test/writer/mml/00080_C1_Controls_and_Latin-1_Supplement.test view

file too large to diff

+ test/writer/mml/00100_Latin_Extended-A.test view

file too large to diff

+ test/writer/mml/00180_Latin_Extended-B.test view

file too large to diff

+ test/writer/mml/00250_IPA_Extensions.test view

file too large to diff

+ test/writer/mml/002B0_Spacing_Modifier_Letters.test view

file too large to diff

+ test/writer/mml/00300_Combining_Diacritical_Marks.test view

file too large to diff

+ test/writer/mml/00370_Greek_and_Coptic.test view

file too large to diff

+ test/writer/mml/00400_Cyrillic.test view

file too large to diff

+ test/writer/mml/01.test view

file too large to diff

+ test/writer/mml/01E00_Latin_Extended_Additional.test view

file too large to diff

+ test/writer/mml/01F00_Greek_Extended.test view

file too large to diff

+ test/writer/mml/02.test view

file too large to diff

+ test/writer/mml/02000_General_Punctuation.test view

file too large to diff

+ test/writer/mml/02070_Superscripts_and_Subscripts.test view

file too large to diff

+ test/writer/mml/020A0_Currency_Symbols.test view

file too large to diff

+ test/writer/mml/020D0_Combining_Diacritical_Marks_for_Symbols.test view

file too large to diff

+ test/writer/mml/02100_Letterlike_Symbols.test view

file too large to diff

+ test/writer/mml/02150_Number_Forms.test view

file too large to diff

+ test/writer/mml/02190_Arrows.test view

file too large to diff

+ test/writer/mml/02200_Mathematical_Operators.test view

file too large to diff

+ test/writer/mml/02300_Miscellaneous_Technical.test view

file too large to diff

+ test/writer/mml/02400_Control_Pictures.test view

file too large to diff

+ test/writer/mml/02440_Optical_Character_Recognition.test view

file too large to diff

+ test/writer/mml/02460_Enclosed_Alphanumerics.test view

file too large to diff

+ test/writer/mml/02500_Box_Drawing.test view

file too large to diff

+ test/writer/mml/02580_Block_Elements.test view

file too large to diff

+ test/writer/mml/025A0_Geometric_Shapes.test view

file too large to diff

+ test/writer/mml/02600_Miscellaneous_Symbols.test view

file too large to diff

+ test/writer/mml/02700_Dingbats.test view

file too large to diff

+ test/writer/mml/027C0_Miscellaneous_Mathematical_Symbols-A.test view

file too large to diff

+ test/writer/mml/027F0_Supplemental_Arrows-A.test view

file too large to diff

+ test/writer/mml/02900_Supplemental_Arrows-B.test view

file too large to diff

+ test/writer/mml/02980_Miscellaneous_Mathematical_Symbols-B.test view

file too large to diff

+ test/writer/mml/02A00_Supplemental_Mathematical_Operators.test view

file too large to diff

+ test/writer/mml/02B00_Miscellaneous_Symbols_and_Arrows.test view

file too large to diff

+ test/writer/mml/03.test view

file too large to diff

+ test/writer/mml/04.test view

file too large to diff

+ test/writer/mml/05.test view

file too large to diff

+ test/writer/mml/06.test view

file too large to diff

+ test/writer/mml/07.test view

file too large to diff

+ test/writer/mml/08.test view

file too large to diff

+ test/writer/mml/09.test view

file too large to diff

+ test/writer/mml/0FB00_Alphabetic_Presentation_Forms.test view

file too large to diff

+ test/writer/mml/0FB50_Arabic_Presentation_Forms-A.test view

file too large to diff

+ test/writer/mml/0FE00_Variation_Selectors.test view

file too large to diff

+ test/writer/mml/0FE10_Vertical_Forms.test view

file too large to diff

+ test/writer/mml/0FE20_Combining_Half_Marks.test view

file too large to diff

+ test/writer/mml/0FE30_CJK_Compatibility_Forms.test view

file too large to diff

+ test/writer/mml/0FE50_Small_Form_Variants.test view

file too large to diff

+ test/writer/mml/0FE70_Arabic_Presentation_Forms-B.test view

file too large to diff

+ test/writer/mml/10.test view

file too large to diff

+ test/writer/mml/11.test view

file too large to diff

+ test/writer/mml/12.test view

file too large to diff

+ test/writer/mml/13.test view

file too large to diff

+ test/writer/mml/14.test view

file too large to diff

+ test/writer/mml/15.test view

file too large to diff

+ test/writer/mml/16.test view

file too large to diff

+ test/writer/mml/17.test view

file too large to diff

+ test/writer/mml/18.test view

file too large to diff

+ test/writer/mml/19.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_bold.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_italic.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_monospace.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test view

file too large to diff

+ test/writer/mml/1D400_Mathematical_Alphanumeric_Symbols_script.test view

file too large to diff

+ test/writer/mml/20.test view

file too large to diff

+ test/writer/mml/21.test view

file too large to diff

+ test/writer/mml/22.test view

file too large to diff

+ test/writer/mml/23.test view

file too large to diff

+ test/writer/mml/a.test view

file too large to diff

+ test/writer/mml/abs1.test view

file too large to diff

+ test/writer/mml/accents1.test view

file too large to diff

+ test/writer/mml/accents2.test view

file too large to diff

+ test/writer/mml/accents3.test view

file too large to diff

+ test/writer/mml/accents4.test view

file too large to diff

+ test/writer/mml/accents5.test view

file too large to diff

+ test/writer/mml/accents6.test view

file too large to diff

+ test/writer/mml/attribQuote1.test view

file too large to diff

+ test/writer/mml/axiom_of_power_set.test view

file too large to diff

+ test/writer/mml/b.test view

file too large to diff

+ test/writer/mml/badAttribs2.test view

file too large to diff

+ test/writer/mml/badAttribsGlyph4.test view

file too large to diff

+ test/writer/mml/badAttribsVal3.test view

file too large to diff

+ test/writer/mml/badEntity1.test view

file too large to diff

+ test/writer/mml/binomial_coefficient.test view

file too large to diff

+ test/writer/mml/boxed.test view

file too large to diff

+ test/writer/mml/c.test view

file too large to diff

+ test/writer/mml/chain2.test view

file too large to diff

+ test/writer/mml/choose.test view

file too large to diff

+ test/writer/mml/class2.test view

file too large to diff

+ test/writer/mml/clipboard1.test view

file too large to diff

+ test/writer/mml/clipboard2.test view

file too large to diff

+ test/writer/mml/complex1.test view

file too large to diff

+ test/writer/mml/complex2.test view

file too large to diff

+ test/writer/mml/complex3.test view

file too large to diff

+ test/writer/mml/complex_number.test view

file too large to diff

+ test/writer/mml/coprod2.test view

file too large to diff

+ test/writer/mml/cospan.test view

file too large to diff

+ test/writer/mml/d.test view

file too large to diff

+ test/writer/mml/deMorgans_law.test view

file too large to diff

+ test/writer/mml/differentiable_manifold.test view

file too large to diff

+ test/writer/mml/digamma.test view

file too large to diff

+ test/writer/mml/digit-bold.test view

file too large to diff

+ test/writer/mml/digit-double-struck.test view

file too large to diff

+ test/writer/mml/digit-monospace.test view

file too large to diff

+ test/writer/mml/digit-sans-serif-bold.test view

file too large to diff

+ test/writer/mml/digit-sans-serif.test view

file too large to diff

+ test/writer/mml/divergence.test view

file too large to diff

+ test/writer/mml/dotless.test view

file too large to diff

+ test/writer/mml/double-struck.test view

file too large to diff

+ test/writer/mml/doubleint1.test view

file too large to diff

+ test/writer/mml/e.test view

file too large to diff

+ test/writer/mml/embStretch1.test view

file too large to diff

+ test/writer/mml/emptyContent1.test view

file too large to diff

+ test/writer/mml/ensuremath.test view

file too large to diff

+ test/writer/mml/f.test view

file too large to diff

+ test/writer/mml/fraktur-bold.test view

file too large to diff

+ test/writer/mml/fraktur.test view

file too large to diff

+ test/writer/mml/g.test view

file too large to diff

+ test/writer/mml/genBvert1.test view

file too large to diff

+ test/writer/mml/genfrac.test view

file too large to diff

+ test/writer/mml/greek-bold-italic.test view

file too large to diff

+ test/writer/mml/greek-bold.test view

file too large to diff

+ test/writer/mml/greek-italic.test view

file too large to diff

+ test/writer/mml/greek-sans-serif-bold-italic.test view

file too large to diff

+ test/writer/mml/greek-sans-serif-bold.test view

file too large to diff

+ test/writer/mml/h.test view

file too large to diff

+ test/writer/mml/href1.test view

file too large to diff

+ test/writer/mml/href2.test view

file too large to diff

+ test/writer/mml/href3.test view

file too large to diff

+ test/writer/mml/i.test view

file too large to diff

+ test/writer/mml/int1.test view

file too large to diff

+ test/writer/mml/int4.test view

file too large to diff

+ test/writer/mml/int6.test view

file too large to diff

+ test/writer/mml/int7.test view

file too large to diff

+ test/writer/mml/int9.test view

file too large to diff

+ test/writer/mml/intDispStyle.test view

file too large to diff

+ test/writer/mml/intNested3.test view

file too large to diff

+ test/writer/mml/intSize1.test view

file too large to diff

+ test/writer/mml/intSize2.test view

file too large to diff

+ test/writer/mml/invChars.test view

file too large to diff

+ test/writer/mml/issue109.test view

file too large to diff

+ test/writer/mml/j.test view

file too large to diff

+ test/writer/mml/k.test view

file too large to diff

+ test/writer/mml/l.test view

file too large to diff

+ test/writer/mml/labels.test view

file too large to diff

+ test/writer/mml/largeop1.test view

file too large to diff

+ test/writer/mml/largeop2.test view

file too large to diff

+ test/writer/mml/largeopPos3.test view

file too large to diff

+ test/writer/mml/latin-bold-italic.test view

file too large to diff

+ test/writer/mml/latin-bold.test view

file too large to diff

+ test/writer/mml/latin-italic.test view

file too large to diff

+ test/writer/mml/latin-sans-serif-bold-italic.test view

file too large to diff

+ test/writer/mml/latin-sans-serif-bold.test view

file too large to diff

+ test/writer/mml/latin-sans-serif-italic.test view

file too large to diff

+ test/writer/mml/latin-sans-serif.test view

file too large to diff

+ test/writer/mml/m.test view

file too large to diff

+ test/writer/mml/m10.test view

file too large to diff

+ test/writer/mml/m100.test view

file too large to diff

+ test/writer/mml/m1000.test view

file too large to diff

+ test/writer/mml/macros.test view

file too large to diff

+ test/writer/mml/maction-01.test view

file too large to diff

+ test/writer/mml/maction-02.test view

file too large to diff

+ test/writer/mml/maction-03.test view

file too large to diff

+ test/writer/mml/maction-04.test view

file too large to diff

+ test/writer/mml/maction-05.test view

file too large to diff

+ test/writer/mml/maction-06.test view

file too large to diff

+ test/writer/mml/maction-07.test view

file too large to diff

+ test/writer/mml/maction-08.test view

file too large to diff

+ test/writer/mml/mactionBstatus1.test view

file too large to diff

+ test/writer/mml/mactionBtoggle1.test view

file too large to diff

+ test/writer/mml/mactionBtooltip1.test view

file too large to diff

+ test/writer/mml/maligngroup1.test view

file too large to diff

+ test/writer/mml/math-in-text.test view

file too large to diff

+ test/writer/mml/math3.test view

file too large to diff

+ test/writer/mml/mathAdisplay1.test view

file too large to diff

+ test/writer/mml/mathBevelledFrac.test view

file too large to diff

+ test/writer/mml/mathTable1.test view

file too large to diff

+ test/writer/mml/menclose.test view

file too large to diff

+ test/writer/mml/merrorB3.test view

file too large to diff

+ test/writer/mml/mfenced-01.test view

file too large to diff

+ test/writer/mml/mfenced-02.test view

file too large to diff

+ test/writer/mml/mfenced-03.test view

file too large to diff

+ test/writer/mml/mfenced-04.test view

file too large to diff

+ test/writer/mml/mfenced-05.test view

file too large to diff

+ test/writer/mml/mfenced-06.test view

file too large to diff

+ test/writer/mml/mfenced-07.test view

file too large to diff

+ test/writer/mml/mfenced-08.test view

file too large to diff

+ test/writer/mml/mfenced1.test view

file too large to diff

+ test/writer/mml/mfenced5.test view

file too large to diff

+ test/writer/mml/mfencedAdelims6.test view

file too large to diff

+ test/writer/mml/mfencedAempty.test view

file too large to diff

+ test/writer/mml/mfencedBfences7.test view

file too large to diff

+ test/writer/mml/mfencedBseparators8.test view

file too large to diff

+ test/writer/mml/mfencedSfonts9.test view

file too large to diff

+ test/writer/mml/mfrac-01.test view

file too large to diff

+ test/writer/mml/mfrac-02.test view

file too large to diff

+ test/writer/mml/mfrac-03.test view

file too large to diff

+ test/writer/mml/mfrac-04.test view

file too large to diff

+ test/writer/mml/mfrac-05.test view

file too large to diff

+ test/writer/mml/mfrac-06.test view

file too large to diff

+ test/writer/mml/mfrac-07.test view

file too large to diff

+ test/writer/mml/mfrac-08.test view

file too large to diff

+ test/writer/mml/mfrac-09.test view

file too large to diff

+ test/writer/mml/mfrac-10.test view

file too large to diff

+ test/writer/mml/mfrac-11.test view

file too large to diff

+ test/writer/mml/mfrac-12.test view

file too large to diff

+ test/writer/mml/mfrac1.test view

file too large to diff

+ test/writer/mml/mfrac2.test view

file too large to diff

+ test/writer/mml/mfrac3.test view

file too large to diff

+ test/writer/mml/mfrac4.test view

file too large to diff

+ test/writer/mml/mfrac7.test view

file too large to diff

+ test/writer/mml/mfracAcss8.test view

file too large to diff

+ test/writer/mml/mfracAmultiplier10.test view

file too large to diff

+ test/writer/mml/mfracBalign16.test view

file too large to diff

+ test/writer/mml/mfracBheight17.test view

file too large to diff

+ test/writer/mml/mfracBhoriz11.test view

file too large to diff

+ test/writer/mml/mfracBvert12.test view

file too large to diff

+ test/writer/mml/mfracSfonts13.test view

file too large to diff

+ test/writer/mml/mfracSinheritance14.test view

file too large to diff

+ test/writer/mml/mfracSscriptlevel15.test view

file too large to diff

+ test/writer/mml/mfracZcomp-01.test view

file too large to diff

+ test/writer/mml/mfracZcomp-02.test view

file too large to diff

+ test/writer/mml/mfracZcomp-03.test view

file too large to diff

+ test/writer/mml/mfracZcomp-04.test view

file too large to diff

+ test/writer/mml/mfracZcomp-05.test view

file too large to diff

+ test/writer/mml/mfracZcomp-06.test view

file too large to diff

+ test/writer/mml/mfracZcomp-07.test view

file too large to diff

+ test/writer/mml/mfracZcomp-08.test view

file too large to diff

+ test/writer/mml/mfracZcomp-09.test view

file too large to diff

+ test/writer/mml/mfracZcomp-10.test view

file too large to diff

+ test/writer/mml/mfracZcomp-11.test view

file too large to diff

+ test/writer/mml/mfracZcomp-12.test view

file too large to diff

+ test/writer/mml/mfracZcomp-13.test view

file too large to diff

+ test/writer/mml/mfracZcomp-14.test view

file too large to diff

+ test/writer/mml/mfracZcomp-15.test view

file too large to diff

+ test/writer/mml/mfracZcomp-16.test view

file too large to diff

+ test/writer/mml/mfracZcomp-17.test view

file too large to diff

+ test/writer/mml/mfracZcomp-18.test view

file too large to diff

+ test/writer/mml/mfracZcomp-19.test view

file too large to diff

+ test/writer/mml/mfracZcomp-20.test view

file too large to diff

+ test/writer/mml/mfracZcomp-21.test view

file too large to diff

+ test/writer/mml/mfracZcomp-22.test view

file too large to diff

+ test/writer/mml/mfracZcomp-23.test view

file too large to diff

+ test/writer/mml/mfracZcomp-24.test view

file too large to diff

+ test/writer/mml/mfracZcomp-25.test view

file too large to diff

+ test/writer/mml/mfracZcomp-26.test view

file too large to diff

+ test/writer/mml/mfracZcomp-28.test view

file too large to diff

+ test/writer/mml/mfracZcomp-29.test view

file too large to diff

+ test/writer/mml/mfracZcomp-30.test view

file too large to diff

+ test/writer/mml/mfracZcomp-31.test view

file too large to diff

+ test/writer/mml/mfracZcomp-32.test view

file too large to diff

+ test/writer/mml/mfracZcomp-33.test view

file too large to diff

+ test/writer/mml/mi1.test view

file too large to diff

+ test/writer/mml/mi2.test view

file too large to diff

+ test/writer/mml/mi3.test view

file too large to diff

+ test/writer/mml/mi4.test view

file too large to diff

+ test/writer/mml/miAtoken5.test view

file too large to diff

+ test/writer/mml/miSfonts8.test view

file too large to diff

+ test/writer/mml/miSfontsize9.test view

file too large to diff

+ test/writer/mml/miSmathsize16.test view

file too large to diff

+ test/writer/mml/miSmathsize17.test view

file too large to diff

+ test/writer/mml/miStoken10.test view

file too large to diff

+ test/writer/mml/mid1.test view

file too large to diff

+ test/writer/mml/mid2.test view

file too large to diff

+ test/writer/mml/miequivalents11.test view

file too large to diff

+ test/writer/mml/mifontstyle12.test view

file too large to diff

+ test/writer/mml/mimathvariant13.test view

file too large to diff

+ test/writer/mml/mimathvariant14.test view

file too large to diff

+ test/writer/mml/mlabeledtrAside2.test view

file too large to diff

+ test/writer/mml/mn1.test view

file too large to diff

+ test/writer/mml/mn2.test view

file too large to diff

+ test/writer/mml/mn3.test view

file too large to diff

+ test/writer/mml/mn4.test view

file too large to diff

+ test/writer/mml/mnAtoken6.test view

file too large to diff

+ test/writer/mml/mnAtoken7.test view

file too large to diff

+ test/writer/mml/mnSdisplaystyle9.test view

file too large to diff

+ test/writer/mml/mnSfont10.test view

file too large to diff

+ test/writer/mml/mnSscriptlevel11.test view

file too large to diff

+ test/writer/mml/mo1.test view

file too large to diff

+ test/writer/mml/mo2.test view

file too large to diff

+ test/writer/mml/mo3.test view

file too large to diff

+ test/writer/mml/mo6.test view

file too large to diff

+ test/writer/mml/mo7.test view

file too large to diff

+ test/writer/mml/moAaccent10.test view

file too large to diff

+ test/writer/mml/moAaccent9.test view

file too large to diff

+ test/writer/mml/moAform11.test view

file too large to diff

+ test/writer/mml/moAlargeop12.test view

file too large to diff

+ test/writer/mml/moAlrspace13.test view

file too large to diff

+ test/writer/mml/moAmovable15.test view

file too large to diff

+ test/writer/mml/moAprime16.test view

file too large to diff

+ test/writer/mml/moAsep17.test view

file too large to diff

+ test/writer/mml/moAstretchy18.test view

file too large to diff

+ test/writer/mml/moAsymmetric19.test view

file too large to diff

+ test/writer/mml/moSminmax20.test view

file too large to diff

+ test/writer/mml/monospace.test view

file too large to diff

+ test/writer/mml/moore_determinant.test view

file too large to diff

+ test/writer/mml/mover-01.test view

file too large to diff

+ test/writer/mml/mover-02.test view

file too large to diff

+ test/writer/mml/mover-03.test view

file too large to diff

+ test/writer/mml/mover-04.test view

file too large to diff

+ test/writer/mml/mover-05.test view

file too large to diff

+ test/writer/mml/mover-06.test view

file too large to diff

+ test/writer/mml/mover-07.test view

file too large to diff

+ test/writer/mml/mover-08.test view

file too large to diff

+ test/writer/mml/mover-09.test view

file too large to diff

+ test/writer/mml/mover-10.test view

file too large to diff

+ test/writer/mml/mover-11.test view

file too large to diff

+ test/writer/mml/mover-12.test view

file too large to diff

+ test/writer/mml/mover1.test view

file too large to diff

+ test/writer/mml/mover2.test view

file too large to diff

+ test/writer/mml/mover3.test view

file too large to diff

+ test/writer/mml/mover4.test view

file too large to diff

+ test/writer/mml/mover5.test view

file too large to diff

+ test/writer/mml/mover6.test view

file too large to diff

+ test/writer/mml/mover7.test view

file too large to diff

+ test/writer/mml/mover8.test view

file too large to diff

+ test/writer/mml/mover9.test view

file too large to diff

+ test/writer/mml/mphantomB1.test view

file too large to diff

+ test/writer/mml/mphantomBinferred2.test view

file too large to diff

+ test/writer/mml/mphantomBoperators3.test view

file too large to diff

+ test/writer/mml/mphantomSinheritance5.test view

file too large to diff

+ test/writer/mml/mrootB1.test view

file too large to diff

+ test/writer/mml/mrootSfonts3.test view

file too large to diff

+ test/writer/mml/mrootSscriptlevel4.test view

file too large to diff

+ test/writer/mml/mrow-01.test view

file too large to diff

+ test/writer/mml/mrow-02.test view

file too large to diff

+ test/writer/mml/mrowAbg4.test view

file too large to diff

+ test/writer/mml/mrowBinferred2.test view

file too large to diff

+ test/writer/mml/ms-13.test view

file too large to diff

+ test/writer/mml/ms-14.test view

file too large to diff

+ test/writer/mml/ms-15.test view

file too large to diff

+ test/writer/mml/ms-16.test view

file too large to diff

+ test/writer/mml/ms1.test view

file too large to diff

+ test/writer/mml/msAdisplaystyle2.test view

file too large to diff

+ test/writer/mml/msAquotes3.test view

file too large to diff

+ test/writer/mml/msAtoken4.test view

file too large to diff

+ test/writer/mml/msAtoken5.test view

file too large to diff

+ test/writer/mml/msSinheritance7.test view

file too large to diff

+ test/writer/mml/msSinheritance8.test view

file too large to diff

+ test/writer/mml/mspace-01.test view

file too large to diff

+ test/writer/mml/mspace-02.test view

file too large to diff

+ test/writer/mml/mspace-03.test view

file too large to diff

+ test/writer/mml/mspace-04.test view

file too large to diff

+ test/writer/mml/mspace1.test view

file too large to diff

+ test/writer/mml/mspace2.test view

file too large to diff

+ test/writer/mml/mspaceAbreak3.test view

file too large to diff

+ test/writer/mml/mspacestruts2.test view

file too large to diff

+ test/writer/mml/msqrt-01.test view

file too large to diff

+ test/writer/mml/msqrt-02.test view

file too large to diff

+ test/writer/mml/msqrt-03.test view

file too large to diff

+ test/writer/mml/msqrt-04.test view

file too large to diff

+ test/writer/mml/msqrt-05.test view

file too large to diff

+ test/writer/mml/msqrt-06.test view

file too large to diff

+ test/writer/mml/msqrt-07.test view

file too large to diff

+ test/writer/mml/msqrt-08.test view

file too large to diff

+ test/writer/mml/msqrt5.test view

file too large to diff

+ test/writer/mml/msqrtB7.test view

file too large to diff

+ test/writer/mml/msqrtBimplied8.test view

file too large to diff

+ test/writer/mml/msqrtSinheritance9.test view

file too large to diff

+ test/writer/mml/mstyle1.test view

file too large to diff

+ test/writer/mml/mstyleA2.test view

file too large to diff

+ test/writer/mml/mstyleAlinethick1.test view

file too large to diff

+ test/writer/mml/mstyleAminscript1.test view

file too large to diff

+ test/writer/mml/mstyleAscriptlevel1.test view

file too large to diff

+ test/writer/mml/msub-01.test view

file too large to diff

+ test/writer/mml/msub-02.test view

file too large to diff

+ test/writer/mml/msub-03.test view

file too large to diff

+ test/writer/mml/msub-04.test view

file too large to diff

+ test/writer/mml/msub-05.test view

file too large to diff

+ test/writer/mml/msub-06.test view

file too large to diff

+ test/writer/mml/msub-07.test view

file too large to diff

+ test/writer/mml/msub-08.test view

file too large to diff

+ test/writer/mml/msub-09.test view

file too large to diff

+ test/writer/mml/msub-10.test view

file too large to diff

+ test/writer/mml/msub-11.test view

file too large to diff

+ test/writer/mml/msub-12.test view

file too large to diff

+ test/writer/mml/msub1.test view

file too large to diff

+ test/writer/mml/msubsup-01.test view

file too large to diff

+ test/writer/mml/msubsup-02.test view

file too large to diff

+ test/writer/mml/msubsup-03.test view

file too large to diff

+ test/writer/mml/msubsup-04.test view

file too large to diff

+ test/writer/mml/msubsup-05.test view

file too large to diff

+ test/writer/mml/msubsup-06.test view

file too large to diff

+ test/writer/mml/msubsup-07.test view

file too large to diff

+ test/writer/mml/msubsup-08.test view

file too large to diff

+ test/writer/mml/msubsup-09.test view

file too large to diff

+ test/writer/mml/msubsup-10.test view

file too large to diff

+ test/writer/mml/msubsup-11.test view

file too large to diff

+ test/writer/mml/msubsup-12.test view

file too large to diff

+ test/writer/mml/msubsup1.test view

file too large to diff

+ test/writer/mml/msubsupBsize1.test view

file too large to diff

+ test/writer/mml/msubsupBsize2.test view

file too large to diff

+ test/writer/mml/msup-01.test view

file too large to diff

+ test/writer/mml/msup-02.test view

file too large to diff

+ test/writer/mml/msup-03.test view

file too large to diff

+ test/writer/mml/msup-04.test view

file too large to diff

+ test/writer/mml/msup-05.test view

file too large to diff

+ test/writer/mml/msup-06.test view

file too large to diff

+ test/writer/mml/msup-07.test view

file too large to diff

+ test/writer/mml/msup-08.test view

file too large to diff

+ test/writer/mml/msup-09.test view

file too large to diff

+ test/writer/mml/msup-10.test view

file too large to diff

+ test/writer/mml/msup-11.test view

file too large to diff

+ test/writer/mml/msup-12.test view

file too large to diff

+ test/writer/mml/msup1.test view

file too large to diff

+ test/writer/mml/msup2.test view

file too large to diff

+ test/writer/mml/msupBnest1.test view

file too large to diff

+ test/writer/mml/msupBsize1.test view

file too large to diff

+ test/writer/mml/msupBsize2.test view

file too large to diff

+ test/writer/mml/msupBsize3.test view

file too large to diff

+ test/writer/mml/msupSadvance1.test view

file too large to diff

+ test/writer/mml/mtable-01.test view

file too large to diff

+ test/writer/mml/mtable-05.test view

file too large to diff

+ test/writer/mml/mtable-07.test view

file too large to diff

+ test/writer/mml/mtable-08.test view

file too large to diff

+ test/writer/mml/mtable-09.test view

file too large to diff

+ test/writer/mml/mtable-10.test view

file too large to diff

+ test/writer/mml/mtable-11.test view

file too large to diff

+ test/writer/mml/mtable-16.test view

file too large to diff

+ test/writer/mml/mtable2.test view

file too large to diff

+ test/writer/mml/mtableAalign2.test view

file too large to diff

+ test/writer/mml/mtableAalign3.test view

file too large to diff

+ test/writer/mml/mtableAgroupalign.test view

file too large to diff

+ test/writer/mml/mtableAlines2.test view

file too large to diff

+ test/writer/mml/mtableAspacing4.test view

file too large to diff

+ test/writer/mml/mtableAwidth2.test view

file too large to diff

+ test/writer/mml/mtableAwidth3.test view

file too large to diff

+ test/writer/mml/mtableBgap1.test view

file too large to diff

+ test/writer/mml/mtableBsize2.test view

file too large to diff

+ test/writer/mml/mtableBspan3.test view

file too large to diff

+ test/writer/mml/mtext2.test view

file too large to diff

+ test/writer/mml/mtextAtoken3.test view

file too large to diff

+ test/writer/mml/mtextStoken6.test view

file too large to diff

+ test/writer/mml/mtextspaces7.test view

file too large to diff

+ test/writer/mml/munder-01.test view

file too large to diff

+ test/writer/mml/munder-02.test view

file too large to diff

+ test/writer/mml/munder-03.test view

file too large to diff

+ test/writer/mml/munder-04.test view

file too large to diff

+ test/writer/mml/munder-05.test view

file too large to diff

+ test/writer/mml/munder-06.test view

file too large to diff

+ test/writer/mml/munder-07.test view

file too large to diff

+ test/writer/mml/munder-08.test view

file too large to diff

+ test/writer/mml/munder-09.test view

file too large to diff

+ test/writer/mml/munder-10.test view

file too large to diff

+ test/writer/mml/munder-11.test view

file too large to diff

+ test/writer/mml/munder-12.test view

file too large to diff

+ test/writer/mml/munder1.test view

file too large to diff

+ test/writer/mml/munder2.test view

file too large to diff

+ test/writer/mml/munder3.test view

file too large to diff

+ test/writer/mml/munder4.test view

file too large to diff

+ test/writer/mml/munder5.test view

file too large to diff

+ test/writer/mml/munder6.test view

file too large to diff

+ test/writer/mml/munder7.test view

file too large to diff

+ test/writer/mml/munder8.test view

file too large to diff

+ test/writer/mml/munder9.test view

file too large to diff

+ test/writer/mml/munderover-01.test view

file too large to diff

+ test/writer/mml/munderover-02.test view

file too large to diff

+ test/writer/mml/munderover-03.test view

file too large to diff

+ test/writer/mml/munderover-04.test view

file too large to diff

+ test/writer/mml/munderover-05.test view

file too large to diff

+ test/writer/mml/munderover-06.test view

file too large to diff

+ test/writer/mml/munderover-07.test view

file too large to diff

+ test/writer/mml/munderover-08.test view

file too large to diff

+ test/writer/mml/munderover-09.test view

file too large to diff

+ test/writer/mml/munderover-10.test view

file too large to diff

+ test/writer/mml/munderover-11.test view

file too large to diff

+ test/writer/mml/munderover-12.test view

file too large to diff

+ test/writer/mml/n.test view

file too large to diff

+ test/writer/mml/nestAction1.test view

file too large to diff

+ test/writer/mml/nestFrac1.test view

file too large to diff

+ test/writer/mml/nestScript.test view

file too large to diff

+ test/writer/mml/nestTable1.test view

file too large to diff

+ test/writer/mml/nestedAwidth1.test view

file too large to diff

+ test/writer/mml/notin.test view

file too large to diff

+ test/writer/mml/o.test view

file too large to diff

+ test/writer/mml/oint1.test view

file too large to diff

+ test/writer/mml/operatorname.test view

file too large to diff

+ test/writer/mml/p.test view

file too large to diff

+ test/writer/mml/phantom.test view

file too large to diff

+ test/writer/mml/primes1.test view

file too large to diff

+ test/writer/mml/primes2.test view

file too large to diff

+ test/writer/mml/prod2.test view

file too large to diff

+ test/writer/mml/q.test view

file too large to diff

+ test/writer/mml/r.test view

file too large to diff

+ test/writer/mml/rec-mlabeledtr.test view

file too large to diff

+ test/writer/mml/rec-mtable1.test view

file too large to diff

+ test/writer/mml/rec3-mphantom-1.test view

file too large to diff

+ test/writer/mml/s.test view

file too large to diff

+ test/writer/mml/sans-serif-bold-italic.test view

file too large to diff

+ test/writer/mml/sans-serif-bold.test view

file too large to diff

+ test/writer/mml/sans-serif-italic.test view

file too large to diff

+ test/writer/mml/sans-serif.test view

file too large to diff

+ test/writer/mml/schwinger_dyson.test view

file too large to diff

+ test/writer/mml/script-bold.test view

file too large to diff

+ test/writer/mml/script.test view

file too large to diff

+ test/writer/mml/semantics-01.test view

file too large to diff

+ test/writer/mml/semantics-03.test view

file too large to diff

+ test/writer/mml/serif-bold-italic.test view

file too large to diff

+ test/writer/mml/serif-bold.test view

file too large to diff

+ test/writer/mml/serif-italic.test view

file too large to diff

+ test/writer/mml/serif.test view

file too large to diff

+ test/writer/mml/simplePres.test view

file too large to diff

+ test/writer/mml/simple_sum_formula.test view

file too large to diff

+ test/writer/mml/sizeunits3.test view

file too large to diff

+ test/writer/mml/sizeunits4.test view

file too large to diff

+ test/writer/mml/sophomores_dream.test view

file too large to diff

+ test/writer/mml/span.test view

file too large to diff

+ test/writer/mml/sphere_volume.test view

file too large to diff

+ test/writer/mml/stackrel.test view

file too large to diff

+ test/writer/mml/stretchAccents1.test view

file too large to diff

+ test/writer/mml/stretchAccents2.test view

file too large to diff

+ test/writer/mml/stretchBrack1.test view

file too large to diff

+ test/writer/mml/stretchHoriz1.test view

file too large to diff

+ test/writer/mml/stretchHoriz2.test view

file too large to diff

+ test/writer/mml/stretchHoriz3.test view

file too large to diff

+ test/writer/mml/stretchTable1.test view

file too large to diff

+ test/writer/mml/stretchTable2.test view

file too large to diff

+ test/writer/mml/stretchTilde1.test view

file too large to diff

+ test/writer/mml/stretchVert1.test view

file too large to diff

+ test/writer/mml/stretchVert2.test view

file too large to diff

+ test/writer/mml/stretchVertNest2.test view

file too large to diff

+ test/writer/mml/style1.test view

file too large to diff

+ test/writer/mml/style2.test view

file too large to diff

+ test/writer/mml/substack.test view

file too large to diff

+ test/writer/mml/subsup.test view

file too large to diff

+ test/writer/mml/sum1.test view

file too large to diff

+ test/writer/mml/t.test view

file too large to diff

+ test/writer/mml/text.test view

file too large to diff

+ test/writer/mml/tokens.test view

file too large to diff

+ test/writer/mml/tripleint2.test view

file too large to diff

+ test/writer/mml/u.test view

file too large to diff

+ test/writer/mml/unicode.test view

file too large to diff

+ test/writer/mml/v.test view

file too large to diff

+ test/writer/mml/verbar2.test view

file too large to diff

+ test/writer/mml/w.test view

file too large to diff

+ test/writer/mml/whBcomments1.test view

file too large to diff

+ test/writer/mml/whBgeneral1.test view

file too large to diff

+ test/writer/mml/white1.test view

file too large to diff

+ test/writer/mml/white10.test view

file too large to diff

+ test/writer/mml/white2.test view

file too large to diff

+ test/writer/mml/white3.test view

file too large to diff

+ test/writer/mml/white4.test view

file too large to diff

+ test/writer/mml/white5.test view

file too large to diff

+ test/writer/mml/white6.test view

file too large to diff

+ test/writer/mml/white7.test view

file too large to diff

+ test/writer/mml/white8.test view

file too large to diff

+ test/writer/mml/white9.test view

file too large to diff

+ test/writer/mml/x.test view

file too large to diff

+ test/writer/mml/xmllang1.test view

file too large to diff

+ test/writer/mml/y.test view

file too large to diff

+ test/writer/mml/z.test view

file too large to diff

+ test/writer/omml/00000_C0_Controls_and_Basic_Latin.test view

file too large to diff

+ test/writer/omml/00080_C1_Controls_and_Latin-1_Supplement.test view

file too large to diff

+ test/writer/omml/00100_Latin_Extended-A.test view

file too large to diff

+ test/writer/omml/00180_Latin_Extended-B.test view

file too large to diff

+ test/writer/omml/00250_IPA_Extensions.test view

file too large to diff

+ test/writer/omml/002B0_Spacing_Modifier_Letters.test view

file too large to diff

+ test/writer/omml/00300_Combining_Diacritical_Marks.test view

file too large to diff

+ test/writer/omml/00370_Greek_and_Coptic.test view

file too large to diff

+ test/writer/omml/00400_Cyrillic.test view

file too large to diff

+ test/writer/omml/01.test view

file too large to diff

+ test/writer/omml/01E00_Latin_Extended_Additional.test view

file too large to diff

+ test/writer/omml/01F00_Greek_Extended.test view

file too large to diff

+ test/writer/omml/02.test view

file too large to diff

+ test/writer/omml/02000_General_Punctuation.test view

file too large to diff

+ test/writer/omml/02070_Superscripts_and_Subscripts.test view

file too large to diff

+ test/writer/omml/020A0_Currency_Symbols.test view

file too large to diff

+ test/writer/omml/020D0_Combining_Diacritical_Marks_for_Symbols.test view

file too large to diff

+ test/writer/omml/02100_Letterlike_Symbols.test view

file too large to diff

+ test/writer/omml/02150_Number_Forms.test view

file too large to diff

+ test/writer/omml/02190_Arrows.test view

file too large to diff

+ test/writer/omml/02200_Mathematical_Operators.test view

file too large to diff

+ test/writer/omml/02300_Miscellaneous_Technical.test view

file too large to diff

+ test/writer/omml/02400_Control_Pictures.test view

file too large to diff

+ test/writer/omml/02440_Optical_Character_Recognition.test view

file too large to diff

+ test/writer/omml/02460_Enclosed_Alphanumerics.test view

file too large to diff

+ test/writer/omml/02500_Box_Drawing.test view

file too large to diff

+ test/writer/omml/02580_Block_Elements.test view

file too large to diff

+ test/writer/omml/025A0_Geometric_Shapes.test view

file too large to diff

+ test/writer/omml/02600_Miscellaneous_Symbols.test view

file too large to diff

+ test/writer/omml/02700_Dingbats.test view

file too large to diff

+ test/writer/omml/027C0_Miscellaneous_Mathematical_Symbols-A.test view

file too large to diff

+ test/writer/omml/027F0_Supplemental_Arrows-A.test view

file too large to diff

+ test/writer/omml/02900_Supplemental_Arrows-B.test view

file too large to diff

+ test/writer/omml/02980_Miscellaneous_Mathematical_Symbols-B.test view

file too large to diff

+ test/writer/omml/02A00_Supplemental_Mathematical_Operators.test view

file too large to diff

+ test/writer/omml/02B00_Miscellaneous_Symbols_and_Arrows.test view

file too large to diff

+ test/writer/omml/03.test view

file too large to diff

+ test/writer/omml/04.test view

file too large to diff

+ test/writer/omml/05.test view

file too large to diff

+ test/writer/omml/06.test view

file too large to diff

+ test/writer/omml/07.test view

file too large to diff

+ test/writer/omml/08.test view

file too large to diff

+ test/writer/omml/09.test view

file too large to diff

+ test/writer/omml/0FB00_Alphabetic_Presentation_Forms.test view

file too large to diff

+ test/writer/omml/0FB50_Arabic_Presentation_Forms-A.test view

file too large to diff

+ test/writer/omml/0FE00_Variation_Selectors.test view

file too large to diff

+ test/writer/omml/0FE10_Vertical_Forms.test view

file too large to diff

+ test/writer/omml/0FE20_Combining_Half_Marks.test view

file too large to diff

+ test/writer/omml/0FE30_CJK_Compatibility_Forms.test view

file too large to diff

+ test/writer/omml/0FE50_Small_Form_Variants.test view

file too large to diff

+ test/writer/omml/0FE70_Arabic_Presentation_Forms-B.test view

file too large to diff

+ test/writer/omml/10.test view

file too large to diff

+ test/writer/omml/11.test view

file too large to diff

+ test/writer/omml/12.test view

file too large to diff

+ test/writer/omml/13.test view

file too large to diff

+ test/writer/omml/14.test view

file too large to diff

+ test/writer/omml/15.test view

file too large to diff

+ test/writer/omml/16.test view

file too large to diff

+ test/writer/omml/17.test view

file too large to diff

+ test/writer/omml/18.test view

file too large to diff

+ test/writer/omml/19.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_bold.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_italic.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_monospace.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test view

file too large to diff

+ test/writer/omml/1D400_Mathematical_Alphanumeric_Symbols_script.test view

file too large to diff

+ test/writer/omml/20.test view

file too large to diff

+ test/writer/omml/21.test view

file too large to diff

+ test/writer/omml/22.test view

file too large to diff

+ test/writer/omml/23.test view

file too large to diff

+ test/writer/omml/a.test view

file too large to diff

+ test/writer/omml/abs1.test view

file too large to diff

+ test/writer/omml/accents1.test view

file too large to diff

+ test/writer/omml/accents2.test view

file too large to diff

+ test/writer/omml/accents3.test view

file too large to diff

+ test/writer/omml/accents4.test view

file too large to diff

+ test/writer/omml/accents5.test view

file too large to diff

+ test/writer/omml/accents6.test view

file too large to diff

+ test/writer/omml/attribQuote1.test view

file too large to diff

+ test/writer/omml/axiom_of_power_set.test view

file too large to diff

+ test/writer/omml/b.test view

file too large to diff

+ test/writer/omml/badAttribs2.test view

file too large to diff

+ test/writer/omml/badAttribsGlyph4.test view

file too large to diff

+ test/writer/omml/badAttribsVal3.test view

file too large to diff

+ test/writer/omml/badEntity1.test view

file too large to diff

+ test/writer/omml/binomial_coefficient.test view

file too large to diff

+ test/writer/omml/boxed.test view

file too large to diff

+ test/writer/omml/c.test view

file too large to diff

+ test/writer/omml/cancel.test view

file too large to diff

+ test/writer/omml/chain2.test view

file too large to diff

+ test/writer/omml/choose.test view

file too large to diff

+ test/writer/omml/class2.test view

file too large to diff

+ test/writer/omml/clipboard1.test view

file too large to diff

+ test/writer/omml/clipboard2.test view

file too large to diff

+ test/writer/omml/complex1.test view

file too large to diff

+ test/writer/omml/complex2.test view

file too large to diff

+ test/writer/omml/complex3.test view

file too large to diff

+ test/writer/omml/complex_number.test view

file too large to diff

+ test/writer/omml/coprod2.test view

file too large to diff

+ test/writer/omml/cospan.test view

file too large to diff

+ test/writer/omml/d.test view

file too large to diff

+ test/writer/omml/deMorgans_law.test view

file too large to diff

+ test/writer/omml/differentiable_manifold.test view

file too large to diff

+ test/writer/omml/digamma.test view

file too large to diff

+ test/writer/omml/digit-bold.test view

file too large to diff

+ test/writer/omml/digit-double-struck.test view

file too large to diff

+ test/writer/omml/digit-monospace.test view

file too large to diff

+ test/writer/omml/digit-sans-serif-bold.test view

file too large to diff

+ test/writer/omml/digit-sans-serif.test view

file too large to diff

+ test/writer/omml/divergence.test view

file too large to diff

+ test/writer/omml/dotless.test view

file too large to diff

+ test/writer/omml/double-struck.test view

file too large to diff

+ test/writer/omml/doubleint1.test view

file too large to diff

+ test/writer/omml/e.test view

file too large to diff

+ test/writer/omml/embStretch1.test view

file too large to diff

+ test/writer/omml/emptyContent1.test view

file too large to diff

+ test/writer/omml/ensuremath.test view

file too large to diff

+ test/writer/omml/f.test view

file too large to diff

+ test/writer/omml/fraktur-bold.test view

file too large to diff

+ test/writer/omml/fraktur.test view

file too large to diff

+ test/writer/omml/g.test view

file too large to diff

+ test/writer/omml/genBvert1.test view

file too large to diff

+ test/writer/omml/genfrac.test view

file too large to diff

+ test/writer/omml/greek-bold-italic.test view

file too large to diff

+ test/writer/omml/greek-bold.test view

file too large to diff

+ test/writer/omml/greek-italic.test view

file too large to diff

+ test/writer/omml/greek-sans-serif-bold-italic.test view

file too large to diff

+ test/writer/omml/greek-sans-serif-bold.test view

file too large to diff

+ test/writer/omml/h.test view

file too large to diff

+ test/writer/omml/href1.test view

file too large to diff

+ test/writer/omml/href2.test view

file too large to diff

+ test/writer/omml/href3.test view

file too large to diff

+ test/writer/omml/i.test view

file too large to diff

+ test/writer/omml/int1.test view

file too large to diff

+ test/writer/omml/int4.test view

file too large to diff

+ test/writer/omml/int6.test view

file too large to diff

+ test/writer/omml/int7.test view

file too large to diff

+ test/writer/omml/int9.test view

file too large to diff

+ test/writer/omml/intDispStyle.test view

file too large to diff

+ test/writer/omml/intNested3.test view

file too large to diff

+ test/writer/omml/intSize1.test view

file too large to diff

+ test/writer/omml/intSize2.test view

file too large to diff

+ test/writer/omml/invChars.test view

file too large to diff

+ test/writer/omml/issue109.test view

file too large to diff

+ test/writer/omml/j.test view

file too large to diff

+ test/writer/omml/k.test view

file too large to diff

+ test/writer/omml/l.test view

file too large to diff

+ test/writer/omml/labels.test view

file too large to diff

+ test/writer/omml/largeop1.test view

file too large to diff

+ test/writer/omml/largeop2.test view

file too large to diff

+ test/writer/omml/largeopPos3.test view

file too large to diff

+ test/writer/omml/latin-bold-italic.test view

file too large to diff

+ test/writer/omml/latin-bold.test view

file too large to diff

+ test/writer/omml/latin-italic.test view

file too large to diff

+ test/writer/omml/latin-sans-serif-bold-italic.test view

file too large to diff

+ test/writer/omml/latin-sans-serif-bold.test view

file too large to diff

+ test/writer/omml/latin-sans-serif-italic.test view

file too large to diff

+ test/writer/omml/latin-sans-serif.test view

file too large to diff

+ test/writer/omml/m.test view

file too large to diff

+ test/writer/omml/m10.test view

file too large to diff

+ test/writer/omml/m100.test view

file too large to diff

+ test/writer/omml/m1000.test view

file too large to diff

+ test/writer/omml/macros.test view

file too large to diff

+ test/writer/omml/maction-01.test view

file too large to diff

+ test/writer/omml/maction-02.test view

file too large to diff

+ test/writer/omml/maction-03.test view

file too large to diff

+ test/writer/omml/maction-04.test view

file too large to diff

+ test/writer/omml/maction-05.test view

file too large to diff

+ test/writer/omml/maction-06.test view

file too large to diff

+ test/writer/omml/maction-07.test view

file too large to diff

+ test/writer/omml/maction-08.test view

file too large to diff

+ test/writer/omml/mactionBstatus1.test view

file too large to diff

+ test/writer/omml/mactionBtoggle1.test view

file too large to diff

+ test/writer/omml/mactionBtooltip1.test view

file too large to diff

+ test/writer/omml/maligngroup1.test view

file too large to diff

+ test/writer/omml/math-in-text.test view

file too large to diff

+ test/writer/omml/math3.test view

file too large to diff

+ test/writer/omml/mathAdisplay1.test view

file too large to diff

+ test/writer/omml/mathBevelledFrac.test view

file too large to diff

+ test/writer/omml/mathTable1.test view

file too large to diff

+ test/writer/omml/merrorB3.test view

file too large to diff

+ test/writer/omml/mfenced-01.test view

file too large to diff

+ test/writer/omml/mfenced-02.test view

file too large to diff

+ test/writer/omml/mfenced-03.test view

file too large to diff

+ test/writer/omml/mfenced-04.test view

file too large to diff

+ test/writer/omml/mfenced-05.test view

file too large to diff

+ test/writer/omml/mfenced-06.test view

file too large to diff

+ test/writer/omml/mfenced-07.test view

file too large to diff

+ test/writer/omml/mfenced-08.test view

file too large to diff

+ test/writer/omml/mfenced1.test view

file too large to diff

+ test/writer/omml/mfenced5.test view

file too large to diff

+ test/writer/omml/mfencedAdelims6.test view

file too large to diff

+ test/writer/omml/mfencedAempty.test view

file too large to diff

+ test/writer/omml/mfencedBfences7.test view

file too large to diff

+ test/writer/omml/mfencedBseparators8.test view

file too large to diff

+ test/writer/omml/mfencedSfonts9.test view

file too large to diff

+ test/writer/omml/mfrac-01.test view

file too large to diff

+ test/writer/omml/mfrac-02.test view

file too large to diff

+ test/writer/omml/mfrac-03.test view

file too large to diff

+ test/writer/omml/mfrac-04.test view

file too large to diff

+ test/writer/omml/mfrac-05.test view

file too large to diff

+ test/writer/omml/mfrac-06.test view

file too large to diff

+ test/writer/omml/mfrac-07.test view

file too large to diff

+ test/writer/omml/mfrac-08.test view

file too large to diff

+ test/writer/omml/mfrac-09.test view

file too large to diff

+ test/writer/omml/mfrac-10.test view

file too large to diff

+ test/writer/omml/mfrac-11.test view

file too large to diff

+ test/writer/omml/mfrac-12.test view

file too large to diff

+ test/writer/omml/mfrac1.test view

file too large to diff

+ test/writer/omml/mfrac2.test view

file too large to diff

+ test/writer/omml/mfrac3.test view

file too large to diff

+ test/writer/omml/mfrac4.test view

file too large to diff

+ test/writer/omml/mfrac7.test view

file too large to diff

+ test/writer/omml/mfracAcss8.test view

file too large to diff

+ test/writer/omml/mfracAmultiplier10.test view

file too large to diff

+ test/writer/omml/mfracBalign16.test view

file too large to diff

+ test/writer/omml/mfracBheight17.test view

file too large to diff

+ test/writer/omml/mfracBhoriz11.test view

file too large to diff

+ test/writer/omml/mfracBvert12.test view

file too large to diff

+ test/writer/omml/mfracSfonts13.test view

file too large to diff

+ test/writer/omml/mfracSinheritance14.test view

file too large to diff

+ test/writer/omml/mfracSscriptlevel15.test view

file too large to diff

+ test/writer/omml/mfracZcomp-01.test view

file too large to diff

+ test/writer/omml/mfracZcomp-02.test view

file too large to diff

+ test/writer/omml/mfracZcomp-03.test view

file too large to diff

+ test/writer/omml/mfracZcomp-04.test view

file too large to diff

+ test/writer/omml/mfracZcomp-05.test view

file too large to diff

+ test/writer/omml/mfracZcomp-06.test view

file too large to diff

+ test/writer/omml/mfracZcomp-07.test view

file too large to diff

+ test/writer/omml/mfracZcomp-08.test view

file too large to diff

+ test/writer/omml/mfracZcomp-09.test view

file too large to diff

+ test/writer/omml/mfracZcomp-10.test view

file too large to diff

+ test/writer/omml/mfracZcomp-11.test view

file too large to diff

+ test/writer/omml/mfracZcomp-12.test view

file too large to diff

+ test/writer/omml/mfracZcomp-13.test view

file too large to diff

+ test/writer/omml/mfracZcomp-14.test view

file too large to diff

+ test/writer/omml/mfracZcomp-15.test view

file too large to diff

+ test/writer/omml/mfracZcomp-16.test view

file too large to diff

+ test/writer/omml/mfracZcomp-17.test view

file too large to diff

+ test/writer/omml/mfracZcomp-18.test view

file too large to diff

+ test/writer/omml/mfracZcomp-19.test view

file too large to diff

+ test/writer/omml/mfracZcomp-20.test view

file too large to diff

+ test/writer/omml/mfracZcomp-21.test view

file too large to diff

+ test/writer/omml/mfracZcomp-22.test view

file too large to diff

+ test/writer/omml/mfracZcomp-23.test view

file too large to diff

+ test/writer/omml/mfracZcomp-24.test view

file too large to diff

+ test/writer/omml/mfracZcomp-25.test view

file too large to diff

+ test/writer/omml/mfracZcomp-26.test view

file too large to diff

+ test/writer/omml/mfracZcomp-28.test view

file too large to diff

+ test/writer/omml/mfracZcomp-29.test view

file too large to diff

+ test/writer/omml/mfracZcomp-30.test view

file too large to diff

+ test/writer/omml/mfracZcomp-31.test view

file too large to diff

+ test/writer/omml/mfracZcomp-32.test view

file too large to diff

+ test/writer/omml/mfracZcomp-33.test view

file too large to diff

+ test/writer/omml/mi1.test view

file too large to diff

+ test/writer/omml/mi2.test view

file too large to diff

+ test/writer/omml/mi3.test view

file too large to diff

+ test/writer/omml/mi4.test view

file too large to diff

+ test/writer/omml/miAtoken5.test view

file too large to diff

+ test/writer/omml/miSfonts8.test view

file too large to diff

+ test/writer/omml/miSfontsize9.test view

file too large to diff

+ test/writer/omml/miSmathsize16.test view

file too large to diff

+ test/writer/omml/miSmathsize17.test view

file too large to diff

+ test/writer/omml/miStoken10.test view

file too large to diff

+ test/writer/omml/mid1.test view

file too large to diff

+ test/writer/omml/mid2.test view

file too large to diff

+ test/writer/omml/miequivalents11.test view

file too large to diff

+ test/writer/omml/mifontstyle12.test view

file too large to diff

+ test/writer/omml/mimathvariant13.test view

file too large to diff

+ test/writer/omml/mimathvariant14.test view

file too large to diff

+ test/writer/omml/mlabeledtrAside2.test view

file too large to diff

+ test/writer/omml/mn1.test view

file too large to diff

+ test/writer/omml/mn2.test view

file too large to diff

+ test/writer/omml/mn3.test view

file too large to diff

+ test/writer/omml/mn4.test view

file too large to diff

+ test/writer/omml/mnAtoken6.test view

file too large to diff

+ test/writer/omml/mnAtoken7.test view

file too large to diff

+ test/writer/omml/mnSdisplaystyle9.test view

file too large to diff

+ test/writer/omml/mnSfont10.test view

file too large to diff

+ test/writer/omml/mnSscriptlevel11.test view

file too large to diff

+ test/writer/omml/mo1.test view

file too large to diff

+ test/writer/omml/mo2.test view

file too large to diff

+ test/writer/omml/mo3.test view

file too large to diff

+ test/writer/omml/mo6.test view

file too large to diff

+ test/writer/omml/mo7.test view

file too large to diff

+ test/writer/omml/moAaccent10.test view

file too large to diff

+ test/writer/omml/moAaccent9.test view

file too large to diff

+ test/writer/omml/moAform11.test view

file too large to diff

+ test/writer/omml/moAlargeop12.test view

file too large to diff

+ test/writer/omml/moAlrspace13.test view

file too large to diff

+ test/writer/omml/moAmovable15.test view

file too large to diff

+ test/writer/omml/moAprime16.test view

file too large to diff

+ test/writer/omml/moAsep17.test view

file too large to diff

+ test/writer/omml/moAstretchy18.test view

file too large to diff

+ test/writer/omml/moAsymmetric19.test view

file too large to diff

+ test/writer/omml/moSminmax20.test view

file too large to diff

+ test/writer/omml/monospace.test view

file too large to diff

+ test/writer/omml/moore_determinant.test view

file too large to diff

+ test/writer/omml/mover-01.test view

file too large to diff

+ test/writer/omml/mover-02.test view

file too large to diff

+ test/writer/omml/mover-03.test view

file too large to diff

+ test/writer/omml/mover-04.test view

file too large to diff

+ test/writer/omml/mover-05.test view

file too large to diff

+ test/writer/omml/mover-06.test view

file too large to diff

+ test/writer/omml/mover-07.test view

file too large to diff

+ test/writer/omml/mover-08.test view

file too large to diff

+ test/writer/omml/mover-09.test view

file too large to diff

+ test/writer/omml/mover-10.test view

file too large to diff

+ test/writer/omml/mover-11.test view

file too large to diff

+ test/writer/omml/mover-12.test view

file too large to diff

+ test/writer/omml/mover1.test view

file too large to diff

+ test/writer/omml/mover2.test view

file too large to diff

+ test/writer/omml/mover3.test view

file too large to diff

+ test/writer/omml/mover4.test view

file too large to diff

+ test/writer/omml/mover5.test view

file too large to diff

+ test/writer/omml/mover6.test view

file too large to diff

+ test/writer/omml/mover7.test view

file too large to diff

+ test/writer/omml/mover8.test view

file too large to diff

+ test/writer/omml/mover9.test view

file too large to diff

+ test/writer/omml/mphantomB1.test view

file too large to diff

+ test/writer/omml/mphantomBinferred2.test view

file too large to diff

+ test/writer/omml/mphantomBoperators3.test view

file too large to diff

+ test/writer/omml/mphantomSinheritance5.test view

file too large to diff

+ test/writer/omml/mrootB1.test view

file too large to diff

+ test/writer/omml/mrootSfonts3.test view

file too large to diff

+ test/writer/omml/mrootSscriptlevel4.test view

file too large to diff

+ test/writer/omml/mrow-01.test view

file too large to diff

+ test/writer/omml/mrow-02.test view

file too large to diff

+ test/writer/omml/mrowAbg4.test view

file too large to diff

+ test/writer/omml/mrowBinferred2.test view

file too large to diff

+ test/writer/omml/ms-13.test view

file too large to diff

+ test/writer/omml/ms-14.test view

file too large to diff

+ test/writer/omml/ms-15.test view

file too large to diff

+ test/writer/omml/ms-16.test view

file too large to diff

+ test/writer/omml/ms1.test view

file too large to diff

+ test/writer/omml/msAdisplaystyle2.test view

file too large to diff

+ test/writer/omml/msAquotes3.test view

file too large to diff

+ test/writer/omml/msAtoken4.test view

file too large to diff

+ test/writer/omml/msAtoken5.test view

file too large to diff

+ test/writer/omml/msSinheritance7.test view

file too large to diff

+ test/writer/omml/msSinheritance8.test view

file too large to diff

+ test/writer/omml/mspace-01.test view

file too large to diff

+ test/writer/omml/mspace-02.test view

file too large to diff

+ test/writer/omml/mspace-03.test view

file too large to diff

+ test/writer/omml/mspace-04.test view

file too large to diff

+ test/writer/omml/mspace1.test view

file too large to diff

+ test/writer/omml/mspace2.test view

file too large to diff

+ test/writer/omml/mspaceAbreak3.test view

file too large to diff

+ test/writer/omml/mspacestruts2.test view

file too large to diff

+ test/writer/omml/msqrt-01.test view

file too large to diff

+ test/writer/omml/msqrt-02.test view

file too large to diff

+ test/writer/omml/msqrt-03.test view

file too large to diff

+ test/writer/omml/msqrt-04.test view

file too large to diff

+ test/writer/omml/msqrt-05.test view

file too large to diff

+ test/writer/omml/msqrt-06.test view

file too large to diff

+ test/writer/omml/msqrt-07.test view

file too large to diff

+ test/writer/omml/msqrt-08.test view

file too large to diff

+ test/writer/omml/msqrt5.test view

file too large to diff

+ test/writer/omml/msqrtB7.test view

file too large to diff

+ test/writer/omml/msqrtBimplied8.test view

file too large to diff

+ test/writer/omml/msqrtSinheritance9.test view

file too large to diff

+ test/writer/omml/mstyle1.test view

file too large to diff

+ test/writer/omml/mstyleA2.test view

file too large to diff

+ test/writer/omml/mstyleAlinethick1.test view

file too large to diff

+ test/writer/omml/mstyleAminscript1.test view

file too large to diff

+ test/writer/omml/mstyleAscriptlevel1.test view

file too large to diff

+ test/writer/omml/msub-01.test view

file too large to diff

+ test/writer/omml/msub-02.test view

file too large to diff

+ test/writer/omml/msub-03.test view

file too large to diff

+ test/writer/omml/msub-04.test view

file too large to diff

+ test/writer/omml/msub-05.test view

file too large to diff

+ test/writer/omml/msub-06.test view

file too large to diff

+ test/writer/omml/msub-07.test view

file too large to diff

+ test/writer/omml/msub-08.test view

file too large to diff

+ test/writer/omml/msub-09.test view

file too large to diff

+ test/writer/omml/msub-10.test view

file too large to diff

+ test/writer/omml/msub-11.test view

file too large to diff

+ test/writer/omml/msub-12.test view

file too large to diff

+ test/writer/omml/msub1.test view

file too large to diff

+ test/writer/omml/msubsup-01.test view

file too large to diff

+ test/writer/omml/msubsup-02.test view

file too large to diff

+ test/writer/omml/msubsup-03.test view

file too large to diff

+ test/writer/omml/msubsup-04.test view

file too large to diff

+ test/writer/omml/msubsup-05.test view

file too large to diff

+ test/writer/omml/msubsup-06.test view

file too large to diff

+ test/writer/omml/msubsup-07.test view

file too large to diff

+ test/writer/omml/msubsup-08.test view

file too large to diff

+ test/writer/omml/msubsup-09.test view

file too large to diff

+ test/writer/omml/msubsup-10.test view

file too large to diff

+ test/writer/omml/msubsup-11.test view

file too large to diff

+ test/writer/omml/msubsup-12.test view

file too large to diff

+ test/writer/omml/msubsup1.test view

file too large to diff

+ test/writer/omml/msubsupBsize1.test view

file too large to diff

+ test/writer/omml/msubsupBsize2.test view

file too large to diff

+ test/writer/omml/msup-01.test view

file too large to diff

+ test/writer/omml/msup-02.test view

file too large to diff

+ test/writer/omml/msup-03.test view

file too large to diff

+ test/writer/omml/msup-04.test view

file too large to diff

+ test/writer/omml/msup-05.test view

file too large to diff

+ test/writer/omml/msup-06.test view

file too large to diff

+ test/writer/omml/msup-07.test view

file too large to diff

+ test/writer/omml/msup-08.test view

file too large to diff

+ test/writer/omml/msup-09.test view

file too large to diff

+ test/writer/omml/msup-10.test view

file too large to diff

+ test/writer/omml/msup-11.test view

file too large to diff

+ test/writer/omml/msup-12.test view

file too large to diff

+ test/writer/omml/msup1.test view

file too large to diff

+ test/writer/omml/msup2.test view

file too large to diff

+ test/writer/omml/msupBnest1.test view

file too large to diff

+ test/writer/omml/msupBsize1.test view

file too large to diff

+ test/writer/omml/msupBsize2.test view

file too large to diff

+ test/writer/omml/msupBsize3.test view

file too large to diff

+ test/writer/omml/msupSadvance1.test view

file too large to diff

+ test/writer/omml/mtable-01.test view

file too large to diff

+ test/writer/omml/mtable-05.test view

file too large to diff

+ test/writer/omml/mtable-07.test view

file too large to diff

+ test/writer/omml/mtable-08.test view

file too large to diff

+ test/writer/omml/mtable-09.test view

file too large to diff

+ test/writer/omml/mtable-10.test view

file too large to diff

+ test/writer/omml/mtable-11.test view

file too large to diff

+ test/writer/omml/mtable-16.test view

file too large to diff

+ test/writer/omml/mtable2.test view

file too large to diff

+ test/writer/omml/mtableAalign2.test view

file too large to diff

+ test/writer/omml/mtableAalign3.test view

file too large to diff

+ test/writer/omml/mtableAgroupalign.test view

file too large to diff

+ test/writer/omml/mtableAlines2.test view

file too large to diff

+ test/writer/omml/mtableAspacing4.test view

file too large to diff

+ test/writer/omml/mtableAwidth2.test view

file too large to diff

+ test/writer/omml/mtableAwidth3.test view

file too large to diff

+ test/writer/omml/mtableBgap1.test view

file too large to diff

+ test/writer/omml/mtableBsize2.test view

file too large to diff

+ test/writer/omml/mtableBspan3.test view

file too large to diff

+ test/writer/omml/mtext2.test view

file too large to diff

+ test/writer/omml/mtextAtoken3.test view

file too large to diff

+ test/writer/omml/mtextStoken6.test view

file too large to diff

+ test/writer/omml/mtextspaces7.test view

file too large to diff

+ test/writer/omml/munder-01.test view

file too large to diff

+ test/writer/omml/munder-02.test view

file too large to diff

+ test/writer/omml/munder-03.test view

file too large to diff

+ test/writer/omml/munder-04.test view

file too large to diff

+ test/writer/omml/munder-05.test view

file too large to diff

+ test/writer/omml/munder-06.test view

file too large to diff

+ test/writer/omml/munder-07.test view

file too large to diff

+ test/writer/omml/munder-08.test view

file too large to diff

+ test/writer/omml/munder-09.test view

file too large to diff

+ test/writer/omml/munder-10.test view

file too large to diff

+ test/writer/omml/munder-11.test view

file too large to diff

+ test/writer/omml/munder-12.test view

file too large to diff

+ test/writer/omml/munder1.test view

file too large to diff

+ test/writer/omml/munder2.test view

file too large to diff

+ test/writer/omml/munder3.test view

file too large to diff

+ test/writer/omml/munder4.test view

file too large to diff

+ test/writer/omml/munder5.test view

file too large to diff

+ test/writer/omml/munder6.test view

file too large to diff

+ test/writer/omml/munder7.test view

file too large to diff

+ test/writer/omml/munder8.test view

file too large to diff

+ test/writer/omml/munder9.test view

file too large to diff

+ test/writer/omml/munderover-01.test view

file too large to diff

+ test/writer/omml/munderover-02.test view

file too large to diff

+ test/writer/omml/munderover-03.test view

file too large to diff

+ test/writer/omml/munderover-04.test view

file too large to diff

+ test/writer/omml/munderover-05.test view

file too large to diff

+ test/writer/omml/munderover-06.test view

file too large to diff

+ test/writer/omml/munderover-07.test view

file too large to diff

+ test/writer/omml/munderover-08.test view

file too large to diff

+ test/writer/omml/munderover-09.test view

file too large to diff

+ test/writer/omml/munderover-10.test view

file too large to diff

+ test/writer/omml/munderover-11.test view

file too large to diff

+ test/writer/omml/munderover-12.test view

file too large to diff

+ test/writer/omml/n.test view

file too large to diff

+ test/writer/omml/nestAction1.test view

file too large to diff

+ test/writer/omml/nestFrac1.test view

file too large to diff

+ test/writer/omml/nestScript.test view

file too large to diff

+ test/writer/omml/nestTable1.test view

file too large to diff

+ test/writer/omml/nestedAwidth1.test view

file too large to diff

+ test/writer/omml/notin.test view

file too large to diff

+ test/writer/omml/o.test view

file too large to diff

+ test/writer/omml/oint1.test view

file too large to diff

+ test/writer/omml/operatorname.test view

file too large to diff

+ test/writer/omml/p.test view

file too large to diff

+ test/writer/omml/phantom.test view

file too large to diff

+ test/writer/omml/primes1.test view

file too large to diff

+ test/writer/omml/primes2.test view

file too large to diff

+ test/writer/omml/prod2.test view

file too large to diff

+ test/writer/omml/q.test view

file too large to diff

+ test/writer/omml/r.test view

file too large to diff

+ test/writer/omml/rec-mlabeledtr.test view

file too large to diff

+ test/writer/omml/rec-mtable1.test view

file too large to diff

+ test/writer/omml/rec3-mphantom-1.test view

file too large to diff

+ test/writer/omml/s.test view

file too large to diff

+ test/writer/omml/sans-serif-bold-italic.test view

file too large to diff

+ test/writer/omml/sans-serif-bold.test view

file too large to diff

+ test/writer/omml/sans-serif-italic.test view

file too large to diff

+ test/writer/omml/sans-serif.test view

file too large to diff

+ test/writer/omml/schwinger_dyson.test view

file too large to diff

+ test/writer/omml/script-bold.test view

file too large to diff

+ test/writer/omml/script.test view

file too large to diff

+ test/writer/omml/semantics-01.test view

file too large to diff

+ test/writer/omml/semantics-03.test view

file too large to diff

+ test/writer/omml/serif-bold-italic.test view

file too large to diff

+ test/writer/omml/serif-bold.test view

file too large to diff

+ test/writer/omml/serif-italic.test view

file too large to diff

+ test/writer/omml/serif.test view

file too large to diff

+ test/writer/omml/simplePres.test view

file too large to diff

+ test/writer/omml/simple_sum_formula.test view

file too large to diff

+ test/writer/omml/sizeunits3.test view

file too large to diff

+ test/writer/omml/sizeunits4.test view

file too large to diff

+ test/writer/omml/sophomores_dream.test view

file too large to diff

+ test/writer/omml/span.test view

file too large to diff

+ test/writer/omml/sphere_volume.test view

file too large to diff

+ test/writer/omml/stackrel.test view

file too large to diff

+ test/writer/omml/stretchAccents1.test view

file too large to diff

+ test/writer/omml/stretchAccents2.test view

file too large to diff

+ test/writer/omml/stretchBrack1.test view

file too large to diff

+ test/writer/omml/stretchHoriz1.test view

file too large to diff

+ test/writer/omml/stretchHoriz2.test view

file too large to diff

+ test/writer/omml/stretchHoriz3.test view

file too large to diff

+ test/writer/omml/stretchTable1.test view

file too large to diff

+ test/writer/omml/stretchTable2.test view

file too large to diff

+ test/writer/omml/stretchTilde1.test view

file too large to diff

+ test/writer/omml/stretchVert1.test view

file too large to diff

+ test/writer/omml/stretchVert2.test view

file too large to diff

+ test/writer/omml/stretchVertNest2.test view

file too large to diff

+ test/writer/omml/style1.test view

file too large to diff

+ test/writer/omml/style2.test view

file too large to diff

+ test/writer/omml/substack.test view

file too large to diff

+ test/writer/omml/subsup.test view

file too large to diff

+ test/writer/omml/sum1.test view

file too large to diff

+ test/writer/omml/t.test view

file too large to diff

+ test/writer/omml/text.test view

file too large to diff

+ test/writer/omml/tokens.test view

file too large to diff

+ test/writer/omml/tripleint2.test view

file too large to diff

+ test/writer/omml/u.test view

file too large to diff

+ test/writer/omml/unicode.test view

file too large to diff

+ test/writer/omml/v.test view

file too large to diff

+ test/writer/omml/verbar2.test view

file too large to diff

+ test/writer/omml/w.test view

file too large to diff

+ test/writer/omml/whBcomments1.test view

file too large to diff

+ test/writer/omml/whBgeneral1.test view

file too large to diff

+ test/writer/omml/white1.test view

file too large to diff

+ test/writer/omml/white10.test view

file too large to diff

+ test/writer/omml/white2.test view

file too large to diff

+ test/writer/omml/white3.test view

file too large to diff

+ test/writer/omml/white4.test view

file too large to diff

+ test/writer/omml/white5.test view

file too large to diff

+ test/writer/omml/white6.test view

file too large to diff

+ test/writer/omml/white7.test view

file too large to diff

+ test/writer/omml/white8.test view

file too large to diff

+ test/writer/omml/white9.test view

file too large to diff

+ test/writer/omml/x.test view

file too large to diff

+ test/writer/omml/xmllang1.test view

file too large to diff

+ test/writer/omml/y.test view

file too large to diff

+ test/writer/omml/z.test view

file too large to diff

+ test/writer/starmath/001_dot_text_subscript.test view

file too large to diff

+ test/writer/starmath/002_common_accents.test view

file too large to diff

+ test/writer/starmath/003_fraction.test view

file too large to diff

+ test/writer/starmath/004_square_root.test view

file too large to diff

+ test/writer/starmath/005_nth_root.test view

file too large to diff

+ test/writer/starmath/006_subscript_and_superscript.test view

file too large to diff

+ test/writer/starmath/007_superscript_with_grouped_base.test view

file too large to diff

+ test/writer/starmath/008_delimited_fraction.test view

file too large to diff

+ test/writer/starmath/009_delimited_braces.test view

file too large to diff

+ test/writer/starmath/01.test view

file too large to diff

+ test/writer/starmath/010_absolute_value_bars_normalize_to_delimiters.test view

file too large to diff

+ test/writer/starmath/011_double_bars_normalize_to_norm_delimiters.test view

file too large to diff

+ test/writer/starmath/012_one_sided_delimiter_uses_none.test view

file too large to diff

+ test/writer/starmath/013_middle_delimiter_uses_mline.test view

file too large to diff

+ test/writer/starmath/014_operator_mapping_cdot.test view

file too large to diff

+ test/writer/starmath/015_binomial_nolinefrac.test view

file too large to diff

+ test/writer/starmath/016_integral_without_limits.test view

file too large to diff

+ test/writer/starmath/017_integral_with_lower_and_upper_limits.test view

file too large to diff

+ test/writer/starmath/018_integral_with_infinite_upper_limit.test view

file too large to diff

+ test/writer/starmath/019_sum_with_lower_and_upper_limits.test view

file too large to diff

+ test/writer/starmath/02.test view

file too large to diff

+ test/writer/starmath/020_sum_with_symbolic_term.test view

file too large to diff

+ test/writer/starmath/021_greek_letter_mapping.test view

file too large to diff

+ test/writer/starmath/022_greek_variant_mapping.test view

file too large to diff

+ test/writer/starmath/023_arrow_mapping.test view

file too large to diff

+ test/writer/starmath/024_set_and_relation_symbol_mapping.test view

file too large to diff

+ test/writer/starmath/025_logic_and_calculus_symbol_mapping.test view

file too large to diff

+ test/writer/starmath/026_greek_identifier_spacing_in_products.test view

file too large to diff

+ test/writer/starmath/027_math_operators_rendered_as_functions.test view

file too large to diff

+ test/writer/starmath/028_nested_function_with_left_delimiter_spacing.test view

file too large to diff

+ test/writer/starmath/029_quad_spacing_command.test view

file too large to diff

+ test/writer/starmath/03.test view

file too large to diff

+ test/writer/starmath/030_qquad_spacing_command.test view

file too large to diff

+ test/writer/starmath/031_greek_token_separator_before_scripted_identifier.test view

file too large to diff

+ test/writer/starmath/032_mathrm_text_in_subscripts_stays_quoted.test view

file too large to diff

+ test/writer/starmath/033_escaped_underscore_in_mathrm_stays_literal.test view

file too large to diff

+ test/writer/starmath/034_numeric_chemistry_subscripts_in_mathrm_stay_structural.test view

file too large to diff

+ test/writer/starmath/035_circ_operator_maps_to_starmath_command.test view

file too large to diff

+ test/writer/starmath/036_min_with_bold_limit_variable_uses_operator_limits.test view

file too large to diff

+ test/writer/starmath/037_identifier_before_function_gets_separator.test view

file too large to diff

+ test/writer/starmath/038_greek_identifier_before_punctuation_gets_separator.test view

file too large to diff

+ test/writer/starmath/039_greek_identifier_before_punctuation_in_larger_expression.test view

file too large to diff

+ test/writer/starmath/04.test view

file too large to diff

+ test/writer/starmath/040_bare_recognized_math_operators_omit_func_and_keep_spacing.test view

file too large to diff

+ test/writer/starmath/041_ordinary_function_with_subscript_keeps_ordinary_script_syntax.test view

file too large to diff

+ test/writer/starmath/042_adjacent_bold_terms_get_separator.test view

file too large to diff

+ test/writer/starmath/043_mathcal_styled_token_before_left_delimiter.test view

file too large to diff

+ test/writer/starmath/044_leading_binary_operator_gets_neutral_lhs.test view

file too large to diff

+ test/writer/starmath/045_standalone_binary_operator_gets_neutral_operands.test view

file too large to diff

+ test/writer/starmath/046_trailing_binary_operator_gets_neutral_rhs.test view

file too large to diff

+ test/writer/starmath/047_standalone_relation_gets_neutral_operands.test view

file too large to diff

+ test/writer/starmath/048_standalone_arrow_gets_neutral_operands.test view

file too large to diff

+ test/writer/starmath/049_subscript_only_fragment_gets_neutral_base.test view

file too large to diff

+ test/writer/starmath/05.test view

file too large to diff

+ test/writer/starmath/050_superscript_only_fragment_gets_neutral_base.test view

file too large to diff

+ test/writer/starmath/051_grouped_subscript_only_fragment_gets_neutral_base.test view

file too large to diff

+ test/writer/starmath/052_matrix_environment.test view

file too large to diff

+ test/writer/starmath/053_pmatrix_environment.test view

file too large to diff

+ test/writer/starmath/054_bmatrix_environment.test view

file too large to diff

+ test/writer/starmath/055_vmatrix_environment.test view

file too large to diff

+ test/writer/starmath/056_vmatrix_environment.test view

file too large to diff

+ test/writer/starmath/057_array_with_left_right_alignment.test view

file too large to diff

+ test/writer/starmath/058_aligned_array_keeps_fractions_centered.test view

file too large to diff

+ test/writer/starmath/059_cases_environment.test view

file too large to diff

+ test/writer/starmath/06.test view

file too large to diff

+ test/writer/starmath/060_cases_with_negative_log_fraction.test view

file too large to diff

+ test/writer/starmath/061_phantom_alignment.test view

file too large to diff

+ test/writer/starmath/062_fallback_to_tex_for_under_over_constructs.test view

file too large to diff

+ test/writer/starmath/063_demorgans_law.test view

file too large to diff

+ test/writer/starmath/063_extensible_arrows_use_centered_scripts.test view

file too large to diff

+ test/writer/starmath/064_centered_array_omits_explicit_alignc.test view

file too large to diff

+ test/writer/starmath/065_reserved_word_in_uptext_subscript_is_quoted.test view

file too large to diff

+ test/writer/starmath/066_standalone_plus_minus_scripts_get_neutral_operands.test view

file too large to diff

+ test/writer/starmath/067_integral_default_limits_use_scripts.test view

file too large to diff

+ test/writer/starmath/068_integral_limits_use_from_to.test view

file too large to diff

+ test/writer/starmath/069_integral_nolimits_use_scripts.test view

file too large to diff

+ test/writer/starmath/07.test view

file too large to diff

+ test/writer/starmath/070_normal_fraction_display_inline_uses_inline_size.test view

file too large to diff

+ test/writer/starmath/071_grouped_mathrm_alpha_subscripts_stay_structural.test view

file too large to diff

+ test/writer/starmath/08.test view

file too large to diff

+ test/writer/starmath/09.test view

file too large to diff

+ test/writer/starmath/10.test view

file too large to diff

+ test/writer/starmath/11.test view

file too large to diff

+ test/writer/starmath/12.test view

file too large to diff

+ test/writer/starmath/13.test view

file too large to diff

+ test/writer/starmath/14.test view

file too large to diff

+ test/writer/starmath/15.test view

file too large to diff

+ test/writer/starmath/16.test view

file too large to diff

+ test/writer/starmath/17.test view

file too large to diff

+ test/writer/starmath/18.test view

file too large to diff

+ test/writer/starmath/19.test view

file too large to diff

+ test/writer/starmath/20.test view

file too large to diff

+ test/writer/starmath/21.test view

file too large to diff

+ test/writer/starmath/22.test view

file too large to diff

+ test/writer/starmath/23.test view

file too large to diff

+ test/writer/starmath/axiom_of_power_set.test view

file too large to diff

+ test/writer/starmath/binomial_coefficient.test view

file too large to diff

+ test/writer/starmath/boxed.test view

file too large to diff

+ test/writer/starmath/cancel.test view

file too large to diff

+ test/writer/starmath/choose.test view

file too large to diff

+ test/writer/starmath/complex_number.test view

file too large to diff

+ test/writer/starmath/cospan.test view

file too large to diff

+ test/writer/starmath/deMorgans_law.test view

file too large to diff

+ test/writer/starmath/differentiable_manifold.test view

file too large to diff

+ test/writer/starmath/divergence.test view

file too large to diff

+ test/writer/starmath/ensuremath.test view

file too large to diff

+ test/writer/starmath/genfrac.test view

file too large to diff

+ test/writer/starmath/issue109.test view

file too large to diff

+ test/writer/starmath/issue204.test view

file too large to diff

+ test/writer/starmath/issue229.test view

file too large to diff

+ test/writer/starmath/labels.test view

file too large to diff

+ test/writer/starmath/macros.test view

file too large to diff

+ test/writer/starmath/math-in-text.test view

file too large to diff

+ test/writer/starmath/moore_determinant.test view

file too large to diff

+ test/writer/starmath/notin.test view

file too large to diff

+ test/writer/starmath/operatorname.test view

file too large to diff

+ test/writer/starmath/phantom.test view

file too large to diff

+ test/writer/starmath/quadratic_formula.test view

file too large to diff

+ test/writer/starmath/schwinger_dyson.test view

file too large to diff

+ test/writer/starmath/simple_sum_formula.test view

file too large to diff

+ test/writer/starmath/sophomores_dream.test view

file too large to diff

+ test/writer/starmath/span.test view

file too large to diff

+ test/writer/starmath/sphere_volume.test view

file too large to diff

+ test/writer/starmath/stackrel.test view

file too large to diff

+ test/writer/starmath/substack.test view

file too large to diff

+ test/writer/starmath/subsup.test view

file too large to diff

+ test/writer/starmath/text.test view

file too large to diff

+ test/writer/starmath/tokens.test view

file too large to diff

+ test/writer/starmath/unicode.test view

file too large to diff

+ test/writer/tex/00000_C0_Controls_and_Basic_Latin.test view

file too large to diff

+ test/writer/tex/00080_C1_Controls_and_Latin-1_Supplement.test view

file too large to diff

+ test/writer/tex/00100_Latin_Extended-A.test view

file too large to diff

+ test/writer/tex/00180_Latin_Extended-B.test view

file too large to diff

+ test/writer/tex/00250_IPA_Extensions.test view

file too large to diff

+ test/writer/tex/002B0_Spacing_Modifier_Letters.test view

file too large to diff

+ test/writer/tex/00300_Combining_Diacritical_Marks.test view

file too large to diff

+ test/writer/tex/00370_Greek_and_Coptic.test view

file too large to diff

+ test/writer/tex/00400_Cyrillic.test view

file too large to diff

+ test/writer/tex/01.test view

file too large to diff

+ test/writer/tex/01E00_Latin_Extended_Additional.test view

file too large to diff

+ test/writer/tex/01F00_Greek_Extended.test view

file too large to diff

+ test/writer/tex/02.test view

file too large to diff

+ test/writer/tex/02000_General_Punctuation.test view

file too large to diff

+ test/writer/tex/02070_Superscripts_and_Subscripts.test view

file too large to diff

+ test/writer/tex/020A0_Currency_Symbols.test view

file too large to diff

+ test/writer/tex/020D0_Combining_Diacritical_Marks_for_Symbols.test view

file too large to diff

+ test/writer/tex/02100_Letterlike_Symbols.test view

file too large to diff

+ test/writer/tex/02150_Number_Forms.test view

file too large to diff

+ test/writer/tex/02190_Arrows.test view

file too large to diff

+ test/writer/tex/02200_Mathematical_Operators.test view

file too large to diff

+ test/writer/tex/02300_Miscellaneous_Technical.test view

file too large to diff

+ test/writer/tex/02400_Control_Pictures.test view

file too large to diff

+ test/writer/tex/02440_Optical_Character_Recognition.test view

file too large to diff

+ test/writer/tex/02460_Enclosed_Alphanumerics.test view

file too large to diff

+ test/writer/tex/02500_Box_Drawing.test view

file too large to diff

+ test/writer/tex/02580_Block_Elements.test view

file too large to diff

+ test/writer/tex/025A0_Geometric_Shapes.test view

file too large to diff

+ test/writer/tex/02600_Miscellaneous_Symbols.test view

file too large to diff

+ test/writer/tex/02700_Dingbats.test view

file too large to diff

+ test/writer/tex/027C0_Miscellaneous_Mathematical_Symbols-A.test view

file too large to diff

+ test/writer/tex/027F0_Supplemental_Arrows-A.test view

file too large to diff

+ test/writer/tex/02900_Supplemental_Arrows-B.test view

file too large to diff

+ test/writer/tex/02980_Miscellaneous_Mathematical_Symbols-B.test view

file too large to diff

+ test/writer/tex/02A00_Supplemental_Mathematical_Operators.test view

file too large to diff

+ test/writer/tex/02B00_Miscellaneous_Symbols_and_Arrows.test view

file too large to diff

+ test/writer/tex/03.test view

file too large to diff

+ test/writer/tex/04.test view

file too large to diff

+ test/writer/tex/05.test view

file too large to diff

+ test/writer/tex/06.test view

file too large to diff

+ test/writer/tex/07.test view

file too large to diff

+ test/writer/tex/08.test view

file too large to diff

+ test/writer/tex/09.test view

file too large to diff

+ test/writer/tex/0FB00_Alphabetic_Presentation_Forms.test view

file too large to diff

+ test/writer/tex/0FB50_Arabic_Presentation_Forms-A.test view

file too large to diff

+ test/writer/tex/0FE00_Variation_Selectors.test view

file too large to diff

+ test/writer/tex/0FE10_Vertical_Forms.test view

file too large to diff

+ test/writer/tex/0FE20_Combining_Half_Marks.test view

file too large to diff

+ test/writer/tex/0FE30_CJK_Compatibility_Forms.test view

file too large to diff

+ test/writer/tex/0FE50_Small_Form_Variants.test view

file too large to diff

+ test/writer/tex/0FE70_Arabic_Presentation_Forms-B.test view

file too large to diff

+ test/writer/tex/10.test view

file too large to diff

+ test/writer/tex/11.test view

file too large to diff

+ test/writer/tex/12.test view

file too large to diff

+ test/writer/tex/13.test view

file too large to diff

+ test/writer/tex/14.test view

file too large to diff

+ test/writer/tex/15.test view

file too large to diff

+ test/writer/tex/16.test view

file too large to diff

+ test/writer/tex/17.test view

file too large to diff

+ test/writer/tex/18.test view

file too large to diff

+ test/writer/tex/19.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_italic.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_monospace.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test view

file too large to diff

+ test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_script.test view

file too large to diff

+ test/writer/tex/20.test view

file too large to diff

+ test/writer/tex/21.test view

file too large to diff

+ test/writer/tex/22.test view

file too large to diff

+ test/writer/tex/23.test view

file too large to diff

+ test/writer/tex/a.test view

file too large to diff

+ test/writer/tex/abs1.test view

file too large to diff

+ test/writer/tex/accents1.test view

file too large to diff

+ test/writer/tex/accents2.test view

file too large to diff

+ test/writer/tex/accents3.test view

file too large to diff

+ test/writer/tex/accents4.test view

file too large to diff

+ test/writer/tex/accents5.test view

file too large to diff

+ test/writer/tex/accents6.test view

file too large to diff

+ test/writer/tex/attribQuote1.test view

file too large to diff

+ test/writer/tex/axiom_of_power_set.test view

file too large to diff

+ test/writer/tex/b.test view

file too large to diff

+ test/writer/tex/badAttribs2.test view

file too large to diff

+ test/writer/tex/badAttribsGlyph4.test view

file too large to diff

+ test/writer/tex/badAttribsVal3.test view

file too large to diff

+ test/writer/tex/badEntity1.test view

file too large to diff

+ test/writer/tex/binomial_coefficient.test view

file too large to diff

+ test/writer/tex/boxed.test view

file too large to diff

+ test/writer/tex/c.test view

file too large to diff

+ test/writer/tex/cancel.test view

file too large to diff

+ test/writer/tex/chain2.test view

file too large to diff

+ test/writer/tex/choose.test view

file too large to diff

+ test/writer/tex/class2.test view

file too large to diff

+ test/writer/tex/clipboard1.test view

file too large to diff

+ test/writer/tex/clipboard2.test view

file too large to diff

+ test/writer/tex/complex1.test view

file too large to diff

+ test/writer/tex/complex2.test view

file too large to diff

+ test/writer/tex/complex3.test view

file too large to diff

+ test/writer/tex/complex_number.test view

file too large to diff

+ test/writer/tex/coprod2.test view

file too large to diff

+ test/writer/tex/cospan.test view

file too large to diff

+ test/writer/tex/d.test view

file too large to diff

+ test/writer/tex/deMorgans_law.test view

file too large to diff

+ test/writer/tex/differentiable_manifold.test view

file too large to diff

+ test/writer/tex/digamma.test view

file too large to diff

+ test/writer/tex/digit-bold.test view

file too large to diff

+ test/writer/tex/digit-double-struck.test view

file too large to diff

+ test/writer/tex/digit-monospace.test view

file too large to diff

+ test/writer/tex/digit-sans-serif-bold.test view

file too large to diff

+ test/writer/tex/digit-sans-serif.test view

file too large to diff

+ test/writer/tex/divergence.test view

file too large to diff

+ test/writer/tex/dotless.test view

file too large to diff

+ test/writer/tex/double-struck.test view

file too large to diff

+ test/writer/tex/doubleint1.test view

file too large to diff

+ test/writer/tex/e.test view

file too large to diff

+ test/writer/tex/embStretch1.test view

file too large to diff

+ test/writer/tex/emptyContent1.test view

file too large to diff

+ test/writer/tex/ensuremath.test view

file too large to diff

+ test/writer/tex/f.test view

file too large to diff

+ test/writer/tex/fraktur-bold.test view

file too large to diff

+ test/writer/tex/fraktur.test view

file too large to diff

+ test/writer/tex/g.test view

file too large to diff

+ test/writer/tex/genBvert1.test view

file too large to diff

+ test/writer/tex/genfrac.test view

file too large to diff

+ test/writer/tex/greek-bold-italic.test view

file too large to diff

+ test/writer/tex/greek-bold.test view

file too large to diff

+ test/writer/tex/greek-italic.test view

file too large to diff

+ test/writer/tex/greek-sans-serif-bold-italic.test view

file too large to diff

+ test/writer/tex/greek-sans-serif-bold.test view

file too large to diff

+ test/writer/tex/h.test view

file too large to diff

+ test/writer/tex/href1.test view

file too large to diff

+ test/writer/tex/href2.test view

file too large to diff

+ test/writer/tex/href3.test view

file too large to diff

+ test/writer/tex/i.test view

file too large to diff

+ test/writer/tex/int1.test view

file too large to diff

+ test/writer/tex/int4.test view

file too large to diff

+ test/writer/tex/int6.test view

file too large to diff

+ test/writer/tex/int7.test view

file too large to diff

+ test/writer/tex/int9.test view

file too large to diff

+ test/writer/tex/intDispStyle.test view

file too large to diff

+ test/writer/tex/intNested3.test view

file too large to diff

+ test/writer/tex/intSize1.test view

file too large to diff

+ test/writer/tex/intSize2.test view

file too large to diff

+ test/writer/tex/invChars.test view

file too large to diff

+ test/writer/tex/issue109.test view

file too large to diff

+ test/writer/tex/j.test view

file too large to diff

+ test/writer/tex/k.test view

file too large to diff

+ test/writer/tex/l.test view

file too large to diff

+ test/writer/tex/labels.test view

file too large to diff

+ test/writer/tex/largeop1.test view

file too large to diff

+ test/writer/tex/largeop2.test view

file too large to diff

+ test/writer/tex/largeopPos3.test view

file too large to diff

+ test/writer/tex/latin-bold-italic.test view

file too large to diff

+ test/writer/tex/latin-bold.test view

file too large to diff

+ test/writer/tex/latin-italic.test view

file too large to diff

+ test/writer/tex/latin-sans-serif-bold-italic.test view

file too large to diff

+ test/writer/tex/latin-sans-serif-bold.test view

file too large to diff

+ test/writer/tex/latin-sans-serif-italic.test view

file too large to diff

+ test/writer/tex/latin-sans-serif.test view

file too large to diff

+ test/writer/tex/m.test view

file too large to diff

+ test/writer/tex/m10.test view

file too large to diff

+ test/writer/tex/m100.test view

file too large to diff

+ test/writer/tex/m1000.test view

file too large to diff

+ test/writer/tex/macros.test view

file too large to diff

+ test/writer/tex/maction-01.test view

file too large to diff

+ test/writer/tex/maction-02.test view

file too large to diff

+ test/writer/tex/maction-03.test view

file too large to diff

+ test/writer/tex/maction-04.test view

file too large to diff

+ test/writer/tex/maction-05.test view

file too large to diff

+ test/writer/tex/maction-06.test view

file too large to diff

+ test/writer/tex/maction-07.test view

file too large to diff

+ test/writer/tex/maction-08.test view

file too large to diff

+ test/writer/tex/mactionBstatus1.test view

file too large to diff

+ test/writer/tex/mactionBtoggle1.test view

file too large to diff

+ test/writer/tex/mactionBtooltip1.test view

file too large to diff

+ test/writer/tex/maligngroup1.test view

file too large to diff

+ test/writer/tex/math-in-text.test view

file too large to diff

+ test/writer/tex/math3.test view

file too large to diff

+ test/writer/tex/mathAdisplay1.test view

file too large to diff

+ test/writer/tex/mathBevelledFrac.test view

file too large to diff

+ test/writer/tex/mathTable1.test view

file too large to diff

+ test/writer/tex/merrorB3.test view

file too large to diff

+ test/writer/tex/mfenced-01.test view

file too large to diff

+ test/writer/tex/mfenced-02.test view

file too large to diff

+ test/writer/tex/mfenced-03.test view

file too large to diff

+ test/writer/tex/mfenced-04.test view

file too large to diff

+ test/writer/tex/mfenced-05.test view

file too large to diff

+ test/writer/tex/mfenced-06.test view

file too large to diff

+ test/writer/tex/mfenced-07.test view

file too large to diff

+ test/writer/tex/mfenced-08.test view

file too large to diff

+ test/writer/tex/mfenced1.test view

file too large to diff

+ test/writer/tex/mfenced5.test view

file too large to diff

+ test/writer/tex/mfencedAdelims6.test view

file too large to diff

+ test/writer/tex/mfencedAempty.test view

file too large to diff

+ test/writer/tex/mfencedBfences7.test view

file too large to diff

+ test/writer/tex/mfencedBseparators8.test view

file too large to diff

+ test/writer/tex/mfencedSfonts9.test view

file too large to diff

+ test/writer/tex/mfrac-01.test view

file too large to diff

+ test/writer/tex/mfrac-02.test view

file too large to diff

+ test/writer/tex/mfrac-03.test view

file too large to diff

+ test/writer/tex/mfrac-04.test view

file too large to diff

+ test/writer/tex/mfrac-05.test view

file too large to diff

+ test/writer/tex/mfrac-06.test view

file too large to diff

+ test/writer/tex/mfrac-07.test view

file too large to diff

+ test/writer/tex/mfrac-08.test view

file too large to diff

+ test/writer/tex/mfrac-09.test view

file too large to diff

+ test/writer/tex/mfrac-10.test view

file too large to diff

+ test/writer/tex/mfrac-11.test view

file too large to diff

+ test/writer/tex/mfrac-12.test view

file too large to diff

+ test/writer/tex/mfrac1.test view

file too large to diff

+ test/writer/tex/mfrac2.test view

file too large to diff

+ test/writer/tex/mfrac3.test view

file too large to diff

+ test/writer/tex/mfrac4.test view

file too large to diff

+ test/writer/tex/mfrac7.test view

file too large to diff

+ test/writer/tex/mfracAcss8.test view

file too large to diff

+ test/writer/tex/mfracAmultiplier10.test view

file too large to diff

+ test/writer/tex/mfracBalign16.test view

file too large to diff

+ test/writer/tex/mfracBheight17.test view

file too large to diff

+ test/writer/tex/mfracBhoriz11.test view

file too large to diff

+ test/writer/tex/mfracBvert12.test view

file too large to diff

+ test/writer/tex/mfracSfonts13.test view

file too large to diff

+ test/writer/tex/mfracSinheritance14.test view

file too large to diff

+ test/writer/tex/mfracSscriptlevel15.test view

file too large to diff

+ test/writer/tex/mfracZcomp-01.test view

file too large to diff

+ test/writer/tex/mfracZcomp-02.test view

file too large to diff

+ test/writer/tex/mfracZcomp-03.test view

file too large to diff

+ test/writer/tex/mfracZcomp-04.test view

file too large to diff

+ test/writer/tex/mfracZcomp-05.test view

file too large to diff

+ test/writer/tex/mfracZcomp-06.test view

file too large to diff

+ test/writer/tex/mfracZcomp-07.test view

file too large to diff

+ test/writer/tex/mfracZcomp-08.test view

file too large to diff

+ test/writer/tex/mfracZcomp-09.test view

file too large to diff

+ test/writer/tex/mfracZcomp-10.test view

file too large to diff

+ test/writer/tex/mfracZcomp-11.test view

file too large to diff

+ test/writer/tex/mfracZcomp-12.test view

file too large to diff

+ test/writer/tex/mfracZcomp-13.test view

file too large to diff

+ test/writer/tex/mfracZcomp-14.test view

file too large to diff

+ test/writer/tex/mfracZcomp-15.test view

file too large to diff

+ test/writer/tex/mfracZcomp-16.test view

file too large to diff

+ test/writer/tex/mfracZcomp-17.test view

file too large to diff

+ test/writer/tex/mfracZcomp-18.test view

file too large to diff

+ test/writer/tex/mfracZcomp-19.test view

file too large to diff

+ test/writer/tex/mfracZcomp-20.test view

file too large to diff

+ test/writer/tex/mfracZcomp-21.test view

file too large to diff

+ test/writer/tex/mfracZcomp-22.test view

file too large to diff

+ test/writer/tex/mfracZcomp-23.test view

file too large to diff

+ test/writer/tex/mfracZcomp-24.test view

file too large to diff

+ test/writer/tex/mfracZcomp-25.test view

file too large to diff

+ test/writer/tex/mfracZcomp-26.test view

file too large to diff

+ test/writer/tex/mfracZcomp-28.test view

file too large to diff

+ test/writer/tex/mfracZcomp-29.test view

file too large to diff

+ test/writer/tex/mfracZcomp-30.test view

file too large to diff

+ test/writer/tex/mfracZcomp-31.test view

file too large to diff

+ test/writer/tex/mfracZcomp-32.test view

file too large to diff

+ test/writer/tex/mfracZcomp-33.test view

file too large to diff

+ test/writer/tex/mi1.test view

file too large to diff

+ test/writer/tex/mi2.test view

file too large to diff

+ test/writer/tex/mi3.test view

file too large to diff

+ test/writer/tex/mi4.test view

file too large to diff

+ test/writer/tex/miAtoken5.test view

file too large to diff

+ test/writer/tex/miSfonts8.test view

file too large to diff

+ test/writer/tex/miSfontsize9.test view

file too large to diff

+ test/writer/tex/miSmathsize16.test view

file too large to diff

+ test/writer/tex/miSmathsize17.test view

file too large to diff

+ test/writer/tex/miStoken10.test view

file too large to diff

+ test/writer/tex/mid1.test view

file too large to diff

+ test/writer/tex/mid2.test view

file too large to diff

+ test/writer/tex/miequivalents11.test view

file too large to diff

+ test/writer/tex/mifontstyle12.test view

file too large to diff

+ test/writer/tex/mimathvariant13.test view

file too large to diff

+ test/writer/tex/mimathvariant14.test view

file too large to diff

+ test/writer/tex/mlabeledtrAside2.test view

file too large to diff

+ test/writer/tex/mn1.test view

file too large to diff

+ test/writer/tex/mn2.test view

file too large to diff

+ test/writer/tex/mn3.test view

file too large to diff

+ test/writer/tex/mn4.test view

file too large to diff

+ test/writer/tex/mnAtoken6.test view

file too large to diff

+ test/writer/tex/mnAtoken7.test view

file too large to diff

+ test/writer/tex/mnSdisplaystyle9.test view

file too large to diff

+ test/writer/tex/mnSfont10.test view

file too large to diff

+ test/writer/tex/mnSscriptlevel11.test view

file too large to diff

+ test/writer/tex/mo1.test view

file too large to diff

+ test/writer/tex/mo2.test view

file too large to diff

+ test/writer/tex/mo3.test view

file too large to diff

+ test/writer/tex/mo6.test view

file too large to diff

+ test/writer/tex/mo7.test view

file too large to diff

+ test/writer/tex/moAaccent10.test view

file too large to diff

+ test/writer/tex/moAaccent9.test view

file too large to diff

+ test/writer/tex/moAform11.test view

file too large to diff

+ test/writer/tex/moAlargeop12.test view

file too large to diff

+ test/writer/tex/moAlrspace13.test view

file too large to diff

+ test/writer/tex/moAmovable15.test view

file too large to diff

+ test/writer/tex/moAprime16.test view

file too large to diff

+ test/writer/tex/moAsep17.test view

file too large to diff

+ test/writer/tex/moAstretchy18.test view

file too large to diff

+ test/writer/tex/moAsymmetric19.test view

file too large to diff

+ test/writer/tex/moSminmax20.test view

file too large to diff

+ test/writer/tex/monospace.test view

file too large to diff

+ test/writer/tex/moore_determinant.test view

file too large to diff

+ test/writer/tex/mover-01.test view

file too large to diff

+ test/writer/tex/mover-02.test view

file too large to diff

+ test/writer/tex/mover-03.test view

file too large to diff

+ test/writer/tex/mover-04.test view

file too large to diff

+ test/writer/tex/mover-05.test view

file too large to diff

+ test/writer/tex/mover-06.test view

file too large to diff

+ test/writer/tex/mover-07.test view

file too large to diff

+ test/writer/tex/mover-08.test view

file too large to diff

+ test/writer/tex/mover-09.test view

file too large to diff

+ test/writer/tex/mover-10.test view

file too large to diff

+ test/writer/tex/mover-11.test view

file too large to diff

+ test/writer/tex/mover-12.test view

file too large to diff

+ test/writer/tex/mover1.test view

file too large to diff

+ test/writer/tex/mover2.test view

file too large to diff

+ test/writer/tex/mover3.test view

file too large to diff

+ test/writer/tex/mover4.test view

file too large to diff

+ test/writer/tex/mover5.test view

file too large to diff

+ test/writer/tex/mover6.test view

file too large to diff

+ test/writer/tex/mover7.test view

file too large to diff

+ test/writer/tex/mover8.test view

file too large to diff

+ test/writer/tex/mover9.test view

file too large to diff

+ test/writer/tex/mphantomB1.test view

file too large to diff

+ test/writer/tex/mphantomBinferred2.test view

file too large to diff

+ test/writer/tex/mphantomBoperators3.test view

file too large to diff

+ test/writer/tex/mphantomSinheritance5.test view

file too large to diff

+ test/writer/tex/mrootB1.test view

file too large to diff

+ test/writer/tex/mrootSfonts3.test view

file too large to diff

+ test/writer/tex/mrootSscriptlevel4.test view

file too large to diff

+ test/writer/tex/mrow-01.test view

file too large to diff

+ test/writer/tex/mrow-02.test view

file too large to diff

+ test/writer/tex/mrowAbg4.test view

file too large to diff

+ test/writer/tex/mrowBinferred2.test view

file too large to diff

+ test/writer/tex/ms-13.test view

file too large to diff

+ test/writer/tex/ms-14.test view

file too large to diff

+ test/writer/tex/ms-15.test view

file too large to diff

+ test/writer/tex/ms-16.test view

file too large to diff

+ test/writer/tex/ms1.test view

file too large to diff

+ test/writer/tex/msAdisplaystyle2.test view

file too large to diff

+ test/writer/tex/msAquotes3.test view

file too large to diff

+ test/writer/tex/msAtoken4.test view

file too large to diff

+ test/writer/tex/msAtoken5.test view

file too large to diff

+ test/writer/tex/msSinheritance7.test view

file too large to diff

+ test/writer/tex/msSinheritance8.test view

file too large to diff

+ test/writer/tex/mspace-01.test view

file too large to diff

+ test/writer/tex/mspace-02.test view

file too large to diff

+ test/writer/tex/mspace-03.test view

file too large to diff

+ test/writer/tex/mspace-04.test view

file too large to diff

+ test/writer/tex/mspace1.test view

file too large to diff

+ test/writer/tex/mspace2.test view

file too large to diff

+ test/writer/tex/mspaceAbreak3.test view

file too large to diff

+ test/writer/tex/mspacestruts2.test view

file too large to diff

+ test/writer/tex/msqrt-01.test view

file too large to diff

+ test/writer/tex/msqrt-02.test view

file too large to diff

+ test/writer/tex/msqrt-03.test view

file too large to diff

+ test/writer/tex/msqrt-04.test view

file too large to diff

+ test/writer/tex/msqrt-05.test view

file too large to diff

+ test/writer/tex/msqrt-06.test view

file too large to diff

+ test/writer/tex/msqrt-07.test view

file too large to diff

+ test/writer/tex/msqrt-08.test view

file too large to diff

+ test/writer/tex/msqrt5.test view

file too large to diff

+ test/writer/tex/msqrtB7.test view

file too large to diff

+ test/writer/tex/msqrtBimplied8.test view

file too large to diff

+ test/writer/tex/msqrtSinheritance9.test view

file too large to diff

+ test/writer/tex/mstyle1.test view

file too large to diff

+ test/writer/tex/mstyleA2.test view

file too large to diff

+ test/writer/tex/mstyleAlinethick1.test view

file too large to diff

+ test/writer/tex/mstyleAminscript1.test view

file too large to diff

+ test/writer/tex/mstyleAscriptlevel1.test view

file too large to diff

+ test/writer/tex/msub-01.test view

file too large to diff

+ test/writer/tex/msub-02.test view

file too large to diff

+ test/writer/tex/msub-03.test view

file too large to diff

+ test/writer/tex/msub-04.test view

file too large to diff

+ test/writer/tex/msub-05.test view

file too large to diff

+ test/writer/tex/msub-06.test view

file too large to diff

+ test/writer/tex/msub-07.test view

file too large to diff

+ test/writer/tex/msub-08.test view

file too large to diff

+ test/writer/tex/msub-09.test view

file too large to diff

+ test/writer/tex/msub-10.test view

file too large to diff

+ test/writer/tex/msub-11.test view

file too large to diff

+ test/writer/tex/msub-12.test view

file too large to diff

+ test/writer/tex/msub1.test view

file too large to diff

+ test/writer/tex/msubsup-01.test view

file too large to diff

+ test/writer/tex/msubsup-02.test view

file too large to diff

+ test/writer/tex/msubsup-03.test view

file too large to diff

+ test/writer/tex/msubsup-04.test view

file too large to diff

+ test/writer/tex/msubsup-05.test view

file too large to diff

+ test/writer/tex/msubsup-06.test view

file too large to diff

+ test/writer/tex/msubsup-07.test view

file too large to diff

+ test/writer/tex/msubsup-08.test view

file too large to diff

+ test/writer/tex/msubsup-09.test view

file too large to diff

+ test/writer/tex/msubsup-10.test view

file too large to diff

+ test/writer/tex/msubsup-11.test view

file too large to diff

+ test/writer/tex/msubsup-12.test view

file too large to diff

+ test/writer/tex/msubsup1.test view

file too large to diff

+ test/writer/tex/msubsupBsize1.test view

file too large to diff

+ test/writer/tex/msubsupBsize2.test view

file too large to diff

+ test/writer/tex/msup-01.test view

file too large to diff

+ test/writer/tex/msup-02.test view

file too large to diff

+ test/writer/tex/msup-03.test view

file too large to diff

+ test/writer/tex/msup-04.test view

file too large to diff

+ test/writer/tex/msup-05.test view

file too large to diff

+ test/writer/tex/msup-06.test view

file too large to diff

+ test/writer/tex/msup-07.test view

file too large to diff

+ test/writer/tex/msup-08.test view

file too large to diff

+ test/writer/tex/msup-09.test view

file too large to diff

+ test/writer/tex/msup-10.test view

file too large to diff

+ test/writer/tex/msup-11.test view

file too large to diff

+ test/writer/tex/msup-12.test view

file too large to diff

+ test/writer/tex/msup1.test view

file too large to diff

+ test/writer/tex/msup2.test view

file too large to diff

+ test/writer/tex/msupBnest1.test view

file too large to diff

+ test/writer/tex/msupBsize1.test view

file too large to diff

+ test/writer/tex/msupBsize2.test view

file too large to diff

+ test/writer/tex/msupBsize3.test view

file too large to diff

+ test/writer/tex/msupSadvance1.test view

file too large to diff

+ test/writer/tex/mtable-01.test view

file too large to diff

+ test/writer/tex/mtable-05.test view

file too large to diff

+ test/writer/tex/mtable-07.test view

file too large to diff

+ test/writer/tex/mtable-08.test view

file too large to diff

+ test/writer/tex/mtable-09.test view

file too large to diff

+ test/writer/tex/mtable-10.test view

file too large to diff

+ test/writer/tex/mtable-11.test view

file too large to diff

+ test/writer/tex/mtable-16.test view

file too large to diff

+ test/writer/tex/mtable2.test view

file too large to diff

+ test/writer/tex/mtableAalign2.test view

file too large to diff

+ test/writer/tex/mtableAalign3.test view

file too large to diff

+ test/writer/tex/mtableAgroupalign.test view

file too large to diff

+ test/writer/tex/mtableAlines2.test view

file too large to diff

+ test/writer/tex/mtableAspacing4.test view

file too large to diff

+ test/writer/tex/mtableAwidth2.test view

file too large to diff

+ test/writer/tex/mtableAwidth3.test view

file too large to diff

+ test/writer/tex/mtableBgap1.test view

file too large to diff

+ test/writer/tex/mtableBsize2.test view

file too large to diff

+ test/writer/tex/mtableBspan3.test view

file too large to diff

+ test/writer/tex/mtext2.test view

file too large to diff

+ test/writer/tex/mtextAtoken3.test view

file too large to diff

+ test/writer/tex/mtextStoken6.test view

file too large to diff

+ test/writer/tex/mtextspaces7.test view

file too large to diff

+ test/writer/tex/munder-01.test view

file too large to diff

+ test/writer/tex/munder-02.test view

file too large to diff

+ test/writer/tex/munder-03.test view

file too large to diff

+ test/writer/tex/munder-04.test view

file too large to diff

+ test/writer/tex/munder-05.test view

file too large to diff

+ test/writer/tex/munder-06.test view

file too large to diff

+ test/writer/tex/munder-07.test view

file too large to diff

+ test/writer/tex/munder-08.test view

file too large to diff

+ test/writer/tex/munder-09.test view

file too large to diff

+ test/writer/tex/munder-10.test view

file too large to diff

+ test/writer/tex/munder-11.test view

file too large to diff

+ test/writer/tex/munder-12.test view

file too large to diff

+ test/writer/tex/munder1.test view

file too large to diff

+ test/writer/tex/munder2.test view

file too large to diff

+ test/writer/tex/munder3.test view

file too large to diff

+ test/writer/tex/munder4.test view

file too large to diff

+ test/writer/tex/munder5.test view

file too large to diff

+ test/writer/tex/munder6.test view

file too large to diff

+ test/writer/tex/munder7.test view

file too large to diff

+ test/writer/tex/munder8.test view

file too large to diff

+ test/writer/tex/munder9.test view

file too large to diff

+ test/writer/tex/munderover-01.test view

file too large to diff

+ test/writer/tex/munderover-02.test view

file too large to diff

+ test/writer/tex/munderover-03.test view

file too large to diff

+ test/writer/tex/munderover-04.test view

file too large to diff

+ test/writer/tex/munderover-05.test view

file too large to diff

+ test/writer/tex/munderover-06.test view

file too large to diff

+ test/writer/tex/munderover-07.test view

file too large to diff

+ test/writer/tex/munderover-08.test view

file too large to diff

+ test/writer/tex/munderover-09.test view

file too large to diff

+ test/writer/tex/munderover-10.test view

file too large to diff

+ test/writer/tex/munderover-11.test view

file too large to diff

+ test/writer/tex/munderover-12.test view

file too large to diff

+ test/writer/tex/n.test view

file too large to diff

+ test/writer/tex/nestAction1.test view

file too large to diff

+ test/writer/tex/nestFrac1.test view

file too large to diff

+ test/writer/tex/nestScript.test view

file too large to diff

+ test/writer/tex/nestTable1.test view

file too large to diff

+ test/writer/tex/nestedAwidth1.test view

file too large to diff

+ test/writer/tex/notin.test view

file too large to diff

+ test/writer/tex/o.test view

file too large to diff

+ test/writer/tex/oint1.test view

file too large to diff

+ test/writer/tex/operatorname.test view

file too large to diff

+ test/writer/tex/p.test view

file too large to diff

+ test/writer/tex/phantom.test view

file too large to diff

+ test/writer/tex/primes1.test view

file too large to diff

+ test/writer/tex/primes2.test view

file too large to diff

+ test/writer/tex/prod2.test view

file too large to diff

+ test/writer/tex/q.test view

file too large to diff

+ test/writer/tex/r.test view

file too large to diff

+ test/writer/tex/rec-mlabeledtr.test view

file too large to diff

+ test/writer/tex/rec-mtable1.test view

file too large to diff

+ test/writer/tex/rec3-mphantom-1.test view

file too large to diff

+ test/writer/tex/s.test view

file too large to diff

+ test/writer/tex/sans-serif-bold-italic.test view

file too large to diff

+ test/writer/tex/sans-serif-bold.test view

file too large to diff

+ test/writer/tex/sans-serif-italic.test view

file too large to diff

+ test/writer/tex/sans-serif.test view

file too large to diff

+ test/writer/tex/schwinger_dyson.test view

file too large to diff

+ test/writer/tex/script-bold.test view

file too large to diff

+ test/writer/tex/script.test view

file too large to diff

+ test/writer/tex/semantics-01.test view

file too large to diff

+ test/writer/tex/semantics-03.test view

file too large to diff

+ test/writer/tex/serif-bold-italic.test view

file too large to diff

+ test/writer/tex/serif-bold.test view

file too large to diff

+ test/writer/tex/serif-italic.test view

file too large to diff

+ test/writer/tex/serif.test view

file too large to diff

+ test/writer/tex/simplePres.test view

file too large to diff

+ test/writer/tex/simple_sum_formula.test view

file too large to diff

+ test/writer/tex/sizeunits3.test view

file too large to diff

+ test/writer/tex/sizeunits4.test view

file too large to diff

+ test/writer/tex/sophomores_dream.test view

file too large to diff

+ test/writer/tex/span.test view

file too large to diff

+ test/writer/tex/sphere_volume.test view

file too large to diff

+ test/writer/tex/stackrel.test view

file too large to diff

+ test/writer/tex/stretchAccents1.test view

file too large to diff

+ test/writer/tex/stretchAccents2.test view

file too large to diff

+ test/writer/tex/stretchBrack1.test view

file too large to diff

+ test/writer/tex/stretchHoriz1.test view

file too large to diff

+ test/writer/tex/stretchHoriz2.test view

file too large to diff

+ test/writer/tex/stretchHoriz3.test view

file too large to diff

+ test/writer/tex/stretchTable1.test view

file too large to diff

+ test/writer/tex/stretchTable2.test view

file too large to diff

+ test/writer/tex/stretchTilde1.test view

file too large to diff

+ test/writer/tex/stretchVert1.test view

file too large to diff

+ test/writer/tex/stretchVert2.test view

file too large to diff

+ test/writer/tex/stretchVertNest2.test view

file too large to diff

+ test/writer/tex/style1.test view

file too large to diff

+ test/writer/tex/style2.test view

file too large to diff

+ test/writer/tex/substack.test view

file too large to diff

+ test/writer/tex/subsup.test view

file too large to diff

+ test/writer/tex/sum1.test view

file too large to diff

+ test/writer/tex/t.test view

file too large to diff

+ test/writer/tex/text.test view

file too large to diff

+ test/writer/tex/tokens.test view

file too large to diff

+ test/writer/tex/tripleint2.test view

file too large to diff

+ test/writer/tex/u.test view

file too large to diff

+ test/writer/tex/unicode.test view

file too large to diff

+ test/writer/tex/v.test view

file too large to diff

+ test/writer/tex/verbar2.test view

file too large to diff

+ test/writer/tex/w.test view

file too large to diff

+ test/writer/tex/whBcomments1.test view

file too large to diff

+ test/writer/tex/whBgeneral1.test view

file too large to diff

+ test/writer/tex/white1.test view

file too large to diff

+ test/writer/tex/white10.test view

file too large to diff

+ test/writer/tex/white2.test view

file too large to diff

+ test/writer/tex/white3.test view

file too large to diff

+ test/writer/tex/white4.test view

file too large to diff

+ test/writer/tex/white5.test view

file too large to diff

+ test/writer/tex/white6.test view

file too large to diff

+ test/writer/tex/white7.test view

file too large to diff

+ test/writer/tex/white8.test view

file too large to diff

+ test/writer/tex/white9.test view

file too large to diff

+ test/writer/tex/x.test view

file too large to diff

+ test/writer/tex/xmllang1.test view

file too large to diff

+ test/writer/tex/y.test view

file too large to diff

+ test/writer/tex/z.test view

file too large to diff

+ test/writer/typst/01.test view

file too large to diff

+ test/writer/typst/02.test view

file too large to diff

+ test/writer/typst/03.test view

file too large to diff

+ test/writer/typst/04.test view

file too large to diff

+ test/writer/typst/05.test view

file too large to diff

+ test/writer/typst/06.test view

file too large to diff

+ test/writer/typst/07.test view

file too large to diff

+ test/writer/typst/08.test view

file too large to diff

+ test/writer/typst/09.test view

file too large to diff

+ test/writer/typst/10.test view

file too large to diff

+ test/writer/typst/11.test view

file too large to diff

+ test/writer/typst/12.test view

file too large to diff

+ test/writer/typst/13.test view

file too large to diff

+ test/writer/typst/14.test view

file too large to diff

+ test/writer/typst/15.test view

file too large to diff

+ test/writer/typst/16.test view

file too large to diff

+ test/writer/typst/17.test view

file too large to diff

+ test/writer/typst/18.test view

file too large to diff

+ test/writer/typst/19.test view

file too large to diff

+ test/writer/typst/20.test view

file too large to diff

+ test/writer/typst/21.test view

file too large to diff

+ test/writer/typst/22.test view

file too large to diff

+ test/writer/typst/23.test view

file too large to diff

+ test/writer/typst/abs1.test view

file too large to diff

+ test/writer/typst/axiom_of_power_set.test view

file too large to diff

+ test/writer/typst/binomial_coefficient.test view

file too large to diff

+ test/writer/typst/boxed.test view

file too large to diff

+ test/writer/typst/cancel.test view

file too large to diff

+ test/writer/typst/chain2.test view

file too large to diff

+ test/writer/typst/choose.test view

file too large to diff

+ test/writer/typst/complex1.test view

file too large to diff

+ test/writer/typst/complex2.test view

file too large to diff

+ test/writer/typst/complex_number.test view

file too large to diff

+ test/writer/typst/coprod2.test view

file too large to diff

+ test/writer/typst/cospan.test view

file too large to diff

+ test/writer/typst/deMorgans_law.test view

file too large to diff

+ test/writer/typst/differentiable_manifold.test view

file too large to diff

+ test/writer/typst/divergence.test view

file too large to diff

+ test/writer/typst/double-struck.test view

file too large to diff

+ test/writer/typst/doubleint1.test view

file too large to diff

+ test/writer/typst/genfrac.test view

file too large to diff

+ test/writer/typst/largeop1.test view

file too large to diff

+ test/writer/typst/largeopPos3.test view

file too large to diff

+ test/writer/typst/math-in-text.test view

file too large to diff

+ test/writer/typst/moore_determinant.test view

file too large to diff

+ test/writer/typst/nestFrac1.test view

file too large to diff

+ test/writer/typst/nestScript.test view

file too large to diff

+ test/writer/typst/nestedAwidth1.test view

file too large to diff

+ test/writer/typst/notin.test view

file too large to diff

+ test/writer/typst/oint1.test view

file too large to diff

+ test/writer/typst/operatorname.test view

file too large to diff

+ test/writer/typst/phantom.test view

file too large to diff

+ test/writer/typst/primes1.test view

file too large to diff

+ test/writer/typst/primes2.test view

file too large to diff

+ test/writer/typst/prod2.test view

file too large to diff

+ test/writer/typst/schwinger_dyson.test view

file too large to diff

+ test/writer/typst/simple_sum_formula.test view

file too large to diff

+ test/writer/typst/sophomores_dream.test view

file too large to diff

+ test/writer/typst/span.test view

file too large to diff

+ test/writer/typst/sphere_volume.test view

file too large to diff

+ test/writer/typst/stackrel.test view

file too large to diff

+ test/writer/typst/substack.test view

file too large to diff

+ test/writer/typst/subsup.test view

file too large to diff

+ test/writer/typst/sum1.test view

file too large to diff

+ test/writer/typst/text.test view

file too large to diff

+ test/writer/typst/tripleint2.test view

file too large to diff

+ test/writer/typst/unicode.test view

file too large to diff

+ test/writer/typst/verbar2.test view

file too large to diff

− tests/readers/mml/00000_C0_Controls_and_Basic_Latin.native

file too large to diff

− tests/readers/mml/00080_C1_Controls_and_Latin-1_Supplement.native

file too large to diff

− tests/readers/mml/00100_Latin_Extended-A.native

file too large to diff

− tests/readers/mml/00180_Latin_Extended-B.native

file too large to diff

− tests/readers/mml/00250_IPA_Extensions.native

file too large to diff

− tests/readers/mml/002B0_Spacing_Modifier_Letters.native

file too large to diff

− tests/readers/mml/00300_Combining_Diacritical_Marks.native

file too large to diff

− tests/readers/mml/00370_Greek_and_Coptic.native

file too large to diff

− tests/readers/mml/00400_Cyrillic.native

file too large to diff

− tests/readers/mml/01E00_Latin_Extended_Additional.native

file too large to diff

− tests/readers/mml/01F00_Greek_Extended.native

file too large to diff

− tests/readers/mml/02000_General_Punctuation.native

file too large to diff

− tests/readers/mml/02070_Superscripts_and_Subscripts.native

file too large to diff

− tests/readers/mml/020A0_Currency_Symbols.native

file too large to diff

− tests/readers/mml/020D0_Combining_Diacritical_Marks_for_Symbols.native

file too large to diff

− tests/readers/mml/02100_Letterlike_Symbols.native

file too large to diff

− tests/readers/mml/02150_Number_Forms.native

file too large to diff

− tests/readers/mml/02190_Arrows.native

file too large to diff

− tests/readers/mml/02200_Mathematical_Operators.native

file too large to diff

− tests/readers/mml/02300_Miscellaneous_Technical.native

file too large to diff

− tests/readers/mml/02400_Control_Pictures.native

file too large to diff

− tests/readers/mml/02440_Optical_Character_Recognition.native

file too large to diff

− tests/readers/mml/02460_Enclosed_Alphanumerics.native

file too large to diff

− tests/readers/mml/02500_Box_Drawing.native

file too large to diff

− tests/readers/mml/02580_Block_Elements.native

file too large to diff

− tests/readers/mml/025A0_Geometric_Shapes.native

file too large to diff

− tests/readers/mml/02600_Miscellaneous_Symbols.native

file too large to diff

− tests/readers/mml/02700_Dingbats.native

file too large to diff

− tests/readers/mml/027C0_Miscellaneous_Mathematical_Symbols-A.native

file too large to diff

− tests/readers/mml/027F0_Supplemental_Arrows-A.native

file too large to diff

− tests/readers/mml/02900_Supplemental_Arrows-B.native

file too large to diff

− tests/readers/mml/02980_Miscellaneous_Mathematical_Symbols-B.native

file too large to diff

− tests/readers/mml/02A00_Supplemental_Mathematical_Operators.native

file too large to diff

− tests/readers/mml/02B00_Miscellaneous_Symbols_and_Arrows.native

file too large to diff

− tests/readers/mml/0FB00_Alphabetic_Presentation_Forms.native

file too large to diff

− tests/readers/mml/0FB50_Arabic_Presentation_Forms-A.native

file too large to diff

− tests/readers/mml/0FE00_Variation_Selectors.native

file too large to diff

− tests/readers/mml/0FE10_Vertical_Forms.native

file too large to diff

− tests/readers/mml/0FE20_Combining_Half_Marks.native

file too large to diff

− tests/readers/mml/0FE30_CJK_Compatibility_Forms.native

file too large to diff

− tests/readers/mml/0FE50_Small_Form_Variants.native

file too large to diff

− tests/readers/mml/0FE70_Arabic_Presentation_Forms-B.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_bold-script.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_bold.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_double-struck.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_fraktur.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_italic.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_monospace.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.native

file too large to diff

− tests/readers/mml/1D400_Mathematical_Alphanumeric_Symbols_script.native

file too large to diff

− tests/readers/mml/a.native

file too large to diff

− tests/readers/mml/abs1.native

file too large to diff

− tests/readers/mml/abs2.native

file too large to diff

− tests/readers/mml/accents1.native

file too large to diff

− tests/readers/mml/accents2.native

file too large to diff

− tests/readers/mml/accents3.native

file too large to diff

− tests/readers/mml/accents4.native

file too large to diff

− tests/readers/mml/accents5.native

file too large to diff

− tests/readers/mml/accents6.native

file too large to diff

− tests/readers/mml/attribQuote1.native

file too large to diff

− tests/readers/mml/b.native

file too large to diff

− tests/readers/mml/badAttribs2.native

file too large to diff

− tests/readers/mml/badAttribsAction.native

file too large to diff

− tests/readers/mml/badAttribsGlyph4.native

file too large to diff

− tests/readers/mml/badAttribsVal3.native

file too large to diff

− tests/readers/mml/badEntity1.native

file too large to diff

− tests/readers/mml/badTag1.error

file too large to diff

− tests/readers/mml/badTagPhantom2.error

file too large to diff

− tests/readers/mml/c.native

file too large to diff

− tests/readers/mml/chain1.native

file too large to diff

− tests/readers/mml/chain2.native

file too large to diff

− tests/readers/mml/class1.native

file too large to diff

− tests/readers/mml/class2.native

file too large to diff

− tests/readers/mml/clipboard1.native

file too large to diff

− tests/readers/mml/clipboard2.native

file too large to diff

− tests/readers/mml/complex1.native

file too large to diff

− tests/readers/mml/complex2.native

file too large to diff

− tests/readers/mml/complex3.native

file too large to diff

− tests/readers/mml/complex4.error

file too large to diff

− tests/readers/mml/coprod1.native

file too large to diff

− tests/readers/mml/coprod2.native

file too large to diff

− tests/readers/mml/d.native

file too large to diff

− tests/readers/mml/digamma.native

file too large to diff

− tests/readers/mml/digit-bold.native

file too large to diff

− tests/readers/mml/digit-double-struck.native

file too large to diff

− tests/readers/mml/digit-monospace.native

file too large to diff

− tests/readers/mml/digit-sans-serif-bold.native

file too large to diff

− tests/readers/mml/digit-sans-serif.native

file too large to diff

− tests/readers/mml/dotless.native

file too large to diff

− tests/readers/mml/double-struck.native

file too large to diff

− tests/readers/mml/doubleint1.native

file too large to diff

− tests/readers/mml/doubleint2.native

file too large to diff

− tests/readers/mml/e.native

file too large to diff

− tests/readers/mml/embStretch1.native

file too large to diff

− tests/readers/mml/emptyContent1.native

file too large to diff

− tests/readers/mml/f.native

file too large to diff

− tests/readers/mml/fraktur-bold.native

file too large to diff

− tests/readers/mml/fraktur.native

file too large to diff

− tests/readers/mml/g.native

file too large to diff

− tests/readers/mml/genBvert1.native

file too large to diff

− tests/readers/mml/greek-bold-italic.native

file too large to diff

− tests/readers/mml/greek-bold.native

file too large to diff

− tests/readers/mml/greek-italic.native

file too large to diff

− tests/readers/mml/greek-sans-serif-bold-italic.native

file too large to diff

− tests/readers/mml/greek-sans-serif-bold.native

file too large to diff

− tests/readers/mml/h.native

file too large to diff

− tests/readers/mml/href1.native

file too large to diff

− tests/readers/mml/href2.native

file too large to diff

− tests/readers/mml/href3.native

file too large to diff

− tests/readers/mml/i.native

file too large to diff

− tests/readers/mml/id1.native

file too large to diff

− tests/readers/mml/int1.native

file too large to diff

− tests/readers/mml/int10.native

file too large to diff

− tests/readers/mml/int2.native

file too large to diff

− tests/readers/mml/int3.native

file too large to diff

− tests/readers/mml/int4.native

file too large to diff

− tests/readers/mml/int5.native

file too large to diff

− tests/readers/mml/int6.native

file too large to diff

− tests/readers/mml/int7.native

file too large to diff

− tests/readers/mml/int8.native

file too large to diff

− tests/readers/mml/int9.native

file too large to diff

− tests/readers/mml/intDispStyle.native

file too large to diff

− tests/readers/mml/intNested3.native

file too large to diff

− tests/readers/mml/intSize1.native

file too large to diff

− tests/readers/mml/intSize2.native

file too large to diff

− tests/readers/mml/invChars.native

file too large to diff

− tests/readers/mml/j.native

file too large to diff

− tests/readers/mml/k.native

file too large to diff

− tests/readers/mml/l.native

file too large to diff

− tests/readers/mml/largeop1.native

file too large to diff

− tests/readers/mml/largeop2.native

file too large to diff

− tests/readers/mml/largeopPos3.native

file too large to diff

− tests/readers/mml/latin-bold-italic.native

file too large to diff

− tests/readers/mml/latin-bold.native

file too large to diff

− tests/readers/mml/latin-italic.native

file too large to diff

− tests/readers/mml/latin-sans-serif-bold-italic.native

file too large to diff

− tests/readers/mml/latin-sans-serif-bold.native

file too large to diff

− tests/readers/mml/latin-sans-serif-italic.native

file too large to diff

− tests/readers/mml/latin-sans-serif.native

file too large to diff

− tests/readers/mml/m.native

file too large to diff

− tests/readers/mml/m10.native

file too large to diff

− tests/readers/mml/m100.native

file too large to diff

− tests/readers/mml/m1000.native

file too large to diff

− tests/readers/mml/maction-01.native

file too large to diff

− tests/readers/mml/maction-02.native

file too large to diff

− tests/readers/mml/maction-03.native

file too large to diff

− tests/readers/mml/maction-04.native

file too large to diff

− tests/readers/mml/maction-05.native

file too large to diff

− tests/readers/mml/maction-06.native

file too large to diff

− tests/readers/mml/maction-07.native

file too large to diff

− tests/readers/mml/maction-08.native

file too large to diff

− tests/readers/mml/mactionBhigh1.native

file too large to diff

− tests/readers/mml/mactionBstatus1.native

file too large to diff

− tests/readers/mml/mactionBtoggle1.native

file too large to diff

− tests/readers/mml/mactionBtooltip1.native

file too large to diff

− tests/readers/mml/maligngroup1.native

file too large to diff

− tests/readers/mml/math1.native

file too large to diff

− tests/readers/mml/math3.native

file too large to diff

− tests/readers/mml/mathAdisplay1.native

file too large to diff

− tests/readers/mml/mathAdisplay2.native

file too large to diff

− tests/readers/mml/mathAmacros1.native

file too large to diff

− tests/readers/mml/mathAmode1.native

file too large to diff

− tests/readers/mml/mathBevelledFrac.native

file too large to diff

− tests/readers/mml/mathDir.native

file too large to diff

− tests/readers/mml/mathTable1.native

file too large to diff

− tests/readers/mml/merror-01.native

file too large to diff

− tests/readers/mml/merror1.native

file too large to diff

− tests/readers/mml/merrorB3.native

file too large to diff

− tests/readers/mml/mfenced-01.native

file too large to diff

− tests/readers/mml/mfenced-02.native

file too large to diff

− tests/readers/mml/mfenced-03.native

file too large to diff

− tests/readers/mml/mfenced-04.native

file too large to diff

− tests/readers/mml/mfenced-05.native

file too large to diff

− tests/readers/mml/mfenced-06.native

file too large to diff

− tests/readers/mml/mfenced-07.native

file too large to diff

− tests/readers/mml/mfenced-08.native

file too large to diff

− tests/readers/mml/mfenced1.native

file too large to diff

− tests/readers/mml/mfenced2.native

file too large to diff

− tests/readers/mml/mfenced3.native

file too large to diff

− tests/readers/mml/mfenced4.native

file too large to diff

− tests/readers/mml/mfenced5.native

file too large to diff

− tests/readers/mml/mfencedAdelims6.native

file too large to diff

− tests/readers/mml/mfencedAempty.native

file too large to diff

− tests/readers/mml/mfencedBfences7.native

file too large to diff

− tests/readers/mml/mfencedBseparators8.native

file too large to diff

− tests/readers/mml/mfencedSfonts9.native

file too large to diff

− tests/readers/mml/mfrac-01.native

file too large to diff

− tests/readers/mml/mfrac-02.native

file too large to diff

− tests/readers/mml/mfrac-03.native

file too large to diff

− tests/readers/mml/mfrac-04.native

file too large to diff

− tests/readers/mml/mfrac-05.native

file too large to diff

− tests/readers/mml/mfrac-06.native

file too large to diff

− tests/readers/mml/mfrac-07.native

file too large to diff

− tests/readers/mml/mfrac-08.native

file too large to diff

− tests/readers/mml/mfrac-09.native

file too large to diff

− tests/readers/mml/mfrac-10.native

file too large to diff

− tests/readers/mml/mfrac-11.native

file too large to diff

− tests/readers/mml/mfrac-12.native

file too large to diff

− tests/readers/mml/mfrac1.native

file too large to diff

− tests/readers/mml/mfrac2.native

file too large to diff

− tests/readers/mml/mfrac3.native

file too large to diff

− tests/readers/mml/mfrac4.native

file too large to diff

− tests/readers/mml/mfrac5.native

file too large to diff

− tests/readers/mml/mfrac6.native

file too large to diff

− tests/readers/mml/mfrac7.native

file too large to diff

− tests/readers/mml/mfracAbevelled16.native

file too large to diff

− tests/readers/mml/mfracAcss8.native

file too large to diff

− tests/readers/mml/mfracAkeyword9.native

file too large to diff

− tests/readers/mml/mfracAmultiplier10.native

file too large to diff

− tests/readers/mml/mfracBalign16.native

file too large to diff

− tests/readers/mml/mfracBheight17.native

file too large to diff

− tests/readers/mml/mfracBhoriz11.native

file too large to diff

− tests/readers/mml/mfracBvert12.native

file too large to diff

− tests/readers/mml/mfracSfonts13.native

file too large to diff

− tests/readers/mml/mfracSinheritance14.native

file too large to diff

− tests/readers/mml/mfracSscriptlevel15.native

file too large to diff

− tests/readers/mml/mfracZcomp-01.native

file too large to diff

− tests/readers/mml/mfracZcomp-02.native

file too large to diff

− tests/readers/mml/mfracZcomp-03.native

file too large to diff

− tests/readers/mml/mfracZcomp-04.native

file too large to diff

− tests/readers/mml/mfracZcomp-05.native

file too large to diff

− tests/readers/mml/mfracZcomp-06.native

file too large to diff

− tests/readers/mml/mfracZcomp-07.native

file too large to diff

− tests/readers/mml/mfracZcomp-08.native

file too large to diff

− tests/readers/mml/mfracZcomp-09.native

file too large to diff

− tests/readers/mml/mfracZcomp-10.native

file too large to diff

− tests/readers/mml/mfracZcomp-11.native

file too large to diff

− tests/readers/mml/mfracZcomp-12.native

file too large to diff

− tests/readers/mml/mfracZcomp-13.native

file too large to diff

− tests/readers/mml/mfracZcomp-14.native

file too large to diff

− tests/readers/mml/mfracZcomp-15.native

file too large to diff

− tests/readers/mml/mfracZcomp-16.native

file too large to diff

− tests/readers/mml/mfracZcomp-17.native

file too large to diff

− tests/readers/mml/mfracZcomp-18.native

file too large to diff

− tests/readers/mml/mfracZcomp-19.native

file too large to diff

− tests/readers/mml/mfracZcomp-20.native

file too large to diff

− tests/readers/mml/mfracZcomp-21.native

file too large to diff

− tests/readers/mml/mfracZcomp-22.native

file too large to diff

− tests/readers/mml/mfracZcomp-23.native

file too large to diff

− tests/readers/mml/mfracZcomp-24.native

file too large to diff

− tests/readers/mml/mfracZcomp-25.native

file too large to diff

− tests/readers/mml/mfracZcomp-26.native

file too large to diff

− tests/readers/mml/mfracZcomp-27.native

file too large to diff

− tests/readers/mml/mfracZcomp-28.native

file too large to diff

− tests/readers/mml/mfracZcomp-29.native

file too large to diff

− tests/readers/mml/mfracZcomp-30.native

file too large to diff

− tests/readers/mml/mfracZcomp-31.native

file too large to diff

− tests/readers/mml/mfracZcomp-32.native

file too large to diff

− tests/readers/mml/mfracZcomp-33.native

file too large to diff

− tests/readers/mml/mi1.native

file too large to diff

− tests/readers/mml/mi2.native

file too large to diff

− tests/readers/mml/mi3.native

file too large to diff

− tests/readers/mml/mi4.native

file too large to diff

− tests/readers/mml/miAtoken5.native

file too large to diff

− tests/readers/mml/miSfonts8.native

file too large to diff

− tests/readers/mml/miSfontsize9.native

file too large to diff

− tests/readers/mml/miSmathsize16.native

file too large to diff

− tests/readers/mml/miSmathsize17.native

file too large to diff

− tests/readers/mml/miStoken10.native

file too large to diff

− tests/readers/mml/mid1.native

file too large to diff

− tests/readers/mml/mid2.native

file too large to diff

− tests/readers/mml/miequivalents11.native

file too large to diff

− tests/readers/mml/mifontstyle12.native

file too large to diff

− tests/readers/mml/mimathvariant13.native

file too large to diff

− tests/readers/mml/mimathvariant14.native

file too large to diff

− tests/readers/mml/mlabeledtr1.native

file too large to diff

− tests/readers/mml/mlabeledtrAside1.native

file too large to diff

− tests/readers/mml/mlabeledtrAside2.native

file too large to diff

− tests/readers/mml/mn1.native

file too large to diff

− tests/readers/mml/mn2.native

file too large to diff

− tests/readers/mml/mn3.native

file too large to diff

− tests/readers/mml/mn4.native

file too large to diff

− tests/readers/mml/mnAtoken6.native

file too large to diff

− tests/readers/mml/mnAtoken7.native

file too large to diff

− tests/readers/mml/mnSdisplaystyle9.native

file too large to diff

− tests/readers/mml/mnSfont10.native

file too large to diff

− tests/readers/mml/mnSscriptlevel11.native

file too large to diff

− tests/readers/mml/mo1.native

file too large to diff

− tests/readers/mml/mo2.native

file too large to diff

− tests/readers/mml/mo3.native

file too large to diff

− tests/readers/mml/mo4.native

file too large to diff

− tests/readers/mml/mo5.native

file too large to diff

− tests/readers/mml/mo6.native

file too large to diff

− tests/readers/mml/mo7.native

file too large to diff

− tests/readers/mml/mo8.native

file too large to diff

− tests/readers/mml/moAaccent10.native

file too large to diff

− tests/readers/mml/moAaccent9.native

file too large to diff

− tests/readers/mml/moAform11.native

file too large to diff

− tests/readers/mml/moAlargeop12.native

file too large to diff

− tests/readers/mml/moAlrspace13.native

file too large to diff

− tests/readers/mml/moAminmax14.native

file too large to diff

− tests/readers/mml/moAmovable15.native

file too large to diff

− tests/readers/mml/moAprime16.native

file too large to diff

− tests/readers/mml/moAsep17.native

file too large to diff

− tests/readers/mml/moAstretchy18.native

file too large to diff

− tests/readers/mml/moAsymmetric19.native

file too large to diff

− tests/readers/mml/moSminmax20.native

file too large to diff

− tests/readers/mml/monospace.native

file too large to diff

− tests/readers/mml/mover-01.native

file too large to diff

− tests/readers/mml/mover-02.native

file too large to diff

− tests/readers/mml/mover-03.native

file too large to diff

− tests/readers/mml/mover-04.native

file too large to diff

− tests/readers/mml/mover-05.native

file too large to diff

− tests/readers/mml/mover-06.native

file too large to diff

− tests/readers/mml/mover-07.native

file too large to diff

− tests/readers/mml/mover-08.native

file too large to diff

− tests/readers/mml/mover-09.native

file too large to diff

− tests/readers/mml/mover-10.native

file too large to diff

− tests/readers/mml/mover-11.native

file too large to diff

− tests/readers/mml/mover-12.native

file too large to diff

− tests/readers/mml/mover1.native

file too large to diff

− tests/readers/mml/mover2.native

file too large to diff

− tests/readers/mml/mover3.native

file too large to diff

− tests/readers/mml/mover4.native

file too large to diff

− tests/readers/mml/mover5.native

file too large to diff

− tests/readers/mml/mover6.native

file too large to diff

− tests/readers/mml/mover7.native

file too large to diff

− tests/readers/mml/mover8.native

file too large to diff

− tests/readers/mml/mover9.native

file too large to diff

− tests/readers/mml/mphantomB1.native

file too large to diff

− tests/readers/mml/mphantomBinferred2.native

file too large to diff

− tests/readers/mml/mphantomBoperators3.native

file too large to diff

− tests/readers/mml/mphantomSinheritance5.native

file too large to diff

− tests/readers/mml/mrootB1.native

file too large to diff

− tests/readers/mml/mrootSfonts3.native

file too large to diff

− tests/readers/mml/mrootSscriptlevel4.native

file too large to diff

− tests/readers/mml/mrow-01.native

file too large to diff

− tests/readers/mml/mrow-02.native

file too large to diff

− tests/readers/mml/mrow1.native

file too large to diff

− tests/readers/mml/mrowAbg4.native

file too large to diff

− tests/readers/mml/mrowBinferred2.native

file too large to diff

− tests/readers/mml/mrowBnested3.native

file too large to diff

− tests/readers/mml/ms-11.native

file too large to diff

− tests/readers/mml/ms-12.native

file too large to diff

− tests/readers/mml/ms-13.native

file too large to diff

− tests/readers/mml/ms-14.native

file too large to diff

− tests/readers/mml/ms-15.native

file too large to diff

− tests/readers/mml/ms-16.native

file too large to diff

− tests/readers/mml/ms1.native

file too large to diff

− tests/readers/mml/msAdisplaystyle2.native

file too large to diff

− tests/readers/mml/msAquotes3.native

file too large to diff

− tests/readers/mml/msAtoken4.native

file too large to diff

− tests/readers/mml/msAtoken5.native

file too large to diff

− tests/readers/mml/msSinheritance7.native

file too large to diff

− tests/readers/mml/msSinheritance8.native

file too large to diff

− tests/readers/mml/mspace-01.native

file too large to diff

− tests/readers/mml/mspace-02.native

file too large to diff

− tests/readers/mml/mspace-03.native

file too large to diff

− tests/readers/mml/mspace-04.native

file too large to diff

− tests/readers/mml/mspace1.native

file too large to diff

− tests/readers/mml/mspace2.native

file too large to diff

− tests/readers/mml/mspaceAbreak3.native

file too large to diff

− tests/readers/mml/mspacestruts2.native

file too large to diff

− tests/readers/mml/msqrt-01.native

file too large to diff

− tests/readers/mml/msqrt-02.native

file too large to diff

− tests/readers/mml/msqrt-03.native

file too large to diff

− tests/readers/mml/msqrt-04.native

file too large to diff

− tests/readers/mml/msqrt-05.native

file too large to diff

− tests/readers/mml/msqrt-06.native

file too large to diff

− tests/readers/mml/msqrt-07.native

file too large to diff

− tests/readers/mml/msqrt-08.native

file too large to diff

− tests/readers/mml/msqrt5.native

file too large to diff

− tests/readers/mml/msqrt6.native

file too large to diff

− tests/readers/mml/msqrtB7.native

file too large to diff

− tests/readers/mml/msqrtBimplied8.native

file too large to diff

− tests/readers/mml/msqrtSinheritance9.native

file too large to diff

− tests/readers/mml/mstyle1.native

file too large to diff

− tests/readers/mml/mstyleA2.native

file too large to diff

− tests/readers/mml/mstyleAdep1.native

file too large to diff

− tests/readers/mml/mstyleAlinethick1.native

file too large to diff

− tests/readers/mml/mstyleAminscript1.native

file too large to diff

− tests/readers/mml/mstyleAscriptlevel1.native

file too large to diff

− tests/readers/mml/msub-01.native

file too large to diff

− tests/readers/mml/msub-02.native

file too large to diff

− tests/readers/mml/msub-03.native

file too large to diff

− tests/readers/mml/msub-04.native

file too large to diff

− tests/readers/mml/msub-05.native

file too large to diff

− tests/readers/mml/msub-06.native

file too large to diff

− tests/readers/mml/msub-07.native

file too large to diff

− tests/readers/mml/msub-08.native

file too large to diff

− tests/readers/mml/msub-09.native

file too large to diff

− tests/readers/mml/msub-10.native

file too large to diff

− tests/readers/mml/msub-11.native

file too large to diff

− tests/readers/mml/msub-12.native

file too large to diff

− tests/readers/mml/msub1.native

file too large to diff

− tests/readers/mml/msubsup-01.native

file too large to diff

− tests/readers/mml/msubsup-02.native

file too large to diff

− tests/readers/mml/msubsup-03.native

file too large to diff

− tests/readers/mml/msubsup-04.native

file too large to diff

− tests/readers/mml/msubsup-05.native

file too large to diff

− tests/readers/mml/msubsup-06.native

file too large to diff

− tests/readers/mml/msubsup-07.native

file too large to diff

− tests/readers/mml/msubsup-08.native

file too large to diff

− tests/readers/mml/msubsup-09.native

file too large to diff

− tests/readers/mml/msubsup-10.native

file too large to diff

− tests/readers/mml/msubsup-11.native

file too large to diff

− tests/readers/mml/msubsup-12.native

file too large to diff

− tests/readers/mml/msubsup1.native

file too large to diff

− tests/readers/mml/msubsupBsize1.native

file too large to diff

− tests/readers/mml/msubsupBsize2.native

file too large to diff

− tests/readers/mml/msup-01.native

file too large to diff

− tests/readers/mml/msup-02.native

file too large to diff

− tests/readers/mml/msup-03.native

file too large to diff

− tests/readers/mml/msup-04.native

file too large to diff

− tests/readers/mml/msup-05.native

file too large to diff

− tests/readers/mml/msup-06.native

file too large to diff

− tests/readers/mml/msup-07.native

file too large to diff

− tests/readers/mml/msup-08.native

file too large to diff

− tests/readers/mml/msup-09.native

file too large to diff

− tests/readers/mml/msup-10.native

file too large to diff

− tests/readers/mml/msup-11.native

file too large to diff

− tests/readers/mml/msup-12.native

file too large to diff

− tests/readers/mml/msup1.native

file too large to diff

− tests/readers/mml/msup2.native

file too large to diff

− tests/readers/mml/msupBnest1.native

file too large to diff

− tests/readers/mml/msupBsize1.native

file too large to diff

− tests/readers/mml/msupBsize2.native

file too large to diff

− tests/readers/mml/msupBsize3.native

file too large to diff

− tests/readers/mml/msupSadvance1.native

file too large to diff

− tests/readers/mml/mtable-01.native

file too large to diff

− tests/readers/mml/mtable-03.native

file too large to diff

− tests/readers/mml/mtable-04.native

file too large to diff

− tests/readers/mml/mtable-05.native

file too large to diff

− tests/readers/mml/mtable-06.native

file too large to diff

− tests/readers/mml/mtable-07.native

file too large to diff

− tests/readers/mml/mtable-08.native

file too large to diff

− tests/readers/mml/mtable-09.native

file too large to diff

− tests/readers/mml/mtable-10.native

file too large to diff

− tests/readers/mml/mtable-11.native

file too large to diff

− tests/readers/mml/mtable-12.native

file too large to diff

− tests/readers/mml/mtable-13.native

file too large to diff

− tests/readers/mml/mtable-14.native

file too large to diff

− tests/readers/mml/mtable-15.native

file too large to diff

− tests/readers/mml/mtable-16.native

file too large to diff

− tests/readers/mml/mtable2.native

file too large to diff

− tests/readers/mml/mtableAalign1.native

file too large to diff

− tests/readers/mml/mtableAalign2.native

file too large to diff

− tests/readers/mml/mtableAalign3.native

file too large to diff

− tests/readers/mml/mtableAframe1.native

file too large to diff

− tests/readers/mml/mtableAframe2.native

file too large to diff

− tests/readers/mml/mtableAgroupalign.native

file too large to diff

− tests/readers/mml/mtableAlines1.native

file too large to diff

− tests/readers/mml/mtableAlines2.native

file too large to diff

− tests/readers/mml/mtableAspacing1.native

file too large to diff

− tests/readers/mml/mtableAspacing2.native

file too large to diff

− tests/readers/mml/mtableAspacing3.native

file too large to diff

− tests/readers/mml/mtableAspacing4.native

file too large to diff

− tests/readers/mml/mtableAwidth1.native

file too large to diff

− tests/readers/mml/mtableAwidth2.native

file too large to diff

− tests/readers/mml/mtableAwidth3.native

file too large to diff

− tests/readers/mml/mtableAwidth4.native

file too large to diff

− tests/readers/mml/mtableBgap1.native

file too large to diff

− tests/readers/mml/mtableBsize1.native

file too large to diff

− tests/readers/mml/mtableBsize2.native

file too large to diff

− tests/readers/mml/mtableBspan3.native

file too large to diff

− tests/readers/mml/mtext1.native

file too large to diff

− tests/readers/mml/mtext2.native

file too large to diff

− tests/readers/mml/mtextAtoken3.native

file too large to diff

− tests/readers/mml/mtextSbg4.native

file too large to diff

− tests/readers/mml/mtextStoken6.native

file too large to diff

− tests/readers/mml/mtextspaces7.native

file too large to diff

− tests/readers/mml/munder-01.native

file too large to diff

− tests/readers/mml/munder-02.native

file too large to diff

− tests/readers/mml/munder-03.native

file too large to diff

− tests/readers/mml/munder-04.native

file too large to diff

− tests/readers/mml/munder-05.native

file too large to diff

− tests/readers/mml/munder-06.native

file too large to diff

− tests/readers/mml/munder-07.native

file too large to diff

− tests/readers/mml/munder-08.native

file too large to diff

− tests/readers/mml/munder-09.native

file too large to diff

− tests/readers/mml/munder-10.native

file too large to diff

− tests/readers/mml/munder-11.native

file too large to diff

− tests/readers/mml/munder-12.native

file too large to diff

− tests/readers/mml/munder1.native

file too large to diff

− tests/readers/mml/munder2.native

file too large to diff

− tests/readers/mml/munder3.native

file too large to diff

− tests/readers/mml/munder4.native

file too large to diff

− tests/readers/mml/munder5.native

file too large to diff

− tests/readers/mml/munder6.native

file too large to diff

− tests/readers/mml/munder7.native

file too large to diff

− tests/readers/mml/munder8.native

file too large to diff

− tests/readers/mml/munder9.native

file too large to diff

− tests/readers/mml/munderover-01.native

file too large to diff

− tests/readers/mml/munderover-02.native

file too large to diff

− tests/readers/mml/munderover-03.native

file too large to diff

− tests/readers/mml/munderover-04.native

file too large to diff

− tests/readers/mml/munderover-05.native

file too large to diff

− tests/readers/mml/munderover-06.native

file too large to diff

− tests/readers/mml/munderover-07.native

file too large to diff

− tests/readers/mml/munderover-08.native

file too large to diff

− tests/readers/mml/munderover-09.native

file too large to diff

− tests/readers/mml/munderover-10.native

file too large to diff

− tests/readers/mml/munderover-11.native

file too large to diff

− tests/readers/mml/munderover-12.native

file too large to diff

− tests/readers/mml/n.native

file too large to diff

− tests/readers/mml/nestAction1.native

file too large to diff

− tests/readers/mml/nestFrac1.native

file too large to diff

− tests/readers/mml/nestScript.native

file too large to diff

− tests/readers/mml/nestTable1.native

file too large to diff

− tests/readers/mml/nestedAwidth1.native

file too large to diff

− tests/readers/mml/nestedMath3.error

file too large to diff

− tests/readers/mml/o.native

file too large to diff

− tests/readers/mml/oint1.native

file too large to diff

− tests/readers/mml/oint2.native

file too large to diff

− tests/readers/mml/p.native

file too large to diff

− tests/readers/mml/primes1.native

file too large to diff

− tests/readers/mml/primes2.native

file too large to diff

− tests/readers/mml/prod1.native

file too large to diff

− tests/readers/mml/prod2.native

file too large to diff

− tests/readers/mml/q.native

file too large to diff

− tests/readers/mml/r.native

file too large to diff

− tests/readers/mml/rec-mlabeledtr.native

file too large to diff

− tests/readers/mml/rec-mtable1.native

file too large to diff

− tests/readers/mml/rec3-mphantom-1.native

file too large to diff

− tests/readers/mml/s.native

file too large to diff

− tests/readers/mml/sans-serif-bold-italic.native

file too large to diff

− tests/readers/mml/sans-serif-bold.native

file too large to diff

− tests/readers/mml/sans-serif-italic.native

file too large to diff

− tests/readers/mml/sans-serif.native

file too large to diff

− tests/readers/mml/script-bold.native

file too large to diff

− tests/readers/mml/script.native

file too large to diff

− tests/readers/mml/semantics-01.native

file too large to diff

− tests/readers/mml/semantics-02.native

file too large to diff

− tests/readers/mml/semantics-03.native

file too large to diff

− tests/readers/mml/semantics-04.native

file too large to diff

− tests/readers/mml/serif-bold-italic.native

file too large to diff

− tests/readers/mml/serif-bold.native

file too large to diff

− tests/readers/mml/serif-italic.native

file too large to diff

− tests/readers/mml/serif.native

file too large to diff

− tests/readers/mml/simplePres.native

file too large to diff

− tests/readers/mml/sizeunits3.native

file too large to diff

− tests/readers/mml/sizeunits4.native

file too large to diff

− tests/readers/mml/stretchAccents1.native

file too large to diff

− tests/readers/mml/stretchAccents2.native

file too large to diff

− tests/readers/mml/stretchBrack1.native

file too large to diff

− tests/readers/mml/stretchHoriz1.native

file too large to diff

− tests/readers/mml/stretchHoriz2.native

file too large to diff

− tests/readers/mml/stretchHoriz3.native

file too large to diff

− tests/readers/mml/stretchTable1.native

file too large to diff

− tests/readers/mml/stretchTable2.native

file too large to diff

− tests/readers/mml/stretchTilde1.native

file too large to diff

− tests/readers/mml/stretchVert1.native

file too large to diff

− tests/readers/mml/stretchVert2.native

file too large to diff

− tests/readers/mml/stretchVertNest2.native

file too large to diff

− tests/readers/mml/style1.native

file too large to diff

− tests/readers/mml/style2.native

file too large to diff

− tests/readers/mml/sum1.native

file too large to diff

− tests/readers/mml/sum2.native

file too large to diff

− tests/readers/mml/t.native

file too large to diff

− tests/readers/mml/tripleint1.native

file too large to diff

− tests/readers/mml/tripleint2.native

file too large to diff

− tests/readers/mml/u.native

file too large to diff

− tests/readers/mml/v.native

file too large to diff

− tests/readers/mml/verbar1.native

file too large to diff

− tests/readers/mml/verbar2.native

file too large to diff

− tests/readers/mml/w.native

file too large to diff

− tests/readers/mml/whBcomments1.native

file too large to diff

− tests/readers/mml/whBgeneral1.native

file too large to diff

− tests/readers/mml/white1.native

file too large to diff

− tests/readers/mml/white10.native

file too large to diff

− tests/readers/mml/white2.native

file too large to diff

− tests/readers/mml/white3.native

file too large to diff

− tests/readers/mml/white4.native

file too large to diff

− tests/readers/mml/white5.native

file too large to diff

− tests/readers/mml/white6.native

file too large to diff

− tests/readers/mml/white7.native

file too large to diff

− tests/readers/mml/white8.native

file too large to diff

− tests/readers/mml/white9.native

file too large to diff

− tests/readers/mml/x.native

file too large to diff

− tests/readers/mml/xmllang1.native

file too large to diff

− tests/readers/mml/xref1.native

file too large to diff

− tests/readers/mml/y.native

file too large to diff

− tests/readers/mml/z.native

file too large to diff

− tests/readers/omml/01.native

file too large to diff

− tests/readers/omml/02.native

file too large to diff

− tests/readers/omml/03.native

file too large to diff

− tests/readers/omml/04.native

file too large to diff

− tests/readers/omml/05.native

file too large to diff

− tests/readers/omml/06.native

file too large to diff

− tests/readers/omml/07.native

file too large to diff

− tests/readers/omml/08.native

file too large to diff

− tests/readers/omml/09.native

file too large to diff

− tests/readers/omml/10.native

file too large to diff

− tests/readers/omml/11.native

file too large to diff

− tests/readers/omml/12.native

file too large to diff

− tests/readers/omml/13.native

file too large to diff

− tests/readers/omml/14.native

file too large to diff

− tests/readers/omml/15.native

file too large to diff

− tests/readers/omml/16.native

file too large to diff

− tests/readers/omml/17.native

file too large to diff

− tests/readers/omml/18.native

file too large to diff

− tests/readers/omml/19.native

file too large to diff

− tests/readers/omml/20.native

file too large to diff

− tests/readers/omml/21.native

file too large to diff

− tests/readers/omml/22.native

file too large to diff

− tests/readers/omml/axiom_of_power_set.native

file too large to diff

− tests/readers/omml/binomial_coefficient.native

file too large to diff

− tests/readers/omml/boxed.native

file too large to diff

− tests/readers/omml/choose.native

file too large to diff

− tests/readers/omml/complex_number.native

file too large to diff

− tests/readers/omml/deMorgans_law.native

file too large to diff

− tests/readers/omml/differentiable_manifold.native

file too large to diff

− tests/readers/omml/divergence.native

file too large to diff

− tests/readers/omml/ensuremath.native

file too large to diff

− tests/readers/omml/genfrac.native

file too large to diff

− tests/readers/omml/issue112.native

file too large to diff

− tests/readers/omml/labels.native

file too large to diff

− tests/readers/omml/macros.native

file too large to diff

− tests/readers/omml/moore_determinant.native

file too large to diff

− tests/readers/omml/notin.native

file too large to diff

− tests/readers/omml/operatorname.native

file too large to diff

− tests/readers/omml/phantom.native

file too large to diff

− tests/readers/omml/quadratic_formula.native

file too large to diff

− tests/readers/omml/schwinger_dyson.native

file too large to diff

− tests/readers/omml/sophomores_dream.native

file too large to diff

− tests/readers/omml/sphere_volume.native

file too large to diff

− tests/readers/omml/stackrel.native

file too large to diff

− tests/readers/omml/substack.native

file too large to diff

− tests/readers/omml/subsup.native

file too large to diff

− tests/readers/omml/text.native

file too large to diff

− tests/readers/omml/tokens.native

file too large to diff

− tests/readers/omml/unicode.native

file too large to diff

− tests/readers/tex/01.native

file too large to diff

− tests/readers/tex/02.native

file too large to diff

− tests/readers/tex/03.native

file too large to diff

− tests/readers/tex/04.native

file too large to diff

− tests/readers/tex/05.native

file too large to diff

− tests/readers/tex/06.native

file too large to diff

− tests/readers/tex/07.native

file too large to diff

− tests/readers/tex/08.native

file too large to diff

− tests/readers/tex/09.native

file too large to diff

− tests/readers/tex/10.native

file too large to diff

− tests/readers/tex/11.native

file too large to diff

− tests/readers/tex/12.native

file too large to diff

− tests/readers/tex/13.native

file too large to diff

− tests/readers/tex/14.native

file too large to diff

− tests/readers/tex/15.native

file too large to diff

− tests/readers/tex/16.native

file too large to diff

− tests/readers/tex/17.native

file too large to diff

− tests/readers/tex/18.native

file too large to diff

− tests/readers/tex/19.native

file too large to diff

− tests/readers/tex/20.native

file too large to diff

− tests/readers/tex/21.native

file too large to diff

− tests/readers/tex/22.native

file too large to diff

− tests/readers/tex/23.native

file too large to diff

− tests/readers/tex/axiom_of_power_set.native

file too large to diff

− tests/readers/tex/binomial_coefficient.native

file too large to diff

− tests/readers/tex/boxed.native

file too large to diff

− tests/readers/tex/choose.native

file too large to diff

− tests/readers/tex/complex_number.native

file too large to diff

− tests/readers/tex/deMorgans_law.native

file too large to diff

− tests/readers/tex/differentiable_manifold.native

file too large to diff

− tests/readers/tex/divergence.native

file too large to diff

− tests/readers/tex/ensuremath.native

file too large to diff

− tests/readers/tex/genfrac.native

file too large to diff

− tests/readers/tex/issue109.native

file too large to diff

− tests/readers/tex/labels.native

file too large to diff

− tests/readers/tex/macros.native

file too large to diff

− tests/readers/tex/math-in-text.native

file too large to diff

− tests/readers/tex/moore_determinant.native

file too large to diff

− tests/readers/tex/notin.native

file too large to diff

− tests/readers/tex/operatorname.native

file too large to diff

− tests/readers/tex/phantom.native

file too large to diff

− tests/readers/tex/quadratic_formula.native

file too large to diff

− tests/readers/tex/schwinger_dyson.native

file too large to diff

− tests/readers/tex/simple_sum_formula.native

file too large to diff

− tests/readers/tex/sophomores_dream.native

file too large to diff

− tests/readers/tex/sphere_volume.native

file too large to diff

− tests/readers/tex/stackrel.native

file too large to diff

− tests/readers/tex/substack.native

file too large to diff

− tests/readers/tex/subsup.native

file too large to diff

− tests/readers/tex/text.native

file too large to diff

− tests/readers/tex/tokens.native

file too large to diff

− tests/readers/tex/unicode.native

file too large to diff

− tests/src/00000_C0_Controls_and_Basic_Latin.mml

file too large to diff

− tests/src/00080_C1_Controls_and_Latin-1_Supplement.mml

file too large to diff

− tests/src/00100_Latin_Extended-A.mml

file too large to diff

− tests/src/00180_Latin_Extended-B.mml

file too large to diff

− tests/src/00250_IPA_Extensions.mml

file too large to diff

− tests/src/002B0_Spacing_Modifier_Letters.mml

file too large to diff

− tests/src/00300_Combining_Diacritical_Marks.mml

file too large to diff

− tests/src/00370_Greek_and_Coptic.mml

file too large to diff

− tests/src/00400_Cyrillic.mml

file too large to diff

− tests/src/01.omml

file too large to diff

− tests/src/01.tex

file too large to diff

− tests/src/01E00_Latin_Extended_Additional.mml

file too large to diff

− tests/src/01F00_Greek_Extended.mml

file too large to diff

− tests/src/02.omml

file too large to diff

− tests/src/02.tex

file too large to diff

− tests/src/02000_General_Punctuation.mml

file too large to diff

− tests/src/02070_Superscripts_and_Subscripts.mml

file too large to diff

− tests/src/020A0_Currency_Symbols.mml

file too large to diff

− tests/src/020D0_Combining_Diacritical_Marks_for_Symbols.mml

file too large to diff

− tests/src/02100_Letterlike_Symbols.mml

file too large to diff

− tests/src/02150_Number_Forms.mml

file too large to diff

− tests/src/02190_Arrows.mml

file too large to diff

− tests/src/02200_Mathematical_Operators.mml

file too large to diff

− tests/src/02300_Miscellaneous_Technical.mml

file too large to diff

− tests/src/02400_Control_Pictures.mml

file too large to diff

− tests/src/02440_Optical_Character_Recognition.mml

file too large to diff

− tests/src/02460_Enclosed_Alphanumerics.mml

file too large to diff

− tests/src/02500_Box_Drawing.mml

file too large to diff

− tests/src/02580_Block_Elements.mml

file too large to diff

− tests/src/025A0_Geometric_Shapes.mml

file too large to diff

− tests/src/02600_Miscellaneous_Symbols.mml

file too large to diff

− tests/src/02700_Dingbats.mml

file too large to diff

− tests/src/027C0_Miscellaneous_Mathematical_Symbols-A.mml

file too large to diff

− tests/src/027F0_Supplemental_Arrows-A.mml

file too large to diff

− tests/src/02900_Supplemental_Arrows-B.mml

file too large to diff

− tests/src/02980_Miscellaneous_Mathematical_Symbols-B.mml

file too large to diff

− tests/src/02A00_Supplemental_Mathematical_Operators.mml

file too large to diff

− tests/src/02B00_Miscellaneous_Symbols_and_Arrows.mml

file too large to diff

− tests/src/03.omml

file too large to diff

− tests/src/03.tex

file too large to diff

− tests/src/04.omml

file too large to diff

− tests/src/04.tex

file too large to diff

− tests/src/05.omml

file too large to diff

− tests/src/05.tex

file too large to diff

− tests/src/06.omml

file too large to diff

− tests/src/06.tex

file too large to diff

− tests/src/07.omml

file too large to diff

− tests/src/07.tex

file too large to diff

− tests/src/08.omml

file too large to diff

− tests/src/08.tex

file too large to diff

− tests/src/09.omml

file too large to diff

− tests/src/09.tex

file too large to diff

− tests/src/0FB00_Alphabetic_Presentation_Forms.mml

file too large to diff

− tests/src/0FB50_Arabic_Presentation_Forms-A.mml

file too large to diff

− tests/src/0FE00_Variation_Selectors.mml

file too large to diff

− tests/src/0FE10_Vertical_Forms.mml

file too large to diff

− tests/src/0FE20_Combining_Half_Marks.mml

file too large to diff

− tests/src/0FE30_CJK_Compatibility_Forms.mml

file too large to diff

− tests/src/0FE50_Small_Form_Variants.mml

file too large to diff

− tests/src/0FE70_Arabic_Presentation_Forms-B.mml

file too large to diff

− tests/src/10.omml

file too large to diff

− tests/src/10.tex

file too large to diff

− tests/src/11.omml

file too large to diff

− tests/src/11.tex

file too large to diff

− tests/src/12.omml

file too large to diff

− tests/src/12.tex

file too large to diff

− tests/src/13.omml

file too large to diff

− tests/src/13.tex

file too large to diff

− tests/src/14.omml

file too large to diff

− tests/src/14.tex

file too large to diff

− tests/src/15.omml

file too large to diff

− tests/src/15.tex

file too large to diff

− tests/src/16.omml

file too large to diff

− tests/src/16.tex

file too large to diff

− tests/src/17.omml

file too large to diff

− tests/src/17.tex

file too large to diff

− tests/src/18.omml

file too large to diff

− tests/src/18.tex

file too large to diff

− tests/src/19.omml

file too large to diff

− tests/src/19.tex

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_bold-script.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_bold.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_double-struck.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_fraktur.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_italic.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_monospace.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.mml

file too large to diff

− tests/src/1D400_Mathematical_Alphanumeric_Symbols_script.mml

file too large to diff

− tests/src/20.omml

file too large to diff

− tests/src/20.tex

file too large to diff

− tests/src/21.omml

file too large to diff

− tests/src/21.tex

file too large to diff

− tests/src/22.omml

file too large to diff

− tests/src/22.tex

file too large to diff

− tests/src/23.tex

file too large to diff

− tests/src/a.mml

file too large to diff

− tests/src/abs1.mml

file too large to diff

− tests/src/abs2.mml

file too large to diff

− tests/src/accents1.mml

file too large to diff

− tests/src/accents2.mml

file too large to diff

− tests/src/accents3.mml

file too large to diff

− tests/src/accents4.mml

file too large to diff

− tests/src/accents5.mml

file too large to diff

− tests/src/accents6.mml

file too large to diff

− tests/src/attribQuote1.mml

file too large to diff

− tests/src/axiom_of_power_set.omml

file too large to diff

− tests/src/axiom_of_power_set.tex

file too large to diff

− tests/src/b.mml

file too large to diff

− tests/src/badAttribs2.mml

file too large to diff

− tests/src/badAttribsAction.mml

file too large to diff

− tests/src/badAttribsGlyph4.mml

file too large to diff

− tests/src/badAttribsVal3.mml

file too large to diff

− tests/src/badEntity1.mml

file too large to diff

− tests/src/badTag1.mml

file too large to diff

− tests/src/badTagPhantom2.mml

file too large to diff

− tests/src/binomial_coefficient.omml

file too large to diff

− tests/src/binomial_coefficient.tex

file too large to diff

− tests/src/boxed.omml

file too large to diff

− tests/src/boxed.tex

file too large to diff

− tests/src/c.mml

file too large to diff

− tests/src/chain1.mml

file too large to diff

− tests/src/chain2.mml

file too large to diff

− tests/src/choose.omml

file too large to diff

− tests/src/choose.tex

file too large to diff

− tests/src/class1.mml

file too large to diff

− tests/src/class2.mml

file too large to diff

− tests/src/clipboard1.mml

file too large to diff

− tests/src/clipboard2.mml

file too large to diff

− tests/src/complex1.mml

file too large to diff

− tests/src/complex2.mml

file too large to diff

− tests/src/complex3.mml

file too large to diff

− tests/src/complex4.mml

file too large to diff

− tests/src/complex_number.omml

file too large to diff

− tests/src/complex_number.tex

file too large to diff

− tests/src/coprod1.mml

file too large to diff

− tests/src/coprod2.mml

file too large to diff

− tests/src/d.mml

file too large to diff

− tests/src/deMorgans_law.omml

file too large to diff

− tests/src/deMorgans_law.tex

file too large to diff

− tests/src/differentiable_manifold.omml

file too large to diff

− tests/src/differentiable_manifold.tex

file too large to diff

− tests/src/digamma.mml

file too large to diff

− tests/src/digit-bold.mml

file too large to diff

− tests/src/digit-double-struck.mml

file too large to diff

− tests/src/digit-monospace.mml

file too large to diff

− tests/src/digit-sans-serif-bold.mml

file too large to diff

− tests/src/digit-sans-serif.mml

file too large to diff

− tests/src/divergence.omml

file too large to diff

− tests/src/divergence.tex

file too large to diff

− tests/src/dotless.mml

file too large to diff

− tests/src/double-struck.mml

file too large to diff

− tests/src/doubleint1.mml

file too large to diff

− tests/src/doubleint2.mml

file too large to diff

− tests/src/e.mml

file too large to diff

− tests/src/embStretch1.mml

file too large to diff

− tests/src/emptyContent1.mml

file too large to diff

− tests/src/ensuremath.omml

file too large to diff

− tests/src/ensuremath.tex

file too large to diff

− tests/src/f.mml

file too large to diff

− tests/src/fraktur-bold.mml

file too large to diff

− tests/src/fraktur.mml

file too large to diff

− tests/src/g.mml

file too large to diff

− tests/src/genBvert1.mml

file too large to diff

− tests/src/genfrac.omml

file too large to diff

− tests/src/genfrac.tex

file too large to diff

− tests/src/greek-bold-italic.mml

file too large to diff

− tests/src/greek-bold.mml

file too large to diff

− tests/src/greek-italic.mml

file too large to diff

− tests/src/greek-sans-serif-bold-italic.mml

file too large to diff

− tests/src/greek-sans-serif-bold.mml

file too large to diff

− tests/src/h.mml

file too large to diff

− tests/src/href1.mml

file too large to diff

− tests/src/href2.mml

file too large to diff

− tests/src/href3.mml

file too large to diff

− tests/src/i.mml

file too large to diff

− tests/src/id1.mml

file too large to diff

− tests/src/int1.mml

file too large to diff

− tests/src/int10.mml

file too large to diff

− tests/src/int2.mml

file too large to diff

− tests/src/int3.mml

file too large to diff

− tests/src/int4.mml

file too large to diff

− tests/src/int5.mml

file too large to diff

− tests/src/int6.mml

file too large to diff

− tests/src/int7.mml

file too large to diff

− tests/src/int8.mml

file too large to diff

− tests/src/int9.mml

file too large to diff

− tests/src/intDispStyle.mml

file too large to diff

− tests/src/intNested3.mml

file too large to diff

− tests/src/intSize1.mml

file too large to diff

− tests/src/intSize2.mml

file too large to diff

− tests/src/invChars.mml

file too large to diff

− tests/src/issue109.tex

file too large to diff

− tests/src/issue112.omml

file too large to diff

− tests/src/j.mml

file too large to diff

− tests/src/k.mml

file too large to diff

− tests/src/l.mml

file too large to diff

− tests/src/labels.omml

file too large to diff

− tests/src/labels.tex

file too large to diff

− tests/src/largeop1.mml

file too large to diff

− tests/src/largeop2.mml

file too large to diff

− tests/src/largeopPos3.mml

file too large to diff

− tests/src/latin-bold-italic.mml

file too large to diff

− tests/src/latin-bold.mml

file too large to diff

− tests/src/latin-italic.mml

file too large to diff

− tests/src/latin-sans-serif-bold-italic.mml

file too large to diff

− tests/src/latin-sans-serif-bold.mml

file too large to diff

− tests/src/latin-sans-serif-italic.mml

file too large to diff

− tests/src/latin-sans-serif.mml

file too large to diff

− tests/src/m.mml

file too large to diff

− tests/src/m10.mml

file too large to diff

− tests/src/m100.mml

file too large to diff

− tests/src/m1000.mml

file too large to diff

− tests/src/macros.omml

file too large to diff

− tests/src/macros.tex

file too large to diff

− tests/src/maction-01.mml

file too large to diff

− tests/src/maction-02.mml

file too large to diff

− tests/src/maction-03.mml

file too large to diff

− tests/src/maction-04.mml

file too large to diff

− tests/src/maction-05.mml

file too large to diff

− tests/src/maction-06.mml

file too large to diff

− tests/src/maction-07.mml

file too large to diff

− tests/src/maction-08.mml

file too large to diff

− tests/src/mactionBhigh1.mml

file too large to diff

− tests/src/mactionBstatus1.mml

file too large to diff

− tests/src/mactionBtoggle1.mml

file too large to diff

− tests/src/mactionBtooltip1.mml

file too large to diff

− tests/src/maligngroup1.mml

file too large to diff

− tests/src/math-in-text.tex

file too large to diff

− tests/src/math1.mml

file too large to diff

− tests/src/math3.mml

file too large to diff

− tests/src/mathAdisplay1.mml

file too large to diff

− tests/src/mathAdisplay2.mml

file too large to diff

− tests/src/mathAmacros1.mml

file too large to diff

− tests/src/mathAmode1.mml

file too large to diff

− tests/src/mathBevelledFrac.mml

file too large to diff

− tests/src/mathDir.mml

file too large to diff

− tests/src/mathTable1.mml

file too large to diff

− tests/src/merror-01.mml

file too large to diff

− tests/src/merror1.mml

file too large to diff

− tests/src/merrorB3.mml

file too large to diff

− tests/src/mfenced-01.mml

file too large to diff

− tests/src/mfenced-02.mml

file too large to diff

− tests/src/mfenced-03.mml

file too large to diff

− tests/src/mfenced-04.mml

file too large to diff

− tests/src/mfenced-05.mml

file too large to diff

− tests/src/mfenced-06.mml

file too large to diff

− tests/src/mfenced-07.mml

file too large to diff

− tests/src/mfenced-08.mml

file too large to diff

− tests/src/mfenced1.mml

file too large to diff

− tests/src/mfenced2.mml

file too large to diff

− tests/src/mfenced3.mml

file too large to diff

− tests/src/mfenced4.mml

file too large to diff

− tests/src/mfenced5.mml

file too large to diff

− tests/src/mfencedAdelims6.mml

file too large to diff

− tests/src/mfencedAempty.mml

file too large to diff

− tests/src/mfencedBfences7.mml

file too large to diff

− tests/src/mfencedBseparators8.mml

file too large to diff

− tests/src/mfencedSfonts9.mml

file too large to diff

− tests/src/mfrac-01.mml

file too large to diff

− tests/src/mfrac-02.mml

file too large to diff

− tests/src/mfrac-03.mml

file too large to diff

− tests/src/mfrac-04.mml

file too large to diff

− tests/src/mfrac-05.mml

file too large to diff

− tests/src/mfrac-06.mml

file too large to diff

− tests/src/mfrac-07.mml

file too large to diff

− tests/src/mfrac-08.mml

file too large to diff

− tests/src/mfrac-09.mml

file too large to diff

− tests/src/mfrac-10.mml

file too large to diff

− tests/src/mfrac-11.mml

file too large to diff

− tests/src/mfrac-12.mml

file too large to diff

− tests/src/mfrac1.mml

file too large to diff

− tests/src/mfrac2.mml

file too large to diff

− tests/src/mfrac3.mml

file too large to diff

− tests/src/mfrac4.mml

file too large to diff

− tests/src/mfrac5.mml

file too large to diff

− tests/src/mfrac6.mml

file too large to diff

− tests/src/mfrac7.mml

file too large to diff

− tests/src/mfracAbevelled16.mml

file too large to diff

− tests/src/mfracAcss8.mml

file too large to diff

− tests/src/mfracAkeyword9.mml

file too large to diff

− tests/src/mfracAmultiplier10.mml

file too large to diff

− tests/src/mfracBalign16.mml

file too large to diff

− tests/src/mfracBheight17.mml

file too large to diff

− tests/src/mfracBhoriz11.mml

file too large to diff

− tests/src/mfracBvert12.mml

file too large to diff

− tests/src/mfracSfonts13.mml

file too large to diff

− tests/src/mfracSinheritance14.mml

file too large to diff

− tests/src/mfracSscriptlevel15.mml

file too large to diff

− tests/src/mfracZcomp-01.mml

file too large to diff

− tests/src/mfracZcomp-02.mml

file too large to diff

− tests/src/mfracZcomp-03.mml

file too large to diff

− tests/src/mfracZcomp-04.mml

file too large to diff

− tests/src/mfracZcomp-05.mml

file too large to diff

− tests/src/mfracZcomp-06.mml

file too large to diff

− tests/src/mfracZcomp-07.mml

file too large to diff

− tests/src/mfracZcomp-08.mml

file too large to diff

− tests/src/mfracZcomp-09.mml

file too large to diff

− tests/src/mfracZcomp-10.mml

file too large to diff

− tests/src/mfracZcomp-11.mml

file too large to diff

− tests/src/mfracZcomp-12.mml

file too large to diff

− tests/src/mfracZcomp-13.mml

file too large to diff

− tests/src/mfracZcomp-14.mml

file too large to diff

− tests/src/mfracZcomp-15.mml

file too large to diff

− tests/src/mfracZcomp-16.mml

file too large to diff

− tests/src/mfracZcomp-17.mml

file too large to diff

− tests/src/mfracZcomp-18.mml

file too large to diff

− tests/src/mfracZcomp-19.mml

file too large to diff

− tests/src/mfracZcomp-20.mml

file too large to diff

− tests/src/mfracZcomp-21.mml

file too large to diff

− tests/src/mfracZcomp-22.mml

file too large to diff

− tests/src/mfracZcomp-23.mml

file too large to diff

− tests/src/mfracZcomp-24.mml

file too large to diff

− tests/src/mfracZcomp-25.mml

file too large to diff

− tests/src/mfracZcomp-26.mml

file too large to diff

− tests/src/mfracZcomp-27.mml

file too large to diff

− tests/src/mfracZcomp-28.mml

file too large to diff

− tests/src/mfracZcomp-29.mml

file too large to diff

− tests/src/mfracZcomp-30.mml

file too large to diff

− tests/src/mfracZcomp-31.mml

file too large to diff

− tests/src/mfracZcomp-32.mml

file too large to diff

− tests/src/mfracZcomp-33.mml

file too large to diff

− tests/src/mi1.mml

file too large to diff

− tests/src/mi2.mml

file too large to diff

− tests/src/mi3.mml

file too large to diff

− tests/src/mi4.mml

file too large to diff

− tests/src/miAtoken5.mml

file too large to diff

− tests/src/miSfonts8.mml

file too large to diff

− tests/src/miSfontsize9.mml

file too large to diff

− tests/src/miSmathsize16.mml

file too large to diff

− tests/src/miSmathsize17.mml

file too large to diff

− tests/src/miStoken10.mml

file too large to diff

− tests/src/mid1.mml

file too large to diff

− tests/src/mid2.mml

file too large to diff

− tests/src/miequivalents11.mml

file too large to diff

− tests/src/mifontstyle12.mml

file too large to diff

− tests/src/mimathvariant13.mml

file too large to diff

− tests/src/mimathvariant14.mml

file too large to diff

− tests/src/mlabeledtr1.mml

file too large to diff

− tests/src/mlabeledtrAside1.mml

file too large to diff

− tests/src/mlabeledtrAside2.mml

file too large to diff

− tests/src/mn1.mml

file too large to diff

− tests/src/mn2.mml

file too large to diff

− tests/src/mn3.mml

file too large to diff

− tests/src/mn4.mml

file too large to diff

− tests/src/mnAtoken6.mml

file too large to diff

− tests/src/mnAtoken7.mml

file too large to diff

− tests/src/mnSdisplaystyle9.mml

file too large to diff

− tests/src/mnSfont10.mml

file too large to diff

− tests/src/mnSscriptlevel11.mml

file too large to diff

− tests/src/mo1.mml

file too large to diff

− tests/src/mo2.mml

file too large to diff

− tests/src/mo3.mml

file too large to diff

− tests/src/mo4.mml

file too large to diff

− tests/src/mo5.mml

file too large to diff

− tests/src/mo6.mml

file too large to diff

− tests/src/mo7.mml

file too large to diff

− tests/src/mo8.mml

file too large to diff

− tests/src/moAaccent10.mml

file too large to diff

− tests/src/moAaccent9.mml

file too large to diff

− tests/src/moAform11.mml

file too large to diff

− tests/src/moAlargeop12.mml

file too large to diff

− tests/src/moAlrspace13.mml

file too large to diff

− tests/src/moAminmax14.mml

file too large to diff

− tests/src/moAmovable15.mml

file too large to diff

− tests/src/moAprime16.mml

file too large to diff

− tests/src/moAsep17.mml

file too large to diff

− tests/src/moAstretchy18.mml

file too large to diff

− tests/src/moAsymmetric19.mml

file too large to diff

− tests/src/moSminmax20.mml

file too large to diff

− tests/src/monospace.mml

file too large to diff

− tests/src/moore_determinant.omml

file too large to diff

− tests/src/moore_determinant.tex

file too large to diff

− tests/src/mover-01.mml

file too large to diff

− tests/src/mover-02.mml

file too large to diff

− tests/src/mover-03.mml

file too large to diff

− tests/src/mover-04.mml

file too large to diff

− tests/src/mover-05.mml

file too large to diff

− tests/src/mover-06.mml

file too large to diff

− tests/src/mover-07.mml

file too large to diff

− tests/src/mover-08.mml

file too large to diff

− tests/src/mover-09.mml

file too large to diff

− tests/src/mover-10.mml

file too large to diff

− tests/src/mover-11.mml

file too large to diff

− tests/src/mover-12.mml

file too large to diff

− tests/src/mover1.mml

file too large to diff

− tests/src/mover2.mml

file too large to diff

− tests/src/mover3.mml

file too large to diff

− tests/src/mover4.mml

file too large to diff

− tests/src/mover5.mml

file too large to diff

− tests/src/mover6.mml

file too large to diff

− tests/src/mover7.mml

file too large to diff

− tests/src/mover8.mml

file too large to diff

− tests/src/mover9.mml

file too large to diff

− tests/src/mphantomB1.mml

file too large to diff

− tests/src/mphantomBinferred2.mml

file too large to diff

− tests/src/mphantomBoperators3.mml

file too large to diff

− tests/src/mphantomSinheritance5.mml

file too large to diff

− tests/src/mrootB1.mml

file too large to diff

− tests/src/mrootSfonts3.mml

file too large to diff

− tests/src/mrootSscriptlevel4.mml

file too large to diff

− tests/src/mrow-01.mml

file too large to diff

− tests/src/mrow-02.mml

file too large to diff

− tests/src/mrow1.mml

file too large to diff

− tests/src/mrowAbg4.mml

file too large to diff

− tests/src/mrowBinferred2.mml

file too large to diff

− tests/src/mrowBnested3.mml

file too large to diff

− tests/src/ms-11.mml

file too large to diff

− tests/src/ms-12.mml

file too large to diff

− tests/src/ms-13.mml

file too large to diff

− tests/src/ms-14.mml

file too large to diff

− tests/src/ms-15.mml

file too large to diff

− tests/src/ms-16.mml

file too large to diff

− tests/src/ms1.mml

file too large to diff

− tests/src/msAdisplaystyle2.mml

file too large to diff

− tests/src/msAquotes3.mml

file too large to diff

− tests/src/msAtoken4.mml

file too large to diff

− tests/src/msAtoken5.mml

file too large to diff

− tests/src/msSinheritance7.mml

file too large to diff

− tests/src/msSinheritance8.mml

file too large to diff

− tests/src/mspace-01.mml

file too large to diff

− tests/src/mspace-02.mml

file too large to diff

− tests/src/mspace-03.mml

file too large to diff

− tests/src/mspace-04.mml

file too large to diff

− tests/src/mspace1.mml

file too large to diff

− tests/src/mspace2.mml

file too large to diff

− tests/src/mspaceAbreak3.mml

file too large to diff

− tests/src/mspacestruts2.mml

file too large to diff

− tests/src/msqrt-01.mml

file too large to diff

− tests/src/msqrt-02.mml

file too large to diff

− tests/src/msqrt-03.mml

file too large to diff

− tests/src/msqrt-04.mml

file too large to diff

− tests/src/msqrt-05.mml

file too large to diff

− tests/src/msqrt-06.mml

file too large to diff

− tests/src/msqrt-07.mml

file too large to diff

− tests/src/msqrt-08.mml

file too large to diff

− tests/src/msqrt5.mml

file too large to diff

− tests/src/msqrt6.mml

file too large to diff

− tests/src/msqrtB7.mml

file too large to diff

− tests/src/msqrtBimplied8.mml

file too large to diff

− tests/src/msqrtSinheritance9.mml

file too large to diff

− tests/src/mstyle1.mml

file too large to diff

− tests/src/mstyleA2.mml

file too large to diff

− tests/src/mstyleAdep1.mml

file too large to diff

− tests/src/mstyleAlinethick1.mml

file too large to diff

− tests/src/mstyleAminscript1.mml

file too large to diff

− tests/src/mstyleAscriptlevel1.mml

file too large to diff

− tests/src/msub-01.mml

file too large to diff

− tests/src/msub-02.mml

file too large to diff

− tests/src/msub-03.mml

file too large to diff

− tests/src/msub-04.mml

file too large to diff

− tests/src/msub-05.mml

file too large to diff

− tests/src/msub-06.mml

file too large to diff

− tests/src/msub-07.mml

file too large to diff

− tests/src/msub-08.mml

file too large to diff

− tests/src/msub-09.mml

file too large to diff

− tests/src/msub-10.mml

file too large to diff

− tests/src/msub-11.mml

file too large to diff

− tests/src/msub-12.mml

file too large to diff

− tests/src/msub1.mml

file too large to diff

− tests/src/msubsup-01.mml

file too large to diff

− tests/src/msubsup-02.mml

file too large to diff

− tests/src/msubsup-03.mml

file too large to diff

− tests/src/msubsup-04.mml

file too large to diff

− tests/src/msubsup-05.mml

file too large to diff

− tests/src/msubsup-06.mml

file too large to diff

− tests/src/msubsup-07.mml

file too large to diff

− tests/src/msubsup-08.mml

file too large to diff

− tests/src/msubsup-09.mml

file too large to diff

− tests/src/msubsup-10.mml

file too large to diff

− tests/src/msubsup-11.mml

file too large to diff

− tests/src/msubsup-12.mml

file too large to diff

− tests/src/msubsup1.mml

file too large to diff

− tests/src/msubsupBsize1.mml

file too large to diff

− tests/src/msubsupBsize2.mml

file too large to diff

− tests/src/msup-01.mml

file too large to diff

− tests/src/msup-02.mml

file too large to diff

− tests/src/msup-03.mml

file too large to diff

− tests/src/msup-04.mml

file too large to diff

− tests/src/msup-05.mml

file too large to diff

− tests/src/msup-06.mml

file too large to diff

− tests/src/msup-07.mml

file too large to diff

− tests/src/msup-08.mml

file too large to diff

− tests/src/msup-09.mml

file too large to diff

− tests/src/msup-10.mml

file too large to diff

− tests/src/msup-11.mml

file too large to diff

− tests/src/msup-12.mml

file too large to diff

− tests/src/msup1.mml

file too large to diff

− tests/src/msup2.mml

file too large to diff

− tests/src/msupBnest1.mml

file too large to diff

− tests/src/msupBsize1.mml

file too large to diff

− tests/src/msupBsize2.mml

file too large to diff

− tests/src/msupBsize3.mml

file too large to diff

− tests/src/msupSadvance1.mml

file too large to diff

− tests/src/mtable-01.mml

file too large to diff

− tests/src/mtable-03.mml

file too large to diff

− tests/src/mtable-04.mml

file too large to diff

− tests/src/mtable-05.mml

file too large to diff

− tests/src/mtable-06.mml

file too large to diff

− tests/src/mtable-07.mml

file too large to diff

− tests/src/mtable-08.mml

file too large to diff

− tests/src/mtable-09.mml

file too large to diff

− tests/src/mtable-10.mml

file too large to diff

− tests/src/mtable-11.mml

file too large to diff

− tests/src/mtable-12.mml

file too large to diff

− tests/src/mtable-13.mml

file too large to diff

− tests/src/mtable-14.mml

file too large to diff

− tests/src/mtable-15.mml

file too large to diff

− tests/src/mtable-16.mml

file too large to diff

− tests/src/mtable2.mml

file too large to diff

− tests/src/mtableAalign1.mml

file too large to diff

− tests/src/mtableAalign2.mml

file too large to diff

− tests/src/mtableAalign3.mml

file too large to diff

− tests/src/mtableAframe1.mml

file too large to diff

− tests/src/mtableAframe2.mml

file too large to diff

− tests/src/mtableAgroupalign.mml

file too large to diff

− tests/src/mtableAlines1.mml

file too large to diff

− tests/src/mtableAlines2.mml

file too large to diff

− tests/src/mtableAspacing1.mml

file too large to diff

− tests/src/mtableAspacing2.mml

file too large to diff

− tests/src/mtableAspacing3.mml

file too large to diff

− tests/src/mtableAspacing4.mml

file too large to diff

− tests/src/mtableAwidth1.mml

file too large to diff

− tests/src/mtableAwidth2.mml

file too large to diff

− tests/src/mtableAwidth3.mml

file too large to diff

− tests/src/mtableAwidth4.mml

file too large to diff

− tests/src/mtableBgap1.mml

file too large to diff

− tests/src/mtableBsize1.mml

file too large to diff

− tests/src/mtableBsize2.mml

file too large to diff

− tests/src/mtableBspan3.mml

file too large to diff

− tests/src/mtext1.mml

file too large to diff

− tests/src/mtext2.mml

file too large to diff

− tests/src/mtextAtoken3.mml

file too large to diff

− tests/src/mtextSbg4.mml

file too large to diff

− tests/src/mtextStoken6.mml

file too large to diff

− tests/src/mtextspaces7.mml

file too large to diff

− tests/src/munder-01.mml

file too large to diff

− tests/src/munder-02.mml

file too large to diff

− tests/src/munder-03.mml

file too large to diff

− tests/src/munder-04.mml

file too large to diff

− tests/src/munder-05.mml

file too large to diff

− tests/src/munder-06.mml

file too large to diff

− tests/src/munder-07.mml

file too large to diff

− tests/src/munder-08.mml

file too large to diff

− tests/src/munder-09.mml

file too large to diff

− tests/src/munder-10.mml

file too large to diff

− tests/src/munder-11.mml

file too large to diff

− tests/src/munder-12.mml

file too large to diff

− tests/src/munder1.mml

file too large to diff

− tests/src/munder2.mml

file too large to diff

− tests/src/munder3.mml

file too large to diff

− tests/src/munder4.mml

file too large to diff

− tests/src/munder5.mml

file too large to diff

− tests/src/munder6.mml

file too large to diff

− tests/src/munder7.mml

file too large to diff

− tests/src/munder8.mml

file too large to diff

− tests/src/munder9.mml

file too large to diff

− tests/src/munderover-01.mml

file too large to diff

− tests/src/munderover-02.mml

file too large to diff

− tests/src/munderover-03.mml

file too large to diff

− tests/src/munderover-04.mml

file too large to diff

− tests/src/munderover-05.mml

file too large to diff

− tests/src/munderover-06.mml

file too large to diff

− tests/src/munderover-07.mml

file too large to diff

− tests/src/munderover-08.mml

file too large to diff

− tests/src/munderover-09.mml

file too large to diff

− tests/src/munderover-10.mml

file too large to diff

− tests/src/munderover-11.mml

file too large to diff

− tests/src/munderover-12.mml

file too large to diff

− tests/src/n.mml

file too large to diff

− tests/src/nestAction1.mml

file too large to diff

− tests/src/nestFrac1.mml

file too large to diff

− tests/src/nestScript.mml

file too large to diff

− tests/src/nestTable1.mml

file too large to diff

− tests/src/nestedAwidth1.mml

file too large to diff

− tests/src/nestedMath3.mml

file too large to diff

− tests/src/notin.omml

file too large to diff

− tests/src/notin.tex

file too large to diff

− tests/src/o.mml

file too large to diff

− tests/src/oint1.mml

file too large to diff

− tests/src/oint2.mml

file too large to diff

− tests/src/operatorname.omml

file too large to diff

− tests/src/operatorname.tex

file too large to diff

− tests/src/p.mml

file too large to diff

− tests/src/phantom.omml

file too large to diff

− tests/src/phantom.tex

file too large to diff

− tests/src/primes1.mml

file too large to diff

− tests/src/primes2.mml

file too large to diff

− tests/src/prod1.mml

file too large to diff

− tests/src/prod2.mml

file too large to diff

− tests/src/q.mml

file too large to diff

− tests/src/quadratic_formula.omml

file too large to diff

− tests/src/quadratic_formula.tex

file too large to diff

− tests/src/r.mml

file too large to diff

− tests/src/rec-mlabeledtr.mml

file too large to diff

− tests/src/rec-mtable1.mml

file too large to diff

− tests/src/rec3-mphantom-1.mml

file too large to diff

− tests/src/s.mml

file too large to diff

− tests/src/sans-serif-bold-italic.mml

file too large to diff

− tests/src/sans-serif-bold.mml

file too large to diff

− tests/src/sans-serif-italic.mml

file too large to diff

− tests/src/sans-serif.mml

file too large to diff

− tests/src/schwinger_dyson.omml

file too large to diff

− tests/src/schwinger_dyson.tex

file too large to diff

− tests/src/script-bold.mml

file too large to diff

− tests/src/script.mml

file too large to diff

− tests/src/semantics-01.mml

file too large to diff

− tests/src/semantics-02.mml

file too large to diff

− tests/src/semantics-03.mml

file too large to diff

− tests/src/semantics-04.mml

file too large to diff

− tests/src/serif-bold-italic.mml

file too large to diff

− tests/src/serif-bold.mml

file too large to diff

− tests/src/serif-italic.mml

file too large to diff

− tests/src/serif.mml

file too large to diff

− tests/src/simplePres.mml

file too large to diff

− tests/src/simple_sum_formula.tex

file too large to diff

− tests/src/sizeunits3.mml

file too large to diff

− tests/src/sizeunits4.mml

file too large to diff

− tests/src/sophomores_dream.omml

file too large to diff

− tests/src/sophomores_dream.tex

file too large to diff

− tests/src/sphere_volume.omml

file too large to diff

− tests/src/sphere_volume.tex

file too large to diff

− tests/src/stackrel.omml

file too large to diff

− tests/src/stackrel.tex

file too large to diff

− tests/src/stretchAccents1.mml

file too large to diff

− tests/src/stretchAccents2.mml

file too large to diff

− tests/src/stretchBrack1.mml

file too large to diff

− tests/src/stretchHoriz1.mml

file too large to diff

− tests/src/stretchHoriz2.mml

file too large to diff

− tests/src/stretchHoriz3.mml

file too large to diff

− tests/src/stretchTable1.mml

file too large to diff

− tests/src/stretchTable2.mml

file too large to diff

− tests/src/stretchTilde1.mml

file too large to diff

− tests/src/stretchVert1.mml

file too large to diff

− tests/src/stretchVert2.mml

file too large to diff

− tests/src/stretchVertNest2.mml

file too large to diff

− tests/src/style1.mml

file too large to diff

− tests/src/style2.mml

file too large to diff

− tests/src/substack.omml

file too large to diff

− tests/src/substack.tex

file too large to diff

− tests/src/subsup.omml

file too large to diff

− tests/src/subsup.tex

file too large to diff

− tests/src/sum1.mml

file too large to diff

− tests/src/sum2.mml

file too large to diff

− tests/src/t.mml

file too large to diff

− tests/src/text.omml

file too large to diff

− tests/src/text.tex

file too large to diff

− tests/src/tokens.omml

file too large to diff

− tests/src/tokens.tex

file too large to diff

− tests/src/tripleint1.mml

file too large to diff

− tests/src/tripleint2.mml

file too large to diff

− tests/src/u.mml

file too large to diff

− tests/src/unicode.omml

file too large to diff

− tests/src/unicode.tex

file too large to diff

− tests/src/v.mml

file too large to diff

− tests/src/verbar1.mml

file too large to diff

− tests/src/verbar2.mml

file too large to diff

− tests/src/w.mml

file too large to diff

− tests/src/whBcomments1.mml

file too large to diff

− tests/src/whBgeneral1.mml

file too large to diff

− tests/src/white1.mml

file too large to diff

− tests/src/white10.mml

file too large to diff

− tests/src/white2.mml

file too large to diff

− tests/src/white3.mml

file too large to diff

− tests/src/white4.mml

file too large to diff

− tests/src/white5.mml

file too large to diff

− tests/src/white6.mml

file too large to diff

− tests/src/white7.mml

file too large to diff

− tests/src/white8.mml

file too large to diff

− tests/src/white9.mml

file too large to diff

− tests/src/x.mml

file too large to diff

− tests/src/xmllang1.mml

file too large to diff

− tests/src/xref1.mml

file too large to diff

− tests/src/y.mml

file too large to diff

− tests/src/z.mml

file too large to diff

− tests/test-texmath.hs

file too large to diff

− tests/writers/00000_C0_Controls_and_Basic_Latin.eqn

file too large to diff

− tests/writers/00000_C0_Controls_and_Basic_Latin.mml

file too large to diff

− tests/writers/00000_C0_Controls_and_Basic_Latin.omml

file too large to diff

− tests/writers/00000_C0_Controls_and_Basic_Latin.tex

file too large to diff

− tests/writers/00080_C1_Controls_and_Latin-1_Supplement.eqn

file too large to diff

− tests/writers/00080_C1_Controls_and_Latin-1_Supplement.mml

file too large to diff

− tests/writers/00080_C1_Controls_and_Latin-1_Supplement.omml

file too large to diff

− tests/writers/00080_C1_Controls_and_Latin-1_Supplement.tex

file too large to diff

− tests/writers/00100_Latin_Extended-A.eqn

file too large to diff

− tests/writers/00100_Latin_Extended-A.mml

file too large to diff

− tests/writers/00100_Latin_Extended-A.omml

file too large to diff

− tests/writers/00100_Latin_Extended-A.tex

file too large to diff

− tests/writers/00180_Latin_Extended-B.eqn

file too large to diff

− tests/writers/00180_Latin_Extended-B.mml

file too large to diff

− tests/writers/00180_Latin_Extended-B.omml

file too large to diff

− tests/writers/00180_Latin_Extended-B.tex

file too large to diff

− tests/writers/00250_IPA_Extensions.eqn

file too large to diff

− tests/writers/00250_IPA_Extensions.mml

file too large to diff

− tests/writers/00250_IPA_Extensions.omml

file too large to diff

− tests/writers/00250_IPA_Extensions.tex

file too large to diff

− tests/writers/002B0_Spacing_Modifier_Letters.eqn

file too large to diff

− tests/writers/002B0_Spacing_Modifier_Letters.mml

file too large to diff

− tests/writers/002B0_Spacing_Modifier_Letters.omml

file too large to diff

− tests/writers/002B0_Spacing_Modifier_Letters.tex

file too large to diff

− tests/writers/00300_Combining_Diacritical_Marks.eqn

file too large to diff

− tests/writers/00300_Combining_Diacritical_Marks.mml

file too large to diff

− tests/writers/00300_Combining_Diacritical_Marks.omml

file too large to diff

− tests/writers/00300_Combining_Diacritical_Marks.tex

file too large to diff

− tests/writers/00370_Greek_and_Coptic.eqn

file too large to diff

− tests/writers/00370_Greek_and_Coptic.mml

file too large to diff

− tests/writers/00370_Greek_and_Coptic.omml

file too large to diff

− tests/writers/00370_Greek_and_Coptic.tex

file too large to diff

− tests/writers/00400_Cyrillic.eqn

file too large to diff

− tests/writers/00400_Cyrillic.mml

file too large to diff

− tests/writers/00400_Cyrillic.omml

file too large to diff

− tests/writers/00400_Cyrillic.tex

file too large to diff

− tests/writers/01.eqn

file too large to diff

− tests/writers/01.mml

file too large to diff

− tests/writers/01.omml

file too large to diff

− tests/writers/01.tex

file too large to diff

− tests/writers/01E00_Latin_Extended_Additional.eqn

file too large to diff

− tests/writers/01E00_Latin_Extended_Additional.mml

file too large to diff

− tests/writers/01E00_Latin_Extended_Additional.omml

file too large to diff

− tests/writers/01E00_Latin_Extended_Additional.tex

file too large to diff

− tests/writers/01F00_Greek_Extended.eqn

file too large to diff

− tests/writers/01F00_Greek_Extended.mml

file too large to diff

− tests/writers/01F00_Greek_Extended.omml

file too large to diff

− tests/writers/01F00_Greek_Extended.tex

file too large to diff

− tests/writers/02.eqn

file too large to diff

− tests/writers/02.mml

file too large to diff

− tests/writers/02.omml

file too large to diff

− tests/writers/02.tex

file too large to diff

− tests/writers/02000_General_Punctuation.eqn

file too large to diff

− tests/writers/02000_General_Punctuation.mml

file too large to diff

− tests/writers/02000_General_Punctuation.omml

file too large to diff

− tests/writers/02000_General_Punctuation.tex

file too large to diff

− tests/writers/02070_Superscripts_and_Subscripts.eqn

file too large to diff

− tests/writers/02070_Superscripts_and_Subscripts.mml

file too large to diff

− tests/writers/02070_Superscripts_and_Subscripts.omml

file too large to diff

− tests/writers/02070_Superscripts_and_Subscripts.tex

file too large to diff

− tests/writers/020A0_Currency_Symbols.eqn

file too large to diff

− tests/writers/020A0_Currency_Symbols.mml

file too large to diff

− tests/writers/020A0_Currency_Symbols.omml

file too large to diff

− tests/writers/020A0_Currency_Symbols.tex

file too large to diff

− tests/writers/020D0_Combining_Diacritical_Marks_for_Symbols.eqn

file too large to diff

− tests/writers/020D0_Combining_Diacritical_Marks_for_Symbols.mml

file too large to diff

− tests/writers/020D0_Combining_Diacritical_Marks_for_Symbols.omml

file too large to diff

− tests/writers/020D0_Combining_Diacritical_Marks_for_Symbols.tex

file too large to diff

− tests/writers/02100_Letterlike_Symbols.eqn

file too large to diff

− tests/writers/02100_Letterlike_Symbols.mml

file too large to diff

− tests/writers/02100_Letterlike_Symbols.omml

file too large to diff

− tests/writers/02100_Letterlike_Symbols.tex

file too large to diff

− tests/writers/02150_Number_Forms.eqn

file too large to diff

− tests/writers/02150_Number_Forms.mml

file too large to diff

− tests/writers/02150_Number_Forms.omml

file too large to diff

− tests/writers/02150_Number_Forms.tex

file too large to diff

− tests/writers/02190_Arrows.eqn

file too large to diff

− tests/writers/02190_Arrows.mml

file too large to diff

− tests/writers/02190_Arrows.omml

file too large to diff

− tests/writers/02190_Arrows.tex

file too large to diff

− tests/writers/02200_Mathematical_Operators.eqn

file too large to diff

− tests/writers/02200_Mathematical_Operators.mml

file too large to diff

− tests/writers/02200_Mathematical_Operators.omml

file too large to diff

− tests/writers/02200_Mathematical_Operators.tex

file too large to diff

− tests/writers/02300_Miscellaneous_Technical.eqn

file too large to diff

− tests/writers/02300_Miscellaneous_Technical.mml

file too large to diff

− tests/writers/02300_Miscellaneous_Technical.omml

file too large to diff

− tests/writers/02300_Miscellaneous_Technical.tex

file too large to diff

− tests/writers/02400_Control_Pictures.eqn

file too large to diff

− tests/writers/02400_Control_Pictures.mml

file too large to diff

− tests/writers/02400_Control_Pictures.omml

file too large to diff

− tests/writers/02400_Control_Pictures.tex

file too large to diff

− tests/writers/02440_Optical_Character_Recognition.eqn

file too large to diff

− tests/writers/02440_Optical_Character_Recognition.mml

file too large to diff

− tests/writers/02440_Optical_Character_Recognition.omml

file too large to diff

− tests/writers/02440_Optical_Character_Recognition.tex

file too large to diff

− tests/writers/02460_Enclosed_Alphanumerics.eqn

file too large to diff

− tests/writers/02460_Enclosed_Alphanumerics.mml

file too large to diff

− tests/writers/02460_Enclosed_Alphanumerics.omml

file too large to diff

− tests/writers/02460_Enclosed_Alphanumerics.tex

file too large to diff

− tests/writers/02500_Box_Drawing.eqn

file too large to diff

− tests/writers/02500_Box_Drawing.mml

file too large to diff

− tests/writers/02500_Box_Drawing.omml

file too large to diff

− tests/writers/02500_Box_Drawing.tex

file too large to diff

− tests/writers/02580_Block_Elements.eqn

file too large to diff

− tests/writers/02580_Block_Elements.mml

file too large to diff

− tests/writers/02580_Block_Elements.omml

file too large to diff

− tests/writers/02580_Block_Elements.tex

file too large to diff

− tests/writers/025A0_Geometric_Shapes.eqn

file too large to diff

− tests/writers/025A0_Geometric_Shapes.mml

file too large to diff

− tests/writers/025A0_Geometric_Shapes.omml

file too large to diff

− tests/writers/025A0_Geometric_Shapes.tex

file too large to diff

− tests/writers/02600_Miscellaneous_Symbols.eqn

file too large to diff

− tests/writers/02600_Miscellaneous_Symbols.mml

file too large to diff

− tests/writers/02600_Miscellaneous_Symbols.omml

file too large to diff

− tests/writers/02600_Miscellaneous_Symbols.tex

file too large to diff

− tests/writers/02700_Dingbats.eqn

file too large to diff

− tests/writers/02700_Dingbats.mml

file too large to diff

− tests/writers/02700_Dingbats.omml

file too large to diff

− tests/writers/02700_Dingbats.tex

file too large to diff

− tests/writers/027C0_Miscellaneous_Mathematical_Symbols-A.eqn

file too large to diff

− tests/writers/027C0_Miscellaneous_Mathematical_Symbols-A.mml

file too large to diff

− tests/writers/027C0_Miscellaneous_Mathematical_Symbols-A.omml

file too large to diff

− tests/writers/027C0_Miscellaneous_Mathematical_Symbols-A.tex

file too large to diff

− tests/writers/027F0_Supplemental_Arrows-A.eqn

file too large to diff

− tests/writers/027F0_Supplemental_Arrows-A.mml

file too large to diff

− tests/writers/027F0_Supplemental_Arrows-A.omml

file too large to diff

− tests/writers/027F0_Supplemental_Arrows-A.tex

file too large to diff

− tests/writers/02900_Supplemental_Arrows-B.eqn

file too large to diff

− tests/writers/02900_Supplemental_Arrows-B.mml

file too large to diff

− tests/writers/02900_Supplemental_Arrows-B.omml

file too large to diff

− tests/writers/02900_Supplemental_Arrows-B.tex

file too large to diff

− tests/writers/02980_Miscellaneous_Mathematical_Symbols-B.eqn

file too large to diff

− tests/writers/02980_Miscellaneous_Mathematical_Symbols-B.mml

file too large to diff

− tests/writers/02980_Miscellaneous_Mathematical_Symbols-B.omml

file too large to diff

− tests/writers/02980_Miscellaneous_Mathematical_Symbols-B.tex

file too large to diff

− tests/writers/02A00_Supplemental_Mathematical_Operators.eqn

file too large to diff

− tests/writers/02A00_Supplemental_Mathematical_Operators.mml

file too large to diff

− tests/writers/02A00_Supplemental_Mathematical_Operators.omml

file too large to diff

− tests/writers/02A00_Supplemental_Mathematical_Operators.tex

file too large to diff

− tests/writers/02B00_Miscellaneous_Symbols_and_Arrows.eqn

file too large to diff

− tests/writers/02B00_Miscellaneous_Symbols_and_Arrows.mml

file too large to diff

− tests/writers/02B00_Miscellaneous_Symbols_and_Arrows.omml

file too large to diff

− tests/writers/02B00_Miscellaneous_Symbols_and_Arrows.tex

file too large to diff

− tests/writers/03.eqn

file too large to diff

− tests/writers/03.mml

file too large to diff

− tests/writers/03.omml

file too large to diff

− tests/writers/03.tex

file too large to diff

− tests/writers/04.eqn

file too large to diff

− tests/writers/04.mml

file too large to diff

− tests/writers/04.omml

file too large to diff

− tests/writers/04.tex

file too large to diff

− tests/writers/05.eqn

file too large to diff

− tests/writers/05.mml

file too large to diff

− tests/writers/05.omml

file too large to diff

− tests/writers/05.tex

file too large to diff

− tests/writers/06.eqn

file too large to diff

− tests/writers/06.mml

file too large to diff

− tests/writers/06.omml

file too large to diff

− tests/writers/06.tex

file too large to diff

− tests/writers/07.eqn

file too large to diff

− tests/writers/07.mml

file too large to diff

− tests/writers/07.omml

file too large to diff

− tests/writers/07.tex

file too large to diff

− tests/writers/08.eqn

file too large to diff

− tests/writers/08.mml

file too large to diff

− tests/writers/08.omml

file too large to diff

− tests/writers/08.tex

file too large to diff

− tests/writers/09.eqn

file too large to diff

− tests/writers/09.mml

file too large to diff

− tests/writers/09.omml

file too large to diff

− tests/writers/09.tex

file too large to diff

− tests/writers/0FB00_Alphabetic_Presentation_Forms.eqn

file too large to diff

− tests/writers/0FB00_Alphabetic_Presentation_Forms.mml

file too large to diff

− tests/writers/0FB00_Alphabetic_Presentation_Forms.omml

file too large to diff

− tests/writers/0FB00_Alphabetic_Presentation_Forms.tex

file too large to diff

− tests/writers/0FB50_Arabic_Presentation_Forms-A.eqn

file too large to diff

− tests/writers/0FB50_Arabic_Presentation_Forms-A.mml

file too large to diff

− tests/writers/0FB50_Arabic_Presentation_Forms-A.omml

file too large to diff

− tests/writers/0FB50_Arabic_Presentation_Forms-A.tex

file too large to diff

− tests/writers/0FE00_Variation_Selectors.eqn

file too large to diff

− tests/writers/0FE00_Variation_Selectors.mml

file too large to diff

− tests/writers/0FE00_Variation_Selectors.omml

file too large to diff

− tests/writers/0FE00_Variation_Selectors.tex

file too large to diff

− tests/writers/0FE10_Vertical_Forms.eqn

file too large to diff

− tests/writers/0FE10_Vertical_Forms.mml

file too large to diff

− tests/writers/0FE10_Vertical_Forms.omml

file too large to diff

− tests/writers/0FE10_Vertical_Forms.tex

file too large to diff

− tests/writers/0FE20_Combining_Half_Marks.eqn

file too large to diff

− tests/writers/0FE20_Combining_Half_Marks.mml

file too large to diff

− tests/writers/0FE20_Combining_Half_Marks.omml

file too large to diff

− tests/writers/0FE20_Combining_Half_Marks.tex

file too large to diff

− tests/writers/0FE30_CJK_Compatibility_Forms.eqn

file too large to diff

− tests/writers/0FE30_CJK_Compatibility_Forms.mml

file too large to diff

− tests/writers/0FE30_CJK_Compatibility_Forms.omml

file too large to diff

− tests/writers/0FE30_CJK_Compatibility_Forms.tex

file too large to diff

− tests/writers/0FE50_Small_Form_Variants.eqn

file too large to diff

− tests/writers/0FE50_Small_Form_Variants.mml

file too large to diff

− tests/writers/0FE50_Small_Form_Variants.omml

file too large to diff

− tests/writers/0FE50_Small_Form_Variants.tex

file too large to diff

− tests/writers/0FE70_Arabic_Presentation_Forms-B.eqn

file too large to diff

− tests/writers/0FE70_Arabic_Presentation_Forms-B.mml

file too large to diff

− tests/writers/0FE70_Arabic_Presentation_Forms-B.omml

file too large to diff

− tests/writers/0FE70_Arabic_Presentation_Forms-B.tex

file too large to diff

− tests/writers/10.eqn

file too large to diff

− tests/writers/10.mml

file too large to diff

− tests/writers/10.omml

file too large to diff

− tests/writers/10.tex

file too large to diff

− tests/writers/11.eqn

file too large to diff

− tests/writers/11.mml

file too large to diff

− tests/writers/11.omml

file too large to diff

− tests/writers/11.tex

file too large to diff

− tests/writers/12.eqn

file too large to diff

− tests/writers/12.mml

file too large to diff

− tests/writers/12.omml

file too large to diff

− tests/writers/12.tex

file too large to diff

− tests/writers/13.eqn

file too large to diff

− tests/writers/13.mml

file too large to diff

− tests/writers/13.omml

file too large to diff

− tests/writers/13.tex

file too large to diff

− tests/writers/14.eqn

file too large to diff

− tests/writers/14.mml

file too large to diff

− tests/writers/14.omml

file too large to diff

− tests/writers/14.tex

file too large to diff

− tests/writers/15.eqn

file too large to diff

− tests/writers/15.mml

file too large to diff

− tests/writers/15.omml

file too large to diff

− tests/writers/15.tex

file too large to diff

− tests/writers/16.eqn

file too large to diff

− tests/writers/16.mml

file too large to diff

− tests/writers/16.omml

file too large to diff

− tests/writers/16.tex

file too large to diff

− tests/writers/17.eqn

file too large to diff

− tests/writers/17.mml

file too large to diff

− tests/writers/17.omml

file too large to diff

− tests/writers/17.tex

file too large to diff

− tests/writers/18.eqn

file too large to diff

− tests/writers/18.mml

file too large to diff

− tests/writers/18.omml

file too large to diff

− tests/writers/18.tex

file too large to diff

− tests/writers/19.eqn

file too large to diff

− tests/writers/19.mml

file too large to diff

− tests/writers/19.omml

file too large to diff

− tests/writers/19.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-script.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-script.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-script.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-script.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_double-struck.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_double-struck.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_double-struck.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_double-struck.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_fraktur.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_fraktur.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_fraktur.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_fraktur.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_italic.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_italic.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_italic.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_italic.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_monospace.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_monospace.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_monospace.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_monospace.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.tex

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_script.eqn

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_script.mml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_script.omml

file too large to diff

− tests/writers/1D400_Mathematical_Alphanumeric_Symbols_script.tex

file too large to diff

− tests/writers/20.eqn

file too large to diff

− tests/writers/20.mml

file too large to diff

− tests/writers/20.omml

file too large to diff

− tests/writers/20.tex

file too large to diff

− tests/writers/21.eqn

file too large to diff

− tests/writers/21.mml

file too large to diff

− tests/writers/21.omml

file too large to diff

− tests/writers/21.tex

file too large to diff

− tests/writers/22.eqn

file too large to diff

− tests/writers/22.mml

file too large to diff

− tests/writers/22.omml

file too large to diff

− tests/writers/22.tex

file too large to diff

− tests/writers/23.eqn

file too large to diff

− tests/writers/23.mml

file too large to diff

− tests/writers/23.omml

file too large to diff

− tests/writers/23.tex

file too large to diff

− tests/writers/a.eqn

file too large to diff

− tests/writers/a.mml

file too large to diff

− tests/writers/a.omml

file too large to diff

− tests/writers/a.tex

file too large to diff

− tests/writers/abs1.eqn

file too large to diff

− tests/writers/abs1.mml

file too large to diff

− tests/writers/abs1.omml

file too large to diff

− tests/writers/abs1.tex

file too large to diff

− tests/writers/abs2.eqn

file too large to diff

− tests/writers/abs2.mml

file too large to diff

− tests/writers/abs2.omml

file too large to diff

− tests/writers/abs2.tex

file too large to diff

− tests/writers/accents1.eqn

file too large to diff

− tests/writers/accents1.mml

file too large to diff

− tests/writers/accents1.omml

file too large to diff

− tests/writers/accents1.tex

file too large to diff

− tests/writers/accents2.eqn

file too large to diff

− tests/writers/accents2.mml

file too large to diff

− tests/writers/accents2.omml

file too large to diff

− tests/writers/accents2.tex

file too large to diff

− tests/writers/accents3.eqn

file too large to diff

− tests/writers/accents3.mml

file too large to diff

− tests/writers/accents3.omml

file too large to diff

− tests/writers/accents3.tex

file too large to diff

− tests/writers/accents4.eqn

file too large to diff

− tests/writers/accents4.mml

file too large to diff

− tests/writers/accents4.omml

file too large to diff

− tests/writers/accents4.tex

file too large to diff

− tests/writers/accents5.eqn

file too large to diff

− tests/writers/accents5.mml

file too large to diff

− tests/writers/accents5.omml

file too large to diff

− tests/writers/accents5.tex

file too large to diff

− tests/writers/accents6.eqn

file too large to diff

− tests/writers/accents6.mml

file too large to diff

− tests/writers/accents6.omml

file too large to diff

− tests/writers/accents6.tex

file too large to diff

− tests/writers/attribQuote1.eqn

file too large to diff

− tests/writers/attribQuote1.mml

file too large to diff

− tests/writers/attribQuote1.omml

file too large to diff

− tests/writers/attribQuote1.tex

file too large to diff

− tests/writers/axiom_of_power_set.eqn

file too large to diff

− tests/writers/axiom_of_power_set.mml

file too large to diff

− tests/writers/axiom_of_power_set.omml

file too large to diff

− tests/writers/axiom_of_power_set.tex

file too large to diff

− tests/writers/b.eqn

file too large to diff

− tests/writers/b.mml

file too large to diff

− tests/writers/b.omml

file too large to diff

− tests/writers/b.tex

file too large to diff

− tests/writers/badAttribs2.eqn

file too large to diff

− tests/writers/badAttribs2.mml

file too large to diff

− tests/writers/badAttribs2.omml

file too large to diff

− tests/writers/badAttribs2.tex

file too large to diff

− tests/writers/badAttribsAction.eqn

file too large to diff

− tests/writers/badAttribsAction.mml

file too large to diff

− tests/writers/badAttribsAction.omml

file too large to diff

− tests/writers/badAttribsAction.tex

file too large to diff

− tests/writers/badAttribsGlyph4.eqn

file too large to diff

− tests/writers/badAttribsGlyph4.mml

file too large to diff

− tests/writers/badAttribsGlyph4.omml

file too large to diff

− tests/writers/badAttribsGlyph4.tex

file too large to diff

− tests/writers/badAttribsVal3.eqn

file too large to diff

− tests/writers/badAttribsVal3.mml

file too large to diff

− tests/writers/badAttribsVal3.omml

file too large to diff

− tests/writers/badAttribsVal3.tex

file too large to diff

− tests/writers/badEntity1.eqn

file too large to diff

− tests/writers/badEntity1.mml

file too large to diff

− tests/writers/badEntity1.omml

file too large to diff

− tests/writers/badEntity1.tex

file too large to diff

− tests/writers/badTag1.mml

file too large to diff

− tests/writers/badTag1.omml

file too large to diff

− tests/writers/badTag1.tex

file too large to diff

− tests/writers/badTagPhantom2.mml

file too large to diff

− tests/writers/badTagPhantom2.omml

file too large to diff

− tests/writers/badTagPhantom2.tex

file too large to diff

− tests/writers/binomial_coefficient.eqn

file too large to diff

− tests/writers/binomial_coefficient.mml

file too large to diff

− tests/writers/binomial_coefficient.omml

file too large to diff

− tests/writers/binomial_coefficient.tex

file too large to diff

− tests/writers/boxed.eqn

file too large to diff

− tests/writers/boxed.mml

file too large to diff

− tests/writers/boxed.omml

file too large to diff

− tests/writers/boxed.tex

file too large to diff

− tests/writers/c.eqn

file too large to diff

− tests/writers/c.mml

file too large to diff

− tests/writers/c.omml

file too large to diff

− tests/writers/c.tex

file too large to diff

− tests/writers/chain1.eqn

file too large to diff

− tests/writers/chain1.mml

file too large to diff

− tests/writers/chain1.omml

file too large to diff

− tests/writers/chain1.tex

file too large to diff

− tests/writers/chain2.eqn

file too large to diff

− tests/writers/chain2.mml

file too large to diff

− tests/writers/chain2.omml

file too large to diff

− tests/writers/chain2.tex

file too large to diff

− tests/writers/choose.eqn

file too large to diff

− tests/writers/choose.mml

file too large to diff

− tests/writers/choose.omml

file too large to diff

− tests/writers/choose.tex

file too large to diff

− tests/writers/class1.eqn

file too large to diff

− tests/writers/class1.mml

file too large to diff

− tests/writers/class1.omml

file too large to diff

− tests/writers/class1.tex

file too large to diff

− tests/writers/class2.eqn

file too large to diff

− tests/writers/class2.mml

file too large to diff

− tests/writers/class2.omml

file too large to diff

− tests/writers/class2.tex

file too large to diff

− tests/writers/clipboard1.eqn

file too large to diff

− tests/writers/clipboard1.mml

file too large to diff

− tests/writers/clipboard1.omml

file too large to diff

− tests/writers/clipboard1.tex

file too large to diff

− tests/writers/clipboard2.eqn

file too large to diff

− tests/writers/clipboard2.mml

file too large to diff

− tests/writers/clipboard2.omml

file too large to diff

− tests/writers/clipboard2.tex

file too large to diff

− tests/writers/complex1.eqn

file too large to diff

− tests/writers/complex1.mml

file too large to diff

− tests/writers/complex1.omml

file too large to diff

− tests/writers/complex1.tex

file too large to diff

− tests/writers/complex2.eqn

file too large to diff

− tests/writers/complex2.mml

file too large to diff

− tests/writers/complex2.omml

file too large to diff

− tests/writers/complex2.tex

file too large to diff

− tests/writers/complex3.eqn

file too large to diff

− tests/writers/complex3.mml

file too large to diff

− tests/writers/complex3.omml

file too large to diff

− tests/writers/complex3.tex

file too large to diff

− tests/writers/complex4.mml

file too large to diff

− tests/writers/complex4.omml

file too large to diff

− tests/writers/complex4.tex

file too large to diff

− tests/writers/complex_number.eqn

file too large to diff

− tests/writers/complex_number.mml

file too large to diff

− tests/writers/complex_number.omml

file too large to diff

− tests/writers/complex_number.tex

file too large to diff

− tests/writers/coprod1.eqn

file too large to diff

− tests/writers/coprod1.mml

file too large to diff

− tests/writers/coprod1.omml

file too large to diff

− tests/writers/coprod1.tex

file too large to diff

− tests/writers/coprod2.eqn

file too large to diff

− tests/writers/coprod2.mml

file too large to diff

− tests/writers/coprod2.omml

file too large to diff

− tests/writers/coprod2.tex

file too large to diff

− tests/writers/d.eqn

file too large to diff

− tests/writers/d.mml

file too large to diff

− tests/writers/d.omml

file too large to diff

− tests/writers/d.tex

file too large to diff

− tests/writers/deMorgans_law.eqn

file too large to diff

− tests/writers/deMorgans_law.mml

file too large to diff

− tests/writers/deMorgans_law.omml

file too large to diff

− tests/writers/deMorgans_law.tex

file too large to diff

− tests/writers/differentiable_manifold.eqn

file too large to diff

− tests/writers/differentiable_manifold.mml

file too large to diff

− tests/writers/differentiable_manifold.omml

file too large to diff

− tests/writers/differentiable_manifold.tex

file too large to diff

− tests/writers/digamma.eqn

file too large to diff

− tests/writers/digamma.mml

file too large to diff

− tests/writers/digamma.omml

file too large to diff

− tests/writers/digamma.tex

file too large to diff

− tests/writers/digit-bold.eqn

file too large to diff

− tests/writers/digit-bold.mml

file too large to diff

− tests/writers/digit-bold.omml

file too large to diff

− tests/writers/digit-bold.tex

file too large to diff

− tests/writers/digit-double-struck.eqn

file too large to diff

− tests/writers/digit-double-struck.mml

file too large to diff

− tests/writers/digit-double-struck.omml

file too large to diff

− tests/writers/digit-double-struck.tex

file too large to diff

− tests/writers/digit-monospace.eqn

file too large to diff

− tests/writers/digit-monospace.mml

file too large to diff

− tests/writers/digit-monospace.omml

file too large to diff

− tests/writers/digit-monospace.tex

file too large to diff

− tests/writers/digit-sans-serif-bold.eqn

file too large to diff

− tests/writers/digit-sans-serif-bold.mml

file too large to diff

− tests/writers/digit-sans-serif-bold.omml

file too large to diff

− tests/writers/digit-sans-serif-bold.tex

file too large to diff

− tests/writers/digit-sans-serif.eqn

file too large to diff

− tests/writers/digit-sans-serif.mml

file too large to diff

− tests/writers/digit-sans-serif.omml

file too large to diff

− tests/writers/digit-sans-serif.tex

file too large to diff

− tests/writers/divergence.eqn

file too large to diff

− tests/writers/divergence.mml

file too large to diff

− tests/writers/divergence.omml

file too large to diff

− tests/writers/divergence.tex

file too large to diff

− tests/writers/dotless.eqn

file too large to diff

− tests/writers/dotless.mml

file too large to diff

− tests/writers/dotless.omml

file too large to diff

− tests/writers/dotless.tex

file too large to diff

− tests/writers/double-struck.eqn

file too large to diff

− tests/writers/double-struck.mml

file too large to diff

− tests/writers/double-struck.omml

file too large to diff

− tests/writers/double-struck.tex

file too large to diff

− tests/writers/doubleint1.eqn

file too large to diff

− tests/writers/doubleint1.mml

file too large to diff

− tests/writers/doubleint1.omml

file too large to diff

− tests/writers/doubleint1.tex

file too large to diff

− tests/writers/doubleint2.eqn

file too large to diff

− tests/writers/doubleint2.mml

file too large to diff

− tests/writers/doubleint2.omml

file too large to diff

− tests/writers/doubleint2.tex

file too large to diff

− tests/writers/e.eqn

file too large to diff

− tests/writers/e.mml

file too large to diff

− tests/writers/e.omml

file too large to diff

− tests/writers/e.tex

file too large to diff

− tests/writers/embStretch1.eqn

file too large to diff

− tests/writers/embStretch1.mml

file too large to diff

− tests/writers/embStretch1.omml

file too large to diff

− tests/writers/embStretch1.tex

file too large to diff

− tests/writers/emptyContent1.eqn

file too large to diff

− tests/writers/emptyContent1.mml

file too large to diff

− tests/writers/emptyContent1.omml

file too large to diff

− tests/writers/emptyContent1.tex

file too large to diff

− tests/writers/ensuremath.eqn

file too large to diff

− tests/writers/ensuremath.mml

file too large to diff

− tests/writers/ensuremath.omml

file too large to diff

− tests/writers/ensuremath.tex

file too large to diff

− tests/writers/f.eqn

file too large to diff

− tests/writers/f.mml

file too large to diff

− tests/writers/f.omml

file too large to diff

− tests/writers/f.tex

file too large to diff

− tests/writers/fraktur-bold.eqn

file too large to diff

− tests/writers/fraktur-bold.mml

file too large to diff

− tests/writers/fraktur-bold.omml

file too large to diff

− tests/writers/fraktur-bold.tex

file too large to diff

− tests/writers/fraktur.eqn

file too large to diff

− tests/writers/fraktur.mml

file too large to diff

− tests/writers/fraktur.omml

file too large to diff

− tests/writers/fraktur.tex

file too large to diff

− tests/writers/g.eqn

file too large to diff

− tests/writers/g.mml

file too large to diff

− tests/writers/g.omml

file too large to diff

− tests/writers/g.tex

file too large to diff

− tests/writers/genBvert1.eqn

file too large to diff

− tests/writers/genBvert1.mml

file too large to diff

− tests/writers/genBvert1.omml

file too large to diff

− tests/writers/genBvert1.tex

file too large to diff

− tests/writers/genfrac.eqn

file too large to diff

− tests/writers/genfrac.mml

file too large to diff

− tests/writers/genfrac.omml

file too large to diff

− tests/writers/genfrac.tex

file too large to diff

− tests/writers/greek-bold-italic.eqn

file too large to diff

− tests/writers/greek-bold-italic.mml

file too large to diff

− tests/writers/greek-bold-italic.omml

file too large to diff

− tests/writers/greek-bold-italic.tex

file too large to diff

− tests/writers/greek-bold.eqn

file too large to diff

− tests/writers/greek-bold.mml

file too large to diff

− tests/writers/greek-bold.omml

file too large to diff

− tests/writers/greek-bold.tex

file too large to diff

− tests/writers/greek-italic.eqn

file too large to diff

− tests/writers/greek-italic.mml

file too large to diff

− tests/writers/greek-italic.omml

file too large to diff

− tests/writers/greek-italic.tex

file too large to diff

− tests/writers/greek-sans-serif-bold-italic.eqn

file too large to diff

− tests/writers/greek-sans-serif-bold-italic.mml

file too large to diff

− tests/writers/greek-sans-serif-bold-italic.omml

file too large to diff

− tests/writers/greek-sans-serif-bold-italic.tex

file too large to diff

− tests/writers/greek-sans-serif-bold.eqn

file too large to diff

− tests/writers/greek-sans-serif-bold.mml

file too large to diff

− tests/writers/greek-sans-serif-bold.omml

file too large to diff

− tests/writers/greek-sans-serif-bold.tex

file too large to diff

− tests/writers/h.eqn

file too large to diff

− tests/writers/h.mml

file too large to diff

− tests/writers/h.omml

file too large to diff

− tests/writers/h.tex

file too large to diff

− tests/writers/href1.eqn

file too large to diff

− tests/writers/href1.mml

file too large to diff

− tests/writers/href1.omml

file too large to diff

− tests/writers/href1.tex

file too large to diff

− tests/writers/href2.eqn

file too large to diff

− tests/writers/href2.mml

file too large to diff

− tests/writers/href2.omml

file too large to diff

− tests/writers/href2.tex

file too large to diff

− tests/writers/href3.eqn

file too large to diff

− tests/writers/href3.mml

file too large to diff

− tests/writers/href3.omml

file too large to diff

− tests/writers/href3.tex

file too large to diff

− tests/writers/i.eqn

file too large to diff

− tests/writers/i.mml

file too large to diff

− tests/writers/i.omml

file too large to diff

− tests/writers/i.tex

file too large to diff

− tests/writers/id1.eqn

file too large to diff

− tests/writers/id1.mml

file too large to diff

− tests/writers/id1.omml

file too large to diff

− tests/writers/id1.tex

file too large to diff

− tests/writers/int1.eqn

file too large to diff

− tests/writers/int1.mml

file too large to diff

− tests/writers/int1.omml

file too large to diff

− tests/writers/int1.tex

file too large to diff

− tests/writers/int10.eqn

file too large to diff

− tests/writers/int10.mml

file too large to diff

− tests/writers/int10.omml

file too large to diff

− tests/writers/int10.tex

file too large to diff

− tests/writers/int2.eqn

file too large to diff

− tests/writers/int2.mml

file too large to diff

− tests/writers/int2.omml

file too large to diff

− tests/writers/int2.tex

file too large to diff

− tests/writers/int3.eqn

file too large to diff

− tests/writers/int3.mml

file too large to diff

− tests/writers/int3.omml

file too large to diff

− tests/writers/int3.tex

file too large to diff

− tests/writers/int4.eqn

file too large to diff

− tests/writers/int4.mml

file too large to diff

− tests/writers/int4.omml

file too large to diff

− tests/writers/int4.tex

file too large to diff

− tests/writers/int5.eqn

file too large to diff

− tests/writers/int5.mml

file too large to diff

− tests/writers/int5.omml

file too large to diff

− tests/writers/int5.tex

file too large to diff

− tests/writers/int6.eqn

file too large to diff

− tests/writers/int6.mml

file too large to diff

− tests/writers/int6.omml

file too large to diff

− tests/writers/int6.tex

file too large to diff

− tests/writers/int7.eqn

file too large to diff

− tests/writers/int7.mml

file too large to diff

− tests/writers/int7.omml

file too large to diff

− tests/writers/int7.tex

file too large to diff

− tests/writers/int8.eqn

file too large to diff

− tests/writers/int8.mml

file too large to diff

− tests/writers/int8.omml

file too large to diff

− tests/writers/int8.tex

file too large to diff

− tests/writers/int9.eqn

file too large to diff

− tests/writers/int9.mml

file too large to diff

− tests/writers/int9.omml

file too large to diff

− tests/writers/int9.tex

file too large to diff

− tests/writers/intDispStyle.eqn

file too large to diff

− tests/writers/intDispStyle.mml

file too large to diff

− tests/writers/intDispStyle.omml

file too large to diff

− tests/writers/intDispStyle.tex

file too large to diff

− tests/writers/intNested3.eqn

file too large to diff

− tests/writers/intNested3.mml

file too large to diff

− tests/writers/intNested3.omml

file too large to diff

− tests/writers/intNested3.tex

file too large to diff

− tests/writers/intSize1.eqn

file too large to diff

− tests/writers/intSize1.mml

file too large to diff

− tests/writers/intSize1.omml

file too large to diff

− tests/writers/intSize1.tex

file too large to diff

− tests/writers/intSize2.eqn

file too large to diff

− tests/writers/intSize2.mml

file too large to diff

− tests/writers/intSize2.omml

file too large to diff

− tests/writers/intSize2.tex

file too large to diff

− tests/writers/invChars.eqn

file too large to diff

− tests/writers/invChars.mml

file too large to diff

− tests/writers/invChars.omml

file too large to diff

− tests/writers/invChars.tex

file too large to diff

− tests/writers/issue109.eqn

file too large to diff

− tests/writers/issue109.mml

file too large to diff

− tests/writers/issue109.omml

file too large to diff

− tests/writers/issue109.tex

file too large to diff

− tests/writers/j.eqn

file too large to diff

− tests/writers/j.mml

file too large to diff

− tests/writers/j.omml

file too large to diff

− tests/writers/j.tex

file too large to diff

− tests/writers/k.eqn

file too large to diff

− tests/writers/k.mml

file too large to diff

− tests/writers/k.omml

file too large to diff

− tests/writers/k.tex

file too large to diff

− tests/writers/l.eqn

file too large to diff

− tests/writers/l.mml

file too large to diff

− tests/writers/l.omml

file too large to diff

− tests/writers/l.tex

file too large to diff

− tests/writers/labels.eqn

file too large to diff

− tests/writers/labels.mml

file too large to diff

− tests/writers/labels.omml

file too large to diff

− tests/writers/labels.tex

file too large to diff

− tests/writers/largeop1.eqn

file too large to diff

− tests/writers/largeop1.mml

file too large to diff

− tests/writers/largeop1.omml

file too large to diff

− tests/writers/largeop1.tex

file too large to diff

− tests/writers/largeop2.eqn

file too large to diff

− tests/writers/largeop2.mml

file too large to diff

− tests/writers/largeop2.omml

file too large to diff

− tests/writers/largeop2.tex

file too large to diff

− tests/writers/largeopPos3.eqn

file too large to diff

− tests/writers/largeopPos3.mml

file too large to diff

− tests/writers/largeopPos3.omml

file too large to diff

− tests/writers/largeopPos3.tex

file too large to diff

− tests/writers/latin-bold-italic.eqn

file too large to diff

− tests/writers/latin-bold-italic.mml

file too large to diff

− tests/writers/latin-bold-italic.omml

file too large to diff

− tests/writers/latin-bold-italic.tex

file too large to diff

− tests/writers/latin-bold.eqn

file too large to diff

− tests/writers/latin-bold.mml

file too large to diff

− tests/writers/latin-bold.omml

file too large to diff

− tests/writers/latin-bold.tex

file too large to diff

− tests/writers/latin-italic.eqn

file too large to diff

− tests/writers/latin-italic.mml

file too large to diff

− tests/writers/latin-italic.omml

file too large to diff

− tests/writers/latin-italic.tex

file too large to diff

− tests/writers/latin-sans-serif-bold-italic.eqn

file too large to diff

− tests/writers/latin-sans-serif-bold-italic.mml

file too large to diff

− tests/writers/latin-sans-serif-bold-italic.omml

file too large to diff

− tests/writers/latin-sans-serif-bold-italic.tex

file too large to diff

− tests/writers/latin-sans-serif-bold.eqn

file too large to diff

− tests/writers/latin-sans-serif-bold.mml

file too large to diff

− tests/writers/latin-sans-serif-bold.omml

file too large to diff

− tests/writers/latin-sans-serif-bold.tex

file too large to diff

− tests/writers/latin-sans-serif-italic.eqn

file too large to diff

− tests/writers/latin-sans-serif-italic.mml

file too large to diff

− tests/writers/latin-sans-serif-italic.omml

file too large to diff

− tests/writers/latin-sans-serif-italic.tex

file too large to diff

− tests/writers/latin-sans-serif.eqn

file too large to diff

− tests/writers/latin-sans-serif.mml

file too large to diff

− tests/writers/latin-sans-serif.omml

file too large to diff

− tests/writers/latin-sans-serif.tex

file too large to diff

− tests/writers/m.eqn

file too large to diff

− tests/writers/m.mml

file too large to diff

− tests/writers/m.omml

file too large to diff

− tests/writers/m.tex

file too large to diff

− tests/writers/m10.eqn

file too large to diff

− tests/writers/m10.mml

file too large to diff

− tests/writers/m10.omml

file too large to diff

− tests/writers/m10.tex

file too large to diff

− tests/writers/m100.eqn

file too large to diff

− tests/writers/m100.mml

file too large to diff

− tests/writers/m100.omml

file too large to diff

− tests/writers/m100.tex

file too large to diff

− tests/writers/m1000.eqn

file too large to diff

− tests/writers/m1000.mml

file too large to diff

− tests/writers/m1000.omml

file too large to diff

− tests/writers/m1000.tex

file too large to diff

− tests/writers/macros.eqn

file too large to diff

− tests/writers/macros.mml

file too large to diff

− tests/writers/macros.omml

file too large to diff

− tests/writers/macros.tex

file too large to diff

− tests/writers/maction-01.eqn

file too large to diff

− tests/writers/maction-01.mml

file too large to diff

− tests/writers/maction-01.omml

file too large to diff

− tests/writers/maction-01.tex

file too large to diff

− tests/writers/maction-02.eqn

file too large to diff

− tests/writers/maction-02.mml

file too large to diff

− tests/writers/maction-02.omml

file too large to diff

− tests/writers/maction-02.tex

file too large to diff

− tests/writers/maction-03.eqn

file too large to diff

− tests/writers/maction-03.mml

file too large to diff

− tests/writers/maction-03.omml

file too large to diff

− tests/writers/maction-03.tex

file too large to diff

− tests/writers/maction-04.eqn

file too large to diff

− tests/writers/maction-04.mml

file too large to diff

− tests/writers/maction-04.omml

file too large to diff

− tests/writers/maction-04.tex

file too large to diff

− tests/writers/maction-05.eqn

file too large to diff

− tests/writers/maction-05.mml

file too large to diff

− tests/writers/maction-05.omml

file too large to diff

− tests/writers/maction-05.tex

file too large to diff

− tests/writers/maction-06.eqn

file too large to diff

− tests/writers/maction-06.mml

file too large to diff

− tests/writers/maction-06.omml

file too large to diff

− tests/writers/maction-06.tex

file too large to diff

− tests/writers/maction-07.eqn

file too large to diff

− tests/writers/maction-07.mml

file too large to diff

− tests/writers/maction-07.omml

file too large to diff

− tests/writers/maction-07.tex

file too large to diff

− tests/writers/maction-08.eqn

file too large to diff

− tests/writers/maction-08.mml

file too large to diff

− tests/writers/maction-08.omml

file too large to diff

− tests/writers/maction-08.tex

file too large to diff

− tests/writers/mactionBhigh1.eqn

file too large to diff

− tests/writers/mactionBhigh1.mml

file too large to diff

− tests/writers/mactionBhigh1.omml

file too large to diff

− tests/writers/mactionBhigh1.tex

file too large to diff

− tests/writers/mactionBstatus1.eqn

file too large to diff

− tests/writers/mactionBstatus1.mml

file too large to diff

− tests/writers/mactionBstatus1.omml

file too large to diff

− tests/writers/mactionBstatus1.tex

file too large to diff

− tests/writers/mactionBtoggle1.eqn

file too large to diff

− tests/writers/mactionBtoggle1.mml

file too large to diff

− tests/writers/mactionBtoggle1.omml

file too large to diff

− tests/writers/mactionBtoggle1.tex

file too large to diff

− tests/writers/mactionBtooltip1.eqn

file too large to diff

− tests/writers/mactionBtooltip1.mml

file too large to diff

− tests/writers/mactionBtooltip1.omml

file too large to diff

− tests/writers/mactionBtooltip1.tex

file too large to diff

− tests/writers/maligngroup1.eqn

file too large to diff

− tests/writers/maligngroup1.mml

file too large to diff

− tests/writers/maligngroup1.omml

file too large to diff

− tests/writers/maligngroup1.tex

file too large to diff

− tests/writers/math-in-text.eqn

file too large to diff

− tests/writers/math-in-text.mml

file too large to diff

− tests/writers/math-in-text.omml

file too large to diff

− tests/writers/math-in-text.tex

file too large to diff

− tests/writers/math1.eqn

file too large to diff

− tests/writers/math1.mml

file too large to diff

− tests/writers/math1.omml

file too large to diff

− tests/writers/math1.tex

file too large to diff

− tests/writers/math3.eqn

file too large to diff

− tests/writers/math3.mml

file too large to diff

− tests/writers/math3.omml

file too large to diff

− tests/writers/math3.tex

file too large to diff

− tests/writers/mathAdisplay1.eqn

file too large to diff

− tests/writers/mathAdisplay1.mml

file too large to diff

− tests/writers/mathAdisplay1.omml

file too large to diff

− tests/writers/mathAdisplay1.tex

file too large to diff

− tests/writers/mathAdisplay2.eqn

file too large to diff

− tests/writers/mathAdisplay2.mml

file too large to diff

− tests/writers/mathAdisplay2.omml

file too large to diff

− tests/writers/mathAdisplay2.tex

file too large to diff

− tests/writers/mathAmacros1.eqn

file too large to diff

− tests/writers/mathAmacros1.mml

file too large to diff

− tests/writers/mathAmacros1.omml

file too large to diff

− tests/writers/mathAmacros1.tex

file too large to diff

− tests/writers/mathAmode1.eqn

file too large to diff

− tests/writers/mathAmode1.mml

file too large to diff

− tests/writers/mathAmode1.omml

file too large to diff

− tests/writers/mathAmode1.tex

file too large to diff

− tests/writers/mathBevelledFrac.eqn

file too large to diff

− tests/writers/mathBevelledFrac.mml

file too large to diff

− tests/writers/mathBevelledFrac.omml

file too large to diff

− tests/writers/mathBevelledFrac.tex

file too large to diff

− tests/writers/mathDir.eqn

file too large to diff

− tests/writers/mathDir.mml

file too large to diff

− tests/writers/mathDir.omml

file too large to diff

− tests/writers/mathDir.tex

file too large to diff

− tests/writers/mathTable1.eqn

file too large to diff

− tests/writers/mathTable1.mml

file too large to diff

− tests/writers/mathTable1.omml

file too large to diff

− tests/writers/mathTable1.tex

file too large to diff

− tests/writers/merror-01.eqn

file too large to diff

− tests/writers/merror-01.mml

file too large to diff

− tests/writers/merror-01.omml

file too large to diff

− tests/writers/merror-01.tex

file too large to diff

− tests/writers/merror1.eqn

file too large to diff

− tests/writers/merror1.mml

file too large to diff

− tests/writers/merror1.omml

file too large to diff

− tests/writers/merror1.tex

file too large to diff

− tests/writers/merrorB3.eqn

file too large to diff

− tests/writers/merrorB3.mml

file too large to diff

− tests/writers/merrorB3.omml

file too large to diff

− tests/writers/merrorB3.tex

file too large to diff

− tests/writers/mfenced-01.eqn

file too large to diff

− tests/writers/mfenced-01.mml

file too large to diff

− tests/writers/mfenced-01.omml

file too large to diff

− tests/writers/mfenced-01.tex

file too large to diff

− tests/writers/mfenced-02.eqn

file too large to diff

− tests/writers/mfenced-02.mml

file too large to diff

− tests/writers/mfenced-02.omml

file too large to diff

− tests/writers/mfenced-02.tex

file too large to diff

− tests/writers/mfenced-03.eqn

file too large to diff

− tests/writers/mfenced-03.mml

file too large to diff

− tests/writers/mfenced-03.omml

file too large to diff

− tests/writers/mfenced-03.tex

file too large to diff

− tests/writers/mfenced-04.eqn

file too large to diff

− tests/writers/mfenced-04.mml

file too large to diff

− tests/writers/mfenced-04.omml

file too large to diff

− tests/writers/mfenced-04.tex

file too large to diff

− tests/writers/mfenced-05.eqn

file too large to diff

− tests/writers/mfenced-05.mml

file too large to diff

− tests/writers/mfenced-05.omml

file too large to diff

− tests/writers/mfenced-05.tex

file too large to diff

− tests/writers/mfenced-06.eqn

file too large to diff

− tests/writers/mfenced-06.mml

file too large to diff

− tests/writers/mfenced-06.omml

file too large to diff

− tests/writers/mfenced-06.tex

file too large to diff

− tests/writers/mfenced-07.eqn

file too large to diff

− tests/writers/mfenced-07.mml

file too large to diff

− tests/writers/mfenced-07.omml

file too large to diff

− tests/writers/mfenced-07.tex

file too large to diff

− tests/writers/mfenced-08.eqn

file too large to diff

− tests/writers/mfenced-08.mml

file too large to diff

− tests/writers/mfenced-08.omml

file too large to diff

− tests/writers/mfenced-08.tex

file too large to diff

− tests/writers/mfenced1.eqn

file too large to diff

− tests/writers/mfenced1.mml

file too large to diff

− tests/writers/mfenced1.omml

file too large to diff

− tests/writers/mfenced1.tex

file too large to diff

− tests/writers/mfenced2.eqn

file too large to diff

− tests/writers/mfenced2.mml

file too large to diff

− tests/writers/mfenced2.omml

file too large to diff

− tests/writers/mfenced2.tex

file too large to diff

− tests/writers/mfenced3.eqn

file too large to diff

− tests/writers/mfenced3.mml

file too large to diff

− tests/writers/mfenced3.omml

file too large to diff

− tests/writers/mfenced3.tex

file too large to diff

− tests/writers/mfenced4.eqn

file too large to diff

− tests/writers/mfenced4.mml

file too large to diff

− tests/writers/mfenced4.omml

file too large to diff

− tests/writers/mfenced4.tex

file too large to diff

− tests/writers/mfenced5.eqn

file too large to diff

− tests/writers/mfenced5.mml

file too large to diff

− tests/writers/mfenced5.omml

file too large to diff

− tests/writers/mfenced5.tex

file too large to diff

− tests/writers/mfencedAdelims6.eqn

file too large to diff

− tests/writers/mfencedAdelims6.mml

file too large to diff

− tests/writers/mfencedAdelims6.omml

file too large to diff

− tests/writers/mfencedAdelims6.tex

file too large to diff

− tests/writers/mfencedAempty.eqn

file too large to diff

− tests/writers/mfencedAempty.mml

file too large to diff

− tests/writers/mfencedAempty.omml

file too large to diff

− tests/writers/mfencedAempty.tex

file too large to diff

− tests/writers/mfencedBfences7.eqn

file too large to diff

− tests/writers/mfencedBfences7.mml

file too large to diff

− tests/writers/mfencedBfences7.omml

file too large to diff

− tests/writers/mfencedBfences7.tex

file too large to diff

− tests/writers/mfencedBseparators8.eqn

file too large to diff

− tests/writers/mfencedBseparators8.mml

file too large to diff

− tests/writers/mfencedBseparators8.omml

file too large to diff

− tests/writers/mfencedBseparators8.tex

file too large to diff

− tests/writers/mfencedSfonts9.eqn

file too large to diff

− tests/writers/mfencedSfonts9.mml

file too large to diff

− tests/writers/mfencedSfonts9.omml

file too large to diff

− tests/writers/mfencedSfonts9.tex

file too large to diff

− tests/writers/mfrac-01.eqn

file too large to diff

− tests/writers/mfrac-01.mml

file too large to diff

− tests/writers/mfrac-01.omml

file too large to diff

− tests/writers/mfrac-01.tex

file too large to diff

− tests/writers/mfrac-02.eqn

file too large to diff

− tests/writers/mfrac-02.mml

file too large to diff

− tests/writers/mfrac-02.omml

file too large to diff

− tests/writers/mfrac-02.tex

file too large to diff

− tests/writers/mfrac-03.eqn

file too large to diff

− tests/writers/mfrac-03.mml

file too large to diff

− tests/writers/mfrac-03.omml

file too large to diff

− tests/writers/mfrac-03.tex

file too large to diff

− tests/writers/mfrac-04.eqn

file too large to diff

− tests/writers/mfrac-04.mml

file too large to diff

− tests/writers/mfrac-04.omml

file too large to diff

− tests/writers/mfrac-04.tex

file too large to diff

− tests/writers/mfrac-05.eqn

file too large to diff

− tests/writers/mfrac-05.mml

file too large to diff

− tests/writers/mfrac-05.omml

file too large to diff

− tests/writers/mfrac-05.tex

file too large to diff

− tests/writers/mfrac-06.eqn

file too large to diff

− tests/writers/mfrac-06.mml

file too large to diff

− tests/writers/mfrac-06.omml

file too large to diff

− tests/writers/mfrac-06.tex

file too large to diff

− tests/writers/mfrac-07.eqn

file too large to diff

− tests/writers/mfrac-07.mml

file too large to diff

− tests/writers/mfrac-07.omml

file too large to diff

− tests/writers/mfrac-07.tex

file too large to diff

− tests/writers/mfrac-08.eqn

file too large to diff

− tests/writers/mfrac-08.mml

file too large to diff

− tests/writers/mfrac-08.omml

file too large to diff

− tests/writers/mfrac-08.tex

file too large to diff

− tests/writers/mfrac-09.eqn

file too large to diff

− tests/writers/mfrac-09.mml

file too large to diff

− tests/writers/mfrac-09.omml

file too large to diff

− tests/writers/mfrac-09.tex

file too large to diff

− tests/writers/mfrac-10.eqn

file too large to diff

− tests/writers/mfrac-10.mml

file too large to diff

− tests/writers/mfrac-10.omml

file too large to diff

− tests/writers/mfrac-10.tex

file too large to diff

− tests/writers/mfrac-11.eqn

file too large to diff

− tests/writers/mfrac-11.mml

file too large to diff

− tests/writers/mfrac-11.omml

file too large to diff

− tests/writers/mfrac-11.tex

file too large to diff

− tests/writers/mfrac-12.eqn

file too large to diff

− tests/writers/mfrac-12.mml

file too large to diff

− tests/writers/mfrac-12.omml

file too large to diff

− tests/writers/mfrac-12.tex

file too large to diff

− tests/writers/mfrac1.eqn

file too large to diff

− tests/writers/mfrac1.mml

file too large to diff

− tests/writers/mfrac1.omml

file too large to diff

− tests/writers/mfrac1.tex

file too large to diff

− tests/writers/mfrac2.eqn

file too large to diff

− tests/writers/mfrac2.mml

file too large to diff

− tests/writers/mfrac2.omml

file too large to diff

− tests/writers/mfrac2.tex

file too large to diff

− tests/writers/mfrac3.eqn

file too large to diff

− tests/writers/mfrac3.mml

file too large to diff

− tests/writers/mfrac3.omml

file too large to diff

− tests/writers/mfrac3.tex

file too large to diff

− tests/writers/mfrac4.eqn

file too large to diff

− tests/writers/mfrac4.mml

file too large to diff

− tests/writers/mfrac4.omml

file too large to diff

− tests/writers/mfrac4.tex

file too large to diff

− tests/writers/mfrac5.eqn

file too large to diff

− tests/writers/mfrac5.mml

file too large to diff

− tests/writers/mfrac5.omml

file too large to diff

− tests/writers/mfrac5.tex

file too large to diff

− tests/writers/mfrac6.eqn

file too large to diff

− tests/writers/mfrac6.mml

file too large to diff

− tests/writers/mfrac6.omml

file too large to diff

− tests/writers/mfrac6.tex

file too large to diff

− tests/writers/mfrac7.eqn

file too large to diff

− tests/writers/mfrac7.mml

file too large to diff

− tests/writers/mfrac7.omml

file too large to diff

− tests/writers/mfrac7.tex

file too large to diff

− tests/writers/mfracAbevelled16.eqn

file too large to diff

− tests/writers/mfracAbevelled16.mml

file too large to diff

− tests/writers/mfracAbevelled16.omml

file too large to diff

− tests/writers/mfracAbevelled16.tex

file too large to diff

− tests/writers/mfracAcss8.eqn

file too large to diff

− tests/writers/mfracAcss8.mml

file too large to diff

− tests/writers/mfracAcss8.omml

file too large to diff

− tests/writers/mfracAcss8.tex

file too large to diff

− tests/writers/mfracAkeyword9.eqn

file too large to diff

− tests/writers/mfracAkeyword9.mml

file too large to diff

− tests/writers/mfracAkeyword9.omml

file too large to diff

− tests/writers/mfracAkeyword9.tex

file too large to diff

− tests/writers/mfracAmultiplier10.eqn

file too large to diff

− tests/writers/mfracAmultiplier10.mml

file too large to diff

− tests/writers/mfracAmultiplier10.omml

file too large to diff

− tests/writers/mfracAmultiplier10.tex

file too large to diff

− tests/writers/mfracBalign16.eqn

file too large to diff

− tests/writers/mfracBalign16.mml

file too large to diff

− tests/writers/mfracBalign16.omml

file too large to diff

− tests/writers/mfracBalign16.tex

file too large to diff

− tests/writers/mfracBheight17.eqn

file too large to diff

− tests/writers/mfracBheight17.mml

file too large to diff

− tests/writers/mfracBheight17.omml

file too large to diff

− tests/writers/mfracBheight17.tex

file too large to diff

− tests/writers/mfracBhoriz11.eqn

file too large to diff

− tests/writers/mfracBhoriz11.mml

file too large to diff

− tests/writers/mfracBhoriz11.omml

file too large to diff

− tests/writers/mfracBhoriz11.tex

file too large to diff

− tests/writers/mfracBvert12.eqn

file too large to diff

− tests/writers/mfracBvert12.mml

file too large to diff

− tests/writers/mfracBvert12.omml

file too large to diff

− tests/writers/mfracBvert12.tex

file too large to diff

− tests/writers/mfracSfonts13.eqn

file too large to diff

− tests/writers/mfracSfonts13.mml

file too large to diff

− tests/writers/mfracSfonts13.omml

file too large to diff

− tests/writers/mfracSfonts13.tex

file too large to diff

− tests/writers/mfracSinheritance14.eqn

file too large to diff

− tests/writers/mfracSinheritance14.mml

file too large to diff

− tests/writers/mfracSinheritance14.omml

file too large to diff

− tests/writers/mfracSinheritance14.tex

file too large to diff

− tests/writers/mfracSscriptlevel15.eqn

file too large to diff

− tests/writers/mfracSscriptlevel15.mml

file too large to diff

− tests/writers/mfracSscriptlevel15.omml

file too large to diff

− tests/writers/mfracSscriptlevel15.tex

file too large to diff

− tests/writers/mfracZcomp-01.eqn

file too large to diff

− tests/writers/mfracZcomp-01.mml

file too large to diff

− tests/writers/mfracZcomp-01.omml

file too large to diff

− tests/writers/mfracZcomp-01.tex

file too large to diff

− tests/writers/mfracZcomp-02.eqn

file too large to diff

− tests/writers/mfracZcomp-02.mml

file too large to diff

− tests/writers/mfracZcomp-02.omml

file too large to diff

− tests/writers/mfracZcomp-02.tex

file too large to diff

− tests/writers/mfracZcomp-03.eqn

file too large to diff

− tests/writers/mfracZcomp-03.mml

file too large to diff

− tests/writers/mfracZcomp-03.omml

file too large to diff

− tests/writers/mfracZcomp-03.tex

file too large to diff

− tests/writers/mfracZcomp-04.eqn

file too large to diff

− tests/writers/mfracZcomp-04.mml

file too large to diff

− tests/writers/mfracZcomp-04.omml

file too large to diff

− tests/writers/mfracZcomp-04.tex

file too large to diff

− tests/writers/mfracZcomp-05.eqn

file too large to diff

− tests/writers/mfracZcomp-05.mml

file too large to diff

− tests/writers/mfracZcomp-05.omml

file too large to diff

− tests/writers/mfracZcomp-05.tex

file too large to diff

− tests/writers/mfracZcomp-06.eqn

file too large to diff

− tests/writers/mfracZcomp-06.mml

file too large to diff

− tests/writers/mfracZcomp-06.omml

file too large to diff

− tests/writers/mfracZcomp-06.tex

file too large to diff

− tests/writers/mfracZcomp-07.eqn

file too large to diff

− tests/writers/mfracZcomp-07.mml

file too large to diff

− tests/writers/mfracZcomp-07.omml

file too large to diff

− tests/writers/mfracZcomp-07.tex

file too large to diff

− tests/writers/mfracZcomp-08.eqn

file too large to diff

− tests/writers/mfracZcomp-08.mml

file too large to diff

− tests/writers/mfracZcomp-08.omml

file too large to diff

− tests/writers/mfracZcomp-08.tex

file too large to diff

− tests/writers/mfracZcomp-09.eqn

file too large to diff

− tests/writers/mfracZcomp-09.mml

file too large to diff

− tests/writers/mfracZcomp-09.omml

file too large to diff

− tests/writers/mfracZcomp-09.tex

file too large to diff

− tests/writers/mfracZcomp-10.eqn

file too large to diff

− tests/writers/mfracZcomp-10.mml

file too large to diff

− tests/writers/mfracZcomp-10.omml

file too large to diff

− tests/writers/mfracZcomp-10.tex

file too large to diff

− tests/writers/mfracZcomp-11.eqn

file too large to diff

− tests/writers/mfracZcomp-11.mml

file too large to diff

− tests/writers/mfracZcomp-11.omml

file too large to diff

− tests/writers/mfracZcomp-11.tex

file too large to diff

− tests/writers/mfracZcomp-12.eqn

file too large to diff

− tests/writers/mfracZcomp-12.mml

file too large to diff

− tests/writers/mfracZcomp-12.omml

file too large to diff

− tests/writers/mfracZcomp-12.tex

file too large to diff

− tests/writers/mfracZcomp-13.eqn

file too large to diff

− tests/writers/mfracZcomp-13.mml

file too large to diff

− tests/writers/mfracZcomp-13.omml

file too large to diff

− tests/writers/mfracZcomp-13.tex

file too large to diff

− tests/writers/mfracZcomp-14.eqn

file too large to diff

− tests/writers/mfracZcomp-14.mml

file too large to diff

− tests/writers/mfracZcomp-14.omml

file too large to diff

− tests/writers/mfracZcomp-14.tex

file too large to diff

− tests/writers/mfracZcomp-15.eqn

file too large to diff

− tests/writers/mfracZcomp-15.mml

file too large to diff

− tests/writers/mfracZcomp-15.omml

file too large to diff

− tests/writers/mfracZcomp-15.tex

file too large to diff

− tests/writers/mfracZcomp-16.eqn

file too large to diff

− tests/writers/mfracZcomp-16.mml

file too large to diff

− tests/writers/mfracZcomp-16.omml

file too large to diff

− tests/writers/mfracZcomp-16.tex

file too large to diff

− tests/writers/mfracZcomp-17.eqn

file too large to diff

− tests/writers/mfracZcomp-17.mml

file too large to diff

− tests/writers/mfracZcomp-17.omml

file too large to diff

− tests/writers/mfracZcomp-17.tex

file too large to diff

− tests/writers/mfracZcomp-18.eqn

file too large to diff

− tests/writers/mfracZcomp-18.mml

file too large to diff

− tests/writers/mfracZcomp-18.omml

file too large to diff

− tests/writers/mfracZcomp-18.tex

file too large to diff

− tests/writers/mfracZcomp-19.eqn

file too large to diff

− tests/writers/mfracZcomp-19.mml

file too large to diff

− tests/writers/mfracZcomp-19.omml

file too large to diff

− tests/writers/mfracZcomp-19.tex

file too large to diff

− tests/writers/mfracZcomp-20.eqn

file too large to diff

− tests/writers/mfracZcomp-20.mml

file too large to diff

− tests/writers/mfracZcomp-20.omml

file too large to diff

− tests/writers/mfracZcomp-20.tex

file too large to diff

− tests/writers/mfracZcomp-21.eqn

file too large to diff

− tests/writers/mfracZcomp-21.mml

file too large to diff

− tests/writers/mfracZcomp-21.omml

file too large to diff

− tests/writers/mfracZcomp-21.tex

file too large to diff

− tests/writers/mfracZcomp-22.eqn

file too large to diff

− tests/writers/mfracZcomp-22.mml

file too large to diff

− tests/writers/mfracZcomp-22.omml

file too large to diff

− tests/writers/mfracZcomp-22.tex

file too large to diff

− tests/writers/mfracZcomp-23.eqn

file too large to diff

− tests/writers/mfracZcomp-23.mml

file too large to diff

− tests/writers/mfracZcomp-23.omml

file too large to diff

− tests/writers/mfracZcomp-23.tex

file too large to diff

− tests/writers/mfracZcomp-24.eqn

file too large to diff

− tests/writers/mfracZcomp-24.mml

file too large to diff

− tests/writers/mfracZcomp-24.omml

file too large to diff

− tests/writers/mfracZcomp-24.tex

file too large to diff

− tests/writers/mfracZcomp-25.eqn

file too large to diff

− tests/writers/mfracZcomp-25.mml

file too large to diff

− tests/writers/mfracZcomp-25.omml

file too large to diff

− tests/writers/mfracZcomp-25.tex

file too large to diff

− tests/writers/mfracZcomp-26.eqn

file too large to diff

− tests/writers/mfracZcomp-26.mml

file too large to diff

− tests/writers/mfracZcomp-26.omml

file too large to diff

− tests/writers/mfracZcomp-26.tex

file too large to diff

− tests/writers/mfracZcomp-27.eqn

file too large to diff

− tests/writers/mfracZcomp-27.mml

file too large to diff

− tests/writers/mfracZcomp-27.omml

file too large to diff

− tests/writers/mfracZcomp-27.tex

file too large to diff

− tests/writers/mfracZcomp-28.eqn

file too large to diff

− tests/writers/mfracZcomp-28.mml

file too large to diff

− tests/writers/mfracZcomp-28.omml

file too large to diff

− tests/writers/mfracZcomp-28.tex

file too large to diff

− tests/writers/mfracZcomp-29.eqn

file too large to diff

− tests/writers/mfracZcomp-29.mml

file too large to diff

− tests/writers/mfracZcomp-29.omml

file too large to diff

− tests/writers/mfracZcomp-29.tex

file too large to diff

− tests/writers/mfracZcomp-30.eqn

file too large to diff

− tests/writers/mfracZcomp-30.mml

file too large to diff

− tests/writers/mfracZcomp-30.omml

file too large to diff

− tests/writers/mfracZcomp-30.tex

file too large to diff

− tests/writers/mfracZcomp-31.eqn

file too large to diff

− tests/writers/mfracZcomp-31.mml

file too large to diff

− tests/writers/mfracZcomp-31.omml

file too large to diff

− tests/writers/mfracZcomp-31.tex

file too large to diff

− tests/writers/mfracZcomp-32.eqn

file too large to diff

− tests/writers/mfracZcomp-32.mml

file too large to diff

− tests/writers/mfracZcomp-32.omml

file too large to diff

− tests/writers/mfracZcomp-32.tex

file too large to diff

− tests/writers/mfracZcomp-33.eqn

file too large to diff

− tests/writers/mfracZcomp-33.mml

file too large to diff

− tests/writers/mfracZcomp-33.omml

file too large to diff

− tests/writers/mfracZcomp-33.tex

file too large to diff

− tests/writers/mi1.eqn

file too large to diff

− tests/writers/mi1.mml

file too large to diff

− tests/writers/mi1.omml

file too large to diff

− tests/writers/mi1.tex

file too large to diff

− tests/writers/mi2.eqn

file too large to diff

− tests/writers/mi2.mml

file too large to diff

− tests/writers/mi2.omml

file too large to diff

− tests/writers/mi2.tex

file too large to diff

− tests/writers/mi3.eqn

file too large to diff

− tests/writers/mi3.mml

file too large to diff

− tests/writers/mi3.omml

file too large to diff

− tests/writers/mi3.tex

file too large to diff

− tests/writers/mi4.eqn

file too large to diff

− tests/writers/mi4.mml

file too large to diff

− tests/writers/mi4.omml

file too large to diff

− tests/writers/mi4.tex

file too large to diff

− tests/writers/miAtoken5.eqn

file too large to diff

− tests/writers/miAtoken5.mml

file too large to diff

− tests/writers/miAtoken5.omml

file too large to diff

− tests/writers/miAtoken5.tex

file too large to diff

− tests/writers/miSfonts8.eqn

file too large to diff

− tests/writers/miSfonts8.mml

file too large to diff

− tests/writers/miSfonts8.omml

file too large to diff

− tests/writers/miSfonts8.tex

file too large to diff

− tests/writers/miSfontsize9.eqn

file too large to diff

− tests/writers/miSfontsize9.mml

file too large to diff

− tests/writers/miSfontsize9.omml

file too large to diff

− tests/writers/miSfontsize9.tex

file too large to diff

− tests/writers/miSmathsize16.eqn

file too large to diff

− tests/writers/miSmathsize16.mml

file too large to diff

− tests/writers/miSmathsize16.omml

file too large to diff

− tests/writers/miSmathsize16.tex

file too large to diff

− tests/writers/miSmathsize17.eqn

file too large to diff

− tests/writers/miSmathsize17.mml

file too large to diff

− tests/writers/miSmathsize17.omml

file too large to diff

− tests/writers/miSmathsize17.tex

file too large to diff

− tests/writers/miStoken10.eqn

file too large to diff

− tests/writers/miStoken10.mml

file too large to diff

− tests/writers/miStoken10.omml

file too large to diff

− tests/writers/miStoken10.tex

file too large to diff

− tests/writers/mid1.eqn

file too large to diff

− tests/writers/mid1.mml

file too large to diff

− tests/writers/mid1.omml

file too large to diff

− tests/writers/mid1.tex

file too large to diff

− tests/writers/mid2.eqn

file too large to diff

− tests/writers/mid2.mml

file too large to diff

− tests/writers/mid2.omml

file too large to diff

− tests/writers/mid2.tex

file too large to diff

− tests/writers/miequivalents11.eqn

file too large to diff

− tests/writers/miequivalents11.mml

file too large to diff

− tests/writers/miequivalents11.omml

file too large to diff

− tests/writers/miequivalents11.tex

file too large to diff

− tests/writers/mifontstyle12.eqn

file too large to diff

− tests/writers/mifontstyle12.mml

file too large to diff

− tests/writers/mifontstyle12.omml

file too large to diff

− tests/writers/mifontstyle12.tex

file too large to diff

− tests/writers/mimathvariant13.eqn

file too large to diff

− tests/writers/mimathvariant13.mml

file too large to diff

− tests/writers/mimathvariant13.omml

file too large to diff

− tests/writers/mimathvariant13.tex

file too large to diff

− tests/writers/mimathvariant14.eqn

file too large to diff

− tests/writers/mimathvariant14.mml

file too large to diff

− tests/writers/mimathvariant14.omml

file too large to diff

− tests/writers/mimathvariant14.tex

file too large to diff

− tests/writers/mlabeledtr1.eqn

file too large to diff

− tests/writers/mlabeledtr1.mml

file too large to diff

− tests/writers/mlabeledtr1.omml

file too large to diff

− tests/writers/mlabeledtr1.tex

file too large to diff

− tests/writers/mlabeledtrAside1.eqn

file too large to diff

− tests/writers/mlabeledtrAside1.mml

file too large to diff

− tests/writers/mlabeledtrAside1.omml

file too large to diff

− tests/writers/mlabeledtrAside1.tex

file too large to diff

− tests/writers/mlabeledtrAside2.eqn

file too large to diff

− tests/writers/mlabeledtrAside2.mml

file too large to diff

− tests/writers/mlabeledtrAside2.omml

file too large to diff

− tests/writers/mlabeledtrAside2.tex

file too large to diff

− tests/writers/mn1.eqn

file too large to diff

− tests/writers/mn1.mml

file too large to diff

− tests/writers/mn1.omml

file too large to diff

− tests/writers/mn1.tex

file too large to diff

− tests/writers/mn2.eqn

file too large to diff

− tests/writers/mn2.mml

file too large to diff

− tests/writers/mn2.omml

file too large to diff

− tests/writers/mn2.tex

file too large to diff

− tests/writers/mn3.eqn

file too large to diff

− tests/writers/mn3.mml

file too large to diff

− tests/writers/mn3.omml

file too large to diff

− tests/writers/mn3.tex

file too large to diff

− tests/writers/mn4.eqn

file too large to diff

− tests/writers/mn4.mml

file too large to diff

− tests/writers/mn4.omml

file too large to diff

− tests/writers/mn4.tex

file too large to diff

− tests/writers/mnAtoken6.eqn

file too large to diff

− tests/writers/mnAtoken6.mml

file too large to diff

− tests/writers/mnAtoken6.omml

file too large to diff

− tests/writers/mnAtoken6.tex

file too large to diff

− tests/writers/mnAtoken7.eqn

file too large to diff

− tests/writers/mnAtoken7.mml

file too large to diff

− tests/writers/mnAtoken7.omml

file too large to diff

− tests/writers/mnAtoken7.tex

file too large to diff

− tests/writers/mnSdisplaystyle9.eqn

file too large to diff

− tests/writers/mnSdisplaystyle9.mml

file too large to diff

− tests/writers/mnSdisplaystyle9.omml

file too large to diff

− tests/writers/mnSdisplaystyle9.tex

file too large to diff

− tests/writers/mnSfont10.eqn

file too large to diff

− tests/writers/mnSfont10.mml

file too large to diff

− tests/writers/mnSfont10.omml

file too large to diff

− tests/writers/mnSfont10.tex

file too large to diff

− tests/writers/mnSscriptlevel11.eqn

file too large to diff

− tests/writers/mnSscriptlevel11.mml

file too large to diff

− tests/writers/mnSscriptlevel11.omml

file too large to diff

− tests/writers/mnSscriptlevel11.tex

file too large to diff

− tests/writers/mo1.eqn

file too large to diff

− tests/writers/mo1.mml

file too large to diff

− tests/writers/mo1.omml

file too large to diff

− tests/writers/mo1.tex

file too large to diff

− tests/writers/mo2.eqn

file too large to diff

− tests/writers/mo2.mml

file too large to diff

− tests/writers/mo2.omml

file too large to diff

− tests/writers/mo2.tex

file too large to diff

− tests/writers/mo3.eqn

file too large to diff

− tests/writers/mo3.mml

file too large to diff

− tests/writers/mo3.omml

file too large to diff

− tests/writers/mo3.tex

file too large to diff

− tests/writers/mo4.eqn

file too large to diff

− tests/writers/mo4.mml

file too large to diff

− tests/writers/mo4.omml

file too large to diff

− tests/writers/mo4.tex

file too large to diff

− tests/writers/mo5.eqn

file too large to diff

− tests/writers/mo5.mml

file too large to diff

− tests/writers/mo5.omml

file too large to diff

− tests/writers/mo5.tex

file too large to diff

− tests/writers/mo6.eqn

file too large to diff

− tests/writers/mo6.mml

file too large to diff

− tests/writers/mo6.omml

file too large to diff

− tests/writers/mo6.tex

file too large to diff

− tests/writers/mo7.eqn

file too large to diff

− tests/writers/mo7.mml

file too large to diff

− tests/writers/mo7.omml

file too large to diff

− tests/writers/mo7.tex

file too large to diff

− tests/writers/mo8.eqn

file too large to diff

− tests/writers/mo8.mml

file too large to diff

− tests/writers/mo8.omml

file too large to diff

− tests/writers/mo8.tex

file too large to diff

− tests/writers/moAaccent10.eqn

file too large to diff

− tests/writers/moAaccent10.mml

file too large to diff

− tests/writers/moAaccent10.omml

file too large to diff

− tests/writers/moAaccent10.tex

file too large to diff

− tests/writers/moAaccent9.eqn

file too large to diff

− tests/writers/moAaccent9.mml

file too large to diff

− tests/writers/moAaccent9.omml

file too large to diff

− tests/writers/moAaccent9.tex

file too large to diff

− tests/writers/moAform11.eqn

file too large to diff

− tests/writers/moAform11.mml

file too large to diff

− tests/writers/moAform11.omml

file too large to diff

− tests/writers/moAform11.tex

file too large to diff

− tests/writers/moAlargeop12.eqn

file too large to diff

− tests/writers/moAlargeop12.mml

file too large to diff

− tests/writers/moAlargeop12.omml

file too large to diff

− tests/writers/moAlargeop12.tex

file too large to diff

− tests/writers/moAlrspace13.eqn

file too large to diff

− tests/writers/moAlrspace13.mml

file too large to diff

− tests/writers/moAlrspace13.omml

file too large to diff

− tests/writers/moAlrspace13.tex

file too large to diff

− tests/writers/moAminmax14.eqn

file too large to diff

− tests/writers/moAminmax14.mml

file too large to diff

− tests/writers/moAminmax14.omml

file too large to diff

− tests/writers/moAminmax14.tex

file too large to diff

− tests/writers/moAmovable15.eqn

file too large to diff

− tests/writers/moAmovable15.mml

file too large to diff

− tests/writers/moAmovable15.omml

file too large to diff

− tests/writers/moAmovable15.tex

file too large to diff

− tests/writers/moAprime16.eqn

file too large to diff

− tests/writers/moAprime16.mml

file too large to diff

− tests/writers/moAprime16.omml

file too large to diff

− tests/writers/moAprime16.tex

file too large to diff

− tests/writers/moAsep17.eqn

file too large to diff

− tests/writers/moAsep17.mml

file too large to diff

− tests/writers/moAsep17.omml

file too large to diff

− tests/writers/moAsep17.tex

file too large to diff

− tests/writers/moAstretchy18.eqn

file too large to diff

− tests/writers/moAstretchy18.mml

file too large to diff

− tests/writers/moAstretchy18.omml

file too large to diff

− tests/writers/moAstretchy18.tex

file too large to diff

− tests/writers/moAsymmetric19.eqn

file too large to diff

− tests/writers/moAsymmetric19.mml

file too large to diff

− tests/writers/moAsymmetric19.omml

file too large to diff

− tests/writers/moAsymmetric19.tex

file too large to diff

− tests/writers/moSminmax20.eqn

file too large to diff

− tests/writers/moSminmax20.mml

file too large to diff

− tests/writers/moSminmax20.omml

file too large to diff

− tests/writers/moSminmax20.tex

file too large to diff

− tests/writers/monospace.eqn

file too large to diff

− tests/writers/monospace.mml

file too large to diff

− tests/writers/monospace.omml

file too large to diff

− tests/writers/monospace.tex

file too large to diff

− tests/writers/moore_determinant.eqn

file too large to diff

− tests/writers/moore_determinant.mml

file too large to diff

− tests/writers/moore_determinant.omml

file too large to diff

− tests/writers/moore_determinant.tex

file too large to diff

− tests/writers/mover-01.eqn

file too large to diff

− tests/writers/mover-01.mml

file too large to diff

− tests/writers/mover-01.omml

file too large to diff

− tests/writers/mover-01.tex

file too large to diff

− tests/writers/mover-02.eqn

file too large to diff

− tests/writers/mover-02.mml

file too large to diff

− tests/writers/mover-02.omml

file too large to diff

− tests/writers/mover-02.tex

file too large to diff

− tests/writers/mover-03.eqn

file too large to diff

− tests/writers/mover-03.mml

file too large to diff

− tests/writers/mover-03.omml

file too large to diff

− tests/writers/mover-03.tex

file too large to diff

− tests/writers/mover-04.eqn

file too large to diff

− tests/writers/mover-04.mml

file too large to diff

− tests/writers/mover-04.omml

file too large to diff

− tests/writers/mover-04.tex

file too large to diff

− tests/writers/mover-05.eqn

file too large to diff

− tests/writers/mover-05.mml

file too large to diff

− tests/writers/mover-05.omml

file too large to diff

− tests/writers/mover-05.tex

file too large to diff

− tests/writers/mover-06.eqn

file too large to diff

− tests/writers/mover-06.mml

file too large to diff

− tests/writers/mover-06.omml

file too large to diff

− tests/writers/mover-06.tex

file too large to diff

− tests/writers/mover-07.eqn

file too large to diff

− tests/writers/mover-07.mml

file too large to diff

− tests/writers/mover-07.omml

file too large to diff

− tests/writers/mover-07.tex

file too large to diff

− tests/writers/mover-08.eqn

file too large to diff

− tests/writers/mover-08.mml

file too large to diff

− tests/writers/mover-08.omml

file too large to diff

− tests/writers/mover-08.tex

file too large to diff

− tests/writers/mover-09.eqn

file too large to diff

− tests/writers/mover-09.mml

file too large to diff

− tests/writers/mover-09.omml

file too large to diff

− tests/writers/mover-09.tex

file too large to diff

− tests/writers/mover-10.eqn

file too large to diff

− tests/writers/mover-10.mml

file too large to diff

− tests/writers/mover-10.omml

file too large to diff

− tests/writers/mover-10.tex

file too large to diff

− tests/writers/mover-11.eqn

file too large to diff

− tests/writers/mover-11.mml

file too large to diff

− tests/writers/mover-11.omml

file too large to diff

− tests/writers/mover-11.tex

file too large to diff

− tests/writers/mover-12.eqn

file too large to diff

− tests/writers/mover-12.mml

file too large to diff

− tests/writers/mover-12.omml

file too large to diff

− tests/writers/mover-12.tex

file too large to diff

− tests/writers/mover1.eqn

file too large to diff

− tests/writers/mover1.mml

file too large to diff

− tests/writers/mover1.omml

file too large to diff

− tests/writers/mover1.tex

file too large to diff

− tests/writers/mover2.eqn

file too large to diff

− tests/writers/mover2.mml

file too large to diff

− tests/writers/mover2.omml

file too large to diff

− tests/writers/mover2.tex

file too large to diff

− tests/writers/mover3.eqn

file too large to diff

− tests/writers/mover3.mml

file too large to diff

− tests/writers/mover3.omml

file too large to diff

− tests/writers/mover3.tex

file too large to diff

− tests/writers/mover4.eqn

file too large to diff

− tests/writers/mover4.mml

file too large to diff

− tests/writers/mover4.omml

file too large to diff

− tests/writers/mover4.tex

file too large to diff

− tests/writers/mover5.eqn

file too large to diff

− tests/writers/mover5.mml

file too large to diff

− tests/writers/mover5.omml

file too large to diff

− tests/writers/mover5.tex

file too large to diff

− tests/writers/mover6.eqn

file too large to diff

− tests/writers/mover6.mml

file too large to diff

− tests/writers/mover6.omml

file too large to diff

− tests/writers/mover6.tex

file too large to diff

− tests/writers/mover7.eqn

file too large to diff

− tests/writers/mover7.mml

file too large to diff

− tests/writers/mover7.omml

file too large to diff

− tests/writers/mover7.tex

file too large to diff

− tests/writers/mover8.eqn

file too large to diff

− tests/writers/mover8.mml

file too large to diff

− tests/writers/mover8.omml

file too large to diff

− tests/writers/mover8.tex

file too large to diff

− tests/writers/mover9.eqn

file too large to diff

− tests/writers/mover9.mml

file too large to diff

− tests/writers/mover9.omml

file too large to diff

− tests/writers/mover9.tex

file too large to diff

− tests/writers/mphantomB1.eqn

file too large to diff

− tests/writers/mphantomB1.mml

file too large to diff

− tests/writers/mphantomB1.omml

file too large to diff

− tests/writers/mphantomB1.tex

file too large to diff

− tests/writers/mphantomBinferred2.eqn

file too large to diff

− tests/writers/mphantomBinferred2.mml

file too large to diff

− tests/writers/mphantomBinferred2.omml

file too large to diff

− tests/writers/mphantomBinferred2.tex

file too large to diff

− tests/writers/mphantomBoperators3.eqn

file too large to diff

− tests/writers/mphantomBoperators3.mml

file too large to diff

− tests/writers/mphantomBoperators3.omml

file too large to diff

− tests/writers/mphantomBoperators3.tex

file too large to diff

− tests/writers/mphantomSinheritance5.eqn

file too large to diff

− tests/writers/mphantomSinheritance5.mml

file too large to diff

− tests/writers/mphantomSinheritance5.omml

file too large to diff

− tests/writers/mphantomSinheritance5.tex

file too large to diff

− tests/writers/mrootB1.eqn

file too large to diff

− tests/writers/mrootB1.mml

file too large to diff

− tests/writers/mrootB1.omml

file too large to diff

− tests/writers/mrootB1.tex

file too large to diff

− tests/writers/mrootSfonts3.eqn

file too large to diff

− tests/writers/mrootSfonts3.mml

file too large to diff

− tests/writers/mrootSfonts3.omml

file too large to diff

− tests/writers/mrootSfonts3.tex

file too large to diff

− tests/writers/mrootSscriptlevel4.eqn

file too large to diff

− tests/writers/mrootSscriptlevel4.mml

file too large to diff

− tests/writers/mrootSscriptlevel4.omml

file too large to diff

− tests/writers/mrootSscriptlevel4.tex

file too large to diff

− tests/writers/mrow-01.eqn

file too large to diff

− tests/writers/mrow-01.mml

file too large to diff

− tests/writers/mrow-01.omml

file too large to diff

− tests/writers/mrow-01.tex

file too large to diff

− tests/writers/mrow-02.eqn

file too large to diff

− tests/writers/mrow-02.mml

file too large to diff

− tests/writers/mrow-02.omml

file too large to diff

− tests/writers/mrow-02.tex

file too large to diff

− tests/writers/mrow1.eqn

file too large to diff

− tests/writers/mrow1.mml

file too large to diff

− tests/writers/mrow1.omml

file too large to diff

− tests/writers/mrow1.tex

file too large to diff

− tests/writers/mrowAbg4.eqn

file too large to diff

− tests/writers/mrowAbg4.mml

file too large to diff

− tests/writers/mrowAbg4.omml

file too large to diff

− tests/writers/mrowAbg4.tex

file too large to diff

− tests/writers/mrowBinferred2.eqn

file too large to diff

− tests/writers/mrowBinferred2.mml

file too large to diff

− tests/writers/mrowBinferred2.omml

file too large to diff

− tests/writers/mrowBinferred2.tex

file too large to diff

− tests/writers/mrowBnested3.eqn

file too large to diff

− tests/writers/mrowBnested3.mml

file too large to diff

− tests/writers/mrowBnested3.omml

file too large to diff

− tests/writers/mrowBnested3.tex

file too large to diff

− tests/writers/ms-11.eqn

file too large to diff

− tests/writers/ms-11.mml

file too large to diff

− tests/writers/ms-11.omml

file too large to diff

− tests/writers/ms-11.tex

file too large to diff

− tests/writers/ms-12.eqn

file too large to diff

− tests/writers/ms-12.mml

file too large to diff

− tests/writers/ms-12.omml

file too large to diff

− tests/writers/ms-12.tex

file too large to diff

− tests/writers/ms-13.eqn

file too large to diff

− tests/writers/ms-13.mml

file too large to diff

− tests/writers/ms-13.omml

file too large to diff

− tests/writers/ms-13.tex

file too large to diff

− tests/writers/ms-14.eqn

file too large to diff

− tests/writers/ms-14.mml

file too large to diff

− tests/writers/ms-14.omml

file too large to diff

− tests/writers/ms-14.tex

file too large to diff

− tests/writers/ms-15.eqn

file too large to diff

− tests/writers/ms-15.mml

file too large to diff

− tests/writers/ms-15.omml

file too large to diff

− tests/writers/ms-15.tex

file too large to diff

− tests/writers/ms-16.eqn

file too large to diff

− tests/writers/ms-16.mml

file too large to diff

− tests/writers/ms-16.omml

file too large to diff

− tests/writers/ms-16.tex

file too large to diff

− tests/writers/ms1.eqn

file too large to diff

− tests/writers/ms1.mml

file too large to diff

− tests/writers/ms1.omml

file too large to diff

− tests/writers/ms1.tex

file too large to diff

− tests/writers/msAdisplaystyle2.eqn

file too large to diff

− tests/writers/msAdisplaystyle2.mml

file too large to diff

− tests/writers/msAdisplaystyle2.omml

file too large to diff

− tests/writers/msAdisplaystyle2.tex

file too large to diff

− tests/writers/msAquotes3.eqn

file too large to diff

− tests/writers/msAquotes3.mml

file too large to diff

− tests/writers/msAquotes3.omml

file too large to diff

− tests/writers/msAquotes3.tex

file too large to diff

− tests/writers/msAtoken4.eqn

file too large to diff

− tests/writers/msAtoken4.mml

file too large to diff

− tests/writers/msAtoken4.omml

file too large to diff

− tests/writers/msAtoken4.tex

file too large to diff

− tests/writers/msAtoken5.eqn

file too large to diff

− tests/writers/msAtoken5.mml

file too large to diff

− tests/writers/msAtoken5.omml

file too large to diff

− tests/writers/msAtoken5.tex

file too large to diff

− tests/writers/msSinheritance7.eqn

file too large to diff

− tests/writers/msSinheritance7.mml

file too large to diff

− tests/writers/msSinheritance7.omml

file too large to diff

− tests/writers/msSinheritance7.tex

file too large to diff

− tests/writers/msSinheritance8.eqn

file too large to diff

− tests/writers/msSinheritance8.mml

file too large to diff

− tests/writers/msSinheritance8.omml

file too large to diff

− tests/writers/msSinheritance8.tex

file too large to diff

− tests/writers/mspace-01.eqn

file too large to diff

− tests/writers/mspace-01.mml

file too large to diff

− tests/writers/mspace-01.omml

file too large to diff

− tests/writers/mspace-01.tex

file too large to diff

− tests/writers/mspace-02.eqn

file too large to diff

− tests/writers/mspace-02.mml

file too large to diff

− tests/writers/mspace-02.omml

file too large to diff

− tests/writers/mspace-02.tex

file too large to diff

− tests/writers/mspace-03.eqn

file too large to diff

− tests/writers/mspace-03.mml

file too large to diff

− tests/writers/mspace-03.omml

file too large to diff

− tests/writers/mspace-03.tex

file too large to diff

− tests/writers/mspace-04.eqn

file too large to diff

− tests/writers/mspace-04.mml

file too large to diff

− tests/writers/mspace-04.omml

file too large to diff

− tests/writers/mspace-04.tex

file too large to diff

− tests/writers/mspace1.eqn

file too large to diff

− tests/writers/mspace1.mml

file too large to diff

− tests/writers/mspace1.omml

file too large to diff

− tests/writers/mspace1.tex

file too large to diff

− tests/writers/mspace2.eqn

file too large to diff

− tests/writers/mspace2.mml

file too large to diff

− tests/writers/mspace2.omml

file too large to diff

− tests/writers/mspace2.tex

file too large to diff

− tests/writers/mspaceAbreak3.eqn

file too large to diff

− tests/writers/mspaceAbreak3.mml

file too large to diff

− tests/writers/mspaceAbreak3.omml

file too large to diff

− tests/writers/mspaceAbreak3.tex

file too large to diff

− tests/writers/mspacestruts2.eqn

file too large to diff

− tests/writers/mspacestruts2.mml

file too large to diff

− tests/writers/mspacestruts2.omml

file too large to diff

− tests/writers/mspacestruts2.tex

file too large to diff

− tests/writers/msqrt-01.eqn

file too large to diff

− tests/writers/msqrt-01.mml

file too large to diff

− tests/writers/msqrt-01.omml

file too large to diff

− tests/writers/msqrt-01.tex

file too large to diff

− tests/writers/msqrt-02.eqn

file too large to diff

− tests/writers/msqrt-02.mml

file too large to diff

− tests/writers/msqrt-02.omml

file too large to diff

− tests/writers/msqrt-02.tex

file too large to diff

− tests/writers/msqrt-03.eqn

file too large to diff

− tests/writers/msqrt-03.mml

file too large to diff

− tests/writers/msqrt-03.omml

file too large to diff

− tests/writers/msqrt-03.tex

file too large to diff

− tests/writers/msqrt-04.eqn

file too large to diff

− tests/writers/msqrt-04.mml

file too large to diff

− tests/writers/msqrt-04.omml

file too large to diff

− tests/writers/msqrt-04.tex

file too large to diff

− tests/writers/msqrt-05.eqn

file too large to diff

− tests/writers/msqrt-05.mml

file too large to diff

− tests/writers/msqrt-05.omml

file too large to diff

− tests/writers/msqrt-05.tex

file too large to diff

− tests/writers/msqrt-06.eqn

file too large to diff

− tests/writers/msqrt-06.mml

file too large to diff

− tests/writers/msqrt-06.omml

file too large to diff

− tests/writers/msqrt-06.tex

file too large to diff

− tests/writers/msqrt-07.eqn

file too large to diff

− tests/writers/msqrt-07.mml

file too large to diff

− tests/writers/msqrt-07.omml

file too large to diff

− tests/writers/msqrt-07.tex

file too large to diff

− tests/writers/msqrt-08.eqn

file too large to diff

− tests/writers/msqrt-08.mml

file too large to diff

− tests/writers/msqrt-08.omml

file too large to diff

− tests/writers/msqrt-08.tex

file too large to diff

− tests/writers/msqrt5.eqn

file too large to diff

− tests/writers/msqrt5.mml

file too large to diff

− tests/writers/msqrt5.omml

file too large to diff

− tests/writers/msqrt5.tex

file too large to diff

− tests/writers/msqrt6.eqn

file too large to diff

− tests/writers/msqrt6.mml

file too large to diff

− tests/writers/msqrt6.omml

file too large to diff

− tests/writers/msqrt6.tex

file too large to diff

− tests/writers/msqrtB7.eqn

file too large to diff

− tests/writers/msqrtB7.mml

file too large to diff

− tests/writers/msqrtB7.omml

file too large to diff

− tests/writers/msqrtB7.tex

file too large to diff

− tests/writers/msqrtBimplied8.eqn

file too large to diff

− tests/writers/msqrtBimplied8.mml

file too large to diff

− tests/writers/msqrtBimplied8.omml

file too large to diff

− tests/writers/msqrtBimplied8.tex

file too large to diff

− tests/writers/msqrtSinheritance9.eqn

file too large to diff

− tests/writers/msqrtSinheritance9.mml

file too large to diff

− tests/writers/msqrtSinheritance9.omml

file too large to diff

− tests/writers/msqrtSinheritance9.tex

file too large to diff

− tests/writers/mstyle1.eqn

file too large to diff

− tests/writers/mstyle1.mml

file too large to diff

− tests/writers/mstyle1.omml

file too large to diff

− tests/writers/mstyle1.tex

file too large to diff

− tests/writers/mstyleA2.eqn

file too large to diff

− tests/writers/mstyleA2.mml

file too large to diff

− tests/writers/mstyleA2.omml

file too large to diff

− tests/writers/mstyleA2.tex

file too large to diff

− tests/writers/mstyleAdep1.eqn

file too large to diff

− tests/writers/mstyleAdep1.mml

file too large to diff

− tests/writers/mstyleAdep1.omml

file too large to diff

− tests/writers/mstyleAdep1.tex

file too large to diff

− tests/writers/mstyleAlinethick1.eqn

file too large to diff

− tests/writers/mstyleAlinethick1.mml

file too large to diff

− tests/writers/mstyleAlinethick1.omml

file too large to diff

− tests/writers/mstyleAlinethick1.tex

file too large to diff

− tests/writers/mstyleAminscript1.eqn

file too large to diff

− tests/writers/mstyleAminscript1.mml

file too large to diff

− tests/writers/mstyleAminscript1.omml

file too large to diff

− tests/writers/mstyleAminscript1.tex

file too large to diff

− tests/writers/mstyleAscriptlevel1.eqn

file too large to diff

− tests/writers/mstyleAscriptlevel1.mml

file too large to diff

− tests/writers/mstyleAscriptlevel1.omml

file too large to diff

− tests/writers/mstyleAscriptlevel1.tex

file too large to diff

− tests/writers/msub-01.eqn

file too large to diff

− tests/writers/msub-01.mml

file too large to diff

− tests/writers/msub-01.omml

file too large to diff

− tests/writers/msub-01.tex

file too large to diff

− tests/writers/msub-02.eqn

file too large to diff

− tests/writers/msub-02.mml

file too large to diff

− tests/writers/msub-02.omml

file too large to diff

− tests/writers/msub-02.tex

file too large to diff

− tests/writers/msub-03.eqn

file too large to diff

− tests/writers/msub-03.mml

file too large to diff

− tests/writers/msub-03.omml

file too large to diff

− tests/writers/msub-03.tex

file too large to diff

− tests/writers/msub-04.eqn

file too large to diff

− tests/writers/msub-04.mml

file too large to diff

− tests/writers/msub-04.omml

file too large to diff

− tests/writers/msub-04.tex

file too large to diff

− tests/writers/msub-05.eqn

file too large to diff

− tests/writers/msub-05.mml

file too large to diff

− tests/writers/msub-05.omml

file too large to diff

− tests/writers/msub-05.tex

file too large to diff

− tests/writers/msub-06.eqn

file too large to diff

− tests/writers/msub-06.mml

file too large to diff

− tests/writers/msub-06.omml

file too large to diff

− tests/writers/msub-06.tex

file too large to diff

− tests/writers/msub-07.eqn

file too large to diff

− tests/writers/msub-07.mml

file too large to diff

− tests/writers/msub-07.omml

file too large to diff

− tests/writers/msub-07.tex

file too large to diff

− tests/writers/msub-08.eqn

file too large to diff

− tests/writers/msub-08.mml

file too large to diff

− tests/writers/msub-08.omml

file too large to diff

− tests/writers/msub-08.tex

file too large to diff

− tests/writers/msub-09.eqn

file too large to diff

− tests/writers/msub-09.mml

file too large to diff

− tests/writers/msub-09.omml

file too large to diff

− tests/writers/msub-09.tex

file too large to diff

− tests/writers/msub-10.eqn

file too large to diff

− tests/writers/msub-10.mml

file too large to diff

− tests/writers/msub-10.omml

file too large to diff

− tests/writers/msub-10.tex

file too large to diff

− tests/writers/msub-11.eqn

file too large to diff

− tests/writers/msub-11.mml

file too large to diff

− tests/writers/msub-11.omml

file too large to diff

− tests/writers/msub-11.tex

file too large to diff

− tests/writers/msub-12.eqn

file too large to diff

− tests/writers/msub-12.mml

file too large to diff

− tests/writers/msub-12.omml

file too large to diff

− tests/writers/msub-12.tex

file too large to diff

− tests/writers/msub1.eqn

file too large to diff

− tests/writers/msub1.mml

file too large to diff

− tests/writers/msub1.omml

file too large to diff

− tests/writers/msub1.tex

file too large to diff

− tests/writers/msubsup-01.eqn

file too large to diff

− tests/writers/msubsup-01.mml

file too large to diff

− tests/writers/msubsup-01.omml

file too large to diff

− tests/writers/msubsup-01.tex

file too large to diff

− tests/writers/msubsup-02.eqn

file too large to diff

− tests/writers/msubsup-02.mml

file too large to diff

− tests/writers/msubsup-02.omml

file too large to diff

− tests/writers/msubsup-02.tex

file too large to diff

− tests/writers/msubsup-03.eqn

file too large to diff

− tests/writers/msubsup-03.mml

file too large to diff

− tests/writers/msubsup-03.omml

file too large to diff

− tests/writers/msubsup-03.tex

file too large to diff

− tests/writers/msubsup-04.eqn

file too large to diff

− tests/writers/msubsup-04.mml

file too large to diff

− tests/writers/msubsup-04.omml

file too large to diff

− tests/writers/msubsup-04.tex

file too large to diff

− tests/writers/msubsup-05.eqn

file too large to diff

− tests/writers/msubsup-05.mml

file too large to diff

− tests/writers/msubsup-05.omml

file too large to diff

− tests/writers/msubsup-05.tex

file too large to diff

− tests/writers/msubsup-06.eqn

file too large to diff

− tests/writers/msubsup-06.mml

file too large to diff

− tests/writers/msubsup-06.omml

file too large to diff

− tests/writers/msubsup-06.tex

file too large to diff

− tests/writers/msubsup-07.eqn

file too large to diff

− tests/writers/msubsup-07.mml

file too large to diff

− tests/writers/msubsup-07.omml

file too large to diff

− tests/writers/msubsup-07.tex

file too large to diff

− tests/writers/msubsup-08.eqn

file too large to diff

− tests/writers/msubsup-08.mml

file too large to diff

− tests/writers/msubsup-08.omml

file too large to diff

− tests/writers/msubsup-08.tex

file too large to diff

− tests/writers/msubsup-09.eqn

file too large to diff

− tests/writers/msubsup-09.mml

file too large to diff

− tests/writers/msubsup-09.omml

file too large to diff

− tests/writers/msubsup-09.tex

file too large to diff

− tests/writers/msubsup-10.eqn

file too large to diff

− tests/writers/msubsup-10.mml

file too large to diff

− tests/writers/msubsup-10.omml

file too large to diff

− tests/writers/msubsup-10.tex

file too large to diff

− tests/writers/msubsup-11.eqn

file too large to diff

− tests/writers/msubsup-11.mml

file too large to diff

− tests/writers/msubsup-11.omml

file too large to diff

− tests/writers/msubsup-11.tex

file too large to diff

− tests/writers/msubsup-12.eqn

file too large to diff

− tests/writers/msubsup-12.mml

file too large to diff

− tests/writers/msubsup-12.omml

file too large to diff

− tests/writers/msubsup-12.tex

file too large to diff

− tests/writers/msubsup1.eqn

file too large to diff

− tests/writers/msubsup1.mml

file too large to diff

− tests/writers/msubsup1.omml

file too large to diff

− tests/writers/msubsup1.tex

file too large to diff

− tests/writers/msubsupBsize1.eqn

file too large to diff

− tests/writers/msubsupBsize1.mml

file too large to diff

− tests/writers/msubsupBsize1.omml

file too large to diff

− tests/writers/msubsupBsize1.tex

file too large to diff

− tests/writers/msubsupBsize2.eqn

file too large to diff

− tests/writers/msubsupBsize2.mml

file too large to diff

− tests/writers/msubsupBsize2.omml

file too large to diff

− tests/writers/msubsupBsize2.tex

file too large to diff

− tests/writers/msup-01.eqn

file too large to diff

− tests/writers/msup-01.mml

file too large to diff

− tests/writers/msup-01.omml

file too large to diff

− tests/writers/msup-01.tex

file too large to diff

− tests/writers/msup-02.eqn

file too large to diff

− tests/writers/msup-02.mml

file too large to diff

− tests/writers/msup-02.omml

file too large to diff

− tests/writers/msup-02.tex

file too large to diff

− tests/writers/msup-03.eqn

file too large to diff

− tests/writers/msup-03.mml

file too large to diff

− tests/writers/msup-03.omml

file too large to diff

− tests/writers/msup-03.tex

file too large to diff

− tests/writers/msup-04.eqn

file too large to diff

− tests/writers/msup-04.mml

file too large to diff

− tests/writers/msup-04.omml

file too large to diff

− tests/writers/msup-04.tex

file too large to diff

− tests/writers/msup-05.eqn

file too large to diff

− tests/writers/msup-05.mml

file too large to diff

− tests/writers/msup-05.omml

file too large to diff

− tests/writers/msup-05.tex

file too large to diff

− tests/writers/msup-06.eqn

file too large to diff

− tests/writers/msup-06.mml

file too large to diff

− tests/writers/msup-06.omml

file too large to diff

− tests/writers/msup-06.tex

file too large to diff

− tests/writers/msup-07.eqn

file too large to diff

− tests/writers/msup-07.mml

file too large to diff

− tests/writers/msup-07.omml

file too large to diff

− tests/writers/msup-07.tex

file too large to diff

− tests/writers/msup-08.eqn

file too large to diff

− tests/writers/msup-08.mml

file too large to diff

− tests/writers/msup-08.omml

file too large to diff

− tests/writers/msup-08.tex

file too large to diff

− tests/writers/msup-09.eqn

file too large to diff

− tests/writers/msup-09.mml

file too large to diff

− tests/writers/msup-09.omml

file too large to diff

− tests/writers/msup-09.tex

file too large to diff

− tests/writers/msup-10.eqn

file too large to diff

− tests/writers/msup-10.mml

file too large to diff

− tests/writers/msup-10.omml

file too large to diff

− tests/writers/msup-10.tex

file too large to diff

− tests/writers/msup-11.eqn

file too large to diff

− tests/writers/msup-11.mml

file too large to diff

− tests/writers/msup-11.omml

file too large to diff

− tests/writers/msup-11.tex

file too large to diff

− tests/writers/msup-12.eqn

file too large to diff

− tests/writers/msup-12.mml

file too large to diff

− tests/writers/msup-12.omml

file too large to diff

− tests/writers/msup-12.tex

file too large to diff

− tests/writers/msup1.eqn

file too large to diff

− tests/writers/msup1.mml

file too large to diff

− tests/writers/msup1.omml

file too large to diff

− tests/writers/msup1.tex

file too large to diff

− tests/writers/msup2.eqn

file too large to diff

− tests/writers/msup2.mml

file too large to diff

− tests/writers/msup2.omml

file too large to diff

− tests/writers/msup2.tex

file too large to diff

− tests/writers/msupBnest1.eqn

file too large to diff

− tests/writers/msupBnest1.mml

file too large to diff

− tests/writers/msupBnest1.omml

file too large to diff

− tests/writers/msupBnest1.tex

file too large to diff

− tests/writers/msupBsize1.eqn

file too large to diff

− tests/writers/msupBsize1.mml

file too large to diff

− tests/writers/msupBsize1.omml

file too large to diff

− tests/writers/msupBsize1.tex

file too large to diff

− tests/writers/msupBsize2.eqn

file too large to diff

− tests/writers/msupBsize2.mml

file too large to diff

− tests/writers/msupBsize2.omml

file too large to diff

− tests/writers/msupBsize2.tex

file too large to diff

− tests/writers/msupBsize3.eqn

file too large to diff

− tests/writers/msupBsize3.mml

file too large to diff

− tests/writers/msupBsize3.omml

file too large to diff

− tests/writers/msupBsize3.tex

file too large to diff

− tests/writers/msupSadvance1.eqn

file too large to diff

− tests/writers/msupSadvance1.mml

file too large to diff

− tests/writers/msupSadvance1.omml

file too large to diff

− tests/writers/msupSadvance1.tex

file too large to diff

− tests/writers/mtable-01.eqn

file too large to diff

− tests/writers/mtable-01.mml

file too large to diff

− tests/writers/mtable-01.omml

file too large to diff

− tests/writers/mtable-01.tex

file too large to diff

− tests/writers/mtable-03.eqn

file too large to diff

− tests/writers/mtable-03.mml

file too large to diff

− tests/writers/mtable-03.omml

file too large to diff

− tests/writers/mtable-03.tex

file too large to diff

− tests/writers/mtable-04.eqn

file too large to diff

− tests/writers/mtable-04.mml

file too large to diff

− tests/writers/mtable-04.omml

file too large to diff

− tests/writers/mtable-04.tex

file too large to diff

− tests/writers/mtable-05.eqn

file too large to diff

− tests/writers/mtable-05.mml

file too large to diff

− tests/writers/mtable-05.omml

file too large to diff

− tests/writers/mtable-05.tex

file too large to diff

− tests/writers/mtable-06.eqn

file too large to diff

− tests/writers/mtable-06.mml

file too large to diff

− tests/writers/mtable-06.omml

file too large to diff

− tests/writers/mtable-06.tex

file too large to diff

− tests/writers/mtable-07.eqn

file too large to diff

− tests/writers/mtable-07.mml

file too large to diff

− tests/writers/mtable-07.omml

file too large to diff

− tests/writers/mtable-07.tex

file too large to diff

− tests/writers/mtable-08.eqn

file too large to diff

− tests/writers/mtable-08.mml

file too large to diff

− tests/writers/mtable-08.omml

file too large to diff

− tests/writers/mtable-08.tex

file too large to diff

− tests/writers/mtable-09.eqn

file too large to diff

− tests/writers/mtable-09.mml

file too large to diff

− tests/writers/mtable-09.omml

file too large to diff

− tests/writers/mtable-09.tex

file too large to diff

− tests/writers/mtable-10.eqn

file too large to diff

− tests/writers/mtable-10.mml

file too large to diff

− tests/writers/mtable-10.omml

file too large to diff

− tests/writers/mtable-10.tex

file too large to diff

− tests/writers/mtable-11.eqn

file too large to diff

− tests/writers/mtable-11.mml

file too large to diff

− tests/writers/mtable-11.omml

file too large to diff

− tests/writers/mtable-11.tex

file too large to diff

− tests/writers/mtable-12.eqn

file too large to diff

− tests/writers/mtable-12.mml

file too large to diff

− tests/writers/mtable-12.omml

file too large to diff

− tests/writers/mtable-12.tex

file too large to diff

− tests/writers/mtable-13.eqn

file too large to diff

− tests/writers/mtable-13.mml

file too large to diff

− tests/writers/mtable-13.omml

file too large to diff

− tests/writers/mtable-13.tex

file too large to diff

− tests/writers/mtable-14.eqn

file too large to diff

− tests/writers/mtable-14.mml

file too large to diff

− tests/writers/mtable-14.omml

file too large to diff

− tests/writers/mtable-14.tex

file too large to diff

− tests/writers/mtable-15.eqn

file too large to diff

− tests/writers/mtable-15.mml

file too large to diff

− tests/writers/mtable-15.omml

file too large to diff

− tests/writers/mtable-15.tex

file too large to diff

− tests/writers/mtable-16.eqn

file too large to diff

− tests/writers/mtable-16.mml

file too large to diff

− tests/writers/mtable-16.omml

file too large to diff

− tests/writers/mtable-16.tex

file too large to diff

− tests/writers/mtable2.eqn

file too large to diff

− tests/writers/mtable2.mml

file too large to diff

− tests/writers/mtable2.omml

file too large to diff

− tests/writers/mtable2.tex

file too large to diff

− tests/writers/mtableAalign1.eqn

file too large to diff

− tests/writers/mtableAalign1.mml

file too large to diff

− tests/writers/mtableAalign1.omml

file too large to diff

− tests/writers/mtableAalign1.tex

file too large to diff

− tests/writers/mtableAalign2.eqn

file too large to diff

− tests/writers/mtableAalign2.mml

file too large to diff

− tests/writers/mtableAalign2.omml

file too large to diff

− tests/writers/mtableAalign2.tex

file too large to diff

− tests/writers/mtableAalign3.eqn

file too large to diff

− tests/writers/mtableAalign3.mml

file too large to diff

− tests/writers/mtableAalign3.omml

file too large to diff

− tests/writers/mtableAalign3.tex

file too large to diff

− tests/writers/mtableAframe1.eqn

file too large to diff

− tests/writers/mtableAframe1.mml

file too large to diff

− tests/writers/mtableAframe1.omml

file too large to diff

− tests/writers/mtableAframe1.tex

file too large to diff

− tests/writers/mtableAframe2.eqn

file too large to diff

− tests/writers/mtableAframe2.mml

file too large to diff

− tests/writers/mtableAframe2.omml

file too large to diff

− tests/writers/mtableAframe2.tex

file too large to diff

− tests/writers/mtableAgroupalign.eqn

file too large to diff

− tests/writers/mtableAgroupalign.mml

file too large to diff

− tests/writers/mtableAgroupalign.omml

file too large to diff

− tests/writers/mtableAgroupalign.tex

file too large to diff

− tests/writers/mtableAlines1.eqn

file too large to diff

− tests/writers/mtableAlines1.mml

file too large to diff

− tests/writers/mtableAlines1.omml

file too large to diff

− tests/writers/mtableAlines1.tex

file too large to diff

− tests/writers/mtableAlines2.eqn

file too large to diff

− tests/writers/mtableAlines2.mml

file too large to diff

− tests/writers/mtableAlines2.omml

file too large to diff

− tests/writers/mtableAlines2.tex

file too large to diff

− tests/writers/mtableAspacing1.eqn

file too large to diff

− tests/writers/mtableAspacing1.mml

file too large to diff

− tests/writers/mtableAspacing1.omml

file too large to diff

− tests/writers/mtableAspacing1.tex

file too large to diff

− tests/writers/mtableAspacing2.eqn

file too large to diff

− tests/writers/mtableAspacing2.mml

file too large to diff

− tests/writers/mtableAspacing2.omml

file too large to diff

− tests/writers/mtableAspacing2.tex

file too large to diff

− tests/writers/mtableAspacing3.eqn

file too large to diff

− tests/writers/mtableAspacing3.mml

file too large to diff

− tests/writers/mtableAspacing3.omml

file too large to diff

− tests/writers/mtableAspacing3.tex

file too large to diff

− tests/writers/mtableAspacing4.eqn

file too large to diff

− tests/writers/mtableAspacing4.mml

file too large to diff

− tests/writers/mtableAspacing4.omml

file too large to diff

− tests/writers/mtableAspacing4.tex

file too large to diff

− tests/writers/mtableAwidth1.eqn

file too large to diff

− tests/writers/mtableAwidth1.mml

file too large to diff

− tests/writers/mtableAwidth1.omml

file too large to diff

− tests/writers/mtableAwidth1.tex

file too large to diff

− tests/writers/mtableAwidth2.eqn

file too large to diff

− tests/writers/mtableAwidth2.mml

file too large to diff

− tests/writers/mtableAwidth2.omml

file too large to diff

− tests/writers/mtableAwidth2.tex

file too large to diff

− tests/writers/mtableAwidth3.eqn

file too large to diff

− tests/writers/mtableAwidth3.mml

file too large to diff

− tests/writers/mtableAwidth3.omml

file too large to diff

− tests/writers/mtableAwidth3.tex

file too large to diff

− tests/writers/mtableAwidth4.eqn

file too large to diff

− tests/writers/mtableAwidth4.mml

file too large to diff

− tests/writers/mtableAwidth4.omml

file too large to diff

− tests/writers/mtableAwidth4.tex

file too large to diff

− tests/writers/mtableBgap1.eqn

file too large to diff

− tests/writers/mtableBgap1.mml

file too large to diff

− tests/writers/mtableBgap1.omml

file too large to diff

− tests/writers/mtableBgap1.tex

file too large to diff

− tests/writers/mtableBsize1.eqn

file too large to diff

− tests/writers/mtableBsize1.mml

file too large to diff

− tests/writers/mtableBsize1.omml

file too large to diff

− tests/writers/mtableBsize1.tex

file too large to diff

− tests/writers/mtableBsize2.eqn

file too large to diff

− tests/writers/mtableBsize2.mml

file too large to diff

− tests/writers/mtableBsize2.omml

file too large to diff

− tests/writers/mtableBsize2.tex

file too large to diff

− tests/writers/mtableBspan3.eqn

file too large to diff

− tests/writers/mtableBspan3.mml

file too large to diff

− tests/writers/mtableBspan3.omml

file too large to diff

− tests/writers/mtableBspan3.tex

file too large to diff

− tests/writers/mtext1.eqn

file too large to diff

− tests/writers/mtext1.mml

file too large to diff

− tests/writers/mtext1.omml

file too large to diff

− tests/writers/mtext1.tex

file too large to diff

− tests/writers/mtext2.eqn

file too large to diff

− tests/writers/mtext2.mml

file too large to diff

− tests/writers/mtext2.omml

file too large to diff

− tests/writers/mtext2.tex

file too large to diff

− tests/writers/mtextAtoken3.eqn

file too large to diff

− tests/writers/mtextAtoken3.mml

file too large to diff

− tests/writers/mtextAtoken3.omml

file too large to diff

− tests/writers/mtextAtoken3.tex

file too large to diff

− tests/writers/mtextSbg4.eqn

file too large to diff

− tests/writers/mtextSbg4.mml

file too large to diff

− tests/writers/mtextSbg4.omml

file too large to diff

− tests/writers/mtextSbg4.tex

file too large to diff

− tests/writers/mtextStoken6.eqn

file too large to diff

− tests/writers/mtextStoken6.mml

file too large to diff

− tests/writers/mtextStoken6.omml

file too large to diff

− tests/writers/mtextStoken6.tex

file too large to diff

− tests/writers/mtextspaces7.eqn

file too large to diff

− tests/writers/mtextspaces7.mml

file too large to diff

− tests/writers/mtextspaces7.omml

file too large to diff

− tests/writers/mtextspaces7.tex

file too large to diff

− tests/writers/munder-01.eqn

file too large to diff

− tests/writers/munder-01.mml

file too large to diff

− tests/writers/munder-01.omml

file too large to diff

− tests/writers/munder-01.tex

file too large to diff

− tests/writers/munder-02.eqn

file too large to diff

− tests/writers/munder-02.mml

file too large to diff

− tests/writers/munder-02.omml

file too large to diff

− tests/writers/munder-02.tex

file too large to diff

− tests/writers/munder-03.eqn

file too large to diff

− tests/writers/munder-03.mml

file too large to diff

− tests/writers/munder-03.omml

file too large to diff

− tests/writers/munder-03.tex

file too large to diff

− tests/writers/munder-04.eqn

file too large to diff

− tests/writers/munder-04.mml

file too large to diff

− tests/writers/munder-04.omml

file too large to diff

− tests/writers/munder-04.tex

file too large to diff

− tests/writers/munder-05.eqn

file too large to diff

− tests/writers/munder-05.mml

file too large to diff

− tests/writers/munder-05.omml

file too large to diff

− tests/writers/munder-05.tex

file too large to diff

− tests/writers/munder-06.eqn

file too large to diff

− tests/writers/munder-06.mml

file too large to diff

− tests/writers/munder-06.omml

file too large to diff

− tests/writers/munder-06.tex

file too large to diff

− tests/writers/munder-07.eqn

file too large to diff

− tests/writers/munder-07.mml

file too large to diff

− tests/writers/munder-07.omml

file too large to diff

− tests/writers/munder-07.tex

file too large to diff

− tests/writers/munder-08.eqn

file too large to diff

− tests/writers/munder-08.mml

file too large to diff

− tests/writers/munder-08.omml

file too large to diff

− tests/writers/munder-08.tex

file too large to diff

− tests/writers/munder-09.eqn

file too large to diff

− tests/writers/munder-09.mml

file too large to diff

− tests/writers/munder-09.omml

file too large to diff

− tests/writers/munder-09.tex

file too large to diff

− tests/writers/munder-10.eqn

file too large to diff

− tests/writers/munder-10.mml

file too large to diff

− tests/writers/munder-10.omml

file too large to diff

− tests/writers/munder-10.tex

file too large to diff

− tests/writers/munder-11.eqn

file too large to diff

− tests/writers/munder-11.mml

file too large to diff

− tests/writers/munder-11.omml

file too large to diff

− tests/writers/munder-11.tex

file too large to diff

− tests/writers/munder-12.eqn

file too large to diff

− tests/writers/munder-12.mml

file too large to diff

− tests/writers/munder-12.omml

file too large to diff

− tests/writers/munder-12.tex

file too large to diff

− tests/writers/munder1.eqn

file too large to diff

− tests/writers/munder1.mml

file too large to diff

− tests/writers/munder1.omml

file too large to diff

− tests/writers/munder1.tex

file too large to diff

− tests/writers/munder2.eqn

file too large to diff

− tests/writers/munder2.mml

file too large to diff

− tests/writers/munder2.omml

file too large to diff

− tests/writers/munder2.tex

file too large to diff

− tests/writers/munder3.eqn

file too large to diff

− tests/writers/munder3.mml

file too large to diff

− tests/writers/munder3.omml

file too large to diff

− tests/writers/munder3.tex

file too large to diff

− tests/writers/munder4.eqn

file too large to diff

− tests/writers/munder4.mml

file too large to diff

− tests/writers/munder4.omml

file too large to diff

− tests/writers/munder4.tex

file too large to diff

− tests/writers/munder5.eqn

file too large to diff

− tests/writers/munder5.mml

file too large to diff

− tests/writers/munder5.omml

file too large to diff

− tests/writers/munder5.tex

file too large to diff

− tests/writers/munder6.eqn

file too large to diff

− tests/writers/munder6.mml

file too large to diff

− tests/writers/munder6.omml

file too large to diff

− tests/writers/munder6.tex

file too large to diff

− tests/writers/munder7.eqn

file too large to diff

− tests/writers/munder7.mml

file too large to diff

− tests/writers/munder7.omml

file too large to diff

− tests/writers/munder7.tex

file too large to diff

− tests/writers/munder8.eqn

file too large to diff

− tests/writers/munder8.mml

file too large to diff

− tests/writers/munder8.omml

file too large to diff

− tests/writers/munder8.tex

file too large to diff

− tests/writers/munder9.eqn

file too large to diff

− tests/writers/munder9.mml

file too large to diff

− tests/writers/munder9.omml

file too large to diff

− tests/writers/munder9.tex

file too large to diff

− tests/writers/munderover-01.eqn

file too large to diff

− tests/writers/munderover-01.mml

file too large to diff

− tests/writers/munderover-01.omml

file too large to diff

− tests/writers/munderover-01.tex

file too large to diff

− tests/writers/munderover-02.eqn

file too large to diff

− tests/writers/munderover-02.mml

file too large to diff

− tests/writers/munderover-02.omml

file too large to diff

− tests/writers/munderover-02.tex

file too large to diff

− tests/writers/munderover-03.eqn

file too large to diff

− tests/writers/munderover-03.mml

file too large to diff

− tests/writers/munderover-03.omml

file too large to diff

− tests/writers/munderover-03.tex

file too large to diff

− tests/writers/munderover-04.eqn

file too large to diff

− tests/writers/munderover-04.mml

file too large to diff

− tests/writers/munderover-04.omml

file too large to diff

− tests/writers/munderover-04.tex

file too large to diff

− tests/writers/munderover-05.eqn

file too large to diff

− tests/writers/munderover-05.mml

file too large to diff

− tests/writers/munderover-05.omml

file too large to diff

− tests/writers/munderover-05.tex

file too large to diff

− tests/writers/munderover-06.eqn

file too large to diff

− tests/writers/munderover-06.mml

file too large to diff

− tests/writers/munderover-06.omml

file too large to diff

− tests/writers/munderover-06.tex

file too large to diff

− tests/writers/munderover-07.eqn

file too large to diff

− tests/writers/munderover-07.mml

file too large to diff

− tests/writers/munderover-07.omml

file too large to diff

− tests/writers/munderover-07.tex

file too large to diff

− tests/writers/munderover-08.eqn

file too large to diff

− tests/writers/munderover-08.mml

file too large to diff

− tests/writers/munderover-08.omml

file too large to diff

− tests/writers/munderover-08.tex

file too large to diff

− tests/writers/munderover-09.eqn

file too large to diff

− tests/writers/munderover-09.mml

file too large to diff

− tests/writers/munderover-09.omml

file too large to diff

− tests/writers/munderover-09.tex

file too large to diff

− tests/writers/munderover-10.eqn

file too large to diff

− tests/writers/munderover-10.mml

file too large to diff

− tests/writers/munderover-10.omml

file too large to diff

− tests/writers/munderover-10.tex

file too large to diff

− tests/writers/munderover-11.eqn

file too large to diff

− tests/writers/munderover-11.mml

file too large to diff

− tests/writers/munderover-11.omml

file too large to diff

− tests/writers/munderover-11.tex

file too large to diff

− tests/writers/munderover-12.eqn

file too large to diff

− tests/writers/munderover-12.mml

file too large to diff

− tests/writers/munderover-12.omml

file too large to diff

− tests/writers/munderover-12.tex

file too large to diff

− tests/writers/n.eqn

file too large to diff

− tests/writers/n.mml

file too large to diff

− tests/writers/n.omml

file too large to diff

− tests/writers/n.tex

file too large to diff

− tests/writers/nestAction1.eqn

file too large to diff

− tests/writers/nestAction1.mml

file too large to diff

− tests/writers/nestAction1.omml

file too large to diff

− tests/writers/nestAction1.tex

file too large to diff

− tests/writers/nestFrac1.eqn

file too large to diff

− tests/writers/nestFrac1.mml

file too large to diff

− tests/writers/nestFrac1.omml

file too large to diff

− tests/writers/nestFrac1.tex

file too large to diff

− tests/writers/nestScript.eqn

file too large to diff

− tests/writers/nestScript.mml

file too large to diff

− tests/writers/nestScript.omml

file too large to diff

− tests/writers/nestScript.tex

file too large to diff

− tests/writers/nestTable1.eqn

file too large to diff

− tests/writers/nestTable1.mml

file too large to diff

− tests/writers/nestTable1.omml

file too large to diff

− tests/writers/nestTable1.tex

file too large to diff

− tests/writers/nestedAwidth1.eqn

file too large to diff

− tests/writers/nestedAwidth1.mml

file too large to diff

− tests/writers/nestedAwidth1.omml

file too large to diff

− tests/writers/nestedAwidth1.tex

file too large to diff

− tests/writers/nestedMath3.mml

file too large to diff

− tests/writers/nestedMath3.omml

file too large to diff

− tests/writers/nestedMath3.tex

file too large to diff

− tests/writers/notin.eqn

file too large to diff

− tests/writers/notin.mml

file too large to diff

− tests/writers/notin.omml

file too large to diff

− tests/writers/notin.tex

file too large to diff

− tests/writers/o.eqn

file too large to diff

− tests/writers/o.mml

file too large to diff

− tests/writers/o.omml

file too large to diff

− tests/writers/o.tex

file too large to diff

− tests/writers/oint1.eqn

file too large to diff

− tests/writers/oint1.mml

file too large to diff

− tests/writers/oint1.omml

file too large to diff

− tests/writers/oint1.tex

file too large to diff

− tests/writers/oint2.eqn

file too large to diff

− tests/writers/oint2.mml

file too large to diff

− tests/writers/oint2.omml

file too large to diff

− tests/writers/oint2.tex

file too large to diff

− tests/writers/operatorname.eqn

file too large to diff

− tests/writers/operatorname.mml

file too large to diff

− tests/writers/operatorname.omml

file too large to diff

− tests/writers/operatorname.tex

file too large to diff

− tests/writers/p.eqn

file too large to diff

− tests/writers/p.mml

file too large to diff

− tests/writers/p.omml

file too large to diff

− tests/writers/p.tex

file too large to diff

− tests/writers/phantom.eqn

file too large to diff

− tests/writers/phantom.mml

file too large to diff

− tests/writers/phantom.omml

file too large to diff

− tests/writers/phantom.tex

file too large to diff

− tests/writers/primes1.eqn

file too large to diff

− tests/writers/primes1.mml

file too large to diff

− tests/writers/primes1.omml

file too large to diff

− tests/writers/primes1.tex

file too large to diff

− tests/writers/primes2.eqn

file too large to diff

− tests/writers/primes2.mml

file too large to diff

− tests/writers/primes2.omml

file too large to diff

− tests/writers/primes2.tex

file too large to diff

− tests/writers/prod1.eqn

file too large to diff

− tests/writers/prod1.mml

file too large to diff

− tests/writers/prod1.omml

file too large to diff

− tests/writers/prod1.tex

file too large to diff

− tests/writers/prod2.eqn

file too large to diff

− tests/writers/prod2.mml

file too large to diff

− tests/writers/prod2.omml

file too large to diff

− tests/writers/prod2.tex

file too large to diff

− tests/writers/q.eqn

file too large to diff

− tests/writers/q.mml

file too large to diff

− tests/writers/q.omml

file too large to diff

− tests/writers/q.tex

file too large to diff

− tests/writers/quadratic_formula.eqn

file too large to diff

− tests/writers/quadratic_formula.mml

file too large to diff

− tests/writers/quadratic_formula.omml

file too large to diff

− tests/writers/quadratic_formula.tex

file too large to diff

− tests/writers/r.eqn

file too large to diff

− tests/writers/r.mml

file too large to diff

− tests/writers/r.omml

file too large to diff

− tests/writers/r.tex

file too large to diff

− tests/writers/rec-mlabeledtr.eqn

file too large to diff

− tests/writers/rec-mlabeledtr.mml

file too large to diff

− tests/writers/rec-mlabeledtr.omml

file too large to diff

− tests/writers/rec-mlabeledtr.tex

file too large to diff

− tests/writers/rec-mtable1.eqn

file too large to diff

− tests/writers/rec-mtable1.mml

file too large to diff

− tests/writers/rec-mtable1.omml

file too large to diff

− tests/writers/rec-mtable1.tex

file too large to diff

− tests/writers/rec3-mphantom-1.eqn

file too large to diff

− tests/writers/rec3-mphantom-1.mml

file too large to diff

− tests/writers/rec3-mphantom-1.omml

file too large to diff

− tests/writers/rec3-mphantom-1.tex

file too large to diff

− tests/writers/s.eqn

file too large to diff

− tests/writers/s.mml

file too large to diff

− tests/writers/s.omml

file too large to diff

− tests/writers/s.tex

file too large to diff

− tests/writers/sans-serif-bold-italic.eqn

file too large to diff

− tests/writers/sans-serif-bold-italic.mml

file too large to diff

− tests/writers/sans-serif-bold-italic.omml

file too large to diff

− tests/writers/sans-serif-bold-italic.tex

file too large to diff

− tests/writers/sans-serif-bold.eqn

file too large to diff

− tests/writers/sans-serif-bold.mml

file too large to diff

− tests/writers/sans-serif-bold.omml

file too large to diff

− tests/writers/sans-serif-bold.tex

file too large to diff

− tests/writers/sans-serif-italic.eqn

file too large to diff

− tests/writers/sans-serif-italic.mml

file too large to diff

− tests/writers/sans-serif-italic.omml

file too large to diff

− tests/writers/sans-serif-italic.tex

file too large to diff

− tests/writers/sans-serif.eqn

file too large to diff

− tests/writers/sans-serif.mml

file too large to diff

− tests/writers/sans-serif.omml

file too large to diff

− tests/writers/sans-serif.tex

file too large to diff

− tests/writers/schwinger_dyson.eqn

file too large to diff

− tests/writers/schwinger_dyson.mml

file too large to diff

− tests/writers/schwinger_dyson.omml

file too large to diff

− tests/writers/schwinger_dyson.tex

file too large to diff

− tests/writers/script-bold.eqn

file too large to diff

− tests/writers/script-bold.mml

file too large to diff

− tests/writers/script-bold.omml

file too large to diff

− tests/writers/script-bold.tex

file too large to diff

− tests/writers/script.eqn

file too large to diff

− tests/writers/script.mml

file too large to diff

− tests/writers/script.omml

file too large to diff

− tests/writers/script.tex

file too large to diff

− tests/writers/semantics-01.eqn

file too large to diff

− tests/writers/semantics-01.mml

file too large to diff

− tests/writers/semantics-01.omml

file too large to diff

− tests/writers/semantics-01.tex

file too large to diff

− tests/writers/semantics-02.eqn

file too large to diff

− tests/writers/semantics-02.mml

file too large to diff

− tests/writers/semantics-02.omml

file too large to diff

− tests/writers/semantics-02.tex

file too large to diff

− tests/writers/semantics-03.eqn

file too large to diff

− tests/writers/semantics-03.mml

file too large to diff

− tests/writers/semantics-03.omml

file too large to diff

− tests/writers/semantics-03.tex

file too large to diff

− tests/writers/semantics-04.eqn

file too large to diff

− tests/writers/semantics-04.mml

file too large to diff

− tests/writers/semantics-04.omml

file too large to diff

− tests/writers/semantics-04.tex

file too large to diff

− tests/writers/serif-bold-italic.eqn

file too large to diff

− tests/writers/serif-bold-italic.mml

file too large to diff

− tests/writers/serif-bold-italic.omml

file too large to diff

− tests/writers/serif-bold-italic.tex

file too large to diff

− tests/writers/serif-bold.eqn

file too large to diff

− tests/writers/serif-bold.mml

file too large to diff

− tests/writers/serif-bold.omml

file too large to diff

− tests/writers/serif-bold.tex

file too large to diff

− tests/writers/serif-italic.eqn

file too large to diff

− tests/writers/serif-italic.mml

file too large to diff

− tests/writers/serif-italic.omml

file too large to diff

− tests/writers/serif-italic.tex

file too large to diff

− tests/writers/serif.eqn

file too large to diff

− tests/writers/serif.mml

file too large to diff

− tests/writers/serif.omml

file too large to diff

− tests/writers/serif.tex

file too large to diff

− tests/writers/simplePres.eqn

file too large to diff

− tests/writers/simplePres.mml

file too large to diff

− tests/writers/simplePres.omml

file too large to diff

− tests/writers/simplePres.tex

file too large to diff

− tests/writers/simple_sum_formula.eqn

file too large to diff

− tests/writers/simple_sum_formula.mml

file too large to diff

− tests/writers/simple_sum_formula.omml

file too large to diff

− tests/writers/simple_sum_formula.tex

file too large to diff

− tests/writers/sizeunits3.eqn

file too large to diff

− tests/writers/sizeunits3.mml

file too large to diff

− tests/writers/sizeunits3.omml

file too large to diff

− tests/writers/sizeunits3.tex

file too large to diff

− tests/writers/sizeunits4.eqn

file too large to diff

− tests/writers/sizeunits4.mml

file too large to diff

− tests/writers/sizeunits4.omml

file too large to diff

− tests/writers/sizeunits4.tex

file too large to diff

− tests/writers/sophomores_dream.eqn

file too large to diff

− tests/writers/sophomores_dream.mml

file too large to diff

− tests/writers/sophomores_dream.omml

file too large to diff

− tests/writers/sophomores_dream.tex

file too large to diff

− tests/writers/sphere_volume.eqn

file too large to diff

− tests/writers/sphere_volume.mml

file too large to diff

− tests/writers/sphere_volume.omml

file too large to diff

− tests/writers/sphere_volume.tex

file too large to diff

− tests/writers/stackrel.eqn

file too large to diff

− tests/writers/stackrel.mml

file too large to diff

− tests/writers/stackrel.omml

file too large to diff

− tests/writers/stackrel.tex

file too large to diff

− tests/writers/stretchAccents1.eqn

file too large to diff

− tests/writers/stretchAccents1.mml

file too large to diff

− tests/writers/stretchAccents1.omml

file too large to diff

− tests/writers/stretchAccents1.tex

file too large to diff

− tests/writers/stretchAccents2.eqn

file too large to diff

− tests/writers/stretchAccents2.mml

file too large to diff

− tests/writers/stretchAccents2.omml

file too large to diff

− tests/writers/stretchAccents2.tex

file too large to diff

− tests/writers/stretchBrack1.eqn

file too large to diff

− tests/writers/stretchBrack1.mml

file too large to diff

− tests/writers/stretchBrack1.omml

file too large to diff

− tests/writers/stretchBrack1.tex

file too large to diff

− tests/writers/stretchHoriz1.eqn

file too large to diff

− tests/writers/stretchHoriz1.mml

file too large to diff

− tests/writers/stretchHoriz1.omml

file too large to diff

− tests/writers/stretchHoriz1.tex

file too large to diff

− tests/writers/stretchHoriz2.eqn

file too large to diff

− tests/writers/stretchHoriz2.mml

file too large to diff

− tests/writers/stretchHoriz2.omml

file too large to diff

− tests/writers/stretchHoriz2.tex

file too large to diff

− tests/writers/stretchHoriz3.eqn

file too large to diff

− tests/writers/stretchHoriz3.mml

file too large to diff

− tests/writers/stretchHoriz3.omml

file too large to diff

− tests/writers/stretchHoriz3.tex

file too large to diff

− tests/writers/stretchTable1.eqn

file too large to diff

− tests/writers/stretchTable1.mml

file too large to diff

− tests/writers/stretchTable1.omml

file too large to diff

− tests/writers/stretchTable1.tex

file too large to diff

− tests/writers/stretchTable2.eqn

file too large to diff

− tests/writers/stretchTable2.mml

file too large to diff

− tests/writers/stretchTable2.omml

file too large to diff

− tests/writers/stretchTable2.tex

file too large to diff

− tests/writers/stretchTilde1.eqn

file too large to diff

− tests/writers/stretchTilde1.mml

file too large to diff

− tests/writers/stretchTilde1.omml

file too large to diff

− tests/writers/stretchTilde1.tex

file too large to diff

− tests/writers/stretchVert1.eqn

file too large to diff

− tests/writers/stretchVert1.mml

file too large to diff

− tests/writers/stretchVert1.omml

file too large to diff

− tests/writers/stretchVert1.tex

file too large to diff

− tests/writers/stretchVert2.eqn

file too large to diff

− tests/writers/stretchVert2.mml

file too large to diff

− tests/writers/stretchVert2.omml

file too large to diff

− tests/writers/stretchVert2.tex

file too large to diff

− tests/writers/stretchVertNest2.eqn

file too large to diff

− tests/writers/stretchVertNest2.mml

file too large to diff

− tests/writers/stretchVertNest2.omml

file too large to diff

− tests/writers/stretchVertNest2.tex

file too large to diff

− tests/writers/style1.eqn

file too large to diff

− tests/writers/style1.mml

file too large to diff

− tests/writers/style1.omml

file too large to diff

− tests/writers/style1.tex

file too large to diff

− tests/writers/style2.eqn

file too large to diff

− tests/writers/style2.mml

file too large to diff

− tests/writers/style2.omml

file too large to diff

− tests/writers/style2.tex

file too large to diff

− tests/writers/substack.eqn

file too large to diff

− tests/writers/substack.mml

file too large to diff

− tests/writers/substack.omml

file too large to diff

− tests/writers/substack.tex

file too large to diff

− tests/writers/subsup.eqn

file too large to diff

− tests/writers/subsup.mml

file too large to diff

− tests/writers/subsup.omml

file too large to diff

− tests/writers/subsup.tex

file too large to diff

− tests/writers/sum1.eqn

file too large to diff

− tests/writers/sum1.mml

file too large to diff

− tests/writers/sum1.omml

file too large to diff

− tests/writers/sum1.tex

file too large to diff

− tests/writers/sum2.eqn

file too large to diff

− tests/writers/sum2.mml

file too large to diff

− tests/writers/sum2.omml

file too large to diff

− tests/writers/sum2.tex

file too large to diff

− tests/writers/t.eqn

file too large to diff

− tests/writers/t.mml

file too large to diff

− tests/writers/t.omml

file too large to diff

− tests/writers/t.tex

file too large to diff

− tests/writers/text.eqn

file too large to diff

− tests/writers/text.mml

file too large to diff

− tests/writers/text.omml

file too large to diff

− tests/writers/text.tex

file too large to diff

− tests/writers/tokens.eqn

file too large to diff

− tests/writers/tokens.mml

file too large to diff

− tests/writers/tokens.omml

file too large to diff

− tests/writers/tokens.tex

file too large to diff

− tests/writers/tripleint1.eqn

file too large to diff

− tests/writers/tripleint1.mml

file too large to diff

− tests/writers/tripleint1.omml

file too large to diff

− tests/writers/tripleint1.tex

file too large to diff

− tests/writers/tripleint2.eqn

file too large to diff

− tests/writers/tripleint2.mml

file too large to diff

− tests/writers/tripleint2.omml

file too large to diff

− tests/writers/tripleint2.tex

file too large to diff

− tests/writers/u.eqn

file too large to diff

− tests/writers/u.mml

file too large to diff

− tests/writers/u.omml

file too large to diff

− tests/writers/u.tex

file too large to diff

− tests/writers/unicode.eqn

file too large to diff

− tests/writers/unicode.mml

file too large to diff

− tests/writers/unicode.omml

file too large to diff

− tests/writers/unicode.tex

file too large to diff

− tests/writers/v.eqn

file too large to diff

− tests/writers/v.mml

file too large to diff

− tests/writers/v.omml

file too large to diff

− tests/writers/v.tex

file too large to diff

− tests/writers/verbar1.eqn

file too large to diff

− tests/writers/verbar1.mml

file too large to diff

− tests/writers/verbar1.omml

file too large to diff

− tests/writers/verbar1.tex

file too large to diff

− tests/writers/verbar2.eqn

file too large to diff

− tests/writers/verbar2.mml

file too large to diff

− tests/writers/verbar2.omml

file too large to diff

− tests/writers/verbar2.tex

file too large to diff

− tests/writers/w.eqn

file too large to diff

− tests/writers/w.mml

file too large to diff

− tests/writers/w.omml

file too large to diff

− tests/writers/w.tex

file too large to diff

− tests/writers/whBcomments1.eqn

file too large to diff

− tests/writers/whBcomments1.mml

file too large to diff

− tests/writers/whBcomments1.omml

file too large to diff

− tests/writers/whBcomments1.tex

file too large to diff

− tests/writers/whBgeneral1.eqn

file too large to diff

− tests/writers/whBgeneral1.mml

file too large to diff

− tests/writers/whBgeneral1.omml

file too large to diff

− tests/writers/whBgeneral1.tex

file too large to diff

− tests/writers/white1.eqn

file too large to diff

− tests/writers/white1.mml

file too large to diff

− tests/writers/white1.omml

file too large to diff

− tests/writers/white1.tex

file too large to diff

− tests/writers/white10.eqn

file too large to diff

− tests/writers/white10.mml

file too large to diff

− tests/writers/white10.omml

file too large to diff

− tests/writers/white10.tex

file too large to diff

− tests/writers/white2.eqn

file too large to diff

− tests/writers/white2.mml

file too large to diff

− tests/writers/white2.omml

file too large to diff

− tests/writers/white2.tex

file too large to diff

− tests/writers/white3.eqn

file too large to diff

− tests/writers/white3.mml

file too large to diff

− tests/writers/white3.omml

file too large to diff

− tests/writers/white3.tex

file too large to diff

− tests/writers/white4.eqn

file too large to diff

− tests/writers/white4.mml

file too large to diff

− tests/writers/white4.omml

file too large to diff

− tests/writers/white4.tex

file too large to diff

− tests/writers/white5.eqn

file too large to diff

− tests/writers/white5.mml

file too large to diff

− tests/writers/white5.omml

file too large to diff

− tests/writers/white5.tex

file too large to diff

− tests/writers/white6.eqn

file too large to diff

− tests/writers/white6.mml

file too large to diff

− tests/writers/white6.omml

file too large to diff

− tests/writers/white6.tex

file too large to diff

− tests/writers/white7.eqn

file too large to diff

− tests/writers/white7.mml

file too large to diff

− tests/writers/white7.omml

file too large to diff

− tests/writers/white7.tex

file too large to diff

− tests/writers/white8.eqn

file too large to diff

− tests/writers/white8.mml

file too large to diff

− tests/writers/white8.omml

file too large to diff

− tests/writers/white8.tex

file too large to diff

− tests/writers/white9.eqn

file too large to diff

− tests/writers/white9.mml

file too large to diff

− tests/writers/white9.omml

file too large to diff

− tests/writers/white9.tex

file too large to diff

− tests/writers/x.eqn

file too large to diff

− tests/writers/x.mml

file too large to diff

− tests/writers/x.omml

file too large to diff

− tests/writers/x.tex

file too large to diff

− tests/writers/xmllang1.eqn

file too large to diff

− tests/writers/xmllang1.mml

file too large to diff

− tests/writers/xmllang1.omml

file too large to diff

− tests/writers/xmllang1.tex

file too large to diff

− tests/writers/xref1.eqn

file too large to diff

− tests/writers/xref1.mml

file too large to diff

− tests/writers/xref1.omml

file too large to diff

− tests/writers/xref1.tex

file too large to diff

− tests/writers/y.eqn

file too large to diff

− tests/writers/y.mml

file too large to diff

− tests/writers/y.omml

file too large to diff

− tests/writers/y.tex

file too large to diff

− tests/writers/z.eqn

file too large to diff

− tests/writers/z.mml

file too large to diff

− tests/writers/z.omml

file too large to diff

− tests/writers/z.tex

file too large to diff

texmath.cabal view

file too large to diff