summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-10-06 09:42:38 +0200
committerStephan Bergmann <sbergman@redhat.com>2023-10-07 00:47:20 +0200
commite0c33ec15f53a01fa3ee07489871bbe09bb5c9c3 (patch)
tree1afe391a2b4bf9eda13de043658941060cb401c2 /starmath
parent9e3da252c361b3e2b04a2df7a3ae2a5177b37713 (diff)
loplugin:ostr: automatic rewrite
Change-Id: I2d09b2b83e1b50493ec88d0b2c323a83c0c86395 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157647 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Jenkins
Diffstat (limited to 'starmath')
-rw-r--r--starmath/inc/mathml/element.hxx4
-rw-r--r--starmath/inc/token.hxx6
-rw-r--r--starmath/qa/cppunit/test_cursor.cxx4
-rw-r--r--starmath/qa/cppunit/test_nodetotextvisitors.cxx4
-rw-r--r--starmath/qa/extras/mmlexport-test.cxx8
-rw-r--r--starmath/qa/extras/mmlimport-test.cxx10
-rw-r--r--starmath/source/cursor.cxx4
-rw-r--r--starmath/source/mathml/attribute.cxx16
-rw-r--r--starmath/source/mathml/export.cxx14
-rw-r--r--starmath/source/mathml/import.cxx25
-rw-r--r--starmath/source/mathml/mathmlMo.cxx2201
-rw-r--r--starmath/source/mathml/mathmlimport.cxx42
-rw-r--r--starmath/source/mathml/xparsmlbase.cxx4254
-rw-r--r--starmath/source/parse5.cxx538
-rw-r--r--starmath/source/smediteng.cxx2
15 files changed, 3569 insertions, 3563 deletions
diff --git a/starmath/inc/mathml/element.hxx b/starmath/inc/mathml/element.hxx
index ce5d7073b606..97d7299e5df2 100644
--- a/starmath/inc/mathml/element.hxx
+++ b/starmath/inc/mathml/element.hxx
@@ -21,7 +21,7 @@ class SmMlElement final : public SmRect
public:
SmMlElement()
: m_aElementType(SmMlElementType::NMlEmpty)
- , m_aText(u"")
+ , m_aText(u""_ustr)
, m_aESelection(0, 0, 0, 0)
, m_aAttributeList(0)
, m_aAttributePosList(0)
@@ -36,7 +36,7 @@ public:
public:
SmMlElement(SmMlElementType aElementType)
: m_aElementType(aElementType)
- , m_aText(u"\u00B6")
+ , m_aText(u"\u00B6"_ustr)
, m_aESelection(0, 0, 0, 0)
, m_aSubElements(0)
, m_aParentElement(nullptr)
diff --git a/starmath/inc/token.hxx b/starmath/inc/token.hxx
index eb0de6d23875..e22b8cdc1d63 100644
--- a/starmath/inc/token.hxx
+++ b/starmath/inc/token.hxx
@@ -257,7 +257,7 @@ struct SmToken
void operator=(const SmColorTokenTableEntry& aTokenTableEntry)
{
- aText = u"";
+ aText = u""_ustr;
eType = aTokenTableEntry.eType;
cMathChar = OUString::number(static_cast<sal_uInt32>(aTokenTableEntry.cColor), 16);
nGroup = TG::Color;
@@ -266,7 +266,7 @@ struct SmToken
void operator=(const SmColorTokenTableEntry* aTokenTableEntry)
{
- aText = u"";
+ aText = u""_ustr;
eType = aTokenTableEntry->eType;
cMathChar = OUString::number(static_cast<sal_uInt32>(aTokenTableEntry->cColor), 16);
nGroup = TG::Color;
@@ -275,7 +275,7 @@ struct SmToken
void operator=(const std::unique_ptr<SmColorTokenTableEntry>& aTokenTableEntry)
{
- aText = u"";
+ aText = u""_ustr;
eType = aTokenTableEntry->eType;
cMathChar = OUString::number(static_cast<sal_uInt32>(aTokenTableEntry->cColor), 16);
nGroup = TG::Color;
diff --git a/starmath/qa/cppunit/test_cursor.cxx b/starmath/qa/cppunit/test_cursor.cxx
index 114ea791fbd3..12e63626eee3 100644
--- a/starmath/qa/cppunit/test_cursor.cxx
+++ b/starmath/qa/cppunit/test_cursor.cxx
@@ -176,7 +176,7 @@ void Test::testCutSelectPaste()
void Test::testSelectSurrogatePairs()
{
- auto xTree = SmParser5().Parse(u"\U0001EE4E");
+ auto xTree = SmParser5().Parse(u"\U0001EE4E"_ustr);
xTree->Prepare(xDocShRef->GetFormat(), *xDocShRef, 0);
SmCursor aCursor(xTree.get(), xDocShRef.get());
@@ -188,7 +188,7 @@ void Test::testSelectSurrogatePairs()
aCursor.Paste();
#ifndef _WIN32 // FIXME: on Windows clipboard does not work in tests for some reason
- CPPUNIT_ASSERT_EQUAL(OUString(u"\U0001EE4E"), xDocShRef->GetText());
+ CPPUNIT_ASSERT_EQUAL(u"\U0001EE4E"_ustr, xDocShRef->GetText());
#endif
}
diff --git a/starmath/qa/cppunit/test_nodetotextvisitors.cxx b/starmath/qa/cppunit/test_nodetotextvisitors.cxx
index aba582e281d3..1b8c0292ba31 100644
--- a/starmath/qa/cppunit/test_nodetotextvisitors.cxx
+++ b/starmath/qa/cppunit/test_nodetotextvisitors.cxx
@@ -655,10 +655,10 @@ void Test::testMiscEquivalent()
void Test::testParser()
{
OUString sOutput;
- auto pNode = SmParser5().ParseExpression(u"{ \U0001D44E }"); // non-BMP Unicode
+ auto pNode = SmParser5().ParseExpression(u"{ \U0001D44E }"_ustr); // non-BMP Unicode
pNode->Prepare(xDocShRef->GetFormat(), *xDocShRef, 0);
SmNodeToTextVisitor(pNode.get(), sOutput);
- CPPUNIT_ASSERT_EQUAL(OUString(u"\U0001D44E"), sOutput);
+ CPPUNIT_ASSERT_EQUAL(u"\U0001D44E"_ustr, sOutput);
}
CPPUNIT_TEST_SUITE_REGISTRATION(Test);
diff --git a/starmath/qa/extras/mmlexport-test.cxx b/starmath/qa/extras/mmlexport-test.cxx
index 615dcd7dfa98..98607dbec3f2 100644
--- a/starmath/qa/extras/mmlexport-test.cxx
+++ b/starmath/qa/extras/mmlexport-test.cxx
@@ -126,12 +126,12 @@ void MathMLExportTest::testMaj()
SfxBaseModel* pModel = dynamic_cast<SfxBaseModel*>(mxComponent.get());
SmDocShell* pDocShell = static_cast<SmDocShell*>(pModel->GetObjectShell());
pDocShell->SetText(
- u"maj to { \u0661 } from { \U0001EE0A = \u0660 } { \u0661 over \U0001EE0A }");
+ u"maj to { \u0661 } from { \U0001EE0A = \u0660 } { \u0661 over \U0001EE0A }"_ustr);
save("MathML XML (Math)");
xmlDocUniquePtr pDoc = parseXml(maTempFile);
CPPUNIT_ASSERT(pDoc);
assertXPath(pDoc, "/m:math/m:semantics/m:mrow/m:munderover/m:mo", "stretchy", "false");
- assertXPathContent(pDoc, "/m:math/m:semantics/m:mrow/m:munderover/m:mo", u"\U0001EEF0");
+ assertXPathContent(pDoc, "/m:math/m:semantics/m:mrow/m:munderover/m:mo", u"\U0001EEF0"_ustr);
}
void MathMLExportTest::testHadd()
@@ -139,11 +139,11 @@ void MathMLExportTest::testHadd()
mxComponent = loadFromDesktop("private:factory/smath");
SfxBaseModel* pModel = dynamic_cast<SfxBaseModel*>(mxComponent.get());
SmDocShell* pDocShell = static_cast<SmDocShell*>(pModel->GetObjectShell());
- pDocShell->SetText(u"hadd to { \U0001EE4E } from { \U0001EE4E } \U0001EE4E");
+ pDocShell->SetText(u"hadd to { \U0001EE4E } from { \U0001EE4E } \U0001EE4E"_ustr);
save("MathML XML (Math)");
xmlDocUniquePtr pDoc = parseXml(maTempFile);
CPPUNIT_ASSERT(pDoc);
- assertXPathContent(pDoc, "/m:math/m:semantics/m:mrow/m:munderover/m:mi", u"\U0001EEF1");
+ assertXPathContent(pDoc, "/m:math/m:semantics/m:mrow/m:munderover/m:mi", u"\U0001EEF1"_ustr);
}
CPPUNIT_TEST_SUITE_REGISTRATION(MathMLExportTest);
diff --git a/starmath/qa/extras/mmlimport-test.cxx b/starmath/qa/extras/mmlimport-test.cxx
index c6edd0b6481e..f691fdbef64c 100644
--- a/starmath/qa/extras/mmlimport-test.cxx
+++ b/starmath/qa/extras/mmlimport-test.cxx
@@ -178,7 +178,7 @@ void Test::testMathmlEntities()
loadFromURL(u"mthmlentities.mml");
SfxBaseModel* pModel = dynamic_cast<SfxBaseModel*>(mxComponent.get());
SmDocShell* pDocShell = static_cast<SmDocShell*>(pModel->GetObjectShell());
- CPPUNIT_ASSERT_EQUAL(OUString(u"{ \u03C3 \u221E \u221E \u03C3 }"), pDocShell->GetText());
+ CPPUNIT_ASSERT_EQUAL(u"{ \u03C3 \u221E \u221E \u03C3 }"_ustr, pDocShell->GetText());
}
void Test::testMaj()
@@ -188,8 +188,8 @@ void Test::testMaj()
CPPUNIT_ASSERT(pModel);
SmDocShell* pDocShell = static_cast<SmDocShell*>(pModel->GetObjectShell());
CPPUNIT_ASSERT(pDocShell);
- CPPUNIT_ASSERT_EQUAL(OUString(u"{ maj csup \u0661 csub { nitalic \U0001EE0A = \u0660 } { frac "
- u"{ \u0661 } { nitalic \U0001EE0A } } }"),
+ CPPUNIT_ASSERT_EQUAL(u"{ maj csup \u0661 csub { nitalic \U0001EE0A = \u0660 } { frac "
+ u"{ \u0661 } { nitalic \U0001EE0A } } }"_ustr,
pDocShell->GetText());
}
@@ -200,8 +200,8 @@ void Test::testHadd()
CPPUNIT_ASSERT(pModel);
SmDocShell* pDocShell = static_cast<SmDocShell*>(pModel->GetObjectShell());
CPPUNIT_ASSERT(pDocShell);
- CPPUNIT_ASSERT_EQUAL(OUString(u"{ nitalic \U0001EEF1 csup nitalic \U0001EE4E csub nitalic "
- u"\U0001EE4E nitalic \U0001EE4E }"),
+ CPPUNIT_ASSERT_EQUAL(u"{ nitalic \U0001EEF1 csup nitalic \U0001EE4E csub nitalic "
+ u"\U0001EE4E nitalic \U0001EE4E }"_ustr,
pDocShell->GetText());
}
diff --git a/starmath/source/cursor.cxx b/starmath/source/cursor.cxx
index c127c35f56c3..6f8e9b0af042 100644
--- a/starmath/source/cursor.cxx
+++ b/starmath/source/cursor.cxx
@@ -880,7 +880,7 @@ void SmCursor::InsertText(const OUString& aString)
SmToken token;
token.eType = TIDENT;
- token.cMathChar = u"";
+ token.cMathChar = u""_ustr;
token.nGroup = TG::NONE;
token.nLevel = 5;
token.aText = aString;
@@ -1009,7 +1009,7 @@ void SmCursor::InsertSpecial(std::u16string_view _aString)
//Create instance of special node
SmToken token;
token.eType = TSPECIAL;
- token.cMathChar = u"";
+ token.cMathChar = u""_ustr;
token.nGroup = TG::NONE;
token.nLevel = 5;
token.aText = aString;
diff --git a/starmath/source/mathml/attribute.cxx b/starmath/source/mathml/attribute.cxx
index a1be708ae656..ca4a86290d05 100644
--- a/starmath/source/mathml/attribute.cxx
+++ b/starmath/source/mathml/attribute.cxx
@@ -68,12 +68,13 @@ void SmMlAttribute::setDefaultAttributeValue()
break;
case SmMlAttributeValueType::MlHref:
m_aAttributeValue.m_aHref.m_aHref = SmMlAttributeValueHref::NMlEmpty;
- m_aAttributeValue.m_aHref.m_aLnk = new OUString(u"");
+ m_aAttributeValue.m_aHref.m_aLnk = new OUString(u""_ustr);
break;
case SmMlAttributeValueType::MlLspace:
m_aAttributeValue.m_aLspace.m_aLengthValue.m_aLengthUnit = SmLengthUnit::MlEm;
m_aAttributeValue.m_aLspace.m_aLengthValue.m_aLengthValue = 5.0 / 18;
- m_aAttributeValue.m_aLspace.m_aLengthValue.m_aOriginalText = new OUString(u"5/18em");
+ m_aAttributeValue.m_aLspace.m_aLengthValue.m_aOriginalText
+ = new OUString(u"5/18em"_ustr);
break;
case SmMlAttributeValueType::MlMathbackground:
m_aAttributeValue.m_aMathbackground.m_aMathbackground
@@ -85,7 +86,8 @@ void SmMlAttribute::setDefaultAttributeValue()
case SmMlAttributeValueType::MlMathsize:
m_aAttributeValue.m_aMathsize.m_aLengthValue.m_aLengthUnit = SmLengthUnit::MlP;
m_aAttributeValue.m_aMathsize.m_aLengthValue.m_aLengthValue = 100;
- m_aAttributeValue.m_aMathsize.m_aLengthValue.m_aOriginalText = new OUString(u"100%");
+ m_aAttributeValue.m_aMathsize.m_aLengthValue.m_aOriginalText
+ = new OUString(u"100%"_ustr);
break;
case SmMlAttributeValueType::MlMathvariant:
m_aAttributeValue.m_aMathvariant.m_aMathvariant = SmMlAttributeValueMathvariant::normal;
@@ -94,12 +96,13 @@ void SmMlAttribute::setDefaultAttributeValue()
m_aAttributeValue.m_aMaxsize.m_aMaxsize = SmMlAttributeValueMaxsize::MlInfinity;
m_aAttributeValue.m_aMaxsize.m_aLengthValue.m_aLengthUnit = SmLengthUnit::MlP;
m_aAttributeValue.m_aMaxsize.m_aLengthValue.m_aLengthValue = 10000;
- m_aAttributeValue.m_aMaxsize.m_aLengthValue.m_aOriginalText = new OUString(u"10000%");
+ m_aAttributeValue.m_aMaxsize.m_aLengthValue.m_aOriginalText
+ = new OUString(u"10000%"_ustr);
break;
case SmMlAttributeValueType::MlMinsize:
m_aAttributeValue.m_aMinsize.m_aLengthValue.m_aLengthUnit = SmLengthUnit::MlP;
m_aAttributeValue.m_aMinsize.m_aLengthValue.m_aLengthValue = 1;
- m_aAttributeValue.m_aMinsize.m_aLengthValue.m_aOriginalText = new OUString(u"1%");
+ m_aAttributeValue.m_aMinsize.m_aLengthValue.m_aOriginalText = new OUString(u"1%"_ustr);
break;
case SmMlAttributeValueType::MlMovablelimits:
m_aAttributeValue.m_aMovablelimits.m_aMovablelimits
@@ -108,7 +111,8 @@ void SmMlAttribute::setDefaultAttributeValue()
case SmMlAttributeValueType::MlRspace:
m_aAttributeValue.m_aRspace.m_aLengthValue.m_aLengthUnit = SmLengthUnit::MlEm;
m_aAttributeValue.m_aRspace.m_aLengthValue.m_aLengthValue = 5.0 / 18;
- m_aAttributeValue.m_aRspace.m_aLengthValue.m_aOriginalText = new OUString(u"5/18em");
+ m_aAttributeValue.m_aRspace.m_aLengthValue.m_aOriginalText
+ = new OUString(u"5/18em"_ustr);
break;
case SmMlAttributeValueType::MlSeparator:
m_aAttributeValue.m_aSeparator.m_aSeparator = SmMlAttributeValueSeparator::MlFalse;
diff --git a/starmath/source/mathml/export.cxx b/starmath/source/mathml/export.cxx
index ea662541b60c..923668f45425 100644
--- a/starmath/source/mathml/export.cxx
+++ b/starmath/source/mathml/export.cxx
@@ -136,7 +136,7 @@ bool SmMLExportWrapper::Export(SfxMedium& rMedium)
xInfoSet->setPropertyValue("UsePrettyPrinting", Any(true));
// Set base URI
- xInfoSet->setPropertyValue(u"BaseURI", Any(rMedium.GetBaseURL(true)));
+ xInfoSet->setPropertyValue(u"BaseURI"_ustr, Any(rMedium.GetBaseURL(true)));
if (!m_bFlat) //Storage (Package) of Stream
{
@@ -235,7 +235,7 @@ OUString SmMLExportWrapper::Export(SmMlElement* pElementTree)
SAL_WARN_IF(m_xModel == nullptr, "starmath", "Missing model");
SAL_WARN_IF(xContext == nullptr, "starmath", "Missing context");
if (m_xModel == nullptr || xContext == nullptr)
- return u"";
+ return u""_ustr;
//Get model
uno::Reference<lang::XComponent> xModelComp = m_xModel;
@@ -243,14 +243,14 @@ OUString SmMLExportWrapper::Export(SmMlElement* pElementTree)
SmModel* pModel = m_xModel.get();
SAL_WARN_IF(pModel == nullptr, "starmath", "Failed to get threw uno tunnel");
if (xModelComp == nullptr || pModel == nullptr)
- return u"";
+ return u""_ustr;
// Get doc shell
SmDocShell* pDocShell = static_cast<SmDocShell*>(pModel->GetObjectShell());
if (pDocShell == nullptr)
{
SAL_WARN("starmath", "Failed to fetch sm document");
- return u"";
+ return u""_ustr;
}
// create XPropertySet with three properties for status indicator
@@ -381,7 +381,7 @@ bool SmMLExportWrapper::WriteThroughComponentS(const Reference<embed::XStorage>&
// Set stream as text / xml
uno::Reference<beans::XPropertySet> xSet(xStream, uno::UNO_QUERY);
- xSet->setPropertyValue("MediaType", Any(OUString(u"text/xml")));
+ xSet->setPropertyValue("MediaType", Any(u"text/xml"_ustr));
// all streams must be encrypted in encrypted document
xSet->setPropertyValue("UseCommonStoragePasswordEncryption", Any(true));
@@ -420,7 +420,7 @@ SmMLExportWrapper::WriteThroughComponentMS(const Reference<XComponent>& xCompone
// We don't want to read uninitialized data
if (!bOk)
- return u"";
+ return u""_ustr;
// Recover data and generate string
OString aString(static_cast<const char*>(aMemoryStream.GetData()),
@@ -501,7 +501,7 @@ ErrCode SmMLExport::exportDoc(enum XMLTokenEnum eClass)
// make use of a default namespace
// Math doesn't need namespaces from xmloff, since it now uses default namespaces
// Because that is common with current MathML usage in the web -> ResetNamespaceMap();
- GetNamespaceMap_().Add(OUString(u""), GetXMLToken(XML_N_MATH), XML_NAMESPACE_MATH);
+ GetNamespaceMap_().Add(u""_ustr, GetXMLToken(XML_N_MATH), XML_NAMESPACE_MATH);
// Add xmlns line
if (m_bUseExportTag)
diff --git a/starmath/source/mathml/import.cxx b/starmath/source/mathml/import.cxx
index ac14bd997bc9..d857e56930d6 100644
--- a/starmath/source/mathml/import.cxx
+++ b/starmath/source/mathml/import.cxx
@@ -129,13 +129,13 @@ ErrCode SmMLImportWrapper::Import(SfxMedium& rMedium)
// Create property list
static const comphelper::PropertyMapEntry aInfoMap[]
- = { { u"PrivateData", 0, cppu::UnoType<XInterface>::get(),
+ = { { u"PrivateData"_ustr, 0, cppu::UnoType<XInterface>::get(),
beans::PropertyAttribute::MAYBEVOID, 0 },
- { u"BaseURI", 0, ::cppu::UnoType<OUString>::get(), beans::PropertyAttribute::MAYBEVOID,
- 0 },
- { u"StreamRelPath", 0, ::cppu::UnoType<OUString>::get(),
+ { u"BaseURI"_ustr, 0, ::cppu::UnoType<OUString>::get(),
beans::PropertyAttribute::MAYBEVOID, 0 },
- { u"StreamName", 0, ::cppu::UnoType<OUString>::get(),
+ { u"StreamRelPath"_ustr, 0, ::cppu::UnoType<OUString>::get(),
+ beans::PropertyAttribute::MAYBEVOID, 0 },
+ { u"StreamName"_ustr, 0, ::cppu::UnoType<OUString>::get(),
beans::PropertyAttribute::MAYBEVOID, 0 } };
uno::Reference<beans::XPropertySet> xInfoSet(
comphelper::GenericPropertySet_CreateInstance(new comphelper::PropertySetInfo(aInfoMap)));
@@ -159,7 +159,7 @@ ErrCode SmMLImportWrapper::Import(SfxMedium& rMedium)
// TODO/LATER: handle the case of embedded links gracefully
if (bEmbedded) // && !rMedium.GetStorage()->IsRoot() )
{
- OUString aName(u"dummyObjName");
+ OUString aName(u"dummyObjName"_ustr);
const SfxStringItem* pDocHierarchItem
= rMedium.GetItemSet().GetItem(SID_DOC_HIERARCHICALNAME);
if (pDocHierarchItem != nullptr)
@@ -325,13 +325,13 @@ ErrCode SmMLImportWrapper::Import(std::u16string_view aSource)
// Create property list
static const comphelper::PropertyMapEntry aInfoMap[]
- = { { u"PrivateData", 0, cppu::UnoType<XInterface>::get(),
+ = { { u"PrivateData"_ustr, 0, cppu::UnoType<XInterface>::get(),
+ beans::PropertyAttribute::MAYBEVOID, 0 },
+ { u"BaseURI"_ustr, 0, ::cppu::UnoType<OUString>::get(),
beans::PropertyAttribute::MAYBEVOID, 0 },
- { u"BaseURI", 0, ::cppu::UnoType<OUString>::get(), beans::PropertyAttribute::MAYBEVOID,
- 0 },
- { u"StreamRelPath", 0, ::cppu::UnoType<OUString>::get(),
+ { u"StreamRelPath"_ustr, 0, ::cppu::UnoType<OUString>::get(),
beans::PropertyAttribute::MAYBEVOID, 0 },
- { u"StreamName", 0, ::cppu::UnoType<OUString>::get(),
+ { u"StreamName"_ustr, 0, ::cppu::UnoType<OUString>::get(),
beans::PropertyAttribute::MAYBEVOID, 0 } };
uno::Reference<beans::XPropertySet> xInfoSet(
comphelper::GenericPropertySet_CreateInstance(new comphelper::PropertySetInfo(aInfoMap)));
@@ -1031,7 +1031,8 @@ void SmMLImportContext::handleAttributes(const Reference<XFastAttributeList>& aA
if (IsXMLToken(aIter, XML_INFINITY))
{
aMaxsize.m_aMaxsize = SmMlAttributeValueMaxsize::MlInfinity;
- aMaxsize.m_aLengthValue = { SmLengthUnit::MlP, 10000, new OUString(u"10000%") };
+ aMaxsize.m_aLengthValue
+ = { SmLengthUnit::MlP, 10000, new OUString(u"10000%"_ustr) };
}
else
{
diff --git a/starmath/source/mathml/mathmlMo.cxx b/starmath/source/mathml/mathmlMo.cxx
index fb76b070ea47..8ee7536e1c58 100644
--- a/starmath/source/mathml/mathmlMo.cxx
+++ b/starmath/source/mathml/mathmlMo.cxx
@@ -20,1106 +20,1107 @@
#include <mathmlMo.hxx>
static moOperatorData moOperatorDataDictionaryData[starmathdatabase::MATHML_MO_COUNT]
- = { { u"\u2018", moOpDF::prefix, 10, 0, 0, moOpDP::fence | moOpDP::nonedp },
- { u"\u2019", moOpDF::postfix, 10, 0, 0, moOpDP::fence | moOpDP::nonedp },
- { u"\u201C", moOpDF::prefix, 10, 0, 0, moOpDP::fence | moOpDP::nonedp },
- { u"\u201D", moOpDF::postfix, 10, 0, 0, moOpDP::fence | moOpDP::nonedp },
- { u"(", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u")", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"[", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"]", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"{", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"|", moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"||", moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"|||", moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"}", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2016", moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence },
- { u"\u2308", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2309", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u230A", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u230B", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2329", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u232A", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2772", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2773", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27E6", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27E7", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27E8", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27E9", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27EA", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27EB", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27EC", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27ED", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27EE", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u27EF", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2980", moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence },
- { u"\u2983", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2984", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2985", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2986", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2987", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2988", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2989", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u298A", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u298B", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u298C", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u298D", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u298E", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u298F", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2990", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2991", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2992", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2993", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2994", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2995", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2996", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2997", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2998", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u29FC", moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u29FD", moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
- { u";", moOpDF::infix, 30, 0, 3, moOpDP::separator | moOpDP::linebreakstyleAfter },
- { u",", moOpDF::infix, 40, 0, 3, moOpDP::separator | moOpDP::linebreakstyleAfter },
- { u"\u2063", moOpDF::infix, 40, 0, 0, moOpDP::separator | moOpDP::linebreakstyleAfter },
- { u"\u2234", moOpDF::infix, 70, 5, 5, moOpDP::nonedp },
- { u"\u2235", moOpDF::infix, 70, 5, 5, moOpDP::nonedp },
- { u"->", moOpDF::infix, 90, 5, 5, moOpDP::nonedp },
- { u"..", moOpDF::postfix, 100, 0, 0, moOpDP::nonedp },
- { u"...", moOpDF::postfix, 100, 0, 0, moOpDP::nonedp },
- { u":", moOpDF::infix, 100, 1, 2, moOpDP::nonedp },
- { u"\u03F6", moOpDF::infix, 110, 5, 5, moOpDP::nonedp },
- { u"\u2026", moOpDF::infix, 150, 0, 0, moOpDP::nonedp },
- { u"\u22EE", moOpDF::infix, 150, 5, 5, moOpDP::nonedp },
- { u"\u22EF", moOpDF::infix, 150, 0, 0, moOpDP::nonedp },
- { u"\u22F1", moOpDF::infix, 150, 5, 5, moOpDP::nonedp },
- { u"\u220B", moOpDF::infix, 160, 5, 5, moOpDP::nonedp },
- { u"\u22A2", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u22A3", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u22A4", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u22A8", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u22A9", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u22AC", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u22AD", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u22AE", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u22AF", moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
- { u"\u2228", moOpDF::infix, 190, 4, 4, moOpDP::nonedp },
- { u"&&", moOpDF::infix, 200, 4, 4, moOpDP::nonedp },
- { u"\u2227", moOpDF::infix, 200, 4, 4, moOpDP::nonedp },
- { u"\u2200", moOpDF::prefix, 230, 2, 1, moOpDP::nonedp },
- { u"\u2203", moOpDF::prefix, 230, 2, 1, moOpDP::nonedp },
- { u"\u2204", moOpDF::prefix, 230, 2, 1, moOpDP::nonedp },
- { u"\u2201", moOpDF::infix, 240, 1, 2, moOpDP::nonedp },
- { u"\u2208", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2209", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u220C", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2282", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2282\u20D2", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2283", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2283\u20D2", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2284", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2285", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2286", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2287", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2288", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u2289", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u228A", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"\u228B", moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
- { u"<=", moOpDF::infix, 241, 5, 5, moOpDP::nonedp },
- { u"\u2264", moOpDF::infix, 241, 5, 5, moOpDP::nonedp },
- { u"\u2265", moOpDF::infix, 242, 5, 5, moOpDP::nonedp },
- { u">", moOpDF::infix, 243, 5, 5, moOpDP::nonedp },
- { u">=", moOpDF::infix, 243, 5, 5, moOpDP::nonedp },
- { u"\u226F", moOpDF::infix, 244, 5, 5, moOpDP::nonedp },
- { u"&lt", moOpDF::infix, 245, 5, 5, moOpDP::nonedp },
- { u"\u226E", moOpDF::infix, 246, 5, 5, moOpDP::nonedp },
- { u"\u2248", moOpDF::infix, 247, 5, 5, moOpDP::nonedp },
- { u"\u223C", moOpDF::infix, 250, 5, 5, moOpDP::nonedp },
- { u"\u2249", moOpDF::infix, 250, 5, 5, moOpDP::nonedp },
- { u"\u2262", moOpDF::infix, 252, 5, 5, moOpDP::nonedp },
- { u"\u2260", moOpDF::infix, 255, 5, 5, moOpDP::nonedp },
- { u"!=", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"*=", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"+=", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"-=", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"/=", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u":=", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"=", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"==", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u221D", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2224", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2225", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2226", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2241", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2243", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2244", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2245", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2246", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2247", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u224D", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2254", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2257", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2259", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u225A", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u225B", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u225C", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u225F", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2261", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2268", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2269", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u226A", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u226A\u0338", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u226B", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u226B\u0338", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u226D", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2270", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2271", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u227A", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u227B", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u227C", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u227D", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2280", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2281", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22A5", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22B4", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22B5", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22C9", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u22CA", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u22CB", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u22CC", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u22D4", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22D6", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22D7", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22D8", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22D9", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22EA", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22EB", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22EC", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u22ED", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u25A0", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25A1", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25AA", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25AB", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25AD", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25AE", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25AF", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25B0", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25B1", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u25B3", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25B4", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25B5", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25B6", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25B7", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25B8", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25B9", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25BC", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25BD", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25BE", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25BF", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C0", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C1", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C2", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C3", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C4", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C5", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C6", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C7", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C8", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25C9", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25CC", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25CD", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25CE", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25CF", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25D6", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25D7", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u25E6", moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
- { u"\u29C0", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u29C1", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u29E3", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u29E4", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u29E5", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u29E6", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u29F3", moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
- { u"\u2A87", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2A88", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2AAF", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2AAF\u0338", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2AB0", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2AB0\u0338", moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
- { u"\u2044", moOpDF::infix, 265, 4, 4, moOpDP::stretchy },
- { u"\u2206", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u220A", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u220D", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u220E", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u2215", moOpDF::infix, 265, 4, 4, moOpDP::stretchy },
- { u"\u2217", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2218", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2219", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u221F", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2223", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2236", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2237", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2238", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2239", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u223A", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u223B", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u223D", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u223D\u0331", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u223E", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u223F", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u2242", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2242\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u224A", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u224B", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u224C", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u224E", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u224E\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u224F", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u224F\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2250", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2251", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2252", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2253", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2255", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2256", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2258", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u225D", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u225E", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2263", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2266", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2266\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2267", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u226C", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2272", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2273", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2274", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2275", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2276", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2277", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2278", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2279", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u227E", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u227F", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u227F\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u228C", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u228D", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u228E", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u228F", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u228F\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2290", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2290\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2291", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2292", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2293", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2294", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u229A", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u229B", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u229C", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u229D", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22A6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22A7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22AA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22AB", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22B0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22B1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22B2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22B3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22B6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22B7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22B9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22BA", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22BB", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22BC", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22BD", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22BE", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u22BF", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u22C4", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22C6", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22C7", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22C8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22CD", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22CE", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22CF", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22D0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22D1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22D2", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22D3", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u22D5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22DA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22DB", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22DC", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22DD", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22DE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22DF", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E4", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22E9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F4", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22F9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22FA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22FB", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22FC", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22FD", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22FE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u22FF", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u25B2", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2758", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2981", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u2982", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A0", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A1", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A2", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A3", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A4", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A5", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A6", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A7", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A8", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29A9", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29AA", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29AB", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29AC", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29AD", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29AE", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29AF", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29B0", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29B1", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29B2", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29B3", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29B4", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29B5", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29B6", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29B7", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29B8", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29B9", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29BA", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29BB", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29BC", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29BD", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29BE", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29BF", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29C2", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29C3", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29C4", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29C5", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29C6", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29C7", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29C8", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29C9", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29CA", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29CB", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29CC", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29CD", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29CE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29CF", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29CF\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29D0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29D0\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29D1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29D2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29D3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29D4", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29D5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29D6", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29D7", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29D8", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29D9", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29DB", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29DC", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29DD", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29DE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29E0", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29E1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u29E2", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29E7", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29E8", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29E9", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29EA", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29EB", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29EC", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29ED", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29EE", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29F0", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29F1", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29F2", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29F5", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29F6", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29F7", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29F8", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29F9", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29FA", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29FB", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u29FE", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u29FF", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A1D", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u2A1E", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u2A1F", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u2A20", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u2A21", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"\u2A22", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A23", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A24", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A25", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A26", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A27", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A28", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A29", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A2A", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A2B", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A2C", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A2D", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A2E", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A30", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A31", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A32", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A33", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A34", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A35", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A36", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A37", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A38", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A39", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A3A", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A3B", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A3C", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A3D", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A3E", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A40", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A41", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A42", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A43", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A44", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A45", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A46", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A47", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A48", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A49", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A4A", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A4B", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A4C", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A4D", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A4E", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A4F", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A50", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A51", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A52", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A53", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A54", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A55", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A56", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A57", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A58", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A59", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A5A", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A5B", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A5C", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A5D", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A5E", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A5F", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A60", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A61", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A62", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A63", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A64", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A65", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A66", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A67", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A68", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A69", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A6A", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A6B", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A6C", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A6D", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A6E", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A6F", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A70", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A71", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A72", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2A73", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A74", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A75", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A76", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A77", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A78", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A79", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A7A", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A7B", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A7C", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A7D", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A7D\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A7E", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A7E\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A7F", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A80", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A81", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A82", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A83", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A84", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A85", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A86", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A89", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A8A", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A8B", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A8C", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A8D", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A8E", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A8F", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A90", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A91", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A92", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A93", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A94", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A95", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A96", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A97", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A98", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A99", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A9A", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A9B", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A9C", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A9D", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A9E", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2A9F", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA1\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA2\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA4", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AA9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AAA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AAB", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AAC", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AAD", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AAE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB4", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AB9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ABA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ABB", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ABC", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ABD", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ABE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ABF", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC4", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AC9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ACA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ACB", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ACC", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ACD", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ACE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ACF", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD4", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AD9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ADA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ADB", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ADD", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ADD\u0338", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ADE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2ADF", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE4", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE5", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE6", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AE9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AEA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AEB", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AEC", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AED", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AEE", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AEF", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AF0", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AF1", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AF2", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AF3", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AF4", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2AF5", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2AF6", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2AF7", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AF8", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AF9", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AFA", moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
- { u"\u2AFB", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2AFD", moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
- { u"\u2AFE", moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
- { u"|", moOpDF::infix, 270, 2, 2, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"||", moOpDF::infix, 270, 2, 2, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"|||", moOpDF::infix, 270, 2, 2, moOpDP::stretchyfence | moOpDP::symmetric },
- { u"\u2190", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2191", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2192", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2193", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2194", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2195", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2196", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2197", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2198", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2199", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u219A", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u219B", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u219C", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u219D", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u219E", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u219F", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21A0", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21A1", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21A2", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21A3", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21A4", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21A5", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21A6", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21A7", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21A8", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21A9", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21AA", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21AB", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21AC", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21AD", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21AE", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21AF", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21B0", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21B1", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21B2", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21B3", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21B4", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21B5", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21B6", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21B7", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21B8", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u21B9", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21BA", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u21BB", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u21BC", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21BD", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21BE", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21BF", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21C0", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21C1", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21C2", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21C3", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21C4", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21C5", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21C6", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21C7", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21C8", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21C9", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21CA", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21CB", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21CC", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21CD", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21CE", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21CF", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21D0", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21D1", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21D2", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21D3", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21D4", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21D5", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21D6", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21D7", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21D8", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21D9", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21DA", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21DB", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21DC", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21DD", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21DE", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u21DF", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u21E0", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21E1", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21E2", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21E3", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21E4", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21E5", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21E6", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21E7", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21E8", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21E9", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21EA", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21EB", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21EC", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21ED", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21EE", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21EF", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21F0", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21F1", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u21F2", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u21F3", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21F4", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21F5", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u21F6", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21F7", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21F8", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21F9", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21FA", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21FB", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21FC", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u21FD", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21FE", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u21FF", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u22B8", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u27F0", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u27F1", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u27F5", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27F6", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27F7", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27F8", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27F9", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27FA", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27FB", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27FC", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27FD", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27FE", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u27FF", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2900", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2901", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2902", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2903", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2904", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2905", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2906", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2907", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2908", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2909", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u290A", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u290B", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u290C", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u290D", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u290E", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u290F", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2910", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2911", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2912", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2913", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2914", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2915", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2916", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2917", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2918", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2919", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u291A", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u291B", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u291C", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u291D", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u291E", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u291F", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2920", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2921", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2922", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2923", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2924", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2925", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2926", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2927", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2928", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2929", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u292A", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u292B", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u292C", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u292D", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u292E", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u292F", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2930", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2931", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2932", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2933", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2934", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2935", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2936", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2937", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2938", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2939", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u293A", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u293B", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u293C", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u293D", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u293E", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u293F", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2940", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2941", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2942", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2943", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2944", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2945", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2946", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2947", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2948", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2949", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u294A", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u294B", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u294C", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u294D", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u294E", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u294F", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2950", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2951", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2952", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2953", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2954", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2955", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2956", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2957", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2958", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2959", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u295A", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u295B", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u295C", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u295D", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u295E", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u295F", moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
- { u"\u2960", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2961", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2962", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2963", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2964", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2965", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2966", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2967", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2968", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2969", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u296A", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u296B", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u296C", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u296D", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u296E", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u296F", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2970", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2971", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2972", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2973", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2974", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2975", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2976", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2977", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2978", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u2979", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u297A", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u297B", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u297C", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u297D", moOpDF::infix, 270, 5, 5, moOpDP::accent },
- { u"\u297E", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u297F", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2999", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u299A", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u299B", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u299C", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u299D", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u299E", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u299F", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u29DF", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u29EF", moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
- { u"\u29F4", moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
- { u"\u2B45", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"\u2B46", moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
- { u"+", moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
- { u"+", moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
- { u"-", moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
- { u"-", moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
- { u"\u00B1", moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
- { u"\u00B1", moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
- { u"\u2212", moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
- { u"\u2212", moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
- { u"\u2213", moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
- { u"\u2213", moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
- { u"\u2214", moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
- { u"\u229E", moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
- { u"\u229F", moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
- { u"\u2211", moOpDF::prefix, 290, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A0A", moOpDF::prefix, 290, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A0B", moOpDF::prefix, 290, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u222C", moOpDF::prefix, 300, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u222D", moOpDF::prefix, 300, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2295", moOpDF::infix, 300, 4, 4, moOpDP::nonedp },
- { u"\u2296", moOpDF::infix, 300, 4, 4, moOpDP::nonedp },
- { u"\u2298", moOpDF::infix, 300, 4, 4, moOpDP::nonedp },
- { u"\u2A01", moOpDF::prefix, 300, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u222B", moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u222E", moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u222F", moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2230", moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2231", moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2232", moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2233", moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A0C", moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A0D", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A0E", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A0F", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A10", moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A11", moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A12", moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A13", moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A14", moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A15", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A16", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A17", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A18", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A19", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A1A", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A1B", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u2A1C", moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
- { u"\u22C3", moOpDF::prefix, 320, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A03", moOpDF::prefix, 320, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A04", moOpDF::prefix, 320, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u22C0", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u22C1", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u22C2", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A00", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A02", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A05", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A06", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A07", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A08", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2A09", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2AFC", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2AFF", moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2240", moOpDF::infix, 340, 4, 4, moOpDP::nonedp },
- { u"\u220F", moOpDF::prefix, 350, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2210", moOpDF::prefix, 350, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
- { u"\u2229", moOpDF::infix, 350, 4, 4, moOpDP::nonedp },
- { u"\u222A", moOpDF::infix, 350, 4, 4, moOpDP::nonedp },
- { u"*", moOpDF::infix, 390, 3, 3, moOpDP::nonedp },
- { u".", moOpDF::infix, 390, 3, 3, moOpDP::nonedp },
- { u"\u00D7", moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
- { u"\u2022", moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
- { u"\u2043", moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
- { u"\u2062", moOpDF::infix, 390, 0, 0, moOpDP::nonedp },
- { u"\u22A0", moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
- { u"\u22A1", moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
- { u"\u22C5", moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
- { u"\u2A2F", moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
- { u"\u2A3F", moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
- { u"\u00B7", moOpDF::infix, 400, 4, 4, moOpDP::nonedp },
- { u"\u2297", moOpDF::infix, 410, 4, 4, moOpDP::nonedp },
- { u"%", moOpDF::infix, 640, 3, 3, moOpDP::nonedp },
- { u"\\", moOpDF::infix, 650, 0, 0, moOpDP::nonedp },
- { u"\u2216", moOpDF::infix, 650, 4, 4, moOpDP::nonedp },
- { u"/", moOpDF::infix, 660, 1, 1, moOpDP::nonedp },
- { u"\u00F7", moOpDF::infix, 660, 4, 4, moOpDP::nonedp },
- { u"\u2220", moOpDF::prefix, 670, 0, 0, moOpDP::nonedp },
- { u"\u2221", moOpDF::prefix, 670, 0, 0, moOpDP::nonedp },
- { u"\u2222", moOpDF::prefix, 670, 0, 0, moOpDP::nonedp },
- { u"\u00AC", moOpDF::prefix, 680, 2, 1, moOpDP::nonedp },
- { u"\u2299", moOpDF::infix, 710, 4, 4, moOpDP::nonedp },
- { u"\u2202", moOpDF::prefix, 740, 2, 1, moOpDP::nonedp },
- { u"\u2207", moOpDF::prefix, 740, 2, 1, moOpDP::nonedp },
- { u"**", moOpDF::infix, 780, 1, 1, moOpDP::nonedp },
- { u"<>", moOpDF::infix, 780, 1, 1, moOpDP::nonedp },
- { u"^", moOpDF::infix, 780, 1, 1, moOpDP::nonedp },
- { u"\u2032", moOpDF::postfix, 800, 0, 0, moOpDP::nonedp },
- { u"\u266D", moOpDF::postfix, 800, 0, 2, moOpDP::nonedp },
- { u"\u266E", moOpDF::postfix, 800, 0, 2, moOpDP::nonedp },
- { u"\u266F", moOpDF::postfix, 800, 0, 2, moOpDP::nonedp },
- { u"!", moOpDF::postfix, 810, 1, 0, moOpDP::nonedp },
- { u"!!", moOpDF::postfix, 810, 1, 0, moOpDP::nonedp },
- { u"//", moOpDF::infix, 820, 1, 1, moOpDP::nonedp },
- { u"@", moOpDF::infix, 825, 1, 1, moOpDP::nonedp },
- { u"?", moOpDF::infix, 835, 1, 1, moOpDP::nonedp },
- { u"\u2145", moOpDF::prefix, 845, 2, 1, moOpDP::nonedp },
- { u"\u2146", moOpDF::prefix, 845, 2, 0, moOpDP::nonedp },
- { u"\u221A", moOpDF::prefix, 845, 1, 1, moOpDP::stretchy },
- { u"\u221B", moOpDF::prefix, 845, 1, 1, moOpDP::nonedp },
- { u"\u221C", moOpDF::prefix, 845, 1, 1, moOpDP::nonedp },
- { u"\u2061", moOpDF::infix, 850, 0, 0, moOpDP::nonedp },
- { u"\"", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"&", moOpDF::postfix, 880, 0, 0, moOpDP::nonedp },
- { u"\'", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"++", moOpDF::postfix, 880, 0, 0, moOpDP::nonedp },
- { u"--", moOpDF::postfix, 880, 0, 0, moOpDP::nonedp },
- { u"^", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"_", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"`", moOpDF::postfix, 880, 0, 00, moOpDP::accent },
- { u"~", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u00A8", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u00AA", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u00AF", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u00B0", moOpDF::postfix, 880, 0, 0, moOpDP::nonedp },
- { u"\u00B2", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u00B3", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u00B4", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u00B8", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u00B9", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u00BA", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u02C6", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u02C7", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u02C9", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u02CA", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u02CB", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u02CD", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u02D8", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u02D9", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u02DA", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u02DC", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u02DD", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u02F7", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u0302", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u0311", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u201A", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u201B", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u201E", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u201F", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u2033", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u2034", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u2035", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u2036", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u2037", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u203E", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u2057", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u2064", moOpDF::infix, 880, 0, 0, moOpDP::nonedp },
- { u"\u20DB", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u20DC", moOpDF::postfix, 880, 0, 0, moOpDP::accent },
- { u"\u23B4", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u23B5", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u23DC", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u23DD", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u23DE", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u23DF", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u23E0", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"\u23E1", moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
- { u"_", moOpDF::infix, 900, 1, 1, moOpDP::nonedp } };
+ = { { u"\u2018"_ustr, moOpDF::prefix, 10, 0, 0, moOpDP::fence | moOpDP::nonedp },
+ { u"\u2019"_ustr, moOpDF::postfix, 10, 0, 0, moOpDP::fence | moOpDP::nonedp },
+ { u"\u201C"_ustr, moOpDF::prefix, 10, 0, 0, moOpDP::fence | moOpDP::nonedp },
+ { u"\u201D"_ustr, moOpDF::postfix, 10, 0, 0, moOpDP::fence | moOpDP::nonedp },
+ { u"("_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u")"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"["_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"]"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"{"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"|"_ustr, moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"||"_ustr, moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"|||"_ustr, moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"}"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2016"_ustr, moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence },
+ { u"\u2308"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2309"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u230A"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u230B"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2329"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u232A"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2772"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2773"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27E6"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27E7"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27E8"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27E9"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27EA"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27EB"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27EC"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27ED"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27EE"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u27EF"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2980"_ustr, moOpDF::prepostfix, 20, 0, 0, moOpDP::stretchyfence },
+ { u"\u2983"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2984"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2985"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2986"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2987"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2988"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2989"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u298A"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u298B"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u298C"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u298D"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u298E"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u298F"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2990"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2991"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2992"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2993"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2994"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2995"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2996"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2997"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2998"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u29FC"_ustr, moOpDF::prefix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u29FD"_ustr, moOpDF::postfix, 20, 0, 0, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u";"_ustr, moOpDF::infix, 30, 0, 3, moOpDP::separator | moOpDP::linebreakstyleAfter },
+ { u","_ustr, moOpDF::infix, 40, 0, 3, moOpDP::separator | moOpDP::linebreakstyleAfter },
+ { u"\u2063"_ustr, moOpDF::infix, 40, 0, 0,
+ moOpDP::separator | moOpDP::linebreakstyleAfter },
+ { u"\u2234"_ustr, moOpDF::infix, 70, 5, 5, moOpDP::nonedp },
+ { u"\u2235"_ustr, moOpDF::infix, 70, 5, 5, moOpDP::nonedp },
+ { u"->"_ustr, moOpDF::infix, 90, 5, 5, moOpDP::nonedp },
+ { u".."_ustr, moOpDF::postfix, 100, 0, 0, moOpDP::nonedp },
+ { u"..."_ustr, moOpDF::postfix, 100, 0, 0, moOpDP::nonedp },
+ { u":"_ustr, moOpDF::infix, 100, 1, 2, moOpDP::nonedp },
+ { u"\u03F6"_ustr, moOpDF::infix, 110, 5, 5, moOpDP::nonedp },
+ { u"\u2026"_ustr, moOpDF::infix, 150, 0, 0, moOpDP::nonedp },
+ { u"\u22EE"_ustr, moOpDF::infix, 150, 5, 5, moOpDP::nonedp },
+ { u"\u22EF"_ustr, moOpDF::infix, 150, 0, 0, moOpDP::nonedp },
+ { u"\u22F1"_ustr, moOpDF::infix, 150, 5, 5, moOpDP::nonedp },
+ { u"\u220B"_ustr, moOpDF::infix, 160, 5, 5, moOpDP::nonedp },
+ { u"\u22A2"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u22A3"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u22A4"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u22A8"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u22A9"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u22AC"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u22AD"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u22AE"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u22AF"_ustr, moOpDF::infix, 170, 5, 5, moOpDP::nonedp },
+ { u"\u2228"_ustr, moOpDF::infix, 190, 4, 4, moOpDP::nonedp },
+ { u"&&"_ustr, moOpDF::infix, 200, 4, 4, moOpDP::nonedp },
+ { u"\u2227"_ustr, moOpDF::infix, 200, 4, 4, moOpDP::nonedp },
+ { u"\u2200"_ustr, moOpDF::prefix, 230, 2, 1, moOpDP::nonedp },
+ { u"\u2203"_ustr, moOpDF::prefix, 230, 2, 1, moOpDP::nonedp },
+ { u"\u2204"_ustr, moOpDF::prefix, 230, 2, 1, moOpDP::nonedp },
+ { u"\u2201"_ustr, moOpDF::infix, 240, 1, 2, moOpDP::nonedp },
+ { u"\u2208"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2209"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u220C"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2282"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2282\u20D2"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2283"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2283\u20D2"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2284"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2285"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2286"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2287"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2288"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u2289"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u228A"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"\u228B"_ustr, moOpDF::infix, 240, 5, 5, moOpDP::nonedp },
+ { u"<="_ustr, moOpDF::infix, 241, 5, 5, moOpDP::nonedp },
+ { u"\u2264"_ustr, moOpDF::infix, 241, 5, 5, moOpDP::nonedp },
+ { u"\u2265"_ustr, moOpDF::infix, 242, 5, 5, moOpDP::nonedp },
+ { u">"_ustr, moOpDF::infix, 243, 5, 5, moOpDP::nonedp },
+ { u">="_ustr, moOpDF::infix, 243, 5, 5, moOpDP::nonedp },
+ { u"\u226F"_ustr, moOpDF::infix, 244, 5, 5, moOpDP::nonedp },
+ { u"&lt"_ustr, moOpDF::infix, 245, 5, 5, moOpDP::nonedp },
+ { u"\u226E"_ustr, moOpDF::infix, 246, 5, 5, moOpDP::nonedp },
+ { u"\u2248"_ustr, moOpDF::infix, 247, 5, 5, moOpDP::nonedp },
+ { u"\u223C"_ustr, moOpDF::infix, 250, 5, 5, moOpDP::nonedp },
+ { u"\u2249"_ustr, moOpDF::infix, 250, 5, 5, moOpDP::nonedp },
+ { u"\u2262"_ustr, moOpDF::infix, 252, 5, 5, moOpDP::nonedp },
+ { u"\u2260"_ustr, moOpDF::infix, 255, 5, 5, moOpDP::nonedp },
+ { u"!="_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"*="_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"+="_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"-="_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"/="_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u":="_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"="_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"=="_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u221D"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2224"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2225"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2226"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2241"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2243"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2244"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2245"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2246"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2247"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u224D"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2254"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2257"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2259"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u225A"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u225B"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u225C"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u225F"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2261"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2268"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2269"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u226A"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u226A\u0338"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u226B"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u226B\u0338"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u226D"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2270"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2271"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u227A"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u227B"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u227C"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u227D"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2280"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2281"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22A5"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22B4"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22B5"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22C9"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u22CA"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u22CB"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u22CC"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u22D4"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22D6"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22D7"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22D8"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22D9"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22EA"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22EB"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22EC"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u22ED"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u25A0"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25A1"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25AA"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25AB"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25AD"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25AE"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25AF"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25B0"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25B1"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u25B3"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25B4"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25B5"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25B6"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25B7"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25B8"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25B9"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25BC"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25BD"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25BE"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25BF"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C0"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C1"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C2"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C3"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C4"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C5"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C6"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C7"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C8"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25C9"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25CC"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25CD"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25CE"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25CF"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25D6"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25D7"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u25E6"_ustr, moOpDF::infix, 260, 4, 4, moOpDP::nonedp },
+ { u"\u29C0"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u29C1"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u29E3"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u29E4"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u29E5"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u29E6"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u29F3"_ustr, moOpDF::infix, 260, 3, 3, moOpDP::nonedp },
+ { u"\u2A87"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2A88"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2AAF"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2AAF\u0338"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2AB0"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2AB0\u0338"_ustr, moOpDF::infix, 260, 5, 5, moOpDP::nonedp },
+ { u"\u2044"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::stretchy },
+ { u"\u2206"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u220A"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u220D"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u220E"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u2215"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::stretchy },
+ { u"\u2217"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2218"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2219"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u221F"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2223"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2236"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2237"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2238"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2239"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u223A"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u223B"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u223D"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u223D\u0331"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u223E"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u223F"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u2242"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2242\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u224A"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u224B"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u224C"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u224E"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u224E\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u224F"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u224F\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2250"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2251"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2252"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2253"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2255"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2256"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2258"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u225D"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u225E"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2263"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2266"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2266\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2267"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u226C"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2272"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2273"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2274"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2275"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2276"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2277"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2278"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2279"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u227E"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u227F"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u227F\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u228C"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u228D"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u228E"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u228F"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u228F\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2290"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2290\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2291"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2292"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2293"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2294"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u229A"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u229B"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u229C"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u229D"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22A6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22A7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22AA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22AB"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22B0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22B1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22B2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22B3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22B6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22B7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22B9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22BA"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22BB"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22BC"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22BD"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22BE"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u22BF"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u22C4"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22C6"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22C7"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22C8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22CD"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22CE"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22CF"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22D0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22D1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22D2"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22D3"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u22D5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22DA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22DB"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22DC"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22DD"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22DE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22DF"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E4"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22E9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F4"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22F9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22FA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22FB"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22FC"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22FD"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22FE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u22FF"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u25B2"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2758"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2981"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u2982"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A0"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A1"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A2"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A3"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A4"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A5"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A6"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A7"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A8"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29A9"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29AA"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29AB"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29AC"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29AD"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29AE"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29AF"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29B0"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29B1"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29B2"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29B3"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29B4"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29B5"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29B6"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29B7"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29B8"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29B9"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29BA"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29BB"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29BC"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29BD"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29BE"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29BF"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29C2"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29C3"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29C4"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29C5"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29C6"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29C7"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29C8"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29C9"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29CA"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29CB"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29CC"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29CD"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29CE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29CF"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29CF\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29D0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29D0\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29D1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29D2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29D3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29D4"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29D5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29D6"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29D7"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29D8"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29D9"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29DB"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29DC"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29DD"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29DE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29E0"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29E1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u29E2"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29E7"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29E8"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29E9"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29EA"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29EB"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29EC"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29ED"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29EE"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29F0"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29F1"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29F2"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29F5"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29F6"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29F7"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29F8"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29F9"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29FA"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29FB"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u29FE"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u29FF"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A1D"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u2A1E"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u2A1F"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u2A20"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u2A21"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"\u2A22"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A23"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A24"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A25"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A26"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A27"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A28"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A29"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A2A"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A2B"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A2C"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A2D"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A2E"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A30"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A31"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A32"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A33"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A34"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A35"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A36"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A37"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A38"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A39"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A3A"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A3B"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A3C"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A3D"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A3E"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A40"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A41"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A42"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A43"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A44"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A45"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A46"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A47"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A48"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A49"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A4A"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A4B"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A4C"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A4D"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A4E"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A4F"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A50"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A51"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A52"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A53"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A54"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A55"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A56"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A57"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A58"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A59"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A5A"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A5B"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A5C"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A5D"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A5E"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A5F"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A60"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A61"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A62"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A63"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A64"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A65"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A66"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A67"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A68"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A69"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A6A"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A6B"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A6C"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A6D"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A6E"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A6F"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A70"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A71"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A72"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2A73"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A74"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A75"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A76"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A77"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A78"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A79"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A7A"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A7B"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A7C"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A7D"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A7D\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A7E"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A7E\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A7F"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A80"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A81"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A82"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A83"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A84"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A85"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A86"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A89"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A8A"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A8B"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A8C"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A8D"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A8E"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A8F"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A90"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A91"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A92"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A93"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A94"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A95"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A96"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A97"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A98"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A99"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A9A"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A9B"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A9C"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A9D"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A9E"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2A9F"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA1\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA2\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA4"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AA9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AAA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AAB"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AAC"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AAD"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AAE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB4"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AB9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ABA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ABB"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ABC"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ABD"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ABE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ABF"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC4"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AC9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ACA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ACB"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ACC"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ACD"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ACE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ACF"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD4"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AD9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ADA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ADB"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ADD"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ADD\u0338"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ADE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2ADF"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE4"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE5"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE6"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AE9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AEA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AEB"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AEC"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AED"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AEE"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AEF"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AF0"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AF1"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AF2"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AF3"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AF4"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2AF5"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2AF6"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2AF7"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AF8"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AF9"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AFA"_ustr, moOpDF::infix, 265, 5, 5, moOpDP::nonedp },
+ { u"\u2AFB"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2AFD"_ustr, moOpDF::infix, 265, 4, 4, moOpDP::nonedp },
+ { u"\u2AFE"_ustr, moOpDF::infix, 265, 3, 3, moOpDP::nonedp },
+ { u"|"_ustr, moOpDF::infix, 270, 2, 2, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"||"_ustr, moOpDF::infix, 270, 2, 2, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"|||"_ustr, moOpDF::infix, 270, 2, 2, moOpDP::stretchyfence | moOpDP::symmetric },
+ { u"\u2190"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2191"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2192"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2193"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2194"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2195"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2196"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2197"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2198"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2199"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u219A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u219B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u219C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u219D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u219E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u219F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21A0"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21A1"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21A2"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21A3"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21A4"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21A5"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21A6"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21A7"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21A8"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21A9"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21AA"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21AB"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21AC"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21AD"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21AE"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21AF"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21B0"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21B1"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21B2"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21B3"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21B4"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21B5"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21B6"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21B7"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21B8"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u21B9"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21BA"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u21BB"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u21BC"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21BD"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21BE"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21BF"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21C0"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21C1"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21C2"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21C3"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21C4"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21C5"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21C6"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21C7"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21C8"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21C9"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21CA"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21CB"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21CC"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21CD"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21CE"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21CF"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21D0"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21D1"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21D2"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21D3"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21D4"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21D5"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21D6"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21D7"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21D8"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21D9"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21DA"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21DB"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21DC"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21DD"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21DE"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u21DF"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u21E0"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21E1"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21E2"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21E3"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21E4"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21E5"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21E6"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21E7"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21E8"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21E9"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21EA"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21EB"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21EC"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21ED"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21EE"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21EF"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21F0"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21F1"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u21F2"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u21F3"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21F4"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21F5"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u21F6"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21F7"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21F8"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21F9"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21FA"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21FB"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21FC"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u21FD"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21FE"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u21FF"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u22B8"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u27F0"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u27F1"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u27F5"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27F6"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27F7"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27F8"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27F9"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27FA"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27FB"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27FC"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27FD"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27FE"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u27FF"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2900"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2901"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2902"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2903"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2904"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2905"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2906"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2907"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2908"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2909"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u290A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u290B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u290C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u290D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u290E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u290F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2910"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2911"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2912"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2913"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2914"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2915"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2916"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2917"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2918"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2919"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u291A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u291B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u291C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u291D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u291E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u291F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2920"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2921"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2922"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2923"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2924"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2925"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2926"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2927"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2928"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2929"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u292A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u292B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u292C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u292D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u292E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u292F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2930"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2931"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2932"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2933"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2934"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2935"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2936"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2937"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2938"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2939"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u293A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u293B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u293C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u293D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u293E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u293F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2940"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2941"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2942"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2943"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2944"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2945"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2946"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2947"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2948"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2949"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u294A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u294B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u294C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u294D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u294E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u294F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2950"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2951"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2952"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2953"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2954"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2955"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2956"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2957"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2958"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2959"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u295A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u295B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u295C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u295D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u295E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u295F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2960"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2961"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2962"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2963"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2964"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2965"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2966"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2967"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2968"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2969"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u296A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u296B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u296C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u296D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u296E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u296F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2970"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2971"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2972"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2973"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2974"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2975"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2976"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2977"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2978"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u2979"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u297A"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u297B"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u297C"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u297D"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::accent },
+ { u"\u297E"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u297F"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2999"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u299A"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u299B"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u299C"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u299D"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u299E"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u299F"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u29DF"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u29EF"_ustr, moOpDF::infix, 270, 3, 3, moOpDP::nonedp },
+ { u"\u29F4"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::nonedp },
+ { u"\u2B45"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"\u2B46"_ustr, moOpDF::infix, 270, 5, 5, moOpDP::stretchy },
+ { u"+"_ustr, moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
+ { u"+"_ustr, moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
+ { u"-"_ustr, moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
+ { u"-"_ustr, moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
+ { u"\u00B1"_ustr, moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
+ { u"\u00B1"_ustr, moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
+ { u"\u2212"_ustr, moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
+ { u"\u2212"_ustr, moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
+ { u"\u2213"_ustr, moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
+ { u"\u2213"_ustr, moOpDF::prefix, 275, 0, 1, moOpDP::nonedp },
+ { u"\u2214"_ustr, moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
+ { u"\u229E"_ustr, moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
+ { u"\u229F"_ustr, moOpDF::infix, 275, 4, 4, moOpDP::nonedp },
+ { u"\u2211"_ustr, moOpDF::prefix, 290, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A0A"_ustr, moOpDF::prefix, 290, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A0B"_ustr, moOpDF::prefix, 290, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u222C"_ustr, moOpDF::prefix, 300, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u222D"_ustr, moOpDF::prefix, 300, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2295"_ustr, moOpDF::infix, 300, 4, 4, moOpDP::nonedp },
+ { u"\u2296"_ustr, moOpDF::infix, 300, 4, 4, moOpDP::nonedp },
+ { u"\u2298"_ustr, moOpDF::infix, 300, 4, 4, moOpDP::nonedp },
+ { u"\u2A01"_ustr, moOpDF::prefix, 300, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u222B"_ustr, moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u222E"_ustr, moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u222F"_ustr, moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2230"_ustr, moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2231"_ustr, moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2232"_ustr, moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2233"_ustr, moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A0C"_ustr, moOpDF::prefix, 310, 0, 1, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A0D"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A0E"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A0F"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A10"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A11"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A12"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A13"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A14"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A15"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A16"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A17"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A18"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A19"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A1A"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A1B"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u2A1C"_ustr, moOpDF::prefix, 310, 1, 2, moOpDP::largeop | moOpDP::symmetric },
+ { u"\u22C3"_ustr, moOpDF::prefix, 320, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A03"_ustr, moOpDF::prefix, 320, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A04"_ustr, moOpDF::prefix, 320, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u22C0"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u22C1"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u22C2"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A00"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A02"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A05"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A06"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A07"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A08"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2A09"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2AFC"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2AFF"_ustr, moOpDF::prefix, 330, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2240"_ustr, moOpDF::infix, 340, 4, 4, moOpDP::nonedp },
+ { u"\u220F"_ustr, moOpDF::prefix, 350, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2210"_ustr, moOpDF::prefix, 350, 1, 2, moOpDP::movablelargeop | moOpDP::symmetric },
+ { u"\u2229"_ustr, moOpDF::infix, 350, 4, 4, moOpDP::nonedp },
+ { u"\u222A"_ustr, moOpDF::infix, 350, 4, 4, moOpDP::nonedp },
+ { u"*"_ustr, moOpDF::infix, 390, 3, 3, moOpDP::nonedp },
+ { u"."_ustr, moOpDF::infix, 390, 3, 3, moOpDP::nonedp },
+ { u"\u00D7"_ustr, moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
+ { u"\u2022"_ustr, moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
+ { u"\u2043"_ustr, moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
+ { u"\u2062"_ustr, moOpDF::infix, 390, 0, 0, moOpDP::nonedp },
+ { u"\u22A0"_ustr, moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
+ { u"\u22A1"_ustr, moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
+ { u"\u22C5"_ustr, moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
+ { u"\u2A2F"_ustr, moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
+ { u"\u2A3F"_ustr, moOpDF::infix, 390, 4, 4, moOpDP::nonedp },
+ { u"\u00B7"_ustr, moOpDF::infix, 400, 4, 4, moOpDP::nonedp },
+ { u"\u2297"_ustr, moOpDF::infix, 410, 4, 4, moOpDP::nonedp },
+ { u"%"_ustr, moOpDF::infix, 640, 3, 3, moOpDP::nonedp },
+ { u"\\"_ustr, moOpDF::infix, 650, 0, 0, moOpDP::nonedp },
+ { u"\u2216"_ustr, moOpDF::infix, 650, 4, 4, moOpDP::nonedp },
+ { u"/"_ustr, moOpDF::infix, 660, 1, 1, moOpDP::nonedp },
+ { u"\u00F7"_ustr, moOpDF::infix, 660, 4, 4, moOpDP::nonedp },
+ { u"\u2220"_ustr, moOpDF::prefix, 670, 0, 0, moOpDP::nonedp },
+ { u"\u2221"_ustr, moOpDF::prefix, 670, 0, 0, moOpDP::nonedp },
+ { u"\u2222"_ustr, moOpDF::prefix, 670, 0, 0, moOpDP::nonedp },
+ { u"\u00AC"_ustr, moOpDF::prefix, 680, 2, 1, moOpDP::nonedp },
+ { u"\u2299"_ustr, moOpDF::infix, 710, 4, 4, moOpDP::nonedp },
+ { u"\u2202"_ustr, moOpDF::prefix, 740, 2, 1, moOpDP::nonedp },
+ { u"\u2207"_ustr, moOpDF::prefix, 740, 2, 1, moOpDP::nonedp },
+ { u"**"_ustr, moOpDF::infix, 780, 1, 1, moOpDP::nonedp },
+ { u"<>"_ustr, moOpDF::infix, 780, 1, 1, moOpDP::nonedp },
+ { u"^"_ustr, moOpDF::infix, 780, 1, 1, moOpDP::nonedp },
+ { u"\u2032"_ustr, moOpDF::postfix, 800, 0, 0, moOpDP::nonedp },
+ { u"\u266D"_ustr, moOpDF::postfix, 800, 0, 2, moOpDP::nonedp },
+ { u"\u266E"_ustr, moOpDF::postfix, 800, 0, 2, moOpDP::nonedp },
+ { u"\u266F"_ustr, moOpDF::postfix, 800, 0, 2, moOpDP::nonedp },
+ { u"!"_ustr, moOpDF::postfix, 810, 1, 0, moOpDP::nonedp },
+ { u"!!"_ustr, moOpDF::postfix, 810, 1, 0, moOpDP::nonedp },
+ { u"//"_ustr, moOpDF::infix, 820, 1, 1, moOpDP::nonedp },
+ { u"@"_ustr, moOpDF::infix, 825, 1, 1, moOpDP::nonedp },
+ { u"?"_ustr, moOpDF::infix, 835, 1, 1, moOpDP::nonedp },
+ { u"\u2145"_ustr, moOpDF::prefix, 845, 2, 1, moOpDP::nonedp },
+ { u"\u2146"_ustr, moOpDF::prefix, 845, 2, 0, moOpDP::nonedp },
+ { u"\u221A"_ustr, moOpDF::prefix, 845, 1, 1, moOpDP::stretchy },
+ { u"\u221B"_ustr, moOpDF::prefix, 845, 1, 1, moOpDP::nonedp },
+ { u"\u221C"_ustr, moOpDF::prefix, 845, 1, 1, moOpDP::nonedp },
+ { u"\u2061"_ustr, moOpDF::infix, 850, 0, 0, moOpDP::nonedp },
+ { u"\""_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"&"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::nonedp },
+ { u"\'"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"++"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::nonedp },
+ { u"--"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::nonedp },
+ { u"^"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"_"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"`"_ustr, moOpDF::postfix, 880, 0, 00, moOpDP::accent },
+ { u"~"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u00A8"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u00AA"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u00AF"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u00B0"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::nonedp },
+ { u"\u00B2"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u00B3"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u00B4"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u00B8"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u00B9"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u00BA"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u02C6"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u02C7"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u02C9"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u02CA"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u02CB"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u02CD"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u02D8"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u02D9"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u02DA"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u02DC"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u02DD"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u02F7"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u0302"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u0311"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u201A"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u201B"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u201E"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u201F"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u2033"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u2034"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u2035"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u2036"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u2037"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u203E"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u2057"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u2064"_ustr, moOpDF::infix, 880, 0, 0, moOpDP::nonedp },
+ { u"\u20DB"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u20DC"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::accent },
+ { u"\u23B4"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u23B5"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u23DC"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u23DD"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u23DE"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u23DF"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u23E0"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"\u23E1"_ustr, moOpDF::postfix, 880, 0, 0, moOpDP::stretchy | moOpDP::accent },
+ { u"_"_ustr, moOpDF::infix, 900, 1, 1, moOpDP::nonedp } };
std::vector<moOperatorData> starmathdatabase::moOperatorDataDictionary(
moOperatorDataDictionaryData, moOperatorDataDictionaryData + starmathdatabase::MATHML_MO_COUNT);
diff --git a/starmath/source/mathml/mathmlimport.cxx b/starmath/source/mathml/mathmlimport.cxx
index b4d0b0ac8470..7bc3e5b913e3 100644
--- a/starmath/source/mathml/mathmlimport.cxx
+++ b/starmath/source/mathml/mathmlimport.cxx
@@ -605,7 +605,7 @@ void SmXMLContext_Helper::ApplyAttrs()
return;
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nLevel = 5;
if (nIsBold != -1)
@@ -795,7 +795,7 @@ void SmXMLTokenAttrHelper::ApplyAttrs(MathMLMathvariantValue eDefaultMv)
{
SmToken aToken;
aToken.eType = eType;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nLevel = 5;
std::unique_ptr<SmFontNode> pFontNode(new SmFontNode(aToken));
pFontNode->SetSubNodes(nullptr, popOrZero(rNodeStack));
@@ -991,7 +991,7 @@ void SmXMLPhantomContext_Impl::endFastElement(sal_Int32 nElement)
SmXMLRowContext_Impl::endFastElement(nElement);
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nLevel = 5;
aToken.eType = TPHANTOM;
@@ -1053,7 +1053,7 @@ void SmXMLFencedContext_Impl::startFastElement(
void SmXMLFencedContext_Impl::endFastElement(sal_Int32 /*nElement*/)
{
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.aText = ",";
aToken.nLevel = 5;
@@ -1075,7 +1075,7 @@ void SmXMLFencedContext_Impl::endFastElement(sal_Int32 /*nElement*/)
SmNodeArray aRelationArray;
SmNodeStack& rNodeStack = GetSmImport().GetNodeStack();
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = TIDENT;
auto i = rNodeStack.size() - nElementCount;
@@ -1143,7 +1143,7 @@ public:
SmXMLNumberContext_Impl(SmXMLImport& rImport)
: SmXMLImportContext(rImport)
{
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nLevel = 5;
aToken.eType = TNUMBER;
}
@@ -1220,7 +1220,7 @@ public:
SmXMLTextContext_Impl(SmXMLImport& rImport)
: SmXMLImportContext(rImport)
{
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nLevel = 5;
aToken.eType = TTEXT;
}
@@ -1249,7 +1249,7 @@ public:
SmXMLStringContext_Impl(SmXMLImport& rImport)
: SmXMLImportContext(rImport)
{
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nLevel = 5;
aToken.eType = TTEXT;
}
@@ -1294,7 +1294,7 @@ public:
, maTokenAttrHelper(*this)
, aStyleHelper(*this)
{
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nLevel = 5;
aToken.eType = TIDENT;
}
@@ -1508,7 +1508,7 @@ void SmXMLSpaceContext_Impl::startFastElement(
}
SmToken aToken;
aToken.eType = TBLANK;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nGroup = TG::Blank;
aToken.nLevel = 5;
std::unique_ptr<SmBlankNode> pBlank(new SmBlankNode(aToken));
@@ -1548,7 +1548,7 @@ void SmXMLSubContext_Impl::GenericEndElement(SmTokenType eType, SmSubSup eSubSup
return;
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = eType;
std::unique_ptr<SmSubSupNode> pNode(new SmSubSupNode(aToken));
SmNodeStack& rNodeStack = GetSmImport().GetNodeStack();
@@ -1602,7 +1602,7 @@ void SmXMLSubSupContext_Impl::GenericEndElement(SmTokenType eType, SmSubSup aSub
return;
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = eType;
std::unique_ptr<SmSubSupNode> pNode(new SmSubSupNode(aToken));
SmNodeStack& rNodeStack = GetSmImport().GetNodeStack();
@@ -1660,7 +1660,7 @@ void SmXMLUnderContext_Impl::HandleAccent()
SmNodeStack& rNodeStack = GetSmImport().GetNodeStack();
std::unique_ptr<SmNode> pTest = popOrZero(rNodeStack);
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = TUNDERLINE;
std::unique_ptr<SmNode> pFirst;
@@ -1731,7 +1731,7 @@ void SmXMLOverContext_Impl::HandleAccent()
return;
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = TACUTE;
std::unique_ptr<SmAttributeNode> pNode(new SmAttributeNode(aToken));
@@ -1790,7 +1790,7 @@ public:
void SmXMLNoneContext_Impl::endFastElement(sal_Int32)
{
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.aText.clear();
aToken.nLevel = 5;
aToken.eType = TIDENT;
@@ -2055,7 +2055,7 @@ void SmXMLFracContext_Impl::endFastElement(sal_Int32)
return;
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = TFRAC;
std::unique_ptr<SmStructureNode> pSNode(new SmBinVerNode(aToken));
std::unique_ptr<SmNode> pOper(new SmRectangleNode(aToken));
@@ -2133,7 +2133,7 @@ void SmXMLRowContext_Impl::endFastElement(sal_Int32)
&& (aRelationArray[nSize - 1]->GetType() == SmNodeType::Math)))
{
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.nLevel = 5;
int nLeft = 0, nRight = 0;
@@ -2144,7 +2144,7 @@ void SmXMLRowContext_Impl::endFastElement(sal_Int32)
nLeft = 1;
}
else
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = TLPARENT;
std::unique_ptr<SmNode> pLeft(new SmMathSymbolNode(aToken));
@@ -2156,7 +2156,7 @@ void SmXMLRowContext_Impl::endFastElement(sal_Int32)
nRight = 1;
}
else
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = TRPARENT;
std::unique_ptr<SmNode> pRight(new SmMathSymbolNode(aToken));
@@ -2312,7 +2312,7 @@ void SmXMLMultiScriptsContext_Impl::ProcessSubSupPairs(bool bIsPrescript)
if (nCount % 2 == 0)
{
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = bIsPrescript ? TLSUB : TRSUB;
SmNodeStack aReverseStack;
@@ -2420,7 +2420,7 @@ void SmXMLTableContext_Impl::endFastElement(sal_Int32)
aReverseStack.clear();
SmToken aToken;
- aToken.cMathChar = u"";
+ aToken.cMathChar = u""_ustr;
aToken.eType = TMATRIX;
std::unique_ptr<SmMatrixNode> pSNode(new SmMatrixNode(aToken));
pSNode->SetSubNodes(std::move(aExpressionArray));
diff --git a/starmath/source/mathml/xparsmlbase.cxx b/starmath/source/mathml/xparsmlbase.cxx
index 7e0e93ab7390..ccfcf0049e77 100644
--- a/starmath/source/mathml/xparsmlbase.cxx
+++ b/starmath/source/mathml/xparsmlbase.cxx
@@ -21,2131 +21,2131 @@
static ::css::beans::Pair<::rtl::OUString, ::rtl::OUString>
icustomMathmlHtmlEntitiesData[starmathdatabase::STARMATH_MATHMLHTML_ENTITY_NUMBER] = {
// clang-format off
- { u"AElig", u"\u00C6" },
- { u"AMP", u"\u0026" },
- { u"Aacute", u"\u00C1" },
- { u"Abreve", u"\u0102" },
- { u"Acirc", u"\u00C2" },
- { u"Acy", u"\u0410" },
- { u"Afr", u"\U0001D504" },
- { u"Agrave", u"\u00C0" },
- { u"Alpha", u"\u0391" },
- { u"Amacr", u"\u0100" },
- { u"And", u"\u2A53" },
- { u"Aogon", u"\u0104" },
- { u"Aopf", u"\U0001D538" },
- { u"ApplyFunction", u"\u2061" },
- { u"Aring", u"\u00C5" },
- { u"Ascr", u"\U0001D49C" },
- { u"Assign", u"\u2254" },
- { u"Atilde", u"\u00C3" },
- { u"Auml", u"\u00C4" },
- { u"Backslash", u"\u2216" },
- { u"Barv", u"\u2AE7" },
- { u"Barwed", u"\u2306" },
- { u"Bcy", u"\u0411" },
- { u"Because", u"\u2235" },
- { u"Bernoullis", u"\u212C" },
- { u"Beta", u"\u0392" },
- { u"Bfr", u"\U0001D505" },
- { u"Bopf", u"\U0001D539" },
- { u"Breve", u"\u02D8" },
- { u"Bscr", u"\u212C" },
- { u"Bumpeq", u"\u224E" },
- { u"CHcy", u"\u0427" },
- { u"COPY", u"\u00A9" },
- { u"Cacute", u"\u0106" },
- { u"Cap", u"\u22D2" },
- { u"CapitalDifferentialD", u"\u2145" },
- { u"Cayleys", u"\u212D" },
- { u"Ccaron", u"\u010C" },
- { u"Ccedil", u"\u00C7" },
- { u"Ccirc", u"\u0108" },
- { u"Cconint", u"\u2230" },
- { u"Cdot", u"\u010A" },
- { u"Cedilla", u"\u00B8" },
- { u"CenterDot", u"\u00B7" },
- { u"Cfr", u"\u212D" },
- { u"Chi", u"\u03A7" },
- { u"CircleDot", u"\u2299" },
- { u"CircleMinus", u"\u2296" },
- { u"CirclePlus", u"\u2295" },
- { u"CircleTimes", u"\u2297" },
- { u"ClockwiseContourIntegral", u"\u2232" },
- { u"CloseCurlyDoubleQuote", u"\u201D" },
- { u"CloseCurlyQuote", u"\u2019" },
- { u"Colon", u"\u2237" },
- { u"Colone", u"\u2A74" },
- { u"Congruent", u"\u2261" },
- { u"Conint", u"\u222F" },
- { u"ContourIntegral", u"\u222E" },
- { u"Copf", u"\u2102" },
- { u"Coproduct", u"\u2210" },
- { u"CounterClockwiseContourIntegral", u"\u2233" },
- { u"Cross", u"\u2A2F" },
- { u"Cscr", u"\U0001D49E" },
- { u"Cup", u"\u22D3" },
- { u"CupCap", u"\u224D" },
- { u"DD", u"\u2145" },
- { u"DDotrahd", u"\u2911" },
- { u"DJcy", u"\u0402" },
- { u"DScy", u"\u0405" },
- { u"DZcy", u"\u040F" },
- { u"Dagger", u"\u2021" },
- { u"Darr", u"\u21A1" },
- { u"Dashv", u"\u2AE4" },
- { u"Dcaron", u"\u010E" },
- { u"Dcy", u"\u0414" },
- { u"Del", u"\u2207" },
- { u"Delta", u"\u0394" },
- { u"Dfr", u"\U0001D507" },
- { u"DiacriticalAcute", u"\u00B4" },
- { u"DiacriticalDot", u"\u02D9" },
- { u"DiacriticalDoubleAcute", u"\u02DD" },
- { u"DiacriticalGrave", u"\u0060" },
- { u"DiacriticalTilde", u"\u02DC" },
- { u"Diamond", u"\u22C4" },
- { u"DifferentialD", u"\u2146" },
- { u"Dopf", u"\U0001D53B" },
- { u"Dot", u"\u00A8" },
- { u"DotDot", u"\u20DC" },
- { u"DotEqual", u"\u2250" },
- { u"DoubleContourIntegral", u"\u222F" },
- { u"DoubleDot", u"\u00A8" },
- { u"DoubleDownArrow", u"\u21D3" },
- { u"DoubleLeftArrow", u"\u21D0" },
- { u"DoubleLeftRightArrow", u"\u21D4" },
- { u"DoubleLeftTee", u"\u2AE4" },
- { u"DoubleLongLeftArrow", u"\u27F8" },
- { u"DoubleLongLeftRightArrow", u"\u27FA" },
- { u"DoubleLongRightArrow", u"\u27F9" },
- { u"DoubleRightArrow", u"\u21D2" },
- { u"DoubleRightTee", u"\u22A8" },
- { u"DoubleUpArrow", u"\u21D1" },
- { u"DoubleUpDownArrow", u"\u21D5" },
- { u"DoubleVerticalBar", u"\u2225" },
- { u"DownArrow", u"\u2193" },
- { u"DownArrowBar", u"\u2913" },
- { u"DownArrowUpArrow", u"\u21F5" },
- { u"DownBreve", u"\u0311" },
- { u"DownLeftRightVector", u"\u2950" },
- { u"DownLeftTeeVector", u"\u295E" },
- { u"DownLeftVector", u"\u21BD" },
- { u"DownLeftVectorBar", u"\u2956" },
- { u"DownRightTeeVector", u"\u295F" },
- { u"DownRightVector", u"\u21C1" },
- { u"DownRightVectorBar", u"\u2957" },
- { u"DownTee", u"\u22A4" },
- { u"DownTeeArrow", u"\u21A7" },
- { u"Downarrow", u"\u21D3" },
- { u"Dscr", u"\U0001D49F" },
- { u"Dstrok", u"\u0110" },
- { u"ENG", u"\u014A" },
- { u"ETH", u"\u00D0" },
- { u"Eacute", u"\u00C9" },
- { u"Ecaron", u"\u011A" },
- { u"Ecirc", u"\u00CA" },
- { u"Ecy", u"\u042D" },
- { u"Edot", u"\u0116" },
- { u"Efr", u"\U0001D508" },
- { u"Egrave", u"\u00C8" },
- { u"Element", u"\u2208" },
- { u"Emacr", u"\u0112" },
- { u"EmptySmallSquare", u"\u25FB" },
- { u"EmptyVerySmallSquare", u"\u25AB" },
- { u"Eogon", u"\u0118" },
- { u"Eopf", u"\U0001D53C" },
- { u"Epsilon", u"\u0395" },
- { u"Equal", u"\u2A75" },
- { u"EqualTilde", u"\u2242" },
- { u"Equilibrium", u"\u21CC" },
- { u"Escr", u"\u2130" },
- { u"Esim", u"\u2A73" },
- { u"Eta", u"\u0397" },
- { u"Euml", u"\u00CB" },
- { u"Exists", u"\u2203" },
- { u"ExponentialE", u"\u2147" },
- { u"Fcy", u"\u0424" },
- { u"Ffr", u"\U0001D509" },
- { u"FilledSmallSquare", u"\u25FC" },
- { u"FilledVerySmallSquare", u"\u25AA" },
- { u"Fopf", u"\U0001D53D" },
- { u"ForAll", u"\u2200" },
- { u"Fouriertrf", u"\u2131" },
- { u"Fscr", u"\u2131" },
- { u"GJcy", u"\u0403" },
- { u"GT", u"\u003E" },
- { u"Gamma", u"\u0393" },
- { u"Gammad", u"\u03DC" },
- { u"Gbreve", u"\u011E" },
- { u"Gcedil", u"\u0122" },
- { u"Gcirc", u"\u011C" },
- { u"Gcy", u"\u0413" },
- { u"Gdot", u"\u0120" },
- { u"Gfr", u"\U0001D50A" },
- { u"Gg", u"\u22D9" },
- { u"Gopf", u"\U0001D53E" },
- { u"GreaterEqual", u"\u2265" },
- { u"GreaterEqualLess", u"\u22DB" },
- { u"GreaterFullEqual", u"\u2267" },
- { u"GreaterGreater", u"\u2AA2" },
- { u"GreaterLess", u"\u2277" },
- { u"GreaterSlantEqual", u"\u2A7E" },
- { u"GreaterTilde", u"\u2273" },
- { u"Gscr", u"\U0001D4A2" },
- { u"Gt", u"\u226B" },
- { u"HARDcy", u"\u042A" },
- { u"Hacek", u"\u02C7" },
- { u"Hat", u"\u005E" },
- { u"Hcirc", u"\u0124" },
- { u"Hfr", u"\u210C" },
- { u"HilbertSpace", u"\u210B" },
- { u"Hopf", u"\u210D" },
- { u"HorizontalLine", u"\u2500" },
- { u"Hscr", u"\u210B" },
- { u"Hstrok", u"\u0126" },
- { u"HumpDownHump", u"\u224E" },
- { u"HumpEqual", u"\u224F" },
- { u"IEcy", u"\u0415" },
- { u"IJlig", u"\u0132" },
- { u"IOcy", u"\u0401" },
- { u"Iacute", u"\u00CD" },
- { u"Icirc", u"\u00CE" },
- { u"Icy", u"\u0418" },
- { u"Idot", u"\u0130" },
- { u"Ifr", u"\u2111" },
- { u"Igrave", u"\u00CC" },
- { u"Im", u"\u2111" },
- { u"Imacr", u"\u012A" },
- { u"ImaginaryI", u"\u2148" },
- { u"Implies", u"\u21D2" },
- { u"Int", u"\u222C" },
- { u"Integral", u"\u222B" },
- { u"Intersection", u"\u22C2" },
- { u"InvisibleComma", u"\u2063" },
- { u"InvisibleTimes", u"\u2062" },
- { u"Iogon", u"\u012E" },
- { u"Iopf", u"\U0001D540" },
- { u"Iota", u"\u0399" },
- { u"Iscr", u"\u2110" },
- { u"Itilde", u"\u0128" },
- { u"Iukcy", u"\u0406" },
- { u"Iuml", u"\u00CF" },
- { u"Jcirc", u"\u0134" },
- { u"Jcy", u"\u0419" },
- { u"Jfr", u"\U0001D50D" },
- { u"Jopf", u"\U0001D541" },
- { u"Jscr", u"\U0001D4A5" },
- { u"Jsercy", u"\u0408" },
- { u"Jukcy", u"\u0404" },
- { u"KHcy", u"\u0425" },
- { u"KJcy", u"\u040C" },
- { u"Kappa", u"\u039A" },
- { u"Kcedil", u"\u0136" },
- { u"Kcy", u"\u041A" },
- { u"Kfr", u"\U0001D50E" },
- { u"Kopf", u"\U0001D542" },
- { u"Kscr", u"\U0001D4A6" },
- { u"LJcy", u"\u0409" },
- { u"LT", u"\u003C" },
- { u"Lacute", u"\u0139" },
- { u"Lambda", u"\u039B" },
- { u"Lang", u"\u27EA" },
- { u"Laplacetrf", u"\u2112" },
- { u"Larr", u"\u219E" },
- { u"Lcaron", u"\u013D" },
- { u"Lcedil", u"\u013B" },
- { u"Lcy", u"\u041B" },
- { u"LeftAngleBracket", u"\u27E8" },
- { u"LeftArrow", u"\u2190" },
- { u"LeftArrowBar", u"\u21E4" },
- { u"LeftArrowRightArrow", u"\u21C6" },
- { u"LeftCeiling", u"\u2308" },
- { u"LeftDoubleBracket", u"\u27E6" },
- { u"LeftDownTeeVector", u"\u2961" },
- { u"LeftDownVector", u"\u21C3" },
- { u"LeftDownVectorBar", u"\u2959" },
- { u"LeftFloor", u"\u230A" },
- { u"LeftRightArrow", u"\u2194" },
- { u"LeftRightVector", u"\u294E" },
- { u"LeftTee", u"\u22A3" },
- { u"LeftTeeArrow", u"\u21A4" },
- { u"LeftTeeVector", u"\u295A" },
- { u"LeftTriangle", u"\u22B2" },
- { u"LeftTriangleBar", u"\u29CF" },
- { u"LeftTriangleEqual", u"\u22B4" },
- { u"LeftUpDownVector", u"\u2951" },
- { u"LeftUpTeeVector", u"\u2960" },
- { u"LeftUpVector", u"\u21BF" },
- { u"LeftUpVectorBar", u"\u2958" },
- { u"LeftVector", u"\u21BC" },
- { u"LeftVectorBar", u"\u2952" },
- { u"Leftarrow", u"\u21D0" },
- { u"Leftrightarrow", u"\u21D4" },
- { u"LessEqualGreater", u"\u22DA" },
- { u"LessFullEqual", u"\u2266" },
- { u"LessGreater", u"\u2276" },
- { u"LessLess", u"\u2AA1" },
- { u"LessSlantEqual", u"\u2A7D" },
- { u"LessTilde", u"\u2272" },
- { u"Lfr", u"\U0001D50F" },
- { u"Ll", u"\u22D8" },
- { u"Lleftarrow", u"\u21DA" },
- { u"Lmidot", u"\u013F" },
- { u"LongLeftArrow", u"\u27F5" },
- { u"LongLeftRightArrow", u"\u27F7" },
- { u"LongRightArrow", u"\u27F6" },
- { u"Longleftarrow", u"\u27F8" },
- { u"Longleftrightarrow", u"\u27FA" },
- { u"Longrightarrow", u"\u27F9" },
- { u"Lopf", u"\U0001D543" },
- { u"LowerLeftArrow", u"\u2199" },
- { u"LowerRightArrow", u"\u2198" },
- { u"Lscr", u"\u2112" },
- { u"Lsh", u"\u21B0" },
- { u"Lstrok", u"\u0141" },
- { u"Lt", u"\u226A" },
- { u"Map", u"\u2905" },
- { u"Mcy", u"\u041C" },
- { u"MediumSpace", u"\u205F" },
- { u"Mellintrf", u"\u2133" },
- { u"Mfr", u"\U0001D510" },
- { u"MinusPlus", u"\u2213" },
- { u"Mopf", u"\U0001D544" },
- { u"Mscr", u"\u2133" },
- { u"Mu", u"\u039C" },
- { u"NJcy", u"\u040A" },
- { u"Nacute", u"\u0143" },
- { u"Ncaron", u"\u0147" },
- { u"Ncedil", u"\u0145" },
- { u"Ncy", u"\u041D" },
- { u"NegativeMediumSpace", u"\u200B" },
- { u"NegativeThickSpace", u"\u200B" },
- { u"NegativeThinSpace", u"\u200B" },
- { u"NegativeVeryThinSpace", u"\u200B" },
- { u"NestedGreaterGreater", u"\u226B" },
- { u"NestedLessLess", u"\u226A" },
- { u"NewLine", u"\u000A" },
- { u"Nfr", u"\U0001D511" },
- { u"NoBreak", u"\u2060" },
- { u"NonBreakingSpace", u"\u00A0" },
- { u"Nopf", u"\u2115" },
- { u"Not", u"\u2AEC" },
- { u"NotCongruent", u"\u2262" },
- { u"NotCupCap", u"\u226D" },
- { u"NotDoubleVerticalBar", u"\u2226" },
- { u"NotElement", u"\u2209" },
- { u"NotEqual", u"\u2260" },
- { u"NotEqualTilde", u"\u2242\u0338" },
- { u"NotExists", u"\u2204" },
- { u"NotGreater", u"\u226F" },
- { u"NotGreaterEqual", u"\u2271" },
- { u"NotGreaterFullEqual", u"\u2267\u0338" },
- { u"NotGreaterGreater", u"\u226B\u0338" },
- { u"NotGreaterLess", u"\u2279" },
- { u"NotGreaterSlantEqual", u"\u2A7E\u0338" },
- { u"NotGreaterTilde", u"\u2275" },
- { u"NotHumpDownHump", u"\u224E\u0338" },
- { u"NotHumpEqual", u"\u224F\u0338" },
- { u"NotLeftTriangle", u"\u22EA" },
- { u"NotLeftTriangleBar", u"\u29CF\u0338" },
- { u"NotLeftTriangleEqual", u"\u22EC" },
- { u"NotLess", u"\u226E" },
- { u"NotLessEqual", u"\u2270" },
- { u"NotLessGreater", u"\u2278" },
- { u"NotLessLess", u"\u226A\u0338" },
- { u"NotLessSlantEqual", u"\u2A7D\u0338" },
- { u"NotLessTilde", u"\u2274" },
- { u"NotNestedGreaterGreater", u"\u2AA2\u0338" },
- { u"NotNestedLessLess", u"\u2AA1\u0338" },
- { u"NotPrecedes", u"\u2280" },
- { u"NotPrecedesEqual", u"\u2AAF\u0338" },
- { u"NotPrecedesSlantEqual", u"\u22E0" },
- { u"NotReverseElement", u"\u220C" },
- { u"NotRightTriangle", u"\u22EB" },
- { u"NotRightTriangleBar", u"\u29D0\u0338" },
- { u"NotRightTriangleEqual", u"\u22ED" },
- { u"NotSquareSubset", u"\u228F\u0338" },
- { u"NotSquareSubsetEqual", u"\u22E2" },
- { u"NotSquareSuperset", u"\u2290\u0338" },
- { u"NotSquareSupersetEqual", u"\u22E3" },
- { u"NotSubset", u"\u2282\u20D2" },
- { u"NotSubsetEqual", u"\u2288" },
- { u"NotSucceeds", u"\u2281" },
- { u"NotSucceedsEqual", u"\u2AB0\u0338" },
- { u"NotSucceedsSlantEqual", u"\u22E1" },
- { u"NotSucceedsTilde", u"\u227F\u0338" },
- { u"NotSuperset", u"\u2283\u20D2" },
- { u"NotSupersetEqual", u"\u2289" },
- { u"NotTilde", u"\u2241" },
- { u"NotTildeEqual", u"\u2244" },
- { u"NotTildeFullEqual", u"\u2247" },
- { u"NotTildeTilde", u"\u2249" },
- { u"NotVerticalBar", u"\u2224" },
- { u"Nscr", u"\U0001D4A9" },
- { u"Ntilde", u"\u00D1" },
- { u"Nu", u"\u039D" },
- { u"OElig", u"\u0152" },
- { u"Oacute", u"\u00D3" },
- { u"Ocirc", u"\u00D4" },
- { u"Ocy", u"\u041E" },
- { u"Odblac", u"\u0150" },
- { u"Ofr", u"\U0001D512" },
- { u"Ograve", u"\u00D2" },
- { u"Omacr", u"\u014C" },
- { u"Omega", u"\u03A9" },
- { u"Omicron", u"\u039F" },
- { u"Oopf", u"\U0001D546" },
- { u"OpenCurlyDoubleQuote", u"\u201C" },
- { u"OpenCurlyQuote", u"\u2018" },
- { u"Or", u"\u2A54" },
- { u"Oscr", u"\U0001D4AA" },
- { u"Oslash", u"\u00D8" },
- { u"Otilde", u"\u00D5" },
- { u"Otimes", u"\u2A37" },
- { u"Ouml", u"\u00D6" },
- { u"OverBar", u"\u203E" },
- { u"OverBrace", u"\u23DE" },
- { u"OverBracket", u"\u23B4" },
- { u"OverParenthesis", u"\u23DC" },
- { u"PartialD", u"\u2202" },
- { u"Pcy", u"\u041F" },
- { u"Pfr", u"\U0001D513" },
- { u"Phi", u"\u03A6" },
- { u"Pi", u"\u03A0" },
- { u"PlusMinus", u"\u00B1" },
- { u"Poincareplane", u"\u210C" },
- { u"Popf", u"\u2119" },
- { u"Pr", u"\u2ABB" },
- { u"Precedes", u"\u227A" },
- { u"PrecedesEqual", u"\u2AAF" },
- { u"PrecedesSlantEqual", u"\u227C" },
- { u"PrecedesTilde", u"\u227E" },
- { u"Prime", u"\u2033" },
- { u"Product", u"\u220F" },
- { u"Proportion", u"\u2237" },
- { u"Proportional", u"\u221D" },
- { u"Pscr", u"\U0001D4AB" },
- { u"Psi", u"\u03A8" },
- { u"QUOT", u"\u0022" },
- { u"Qfr", u"\U0001D514" },
- { u"Qopf", u"\u211A" },
- { u"Qscr", u"\U0001D4AC" },
- { u"RBarr", u"\u2910" },
- { u"REG", u"\u00AE" },
- { u"Racute", u"\u0154" },
- { u"Rang", u"\u27EB" },
- { u"Rarr", u"\u21A0" },
- { u"Rarrtl", u"\u2916" },
- { u"Rcaron", u"\u0158" },
- { u"Rcedil", u"\u0156" },
- { u"Rcy", u"\u0420" },
- { u"Re", u"\u211C" },
- { u"ReverseElement", u"\u220B" },
- { u"ReverseEquilibrium", u"\u21CB" },
- { u"ReverseUpEquilibrium", u"\u296F" },
- { u"Rfr", u"\u211C" },
- { u"Rho", u"\u03A1" },
- { u"RightAngleBracket", u"\u27E9" },
- { u"RightArrow", u"\u2192" },
- { u"RightArrowBar", u"\u21E5" },
- { u"RightArrowLeftArrow", u"\u21C4" },
- { u"RightCeiling", u"\u2309" },
- { u"RightDoubleBracket", u"\u27E7" },
- { u"RightDownTeeVector", u"\u295D" },
- { u"RightDownVector", u"\u21C2" },
- { u"RightDownVectorBar", u"\u2955" },
- { u"RightFloor", u"\u230B" },
- { u"RightTee", u"\u22A2" },
- { u"RightTeeArrow", u"\u21A6" },
- { u"RightTeeVector", u"\u295B" },
- { u"RightTriangle", u"\u22B3" },
- { u"RightTriangleBar", u"\u29D0" },
- { u"RightTriangleEqual", u"\u22B5" },
- { u"RightUpDownVector", u"\u294F" },
- { u"RightUpTeeVector", u"\u295C" },
- { u"RightUpVector", u"\u21BE" },
- { u"RightUpVectorBar", u"\u2954" },
- { u"RightVector", u"\u21C0" },
- { u"RightVectorBar", u"\u2953" },
- { u"Rightarrow", u"\u21D2" },
- { u"Ropf", u"\u211D" },
- { u"RoundImplies", u"\u2970" },
- { u"Rrightarrow", u"\u21DB" },
- { u"Rscr", u"\u211B" },
- { u"Rsh", u"\u21B1" },
- { u"RuleDelayed", u"\u29F4" },
- { u"SHCHcy", u"\u0429" },
- { u"SHcy", u"\u0428" },
- { u"SOFTcy", u"\u042C" },
- { u"Sacute", u"\u015A" },
- { u"Sc", u"\u2ABC" },
- { u"Scaron", u"\u0160" },
- { u"Scedil", u"\u015E" },
- { u"Scirc", u"\u015C" },
- { u"Scy", u"\u0421" },
- { u"Sfr", u"\U0001D516" },
- { u"ShortDownArrow", u"\u2193" },
- { u"ShortLeftArrow", u"\u2190" },
- { u"ShortRightArrow", u"\u2192" },
- { u"ShortUpArrow", u"\u2191" },
- { u"Sigma", u"\u03A3" },
- { u"SmallCircle", u"\u2218" },
- { u"Sopf", u"\U0001D54A" },
- { u"Sqrt", u"\u221A" },
- { u"Square", u"\u25A1" },
- { u"SquareIntersection", u"\u2293" },
- { u"SquareSubset", u"\u228F" },
- { u"SquareSubsetEqual", u"\u2291" },
- { u"SquareSuperset", u"\u2290" },
- { u"SquareSupersetEqual", u"\u2292" },
- { u"SquareUnion", u"\u2294" },
- { u"Sscr", u"\U0001D4AE" },
- { u"Star", u"\u22C6" },
- { u"Sub", u"\u22D0" },
- { u"Subset", u"\u22D0" },
- { u"SubsetEqual", u"\u2286" },
- { u"Succeeds", u"\u227B" },
- { u"SucceedsEqual", u"\u2AB0" },
- { u"SucceedsSlantEqual", u"\u227D" },
- { u"SucceedsTilde", u"\u227F" },
- { u"SuchThat", u"\u220B" },
- { u"Sum", u"\u2211" },
- { u"Sup", u"\u22D1" },
- { u"Superset", u"\u2283" },
- { u"SupersetEqual", u"\u2287" },
- { u"Supset", u"\u22D1" },
- { u"THORN", u"\u00DE" },
- { u"TRADE", u"\u2122" },
- { u"TSHcy", u"\u040B" },
- { u"TScy", u"\u0426" },
- { u"Tab", u"\u0009" },
- { u"Tau", u"\u03A4" },
- { u"Tcaron", u"\u0164" },
- { u"Tcedil", u"\u0162" },
- { u"Tcy", u"\u0422" },
- { u"Tfr", u"\U0001D517" },
- { u"Therefore", u"\u2234" },
- { u"Theta", u"\u0398" },
- { u"ThickSpace", u"\u205F\u200A" },
- { u"ThinSpace", u"\u2009" },
- { u"Tilde", u"\u223C" },
- { u"TildeEqual", u"\u2243" },
- { u"TildeFullEqual", u"\u2245" },
- { u"TildeTilde", u"\u2248" },
- { u"Topf", u"\U0001D54B" },
- { u"TripleDot", u"\u20DB" },
- { u"Tscr", u"\U0001D4AF" },
- { u"Tstrok", u"\u0166" },
- { u"Uacute", u"\u00DA" },
- { u"Uarr", u"\u219F" },
- { u"Uarrocir", u"\u2949" },
- { u"Ubrcy", u"\u040E" },
- { u"Ubreve", u"\u016C" },
- { u"Ucirc", u"\u00DB" },
- { u"Ucy", u"\u0423" },
- { u"Udblac", u"\u0170" },
- { u"Ufr", u"\U0001D518" },
- { u"Ugrave", u"\u00D9" },
- { u"Umacr", u"\u016A" },
- { u"UnderBar", u"\u005F" },
- { u"UnderBrace", u"\u23DF" },
- { u"UnderBracket", u"\u23B5" },
- { u"UnderParenthesis", u"\u23DD" },
- { u"Union", u"\u22C3" },
- { u"UnionPlus", u"\u228E" },
- { u"Uogon", u"\u0172" },
- { u"Uopf", u"\U0001D54C" },
- { u"UpArrow", u"\u2191" },
- { u"UpArrowBar", u"\u2912" },
- { u"UpArrowDownArrow", u"\u21C5" },
- { u"UpDownArrow", u"\u2195" },
- { u"UpEquilibrium", u"\u296E" },
- { u"UpTee", u"\u22A5" },
- { u"UpTeeArrow", u"\u21A5" },
- { u"Uparrow", u"\u21D1" },
- { u"Updownarrow", u"\u21D5" },
- { u"UpperLeftArrow", u"\u2196" },
- { u"UpperRightArrow", u"\u2197" },
- { u"Upsi", u"\u03D2" },
- { u"Upsilon", u"\u03A5" },
- { u"Uring", u"\u016E" },
- { u"Uscr", u"\U0001D4B0" },
- { u"Utilde", u"\u0168" },
- { u"Uuml", u"\u00DC" },
- { u"VDash", u"\u22AB" },
- { u"Vbar", u"\u2AEB" },
- { u"Vcy", u"\u0412" },
- { u"Vdash", u"\u22A9" },
- { u"Vdashl", u"\u2AE6" },
- { u"Vee", u"\u22C1" },
- { u"Verbar", u"\u2016" },
- { u"Vert", u"\u2016" },
- { u"VerticalBar", u"\u2223" },
- { u"VerticalLine", u"\u007C" },
- { u"VerticalSeparator", u"\u2758" },
- { u"VerticalTilde", u"\u2240" },
- { u"VeryThinSpace", u"\u200A" },
- { u"Vfr", u"\U0001D519" },
- { u"Vopf", u"\U0001D54D" },
- { u"Vscr", u"\U0001D4B1" },
- { u"Vvdash", u"\u22AA" },
- { u"Wcirc", u"\u0174" },
- { u"Wedge", u"\u22C0" },
- { u"Wfr", u"\U0001D51A" },
- { u"Wopf", u"\U0001D54E" },
- { u"Wscr", u"\U0001D4B2" },
- { u"Xfr", u"\U0001D51B" },
- { u"Xi", u"\u039E" },
- { u"Xopf", u"\U0001D54F" },
- { u"Xscr", u"\U0001D4B3" },
- { u"YAcy", u"\u042F" },
- { u"YIcy", u"\u0407" },
- { u"YUcy", u"\u042E" },
- { u"Yacute", u"\u00DD" },
- { u"Ycirc", u"\u0176" },
- { u"Ycy", u"\u042B" },
- { u"Yfr", u"\U0001D51C" },
- { u"Yopf", u"\U0001D550" },
- { u"Yscr", u"\U0001D4B4" },
- { u"Yuml", u"\u0178" },
- { u"ZHcy", u"\u0416" },
- { u"Zacute", u"\u0179" },
- { u"Zcaron", u"\u017D" },
- { u"Zcy", u"\u0417" },
- { u"Zdot", u"\u017B" },
- { u"ZeroWidthSpace", u"\u200B" },
- { u"Zeta", u"\u0396" },
- { u"Zfr", u"\u2128" },
- { u"Zopf", u"\u2124" },
- { u"Zscr", u"\U0001D4B5" },
- { u"aacute", u"\u00E1" },
- { u"abreve", u"\u0103" },
- { u"ac", u"\u223E" },
- { u"acE", u"\u223E\u0333" },
- { u"acd", u"\u223F" },
- { u"acirc", u"\u00E2" },
- { u"acute", u"\u00B4" },
- { u"acy", u"\u0430" },
- { u"aelig", u"\u00E6" },
- { u"af", u"\u2061" },
- { u"afr", u"\U0001D51E" },
- { u"agrave", u"\u00E0" },
- { u"alefsym", u"\u2135" },
- { u"aleph", u"\u2135" },
- { u"alpha", u"\u03B1" },
- { u"amacr", u"\u0101" },
- { u"amalg", u"\u2A3F" },
- { u"amp", u"\u0026" },
- { u"and", u"\u2227" },
- { u"andand", u"\u2A55" },
- { u"andd", u"\u2A5C" },
- { u"andslope", u"\u2A58" },
- { u"andv", u"\u2A5A" },
- { u"ang", u"\u2220" },
- { u"ange", u"\u29A4" },
- { u"angle", u"\u2220" },
- { u"angmsd", u"\u2221" },
- { u"angmsdaa", u"\u29A8" },
- { u"angmsdab", u"\u29A9" },
- { u"angmsdac", u"\u29AA" },
- { u"angmsdad", u"\u29AB" },
- { u"angmsdae", u"\u29AC" },
- { u"angmsdaf", u"\u29AD" },
- { u"angmsdag", u"\u29AE" },
- { u"angmsdah", u"\u29AF" },
- { u"angrt", u"\u221F" },
- { u"angrtvb", u"\u22BE" },
- { u"angrtvbd", u"\u299D" },
- { u"angsph", u"\u2222" },
- { u"angst", u"\u00C5" },
- { u"angzarr", u"\u237C" },
- { u"aogon", u"\u0105" },
- { u"aopf", u"\U0001D552" },
- { u"ap", u"\u2248" },
- { u"apE", u"\u2A70" },
- { u"apacir", u"\u2A6F" },
- { u"ape", u"\u224A" },
- { u"apid", u"\u224B" },
- { u"apos", u"\u0027" },
- { u"approx", u"\u2248" },
- { u"approxeq", u"\u224A" },
- { u"aring", u"\u00E5" },
- { u"ascr", u"\U0001D4B6" },
- { u"ast", u"\u002A" },
- { u"asymp", u"\u2248" },
- { u"asympeq", u"\u224D" },
- { u"atilde", u"\u00E3" },
- { u"auml", u"\u00E4" },
- { u"awconint", u"\u2233" },
- { u"awint", u"\u2A11" },
- { u"bNot", u"\u2AED" },
- { u"backcong", u"\u224C" },
- { u"backepsilon", u"\u03F6" },
- { u"backprime", u"\u2035" },
- { u"backsim", u"\u223D" },
- { u"backsimeq", u"\u22CD" },
- { u"barvee", u"\u22BD" },
- { u"barwed", u"\u2305" },
- { u"barwedge", u"\u2305" },
- { u"bbrk", u"\u23B5" },
- { u"bbrktbrk", u"\u23B6" },
- { u"bcong", u"\u224C" },
- { u"bcy", u"\u0431" },
- { u"bdquo", u"\u201E" },
- { u"becaus", u"\u2235" },
- { u"because", u"\u2235" },
- { u"bemptyv", u"\u29B0" },
- { u"bepsi", u"\u03F6" },
- { u"bernou", u"\u212C" },
- { u"beta", u"\u03B2" },
- { u"beth", u"\u2136" },
- { u"between", u"\u226C" },
- { u"bfr", u"\U0001D51F" },
- { u"bigcap", u"\u22C2" },
- { u"bigcirc", u"\u25EF" },
- { u"bigcup", u"\u22C3" },
- { u"bigodot", u"\u2A00" },
- { u"bigoplus", u"\u2A01" },
- { u"bigotimes", u"\u2A02" },
- { u"bigsqcup", u"\u2A06" },
- { u"bigstar", u"\u2605" },
- { u"bigtriangledown", u"\u25BD" },
- { u"bigtriangleup", u"\u25B3" },
- { u"biguplus", u"\u2A04" },
- { u"bigvee", u"\u22C1" },
- { u"bigwedge", u"\u22C0" },
- { u"bkarow", u"\u290D" },
- { u"blacklozenge", u"\u29EB" },
- { u"blacksquare", u"\u25AA" },
- { u"blacktriangle", u"\u25B4" },
- { u"blacktriangledown", u"\u25BE" },
- { u"blacktriangleleft", u"\u25C2" },
- { u"blacktriangleright", u"\u25B8" },
- { u"blank", u"\u2423" },
- { u"blk12", u"\u2592" },
- { u"blk14", u"\u2591" },
- { u"blk34", u"\u2593" },
- { u"block", u"\u2588" },
- { u"bne", u"\u003D\u20E5" },
- { u"bnequiv", u"\u2261\u20E5" },
- { u"bnot", u"\u2310" },
- { u"bopf", u"\U0001D553" },
- { u"bot", u"\u22A5" },
- { u"bottom", u"\u22A5" },
- { u"bowtie", u"\u22C8" },
- { u"boxDL", u"\u2557" },
- { u"boxDR", u"\u2554" },
- { u"boxDl", u"\u2556" },
- { u"boxDr", u"\u2553" },
- { u"boxH", u"\u2550" },
- { u"boxHD", u"\u2566" },
- { u"boxHU", u"\u2569" },
- { u"boxHd", u"\u2564" },
- { u"boxHu", u"\u2567" },
- { u"boxUL", u"\u255D" },
- { u"boxUR", u"\u255A" },
- { u"boxUl", u"\u255C" },
- { u"boxUr", u"\u2559" },
- { u"boxV", u"\u2551" },
- { u"boxVH", u"\u256C" },
- { u"boxVL", u"\u2563" },
- { u"boxVR", u"\u2560" },
- { u"boxVh", u"\u256B" },
- { u"boxVl", u"\u2562" },
- { u"boxVr", u"\u255F" },
- { u"boxbox", u"\u29C9" },
- { u"boxdL", u"\u2555" },
- { u"boxdR", u"\u2552" },
- { u"boxdl", u"\u2510" },
- { u"boxdr", u"\u250C" },
- { u"boxh", u"\u2500" },
- { u"boxhD", u"\u2565" },
- { u"boxhU", u"\u2568" },
- { u"boxhd", u"\u252C" },
- { u"boxhu", u"\u2534" },
- { u"boxminus", u"\u229F" },
- { u"boxplus", u"\u229E" },
- { u"boxtimes", u"\u22A0" },
- { u"boxuL", u"\u255B" },
- { u"boxuR", u"\u2558" },
- { u"boxul", u"\u2518" },
- { u"boxur", u"\u2514" },
- { u"boxv", u"\u2502" },
- { u"boxvH", u"\u256A" },
- { u"boxvL", u"\u2561" },
- { u"boxvR", u"\u255E" },
- { u"boxvh", u"\u253C" },
- { u"boxvl", u"\u2524" },
- { u"boxvr", u"\u251C" },
- { u"bprime", u"\u2035" },
- { u"breve", u"\u02D8" },
- { u"brvbar", u"\u00A6" },
- { u"bscr", u"\U0001D4B7" },
- { u"bsemi", u"\u204F" },
- { u"bsim", u"\u223D" },
- { u"bsime", u"\u22CD" },
- { u"bsol", u"\u005C" },
- { u"bsolb", u"\u29C5" },
- { u"bsolhsub", u"\u27C8" },
- { u"bull", u"\u2022" },
- { u"bullet", u"\u2022" },
- { u"bump", u"\u224E" },
- { u"bumpE", u"\u2AAE" },
- { u"bumpe", u"\u224F" },
- { u"bumpeq", u"\u224F" },
- { u"cacute", u"\u0107" },
- { u"cap", u"\u2229" },
- { u"capand", u"\u2A44" },
- { u"capbrcup", u"\u2A49" },
- { u"capcap", u"\u2A4B" },
- { u"capcup", u"\u2A47" },
- { u"capdot", u"\u2A40" },
- { u"caps", u"\u2229\uFE00" },
- { u"caret", u"\u2041" },
- { u"caron", u"\u02C7" },
- { u"ccaps", u"\u2A4D" },
- { u"ccaron", u"\u010D" },
- { u"ccedil", u"\u00E7" },
- { u"ccirc", u"\u0109" },
- { u"ccups", u"\u2A4C" },
- { u"ccupssm", u"\u2A50" },
- { u"cdot", u"\u010B" },
- { u"cedil", u"\u00B8" },
- { u"cemptyv", u"\u29B2" },
- { u"cent", u"\u00A2" },
- { u"centerdot", u"\u00B7" },
- { u"cfr", u"\U0001D520" },
- { u"chcy", u"\u0447" },
- { u"check", u"\u2713" },
- { u"checkmark", u"\u2713" },
- { u"chi", u"\u03C7" },
- { u"cir", u"\u25CB" },
- { u"cirE", u"\u29C3" },
- { u"circ", u"\u02C6" },
- { u"circeq", u"\u2257" },
- { u"circlearrowleft", u"\u21BA" },
- { u"circlearrowright", u"\u21BB" },
- { u"circledR", u"\u00AE" },
- { u"circledS", u"\u24C8" },
- { u"circledast", u"\u229B" },
- { u"circledcirc", u"\u229A" },
- { u"circleddash", u"\u229D" },
- { u"cire", u"\u2257" },
- { u"cirfnint", u"\u2A10" },
- { u"cirmid", u"\u2AEF" },
- { u"cirscir", u"\u29C2" },
- { u"clubs", u"\u2663" },
- { u"clubsuit", u"\u2663" },
- { u"colon", u"\u003A" },
- { u"colone", u"\u2254" },
- { u"coloneq", u"\u2254" },
- { u"comma", u"\u002C" },
- { u"commat", u"\u0040" },
- { u"comp", u"\u2201" },
- { u"compfn", u"\u2218" },
- { u"complement", u"\u2201" },
- { u"complexes", u"\u2102" },
- { u"cong", u"\u2245" },
- { u"congdot", u"\u2A6D" },
- { u"conint", u"\u222E" },
- { u"copf", u"\U0001D554" },
- { u"coprod", u"\u2210" },
- { u"copy", u"\u00A9" },
- { u"copysr", u"\u2117" },
- { u"crarr", u"\u21B5" },
- { u"cross", u"\u2717" },
- { u"cscr", u"\U0001D4B8" },
- { u"csub", u"\u2ACF" },
- { u"csube", u"\u2AD1" },
- { u"csup", u"\u2AD0" },
- { u"csupe", u"\u2AD2" },
- { u"ctdot", u"\u22EF" },
- { u"cudarrl", u"\u2938" },
- { u"cudarrr", u"\u2935" },
- { u"cuepr", u"\u22DE" },
- { u"cuesc", u"\u22DF" },
- { u"cularr", u"\u21B6" },
- { u"cularrp", u"\u293D" },
- { u"cup", u"\u222A" },
- { u"cupbrcap", u"\u2A48" },
- { u"cupcap", u"\u2A46" },
- { u"cupcup", u"\u2A4A" },
- { u"cupdot", u"\u228D" },
- { u"cupor", u"\u2A45" },
- { u"cups", u"\u222A\uFE00" },
- { u"curarr", u"\u21B7" },
- { u"curarrm", u"\u293C" },
- { u"curlyeqprec", u"\u22DE" },
- { u"curlyeqsucc", u"\u22DF" },
- { u"curlyvee", u"\u22CE" },
- { u"curlywedge", u"\u22CF" },
- { u"curren", u"\u00A4" },
- { u"curvearrowleft", u"\u21B6" },
- { u"curvearrowright", u"\u21B7" },
- { u"cuvee", u"\u22CE" },
- { u"cuwed", u"\u22CF" },
- { u"cwconint", u"\u2232" },
- { u"cwint", u"\u2231" },
- { u"cylcty", u"\u232D" },
- { u"dArr", u"\u21D3" },
- { u"dHar", u"\u2965" },
- { u"dagger", u"\u2020" },
- { u"daleth", u"\u2138" },
- { u"darr", u"\u2193" },
- { u"dash", u"\u2010" },
- { u"dashv", u"\u22A3" },
- { u"dbkarow", u"\u290F" },
- { u"dblac", u"\u02DD" },
- { u"dcaron", u"\u010F" },
- { u"dcy", u"\u0434" },
- { u"dd", u"\u2146" },
- { u"ddagger", u"\u2021" },
- { u"ddarr", u"\u21CA" },
- { u"ddotseq", u"\u2A77" },
- { u"deg", u"\u00B0" },
- { u"delta", u"\u03B4" },
- { u"demptyv", u"\u29B1" },
- { u"dfisht", u"\u297F" },
- { u"dfr", u"\U0001D521" },
- { u"dharl", u"\u21C3" },
- { u"dharr", u"\u21C2" },
- { u"diam", u"\u22C4" },
- { u"diamond", u"\u22C4" },
- { u"diamondsuit", u"\u2666" },
- { u"diams", u"\u2666" },
- { u"die", u"\u00A8" },
- { u"digamma", u"\u03DD" },
- { u"disin", u"\u22F2" },
- { u"div", u"\u00F7" },
- { u"divide", u"\u00F7" },
- { u"divideontimes", u"\u22C7" },
- { u"divonx", u"\u22C7" },
- { u"djcy", u"\u0452" },
- { u"dlcorn", u"\u231E" },
- { u"dlcrop", u"\u230D" },
- { u"dollar", u"\u0024" },
- { u"dopf", u"\U0001D555" },
- { u"dot", u"\u02D9" },
- { u"doteq", u"\u2250" },
- { u"doteqdot", u"\u2251" },
- { u"dotminus", u"\u2238" },
- { u"dotplus", u"\u2214" },
- { u"dotsquare", u"\u22A1" },
- { u"doublebarwedge", u"\u2306" },
- { u"downarrow", u"\u2193" },
- { u"downdownarrows", u"\u21CA" },
- { u"downharpoonleft", u"\u21C3" },
- { u"downharpoonright", u"\u21C2" },
- { u"drbkarow", u"\u2910" },
- { u"drcorn", u"\u231F" },
- { u"drcrop", u"\u230C" },
- { u"dscr", u"\U0001D4B9" },
- { u"dscy", u"\u0455" },
- { u"dsol", u"\u29F6" },
- { u"dstrok", u"\u0111" },
- { u"dtdot", u"\u22F1" },
- { u"dtri", u"\u25BF" },
- { u"dtrif", u"\u25BE" },
- { u"duarr", u"\u21F5" },
- { u"duhar", u"\u296F" },
- { u"dwangle", u"\u29A6" },
- { u"dzcy", u"\u045F" },
- { u"dzigrarr", u"\u27FF" },
- { u"eDDot", u"\u2A77" },
- { u"eDot", u"\u2251" },
- { u"eacute", u"\u00E9" },
- { u"easter", u"\u2A6E" },
- { u"ecaron", u"\u011B" },
- { u"ecir", u"\u2256" },
- { u"ecirc", u"\u00EA" },
- { u"ecolon", u"\u2255" },
- { u"ecy", u"\u044D" },
- { u"edot", u"\u0117" },
- { u"ee", u"\u2147" },
- { u"efDot", u"\u2252" },
- { u"efr", u"\U0001D522" },
- { u"eg", u"\u2A9A" },
- { u"egrave", u"\u00E8" },
- { u"egs", u"\u2A96" },
- { u"egsdot", u"\u2A98" },
- { u"el", u"\u2A99" },
- { u"elinters", u"\u23E7" },
- { u"ell", u"\u2113" },
- { u"els", u"\u2A95" },
- { u"elsdot", u"\u2A97" },
- { u"emacr", u"\u0113" },
- { u"empty", u"\u2205" },
- { u"emptyset", u"\u2205" },
- { u"emptyv", u"\u2205" },
- { u"emsp", u"\u2003" },
- { u"emsp13", u"\u2004" },
- { u"emsp14", u"\u2005" },
- { u"eng", u"\u014B" },
- { u"ensp", u"\u2002" },
- { u"eogon", u"\u0119" },
- { u"eopf", u"\U0001D556" },
- { u"epar", u"\u22D5" },
- { u"eparsl", u"\u29E3" },
- { u"eplus", u"\u2A71" },
- { u"epsi", u"\u03B5" },
- { u"epsilon", u"\u03B5" },
- { u"epsiv", u"\u03F5" },
- { u"eqcirc", u"\u2256" },
- { u"eqcolon", u"\u2255" },
- { u"eqsim", u"\u2242" },
- { u"eqslantgtr", u"\u2A96" },
- { u"eqslantless", u"\u2A95" },
- { u"equals", u"\u003D" },
- { u"equest", u"\u225F" },
- { u"equiv", u"\u2261" },
- { u"equivDD", u"\u2A78" },
- { u"eqvparsl", u"\u29E5" },
- { u"erDot", u"\u2253" },
- { u"erarr", u"\u2971" },
- { u"escr", u"\u212F" },
- { u"esdot", u"\u2250" },
- { u"esim", u"\u2242" },
- { u"eta", u"\u03B7" },
- { u"eth", u"\u00F0" },
- { u"euml", u"\u00EB" },
- { u"euro", u"\u20AC" },
- { u"excl", u"\u0021" },
- { u"exist", u"\u2203" },
- { u"expectation", u"\u2130" },
- { u"exponentiale", u"\u2147" },
- { u"fallingdotseq", u"\u2252" },
- { u"fcy", u"\u0444" },
- { u"female", u"\u2640" },
- { u"ffilig", u"\uFB03" },
- { u"fflig", u"\uFB00" },
- { u"ffllig", u"\uFB04" },
- { u"ffr", u"\U0001D523" },
- { u"filig", u"\uFB01" },
- { u"fjlig", u"\u0066\u006A" },
- { u"flat", u"\u266D" },
- { u"fllig", u"\uFB02" },
- { u"fltns", u"\u25B1" },
- { u"fnof", u"\u0192" },
- { u"fopf", u"\U0001D557" },
- { u"forall", u"\u2200" },
- { u"fork", u"\u22D4" },
- { u"forkv", u"\u2AD9" },
- { u"fpartint", u"\u2A0D" },
- { u"frac12", u"\u00BD" },
- { u"frac13", u"\u2153" },
- { u"frac14", u"\u00BC" },
- { u"frac15", u"\u2155" },
- { u"frac16", u"\u2159" },
- { u"frac18", u"\u215B" },
- { u"frac23", u"\u2154" },
- { u"frac25", u"\u2156" },
- { u"frac34", u"\u00BE" },
- { u"frac35", u"\u2157" },
- { u"frac38", u"\u215C" },
- { u"frac45", u"\u2158" },
- { u"frac56", u"\u215A" },
- { u"frac58", u"\u215D" },
- { u"frac78", u"\u215E" },
- { u"frasl", u"\u2044" },
- { u"frown", u"\u2322" },
- { u"fscr", u"\U0001D4BB" },
- { u"gE", u"\u2267" },
- { u"gEl", u"\u2A8C" },
- { u"gacute", u"\u01F5" },
- { u"gamma", u"\u03B3" },
- { u"gammad", u"\u03DD" },
- { u"gap", u"\u2A86" },
- { u"gbreve", u"\u011F" },
- { u"gcirc", u"\u011D" },
- { u"gcy", u"\u0433" },
- { u"gdot", u"\u0121" },
- { u"ge", u"\u2265" },
- { u"gel", u"\u22DB" },
- { u"geq", u"\u2265" },
- { u"geqq", u"\u2267" },
- { u"geqslant", u"\u2A7E" },
- { u"ges", u"\u2A7E" },
- { u"gescc", u"\u2AA9" },
- { u"gesdot", u"\u2A80" },
- { u"gesdoto", u"\u2A82" },
- { u"gesdotol", u"\u2A84" },
- { u"gesl", u"\u22DB\uFE00" },
- { u"gesles", u"\u2A94" },
- { u"gfr", u"\U0001D524" },
- { u"gg", u"\u226B" },
- { u"ggg", u"\u22D9" },
- { u"gimel", u"\u2137" },
- { u"gjcy", u"\u0453" },
- { u"gl", u"\u2277" },
- { u"glE", u"\u2A92" },
- { u"gla", u"\u2AA5" },
- { u"glj", u"\u2AA4" },
- { u"gnE", u"\u2269" },
- { u"gnap", u"\u2A8A" },
- { u"gnapprox", u"\u2A8A" },
- { u"gne", u"\u2A88" },
- { u"gneq", u"\u2A88" },
- { u"gneqq", u"\u2269" },
- { u"gnsim", u"\u22E7" },
- { u"gopf", u"\U0001D558" },
- { u"grave", u"\u0060" },
- { u"gscr", u"\u210A" },
- { u"gsim", u"\u2273" },
- { u"gsime", u"\u2A8E" },
- { u"gsiml", u"\u2A90" },
- { u"gt", u"\u003E" },
- { u"gtcc", u"\u2AA7" },
- { u"gtcir", u"\u2A7A" },
- { u"gtdot", u"\u22D7" },
- { u"gtlPar", u"\u2995" },
- { u"gtquest", u"\u2A7C" },
- { u"gtrapprox", u"\u2A86" },
- { u"gtrarr", u"\u2978" },
- { u"gtrdot", u"\u22D7" },
- { u"gtreqless", u"\u22DB" },
- { u"gtreqqless", u"\u2A8C" },
- { u"gtrless", u"\u2277" },
- { u"gtrsim", u"\u2273" },
- { u"gvertneqq", u"\u2269\uFE00" },
- { u"gvnE", u"\u2269\uFE00" },
- { u"hArr", u"\u21D4" },
- { u"hairsp", u"\u200A" },
- { u"half", u"\u00BD" },
- { u"hamilt", u"\u210B" },
- { u"hardcy", u"\u044A" },
- { u"harr", u"\u2194" },
- { u"harrcir", u"\u2948" },
- { u"harrw", u"\u21AD" },
- { u"hbar", u"\u210F" },
- { u"hcirc", u"\u0125" },
- { u"hearts", u"\u2665" },
- { u"heartsuit", u"\u2665" },
- { u"hellip", u"\u2026" },
- { u"hercon", u"\u22B9" },
- { u"hfr", u"\U0001D525" },
- { u"hksearow", u"\u2925" },
- { u"hkswarow", u"\u2926" },
- { u"hoarr", u"\u21FF" },
- { u"homtht", u"\u223B" },
- { u"hookleftarrow", u"\u21A9" },
- { u"hookrightarrow", u"\u21AA" },
- { u"hopf", u"\U0001D559" },
- { u"horbar", u"\u2015" },
- { u"hscr", u"\U0001D4BD" },
- { u"hslash", u"\u210F" },
- { u"hstrok", u"\u0127" },
- { u"hybull", u"\u2043" },
- { u"hyphen", u"\u2010" },
- { u"iacute", u"\u00ED" },
- { u"ic", u"\u2063" },
- { u"icirc", u"\u00EE" },
- { u"icy", u"\u0438" },
- { u"iecy", u"\u0435" },
- { u"iexcl", u"\u00A1" },
- { u"iff", u"\u21D4" },
- { u"ifr", u"\U0001D526" },
- { u"igrave", u"\u00EC" },
- { u"ii", u"\u2148" },
- { u"iiiint", u"\u2A0C" },
- { u"iiint", u"\u222D" },
- { u"iinfin", u"\u29DC" },
- { u"iiota", u"\u2129" },
- { u"ijlig", u"\u0133" },
- { u"imacr", u"\u012B" },
- { u"image", u"\u2111" },
- { u"imagline", u"\u2110" },
- { u"imagpart", u"\u2111" },
- { u"imath", u"\u0131" },
- { u"imof", u"\u22B7" },
- { u"imped", u"\u01B5" },
- { u"in", u"\u2208" },
- { u"incare", u"\u2105" },
- { u"infin", u"\u221E" },
- { u"infintie", u"\u29DD" },
- { u"inodot", u"\u0131" },
- { u"int", u"\u222B" },
- { u"intcal", u"\u22BA" },
- { u"integers", u"\u2124" },
- { u"intercal", u"\u22BA" },
- { u"intlarhk", u"\u2A17" },
- { u"intprod", u"\u2A3C" },
- { u"iocy", u"\u0451" },
- { u"iogon", u"\u012F" },
- { u"iopf", u"\U0001D55A" },
- { u"iota", u"\u03B9" },
- { u"iprod", u"\u2A3C" },
- { u"iquest", u"\u00BF" },
- { u"iscr", u"\U0001D4BE" },
- { u"isin", u"\u2208" },
- { u"isinE", u"\u22F9" },
- { u"isindot", u"\u22F5" },
- { u"isins", u"\u22F4" },
- { u"isinsv", u"\u22F3" },
- { u"isinv", u"\u2208" },
- { u"it", u"\u2062" },
- { u"itilde", u"\u0129" },
- { u"iukcy", u"\u0456" },
- { u"iuml", u"\u00EF" },
- { u"jcirc", u"\u0135" },
- { u"jcy", u"\u0439" },
- { u"jfr", u"\U0001D527" },
- { u"jmath", u"\u0237" },
- { u"jopf", u"\U0001D55B" },
- { u"jscr", u"\U0001D4BF" },
- { u"jsercy", u"\u0458" },
- { u"jukcy", u"\u0454" },
- { u"kappa", u"\u03BA" },
- { u"kappav", u"\u03F0" },
- { u"kcedil", u"\u0137" },
- { u"kcy", u"\u043A" },
- { u"kfr", u"\U0001D528" },
- { u"kgreen", u"\u0138" },
- { u"khcy", u"\u0445" },
- { u"kjcy", u"\u045C" },
- { u"kopf", u"\U0001D55C" },
- { u"kscr", u"\U0001D4C0" },
- { u"lAarr", u"\u21DA" },
- { u"lArr", u"\u21D0" },
- { u"lAtail", u"\u291B" },
- { u"lBarr", u"\u290E" },
- { u"lE", u"\u2266" },
- { u"lEg", u"\u2A8B" },
- { u"lHar", u"\u2962" },
- { u"lacute", u"\u013A" },
- { u"laemptyv", u"\u29B4" },
- { u"lagran", u"\u2112" },
- { u"lambda", u"\u03BB" },
- { u"lang", u"\u27E8" },
- { u"langd", u"\u2991" },
- { u"langle", u"\u27E8" },
- { u"lap", u"\u2A85" },
- { u"laquo", u"\u00AB" },
- { u"larr", u"\u2190" },
- { u"larrb", u"\u21E4" },
- { u"larrbfs", u"\u291F" },
- { u"larrfs", u"\u291D" },
- { u"larrhk", u"\u21A9" },
- { u"larrlp", u"\u21AB" },
- { u"larrpl", u"\u2939" },
- { u"larrsim", u"\u2973" },
- { u"larrtl", u"\u21A2" },
- { u"lat", u"\u2AAB" },
- { u"latail", u"\u2919" },
- { u"late", u"\u2AAD" },
- { u"lates", u"\u2AAD\uFE00" },
- { u"lbarr", u"\u290C" },
- { u"lbbrk", u"\u2772" },
- { u"lbrace", u"\u007B" },
- { u"lbrack", u"\u005B" },
- { u"lbrke", u"\u298B" },
- { u"lbrksld", u"\u298F" },
- { u"lbrkslu", u"\u298D" },
- { u"lcaron", u"\u013E" },
- { u"lcedil", u"\u013C" },
- { u"lceil", u"\u2308" },
- { u"lcub", u"\u007B" },
- { u"lcy", u"\u043B" },
- { u"ldca", u"\u2936" },
- { u"ldquo", u"\u201C" },
- { u"ldquor", u"\u201E" },
- { u"ldrdhar", u"\u2967" },
- { u"ldrushar", u"\u294B" },
- { u"ldsh", u"\u21B2" },
- { u"le", u"\u2264" },
- { u"leftarrow", u"\u2190" },
- { u"leftarrowtail", u"\u21A2" },
- { u"leftharpoondown", u"\u21BD" },
- { u"leftharpoonup", u"\u21BC" },
- { u"leftleftarrows", u"\u21C7" },
- { u"leftrightarrow", u"\u2194" },
- { u"leftrightarrows", u"\u21C6" },
- { u"leftrightharpoons", u"\u21CB" },
- { u"leftrightsquigarrow", u"\u21AD" },
- { u"leftthreetimes", u"\u22CB" },
- { u"leg", u"\u22DA" },
- { u"leq", u"\u2264" },
- { u"leqq", u"\u2266" },
- { u"leqslant", u"\u2A7D" },
- { u"les", u"\u2A7D" },
- { u"lescc", u"\u2AA8" },
- { u"lesdot", u"\u2A7F" },
- { u"lesdoto", u"\u2A81" },
- { u"lesdotor", u"\u2A83" },
- { u"lesg", u"\u22DA\uFE00" },
- { u"lesges", u"\u2A93" },
- { u"lessapprox", u"\u2A85" },
- { u"lessdot", u"\u22D6" },
- { u"lesseqgtr", u"\u22DA" },
- { u"lesseqqgtr", u"\u2A8B" },
- { u"lessgtr", u"\u2276" },
- { u"lesssim", u"\u2272" },
- { u"lfisht", u"\u297C" },
- { u"lfloor", u"\u230A" },
- { u"lfr", u"\U0001D529" },
- { u"lg", u"\u2276" },
- { u"lgE", u"\u2A91" },
- { u"lhard", u"\u21BD" },
- { u"lharu", u"\u21BC" },
- { u"lharul", u"\u296A" },
- { u"lhblk", u"\u2584" },
- { u"ljcy", u"\u0459" },
- { u"ll", u"\u226A" },
- { u"llarr", u"\u21C7" },
- { u"llcorner", u"\u231E" },
- { u"llhard", u"\u296B" },
- { u"lltri", u"\u25FA" },
- { u"lmidot", u"\u0140" },
- { u"lmoust", u"\u23B0" },
- { u"lmoustache", u"\u23B0" },
- { u"lnE", u"\u2268" },
- { u"lnap", u"\u2A89" },
- { u"lnapprox", u"\u2A89" },
- { u"lne", u"\u2A87" },
- { u"lneq", u"\u2A87" },
- { u"lneqq", u"\u2268" },
- { u"lnsim", u"\u22E6" },
- { u"loang", u"\u27EC" },
- { u"loarr", u"\u21FD" },
- { u"lobrk", u"\u27E6" },
- { u"longleftarrow", u"\u27F5" },
- { u"longleftrightarrow", u"\u27F7" },
- { u"longmapsto", u"\u27FC" },
- { u"longrightarrow", u"\u27F6" },
- { u"looparrowleft", u"\u21AB" },
- { u"looparrowright", u"\u21AC" },
- { u"lopar", u"\u2985" },
- { u"lopf", u"\U0001D55D" },
- { u"loplus", u"\u2A2D" },
- { u"lotimes", u"\u2A34" },
- { u"lowast", u"\u2217" },
- { u"lowbar", u"\u005F" },
- { u"loz", u"\u25CA" },
- { u"lozenge", u"\u25CA" },
- { u"lozf", u"\u29EB" },
- { u"lpar", u"\u0028" },
- { u"lparlt", u"\u2993" },
- { u"lrarr", u"\u21C6" },
- { u"lrcorner", u"\u231F" },
- { u"lrhar", u"\u21CB" },
- { u"lrhard", u"\u296D" },
- { u"lrm", u"\u200E" },
- { u"lrtri", u"\u22BF" },
- { u"lsaquo", u"\u2039" },
- { u"lscr", u"\U0001D4C1" },
- { u"lsh", u"\u21B0" },
- { u"lsim", u"\u2272" },
- { u"lsime", u"\u2A8D" },
- { u"lsimg", u"\u2A8F" },
- { u"lsqb", u"\u005B" },
- { u"lsquo", u"\u2018" },
- { u"lsquor", u"\u201A" },
- { u"lstrok", u"\u0142" },
- { u"lt", u"\u003C" },
- { u"ltcc", u"\u2AA6" },
- { u"ltcir", u"\u2A79" },
- { u"ltdot", u"\u22D6" },
- { u"lthree", u"\u22CB" },
- { u"ltimes", u"\u22C9" },
- { u"ltlarr", u"\u2976" },
- { u"ltquest", u"\u2A7B" },
- { u"ltrPar", u"\u2996" },
- { u"ltri", u"\u25C3" },
- { u"ltrie", u"\u22B4" },
- { u"ltrif", u"\u25C2" },
- { u"lurdshar", u"\u294A" },
- { u"luruhar", u"\u2966" },
- { u"lvertneqq", u"\u2268\uFE00" },
- { u"lvnE", u"\u2268\uFE00" },
- { u"mDDot", u"\u223A" },
- { u"macr", u"\u00AF" },
- { u"male", u"\u2642" },
- { u"malt", u"\u2720" },
- { u"maltese", u"\u2720" },
- { u"map", u"\u21A6" },
- { u"mapsto", u"\u21A6" },
- { u"mapstodown", u"\u21A7" },
- { u"mapstoleft", u"\u21A4" },
- { u"mapstoup", u"\u21A5" },
- { u"marker", u"\u25AE" },
- { u"mcomma", u"\u2A29" },
- { u"mcy", u"\u043C" },
- { u"mdash", u"\u2014" },
- { u"measuredangle", u"\u2221" },
- { u"mfr", u"\U0001D52A" },
- { u"mho", u"\u2127" },
- { u"micro", u"\u00B5" },
- { u"mid", u"\u2223" },
- { u"midast", u"\u002A" },
- { u"midcir", u"\u2AF0" },
- { u"middot", u"\u00B7" },
- { u"minus", u"\u2212" },
- { u"minusb", u"\u229F" },
- { u"minusd", u"\u2238" },
- { u"minusdu", u"\u2A2A" },
- { u"mlcp", u"\u2ADB" },
- { u"mldr", u"\u2026" },
- { u"mnplus", u"\u2213" },
- { u"models", u"\u22A7" },
- { u"mopf", u"\U0001D55E" },
- { u"mp", u"\u2213" },
- { u"mscr", u"\U0001D4C2" },
- { u"mstpos", u"\u223E" },
- { u"mu", u"\u03BC" },
- { u"multimap", u"\u22B8" },
- { u"mumap", u"\u22B8" },
- { u"nGg", u"\u22D9\u0338" },
- { u"nGt", u"\u226B\u20D2" },
- { u"nGtv", u"\u226B\u0338" },
- { u"nLeftarrow", u"\u21CD" },
- { u"nLeftrightarrow", u"\u21CE" },
- { u"nLl", u"\u22D8\u0338" },
- { u"nLt", u"\u226A\u20D2" },
- { u"nLtv", u"\u226A\u0338" },
- { u"nRightarrow", u"\u21CF" },
- { u"nVDash", u"\u22AF" },
- { u"nVdash", u"\u22AE" },
- { u"nabla", u"\u2207" },
- { u"nacute", u"\u0144" },
- { u"nang", u"\u2220\u20D2" },
- { u"nap", u"\u2249" },
- { u"napE", u"\u2A70\u0338" },
- { u"napid", u"\u224B\u0338" },
- { u"napos", u"\u0149" },
- { u"napprox", u"\u2249" },
- { u"natur", u"\u266E" },
- { u"natural", u"\u266E" },
- { u"naturals", u"\u2115" },
- { u"nbsp", u"\u00A0" },
- { u"nbump", u"\u224E\u0338" },
- { u"nbumpe", u"\u224F\u0338" },
- { u"ncap", u"\u2A43" },
- { u"ncaron", u"\u0148" },
- { u"ncedil", u"\u0146" },
- { u"ncong", u"\u2247" },
- { u"ncongdot", u"\u2A6D\u0338" },
- { u"ncup", u"\u2A42" },
- { u"ncy", u"\u043D" },
- { u"ndash", u"\u2013" },
- { u"ne", u"\u2260" },
- { u"neArr", u"\u21D7" },
- { u"nearhk", u"\u2924" },
- { u"nearr", u"\u2197" },
- { u"nearrow", u"\u2197" },
- { u"nedot", u"\u2250\u0338" },
- { u"nequiv", u"\u2262" },
- { u"nesear", u"\u2928" },
- { u"nesim", u"\u2242\u0338" },
- { u"nexist", u"\u2204" },
- { u"nexists", u"\u2204" },
- { u"nfr", u"\U0001D52B" },
- { u"ngE", u"\u2267\u0338" },
- { u"nge", u"\u2271" },
- { u"ngeq", u"\u2271" },
- { u"ngeqq", u"\u2267\u0338" },
- { u"ngeqslant", u"\u2A7E\u0338" },
- { u"nges", u"\u2A7E\u0338" },
- { u"ngsim", u"\u2275" },
- { u"ngt", u"\u226F" },
- { u"ngtr", u"\u226F" },
- { u"nhArr", u"\u21CE" },
- { u"nharr", u"\u21AE" },
- { u"nhpar", u"\u2AF2" },
- { u"ni", u"\u220B" },
- { u"nis", u"\u22FC" },
- { u"nisd", u"\u22FA" },
- { u"niv", u"\u220B" },
- { u"njcy", u"\u045A" },
- { u"nlArr", u"\u21CD" },
- { u"nlE", u"\u2266\u0338" },
- { u"nlarr", u"\u219A" },
- { u"nldr", u"\u2025" },
- { u"nle", u"\u2270" },
- { u"nleftarrow", u"\u219A" },
- { u"nleftrightarrow", u"\u21AE" },
- { u"nleq", u"\u2270" },
- { u"nleqq", u"\u2266\u0338" },
- { u"nleqslant", u"\u2A7D\u0338" },
- { u"nles", u"\u2A7D\u0338" },
- { u"nless", u"\u226E" },
- { u"nlsim", u"\u2274" },
- { u"nlt", u"\u226E" },
- { u"nltri", u"\u22EA" },
- { u"nltrie", u"\u22EC" },
- { u"nmid", u"\u2224" },
- { u"nopf", u"\U0001D55F" },
- { u"not", u"\u00AC" },
- { u"notin", u"\u2209" },
- { u"notinE", u"\u22F9\u0338" },
- { u"notindot", u"\u22F5\u0338" },
- { u"notinva", u"\u2209" },
- { u"notinvb", u"\u22F7" },
- { u"notinvc", u"\u22F6" },
- { u"notni", u"\u220C" },
- { u"notniva", u"\u220C" },
- { u"notnivb", u"\u22FE" },
- { u"notnivc", u"\u22FD" },
- { u"npar", u"\u2226" },
- { u"nparallel", u"\u2226" },
- { u"nparsl", u"\u2AFD\u20E5" },
- { u"npart", u"\u2202\u0338" },
- { u"npolint", u"\u2A14" },
- { u"npr", u"\u2280" },
- { u"nprcue", u"\u22E0" },
- { u"npre", u"\u2AAF\u0338" },
- { u"nprec", u"\u2280" },
- { u"npreceq", u"\u2AAF\u0338" },
- { u"nrArr", u"\u21CF" },
- { u"nrarr", u"\u219B" },
- { u"nrarrc", u"\u2933\u0338" },
- { u"nrarrw", u"\u219D\u0338" },
- { u"nrightarrow", u"\u219B" },
- { u"nrtri", u"\u22EB" },
- { u"nrtrie", u"\u22ED" },
- { u"nsc", u"\u2281" },
- { u"nsccue", u"\u22E1" },
- { u"nsce", u"\u2AB0\u0338" },
- { u"nscr", u"\U0001D4C3" },
- { u"nshortmid", u"\u2224" },
- { u"nshortparallel", u"\u2226" },
- { u"nsim", u"\u2241" },
- { u"nsime", u"\u2244" },
- { u"nsimeq", u"\u2244" },
- { u"nsmid", u"\u2224" },
- { u"nspar", u"\u2226" },
- { u"nsqsube", u"\u22E2" },
- { u"nsqsupe", u"\u22E3" },
- { u"nsub", u"\u2284" },
- { u"nsubE", u"\u2AC5\u0338" },
- { u"nsube", u"\u2288" },
- { u"nsubset", u"\u2282\u20D2" },
- { u"nsubseteq", u"\u2288" },
- { u"nsubseteqq", u"\u2AC5\u0338" },
- { u"nsucc", u"\u2281" },
- { u"nsucceq", u"\u2AB0\u0338" },
- { u"nsup", u"\u2285" },
- { u"nsupE", u"\u2AC6\u0338" },
- { u"nsupe", u"\u2289" },
- { u"nsupset", u"\u2283\u20D2" },
- { u"nsupseteq", u"\u2289" },
- { u"nsupseteqq", u"\u2AC6\u0338" },
- { u"ntgl", u"\u2279" },
- { u"ntilde", u"\u00F1" },
- { u"ntlg", u"\u2278" },
- { u"ntriangleleft", u"\u22EA" },
- { u"ntrianglelefteq", u"\u22EC" },
- { u"ntriangleright", u"\u22EB" },
- { u"ntrianglerighteq", u"\u22ED" },
- { u"nu", u"\u03BD" },
- { u"num", u"\u0023" },
- { u"numero", u"\u2116" },
- { u"numsp", u"\u2007" },
- { u"nvDash", u"\u22AD" },
- { u"nvHarr", u"\u2904" },
- { u"nvap", u"\u224D\u20D2" },
- { u"nvdash", u"\u22AC" },
- { u"nvge", u"\u2265\u20D2" },
- { u"nvgt", u"\u003E\u20D2" },
- { u"nvinfin", u"\u29DE" },
- { u"nvlArr", u"\u2902" },
- { u"nvle", u"\u2264\u20D2" },
- { u"nvlt", u"\u003C\u20D2" },
- { u"nvltrie", u"\u22B4\u20D2" },
- { u"nvrArr", u"\u2903" },
- { u"nvrtrie", u"\u22B5\u20D2" },
- { u"nvsim", u"\u223C\u20D2" },
- { u"nwArr", u"\u21D6" },
- { u"nwarhk", u"\u2923" },
- { u"nwarr", u"\u2196" },
- { u"nwarrow", u"\u2196" },
- { u"nwnear", u"\u2927" },
- { u"oS", u"\u24C8" },
- { u"oacute", u"\u00F3" },
- { u"oast", u"\u229B" },
- { u"ocir", u"\u229A" },
- { u"ocirc", u"\u00F4" },
- { u"ocy", u"\u043E" },
- { u"odash", u"\u229D" },
- { u"odblac", u"\u0151" },
- { u"odiv", u"\u2A38" },
- { u"odot", u"\u2299" },
- { u"odsold", u"\u29BC" },
- { u"oelig", u"\u0153" },
- { u"ofcir", u"\u29BF" },
- { u"ofr", u"\U0001D52C" },
- { u"ogon", u"\u02DB" },
- { u"ograve", u"\u00F2" },
- { u"ogt", u"\u29C1" },
- { u"ohbar", u"\u29B5" },
- { u"ohm", u"\u03A9" },
- { u"oint", u"\u222E" },
- { u"olarr", u"\u21BA" },
- { u"olcir", u"\u29BE" },
- { u"olcross", u"\u29BB" },
- { u"oline", u"\u203E" },
- { u"olt", u"\u29C0" },
- { u"omacr", u"\u014D" },
- { u"omega", u"\u03C9" },
- { u"omicron", u"\u03BF" },
- { u"omid", u"\u29B6" },
- { u"ominus", u"\u2296" },
- { u"oopf", u"\U0001D560" },
- { u"opar", u"\u29B7" },
- { u"operp", u"\u29B9" },
- { u"oplus", u"\u2295" },
- { u"or", u"\u2228" },
- { u"orarr", u"\u21BB" },
- { u"ord", u"\u2A5D" },
- { u"order", u"\u2134" },
- { u"orderof", u"\u2134" },
- { u"ordf", u"\u00AA" },
- { u"ordm", u"\u00BA" },
- { u"origof", u"\u22B6" },
- { u"oror", u"\u2A56" },
- { u"orslope", u"\u2A57" },
- { u"orv", u"\u2A5B" },
- { u"oscr", u"\u2134" },
- { u"oslash", u"\u00F8" },
- { u"osol", u"\u2298" },
- { u"otilde", u"\u00F5" },
- { u"otimes", u"\u2297" },
- { u"otimesas", u"\u2A36" },
- { u"ouml", u"\u00F6" },
- { u"ovbar", u"\u233D" },
- { u"par", u"\u2225" },
- { u"para", u"\u00B6" },
- { u"parallel", u"\u2225" },
- { u"parsim", u"\u2AF3" },
- { u"parsl", u"\u2AFD" },
- { u"part", u"\u2202" },
- { u"pcy", u"\u043F" },
- { u"percnt", u"\u0025" },
- { u"period", u"\u002E" },
- { u"permil", u"\u2030" },
- { u"perp", u"\u22A5" },
- { u"pertenk", u"\u2031" },
- { u"pfr", u"\U0001D52D" },
- { u"phi", u"\u03C6" },
- { u"phiv", u"\u03D5" },
- { u"phmmat", u"\u2133" },
- { u"phone", u"\u260E" },
- { u"pi", u"\u03C0" },
- { u"pitchfork", u"\u22D4" },
- { u"piv", u"\u03D6" },
- { u"planck", u"\u210F" },
- { u"planckh", u"\u210E" },
- { u"plankv", u"\u210F" },
- { u"plus", u"\u002B" },
- { u"plusacir", u"\u2A23" },
- { u"plusb", u"\u229E" },
- { u"pluscir", u"\u2A22" },
- { u"plusdo", u"\u2214" },
- { u"plusdu", u"\u2A25" },
- { u"pluse", u"\u2A72" },
- { u"plusmn", u"\u00B1" },
- { u"plussim", u"\u2A26" },
- { u"plustwo", u"\u2A27" },
- { u"pm", u"\u00B1" },
- { u"pointint", u"\u2A15" },
- { u"popf", u"\U0001D561" },
- { u"pound", u"\u00A3" },
- { u"pr", u"\u227A" },
- { u"prE", u"\u2AB3" },
- { u"prap", u"\u2AB7" },
- { u"prcue", u"\u227C" },
- { u"pre", u"\u2AAF" },
- { u"prec", u"\u227A" },
- { u"precapprox", u"\u2AB7" },
- { u"preccurlyeq", u"\u227C" },
- { u"preceq", u"\u2AAF" },
- { u"precnapprox", u"\u2AB9" },
- { u"precneqq", u"\u2AB5" },
- { u"precnsim", u"\u22E8" },
- { u"precsim", u"\u227E" },
- { u"prime", u"\u2032" },
- { u"primes", u"\u2119" },
- { u"prnE", u"\u2AB5" },
- { u"prnap", u"\u2AB9" },
- { u"prnsim", u"\u22E8" },
- { u"prod", u"\u220F" },
- { u"profalar", u"\u232E" },
- { u"profline", u"\u2312" },
- { u"profsurf", u"\u2313" },
- { u"prop", u"\u221D" },
- { u"propto", u"\u221D" },
- { u"prsim", u"\u227E" },
- { u"prurel", u"\u22B0" },
- { u"pscr", u"\U0001D4C5" },
- { u"psi", u"\u03C8" },
- { u"puncsp", u"\u2008" },
- { u"qfr", u"\U0001D52E" },
- { u"qint", u"\u2A0C" },
- { u"qopf", u"\U0001D562" },
- { u"qprime", u"\u2057" },
- { u"qscr", u"\U0001D4C6" },
- { u"quaternions", u"\u210D" },
- { u"quatint", u"\u2A16" },
- { u"quest", u"\u003F" },
- { u"questeq", u"\u225F" },
- { u"quot", u"\u0022" },
- { u"rAarr", u"\u21DB" },
- { u"rArr", u"\u21D2" },
- { u"rAtail", u"\u291C" },
- { u"rBarr", u"\u290F" },
- { u"rHar", u"\u2964" },
- { u"race", u"\u223D\u0331" },
- { u"racute", u"\u0155" },
- { u"radic", u"\u221A" },
- { u"raemptyv", u"\u29B3" },
- { u"rang", u"\u27E9" },
- { u"rangd", u"\u2992" },
- { u"range", u"\u29A5" },
- { u"rangle", u"\u27E9" },
- { u"raquo", u"\u00BB" },
- { u"rarr", u"\u2192" },
- { u"rarrap", u"\u2975" },
- { u"rarrb", u"\u21E5" },
- { u"rarrbfs", u"\u2920" },
- { u"rarrc", u"\u2933" },
- { u"rarrfs", u"\u291E" },
- { u"rarrhk", u"\u21AA" },
- { u"rarrlp", u"\u21AC" },
- { u"rarrpl", u"\u2945" },
- { u"rarrsim", u"\u2974" },
- { u"rarrtl", u"\u21A3" },
- { u"rarrw", u"\u219D" },
- { u"ratail", u"\u291A" },
- { u"ratio", u"\u2236" },
- { u"rationals", u"\u211A" },
- { u"rbarr", u"\u290D" },
- { u"rbbrk", u"\u2773" },
- { u"rbrace", u"\u007D" },
- { u"rbrack", u"\u005D" },
- { u"rbrke", u"\u298C" },
- { u"rbrksld", u"\u298E" },
- { u"rbrkslu", u"\u2990" },
- { u"rcaron", u"\u0159" },
- { u"rcedil", u"\u0157" },
- { u"rceil", u"\u2309" },
- { u"rcub", u"\u007D" },
- { u"rcy", u"\u0440" },
- { u"rdca", u"\u2937" },
- { u"rdldhar", u"\u2969" },
- { u"rdquo", u"\u201D" },
- { u"rdquor", u"\u201D" },
- { u"rdsh", u"\u21B3" },
- { u"real", u"\u211C" },
- { u"realine", u"\u211B" },
- { u"realpart", u"\u211C" },
- { u"reals", u"\u211D" },
- { u"rect", u"\u25AD" },
- { u"reg", u"\u00AE" },
- { u"rfisht", u"\u297D" },
- { u"rfloor", u"\u230B" },
- { u"rfr", u"\U0001D52F" },
- { u"rhard", u"\u21C1" },
- { u"rharu", u"\u21C0" },
- { u"rharul", u"\u296C" },
- { u"rho", u"\u03C1" },
- { u"rhov", u"\u03F1" },
- { u"rightarrow", u"\u2192" },
- { u"rightarrowtail", u"\u21A3" },
- { u"rightharpoondown", u"\u21C1" },
- { u"rightharpoonup", u"\u21C0" },
- { u"rightleftarrows", u"\u21C4" },
- { u"rightleftharpoons", u"\u21CC" },
- { u"rightrightarrows", u"\u21C9" },
- { u"rightsquigarrow", u"\u219D" },
- { u"rightthreetimes", u"\u22CC" },
- { u"ring", u"\u02DA" },
- { u"risingdotseq", u"\u2253" },
- { u"rlarr", u"\u21C4" },
- { u"rlhar", u"\u21CC" },
- { u"rlm", u"\u200F" },
- { u"rmoust", u"\u23B1" },
- { u"rmoustache", u"\u23B1" },
- { u"rnmid", u"\u2AEE" },
- { u"roang", u"\u27ED" },
- { u"roarr", u"\u21FE" },
- { u"robrk", u"\u27E7" },
- { u"ropar", u"\u2986" },
- { u"ropf", u"\U0001D563" },
- { u"roplus", u"\u2A2E" },
- { u"rotimes", u"\u2A35" },
- { u"rpar", u"\u0029" },
- { u"rpargt", u"\u2994" },
- { u"rppolint", u"\u2A12" },
- { u"rrarr", u"\u21C9" },
- { u"rsaquo", u"\u203A" },
- { u"rscr", u"\U0001D4C7" },
- { u"rsh", u"\u21B1" },
- { u"rsqb", u"\u005D" },
- { u"rsquo", u"\u2019" },
- { u"rsquor", u"\u2019" },
- { u"rthree", u"\u22CC" },
- { u"rtimes", u"\u22CA" },
- { u"rtri", u"\u25B9" },
- { u"rtrie", u"\u22B5" },
- { u"rtrif", u"\u25B8" },
- { u"rtriltri", u"\u29CE" },
- { u"ruluhar", u"\u2968" },
- { u"rx", u"\u211E" },
- { u"sacute", u"\u015B" },
- { u"sbquo", u"\u201A" },
- { u"sc", u"\u227B" },
- { u"scE", u"\u2AB4" },
- { u"scap", u"\u2AB8" },
- { u"scaron", u"\u0161" },
- { u"sccue", u"\u227D" },
- { u"sce", u"\u2AB0" },
- { u"scedil", u"\u015F" },
- { u"scirc", u"\u015D" },
- { u"scnE", u"\u2AB6" },
- { u"scnap", u"\u2ABA" },
- { u"scnsim", u"\u22E9" },
- { u"scpolint", u"\u2A13" },
- { u"scsim", u"\u227F" },
- { u"scy", u"\u0441" },
- { u"sdot", u"\u22C5" },
- { u"sdotb", u"\u22A1" },
- { u"sdote", u"\u2A66" },
- { u"seArr", u"\u21D8" },
- { u"searhk", u"\u2925" },
- { u"searr", u"\u2198" },
- { u"searrow", u"\u2198" },
- { u"sect", u"\u00A7" },
- { u"semi", u"\u003B" },
- { u"seswar", u"\u2929" },
- { u"setminus", u"\u2216" },
- { u"setmn", u"\u2216" },
- { u"sext", u"\u2736" },
- { u"sfr", u"\U0001D530" },
- { u"sfrown", u"\u2322" },
- { u"sharp", u"\u266F" },
- { u"shchcy", u"\u0449" },
- { u"shcy", u"\u0448" },
- { u"shortmid", u"\u2223" },
- { u"shortparallel", u"\u2225" },
- { u"shy", u"\u00AD" },
- { u"sigma", u"\u03C3" },
- { u"sigmaf", u"\u03C2" },
- { u"sigmav", u"\u03C2" },
- { u"sim", u"\u223C" },
- { u"simdot", u"\u2A6A" },
- { u"sime", u"\u2243" },
- { u"simeq", u"\u2243" },
- { u"simg", u"\u2A9E" },
- { u"simgE", u"\u2AA0" },
- { u"siml", u"\u2A9D" },
- { u"simlE", u"\u2A9F" },
- { u"simne", u"\u2246" },
- { u"simplus", u"\u2A24" },
- { u"simrarr", u"\u2972" },
- { u"slarr", u"\u2190" },
- { u"smallsetminus", u"\u2216" },
- { u"smashp", u"\u2A33" },
- { u"smeparsl", u"\u29E4" },
- { u"smid", u"\u2223" },
- { u"smile", u"\u2323" },
- { u"smt", u"\u2AAA" },
- { u"smte", u"\u2AAC" },
- { u"smtes", u"\u2AAC\uFE00" },
- { u"softcy", u"\u044C" },
- { u"sol", u"\u002F" },
- { u"solb", u"\u29C4" },
- { u"solbar", u"\u233F" },
- { u"sopf", u"\U0001D564" },
- { u"spades", u"\u2660" },
- { u"spadesuit", u"\u2660" },
- { u"spar", u"\u2225" },
- { u"sqcap", u"\u2293" },
- { u"sqcaps", u"\u2293\uFE00" },
- { u"sqcup", u"\u2294" },
- { u"sqcups", u"\u2294\uFE00" },
- { u"sqsub", u"\u228F" },
- { u"sqsube", u"\u2291" },
- { u"sqsubset", u"\u228F" },
- { u"sqsubseteq", u"\u2291" },
- { u"sqsup", u"\u2290" },
- { u"sqsupe", u"\u2292" },
- { u"sqsupset", u"\u2290" },
- { u"sqsupseteq", u"\u2292" },
- { u"squ", u"\u25A1" },
- { u"square", u"\u25A1" },
- { u"squarf", u"\u25AA" },
- { u"squf", u"\u25AA" },
- { u"srarr", u"\u2192" },
- { u"sscr", u"\U0001D4C8" },
- { u"ssetmn", u"\u2216" },
- { u"ssmile", u"\u2323" },
- { u"sstarf", u"\u22C6" },
- { u"star", u"\u2606" },
- { u"starf", u"\u2605" },
- { u"straightepsilon", u"\u03F5" },
- { u"straightphi", u"\u03D5" },
- { u"strns", u"\u00AF" },
- { u"sub", u"\u2282" },
- { u"subE", u"\u2AC5" },
- { u"subdot", u"\u2ABD" },
- { u"sube", u"\u2286" },
- { u"subedot", u"\u2AC3" },
- { u"submult", u"\u2AC1" },
- { u"subnE", u"\u2ACB" },
- { u"subne", u"\u228A" },
- { u"subplus", u"\u2ABF" },
- { u"subrarr", u"\u2979" },
- { u"subset", u"\u2282" },
- { u"subseteq", u"\u2286" },
- { u"subseteqq", u"\u2AC5" },
- { u"subsetneq", u"\u228A" },
- { u"subsetneqq", u"\u2ACB" },
- { u"subsim", u"\u2AC7" },
- { u"subsub", u"\u2AD5" },
- { u"subsup", u"\u2AD3" },
- { u"succ", u"\u227B" },
- { u"succapprox", u"\u2AB8" },
- { u"succcurlyeq", u"\u227D" },
- { u"succeq", u"\u2AB0" },
- { u"succnapprox", u"\u2ABA" },
- { u"succneqq", u"\u2AB6" },
- { u"succnsim", u"\u22E9" },
- { u"succsim", u"\u227F" },
- { u"sum", u"\u2211" },
- { u"sung", u"\u266A" },
- { u"sup", u"\u2283" },
- { u"sup1", u"\u00B9" },
- { u"sup2", u"\u00B2" },
- { u"sup3", u"\u00B3" },
- { u"supE", u"\u2AC6" },
- { u"supdot", u"\u2ABE" },
- { u"supdsub", u"\u2AD8" },
- { u"supe", u"\u2287" },
- { u"supedot", u"\u2AC4" },
- { u"suphsol", u"\u27C9" },
- { u"suphsub", u"\u2AD7" },
- { u"suplarr", u"\u297B" },
- { u"supmult", u"\u2AC2" },
- { u"supnE", u"\u2ACC" },
- { u"supne", u"\u228B" },
- { u"supplus", u"\u2AC0" },
- { u"supset", u"\u2283" },
- { u"supseteq", u"\u2287" },
- { u"supseteqq", u"\u2AC6" },
- { u"supsetneq", u"\u228B" },
- { u"supsetneqq", u"\u2ACC" },
- { u"supsim", u"\u2AC8" },
- { u"supsub", u"\u2AD4" },
- { u"supsup", u"\u2AD6" },
- { u"swArr", u"\u21D9" },
- { u"swarhk", u"\u2926" },
- { u"swarr", u"\u2199" },
- { u"swarrow", u"\u2199" },
- { u"swnwar", u"\u292A" },
- { u"szlig", u"\u00DF" },
- { u"target", u"\u2316" },
- { u"tau", u"\u03C4" },
- { u"tbrk", u"\u23B4" },
- { u"tcaron", u"\u0165" },
- { u"tcedil", u"\u0163" },
- { u"tcy", u"\u0442" },
- { u"tdot", u"\u20DB" },
- { u"telrec", u"\u2315" },
- { u"tfr", u"\U0001D531" },
- { u"there4", u"\u2234" },
- { u"therefore", u"\u2234" },
- { u"theta", u"\u03B8" },
- { u"thetasym", u"\u03D1" },
- { u"thetav", u"\u03D1" },
- { u"thickapprox", u"\u2248" },
- { u"thicksim", u"\u223C" },
- { u"thinsp", u"\u2009" },
- { u"thkap", u"\u2248" },
- { u"thksim", u"\u223C" },
- { u"thorn", u"\u00FE" },
- { u"tilde", u"\u02DC" },
- { u"times", u"\u00D7" },
- { u"timesb", u"\u22A0" },
- { u"timesbar", u"\u2A31" },
- { u"timesd", u"\u2A30" },
- { u"tint", u"\u222D" },
- { u"toea", u"\u2928" },
- { u"top", u"\u22A4" },
- { u"topbot", u"\u2336" },
- { u"topcir", u"\u2AF1" },
- { u"topf", u"\U0001D565" },
- { u"topfork", u"\u2ADA" },
- { u"tosa", u"\u2929" },
- { u"tprime", u"\u2034" },
- { u"trade", u"\u2122" },
- { u"triangle", u"\u25B5" },
- { u"triangledown", u"\u25BF" },
- { u"triangleleft", u"\u25C3" },
- { u"trianglelefteq", u"\u22B4" },
- { u"triangleq", u"\u225C" },
- { u"triangleright", u"\u25B9" },
- { u"trianglerighteq", u"\u22B5" },
- { u"tridot", u"\u25EC" },
- { u"trie", u"\u225C" },
- { u"triminus", u"\u2A3A" },
- { u"triplus", u"\u2A39" },
- { u"trisb", u"\u29CD" },
- { u"tritime", u"\u2A3B" },
- { u"trpezium", u"\u23E2" },
- { u"tscr", u"\U0001D4C9" },
- { u"tscy", u"\u0446" },
- { u"tshcy", u"\u045B" },
- { u"tstrok", u"\u0167" },
- { u"twixt", u"\u226C" },
- { u"twoheadleftarrow", u"\u219E" },
- { u"twoheadrightarrow", u"\u21A0" },
- { u"uArr", u"\u21D1" },
- { u"uHar", u"\u2963" },
- { u"uacute", u"\u00FA" },
- { u"uarr", u"\u2191" },
- { u"ubrcy", u"\u045E" },
- { u"ubreve", u"\u016D" },
- { u"ucirc", u"\u00FB" },
- { u"ucy", u"\u0443" },
- { u"udarr", u"\u21C5" },
- { u"udblac", u"\u0171" },
- { u"udhar", u"\u296E" },
- { u"ufisht", u"\u297E" },
- { u"ufr", u"\U0001D532" },
- { u"ugrave", u"\u00F9" },
- { u"uharl", u"\u21BF" },
- { u"uharr", u"\u21BE" },
- { u"uhblk", u"\u2580" },
- { u"ulcorn", u"\u231C" },
- { u"ulcorner", u"\u231C" },
- { u"ulcrop", u"\u230F" },
- { u"ultri", u"\u25F8" },
- { u"umacr", u"\u016B" },
- { u"uml", u"\u00A8" },
- { u"uogon", u"\u0173" },
- { u"uopf", u"\U0001D566" },
- { u"uparrow", u"\u2191" },
- { u"updownarrow", u"\u2195" },
- { u"upharpoonleft", u"\u21BF" },
- { u"upharpoonright", u"\u21BE" },
- { u"uplus", u"\u228E" },
- { u"upsi", u"\u03C5" },
- { u"upsih", u"\u03D2" },
- { u"upsilon", u"\u03C5" },
- { u"upuparrows", u"\u21C8" },
- { u"urcorn", u"\u231D" },
- { u"urcorner", u"\u231D" },
- { u"urcrop", u"\u230E" },
- { u"uring", u"\u016F" },
- { u"urtri", u"\u25F9" },
- { u"uscr", u"\U0001D4CA" },
- { u"utdot", u"\u22F0" },
- { u"utilde", u"\u0169" },
- { u"utri", u"\u25B5" },
- { u"utrif", u"\u25B4" },
- { u"uuarr", u"\u21C8" },
- { u"uuml", u"\u00FC" },
- { u"uwangle", u"\u29A7" },
- { u"vArr", u"\u21D5" },
- { u"vBar", u"\u2AE8" },
- { u"vBarv", u"\u2AE9" },
- { u"vDash", u"\u22A8" },
- { u"vangrt", u"\u299C" },
- { u"varepsilon", u"\u03F5" },
- { u"varkappa", u"\u03F0" },
- { u"varnothing", u"\u2205" },
- { u"varphi", u"\u03D5" },
- { u"varpi", u"\u03D6" },
- { u"varpropto", u"\u221D" },
- { u"varr", u"\u2195" },
- { u"varrho", u"\u03F1" },
- { u"varsigma", u"\u03C2" },
- { u"varsubsetneq", u"\u228A\uFE00" },
- { u"varsubsetneqq", u"\u2ACB\uFE00" },
- { u"varsupsetneq", u"\u228B\uFE00" },
- { u"varsupsetneqq", u"\u2ACC\uFE00" },
- { u"vartheta", u"\u03D1" },
- { u"vartriangleleft", u"\u22B2" },
- { u"vartriangleright", u"\u22B3" },
- { u"vcy", u"\u0432" },
- { u"vdash", u"\u22A2" },
- { u"vee", u"\u2228" },
- { u"veebar", u"\u22BB" },
- { u"veeeq", u"\u225A" },
- { u"vellip", u"\u22EE" },
- { u"verbar", u"\u007C" },
- { u"vert", u"\u007C" },
- { u"vfr", u"\U0001D533" },
- { u"vltri", u"\u22B2" },
- { u"vnsub", u"\u2282\u20D2" },
- { u"vnsup", u"\u2283\u20D2" },
- { u"vopf", u"\U0001D567" },
- { u"vprop", u"\u221D" },
- { u"vrtri", u"\u22B3" },
- { u"vscr", u"\U0001D4CB" },
- { u"vsubnE", u"\u2ACB\uFE00" },
- { u"vsubne", u"\u228A\uFE00" },
- { u"vsupnE", u"\u2ACC\uFE00" },
- { u"vsupne", u"\u228B\uFE00" },
- { u"vzigzag", u"\u299A" },
- { u"wcirc", u"\u0175" },
- { u"wedbar", u"\u2A5F" },
- { u"wedge", u"\u2227" },
- { u"wedgeq", u"\u2259" },
- { u"weierp", u"\u2118" },
- { u"wfr", u"\U0001D534" },
- { u"wopf", u"\U0001D568" },
- { u"wp", u"\u2118" },
- { u"wr", u"\u2240" },
- { u"wreath", u"\u2240" },
- { u"wscr", u"\U0001D4CC" },
- { u"xcap", u"\u22C2" },
- { u"xcirc", u"\u25EF" },
- { u"xcup", u"\u22C3" },
- { u"xdtri", u"\u25BD" },
- { u"xfr", u"\U0001D535" },
- { u"xhArr", u"\u27FA" },
- { u"xharr", u"\u27F7" },
- { u"xi", u"\u03BE" },
- { u"xlArr", u"\u27F8" },
- { u"xlarr", u"\u27F5" },
- { u"xmap", u"\u27FC" },
- { u"xnis", u"\u22FB" },
- { u"xodot", u"\u2A00" },
- { u"xopf", u"\U0001D569" },
- { u"xoplus", u"\u2A01" },
- { u"xotime", u"\u2A02" },
- { u"xrArr", u"\u27F9" },
- { u"xrarr", u"\u27F6" },
- { u"xscr", u"\U0001D4CD" },
- { u"xsqcup", u"\u2A06" },
- { u"xuplus", u"\u2A04" },
- { u"xutri", u"\u25B3" },
- { u"xvee", u"\u22C1" },
- { u"xwedge", u"\u22C0" },
- { u"yacute", u"\u00FD" },
- { u"yacy", u"\u044F" },
- { u"ycirc", u"\u0177" },
- { u"ycy", u"\u044B" },
- { u"yen", u"\u00A5" },
- { u"yfr", u"\U0001D536" },
- { u"yicy", u"\u0457" },
- { u"yopf", u"\U0001D56A" },
- { u"yscr", u"\U0001D4CE" },
- { u"yucy", u"\u044E" },
- { u"yuml", u"\u00FF" },
- { u"zacute", u"\u017A" },
- { u"zcaron", u"\u017E" },
- { u"zcy", u"\u0437" },
- { u"zdot", u"\u017C" },
- { u"zeetrf", u"\u2128" },
- { u"zeta", u"\u03B6" },
- { u"zfr", u"\U0001D537" },
- { u"zhcy", u"\u0436" },
- { u"zigrarr", u"\u21DD" },
- { u"zopf", u"\U0001D56B" },
- { u"zscr", u"\U0001D4CF" },
- { u"zwj", u"\u200D" },
- { u"zwnj", u"\u200C" }
+ { u"AElig"_ustr, u"\u00C6"_ustr },
+ { u"AMP"_ustr, u"\u0026"_ustr },
+ { u"Aacute"_ustr, u"\u00C1"_ustr },
+ { u"Abreve"_ustr, u"\u0102"_ustr },
+ { u"Acirc"_ustr, u"\u00C2"_ustr },
+ { u"Acy"_ustr, u"\u0410"_ustr },
+ { u"Afr"_ustr, u"\U0001D504"_ustr },
+ { u"Agrave"_ustr, u"\u00C0"_ustr },
+ { u"Alpha"_ustr, u"\u0391"_ustr },
+ { u"Amacr"_ustr, u"\u0100"_ustr },
+ { u"And"_ustr, u"\u2A53"_ustr },
+ { u"Aogon"_ustr, u"\u0104"_ustr },
+ { u"Aopf"_ustr, u"\U0001D538"_ustr },
+ { u"ApplyFunction"_ustr, u"\u2061"_ustr },
+ { u"Aring"_ustr, u"\u00C5"_ustr },
+ { u"Ascr"_ustr, u"\U0001D49C"_ustr },
+ { u"Assign"_ustr, u"\u2254"_ustr },
+ { u"Atilde"_ustr, u"\u00C3"_ustr },
+ { u"Auml"_ustr, u"\u00C4"_ustr },
+ { u"Backslash"_ustr, u"\u2216"_ustr },
+ { u"Barv"_ustr, u"\u2AE7"_ustr },
+ { u"Barwed"_ustr, u"\u2306"_ustr },
+ { u"Bcy"_ustr, u"\u0411"_ustr },
+ { u"Because"_ustr, u"\u2235"_ustr },
+ { u"Bernoullis"_ustr, u"\u212C"_ustr },
+ { u"Beta"_ustr, u"\u0392"_ustr },
+ { u"Bfr"_ustr, u"\U0001D505"_ustr },
+ { u"Bopf"_ustr, u"\U0001D539"_ustr },
+ { u"Breve"_ustr, u"\u02D8"_ustr },
+ { u"Bscr"_ustr, u"\u212C"_ustr },
+ { u"Bumpeq"_ustr, u"\u224E"_ustr },
+ { u"CHcy"_ustr, u"\u0427"_ustr },
+ { u"COPY"_ustr, u"\u00A9"_ustr },
+ { u"Cacute"_ustr, u"\u0106"_ustr },
+ { u"Cap"_ustr, u"\u22D2"_ustr },
+ { u"CapitalDifferentialD"_ustr, u"\u2145"_ustr },
+ { u"Cayleys"_ustr, u"\u212D"_ustr },
+ { u"Ccaron"_ustr, u"\u010C"_ustr },
+ { u"Ccedil"_ustr, u"\u00C7"_ustr },
+ { u"Ccirc"_ustr, u"\u0108"_ustr },
+ { u"Cconint"_ustr, u"\u2230"_ustr },
+ { u"Cdot"_ustr, u"\u010A"_ustr },
+ { u"Cedilla"_ustr, u"\u00B8"_ustr },
+ { u"CenterDot"_ustr, u"\u00B7"_ustr },
+ { u"Cfr"_ustr, u"\u212D"_ustr },
+ { u"Chi"_ustr, u"\u03A7"_ustr },
+ { u"CircleDot"_ustr, u"\u2299"_ustr },
+ { u"CircleMinus"_ustr, u"\u2296"_ustr },
+ { u"CirclePlus"_ustr, u"\u2295"_ustr },
+ { u"CircleTimes"_ustr, u"\u2297"_ustr },
+ { u"ClockwiseContourIntegral"_ustr, u"\u2232"_ustr },
+ { u"CloseCurlyDoubleQuote"_ustr, u"\u201D"_ustr },
+ { u"CloseCurlyQuote"_ustr, u"\u2019"_ustr },
+ { u"Colon"_ustr, u"\u2237"_ustr },
+ { u"Colone"_ustr, u"\u2A74"_ustr },
+ { u"Congruent"_ustr, u"\u2261"_ustr },
+ { u"Conint"_ustr, u"\u222F"_ustr },
+ { u"ContourIntegral"_ustr, u"\u222E"_ustr },
+ { u"Copf"_ustr, u"\u2102"_ustr },
+ { u"Coproduct"_ustr, u"\u2210"_ustr },
+ { u"CounterClockwiseContourIntegral"_ustr, u"\u2233"_ustr },
+ { u"Cross"_ustr, u"\u2A2F"_ustr },
+ { u"Cscr"_ustr, u"\U0001D49E"_ustr },
+ { u"Cup"_ustr, u"\u22D3"_ustr },
+ { u"CupCap"_ustr, u"\u224D"_ustr },
+ { u"DD"_ustr, u"\u2145"_ustr },
+ { u"DDotrahd"_ustr, u"\u2911"_ustr },
+ { u"DJcy"_ustr, u"\u0402"_ustr },
+ { u"DScy"_ustr, u"\u0405"_ustr },
+ { u"DZcy"_ustr, u"\u040F"_ustr },
+ { u"Dagger"_ustr, u"\u2021"_ustr },
+ { u"Darr"_ustr, u"\u21A1"_ustr },
+ { u"Dashv"_ustr, u"\u2AE4"_ustr },
+ { u"Dcaron"_ustr, u"\u010E"_ustr },
+ { u"Dcy"_ustr, u"\u0414"_ustr },
+ { u"Del"_ustr, u"\u2207"_ustr },
+ { u"Delta"_ustr, u"\u0394"_ustr },
+ { u"Dfr"_ustr, u"\U0001D507"_ustr },
+ { u"DiacriticalAcute"_ustr, u"\u00B4"_ustr },
+ { u"DiacriticalDot"_ustr, u"\u02D9"_ustr },
+ { u"DiacriticalDoubleAcute"_ustr, u"\u02DD"_ustr },
+ { u"DiacriticalGrave"_ustr, u"\u0060"_ustr },
+ { u"DiacriticalTilde"_ustr, u"\u02DC"_ustr },
+ { u"Diamond"_ustr, u"\u22C4"_ustr },
+ { u"DifferentialD"_ustr, u"\u2146"_ustr },
+ { u"Dopf"_ustr, u"\U0001D53B"_ustr },
+ { u"Dot"_ustr, u"\u00A8"_ustr },
+ { u"DotDot"_ustr, u"\u20DC"_ustr },
+ { u"DotEqual"_ustr, u"\u2250"_ustr },
+ { u"DoubleContourIntegral"_ustr, u"\u222F"_ustr },
+ { u"DoubleDot"_ustr, u"\u00A8"_ustr },
+ { u"DoubleDownArrow"_ustr, u"\u21D3"_ustr },
+ { u"DoubleLeftArrow"_ustr, u"\u21D0"_ustr },
+ { u"DoubleLeftRightArrow"_ustr, u"\u21D4"_ustr },
+ { u"DoubleLeftTee"_ustr, u"\u2AE4"_ustr },
+ { u"DoubleLongLeftArrow"_ustr, u"\u27F8"_ustr },
+ { u"DoubleLongLeftRightArrow"_ustr, u"\u27FA"_ustr },
+ { u"DoubleLongRightArrow"_ustr, u"\u27F9"_ustr },
+ { u"DoubleRightArrow"_ustr, u"\u21D2"_ustr },
+ { u"DoubleRightTee"_ustr, u"\u22A8"_ustr },
+ { u"DoubleUpArrow"_ustr, u"\u21D1"_ustr },
+ { u"DoubleUpDownArrow"_ustr, u"\u21D5"_ustr },
+ { u"DoubleVerticalBar"_ustr, u"\u2225"_ustr },
+ { u"DownArrow"_ustr, u"\u2193"_ustr },
+ { u"DownArrowBar"_ustr, u"\u2913"_ustr },
+ { u"DownArrowUpArrow"_ustr, u"\u21F5"_ustr },
+ { u"DownBreve"_ustr, u"\u0311"_ustr },
+ { u"DownLeftRightVector"_ustr, u"\u2950"_ustr },
+ { u"DownLeftTeeVector"_ustr, u"\u295E"_ustr },
+ { u"DownLeftVector"_ustr, u"\u21BD"_ustr },
+ { u"DownLeftVectorBar"_ustr, u"\u2956"_ustr },
+ { u"DownRightTeeVector"_ustr, u"\u295F"_ustr },
+ { u"DownRightVector"_ustr, u"\u21C1"_ustr },
+ { u"DownRightVectorBar"_ustr, u"\u2957"_ustr },
+ { u"DownTee"_ustr, u"\u22A4"_ustr },
+ { u"DownTeeArrow"_ustr, u"\u21A7"_ustr },
+ { u"Downarrow"_ustr, u"\u21D3"_ustr },
+ { u"Dscr"_ustr, u"\U0001D49F"_ustr },
+ { u"Dstrok"_ustr, u"\u0110"_ustr },
+ { u"ENG"_ustr, u"\u014A"_ustr },
+ { u"ETH"_ustr, u"\u00D0"_ustr },
+ { u"Eacute"_ustr, u"\u00C9"_ustr },
+ { u"Ecaron"_ustr, u"\u011A"_ustr },
+ { u"Ecirc"_ustr, u"\u00CA"_ustr },
+ { u"Ecy"_ustr, u"\u042D"_ustr },
+ { u"Edot"_ustr, u"\u0116"_ustr },
+ { u"Efr"_ustr, u"\U0001D508"_ustr },
+ { u"Egrave"_ustr, u"\u00C8"_ustr },
+ { u"Element"_ustr, u"\u2208"_ustr },
+ { u"Emacr"_ustr, u"\u0112"_ustr },
+ { u"EmptySmallSquare"_ustr, u"\u25FB"_ustr },
+ { u"EmptyVerySmallSquare"_ustr, u"\u25AB"_ustr },
+ { u"Eogon"_ustr, u"\u0118"_ustr },
+ { u"Eopf"_ustr, u"\U0001D53C"_ustr },
+ { u"Epsilon"_ustr, u"\u0395"_ustr },
+ { u"Equal"_ustr, u"\u2A75"_ustr },
+ { u"EqualTilde"_ustr, u"\u2242"_ustr },
+ { u"Equilibrium"_ustr, u"\u21CC"_ustr },
+ { u"Escr"_ustr, u"\u2130"_ustr },
+ { u"Esim"_ustr, u"\u2A73"_ustr },
+ { u"Eta"_ustr, u"\u0397"_ustr },
+ { u"Euml"_ustr, u"\u00CB"_ustr },
+ { u"Exists"_ustr, u"\u2203"_ustr },
+ { u"ExponentialE"_ustr, u"\u2147"_ustr },
+ { u"Fcy"_ustr, u"\u0424"_ustr },
+ { u"Ffr"_ustr, u"\U0001D509"_ustr },
+ { u"FilledSmallSquare"_ustr, u"\u25FC"_ustr },
+ { u"FilledVerySmallSquare"_ustr, u"\u25AA"_ustr },
+ { u"Fopf"_ustr, u"\U0001D53D"_ustr },
+ { u"ForAll"_ustr, u"\u2200"_ustr },
+ { u"Fouriertrf"_ustr, u"\u2131"_ustr },
+ { u"Fscr"_ustr, u"\u2131"_ustr },
+ { u"GJcy"_ustr, u"\u0403"_ustr },
+ { u"GT"_ustr, u"\u003E"_ustr },
+ { u"Gamma"_ustr, u"\u0393"_ustr },
+ { u"Gammad"_ustr, u"\u03DC"_ustr },
+ { u"Gbreve"_ustr, u"\u011E"_ustr },
+ { u"Gcedil"_ustr, u"\u0122"_ustr },
+ { u"Gcirc"_ustr, u"\u011C"_ustr },
+ { u"Gcy"_ustr, u"\u0413"_ustr },
+ { u"Gdot"_ustr, u"\u0120"_ustr },
+ { u"Gfr"_ustr, u"\U0001D50A"_ustr },
+ { u"Gg"_ustr, u"\u22D9"_ustr },
+ { u"Gopf"_ustr, u"\U0001D53E"_ustr },
+ { u"GreaterEqual"_ustr, u"\u2265"_ustr },
+ { u"GreaterEqualLess"_ustr, u"\u22DB"_ustr },
+ { u"GreaterFullEqual"_ustr, u"\u2267"_ustr },
+ { u"GreaterGreater"_ustr, u"\u2AA2"_ustr },
+ { u"GreaterLess"_ustr, u"\u2277"_ustr },
+ { u"GreaterSlantEqual"_ustr, u"\u2A7E"_ustr },
+ { u"GreaterTilde"_ustr, u"\u2273"_ustr },
+ { u"Gscr"_ustr, u"\U0001D4A2"_ustr },
+ { u"Gt"_ustr, u"\u226B"_ustr },
+ { u"HARDcy"_ustr, u"\u042A"_ustr },
+ { u"Hacek"_ustr, u"\u02C7"_ustr },
+ { u"Hat"_ustr, u"\u005E"_ustr },
+ { u"Hcirc"_ustr, u"\u0124"_ustr },
+ { u"Hfr"_ustr, u"\u210C"_ustr },
+ { u"HilbertSpace"_ustr, u"\u210B"_ustr },
+ { u"Hopf"_ustr, u"\u210D"_ustr },
+ { u"HorizontalLine"_ustr, u"\u2500"_ustr },
+ { u"Hscr"_ustr, u"\u210B"_ustr },
+ { u"Hstrok"_ustr, u"\u0126"_ustr },
+ { u"HumpDownHump"_ustr, u"\u224E"_ustr },
+ { u"HumpEqual"_ustr, u"\u224F"_ustr },
+ { u"IEcy"_ustr, u"\u0415"_ustr },
+ { u"IJlig"_ustr, u"\u0132"_ustr },
+ { u"IOcy"_ustr, u"\u0401"_ustr },
+ { u"Iacute"_ustr, u"\u00CD"_ustr },
+ { u"Icirc"_ustr, u"\u00CE"_ustr },
+ { u"Icy"_ustr, u"\u0418"_ustr },
+ { u"Idot"_ustr, u"\u0130"_ustr },
+ { u"Ifr"_ustr, u"\u2111"_ustr },
+ { u"Igrave"_ustr, u"\u00CC"_ustr },
+ { u"Im"_ustr, u"\u2111"_ustr },
+ { u"Imacr"_ustr, u"\u012A"_ustr },
+ { u"ImaginaryI"_ustr, u"\u2148"_ustr },
+ { u"Implies"_ustr, u"\u21D2"_ustr },
+ { u"Int"_ustr, u"\u222C"_ustr },
+ { u"Integral"_ustr, u"\u222B"_ustr },
+ { u"Intersection"_ustr, u"\u22C2"_ustr },
+ { u"InvisibleComma"_ustr, u"\u2063"_ustr },
+ { u"InvisibleTimes"_ustr, u"\u2062"_ustr },
+ { u"Iogon"_ustr, u"\u012E"_ustr },
+ { u"Iopf"_ustr, u"\U0001D540"_ustr },
+ { u"Iota"_ustr, u"\u0399"_ustr },
+ { u"Iscr"_ustr, u"\u2110"_ustr },
+ { u"Itilde"_ustr, u"\u0128"_ustr },
+ { u"Iukcy"_ustr, u"\u0406"_ustr },
+ { u"Iuml"_ustr, u"\u00CF"_ustr },
+ { u"Jcirc"_ustr, u"\u0134"_ustr },
+ { u"Jcy"_ustr, u"\u0419"_ustr },
+ { u"Jfr"_ustr, u"\U0001D50D"_ustr },
+ { u"Jopf"_ustr, u"\U0001D541"_ustr },
+ { u"Jscr"_ustr, u"\U0001D4A5"_ustr },
+ { u"Jsercy"_ustr, u"\u0408"_ustr },
+ { u"Jukcy"_ustr, u"\u0404"_ustr },
+ { u"KHcy"_ustr, u"\u0425"_ustr },
+ { u"KJcy"_ustr, u"\u040C"_ustr },
+ { u"Kappa"_ustr, u"\u039A"_ustr },
+ { u"Kcedil"_ustr, u"\u0136"_ustr },
+ { u"Kcy"_ustr, u"\u041A"_ustr },
+ { u"Kfr"_ustr, u"\U0001D50E"_ustr },
+ { u"Kopf"_ustr, u"\U0001D542"_ustr },
+ { u"Kscr"_ustr, u"\U0001D4A6"_ustr },
+ { u"LJcy"_ustr, u"\u0409"_ustr },
+ { u"LT"_ustr, u"\u003C"_ustr },
+ { u"Lacute"_ustr, u"\u0139"_ustr },
+ { u"Lambda"_ustr, u"\u039B"_ustr },
+ { u"Lang"_ustr, u"\u27EA"_ustr },
+ { u"Laplacetrf"_ustr, u"\u2112"_ustr },
+ { u"Larr"_ustr, u"\u219E"_ustr },
+ { u"Lcaron"_ustr, u"\u013D"_ustr },
+ { u"Lcedil"_ustr, u"\u013B"_ustr },
+ { u"Lcy"_ustr, u"\u041B"_ustr },
+ { u"LeftAngleBracket"_ustr, u"\u27E8"_ustr },
+ { u"LeftArrow"_ustr, u"\u2190"_ustr },
+ { u"LeftArrowBar"_ustr, u"\u21E4"_ustr },
+ { u"LeftArrowRightArrow"_ustr, u"\u21C6"_ustr },
+ { u"LeftCeiling"_ustr, u"\u2308"_ustr },
+ { u"LeftDoubleBracket"_ustr, u"\u27E6"_ustr },
+ { u"LeftDownTeeVector"_ustr, u"\u2961"_ustr },
+ { u"LeftDownVector"_ustr, u"\u21C3"_ustr },
+ { u"LeftDownVectorBar"_ustr, u"\u2959"_ustr },
+ { u"LeftFloor"_ustr, u"\u230A"_ustr },
+ { u"LeftRightArrow"_ustr, u"\u2194"_ustr },
+ { u"LeftRightVector"_ustr, u"\u294E"_ustr },
+ { u"LeftTee"_ustr, u"\u22A3"_ustr },
+ { u"LeftTeeArrow"_ustr, u"\u21A4"_ustr },
+ { u"LeftTeeVector"_ustr, u"\u295A"_ustr },
+ { u"LeftTriangle"_ustr, u"\u22B2"_ustr },
+ { u"LeftTriangleBar"_ustr, u"\u29CF"_ustr },
+ { u"LeftTriangleEqual"_ustr, u"\u22B4"_ustr },
+ { u"LeftUpDownVector"_ustr, u"\u2951"_ustr },
+ { u"LeftUpTeeVector"_ustr, u"\u2960"_ustr },
+ { u"LeftUpVector"_ustr, u"\u21BF"_ustr },
+ { u"LeftUpVectorBar"_ustr, u"\u2958"_ustr },
+ { u"LeftVector"_ustr, u"\u21BC"_ustr },
+ { u"LeftVectorBar"_ustr, u"\u2952"_ustr },
+ { u"Leftarrow"_ustr, u"\u21D0"_ustr },
+ { u"Leftrightarrow"_ustr, u"\u21D4"_ustr },
+ { u"LessEqualGreater"_ustr, u"\u22DA"_ustr },
+ { u"LessFullEqual"_ustr, u"\u2266"_ustr },
+ { u"LessGreater"_ustr, u"\u2276"_ustr },
+ { u"LessLess"_ustr, u"\u2AA1"_ustr },
+ { u"LessSlantEqual"_ustr, u"\u2A7D"_ustr },
+ { u"LessTilde"_ustr, u"\u2272"_ustr },
+ { u"Lfr"_ustr, u"\U0001D50F"_ustr },
+ { u"Ll"_ustr, u"\u22D8"_ustr },
+ { u"Lleftarrow"_ustr, u"\u21DA"_ustr },
+ { u"Lmidot"_ustr, u"\u013F"_ustr },
+ { u"LongLeftArrow"_ustr, u"\u27F5"_ustr },
+ { u"LongLeftRightArrow"_ustr, u"\u27F7"_ustr },
+ { u"LongRightArrow"_ustr, u"\u27F6"_ustr },
+ { u"Longleftarrow"_ustr, u"\u27F8"_ustr },
+ { u"Longleftrightarrow"_ustr, u"\u27FA"_ustr },
+ { u"Longrightarrow"_ustr, u"\u27F9"_ustr },
+ { u"Lopf"_ustr, u"\U0001D543"_ustr },
+ { u"LowerLeftArrow"_ustr, u"\u2199"_ustr },
+ { u"LowerRightArrow"_ustr, u"\u2198"_ustr },
+ { u"Lscr"_ustr, u"\u2112"_ustr },
+ { u"Lsh"_ustr, u"\u21B0"_ustr },
+ { u"Lstrok"_ustr, u"\u0141"_ustr },
+ { u"Lt"_ustr, u"\u226A"_ustr },
+ { u"Map"_ustr, u"\u2905"_ustr },
+ { u"Mcy"_ustr, u"\u041C"_ustr },
+ { u"MediumSpace"_ustr, u"\u205F"_ustr },
+ { u"Mellintrf"_ustr, u"\u2133"_ustr },
+ { u"Mfr"_ustr, u"\U0001D510"_ustr },
+ { u"MinusPlus"_ustr, u"\u2213"_ustr },
+ { u"Mopf"_ustr, u"\U0001D544"_ustr },
+ { u"Mscr"_ustr, u"\u2133"_ustr },
+ { u"Mu"_ustr, u"\u039C"_ustr },
+ { u"NJcy"_ustr, u"\u040A"_ustr },
+ { u"Nacute"_ustr, u"\u0143"_ustr },
+ { u"Ncaron"_ustr, u"\u0147"_ustr },
+ { u"Ncedil"_ustr, u"\u0145"_ustr },
+ { u"Ncy"_ustr, u"\u041D"_ustr },
+ { u"NegativeMediumSpace"_ustr, u"\u200B"_ustr },
+ { u"NegativeThickSpace"_ustr, u"\u200B"_ustr },
+ { u"NegativeThinSpace"_ustr, u"\u200B"_ustr },
+ { u"NegativeVeryThinSpace"_ustr, u"\u200B"_ustr },
+ { u"NestedGreaterGreater"_ustr, u"\u226B"_ustr },
+ { u"NestedLessLess"_ustr, u"\u226A"_ustr },
+ { u"NewLine"_ustr, u"\u000A"_ustr },
+ { u"Nfr"_ustr, u"\U0001D511"_ustr },
+ { u"NoBreak"_ustr, u"\u2060"_ustr },
+ { u"NonBreakingSpace"_ustr, u"\u00A0"_ustr },
+ { u"Nopf"_ustr, u"\u2115"_ustr },
+ { u"Not"_ustr, u"\u2AEC"_ustr },
+ { u"NotCongruent"_ustr, u"\u2262"_ustr },
+ { u"NotCupCap"_ustr, u"\u226D"_ustr },
+ { u"NotDoubleVerticalBar"_ustr, u"\u2226"_ustr },
+ { u"NotElement"_ustr, u"\u2209"_ustr },
+ { u"NotEqual"_ustr, u"\u2260"_ustr },
+ { u"NotEqualTilde"_ustr, u"\u2242\u0338"_ustr },
+ { u"NotExists"_ustr, u"\u2204"_ustr },
+ { u"NotGreater"_ustr, u"\u226F"_ustr },
+ { u"NotGreaterEqual"_ustr, u"\u2271"_ustr },
+ { u"NotGreaterFullEqual"_ustr, u"\u2267\u0338"_ustr },
+ { u"NotGreaterGreater"_ustr, u"\u226B\u0338"_ustr },
+ { u"NotGreaterLess"_ustr, u"\u2279"_ustr },
+ { u"NotGreaterSlantEqual"_ustr, u"\u2A7E\u0338"_ustr },
+ { u"NotGreaterTilde"_ustr, u"\u2275"_ustr },
+ { u"NotHumpDownHump"_ustr, u"\u224E\u0338"_ustr },
+ { u"NotHumpEqual"_ustr, u"\u224F\u0338"_ustr },
+ { u"NotLeftTriangle"_ustr, u"\u22EA"_ustr },
+ { u"NotLeftTriangleBar"_ustr, u"\u29CF\u0338"_ustr },
+ { u"NotLeftTriangleEqual"_ustr, u"\u22EC"_ustr },
+ { u"NotLess"_ustr, u"\u226E"_ustr },
+ { u"NotLessEqual"_ustr, u"\u2270"_ustr },
+ { u"NotLessGreater"_ustr, u"\u2278"_ustr },
+ { u"NotLessLess"_ustr, u"\u226A\u0338"_ustr },
+ { u"NotLessSlantEqual"_ustr, u"\u2A7D\u0338"_ustr },
+ { u"NotLessTilde"_ustr, u"\u2274"_ustr },
+ { u"NotNestedGreaterGreater"_ustr, u"\u2AA2\u0338"_ustr },
+ { u"NotNestedLessLess"_ustr, u"\u2AA1\u0338"_ustr },
+ { u"NotPrecedes"_ustr, u"\u2280"_ustr },
+ { u"NotPrecedesEqual"_ustr, u"\u2AAF\u0338"_ustr },
+ { u"NotPrecedesSlantEqual"_ustr, u"\u22E0"_ustr },
+ { u"NotReverseElement"_ustr, u"\u220C"_ustr },
+ { u"NotRightTriangle"_ustr, u"\u22EB"_ustr },
+ { u"NotRightTriangleBar"_ustr, u"\u29D0\u0338"_ustr },
+ { u"NotRightTriangleEqual"_ustr, u"\u22ED"_ustr },
+ { u"NotSquareSubset"_ustr, u"\u228F\u0338"_ustr },
+ { u"NotSquareSubsetEqual"_ustr, u"\u22E2"_ustr },
+ { u"NotSquareSuperset"_ustr, u"\u2290\u0338"_ustr },
+ { u"NotSquareSupersetEqual"_ustr, u"\u22E3"_ustr },
+ { u"NotSubset"_ustr, u"\u2282\u20D2"_ustr },
+ { u"NotSubsetEqual"_ustr, u"\u2288"_ustr },
+ { u"NotSucceeds"_ustr, u"\u2281"_ustr },
+ { u"NotSucceedsEqual"_ustr, u"\u2AB0\u0338"_ustr },
+ { u"NotSucceedsSlantEqual"_ustr, u"\u22E1"_ustr },
+ { u"NotSucceedsTilde"_ustr, u"\u227F\u0338"_ustr },
+ { u"NotSuperset"_ustr, u"\u2283\u20D2"_ustr },
+ { u"NotSupersetEqual"_ustr, u"\u2289"_ustr },
+ { u"NotTilde"_ustr, u"\u2241"_ustr },
+ { u"NotTildeEqual"_ustr, u"\u2244"_ustr },
+ { u"NotTildeFullEqual"_ustr, u"\u2247"_ustr },
+ { u"NotTildeTilde"_ustr, u"\u2249"_ustr },
+ { u"NotVerticalBar"_ustr, u"\u2224"_ustr },
+ { u"Nscr"_ustr, u"\U0001D4A9"_ustr },
+ { u"Ntilde"_ustr, u"\u00D1"_ustr },
+ { u"Nu"_ustr, u"\u039D"_ustr },
+ { u"OElig"_ustr, u"\u0152"_ustr },
+ { u"Oacute"_ustr, u"\u00D3"_ustr },
+ { u"Ocirc"_ustr, u"\u00D4"_ustr },
+ { u"Ocy"_ustr, u"\u041E"_ustr },
+ { u"Odblac"_ustr, u"\u0150"_ustr },
+ { u"Ofr"_ustr, u"\U0001D512"_ustr },
+ { u"Ograve"_ustr, u"\u00D2"_ustr },
+ { u"Omacr"_ustr, u"\u014C"_ustr },
+ { u"Omega"_ustr, u"\u03A9"_ustr },
+ { u"Omicron"_ustr, u"\u039F"_ustr },
+ { u"Oopf"_ustr, u"\U0001D546"_ustr },
+ { u"OpenCurlyDoubleQuote"_ustr, u"\u201C"_ustr },
+ { u"OpenCurlyQuote"_ustr, u"\u2018"_ustr },
+ { u"Or"_ustr, u"\u2A54"_ustr },
+ { u"Oscr"_ustr, u"\U0001D4AA"_ustr },
+ { u"Oslash"_ustr, u"\u00D8"_ustr },
+ { u"Otilde"_ustr, u"\u00D5"_ustr },
+ { u"Otimes"_ustr, u"\u2A37"_ustr },
+ { u"Ouml"_ustr, u"\u00D6"_ustr },
+ { u"OverBar"_ustr, u"\u203E"_ustr },
+ { u"OverBrace"_ustr, u"\u23DE"_ustr },
+ { u"OverBracket"_ustr, u"\u23B4"_ustr },
+ { u"OverParenthesis"_ustr, u"\u23DC"_ustr },
+ { u"PartialD"_ustr, u"\u2202"_ustr },
+ { u"Pcy"_ustr, u"\u041F"_ustr },
+ { u"Pfr"_ustr, u"\U0001D513"_ustr },
+ { u"Phi"_ustr, u"\u03A6"_ustr },
+ { u"Pi"_ustr, u"\u03A0"_ustr },
+ { u"PlusMinus"_ustr, u"\u00B1"_ustr },
+ { u"Poincareplane"_ustr, u"\u210C"_ustr },
+ { u"Popf"_ustr, u"\u2119"_ustr },
+ { u"Pr"_ustr, u"\u2ABB"_ustr },
+ { u"Precedes"_ustr, u"\u227A"_ustr },
+ { u"PrecedesEqual"_ustr, u"\u2AAF"_ustr },
+ { u"PrecedesSlantEqual"_ustr, u"\u227C"_ustr },
+ { u"PrecedesTilde"_ustr, u"\u227E"_ustr },
+ { u"Prime"_ustr, u"\u2033"_ustr },
+ { u"Product"_ustr, u"\u220F"_ustr },
+ { u"Proportion"_ustr, u"\u2237"_ustr },
+ { u"Proportional"_ustr, u"\u221D"_ustr },
+ { u"Pscr"_ustr, u"\U0001D4AB"_ustr },
+ { u"Psi"_ustr, u"\u03A8"_ustr },
+ { u"QUOT"_ustr, u"\u0022"_ustr },
+ { u"Qfr"_ustr, u"\U0001D514"_ustr },
+ { u"Qopf"_ustr, u"\u211A"_ustr },
+ { u"Qscr"_ustr, u"\U0001D4AC"_ustr },
+ { u"RBarr"_ustr, u"\u2910"_ustr },
+ { u"REG"_ustr, u"\u00AE"_ustr },
+ { u"Racute"_ustr, u"\u0154"_ustr },
+ { u"Rang"_ustr, u"\u27EB"_ustr },
+ { u"Rarr"_ustr, u"\u21A0"_ustr },
+ { u"Rarrtl"_ustr, u"\u2916"_ustr },
+ { u"Rcaron"_ustr, u"\u0158"_ustr },
+ { u"Rcedil"_ustr, u"\u0156"_ustr },
+ { u"Rcy"_ustr, u"\u0420"_ustr },
+ { u"Re"_ustr, u"\u211C"_ustr },
+ { u"ReverseElement"_ustr, u"\u220B"_ustr },
+ { u"ReverseEquilibrium"_ustr, u"\u21CB"_ustr },
+ { u"ReverseUpEquilibrium"_ustr, u"\u296F"_ustr },
+ { u"Rfr"_ustr, u"\u211C"_ustr },
+ { u"Rho"_ustr, u"\u03A1"_ustr },
+ { u"RightAngleBracket"_ustr, u"\u27E9"_ustr },
+ { u"RightArrow"_ustr, u"\u2192"_ustr },
+ { u"RightArrowBar"_ustr, u"\u21E5"_ustr },
+ { u"RightArrowLeftArrow"_ustr, u"\u21C4"_ustr },
+ { u"RightCeiling"_ustr, u"\u2309"_ustr },
+ { u"RightDoubleBracket"_ustr, u"\u27E7"_ustr },
+ { u"RightDownTeeVector"_ustr, u"\u295D"_ustr },
+ { u"RightDownVector"_ustr, u"\u21C2"_ustr },
+ { u"RightDownVectorBar"_ustr, u"\u2955"_ustr },
+ { u"RightFloor"_ustr, u"\u230B"_ustr },
+ { u"RightTee"_ustr, u"\u22A2"_ustr },
+ { u"RightTeeArrow"_ustr, u"\u21A6"_ustr },
+ { u"RightTeeVector"_ustr, u"\u295B"_ustr },
+ { u"RightTriangle"_ustr, u"\u22B3"_ustr },
+ { u"RightTriangleBar"_ustr, u"\u29D0"_ustr },
+ { u"RightTriangleEqual"_ustr, u"\u22B5"_ustr },
+ { u"RightUpDownVector"_ustr, u"\u294F"_ustr },
+ { u"RightUpTeeVector"_ustr, u"\u295C"_ustr },
+ { u"RightUpVector"_ustr, u"\u21BE"_ustr },
+ { u"RightUpVectorBar"_ustr, u"\u2954"_ustr },
+ { u"RightVector"_ustr, u"\u21C0"_ustr },
+ { u"RightVectorBar"_ustr, u"\u2953"_ustr },
+ { u"Rightarrow"_ustr, u"\u21D2"_ustr },
+ { u"Ropf"_ustr, u"\u211D"_ustr },
+ { u"RoundImplies"_ustr, u"\u2970"_ustr },
+ { u"Rrightarrow"_ustr, u"\u21DB"_ustr },
+ { u"Rscr"_ustr, u"\u211B"_ustr },
+ { u"Rsh"_ustr, u"\u21B1"_ustr },
+ { u"RuleDelayed"_ustr, u"\u29F4"_ustr },
+ { u"SHCHcy"_ustr, u"\u0429"_ustr },
+ { u"SHcy"_ustr, u"\u0428"_ustr },
+ { u"SOFTcy"_ustr, u"\u042C"_ustr },
+ { u"Sacute"_ustr, u"\u015A"_ustr },
+ { u"Sc"_ustr, u"\u2ABC"_ustr },
+ { u"Scaron"_ustr, u"\u0160"_ustr },
+ { u"Scedil"_ustr, u"\u015E"_ustr },
+ { u"Scirc"_ustr, u"\u015C"_ustr },
+ { u"Scy"_ustr, u"\u0421"_ustr },
+ { u"Sfr"_ustr, u"\U0001D516"_ustr },
+ { u"ShortDownArrow"_ustr, u"\u2193"_ustr },
+ { u"ShortLeftArrow"_ustr, u"\u2190"_ustr },
+ { u"ShortRightArrow"_ustr, u"\u2192"_ustr },
+ { u"ShortUpArrow"_ustr, u"\u2191"_ustr },
+ { u"Sigma"_ustr, u"\u03A3"_ustr },
+ { u"SmallCircle"_ustr, u"\u2218"_ustr },
+ { u"Sopf"_ustr, u"\U0001D54A"_ustr },
+ { u"Sqrt"_ustr, u"\u221A"_ustr },
+ { u"Square"_ustr, u"\u25A1"_ustr },
+ { u"SquareIntersection"_ustr, u"\u2293"_ustr },
+ { u"SquareSubset"_ustr, u"\u228F"_ustr },
+ { u"SquareSubsetEqual"_ustr, u"\u2291"_ustr },
+ { u"SquareSuperset"_ustr, u"\u2290"_ustr },
+ { u"SquareSupersetEqual"_ustr, u"\u2292"_ustr },
+ { u"SquareUnion"_ustr, u"\u2294"_ustr },
+ { u"Sscr"_ustr, u"\U0001D4AE"_ustr },
+ { u"Star"_ustr, u"\u22C6"_ustr },
+ { u"Sub"_ustr, u"\u22D0"_ustr },
+ { u"Subset"_ustr, u"\u22D0"_ustr },
+ { u"SubsetEqual"_ustr, u"\u2286"_ustr },
+ { u"Succeeds"_ustr, u"\u227B"_ustr },
+ { u"SucceedsEqual"_ustr, u"\u2AB0"_ustr },
+ { u"SucceedsSlantEqual"_ustr, u"\u227D"_ustr },
+ { u"SucceedsTilde"_ustr, u"\u227F"_ustr },
+ { u"SuchThat"_ustr, u"\u220B"_ustr },
+ { u"Sum"_ustr, u"\u2211"_ustr },
+ { u"Sup"_ustr, u"\u22D1"_ustr },
+ { u"Superset"_ustr, u"\u2283"_ustr },
+ { u"SupersetEqual"_ustr, u"\u2287"_ustr },
+ { u"Supset"_ustr, u"\u22D1"_ustr },
+ { u"THORN"_ustr, u"\u00DE"_ustr },
+ { u"TRADE"_ustr, u"\u2122"_ustr },
+ { u"TSHcy"_ustr, u"\u040B"_ustr },
+ { u"TScy"_ustr, u"\u0426"_ustr },
+ { u"Tab"_ustr, u"\u0009"_ustr },
+ { u"Tau"_ustr, u"\u03A4"_ustr },
+ { u"Tcaron"_ustr, u"\u0164"_ustr },
+ { u"Tcedil"_ustr, u"\u0162"_ustr },
+ { u"Tcy"_ustr, u"\u0422"_ustr },
+ { u"Tfr"_ustr, u"\U0001D517"_ustr },
+ { u"Therefore"_ustr, u"\u2234"_ustr },
+ { u"Theta"_ustr, u"\u0398"_ustr },
+ { u"ThickSpace"_ustr, u"\u205F\u200A"_ustr },
+ { u"ThinSpace"_ustr, u"\u2009"_ustr },
+ { u"Tilde"_ustr, u"\u223C"_ustr },
+ { u"TildeEqual"_ustr, u"\u2243"_ustr },
+ { u"TildeFullEqual"_ustr, u"\u2245"_ustr },
+ { u"TildeTilde"_ustr, u"\u2248"_ustr },
+ { u"Topf"_ustr, u"\U0001D54B"_ustr },
+ { u"TripleDot"_ustr, u"\u20DB"_ustr },
+ { u"Tscr"_ustr, u"\U0001D4AF"_ustr },
+ { u"Tstrok"_ustr, u"\u0166"_ustr },
+ { u"Uacute"_ustr, u"\u00DA"_ustr },
+ { u"Uarr"_ustr, u"\u219F"_ustr },
+ { u"Uarrocir"_ustr, u"\u2949"_ustr },
+ { u"Ubrcy"_ustr, u"\u040E"_ustr },
+ { u"Ubreve"_ustr, u"\u016C"_ustr },
+ { u"Ucirc"_ustr, u"\u00DB"_ustr },
+ { u"Ucy"_ustr, u"\u0423"_ustr },
+ { u"Udblac"_ustr, u"\u0170"_ustr },
+ { u"Ufr"_ustr, u"\U0001D518"_ustr },
+ { u"Ugrave"_ustr, u"\u00D9"_ustr },
+ { u"Umacr"_ustr, u"\u016A"_ustr },
+ { u"UnderBar"_ustr, u"\u005F"_ustr },
+ { u"UnderBrace"_ustr, u"\u23DF"_ustr },
+ { u"UnderBracket"_ustr, u"\u23B5"_ustr },
+ { u"UnderParenthesis"_ustr, u"\u23DD"_ustr },
+ { u"Union"_ustr, u"\u22C3"_ustr },
+ { u"UnionPlus"_ustr, u"\u228E"_ustr },
+ { u"Uogon"_ustr, u"\u0172"_ustr },
+ { u"Uopf"_ustr, u"\U0001D54C"_ustr },
+ { u"UpArrow"_ustr, u"\u2191"_ustr },
+ { u"UpArrowBar"_ustr, u"\u2912"_ustr },
+ { u"UpArrowDownArrow"_ustr, u"\u21C5"_ustr },
+ { u"UpDownArrow"_ustr, u"\u2195"_ustr },
+ { u"UpEquilibrium"_ustr, u"\u296E"_ustr },
+ { u"UpTee"_ustr, u"\u22A5"_ustr },
+ { u"UpTeeArrow"_ustr, u"\u21A5"_ustr },
+ { u"Uparrow"_ustr, u"\u21D1"_ustr },
+ { u"Updownarrow"_ustr, u"\u21D5"_ustr },
+ { u"UpperLeftArrow"_ustr, u"\u2196"_ustr },
+ { u"UpperRightArrow"_ustr, u"\u2197"_ustr },
+ { u"Upsi"_ustr, u"\u03D2"_ustr },
+ { u"Upsilon"_ustr, u"\u03A5"_ustr },
+ { u"Uring"_ustr, u"\u016E"_ustr },
+ { u"Uscr"_ustr, u"\U0001D4B0"_ustr },
+ { u"Utilde"_ustr, u"\u0168"_ustr },
+ { u"Uuml"_ustr, u"\u00DC"_ustr },
+ { u"VDash"_ustr, u"\u22AB"_ustr },
+ { u"Vbar"_ustr, u"\u2AEB"_ustr },
+ { u"Vcy"_ustr, u"\u0412"_ustr },
+ { u"Vdash"_ustr, u"\u22A9"_ustr },
+ { u"Vdashl"_ustr, u"\u2AE6"_ustr },
+ { u"Vee"_ustr, u"\u22C1"_ustr },
+ { u"Verbar"_ustr, u"\u2016"_ustr },
+ { u"Vert"_ustr, u"\u2016"_ustr },
+ { u"VerticalBar"_ustr, u"\u2223"_ustr },
+ { u"VerticalLine"_ustr, u"\u007C"_ustr },
+ { u"VerticalSeparator"_ustr, u"\u2758"_ustr },
+ { u"VerticalTilde"_ustr, u"\u2240"_ustr },
+ { u"VeryThinSpace"_ustr, u"\u200A"_ustr },
+ { u"Vfr"_ustr, u"\U0001D519"_ustr },
+ { u"Vopf"_ustr, u"\U0001D54D"_ustr },
+ { u"Vscr"_ustr, u"\U0001D4B1"_ustr },
+ { u"Vvdash"_ustr, u"\u22AA"_ustr },
+ { u"Wcirc"_ustr, u"\u0174"_ustr },
+ { u"Wedge"_ustr, u"\u22C0"_ustr },
+ { u"Wfr"_ustr, u"\U0001D51A"_ustr },
+ { u"Wopf"_ustr, u"\U0001D54E"_ustr },
+ { u"Wscr"_ustr, u"\U0001D4B2"_ustr },
+ { u"Xfr"_ustr, u"\U0001D51B"_ustr },
+ { u"Xi"_ustr, u"\u039E"_ustr },
+ { u"Xopf"_ustr, u"\U0001D54F"_ustr },
+ { u"Xscr"_ustr, u"\U0001D4B3"_ustr },
+ { u"YAcy"_ustr, u"\u042F"_ustr },
+ { u"YIcy"_ustr, u"\u0407"_ustr },
+ { u"YUcy"_ustr, u"\u042E"_ustr },
+ { u"Yacute"_ustr, u"\u00DD"_ustr },
+ { u"Ycirc"_ustr, u"\u0176"_ustr },
+ { u"Ycy"_ustr, u"\u042B"_ustr },
+ { u"Yfr"_ustr, u"\U0001D51C"_ustr },
+ { u"Yopf"_ustr, u"\U0001D550"_ustr },
+ { u"Yscr"_ustr, u"\U0001D4B4"_ustr },
+ { u"Yuml"_ustr, u"\u0178"_ustr },
+ { u"ZHcy"_ustr, u"\u0416"_ustr },
+ { u"Zacute"_ustr, u"\u0179"_ustr },
+ { u"Zcaron"_ustr, u"\u017D"_ustr },
+ { u"Zcy"_ustr, u"\u0417"_ustr },
+ { u"Zdot"_ustr, u"\u017B"_ustr },
+ { u"ZeroWidthSpace"_ustr, u"\u200B"_ustr },
+ { u"Zeta"_ustr, u"\u0396"_ustr },
+ { u"Zfr"_ustr, u"\u2128"_ustr },
+ { u"Zopf"_ustr, u"\u2124"_ustr },
+ { u"Zscr"_ustr, u"\U0001D4B5"_ustr },
+ { u"aacute"_ustr, u"\u00E1"_ustr },
+ { u"abreve"_ustr, u"\u0103"_ustr },
+ { u"ac"_ustr, u"\u223E"_ustr },
+ { u"acE"_ustr, u"\u223E\u0333"_ustr },
+ { u"acd"_ustr, u"\u223F"_ustr },
+ { u"acirc"_ustr, u"\u00E2"_ustr },
+ { u"acute"_ustr, u"\u00B4"_ustr },
+ { u"acy"_ustr, u"\u0430"_ustr },
+ { u"aelig"_ustr, u"\u00E6"_ustr },
+ { u"af"_ustr, u"\u2061"_ustr },
+ { u"afr"_ustr, u"\U0001D51E"_ustr },
+ { u"agrave"_ustr, u"\u00E0"_ustr },
+ { u"alefsym"_ustr, u"\u2135"_ustr },
+ { u"aleph"_ustr, u"\u2135"_ustr },
+ { u"alpha"_ustr, u"\u03B1"_ustr },
+ { u"amacr"_ustr, u"\u0101"_ustr },
+ { u"amalg"_ustr, u"\u2A3F"_ustr },
+ { u"amp"_ustr, u"\u0026"_ustr },
+ { u"and"_ustr, u"\u2227"_ustr },
+ { u"andand"_ustr, u"\u2A55"_ustr },
+ { u"andd"_ustr, u"\u2A5C"_ustr },
+ { u"andslope"_ustr, u"\u2A58"_ustr },
+ { u"andv"_ustr, u"\u2A5A"_ustr },
+ { u"ang"_ustr, u"\u2220"_ustr },
+ { u"ange"_ustr, u"\u29A4"_ustr },
+ { u"angle"_ustr, u"\u2220"_ustr },
+ { u"angmsd"_ustr, u"\u2221"_ustr },
+ { u"angmsdaa"_ustr, u"\u29A8"_ustr },
+ { u"angmsdab"_ustr, u"\u29A9"_ustr },
+ { u"angmsdac"_ustr, u"\u29AA"_ustr },
+ { u"angmsdad"_ustr, u"\u29AB"_ustr },
+ { u"angmsdae"_ustr, u"\u29AC"_ustr },
+ { u"angmsdaf"_ustr, u"\u29AD"_ustr },
+ { u"angmsdag"_ustr, u"\u29AE"_ustr },
+ { u"angmsdah"_ustr, u"\u29AF"_ustr },
+ { u"angrt"_ustr, u"\u221F"_ustr },
+ { u"angrtvb"_ustr, u"\u22BE"_ustr },
+ { u"angrtvbd"_ustr, u"\u299D"_ustr },
+ { u"angsph"_ustr, u"\u2222"_ustr },
+ { u"angst"_ustr, u"\u00C5"_ustr },
+ { u"angzarr"_ustr, u"\u237C"_ustr },
+ { u"aogon"_ustr, u"\u0105"_ustr },
+ { u"aopf"_ustr, u"\U0001D552"_ustr },
+ { u"ap"_ustr, u"\u2248"_ustr },
+ { u"apE"_ustr, u"\u2A70"_ustr },
+ { u"apacir"_ustr, u"\u2A6F"_ustr },
+ { u"ape"_ustr, u"\u224A"_ustr },
+ { u"apid"_ustr, u"\u224B"_ustr },
+ { u"apos"_ustr, u"\u0027"_ustr },
+ { u"approx"_ustr, u"\u2248"_ustr },
+ { u"approxeq"_ustr, u"\u224A"_ustr },
+ { u"aring"_ustr, u"\u00E5"_ustr },
+ { u"ascr"_ustr, u"\U0001D4B6"_ustr },
+ { u"ast"_ustr, u"\u002A"_ustr },
+ { u"asymp"_ustr, u"\u2248"_ustr },
+ { u"asympeq"_ustr, u"\u224D"_ustr },
+ { u"atilde"_ustr, u"\u00E3"_ustr },
+ { u"auml"_ustr, u"\u00E4"_ustr },
+ { u"awconint"_ustr, u"\u2233"_ustr },
+ { u"awint"_ustr, u"\u2A11"_ustr },
+ { u"bNot"_ustr, u"\u2AED"_ustr },
+ { u"backcong"_ustr, u"\u224C"_ustr },
+ { u"backepsilon"_ustr, u"\u03F6"_ustr },
+ { u"backprime"_ustr, u"\u2035"_ustr },
+ { u"backsim"_ustr, u"\u223D"_ustr },
+ { u"backsimeq"_ustr, u"\u22CD"_ustr },
+ { u"barvee"_ustr, u"\u22BD"_ustr },
+ { u"barwed"_ustr, u"\u2305"_ustr },
+ { u"barwedge"_ustr, u"\u2305"_ustr },
+ { u"bbrk"_ustr, u"\u23B5"_ustr },
+ { u"bbrktbrk"_ustr, u"\u23B6"_ustr },
+ { u"bcong"_ustr, u"\u224C"_ustr },
+ { u"bcy"_ustr, u"\u0431"_ustr },
+ { u"bdquo"_ustr, u"\u201E"_ustr },
+ { u"becaus"_ustr, u"\u2235"_ustr },
+ { u"because"_ustr, u"\u2235"_ustr },
+ { u"bemptyv"_ustr, u"\u29B0"_ustr },
+ { u"bepsi"_ustr, u"\u03F6"_ustr },
+ { u"bernou"_ustr, u"\u212C"_ustr },
+ { u"beta"_ustr, u"\u03B2"_ustr },
+ { u"beth"_ustr, u"\u2136"_ustr },
+ { u"between"_ustr, u"\u226C"_ustr },
+ { u"bfr"_ustr, u"\U0001D51F"_ustr },
+ { u"bigcap"_ustr, u"\u22C2"_ustr },
+ { u"bigcirc"_ustr, u"\u25EF"_ustr },
+ { u"bigcup"_ustr, u"\u22C3"_ustr },
+ { u"bigodot"_ustr, u"\u2A00"_ustr },
+ { u"bigoplus"_ustr, u"\u2A01"_ustr },
+ { u"bigotimes"_ustr, u"\u2A02"_ustr },
+ { u"bigsqcup"_ustr, u"\u2A06"_ustr },
+ { u"bigstar"_ustr, u"\u2605"_ustr },
+ { u"bigtriangledown"_ustr, u"\u25BD"_ustr },
+ { u"bigtriangleup"_ustr, u"\u25B3"_ustr },
+ { u"biguplus"_ustr, u"\u2A04"_ustr },
+ { u"bigvee"_ustr, u"\u22C1"_ustr },
+ { u"bigwedge"_ustr, u"\u22C0"_ustr },
+ { u"bkarow"_ustr, u"\u290D"_ustr },
+ { u"blacklozenge"_ustr, u"\u29EB"_ustr },
+ { u"blacksquare"_ustr, u"\u25AA"_ustr },
+ { u"blacktriangle"_ustr, u"\u25B4"_ustr },
+ { u"blacktriangledown"_ustr, u"\u25BE"_ustr },
+ { u"blacktriangleleft"_ustr, u"\u25C2"_ustr },
+ { u"blacktriangleright"_ustr, u"\u25B8"_ustr },
+ { u"blank"_ustr, u"\u2423"_ustr },
+ { u"blk12"_ustr, u"\u2592"_ustr },
+ { u"blk14"_ustr, u"\u2591"_ustr },
+ { u"blk34"_ustr, u"\u2593"_ustr },
+ { u"block"_ustr, u"\u2588"_ustr },
+ { u"bne"_ustr, u"\u003D\u20E5"_ustr },
+ { u"bnequiv"_ustr, u"\u2261\u20E5"_ustr },
+ { u"bnot"_ustr, u"\u2310"_ustr },
+ { u"bopf"_ustr, u"\U0001D553"_ustr },
+ { u"bot"_ustr, u"\u22A5"_ustr },
+ { u"bottom"_ustr, u"\u22A5"_ustr },
+ { u"bowtie"_ustr, u"\u22C8"_ustr },
+ { u"boxDL"_ustr, u"\u2557"_ustr },
+ { u"boxDR"_ustr, u"\u2554"_ustr },
+ { u"boxDl"_ustr, u"\u2556"_ustr },
+ { u"boxDr"_ustr, u"\u2553"_ustr },
+ { u"boxH"_ustr, u"\u2550"_ustr },
+ { u"boxHD"_ustr, u"\u2566"_ustr },
+ { u"boxHU"_ustr, u"\u2569"_ustr },
+ { u"boxHd"_ustr, u"\u2564"_ustr },
+ { u"boxHu"_ustr, u"\u2567"_ustr },
+ { u"boxUL"_ustr, u"\u255D"_ustr },
+ { u"boxUR"_ustr, u"\u255A"_ustr },
+ { u"boxUl"_ustr, u"\u255C"_ustr },
+ { u"boxUr"_ustr, u"\u2559"_ustr },
+ { u"boxV"_ustr, u"\u2551"_ustr },
+ { u"boxVH"_ustr, u"\u256C"_ustr },
+ { u"boxVL"_ustr, u"\u2563"_ustr },
+ { u"boxVR"_ustr, u"\u2560"_ustr },
+ { u"boxVh"_ustr, u"\u256B"_ustr },
+ { u"boxVl"_ustr, u"\u2562"_ustr },
+ { u"boxVr"_ustr, u"\u255F"_ustr },
+ { u"boxbox"_ustr, u"\u29C9"_ustr },
+ { u"boxdL"_ustr, u"\u2555"_ustr },
+ { u"boxdR"_ustr, u"\u2552"_ustr },
+ { u"boxdl"_ustr, u"\u2510"_ustr },
+ { u"boxdr"_ustr, u"\u250C"_ustr },
+ { u"boxh"_ustr, u"\u2500"_ustr },
+ { u"boxhD"_ustr, u"\u2565"_ustr },
+ { u"boxhU"_ustr, u"\u2568"_ustr },
+ { u"boxhd"_ustr, u"\u252C"_ustr },
+ { u"boxhu"_ustr, u"\u2534"_ustr },
+ { u"boxminus"_ustr, u"\u229F"_ustr },
+ { u"boxplus"_ustr, u"\u229E"_ustr },
+ { u"boxtimes"_ustr, u"\u22A0"_ustr },
+ { u"boxuL"_ustr, u"\u255B"_ustr },
+ { u"boxuR"_ustr, u"\u2558"_ustr },
+ { u"boxul"_ustr, u"\u2518"_ustr },
+ { u"boxur"_ustr, u"\u2514"_ustr },
+ { u"boxv"_ustr, u"\u2502"_ustr },
+ { u"boxvH"_ustr, u"\u256A"_ustr },
+ { u"boxvL"_ustr, u"\u2561"_ustr },
+ { u"boxvR"_ustr, u"\u255E"_ustr },
+ { u"boxvh"_ustr, u"\u253C"_ustr },
+ { u"boxvl"_ustr, u"\u2524"_ustr },
+ { u"boxvr"_ustr, u"\u251C"_ustr },
+ { u"bprime"_ustr, u"\u2035"_ustr },
+ { u"breve"_ustr, u"\u02D8"_ustr },
+ { u"brvbar"_ustr, u"\u00A6"_ustr },
+ { u"bscr"_ustr, u"\U0001D4B7"_ustr },
+ { u"bsemi"_ustr, u"\u204F"_ustr },
+ { u"bsim"_ustr, u"\u223D"_ustr },
+ { u"bsime"_ustr, u"\u22CD"_ustr },
+ { u"bsol"_ustr, u"\u005C"_ustr },
+ { u"bsolb"_ustr, u"\u29C5"_ustr },
+ { u"bsolhsub"_ustr, u"\u27C8"_ustr },
+ { u"bull"_ustr, u"\u2022"_ustr },
+ { u"bullet"_ustr, u"\u2022"_ustr },
+ { u"bump"_ustr, u"\u224E"_ustr },
+ { u"bumpE"_ustr, u"\u2AAE"_ustr },
+ { u"bumpe"_ustr, u"\u224F"_ustr },
+ { u"bumpeq"_ustr, u"\u224F"_ustr },
+ { u"cacute"_ustr, u"\u0107"_ustr },
+ { u"cap"_ustr, u"\u2229"_ustr },
+ { u"capand"_ustr, u"\u2A44"_ustr },
+ { u"capbrcup"_ustr, u"\u2A49"_ustr },
+ { u"capcap"_ustr, u"\u2A4B"_ustr },
+ { u"capcup"_ustr, u"\u2A47"_ustr },
+ { u"capdot"_ustr, u"\u2A40"_ustr },
+ { u"caps"_ustr, u"\u2229\uFE00"_ustr },
+ { u"caret"_ustr, u"\u2041"_ustr },
+ { u"caron"_ustr, u"\u02C7"_ustr },
+ { u"ccaps"_ustr, u"\u2A4D"_ustr },
+ { u"ccaron"_ustr, u"\u010D"_ustr },
+ { u"ccedil"_ustr, u"\u00E7"_ustr },
+ { u"ccirc"_ustr, u"\u0109"_ustr },
+ { u"ccups"_ustr, u"\u2A4C"_ustr },
+ { u"ccupssm"_ustr, u"\u2A50"_ustr },
+ { u"cdot"_ustr, u"\u010B"_ustr },
+ { u"cedil"_ustr, u"\u00B8"_ustr },
+ { u"cemptyv"_ustr, u"\u29B2"_ustr },
+ { u"cent"_ustr, u"\u00A2"_ustr },
+ { u"centerdot"_ustr, u"\u00B7"_ustr },
+ { u"cfr"_ustr, u"\U0001D520"_ustr },
+ { u"chcy"_ustr, u"\u0447"_ustr },
+ { u"check"_ustr, u"\u2713"_ustr },
+ { u"checkmark"_ustr, u"\u2713"_ustr },
+ { u"chi"_ustr, u"\u03C7"_ustr },
+ { u"cir"_ustr, u"\u25CB"_ustr },
+ { u"cirE"_ustr, u"\u29C3"_ustr },
+ { u"circ"_ustr, u"\u02C6"_ustr },
+ { u"circeq"_ustr, u"\u2257"_ustr },
+ { u"circlearrowleft"_ustr, u"\u21BA"_ustr },
+ { u"circlearrowright"_ustr, u"\u21BB"_ustr },
+ { u"circledR"_ustr, u"\u00AE"_ustr },
+ { u"circledS"_ustr, u"\u24C8"_ustr },
+ { u"circledast"_ustr, u"\u229B"_ustr },
+ { u"circledcirc"_ustr, u"\u229A"_ustr },
+ { u"circleddash"_ustr, u"\u229D"_ustr },
+ { u"cire"_ustr, u"\u2257"_ustr },
+ { u"cirfnint"_ustr, u"\u2A10"_ustr },
+ { u"cirmid"_ustr, u"\u2AEF"_ustr },
+ { u"cirscir"_ustr, u"\u29C2"_ustr },
+ { u"clubs"_ustr, u"\u2663"_ustr },
+ { u"clubsuit"_ustr, u"\u2663"_ustr },
+ { u"colon"_ustr, u"\u003A"_ustr },
+ { u"colone"_ustr, u"\u2254"_ustr },
+ { u"coloneq"_ustr, u"\u2254"_ustr },
+ { u"comma"_ustr, u"\u002C"_ustr },
+ { u"commat"_ustr, u"\u0040"_ustr },
+ { u"comp"_ustr, u"\u2201"_ustr },
+ { u"compfn"_ustr, u"\u2218"_ustr },
+ { u"complement"_ustr, u"\u2201"_ustr },
+ { u"complexes"_ustr, u"\u2102"_ustr },
+ { u"cong"_ustr, u"\u2245"_ustr },
+ { u"congdot"_ustr, u"\u2A6D"_ustr },
+ { u"conint"_ustr, u"\u222E"_ustr },
+ { u"copf"_ustr, u"\U0001D554"_ustr },
+ { u"coprod"_ustr, u"\u2210"_ustr },
+ { u"copy"_ustr, u"\u00A9"_ustr },
+ { u"copysr"_ustr, u"\u2117"_ustr },
+ { u"crarr"_ustr, u"\u21B5"_ustr },
+ { u"cross"_ustr, u"\u2717"_ustr },
+ { u"cscr"_ustr, u"\U0001D4B8"_ustr },
+ { u"csub"_ustr, u"\u2ACF"_ustr },
+ { u"csube"_ustr, u"\u2AD1"_ustr },
+ { u"csup"_ustr, u"\u2AD0"_ustr },
+ { u"csupe"_ustr, u"\u2AD2"_ustr },
+ { u"ctdot"_ustr, u"\u22EF"_ustr },
+ { u"cudarrl"_ustr, u"\u2938"_ustr },
+ { u"cudarrr"_ustr, u"\u2935"_ustr },
+ { u"cuepr"_ustr, u"\u22DE"_ustr },
+ { u"cuesc"_ustr, u"\u22DF"_ustr },
+ { u"cularr"_ustr, u"\u21B6"_ustr },
+ { u"cularrp"_ustr, u"\u293D"_ustr },
+ { u"cup"_ustr, u"\u222A"_ustr },
+ { u"cupbrcap"_ustr, u"\u2A48"_ustr },
+ { u"cupcap"_ustr, u"\u2A46"_ustr },
+ { u"cupcup"_ustr, u"\u2A4A"_ustr },
+ { u"cupdot"_ustr, u"\u228D"_ustr },
+ { u"cupor"_ustr, u"\u2A45"_ustr },
+ { u"cups"_ustr, u"\u222A\uFE00"_ustr },
+ { u"curarr"_ustr, u"\u21B7"_ustr },
+ { u"curarrm"_ustr, u"\u293C"_ustr },
+ { u"curlyeqprec"_ustr, u"\u22DE"_ustr },
+ { u"curlyeqsucc"_ustr, u"\u22DF"_ustr },
+ { u"curlyvee"_ustr, u"\u22CE"_ustr },
+ { u"curlywedge"_ustr, u"\u22CF"_ustr },
+ { u"curren"_ustr, u"\u00A4"_ustr },
+ { u"curvearrowleft"_ustr, u"\u21B6"_ustr },
+ { u"curvearrowright"_ustr, u"\u21B7"_ustr },
+ { u"cuvee"_ustr, u"\u22CE"_ustr },
+ { u"cuwed"_ustr, u"\u22CF"_ustr },
+ { u"cwconint"_ustr, u"\u2232"_ustr },
+ { u"cwint"_ustr, u"\u2231"_ustr },
+ { u"cylcty"_ustr, u"\u232D"_ustr },
+ { u"dArr"_ustr, u"\u21D3"_ustr },
+ { u"dHar"_ustr, u"\u2965"_ustr },
+ { u"dagger"_ustr, u"\u2020"_ustr },
+ { u"daleth"_ustr, u"\u2138"_ustr },
+ { u"darr"_ustr, u"\u2193"_ustr },
+ { u"dash"_ustr, u"\u2010"_ustr },
+ { u"dashv"_ustr, u"\u22A3"_ustr },
+ { u"dbkarow"_ustr, u"\u290F"_ustr },
+ { u"dblac"_ustr, u"\u02DD"_ustr },
+ { u"dcaron"_ustr, u"\u010F"_ustr },
+ { u"dcy"_ustr, u"\u0434"_ustr },
+ { u"dd"_ustr, u"\u2146"_ustr },
+ { u"ddagger"_ustr, u"\u2021"_ustr },
+ { u"ddarr"_ustr, u"\u21CA"_ustr },
+ { u"ddotseq"_ustr, u"\u2A77"_ustr },
+ { u"deg"_ustr, u"\u00B0"_ustr },
+ { u"delta"_ustr, u"\u03B4"_ustr },
+ { u"demptyv"_ustr, u"\u29B1"_ustr },
+ { u"dfisht"_ustr, u"\u297F"_ustr },
+ { u"dfr"_ustr, u"\U0001D521"_ustr },
+ { u"dharl"_ustr, u"\u21C3"_ustr },
+ { u"dharr"_ustr, u"\u21C2"_ustr },
+ { u"diam"_ustr, u"\u22C4"_ustr },
+ { u"diamond"_ustr, u"\u22C4"_ustr },
+ { u"diamondsuit"_ustr, u"\u2666"_ustr },
+ { u"diams"_ustr, u"\u2666"_ustr },
+ { u"die"_ustr, u"\u00A8"_ustr },
+ { u"digamma"_ustr, u"\u03DD"_ustr },
+ { u"disin"_ustr, u"\u22F2"_ustr },
+ { u"div"_ustr, u"\u00F7"_ustr },
+ { u"divide"_ustr, u"\u00F7"_ustr },
+ { u"divideontimes"_ustr, u"\u22C7"_ustr },
+ { u"divonx"_ustr, u"\u22C7"_ustr },
+ { u"djcy"_ustr, u"\u0452"_ustr },
+ { u"dlcorn"_ustr, u"\u231E"_ustr },
+ { u"dlcrop"_ustr, u"\u230D"_ustr },
+ { u"dollar"_ustr, u"\u0024"_ustr },
+ { u"dopf"_ustr, u"\U0001D555"_ustr },
+ { u"dot"_ustr, u"\u02D9"_ustr },
+ { u"doteq"_ustr, u"\u2250"_ustr },
+ { u"doteqdot"_ustr, u"\u2251"_ustr },
+ { u"dotminus"_ustr, u"\u2238"_ustr },
+ { u"dotplus"_ustr, u"\u2214"_ustr },
+ { u"dotsquare"_ustr, u"\u22A1"_ustr },
+ { u"doublebarwedge"_ustr, u"\u2306"_ustr },
+ { u"downarrow"_ustr, u"\u2193"_ustr },
+ { u"downdownarrows"_ustr, u"\u21CA"_ustr },
+ { u"downharpoonleft"_ustr, u"\u21C3"_ustr },
+ { u"downharpoonright"_ustr, u"\u21C2"_ustr },
+ { u"drbkarow"_ustr, u"\u2910"_ustr },
+ { u"drcorn"_ustr, u"\u231F"_ustr },
+ { u"drcrop"_ustr, u"\u230C"_ustr },
+ { u"dscr"_ustr, u"\U0001D4B9"_ustr },
+ { u"dscy"_ustr, u"\u0455"_ustr },
+ { u"dsol"_ustr, u"\u29F6"_ustr },
+ { u"dstrok"_ustr, u"\u0111"_ustr },
+ { u"dtdot"_ustr, u"\u22F1"_ustr },
+ { u"dtri"_ustr, u"\u25BF"_ustr },
+ { u"dtrif"_ustr, u"\u25BE"_ustr },
+ { u"duarr"_ustr, u"\u21F5"_ustr },
+ { u"duhar"_ustr, u"\u296F"_ustr },
+ { u"dwangle"_ustr, u"\u29A6"_ustr },
+ { u"dzcy"_ustr, u"\u045F"_ustr },
+ { u"dzigrarr"_ustr, u"\u27FF"_ustr },
+ { u"eDDot"_ustr, u"\u2A77"_ustr },
+ { u"eDot"_ustr, u"\u2251"_ustr },
+ { u"eacute"_ustr, u"\u00E9"_ustr },
+ { u"easter"_ustr, u"\u2A6E"_ustr },
+ { u"ecaron"_ustr, u"\u011B"_ustr },
+ { u"ecir"_ustr, u"\u2256"_ustr },
+ { u"ecirc"_ustr, u"\u00EA"_ustr },
+ { u"ecolon"_ustr, u"\u2255"_ustr },
+ { u"ecy"_ustr, u"\u044D"_ustr },
+ { u"edot"_ustr, u"\u0117"_ustr },
+ { u"ee"_ustr, u"\u2147"_ustr },
+ { u"efDot"_ustr, u"\u2252"_ustr },
+ { u"efr"_ustr, u"\U0001D522"_ustr },
+ { u"eg"_ustr, u"\u2A9A"_ustr },
+ { u"egrave"_ustr, u"\u00E8"_ustr },
+ { u"egs"_ustr, u"\u2A96"_ustr },
+ { u"egsdot"_ustr, u"\u2A98"_ustr },
+ { u"el"_ustr, u"\u2A99"_ustr },
+ { u"elinters"_ustr, u"\u23E7"_ustr },
+ { u"ell"_ustr, u"\u2113"_ustr },
+ { u"els"_ustr, u"\u2A95"_ustr },
+ { u"elsdot"_ustr, u"\u2A97"_ustr },
+ { u"emacr"_ustr, u"\u0113"_ustr },
+ { u"empty"_ustr, u"\u2205"_ustr },
+ { u"emptyset"_ustr, u"\u2205"_ustr },
+ { u"emptyv"_ustr, u"\u2205"_ustr },
+ { u"emsp"_ustr, u"\u2003"_ustr },
+ { u"emsp13"_ustr, u"\u2004"_ustr },
+ { u"emsp14"_ustr, u"\u2005"_ustr },
+ { u"eng"_ustr, u"\u014B"_ustr },
+ { u"ensp"_ustr, u"\u2002"_ustr },
+ { u"eogon"_ustr, u"\u0119"_ustr },
+ { u"eopf"_ustr, u"\U0001D556"_ustr },
+ { u"epar"_ustr, u"\u22D5"_ustr },
+ { u"eparsl"_ustr, u"\u29E3"_ustr },
+ { u"eplus"_ustr, u"\u2A71"_ustr },
+ { u"epsi"_ustr, u"\u03B5"_ustr },
+ { u"epsilon"_ustr, u"\u03B5"_ustr },
+ { u"epsiv"_ustr, u"\u03F5"_ustr },
+ { u"eqcirc"_ustr, u"\u2256"_ustr },
+ { u"eqcolon"_ustr, u"\u2255"_ustr },
+ { u"eqsim"_ustr, u"\u2242"_ustr },
+ { u"eqslantgtr"_ustr, u"\u2A96"_ustr },
+ { u"eqslantless"_ustr, u"\u2A95"_ustr },
+ { u"equals"_ustr, u"\u003D"_ustr },
+ { u"equest"_ustr, u"\u225F"_ustr },
+ { u"equiv"_ustr, u"\u2261"_ustr },
+ { u"equivDD"_ustr, u"\u2A78"_ustr },
+ { u"eqvparsl"_ustr, u"\u29E5"_ustr },
+ { u"erDot"_ustr, u"\u2253"_ustr },
+ { u"erarr"_ustr, u"\u2971"_ustr },
+ { u"escr"_ustr, u"\u212F"_ustr },
+ { u"esdot"_ustr, u"\u2250"_ustr },
+ { u"esim"_ustr, u"\u2242"_ustr },
+ { u"eta"_ustr, u"\u03B7"_ustr },
+ { u"eth"_ustr, u"\u00F0"_ustr },
+ { u"euml"_ustr, u"\u00EB"_ustr },
+ { u"euro"_ustr, u"\u20AC"_ustr },
+ { u"excl"_ustr, u"\u0021"_ustr },
+ { u"exist"_ustr, u"\u2203"_ustr },
+ { u"expectation"_ustr, u"\u2130"_ustr },
+ { u"exponentiale"_ustr, u"\u2147"_ustr },
+ { u"fallingdotseq"_ustr, u"\u2252"_ustr },
+ { u"fcy"_ustr, u"\u0444"_ustr },
+ { u"female"_ustr, u"\u2640"_ustr },
+ { u"ffilig"_ustr, u"\uFB03"_ustr },
+ { u"fflig"_ustr, u"\uFB00"_ustr },
+ { u"ffllig"_ustr, u"\uFB04"_ustr },
+ { u"ffr"_ustr, u"\U0001D523"_ustr },
+ { u"filig"_ustr, u"\uFB01"_ustr },
+ { u"fjlig"_ustr, u"\u0066\u006A"_ustr },
+ { u"flat"_ustr, u"\u266D"_ustr },
+ { u"fllig"_ustr, u"\uFB02"_ustr },
+ { u"fltns"_ustr, u"\u25B1"_ustr },
+ { u"fnof"_ustr, u"\u0192"_ustr },
+ { u"fopf"_ustr, u"\U0001D557"_ustr },
+ { u"forall"_ustr, u"\u2200"_ustr },
+ { u"fork"_ustr, u"\u22D4"_ustr },
+ { u"forkv"_ustr, u"\u2AD9"_ustr },
+ { u"fpartint"_ustr, u"\u2A0D"_ustr },
+ { u"frac12"_ustr, u"\u00BD"_ustr },
+ { u"frac13"_ustr, u"\u2153"_ustr },
+ { u"frac14"_ustr, u"\u00BC"_ustr },
+ { u"frac15"_ustr, u"\u2155"_ustr },
+ { u"frac16"_ustr, u"\u2159"_ustr },
+ { u"frac18"_ustr, u"\u215B"_ustr },
+ { u"frac23"_ustr, u"\u2154"_ustr },
+ { u"frac25"_ustr, u"\u2156"_ustr },
+ { u"frac34"_ustr, u"\u00BE"_ustr },
+ { u"frac35"_ustr, u"\u2157"_ustr },
+ { u"frac38"_ustr, u"\u215C"_ustr },
+ { u"frac45"_ustr, u"\u2158"_ustr },
+ { u"frac56"_ustr, u"\u215A"_ustr },
+ { u"frac58"_ustr, u"\u215D"_ustr },
+ { u"frac78"_ustr, u"\u215E"_ustr },
+ { u"frasl"_ustr, u"\u2044"_ustr },
+ { u"frown"_ustr, u"\u2322"_ustr },
+ { u"fscr"_ustr, u"\U0001D4BB"_ustr },
+ { u"gE"_ustr, u"\u2267"_ustr },
+ { u"gEl"_ustr, u"\u2A8C"_ustr },
+ { u"gacute"_ustr, u"\u01F5"_ustr },
+ { u"gamma"_ustr, u"\u03B3"_ustr },
+ { u"gammad"_ustr, u"\u03DD"_ustr },
+ { u"gap"_ustr, u"\u2A86"_ustr },
+ { u"gbreve"_ustr, u"\u011F"_ustr },
+ { u"gcirc"_ustr, u"\u011D"_ustr },
+ { u"gcy"_ustr, u"\u0433"_ustr },
+ { u"gdot"_ustr, u"\u0121"_ustr },
+ { u"ge"_ustr, u"\u2265"_ustr },
+ { u"gel"_ustr, u"\u22DB"_ustr },
+ { u"geq"_ustr, u"\u2265"_ustr },
+ { u"geqq"_ustr, u"\u2267"_ustr },
+ { u"geqslant"_ustr, u"\u2A7E"_ustr },
+ { u"ges"_ustr, u"\u2A7E"_ustr },
+ { u"gescc"_ustr, u"\u2AA9"_ustr },
+ { u"gesdot"_ustr, u"\u2A80"_ustr },
+ { u"gesdoto"_ustr, u"\u2A82"_ustr },
+ { u"gesdotol"_ustr, u"\u2A84"_ustr },
+ { u"gesl"_ustr, u"\u22DB\uFE00"_ustr },
+ { u"gesles"_ustr, u"\u2A94"_ustr },
+ { u"gfr"_ustr, u"\U0001D524"_ustr },
+ { u"gg"_ustr, u"\u226B"_ustr },
+ { u"ggg"_ustr, u"\u22D9"_ustr },
+ { u"gimel"_ustr, u"\u2137"_ustr },
+ { u"gjcy"_ustr, u"\u0453"_ustr },
+ { u"gl"_ustr, u"\u2277"_ustr },
+ { u"glE"_ustr, u"\u2A92"_ustr },
+ { u"gla"_ustr, u"\u2AA5"_ustr },
+ { u"glj"_ustr, u"\u2AA4"_ustr },
+ { u"gnE"_ustr, u"\u2269"_ustr },
+ { u"gnap"_ustr, u"\u2A8A"_ustr },
+ { u"gnapprox"_ustr, u"\u2A8A"_ustr },
+ { u"gne"_ustr, u"\u2A88"_ustr },
+ { u"gneq"_ustr, u"\u2A88"_ustr },
+ { u"gneqq"_ustr, u"\u2269"_ustr },
+ { u"gnsim"_ustr, u"\u22E7"_ustr },
+ { u"gopf"_ustr, u"\U0001D558"_ustr },
+ { u"grave"_ustr, u"\u0060"_ustr },
+ { u"gscr"_ustr, u"\u210A"_ustr },
+ { u"gsim"_ustr, u"\u2273"_ustr },
+ { u"gsime"_ustr, u"\u2A8E"_ustr },
+ { u"gsiml"_ustr, u"\u2A90"_ustr },
+ { u"gt"_ustr, u"\u003E"_ustr },
+ { u"gtcc"_ustr, u"\u2AA7"_ustr },
+ { u"gtcir"_ustr, u"\u2A7A"_ustr },
+ { u"gtdot"_ustr, u"\u22D7"_ustr },
+ { u"gtlPar"_ustr, u"\u2995"_ustr },
+ { u"gtquest"_ustr, u"\u2A7C"_ustr },
+ { u"gtrapprox"_ustr, u"\u2A86"_ustr },
+ { u"gtrarr"_ustr, u"\u2978"_ustr },
+ { u"gtrdot"_ustr, u"\u22D7"_ustr },
+ { u"gtreqless"_ustr, u"\u22DB"_ustr },
+ { u"gtreqqless"_ustr, u"\u2A8C"_ustr },
+ { u"gtrless"_ustr, u"\u2277"_ustr },
+ { u"gtrsim"_ustr, u"\u2273"_ustr },
+ { u"gvertneqq"_ustr, u"\u2269\uFE00"_ustr },
+ { u"gvnE"_ustr, u"\u2269\uFE00"_ustr },
+ { u"hArr"_ustr, u"\u21D4"_ustr },
+ { u"hairsp"_ustr, u"\u200A"_ustr },
+ { u"half"_ustr, u"\u00BD"_ustr },
+ { u"hamilt"_ustr, u"\u210B"_ustr },
+ { u"hardcy"_ustr, u"\u044A"_ustr },
+ { u"harr"_ustr, u"\u2194"_ustr },
+ { u"harrcir"_ustr, u"\u2948"_ustr },
+ { u"harrw"_ustr, u"\u21AD"_ustr },
+ { u"hbar"_ustr, u"\u210F"_ustr },
+ { u"hcirc"_ustr, u"\u0125"_ustr },
+ { u"hearts"_ustr, u"\u2665"_ustr },
+ { u"heartsuit"_ustr, u"\u2665"_ustr },
+ { u"hellip"_ustr, u"\u2026"_ustr },
+ { u"hercon"_ustr, u"\u22B9"_ustr },
+ { u"hfr"_ustr, u"\U0001D525"_ustr },
+ { u"hksearow"_ustr, u"\u2925"_ustr },
+ { u"hkswarow"_ustr, u"\u2926"_ustr },
+ { u"hoarr"_ustr, u"\u21FF"_ustr },
+ { u"homtht"_ustr, u"\u223B"_ustr },
+ { u"hookleftarrow"_ustr, u"\u21A9"_ustr },
+ { u"hookrightarrow"_ustr, u"\u21AA"_ustr },
+ { u"hopf"_ustr, u"\U0001D559"_ustr },
+ { u"horbar"_ustr, u"\u2015"_ustr },
+ { u"hscr"_ustr, u"\U0001D4BD"_ustr },
+ { u"hslash"_ustr, u"\u210F"_ustr },
+ { u"hstrok"_ustr, u"\u0127"_ustr },
+ { u"hybull"_ustr, u"\u2043"_ustr },
+ { u"hyphen"_ustr, u"\u2010"_ustr },
+ { u"iacute"_ustr, u"\u00ED"_ustr },
+ { u"ic"_ustr, u"\u2063"_ustr },
+ { u"icirc"_ustr, u"\u00EE"_ustr },
+ { u"icy"_ustr, u"\u0438"_ustr },
+ { u"iecy"_ustr, u"\u0435"_ustr },
+ { u"iexcl"_ustr, u"\u00A1"_ustr },
+ { u"iff"_ustr, u"\u21D4"_ustr },
+ { u"ifr"_ustr, u"\U0001D526"_ustr },
+ { u"igrave"_ustr, u"\u00EC"_ustr },
+ { u"ii"_ustr, u"\u2148"_ustr },
+ { u"iiiint"_ustr, u"\u2A0C"_ustr },
+ { u"iiint"_ustr, u"\u222D"_ustr },
+ { u"iinfin"_ustr, u"\u29DC"_ustr },
+ { u"iiota"_ustr, u"\u2129"_ustr },
+ { u"ijlig"_ustr, u"\u0133"_ustr },
+ { u"imacr"_ustr, u"\u012B"_ustr },
+ { u"image"_ustr, u"\u2111"_ustr },
+ { u"imagline"_ustr, u"\u2110"_ustr },
+ { u"imagpart"_ustr, u"\u2111"_ustr },
+ { u"imath"_ustr, u"\u0131"_ustr },
+ { u"imof"_ustr, u"\u22B7"_ustr },
+ { u"imped"_ustr, u"\u01B5"_ustr },
+ { u"in"_ustr, u"\u2208"_ustr },
+ { u"incare"_ustr, u"\u2105"_ustr },
+ { u"infin"_ustr, u"\u221E"_ustr },
+ { u"infintie"_ustr, u"\u29DD"_ustr },
+ { u"inodot"_ustr, u"\u0131"_ustr },
+ { u"int"_ustr, u"\u222B"_ustr },
+ { u"intcal"_ustr, u"\u22BA"_ustr },
+ { u"integers"_ustr, u"\u2124"_ustr },
+ { u"intercal"_ustr, u"\u22BA"_ustr },
+ { u"intlarhk"_ustr, u"\u2A17"_ustr },
+ { u"intprod"_ustr, u"\u2A3C"_ustr },
+ { u"iocy"_ustr, u"\u0451"_ustr },
+ { u"iogon"_ustr, u"\u012F"_ustr },
+ { u"iopf"_ustr, u"\U0001D55A"_ustr },
+ { u"iota"_ustr, u"\u03B9"_ustr },
+ { u"iprod"_ustr, u"\u2A3C"_ustr },
+ { u"iquest"_ustr, u"\u00BF"_ustr },
+ { u"iscr"_ustr, u"\U0001D4BE"_ustr },
+ { u"isin"_ustr, u"\u2208"_ustr },
+ { u"isinE"_ustr, u"\u22F9"_ustr },
+ { u"isindot"_ustr, u"\u22F5"_ustr },
+ { u"isins"_ustr, u"\u22F4"_ustr },
+ { u"isinsv"_ustr, u"\u22F3"_ustr },
+ { u"isinv"_ustr, u"\u2208"_ustr },
+ { u"it"_ustr, u"\u2062"_ustr },
+ { u"itilde"_ustr, u"\u0129"_ustr },
+ { u"iukcy"_ustr, u"\u0456"_ustr },
+ { u"iuml"_ustr, u"\u00EF"_ustr },
+ { u"jcirc"_ustr, u"\u0135"_ustr },
+ { u"jcy"_ustr, u"\u0439"_ustr },
+ { u"jfr"_ustr, u"\U0001D527"_ustr },
+ { u"jmath"_ustr, u"\u0237"_ustr },
+ { u"jopf"_ustr, u"\U0001D55B"_ustr },
+ { u"jscr"_ustr, u"\U0001D4BF"_ustr },
+ { u"jsercy"_ustr, u"\u0458"_ustr },
+ { u"jukcy"_ustr, u"\u0454"_ustr },
+ { u"kappa"_ustr, u"\u03BA"_ustr },
+ { u"kappav"_ustr, u"\u03F0"_ustr },
+ { u"kcedil"_ustr, u"\u0137"_ustr },
+ { u"kcy"_ustr, u"\u043A"_ustr },
+ { u"kfr"_ustr, u"\U0001D528"_ustr },
+ { u"kgreen"_ustr, u"\u0138"_ustr },
+ { u"khcy"_ustr, u"\u0445"_ustr },
+ { u"kjcy"_ustr, u"\u045C"_ustr },
+ { u"kopf"_ustr, u"\U0001D55C"_ustr },
+ { u"kscr"_ustr, u"\U0001D4C0"_ustr },
+ { u"lAarr"_ustr, u"\u21DA"_ustr },
+ { u"lArr"_ustr, u"\u21D0"_ustr },
+ { u"lAtail"_ustr, u"\u291B"_ustr },
+ { u"lBarr"_ustr, u"\u290E"_ustr },
+ { u"lE"_ustr, u"\u2266"_ustr },
+ { u"lEg"_ustr, u"\u2A8B"_ustr },
+ { u"lHar"_ustr, u"\u2962"_ustr },
+ { u"lacute"_ustr, u"\u013A"_ustr },
+ { u"laemptyv"_ustr, u"\u29B4"_ustr },
+ { u"lagran"_ustr, u"\u2112"_ustr },
+ { u"lambda"_ustr, u"\u03BB"_ustr },
+ { u"lang"_ustr, u"\u27E8"_ustr },
+ { u"langd"_ustr, u"\u2991"_ustr },
+ { u"langle"_ustr, u"\u27E8"_ustr },
+ { u"lap"_ustr, u"\u2A85"_ustr },
+ { u"laquo"_ustr, u"\u00AB"_ustr },
+ { u"larr"_ustr, u"\u2190"_ustr },
+ { u"larrb"_ustr, u"\u21E4"_ustr },
+ { u"larrbfs"_ustr, u"\u291F"_ustr },
+ { u"larrfs"_ustr, u"\u291D"_ustr },
+ { u"larrhk"_ustr, u"\u21A9"_ustr },
+ { u"larrlp"_ustr, u"\u21AB"_ustr },
+ { u"larrpl"_ustr, u"\u2939"_ustr },
+ { u"larrsim"_ustr, u"\u2973"_ustr },
+ { u"larrtl"_ustr, u"\u21A2"_ustr },
+ { u"lat"_ustr, u"\u2AAB"_ustr },
+ { u"latail"_ustr, u"\u2919"_ustr },
+ { u"late"_ustr, u"\u2AAD"_ustr },
+ { u"lates"_ustr, u"\u2AAD\uFE00"_ustr },
+ { u"lbarr"_ustr, u"\u290C"_ustr },
+ { u"lbbrk"_ustr, u"\u2772"_ustr },
+ { u"lbrace"_ustr, u"\u007B"_ustr },
+ { u"lbrack"_ustr, u"\u005B"_ustr },
+ { u"lbrke"_ustr, u"\u298B"_ustr },
+ { u"lbrksld"_ustr, u"\u298F"_ustr },
+ { u"lbrkslu"_ustr, u"\u298D"_ustr },
+ { u"lcaron"_ustr, u"\u013E"_ustr },
+ { u"lcedil"_ustr, u"\u013C"_ustr },
+ { u"lceil"_ustr, u"\u2308"_ustr },
+ { u"lcub"_ustr, u"\u007B"_ustr },
+ { u"lcy"_ustr, u"\u043B"_ustr },
+ { u"ldca"_ustr, u"\u2936"_ustr },
+ { u"ldquo"_ustr, u"\u201C"_ustr },
+ { u"ldquor"_ustr, u"\u201E"_ustr },
+ { u"ldrdhar"_ustr, u"\u2967"_ustr },
+ { u"ldrushar"_ustr, u"\u294B"_ustr },
+ { u"ldsh"_ustr, u"\u21B2"_ustr },
+ { u"le"_ustr, u"\u2264"_ustr },
+ { u"leftarrow"_ustr, u"\u2190"_ustr },
+ { u"leftarrowtail"_ustr, u"\u21A2"_ustr },
+ { u"leftharpoondown"_ustr, u"\u21BD"_ustr },
+ { u"leftharpoonup"_ustr, u"\u21BC"_ustr },
+ { u"leftleftarrows"_ustr, u"\u21C7"_ustr },
+ { u"leftrightarrow"_ustr, u"\u2194"_ustr },
+ { u"leftrightarrows"_ustr, u"\u21C6"_ustr },
+ { u"leftrightharpoons"_ustr, u"\u21CB"_ustr },
+ { u"leftrightsquigarrow"_ustr, u"\u21AD"_ustr },
+ { u"leftthreetimes"_ustr, u"\u22CB"_ustr },
+ { u"leg"_ustr, u"\u22DA"_ustr },
+ { u"leq"_ustr, u"\u2264"_ustr },
+ { u"leqq"_ustr, u"\u2266"_ustr },
+ { u"leqslant"_ustr, u"\u2A7D"_ustr },
+ { u"les"_ustr, u"\u2A7D"_ustr },
+ { u"lescc"_ustr, u"\u2AA8"_ustr },
+ { u"lesdot"_ustr, u"\u2A7F"_ustr },
+ { u"lesdoto"_ustr, u"\u2A81"_ustr },
+ { u"lesdotor"_ustr, u"\u2A83"_ustr },
+ { u"lesg"_ustr, u"\u22DA\uFE00"_ustr },
+ { u"lesges"_ustr, u"\u2A93"_ustr },
+ { u"lessapprox"_ustr, u"\u2A85"_ustr },
+ { u"lessdot"_ustr, u"\u22D6"_ustr },
+ { u"lesseqgtr"_ustr, u"\u22DA"_ustr },
+ { u"lesseqqgtr"_ustr, u"\u2A8B"_ustr },
+ { u"lessgtr"_ustr, u"\u2276"_ustr },
+ { u"lesssim"_ustr, u"\u2272"_ustr },
+ { u"lfisht"_ustr, u"\u297C"_ustr },
+ { u"lfloor"_ustr, u"\u230A"_ustr },
+ { u"lfr"_ustr, u"\U0001D529"_ustr },
+ { u"lg"_ustr, u"\u2276"_ustr },
+ { u"lgE"_ustr, u"\u2A91"_ustr },
+ { u"lhard"_ustr, u"\u21BD"_ustr },
+ { u"lharu"_ustr, u"\u21BC"_ustr },
+ { u"lharul"_ustr, u"\u296A"_ustr },
+ { u"lhblk"_ustr, u"\u2584"_ustr },
+ { u"ljcy"_ustr, u"\u0459"_ustr },
+ { u"ll"_ustr, u"\u226A"_ustr },
+ { u"llarr"_ustr, u"\u21C7"_ustr },
+ { u"llcorner"_ustr, u"\u231E"_ustr },
+ { u"llhard"_ustr, u"\u296B"_ustr },
+ { u"lltri"_ustr, u"\u25FA"_ustr },
+ { u"lmidot"_ustr, u"\u0140"_ustr },
+ { u"lmoust"_ustr, u"\u23B0"_ustr },
+ { u"lmoustache"_ustr, u"\u23B0"_ustr },
+ { u"lnE"_ustr, u"\u2268"_ustr },
+ { u"lnap"_ustr, u"\u2A89"_ustr },
+ { u"lnapprox"_ustr, u"\u2A89"_ustr },
+ { u"lne"_ustr, u"\u2A87"_ustr },
+ { u"lneq"_ustr, u"\u2A87"_ustr },
+ { u"lneqq"_ustr, u"\u2268"_ustr },
+ { u"lnsim"_ustr, u"\u22E6"_ustr },
+ { u"loang"_ustr, u"\u27EC"_ustr },
+ { u"loarr"_ustr, u"\u21FD"_ustr },
+ { u"lobrk"_ustr, u"\u27E6"_ustr },
+ { u"longleftarrow"_ustr, u"\u27F5"_ustr },
+ { u"longleftrightarrow"_ustr, u"\u27F7"_ustr },
+ { u"longmapsto"_ustr, u"\u27FC"_ustr },
+ { u"longrightarrow"_ustr, u"\u27F6"_ustr },
+ { u"looparrowleft"_ustr, u"\u21AB"_ustr },
+ { u"looparrowright"_ustr, u"\u21AC"_ustr },
+ { u"lopar"_ustr, u"\u2985"_ustr },
+ { u"lopf"_ustr, u"\U0001D55D"_ustr },
+ { u"loplus"_ustr, u"\u2A2D"_ustr },
+ { u"lotimes"_ustr, u"\u2A34"_ustr },
+ { u"lowast"_ustr, u"\u2217"_ustr },
+ { u"lowbar"_ustr, u"\u005F"_ustr },
+ { u"loz"_ustr, u"\u25CA"_ustr },
+ { u"lozenge"_ustr, u"\u25CA"_ustr },
+ { u"lozf"_ustr, u"\u29EB"_ustr },
+ { u"lpar"_ustr, u"\u0028"_ustr },
+ { u"lparlt"_ustr, u"\u2993"_ustr },
+ { u"lrarr"_ustr, u"\u21C6"_ustr },
+ { u"lrcorner"_ustr, u"\u231F"_ustr },
+ { u"lrhar"_ustr, u"\u21CB"_ustr },
+ { u"lrhard"_ustr, u"\u296D"_ustr },
+ { u"lrm"_ustr, u"\u200E"_ustr },
+ { u"lrtri"_ustr, u"\u22BF"_ustr },
+ { u"lsaquo"_ustr, u"\u2039"_ustr },
+ { u"lscr"_ustr, u"\U0001D4C1"_ustr },
+ { u"lsh"_ustr, u"\u21B0"_ustr },
+ { u"lsim"_ustr, u"\u2272"_ustr },
+ { u"lsime"_ustr, u"\u2A8D"_ustr },
+ { u"lsimg"_ustr, u"\u2A8F"_ustr },
+ { u"lsqb"_ustr, u"\u005B"_ustr },
+ { u"lsquo"_ustr, u"\u2018"_ustr },
+ { u"lsquor"_ustr, u"\u201A"_ustr },
+ { u"lstrok"_ustr, u"\u0142"_ustr },
+ { u"lt"_ustr, u"\u003C"_ustr },
+ { u"ltcc"_ustr, u"\u2AA6"_ustr },
+ { u"ltcir"_ustr, u"\u2A79"_ustr },
+ { u"ltdot"_ustr, u"\u22D6"_ustr },
+ { u"lthree"_ustr, u"\u22CB"_ustr },
+ { u"ltimes"_ustr, u"\u22C9"_ustr },
+ { u"ltlarr"_ustr, u"\u2976"_ustr },
+ { u"ltquest"_ustr, u"\u2A7B"_ustr },
+ { u"ltrPar"_ustr, u"\u2996"_ustr },
+ { u"ltri"_ustr, u"\u25C3"_ustr },
+ { u"ltrie"_ustr, u"\u22B4"_ustr },
+ { u"ltrif"_ustr, u"\u25C2"_ustr },
+ { u"lurdshar"_ustr, u"\u294A"_ustr },
+ { u"luruhar"_ustr, u"\u2966"_ustr },
+ { u"lvertneqq"_ustr, u"\u2268\uFE00"_ustr },
+ { u"lvnE"_ustr, u"\u2268\uFE00"_ustr },
+ { u"mDDot"_ustr, u"\u223A"_ustr },
+ { u"macr"_ustr, u"\u00AF"_ustr },
+ { u"male"_ustr, u"\u2642"_ustr },
+ { u"malt"_ustr, u"\u2720"_ustr },
+ { u"maltese"_ustr, u"\u2720"_ustr },
+ { u"map"_ustr, u"\u21A6"_ustr },
+ { u"mapsto"_ustr, u"\u21A6"_ustr },
+ { u"mapstodown"_ustr, u"\u21A7"_ustr },
+ { u"mapstoleft"_ustr, u"\u21A4"_ustr },
+ { u"mapstoup"_ustr, u"\u21A5"_ustr },
+ { u"marker"_ustr, u"\u25AE"_ustr },
+ { u"mcomma"_ustr, u"\u2A29"_ustr },
+ { u"mcy"_ustr, u"\u043C"_ustr },
+ { u"mdash"_ustr, u"\u2014"_ustr },
+ { u"measuredangle"_ustr, u"\u2221"_ustr },
+ { u"mfr"_ustr, u"\U0001D52A"_ustr },
+ { u"mho"_ustr, u"\u2127"_ustr },
+ { u"micro"_ustr, u"\u00B5"_ustr },
+ { u"mid"_ustr, u"\u2223"_ustr },
+ { u"midast"_ustr, u"\u002A"_ustr },
+ { u"midcir"_ustr, u"\u2AF0"_ustr },
+ { u"middot"_ustr, u"\u00B7"_ustr },
+ { u"minus"_ustr, u"\u2212"_ustr },
+ { u"minusb"_ustr, u"\u229F"_ustr },
+ { u"minusd"_ustr, u"\u2238"_ustr },
+ { u"minusdu"_ustr, u"\u2A2A"_ustr },
+ { u"mlcp"_ustr, u"\u2ADB"_ustr },
+ { u"mldr"_ustr, u"\u2026"_ustr },
+ { u"mnplus"_ustr, u"\u2213"_ustr },
+ { u"models"_ustr, u"\u22A7"_ustr },
+ { u"mopf"_ustr, u"\U0001D55E"_ustr },
+ { u"mp"_ustr, u"\u2213"_ustr },
+ { u"mscr"_ustr, u"\U0001D4C2"_ustr },
+ { u"mstpos"_ustr, u"\u223E"_ustr },
+ { u"mu"_ustr, u"\u03BC"_ustr },
+ { u"multimap"_ustr, u"\u22B8"_ustr },
+ { u"mumap"_ustr, u"\u22B8"_ustr },
+ { u"nGg"_ustr, u"\u22D9\u0338"_ustr },
+ { u"nGt"_ustr, u"\u226B\u20D2"_ustr },
+ { u"nGtv"_ustr, u"\u226B\u0338"_ustr },
+ { u"nLeftarrow"_ustr, u"\u21CD"_ustr },
+ { u"nLeftrightarrow"_ustr, u"\u21CE"_ustr },
+ { u"nLl"_ustr, u"\u22D8\u0338"_ustr },
+ { u"nLt"_ustr, u"\u226A\u20D2"_ustr },
+ { u"nLtv"_ustr, u"\u226A\u0338"_ustr },
+ { u"nRightarrow"_ustr, u"\u21CF"_ustr },
+ { u"nVDash"_ustr, u"\u22AF"_ustr },
+ { u"nVdash"_ustr, u"\u22AE"_ustr },
+ { u"nabla"_ustr, u"\u2207"_ustr },
+ { u"nacute"_ustr, u"\u0144"_ustr },
+ { u"nang"_ustr, u"\u2220\u20D2"_ustr },
+ { u"nap"_ustr, u"\u2249"_ustr },
+ { u"napE"_ustr, u"\u2A70\u0338"_ustr },
+ { u"napid"_ustr, u"\u224B\u0338"_ustr },
+ { u"napos"_ustr, u"\u0149"_ustr },
+ { u"napprox"_ustr, u"\u2249"_ustr },
+ { u"natur"_ustr, u"\u266E"_ustr },
+ { u"natural"_ustr, u"\u266E"_ustr },
+ { u"naturals"_ustr, u"\u2115"_ustr },
+ { u"nbsp"_ustr, u"\u00A0"_ustr },
+ { u"nbump"_ustr, u"\u224E\u0338"_ustr },
+ { u"nbumpe"_ustr, u"\u224F\u0338"_ustr },
+ { u"ncap"_ustr, u"\u2A43"_ustr },
+ { u"ncaron"_ustr, u"\u0148"_ustr },
+ { u"ncedil"_ustr, u"\u0146"_ustr },
+ { u"ncong"_ustr, u"\u2247"_ustr },
+ { u"ncongdot"_ustr, u"\u2A6D\u0338"_ustr },
+ { u"ncup"_ustr, u"\u2A42"_ustr },
+ { u"ncy"_ustr, u"\u043D"_ustr },
+ { u"ndash"_ustr, u"\u2013"_ustr },
+ { u"ne"_ustr, u"\u2260"_ustr },
+ { u"neArr"_ustr, u"\u21D7"_ustr },
+ { u"nearhk"_ustr, u"\u2924"_ustr },
+ { u"nearr"_ustr, u"\u2197"_ustr },
+ { u"nearrow"_ustr, u"\u2197"_ustr },
+ { u"nedot"_ustr, u"\u2250\u0338"_ustr },
+ { u"nequiv"_ustr, u"\u2262"_ustr },
+ { u"nesear"_ustr, u"\u2928"_ustr },
+ { u"nesim"_ustr, u"\u2242\u0338"_ustr },
+ { u"nexist"_ustr, u"\u2204"_ustr },
+ { u"nexists"_ustr, u"\u2204"_ustr },
+ { u"nfr"_ustr, u"\U0001D52B"_ustr },
+ { u"ngE"_ustr, u"\u2267\u0338"_ustr },
+ { u"nge"_ustr, u"\u2271"_ustr },
+ { u"ngeq"_ustr, u"\u2271"_ustr },
+ { u"ngeqq"_ustr, u"\u2267\u0338"_ustr },
+ { u"ngeqslant"_ustr, u"\u2A7E\u0338"_ustr },
+ { u"nges"_ustr, u"\u2A7E\u0338"_ustr },
+ { u"ngsim"_ustr, u"\u2275"_ustr },
+ { u"ngt"_ustr, u"\u226F"_ustr },
+ { u"ngtr"_ustr, u"\u226F"_ustr },
+ { u"nhArr"_ustr, u"\u21CE"_ustr },
+ { u"nharr"_ustr, u"\u21AE"_ustr },
+ { u"nhpar"_ustr, u"\u2AF2"_ustr },
+ { u"ni"_ustr, u"\u220B"_ustr },
+ { u"nis"_ustr, u"\u22FC"_ustr },
+ { u"nisd"_ustr, u"\u22FA"_ustr },
+ { u"niv"_ustr, u"\u220B"_ustr },
+ { u"njcy"_ustr, u"\u045A"_ustr },
+ { u"nlArr"_ustr, u"\u21CD"_ustr },
+ { u"nlE"_ustr, u"\u2266\u0338"_ustr },
+ { u"nlarr"_ustr, u"\u219A"_ustr },
+ { u"nldr"_ustr, u"\u2025"_ustr },
+ { u"nle"_ustr, u"\u2270"_ustr },
+ { u"nleftarrow"_ustr, u"\u219A"_ustr },
+ { u"nleftrightarrow"_ustr, u"\u21AE"_ustr },
+ { u"nleq"_ustr, u"\u2270"_ustr },
+ { u"nleqq"_ustr, u"\u2266\u0338"_ustr },
+ { u"nleqslant"_ustr, u"\u2A7D\u0338"_ustr },
+ { u"nles"_ustr, u"\u2A7D\u0338"_ustr },
+ { u"nless"_ustr, u"\u226E"_ustr },
+ { u"nlsim"_ustr, u"\u2274"_ustr },
+ { u"nlt"_ustr, u"\u226E"_ustr },
+ { u"nltri"_ustr, u"\u22EA"_ustr },
+ { u"nltrie"_ustr, u"\u22EC"_ustr },
+ { u"nmid"_ustr, u"\u2224"_ustr },
+ { u"nopf"_ustr, u"\U0001D55F"_ustr },
+ { u"not"_ustr, u"\u00AC"_ustr },
+ { u"notin"_ustr, u"\u2209"_ustr },
+ { u"notinE"_ustr, u"\u22F9\u0338"_ustr },
+ { u"notindot"_ustr, u"\u22F5\u0338"_ustr },
+ { u"notinva"_ustr, u"\u2209"_ustr },
+ { u"notinvb"_ustr, u"\u22F7"_ustr },
+ { u"notinvc"_ustr, u"\u22F6"_ustr },
+ { u"notni"_ustr, u"\u220C"_ustr },
+ { u"notniva"_ustr, u"\u220C"_ustr },
+ { u"notnivb"_ustr, u"\u22FE"_ustr },
+ { u"notnivc"_ustr, u"\u22FD"_ustr },
+ { u"npar"_ustr, u"\u2226"_ustr },
+ { u"nparallel"_ustr, u"\u2226"_ustr },
+ { u"nparsl"_ustr, u"\u2AFD\u20E5"_ustr },
+ { u"npart"_ustr, u"\u2202\u0338"_ustr },
+ { u"npolint"_ustr, u"\u2A14"_ustr },
+ { u"npr"_ustr, u"\u2280"_ustr },
+ { u"nprcue"_ustr, u"\u22E0"_ustr },
+ { u"npre"_ustr, u"\u2AAF\u0338"_ustr },
+ { u"nprec"_ustr, u"\u2280"_ustr },
+ { u"npreceq"_ustr, u"\u2AAF\u0338"_ustr },
+ { u"nrArr"_ustr, u"\u21CF"_ustr },
+ { u"nrarr"_ustr, u"\u219B"_ustr },
+ { u"nrarrc"_ustr, u"\u2933\u0338"_ustr },
+ { u"nrarrw"_ustr, u"\u219D\u0338"_ustr },
+ { u"nrightarrow"_ustr, u"\u219B"_ustr },
+ { u"nrtri"_ustr, u"\u22EB"_ustr },
+ { u"nrtrie"_ustr, u"\u22ED"_ustr },
+ { u"nsc"_ustr, u"\u2281"_ustr },
+ { u"nsccue"_ustr, u"\u22E1"_ustr },
+ { u"nsce"_ustr, u"\u2AB0\u0338"_ustr },
+ { u"nscr"_ustr, u"\U0001D4C3"_ustr },
+ { u"nshortmid"_ustr, u"\u2224"_ustr },
+ { u"nshortparallel"_ustr, u"\u2226"_ustr },
+ { u"nsim"_ustr, u"\u2241"_ustr },
+ { u"nsime"_ustr, u"\u2244"_ustr },
+ { u"nsimeq"_ustr, u"\u2244"_ustr },
+ { u"nsmid"_ustr, u"\u2224"_ustr },
+ { u"nspar"_ustr, u"\u2226"_ustr },
+ { u"nsqsube"_ustr, u"\u22E2"_ustr },
+ { u"nsqsupe"_ustr, u"\u22E3"_ustr },
+ { u"nsub"_ustr, u"\u2284"_ustr },
+ { u"nsubE"_ustr, u"\u2AC5\u0338"_ustr },
+ { u"nsube"_ustr, u"\u2288"_ustr },
+ { u"nsubset"_ustr, u"\u2282\u20D2"_ustr },
+ { u"nsubseteq"_ustr, u"\u2288"_ustr },
+ { u"nsubseteqq"_ustr, u"\u2AC5\u0338"_ustr },
+ { u"nsucc"_ustr, u"\u2281"_ustr },
+ { u"nsucceq"_ustr, u"\u2AB0\u0338"_ustr },
+ { u"nsup"_ustr, u"\u2285"_ustr },
+ { u"nsupE"_ustr, u"\u2AC6\u0338"_ustr },
+ { u"nsupe"_ustr, u"\u2289"_ustr },
+ { u"nsupset"_ustr, u"\u2283\u20D2"_ustr },
+ { u"nsupseteq"_ustr, u"\u2289"_ustr },
+ { u"nsupseteqq"_ustr, u"\u2AC6\u0338"_ustr },
+ { u"ntgl"_ustr, u"\u2279"_ustr },
+ { u"ntilde"_ustr, u"\u00F1"_ustr },
+ { u"ntlg"_ustr, u"\u2278"_ustr },
+ { u"ntriangleleft"_ustr, u"\u22EA"_ustr },
+ { u"ntrianglelefteq"_ustr, u"\u22EC"_ustr },
+ { u"ntriangleright"_ustr, u"\u22EB"_ustr },
+ { u"ntrianglerighteq"_ustr, u"\u22ED"_ustr },
+ { u"nu"_ustr, u"\u03BD"_ustr },
+ { u"num"_ustr, u"\u0023"_ustr },
+ { u"numero"_ustr, u"\u2116"_ustr },
+ { u"numsp"_ustr, u"\u2007"_ustr },
+ { u"nvDash"_ustr, u"\u22AD"_ustr },
+ { u"nvHarr"_ustr, u"\u2904"_ustr },
+ { u"nvap"_ustr, u"\u224D\u20D2"_ustr },
+ { u"nvdash"_ustr, u"\u22AC"_ustr },
+ { u"nvge"_ustr, u"\u2265\u20D2"_ustr },
+ { u"nvgt"_ustr, u"\u003E\u20D2"_ustr },
+ { u"nvinfin"_ustr, u"\u29DE"_ustr },
+ { u"nvlArr"_ustr, u"\u2902"_ustr },
+ { u"nvle"_ustr, u"\u2264\u20D2"_ustr },
+ { u"nvlt"_ustr, u"\u003C\u20D2"_ustr },
+ { u"nvltrie"_ustr, u"\u22B4\u20D2"_ustr },
+ { u"nvrArr"_ustr, u"\u2903"_ustr },
+ { u"nvrtrie"_ustr, u"\u22B5\u20D2"_ustr },
+ { u"nvsim"_ustr, u"\u223C\u20D2"_ustr },
+ { u"nwArr"_ustr, u"\u21D6"_ustr },
+ { u"nwarhk"_ustr, u"\u2923"_ustr },
+ { u"nwarr"_ustr, u"\u2196"_ustr },
+ { u"nwarrow"_ustr, u"\u2196"_ustr },
+ { u"nwnear"_ustr, u"\u2927"_ustr },
+ { u"oS"_ustr, u"\u24C8"_ustr },
+ { u"oacute"_ustr, u"\u00F3"_ustr },
+ { u"oast"_ustr, u"\u229B"_ustr },
+ { u"ocir"_ustr, u"\u229A"_ustr },
+ { u"ocirc"_ustr, u"\u00F4"_ustr },
+ { u"ocy"_ustr, u"\u043E"_ustr },
+ { u"odash"_ustr, u"\u229D"_ustr },
+ { u"odblac"_ustr, u"\u0151"_ustr },
+ { u"odiv"_ustr, u"\u2A38"_ustr },
+ { u"odot"_ustr, u"\u2299"_ustr },
+ { u"odsold"_ustr, u"\u29BC"_ustr },
+ { u"oelig"_ustr, u"\u0153"_ustr },
+ { u"ofcir"_ustr, u"\u29BF"_ustr },
+ { u"ofr"_ustr, u"\U0001D52C"_ustr },
+ { u"ogon"_ustr, u"\u02DB"_ustr },
+ { u"ograve"_ustr, u"\u00F2"_ustr },
+ { u"ogt"_ustr, u"\u29C1"_ustr },
+ { u"ohbar"_ustr, u"\u29B5"_ustr },
+ { u"ohm"_ustr, u"\u03A9"_ustr },
+ { u"oint"_ustr, u"\u222E"_ustr },
+ { u"olarr"_ustr, u"\u21BA"_ustr },
+ { u"olcir"_ustr, u"\u29BE"_ustr },
+ { u"olcross"_ustr, u"\u29BB"_ustr },
+ { u"oline"_ustr, u"\u203E"_ustr },
+ { u"olt"_ustr, u"\u29C0"_ustr },
+ { u"omacr"_ustr, u"\u014D"_ustr },
+ { u"omega"_ustr, u"\u03C9"_ustr },
+ { u"omicron"_ustr, u"\u03BF"_ustr },
+ { u"omid"_ustr, u"\u29B6"_ustr },
+ { u"ominus"_ustr, u"\u2296"_ustr },
+ { u"oopf"_ustr, u"\U0001D560"_ustr },
+ { u"opar"_ustr, u"\u29B7"_ustr },
+ { u"operp"_ustr, u"\u29B9"_ustr },
+ { u"oplus"_ustr, u"\u2295"_ustr },
+ { u"or"_ustr, u"\u2228"_ustr },
+ { u"orarr"_ustr, u"\u21BB"_ustr },
+ { u"ord"_ustr, u"\u2A5D"_ustr },
+ { u"order"_ustr, u"\u2134"_ustr },
+ { u"orderof"_ustr, u"\u2134"_ustr },
+ { u"ordf"_ustr, u"\u00AA"_ustr },
+ { u"ordm"_ustr, u"\u00BA"_ustr },
+ { u"origof"_ustr, u"\u22B6"_ustr },
+ { u"oror"_ustr, u"\u2A56"_ustr },
+ { u"orslope"_ustr, u"\u2A57"_ustr },
+ { u"orv"_ustr, u"\u2A5B"_ustr },
+ { u"oscr"_ustr, u"\u2134"_ustr },
+ { u"oslash"_ustr, u"\u00F8"_ustr },
+ { u"osol"_ustr, u"\u2298"_ustr },
+ { u"otilde"_ustr, u"\u00F5"_ustr },
+ { u"otimes"_ustr, u"\u2297"_ustr },
+ { u"otimesas"_ustr, u"\u2A36"_ustr },
+ { u"ouml"_ustr, u"\u00F6"_ustr },
+ { u"ovbar"_ustr, u"\u233D"_ustr },
+ { u"par"_ustr, u"\u2225"_ustr },
+ { u"para"_ustr, u"\u00B6"_ustr },
+ { u"parallel"_ustr, u"\u2225"_ustr },
+ { u"parsim"_ustr, u"\u2AF3"_ustr },
+ { u"parsl"_ustr, u"\u2AFD"_ustr },
+ { u"part"_ustr, u"\u2202"_ustr },
+ { u"pcy"_ustr, u"\u043F"_ustr },
+ { u"percnt"_ustr, u"\u0025"_ustr },
+ { u"period"_ustr, u"\u002E"_ustr },
+ { u"permil"_ustr, u"\u2030"_ustr },
+ { u"perp"_ustr, u"\u22A5"_ustr },
+ { u"pertenk"_ustr, u"\u2031"_ustr },
+ { u"pfr"_ustr, u"\U0001D52D"_ustr },
+ { u"phi"_ustr, u"\u03C6"_ustr },
+ { u"phiv"_ustr, u"\u03D5"_ustr },
+ { u"phmmat"_ustr, u"\u2133"_ustr },
+ { u"phone"_ustr, u"\u260E"_ustr },
+ { u"pi"_ustr, u"\u03C0"_ustr },
+ { u"pitchfork"_ustr, u"\u22D4"_ustr },
+ { u"piv"_ustr, u"\u03D6"_ustr },
+ { u"planck"_ustr, u"\u210F"_ustr },
+ { u"planckh"_ustr, u"\u210E"_ustr },
+ { u"plankv"_ustr, u"\u210F"_ustr },
+ { u"plus"_ustr, u"\u002B"_ustr },
+ { u"plusacir"_ustr, u"\u2A23"_ustr },
+ { u"plusb"_ustr, u"\u229E"_ustr },
+ { u"pluscir"_ustr, u"\u2A22"_ustr },
+ { u"plusdo"_ustr, u"\u2214"_ustr },
+ { u"plusdu"_ustr, u"\u2A25"_ustr },
+ { u"pluse"_ustr, u"\u2A72"_ustr },
+ { u"plusmn"_ustr, u"\u00B1"_ustr },
+ { u"plussim"_ustr, u"\u2A26"_ustr },
+ { u"plustwo"_ustr, u"\u2A27"_ustr },
+ { u"pm"_ustr, u"\u00B1"_ustr },
+ { u"pointint"_ustr, u"\u2A15"_ustr },
+ { u"popf"_ustr, u"\U0001D561"_ustr },
+ { u"pound"_ustr, u"\u00A3"_ustr },
+ { u"pr"_ustr, u"\u227A"_ustr },
+ { u"prE"_ustr, u"\u2AB3"_ustr },
+ { u"prap"_ustr, u"\u2AB7"_ustr },
+ { u"prcue"_ustr, u"\u227C"_ustr },
+ { u"pre"_ustr, u"\u2AAF"_ustr },
+ { u"prec"_ustr, u"\u227A"_ustr },
+ { u"precapprox"_ustr, u"\u2AB7"_ustr },
+ { u"preccurlyeq"_ustr, u"\u227C"_ustr },
+ { u"preceq"_ustr, u"\u2AAF"_ustr },
+ { u"precnapprox"_ustr, u"\u2AB9"_ustr },
+ { u"precneqq"_ustr, u"\u2AB5"_ustr },
+ { u"precnsim"_ustr, u"\u22E8"_ustr },
+ { u"precsim"_ustr, u"\u227E"_ustr },
+ { u"prime"_ustr, u"\u2032"_ustr },
+ { u"primes"_ustr, u"\u2119"_ustr },
+ { u"prnE"_ustr, u"\u2AB5"_ustr },
+ { u"prnap"_ustr, u"\u2AB9"_ustr },
+ { u"prnsim"_ustr, u"\u22E8"_ustr },
+ { u"prod"_ustr, u"\u220F"_ustr },
+ { u"profalar"_ustr, u"\u232E"_ustr },
+ { u"profline"_ustr, u"\u2312"_ustr },
+ { u"profsurf"_ustr, u"\u2313"_ustr },
+ { u"prop"_ustr, u"\u221D"_ustr },
+ { u"propto"_ustr, u"\u221D"_ustr },
+ { u"prsim"_ustr, u"\u227E"_ustr },
+ { u"prurel"_ustr, u"\u22B0"_ustr },
+ { u"pscr"_ustr, u"\U0001D4C5"_ustr },
+ { u"psi"_ustr, u"\u03C8"_ustr },
+ { u"puncsp"_ustr, u"\u2008"_ustr },
+ { u"qfr"_ustr, u"\U0001D52E"_ustr },
+ { u"qint"_ustr, u"\u2A0C"_ustr },
+ { u"qopf"_ustr, u"\U0001D562"_ustr },
+ { u"qprime"_ustr, u"\u2057"_ustr },
+ { u"qscr"_ustr, u"\U0001D4C6"_ustr },
+ { u"quaternions"_ustr, u"\u210D"_ustr },
+ { u"quatint"_ustr, u"\u2A16"_ustr },
+ { u"quest"_ustr, u"\u003F"_ustr },
+ { u"questeq"_ustr, u"\u225F"_ustr },
+ { u"quot"_ustr, u"\u0022"_ustr },
+ { u"rAarr"_ustr, u"\u21DB"_ustr },
+ { u"rArr"_ustr, u"\u21D2"_ustr },
+ { u"rAtail"_ustr, u"\u291C"_ustr },
+ { u"rBarr"_ustr, u"\u290F"_ustr },
+ { u"rHar"_ustr, u"\u2964"_ustr },
+ { u"race"_ustr, u"\u223D\u0331"_ustr },
+ { u"racute"_ustr, u"\u0155"_ustr },
+ { u"radic"_ustr, u"\u221A"_ustr },
+ { u"raemptyv"_ustr, u"\u29B3"_ustr },
+ { u"rang"_ustr, u"\u27E9"_ustr },
+ { u"rangd"_ustr, u"\u2992"_ustr },
+ { u"range"_ustr, u"\u29A5"_ustr },
+ { u"rangle"_ustr, u"\u27E9"_ustr },
+ { u"raquo"_ustr, u"\u00BB"_ustr },
+ { u"rarr"_ustr, u"\u2192"_ustr },
+ { u"rarrap"_ustr, u"\u2975"_ustr },
+ { u"rarrb"_ustr, u"\u21E5"_ustr },
+ { u"rarrbfs"_ustr, u"\u2920"_ustr },
+ { u"rarrc"_ustr, u"\u2933"_ustr },
+ { u"rarrfs"_ustr, u"\u291E"_ustr },
+ { u"rarrhk"_ustr, u"\u21AA"_ustr },
+ { u"rarrlp"_ustr, u"\u21AC"_ustr },
+ { u"rarrpl"_ustr, u"\u2945"_ustr },
+ { u"rarrsim"_ustr, u"\u2974"_ustr },
+ { u"rarrtl"_ustr, u"\u21A3"_ustr },
+ { u"rarrw"_ustr, u"\u219D"_ustr },
+ { u"ratail"_ustr, u"\u291A"_ustr },
+ { u"ratio"_ustr, u"\u2236"_ustr },
+ { u"rationals"_ustr, u"\u211A"_ustr },
+ { u"rbarr"_ustr, u"\u290D"_ustr },
+ { u"rbbrk"_ustr, u"\u2773"_ustr },
+ { u"rbrace"_ustr, u"\u007D"_ustr },
+ { u"rbrack"_ustr, u"\u005D"_ustr },
+ { u"rbrke"_ustr, u"\u298C"_ustr },
+ { u"rbrksld"_ustr, u"\u298E"_ustr },
+ { u"rbrkslu"_ustr, u"\u2990"_ustr },
+ { u"rcaron"_ustr, u"\u0159"_ustr },
+ { u"rcedil"_ustr, u"\u0157"_ustr },
+ { u"rceil"_ustr, u"\u2309"_ustr },
+ { u"rcub"_ustr, u"\u007D"_ustr },
+ { u"rcy"_ustr, u"\u0440"_ustr },
+ { u"rdca"_ustr, u"\u2937"_ustr },
+ { u"rdldhar"_ustr, u"\u2969"_ustr },
+ { u"rdquo"_ustr, u"\u201D"_ustr },
+ { u"rdquor"_ustr, u"\u201D"_ustr },
+ { u"rdsh"_ustr, u"\u21B3"_ustr },
+ { u"real"_ustr, u"\u211C"_ustr },
+ { u"realine"_ustr, u"\u211B"_ustr },
+ { u"realpart"_ustr, u"\u211C"_ustr },
+ { u"reals"_ustr, u"\u211D"_ustr },
+ { u"rect"_ustr, u"\u25AD"_ustr },
+ { u"reg"_ustr, u"\u00AE"_ustr },
+ { u"rfisht"_ustr, u"\u297D"_ustr },
+ { u"rfloor"_ustr, u"\u230B"_ustr },
+ { u"rfr"_ustr, u"\U0001D52F"_ustr },
+ { u"rhard"_ustr, u"\u21C1"_ustr },
+ { u"rharu"_ustr, u"\u21C0"_ustr },
+ { u"rharul"_ustr, u"\u296C"_ustr },
+ { u"rho"_ustr, u"\u03C1"_ustr },
+ { u"rhov"_ustr, u"\u03F1"_ustr },
+ { u"rightarrow"_ustr, u"\u2192"_ustr },
+ { u"rightarrowtail"_ustr, u"\u21A3"_ustr },
+ { u"rightharpoondown"_ustr, u"\u21C1"_ustr },
+ { u"rightharpoonup"_ustr, u"\u21C0"_ustr },
+ { u"rightleftarrows"_ustr, u"\u21C4"_ustr },
+ { u"rightleftharpoons"_ustr, u"\u21CC"_ustr },
+ { u"rightrightarrows"_ustr, u"\u21C9"_ustr },
+ { u"rightsquigarrow"_ustr, u"\u219D"_ustr },
+ { u"rightthreetimes"_ustr, u"\u22CC"_ustr },
+ { u"ring"_ustr, u"\u02DA"_ustr },
+ { u"risingdotseq"_ustr, u"\u2253"_ustr },
+ { u"rlarr"_ustr, u"\u21C4"_ustr },
+ { u"rlhar"_ustr, u"\u21CC"_ustr },
+ { u"rlm"_ustr, u"\u200F"_ustr },
+ { u"rmoust"_ustr, u"\u23B1"_ustr },
+ { u"rmoustache"_ustr, u"\u23B1"_ustr },
+ { u"rnmid"_ustr, u"\u2AEE"_ustr },
+ { u"roang"_ustr, u"\u27ED"_ustr },
+ { u"roarr"_ustr, u"\u21FE"_ustr },
+ { u"robrk"_ustr, u"\u27E7"_ustr },
+ { u"ropar"_ustr, u"\u2986"_ustr },
+ { u"ropf"_ustr, u"\U0001D563"_ustr },
+ { u"roplus"_ustr, u"\u2A2E"_ustr },
+ { u"rotimes"_ustr, u"\u2A35"_ustr },
+ { u"rpar"_ustr, u"\u0029"_ustr },
+ { u"rpargt"_ustr, u"\u2994"_ustr },
+ { u"rppolint"_ustr, u"\u2A12"_ustr },
+ { u"rrarr"_ustr, u"\u21C9"_ustr },
+ { u"rsaquo"_ustr, u"\u203A"_ustr },
+ { u"rscr"_ustr, u"\U0001D4C7"_ustr },
+ { u"rsh"_ustr, u"\u21B1"_ustr },
+ { u"rsqb"_ustr, u"\u005D"_ustr },
+ { u"rsquo"_ustr, u"\u2019"_ustr },
+ { u"rsquor"_ustr, u"\u2019"_ustr },
+ { u"rthree"_ustr, u"\u22CC"_ustr },
+ { u"rtimes"_ustr, u"\u22CA"_ustr },
+ { u"rtri"_ustr, u"\u25B9"_ustr },
+ { u"rtrie"_ustr, u"\u22B5"_ustr },
+ { u"rtrif"_ustr, u"\u25B8"_ustr },
+ { u"rtriltri"_ustr, u"\u29CE"_ustr },
+ { u"ruluhar"_ustr, u"\u2968"_ustr },
+ { u"rx"_ustr, u"\u211E"_ustr },
+ { u"sacute"_ustr, u"\u015B"_ustr },
+ { u"sbquo"_ustr, u"\u201A"_ustr },
+ { u"sc"_ustr, u"\u227B"_ustr },
+ { u"scE"_ustr, u"\u2AB4"_ustr },
+ { u"scap"_ustr, u"\u2AB8"_ustr },
+ { u"scaron"_ustr, u"\u0161"_ustr },
+ { u"sccue"_ustr, u"\u227D"_ustr },
+ { u"sce"_ustr, u"\u2AB0"_ustr },
+ { u"scedil"_ustr, u"\u015F"_ustr },
+ { u"scirc"_ustr, u"\u015D"_ustr },
+ { u"scnE"_ustr, u"\u2AB6"_ustr },
+ { u"scnap"_ustr, u"\u2ABA"_ustr },
+ { u"scnsim"_ustr, u"\u22E9"_ustr },
+ { u"scpolint"_ustr, u"\u2A13"_ustr },
+ { u"scsim"_ustr, u"\u227F"_ustr },
+ { u"scy"_ustr, u"\u0441"_ustr },
+ { u"sdot"_ustr, u"\u22C5"_ustr },
+ { u"sdotb"_ustr, u"\u22A1"_ustr },
+ { u"sdote"_ustr, u"\u2A66"_ustr },
+ { u"seArr"_ustr, u"\u21D8"_ustr },
+ { u"searhk"_ustr, u"\u2925"_ustr },
+ { u"searr"_ustr, u"\u2198"_ustr },
+ { u"searrow"_ustr, u"\u2198"_ustr },
+ { u"sect"_ustr, u"\u00A7"_ustr },
+ { u"semi"_ustr, u"\u003B"_ustr },
+ { u"seswar"_ustr, u"\u2929"_ustr },
+ { u"setminus"_ustr, u"\u2216"_ustr },
+ { u"setmn"_ustr, u"\u2216"_ustr },
+ { u"sext"_ustr, u"\u2736"_ustr },
+ { u"sfr"_ustr, u"\U0001D530"_ustr },
+ { u"sfrown"_ustr, u"\u2322"_ustr },
+ { u"sharp"_ustr, u"\u266F"_ustr },
+ { u"shchcy"_ustr, u"\u0449"_ustr },
+ { u"shcy"_ustr, u"\u0448"_ustr },
+ { u"shortmid"_ustr, u"\u2223"_ustr },
+ { u"shortparallel"_ustr, u"\u2225"_ustr },
+ { u"shy"_ustr, u"\u00AD"_ustr },
+ { u"sigma"_ustr, u"\u03C3"_ustr },
+ { u"sigmaf"_ustr, u"\u03C2"_ustr },
+ { u"sigmav"_ustr, u"\u03C2"_ustr },
+ { u"sim"_ustr, u"\u223C"_ustr },
+ { u"simdot"_ustr, u"\u2A6A"_ustr },
+ { u"sime"_ustr, u"\u2243"_ustr },
+ { u"simeq"_ustr, u"\u2243"_ustr },
+ { u"simg"_ustr, u"\u2A9E"_ustr },
+ { u"simgE"_ustr, u"\u2AA0"_ustr },
+ { u"siml"_ustr, u"\u2A9D"_ustr },
+ { u"simlE"_ustr, u"\u2A9F"_ustr },
+ { u"simne"_ustr, u"\u2246"_ustr },
+ { u"simplus"_ustr, u"\u2A24"_ustr },
+ { u"simrarr"_ustr, u"\u2972"_ustr },
+ { u"slarr"_ustr, u"\u2190"_ustr },
+ { u"smallsetminus"_ustr, u"\u2216"_ustr },
+ { u"smashp"_ustr, u"\u2A33"_ustr },
+ { u"smeparsl"_ustr, u"\u29E4"_ustr },
+ { u"smid"_ustr, u"\u2223"_ustr },
+ { u"smile"_ustr, u"\u2323"_ustr },
+ { u"smt"_ustr, u"\u2AAA"_ustr },
+ { u"smte"_ustr, u"\u2AAC"_ustr },
+ { u"smtes"_ustr, u"\u2AAC\uFE00"_ustr },
+ { u"softcy"_ustr, u"\u044C"_ustr },
+ { u"sol"_ustr, u"\u002F"_ustr },
+ { u"solb"_ustr, u"\u29C4"_ustr },
+ { u"solbar"_ustr, u"\u233F"_ustr },
+ { u"sopf"_ustr, u"\U0001D564"_ustr },
+ { u"spades"_ustr, u"\u2660"_ustr },
+ { u"spadesuit"_ustr, u"\u2660"_ustr },
+ { u"spar"_ustr, u"\u2225"_ustr },
+ { u"sqcap"_ustr, u"\u2293"_ustr },
+ { u"sqcaps"_ustr, u"\u2293\uFE00"_ustr },
+ { u"sqcup"_ustr, u"\u2294"_ustr },
+ { u"sqcups"_ustr, u"\u2294\uFE00"_ustr },
+ { u"sqsub"_ustr, u"\u228F"_ustr },
+ { u"sqsube"_ustr, u"\u2291"_ustr },
+ { u"sqsubset"_ustr, u"\u228F"_ustr },
+ { u"sqsubseteq"_ustr, u"\u2291"_ustr },
+ { u"sqsup"_ustr, u"\u2290"_ustr },
+ { u"sqsupe"_ustr, u"\u2292"_ustr },
+ { u"sqsupset"_ustr, u"\u2290"_ustr },
+ { u"sqsupseteq"_ustr, u"\u2292"_ustr },
+ { u"squ"_ustr, u"\u25A1"_ustr },
+ { u"square"_ustr, u"\u25A1"_ustr },
+ { u"squarf"_ustr, u"\u25AA"_ustr },
+ { u"squf"_ustr, u"\u25AA"_ustr },
+ { u"srarr"_ustr, u"\u2192"_ustr },
+ { u"sscr"_ustr, u"\U0001D4C8"_ustr },
+ { u"ssetmn"_ustr, u"\u2216"_ustr },
+ { u"ssmile"_ustr, u"\u2323"_ustr },
+ { u"sstarf"_ustr, u"\u22C6"_ustr },
+ { u"star"_ustr, u"\u2606"_ustr },
+ { u"starf"_ustr, u"\u2605"_ustr },
+ { u"straightepsilon"_ustr, u"\u03F5"_ustr },
+ { u"straightphi"_ustr, u"\u03D5"_ustr },
+ { u"strns"_ustr, u"\u00AF"_ustr },
+ { u"sub"_ustr, u"\u2282"_ustr },
+ { u"subE"_ustr, u"\u2AC5"_ustr },
+ { u"subdot"_ustr, u"\u2ABD"_ustr },
+ { u"sube"_ustr, u"\u2286"_ustr },
+ { u"subedot"_ustr, u"\u2AC3"_ustr },
+ { u"submult"_ustr, u"\u2AC1"_ustr },
+ { u"subnE"_ustr, u"\u2ACB"_ustr },
+ { u"subne"_ustr, u"\u228A"_ustr },
+ { u"subplus"_ustr, u"\u2ABF"_ustr },
+ { u"subrarr"_ustr, u"\u2979"_ustr },
+ { u"subset"_ustr, u"\u2282"_ustr },
+ { u"subseteq"_ustr, u"\u2286"_ustr },
+ { u"subseteqq"_ustr, u"\u2AC5"_ustr },
+ { u"subsetneq"_ustr, u"\u228A"_ustr },
+ { u"subsetneqq"_ustr, u"\u2ACB"_ustr },
+ { u"subsim"_ustr, u"\u2AC7"_ustr },
+ { u"subsub"_ustr, u"\u2AD5"_ustr },
+ { u"subsup"_ustr, u"\u2AD3"_ustr },
+ { u"succ"_ustr, u"\u227B"_ustr },
+ { u"succapprox"_ustr, u"\u2AB8"_ustr },
+ { u"succcurlyeq"_ustr, u"\u227D"_ustr },
+ { u"succeq"_ustr, u"\u2AB0"_ustr },
+ { u"succnapprox"_ustr, u"\u2ABA"_ustr },
+ { u"succneqq"_ustr, u"\u2AB6"_ustr },
+ { u"succnsim"_ustr, u"\u22E9"_ustr },
+ { u"succsim"_ustr, u"\u227F"_ustr },
+ { u"sum"_ustr, u"\u2211"_ustr },
+ { u"sung"_ustr, u"\u266A"_ustr },
+ { u"sup"_ustr, u"\u2283"_ustr },
+ { u"sup1"_ustr, u"\u00B9"_ustr },
+ { u"sup2"_ustr, u"\u00B2"_ustr },
+ { u"sup3"_ustr, u"\u00B3"_ustr },
+ { u"supE"_ustr, u"\u2AC6"_ustr },
+ { u"supdot"_ustr, u"\u2ABE"_ustr },
+ { u"supdsub"_ustr, u"\u2AD8"_ustr },
+ { u"supe"_ustr, u"\u2287"_ustr },
+ { u"supedot"_ustr, u"\u2AC4"_ustr },
+ { u"suphsol"_ustr, u"\u27C9"_ustr },
+ { u"suphsub"_ustr, u"\u2AD7"_ustr },
+ { u"suplarr"_ustr, u"\u297B"_ustr },
+ { u"supmult"_ustr, u"\u2AC2"_ustr },
+ { u"supnE"_ustr, u"\u2ACC"_ustr },
+ { u"supne"_ustr, u"\u228B"_ustr },
+ { u"supplus"_ustr, u"\u2AC0"_ustr },
+ { u"supset"_ustr, u"\u2283"_ustr },
+ { u"supseteq"_ustr, u"\u2287"_ustr },
+ { u"supseteqq"_ustr, u"\u2AC6"_ustr },
+ { u"supsetneq"_ustr, u"\u228B"_ustr },
+ { u"supsetneqq"_ustr, u"\u2ACC"_ustr },
+ { u"supsim"_ustr, u"\u2AC8"_ustr },
+ { u"supsub"_ustr, u"\u2AD4"_ustr },
+ { u"supsup"_ustr, u"\u2AD6"_ustr },
+ { u"swArr"_ustr, u"\u21D9"_ustr },
+ { u"swarhk"_ustr, u"\u2926"_ustr },
+ { u"swarr"_ustr, u"\u2199"_ustr },
+ { u"swarrow"_ustr, u"\u2199"_ustr },
+ { u"swnwar"_ustr, u"\u292A"_ustr },
+ { u"szlig"_ustr, u"\u00DF"_ustr },
+ { u"target"_ustr, u"\u2316"_ustr },
+ { u"tau"_ustr, u"\u03C4"_ustr },
+ { u"tbrk"_ustr, u"\u23B4"_ustr },
+ { u"tcaron"_ustr, u"\u0165"_ustr },
+ { u"tcedil"_ustr, u"\u0163"_ustr },
+ { u"tcy"_ustr, u"\u0442"_ustr },
+ { u"tdot"_ustr, u"\u20DB"_ustr },
+ { u"telrec"_ustr, u"\u2315"_ustr },
+ { u"tfr"_ustr, u"\U0001D531"_ustr },
+ { u"there4"_ustr, u"\u2234"_ustr },
+ { u"therefore"_ustr, u"\u2234"_ustr },
+ { u"theta"_ustr, u"\u03B8"_ustr },
+ { u"thetasym"_ustr, u"\u03D1"_ustr },
+ { u"thetav"_ustr, u"\u03D1"_ustr },
+ { u"thickapprox"_ustr, u"\u2248"_ustr },
+ { u"thicksim"_ustr, u"\u223C"_ustr },
+ { u"thinsp"_ustr, u"\u2009"_ustr },
+ { u"thkap"_ustr, u"\u2248"_ustr },
+ { u"thksim"_ustr, u"\u223C"_ustr },
+ { u"thorn"_ustr, u"\u00FE"_ustr },
+ { u"tilde"_ustr, u"\u02DC"_ustr },
+ { u"times"_ustr, u"\u00D7"_ustr },
+ { u"timesb"_ustr, u"\u22A0"_ustr },
+ { u"timesbar"_ustr, u"\u2A31"_ustr },
+ { u"timesd"_ustr, u"\u2A30"_ustr },
+ { u"tint"_ustr, u"\u222D"_ustr },
+ { u"toea"_ustr, u"\u2928"_ustr },
+ { u"top"_ustr, u"\u22A4"_ustr },
+ { u"topbot"_ustr, u"\u2336"_ustr },
+ { u"topcir"_ustr, u"\u2AF1"_ustr },
+ { u"topf"_ustr, u"\U0001D565"_ustr },
+ { u"topfork"_ustr, u"\u2ADA"_ustr },
+ { u"tosa"_ustr, u"\u2929"_ustr },
+ { u"tprime"_ustr, u"\u2034"_ustr },
+ { u"trade"_ustr, u"\u2122"_ustr },
+ { u"triangle"_ustr, u"\u25B5"_ustr },
+ { u"triangledown"_ustr, u"\u25BF"_ustr },
+ { u"triangleleft"_ustr, u"\u25C3"_ustr },
+ { u"trianglelefteq"_ustr, u"\u22B4"_ustr },
+ { u"triangleq"_ustr, u"\u225C"_ustr },
+ { u"triangleright"_ustr, u"\u25B9"_ustr },
+ { u"trianglerighteq"_ustr, u"\u22B5"_ustr },
+ { u"tridot"_ustr, u"\u25EC"_ustr },
+ { u"trie"_ustr, u"\u225C"_ustr },
+ { u"triminus"_ustr, u"\u2A3A"_ustr },
+ { u"triplus"_ustr, u"\u2A39"_ustr },
+ { u"trisb"_ustr, u"\u29CD"_ustr },
+ { u"tritime"_ustr, u"\u2A3B"_ustr },
+ { u"trpezium"_ustr, u"\u23E2"_ustr },
+ { u"tscr"_ustr, u"\U0001D4C9"_ustr },
+ { u"tscy"_ustr, u"\u0446"_ustr },
+ { u"tshcy"_ustr, u"\u045B"_ustr },
+ { u"tstrok"_ustr, u"\u0167"_ustr },
+ { u"twixt"_ustr, u"\u226C"_ustr },
+ { u"twoheadleftarrow"_ustr, u"\u219E"_ustr },
+ { u"twoheadrightarrow"_ustr, u"\u21A0"_ustr },
+ { u"uArr"_ustr, u"\u21D1"_ustr },
+ { u"uHar"_ustr, u"\u2963"_ustr },
+ { u"uacute"_ustr, u"\u00FA"_ustr },
+ { u"uarr"_ustr, u"\u2191"_ustr },
+ { u"ubrcy"_ustr, u"\u045E"_ustr },
+ { u"ubreve"_ustr, u"\u016D"_ustr },
+ { u"ucirc"_ustr, u"\u00FB"_ustr },
+ { u"ucy"_ustr, u"\u0443"_ustr },
+ { u"udarr"_ustr, u"\u21C5"_ustr },
+ { u"udblac"_ustr, u"\u0171"_ustr },
+ { u"udhar"_ustr, u"\u296E"_ustr },
+ { u"ufisht"_ustr, u"\u297E"_ustr },
+ { u"ufr"_ustr, u"\U0001D532"_ustr },
+ { u"ugrave"_ustr, u"\u00F9"_ustr },
+ { u"uharl"_ustr, u"\u21BF"_ustr },
+ { u"uharr"_ustr, u"\u21BE"_ustr },
+ { u"uhblk"_ustr, u"\u2580"_ustr },
+ { u"ulcorn"_ustr, u"\u231C"_ustr },
+ { u"ulcorner"_ustr, u"\u231C"_ustr },
+ { u"ulcrop"_ustr, u"\u230F"_ustr },
+ { u"ultri"_ustr, u"\u25F8"_ustr },
+ { u"umacr"_ustr, u"\u016B"_ustr },
+ { u"uml"_ustr, u"\u00A8"_ustr },
+ { u"uogon"_ustr, u"\u0173"_ustr },
+ { u"uopf"_ustr, u"\U0001D566"_ustr },
+ { u"uparrow"_ustr, u"\u2191"_ustr },
+ { u"updownarrow"_ustr, u"\u2195"_ustr },
+ { u"upharpoonleft"_ustr, u"\u21BF"_ustr },
+ { u"upharpoonright"_ustr, u"\u21BE"_ustr },
+ { u"uplus"_ustr, u"\u228E"_ustr },
+ { u"upsi"_ustr, u"\u03C5"_ustr },
+ { u"upsih"_ustr, u"\u03D2"_ustr },
+ { u"upsilon"_ustr, u"\u03C5"_ustr },
+ { u"upuparrows"_ustr, u"\u21C8"_ustr },
+ { u"urcorn"_ustr, u"\u231D"_ustr },
+ { u"urcorner"_ustr, u"\u231D"_ustr },
+ { u"urcrop"_ustr, u"\u230E"_ustr },
+ { u"uring"_ustr, u"\u016F"_ustr },
+ { u"urtri"_ustr, u"\u25F9"_ustr },
+ { u"uscr"_ustr, u"\U0001D4CA"_ustr },
+ { u"utdot"_ustr, u"\u22F0"_ustr },
+ { u"utilde"_ustr, u"\u0169"_ustr },
+ { u"utri"_ustr, u"\u25B5"_ustr },
+ { u"utrif"_ustr, u"\u25B4"_ustr },
+ { u"uuarr"_ustr, u"\u21C8"_ustr },
+ { u"uuml"_ustr, u"\u00FC"_ustr },
+ { u"uwangle"_ustr, u"\u29A7"_ustr },
+ { u"vArr"_ustr, u"\u21D5"_ustr },
+ { u"vBar"_ustr, u"\u2AE8"_ustr },
+ { u"vBarv"_ustr, u"\u2AE9"_ustr },
+ { u"vDash"_ustr, u"\u22A8"_ustr },
+ { u"vangrt"_ustr, u"\u299C"_ustr },
+ { u"varepsilon"_ustr, u"\u03F5"_ustr },
+ { u"varkappa"_ustr, u"\u03F0"_ustr },
+ { u"varnothing"_ustr, u"\u2205"_ustr },
+ { u"varphi"_ustr, u"\u03D5"_ustr },
+ { u"varpi"_ustr, u"\u03D6"_ustr },
+ { u"varpropto"_ustr, u"\u221D"_ustr },
+ { u"varr"_ustr, u"\u2195"_ustr },
+ { u"varrho"_ustr, u"\u03F1"_ustr },
+ { u"varsigma"_ustr, u"\u03C2"_ustr },
+ { u"varsubsetneq"_ustr, u"\u228A\uFE00"_ustr },
+ { u"varsubsetneqq"_ustr, u"\u2ACB\uFE00"_ustr },
+ { u"varsupsetneq"_ustr, u"\u228B\uFE00"_ustr },
+ { u"varsupsetneqq"_ustr, u"\u2ACC\uFE00"_ustr },
+ { u"vartheta"_ustr, u"\u03D1"_ustr },
+ { u"vartriangleleft"_ustr, u"\u22B2"_ustr },
+ { u"vartriangleright"_ustr, u"\u22B3"_ustr },
+ { u"vcy"_ustr, u"\u0432"_ustr },
+ { u"vdash"_ustr, u"\u22A2"_ustr },
+ { u"vee"_ustr, u"\u2228"_ustr },
+ { u"veebar"_ustr, u"\u22BB"_ustr },
+ { u"veeeq"_ustr, u"\u225A"_ustr },
+ { u"vellip"_ustr, u"\u22EE"_ustr },
+ { u"verbar"_ustr, u"\u007C"_ustr },
+ { u"vert"_ustr, u"\u007C"_ustr },
+ { u"vfr"_ustr, u"\U0001D533"_ustr },
+ { u"vltri"_ustr, u"\u22B2"_ustr },
+ { u"vnsub"_ustr, u"\u2282\u20D2"_ustr },
+ { u"vnsup"_ustr, u"\u2283\u20D2"_ustr },
+ { u"vopf"_ustr, u"\U0001D567"_ustr },
+ { u"vprop"_ustr, u"\u221D"_ustr },
+ { u"vrtri"_ustr, u"\u22B3"_ustr },
+ { u"vscr"_ustr, u"\U0001D4CB"_ustr },
+ { u"vsubnE"_ustr, u"\u2ACB\uFE00"_ustr },
+ { u"vsubne"_ustr, u"\u228A\uFE00"_ustr },
+ { u"vsupnE"_ustr, u"\u2ACC\uFE00"_ustr },
+ { u"vsupne"_ustr, u"\u228B\uFE00"_ustr },
+ { u"vzigzag"_ustr, u"\u299A"_ustr },
+ { u"wcirc"_ustr, u"\u0175"_ustr },
+ { u"wedbar"_ustr, u"\u2A5F"_ustr },
+ { u"wedge"_ustr, u"\u2227"_ustr },
+ { u"wedgeq"_ustr, u"\u2259"_ustr },
+ { u"weierp"_ustr, u"\u2118"_ustr },
+ { u"wfr"_ustr, u"\U0001D534"_ustr },
+ { u"wopf"_ustr, u"\U0001D568"_ustr },
+ { u"wp"_ustr, u"\u2118"_ustr },
+ { u"wr"_ustr, u"\u2240"_ustr },
+ { u"wreath"_ustr, u"\u2240"_ustr },
+ { u"wscr"_ustr, u"\U0001D4CC"_ustr },
+ { u"xcap"_ustr, u"\u22C2"_ustr },
+ { u"xcirc"_ustr, u"\u25EF"_ustr },
+ { u"xcup"_ustr, u"\u22C3"_ustr },
+ { u"xdtri"_ustr, u"\u25BD"_ustr },
+ { u"xfr"_ustr, u"\U0001D535"_ustr },
+ { u"xhArr"_ustr, u"\u27FA"_ustr },
+ { u"xharr"_ustr, u"\u27F7"_ustr },
+ { u"xi"_ustr, u"\u03BE"_ustr },
+ { u"xlArr"_ustr, u"\u27F8"_ustr },
+ { u"xlarr"_ustr, u"\u27F5"_ustr },
+ { u"xmap"_ustr, u"\u27FC"_ustr },
+ { u"xnis"_ustr, u"\u22FB"_ustr },
+ { u"xodot"_ustr, u"\u2A00"_ustr },
+ { u"xopf"_ustr, u"\U0001D569"_ustr },
+ { u"xoplus"_ustr, u"\u2A01"_ustr },
+ { u"xotime"_ustr, u"\u2A02"_ustr },
+ { u"xrArr"_ustr, u"\u27F9"_ustr },
+ { u"xrarr"_ustr, u"\u27F6"_ustr },
+ { u"xscr"_ustr, u"\U0001D4CD"_ustr },
+ { u"xsqcup"_ustr, u"\u2A06"_ustr },
+ { u"xuplus"_ustr, u"\u2A04"_ustr },
+ { u"xutri"_ustr, u"\u25B3"_ustr },
+ { u"xvee"_ustr, u"\u22C1"_ustr },
+ { u"xwedge"_ustr, u"\u22C0"_ustr },
+ { u"yacute"_ustr, u"\u00FD"_ustr },
+ { u"yacy"_ustr, u"\u044F"_ustr },
+ { u"ycirc"_ustr, u"\u0177"_ustr },
+ { u"ycy"_ustr, u"\u044B"_ustr },
+ { u"yen"_ustr, u"\u00A5"_ustr },
+ { u"yfr"_ustr, u"\U0001D536"_ustr },
+ { u"yicy"_ustr, u"\u0457"_ustr },
+ { u"yopf"_ustr, u"\U0001D56A"_ustr },
+ { u"yscr"_ustr, u"\U0001D4CE"_ustr },
+ { u"yucy"_ustr, u"\u044E"_ustr },
+ { u"yuml"_ustr, u"\u00FF"_ustr },
+ { u"zacute"_ustr, u"\u017A"_ustr },
+ { u"zcaron"_ustr, u"\u017E"_ustr },
+ { u"zcy"_ustr, u"\u0437"_ustr },
+ { u"zdot"_ustr, u"\u017C"_ustr },
+ { u"zeetrf"_ustr, u"\u2128"_ustr },
+ { u"zeta"_ustr, u"\u03B6"_ustr },
+ { u"zfr"_ustr, u"\U0001D537"_ustr },
+ { u"zhcy"_ustr, u"\u0436"_ustr },
+ { u"zigrarr"_ustr, u"\u21DD"_ustr },
+ { u"zopf"_ustr, u"\U0001D56B"_ustr },
+ { u"zscr"_ustr, u"\U0001D4CF"_ustr },
+ { u"zwj"_ustr, u"\u200D"_ustr },
+ { u"zwnj"_ustr, u"\u200C"_ustr }
// clang-format on
};
@@ -2156,8 +2156,8 @@ const ::css::uno::Sequence<::css::beans::Pair<OUString, OUString>>
static ::css::beans::Pair<::rtl::OUString, ::rtl::OUString>
icustomMathmlHtmlEntitiesNamesExportData[2] = {
// clang-format off
- { u"&sigma;", u"\u03C3"},
- { u"&infin;", u"\u221E"}
+ { u"&sigma;"_ustr, u"\u03C3"_ustr},
+ { u"&infin;"_ustr, u"\u221E"_ustr}
// clang-format on
};
const ::css::uno::Sequence<::css::beans::Pair<::rtl::OUString, ::rtl::OUString>>
diff --git a/starmath/source/parse5.cxx b/starmath/source/parse5.cxx
index d2742b27afa6..8f2815c3c3b4 100644
--- a/starmath/source/parse5.cxx
+++ b/starmath/source/parse5.cxx
@@ -39,255 +39,255 @@ using namespace ::com::sun::star::i18n;
//Definition of math keywords
const SmTokenTableEntry aTokenTable[]
- = { { u"abs", TABS, '\0', TG::UnOper, 13 },
- { u"acute", TACUTE, MS_ACUTE, TG::Attribute, 5 },
- { u"aleph", TALEPH, MS_ALEPH, TG::Standalone, 5 },
- { u"alignb", TALIGNC, '\0', TG::Align, 0 },
- { u"alignc", TALIGNC, '\0', TG::Align, 0 },
- { u"alignl", TALIGNL, '\0', TG::Align, 0 },
- { u"alignm", TALIGNC, '\0', TG::Align, 0 },
- { u"alignr", TALIGNR, '\0', TG::Align, 0 },
- { u"alignt", TALIGNC, '\0', TG::Align, 0 },
- { u"and", TAND, MS_AND, TG::Product, 0 },
- { u"approx", TAPPROX, MS_APPROX, TG::Relation, 0 },
- { u"arccos", TACOS, '\0', TG::Function, 5 },
- { u"arccot", TACOT, '\0', TG::Function, 5 },
- { u"arcosh", TACOSH, '\0', TG::Function, 5 },
- { u"arcoth", TACOTH, '\0', TG::Function, 5 },
- { u"arcsin", TASIN, '\0', TG::Function, 5 },
- { u"arctan", TATAN, '\0', TG::Function, 5 },
- { u"arsinh", TASINH, '\0', TG::Function, 5 },
- { u"artanh", TATANH, '\0', TG::Function, 5 },
- { u"backepsilon", TBACKEPSILON, MS_BACKEPSILON, TG::Standalone, 5 },
- { u"bar", TBAR, MS_BAR, TG::Attribute, 5 },
- { u"binom", TBINOM, '\0', TG::NONE, 5 },
- { u"bold", TBOLD, '\0', TG::FontAttr, 5 },
- { u"boper", TBOPER, '\0', TG::Product, 0 },
- { u"breve", TBREVE, MS_BREVE, TG::Attribute, 5 },
- { u"bslash", TBACKSLASH, MS_BACKSLASH, TG::Product, 0 },
- { u"cdot", TCDOT, MS_CDOT, TG::Product, 0 },
- { u"check", TCHECK, MS_CHECK, TG::Attribute, 5 },
- { u"circ", TCIRC, MS_CIRC, TG::Standalone, 5 },
- { u"circle", TCIRCLE, MS_CIRCLE, TG::Attribute, 5 },
- { u"color", TCOLOR, '\0', TG::FontAttr, 5 },
- { u"coprod", TCOPROD, MS_COPROD, TG::Oper, 5 },
- { u"cos", TCOS, '\0', TG::Function, 5 },
- { u"cosh", TCOSH, '\0', TG::Function, 5 },
- { u"cot", TCOT, '\0', TG::Function, 5 },
- { u"coth", TCOTH, '\0', TG::Function, 5 },
- { u"csub", TCSUB, '\0', TG::Power, 0 },
- { u"csup", TCSUP, '\0', TG::Power, 0 },
- { u"dddot", TDDDOT, MS_DDDOT, TG::Attribute, 5 },
- { u"ddot", TDDOT, MS_DDOT, TG::Attribute, 5 },
- { u"def", TDEF, MS_DEF, TG::Relation, 0 },
- { u"div", TDIV, MS_DIV, TG::Product, 0 },
- { u"divides", TDIVIDES, MS_LINE, TG::Relation, 0 },
- { u"dlarrow", TDLARROW, MS_DLARROW, TG::Standalone, 5 },
- { u"dlrarrow", TDLRARROW, MS_DLRARROW, TG::Standalone, 5 },
- { u"dot", TDOT, MS_DOT, TG::Attribute, 5 },
- { u"dotsaxis", TDOTSAXIS, MS_DOTSAXIS, TG::Standalone, 5 }, // 5 to continue expression
- { u"dotsdiag", TDOTSDIAG, MS_DOTSUP, TG::Standalone, 5 },
- { u"dotsdown", TDOTSDOWN, MS_DOTSDOWN, TG::Standalone, 5 },
- { u"dotslow", TDOTSLOW, MS_DOTSLOW, TG::Standalone, 5 },
- { u"dotsup", TDOTSUP, MS_DOTSUP, TG::Standalone, 5 },
- { u"dotsvert", TDOTSVERT, MS_DOTSVERT, TG::Standalone, 5 },
- { u"downarrow", TDOWNARROW, MS_DOWNARROW, TG::Standalone, 5 },
- { u"drarrow", TDRARROW, MS_DRARROW, TG::Standalone, 5 },
- { u"emptyset", TEMPTYSET, MS_EMPTYSET, TG::Standalone, 5 },
- { u"equiv", TEQUIV, MS_EQUIV, TG::Relation, 0 },
- { u"evaluate", TEVALUATE, '\0', TG::NONE, 0 },
- { u"exists", TEXISTS, MS_EXISTS, TG::Standalone, 5 },
- { u"exp", TEXP, '\0', TG::Function, 5 },
- { u"fact", TFACT, MS_FACT, TG::UnOper, 5 },
- { u"fixed", TFIXED, '\0', TG::Font, 0 },
- { u"font", TFONT, '\0', TG::FontAttr, 5 },
- { u"forall", TFORALL, MS_FORALL, TG::Standalone, 5 },
- { u"fourier", TFOURIER, MS_FOURIER, TG::Standalone, 5 },
- { u"frac", TFRAC, '\0', TG::NONE, 5 },
- { u"from", TFROM, '\0', TG::Limit, 0 },
- { u"func", TFUNC, '\0', TG::Function, 5 },
- { u"ge", TGE, MS_GE, TG::Relation, 0 },
- { u"geslant", TGESLANT, MS_GESLANT, TG::Relation, 0 },
- { u"gg", TGG, MS_GG, TG::Relation, 0 },
- { u"grave", TGRAVE, MS_GRAVE, TG::Attribute, 5 },
- { u"gt", TGT, MS_GT, TG::Relation, 0 },
- { u"hadd", THADD, MS_HADD, TG::Oper, 5 },
- { u"harpoon", THARPOON, MS_HARPOON, TG::Attribute, 5 },
- { u"hat", THAT, MS_HAT, TG::Attribute, 5 },
- { u"hbar", THBAR, MS_HBAR, TG::Standalone, 5 },
- { u"hex", THEX, '\0', TG::NONE, 5 },
- { u"iiint", TIIINT, MS_IIINT, TG::Oper, 5 },
- { u"iint", TIINT, MS_IINT, TG::Oper, 5 },
- { u"im", TIM, MS_IM, TG::Standalone, 5 },
- { u"in", TIN, MS_IN, TG::Relation, 0 },
- { u"infinity", TINFINITY, MS_INFINITY, TG::Standalone, 5 },
- { u"infty", TINFINITY, MS_INFINITY, TG::Standalone, 5 },
- { u"int", TINT, MS_INT, TG::Oper, 5 },
- { u"intd", TINTD, MS_INT, TG::Oper, 5 },
- { u"intersection", TINTERSECT, MS_INTERSECT, TG::Product, 0 },
- { u"it", TIT, '\0', TG::Product, 0 },
- { u"ital", TITALIC, '\0', TG::FontAttr, 5 },
- { u"italic", TITALIC, '\0', TG::FontAttr, 5 },
- { u"lambdabar", TLAMBDABAR, MS_LAMBDABAR, TG::Standalone, 5 },
- { u"langle", TLANGLE, MS_LMATHANGLE, TG::LBrace, 5 },
- { u"laplace", TLAPLACE, MS_LAPLACE, TG::Standalone, 5 },
- { u"lbrace", TLBRACE, MS_LBRACE, TG::LBrace, 5 },
- { u"lceil", TLCEIL, MS_LCEIL, TG::LBrace, 5 },
- { u"ldbracket", TLDBRACKET, MS_LDBRACKET, TG::LBrace, 5 },
- { u"ldline", TLDLINE, MS_DVERTLINE, TG::LBrace, 5 },
- { u"le", TLE, MS_LE, TG::Relation, 0 },
- { u"left", TLEFT, '\0', TG::NONE, 5 },
- { u"leftarrow", TLEFTARROW, MS_LEFTARROW, TG::Standalone, 5 },
- { u"leslant", TLESLANT, MS_LESLANT, TG::Relation, 0 },
- { u"lfloor", TLFLOOR, MS_LFLOOR, TG::LBrace, 5 },
- { u"lim", TLIM, '\0', TG::Oper, 5 },
- { u"liminf", TLIMINF, '\0', TG::Oper, 5 },
- { u"limsup", TLIMSUP, '\0', TG::Oper, 5 },
- { u"lint", TLINT, MS_LINT, TG::Oper, 5 },
- { u"ll", TLL, MS_LL, TG::Relation, 0 },
- { u"lline", TLLINE, MS_VERTLINE, TG::LBrace, 5 },
- { u"llint", TLLINT, MS_LLINT, TG::Oper, 5 },
- { u"lllint", TLLLINT, MS_LLLINT, TG::Oper, 5 },
- { u"ln", TLN, '\0', TG::Function, 5 },
- { u"log", TLOG, '\0', TG::Function, 5 },
- { u"lrline", TLRLINE, MS_VERTLINE, TG::LBrace | TG::RBrace, 5 },
- { u"lrdline", TLRDLINE, MS_VERTLINE, TG::LBrace | TG::RBrace, 5 },
- { u"lsub", TLSUB, '\0', TG::Power, 0 },
- { u"lsup", TLSUP, '\0', TG::Power, 0 },
- { u"lt", TLT, MS_LT, TG::Relation, 0 },
- { u"maj", TSUM, MS_MAJ, TG::Oper, 5 },
- { u"matrix", TMATRIX, '\0', TG::NONE, 5 },
- { u"minusplus", TMINUSPLUS, MS_MINUSPLUS, TG::UnOper | TG::Sum, 5 },
- { u"mline", TMLINE, MS_VERTLINE, TG::NONE, 0 }, //! not in TG::RBrace, Level 0
- { u"nabla", TNABLA, MS_NABLA, TG::Standalone, 5 },
- { u"nbold", TNBOLD, '\0', TG::FontAttr, 5 },
- { u"ndivides", TNDIVIDES, MS_NDIVIDES, TG::Relation, 0 },
- { u"neg", TNEG, MS_NEG, TG::UnOper, 5 },
- { u"neq", TNEQ, MS_NEQ, TG::Relation, 0 },
- { u"newline", TNEWLINE, '\0', TG::NONE, 0 },
- { u"ni", TNI, MS_NI, TG::Relation, 0 },
- { u"nitalic", TNITALIC, '\0', TG::FontAttr, 5 },
- { u"none", TNONE, '\0', TG::LBrace | TG::RBrace, 0 },
- { u"nospace", TNOSPACE, '\0', TG::Standalone, 5 },
- { u"notexists", TNOTEXISTS, MS_NOTEXISTS, TG::Standalone, 5 },
- { u"notin", TNOTIN, MS_NOTIN, TG::Relation, 0 },
- { u"nprec", TNOTPRECEDES, MS_NOTPRECEDES, TG::Relation, 0 },
- { u"nroot", TNROOT, MS_SQRT, TG::UnOper, 5 },
- { u"nsubset", TNSUBSET, MS_NSUBSET, TG::Relation, 0 },
- { u"nsubseteq", TNSUBSETEQ, MS_NSUBSETEQ, TG::Relation, 0 },
- { u"nsucc", TNOTSUCCEEDS, MS_NOTSUCCEEDS, TG::Relation, 0 },
- { u"nsupset", TNSUPSET, MS_NSUPSET, TG::Relation, 0 },
- { u"nsupseteq", TNSUPSETEQ, MS_NSUPSETEQ, TG::Relation, 0 },
- { u"odivide", TODIVIDE, MS_ODIVIDE, TG::Product, 0 },
- { u"odot", TODOT, MS_ODOT, TG::Product, 0 },
- { u"ominus", TOMINUS, MS_OMINUS, TG::Sum, 0 },
- { u"oper", TOPER, '\0', TG::Oper, 5 },
- { u"oplus", TOPLUS, MS_OPLUS, TG::Sum, 0 },
- { u"or", TOR, MS_OR, TG::Sum, 0 },
- { u"ortho", TORTHO, MS_ORTHO, TG::Relation, 0 },
- { u"otimes", TOTIMES, MS_OTIMES, TG::Product, 0 },
- { u"over", TOVER, '\0', TG::Product, 0 },
- { u"overbrace", TOVERBRACE, MS_OVERBRACE, TG::Product, 5 },
- { u"overline", TOVERLINE, '\0', TG::Attribute, 5 },
- { u"overstrike", TOVERSTRIKE, '\0', TG::Attribute, 5 },
- { u"owns", TNI, MS_NI, TG::Relation, 0 },
- { u"parallel", TPARALLEL, MS_DLINE, TG::Relation, 0 },
- { u"partial", TPARTIAL, MS_PARTIAL, TG::Standalone, 5 },
- { u"phantom", TPHANTOM, '\0', TG::FontAttr, 5 },
- { u"plusminus", TPLUSMINUS, MS_PLUSMINUS, TG::UnOper | TG::Sum, 5 },
- { u"prec", TPRECEDES, MS_PRECEDES, TG::Relation, 0 },
- { u"preccurlyeq", TPRECEDESEQUAL, MS_PRECEDESEQUAL, TG::Relation, 0 },
- { u"precsim", TPRECEDESEQUIV, MS_PRECEDESEQUIV, TG::Relation, 0 },
- { u"prod", TPROD, MS_PROD, TG::Oper, 5 },
- { u"prop", TPROP, MS_PROP, TG::Relation, 0 },
- { u"rangle", TRANGLE, MS_RMATHANGLE, TG::RBrace, 0 }, //! 0 to terminate expression
- { u"rbrace", TRBRACE, MS_RBRACE, TG::RBrace, 0 },
- { u"rceil", TRCEIL, MS_RCEIL, TG::RBrace, 0 },
- { u"rdbracket", TRDBRACKET, MS_RDBRACKET, TG::RBrace, 0 },
- { u"rdline", TRDLINE, MS_DVERTLINE, TG::RBrace, 0 },
- { u"re", TRE, MS_RE, TG::Standalone, 5 },
- { u"rfloor", TRFLOOR, MS_RFLOOR, TG::RBrace, 0 }, //! 0 to terminate expression
- { u"right", TRIGHT, '\0', TG::NONE, 0 },
- { u"rightarrow", TRIGHTARROW, MS_RIGHTARROW, TG::Standalone, 5 },
- { u"rline", TRLINE, MS_VERTLINE, TG::RBrace, 0 }, //! 0 to terminate expression
- { u"rsub", TRSUB, '\0', TG::Power, 0 },
- { u"rsup", TRSUP, '\0', TG::Power, 0 },
- { u"sans", TSANS, '\0', TG::Font, 0 },
- { u"serif", TSERIF, '\0', TG::Font, 0 },
- { u"setC", TSETC, MS_SETC, TG::Standalone, 5 },
- { u"setminus", TSETMINUS, MS_BACKSLASH, TG::Product, 0 },
- { u"setN", TSETN, MS_SETN, TG::Standalone, 5 },
- { u"setQ", TSETQ, MS_SETQ, TG::Standalone, 5 },
- { u"setquotient", TSETQUOTIENT, MS_SLASH, TG::Product, 0 },
- { u"setR", TSETR, MS_SETR, TG::Standalone, 5 },
- { u"setZ", TSETZ, MS_SETZ, TG::Standalone, 5 },
- { u"sim", TSIM, MS_SIM, TG::Relation, 0 },
- { u"simeq", TSIMEQ, MS_SIMEQ, TG::Relation, 0 },
- { u"sin", TSIN, '\0', TG::Function, 5 },
- { u"sinh", TSINH, '\0', TG::Function, 5 },
- { u"size", TSIZE, '\0', TG::FontAttr, 5 },
- { u"slash", TSLASH, MS_SLASH, TG::Product, 0 },
- { u"sqrt", TSQRT, MS_SQRT, TG::UnOper, 5 },
- { u"stack", TSTACK, '\0', TG::NONE, 5 },
- { u"sub", TRSUB, '\0', TG::Power, 0 },
- { u"subset", TSUBSET, MS_SUBSET, TG::Relation, 0 },
- { u"subseteq", TSUBSETEQ, MS_SUBSETEQ, TG::Relation, 0 },
- { u"succ", TSUCCEEDS, MS_SUCCEEDS, TG::Relation, 0 },
- { u"succcurlyeq", TSUCCEEDSEQUAL, MS_SUCCEEDSEQUAL, TG::Relation, 0 },
- { u"succsim", TSUCCEEDSEQUIV, MS_SUCCEEDSEQUIV, TG::Relation, 0 },
- { u"sum", TSUM, MS_SUM, TG::Oper, 5 },
- { u"sup", TRSUP, '\0', TG::Power, 0 },
- { u"supset", TSUPSET, MS_SUPSET, TG::Relation, 0 },
- { u"supseteq", TSUPSETEQ, MS_SUPSETEQ, TG::Relation, 0 },
- { u"tan", TTAN, '\0', TG::Function, 5 },
- { u"tanh", TTANH, '\0', TG::Function, 5 },
- { u"tilde", TTILDE, MS_TILDE, TG::Attribute, 5 },
- { u"times", TTIMES, MS_TIMES, TG::Product, 0 },
- { u"to", TTO, '\0', TG::Limit, 0 },
- { u"toward", TTOWARD, MS_RIGHTARROW, TG::Relation, 0 },
- { u"transl", TTRANSL, MS_TRANSL, TG::Relation, 0 },
- { u"transr", TTRANSR, MS_TRANSR, TG::Relation, 0 },
- { u"underbrace", TUNDERBRACE, MS_UNDERBRACE, TG::Product, 5 },
- { u"underline", TUNDERLINE, '\0', TG::Attribute, 5 },
- { u"union", TUNION, MS_UNION, TG::Sum, 0 },
- { u"uoper", TUOPER, '\0', TG::UnOper, 5 },
- { u"uparrow", TUPARROW, MS_UPARROW, TG::Standalone, 5 },
- { u"vec", TVEC, MS_VEC, TG::Attribute, 5 },
- { u"widebslash", TWIDEBACKSLASH, MS_BACKSLASH, TG::Product, 0 },
- { u"wideharpoon", TWIDEHARPOON, MS_HARPOON, TG::Attribute, 5 },
- { u"widehat", TWIDEHAT, MS_HAT, TG::Attribute, 5 },
- { u"wideslash", TWIDESLASH, MS_SLASH, TG::Product, 0 },
- { u"widetilde", TWIDETILDE, MS_TILDE, TG::Attribute, 5 },
- { u"widevec", TWIDEVEC, MS_VEC, TG::Attribute, 5 },
- { u"wp", TWP, MS_WP, TG::Standalone, 5 },
- { u"جا", TSIN, '\0', TG::Function, 5 },
- { u"جاز", TSINH, '\0', TG::Function, 5 },
- { u"جتا", TCOS, '\0', TG::Function, 5 },
- { u"جتاز", TCOSH, '\0', TG::Function, 5 },
- { u"حا", TSIN, '\0', TG::Function, 5 },
- { u"حاز", TSINH, '\0', TG::Function, 5 },
- { u"حتا", TCOS, '\0', TG::Function, 5 },
- { u"حتاز", TCOSH, '\0', TG::Function, 5 },
- { u"حد", THADD, MS_HADD, TG::Oper, 5 },
- { u"طا", TTAN, '\0', TG::Function, 5 },
- { u"طاز", TTANH, '\0', TG::Function, 5 },
- { u"طتا", TCOT, '\0', TG::Function, 5 },
- { u"طتاز", TCOTH, '\0', TG::Function, 5 },
- { u"ظا", TTAN, '\0', TG::Function, 5 },
- { u"ظاز", TTANH, '\0', TG::Function, 5 },
- { u"ظتا", TCOT, '\0', TG::Function, 5 },
- { u"ظتاز", TCOTH, '\0', TG::Function, 5 },
- { u"قا", TSEC, '\0', TG::Function, 5 },
- { u"قاز", TSECH, '\0', TG::Function, 5 },
- { u"قتا", TCSC, '\0', TG::Function, 5 },
- { u"قتاز", TCSCH, '\0', TG::Function, 5 },
- { u"لو", TLOG, '\0', TG::Function, 5 },
- { u"مجـ", TSUM, MS_MAJ, TG::Oper, 5 },
- { u"نها", TNAHA, '\0', TG::Oper, 5 },
- { u"ٯا", TSEC, '\0', TG::Function, 5 },
- { u"ٯاز", TSECH, '\0', TG::Function, 5 },
- { u"ٯتا", TCSC, '\0', TG::Function, 5 },
- { u"ٯتاز", TCSCH, '\0', TG::Function, 5 } };
+ = { { u"abs"_ustr, TABS, '\0', TG::UnOper, 13 },
+ { u"acute"_ustr, TACUTE, MS_ACUTE, TG::Attribute, 5 },
+ { u"aleph"_ustr, TALEPH, MS_ALEPH, TG::Standalone, 5 },
+ { u"alignb"_ustr, TALIGNC, '\0', TG::Align, 0 },
+ { u"alignc"_ustr, TALIGNC, '\0', TG::Align, 0 },
+ { u"alignl"_ustr, TALIGNL, '\0', TG::Align, 0 },
+ { u"alignm"_ustr, TALIGNC, '\0', TG::Align, 0 },
+ { u"alignr"_ustr, TALIGNR, '\0', TG::Align, 0 },
+ { u"alignt"_ustr, TALIGNC, '\0', TG::Align, 0 },
+ { u"and"_ustr, TAND, MS_AND, TG::Product, 0 },
+ { u"approx"_ustr, TAPPROX, MS_APPROX, TG::Relation, 0 },
+ { u"arccos"_ustr, TACOS, '\0', TG::Function, 5 },
+ { u"arccot"_ustr, TACOT, '\0', TG::Function, 5 },
+ { u"arcosh"_ustr, TACOSH, '\0', TG::Function, 5 },
+ { u"arcoth"_ustr, TACOTH, '\0', TG::Function, 5 },
+ { u"arcsin"_ustr, TASIN, '\0', TG::Function, 5 },
+ { u"arctan"_ustr, TATAN, '\0', TG::Function, 5 },
+ { u"arsinh"_ustr, TASINH, '\0', TG::Function, 5 },
+ { u"artanh"_ustr, TATANH, '\0', TG::Function, 5 },
+ { u"backepsilon"_ustr, TBACKEPSILON, MS_BACKEPSILON, TG::Standalone, 5 },
+ { u"bar"_ustr, TBAR, MS_BAR, TG::Attribute, 5 },
+ { u"binom"_ustr, TBINOM, '\0', TG::NONE, 5 },
+ { u"bold"_ustr, TBOLD, '\0', TG::FontAttr, 5 },
+ { u"boper"_ustr, TBOPER, '\0', TG::Product, 0 },
+ { u"breve"_ustr, TBREVE, MS_BREVE, TG::Attribute, 5 },
+ { u"bslash"_ustr, TBACKSLASH, MS_BACKSLASH, TG::Product, 0 },
+ { u"cdot"_ustr, TCDOT, MS_CDOT, TG::Product, 0 },
+ { u"check"_ustr, TCHECK, MS_CHECK, TG::Attribute, 5 },
+ { u"circ"_ustr, TCIRC, MS_CIRC, TG::Standalone, 5 },
+ { u"circle"_ustr, TCIRCLE, MS_CIRCLE, TG::Attribute, 5 },
+ { u"color"_ustr, TCOLOR, '\0', TG::FontAttr, 5 },
+ { u"coprod"_ustr, TCOPROD, MS_COPROD, TG::Oper, 5 },
+ { u"cos"_ustr, TCOS, '\0', TG::Function, 5 },
+ { u"cosh"_ustr, TCOSH, '\0', TG::Function, 5 },
+ { u"cot"_ustr, TCOT, '\0', TG::Function, 5 },
+ { u"coth"_ustr, TCOTH, '\0', TG::Function, 5 },
+ { u"csub"_ustr, TCSUB, '\0', TG::Power, 0 },
+ { u"csup"_ustr, TCSUP, '\0', TG::Power, 0 },
+ { u"dddot"_ustr, TDDDOT, MS_DDDOT, TG::Attribute, 5 },
+ { u"ddot"_ustr, TDDOT, MS_DDOT, TG::Attribute, 5 },
+ { u"def"_ustr, TDEF, MS_DEF, TG::Relation, 0 },
+ { u"div"_ustr, TDIV, MS_DIV, TG::Product, 0 },
+ { u"divides"_ustr, TDIVIDES, MS_LINE, TG::Relation, 0 },
+ { u"dlarrow"_ustr, TDLARROW, MS_DLARROW, TG::Standalone, 5 },
+ { u"dlrarrow"_ustr, TDLRARROW, MS_DLRARROW, TG::Standalone, 5 },
+ { u"dot"_ustr, TDOT, MS_DOT, TG::Attribute, 5 },
+ { u"dotsaxis"_ustr, TDOTSAXIS, MS_DOTSAXIS, TG::Standalone, 5 }, // 5 to continue expression
+ { u"dotsdiag"_ustr, TDOTSDIAG, MS_DOTSUP, TG::Standalone, 5 },
+ { u"dotsdown"_ustr, TDOTSDOWN, MS_DOTSDOWN, TG::Standalone, 5 },
+ { u"dotslow"_ustr, TDOTSLOW, MS_DOTSLOW, TG::Standalone, 5 },
+ { u"dotsup"_ustr, TDOTSUP, MS_DOTSUP, TG::Standalone, 5 },
+ { u"dotsvert"_ustr, TDOTSVERT, MS_DOTSVERT, TG::Standalone, 5 },
+ { u"downarrow"_ustr, TDOWNARROW, MS_DOWNARROW, TG::Standalone, 5 },
+ { u"drarrow"_ustr, TDRARROW, MS_DRARROW, TG::Standalone, 5 },
+ { u"emptyset"_ustr, TEMPTYSET, MS_EMPTYSET, TG::Standalone, 5 },
+ { u"equiv"_ustr, TEQUIV, MS_EQUIV, TG::Relation, 0 },
+ { u"evaluate"_ustr, TEVALUATE, '\0', TG::NONE, 0 },
+ { u"exists"_ustr, TEXISTS, MS_EXISTS, TG::Standalone, 5 },
+ { u"exp"_ustr, TEXP, '\0', TG::Function, 5 },
+ { u"fact"_ustr, TFACT, MS_FACT, TG::UnOper, 5 },
+ { u"fixed"_ustr, TFIXED, '\0', TG::Font, 0 },
+ { u"font"_ustr, TFONT, '\0', TG::FontAttr, 5 },
+ { u"forall"_ustr, TFORALL, MS_FORALL, TG::Standalone, 5 },
+ { u"fourier"_ustr, TFOURIER, MS_FOURIER, TG::Standalone, 5 },
+ { u"frac"_ustr, TFRAC, '\0', TG::NONE, 5 },
+ { u"from"_ustr, TFROM, '\0', TG::Limit, 0 },
+ { u"func"_ustr, TFUNC, '\0', TG::Function, 5 },
+ { u"ge"_ustr, TGE, MS_GE, TG::Relation, 0 },
+ { u"geslant"_ustr, TGESLANT, MS_GESLANT, TG::Relation, 0 },
+ { u"gg"_ustr, TGG, MS_GG, TG::Relation, 0 },
+ { u"grave"_ustr, TGRAVE, MS_GRAVE, TG::Attribute, 5 },
+ { u"gt"_ustr, TGT, MS_GT, TG::Relation, 0 },
+ { u"hadd"_ustr, THADD, MS_HADD, TG::Oper, 5 },
+ { u"harpoon"_ustr, THARPOON, MS_HARPOON, TG::Attribute, 5 },
+ { u"hat"_ustr, THAT, MS_HAT, TG::Attribute, 5 },
+ { u"hbar"_ustr, THBAR, MS_HBAR, TG::Standalone, 5 },
+ { u"hex"_ustr, THEX, '\0', TG::NONE, 5 },
+ { u"iiint"_ustr, TIIINT, MS_IIINT, TG::Oper, 5 },
+ { u"iint"_ustr, TIINT, MS_IINT, TG::Oper, 5 },
+ { u"im"_ustr, TIM, MS_IM, TG::Standalone, 5 },
+ { u"in"_ustr, TIN, MS_IN, TG::Relation, 0 },
+ { u"infinity"_ustr, TINFINITY, MS_INFINITY, TG::Standalone, 5 },
+ { u"infty"_ustr, TINFINITY, MS_INFINITY, TG::Standalone, 5 },
+ { u"int"_ustr, TINT, MS_INT, TG::Oper, 5 },
+ { u"intd"_ustr, TINTD, MS_INT, TG::Oper, 5 },
+ { u"intersection"_ustr, TINTERSECT, MS_INTERSECT, TG::Product, 0 },
+ { u"it"_ustr, TIT, '\0', TG::Product, 0 },
+ { u"ital"_ustr, TITALIC, '\0', TG::FontAttr, 5 },
+ { u"italic"_ustr, TITALIC, '\0', TG::FontAttr, 5 },
+ { u"lambdabar"_ustr, TLAMBDABAR, MS_LAMBDABAR, TG::Standalone, 5 },
+ { u"langle"_ustr, TLANGLE, MS_LMATHANGLE, TG::LBrace, 5 },
+ { u"laplace"_ustr, TLAPLACE, MS_LAPLACE, TG::Standalone, 5 },
+ { u"lbrace"_ustr, TLBRACE, MS_LBRACE, TG::LBrace, 5 },
+ { u"lceil"_ustr, TLCEIL, MS_LCEIL, TG::LBrace, 5 },
+ { u"ldbracket"_ustr, TLDBRACKET, MS_LDBRACKET, TG::LBrace, 5 },
+ { u"ldline"_ustr, TLDLINE, MS_DVERTLINE, TG::LBrace, 5 },
+ { u"le"_ustr, TLE, MS_LE, TG::Relation, 0 },
+ { u"left"_ustr, TLEFT, '\0', TG::NONE, 5 },
+ { u"leftarrow"_ustr, TLEFTARROW, MS_LEFTARROW, TG::Standalone, 5 },
+ { u"leslant"_ustr, TLESLANT, MS_LESLANT, TG::Relation, 0 },
+ { u"lfloor"_ustr, TLFLOOR, MS_LFLOOR, TG::LBrace, 5 },
+ { u"lim"_ustr, TLIM, '\0', TG::Oper, 5 },
+ { u"liminf"_ustr, TLIMINF, '\0', TG::Oper, 5 },
+ { u"limsup"_ustr, TLIMSUP, '\0', TG::Oper, 5 },
+ { u"lint"_ustr, TLINT, MS_LINT, TG::Oper, 5 },
+ { u"ll"_ustr, TLL, MS_LL, TG::Relation, 0 },
+ { u"lline"_ustr, TLLINE, MS_VERTLINE, TG::LBrace, 5 },
+ { u"llint"_ustr, TLLINT, MS_LLINT, TG::Oper, 5 },
+ { u"lllint"_ustr, TLLLINT, MS_LLLINT, TG::Oper, 5 },
+ { u"ln"_ustr, TLN, '\0', TG::Function, 5 },
+ { u"log"_ustr, TLOG, '\0', TG::Function, 5 },
+ { u"lrline"_ustr, TLRLINE, MS_VERTLINE, TG::LBrace | TG::RBrace, 5 },
+ { u"lrdline"_ustr, TLRDLINE, MS_VERTLINE, TG::LBrace | TG::RBrace, 5 },
+ { u"lsub"_ustr, TLSUB, '\0', TG::Power, 0 },
+ { u"lsup"_ustr, TLSUP, '\0', TG::Power, 0 },
+ { u"lt"_ustr, TLT, MS_LT, TG::Relation, 0 },
+ { u"maj"_ustr, TSUM, MS_MAJ, TG::Oper, 5 },
+ { u"matrix"_ustr, TMATRIX, '\0', TG::NONE, 5 },
+ { u"minusplus"_ustr, TMINUSPLUS, MS_MINUSPLUS, TG::UnOper | TG::Sum, 5 },
+ { u"mline"_ustr, TMLINE, MS_VERTLINE, TG::NONE, 0 }, //! not in TG::RBrace, Level 0
+ { u"nabla"_ustr, TNABLA, MS_NABLA, TG::Standalone, 5 },
+ { u"nbold"_ustr, TNBOLD, '\0', TG::FontAttr, 5 },
+ { u"ndivides"_ustr, TNDIVIDES, MS_NDIVIDES, TG::Relation, 0 },
+ { u"neg"_ustr, TNEG, MS_NEG, TG::UnOper, 5 },
+ { u"neq"_ustr, TNEQ, MS_NEQ, TG::Relation, 0 },
+ { u"newline"_ustr, TNEWLINE, '\0', TG::NONE, 0 },
+ { u"ni"_ustr, TNI, MS_NI, TG::Relation, 0 },
+ { u"nitalic"_ustr, TNITALIC, '\0', TG::FontAttr, 5 },
+ { u"none"_ustr, TNONE, '\0', TG::LBrace | TG::RBrace, 0 },
+ { u"nospace"_ustr, TNOSPACE, '\0', TG::Standalone, 5 },
+ { u"notexists"_ustr, TNOTEXISTS, MS_NOTEXISTS, TG::Standalone, 5 },
+ { u"notin"_ustr, TNOTIN, MS_NOTIN, TG::Relation, 0 },
+ { u"nprec"_ustr, TNOTPRECEDES, MS_NOTPRECEDES, TG::Relation, 0 },
+ { u"nroot"_ustr, TNROOT, MS_SQRT, TG::UnOper, 5 },
+ { u"nsubset"_ustr, TNSUBSET, MS_NSUBSET, TG::Relation, 0 },
+ { u"nsubseteq"_ustr, TNSUBSETEQ, MS_NSUBSETEQ, TG::Relation, 0 },
+ { u"nsucc"_ustr, TNOTSUCCEEDS, MS_NOTSUCCEEDS, TG::Relation, 0 },
+ { u"nsupset"_ustr, TNSUPSET, MS_NSUPSET, TG::Relation, 0 },
+ { u"nsupseteq"_ustr, TNSUPSETEQ, MS_NSUPSETEQ, TG::Relation, 0 },
+ { u"odivide"_ustr, TODIVIDE, MS_ODIVIDE, TG::Product, 0 },
+ { u"odot"_ustr, TODOT, MS_ODOT, TG::Product, 0 },
+ { u"ominus"_ustr, TOMINUS, MS_OMINUS, TG::Sum, 0 },
+ { u"oper"_ustr, TOPER, '\0', TG::Oper, 5 },
+ { u"oplus"_ustr, TOPLUS, MS_OPLUS, TG::Sum, 0 },
+ { u"or"_ustr, TOR, MS_OR, TG::Sum, 0 },
+ { u"ortho"_ustr, TORTHO, MS_ORTHO, TG::Relation, 0 },
+ { u"otimes"_ustr, TOTIMES, MS_OTIMES, TG::Product, 0 },
+ { u"over"_ustr, TOVER, '\0', TG::Product, 0 },
+ { u"overbrace"_ustr, TOVERBRACE, MS_OVERBRACE, TG::Product, 5 },
+ { u"overline"_ustr, TOVERLINE, '\0', TG::Attribute, 5 },
+ { u"overstrike"_ustr, TOVERSTRIKE, '\0', TG::Attribute, 5 },
+ { u"owns"_ustr, TNI, MS_NI, TG::Relation, 0 },
+ { u"parallel"_ustr, TPARALLEL, MS_DLINE, TG::Relation, 0 },
+ { u"partial"_ustr, TPARTIAL, MS_PARTIAL, TG::Standalone, 5 },
+ { u"phantom"_ustr, TPHANTOM, '\0', TG::FontAttr, 5 },
+ { u"plusminus"_ustr, TPLUSMINUS, MS_PLUSMINUS, TG::UnOper | TG::Sum, 5 },
+ { u"prec"_ustr, TPRECEDES, MS_PRECEDES, TG::Relation, 0 },
+ { u"preccurlyeq"_ustr, TPRECEDESEQUAL, MS_PRECEDESEQUAL, TG::Relation, 0 },
+ { u"precsim"_ustr, TPRECEDESEQUIV, MS_PRECEDESEQUIV, TG::Relation, 0 },
+ { u"prod"_ustr, TPROD, MS_PROD, TG::Oper, 5 },
+ { u"prop"_ustr, TPROP, MS_PROP, TG::Relation, 0 },
+ { u"rangle"_ustr, TRANGLE, MS_RMATHANGLE, TG::RBrace, 0 }, //! 0 to terminate expression
+ { u"rbrace"_ustr, TRBRACE, MS_RBRACE, TG::RBrace, 0 },
+ { u"rceil"_ustr, TRCEIL, MS_RCEIL, TG::RBrace, 0 },
+ { u"rdbracket"_ustr, TRDBRACKET, MS_RDBRACKET, TG::RBrace, 0 },
+ { u"rdline"_ustr, TRDLINE, MS_DVERTLINE, TG::RBrace, 0 },
+ { u"re"_ustr, TRE, MS_RE, TG::Standalone, 5 },
+ { u"rfloor"_ustr, TRFLOOR, MS_RFLOOR, TG::RBrace, 0 }, //! 0 to terminate expression
+ { u"right"_ustr, TRIGHT, '\0', TG::NONE, 0 },
+ { u"rightarrow"_ustr, TRIGHTARROW, MS_RIGHTARROW, TG::Standalone, 5 },
+ { u"rline"_ustr, TRLINE, MS_VERTLINE, TG::RBrace, 0 }, //! 0 to terminate expression
+ { u"rsub"_ustr, TRSUB, '\0', TG::Power, 0 },
+ { u"rsup"_ustr, TRSUP, '\0', TG::Power, 0 },
+ { u"sans"_ustr, TSANS, '\0', TG::Font, 0 },
+ { u"serif"_ustr, TSERIF, '\0', TG::Font, 0 },
+ { u"setC"_ustr, TSETC, MS_SETC, TG::Standalone, 5 },
+ { u"setminus"_ustr, TSETMINUS, MS_BACKSLASH, TG::Product, 0 },
+ { u"setN"_ustr, TSETN, MS_SETN, TG::Standalone, 5 },
+ { u"setQ"_ustr, TSETQ, MS_SETQ, TG::Standalone, 5 },
+ { u"setquotient"_ustr, TSETQUOTIENT, MS_SLASH, TG::Product, 0 },
+ { u"setR"_ustr, TSETR, MS_SETR, TG::Standalone, 5 },
+ { u"setZ"_ustr, TSETZ, MS_SETZ, TG::Standalone, 5 },
+ { u"sim"_ustr, TSIM, MS_SIM, TG::Relation, 0 },
+ { u"simeq"_ustr, TSIMEQ, MS_SIMEQ, TG::Relation, 0 },
+ { u"sin"_ustr, TSIN, '\0', TG::Function, 5 },
+ { u"sinh"_ustr, TSINH, '\0', TG::Function, 5 },
+ { u"size"_ustr, TSIZE, '\0', TG::FontAttr, 5 },
+ { u"slash"_ustr, TSLASH, MS_SLASH, TG::Product, 0 },
+ { u"sqrt"_ustr, TSQRT, MS_SQRT, TG::UnOper, 5 },
+ { u"stack"_ustr, TSTACK, '\0', TG::NONE, 5 },
+ { u"sub"_ustr, TRSUB, '\0', TG::Power, 0 },
+ { u"subset"_ustr, TSUBSET, MS_SUBSET, TG::Relation, 0 },
+ { u"subseteq"_ustr, TSUBSETEQ, MS_SUBSETEQ, TG::Relation, 0 },
+ { u"succ"_ustr, TSUCCEEDS, MS_SUCCEEDS, TG::Relation, 0 },
+ { u"succcurlyeq"_ustr, TSUCCEEDSEQUAL, MS_SUCCEEDSEQUAL, TG::Relation, 0 },
+ { u"succsim"_ustr, TSUCCEEDSEQUIV, MS_SUCCEEDSEQUIV, TG::Relation, 0 },
+ { u"sum"_ustr, TSUM, MS_SUM, TG::Oper, 5 },
+ { u"sup"_ustr, TRSUP, '\0', TG::Power, 0 },
+ { u"supset"_ustr, TSUPSET, MS_SUPSET, TG::Relation, 0 },
+ { u"supseteq"_ustr, TSUPSETEQ, MS_SUPSETEQ, TG::Relation, 0 },
+ { u"tan"_ustr, TTAN, '\0', TG::Function, 5 },
+ { u"tanh"_ustr, TTANH, '\0', TG::Function, 5 },
+ { u"tilde"_ustr, TTILDE, MS_TILDE, TG::Attribute, 5 },
+ { u"times"_ustr, TTIMES, MS_TIMES, TG::Product, 0 },
+ { u"to"_ustr, TTO, '\0', TG::Limit, 0 },
+ { u"toward"_ustr, TTOWARD, MS_RIGHTARROW, TG::Relation, 0 },
+ { u"transl"_ustr, TTRANSL, MS_TRANSL, TG::Relation, 0 },
+ { u"transr"_ustr, TTRANSR, MS_TRANSR, TG::Relation, 0 },
+ { u"underbrace"_ustr, TUNDERBRACE, MS_UNDERBRACE, TG::Product, 5 },
+ { u"underline"_ustr, TUNDERLINE, '\0', TG::Attribute, 5 },
+ { u"union"_ustr, TUNION, MS_UNION, TG::Sum, 0 },
+ { u"uoper"_ustr, TUOPER, '\0', TG::UnOper, 5 },
+ { u"uparrow"_ustr, TUPARROW, MS_UPARROW, TG::Standalone, 5 },
+ { u"vec"_ustr, TVEC, MS_VEC, TG::Attribute, 5 },
+ { u"widebslash"_ustr, TWIDEBACKSLASH, MS_BACKSLASH, TG::Product, 0 },
+ { u"wideharpoon"_ustr, TWIDEHARPOON, MS_HARPOON, TG::Attribute, 5 },
+ { u"widehat"_ustr, TWIDEHAT, MS_HAT, TG::Attribute, 5 },
+ { u"wideslash"_ustr, TWIDESLASH, MS_SLASH, TG::Product, 0 },
+ { u"widetilde"_ustr, TWIDETILDE, MS_TILDE, TG::Attribute, 5 },
+ { u"widevec"_ustr, TWIDEVEC, MS_VEC, TG::Attribute, 5 },
+ { u"wp"_ustr, TWP, MS_WP, TG::Standalone, 5 },
+ { u"جا"_ustr, TSIN, '\0', TG::Function, 5 },
+ { u"جاز"_ustr, TSINH, '\0', TG::Function, 5 },
+ { u"جتا"_ustr, TCOS, '\0', TG::Function, 5 },
+ { u"جتاز"_ustr, TCOSH, '\0', TG::Function, 5 },
+ { u"حا"_ustr, TSIN, '\0', TG::Function, 5 },
+ { u"حاز"_ustr, TSINH, '\0', TG::Function, 5 },
+ { u"حتا"_ustr, TCOS, '\0', TG::Function, 5 },
+ { u"حتاز"_ustr, TCOSH, '\0', TG::Function, 5 },
+ { u"حد"_ustr, THADD, MS_HADD, TG::Oper, 5 },
+ { u"طا"_ustr, TTAN, '\0', TG::Function, 5 },
+ { u"طاز"_ustr, TTANH, '\0', TG::Function, 5 },
+ { u"طتا"_ustr, TCOT, '\0', TG::Function, 5 },
+ { u"طتاز"_ustr, TCOTH, '\0', TG::Function, 5 },
+ { u"ظا"_ustr, TTAN, '\0', TG::Function, 5 },
+ { u"ظاز"_ustr, TTANH, '\0', TG::Function, 5 },
+ { u"ظتا"_ustr, TCOT, '\0', TG::Function, 5 },
+ { u"ظتاز"_ustr, TCOTH, '\0', TG::Function, 5 },
+ { u"قا"_ustr, TSEC, '\0', TG::Function, 5 },
+ { u"قاز"_ustr, TSECH, '\0', TG::Function, 5 },
+ { u"قتا"_ustr, TCSC, '\0', TG::Function, 5 },
+ { u"قتاز"_ustr, TCSCH, '\0', TG::Function, 5 },
+ { u"لو"_ustr, TLOG, '\0', TG::Function, 5 },
+ { u"مجـ"_ustr, TSUM, MS_MAJ, TG::Oper, 5 },
+ { u"نها"_ustr, TNAHA, '\0', TG::Oper, 5 },
+ { u"ٯا"_ustr, TSEC, '\0', TG::Function, 5 },
+ { u"ٯاز"_ustr, TSECH, '\0', TG::Function, 5 },
+ { u"ٯتا"_ustr, TCSC, '\0', TG::Function, 5 },
+ { u"ٯتاز"_ustr, TCSCH, '\0', TG::Function, 5 } };
// First character may be any alphabetic
const sal_Int32 coStartFlags = KParseTokens::ANY_LETTER | KParseTokens::IGNORE_LEADING_WS;
@@ -474,7 +474,7 @@ void SmParser5::NextToken() //Central part of the parser
if (nRealStart >= nBufLen)
{
m_aCurToken.eType = TEND;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 0;
m_aCurToken.aText.clear();
@@ -491,7 +491,7 @@ void SmParser5::NextToken() //Central part of the parser
sal_Int32 n = aRes.EndPos - nRealStart;
assert(n >= 0);
m_aCurToken.eType = TNUMBER;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 5;
m_aCurToken.aText = m_aBufferString.copy(nRealStart, n);
@@ -502,7 +502,7 @@ void SmParser5::NextToken() //Central part of the parser
else if (aRes.TokenType & KParseType::DOUBLE_QUOTE_STRING)
{
m_aCurToken.eType = TTEXT;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 5;
m_aCurToken.aText = aRes.DequotedNameOrString;
@@ -526,7 +526,7 @@ void SmParser5::NextToken() //Central part of the parser
else
{
m_aCurToken.eType = TIDENT;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 5;
m_aCurToken.aText = aName;
@@ -538,7 +538,7 @@ void SmParser5::NextToken() //Central part of the parser
else if (aRes.TokenType == 0 && '_' == m_aBufferString[nRealStart])
{
m_aCurToken.eType = TRSUB;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::Power;
m_aCurToken.nLevel = 0;
m_aCurToken.aText = "_";
@@ -678,7 +678,7 @@ void SmParser5::NextToken() //Central part of the parser
// i.e. a valid symbol-name is following the '%'
// character
m_aCurToken.eType = TTEXT;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 5;
m_aCurToken.aText = "%";
@@ -713,7 +713,7 @@ void SmParser5::NextToken() //Central part of the parser
case '\\':
{
m_aCurToken.eType = TESCAPE;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 5;
m_aCurToken.aText = "\\";
@@ -731,7 +731,7 @@ void SmParser5::NextToken() //Central part of the parser
case '^':
{
m_aCurToken.eType = TRSUP;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::Power;
m_aCurToken.nLevel = 0;
m_aCurToken.aText = "^";
@@ -740,7 +740,7 @@ void SmParser5::NextToken() //Central part of the parser
case '`':
{
m_aCurToken.eType = TSBLANK;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::Blank;
m_aCurToken.nLevel = 5;
m_aCurToken.aText = "`";
@@ -776,7 +776,7 @@ void SmParser5::NextToken() //Central part of the parser
case '~':
{
m_aCurToken.eType = TBLANK;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::Blank;
m_aCurToken.nLevel = 5;
m_aCurToken.aText = "~";
@@ -787,7 +787,7 @@ void SmParser5::NextToken() //Central part of the parser
if (m_aBufferString.match("##", nRealStart))
{
m_aCurToken.eType = TDPOUND;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 0;
m_aCurToken.aText = "##";
@@ -797,7 +797,7 @@ void SmParser5::NextToken() //Central part of the parser
else
{
m_aCurToken.eType = TPOUND;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 0;
m_aCurToken.aText = "#";
@@ -903,7 +903,7 @@ void SmParser5::NextToken() //Central part of the parser
// texts like .34 ...56 ... h ...78..90
// will be treated as numbers
m_aCurToken.eType = TNUMBER;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 5;
@@ -953,7 +953,7 @@ void SmParser5::NextToken() //Central part of the parser
if (!bHandled)
{
m_aCurToken.eType = TCHARACTER;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 5;
@@ -1038,7 +1038,7 @@ void SmParser5::NextTokenColor(SmTokenType dvipload)
if (m_aBufferString[nRealStart] == '#' && !m_aBufferString.match("##", nRealStart))
{
m_aCurToken.eType = THEX;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::Color;
m_aCurToken.nLevel = 0;
m_aCurToken.aText = "hex";
@@ -1153,7 +1153,7 @@ void SmParser5::NextTokenFontSize()
sal_Int32 n = aRes.EndPos - nRealStart;
assert(n >= 0);
m_aCurToken.eType = THEX;
- m_aCurToken.cMathChar = u"";
+ m_aCurToken.cMathChar = u""_ustr;
m_aCurToken.nGroup = TG::NONE;
m_aCurToken.nLevel = 5;
m_aCurToken.aText = m_aBufferString.copy(nRealStart, n);
@@ -1930,15 +1930,15 @@ std::unique_ptr<SmNode> SmParser5::DoOper()
case THADD:
case TNAHA:
if (eType == TLIMSUP)
- m_aCurToken.aText = u"lim sup";
+ m_aCurToken.aText = u"lim sup"_ustr;
else if (eType == TLIMINF)
- m_aCurToken.aText = u"lim inf";
+ m_aCurToken.aText = u"lim inf"_ustr;
else if (eType == TNAHA)
- m_aCurToken.aText = u"نها";
+ m_aCurToken.aText = u"نها"_ustr;
else if (eType == THADD)
m_aCurToken.aText = OUString(&MS_HADD, 1);
else
- m_aCurToken.aText = u"lim";
+ m_aCurToken.aText = u"lim"_ustr;
pNode.reset(new SmTextNode(m_aCurToken, FNT_TEXT));
pNode->SetSelection(m_aCurESelection);
break;
diff --git a/starmath/source/smediteng.cxx b/starmath/source/smediteng.cxx
index 5560d501ef5a..9eac0863e3de 100644
--- a/starmath/source/smediteng.cxx
+++ b/starmath/source/smediteng.cxx
@@ -27,7 +27,7 @@ SmEditEngine::SmEditEngine(SfxItemPool* pItemPool)
, m_nDefaultFontSize(0)
, m_aAllSelection(0, 0, 0, 0)
{
- SetText(u"");
+ SetText(u""_ustr);
// Add external text leading
SetAddExtLeading(true);