<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[203072] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/203072">203072</a></dd>
<dt>Author</dt> <dd>fred.wang@free.fr</dd>
<dt>Date</dt> <dd>2016-07-11 11:38:36 -0700 (Mon, 11 Jul 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add support for mathvariants that cannot be emulated via CSS.
https://bugs.webkit.org/show_bug.cgi?id=108778

Patch by Frederic Wang &lt;fwang@igalia.com&gt; on 2016-07-11
Reviewed by Brent Fulgham.

Source/WebCore:

Tests: mathml/mathml-in-html5/mathvariant-transforms-1.html
       mathml/mathml-in-html5/mathvariant-transforms-2.html
       mathml/presentation/mathvariant-inheritance.html
       mathml/presentation/mathvariant-tokens.html

We remove the old code to emulate partial mathvariant support via CSS and add support
for all mathvariant values using the technique used for implicit italic on &lt;mi&gt; element.
We also rely on the MathMLStyle class introduced earlier to support custome MathML style
and manage inheritance of mathvariant values.
The function that tries and converts one base character into a transformed mathvariant
character is based on similar code from Gecko:
http://hg.mozilla.org/mozilla-central/file/tip/layout/generic/MathMLTextRunFactory.cpp
Note that we only support transform on token elements with a single character, which
should cover the most important use cases.

* css/mathml.css: Remove the CSS rules to emulate some mathvariant values.
(math[mathvariant=&quot;normal&quot;], mstyle[mathvariant=&quot;normal&quot;], mo[mathvariant=&quot;normal&quot;], mn[mathvariant=&quot;normal&quot;], mi[mathvariant=&quot;normal&quot;], mtext[mathvariant=&quot;normal&quot;], mspace[mathvariant=&quot;normal&quot;], ms[mathvariant=&quot;normal&quot;]): Deleted.
(math[mathvariant=&quot;bold&quot;], mstyle[mathvariant=&quot;bold&quot;], mo[mathvariant=&quot;bold&quot;], mn[mathvariant=&quot;bold&quot;], mi[mathvariant=&quot;bold&quot;], mtext[mathvariant=&quot;bold&quot;], mspace[mathvariant=&quot;bold&quot;], ms[mathvariant=&quot;bold&quot;]): Deleted.
(math[mathvariant=&quot;italic&quot;], mstyle[mathvariant=&quot;italic&quot;], mo[mathvariant=&quot;italic&quot;], mn[mathvariant=&quot;italic&quot;], mi[mathvariant=&quot;italic&quot;], mtext[mathvariant=&quot;italic&quot;], mspace[mathvariant=&quot;italic&quot;], ms[mathvariant=&quot;italic&quot;]): Deleted.
(math[mathvariant=&quot;bold-italic&quot;], mstyle[mathvariant=&quot;bold-italic&quot;], mo[mathvariant=&quot;bold-italic&quot;], mn[mathvariant=&quot;bold-italic&quot;], mi[mathvariant=&quot;bold-italic&quot;], mtext[mathvariant=&quot;bold-italic&quot;], mspace[mathvariant=&quot;bold-italic&quot;], ms[mathvariant=&quot;bold-italic&quot;]): Deleted.
* mathml/MathMLInlineContainerElement.cpp: We resolve mathml style when mathvariant changes.
(WebCore::MathMLInlineContainerElement::parseAttribute):
* mathml/MathMLMathElement.cpp: ditto.
(WebCore::MathMLMathElement::parseAttribute):
* mathml/MathMLTextElement.cpp: ditto.
(WebCore::MathMLTextElement::parseAttribute):
* rendering/mathml/MathMLStyle.cpp: Add mathvariant property to the MathML style.
(WebCore::MathMLStyle::MathMLStyle): Init mathvariant to none.
(WebCore::MathMLStyle::getMathMLStyle): Helper function to retrieve the MathML style on a renderer.
(WebCore::MathMLStyle::updateStyleIfNeeded): Take into account change of mathvariant.
(WebCore::MathMLStyle::parseMathVariant): Helper function to parse a mathvariant attribute.
(WebCore::MathMLStyle::resolveMathMLStyle): Take into account mathvariant value: it is None
by default, inherited and can be modified via an attribute on &lt;math&gt;, &lt;mstyle&gt; or token
elements. We also refactor a bit to share logic between displaystyle and mathvariant.
(WebCore::MathMLStyle::setDisplayStyle): Deleted.
* rendering/mathml/MathMLStyle.h: Add mathvariant members and update declarations.
* rendering/mathml/RenderMathMLOperator.cpp:
(WebCore::RenderMathMLOperator::updateTokenContent): Call the function from the parent class
to consider mathvariant on &lt;mo&gt;.
* rendering/mathml/RenderMathMLToken.cpp:
We implement a mathVariant function to transform a base character into its transformed mathvariant:
- There are some regularity that allows to perform this via simple linear transforms.
- However, there are also many exceptions and we rely on some sorted MathVariantMapping
tables to handle these cases.
(WebCore::ExtractKey): Helper function to perform binary searches on MathVariant tables.
(WebCore::MathVariantMappingSearch): ditto.
(WebCore::mathVariant): New function to perform mathvariant transforms.
(WebCore::RenderMathMLToken::updateMathVariantGlyph): Use the mathVariant function to
perform all transformations, not just the italic one.
(WebCore::transformToItalic): Deleted. Replaced with the more general mathVariant function.

LayoutTests:

Import a test from the MathML in HTML5 test suite to perform an exhaustive
verification of all the mathvariant transforms allowed.
We also add some tests to verify inheritance of the mathvariant style, the
effect on each token element and dynamic modification of mathvariant.
Finally, we modify one test now that mathvariant is no longer emulated via CSS.

* mathml/mathml-in-html5/fonts/mathvariant-transforms.woff: Added.
* mathml/mathml-in-html5/mathvariant-transforms-1-expected.html: Added.
* mathml/mathml-in-html5/mathvariant-transforms-1.html: Added.
* mathml/mathml-in-html5/mathvariant-transforms-2-expected.html: Added.
* mathml/mathml-in-html5/mathvariant-transforms-2.html: Added.
* mathml/presentation/attributes-mathvariant-expected.html: Update this test now that
mathvariant is correctly implemented using character transforms.
* mathml/presentation/mathvariant-inheritance-expected.html: Added.
* mathml/presentation/mathvariant-inheritance.html: Added.
* mathml/presentation/mathvariant-tokens-expected.html: Added.
* mathml/presentation/mathvariant-tokens.html: Added.
* mathml/presentation/mathvariant-dynamic.html: Added.
* mathml/presentation/mathvariant-dynamic-expected.html: Added.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsmathmlpresentationattributesmathvariantexpectedhtml">trunk/LayoutTests/mathml/presentation/attributes-mathvariant-expected.html</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorTestExpectations">trunk/LayoutTests/platform/ios-simulator/TestExpectations</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorecssmathmlcss">trunk/Source/WebCore/css/mathml.css</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLInlineContainerElementcpp">trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLMathElementcpp">trunk/Source/WebCore/mathml/MathMLMathElement.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLTextElementcpp">trunk/Source/WebCore/mathml/MathMLTextElement.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingmathmlMathMLStylecpp">trunk/Source/WebCore/rendering/mathml/MathMLStyle.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingmathmlMathMLStyleh">trunk/Source/WebCore/rendering/mathml/MathMLStyle.h</a></li>
<li><a href="#trunkSourceWebCorerenderingmathmlRenderMathMLOperatorcpp">trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingmathmlRenderMathMLTokencpp">trunk/Source/WebCore/rendering/mathml/RenderMathMLToken.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsimportedmathmlinhtml5fontsmathmathvarianttransformswoff">trunk/LayoutTests/imported/mathml-in-html5/fonts/math/mathvariant-transforms.woff</a></li>
<li><a href="#trunkLayoutTestsimportedmathmlinhtml5mathmlrelationscssstylingmathvarianttransforms1expectedhtml">trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1-expected.html</a></li>
<li><a href="#trunkLayoutTestsimportedmathmlinhtml5mathmlrelationscssstylingmathvarianttransforms1html">trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1.html</a></li>
<li><a href="#trunkLayoutTestsimportedmathmlinhtml5mathmlrelationscssstylingmathvarianttransforms2expectedhtml">trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2-expected.html</a></li>
<li><a href="#trunkLayoutTestsimportedmathmlinhtml5mathmlrelationscssstylingmathvarianttransforms2html">trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2.html</a></li>
<li><a href="#trunkLayoutTestsmathmlpresentationmathvariantdynamicexpectedhtml">trunk/LayoutTests/mathml/presentation/mathvariant-dynamic-expected.html</a></li>
<li><a href="#trunkLayoutTestsmathmlpresentationmathvariantdynamichtml">trunk/LayoutTests/mathml/presentation/mathvariant-dynamic.html</a></li>
<li><a href="#trunkLayoutTestsmathmlpresentationmathvariantinheritanceexpectedhtml">trunk/LayoutTests/mathml/presentation/mathvariant-inheritance-expected.html</a></li>
<li><a href="#trunkLayoutTestsmathmlpresentationmathvariantinheritancehtml">trunk/LayoutTests/mathml/presentation/mathvariant-inheritance.html</a></li>
<li><a href="#trunkLayoutTestsmathmlpresentationmathvarianttokensexpectedhtml">trunk/LayoutTests/mathml/presentation/mathvariant-tokens-expected.html</a></li>
<li><a href="#trunkLayoutTestsmathmlpresentationmathvarianttokenshtml">trunk/LayoutTests/mathml/presentation/mathvariant-tokens.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/LayoutTests/ChangeLog        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -1,3 +1,30 @@
</span><ins>+2016-07-11  Frederic Wang  &lt;fwang@igalia.com&gt;
+
+        Add support for mathvariants that cannot be emulated via CSS.
+        https://bugs.webkit.org/show_bug.cgi?id=108778
+
+        Reviewed by Brent Fulgham.
+
+        Import a test from the MathML in HTML5 test suite to perform an exhaustive
+        verification of all the mathvariant transforms allowed.
+        We also add some tests to verify inheritance of the mathvariant style, the
+        effect on each token element and dynamic modification of mathvariant.
+        Finally, we modify one test now that mathvariant is no longer emulated via CSS.
+
+        * mathml/mathml-in-html5/fonts/mathvariant-transforms.woff: Added.
+        * mathml/mathml-in-html5/mathvariant-transforms-1-expected.html: Added.
+        * mathml/mathml-in-html5/mathvariant-transforms-1.html: Added.
+        * mathml/mathml-in-html5/mathvariant-transforms-2-expected.html: Added.
+        * mathml/mathml-in-html5/mathvariant-transforms-2.html: Added.
+        * mathml/presentation/attributes-mathvariant-expected.html: Update this test now that
+        mathvariant is correctly implemented using character transforms.
+        * mathml/presentation/mathvariant-inheritance-expected.html: Added.
+        * mathml/presentation/mathvariant-inheritance.html: Added.
+        * mathml/presentation/mathvariant-tokens-expected.html: Added.
+        * mathml/presentation/mathvariant-tokens.html: Added.
+        * mathml/presentation/mathvariant-dynamic.html: Added.
+        * mathml/presentation/mathvariant-dynamic-expected.html: Added.
+
</ins><span class="cx"> 2016-07-11  Ryan Haddad  &lt;ryanhaddad@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Marking media/controls/inline-elements-dropoff-order.html as failing on El Capitan
</span></span></pre></div>
<a id="trunkLayoutTestsimportedmathmlinhtml5fontsmathmathvarianttransformswoff"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/imported/mathml-in-html5/fonts/math/mathvariant-transforms.woff (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/mathml-in-html5/fonts/math/mathvariant-transforms.woff                                (rev 0)
+++ trunk/LayoutTests/imported/mathml-in-html5/fonts/math/mathvariant-transforms.woff        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,128 @@
</span><ins>+wOFFOTTOLd
+PCFF `E\xC5Q\xB2\xF9{5FFTML(yS\xFCpOS/2HI`7\xD4\xD1cmap\xE0h^\xCB\xFC!Ihead\xF4+6\xAC\xCDhhea $ &amp;hmtxLD
+\xD0maxp@Pname\x94L\xDCY\xE3 postH \xFF\x863x\x9Cc`d``b\x8D\x8B\xF3\xE3\xF9m\xBE2u3\xBF\x8A0\\x96ՀL\xB3_\x8Bs0\x80Oc px\x9Cc`d``~\xC1\xC0\xC0\x90&quot;\xFFH\xB0_`\x8A\xA0&amp;f\xC82Px\x9Cc`a~\xC18\x81\x81\x95\x81\x81\x99\x87ك\x81\x81a\x84fr`\xB0f4\xD2 \xAC\x9C P\xA0\xD0\xCB\xC4\xC0\xE0\xC1Ā\xFE\xFFg~d\xE5@E@\xF3 \xA0\x982\xE2e
+\xEBx\x9C\xAD\x90\xBFjAƿ\xF5$EHL\xBBM@\xC1;\xD6-&quot;\\xB4\xB5?\x8Cz[xk\xF6\xC1\xA7I\x9E e\xF2\xE9}\x85\xBCE\xBE[7\x90\xC2&amp;\xE0-\xC3\xFCf\xE7۹\x99p\x83w\x9C\xBE\xCC \xB4\xF1\xB8\x86k|\xAE#\x8F\x81h\x8B\xD7\xC0M܊c\xE0ڵ{*E\xE3\x8AѓU\xB1@6p+w\xF8 \\xC73\x8E\x81艗\xC0MH\xF1\xB8\xC5\xFBoLa\xB0ÁU46\xC8\xE1 \xD1\xC1]\xFA
+} Isd\xCC\xE4\xF43F\x94&lt;\x86*\xED\xEF5\xB9\xA6fw\xB0z\x93;\xD9Yve\xA2\xFAC9\xCF\&gt;\x9F\xC9IY\x9A\xA5Μ6\x94mC\xAD=\xBD\xF5
+\xC6\xCDz.\xB1f=K]I1 \xEC3\xAB\xB3\xC2E\xCEfE\xB96v\xCB\xFB\xB3⿂\xD4\xF7伷\x9Cl\xE5\xE7\x899\x91Ę\xF6\x9F.N/\x8C\x98\xD0~\xF7\x82\xD4.5v\xB3\x92I\xAC\xE4X\x9Ed+\xA2j#\xC1y,\xA7\xCDK\xF6Su{_M\x88\xC5ʖܶT\xAA+\xA5\xE4e\xFE\xFB\xDDB\x8Cx\x9C\xA5\x94[lTEǿٙ\x9EB\x81R*E\xAB;K\xA5KiiK\xAB\xB5\xADbK\x81^\xB0\x95[\x8C\xA91\xF1C%^\x88AL\x8C\x97\xA3胦\x82dK04\\xDBp\xADM\x90\xD2D\x83\xB4\xE5zBxїc1\xD2\xCD\xC6\xF5\xB735&amp;&gt;H\xA2\x9B\xFC\xF6\xF7?\xB7\xEF\x9C3\xF3\xCD\x91\xD1P        y&quot;j\xB5(\x92\xE4\xACg\xAFr\xFB\xF5\xE4~\xA3J\xD9n\x93\xAE1R*\x8D\xB2Q\xB6\xAA\xDAX\x83N\xEA&gt;}N\x9Fף\xFA\xB2\xBE\xA6o\x89\xA0)X\xB4\xDDA2\xB41\x9Bo m\x91-\xB1e6a\xABl\xAD\xAD\x8F\xC7⹙ \xD5J\xA5FZ\xA5\xCBU١\xF7\xE8~\xAA\x8C\xE8Kz\_ʃ\x8A\xA0\x95*\x9B'\xAB\xE4\xD9\xAA\xBB*\x95\xB6\xDA\xD6\xF9*\x99+\x99\x9F3C\x99\xB3\x99\x99\xE4\xA5\xFB\xD3G\xD2}\xE9\xDE\xF4\xEEtO\xFA\xFD\xF4\xBB\xA9\xCETG\xEA\x91ԚT\xC5\xC4\xC4ĕ\xB0'\xFC,\xFC4\xFC$\xFC(|/|'|;\xDC\xBE560
 vȿ\xF1\xFF\xFEM\xCF\xFE\x99\xE9\x93[\x9D\xEE\xED&lt;\xD9\xFA5\xD01h\x85\x8D\x93Wt\xC1VX\xC0i\xB5FXb+\x9E\xEC\xB9z$\xC9\xCB\xF0\xE8#?\x81\xFBᜯ\xA5\xCF{\xE4&lt;\xA3\xE4-\xF8\&amp;\xBF\x8A\xC7\xE1\xF9u|n\xF8{\xE5\x90 \xBF\x89+\xA0\x89\xBC+s\xEF`\xF9c\xDC\xEE\x91\xCF\xF1f\xE8&amp;\x81\x93\xE9\xC1\x83\xF9R\xC4\xC6&lt;\xB2\xD3?6\x9F\xBC @!\xB9yd/.\x86\xF2׸\xCC#\xFBq\xC2#0=j\xAB\xC8q5d\xC7\xEA0\xAE\x83z\xF2\x80H&lt;摣8\xD7#\xC7D+3\xB4\xC3\xE4\xE3\xF8I\xE0\xB9\xD44\xFC\xEC&amp;\xAFŽQx/\xF0,\xAA\xF7\xF7W\xEB0\xDD2|\x8A\xBC        \xE3\xF5&gt;+g\xC8\xCF㳢FXW\xAA\xE7Bv\xFD\xC13`6\xF9(\x9Es\xC9\xDF\xE2y@o\xA83\xB8\x96\x92C\xDCm\xE4\xAB\xF8a\x87\xA8_p;&lt;F\xFE\xF3ܣ\x8C\x9F\xC7\xFBD]b^\xDB\xF0\x8F\xC0
+3&lt;Od!N\xEE\xC1e1;q\xB9C\xCC.\xBC\x96\x90\x8F\xA8\xE8=C\xBD\xA8\xD1!\xE6nv\x889\x88\x979\xC40\xD1r\x87\x98\xC3x\xA5C \xEF\xADr\x88\xE9\xC7k\xE0Q\xF2~֒\x99\x97\xA8\xC3!\xE6^\xE7sop\x889\x8579\xC4 \xE2\xA7b\xFB\xE8i\x87\xC60\xEA\x82g\xC8\xCCC\xF4\xACC\xCCw\x98\xB9\x89^$\x8F_\x82\x97\xC9?\xE0-\xF0y\xBF\xF4\xBE\xF9        os\x88\xB9\x80\xB7\xC3\xE4a\xFC!\xD0\xD7f '\x81uh~\xC3\xF4I\xC4z4\xBF\xE3\xFD@?\x98\x9B\xCCG \xB7\xFC\xAC\xFC\xF3xL\x9B\x9C w\xCAԼi}Qf\xE4\xCF,\x98Ux\xDB\xEC\xA29\xB7\xDFQ|\xE7]sK\xE6\xDD]j\xE3\xF3\xCB\xEE\xF1\xC7\x94'V,\xAA\xACZ\]S\xBB\xA4\xAE\xFE\xDE\xFB\xEEolj~\xE0\xC1\xA5\xDD\xE2\xCE\xFF\xF6cἀ6\xFC\xC7\xCB[\xFE\x8E=\xD31&amp;x\x9Cc`f\x83\xFF\xCD F@\x8A\x91+(U\xB9x\x9C\xED\xBD \x9CMU\xFF\xF8\xFFY\x9F\xB5֙3\xF7\xFB}h\x92$!s\xD9{\xCF \x99kH\x92$I2Hn!\xB7$IR        I\x92$I\x92$I%II\x92J\x92\xCA#\xC9#I\x92$\xB7ď\xCF#\xDF\xFF4\xCE8{ﵞ\xE7\xFF&lt;O\xAFs\xB4;\xE73o\xEB\xF3\xD9\xEF\xFD\xD9k\xAF\xBD\x87\x81\xC0K\xBC\xA3d@\xB7A%\xFD\x
 BA\x97\xF4Pg@\xBF\x92\xDE\xFD\xBB\xF6\xE9wG` \x8E\x844O \x96\xE6\xB9\xD3&lt;-\xF9\xE1$16\x8C\x8D\x93\xB4\xFE\xE8PY\xA0\xC6/\x91'_\xA2N\xBE\xD6;}\xEA\xCF\xE9U\x80{\x93c\xC4\xDAS\xBCѐU\xA0:ԄˠdC.\        yPE\xD0Z\xC0u\xD0n\x82\x8E\xD0\xBABw\xE8 \xE1n\xC0h\x8F\xC3$\x98\xCF\xC1\x8B0\xE6\xC1|xށ%\xB0&gt;\x84\xB5\xF09l\x84\xAF`3|?\xC0O\xF0+\x84\xBF\x98`\xA1,\x86%\xB3tv        \xAB\xCB ֐\xB0f\xEC:֖\xDDʺ\xB2;\xD8v\xC1a\xE3\xD9Sl{\x91\xCDeo\xB2\xC5l[\xC3&gt;c\x9Bطl\xFB\x99\xEDgG0#0\xD3\xF0&quot;\xAC\x85\x99\x98\x8B\x8D\xF1*l\x817\xE0-\xD8{b?\xBC\x87\xE3\xC38\x9Fĩ\xF8\xCEÅ\xB8W\xE2\xFC7\xE2f܆;q\xEE\xC7\xC3x\x9C £xO\xE3\xD5xM^\x97g\xF3\xFA\xBC1/\xE6\xCDy+ޖw\xE0]xޗ\xE2C\xF9&gt;\x8A\x8F\xE3\xF9&gt;\x9D\xCF\xE2s\xF9|_\xC6W\xF1\xB5|=\xDFķ\xF0\xED|\xDF\xCB\xF0\xA3\x84G\x84\x89\x91$\xAA\x8Aꢖ\xA8'L\xD1P\xE4\x8B&amp;\xA2\x85h-ډ\x8E\xA2\xAB\xE8%\xFA\x89\xC1b\x98)F\x8B\xF1b\x92\x98*f\x88\xD9b\x9EX \x8B\xE5b\xB5X'6\x88\xAF\xC5V\x
 B1C\xEC\xFB\xC4AqL\xA2\xF4\xCA'Sd\xBA\xAC!k\xCBL\x99#\xC9B\xD9L\xB6\x94md{\xD9Iv\x93\xBD\xE59D\x97ɱr\x82\x9C,\xA7ər\x8E\x9C/\xCA%r\xA5\#?\x95\xE5f\xB9M\xEE\x94{\xE4~yX\xF7O\x88'ʓ\xE0I\xF3T\xF3\xD4\xF4\xD4\xF5d{\xEA{{\x8A=\xCD=\xAD&lt;m=&lt;]&lt;=&lt;}=\x83&lt;C=#&lt;\xA3&lt;\xE3&lt;=S&lt;\xD3=\xB3&lt;s=oxy\x96yVy\xD6z\xD6{6y\xB6x\xB6{vy\xF6zx\x8EA\x90'(,(&amp;()\xA8jP\xF5\xA0ZA\xF5\x82̠\x86A\xF9AM\x82Z\xB5j\xD41\xA8kP\xAF\xA0~A\x83\x83\x86\x8D 4&gt;hR\xD0ԠA\xB3\x83\xE6-Z\xB4&lt;huк\xA0+A_m+\xDA\xB4;h_\xD0\xC1\xA0c^\xF4z\xBD\xDE8o\x8A7\xDD[\xC3[ۛ\xE9\xCD\xF16\xF2z\x9By[z\xDBx\xDB{;y\xBBy{{x\x87x\x87{\xF2\x8E\xF5N\xF0N\xF6N\xF3\xCE\xF4\xCE\xF1\xCE\xF7.\xF4.\xF1\xAE\xF4\xAE\xF1~\xEA\xDD\xE8\xDD\xEC\xDD\xE6\xDD\xE9\xDD\xE3\xDD\xEF=\xEC=,\x82C\x82\xA3\x82\x82ӂ\xAB\xD7 \xAE\x9C\?\xB8qpqp\xF3\xE0V\xC1m\x83;w        \xEE\xDC7xP\xF0\xD0\xE0\xC1\xA3\x82\xC7O \x9E&lt;=xV\xF0\xDC\xE07\x82/ ^\xBC6x}\xF0\xA6\xE0-\xC1ۃw\xEF+&gt;|4B&lt;!
 a!1!I!UC\xAA\x87\xD4
+\xA9b\x864 \xC9i\xD2&quot;\xA4uH\xBB\x90\x8E!]Cz\x85\xF4 2,dd\xC8\xE8\x90\xF1!\x93B\xA6\x86\xCC\x992/dA\xC8\xE2\x90\xE5!\xABCօl\xF9:dkȎ\x90\xDD!\xFBB\x86 \xC5PohDh\hJhzh\x8D\xD0ڡ\x99\xA19\xA1\x8DB C\x9B\x85\xB6 m\xDA&gt;\xB4Sh\xB7\xD0ޡB\x87\x84}(tl\xE8\x84\xD0ɡ\xD3Bg\x86\xCE        \x9D\xBA0tI\xE8\xCA\xD05\xA1\x9F\x86n \xDD\xBA-tg\xE8\x9E\xD0\xFD\xA1\x87C\x8F\x87\x89\xB0\x90\xB0\xA8\xB0\x84\xB0\xB4\xB0ja5\xC3\xEA\x86e\x87\xD5kV\xD6&lt;\xACUX۰a]\xC2z\x84\xF5+64lDب\xB0qaæ\x84M\x9B67썰Ea\xCB\xC2V\x85\xAD+[\xB6)lK\xD8\xF6\xB0]a{\xC3\x84+\x87pOxXxLxRx\xD5\xF0\xEA\xE1\xB5\xC2녛\xE1+\xC3\xF3Û\x84\xB7o\xDE.\xBCcx\xD7\xF0^\xE1\xFD\xC2\x87 &gt;:||\xF8\xA4\xF0\xA9\xE13\xC2g\x87\xCF _\xBE8|y\xF8\xEA\xF0u\xE1¿\xDF\xBE#|w\xF8\xBE\xF0\x83\xE1\xC7&quot;0\xC2\x91\x91Q#\xA2vDfDND\xA3\x88ˆf-#\xDAD\xB4\x8F\xE8\xD1-\xA2wĀ\x88!\xC3#\x8A1!brĴ\x88\x99s&quot;\xE6G,\x8CX\xB12bMħ#6Gl\x8B\xD8\xB1'b\xC4\xE1\x88\xE3\x91&quot;2$2*2!2-\x
 B2Zd\xCDȺ\x91ّ\xF5#GG6\x8Fl\xD96\xB2Cd\x97\xC8\x91}#E\x8D9*r\\xE4\xC4\xC8)\x91\xD3#gE΍|#rQ\xE4\xB2\xC8U\x91k#\xD7Gn\x8A\xDC\xB9=rW\xE4\xDE\xC8\x91G\xA3 \xCA\x95U5\xAAzT\xAD\xA8zQfTè\xFC\xA8&amp;Q-\xA2ZG\xB5\x8B\xEA\xD55\xAAWT\xBF\xA8\xC1QâFF\x8D\x8E5)jjԌ\xA8\xD9Q\xF3\xA2D-\x8EZ\xB5:j]Ԇ\xA8\xAF\xA3\xB6F\xED\x88\xDA\xB5/\xEA`Աh\x8C\xF6FGD\xC7E\xA7D\xA7G׈\xAE\x9D\x9D\xDD(\xBA0\xBAYt\xCB\xE86\xD1\xED\xA3;Ew\x8B\xEE= zH\xF4\xF0臢\xC7FO\x88\x9E=-zf\xF4\x9C\xE8\xF9\xD1 \xA3\x97D\xAF\x8C^\xFDi\xF4\xC6\xE8\xCD\xD1ۢwF\xEF\x89\xDE}8\xFAx\x8C\x88        \x89\x89\x8AI\x88I\x8B\xA9S3\xA6nLvL\xFD\x98\xC61\xC51\xCDcZŴ\x8D\xE9\xD3%\xA6GLߘA1CcFČ\x8A31fJ\xCC\xF4\x98Y1scވY\xB3,fU\xCCژ\xF51\x9Bb\xB6\xC4l\x8F\xD9\xB37\xE6@\xCC\xD1X\x88\xF5Ć\xC5\xC6\xC4&amp;\xC5V\x8D\xAD[+\xB6^\xAC\xDB06?\xB6Il\x8B\xD8ֱ\xEDb;\xC6v\x8D\xED\xDB/vp\xEC\xB0ؑ\xB1\xA3c\xC7\xC7N\x8A\x9D;#vv\xEC\xBC\xD8\xB1\x8Bc\x97Ǯ\x8E]\xBB!\xF6\xEBح\xB1;bw\xC7\xEE\x8B={,\xE3\xBCq
 qqq)q\xE9q5\xE2j\xC7e\xC6\xE5\xC45\x8A+\x8Ck\xD72\xAEM\\xFB\xB8Nq\xDD\xE2z\xC7+\x887&lt;\xB1q\xE2&amp;\xC7M\x8B\x9B7'n~\xDC¸%q+\xE3\xD6\xC4}\xB71nsܶ\xB8\x9Dq{\xE2\xF6\xC7\x8E;/\xE2C\xE2\xA3\xE2\xE2\xD3\xE2\xAB\xC5׌\xAF\x9F_?\xBEq|q|\xF3\xF8V\xF1m\xE3;\xC4w\x89\xEF\xDF7~P\xFC\xD0\xF8\xF1\xA3\xE2\xC7\xC5O\x8C\x9F?=~V\xFC\xDC\xF87\xE2\xC5/\x8B_\xBF6~}\xFC\xA6\xF8-\xF1\xDB\xE3w\xC5\xEF\x8D?4&lt;        a        1        I        U\xAA'\xD4J\xA8\x97`&amp;4L\xC8Oh\x92\xD0&quot;\xA1uB\xBB\x84\x8E        ]z%\xF4K\x9C0,ad\xC2\xE8\x84\xF1        \x93\xA6&amp;\xCCH\x98\x9D0/aA\xC2\xE2\x84\xE5        \xAB\xD6%lH\xF8:akŽ\x84\xDD        \xFB&amp;K\xC4DobDb\bJbzb\x8D\xC4ډ\x99\x899\x89\x8D \x9B%\xB6Ll\x93\xD8&gt;\xB1Sb\xB7\xC4މ\x87$O|(ql\xE2\x84\xC4ɉ\xD3g&amp;\xCEI\x9C\x9F\xB80qI\xE2\xCA\xC45\x89\x9F&amp;nLܜ\xB8-qg\xE2\x9E\xC4\xFD\x89\x87\x8F'\x89\xA4\x90\xA4\xA8\xA4\x84\xA4\xB4\xA4jI5\x93\xEA&amp;e'\xD5Oj\x9CT\x9C\xD4&lt;\xA9URۤI]\x92z$\xF5M\x9444iDҨ\xA4qI\x93\xA6$MO\x9A\x9547鍤EI˒V%\xADMZ\
 x9F\xB4)iK\xD2\xF6\xA4]I{\x93$M\x86dOrXrLrRr\xD5\xE4\xEAɵ\x92\xEB%\x9B\xC9+\x93\xF3\x93\x9B$\xB7Hn\x9D\xDC.\xB9cr\xD7\xE4^\xC9\xFD\x92'K\x99&lt;:y|\xF2\xA4\xE4\xA9\xC93\x92g'\xCFK^\x90\xBC8yy\xF2\xEA\xE4u\xC9\x92\xBFNޚ\xBC#yw\xF2\xBE\xE4\x83\xC9\xC7R0ś\x91\x97\x92\x92\x92\x9ER#\xA5vJfJNJ\xA3\x94”f)-Sڤ\xB4O\xE9\x94\xD2-\xA5wʀ\x94!)\xC3SJ\x9B2!erʴ\x94\x99)sR\xE6\xA7,LY\x92\xB22eMʧ)S6\xA7lKٙ\xB2'e\xCA\xE1\x94\xE3\xA9&quot;5$5*5!5-\xB5Zj\xCDԺ\xA9٩\xF5S\xA7\xA76Om\x95\xDA6\xB5Cj\x97\xD4\xA9}S\xA5M\x91:*u\\xEA\xC4\xD4)\xA9\xD3Sg\xA5\xCEM}#uQ\xEA\xB2\xD4U\xA9kSקnJݒ\xBA=uW\xEA\xDE\xD4\xA9G\xD3N\xF6diai1iIiUӪ\xA7\xD5J\xAB\x97f\xA65L\xCBOk\x92\xD6&quot;\xADuZ\xBB\xB4\x8Ei]\xD3z\xA5\xF5K\x9C6,md\xDA\xE8\xB4\xF1i\x93Ҧ\xA6\xCDH\xFB0\xED۴\xDF\xF6\xEE^/3\xCB\xCA\xEBշ[I\xFEmJ\xAE*\xB9㎒S\xB3r\xB3\x8B\xFA\xF6\xEFޫO\xEFv'7+(i\xDD\xED\xE4{\xD3&gt;J\xAE.\xE9۷\xA4y\xC9\x9D\xBA\x94\3\xB0\xC5\xC0\xB6ݯ\xBD\xA3{\xE7~}z\xB7\xECު[\x9F\xEB\xBB\xDF~GI뒁
 7\xF8\xBE۲[\xF7\x82n\xDD[\xF6\xEFN!\xF3rKN\xFD\x9CN'\xDD~\xEA\xE7t\xB9\xAD׀\x92\xDB|\x9Frr\xE3\xC9\x9C\xFA)\xDDO\xFE\x94\x9E\xA7~J/\xFA)\xF4\xDD\xFC\x82\xDEw\xEF\xE3\xFBQ}\xBB\xF7\xEB֧\xFF\xA9\x95A\xAFJ\xF4\x85\xE9ۭ{\xE7n\xDDO\xFE\xB9\xCF\xB7\xDDqr[\xFDkE*,\xF0\xBD\xD2[q=ߛ\xEF\xBFg\xFBތSof\xA6\xE5{\xCB\xF1\xBD\xE5\xF9\xDE\xF2}o\xBE\xB7B\xDF[\x91ﭘ޲\xEA\xF9\xDE2|o\x99\xBE\xB7,\xDF[\xB6\xEF\xCD\xF7\xB2Lߛ\xEFe\xF9~PV\xAE\xEF\xCD\xF7\xF3\xB2}Q\xB2}Q\xB2}Q\xB2}Q\xB2}Q\xB2}Q\xB2}Q\xB2}Q\xB2}_7}d\xA6\x8F,\xCF,\xFF\xD4\xCB̨\x97\xE9{+\xFD\xB7|\xDF[\x81\xEF\xAD\xD0\xF7VDo\xF5\x9Av\xEDW\xD2s\xC0\xC0~\xBE\xF5}1\xC3\xF0\xBD\xE5\xFA\xDE|a2\xF2[\x9D\xF5Q_\x9C\xCCl\xDF[\x8E\xEF\xCD\xF732K\xFF[1\xBDѨ\x9D|\xCB\xF0\xBDe\xF9޲\xFB\x96\xF4н\xA4W\x97\xEE]\xBB\xDEޯ\xA4K\xF7\xDBz\x98Q\x98]\xAF\xBDf\xD0k&amp;\xBDf\xD1k6\xBD\xF4jҫE\xAF9\xF4\x9AK\xAFy\xF4\x9AO\xAF\xF4ZH\xAFE\xF4Z|\xEA5\x83\xE2gP\xFC \x8A\x9FA\xF13(~\xC5Ϡ\xF8?\x83\xE2gP\xFC \x8A\x9FA\xF1
 3(~\xC5Ϡ\xF8?\x93\xE2gR\xFCL\x8A\x9FI\xF13)~&amp;\xC5Ϥ\xF8\x99?\x93\xE2gR\xFCL\x8A\x9FI\xF13)~&amp;\xC5Ϥ\xF8\x99?\x8B\xE2gQ\xFC,\x8A\x9FE\xF1\xB3(~\xC5Ϣ\xF8Y?\x8B\xE2gQ\xFC,\x8A\x9FE\xF1\xB3(~\xC5Ϣ\xF8Y?\x9B\xE2gS\xFCl\x8A\x9FM\xF1\xB3)~6\xC5Ϧ\xF8\xD9?\x9B\xE2gS\xFCl\x8A\x9FM\xF1\xB3)~6\xC5Ϧ\xF8\xD9ߠ\xF8\xC57(\xBEA\xF1+\x8AoPd\x83&quot;٠\xC8E6(\xB2A\x91+\x8AlPd\x83&quot;\x9B٤\xC8&amp;E6)\xB2I\x91M&quot;7)\xBEI\xF1M\x8AoR|\x93\xE2\x9Bߤ\xF8&amp;\xC57)\xBEI\xF1-\x8AoQ|\x8B\xE2[ߢ\xF8ŷ(\xBEE\xF1-\x8AoQ|\x8B\xE2[ߢ\xF8ŷ(\xBEE\xF1s(~\xC5ϡ\xF89?\x87\xE2\xE7P\xFC\x8A\x9FC\xF1s(~\xC5ϡ\xF89?\x87\xE2\xE7P\xFC\x8A\x9FC\xF1s)~.\xC5ϥ\xF8\xB9?\x97\xE2\xE7R\xFC\\x8A\x9FK\xF1s)~.\xC5ϥ\xF8\xB9?\x97\xE2\xE7R\xE4\\x8A\x9CG\xD1\xF2(BEȣo\xE5ѷ\xF2\xE8[y\xF4\xAD&lt;\xFAV}+\x9Fx\xF2\x89'\x9F&quot;\xE4O&gt;\xF1\xE4S\xB4|\x8A\x96O&lt;\xF9ēO\x91\xF3)f&gt;\xFD\xF3)f&gt;\xC5,\xA0\x98\xB3\x80bP\xCC\x8AV@\xD1
+(ZE+\xA0h\xC4Y@1 \x88\xB3\x80&quot;P\xE4\x8A\H\x91 )r!E.\xA4ȅD[H\xF1 )~!\xC5/\xA4\xF8\x85\xBF\x90\xE2R\xFCB\x8A_H\xF1 )~!\xC5/\xA2\xF8E\xBF\x88\xE2Q\xFC&quot;\x8A_D\xF1\x8B(~\xC5/\xA2\xF8E\xBF\x88\xE2Q\xFC&quot;\x8A_D\xF1\x8B(~\xC5/\xA6\xF8\xC5\xBF\x98\xE2S\xFCb\x8A_L\xF1\x8B)~1\xC5/\xA6\xF8\xC5\xBF\x98\xE2S\xFCb\x8A_L\xF1\x8B)~\xF1\xA9\xF8y\xDB o\xE4m\x83\xBCm\x90\xB7+\xF2\xB6A\xC66\xC8\xD8\xDB cdi\x83,m\x90\xA5+\xB2\xB4A\x966\xC8\xD2Y\xDA K\xE4g\x83\xFCl\x90\x9F+\xF2\xB3A~6\xC8\xCF\xF9\xD9 3df\x83\xCCl\x90\x99+2\xB3Af6\xC8\xCC\x99\xD9 3df\x83\xCCl\x90\x99+2\xB3Af6\xC8\xCC\x99\xD9 3df\x83\xCCl\x90\x99+2\xB3Af6\xC8\xCC\x99\xD9 3df\x83\xCCl\x90\x99+r\xB2AN6\xC8\xC99\xD9 dc\x83ll\x90\x8D+\xB2\xB1A6ȺY\xD7 \xEBd]#\xDB\x81\xD8Ⱥ\xF9\xD6 \xDF\xE4[\xC3 *\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\x90u+\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\x90u+\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\x90u+\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\x90u
 +\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\x90u+\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\x90u+\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\x90u+\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\x90u+\xB2\xAEA\xD65ȺY\xD7 \xEBd]\x83\xACk\xE4R|r\xAFA\xEE5\xF2(~\xC5'y?\x8Fⓓ+r\xB2\x91G\xF1\xF3(&gt;\xF9\xD9 ?\xE4g\x83\xFCl\xE4Q|\xB2\xB4A\x966\xC8\xD2Y\xDA Kdi\x83,m\x90\xA5+\xB2\xB4A\x966\xC8\xD2Y\xDAȧ\xF8\xE4j#\x9F⓱+2\xB6A\xC66\xC8\xD8\xDB cdl\xA3\x80⓷+\xF2\xB6A\xDE6\xC8\xDBy\xDB o\xE4m\x83\xBCm\x90\xB7+\xF2\xB6A\xDE6\xC8\xDBy\xDB o\xE4m\x83\xBCm\x90\xB7+\xF2\xB6A\xDE6\xC8\xDBy\xDB o\xE4m\x83\xBCm\x90\xB7+\xF2\xB6A\xDE6\xC8\xDBy\xDB o\xE4m\x83\xBCm\x90\xB7+\xF2\xB6A\xDE6\xC8\xDBy\xDB o\xE4m\x83\xBCm\x90\xB7+\xF2\xB6A\xDE6\xC8\xDBy\xDB o\xE4m\x83\xBCm\x90\xB7+\xF2\xB6A\xDE6\xC8\xDBy\xDB o\xE4m\x83\xBCm\x90\xB7+\xF2\xB6A\xDE6\xC9\xDB&amp;y\xDB$o\x9B\xE4m\x93\xBCm\x92\xB7M\xEA\xB7M\xB2\xB7I\xF66\xC9\xDE&amp;\xD9ۤ~ۤ~\xDB$\x93\x9Bdr\x93Ln\x92\xC9M2\xB
 9I&amp;7\xC9\xE4&amp;\x99ܤ~\xDB$\x9F\x9B\xE4s\x93|n\x92\xCFM\xF2\xB9I&gt;7\xC9\xE7&amp;\xF5\xDB&amp;Y\xDD̠\xF8du\x93\xACn\x92\xD5M\xB2\xBAIV7\xC9\xEA&amp;Y\xDD$\xAB\x9Bdu\x93\xACn\x92\xD5M\xB2\xBAIV7\xC9\xEA&amp;Y\xDD$\xAB\x9Bdu\x93\xACn\x92\xD5M\xB2\xBAIV7\xC9\xEA&amp;Y\xDD$\xAB\x9Bdu\x93\xACnR\xBFm\x92\xDBMr\xBBIn7\xC9\xED&amp;\xF5\xDB&amp;\xDE$Ûdx\x93 o\x92\xE1M\xEA\xB7M\xF2\xBCI\xFD\xB6I\xFD\xB6I\xFD\xB6I\xE67\xC9\xFC&amp;\x99\xDF$\xF3\x9Bd~\x93\xCCo\x92\xF9M\xEA\xB7M\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF
 \x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xFF\x9B\xE4\x93\xFCo\x92\xFFM\xF2\xBFI\xFE7\xC9\xFF&amp;\xF9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF$\xE7\x9B\xE4|\x93\x9Co\x92\xF3Mr\xBEI\xCE7\xC9\xF9&amp;9\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7
 [\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\
 xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xA8編\xE7\xB7\xC8\xFF\xF9\xDF&quot;\xFF[\xE4\x8B\xFCo\x91\xFF-\xF2\xBFE\xFE\xB7\xC8\xFF\xF9\xDF&quot;\xFF[\xE4\x8B\xFCo\x91\xFF-\xF2\xBFE\xFE\xB7\xC8\xFF\xF9\xDF&quot;\xFF[\xE4\x8B\xFCo\x91\xFF-\xF2\xBFE\xFE\xB7\xC8\xFF\xF9\xDF&quot;\xFF[\xE4\x8B\xFCo\x91\xFF-\xF2\xBFE\xFE\xB7\xC8\xFF\xF9\xDF&quot;\xFF[\xE4\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x91\xF3-r\xBEEη\xC8\xF99\xDF&quot;\xE7[\xE4|\x8B\x9Co\x9Dr~Q\xD1)[\x9E|ͤ\xD7lz\xB5\xE85\x97^\xF3\xE85\x9F^ 赐^\x8B\xE8\x95&quot;\x9C\xB2\xE2\xC9W\x8A\x93Eq\xB2(\xCE)\x9E|5\xE9\x95bfQ\xCC,\x8A\x96M\x9F̦\xEDٴ=۷\x9D\xE2gS\xFCl\x8AoPd\x83&gt;oPd\x83\xBEeз \xFA\x96A\xDF2\xE8\xF3&amp;}ޤϛ\xF4y\x93&gt;\xCA6'_\xE9[&amp;\xFD
 \xBDL\xFA\x99\xF4]\x93~\xA2I,\xFAYǢ8ű\xE8od\xD1\xDFȢ\x98E\xB3(\x9AE$Ŵ(Z\xC5ɡ89\xE7\x94ON\xBER\xB4\x8A\x96C\xD1r(Z\xE6P\xCC\x8A\x96C\xD1r\x880\xC7\x93s)r.EΥȹ9\x97&quot;\xE7R\xE4\\x8A\x9CK\x91s)r.E\xCE%\xDA\\x8A\x9FG\xF2(BEȣ\xEF\xE6\xD1w\xF3\xE8\xBBy\xF4\xDD&lt;\xFAn\x9E\xEF[D\x95GTyD\x95GT\xF9D\x95O1\xF3)f&gt;\xC5\xCC'\xAA|\x8A\x9CO\x91\xF3)r&gt;EΧ\xC8\xF9D\x95\x9F_Ч\xEF\xDD\xFD\xBA\xDF\xDEm@z\xCDΗ\xA6g\xD6\xCB0ӯ)\xD0\xED\x9A\xE6\xE9y\xFD\xFB\xF7\xE9ܽd@\xF7&gt;\xBD\xCB_\xB5\xF6k\xD9N\xFE\x8FA4\xC4@,\xC4A&lt;$@&quot;$A2\xA4@5\xB8\xAA\xC3\xC5P.\x81\x9Ap)Ԃˠ6ԁ\xBAp9ԃ Ȅ,\xC8L\xB0 r\xA1&gt;4\x80|(\x80B(\x82b\xB8
+\x9A@ShWCs\xB8Z\xC0\xB5\xD0\xAE\x83Vp=\xB4\x86\xA0+\xDCm\xE1&amp;h7\xC3\xE3\xECa6\x8A=\xC2F\xB31l,{\x94\x8Dc\x8F\xB1\xF1\xECq6\x81=\xC1&amp;\xB2'\xD9$\xF6\x9B̞fS\xD83l*{\x96Mcϱ\xE9\xECy6\x83\xBD\xC0f\xB2\xD9,\xF6\x9B\xCD^fs\xD8+l.{\x95\xCDc\xAF\xB1\xF9\xECu\xF6{\x93-`o\xB1\x85\xECm\xB6\x88\xBD\xC3\xB3w\xD9\xB6\x94-c\xEF\xB1\xE5l[\xC9\xDEg\xAB\xD8l5\xFB\x90\xADa\xB1\xB5\xECc\xB6\x8E}\xC2&gt;e\x9F\xB1\xF5\xECs\xB6\x81}\xC16\xB2/\xD9&amp;\xF6\xFB\x9A}\xC36\xB3\xB1-\xEC[\xB6\x95}Ƕ\xB1\xEF\xD9v\xF6o\xB6\x83\xFD\xC0v\xB2\xD9.\xF6\xDB\xCD~f{\xD8/l/\xFB\x95\xEDc\xBF\xB1\xFD\xECwv\x80\xFD\xC1\xB2C\xEC0;Ž\xB2?\xD91\xF6;\xCEN  CD\x8E%z0\xBD\x8C!\x8Aa\x8E\x89Q\x8D1\x8Bq\x8F        \x98\x88I\x98\x8C)\x98\x8AiX\xAB\xE2\x98\x8Eb5\xBC\xAB\xE3\xC5X/\xC1\x9Ax)\xD6\xC2˰6\xD6\xC1\xBAx9\xD6\xC3 \xCC\xC4,\xCCFM\xB40s\xB1&gt;6\xC0\x86x6\xC2+\xB11\xE6a&gt;`!a1^\x85M\xB0)6ë\xB19^\x83-\xF0Zl\x89\xD7a+\xBC[\xE3+\xD8oĶx\xB6Û\xB1=ނ\xF0V\xEC\x88%\xD8        c\x
 BC+\xBB\xE2\xED\xD8+\xBBc쉽\xF0\xEC\x8D}\xB0/މ\xFD\xB0?\xC0\x818\xEF\xC2\xC1x7\xC1{p(ދ\xC3\xF0&gt;\x8E\xF7\xE3|G\xE2\x83\xF8&gt;\x8C\xA3\xF0\x8Dcp,&gt;\x8A\xE3\xF01\x8F\x8F\xE3|'\xE2\x938        \x9F\xC2\xC9\xF84N\xC1gp*&gt;\x8B\xD3\xF09\x9C\x8E\xCF\xE3 |g\xE2\x8B8 _\xC2\xD9\xF82\xCE\xC1Wp.\xBE\x8A\xF3\xF05\x9C\x8F\xAF\xE3\xF8&amp;.\xC0\xB7p!\xBE\x8D\x8B\xF0\\x8C\xEF\xE2\\x8A\xCB\xF0=\\x8E+p%\xBE\x8F\xAB\xF0\\x8D\xE2\xFC\xD7\xE2Ǹ?\xC1O\xF13\\x8F\x9F\xE3\xFC7◸        \xBF¯\xF1܌\xFF\xC2-\xF8-n\xC5\xEFp~\x8F\xDB\xF1߸\xC0\x9D\xF8#\xEEŸp7\xFE\x8C{\xF0܋\xBF\xE2&gt;\xFC+\xF7\xE3\xEFx\xFF\xC0\x83x\xE3&lt;\x8A\xE21\xFC \x8F\xE3        \x9Cq\xE4\x9C .\xB9\x87q/\xE6!&lt;\x94\x87\xF1p\xC1#y\x8F\xE61&lt;\x96\xC7\xF1x\x9E\xC0yO\xE6)&lt;\x95\xA7\xF1*\xBC*\xBF\x80\xA7\xF3 y5~\xAF\xCE/\xE65\xF8%\xBC&amp;\xBF\x94\xD7\xE2\x97\xF1ڼ\xAF\xCB/\xE7\xF5x\xCF\xE4Y&lt;\x9B\xDC\xE4\xCFṼ&gt;o\xC0\xF2+x#~%o\xCC\xF3x&gt;/\xE0\x85\xBC\x88\xF3\xABxޔ7\xE3W\xF3\x
 E6\xFCނ_\xCB[\xF2\xEBx+~=o\xCDo\xE0m\xF8\x8D\xBC-\xBF\x89\xB7\xE37\xF3\xF6\xFCށ\xDF\xCA;\xF2މw\xE6]\xF8m\xBC+\xBF\x9Dw\xE3\xDDyޓ\xF7\xE2w\xF0޼\xEF\xCB\xEF\xE4\xFDx&gt;\x80\xE4\x83\xF8]|0\xBF\x9B\xE1\xF7\xF0\xA1\xFC^&gt;\x8C\xDFLJ\xF3\xFB\xF9\xFE\xC9\xE4\xF1\x87\xF9(\xFE\xCD\xC7\xF0\xB1\xFCQ&gt;\x8E?\xC6\xC7\xF3\xC7\xF9\xFE\x9Fȟ\xE4\x93\xF8S|2\x9AO\xE1\xCF\xF0\xA9\xFCY&gt;\x8D?ǧ\xF3\xE7\xF9 \xFE\x9F\xC9_\xE4\xB3\xF8K|6\x99\xCF\xE1\xAF\xF0\xB9\xFCU&gt;\x8F\xBF\xC6\xE7\xF3\xD7\xF9\xFCM\xBE\x80\xBF\xC5\xF2\xB7\xF9&quot;\xFE_\xCC\xDF\xE5K\xF8R\xBE\x8C\xBFǗ\xF3|%\x9F\xAF\xE2\xF0\xD5\xFCC\xBE\x86\xC4\xD7\xF2\x8F\xF9:\xFE        \xFF\x94\xC6\xD7\xF3\xCF\xF9\xFE\xDFȿ\xE4\x9B\xF8W\xFCk\xFE+\xDF\xCC\xFFŷ\xF0o\xF9V\xFE\xDFƿ\xE7\xDB\xF9\xBF\xF9\xFE\xDF\xC9\xE4\xBB\xF8O|7\xFF\x99\xEF\xE1\xBF\xF0\xBD\xFCW\xBE\x8F\xFF\xC6\xF7\xF3\xDF\xF9\xFE?\xC8\xF1\xC3\xFC?\xCA\xFF\xE4\xC7\xF8_\xFC8?!@0\x81\x82 !\xA4\xF0\x88 \xE1\xC1&quot;D\x84\x8A0.&quot;D\xA4
 \x88\xD1&quot;FĊ8/D\xA2H\xC9&quot;E\xA4\x8A4QET\x88tq\xA1\xA8&amp;.\xD5\xC5Ţ\x86\xB8D\xD4\x97\x8AZ\xE22Q[\xD4u\xC5增\xC8\x99&quot;Kd C\x98\xC29&quot;W\xD4+DCq\x85h$\xAE\x8DE\x9E\xC8\xA2P\x89bq\x95h&quot;\x9A\x8Af\xE2j\xD1\\#Z\x88kEKq\x9Dh%\xAE\xAD\xC5+\xA2\x8D\xB8Q\xB47\x89v\xE2f\xD1^\xDC&quot;:\x88[EGQ&quot;:\x89΢\x8B\xB8Mt\xB7\x8Bn\xA2\xBB\xE8!z\x8A^\xE2\xD1[\xF4}ŝ\xA2\x9F\xE8/\x88\x81b\x90\xB8K w\x8B!\xE21T\xDC+\x86\x89\xFB\xC4pq\xBF!#Ń\xE2!\xF1\xB0%\xA3\xC51V&lt;*Ɖ\xC7\xC4x\xF1\xB8\x98 \x9Eœb\x92xJLO\x8B)\xE21U&lt;+\xA6\x89\xE7\xC4t\xF1\xBC\x98!^3ŋb\x96xI\xCC/\x8B9\xE21W\xBC*\xE6\x89\xD7\xC4|\xF1\xBAxC\xBC)\x88\xB7\xC4B\xF1\xB6X$\xDE\x8BŻb\x89X*\x96\x89\xF7\xC4r\xB1B\xAC\xEF\x8BU\xE2\xB1Z|(ֈ\x8F\xC4Z\xF1\xB1X'&gt;\x9F\x8A\xCF\xC4z\xF1\xB9\xD8 \xBEŗb\x93\xF8J|-\xBE\x9Bſ\xC4\xF1\xAD\xD8*\xBE\xDB\xC4\xF7b\xBB\xF8\xB7\xD8!~;ŏb\x97\xF8I\xEC?\x8B=\xE2\xB1W\xFC*\xF6\x89\xDF\xC4~\xF1\xBB8 \xFE\xC5!qXGş\xE2\x
 98\xF8K'$H&amp;Qr)\xA4\x94$\xBD2X\x86\xC8P&amp;\xC3e\x84\x8C\x94Q2Z\xC6\xC8X'\xE3e\x82L\x94I2Y\xA6\xC8T\x99&amp;\xABȪ\xF2\x99./\x94\xD5\xE4E\xB2\xBA\xBCX֐\x97Ț\xF2RYK^&amp;k\xCB:\xB2\xAE\xBC\֓2Sf\xC9liHSZ2G\xE6\xCA\xFA\xB2\x81l(\xAF\x90\x8D䕲\xB1̓\xF9\xB2@\xCA&quot;Y,\xAF\x92MdS\xD9L^-\x9B\xCBkd y\xADl)\xAF\x93\xAD\xE4\x{172D7C}A\xB6\x917ʶ\xF2&amp;\xD9N\xDE,\xDB\xCB[dy\xAB\xEC(Kd'\xD9Yv\x91\xB7ɮ\xF2v\xD9Mv\x97=dO\xD9K\xDE!{\xCB&gt;\xB2\xAF\xBCS\xF6\x93\xFD\xE59P\x92w\xC9\xC1\xF2n9D\xDE#\x87\xCA{\xE50y\x9F.\xEF\x97#\xE4r\xA4|P&gt;$\x96\xA3\xE4#r\xB4#\xC7\xCAG\xE58\xF9\x98/\x97\xE4r\xA2|RN\x92O\xC9\xC9\xF2i9E&gt;#\xA7\xCAg\xE54\xF9\x9C\x9C.\x9F\x973\xE4 r\xA6|QΒ/\xC9\xD9\xF2e9G\xBE&quot;\xE7\xCAW\xE5&lt;\xF9\x9A\x9C/_\x97o\xC87\xE5\xF9\x96\(ߖ\x8B\xE4;r\xB1|W.\x91K\xE52\xF9\x9E\.Wȕ\xF2}\xB9J~ W\xCB\xE5\xF9\x91\+?\x96\xEB\xE4'\xF2S\xF9\x99\/?\x97\xE4r\xA3\xFCRn\x92_ɯ\xE57r\xB3\xFC\x97\xDC&quot;\xBF\x95[\xE5wr\x9B\xFC^n\x97\xFF\x96;\xE4r\xA7\
 xFCQ\xEE\x92?\xC9\xDD\xF2g\xB9G\xFE&quot;\xF7\xCA_\xE5&gt;\xF9\x9B\xDC/\x97\xE4\xF2\xA0&lt;$\xCB#\xF2\xA8\xFCS\x93\xC9\xE3\xF2\x84&lt;̃\xEE\xE9\xF1x\x82&lt;^O\xB0'\xC4\xEA        \xF3\x84{&quot;&lt;\x91\x9E(O\xB4'\xC6\xEB\x89\xF3\xC4{&lt;\x89\x9E$O\xB2'œ\xEAI\xF3T\xF1T\xF5\\xE0I\xF7\\xE8\xA9\xE6\xB9\xC8S\xDDs\xB1\xA7\x86\xE7OMϥ\x9EZ\x9E\xCB&lt;\xB5=u&lt;u=\x97{\xEAy2&lt;\x99\x9E,O\xB6\xC7\xF0\x98˓\xE3\xC9\xF5\xD4\xF74\xF04\xF4\\xE1i\xE4\xB9\xD2\xD3ؓ\xE7\xC9\xF7x
+=E\x9Eb\xCFU\x9E&amp;\x9E\xA6\x9Ef\x9E\xAB=\xCD=\xD7H/?\xD5\x9El\xFFN\xF6'\xBC\x93\xDD\xDC\xC9v+n \xF0\xC0\x80W\x96|\xB0\xE0\xD7S\x9Fe\xD1\xC0\xAA\xCBV\xEC`]\x81\xDDl\xB0\xA7\x81\xCD\xF6.\xB0u\xC0\xBE\xB6\xD8        \xC0(\xC0 3 [\xDE8\xF0a\xC0ɀ/.\xFCp \xE0/\x80ǁGO\x9E&lt;\xF8\xF5\xC0\xBB\xFC!\xE0O\x9F+\xFC\xE0k\x81\xFF \xF8\xE0\x81\x88q\x88z \xF2@\xB4\xD1\xC4\x82\x98\xE2%\x8B@|b3\x88\x9FA\xB2*\xC8\xCBA6y\xC8N \xFB\x83        \xF2I\x90\xB3@\xBE+r+\xC8o@\xEE\xF9'x\xC2\xC0S&lt;u\xC1s%xZ\x82\xA7&lt;\xFD\xC0\xF3x&amp;\x82\xE7E\xF0,χ\xE0\xF9&lt;?\x81\xE7(\x85BPՁ\xA0Ft-u\x84\xA0;!h=A3!\xE8-Z+A_A\xD0.:\xDE𦂷6x\xAFo \xF0\xDE
+޾\xE0\xBD\xBC\xC0\xFBx\x80\xF7\xF0n\xEF\x8F\xE0= \xC1\xC1\x9C\xC1\x97ApC\xBE\x82;@p\xC1\x8FC\xF0 ~\x82WA\xF0\x97\xBC\x82A\x88B\x92!\xA4\x844\x80\x90\xE6r \x84\x83\xD0g \xAC&gt;\x84}\xE1\x83!&quot;&quot;B\xE4+y\xA2\x9E\x80\xE8L\x88\xFEb\xFABl$\xC4΃\xB8k \xEEg\x88+        \x97B\xC2H\xBC\x92&lt;\x90\xF4&quot;$B\xF2+\x90\xDCR$\xA4̄\xD4H\xDDi\xF7C\x95t\xA8\xF2T\xEDU\xFF\x82 \xA6BzH\xDF \xDE+Ւ\xA0\xDA\xDBpQ\xB8\xE8\xA8&gt;.΂\x8B7@\x8D;\xE1\x92(\xB8\xE45\xA8\xD9j\xFE\x97\x8E\x85Z\x97A\xAD\xB5pYw\xA8\xED\x85\xDA/A\x9Db\xA8\xF3\xD4        \x97_\x97\xAF\x84z%'O8 \xE39\xC8l\x99\xDFB\xD6P\xC8N\x85\xEC\xC5`\xDC\xC6a0\x9F\xEB\xE4Yȗ\x903rc!\xF7+\xA8\xD4\xDF+\x83\x86u\xA1\xE1'pE/h
+\x8D\xE6\xC0\x95M\xE1\xCA]\xD0\xF8ȫ
+yK!\xBF=\xE4\x82\x82        P\x98\x85롨G@\xF1\xABpUs\xB8\xEAgh2\x9A^
+M\xD7@\xB3\xDB\xE1j\\xFD&quot;4/\x84\xE6\xFF\x86kF@\x8B \xA1\xC5r\xB8\xF6V\xB8\xF68\xB4|\xAEk\xD7\xFD Z+\x81\xEB\x93\xE1\xFAE\xD0\xFAFh}nx\xDAdC\x9B/\xE0\xC6~\xD06\xDA·\x9B\xAE\x85\x9B\xF6B\xBBG\xE1\xE6\xDAp\xF3\xC7о\xDC \xB7̆WA\x87\x9Dp\xEBH\xE8X+:\xAE\x80\x92\x8EPr:M\x85\xCE+\xA0\xF3f\xE8r7ܖ\xB7\xBD+]\xDB@\xD7?\xE0\xF6\x89\xD0- \xBAm\x80\xEE}\xA1G\xF4xz6\x87\x9E\xBB\xA1\xD7(\xB8\xE3\xB8c5\xF4\xBE+\xFA\xE8\xF3\xF4͇\xBE\xDFÝá\xDF\xD0o\xF4\xBF\xFA\x83\xCF\xC0\xC0\xFA0\xF04\xEEJ\x84\xBB\xC2\xE0`\xF0\xB8\xFB        \x92        C&gt;\x87{\xFA\xC2\xD0H:\xEE\xBD\xEE\xDD\xC3\xC6\xC0}\xB5ྏ`x7\xB8?\xEE\x9F#\x8A`\xC4x\xE0Y+F\xAE\x80;ƒ'\xE0\xA1i\xF0\xF0\xF0\xF0u&lt;\x92\x8F\xBC\xA3\xDB\xC2\xE8C0f\x8C5`\xECFx\xB4?\x8C\x8B\x81q\xAF\xC3c-\xE1\xB1_a\xFC8x\xBC&lt;\xBE&amp;\xF4\x84'B\xE0\x89\xD90\xB1&amp;n\x87'\x87ä\xAA0i)&lt;\xD5\x9E:\x93'\xC1\xD3\xF0\xF4z\x98\xD2\x9E\x89\x80g^\x85\xA9\xCDa\xEAnxvL\xBB\xA6\xAD\x86\xE7\xBA\xC0t\x84\xE9
 \xCF\xC3\xF3\x8D\xE1\xF9\xEF`\xC60x\xA1
+\xBC\xB0f\xDE 3\x8F‹Oì\x98\xF5\xBC\xD4f\x87\xC3\xEC\xB9\xF0\xF2\xD5\xF0\xF2n\x98\xF3\xBCR^y\xE6v\x82\xB9\xC1\xABSa^\x98\xB7^\xBB\xE6'\xC1\xFC\xB7\xE1\xF56\xF0\xFA\xF0\xC6Dx3 \xDE\xDC \xA2\xE0\xAD\xD7`a X\xF8 \xBC=]\x8B\xD6\xC2;\xDDa\xB1\xBF\xEFû?\xC0\x92\x91\xB0\xF4&quot;X\xBA\x96\xDD
+ˎ\xC3{\xCF\xC2\xF2\xB0|3\xAC\xB8V&amp;\xC1ʷ\xE1\xFD6\xF0\xFE\xB0j&quot;|\x90l\x80\xD5w‡\x91\xF0᫰\xA69\xAC\xF9&gt;z\xD6^kW\xC3Ƿ\xC1:\xEB^\x80O\xF2\xE1\x93\xEF\xE1\xD3\xE1\xF0\xD9\xF0\xD92X \xAC?\x9F?\xEAÆo\xE0\x8B\xC1\xB016.\x84/o\x80/\xC0\xA6'\xE0\xABL\xF8\xEAs\xF8\xBA/|        \xDF̃\xCD\xD7\xC0\xE6=\xF0\xAF1\xB0\xA5l\xF9\xBE\xED[\x83`\xEB,\xF8\xAE\xBE\xDB\xDB\x80\xEF\xAB\xC1\xF7+`{G\xD8~\xFE=+v\;\xB6\xC0\xF7\xC0\xCE\xD8\xF9\xFC\xD8~&lt;\xBB&amp;\xC1O\xFC\xB4v\xF7\x87\x9Fc\xE0\xE7\xD7aOK\xD8\xF3+\xFC2\xF6ց\xBD\xEB\xE0מ\xB0/\xF6\xBD \xBF5\x81\xDF~\x84\xFD\xC1\xEF\xC3\xEF\xAB\xE0@g\xF8\xE1\x8F\xE7\xE1`c8\xF8\x87\xAB\xC0\xE1%p\xE4f8r\x8E&gt;+\xE6\xC0\x9F_\xC1\xB1A\xF0W&lt;\xFC\xB5\x8E_\xC7\xF7É\xC7\xD4c\xF0c\xBD\x863\x9C\xCB\xF8Ռ\xEFf\xE2&amp;k2\xF9!\xF3teA\x92\xCDd\xDE\xE6\xDD΂\xEFg!\xE9,\xE4=ځ\x85\xFE\xC5¦\xB2\xF0,|3\x8B\xB8\x9BE&amp;\xB1ȷYT\xF5\x8B\x9E\xC8b\xB2X\xCC{'\x8B\x8Bbq\xAF\xB1\xF8,\xFE\x960\x96%^
 \xC2W\xB3\xA4\x96 ,\xF99\x96҈\xA5|\xCBR\x87\xB2\xB4D\x96\xB6\x90U\xB9\x8EU\xD9Ǫ&gt;\xC6.\xA8\xCB.\xF8\x84\xA5\xF7b\x86\xB2 \xE7\xB0jMY\xB5]좇Y\xF5\xAC\xFA\xEC\xE2.\xACg5f\xB0K\xF2\xD8%\xDBX\xCD\xFBإU٥KY\xAD\xF6\xAC\xD6!v\xD9$V;\x83\xD5^\xCF\xEA\xF4duCY\xDDW\xD8\xE5\xCD\xD9忰z\x8F\xB2\x8C:,\xE3S\x96هeE\xB1\xAC\xD7Yv+\x96\xFD;3&amp;2\xD3`\xE6&amp;f\xDD\xC5rY\xCE\xDB,\xB7-\xCB=\xC2\xEA?\xCD\xE4\xB2\x9BY\xC3{\xD8i슥\xACQ\xD6\xE8\xBBr:k\x9C\xC7ogy\xB0\xFC\xEA,\xFFVЕ\xB1\xC2٬\xA8)+\xDA͊ǰ\xABj\xB3\xAB&gt;aMz\xB3\xA6\x91\xAC\xE9|\xD6\xEC:\xD6l?\xBB\xFA        \xD6&lt;\x9B5\xFF\x92]3\x88\xB5\x88f-\xE6\xB3k\xAFe\xD7\xEEe-e\xD7\xD5f\xD7}\xCCZ\xF5`\xD7\xB3\xEBg\xB3\xD6W\xB1\xD6;\xD9+\xB26\xD5Y\x9B\xF7ٍ\x9DX[\xC6\xDANg7]\xC9n\xDA\xCA\xDA\xDD\xCBnNc7\xBF\xCBڷc폰[&amp;\xB3밉\xDD:\x90u\x8Cc\xDFd%\xADX\xC9o\xAC\xD3x\xD6\xF9r\xD6\xF9S\xD6\xE5v[\xBB\xEDֵ\xEB\xFA\xBB}\xEBv        붒u\xBF\x85u?\xC6z&lt;\xC3z\x9A\xAC\xE7\xE7\xACW_vG$\xBBc\xEB}+뽇\xF5\xC3\xFA\
 xD6b}?bwvc\xFD\x82X\xBFY\xAC뿃+x\x80+\xAC\xC6\xAE`\x83:\xB2A'\xD8]\xD3\xD8\xE0+\xD8\xE0-\xEC\xEE{ؐ6\xE4vO[v\xCF!6t\xBB\xD7`\xF7nd\xC3\xFA\xB3\xFBb\xD8}\xAF\xB3\xE1-\xD9\xF0_\xD9\xFD\xE3؈:l\xC4:\xF6@O62\x84\x8D|\x99=؄=\xF8#{\xE8!\xF6\xF0\xC5\xEC\xE1UlTg\xF6\xB2G\x9Eg\xA3\xB3\xD1߱1\xC3\xD8\xD8*l\xEC\xF6\xE8\xCD\xECѣl\xDC\xD3\xEC\xB1\xF6\xD8Wl\xFC \xF6x&lt;{|\x9Bp=\x9B\xB0\x9F=\xF18\x9BX\x8FM\xFC\x8C=ٛM
+g\x93沧\xAEfO\xEDf\x93aO\xD7dOȦte\xCFH\xF6\xCCL6\xB5\x80M\xDDΞ\xBD\x9FMKg\xD3\xDEc\xCFu`\xCF\xFDŦOe\xCF7`\xCFof3\xEEf/$\xB1\xDEf3۰\x99\xB0'\xB2YYl\xD6\xF6ҝlv\x9B\xFD{\xB9{\xF96g,{\xE52\xF6\xCAZ6\xB7;{\xD5\xCB^}\x89\xCD+f\xF3~`\xAF+g\xF3/`\xF3\x97\xB1\xD7oa\xAFco&lt;\xC3ެ\xCF\xDE\xFC\x86-\xCC\xDEJdo-d o` \xB0\xB7\x9F`\x8B2٢\xF5\xEC\x9D\xDElq8[&lt;\x97\xBD{5{\xF7'\xB6\xE4a\xB6\xB4[\xFA[օ\xBD\xC7\xD9{3\xD8\xF2&lt;\xB6|[Y\x95\xAD\\xCA\xDEo\xCF\xDE?\xCAVMfX\xEC\x83Ml\xF5\xF6a \xFB\xF0u\xB6\xA6%[\xF3+\xFBh[[\x87\xAD]\xC7&gt;\xEE\xC9օ\xB0u/\xB3O\x9A\xB0O~d\x9F&gt;\xC4&gt;\xBB\x98}\xB6\x8A\xAD\xEF\xCC&gt;G\xF6\xF9\xF3lCc\xB6\xE1;\xF6\xC50\xB6\xB1
+۸\x84}y3\xFB\xF2(\xDB\xF44\xFB*\x9B}\xF5\xFB\xBA7\xFB&amp;\x9C}3\x9Bm.`\x9B\xB7\xB3\xDD϶\xA4\xB3-\xEF\xB1o;\xB0o\xFFb[\xA7\xB2\xEF\xB0\xEF6\xB3mw\xB3\xEF\x93\xD8\xF7o\xB2\xED-\xD8\xF6_ؿG\xB1\x97\xB0+\xD9\xB7\xB0\x8E\xB1\x9Dϰ\xEB\xB3\xBFa\xBB\xB3\x9F\xD9O \xD9\xEE\xD8\xEE\xEC\xE7'؞L\xB6\xE7s\xF6K_\xB67\x92\xED\x9D\xC7~\xBD\x86\xFD\xBA\x87\xED\xC3~\xAB\xC5~\xFB\x88\xED\xEF\xC6~b\xBF\xCFb\x8A؁\xEC\x8F\xD8\xC1j\xEC\xE0
+v\xA8#;t\x82\x9EƎ\\xC1\x8ElaG\xEFa\xA6\xB0?\xDFa\xC7ڲc\x87\xD8_\x93\xD8q\x83\xDF\xC8N\xF4G\x88AxYKd\xBF&quot;\x8EC^\xF9:=Q\x86\xA0|=\x85\xE8\xF9\x83\x86\xA1\xB7
+z\x97`\xF0\xCD|C\x9E\xC6\xD0l \xFD\xC3zcx8\x86\xCFň\xAB1b7F&gt;\x82Q51\xEAC\x8C\xEE\x8A1cfbl\xC6nǸ\xFB1&gt;\xE3\xDFÄ\x98\xF0&amp;N\xC5$ \x936a\xF2@L\x89Ô\xD70\xB5\xA6\xFE\x8Ai\xE3\xB1JVـU\xFB\xE3qx\xC1[\x98\xDE\xD3ᅓ\xB1Z.Vی݃\xD5S\xB1\xFA\xBBxq{\xBC\xF8/\xAC1+/i\x84\x97lŚ\xF7\xE1\xA5\xE9x\xE9
+\xAC\xD5        /\xE3x\xD9 \xAC]\x80\xB5w`\x9D\xB1n+\xAC\xFB!^~;\xD6 \xC2z\xB31\xA3)f\xFC\x84\x99\x8F`V-\xCC\xFA\xB3{\xA1\x8E\xC6&lt;4\xAFEsZ\x8FcN&amp;\xE6|\x81\xB9\xB0~&lt;\xD6_\x88+n\xC4\xB1\xE1SxE^\xF1+6\x82W\xA6\xE2\x95K\xB0\xF1\xCD\xD8\xF8(\xE6=\x8D\xF99\x98\xFF \xC2\xC2x,\\x80E\xD7c\xD1~,~\xAF\xAA\x87W}\x86Mzc\xD3pl:\x9B]\x8D\xCDv\xE3Տ`\xF3\x9A\xD8\xFCC\xBC\xA6+\xB6\x90\xD8b&amp;^[\x80\xD7nǖ\xF7\xE3u\xE9x\xDD{ت\xB6\xFA \xAF\x9F\x8A\xAD`\xEB\xCDx\xC3\xDD\xD8&amp;        ۼ\x8D7\xB6\xC2\xC1\xB6c\xF1\xA6\xCB\xF0\xA6\xD5خo\xBC\xF99l\xDF\xDB\x8B\xB7 \xC5\xA9\xD8a1\xDEz\xDEz;&gt;\x81%\x99X\xF2        vꅝC\xB1\xF3,\xECR\x84]v\xE0m`\xD7j\xD8u\xDE\xDEo?\x81ݦa\xF7+\xB0\xFB\xECq\xF6L\xC1\x9E\xEF`\xAF\xB6\xD8\xEB\xDE1        {\xD8{#\xF6\xE9\x8F}c\xB0\xEF\xEBxgK\xBC\xF3W\xEC7\xFB\xD7\xC1\xFE\xEBp@O\x82_\xC6AMpЏx\xD7C8\xF8b\xBC
+\xEF\xEE\x8CC\x87&lt;\x8F\xF74\xC4{\xBE¡\x83\xF0\xDEx\xBCw&gt;\xBB\x87\xED\xC5\xFB\xC5\xE1\xB5q\xF8\xC7x\x8C#f\xE3W\xE1;q\xE4\x83\xF8`u|\xF0}|\xA8&gt;\xCC\xF0\xE1\xE98\xEAJ\xB5\xB9G\xA7\xE1\xE8wqL;s\xC7N\xC6G-|t\x8E\x88\x8F\xC5\xE1co\xE2\xF8V8\xFE7||,N\xB8 '\xAC\xC5'\xBA\xE3D/N|        \x9F,\xC6'\xC0I#\xF1\xA9\x8B\xF0\xA9\x958\xB9\x9F|\xFA\x9CR\xA7|\x83\xCF\xF4ũ\x918u&gt;\xDB\x9F݅\xD3\xC0\xE7\xAA\xE1s+pzG\x9C~\x9F\x9F\x863\xAE\xC0[\xF0\x85{pf
+\xCE|_l\x8D/\xFE\x8A\xB3\xC6\xE1Ku\xF0\xA5u8\xBB'\xBE\x82/\xBF\x8Cs
+qο\xF1\x958\xF7B\x9C\xBB_\xBD_=\x88\xF3\x9E\xC4ײ\xF1\xB5/p~?|=_\x9F\x8Fo\\x8Do\xEC\xC67\xC15q\xC1\x87\xF8VW\(q\xE1L|\xBB\xDFގ\x8B\xEE\xC7w\xD2\xF1\x9D\xF7pq;\|ߝ\x8CK\xB2p\xC9\z'.\x8B\xC2e\xAF\xE1{-\xF0\xBD_p\xF9X\q\xAEX\x8B+\xBB\xE3\xFB^|\xFF%\U\x8C\xAB~\xC0F\xE2\xEA\x8Bp\xF5J\xFC\xB0\xD7\xC0\x98\xA5\x87\xD7.eK\x97Y\xB0\x94/M8\x9At\xA4\xEE\xF1$\xCF\xD2c\xC7\xE2\xAF=\xB2\xE0\xD8ڠ\x88\x88郦::\xF4\xAE\xE7\x9D&gt;F\xA4\x87\xFCo\xC3\xFF6\xFCo\xC3\xFF6\xFCo\xC3\xFF6\xFCo\xC3\xFF6\xFCo\xC3\xFF6\x94\xBFa̡\xE8\xBF\xFF?f̡\xA6\xFF\xBBӂb. \x89\xDD'\xFElzDƟ\xFA\x93\xF7Ϧ\x9D\xA0?E\xFD\xD9\xF4p(\xFD)\xFD\xE46\xDFm\\xF6\xB9᧷\xFD\xA7?\xB7N\xF7@ٶ\xC3P\xFA\xB9@\xF1JQN\xE2 -\xEF\xC4i\xBC\xD2m\xFF\x84']\xC4;}\xAFt\xDB\xD9x'\xFE\xBFx\xBEϹ\x8EWqr}\x9F;{\xF4|\x9F\xB3+\xAF\xE2\xDA+w\xF4\xFC\xAC=\xFA\xAEx\xA5\xDB\xCE\xBD\xD2~\xF9\x9FF\xCFf\xBC@j\xCF\xF7\xD7p}ϭ|\xED\x9D\xD95|۴\xD8s\xCB=E\xBBƙګ\xD8{Z╗\\xC7\xF6\xDC@\xF0\xFE\xB6k\x9CPS{j\xD9U\xB
 1\xF8\xDD\xC8\xFF\xBC\xE4\xAA\xDE5\xFE&amp;:\x96s\xA3\xC5m\x83\xD8m\xA2\x94n\x9B\xF7t\xB4mQ\xA7I\xB6\xA5\x9F&amp;\xD9ָl\xDB\xF0\xD3۾/#\xD9^F\xB2\xA3l\xF0v\x95\xE5v\x9FǴ\x8A\xDB=U{Fy\x8D\xF2r\xAB\xDA+\xE7h\x96\xE1U\xD8,k\xD4\xB8pL\xB3\xA9a)\xC7\xCA\xCAO\xD4\xFC\xE9F?&gt;\xF3(ݏ\xCF\xEE\xF6\xCB\xFE\xFE\xF5\xDByldz7\xFD\xE5\xE2\x95s\xAE\xF4_\x82g\xF3\xBEm\xDEߺ}j/&lt;}\x92\xEB\xC2q\xC5n&lt;\x8Djυs%\xDB\xF1T'\xD7\xD5I\xBB\xF1\x94\xD7\xDE9&amp;aTמ sD6\xE19\xDFڍ\xA7S\xED)\xEA\xF7\xC1S\x93\\xE7\xC65\xC7ST{\xE3)\xF7\x9E\xDFx\xFA$W\xA3~\xCF_&lt;\x8DjO\xA3~\xCFo&lt;\xD5\xC9u\xF5r\xB9\xDDx\xCAk\xAF&lt;&lt;\x8D\xBCw&lt;\x8D\x92\xABO\xBF\xE7/\x9EN\xB5\xA7O\xBF\xE77\x9E\x9Bɭ\xFC\x85\xCD\xF1\\xAD=\xF1y\xEF&lt;\xF0\xF4I\xAE\xF2~O\xF9u#{\xF0y\xEF&lt;\xF0T'W\xA3\xF9\xBD\xCA\xE3)\xAF=\x8D\xE6\xF7\xCEO\xA3\xE4\xAA\xEE\xF7*\x8F\xA7S\xED\xA9\xEE\xF7\xCEOQr\xE5i&lt;\x8D\xE6\xF7*\x8F\xE7\xC6\xCA\xE1
+/ֻ0z\xCE\xE1i9z65\xC4\xD3'\xB9\x8Eu\xCB\xCE\xE1iT{\x8Eu\xCB\xE2\xA9N\xAE \xB3\xA3\xCE\xE1\x9DU{\x87C\xFDB;k]\xAE\xEFG\x9EZ\x97\xEB j]n\xE9\xB6\xC6eۆ\x9F\xDE\xF6O\xEBr}\x9F\xDBU&amp;\x95}\xFF\xB7\xEE4C\xD3(\xA9Nu\xC9\xCE\xE1\xE9Rs\xF2tbK\x9B-\x8Dj\xAE&lt;4\x92Z\xD6~*Z\xED\xE8\x9E\xA2\xFB\xEA*\xC6s\xB7\xBF O\x9F\xE4\xAA\xEA\xEF\xC0Ө\xF6T\xF5w\x81\xE0\xA9N\xAE \xB3\xA1\xCE\xE1)\xAF=fC\xC4\xD3(\xB9\x8A\xFA\xBC\xF0t\xAA\xBD\xF2:\x8DjO\x9F\x86\xCA\xD5Վv\xE3)\x8B\xAB\xCB        \xED\xC1Ө\xA1ru9\xA1\xDDx\xCA\xC5\xE2\xEAr\xC2@\xF0\xD4O\x98\x80\xA7\xBC\xF6\XN\xE8 \x9EF\xC9է\xA1ru9\xA1\xDDxyO\xA3*E\xCB        \x9D\xC3s\xB5\xF6-'tώ䖷v\xA0t\xDBYx\x8A\xAE\xA1\x82\xE7BK\xE0\x9Ec\xAB~\xC1\xB3y\xD7pO\xA3\xE4:\xD58\x87\xA7S\xED9\xD58\x88\xF7\x93Ѓ\xA9|?\xE1\xD4\xBF\xD2m\x8D\xFD0\x95_W\xFC\xB4\xA2s\xA1\xF2zZ\xA0\xF3\x95g\xEB\xC3 \x95嶼G\xA2\xE9M\xA7Q\xE5\xB9zw\x81Mx\xCE\xD0\xFC~V\xA0\x9A^/&lt;\xE5\xB5\xE7\xC2\xF54\xF14J\xAE\x9A^/&lt;\x9DjOM\xAF\xA7\xCFCH\xFD=\xA6\xF
 9\xB6m/ˣ^\xBD\x9E\xBFt\x8A*O\xF9\xB3Cl\xC2\xD3&amp;\xB7\xFA\xF4z\xFE\xD2iTy\xF5zʟ\xE2/\x9E\xF2y\xBD@\xF0\x94מ\xF2y\xBD\x80\xF04J\xAE&gt;\xBD\x9E\xF2'\x87\x82\xA7\x91\xF7*9\xAF\xE7$^\xE9\xB6\xE1\xBA{\xA9\xCF9&lt;Wk\xCF_&lt;E\xDE;&lt;}\x92\xEB\xEA\x93C\xEC\xC1Ө\xF6\x94\xF7{灧:\xB9\xCD\xEDUOy\xED\xB9:\xB7W\x8AUv|\xD5\xEB\xA0f\x9E\xE6\xA3\xE7\xD8Q#&lt;\xBCWy&lt;W\xF7\{\xF04\xAA=W\xE7\x95\xED\xC1ӳ\xF64\xF2^ٴ\xB7\xABO\xAD\xB1O\xFD\xAE\xE1/\x9E&gt;\xA3\xE7B3o7\x9E*\xB1T\x88\xA7^,\xFE\xE2\xA9N\xAE\xAB\x93\xB7v\xE3)\xAF=W'om\xC7\xD3(\xB9\xCEO\xDEڍ\xA7S\xED\xB9\xD9\x9C9\xCF=\xF3x\x98\xCA\xE396z\x81๰\xE7ڄ\xA7Or]\xEDX\xEC\xC1Ө\xF6\\xEDXl\xC2S\x9D\E\xB3\x81\xE0i$W\xD7\xEE\x84\xE7fK`\x9EN\xB5\xE7\xE6\x8BMxj\x92[\xDE2\x9B\xFF@&lt;E\xB5W1\x9Er\xEF\xF9\x8D\xF7\x93k\xFB\xFA\xB8\xD2m\xC3Oo;\xAF\xBBpN=\xAC\xD0ρs\xAD\xF4&amp;,\xFB\xF3Z\xDE\xE5\xB4\xD2m\xF64\xCA\xCA\xF2\xEA\xABD\xB7WeB\xE7•RS\xAB\xE8*}@x\xA7s\xABb\x9F\xF5\xEDg?\xD8\xF6\x8CN\\xB8B_\xF1\xC8\xF9\
 xD9\xC1\xEB2r\xD9N\xF9\x9D7~\xE39߽ۍ\xA7\xDCw\xCA\xEF\xBC        Oɱ\xCCg^\xEE\xBC        \x84NQ\xE5)\xEA\xDDm\xC7\xD3&amp;\xB7\xFA\xF4x\xFE\xD2iTy\xF5x~\xE3\xA99\xA0\x95\xBB@^\xF5u*\x8F\xA7\xBC\xF6\xCA\xC3\xD3\xC8z\xE7\xC0\xD3(\xB9\xFA\xF4z\xFE\xE2\xE9T{\xFA\xF4z~\xE3\xB9un\xEB+\xF7\xEF\xCBv\x97~\x81\x86\xBF#\xF7\xB7gU\xF6\xAE]FNѹ\xAD\xBF#\xA7\xFE        b\xFA\xDCq\x9E\xAB\xBE\xF3O\x91\xEF\xCEO\xA5\xEF4\x9A\xCB+o\xE44\x99\xCB\xF3w\xE44\xF2\x9DFsy\xE7\xC0S\xDD\xDFUO\xB9\xEF4\x9A\xCB;&lt;Eɕ\xA7\xF1\\xBDo7\x9E\xAAګO\xA3'źz3F x\x8An\xC6\xD0H\xCBv㹰fZ#\xEF\xF9\x8D\xA7\xC6{v\xE3\xA9J\xAE\xEF\x82\xA7\xE86\xAA\xCA\xE39ֱ؎\xA7z\xD7pu&amp;\xDEn&lt;\xE5\xB5\xE7\xEAL\xBC\xEDx%W\xA3\x96\xA0B&lt;\x8D\xC4\xE2\xE7T\xB7\xFFh\\xBE\xF5ѝ\x9A\xC3\xF0\xD1\xE9\xF5\xF0x\xBB\xE9\\xBDC\xEE\xCC\xF3\xC3*N\xAD\xA2\xBB3\xCFO\x9B\xDC\xFA\xB5\xACA\xDD\xE0)jW\xC2S=z\xAE&gt;\xC2\xC9n&lt;\xE5^\xD1\xE8A0灧Qrմ+\x81\xE0\xE9T{j\xBA\xA9\x80\xF0\x94\xD3\xD4,\xB5\x9BNQ\xE5)\xBF\xC1\xCB&amp;&lt;mr\xEB\x
 FC&quot;Q\xBB\xE94\xAA&lt;\x8Dz=E\x8BD+\x8F\xA7|j*&lt;嵧|j* &lt;\x8D\x92\xABO\xAF\xA7h\x91\xA8=xy\xAF\x923g\xE7\x83W:a\xE7=]\xDE~&lt;h\xD7\xCF\xEB-\x9A\xE3\xD9R{v\xE3\xD9\{\xE2\xA9N\xAE \xC7܊\xF1\x94_1\xB0O\xA3\xDAs\xA1%\xF0\xCF\xDFieE\xBBF\xE5\xF1\\xF5\x9E\xA2k\xF6\xE0)?\xA8)\x9AWvOy\xED\xB90\xAF\xEC \x9EF\xC9UsPS&gt;\xAFl7\x9E\xA2c\xAE\xBF\xB3{\xCA\xC5\xE2/\x9E\xA2\xE4\xBA:u\xEB \x9E&gt;\xC9\xD5\xE8\x98\xEB/\x9EF\xB5\xA7\xFCDR\xD1\xE4m x\xCAO$\x95O\xDEڍ\xA7\x91\xF7\\x98\xBC\xB5        O\x9F\x86\xCA\xD5\xC9[\xBB\xF14\xF2\x9EF\xB3\x9Bc\xF1\xF36z\xCD\xF1TM\xDE\xFA{+\xBD\xA2        47\xEF\xF4\xB7Oy\xBFWy&lt;\x8DjOy\xBFwx\xAA\x93\xAB\xD1Z\xE5\xF1\xEC\xAE=y\xEF\xCC\xC93\xCE\xE0\xA9j        l\xC1snװ\xCF\xE6ګ\xAF\xBC{7\xFF\xA3\xF1\\xAD=\xF1\x9Ck        \xEC\xC6\xD3'\xB9n\xB46\xE3iT{n\xB4v\xE3\xA9N\xAE\xBB-\x81\xCDx\xCAk\xCF\xDDkjv\xE3i\x94\\xA6\x80l\xC6ө\xF6T\xF7{灧(\xB9\xF24\x9E\xBB\x97\xFCl\xC6SU{\xE2\xA9\xF7\x9E\xBFx\xFA$W\xA7~\xCFO&lt;\x8DjO\xA7~\xCF_&lt;\xD5\xC9u\xF7\x92\x9
 F\xCDx\xCAk\xCF\xDDK~v\xE3i\x94\\x8D\xFA=?\xF1t\xAA=\x8D\xFA=\xF1\x9CO\xAEN\xEB\x96m\xC6s\xA1\xF6tZ\xB7l7\x9E&gt;\xC9U\xD4\xEF\x82\xA7Q\xED)\xEA\xF7\xC2S\x9D\\xE5\xF3{:\xAD\x99\xB7O#\xEF)\x9F\xDF\xD3iͼ\xCDx:՞\x9A~/ &lt;5\xC9uuI\xE9U\xEE\xB3\xEEn&gt;\xB3\xD4\xE1L\xB7\xFC\xB7\xA5\xF2\xBFϖ]\xC3n&lt;\x9B\xB5\xEC \x9E&gt;\xC9u\xACuO\xA3\xDAs\xACuOur]\x98~tOy\xED\xB90\xFD\xE8 \x9EF\xC9u\xAAuO\xA7\xDAs\xAAu\xEFtr\xCF\xF77E\xF9ʘ~S\x95ve~\xEB\xBBo\x9B\xA3\xBFS\xB0\xE2U\xB7\x81\x8C\Y\xDD\xE92r\xA5U\xBBj\xCE\xEE\x91s\xEE\xF4;&lt;Ew\x82\xE7\x95\xC7s\xEE\xF4\xDBn&lt;\x95\xBE\xF3}\xD7\xD1\xDF)\xC8\xC8\xF99\xE5\xA8\xCB\xC8i\xE4;w\xA7\xC1s\xAA\xBFsO\xB9\xEFܝn\xB4OMr]\x9DntOQ\xEDU\x8C\xE7\xDCe\xBB\xF1\xF4I\xAEF}\x9E\xBFx՞F}\x9EFO\xA9υ\xF9&lt;\xE7\xF0\x94מ \xF3y\xE2i\x94\}\xFA=\x8D\x9E Ry&lt;\x8D\xBC\xA7\xC9|\x9E\xEFsg\xFF\xE6w\x8D\xE6\xF3ʻ\xF1F\x93\xF9&lt;GN\xD1\xF9\xAD\xBF#\xF7\xBE;5z\x8C\x9C\xACh\xE4l\x98C&gt;7Z\xD9o\xF884.\xBE\x94\xCF'\xA7\xF
 F?\xF2$c\xE0\xA9\xDA+]\x87r\xD6z\x9B\xE6\x92\xD95\\xD4(þ\x83\x88}\xBF\xC7+&gt;\xAD*\xD0\xF6!W9\xEE\xDA\xE8\xE0Z[75\xA8A\xD7ۺ\xA8U\x8A\xED&gt;)rP\xAF\xB4\xFB\xC4\xC8@EG:\x9F\x93\x9D\xFD=\x88n\xF0)\xAB@W\xA6\xC3]\xD4(\xC3:\xF5\x82\xFE\xF2iU\x81Z\xF5\x82\xAEL\x8B\xDB\xE8\xE0ĸ\x80Ԡ\x83\x93\xE3\xAEj\x95b\x9DzAW\xA6ȝ\xD4ʃ~N\x93\xBBX\xF9\xD9h\xED]\xAE\xC1\xF3\x98\x95v\xB7\x9C6W+h\xFB        7\xB5\xAAA+\xFA\xC1\xF3T\x9Fb\xAD\xE6+\xA8A+j57x\x80Z\xA5X}?Xy@\xBDjP}?x\x80\xCAR,O:\xB8P\xD6+@u5X!\xE0?xЁU
+\xBE5\xC3\xCFZ\xDFAreL\x85#W\xF1\xA3zl\xAF=\xE7\xF1{I x\xCE-V\xB4O\x9F\xE4\xBA\xFA 0{\xF04\xAA=W\x9Ff\x9E\xEA\xE4:x\xEE\xE1&lt;\x9E\xF2\xDAs\xF0\xBC\xC3&lt;\x8D\x92k\xF79\x87\xF3x:՞\xDD\xE7.\xE0\xA9I\xAE\xAA\x9B\xF2l\xC6ST{\xAAnʳO\x9F\xE4j\xD4喙)\xCF&lt;\xE5\xDESuS^\xA5\xF1\{\xE0&lt;\x9E\xF2\xDAsp݁ x%W\x9F~O\xD5My\xB6\xE0i\xE4=\x8D&amp;\xD0\xCE,\x86pe\xAD\x81\xF3x\xAE֞\xBFx\x8A\xBCwx\xFA$Wy\xBFWy&lt;\x8DjOy\xBFwx\xAA\x93\xAB\xD1\xFC^\xE5\xF1Ϊ=\x97n\xAB-\xBB!\xD9\xF7]\xBF\xB8\xA5\x9AFIU\xDD\xE7UO\x97\x9A\x93\xA7\x{3DCB91A}\xD4\yh\x8A\x92*O'U\xA3\xF9\xBC\xCA\xE3\xA9:\xC6V\x88\xE7BWz\x91^\xF6P\xDF\xC6Z\xCD\xE7U\xCF\xD5\xFE\xCE&lt;\xC7j/&lt;\xFA;\x9B\xF0T'W\xD1|\x9E=x\xCAkO\xD1|\x9EMx%\xD7\xCD&gt;\xCF&lt;\x9Dj\xAF\xBC\x8EE\xA3\xDAs\xB3\xA1*O\xA3\xF9&lt;{\xF0\\xAD=\x8D\xE6\xF3l\xC2\xD3'\xB9\xCA\xFB=\x8D\xE6\xF3\xC1S\xE4=\x8D\xE6\xF3\xFC\xC5S4\x9Fg\x9E\xF2\xDAS\xB4^\xCF&amp;&lt;\x8D\x92\xAB\xBA\xDF p^O&lt;\x8D\xBC\xA7h\xBD\xDE9\xF0T\xCF\xEFك\
 xA7\xAA\xF6t\x9C\xDF;&lt;}\x92\xABS\xBF\xE7'\x9EF\xB5\xA7S\xBF\xE7/\x9E\xEA\xE4j4\xBFWy&lt;嵧\xD1\xFC\xDEy\xE0i\x94\\x8D\xFA=?\xF1t\xAA=\x8D\xFA=\xF1\x9CJ\xEE߮H\x9E\xF8\xAF\xC5s\xE3zn\xA5\xF1\xDC]\xAF\x9E&gt;\xC9U\xB5^/&lt;\x8Djϱ~\xAF\xF4\xC7z\xCBwN&lt;W/\xBB8\x88gG\xED\xF9\x8BWZ\xC3˟\xFDijeװ\xCFf-;\x88\xA7OrӲsx՞r-\x9F\x9E\xEA\xE4\xBAp\xD9\xC59&lt;\xE5\xB5\xE7\xC2e\xF14J\xAES\xA7\xE1\xCE\xE1\xE9T{\xAA\xFB\xBD\xF3\xC0S\x94\xDCrfG\xFF\xF1T\xD5^\x85x\xEA\xBD\xE7/\x9E&gt;\xC9թ\xDF\xF3O\xA3\xDAө\xDF\xF3Our]\xB8\xEC\xE2\x9E\xF2\xDAs᲋\x83x%W\xA3~\xCFO&lt;\x9DjO\xA3~\xCF\xCD\xEB\xE7\xC0\x93\xA7\xF1ά\xFA\xFE/\xC1s\xA3\xF6*\x8D\xE7\xAE\xF7\xC1\xD3'\xB9\xAA\xFA\xBD\xF04\xAA=U\xFD^ x\xAA\x93\xAB~~/&lt;嵧~~/&lt;\x8D\x92\xAB\xA8\xDF O\xA7\xDAS\xD4\xEF\x82\xA7&amp;\xB9g.7\xAB\x9F\xDF \xCF\xEE\xA5'N\xE3\x95n; \xAFy\xF8\xDF'o+ѱ\xF8\xB8\xFA\x91\xA7\xD7Q\xBA\xADqٶ᧷\xB9\xFE\xB8\x8E3\x89=\xB3H\xE4#\xA7ff\xD4v&lt;}FυN\xD9n&lt;\x9B\x8F\xF6\xE09v
 İOur]\x9D\xB5Oy\xED\xB9:3j;\x9EF\xC9u\xBES\xB6O\xA7\xDAs\xBES\xB6\xEF\xFF&amp;\xF7\xDChe\xBF\x98\xFDt?\xE5\x8Bv\xAA\x9F\xF2\x99\xF5T?\xE5\xCB\xCF?&gt;\xFE\x8C\xB6\x9Dǯ\xAFҊαs\xB43\xF7T&gt;\xB5.\xCC\x94\x87\xA7\xD1\xF2$\x9BFO\x9B\xD2\xF3}wW\x99\xF4\xF4\xDA1ʣ\xD3h\xC7pu\xD2\xD6&amp;&lt;\xA7f\xFC\xC5S4ik\x9E퀎\xAB=\x8D\xA4\xAChN\xF9&lt;\xF0\x9C\xEF\x94\xED\xC6S\xAEeEs\xCA6\xE1)9\xE4\xFA&gt;\xB7\xBD,\x8Fzu\xCA\xFE\xD2)\xAA\xBC\x8A'\xBC\x95[\xCFo&lt;mr\xABO+\xEA/\x9DF\x95\xA7Q+\xEA7\x9E\x9A\xDA&lt;WgE\xED\xC6S^{\xAEΊڎ\xA7Qr\xF5\xE9\xF5\xFC\xC5ө\xF6\xF4\xE9\xF5\xFC\xC6s3\xB9\xDDn\x9E\xAB\xB5\xA7\xFC~p\xDBg4\x9F\xB6ձ\xF64\xC2\xD3h\xF2L\xA3\x9B\xFD\xED=\x8D\xC4\xE2\xD8
+ \xE7\xD6Mi\x89gsK\xE0 \x9E\xBBF x.\x88\xC59\xBC\xB3jρ5{\xE5\xCC\x94\xBBf\x8F\xB69\xF7\xE7\xECF\xD3(\xA9N\x9D9\x87\xA7K͕7[\xABI\xCD\xF93\x91\xECRR+\xEC\x8E\xD5{\xCEO&lt;U\xC7X7\xCF-\xC4\xD3'\xB9\x8Eu\xC7\xCE\xE1\xD9]{e\xE7\xB5\xCD\xE7\xD9=z\xEA\xDBO\xF1T\x8F\x9E 3\xF1\xCE\xE1\xA9h\xE4\xE9\xE3\xADo\x9BN\x{D9FF}h%\xF5\\xED\xA7f\xF7\xA9\x96I%.(\xAC9M:c\xD1l\xDE\xFC&lt;\xBEV\x9CT\xE7l3\x9E\xA2\xEE\xA4b&lt;\xE7:c\xBB\xF1\xF4I\xAE\x9D\xB1\xCDx՞\xAD\xA7\xDDx\xAA\x93\xEB\xEȨ\xCDx\xCAkυ\xBF\xE2i\x94\xDCs\xB5\xA0\xFA\xE1\xE9T{\xE5u,՞&gt;+\x95\xAB\x91pO\xF9l\x94\xBB3\xA1v\xE3\xE9\x93\\x8D\xFA=\xF1ܘ\x85/o\x85\xCF\xF9\\x98R1z.\xACl\xB4;\xB9ʏ\xAE.\xFAup\xF4T'\xF7        \xF4N\xAE-\xA3W\xDE\xD2\xC1\xD2m\xE9e\x8B\x92\xCE\xEEXԬ\xCD \xCF)\xB18\x87\xE7؝\xA3\x81\xE0\xD9\xEC=\xF1%\xB7\xAC\x99w\xA1[vOU\xEDU\x88g\xB3\x96\xC4\xD3'\xB9.\xAC\xAA\xB5O\xA3\xDAs\xE19\xDB\xF1T'Wώ\xC5O&lt;\xE5\xB5\xE7B;\xEA \x9ES\xC9\xF5\xF7&lt;ׅK~6\x8D\x9EF\x{DA1F}xZ\x8E\x9EFZ&gt;
 \xDE\xE9\xE4\x9EZC\xE0'\xDA?ܒ\xEE \xFFO\x8BC|\x9Fs}\x81\xBF{m\xE5G\xAE\xAC\xEEt\xB9X+\xE5L͝\x99\xF8\x9B\xEFTw*\x81$V\xD1Ѣb&lt;W\xBBd{\xF0\xD3q xZ\xD6^\x85]\xB2
+\xA9\x94w\x93\x8DF:\xF6s\xFD\x80.#炎9\x8D|\xA7h6\xD4&lt;\xE5\xBES4j\x9E\x9A人v\xC09&lt;E\xB5\xE7\xEA\xDA\xF1\xF4I\xAEF}\x9E\xABk\xEC\xC6S\xEE=W//\x82\xA7h6\xD4&lt;嵧h6\xD4&amp;&lt;\xE7\xE7\xF3*?;P\x8EX\x9Cn\xE4˻]IѼ\xCAy$V\x9FNY\xD1\xC3\xC2\xEC=\xED\xEAN\xF9\xA9\xB7+\xA9;4.\xBE\xB0t\xE9Q\x80J\xB1\xBDӳ\xD0\xF6^\xCF+\xC0\x80\x8E\xB8\xCEjZ\x83\xB6w|\xF6:\xD8\xF3\xB9\xA8A+:\xD8\xF7\xB9\xA8U\x8A\xED\xEE`\xDCԫ\xF5&lt;W\xB2 &lt;7\\xD9c\xD0}|\xA7z-\xDFٽVi\xFF\xD5\xF8\xB4O\xF5Z\xBEϹ\xF5\xAB\xB4\xDC\xE0s\xA5Ϭ((\xFD\xDC9\xEC\xB2tC2\x95_\x9E^\xC1\x81Na        \xFA&gt;g\xDFo2p\x83O\xAB]DY\xB3\xA0\xBB\xBBHy\x80\xDE\xCC\xEE\xA05\xA8\xE8\x86\xF6\xF2ڄ\xF2. jpF\xD0\xF8i\xA8\xAA\x97P\xAF]DU/\xA0\xA2\xB1o\x9B\xB3\xBFl\xCB+&gt;e\xE8\xCAtW5ʰN\xAD\xAA\xBF|ZU\xA0V\xAD\xAA+W\xD2\xED\xD4`^5@+jP\x83yՀ\xB5J\xB1N\xBD`\xA5/\xBE\xEA\xA8\x95\xBC\xBAnϬ\xD68\xA0\xCB5\xE8/\xA02\x9E` )\xB6wN\xE1?h\xE2W\xD3k0+\xE3/\xA0\xA6\x92Q\xB6\x90&quot;\x90\x8B
 \x9A\x8E\xA0MGb?%c\xC7\\xAA\xF0L\xAF\xF3x\xB6\xAC\xEC\xB5\xCF\xDDIs\xD5wrلg\xF7Y\x88\xF3x:՞\xDDg .\xE0\xA9I\xAE\xABwr9\x87\xA7\xA8\xF6\\xBD\x93\xCBA&lt;}\x92\xEB؝\\xCE\xE1iT{\xF5{\xAE\xDE\xC9\xE5/\x9E\xCB \xED='ǝ\xC7\xD3r\xF44Ҳ\x83\xD3\xE26\xE3\xE9ӎ\xBA2%\xEE\x9E Z.\x9D9HWx\xE5܅\xD1St\xD4pc\xAE\xDEy&lt;Ww+\xF1\xD5\xDEy\xE0\xE9\x93\\xE5\xDDr\xE5\xF14\xAA=\xE5\xDD\xF2y\xE0\xA9N\xAEF\xB3\xA3\x95\xC7;\xAB\xF6\xFC\xA5\x8F\xBE?\xA5\x9F_\xA9\xDF\xE4Iۜ\xFB\xF5\xACv\xA3i\x94T\xD5mh\xE5\xF1t\xA99y:\xB1\xA5-\x8Dj\xAE&lt;4ճ͆VO\xD51\xB6B&lt;\xF5\xFD\x9D\xBFx\xFA$W\xA7\xFE\xCEO&lt;\x8DjO\xA7\xFE\xCE_&lt;\xA7\x92Ȭ\x80\xDAJ\x9E&gt;b\xF8&gt;\xE7֯B\xAFtb+1Q\xABp\xE44\xEA\xEF\xFC9\xE5B\xA9\xC4,\xA8f\x89\xB5c\x97(%o\x998ΒI\xE9h\x9E=rn\x9Ej;\x88g\xC7nq\xEFLݕ\xA2\xE8\xD08\x87g\xCB^k7\x9Ec\xB5g;\x9E\xEA\xE4\xBAp\xD5\xD19&lt;\xE5\xB5\xE7\xC2UG\xF14J\xB7\xFA\xE1\xD9ݭ\x9C8\x8Dw\xA6[Q\xB6B\xDE&lt;\x9B[\xD1@𜪽\x8A\xF1*\xEEX\xCA\xC3s\xEE\xDC\xD6n&lt;E\xA3W\x
 CE1W^\xB9\xB5\xF7߁\xA7\xCA{\xE2\xB9\xEA=kυf\xFE̩Pyx\xE5yOљ\x9AMx\xAAGυ\x8B\xA2\xCE\xE1\xD9\xDC-ۃ\xE7X\xB7l;\x9EF\xC9u\xBE[\xB6O\xA7\xDAs\xAA\xA1r\xCF\xE6\x96@\xFA\x89\xE7\xE6\x90\xDDx\xEE^        
+Our]\x98r\xCF\xE9 U\xBEm\xC3Oo;\xEFYy\xCD\xD04J\xAA \xA7\xDF6\xE3\xE9Rs\xF2tbK\xFF
+.\xC8*\ͭ\xFE\xF4'&lt;7\xBA\x94J\xE3\xB9ۥ\x82\xA7:\xB9\xAE^˰Oy\xED\xB9z-\xC3v&lt;\x8D\x92\xAB\xE8\xEC,&lt;W\xCF\xCE\~\xEE\x9E\xCDx\xAAO\xBD]~\xAC\xA2\xF3\xA3\xA7SrU\xCFJ\xF9\xFBPO\x8DjO}CUi&lt;E\xD3&gt;.?\xB1թ=W\xA3\xE9\xEE\xF2\xF0M\xD8*\xBA\xEF\xD6\xEE\xD1\xD3\xE8\x98\xEB\xC2\xD2}\xE7FO#&lt;-\xB5\xAC\xBE\x99\xC4{:\xEE\xB9Z\x8AE\xA7嬕\xBDĬ\xE2\x97ۖw{\xE6\xDF\xE6\xF649E\xAB\xFF\x93\xEBN\xFD2j5W\xBF\xC2s\xFExk\x9EF\xC9u\xB5S\xB6{\xF4t\xC2\xD3h\xBA\x9A\xA5+~\xE3\x95]Ksa\xB5\xA3sxe\xC9ե\xB0\xF9\xA6\xAF\xF2V:\x967r\x8A\xAE\x82\xE7\xE7\xBC\xDE\xE9\xD6ro)\xD6\xF22\x84\xE5e\xCB\xCBjkyٞ\xB9\xA2\xECǭ,CXU\xB6mMٶ\xF5e۶\xE9\x90T\xCE\xCC\xFC\xC5\xF3\xF7@\xF6*\xF0\xC2\xFC        \x9B\xF7V}FΑ\xD3\xBBG\xCE\xE6Ӟ@F΅ÿM{\xACS\xAD\xA7\xDD{\xAC\x96Bqce\xA3-\xC9Ut\x8CU4#\xE0\xE0\xE8i\x84\xE7\xC2\xC2K\x9B\xF1\xB4\xDC5\xCA9iTq@\xF3\xA1\x9D\xF3\x91W\xBA\xA0):\xA7P4\x87gS+\xE0\xD4D\x85\x83gdN%\xF7̅\x81\x8A\xEF\xDCStnqxn&amp;7&lt;+\xBC\xEFG\x9E{M\xB2\x96\xCA[P\xF7Z
 \xE5R)\xAF\xEE*\xEC\x90u\xA9;\xC7\xD9\xF2\xD0\xFE\xE7\xEE4:\xEDQt\x87\xBC=xZ\x8E^93\x9F:        E\xF9Y\xD9&lt;-{\xBC\x8A\xF1\xCA=]\x9C\xA7h\xEF&lt;FN5\x9EF\xA7&gt;\xE7\xB1\xD7\xEA\xD8\xABX\x93\xBFͻj\xE7UⲊ.x\xCA\xF8rŢ\xCFDY\xC5xz\x8E\x9E\x9A=\xF7\xCCjF\x8Df\xA4\xC1sxV\xA0tIC\xE3\xD3h\x9A-_8\xC7\xC8\xE9sĨ8\xB1~\xEE\xBA$օ&gt;\xCF\xDF\xC4j\xFE\x800E\x97\xF4\xCE\xCF̓Y xz&amp;W\xA3)\xEE\xCAJEU\x97\xACh\xA2\xB6\xF2b\xD1\xE9\xF2J\x85\xC9\xD5H,\x8A\x96 \xDAs\xBC\xD5r\xCFu\xB5\xF6钕7S\x8A\xA6ϣ\xF64:\xE6V\x88\xA7\xA5\x96]\x9D\xBC\xB0\xA9\xD5g\xF4\xFEy\xCF=:4nL\xFC\x981G\x87\x8E\xF1\x8C         9}򟰰CMC5+ O\x83\xF4X@\xC6Bcӂ\xD6\x9Av\xB8\x9E\xE7\xE4\xF6C\xD16\xF5\x84\xFE?\xB0`x\x9Cc```d\x82\xCB&quot;\xEA\xF9`Z\xFEU\x8C;$7x\x9C\xED\xC3        \xB0\xC3\xFB\xF74\x86\xF6p\x83u\x92^\xFEZ\x86^\xD7
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsimportedmathmlinhtml5mathmlrelationscssstylingmathvarianttransforms1expectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1-expected.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1-expected.html                                (rev 0)
+++ trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1-expected.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,574 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;meta charset=&quot;utf-8&quot;/&gt;
+&lt;title&gt;mathvariant transforms (reference)&lt;/title&gt;
+&lt;style&gt;
+  @font-face {
+    font-family: TestFont;
+    src: url(&quot;../../../fonts/math/mathvariant-transforms.woff&quot;);
+  }
+  body &gt; span:nth-child(2n) { color: green; }
+  body &gt; span:nth-child(2n+1) { color: blue; }
+  span {
+    /* Ensure that all the span take the same space */
+    display: inline-block;
+    width: 20px;
+    height: 20px;
+    margin: 1px;
+    background: #faa;
+  }
+  mtext {
+    font-family: TestFont;
+    /* The assertion in mathvariant-transform.py ensures that
+       rectangleWidth &gt; 100 * 10 / 1000 = 1px. */
+    font-size: 10px;
+  }
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝝯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℂ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℍ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℕ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℙ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℚ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℝ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℤ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝕫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1-expected.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsimportedmathmlinhtml5mathmlrelationscssstylingmathvarianttransforms1html"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1.html                                (rev 0)
+++ trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,575 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;meta charset=&quot;utf-8&quot;/&gt;
+&lt;title&gt;mathvariant transforms&lt;/title&gt;
+&lt;style&gt;
+  @font-face {
+    font-family: TestFont;
+    src: url(&quot;../../../fonts/math/mathvariant-transforms.woff&quot;);
+  }
+  body &gt; span:nth-child(2n) { color: green; }
+  body &gt; span:nth-child(2n+1) { color: blue; }
+  span {
+    /* Ensure that all the span take the same space */
+    display: inline-block;
+    width: 20px;
+    height: 20px;
+    margin: 1px;
+    background: #faa;
+  }
+  mtext {
+    font-family: TestFont;
+    /* The assertion in mathvariant-transform.py ensures that
+       rectangleWidth &gt; 100 * 10 / 1000 = 1px. */
+    font-size: 10px;
+  }
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;0&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;1&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;2&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;3&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;4&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;5&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;6&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;7&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;8&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;9&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ς&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ϑ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ϕ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ϖ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;Ϝ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ϝ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ϰ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ϱ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ϴ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;ϵ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;∂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold&quot;&gt;∇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-fraktur&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;Ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ς&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ϑ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ϕ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ϖ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ϰ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ϱ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ϴ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;ϵ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;∂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-italic&quot;&gt;∇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;0&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;1&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;2&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;3&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;4&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;5&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;6&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;7&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;8&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;9&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;Ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ς&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ϑ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ϕ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ϖ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ϰ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ϱ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ϴ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;ϵ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;∂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-sans-serif&quot;&gt;∇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;bold-script&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;0&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;1&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;2&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;3&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;4&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;5&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;6&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;7&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;8&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;9&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ب&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ت&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ث&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ج&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ح&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;خ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;د&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ذ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ر&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ز&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;س&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ش&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ص&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ض&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ط&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ظ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ع&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;غ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ف&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ق&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ل&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;م&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ن&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;و&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;double-struck&quot;&gt;ي&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+  &lt;/math&gt;&lt;/span&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsimportedmathmlinhtml5mathmlrelationscssstylingmathvarianttransforms2expectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2-expected.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2-expected.html                                (rev 0)
+++ trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2-expected.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,618 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;meta charset=&quot;utf-8&quot;/&gt;
+&lt;title&gt;mathvariant transforms (reference)&lt;/title&gt;
+&lt;style&gt;
+  @font-face {
+    font-family: TestFont;
+    src: url(&quot;../../../fonts/math/mathvariant-transforms.woff&quot;);
+  }
+  body &gt; span:nth-child(2n) { color: green; }
+  body &gt; span:nth-child(2n+1) { color: blue; }
+  span {
+    /* Ensure that all the span take the same space */
+    display: inline-block;
+    width: 20px;
+    height: 20px;
+    margin: 1px;
+    background: #faa;
+  }
+  mtext {
+    font-family: TestFont;
+    /* The assertion in mathvariant-transform.py ensures that
+       rectangleWidth &gt; 100 * 10 / 1000 = 1px. */
+    font-size: 10px;
+  }
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℭ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℌ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℑ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℜ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℨ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝔷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞸩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝐿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℎ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝑧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝜕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝛻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞺉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝚣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝖿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝗓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝙯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟄&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝟃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝞩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘐&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘓&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘕&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘖&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘘&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘚&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘠&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘣&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝘻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒜&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℬ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒞&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℰ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℱ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℋ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℐ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒥&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒦&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℒ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℳ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒫&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℛ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒳&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒸&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℯ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℊ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒽&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝒿&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓀&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓁&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓃&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;ℴ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓅&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓆&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓈&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓊&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓌&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𝓏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹡&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹵&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹶&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹢&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹧&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹷&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹮&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹴&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹱&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹹&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹨&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹺&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹯&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹻&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹰&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹲&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹪&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹬&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹭&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹤&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹩&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹼&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹾&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹗&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹎&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹔&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹑&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹙&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹏&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹛&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹒&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹋&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹍&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹉&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹟&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext&gt;𞹝&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2-expected.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsimportedmathmlinhtml5mathmlrelationscssstylingmathvarianttransforms2html"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2.html                                (rev 0)
+++ trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,618 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;meta charset=&quot;utf-8&quot;/&gt;
+&lt;title&gt;mathvariant transforms&lt;/title&gt;
+&lt;style&gt;
+  @font-face {
+    font-family: TestFont;
+    src: url(&quot;../../../fonts/math/mathvariant-transforms.woff&quot;);
+  }
+  body &gt; span:nth-child(2n) { color: green; }
+  body &gt; span:nth-child(2n+1) { color: blue; }
+  span {
+    /* Ensure that all the span take the same space */
+    display: inline-block;
+    width: 20px;
+    height: 20px;
+    margin: 1px;
+    background: #faa;
+  }
+  mtext {
+    font-family: TestFont;
+    /* The assertion in mathvariant-transform.py ensures that
+       rectangleWidth &gt; 100 * 10 / 1000 = 1px. */
+    font-size: 10px;
+  }
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;fraktur&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ب&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ت&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ث&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ج&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ح&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;خ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;س&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ش&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ص&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ض&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ع&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;غ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ف&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ق&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ك&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ل&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;م&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ن&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ه&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;initial&quot;&gt;ي&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ı&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ȷ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;Ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ς&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ϑ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ϕ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ϖ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ϰ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ϱ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ϴ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;ϵ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;∂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;italic&quot;&gt;∇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ا&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ب&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ت&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ث&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ج&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ح&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;خ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;د&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ذ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ر&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ز&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;س&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ش&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ص&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ض&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ط&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ظ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ع&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;غ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ف&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ق&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ل&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;م&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ن&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ه&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;و&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;looped&quot;&gt;ي&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;0&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;1&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;2&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;3&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;4&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;5&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;6&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;7&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;8&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;9&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;monospace&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;0&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;1&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;2&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;3&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;4&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;5&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;6&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;7&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;8&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;9&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;Ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;α&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;β&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;γ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;δ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ε&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ζ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;η&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;θ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ι&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;κ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;λ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;μ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ν&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ξ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ο&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;π&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ρ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ς&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;σ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;τ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;υ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;φ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;χ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ψ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ω&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ϑ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ϕ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ϖ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ϰ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ϱ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ϴ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;ϵ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;∂&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-bold-italic&quot;&gt;∇&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;sans-serif-italic&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;A&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;B&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;C&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;D&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;E&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;F&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;G&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;H&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;I&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;J&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;K&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;L&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;M&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;N&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;O&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;P&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;Q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;R&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;S&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;T&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;U&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;V&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;W&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;X&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;Y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;Z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;a&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;b&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;c&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;d&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;e&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;f&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;g&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;h&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;i&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;j&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;k&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;l&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;m&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;n&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;o&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;p&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;q&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;r&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;s&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;t&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;u&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;v&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;w&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;x&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;y&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;script&quot;&gt;z&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ب&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ت&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ث&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ج&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ح&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;خ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;س&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ش&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ص&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ض&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ط&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ظ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ع&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;غ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ف&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ق&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ك&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;م&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ن&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ه&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ي&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ٮ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;stretched&quot;&gt;ڡ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ج&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ح&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;خ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;س&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ش&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ص&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ض&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ع&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;غ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ق&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ل&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ن&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ي&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ٯ&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;span&gt;&lt;math&gt;&lt;mtext mathvariant=&quot;tailed&quot;&gt;ں&lt;/mtext&gt;&lt;/math&gt;&lt;/span&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-2.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsmathmlpresentationattributesmathvariantexpectedhtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/mathml/presentation/attributes-mathvariant-expected.html (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/mathml/presentation/attributes-mathvariant-expected.html        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/LayoutTests/mathml/presentation/attributes-mathvariant-expected.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -11,26 +11,24 @@
</span><span class="cx">          corresponding character from the Mathematical Alphanumeric Symbols
</span><span class="cx">          Unicode block (&quot;U+1D400 MATHEMATICAL BOLD CAPITAL&quot;,
</span><span class="cx">          &quot;U+1D434 MATHEMATICAL ITALIC CAPITAL A&quot; and
</span><del>-         &quot;U+1D468 MATHEMATICAL BOLD ITALIC CAPITAL A&quot;) but the WebKit
-         implementation relies on CSS style instead, except for implicit
-         mathvariant italic on single-char mi. See also bug 108778.
</del><ins>+         &quot;U+1D468 MATHEMATICAL BOLD ITALIC CAPITAL A&quot;).
</ins><span class="cx">       --&gt;
</span><span class="cx">     &lt;div&gt;
</span><span class="cx">       &lt;!-- FIXME: we add new lines to workaround a width/spacing bug. --&gt;
</span><span class="cx">       &lt;math&gt;
</span><del>-        &lt;mtext style=&quot;font-style: normal;&quot;&gt;A&lt;/mtext&gt;
</del><ins>+        &lt;mtext&gt;A&lt;/mtext&gt;
</ins><span class="cx">       &lt;/math&gt;&lt;br/&gt;
</span><span class="cx">       &lt;math&gt;
</span><del>-        &lt;mtext style=&quot;font-style: normal;&quot;&gt;𝐴&lt;/mtext&gt;
</del><ins>+        &lt;mtext&gt;𝐴&lt;/mtext&gt;
</ins><span class="cx">       &lt;/math&gt;&lt;br/&gt;
</span><span class="cx">       &lt;math&gt;
</span><del>-        &lt;mtext style=&quot;font-style: italic;&quot;&gt;A&lt;/mtext&gt;
</del><ins>+        &lt;mtext&gt;𝐴&lt;/mtext&gt;
</ins><span class="cx">       &lt;/math&gt;&lt;br/&gt;
</span><span class="cx">       &lt;math&gt;
</span><del>-        &lt;mtext style=&quot;font-weight: bold;&quot;&gt;A&lt;/mtext&gt;
</del><ins>+        &lt;mtext&gt;𝐀&lt;/mtext&gt;
</ins><span class="cx">       &lt;/math&gt;&lt;br/&gt;
</span><span class="cx">       &lt;math&gt;
</span><del>-        &lt;mtext style=&quot;font-weight: bold; font-style: italic;&quot;&gt;A&lt;/mtext&gt;
</del><ins>+        &lt;mtext&gt;𝑨&lt;/mtext&gt;
</ins><span class="cx">       &lt;/math&gt;
</span><span class="cx">     &lt;/div&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkLayoutTestsmathmlpresentationmathvariantdynamicexpectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/mathml/presentation/mathvariant-dynamic-expected.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/mathml/presentation/mathvariant-dynamic-expected.html                                (rev 0)
+++ trunk/LayoutTests/mathml/presentation/mathvariant-dynamic-expected.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,48 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html class=&quot;reftest-wait&quot;&gt;
+  &lt;head&gt;
+    &lt;title&gt;mathvariant dynamic&lt;/title&gt;
+    &lt;meta charset=&quot;utf-8&quot;/&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+
+    &lt;!-- Modifying mathvariant on the &lt;math&gt; element --&gt;
+    &lt;math id=&quot;m1&quot; mathvariant=&quot;script&quot;&gt;
+      &lt;mtext&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math id=&quot;m2&quot;&gt;
+      &lt;mtext&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math id=&quot;m3&quot; mathvariant=&quot;bold&quot;&gt;
+      &lt;mtext&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Modifying mathvariant on the &lt;mstyle&gt; element --&gt;
+    &lt;math&gt;
+      &lt;mstyle id=&quot;m4&quot; mathvariant=&quot;script&quot;&gt;
+        &lt;mtext&gt;A&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle id=&quot;m5&quot;&gt;
+        &lt;mtext&gt;A&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle id=&quot;m6&quot; mathvariant=&quot;bold&quot;&gt;
+        &lt;mtext&gt;A&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Modifying mathvariant on a token element --&gt;
+    &lt;math&gt;
+      &lt;mtext id=&quot;m7&quot; mathvariant=&quot;script&quot;&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mtext id=&quot;m8&quot;&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mtext id=&quot;m9&quot; mathvariant=&quot;bold&quot;&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;
+  &lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/mathml/presentation/mathvariant-dynamic-expected.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsmathmlpresentationmathvariantdynamichtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/mathml/presentation/mathvariant-dynamic.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/mathml/presentation/mathvariant-dynamic.html                                (rev 0)
+++ trunk/LayoutTests/mathml/presentation/mathvariant-dynamic.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,63 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html class=&quot;reftest-wait&quot;&gt;
+  &lt;head&gt;
+    &lt;title&gt;mathvariant dynamic&lt;/title&gt;
+    &lt;meta charset=&quot;utf-8&quot;/&gt;
+    &lt;script type=&quot;text/javascript&quot;&gt;
+      function doTest() {
+        document.getElementById(&quot;m1&quot;).setAttribute(&quot;mathvariant&quot;, &quot;script&quot;);
+        document.getElementById(&quot;m2&quot;).removeAttribute(&quot;mathvariant&quot;);
+        document.getElementById(&quot;m3&quot;).setAttribute(&quot;mathvariant&quot;, &quot;bold&quot;);
+        document.getElementById(&quot;m4&quot;).setAttribute(&quot;mathvariant&quot;, &quot;script&quot;);
+        document.getElementById(&quot;m5&quot;).removeAttribute(&quot;mathvariant&quot;);
+        document.getElementById(&quot;m6&quot;).setAttribute(&quot;mathvariant&quot;, &quot;bold&quot;);
+        document.getElementById(&quot;m7&quot;).setAttribute(&quot;mathvariant&quot;, &quot;script&quot;);
+        document.getElementById(&quot;m8&quot;).removeAttribute(&quot;mathvariant&quot;);
+        document.getElementById(&quot;m9&quot;).setAttribute(&quot;mathvariant&quot;, &quot;bold&quot;);
+        document.documentElement.removeAttribute(&quot;class&quot;);
+      }
+      window.addEventListener(&quot;load&quot;, doTest, false);
+    &lt;/script&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+
+    &lt;!-- Modifying mathvariant on the &lt;math&gt; element --&gt;
+    &lt;math id=&quot;m1&quot;&gt;
+      &lt;mtext&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math id=&quot;m2&quot; mathvariant=&quot;fraktur&quot;&gt;
+      &lt;mtext&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math id=&quot;m3&quot; mathvariant=&quot;double-struck&quot;&gt;
+      &lt;mtext&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Modifying mathvariant on the &lt;mstyle&gt; element --&gt;
+    &lt;math&gt;
+      &lt;mstyle id=&quot;m4&quot;&gt;
+        &lt;mtext&gt;A&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle id=&quot;m5&quot; mathvariant=&quot;fraktur&quot;&gt;
+        &lt;mtext&gt;A&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle id=&quot;m6&quot; mathvariant=&quot;double-struck&quot;&gt;
+        &lt;mtext&gt;A&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Modifying mathvariant on a token element --&gt;
+    &lt;math&gt;
+      &lt;mtext id=&quot;m7&quot;&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mtext id=&quot;m8&quot; mathvariant=&quot;fraktur&quot;&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mtext id=&quot;m9&quot; mathvariant=&quot;double-struck&quot;&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;
+  &lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/mathml/presentation/mathvariant-dynamic.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsmathmlpresentationmathvariantinheritanceexpectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/mathml/presentation/mathvariant-inheritance-expected.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/mathml/presentation/mathvariant-inheritance-expected.html                                (rev 0)
+++ trunk/LayoutTests/mathml/presentation/mathvariant-inheritance-expected.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,51 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+  &lt;head&gt;
+    &lt;title&gt;mathvariant inheritance&lt;/title&gt;
+    &lt;meta charset=&quot;utf-8&quot;/&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+
+    &lt;!-- Verify that fraktur is inherited on mtext. --&gt;
+    &lt;math&gt;
+      &lt;mtext&gt;𝔄&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle&gt;
+        &lt;mtext&gt;𝔄&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Verify that the value specified on the mtext overrides the inherited value. --&gt;
+    &lt;math&gt;
+      &lt;mtext&gt;𝒜&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle&gt;
+        &lt;mtext&gt;𝒜&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Verify that the inherited value replaces the implicit italic value of the mi. --&gt;
+    &lt;math&gt;
+      &lt;mi&gt;𝔄&lt;/mi&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle&gt;
+        &lt;mi&gt;𝔄&lt;/mi&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Test a chain of inheritance --&gt;
+    &lt;math&gt;
+      &lt;mtext&gt;𝔄&lt;/mtext&gt;
+      &lt;mstyle&gt;
+        &lt;mtext&gt;𝔸&lt;/mtext&gt;
+        &lt;mstyle&gt;
+          &lt;mtext&gt;𝒜&lt;/mtext&gt;
+        &lt;/mstyle&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;
+
+  &lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/mathml/presentation/mathvariant-inheritance-expected.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsmathmlpresentationmathvariantinheritancehtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/mathml/presentation/mathvariant-inheritance.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/mathml/presentation/mathvariant-inheritance.html                                (rev 0)
+++ trunk/LayoutTests/mathml/presentation/mathvariant-inheritance.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,51 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+  &lt;head&gt;
+    &lt;title&gt;mathvariant inheritance&lt;/title&gt;
+    &lt;meta charset=&quot;utf-8&quot;/&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+
+    &lt;!-- Verify that fraktur is inherited on mtext. --&gt;
+    &lt;math mathvariant=&quot;fraktur&quot;&gt;
+      &lt;mtext&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle mathvariant=&quot;fraktur&quot;&gt;
+        &lt;mtext&gt;A&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Verify that the value specified on the mtext overrides the inherited value. --&gt;
+    &lt;math mathvariant=&quot;fraktur&quot;&gt;
+      &lt;mtext mathvariant=&quot;script&quot;&gt;A&lt;/mtext&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle mathvariant=&quot;fraktur&quot;&gt;
+        &lt;mtext mathvariant=&quot;script&quot;&gt;A&lt;/mtext&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Verify that the inherited value replaces the implicit italic value of the mi. --&gt;
+    &lt;math mathvariant=&quot;fraktur&quot;&gt;
+      &lt;mi&gt;A&lt;/mi&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mstyle mathvariant=&quot;fraktur&quot;&gt;
+        &lt;mi&gt;A&lt;/mi&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;&lt;br/&gt;
+
+    &lt;!-- Test a chain of inheritance --&gt;
+    &lt;math mathvariant=&quot;fraktur&quot;&gt;
+      &lt;mtext&gt;A&lt;/mtext&gt;
+      &lt;mstyle mathvariant=&quot;double-struck&quot;&gt;
+        &lt;mtext&gt;A&lt;/mtext&gt;
+        &lt;mstyle mathvariant=&quot;script&quot;&gt;
+          &lt;mtext&gt;A&lt;/mtext&gt;
+        &lt;/mstyle&gt;
+      &lt;/mstyle&gt;
+    &lt;/math&gt;
+
+  &lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/mathml/presentation/mathvariant-inheritance.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsmathmlpresentationmathvarianttokensexpectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/mathml/presentation/mathvariant-tokens-expected.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/mathml/presentation/mathvariant-tokens-expected.html                                (rev 0)
+++ trunk/LayoutTests/mathml/presentation/mathvariant-tokens-expected.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,24 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+  &lt;head&gt;
+    &lt;title&gt;mathvariant on tokens&lt;/title&gt;
+    &lt;meta charset=&quot;utf-8&quot;/&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+
+    &lt;!-- Test mathvariant on various tokens --&gt;
+    &lt;math&gt;
+      &lt;mo lspace=&quot;0px&quot; rspace=&quot;0px&quot;&gt;𝕬&lt;/mo&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mi&gt;𝕬&lt;/mi&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;mn&gt;𝕬&lt;/mn&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math&gt;
+      &lt;ms&gt;𝕬&lt;/ms&gt;
+    &lt;/math&gt;
+
+  &lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/mathml/presentation/mathvariant-tokens-expected.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsmathmlpresentationmathvarianttokenshtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/mathml/presentation/mathvariant-tokens.html (0 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/mathml/presentation/mathvariant-tokens.html                                (rev 0)
+++ trunk/LayoutTests/mathml/presentation/mathvariant-tokens.html        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -0,0 +1,24 @@
</span><ins>+&lt;!doctype html&gt;
+&lt;html&gt;
+  &lt;head&gt;
+    &lt;title&gt;mathvariant on tokens&lt;/title&gt;
+    &lt;meta charset=&quot;utf-8&quot;/&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+
+    &lt;!-- Test mathvariant on various tokens --&gt;
+    &lt;math mathvariant=&quot;bold-fraktur&quot;&gt;
+      &lt;mo lspace=&quot;0px&quot; rspace=&quot;0px&quot;&gt;A&lt;/mo&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math mathvariant=&quot;bold-fraktur&quot;&gt;
+      &lt;mi&gt;A&lt;/mi&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math mathvariant=&quot;bold-fraktur&quot;&gt;
+      &lt;mn&gt;A&lt;/mn&gt;
+    &lt;/math&gt;&lt;br/&gt;
+    &lt;math mathvariant=&quot;bold-fraktur&quot;&gt;
+      &lt;ms&gt;A&lt;/ms&gt;
+    &lt;/math&gt;
+
+  &lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/LayoutTests/mathml/presentation/mathvariant-tokens.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkLayoutTestsplatformiossimulatorTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/TestExpectations (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/TestExpectations        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/LayoutTests/platform/ios-simulator/TestExpectations        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -674,7 +674,12 @@
</span><span class="cx"> # These reftests require a font with Mathematical Alphanumeric Symbols.
</span><span class="cx"> mathml/presentation/attributes-mathvariant.html [ Skip ]
</span><span class="cx"> mathml/presentation/tokenElements-mathvariant.html [ Skip ]
</span><ins>+mathml/presentation/mathvariant-inheritance.html [ Skip ]
+mathml/presentation/mathvariant-tokens.html [ Skip ]
</ins><span class="cx"> 
</span><ins>+# The web font loading &amp; relayout seems to be performed too late.
+imported/mathml-in-html5/mathml/relations/css-styling/mathvariant-transforms-1.html [ Pass ImageOnlyFailure ]
+
</ins><span class="cx"> # &lt;rdar://problem/19215305&gt; ASSERT(m_cgFont.get()) fails in FontPlatformData::ctFont()
</span><span class="cx"> svg/text/svg-fallback-font-crash.html
</span><span class="cx"> svg/css/font-face-variant-crash.html
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/ChangeLog        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -1,3 +1,61 @@
</span><ins>+2016-07-11  Frederic Wang  &lt;fwang@igalia.com&gt;
+
+        Add support for mathvariants that cannot be emulated via CSS.
+        https://bugs.webkit.org/show_bug.cgi?id=108778
+
+        Reviewed by Brent Fulgham.
+
+        Tests: mathml/mathml-in-html5/mathvariant-transforms-1.html
+               mathml/mathml-in-html5/mathvariant-transforms-2.html
+               mathml/presentation/mathvariant-inheritance.html
+               mathml/presentation/mathvariant-tokens.html
+
+        We remove the old code to emulate partial mathvariant support via CSS and add support
+        for all mathvariant values using the technique used for implicit italic on &lt;mi&gt; element.
+        We also rely on the MathMLStyle class introduced earlier to support custome MathML style
+        and manage inheritance of mathvariant values.
+        The function that tries and converts one base character into a transformed mathvariant
+        character is based on similar code from Gecko:
+        http://hg.mozilla.org/mozilla-central/file/tip/layout/generic/MathMLTextRunFactory.cpp
+        Note that we only support transform on token elements with a single character, which
+        should cover the most important use cases.
+
+        * css/mathml.css: Remove the CSS rules to emulate some mathvariant values.
+        (math[mathvariant=&quot;normal&quot;], mstyle[mathvariant=&quot;normal&quot;], mo[mathvariant=&quot;normal&quot;], mn[mathvariant=&quot;normal&quot;], mi[mathvariant=&quot;normal&quot;], mtext[mathvariant=&quot;normal&quot;], mspace[mathvariant=&quot;normal&quot;], ms[mathvariant=&quot;normal&quot;]): Deleted.
+        (math[mathvariant=&quot;bold&quot;], mstyle[mathvariant=&quot;bold&quot;], mo[mathvariant=&quot;bold&quot;], mn[mathvariant=&quot;bold&quot;], mi[mathvariant=&quot;bold&quot;], mtext[mathvariant=&quot;bold&quot;], mspace[mathvariant=&quot;bold&quot;], ms[mathvariant=&quot;bold&quot;]): Deleted.
+        (math[mathvariant=&quot;italic&quot;], mstyle[mathvariant=&quot;italic&quot;], mo[mathvariant=&quot;italic&quot;], mn[mathvariant=&quot;italic&quot;], mi[mathvariant=&quot;italic&quot;], mtext[mathvariant=&quot;italic&quot;], mspace[mathvariant=&quot;italic&quot;], ms[mathvariant=&quot;italic&quot;]): Deleted.
+        (math[mathvariant=&quot;bold-italic&quot;], mstyle[mathvariant=&quot;bold-italic&quot;], mo[mathvariant=&quot;bold-italic&quot;], mn[mathvariant=&quot;bold-italic&quot;], mi[mathvariant=&quot;bold-italic&quot;], mtext[mathvariant=&quot;bold-italic&quot;], mspace[mathvariant=&quot;bold-italic&quot;], ms[mathvariant=&quot;bold-italic&quot;]): Deleted.
+        * mathml/MathMLInlineContainerElement.cpp: We resolve mathml style when mathvariant changes.
+        (WebCore::MathMLInlineContainerElement::parseAttribute):
+        * mathml/MathMLMathElement.cpp: ditto.
+        (WebCore::MathMLMathElement::parseAttribute):
+        * mathml/MathMLTextElement.cpp: ditto.
+        (WebCore::MathMLTextElement::parseAttribute):
+        * rendering/mathml/MathMLStyle.cpp: Add mathvariant property to the MathML style.
+        (WebCore::MathMLStyle::MathMLStyle): Init mathvariant to none.
+        (WebCore::MathMLStyle::getMathMLStyle): Helper function to retrieve the MathML style on a renderer.
+        (WebCore::MathMLStyle::updateStyleIfNeeded): Take into account change of mathvariant.
+        (WebCore::MathMLStyle::parseMathVariant): Helper function to parse a mathvariant attribute.
+        (WebCore::MathMLStyle::resolveMathMLStyle): Take into account mathvariant value: it is None
+        by default, inherited and can be modified via an attribute on &lt;math&gt;, &lt;mstyle&gt; or token
+        elements. We also refactor a bit to share logic between displaystyle and mathvariant.
+        (WebCore::MathMLStyle::setDisplayStyle): Deleted.
+        * rendering/mathml/MathMLStyle.h: Add mathvariant members and update declarations.
+        * rendering/mathml/RenderMathMLOperator.cpp:
+        (WebCore::RenderMathMLOperator::updateTokenContent): Call the function from the parent class
+        to consider mathvariant on &lt;mo&gt;.
+        * rendering/mathml/RenderMathMLToken.cpp:
+        We implement a mathVariant function to transform a base character into its transformed mathvariant:
+        - There are some regularity that allows to perform this via simple linear transforms.
+        - However, there are also many exceptions and we rely on some sorted MathVariantMapping
+        tables to handle these cases.
+        (WebCore::ExtractKey): Helper function to perform binary searches on MathVariant tables.
+        (WebCore::MathVariantMappingSearch): ditto.
+        (WebCore::mathVariant): New function to perform mathvariant transforms.
+        (WebCore::RenderMathMLToken::updateMathVariantGlyph): Use the mathVariant function to
+        perform all transformations, not just the italic one.
+        (WebCore::transformToItalic): Deleted. Replaced with the more general mathVariant function.
+
</ins><span class="cx"> 2016-07-11  Jeremy Jones  &lt;jeremyj@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Pause small video elements when returning to inline.
</span></span></pre></div>
<a id="trunkSourceWebCorecssmathmlcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/mathml.css (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/mathml.css        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/css/mathml.css        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -132,26 +132,6 @@
</span><span class="cx">     -webkit-margin-start: 0.14em; /* This is larger than 0.1em because the child's font-size is smaller than the &lt;msubsup&gt;'s. */
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-math[mathvariant=&quot;normal&quot;], mstyle[mathvariant=&quot;normal&quot;], mo[mathvariant=&quot;normal&quot;], mn[mathvariant=&quot;normal&quot;], mi[mathvariant=&quot;normal&quot;], mtext[mathvariant=&quot;normal&quot;], mspace[mathvariant=&quot;normal&quot;], ms[mathvariant=&quot;normal&quot;] {
-    font-style: normal;
-    font-weight: normal;
-}
-
-math[mathvariant=&quot;bold&quot;], mstyle[mathvariant=&quot;bold&quot;], mo[mathvariant=&quot;bold&quot;], mn[mathvariant=&quot;bold&quot;], mi[mathvariant=&quot;bold&quot;], mtext[mathvariant=&quot;bold&quot;], mspace[mathvariant=&quot;bold&quot;], ms[mathvariant=&quot;bold&quot;] {
-    font-style: normal;
-    font-weight: bold;
-}
-
-math[mathvariant=&quot;italic&quot;], mstyle[mathvariant=&quot;italic&quot;], mo[mathvariant=&quot;italic&quot;], mn[mathvariant=&quot;italic&quot;], mi[mathvariant=&quot;italic&quot;], mtext[mathvariant=&quot;italic&quot;], mspace[mathvariant=&quot;italic&quot;], ms[mathvariant=&quot;italic&quot;] {
-    font-style: italic;
-    font-weight: normal;
-}
-
-math[mathvariant=&quot;bold-italic&quot;], mstyle[mathvariant=&quot;bold-italic&quot;], mo[mathvariant=&quot;bold-italic&quot;], mn[mathvariant=&quot;bold-italic&quot;], mi[mathvariant=&quot;bold-italic&quot;], mtext[mathvariant=&quot;bold-italic&quot;], mspace[mathvariant=&quot;bold-italic&quot;], ms[mathvariant=&quot;bold-italic&quot;] {
-    font-weight: bold;
-    font-style: italic;
-}
-
</del><span class="cx"> math[mathsize=&quot;small&quot;], mstyle[mathsize=&quot;small&quot;], mo[mathsize=&quot;small&quot;], mn[mathsize=&quot;small&quot;], mi[mathsize=&quot;small&quot;], mtext[mathsize=&quot;small&quot;], mspace[mathsize=&quot;small&quot;], ms[mathsize=&quot;small&quot;] {
</span><span class="cx">     font-size: 0.75em;
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLInlineContainerElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -88,7 +88,9 @@
</span><span class="cx"> 
</span><span class="cx"> void MathMLInlineContainerElement::parseAttribute(const QualifiedName&amp; name, const AtomicString&amp; value)
</span><span class="cx"> {
</span><del>-    if (name == displaystyleAttr &amp;&amp; (hasTagName(mstyleTag) || hasTagName(mtableTag)) &amp;&amp; renderer())
</del><ins>+    bool displayStyleAttribute = (name == displaystyleAttr &amp;&amp; (hasTagName(mstyleTag) || hasTagName(mtableTag)));
+    bool mathVariantAttribute = (name == mathvariantAttr &amp;&amp; (hasTagName(mathTag) || hasTagName(mstyleTag)));
+    if ((displayStyleAttribute || mathVariantAttribute) &amp;&amp; renderer())
</ins><span class="cx">         MathMLStyle::resolveMathMLStyleTree(renderer());
</span><span class="cx"> 
</span><span class="cx">     MathMLElement::parseAttribute(name, value);
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLMathElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLMathElement.cpp (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLMathElement.cpp        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/mathml/MathMLMathElement.cpp        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -55,7 +55,7 @@
</span><span class="cx"> 
</span><span class="cx"> void MathMLMathElement::parseAttribute(const QualifiedName&amp; name, const AtomicString&amp; value)
</span><span class="cx"> {
</span><del>-    if ((name == displaystyleAttr || name == displayAttr) &amp;&amp; hasTagName(mathTag) &amp;&amp; renderer())
</del><ins>+    if ((name == displaystyleAttr || name == displayAttr || name == mathvariantAttr) &amp;&amp; renderer())
</ins><span class="cx">         MathMLStyle::resolveMathMLStyleTree(renderer());
</span><span class="cx"> 
</span><span class="cx">     MathMLInlineContainerElement::parseAttribute(name, value);
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLTextElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLTextElement.cpp (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLTextElement.cpp        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/mathml/MathMLTextElement.cpp        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -72,6 +72,9 @@
</span><span class="cx">         return;
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    if (name == mathvariantAttr &amp;&amp; renderer())
+        MathMLStyle::resolveMathMLStyleTree(renderer());
+
</ins><span class="cx">     MathMLElement::parseAttribute(name, value);
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingmathmlMathMLStylecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/mathml/MathMLStyle.cpp (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/mathml/MathMLStyle.cpp        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/rendering/mathml/MathMLStyle.cpp        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -47,16 +47,17 @@
</span><span class="cx">     return adoptRef(*new MathMLStyle());
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void MathMLStyle::setDisplayStyle(RenderObject* renderer)
</del><ins>+const MathMLStyle* MathMLStyle::getMathMLStyle(RenderObject* renderer)
</ins><span class="cx"> {
</span><del>-    if (!renderer)
-        return;
</del><ins>+    if (renderer) {
+        // FIXME: Should we make RenderMathMLTable derive from RenderMathMLBlock in order to simplify this?
+        if (is&lt;RenderMathMLTable&gt;(renderer))
+            return downcast&lt;RenderMathMLTable&gt;(renderer)-&gt;mathMLStyle();
+        if (is&lt;RenderMathMLBlock&gt;(renderer))
+            return downcast&lt;RenderMathMLBlock&gt;(renderer)-&gt;mathMLStyle();
+    }
</ins><span class="cx"> 
</span><del>-    // FIXME: Should we make RenderMathMLTable derive from RenderMathMLBlock in order to simplify this?
-    if (is&lt;RenderMathMLTable&gt;(renderer))
-        m_displayStyle = downcast&lt;RenderMathMLTable&gt;(renderer)-&gt;mathMLStyle()-&gt;displayStyle();
-    else if (is&lt;RenderMathMLBlock&gt;(renderer))
-        m_displayStyle = downcast&lt;RenderMathMLBlock&gt;(renderer)-&gt;mathMLStyle()-&gt;displayStyle();
</del><ins>+    return nullptr;
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void MathMLStyle::resolveMathMLStyleTree(RenderObject* renderer)
</span><span class="lines">@@ -80,7 +81,7 @@
</span><span class="cx">     return parentRenderer;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void MathMLStyle::updateStyleIfNeeded(RenderObject* renderer, bool oldDisplayStyle)
</del><ins>+void MathMLStyle::updateStyleIfNeeded(RenderObject* renderer, bool oldDisplayStyle, MathVariant oldMathVariant)
</ins><span class="cx"> {
</span><span class="cx">     if (oldDisplayStyle != m_displayStyle) {
</span><span class="cx">         renderer-&gt;setNeedsLayoutAndPrefWidthsRecalc();
</span><span class="lines">@@ -91,18 +92,73 @@
</span><span class="cx">         else if (is&lt;RenderMathMLFraction&gt;(renderer))
</span><span class="cx">             downcast&lt;RenderMathMLFraction&gt;(renderer)-&gt;updateFromElement();
</span><span class="cx">     }
</span><ins>+    if (oldMathVariant != m_mathVariant) {
+        if (is&lt;RenderMathMLToken&gt;(renderer))
+            downcast&lt;RenderMathMLToken&gt;(renderer)-&gt;updateTokenContent();
+    }
</ins><span class="cx"> }
</span><span class="cx"> 
</span><ins>+MathMLStyle::MathVariant MathMLStyle::parseMathVariant(const AtomicString&amp; attributeValue)
+{
+    if (attributeValue == &quot;normal&quot;)
+        return Normal;
+    if (attributeValue == &quot;bold&quot;)
+        return Bold;
+    if (attributeValue == &quot;italic&quot;)
+        return Italic;
+    if (attributeValue == &quot;bold-italic&quot;)
+        return BoldItalic;
+    if (attributeValue == &quot;double-struck&quot;)
+        return DoubleStruck;
+    if (attributeValue == &quot;bold-fraktur&quot;)
+        return BoldFraktur;
+    if (attributeValue == &quot;script&quot;)
+        return Script;
+    if (attributeValue == &quot;bold-script&quot;)
+        return BoldScript;
+    if (attributeValue == &quot;fraktur&quot;)
+        return Fraktur;
+    if (attributeValue == &quot;sans-serif&quot;)
+        return SansSerif;
+    if (attributeValue == &quot;bold-sans-serif&quot;)
+        return BoldSansSerif;
+    if (attributeValue == &quot;sans-serif-italic&quot;)
+        return SansSerifItalic;
+    if (attributeValue == &quot;sans-serif-bold-italic&quot;)
+        return SansSerifBoldItalic;
+    if (attributeValue == &quot;monospace&quot;)
+        return Monospace;
+    if (attributeValue == &quot;initial&quot;)
+        return Initial;
+    if (attributeValue == &quot;tailed&quot;)
+        return Tailed;
+    if (attributeValue == &quot;looped&quot;)
+        return Looped;
+    if (attributeValue == &quot;stretched&quot;)
+        return Stretched;
+    return None;
+}
+
</ins><span class="cx"> void MathMLStyle::resolveMathMLStyle(RenderObject* renderer)
</span><span class="cx"> {
</span><span class="cx">     ASSERT(renderer);
</span><span class="cx"> 
</span><span class="cx">     bool oldDisplayStyle = m_displayStyle;
</span><ins>+    MathVariant oldMathVariant = m_mathVariant;
+    auto* parentRenderer = getMathMLParentNode(renderer);
+    const MathMLStyle* parentStyle = getMathMLStyle(parentRenderer);
</ins><span class="cx"> 
</span><del>-    // For anonymous renderers, we just inherit the style from our parent.
</del><ins>+    // By default, we just inherit the style from our parent.
+    m_displayStyle = false;
+    m_mathVariant = None;
+    if (parentStyle) {
+        setDisplayStyle(parentStyle-&gt;displayStyle());
+        setMathVariant(parentStyle-&gt;mathVariant());
+    }
+
+    // Early return for anonymous renderers.
</ins><span class="cx">     if (renderer-&gt;isAnonymous()) {
</span><del>-        setDisplayStyle(getMathMLParentNode(renderer));
-        updateStyleIfNeeded(renderer, oldDisplayStyle);
</del><ins>+        updateStyleIfNeeded(renderer, oldDisplayStyle, oldMathVariant);
</ins><span class="cx">         return;
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="lines">@@ -110,8 +166,7 @@
</span><span class="cx">         m_displayStyle = downcast&lt;RenderElement&gt;(renderer)-&gt;element()-&gt;fastGetAttribute(displayAttr) == &quot;block&quot;; // The default displaystyle of the &lt;math&gt; element depends on its display attribute.
</span><span class="cx">     else if (is&lt;RenderMathMLTable&gt;(renderer))
</span><span class="cx">         m_displayStyle = false; // The default displaystyle of &lt;mtable&gt; is false.
</span><del>-    else if (auto* parentRenderer = getMathMLParentNode(renderer)) {
-        setDisplayStyle(parentRenderer); // The default displaystyle is inherited from our parent.
</del><ins>+    else if (parentRenderer) {
</ins><span class="cx">         if (is&lt;RenderMathMLFraction&gt;(parentRenderer))
</span><span class="cx">             m_displayStyle = false; // &lt;mfrac&gt; sets displaystyle to false within its numerator and denominator.
</span><span class="cx">         else if ((is&lt;RenderMathMLRoot&gt;(parentRenderer) &amp;&amp; !parentRenderer-&gt;isRenderMathMLSquareRoot()) || is&lt;RenderMathMLScripts&gt;(parentRenderer) || is&lt;RenderMathMLUnderOver&gt;(parentRenderer)) {
</span><span class="lines">@@ -134,7 +189,14 @@
</span><span class="cx">             m_displayStyle = false;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    updateStyleIfNeeded(renderer, oldDisplayStyle);
</del><ins>+    // The mathvariant attribute on the &lt;math&gt;, &lt;mstyle&gt; or token elements overrides the default behavior.
+    if (is&lt;RenderMathMLMath&gt;(renderer) || is&lt;RenderMathMLToken&gt;(renderer) || tagName == mstyleTag) {
+        MathVariant mathvariant = parseMathVariant(element-&gt;fastGetAttribute(mathvariantAttr));
+        if (mathvariant != None)
+            m_mathVariant = mathvariant;
+    }
+
+    updateStyleIfNeeded(renderer, oldDisplayStyle, oldMathVariant);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingmathmlMathMLStyleh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/mathml/MathMLStyle.h (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/mathml/MathMLStyle.h        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/rendering/mathml/MathMLStyle.h        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -42,16 +42,45 @@
</span><span class="cx">     bool displayStyle() const { return m_displayStyle; }
</span><span class="cx">     void setDisplayStyle(bool displayStyle) { m_displayStyle = displayStyle; }
</span><span class="cx"> 
</span><ins>+    // These are the mathvariant values from the MathML recommendation.
+    // The special value none means that no explicit mathvariant value has been specified.
+    // Note that the numeral values are important for the computation performed in the mathVariant function of RenderMathMLToken, do not change them!
+    enum MathVariant {
+        None = 0,
+        Normal = 1,
+        Bold = 2,
+        Italic = 3,
+        BoldItalic = 4,
+        Script = 5,
+        BoldScript = 6,
+        Fraktur = 7,
+        DoubleStruck = 8,
+        BoldFraktur = 9,
+        SansSerif = 10,
+        BoldSansSerif = 11,
+        SansSerifItalic = 12,
+        SansSerifBoldItalic = 13,
+        Monospace = 14,
+        Initial = 15,
+        Tailed = 16,
+        Looped = 17,
+        Stretched = 18
+    };
+    MathVariant mathVariant() const { return m_mathVariant; }
+    void setMathVariant(MathVariant mathvariant) { m_mathVariant = mathvariant; }
+
</ins><span class="cx">     void resolveMathMLStyle(RenderObject*);
</span><span class="cx">     static void resolveMathMLStyleTree(RenderObject*);
</span><span class="cx"> 
</span><span class="cx"> private:
</span><span class="cx">     bool isDisplayStyleAlwaysFalse(RenderObject*);
</span><del>-    void setDisplayStyle(RenderObject*);
</del><ins>+    const MathMLStyle* getMathMLStyle(RenderObject* renderer);
</ins><span class="cx">     RenderObject* getMathMLParentNode(RenderObject*);
</span><del>-    void updateStyleIfNeeded(RenderObject*, bool);
</del><ins>+    void updateStyleIfNeeded(RenderObject*, bool, MathVariant);
+    MathVariant parseMathVariant(const AtomicString&amp; attributeValue);
</ins><span class="cx"> 
</span><del>-    bool m_displayStyle = false;
</del><ins>+    bool m_displayStyle { false };
+    MathVariant m_mathVariant { None };
</ins><span class="cx"> };
</span><span class="cx"> 
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingmathmlRenderMathMLOperatorcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -325,6 +325,7 @@
</span><span class="cx"> void RenderMathMLOperator::updateTokenContent()
</span><span class="cx"> {
</span><span class="cx">     ASSERT(!isAnonymous());
</span><ins>+    RenderMathMLToken::updateTokenContent();
</ins><span class="cx">     rebuildTokenContent(element().textContent());
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingmathmlRenderMathMLTokencpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLToken.cpp (203071 => 203072)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/mathml/RenderMathMLToken.cpp        2016-07-11 18:31:50 UTC (rev 203071)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLToken.cpp        2016-07-11 18:38:36 UTC (rev 203072)
</span><span class="lines">@@ -58,33 +58,435 @@
</span><span class="cx">     setMathVariantGlyphDirty();
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-static bool transformToItalic(UChar32&amp; codePoint)
</del><ins>+// Entries for the mathvariant lookup tables.
+// 'key' represents the Unicode character to be transformed and is used for searching the tables.
+// 'replacement' represents the mapped mathvariant Unicode character.
+struct MathVariantMapping {
+    uint32_t key;
+    uint32_t replacement;
+};
+static inline UChar32 ExtractKey(const MathVariantMapping* entry) { return entry-&gt;key; }
+static UChar32 MathVariantMappingSearch(uint32_t key, const MathVariantMapping* table, size_t tableLength)
</ins><span class="cx"> {
</span><del>-    const UChar32 lowerAlpha = 0x3B1;
-    const UChar32 lowerOmega = 0x3C9;
-    const UChar32 mathItalicLowerA = 0x1D44E;
-    const UChar32 mathItalicLowerAlpha = 0x1D6FC;
-    const UChar32 mathItalicLowerH = 0x210E;
-    const UChar32 mathItalicUpperA = 0x1D434;
</del><ins>+    if (const auto* entry = tryBinarySearch&lt;const MathVariantMapping, UChar32&gt;(table, tableLength, key, ExtractKey))
+        return entry-&gt;replacement;
</ins><span class="cx"> 
</span><del>-    // FIXME: We should also transform dotless i, dotless j and more greek letters.
-    if ('a' &lt;= codePoint &amp;&amp; codePoint &lt;= 'z') {
-        if (codePoint == 'h')
-            codePoint = mathItalicLowerH;
-        else
-            codePoint += mathItalicLowerA - 'a';
-        return true;
</del><ins>+    return 0;
+}
+
+// Lookup tables for use with mathvariant mappings to transform a unicode character point to another unicode character that indicates the proper output.
+// key represents one of two concepts.
+// 1. In the Latin table it represents a hole in the mathematical alphanumeric block, where the character that should occupy that position is located elsewhere.
+// 2. It represents an Arabic letter.
+//  As a replacement, 0 is reserved to indicate no mapping was found.
+static const MathVariantMapping arabicInitialMapTable[] = {
+    { 0x628, 0x1EE21 },
+    { 0x62A, 0x1EE35 },
+    { 0x62B, 0x1EE36 },
+    { 0x62C, 0x1EE22 },
+    { 0x62D, 0x1EE27 },
+    { 0x62E, 0x1EE37 },
+    { 0x633, 0x1EE2E },
+    { 0x634, 0x1EE34 },
+    { 0x635, 0x1EE31 },
+    { 0x636, 0x1EE39 },
+    { 0x639, 0x1EE2F },
+    { 0x63A, 0x1EE3B },
+    { 0x641, 0x1EE30 },
+    { 0x642, 0x1EE32 },
+    { 0x643, 0x1EE2A },
+    { 0x644, 0x1EE2B },
+    { 0x645, 0x1EE2C },
+    { 0x646, 0x1EE2D },
+    { 0x647, 0x1EE24 },
+    { 0x64A, 0x1EE29 }
+};
+
+static const MathVariantMapping arabicTailedMapTable[] = {
+    { 0x62C, 0x1EE42 },
+    { 0x62D, 0x1EE47 },
+    { 0x62E, 0x1EE57 },
+    { 0x633, 0x1EE4E },
+    { 0x634, 0x1EE54 },
+    { 0x635, 0x1EE51 },
+    { 0x636, 0x1EE59 },
+    { 0x639, 0x1EE4F },
+    { 0x63A, 0x1EE5B },
+    { 0x642, 0x1EE52 },
+    { 0x644, 0x1EE4B },
+    { 0x646, 0x1EE4D },
+    { 0x64A, 0x1EE49 },
+    { 0x66F, 0x1EE5F },
+    { 0x6BA, 0x1EE5D }
+};
+
+static const MathVariantMapping arabicStretchedMapTable[] = {
+    { 0x628, 0x1EE61 },
+    { 0x62A, 0x1EE75 },
+    { 0x62B, 0x1EE76 },
+    { 0x62C, 0x1EE62 },
+    { 0x62D, 0x1EE67 },
+    { 0x62E, 0x1EE77 },
+    { 0x633, 0x1EE6E },
+    { 0x634, 0x1EE74 },
+    { 0x635, 0x1EE71 },
+    { 0x636, 0x1EE79 },
+    { 0x637, 0x1EE68 },
+    { 0x638, 0x1EE7A },
+    { 0x639, 0x1EE6F },
+    { 0x63A, 0x1EE7B },
+    { 0x641, 0x1EE70 },
+    { 0x642, 0x1EE72 },
+    { 0x643, 0x1EE6A },
+    { 0x645, 0x1EE6C },
+    { 0x646, 0x1EE6D },
+    { 0x647, 0x1EE64 },
+    { 0x64A, 0x1EE69 },
+    { 0x66E, 0x1EE7C },
+    { 0x6A1, 0x1EE7E }
+};
+
+static const MathVariantMapping arabicLoopedMapTable[] = {
+    { 0x627, 0x1EE80 },
+    { 0x628, 0x1EE81 },
+    { 0x62A, 0x1EE95 },
+    { 0x62B, 0x1EE96 },
+    { 0x62C, 0x1EE82 },
+    { 0x62D, 0x1EE87 },
+    { 0x62E, 0x1EE97 },
+    { 0x62F, 0x1EE83 },
+    { 0x630, 0x1EE98 },
+    { 0x631, 0x1EE93 },
+    { 0x632, 0x1EE86 },
+    { 0x633, 0x1EE8E },
+    { 0x634, 0x1EE94 },
+    { 0x635, 0x1EE91 },
+    { 0x636, 0x1EE99 },
+    { 0x637, 0x1EE88 },
+    { 0x638, 0x1EE9A },
+    { 0x639, 0x1EE8F },
+    { 0x63A, 0x1EE9B },
+    { 0x641, 0x1EE90 },
+    { 0x642, 0x1EE92 },
+    { 0x644, 0x1EE8B },
+    { 0x645, 0x1EE8C },
+    { 0x646, 0x1EE8D },
+    { 0x647, 0x1EE84 },
+    { 0x648, 0x1EE85 },
+    { 0x64A, 0x1EE89 }
+};
+
+static const MathVariantMapping arabicDoubleMapTable[] = {
+    { 0x628, 0x1EEA1 },
+    { 0x62A, 0x1EEB5 },
+    { 0x62B, 0x1EEB6 },
+    { 0x62C, 0x1EEA2 },
+    { 0x62D, 0x1EEA7 },
+    { 0x62E, 0x1EEB7 },
+    { 0x62F, 0x1EEA3 },
+    { 0x630, 0x1EEB8 },
+    { 0x631, 0x1EEB3 },
+    { 0x632, 0x1EEA6 },
+    { 0x633, 0x1EEAE },
+    { 0x634, 0x1EEB4 },
+    { 0x635, 0x1EEB1 },
+    { 0x636, 0x1EEB9 },
+    { 0x637, 0x1EEA8 },
+    { 0x638, 0x1EEBA },
+    { 0x639, 0x1EEAF },
+    { 0x63A, 0x1EEBB },
+    { 0x641, 0x1EEB0 },
+    { 0x642, 0x1EEB2 },
+    { 0x644, 0x1EEAB },
+    { 0x645, 0x1EEAC },
+    { 0x646, 0x1EEAD },
+    { 0x648, 0x1EEA5 },
+    { 0x64A, 0x1EEA9 }
+};
+
+static const MathVariantMapping latinExceptionMapTable[] = {
+    { 0x1D455, 0x210E },
+    { 0x1D49D, 0x212C },
+    { 0x1D4A0, 0x2130 },
+    { 0x1D4A1, 0x2131 },
+    { 0x1D4A3, 0x210B },
+    { 0x1D4A4, 0x2110 },
+    { 0x1D4A7, 0x2112 },
+    { 0x1D4A8, 0x2133 },
+    { 0x1D4AD, 0x211B },
+    { 0x1D4BA, 0x212F },
+    { 0x1D4BC, 0x210A },
+    { 0x1D4C4, 0x2134 },
+    { 0x1D506, 0x212D },
+    { 0x1D50B, 0x210C },
+    { 0x1D50C, 0x2111 },
+    { 0x1D515, 0x211C },
+    { 0x1D51D, 0x2128 },
+    { 0x1D53A, 0x2102 },
+    { 0x1D53F, 0x210D },
+    { 0x1D545, 0x2115 },
+    { 0x1D547, 0x2119 },
+    { 0x1D548, 0x211A },
+    { 0x1D549, 0x211D },
+    { 0x1D551, 0x2124 }
+};
+
+const UChar32 greekUpperTheta = 0x03F4;
+const UChar32 holeGreekUpperTheta = 0x03A2;
+const UChar32 nabla = 0x2207;
+const UChar32 partialDifferential = 0x2202;
+const UChar32 greekUpperAlpha = 0x0391;
+const UChar32 greekUpperOmega = 0x03A9;
+const UChar32 greekLowerAlpha = 0x03B1;
+const UChar32 greekLowerOmega = 0x03C9;
+const UChar32 greekLunateEpsilonSymbol = 0x03F5;
+const UChar32 greekThetaSymbol = 0x03D1;
+const UChar32 greekKappaSymbol = 0x03F0;
+const UChar32 greekPhiSymbol = 0x03D5;
+const UChar32 greekRhoSymbol = 0x03F1;
+const UChar32 greekPiSymbol = 0x03D6;
+const UChar32 greekLetterDigamma = 0x03DC;
+const UChar32 greekSmallLetterDigamma = 0x03DD;
+const UChar32 mathBoldCapitalDigamma = 0x1D7CA;
+const UChar32 mathBoldSmallDigamma = 0x1D7CB;
+
+const UChar32 latinSmallLetterDotlessI = 0x0131;
+const UChar32 latinSmallLetterDotlessJ = 0x0237;
+
+const UChar32 mathItalicSmallDotlessI = 0x1D6A4;
+const UChar32 mathItalicSmallDotlessJ = 0x1D6A5;
+
+const UChar32 mathBoldUpperA = 0x1D400;
+const UChar32 mathItalicUpperA = 0x1D434;
+const UChar32 mathBoldSmallA = 0x1D41A;
+const UChar32 mathBoldUpperAlpha = 0x1D6A8;
+const UChar32 mathBoldSmallAlpha = 0x1D6C2;
+const UChar32 mathItalicUpperAlpha = 0x1D6E2;
+const UChar32 mathBoldDigitZero = 0x1D7CE;
+const UChar32 mathDoubleStruckZero = 0x1D7D8;
+
+const UChar32 mathBoldUpperTheta = 0x1D6B9;
+const UChar32 mathBoldNabla = 0x1D6C1;
+const UChar32 mathBoldPartialDifferential = 0x1D6DB;
+const UChar32 mathBoldEpsilonSymbol = 0x1D6DC;
+const UChar32 mathBoldThetaSymbol = 0x1D6DD;
+const UChar32 mathBoldKappaSymbol = 0x1D6DE;
+const UChar32 mathBoldPhiSymbol = 0x1D6DF;
+const UChar32 mathBoldRhoSymbol = 0x1D6E0;
+const UChar32 mathBoldPiSymbol = 0x1D6E1;
+
+// Performs the character mapping needed to implement MathML's mathvariant attribute.
+// It takes a unicode character and maps it to its appropriate mathvariant counterpart specified by mathvariant.
+// The mapped character is typically located within Unicode's mathematical blocks (0x1D***, 0x1EE**) but there are exceptions which this function accounts for.
+// Characters without a valid mapping or valid aMathvar value are returned
+// unaltered.
+// Characters already in the mathematical blocks (or are one of the exceptions) are never transformed.
+// Acceptable values for mathvariant are specified in MathMLStyle.h
+// The transformable characters can be found at:
+// http://lists.w3.org/Archives/Public/www-math/2013Sep/0012.html and
+// https://en.wikipedia.org/wiki/Mathematical_Alphanumeric_Symbols
+static UChar32 mathVariant(UChar32 codePoint, MathMLStyle::MathVariant mathvariant)
+{
+    ASSERT(mathvariant &gt;= MathMLStyle::Normal &amp;&amp; mathvariant &lt;= MathMLStyle::Stretched);
+
+    if (mathvariant == MathMLStyle::Normal)
+        return codePoint; // Nothing to do here.
+
+    // Exceptional characters with at most one possible transformation.
+    if (codePoint == holeGreekUpperTheta)
+        return codePoint; // Nothing at this code point is transformed
+    if (codePoint == greekLetterDigamma) {
+        if (mathvariant == MathMLStyle::Bold)
+            return mathBoldCapitalDigamma;
+        return codePoint;
</ins><span class="cx">     }
</span><ins>+    if (codePoint == greekSmallLetterDigamma) {
+        if (mathvariant == MathMLStyle::Bold)
+            return mathBoldSmallDigamma;
+        return codePoint;
+    }
+    if (codePoint == latinSmallLetterDotlessI) {
+        if (mathvariant == MathMLStyle::Italic)
+            return mathItalicSmallDotlessI;
+        return codePoint;
+    }
+    if (codePoint == latinSmallLetterDotlessJ) {
+        if (mathvariant == MathMLStyle::Italic)
+            return mathItalicSmallDotlessJ;
+        return codePoint;
+    }
+
+    // The Unicode mathematical blocks are divided into four segments: Latin, Greek, numbers and Arabic.
+    // In the case of the first three baseChar represents the relative order in which the characters are encoded in the Unicode mathematical block, normalised to the first character of that sequence.
+    UChar32 baseChar;
+    enum CharacterType {
+        Latin,
+        Greekish,
+        Number,
+        Arabic
+    };
+    CharacterType varType;
</ins><span class="cx">     if ('A' &lt;= codePoint &amp;&amp; codePoint &lt;= 'Z') {
</span><del>-        codePoint += mathItalicUpperA - 'A';
-        return true;
</del><ins>+        baseChar = codePoint - 'A';
+        varType = Latin;
+    } else if ('a' &lt;= codePoint &amp;&amp; codePoint &lt;= 'z') {
+        // Lowercase characters are placed immediately after the uppercase characters in the Unicode mathematical block.
+        // The constant subtraction represents the number of characters between the start of the sequence (capital A) and the first lowercase letter.
+        baseChar = mathBoldSmallA - mathBoldUpperA + codePoint - 'a';
+        varType = Latin;
+    } else if ('0' &lt;= codePoint &amp;&amp; codePoint &lt;= '9') {
+        baseChar = codePoint - '0';
+        varType = Number;
+    } else if (greekUpperAlpha &lt;= codePoint &amp;&amp; codePoint &lt;= greekUpperOmega) {
+        baseChar = codePoint - greekUpperAlpha;
+        varType = Greekish;
+    } else if (greekLowerAlpha &lt;= codePoint &amp;&amp; codePoint &lt;= greekLowerOmega) {
+        // Lowercase Greek comes after uppercase Greek.
+        // Note in this instance the presence of an additional character (Nabla) between the end of the uppercase Greek characters and the lowercase ones.
+        baseChar = mathBoldSmallAlpha - mathBoldUpperAlpha + codePoint - greekLowerAlpha;
+        varType = Greekish;
+    } else if (0x0600 &lt;= codePoint &amp;&amp; codePoint &lt;= 0x06FF) {
+        // Arabic characters are defined within this range
+        varType = Arabic;
+    } else {
+        switch (codePoint) {
+        case greekUpperTheta:
+            baseChar = mathBoldUpperTheta - mathBoldUpperAlpha;
+            break;
+        case nabla:
+            baseChar = mathBoldNabla - mathBoldUpperAlpha;
+            break;
+        case partialDifferential:
+            baseChar = mathBoldPartialDifferential - mathBoldUpperAlpha;
+            break;
+        case greekLunateEpsilonSymbol:
+            baseChar = mathBoldEpsilonSymbol - mathBoldUpperAlpha;
+            break;
+        case greekThetaSymbol:
+            baseChar = mathBoldThetaSymbol - mathBoldUpperAlpha;
+            break;
+        case greekKappaSymbol:
+            baseChar = mathBoldKappaSymbol - mathBoldUpperAlpha;
+            break;
+        case greekPhiSymbol:
+            baseChar = mathBoldPhiSymbol - mathBoldUpperAlpha;
+            break;
+        case greekRhoSymbol:
+            baseChar = mathBoldRhoSymbol - mathBoldUpperAlpha;
+            break;
+        case greekPiSymbol:
+            baseChar = mathBoldPiSymbol - mathBoldUpperAlpha;
+            break;
+        default:
+            return codePoint;
+        }
+        varType = Greekish;
</ins><span class="cx">     }
</span><del>-    if (lowerAlpha &lt;= codePoint &amp;&amp; codePoint &lt;= lowerOmega) {
-        codePoint += mathItalicLowerAlpha - lowerAlpha;
-        return true;
</del><ins>+
+    int8_t multiplier;
+    if (varType == Number) {
+        // Each possible number mathvariant is encoded in a single, contiguous block.
+        // For example the beginning of the double struck number range follows immediately after the end of the bold number range.
+        // multiplier represents the order of the sequences relative to the first one.
+        switch (mathvariant) {
+        case MathMLStyle::Bold:
+            multiplier = 0;
+            break;
+        case MathMLStyle::DoubleStruck:
+            multiplier = 1;
+            break;
+        case MathMLStyle::SansSerif:
+            multiplier = 2;
+            break;
+        case MathMLStyle::BoldSansSerif:
+            multiplier = 3;
+            break;
+        case MathMLStyle::Monospace:
+            multiplier = 4;
+            break;
+        default:
+            // This mathvariant isn't defined for numbers or is otherwise normal.
+            return codePoint;
+        }
+        // As the ranges are contiguous, to find the desired mathvariant range it is sufficient to
+        // multiply the position within the sequence order (multiplier) with the period of the sequence (which is constant for all number sequences)
+        // and to add the character point of the first character within the number mathvariant range.
+        // To this the baseChar calculated earlier is added to obtain the final code point.
+        return baseChar + multiplier * (mathDoubleStruckZero - mathBoldDigitZero) + mathBoldDigitZero;
</ins><span class="cx">     }
</span><ins>+    if (varType == Greekish) {
+        switch (mathvariant) {
+        case MathMLStyle::Bold:
+            multiplier = 0;
+            break;
+        case MathMLStyle::Italic:
+            multiplier = 1;
+            break;
+        case MathMLStyle::BoldItalic:
+            multiplier = 2;
+            break;
+        case MathMLStyle::BoldSansSerif:
+            multiplier = 3;
+            break;
+        case MathMLStyle::SansSerifBoldItalic:
+            multiplier = 4;
+            break;
+        default:
+            // This mathvariant isn't defined for Greek or is otherwise normal.
+            return codePoint;
+        }
+        // See the Number case for an explanation of the following calculation.
+        return baseChar + mathBoldUpperAlpha + multiplier * (mathItalicUpperAlpha - mathBoldUpperAlpha);
+    }
</ins><span class="cx"> 
</span><del>-    return false;
</del><ins>+    UChar32 tempChar;
+    UChar32 newChar;
+    if (varType == Arabic) {
+        // The Arabic mathematical block is not continuous, nor does it have a monotonic mapping to the unencoded characters, requiring the use of a lookup table.
+        const MathVariantMapping* mapTable;
+        size_t tableLength;
+        switch (mathvariant) {
+        case MathMLStyle::Initial:
+            mapTable = arabicInitialMapTable;
+            tableLength = WTF_ARRAY_LENGTH(arabicInitialMapTable);
+            break;
+        case MathMLStyle::Tailed:
+            mapTable = arabicTailedMapTable;
+            tableLength = WTF_ARRAY_LENGTH(arabicTailedMapTable);
+            break;
+        case MathMLStyle::Stretched:
+            mapTable = arabicStretchedMapTable;
+            tableLength = WTF_ARRAY_LENGTH(arabicStretchedMapTable);
+            break;
+        case MathMLStyle::Looped:
+            mapTable = arabicLoopedMapTable;
+            tableLength = WTF_ARRAY_LENGTH(arabicLoopedMapTable);
+            break;
+        case MathMLStyle::DoubleStruck:
+            mapTable = arabicDoubleMapTable;
+            tableLength = WTF_ARRAY_LENGTH(arabicDoubleMapTable);
+            break;
+        default:
+            return codePoint; // No valid transformations exist.
+        }
+        newChar = MathVariantMappingSearch(codePoint, mapTable, tableLength);
+    } else {
+        // Must be Latin
+        if (mathvariant &gt; MathMLStyle::Monospace)
+            return codePoint; // Latin doesn't support the Arabic mathvariants
+        multiplier = mathvariant - 2;
+        // This is possible because the values for NS_MATHML_MATHVARIANT_* are chosen to coincide with the order in which the encoded mathvariant characters are located within their unicode block (less an offset to avoid None and Normal variants)
+        // See the Number case for an explanation of the following calculation
+        tempChar = baseChar + mathBoldUpperA + multiplier * (mathItalicUpperA - mathBoldUpperA);
+        // There are roughly twenty characters that are located outside of the mathematical block, so the spaces where they ought to be are used as keys for a lookup table containing the correct character mappings.
+        newChar = MathVariantMappingSearch(tempChar, latinExceptionMapTable, WTF_ARRAY_LENGTH(latinExceptionMapTable));
+    }
+
+    if (newChar)
+        return newChar;
+    if (varType == Latin)
+        return tempChar;
+    return codePoint; // This is an Arabic character without a corresponding mapping.
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void RenderMathMLToken::computePreferredLogicalWidths()
</span><span class="lines">@@ -107,8 +509,6 @@
</span><span class="cx"> {
</span><span class="cx">     ASSERT(m_mathVariantGlyphDirty);
</span><span class="cx"> 
</span><del>-    // This implements implicit italic mathvariant for single-char &lt;mi&gt;.
-    // FIXME: Add full support for the mathvariant attribute (https://webkit.org/b/85735)
</del><span class="cx">     m_mathVariantGlyph = GlyphData();
</span><span class="cx">     m_mathVariantGlyphDirty = false;
</span><span class="cx"> 
</span><span class="lines">@@ -120,13 +520,15 @@
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     const auto&amp; tokenElement = element();
</span><del>-    if (tokenElement.hasTagName(MathMLNames::miTag) &amp;&amp; !tokenElement.hasAttribute(mathvariantAttr)) {
-        AtomicString textContent = element().textContent().stripWhiteSpace().simplifyWhiteSpace();
-        if (textContent.length() == 1) {
-            UChar32 codePoint = textContent[0];
-            if (transformToItalic(codePoint))
-                m_mathVariantGlyph = style().fontCascade().glyphDataForCharacter(codePoint, !style().isLeftToRightDirection());
-        }
</del><ins>+    AtomicString textContent = element().textContent().stripWhiteSpace().simplifyWhiteSpace();
+    if (textContent.length() == 1) {
+        UChar32 codePoint = textContent[0];
+        MathMLStyle::MathVariant mathvariant = mathMLStyle()-&gt;mathVariant();
+        if (mathvariant == MathMLStyle::None)
+            mathvariant = tokenElement.hasTagName(MathMLNames::miTag) ? MathMLStyle::Italic : MathMLStyle::Normal;
+        UChar32 transformedCodePoint = mathVariant(codePoint, mathvariant);
+        if (transformedCodePoint != codePoint)
+            m_mathVariantGlyph = style().fontCascade().glyphDataForCharacter(transformedCodePoint, !style().isLeftToRightDirection());
</ins><span class="cx">     }
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>