summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/jadetex/base/uentities.sty
blob: 1a8ae9cef1cf12cd09a24ccb23c6c342833afc69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186

\expandafter\def\csname EntAElig\endcsname{\AE }% U000C6%
\expandafter\def\csname EntAacgr\endcsname{\ifmmode \acute{A}\else \'{A}\fi}% U00386%
\expandafter\def\csname EntAacute\endcsname{\ifmmode \acute{A}\else \'{A}\fi}% U000C1%
\expandafter\def\csname EntAbreve\endcsname{\ifmmode \breve{A}\else \u{A}\fi}% U00102%
\expandafter\def\csname EntAcirc\endcsname{\ifmmode \hat{A}\else \^{A}\fi}% U000C2%
\expandafter\def\csname EntAcy\endcsname{\cyrchar\CYRA }% U00410%
\expandafter\def\csname EntAfr\endcsname{\ensuremath{\mathfrak{A}}}% U1D504%
\expandafter\def\csname EntAgr\endcsname{\ensuremath{\Alpha }}% U00391%
\expandafter\def\csname EntAgrave\endcsname{\ifmmode \grave{A}\else \`{A}\fi}% U000C0%
\expandafter\def\csname EntAlpha\endcsname{\ensuremath{\Alpha }}% U00391%
\expandafter\def\csname EntAmacr\endcsname{\ifmmode \bar{A}\else \={A}\fi}% U00100%
\expandafter\def\csname EntAnd\endcsname{\ensuremath{\ElzAnd }}% U02A53%
\expandafter\def\csname EntAogon\endcsname{\k{A}}% U00104%
\expandafter\def\csname EntAopf\endcsname{\ensuremath{\mathbb{A}}}% U1D538%
\expandafter\def\csname EntAring\endcsname{\AA }% U000C5%
\expandafter\def\csname EntAscr\endcsname{\ensuremath{\mathscr{A}}}% U1D49C%
\expandafter\def\csname EntAtilde\endcsname{\ifmmode \tilde{A}\else \~{A}\fi}% U000C3%
\expandafter\def\csname EntAuml\endcsname{\ifmmode \ddot{A}\else \"{A}\fi}% U000C4%
\expandafter\def\csname EntBackslash\endcsname{\ensuremath{\setminus }}% U02216%
\expandafter\def\csname EntBarint\endcsname{\ensuremath{}}% U02A0E%
\expandafter\def\csname EntBarv\endcsname{\ensuremath{}}% U02AE7%
\expandafter\def\csname EntBarwed\endcsname{\ensuremath{\perspcorrespond }}% U02306%
\expandafter\def\csname EntBarwedl\endcsname{\ensuremath{\perspcorrespond }}% U02A5E%
\expandafter\def\csname EntBcy\endcsname{\cyrchar\CYRB }% U00411%
\expandafter\def\csname EntBecause\endcsname{\ensuremath{\because }}% U02235%
\expandafter\def\csname EntBernoullis\endcsname{\ensuremath{\mathscr{B}}}% U0212C%
\expandafter\def\csname EntBeta\endcsname{\ensuremath{\Beta }}% U00392%
\expandafter\def\csname EntBfr\endcsname{\ensuremath{\mathfrak{B}}}% U1D505%
\expandafter\def\csname EntBgr\endcsname{\ensuremath{\Beta }}% U00392%
\expandafter\def\csname EntBopf\endcsname{\ensuremath{\mathbb{B}}}% U1D539%
\expandafter\def\csname EntBreve\endcsname{\ifmmode \u\else \textasciibreve \fi}% U002D8%
\expandafter\def\csname EntBscr\endcsname{\ensuremath{\mathscr{B}}}% U0212C%
\expandafter\def\csname EntBumpeq\endcsname{\ensuremath{\Bumpeq }}% U0224E%
\expandafter\def\csname EntBvert\endcsname{\ensuremath{\Elzdshfnc }}% U02506%
\expandafter\def\csname EntCHcy\endcsname{\cyrchar\CYRCH }% U00427%
\expandafter\def\csname EntCacute\endcsname{\ifmmode \acute{C}\else \'{C}\fi}% U00106%
\expandafter\def\csname EntCap\endcsname{\ensuremath{\Cap }}% U022D2%
\expandafter\def\csname EntCayleys\endcsname{\ensuremath{\mathfrak{C}}}% U0212D%
\expandafter\def\csname EntCcaron\endcsname{\ifmmode \check{C}\else \v{C}\fi}% U0010C%
\expandafter\def\csname EntCcedil\endcsname{\ifmmode \mbox{\c{C}}\else \c{C}\fi}% U000C7%
\expandafter\def\csname EntCcirc\endcsname{\ifmmode \hat{C}\else \^{C}\fi}% U00108%
\expandafter\def\csname EntCconint\endcsname{\ensuremath{\volintegral }}% U02230%
\expandafter\def\csname EntCdot\endcsname{\ifmmode \dot{C}\else \.{C}\fi}% U0010A%
\expandafter\def\csname EntCedilla\endcsname{\ifmmode \mbox{\c{}}\else \c{}\fi}% U000B8%
\expandafter\def\csname EntCenterDot\endcsname{\ensuremath{\cdot }}% U000B7%
\expandafter\def\csname EntCfr\endcsname{\ensuremath{\mathfrak{C}}}% U0212D%
\expandafter\def\csname EntChi\endcsname{\ensuremath{\Chi }}% U003A7%
\expandafter\def\csname EntCircleDot\endcsname{\ensuremath{\odot }}% U02299%
\expandafter\def\csname EntCircleMinus\endcsname{\ensuremath{\ominus }}% U02296%
\expandafter\def\csname EntCirclePlus\endcsname{\ensuremath{\oplus }}% U02295%
\expandafter\def\csname EntCircleTimes\endcsname{\ensuremath{\otimes }}% U02297%
\expandafter\def\csname EntClockwiseContourIntegral\endcsname{\ensuremath{\ElsevierGlyph{2232}}}% U02232%
\expandafter\def\csname EntCloseCurlyDoubleQuote\endcsname{\textquotedblright }% U0201D%
\expandafter\def\csname EntCloseCurlyQuote\endcsname{'}% U02019%
\expandafter\def\csname EntColon\endcsname{\ensuremath{\Colon }}% U02237%
\expandafter\def\csname EntColone\endcsname{\ensuremath{}}% U02A74%
\expandafter\def\csname EntCongruent\endcsname{\ensuremath{\equiv }}% U02261%
\expandafter\def\csname EntConint\endcsname{\ensuremath{\surfintegral }}% U0222F%
\expandafter\def\csname EntContourIntegral\endcsname{\ensuremath{\oint }}% U0222E%
\expandafter\def\csname EntCopf\endcsname{\ensuremath{\mathbb{C}}}% U02102%
\expandafter\def\csname EntCoproduct\endcsname{\ensuremath{\coprod }}% U02210%
\expandafter\def\csname EntCounterClockwiseContourIntegral\endcsname{\ensuremath{\ElsevierGlyph{2233}}}% U02233%
\expandafter\def\csname EntCross\endcsname{\ensuremath{\ElzTimes }}% U02A2F%
\expandafter\def\csname EntCscr\endcsname{\ensuremath{\mathscr{C}}}% U1D49E%
\expandafter\def\csname EntCupCap\endcsname{\ensuremath{\asymp }}% U0224D%
\expandafter\def\csname EntCup\endcsname{\ensuremath{\Cup }}% U022D3%
\expandafter\def\csname EntDDotrahd\endcsname{\ensuremath{}}% U02911%
\expandafter\def\csname EntDJcy\endcsname{\cyrchar\CYRDJE }% U00402%
\expandafter\def\csname EntDScy\endcsname{\cyrchar\CYRDZE }% U00405%
\expandafter\def\csname EntDZcy\endcsname{\cyrchar\CYRDZHE }% U0040F%
\expandafter\def\csname EntDagger\endcsname{\ifmmode \ddag \else \textdaggerdbl \fi}% U02021%
\expandafter\def\csname EntDarr\endcsname{\ensuremath{}}% U021A1%
\expandafter\def\csname EntDashv\endcsname{\ensuremath{}}% U02AE4%
\expandafter\def\csname EntDcaron\endcsname{\ifmmode \check{D}\else \v{D}\fi}% U0010E%
\expandafter\def\csname EntDcy\endcsname{\cyrchar\CYRD }% U00414%
\expandafter\def\csname EntDel\endcsname{\ensuremath{\nabla }}% U02207%
\expandafter\def\csname EntDelta\endcsname{\ensuremath{\Delta }}% U00394%
\expandafter\def\csname EntDfr\endcsname{\ensuremath{\mathfrak{D}}}% U1D507%
\expandafter\def\csname EntDgr\endcsname{\ensuremath{\Delta }}% U00394%
\expandafter\def\csname EntDiacriticalAcute\endcsname{\textasciiacute }% U000B4%
\expandafter\def\csname EntDiacriticalDot\endcsname{\ifmmode \dot{}\else \textperiodcentered \fi}% U002D9%
\expandafter\def\csname EntDiacriticalDoubleAcute\endcsname{\ifmmode \mbox{\H{}}\else \H{}\fi}% U002DD%
\expandafter\def\csname EntDiacriticalGrave\endcsname{\textasciigrave }% U00060%
\expandafter\def\csname EntDiacriticalTilde\endcsname{\texttildelow }% U002DC%
\expandafter\def\csname EntDiamond\endcsname{\ensuremath{\diamond }}% U022C4%
\expandafter\def\csname EntDopf\endcsname{\ensuremath{\mathbb{D}}}% U1D53B%
\expandafter\def\csname EntDotDot\endcsname{\ensuremath{\ddddot }}% U020DC%
\expandafter\def\csname EntDotEqual\endcsname{\ensuremath{\doteq }}% U02250%
\expandafter\def\csname EntDot\endcsname{\textasciidieresis }% U000A8%
\expandafter\def\csname EntDoubleContourIntegral\endcsname{\ensuremath{\surfintegral }}% U0222F%
\expandafter\def\csname EntDoubleDot\endcsname{\textasciidieresis }% U000A8%
\expandafter\def\csname EntDoubleDownArrow\endcsname{\ensuremath{\Downarrow }}% U021D3%
\expandafter\def\csname EntDoubleLeftArrow\endcsname{\ensuremath{\Leftarrow }}% U021D0%
\expandafter\def\csname EntDoubleLeftRightArrow\endcsname{\ensuremath{\Leftrightarrow }}% U021D4%
\expandafter\def\csname EntDoubleLeftTee\endcsname{\ensuremath{}}% U02AE4%
\expandafter\def\csname EntDoubleLongLeftArrow\endcsname{\ensuremath{\Longleftarrow }}% U021D0x%
\expandafter\def\csname EntDoubleLongLeftRightArrow\endcsname{\ensuremath{\Longleftrightarrow }}% U021D4x%
\expandafter\def\csname EntDoubleLongRightArrow\endcsname{\ensuremath{\Longrightarrow }}% U021D2x%
\expandafter\def\csname EntDoubleRightArrow\endcsname{\ensuremath{\Rightarrow }}% U021D2%
\expandafter\def\csname EntDoubleRightTee\endcsname{\ensuremath{\forcesextra }}% U022A8%
\expandafter\def\csname EntDoubleUpArrow\endcsname{\ensuremath{\Uparrow }}% U021D1%
\expandafter\def\csname EntDoubleUpDownArrow\endcsname{\ensuremath{\Updownarrow }}% U021D5%
\expandafter\def\csname EntDoubleVerticalBar\endcsname{\ensuremath{\parallel }}% U02225%
\expandafter\def\csname EntDownArrowBar\endcsname{\ensuremath{\DownArrowBar }}% U02913%
\expandafter\def\csname EntDownArrowUpArrow\endcsname{\ensuremath{\DownArrowUpArrow }}% U021F5%
\expandafter\def\csname EntDownArrow\endcsname{\ensuremath{\downarrow }}% U02193%
\expandafter\def\csname EntDownLeftRightVector\endcsname{\ensuremath{\DownLeftRightVector }}% U02950%
\expandafter\def\csname EntDownLeftTeeVector\endcsname{\ensuremath{\DownLeftTeeVector }}% U0295E%
\expandafter\def\csname EntDownLeftVectorBar\endcsname{\ensuremath{\DownLeftVectorBar }}% U02956%
\expandafter\def\csname EntDownLeftVector\endcsname{\ensuremath{\leftharpoondown }}% U021BD%
\expandafter\def\csname EntDownRightTeeVector\endcsname{\ensuremath{\DownRightTeeVector }}% U0295F%
\expandafter\def\csname EntDownRightVectorBar\endcsname{\ensuremath{\DownRightVectorBar }}% U02957%
\expandafter\def\csname EntDownRightVector\endcsname{\ensuremath{\rightharpoondown }}% U021C1%
\expandafter\def\csname EntDownTeeArrow\endcsname{\ensuremath{}}% U021A7%
\expandafter\def\csname EntDownTee\endcsname{\ensuremath{\top }}% U022A4%
\expandafter\def\csname EntDownarrow\endcsname{\ensuremath{\Downarrow }}% U021D3%
\expandafter\def\csname EntDscr\endcsname{\ensuremath{\mathscr{D}}}% U1D49F%
\expandafter\def\csname EntDstrok\endcsname{\DJ }% U00110%
\expandafter\def\csname EntEEacgr\endcsname{\ifmmode \grave{H}\else \'{H}\fi}% U00389%
\expandafter\def\csname EntEEgr\endcsname{\ensuremath{\Eta }}% U00397%
\expandafter\def\csname EntENG\endcsname{\NG }% U0014A%
\expandafter\def\csname EntETH\endcsname{\DH }% U000D0%
\expandafter\def\csname EntEacgr\endcsname{\ifmmode \acute{E}\else \'{E}\fi}% U00388%
\expandafter\def\csname EntEacute\endcsname{\ifmmode \acute{E}\else \'{E}\fi}% U000C9%
\expandafter\def\csname EntEcaron\endcsname{\ifmmode \check{E}\else \v{E}\fi}% U0011A%
\expandafter\def\csname EntEcirc\endcsname{\ifmmode \hat{E}\else \^{E}\fi}% U000CA%
\expandafter\def\csname EntEcy\endcsname{\cyrchar\CYREREV }% U0042D%
\expandafter\def\csname EntEdot\endcsname{\ifmmode \dot{E}\else \.{E}\fi}% U00116%
\expandafter\def\csname EntEfr\endcsname{\ensuremath{\mathfrak{E}}}% U1D508%
\expandafter\def\csname EntEgr\endcsname{\ensuremath{\Epsilon }}% U00395%
\expandafter\def\csname EntEgrave\endcsname{\ifmmode \grave{E}\else \`{E}\fi}% U000C8%
\expandafter\def\csname EntElement\endcsname{\ensuremath{\in }}% U02208%
\expandafter\def\csname EntEmacr\endcsname{\ifmmode \bar{E}\else \={E}\fi}% U00112%
\expandafter\def\csname EntEogon\endcsname{\ifmmode \k{E}\else \k{E}\fi}% U00118%
\expandafter\def\csname EntEopf\endcsname{\ensuremath{\mathbb{E}}}% U1D53C%
\expandafter\def\csname EntEpsilon\endcsname{\ensuremath{\Epsilon }}% U00395%
\expandafter\def\csname EntEqualTilde\endcsname{\ensuremath{\ElsevierGlyph{2242}}}% U02242%
\expandafter\def\csname EntEqual\endcsname{\ensuremath{\Equal }}% U02A75%
\expandafter\def\csname EntEquilibrium\endcsname{\ensuremath{\rightleftharpoons }}% U021CC%
\expandafter\def\csname EntEscr\endcsname{\ensuremath{\mathscr{E}}}% U02130%
\expandafter\def\csname EntEsim\endcsname{\ensuremath{}}% U02A73%
\expandafter\def\csname EntEta\endcsname{\ensuremath{\Eta }}% U00397%
\expandafter\def\csname EntEuml\endcsname{\ifmmode \ddot{E}\else \"{E}\fi}% U000CB%
\expandafter\def\csname EntExists\endcsname{\ensuremath{\exists }}% U02203%
\expandafter\def\csname EntFcy\endcsname{\cyrchar\CYRF }% U00424%
\expandafter\def\csname EntFfr\endcsname{\ensuremath{\mathfrak{F}}}% U1D509%
\expandafter\def\csname EntFopf\endcsname{\ensuremath{\mathbb{F}}}% U1D53D%
\expandafter\def\csname EntForAll\endcsname{\ensuremath{\forall }}% U02200%
\expandafter\def\csname EntFouriertrf\endcsname{\ensuremath{\mathscr{F}}}% U02131%
\expandafter\def\csname EntFscr\endcsname{\ensuremath{\mathscr{F}}}% U02131%
\expandafter\def\csname EntGJcy\endcsname{\cyrchar{\'\CYRG}}% U00403%
\expandafter\def\csname EntGamma\endcsname{\ensuremath{\Gamma }}% U00393%
\expandafter\def\csname EntGammad\endcsname{\ensuremath{\Digamma }}% U003DC%
\expandafter\def\csname EntGbreve\endcsname{\ifmmode \breve{G}\else \u{G}\fi}% U0011E%
\expandafter\def\csname EntGcedil\endcsname{\ifmmode \mbox{\c{G}}\else \c{G}\fi}% U00122%
\expandafter\def\csname EntGcirc\endcsname{\ifmmode \hat{G}\else \^{G}\fi}% U0011C%
\expandafter\def\csname EntGcy\endcsname{\cyrchar\CYRG }% U00413%
\expandafter\def\csname EntGdot\endcsname{\ifmmode \dot{G}\else \.{G}\fi}% U00120%
\expandafter\def\csname EntGfr\endcsname{\ensuremath{\mathfrak{G}}}% U1D50A%
\expandafter\def\csname EntGg\endcsname{\ensuremath{\verymuchgreater }}% U022D9%
\expandafter\def\csname EntGgr\endcsname{\ensuremath{\Gamma }}% U00393%
\expandafter\def\csname EntGopf\endcsname{\ensuremath{\mathbb{G}}}% U1D53E%
\expandafter\def\csname EntGreaterEqualLess\endcsname{\ensuremath{\gtreqless }}% U022DB%
\expandafter\def\csname EntGreaterEqual\endcsname{\ensuremath{\geq }}% U02265%
\expandafter\def\csname EntGreaterFullEqual\endcsname{\ensuremath{\geqq }}% U02267%
\expandafter\def\csname EntGreaterGreater\endcsname{\ensuremath{\NestedGreaterGreater }}% U02AA2%
\expandafter\def\csname EntGreaterLess\endcsname{\ensuremath{\gtrless }}% U02277%
\expandafter\def\csname EntGreaterSlantEqual\endcsname{\ensuremath{\geqslant }}% U02A7E%
\expandafter\def\csname EntGreaterTilde\endcsname{\ensuremath{\greaterequivlnt }}% U02273%
\expandafter\def\csname EntGscr\endcsname{\ensuremath{\mathscr{G}}}% U1D4A2%
\expandafter\def\csname EntGt\endcsname{\ensuremath{\NestedGreaterGreater }}% U02AA2%
\expandafter\def\csname EntGt\endcsname{\ensuremath{\gg }}% U0226B%
\expandafter\def\csname EntHARDcy\endcsname{\cyrchar\CYRHRDSN }% U0042A%
\expandafter\def\csname EntHacek\endcsname{\textasciicaron }% U002C7%
\expandafter\def\csname EntHat\endcsname{\ifmmode \hat\else \^\fi}% U00302%
\expandafter\def\csname EntHcirc\endcsname{\ifmmode \hat{H}\else \^{H}\fi}% U00124%
\expandafter\def\csname EntHfr\endcsname{\ensuremath{\mathfrak{H}}}% U0210C%
\expandafter\def\csname EntHilbertSpace\endcsname{\ensuremath{\mathscr{H}}}% U0210B%
\expandafter\def\csname EntHopf\endcsname{\ensuremath{\mathbb{H}}}% U0210D%
\expandafter\def\csname EntHscr\endcsname{\ensuremath{\mathscr{H}}}% U0210B%
\expandafter\def\csname EntHstrok\endcsname{{\fontencoding{LELA}\selectfont\char40}}% U00126%
\expandafter\def\csname EntHumpDownHump\endcsname{\ensuremath{\Bumpeq }}% U0224E%
\expandafter\def\csname EntHumpEqual\endcsname{\ensuremath{\bumpeq }}% U0224F%
\expandafter\def\csname EntIEcy\endcsname{\cyrchar\CYRE }% U00415%
\expandafter\def\csname EntIJlig\endcsname{IJ}% U00132%
\expandafter\def\csname EntIOcy\endcsname{\cyrchar\CYRYO }% U00401%
\expandafter\def\csname EntIacgr\endcsname{\ifmmode \acute{I}\else \'{I}\fi}% U0038A%
\expandafter\def\csname EntIacute\endcsname{\ifmmode \acute{I}\else \'{I}\fi}% U000CD%
\expandafter\def\csname EntIcirc\endcsname{\ifmmode \hat{I}\else \^{I}\fi}% U000CE%
\expandafter\def\csname EntIcy\endcsname{\cyrchar\CYRI }% U00418%
\expandafter\def\csname EntIdigr\endcsname{\ensuremath{\ddot{I}}}% U003AA%
\expandafter\def\csname EntIdot\endcsname{\ifmmode \dot{I}\else \.{I}\fi}% U00130%
\expandafter\def\csname EntIfr\endcsname{\ensuremath{\mathfrak{I}}}% U02111%
\expandafter\def\csname EntIgr\endcsname{\ensuremath{\Iota }}% U00399%
\expandafter\def\csname EntIgrave\endcsname{\ifmmode \grave{I}\else \`{I}\fi}% U000CC%
\expandafter\def\csname EntIm\endcsname{\ensuremath{\mathfrak{I}}}% U02111%
\expandafter\def\csname EntImacr\endcsname{\ifmmode \bar{I}\else \={I}\fi}% U0012A%
\expandafter\def\csname EntImplies\endcsname{\ensuremath{\Rightarrow }}% U021D2%
\expandafter\def\csname EntInt\endcsname{\ensuremath{\int\!\int }}% U0222C%
\expandafter\def\csname EntIntegral\endcsname{\ensuremath{\int }}% U0222B%
\expandafter\def\csname EntIntersection\endcsname{\ensuremath{\bigcap }}% U022C2%
\expandafter\def\csname EntIogon\endcsname{\k{I}}% U0012E%
\expandafter\def\csname EntIopf\endcsname{\ensuremath{\mathbb{I}}}% U1D540%
\expandafter\def\csname EntIota\endcsname{\ensuremath{\Iota }}% U00399%
\expandafter\def\csname EntIscr\endcsname{\ensuremath{\mathscr{I}}}% U02110%
\expandafter\def\csname EntItilde\endcsname{\ifmmode \tilde{I}\else \~{I}\fi}% U00128%
\expandafter\def\csname EntIukcy\endcsname{\cyrchar\CYRII }% U00406%
\expandafter\def\csname EntIuml\endcsname{\ifmmode \ddot{I}\else \"{I}\fi}% U000CF%
\expandafter\def\csname EntJcirc\endcsname{\ifmmode \hat{J}\else \^{J}\fi}% U00134%
\expandafter\def\csname EntJcy\endcsname{\cyrchar\CYRISHRT }% U00419%
\expandafter\def\csname EntJfr\endcsname{\ensuremath{\mathfrak{J}}}% U1D50D%
\expandafter\def\csname EntJopf\endcsname{\ensuremath{\mathbb{J}}}% U1D541%
\expandafter\def\csname EntJscr\endcsname{\ensuremath{\mathscr{J}}}% U1D4A5%
\expandafter\def\csname EntJsercy\endcsname{\cyrchar\CYRJE }% U00408%
\expandafter\def\csname EntJukcy\endcsname{\cyrchar\CYRIE }% U00404%
\expandafter\def\csname EntKHcy\endcsname{\cyrchar\CYRH }% U00425%
\expandafter\def\csname EntKHgr\endcsname{\ensuremath{\Chi }}% U003A7%
\expandafter\def\csname EntKJcy\endcsname{\cyrchar{\'\CYRK}}% U0040C%
\expandafter\def\csname EntKappa\endcsname{\ensuremath{\Kappa }}% U0039A%
\expandafter\def\csname EntKcedil\endcsname{\ifmmode \mbox{\c{K}}\else \c{K}\fi}% U00136%
\expandafter\def\csname EntKcy\endcsname{\cyrchar\CYRK }% U0041A%
\expandafter\def\csname EntKfr\endcsname{\ensuremath{\mathfrak{K}}}% U1D50E%
\expandafter\def\csname EntKgr\endcsname{\ensuremath{\Kappa }}% U0039A%
\expandafter\def\csname EntKopf\endcsname{\ensuremath{\mathbb{K}}}% U1D542%
\expandafter\def\csname EntKscr\endcsname{\ensuremath{\mathscr{K}}}% U1D4A6%
\expandafter\def\csname EntLJcy\endcsname{\cyrchar\CYRLJE }% U00409%
\expandafter\def\csname EntLacute\endcsname{\ifmmode \acute{L}\else \'{L}\fi}% U00139%
\expandafter\def\csname EntLambda\endcsname{\ensuremath{\Lambda }}% U0039B%
\expandafter\def\csname EntLang\endcsname{\ensuremath{\ElsevierGlyph{300A}}}% U0300A%
\expandafter\def\csname EntLaplacetrf\endcsname{\ensuremath{\mathscr{L}}}% U02112%
\expandafter\def\csname EntLarr\endcsname{\ensuremath{\twoheadleftarrow }}% U0219E%
\expandafter\def\csname EntLcaron\endcsname{\ifmmode \check{L}\else \v{L}\fi}% U0013D%
\expandafter\def\csname EntLcedil\endcsname{\ifmmode \mbox{\c{L}}\else \c{L}\fi}% U0013B%
\expandafter\def\csname EntLcy\endcsname{\cyrchar\CYRL }% U0041B%
\expandafter\def\csname EntLeftAngleBracket\endcsname{\ensuremath{\langle }}% U02329%
\expandafter\def\csname EntLeftArrowBar\endcsname{\ensuremath{}}% U021E4%
\expandafter\def\csname EntLeftArrowRightArrow\endcsname{\ensuremath{\leftrightarrows }}% U021C6%
\expandafter\def\csname EntLeftArrow\endcsname{\ensuremath{\leftarrow }}% U02190%
\expandafter\def\csname EntLeftCeiling\endcsname{\ensuremath{\lceil }}% U02308%
\expandafter\def\csname EntLeftDoubleBracket\endcsname{\ensuremath{\openbracketleft }}% U0301A%
\expandafter\def\csname EntLeftDownTeeVector\endcsname{\ensuremath{\LeftDownTeeVector }}% U02961%
\expandafter\def\csname EntLeftDownVectorBar\endcsname{\ensuremath{\LeftDownVectorBar }}% U02959%
\expandafter\def\csname EntLeftDownVector\endcsname{\ensuremath{\downharpoonleft }}% U021C3%
\expandafter\def\csname EntLeftFloor\endcsname{\ensuremath{\lfloor }}% U0230A%
\expandafter\def\csname EntLeftRightArrow\endcsname{\ensuremath{\leftrightarrow }}% U02194%
\expandafter\def\csname EntLeftRightVector \endcsname{\ensuremath{\LeftRightVector }}% U0294E%
\expandafter\def\csname EntLeftTeeVector\endcsname{\ensuremath{\LeftTeeVector }}% U0295A%
\expandafter\def\csname EntLeftTee\endcsname{\ensuremath{\dashv }}% U022A3%
\expandafter\def\csname EntLeftTriangleBar\endcsname{\ensuremath{\LeftTriangleBar }}% U029CF%
\expandafter\def\csname EntLeftTriangleEqual\endcsname{\ensuremath{\trianglelefteq }}% U022B4%
\expandafter\def\csname EntLeftTriangle\endcsname{\ensuremath{\vartriangleleft }}% U022B2%
\expandafter\def\csname EntLeftUpDownVector\endcsname{\ensuremath{\LeftUpDownVector }}% U02951%
\expandafter\def\csname EntLeftUpTeeVector\endcsname{\ensuremath{\LeftUpTeeVector }}% U02960%
\expandafter\def\csname EntLeftUpVectorBar\endcsname{\ensuremath{\LeftUpVectorBar }}% U02958%
\expandafter\def\csname EntLeftUpVector\endcsname{\ensuremath{\upharpoonleft }}% U021BF%
\expandafter\def\csname EntLeftVectorBar \endcsname{\ensuremath{\LeftVectorBar }}% U02952%
\expandafter\def\csname EntLeftVector\endcsname{\ensuremath{\leftharpoonup }}% U021BC%
\expandafter\def\csname EntLeftarrow\endcsname{\ensuremath{\Leftarrow }}% U021D0%
\expandafter\def\csname EntLeftrightarrow\endcsname{\ensuremath{\Leftrightarrow }}% U021D4%
\expandafter\def\csname EntLessEqualGreater\endcsname{\ensuremath{\lesseqgtr }}% U022DA%
\expandafter\def\csname EntLessFullEqual\endcsname{\ensuremath{\leqq }}% U02266%
\expandafter\def\csname EntLessGreater\endcsname{\ensuremath{\lessgtr }}% U02276%
\expandafter\def\csname EntLessLess\endcsname{\ensuremath{\NestedLessLess }}% U02AA1%
\expandafter\def\csname EntLessSlantEqual\endcsname{\ensuremath{\leqslant }}% U02A7D%
\expandafter\def\csname EntLessTilde\endcsname{\ensuremath{\lessequivlnt }}% U02272%
\expandafter\def\csname EntLfr\endcsname{\ensuremath{\mathfrak{L}}}% U1D50F%
\expandafter\def\csname EntLgr\endcsname{\ensuremath{\Lambda }}% U0039B%
\expandafter\def\csname EntLl\endcsname{\ensuremath{\verymuchless }}% U022D8%
\expandafter\def\csname EntLleftarrow\endcsname{\ensuremath{\Lleftarrow }}% U021DA%
\expandafter\def\csname EntLmidot\endcsname{{\fontencoding{LELA}\selectfont\char201}}% U0013F%
\expandafter\def\csname EntLongLeftArrow\endcsname{\ensuremath{\longleftarrow }}% U02190x%
\expandafter\def\csname EntLongLeftRightArrow\endcsname{\ensuremath{\longleftrightarrow }}% U02194x%
\expandafter\def\csname EntLongRightArrow\endcsname{\ensuremath{\longrightarrow }}% U02192x%
\expandafter\def\csname EntLongleftarrow\endcsname{\ensuremath{\Longleftarrow }}% U021D0x%
\expandafter\def\csname EntLongleftrightarrow\endcsname{\ensuremath{\Longleftrightarrow }}% U021D4x%
\expandafter\def\csname EntLongrightarrow\endcsname{\ensuremath{\Longrightarrow }}% U021D2x%
\expandafter\def\csname EntLopf\endcsname{\ensuremath{\mathbb{L}}}% U1D543%
\expandafter\def\csname EntLowerLeftArrow\endcsname{\ensuremath{\swarrow }}% U02199%
\expandafter\def\csname EntLowerRightArrow\endcsname{\ensuremath{\searrow }}% U02198%
\expandafter\def\csname EntLscr\endcsname{\ensuremath{\mathscr{L}}}% U02112%
\expandafter\def\csname EntLsh\endcsname{\ensuremath{\Lsh }}% U021B0%
\expandafter\def\csname EntLstrok\endcsname{\L }% U00141%
\expandafter\def\csname EntLt\endcsname{\ensuremath{\NestedLessLess }}% U02AA1%
\expandafter\def\csname EntLt\endcsname{\ensuremath{\ll }}% U0226A%
\expandafter\def\csname EntLtbar\endcsname{\ensuremath{}}% U02AA3%
\expandafter\def\csname EntMap\endcsname{\ensuremath{\ElsevierGlyph{E212}}}% U02905%
\expandafter\def\csname EntMapfrom\endcsname{\ensuremath{}}% U02906%
\expandafter\def\csname EntMapto\endcsname{\ensuremath{}}% U02907%
\expandafter\def\csname EntMcy\endcsname{\cyrchar\CYRM }% U0041C%
\expandafter\def\csname EntMellintrf\endcsname{\ensuremath{\mathscr{M}}}% U02133%
\expandafter\def\csname EntMfr\endcsname{\ensuremath{\mathfrak{M}}}% U1D510%
\expandafter\def\csname EntMgr\endcsname{\ensuremath{M}}% U0039C%
\expandafter\def\csname EntMinusPlus\endcsname{\ensuremath{\mp }}% U02213%
\expandafter\def\csname EntMopf\endcsname{\ensuremath{\mathbb{M}}}% U1D544%
\expandafter\def\csname EntMscr\endcsname{\ensuremath{\mathscr{M}}}% U02133%
\expandafter\def\csname EntMu\endcsname{\ensuremath{M}}% U0039C%
\expandafter\def\csname EntNJcy\endcsname{\cyrchar\CYRNJE }% U0040A%
\expandafter\def\csname EntNacute\endcsname{\ifmmode \acute{N}\else \'{N}\fi}% U00143%
\expandafter\def\csname EntNcaron\endcsname{\ifmmode \check{N}\else \v{N}\fi}% U00147%
\expandafter\def\csname EntNcedil\endcsname{\ifmmode \mbox{\c{N}}\else \c{N}\fi}% U00145%
\expandafter\def\csname EntNcy\endcsname{\cyrchar\CYRN }% U0041D%
\expandafter\def\csname EntNegativeMediumSpace\endcsname{\ensuremath{\mkern-4mu }}% U0205F-02063%
\expandafter\def\csname EntNegativeThickSpace\endcsname{\ensuremath{\mkern-5mu }}% U02005-02063%
\expandafter\def\csname EntNegativeThinSpace\endcsname{\ensuremath{\!}}% U02009-02063%
\expandafter\def\csname EntNegativeVeryThinSpace\endcsname{\ensuremath{\mkern-1mu }}% U0200A-02063%
\expandafter\def\csname EntNestedGreaterGreater\endcsname{\ensuremath{\gg }}% U0226B%
\expandafter\def\csname EntNestedLessLess\endcsname{\ensuremath{\ll }}% U0226A%
\expandafter\def\csname EntNfr\endcsname{\ensuremath{\mathfrak{N}}}% U1D511%
\expandafter\def\csname EntNgr\endcsname{\ensuremath{N}}% U0039D%
\expandafter\def\csname EntNopf\endcsname{\ensuremath{\mathbb{N}}}% U02115%
\expandafter\def\csname EntNotCongruent\endcsname{\ensuremath{\not\equiv }}% U02262%
\expandafter\def\csname EntNotCupCap\endcsname{\ensuremath{\not\kern-0.3em\times }}% U0226D%
\expandafter\def\csname EntNotDoubleVerticalBar\endcsname{\ensuremath{\nparallel }}% U02226%
\expandafter\def\csname EntNotElement\endcsname{\ensuremath{\not\in }}% U02209%
\expandafter\def\csname EntNotEqualTilde\endcsname{\ensuremath{\NotEqualTilde }}% U02242-00338%
\expandafter\def\csname EntNotEqual\endcsname{\ensuremath{\not =}}% U02260%
\expandafter\def\csname EntNotExists\endcsname{\ensuremath{\nexists }}% U02204%
\expandafter\def\csname EntNotGreaterEqual\endcsname{\ensuremath{\not\geq }}% U02271-020E5%
\expandafter\def\csname EntNotGreaterFullEqual\endcsname{\ensuremath{\nleqslant }}% U02270%
\expandafter\def\csname EntNotGreaterGreater\endcsname{\ensuremath{\NotGreaterGreater }}% U0226B-00338-02063%
\expandafter\def\csname EntNotGreaterLess\endcsname{\ensuremath{\notgreaterless }}% U02279%
\expandafter\def\csname EntNotGreaterSlantEqual\endcsname{\ensuremath{\ngeqslant }}% U02271%
\expandafter\def\csname EntNotGreaterTilde\endcsname{\ensuremath{\ElsevierGlyph{2275}}}% U02275%
\expandafter\def\csname EntNotGreater\endcsname{\ensuremath{\not>}}% U0226F%
\expandafter\def\csname EntNotHumpDownHump\endcsname{\ensuremath{\NotHumpDownHump }}% U0224E-00338%
\expandafter\def\csname EntNotHumpEqual\endcsname{\ensuremath{\NotHumpEqual }}% U0224F-00338%
\expandafter\def\csname EntNotLeftTriangleBar\endcsname{\ensuremath{\NotLeftTriangleBar }}% U029CF-00338%
\expandafter\def\csname EntNotLeftTriangleEqual\endcsname{\ensuremath{\ntrianglelefteq }}% U022EC%
\expandafter\def\csname EntNotLeftTriangle\endcsname{\ensuremath{\ntriangleleft }}% U022EA%
\expandafter\def\csname EntNotLessEqual\endcsname{\ensuremath{\not\leq }}% U02270-020E5%
\expandafter\def\csname EntNotLessGreater\endcsname{\ensuremath{\notlessgreater }}% U02278%
\expandafter\def\csname EntNotLessLess\endcsname{\ensuremath{\NotLessLess }}% U0226A-00338-02063%
\expandafter\def\csname EntNotLessSlantEqual\endcsname{\ensuremath{\nleqslant }}% U02270%
\expandafter\def\csname EntNotLessTilde\endcsname{\ensuremath{\ElsevierGlyph{2274}}}% U02274%
\expandafter\def\csname EntNotLess\endcsname{\ensuremath{\not<}}% U0226E%
\expandafter\def\csname EntNotNestedGreaterGreater\endcsname{\ensuremath{\NotNestedGreaterGreater }}% U024A2-00338%
\expandafter\def\csname EntNotNestedLessLess\endcsname{\ensuremath{\NotNestedLessLess }}% U024A1-00338%
\expandafter\def\csname EntNotPrecedesEqual\endcsname{\ensuremath{\not\preceq }}% U02AAF-00338%
\expandafter\def\csname EntNotPrecedesSlantEqual\endcsname{\ensuremath{}}% U022E0%
\expandafter\def\csname EntNotPrecedes\endcsname{\ensuremath{\not\prec }}% U02280%
\expandafter\def\csname EntNotReverseElement\endcsname{\ensuremath{\not\ni }}% U0220C%
\expandafter\def\csname EntNotRightTriangleBar\endcsname{\ensuremath{\NotRightTriangleBar }}% U029D0-00338%
\expandafter\def\csname EntNotRightTriangleEqual\endcsname{\ensuremath{\ntrianglerighteq }}% U022ED%
\expandafter\def\csname EntNotRightTriangle\endcsname{\ensuremath{\ntriangleright }}% U022EB%
\expandafter\def\csname EntNotSquareSubsetEqual\endcsname{\ensuremath{\not\sqsubseteq }}% U022E2%
\expandafter\def\csname EntNotSquareSubset\endcsname{\ensuremath{\NotSquareSubset }}% U0228F-00338%
\expandafter\def\csname EntNotSquareSupersetEqual\endcsname{\ensuremath{\not\sqsupseteq }}% U022E3%
\expandafter\def\csname EntNotSquareSuperset\endcsname{\ensuremath{\NotSquareSuperset }}% U02290-00338%
\expandafter\def\csname EntNotSubsetEqual\endcsname{\ensuremath{\not\subseteq }}% U02288%
\expandafter\def\csname EntNotSubset\endcsname{\ensuremath{\not\subset }}% U02284%
\expandafter\def\csname EntNotSucceedsEqual\endcsname{\ensuremath{\not\succeq }}% U02AB0-00338%
\expandafter\def\csname EntNotSucceedsSlantEqual\endcsname{\ensuremath{}}% U022E1%
\expandafter\def\csname EntNotSucceedsTilde\endcsname{\ensuremath{\NotSucceedsTilde }}% U0227F-00338%
\expandafter\def\csname EntNotSucceeds\endcsname{\ensuremath{\not\succ }}% U02281%
\expandafter\def\csname EntNotSupersetEqual\endcsname{\ensuremath{\not\supseteq }}% U02289%
\expandafter\def\csname EntNotSuperset\endcsname{\ensuremath{\not\supset }}% U02285%
\expandafter\def\csname EntNotTildeEqual\endcsname{\ensuremath{\not\simeq }}% U02244%
\expandafter\def\csname EntNotTildeFullEqual\endcsname{\ensuremath{\not\cong }}% U02247%
\expandafter\def\csname EntNotTildeTilde\endcsname{\ensuremath{\not\approx }}% U02249%
\expandafter\def\csname EntNotTilde\endcsname{\ensuremath{\not\sim }}% U02241%
\expandafter\def\csname EntNotVerticalBar\endcsname{\ensuremath{\nmid }}% U02224%
\expandafter\def\csname EntNot\endcsname{\ensuremath{}}% U02AEC%
\expandafter\def\csname EntNscr\endcsname{\ensuremath{\mathscr{N}}}% U1D4A9%
\expandafter\def\csname EntNtilde\endcsname{\ifmmode \tilde{N}\else \~{N}\fi}% U000D1%
\expandafter\def\csname EntNu\endcsname{\ensuremath{N}}% U0039D%
\expandafter\def\csname EntOElig\endcsname{\OE }% U00152%
\expandafter\def\csname EntOHacgr\endcsname{\ensuremath{\acute{\Omega}}}% U0038F%
\expandafter\def\csname EntOHgr\endcsname{\ensuremath{\Omega }}% U003A9%
\expandafter\def\csname EntOacgr\endcsname{\ifmmode \acute{O}\else \'{O}\fi}% U0038C%
\expandafter\def\csname EntOacute\endcsname{\ifmmode \acute{O}\else \'{O}\fi}% U000D3%
\expandafter\def\csname EntOcirc\endcsname{\ifmmode \hat{O}\else \^{O}\fi}% U000D4%
\expandafter\def\csname EntOcy\endcsname{\cyrchar\CYRO }% U0041E%
\expandafter\def\csname EntOdblac\endcsname{\ifmmode \mbox{\H{O}}\else \H{O}\fi}% U00150%
\expandafter\def\csname EntOfr\endcsname{\ensuremath{\mathfrak{O}}}% U1D512%
\expandafter\def\csname EntOgr\endcsname{\ensuremath{O}}% U0039F%
\expandafter\def\csname EntOgrave\endcsname{\ifmmode \grave{O}\else \`{O}\fi}% U000D2%
\expandafter\def\csname EntOmacr\endcsname{\ifmmode \bar{O}\else \={O}\fi}% U0014C%
\expandafter\def\csname EntOmega\endcsname{\ensuremath{\Omega }}% U003A9%
\expandafter\def\csname EntOmicron\endcsname{\ensuremath{O}}% U0039F%
\expandafter\def\csname EntOopf\endcsname{\ensuremath{\mathbb{O}}}% U1D546%
\expandafter\def\csname EntOpenCurlyDoubleQuote\endcsname{\textquotedblleft }% U0201C%
\expandafter\def\csname EntOpenCurlyQuote\endcsname{`}% U02018%
\expandafter\def\csname EntOr\endcsname{\ensuremath{\ElzOr }}% U02A54%
\expandafter\def\csname EntOscr\endcsname{\ensuremath{\mathscr{O}}}% U1D4AA%
\expandafter\def\csname EntOslash\endcsname{\O }% U000D8%
\expandafter\def\csname EntOtilde\endcsname{\ifmmode \tilde{O}\else \~{O}\fi}% U000D5%
\expandafter\def\csname EntOuml\endcsname{\ifmmode \ddot{O}\else \"{O}\fi}% U000D6%
\expandafter\def\csname EntOverBar\endcsname{\textasciimacron }% U000AF%
\expandafter\def\csname EntOverBrace\endcsname{\ensuremath{}}% U0FE37%
\expandafter\def\csname EntOverParenthesis\endcsname{\ensuremath{}}% U0FE35%
\expandafter\def\csname EntPHgr\endcsname{\ensuremath{\Phi }}% U003A6%
\expandafter\def\csname EntPSgr\endcsname{\ensuremath{\Psi }}% U003A8%
\expandafter\def\csname EntPartialD\endcsname{\ensuremath{\partial }}% U02202%
\expandafter\def\csname EntPcy\endcsname{\cyrchar\CYRP }% U0041F%
\expandafter\def\csname EntPfr\endcsname{\ensuremath{\mathfrak{P}}}% U1D513%
\expandafter\def\csname EntPgr\endcsname{\ensuremath{\Pi }}% U003A0%
\expandafter\def\csname EntPhi\endcsname{\ensuremath{\Phi }}% U003A6%
\expandafter\def\csname EntPi\endcsname{\ensuremath{\Pi }}% U003A0%
\expandafter\def\csname EntPlusMinus\endcsname{\ensuremath{\pm }}% U000B1%
\expandafter\def\csname EntPoincareplane\endcsname{\ensuremath{\mathfrak{H}}}% U0210C%
\expandafter\def\csname EntPopf\endcsname{\ensuremath{\mathbb{P}}}% U02119%
\expandafter\def\csname EntPr\endcsname{\ensuremath{}}% U02ABB%
\expandafter\def\csname EntPrecedesEqual\endcsname{\ensuremath{\preceq }}% U02AAF%
\expandafter\def\csname EntPrecedesSlantEqual\endcsname{\ensuremath{\preccurlyeq }}% U0227C%
\expandafter\def\csname EntPrecedesTilde\endcsname{\ensuremath{\precapprox }}% U0227E%
\expandafter\def\csname EntPrecedes\endcsname{\ensuremath{\prec }}% U0227A%
\expandafter\def\csname EntPrime\endcsname{\ensuremath{{''}}}% U02033%
\expandafter\def\csname EntProduct\endcsname{\ensuremath{\prod }}% U0220F%
\expandafter\def\csname EntProportion\endcsname{\ensuremath{\Colon }}% U02237%
\expandafter\def\csname EntProportional\endcsname{\ensuremath{\propto }}% U0221D%
\expandafter\def\csname EntPscr\endcsname{\ensuremath{\mathscr{P}}}% U1D4AB%
\expandafter\def\csname EntPsi\endcsname{\ensuremath{\Psi }}% U003A8%
\expandafter\def\csname EntQfr\endcsname{\ensuremath{\mathfrak{Q}}}% U1D514%
\expandafter\def\csname EntQopf\endcsname{\ensuremath{\mathbb{Q}}}% U0211A%
\expandafter\def\csname EntQscr\endcsname{\ensuremath{\mathscr{Q}}}% U1D4AC%
\expandafter\def\csname EntRBarr\endcsname{\ensuremath{}}% U02910%
\expandafter\def\csname EntRacute\endcsname{\ifmmode \acute{R}\else \'{R}\fi}% U00154%
\expandafter\def\csname EntRang\endcsname{\ensuremath{\ElsevierGlyph{300B}}}% U0300B%
\expandafter\def\csname EntRarr\endcsname{\ensuremath{\twoheadrightarrow }}% U021A0%
\expandafter\def\csname EntRarrtl\endcsname{\ensuremath{}}% U02916%
\expandafter\def\csname EntRcaron\endcsname{\ifmmode \check{R}\else \v{R}\fi}% U00158%
\expandafter\def\csname EntRcedil\endcsname{\ifmmode \mbox{\c{R}}\else \c{R}\fi}% U00156%
\expandafter\def\csname EntRcy\endcsname{\cyrchar\CYRR }% U00420%
\expandafter\def\csname EntRe\endcsname{\ensuremath{\mathfrak{R}}}% U0211C%
\expandafter\def\csname EntReverseElement\endcsname{\ensuremath{\ni }}% U0220B%
\expandafter\def\csname EntReverseEquilibrium\endcsname{\ensuremath{\leftrightharpoons }}% U021CB%
\expandafter\def\csname EntReverseUpEquilibrium\endcsname{\ensuremath{\ReverseUpEquilibrium }}% U0296F%
\expandafter\def\csname EntRfr\endcsname{\ensuremath{\mathfrak{R}}}% U0211C%
\expandafter\def\csname EntRgr\endcsname{\ensuremath{\Rho }}% U003A1%
\expandafter\def\csname EntRho\endcsname{\ensuremath{\Rho }}% U003A1%
\expandafter\def\csname EntRightAngleBracket\endcsname{\ensuremath{\rangle }}% U0232A%
\expandafter\def\csname EntRightArrowBar\endcsname{\ensuremath{}}% U021E5%
\expandafter\def\csname EntRightArrowLeftArrow\endcsname{\ensuremath{\rightleftarrows }}% U021C4%
\expandafter\def\csname EntRightArrow\endcsname{\ensuremath{\rightarrow }}% U02192%
\expandafter\def\csname EntRightCeiling\endcsname{\ensuremath{\rceil }}% U02309%
\expandafter\def\csname EntRightDoubleBracket\endcsname{\ensuremath{\openbracketright }}% U0301B%
\expandafter\def\csname EntRightDownTeeVector\endcsname{\ensuremath{\RightDownTeeVector }}% U0295D%
\expandafter\def\csname EntRightDownVectorBar\endcsname{\ensuremath{\RightDownVectorBar }}% U02955%
\expandafter\def\csname EntRightDownVector\endcsname{\ensuremath{\downharpoonright }}% U021C2%
\expandafter\def\csname EntRightFloor\endcsname{\ensuremath{\rfloor }}% U0230B%
\expandafter\def\csname EntRightTeeArrow\endcsname{\ensuremath{\mapsto }}% U021A6%
\expandafter\def\csname EntRightTeeVector\endcsname{\ensuremath{\RightTeeVector }}% U0295B%
\expandafter\def\csname EntRightTee\endcsname{\ensuremath{\vdash }}% U022A2%
\expandafter\def\csname EntRightTriangleBar\endcsname{\ensuremath{\RightTriangleBar }}% U029D0%
\expandafter\def\csname EntRightTriangleEqual\endcsname{\ensuremath{\trianglerighteq }}% U022B5%
\expandafter\def\csname EntRightTriangle\endcsname{\ensuremath{\vartriangleright }}% U022B3%
\expandafter\def\csname EntRightUpDownVector\endcsname{\ensuremath{\RightUpDownVector }}% U0294F%
\expandafter\def\csname EntRightUpTeeVector\endcsname{\ensuremath{\RightUpTeeVector }}% U0295C%
\expandafter\def\csname EntRightUpVectorBar\endcsname{\ensuremath{\RightUpVectorBar }}% U02954%
\expandafter\def\csname EntRightUpVector\endcsname{\ensuremath{\upharpoonright }}% U021BE%
\expandafter\def\csname EntRightVectorBar\endcsname{\ensuremath{\RightVectorBar }}% U02953%
\expandafter\def\csname EntRightVector\endcsname{\ensuremath{\rightharpoonup }}% U021C0%
\expandafter\def\csname EntRightarrow\endcsname{\ensuremath{\Rightarrow }}% U021D2%
\expandafter\def\csname EntRopf\endcsname{\ensuremath{\mathbb{R}}}% U0211D%
\expandafter\def\csname EntRoundImplies\endcsname{\ensuremath{\RoundImplies }}% U02970%
\expandafter\def\csname EntRrightarrow\endcsname{\ensuremath{\Rrightarrow }}% U021DB%
\expandafter\def\csname EntRscr\endcsname{\ensuremath{\mathscr{R}}}% U0211B%
\expandafter\def\csname EntRsh\endcsname{\ensuremath{\Rsh }}% U021B1%
\expandafter\def\csname EntRuleDelayed\endcsname{\ensuremath{\RuleDelayed }}% U029F4%
\expandafter\def\csname EntSHCHcy\endcsname{\cyrchar\CYRSHCH }% U00429%
\expandafter\def\csname EntSHcy\endcsname{\cyrchar\CYRSH }% U00428%
\expandafter\def\csname EntSOFTcy\endcsname{\cyrchar\CYRSFTSN }% U0042C%
\expandafter\def\csname EntSacute\endcsname{\ifmmode \acute{S}\else \'{S}\fi}% U0015A%
\expandafter\def\csname EntSc\endcsname{\ensuremath{}}% U02ABC%
\expandafter\def\csname EntScaron\endcsname{\ifmmode \check{S}\else \v{S}\fi}% U00160%
\expandafter\def\csname EntScedil\endcsname{\ifmmode \mbox{\c{S}}\else \c{S}\fi}% U0015E%
\expandafter\def\csname EntScirc\endcsname{\ifmmode \hat{S}\else \^{S}\fi}% U0015C%
\expandafter\def\csname EntScy\endcsname{\cyrchar\CYRS }% U00421%
\expandafter\def\csname EntSfr\endcsname{\ensuremath{\mathfrak{S}}}% U1D516%
\expandafter\def\csname EntSgr\endcsname{\ensuremath{\Sigma }}% U003A3%
\expandafter\def\csname EntSigma\endcsname{\ensuremath{\Sigma }}% U003A3%
\expandafter\def\csname EntSmallCircle\endcsname{\ensuremath{\circ }}% U02218%
\expandafter\def\csname EntSopf\endcsname{\ensuremath{\mathbb{S}}}% U1D54A%
\expandafter\def\csname EntSqrt\endcsname{\ensuremath{\surd }}% U0221A%
\expandafter\def\csname EntSquareIntersection\endcsname{\ensuremath{\sqcap }}% U02293%
\expandafter\def\csname EntSquareSubsetEqual\endcsname{\ensuremath{\sqsubseteq }}% U02291%
\expandafter\def\csname EntSquareSubset\endcsname{\ensuremath{\sqsubset }}% U0228F%
\expandafter\def\csname EntSquareSupersetEqual\endcsname{\ensuremath{\sqsupseteq }}% U02292%
\expandafter\def\csname EntSquareSuperset\endcsname{\ensuremath{\sqsupset }}% U02290%
\expandafter\def\csname EntSquareUnion\endcsname{\ensuremath{\sqcup }}% U02294%
\expandafter\def\csname EntSquare\endcsname{\ensuremath{\square }}% U025A1%
\expandafter\def\csname EntSscr\endcsname{\ensuremath{\mathscr{S}}}% U1D4AE%
\expandafter\def\csname EntStar\endcsname{\ensuremath{\star }}% U022C6%
\expandafter\def\csname EntSub\endcsname{\ensuremath{\Subset }}% U022D0%
\expandafter\def\csname EntSubsetEqual\endcsname{\ensuremath{\subseteq }}% U02286%
\expandafter\def\csname EntSubset\endcsname{\ensuremath{\Subset }}% U022D0%
\expandafter\def\csname EntSucceedsEqual\endcsname{\ensuremath{\succcurlyeq }}% U0227D%
\expandafter\def\csname EntSucceedsSlantEqual\endcsname{\ensuremath{\succcurlyeq }}% U0227D%
\expandafter\def\csname EntSucceedsTilde\endcsname{\ensuremath{\succapprox }}% U0227F%
\expandafter\def\csname EntSucceeds\endcsname{\ensuremath{\succ }}% U0227B%
\expandafter\def\csname EntSuchThat\endcsname{\ensuremath{\ni }}% U0220B%
\expandafter\def\csname EntSum\endcsname{\ensuremath{\sum }}% U02211%
\expandafter\def\csname EntSup\endcsname{\ensuremath{\Supset }}% U022D1%
\expandafter\def\csname EntSupersetEqual\endcsname{\ensuremath{\supseteq }}% U02287%
\expandafter\def\csname EntSuperset\endcsname{\ensuremath{\supset }}% U02283%
\expandafter\def\csname EntSupset\endcsname{\ensuremath{\Supset }}% U022D1%
\expandafter\def\csname EntTHORN\endcsname{\TH }% U000DE%
\expandafter\def\csname EntTHgr\endcsname{\ensuremath{\Theta }}% U00398%
\expandafter\def\csname EntTSHcy\endcsname{\cyrchar\CYRTSHE }% U0040B%
\expandafter\def\csname EntTScy\endcsname{\cyrchar\CYRC }% U00426%
\expandafter\def\csname EntTau\endcsname{\ensuremath{\Tau }}% U003A4%
\expandafter\def\csname EntTcaron\endcsname{\ifmmode \check{T}\else \v{T}\fi}% U00164%
\expandafter\def\csname EntTcedil\endcsname{\ifmmode \mbox{\c{T}}\else \c{T}\fi}% U00162%
\expandafter\def\csname EntTcy\endcsname{\cyrchar\CYRT }% U00422%
\expandafter\def\csname EntTfr\endcsname{\ensuremath{\mathfrak{T}}}% U1D517%
\expandafter\def\csname EntTgr\endcsname{\ensuremath{\Tau }}% U003A4%
\expandafter\def\csname EntTherefore\endcsname{\ensuremath{\therefore }}% U02234%
\expandafter\def\csname EntTheta\endcsname{\ensuremath{\Theta }}% U00398%
\expandafter\def\csname EntThickSpace\endcsname{\ensuremath{\;}}% U02005x%
\expandafter\def\csname EntThinSpace\endcsname{\hspace{0.167em}}% U02009%
\expandafter\def\csname EntTildeEqual\endcsname{\ensuremath{\simeq }}% U02243%
\expandafter\def\csname EntTildeFullEqual\endcsname{\ensuremath{\cong }}% U02245%
\expandafter\def\csname EntTildeTilde\endcsname{\ensuremath{\approx }}% U02248%
\expandafter\def\csname EntTilde\endcsname{\ensuremath{\sim }}% U0223C%
\expandafter\def\csname EntTopf\endcsname{\ensuremath{\mathbb{T}}}% U1D54B%
\expandafter\def\csname EntTripleDot\endcsname{\ensuremath{\dddot{}}}% U020DB%
\expandafter\def\csname EntTscr\endcsname{\ensuremath{\mathscr{T}}}% U1D4AF%
\expandafter\def\csname EntTstrok\endcsname{{\fontencoding{LELA}\selectfont\char47}}% U00166%
\expandafter\def\csname EntUacgr\endcsname{\ensuremath{\acute{Y}}}% U0038E%
\expandafter\def\csname EntUacute\endcsname{\ifmmode \acute{U}\else \'{U}\fi}% U000DA%
\expandafter\def\csname EntUarr\endcsname{\ensuremath{}}% U0219F%
\expandafter\def\csname EntUarrocir\endcsname{\ensuremath{}}% U02949%
\expandafter\def\csname EntUbrcy\endcsname{\cyrchar\CYRUSHRT }% U0040E%
\expandafter\def\csname EntUbreve\endcsname{\ifmmode \breve{U}\else \u{U}\fi}% U0016C%
\expandafter\def\csname EntUcirc\endcsname{\ifmmode \hat{U}\else \^{U}\fi}% U000DB%
\expandafter\def\csname EntUcy\endcsname{\cyrchar\CYRU }% U00423%
\expandafter\def\csname EntUdblac\endcsname{\ifmmode \mbox{\H{U}}\else \H{U}\fi}% U00170%
\expandafter\def\csname EntUdigr\endcsname{\ensuremath{\ddot{U}}}% U003AB%
\expandafter\def\csname EntUfr\endcsname{\ensuremath{\mathfrak{U}}}% U1D518%
\expandafter\def\csname EntUgr\endcsname{\ensuremath{\Upsilon }}% U003A5%
\expandafter\def\csname EntUgrave\endcsname{\ifmmode \grave{U}\else \`{U}\fi}% U000D9%
\expandafter\def\csname EntUmacr\endcsname{\ifmmode \bar{U}\else \={U}\fi}% U0016A%
\expandafter\def\csname EntUnderBrace\endcsname{\ensuremath{}}% U0FE38%
\expandafter\def\csname EntUnderParenthesis\endcsname{\ensuremath{}}% U0FE36%
\expandafter\def\csname EntUnionPlus\endcsname{\ensuremath{\uplus }}% U0228E%
\expandafter\def\csname EntUnion\endcsname{\ensuremath{\bigcup }}% U022C3%
\expandafter\def\csname EntUogon\endcsname{\ifmmode \k{U}\else \k{U}\fi}% U00172%
\expandafter\def\csname EntUopf\endcsname{\ensuremath{\mathbb{U}}}% U1D54C%
\expandafter\def\csname EntUpArrowBar\endcsname{\ensuremath{\UpArrowBar }}% U02912%
\expandafter\def\csname EntUpArrowDownArrow\endcsname{\ensuremath{\dblarrowupdown }}% U021C5%
\expandafter\def\csname EntUpArrow\endcsname{\ensuremath{\uparrow }}% U02191%
\expandafter\def\csname EntUpDownArrow\endcsname{\ensuremath{\updownarrow }}% U02195%
\expandafter\def\csname EntUpEquilibrium\endcsname{\ensuremath{\UpEquilibrium }}% U0296E%
\expandafter\def\csname EntUpTee\endcsname{\ensuremath{\perp }}% U022A5%
\expandafter\def\csname EntUparrow\endcsname{\ensuremath{\Uparrow }}% U021D1%
\expandafter\def\csname EntUpdownarrow\endcsname{\ensuremath{\Updownarrow }}% U021D5%
\expandafter\def\csname EntUpperLeftArrow\endcsname{\ensuremath{\nwarrow }}% U02196%
\expandafter\def\csname EntUpperRightArrow\endcsname{\ensuremath{\nearrow }}% U02197%
\expandafter\def\csname EntUpsi\endcsname{\ensuremath{\Upsilon }}% U003D2%
\expandafter\def\csname EntUpsih\endcsname{\ensuremath{\Upsilon }}% U003D2%
\expandafter\def\csname EntUpsilon\endcsname{\ensuremath{\Upsilon }}% U003A5%
\expandafter\def\csname EntUpsilon\endcsname{\ensuremath{\Upsilon }}% U003D2%
\expandafter\def\csname EntUring\endcsname{\ifmmode \mathring{U}\else \r{U}\fi}% U0016E%
\expandafter\def\csname EntUscr\endcsname{\ensuremath{\mathscr{U}}}% U1D4B0%
\expandafter\def\csname EntUtilde\endcsname{\ifmmode \tilde{U}\else \~{U}\fi}% U00168%
\expandafter\def\csname EntUuml\endcsname{\ifmmode \ddot{U}\else \"{U}\fi}% U000DC%
\expandafter\def\csname EntVDash\endcsname{\ensuremath{\VDash }}% U022AB%
\expandafter\def\csname EntVbar\endcsname{\ensuremath{\ElsevierGlyph{E30D}}}% U02AEB%
\expandafter\def\csname EntVcy\endcsname{\cyrchar\CYRV }% U00412%
\expandafter\def\csname EntVdash\endcsname{\ensuremath{\Vdash }}% U022A9%
\expandafter\def\csname EntVdashl\endcsname{\ensuremath{}}% U02AE6%
\expandafter\def\csname EntVee\endcsname{\ensuremath{\ElsevierGlyph{22C1}}}% U022C1%
\expandafter\def\csname EntVerbar\endcsname{\ensuremath{\Vert }}% U02016%
\expandafter\def\csname EntVert\endcsname{\ensuremath{\Vert }}% U02016%
\expandafter\def\csname EntVerticalBar\endcsname{\ensuremath{\mid }}% U02223%
\expandafter\def\csname EntVerticalTilde\endcsname{\ensuremath{\wr }}% U02240%
\expandafter\def\csname EntVeryThinSpace\endcsname{\ensuremath{\mkern1mu }}% U0200A%
\expandafter\def\csname EntVfr\endcsname{\ensuremath{\mathfrak{V}}}% U1D519%
\expandafter\def\csname EntVopf\endcsname{\ensuremath{\mathbb{V}}}% U1D54D%
\expandafter\def\csname EntVscr\endcsname{\ensuremath{\mathscr{V}}}% U1D4B1%
\expandafter\def\csname EntVvdash\endcsname{\ensuremath{\Vvdash }}% U022AA%
\expandafter\def\csname EntWcirc\endcsname{\ifmmode \hat{W}\else \^{W}\fi}% U00174%
\expandafter\def\csname EntWedge\endcsname{\ensuremath{\ElsevierGlyph{22C0}}}% U022C0%
\expandafter\def\csname EntWfr\endcsname{\ensuremath{\mathfrak{W}}}% U1D51A%
\expandafter\def\csname EntWopf\endcsname{\ensuremath{\mathbb{W}}}% U1D54E%
\expandafter\def\csname EntWscr\endcsname{\ensuremath{\mathscr{W}}}% U1D4B2%
\expandafter\def\csname EntXfr\endcsname{\ensuremath{\mathfrak{X}}}% U1D51B%
\expandafter\def\csname EntXgr\endcsname{\ensuremath{\Xi }}% U0039E%
\expandafter\def\csname EntXi\endcsname{\ensuremath{\Xi }}% U0039E%
\expandafter\def\csname EntXopf\endcsname{\ensuremath{\mathbb{X}}}% U1D54F%
\expandafter\def\csname EntXscr\endcsname{\ensuremath{\mathscr{X}}}% U1D4B3%
\expandafter\def\csname EntYAcy\endcsname{\cyrchar\CYRYA }% U0042F%
\expandafter\def\csname EntYIcy\endcsname{\cyrchar\CYRYI }% U00407%
\expandafter\def\csname EntYUcy\endcsname{\cyrchar\CYRYU }% U0042E%
\expandafter\def\csname EntYacute\endcsname{\ifmmode \acute{Y}\else \'{Y}\fi}% U000DD%
\expandafter\def\csname EntYcirc\endcsname{\ifmmode \hat{Y}\else \^{Y}\fi}% U00176%
\expandafter\def\csname EntYcy\endcsname{\cyrchar\CYRERY }% U0042B%
\expandafter\def\csname EntYfr\endcsname{\ensuremath{\mathfrak{Y}}}% U1D51C%
\expandafter\def\csname EntYopf\endcsname{\ensuremath{\mathbb{Y}}}% U1D550%
\expandafter\def\csname EntYscr\endcsname{\ensuremath{\mathscr{Y}}}% U1D4B4%
\expandafter\def\csname EntYuml\endcsname{\ifmmode \ddot{Y}\else \"{Y}\fi}% U00178%
\expandafter\def\csname EntZHcy\endcsname{\cyrchar\CYRZH }% U00416%
\expandafter\def\csname EntZacute\endcsname{\ifmmode \acute{Z}\else \'{Z}\fi}% U00179%
\expandafter\def\csname EntZcaron\endcsname{\ifmmode \check{Z}\else \v{Z}\fi}% U0017D%
\expandafter\def\csname EntZcy\endcsname{\cyrchar\CYRZ }% U00417%
\expandafter\def\csname EntZdot\endcsname{\ifmmode \dot{Z}\else \.{Z}\fi}% U0017B%
\expandafter\def\csname EntZeta\endcsname{\ensuremath{\Zeta }}% U00396%
\expandafter\def\csname EntZfr\endcsname{\ensuremath{\mathfrak{Z}}}% U02128%
\expandafter\def\csname EntZgr\endcsname{\ensuremath{\Zeta }}% U00396%
\expandafter\def\csname EntZopf\endcsname{\ensuremath{\mathbb{Z}}}% U02124%
\expandafter\def\csname EntZscr\endcsname{\ensuremath{\mathscr{Z}}}% U1D4B5%
\expandafter\def\csname Entaacgr\endcsname{\ifmmode \acute{\alpha}\else \'{$\alpha$}\fi}% U003AC%
\expandafter\def\csname Entaacute\endcsname{\ifmmode \acute{a}\else \'{a}\fi}% U000E1%
\expandafter\def\csname Entabreve\endcsname{\ifmmode \u{a}\else \u{a}\fi}% U00103%
\expandafter\def\csname Entac\endcsname{\ensuremath{}}% U0290F%
\expandafter\def\csname Entac\endcsname{\ensuremath{}}% U029D8%
\expandafter\def\csname Entacirc\endcsname{\ifmmode \hat{a}\else \^{a}\fi}% U000E2%
\expandafter\def\csname Entactuary\endcsname{\ensuremath{}}% U020E7%
\expandafter\def\csname Entacute\endcsname{\textasciiacute }% U000B4%
\expandafter\def\csname Entacy\endcsname{\cyrchar\cyra }% U00430%
\expandafter\def\csname Entaelig\endcsname{\ae }% U000E6%
\expandafter\def\csname Entafr\endcsname{\ensuremath{\mathfrak{a}}}% U1D51E%
\expandafter\def\csname Entagr\endcsname{\ensuremath{\alpha }}% U003B1%
\expandafter\def\csname Entagrave\endcsname{\ifmmode \grave{a}\else \`{a}\fi}% U000E0%
\expandafter\def\csname Entalefsym\endcsname{\ensuremath{\aleph }}% U02135%
\expandafter\def\csname Entaleph\endcsname{\ensuremath{\aleph }}% U02135%
\expandafter\def\csname Entalpha\endcsname{\ensuremath{\alpha }}% U003B1%
\expandafter\def\csname Entamacr\endcsname{\ifmmode \bar{a}\else \={a}\fi}% U00101%
\expandafter\def\csname Entamalg\endcsname{\ensuremath{\amalg }}% U02A3F%
\expandafter\def\csname Entamp\endcsname{\&}% U00026%
\expandafter\def\csname Entand\endcsname{\ensuremath{\wedge }}% U02227%
\expandafter\def\csname Entandand\endcsname{\ensuremath{\ElsevierGlyph{E36E}}}% U02A55%
\expandafter\def\csname Entandslope\endcsname{\ensuremath{}}% U02A58%
\expandafter\def\csname Entang90\endcsname{\ensuremath{\rightangle }}% U0221F%
\expandafter\def\csname Entang\endcsname{\ensuremath{\angle }}% U02220%
\expandafter\def\csname Entangdnl\endcsname{\ensuremath{}}% U029A2%
\expandafter\def\csname Entangdnr\endcsname{\ensuremath{}}% U0299F%
\expandafter\def\csname Entangle\endcsname{\ensuremath{\angle }}% U02220%
\expandafter\def\csname Entangles\endcsname{\ensuremath{}}% U0299E%
\expandafter\def\csname Entangmsd\endcsname{\ensuremath{\measuredangle }}% U02221%
\expandafter\def\csname Entangrt\endcsname{\ensuremath{\rightangle }}% U0221F%
\expandafter\def\csname Entangsph\endcsname{\ensuremath{\sphericalangle }}% U02222%
\expandafter\def\csname Entangst\endcsname{\AA }% U0212B%
\expandafter\def\csname Entangupl\endcsname{\ensuremath{}}% U029A3%
\expandafter\def\csname Entaogon\endcsname{\k{a}}% U00105%
\expandafter\def\csname Entaopf\endcsname{\ensuremath{\mathbb{a}}}% U1D552%
\expandafter\def\csname EntapE\endcsname{\ensuremath{\approxeq }}% U0224A%
\expandafter\def\csname EntapE\endcsname{\ensuremath{}}% U02A70%
\expandafter\def\csname Entap\endcsname{\ensuremath{\approx }}% U02248%
\expandafter\def\csname Entapacir\endcsname{\ensuremath{}}% U02A6F%
\expandafter\def\csname Entape\endcsname{\ensuremath{\approxeq }}% U0224A%
\expandafter\def\csname Entapid\endcsname{\ensuremath{\tildetrpl }}% U0224B%
\expandafter\def\csname Entapos\endcsname{\textquotesingle }% U00027%
\expandafter\def\csname Entapprox\endcsname{\ensuremath{\approx }}% U02248%
\expandafter\def\csname Entapproxeq\endcsname{\ensuremath{\approxeq }}% U0224A%
\expandafter\def\csname Entaring\endcsname{\aa }% U000E5%
\expandafter\def\csname Entarrllsr\endcsname{\ensuremath{}}% U02943%
\expandafter\def\csname Entarrlrsl\endcsname{\ensuremath{\ElzRlarr }}% U02942%
\expandafter\def\csname Entarrsrll\endcsname{\ensuremath{\ElzrLarr }}% U02944%
\expandafter\def\csname Entascr\endcsname{\ensuremath{\mathscr{a}}}% U1D4B6%
\expandafter\def\csname Entast\endcsname{\ensuremath{\ast }}% U0002A%
\expandafter\def\csname Entastb\endcsname{\ensuremath{}}% U029C6%
\expandafter\def\csname Entasymp\endcsname{\ensuremath{\asymp }}% U0224D%
\expandafter\def\csname Entatilde\endcsname{\ifmmode \tilde{a}\else \~{a}\fi}% U000E3%
\expandafter\def\csname Entauml\endcsname{\ifmmode \ddot{a}\else \"{a}\fi}% U000E4%
\expandafter\def\csname Entawconint\endcsname{\ensuremath{\ElsevierGlyph{2233}}}% U02233%
\expandafter\def\csname Entb.Gamma\endcsname{\ensuremath{\mathbf{\Gamma}}}% U1D6AA%
\expandafter\def\csname Entb.alpha\endcsname{\ensuremath{\mathbf{\Alpha}}}% U1D6C2%
\expandafter\def\csname Entb.beta\endcsname{\ensuremath{\mathbf{\Beta}}}% U1D6C3%
\expandafter\def\csname Entb.delta\endcsname{\ensuremath{\mathbf{\Delta}}}% U1D6C5%
\expandafter\def\csname Entb.epsi\endcsname{\ensuremath{\mathbf{\Epsilon}}}% U1D6C6%
\expandafter\def\csname Entb.eta\endcsname{\ensuremath{\mathbf{\Eta}}}% U1D6C8%
\expandafter\def\csname Entb.gamma\endcsname{\ensuremath{\mathbf{\Gamma}}}% U1D6C4%
\expandafter\def\csname Entb.iota\endcsname{\ensuremath{\mathbf{\Iota}}}% U1D6CA%
\expandafter\def\csname Entb.kappa\endcsname{\ensuremath{\mathbf{\Kappa}}}% U1D6CB%
\expandafter\def\csname Entb.lambda\endcsname{\ensuremath{\mathbf{\Lambda}}}% U1D6CC%
\expandafter\def\csname Entb.mu\endcsname{\ensuremath{M}}% U1D6CD%
\expandafter\def\csname Entb.nu\endcsname{\ensuremath{N}}% U1D6CE%
\expandafter\def\csname Entb.pi\endcsname{\ensuremath{\mathbf{\Pi}}}% U1D6D1%
\expandafter\def\csname Entb.rho\endcsname{\ensuremath{\mathbf{\Rho}}}% U1D6D2%
\expandafter\def\csname Entb.thetas\endcsname{\ensuremath{\mathbf{\theta}}}% U1D6C9%
\expandafter\def\csname Entb.xi\endcsname{\ensuremath{\mathbf{\Xi}}}% U1D6CF%
\expandafter\def\csname Entb.zeta\endcsname{\ensuremath{\mathbf{\Zeta}}}% U1D6C7%
\expandafter\def\csname EntbNot\endcsname{\ensuremath{}}% U02AED%
\expandafter\def\csname Entbackcong\endcsname{\ensuremath{\allequal }}% U0224C%
\expandafter\def\csname Entbackepsilon\endcsname{\ensuremath{\backepsilon }}% U0213C%
\expandafter\def\csname Entbackprime\endcsname{\ensuremath{\backprime }}% U02035%
\expandafter\def\csname Entbacksim\endcsname{\ensuremath{\backsim }}% U0223D%
\expandafter\def\csname Entbacksimeq\endcsname{\ensuremath{\backsimeq }}% U022CD%
\expandafter\def\csname EntbarV\endcsname{\ensuremath{}}% U02AEA%
\expandafter\def\csname Entbarwed\endcsname{\ensuremath{\barwedge }}% U022BC%
\expandafter\def\csname Entbarwedge\endcsname{\ensuremath{\barwedge }}% U022BC%
\expandafter\def\csname Entbbrktbrk\endcsname{\ensuremath{}}% U023B6%
\expandafter\def\csname Entbcong\endcsname{\ensuremath{\Elbcong }}% U02A6E%
\expandafter\def\csname Entbcong\endcsname{\ensuremath{\allequal }}% U0224C%
\expandafter\def\csname Entbcy\endcsname{\cyrchar\cyrb }% U00431%
\expandafter\def\csname Entbdlhar\endcsname{\ensuremath{\LeftDownTeeVector }}% U02961%
\expandafter\def\csname Entbdquo\endcsname{,,}% U0201E%
\expandafter\def\csname Entbdrhar\endcsname{\ensuremath{\RightDownTeeVector }}% U0295D%
\expandafter\def\csname Entbecaus\endcsname{\ensuremath{\because }}% U02235%
\expandafter\def\csname Entbecause\endcsname{\ensuremath{\because }}% U02235%
\expandafter\def\csname Entbepsi\endcsname{\ensuremath{\backepsilon }}% U0213C%
\expandafter\def\csname Entbernou\endcsname{\ensuremath{\mathscr{B}}}% U0212C%
\expandafter\def\csname Entbeta\endcsname{\ensuremath{\beta }}% U003B2%
\expandafter\def\csname Entbeth\endcsname{\ensuremath{\beth }}% U02136%
\expandafter\def\csname Entbetween\endcsname{\ensuremath{\between }}% U0226C%
\expandafter\def\csname Entbfr\endcsname{\ensuremath{\mathfrak{b}}}% U1D51F%
\expandafter\def\csname Entbgr\endcsname{\ensuremath{\beta }}% U003B2%
\expandafter\def\csname Entbigcap\endcsname{\ensuremath{\bigcap }}% U022C2%
\expandafter\def\csname Entbigcirc\endcsname{\ensuremath{\bigcirc }}% U025EF%
\expandafter\def\csname Entbigcup\endcsname{\ensuremath{\bigcup }}% U022C3%
\expandafter\def\csname Entbigodot\endcsname{\ensuremath{\odot }}% U02299%
\expandafter\def\csname Entbigoplus\endcsname{\ensuremath{\oplus }}% U02295%
\expandafter\def\csname Entbigotimes\endcsname{\ensuremath{\otimes }}% U02297%
\expandafter\def\csname Entbigsqcup\endcsname{\ensuremath{\sqcup }}% U02294%
\expandafter\def\csname Entbigstar\endcsname{\ding{72}}% U02605%
\expandafter\def\csname Entbigtriangledown\endcsname{\ensuremath{\bigtriangledown }}% U025BD%
\expandafter\def\csname Entbigtriangleup\endcsname{\ensuremath{\bigtriangleup }}% U025B3%
\expandafter\def\csname Entbiguplus\endcsname{\ensuremath{\uplus }}% U0228E%
\expandafter\def\csname Entbigvee\endcsname{\ensuremath{\ElsevierGlyph{22C1}}}% U022C1%
\expandafter\def\csname Entbigwedge\endcsname{\ensuremath{\ElsevierGlyph{22C0}}}% U022C0%
\expandafter\def\csname Entblacklozenge\endcsname{\ensuremath{\blacklozenge }}% U029EB%
\expandafter\def\csname Entblacksquare\endcsname{\ensuremath{\blacksquare }}% U025AA%
\expandafter\def\csname Entblacktriangle\endcsname{\ensuremath{\blacktriangle }}% U025B4%
\expandafter\def\csname Entblacktriangledown\endcsname{\ensuremath{\blacktriangledown }}% U025BE%
\expandafter\def\csname Entblacktriangleleft\endcsname{\ensuremath{\blacktriangleleft }}% U025C2%
\expandafter\def\csname Entblacktriangleright\endcsname{\ensuremath{\blacktriangleright }}% U025B8%
\expandafter\def\csname Entblank\endcsname{\textvisiblespace }% U02423%
\expandafter\def\csname Entbldhar\endcsname{\ensuremath{\DownLeftTeeVector }}% U0295E%
\expandafter\def\csname Entbluhar\endcsname{\ensuremath{\LeftTeeVector }}% U0295A%
\expandafter\def\csname Entbne\endcsname{\ensuremath{}}% U0003D-020E5%
\expandafter\def\csname Entbnequiv\endcsname{\ensuremath{}}% U02261-020E5%
\expandafter\def\csname Entbopf\endcsname{\ensuremath{\mathbb{b}}}% U1D553%
\expandafter\def\csname Entbot\endcsname{\ensuremath{\perp }}% U022A5%
\expandafter\def\csname Entbottom\endcsname{\ensuremath{\perp }}% U022A5%
\expandafter\def\csname Entbowtie\endcsname{\ensuremath{\bowtie }}% U022C8%
\expandafter\def\csname Entboxminus\endcsname{\ensuremath{\boxminus }}% U0229F%
\expandafter\def\csname Entboxplus\endcsname{\ensuremath{\boxplus }}% U0229E%
\expandafter\def\csname Entboxtimes\endcsname{\ensuremath{\boxtimes }}% U022A0%
\expandafter\def\csname Entbprime\endcsname{\ensuremath{\backprime }}% U02035%
\expandafter\def\csname Entbrdhar\endcsname{\ensuremath{\DownRightTeeVector }}% U0295F%
\expandafter\def\csname Entbreve\endcsname{\ifmmode \u\else \textasciibreve \fi}% U002D8%
\expandafter\def\csname Entbruhar\endcsname{\ensuremath{\RightTeeVector }}% U0295B%
\expandafter\def\csname Entbrvbar\endcsname{\textbrokenbar }% U000A6%
\expandafter\def\csname Entbscr\endcsname{\ensuremath{\mathscr{b}}}% U1D4B7%
\expandafter\def\csname Entbsim\endcsname{\ensuremath{\backsim }}% U0223D%
\expandafter\def\csname Entbsime\endcsname{\ensuremath{\backsimeq }}% U022CD%
\expandafter\def\csname Entbsol\endcsname{\ifmmode \backslash \else \textbackslash \fi}% U0005C%
\expandafter\def\csname Entbsolb\endcsname{\ensuremath{}}% U029C5%
\expandafter\def\csname Entbsolhsub\endcsname{\ensuremath{}}% U0005C-02282%
\expandafter\def\csname Entbtimes\endcsname{\ensuremath{}}% U02A32%
\expandafter\def\csname Entbulhar\endcsname{\ensuremath{\LeftUpTeeVector }}% U02960%
\expandafter\def\csname Entbull\endcsname{\ifmmode \bullet\else \textbullet \fi}% U02022%
\expandafter\def\csname Entbullet\endcsname{\ifmmode \bullet\else \textbullet \fi}% U02022%
\expandafter\def\csname EntbumpE\endcsname{\ensuremath{}}% U02AAE%
\expandafter\def\csname Entbump\endcsname{\ensuremath{\Bumpeq }}% U0224E%
\expandafter\def\csname Entbumpe\endcsname{\ensuremath{\bumpeq }}% U0224F%
\expandafter\def\csname Entbumpeq\endcsname{\ensuremath{\bumpeq }}% U0224F%
\expandafter\def\csname Entburhar\endcsname{\ensuremath{\RightUpTeeVector }}% U0295C%
\expandafter\def\csname Entcacute\endcsname{\ifmmode \acute{c}\else \'{c}\fi}% U00107%
\expandafter\def\csname Entcap\endcsname{\ensuremath{\cap }}% U02229%
\expandafter\def\csname Entcapint\endcsname{\ensuremath{}}% U02A19%
\expandafter\def\csname Entcaret\endcsname{\ensuremath{}}% U02041%
\expandafter\def\csname Entcaron\endcsname{\textasciicaron }% U002C7%
\expandafter\def\csname Entccaron\endcsname{\ifmmode \check{c}\else \v{c}\fi}% U0010D%
\expandafter\def\csname Entccedil\endcsname{\ifmmode \mbox{\c{c}}\else \c{c}\fi}% U000E7%
\expandafter\def\csname Entccirc\endcsname{\ifmmode \hat{c}\else \^{c}\fi}% U00109%
\expandafter\def\csname Entcdot\endcsname{\ifmmode \dot{c}\else \.{c}\fi}% U0010B%
\expandafter\def\csname Entcedil\endcsname{\ifmmode \mbox{\c{}}\else \c{}\fi}% U000B8%
\expandafter\def\csname Entcent\endcsname{\ifmmode \mbox{\textcent}\else \textcent \fi}% U000A2%
\expandafter\def\csname Entcenterdot\endcsname{\ensuremath{\cdot }}% U000B7%
\expandafter\def\csname Entcfr\endcsname{\ensuremath{\mathfrak{c}}}% U1D520%
\expandafter\def\csname Entchcy\endcsname{\cyrchar\cyrch }% U00447%
\expandafter\def\csname Entcheck\endcsname{\ding{51}}% U02713%
\expandafter\def\csname Entcheckmark\endcsname{\ding{51}}% U02713%
\expandafter\def\csname Entchi\endcsname{\ensuremath{\chi }}% U003C7%
\expandafter\def\csname EntcirE\endcsname{\ensuremath{}}% U029C3%
\expandafter\def\csname Entcir\endcsname{\ensuremath{\bigcirc }}% U025CB%
\expandafter\def\csname Entcirb\endcsname{\ensuremath{}}% U029C7%
\expandafter\def\csname Entcirc\endcsname{\^{}}% U0005E%
\expandafter\def\csname Entcirceq\endcsname{\ensuremath{\circeq }}% U02257%
\expandafter\def\csname Entcirclearrowleft\endcsname{\ensuremath{\circlearrowleft }}% U021BA%
\expandafter\def\csname Entcirclearrowright\endcsname{\ensuremath{\circlearrowright }}% U021BB%
\expandafter\def\csname EntcircledR\endcsname{\ifmmode \circledR \else \textregistered \fi}% U000AE%
\expandafter\def\csname EntcircledS\endcsname{\ensuremath{\circledS }}% U024C8%
\expandafter\def\csname Entcircledast\endcsname{\ensuremath{\circledast }}% U0229B%
\expandafter\def\csname Entcircledcirc\endcsname{\ensuremath{\circledcirc }}% U0229A%
\expandafter\def\csname Entcircleddash\endcsname{\ensuremath{\circleddash }}% U0229D%
\expandafter\def\csname Entcire\endcsname{\ensuremath{\circeq }}% U02257%
\expandafter\def\csname Entcirfnint\endcsname{\ensuremath{\ElsevierGlyph{E395}}}% U02A10%
\expandafter\def\csname Entcirmid\endcsname{\ensuremath{}}% U02AEF%
\expandafter\def\csname Entcirscir\endcsname{\ensuremath{}}% U029C2%
\expandafter\def\csname Entclosur\endcsname{\ensuremath{}}% U029E6%
\expandafter\def\csname Entclubs\endcsname{\ding{168}}% U02663%
\expandafter\def\csname Entclubsuit\endcsname{\ding{168}}% U02663%
\expandafter\def\csname Entcolon\endcsname{:}% U0003A%
\expandafter\def\csname Entcolone\endcsname{:=}% U02254%
\expandafter\def\csname Entcoloneq\endcsname{:=}% U02254%
\expandafter\def\csname Entcomma\endcsname{,}% U0002C%
\expandafter\def\csname Entcommat\endcsname{@}% U00040%
\expandafter\def\csname Entcomp\endcsname{\ensuremath{\complement }}% U02201%
\expandafter\def\csname Entcompfn\endcsname{\ensuremath{\circ }}% U02218%
\expandafter\def\csname Entcomplement\endcsname{\ensuremath{\complement }}% U02201%
\expandafter\def\csname Entcomplexes\endcsname{\ensuremath{\mathbb{C}}}% U02102%
\expandafter\def\csname Entcong\endcsname{\ensuremath{\cong }}% U02245%
\expandafter\def\csname Entcongdot\endcsname{\ensuremath{}}% U02A6D%
\expandafter\def\csname Entconint\endcsname{\ensuremath{\oint }}% U0222E%
\expandafter\def\csname Entcopf\endcsname{\ensuremath{\mathbb{c}}}% U1D554%
\expandafter\def\csname Entcoprod\endcsname{\ensuremath{\coprod }}% U02210%
\expandafter\def\csname Entcopy\endcsname{\ifmmode \copyright \else \textcopyright \fi}% U000A9%
\expandafter\def\csname Entcross\endcsname{\ding{55}}% U02717%
\expandafter\def\csname Entcscr\endcsname{\ensuremath{\mathscr{c}}}% U1D4B8%
\expandafter\def\csname Entcsub\endcsname{\ensuremath{}}% U02ACF%
\expandafter\def\csname Entcsube\endcsname{\ensuremath{}}% U02AD1%
\expandafter\def\csname Entcsup\endcsname{\ensuremath{}}% U02AD0%
\expandafter\def\csname Entcsupe\endcsname{\ensuremath{}}% U02AD2%
\expandafter\def\csname Entctdot\endcsname{\ensuremath{\cdots }}% U022EF%
\expandafter\def\csname Entcudarrl\endcsname{\ensuremath{}}% U02938%
\expandafter\def\csname Entcudarrr\endcsname{\ensuremath{}}% U02939%
\expandafter\def\csname Entcuepr\endcsname{\ensuremath{\curlyeqprec }}% U022DE%
\expandafter\def\csname Entcuesc\endcsname{\ensuremath{\curlyeqsucc }}% U022DF%
\expandafter\def\csname Entcularr\endcsname{\ensuremath{\curvearrowleft }}% U021B6%
\expandafter\def\csname Entcularrp\endcsname{\ensuremath{}}% U0293D%
\expandafter\def\csname Entcup\endcsname{\ensuremath{\cup }}% U0222A%
\expandafter\def\csname Entcupint\endcsname{\ensuremath{}}% U02A1A%
\expandafter\def\csname Entcupre\endcsname{\ensuremath{\preccurlyeq }}% U0227C%
\expandafter\def\csname Entcurarr\endcsname{\ensuremath{\curvearrowright }}% U021B7%
\expandafter\def\csname Entcurarrm\endcsname{\ensuremath{}}% U0293C%
\expandafter\def\csname Entcurlyeqprec\endcsname{\ensuremath{\curlyeqprec }}% U022DE%
\expandafter\def\csname Entcurlyeqsucc\endcsname{\ensuremath{\curlyeqsucc }}% U022DF%
\expandafter\def\csname Entcurlyvee\endcsname{\ensuremath{\curlyvee }}% U022CE%
\expandafter\def\csname Entcurlywedge\endcsname{\ensuremath{\curlywedge }}% U022CF%
\expandafter\def\csname Entcurren\endcsname{\ifmmode \mbox{\textcurrency}\else \textcurrency \fi}% U000A4%
\expandafter\def\csname Entcurvearrowleft\endcsname{\ensuremath{\curvearrowleft }}% U021B6%
\expandafter\def\csname Entcurvearrowright\endcsname{\ensuremath{\curvearrowright }}% U021B7%
\expandafter\def\csname Entcuvee\endcsname{\ensuremath{\curlyvee }}% U022CE%
\expandafter\def\csname Entcuwed\endcsname{\ensuremath{\curlywedge }}% U022CF%
\expandafter\def\csname Entcwconint\endcsname{\ensuremath{\ElsevierGlyph{2232}}}% U02232%
\expandafter\def\csname Entcwint\endcsname{\ensuremath{\clwintegral }}% U02231%
\expandafter\def\csname EntdAarr\endcsname{\ensuremath{}}% U0290B%
\expandafter\def\csname EntdArr\endcsname{\ensuremath{\Downarrow }}% U021D3%
\expandafter\def\csname EntdHar\endcsname{\ensuremath{}}% U02965%
\expandafter\def\csname Entdagger\endcsname{\ifmmode \dag \else \textdagger \fi}% U02020%
\expandafter\def\csname Entdaleth\endcsname{\ensuremath{\daleth }}% U02138%
\expandafter\def\csname Entdarr2\endcsname{\ensuremath{\downdownarrows }}% U021CA%
\expandafter\def\csname Entdarr\endcsname{\ensuremath{\downarrow }}% U02193%
\expandafter\def\csname Entdarrb\endcsname{\ensuremath{\DownArrowBar }}% U02913%
\expandafter\def\csname Entdarrln\endcsname{\ensuremath{}}% U02908%
\expandafter\def\csname EntdashV\endcsname{\ensuremath{}}% U02AE3%
\expandafter\def\csname Entdash\endcsname{-}% U02010%
\expandafter\def\csname Entdashv\endcsname{\ensuremath{\dashv }}% U022A3%
\expandafter\def\csname Entdbkarow\endcsname{\ensuremath{}}% U0290F%
\expandafter\def\csname Entdblac\endcsname{\ifmmode \mbox{\H{}}\else \H{}\fi}% U002DD%
\expandafter\def\csname Entdcaron\endcsname{\ifmmode \check{d}\else \v{d}\fi}% U0010F%
\expandafter\def\csname Entdcy\endcsname{\cyrchar\cyrd }% U00434%
\expandafter\def\csname Entddagger\endcsname{\ifmmode \ddag \else \textdaggerdbl \fi}% U02021%
\expandafter\def\csname Entddarr\endcsname{\ensuremath{\downdownarrows }}% U021CA%
\expandafter\def\csname Entddotseq\endcsname{\ensuremath{}}% U02A77%
\expandafter\def\csname Entdeg\endcsname{\ifmmode \mbox{\textdegree}\else \textdegree \fi}% U000B0%
\expandafter\def\csname Entdelta\endcsname{\ensuremath{\delta }}% U003B4%
\expandafter\def\csname Entdfisht\endcsname{\ensuremath{}}% U0297F%
\expandafter\def\csname Entdfr\endcsname{\ensuremath{\mathfrak{d}}}% U1D521%
\expandafter\def\csname Entdgr\endcsname{\ensuremath{\delta }}% U003B4%
\expandafter\def\csname Entdharl\endcsname{\ensuremath{\downharpoonleft }}% U021C3%
\expandafter\def\csname Entdharr\endcsname{\ensuremath{\downharpoonright }}% U021C2%
\expandafter\def\csname Entdiam\endcsname{\ensuremath{\diamond }}% U022C4%
\expandafter\def\csname Entdiamond\endcsname{\ensuremath{\diamond }}% U022C4%
\expandafter\def\csname Entdiamondsuit\endcsname{\ding{169}}% U02666%
\expandafter\def\csname Entdiamonfl\endcsname{\ensuremath{\Elzlozfl }}% XE5B9%
\expandafter\def\csname Entdiamonfr\endcsname{\ensuremath{\Elzlozfr }}% XE5BA%
\expandafter\def\csname Entdiams\endcsname{\ding{169}}% U02666%
\expandafter\def\csname Entdie\endcsname{\textasciidieresis }% U000A8%
\expandafter\def\csname Entdigamma\endcsname{\ensuremath{\Digamma }}% U003DC%
\expandafter\def\csname Entdisin\endcsname{\ensuremath{}}% U022F2%
\expandafter\def\csname Entdiv\endcsname{\ensuremath{\div }}% U000F7%
\expandafter\def\csname Entdivide\endcsname{\ensuremath{\div }}% U000F7%
\expandafter\def\csname Entdivideontimes\endcsname{\ensuremath{\divideontimes }}% U022C7%
\expandafter\def\csname Entdivonx\endcsname{\ensuremath{\divideontimes }}% U022C7%
\expandafter\def\csname Entdjcy\endcsname{\cyrchar\cyrdje }% U00452%
\expandafter\def\csname Entdlarr\endcsname{\ensuremath{\swarrow }}% U02199%
\expandafter\def\csname Entdlcorn\endcsname{\ensuremath{\llcorner }}% U0231E%
\expandafter\def\csname Entdlharb\endcsname{\ensuremath{\LeftDownVectorBar }}% U02959%
\expandafter\def\csname Entdollar\endcsname{\ifmmode \$\else \textdollar \fi}% U00024%
\expandafter\def\csname Entdopf\endcsname{\ensuremath{\mathbb{d}}}% U1D555%
\expandafter\def\csname Entdot\endcsname{\ifmmode \dot{}\else \textperiodcentered \fi}% U002D9%
\expandafter\def\csname Entdoteq\endcsname{\ensuremath{\doteq }}% U02250%
\expandafter\def\csname Entdoteqdot\endcsname{\ensuremath{\doteqdot }}% U02251%
\expandafter\def\csname Entdotminus\endcsname{\ensuremath{\ElsevierGlyph{2238}}}% U02238%
\expandafter\def\csname Entdotplus\endcsname{\ensuremath{\dotplus }}% U02214%
\expandafter\def\csname Entdotsquare\endcsname{\ensuremath{\boxdot }}% U022A1%
\expandafter\def\csname Entdoublebarwedge\endcsname{\ensuremath{\perspcorrespond }}% U02306%
\expandafter\def\csname Entdownarrow\endcsname{\ensuremath{\downarrow }}% U02193%
\expandafter\def\csname Entdowndownarrows\endcsname{\ensuremath{\downdownarrows }}% U021CA%
\expandafter\def\csname Entdownharpoonleft\endcsname{\ensuremath{\downharpoonleft }}% U021C3%
\expandafter\def\csname Entdownharpoonright\endcsname{\ensuremath{\downharpoonright }}% U021C2%
\expandafter\def\csname Entdrarr\endcsname{\ensuremath{\searrow }}% U02198%
\expandafter\def\csname Entdrbkarow\endcsname{\ensuremath{}}% U02910%
\expandafter\def\csname Entdrcorn\endcsname{\ensuremath{\lrcorner }}% U0231F%
\expandafter\def\csname Entdrharb\endcsname{\ensuremath{\RightDownVectorBar }}% U02955%
\expandafter\def\csname Entdscr\endcsname{\ensuremath{\mathscr{d}}}% U1D4B9%
\expandafter\def\csname Entdscy\endcsname{\cyrchar\cyrdze }% U00455%
\expandafter\def\csname Entdstrok\endcsname{\dj }% U00111%
\expandafter\def\csname Entdtdot\endcsname{\ensuremath{\downslopeellipsis }}% U022F1%
\expandafter\def\csname Entdtri\endcsname{\ensuremath{\triangledown }}% U025BF%
\expandafter\def\csname Entdtrif\endcsname{\ensuremath{\blacktriangledown }}% U025BE%
\expandafter\def\csname Entduarr\endcsname{\ensuremath{\DownArrowUpArrow }}% U021F5%
\expandafter\def\csname Entduhar\endcsname{\ensuremath{\ReverseUpEquilibrium }}% U0296F%
\expandafter\def\csname Entdumap\endcsname{\ensuremath{}}% U029DF%
\expandafter\def\csname Entdzcy\endcsname{\cyrchar\cyrdzhe }% U0045F%
\expandafter\def\csname Entdzigrarr\endcsname{\ensuremath{\rightsquigarrow }}% U021DD%
\expandafter\def\csname EnteDDot\endcsname{\ensuremath{}}% U02A77%
\expandafter\def\csname EnteDot\endcsname{\ensuremath{\doteqdot }}% U02251%
\expandafter\def\csname Enteacgr\endcsname{\ensuremath{\acute{\epsilon}}}% U003AD%
\expandafter\def\csname Enteacute\endcsname{\ifmmode \acute{e}\else \'{e}\fi}% U000E9%
\expandafter\def\csname Enteaster\endcsname{\ensuremath{\starequal }}% U0225B%
\expandafter\def\csname Entecaron\endcsname{\ifmmode \check{e}\else \v{e}\fi}% U0011B%
\expandafter\def\csname Entecir\endcsname{\ensuremath{\eqcirc }}% U02256%
\expandafter\def\csname Entecirc\endcsname{\ifmmode \hat{e}\else \^{e}\fi}% U000EA%
\expandafter\def\csname Entecolon\endcsname{\ensuremath{=:}}% U02255%
\expandafter\def\csname Entecy\endcsname{\cyrchar\cyrerev }% U0044D%
\expandafter\def\csname Entedot\endcsname{\ifmmode \dot{e}\else \.{e}\fi}% U00117%
\expandafter\def\csname Enteeacgr\endcsname{\ensuremath{\acute{\eta}}}% U003AE%
\expandafter\def\csname Enteegr\endcsname{\ensuremath{\eta }}% U003B7%
\expandafter\def\csname EntefDot\endcsname{\ensuremath{\fallingdotseq }}% U02252%
\expandafter\def\csname Entefr\endcsname{\ensuremath{\mathfrak{e}}}% U1D522%
\expandafter\def\csname Entegr\endcsname{\ensuremath{\epsilon }}% U003B5%
\expandafter\def\csname Entegrave\endcsname{\ifmmode \grave{e}\else \`{e}\fi}% U000E8%
\expandafter\def\csname Entegs\endcsname{\ensuremath{\eqslantgtr }}% U022DD%
\expandafter\def\csname Entegs\endcsname{\ensuremath{\eqslantgtr }}% U02A96%
\expandafter\def\csname Entegsdot\endcsname{\ensuremath{}}% U02A98%
\expandafter\def\csname Entell\endcsname{\ensuremath{\mathscr{l}}}% U02113%
\expandafter\def\csname Entels\endcsname{\ensuremath{\eqslantless }}% U022DC%
\expandafter\def\csname Entels\endcsname{\ensuremath{\eqslantless }}% U02A95%
\expandafter\def\csname Entelsdot\endcsname{\ensuremath{}}% U02A97%
\expandafter\def\csname Entemacr\endcsname{\ifmmode \bar{e}\else \={e}\fi}% U00113%
\expandafter\def\csname Entempty\endcsname{\ensuremath{\emptyset }}% U02205-02063%
\expandafter\def\csname Entempty\endcsname{\ensuremath{\varnothing }}% U02205%
\expandafter\def\csname Entemptyset\endcsname{\ensuremath{\emptyset }}% U02205-02063%
\expandafter\def\csname Entemptyv\endcsname{\ensuremath{\varnothing }}% U02205%
\expandafter\def\csname Entemsp13\endcsname{\hspace{0.33em}}% U02004%
\expandafter\def\csname Entemsp14\endcsname{\hspace{0.25em}}% U02005%
\expandafter\def\csname Entemsp\endcsname{\hspace{1em}}% U02003%
\expandafter\def\csname Enteng\endcsname{\ng }% U0014B%
\expandafter\def\csname Entensp\endcsname{\hspace{0.6em}}% U02002%
\expandafter\def\csname Enteogon\endcsname{\k{e}}% U00119%
\expandafter\def\csname Enteopf\endcsname{\ensuremath{\mathbb{e}}}% U1D556%
\expandafter\def\csname Enteparsl\endcsname{\ensuremath{}}% U029E3%
\expandafter\def\csname Entepsi\endcsname{\ensuremath{\epsilon }}% U003B5%
\expandafter\def\csname Entepsilon\endcsname{\ensuremath{\epsilon }}% U003B5%
\expandafter\def\csname Entepsis\endcsname{\ensuremath{\epsilon }}% U003B5%
\expandafter\def\csname Entepsiv\endcsname{\ensuremath{\varepsilon }}% U0025B%
\expandafter\def\csname Enteqcirc\endcsname{\ensuremath{\eqcirc }}% U02256%
\expandafter\def\csname Enteqcolon\endcsname{\ensuremath{=:}}% U02255%
\expandafter\def\csname Enteqeq\endcsname{\ensuremath{\Equal }}% U02A75%
\expandafter\def\csname Enteqsim\endcsname{\ensuremath{\ElsevierGlyph{2242}}}% U02242%
\expandafter\def\csname Enteqslantgtr\endcsname{\ensuremath{\eqslantgtr }}% U022DD%
\expandafter\def\csname Enteqslantless\endcsname{\ensuremath{\eqslantless }}% U022DC%
\expandafter\def\csname Entequals\endcsname{=}% U0003D%
\expandafter\def\csname Entequest\endcsname{\ensuremath{\ElsevierGlyph{225F}}}% U0225F%
\expandafter\def\csname EntequivDD\endcsname{\ensuremath{}}% U02A78%
\expandafter\def\csname Entequiv\endcsname{\ensuremath{\equiv }}% U02261%
\expandafter\def\csname Enteqvparsl\endcsname{\ensuremath{}}% U029E5%
\expandafter\def\csname EnterDot\endcsname{\ensuremath{\risingdotseq }}% U02253%
\expandafter\def\csname Enterarr\endcsname{\ensuremath{}}% U02971%
\expandafter\def\csname Entescr\endcsname{\ensuremath{\mathscr{e}}}% U0212F%
\expandafter\def\csname Entesdot\endcsname{\ensuremath{\doteq }}% U02250%
\expandafter\def\csname Entesim\endcsname{\ensuremath{\ElsevierGlyph{2242}}}% U02242%
\expandafter\def\csname Enteta\endcsname{\ensuremath{\eta }}% U003B7%
\expandafter\def\csname Enteth\endcsname{\dh }% U000F0%
\expandafter\def\csname Enteuml\endcsname{\ifmmode \ddot{e}\else \"{e}\fi}% U000EB%
\expandafter\def\csname Entexcl\endcsname{!}% U00021%
\expandafter\def\csname Entexist\endcsname{\ensuremath{\exists }}% U02203%
\expandafter\def\csname Entexpectation\endcsname{\ensuremath{\mathscr{E}}}% U02130%
\expandafter\def\csname Entfallingdotseq\endcsname{\ensuremath{\fallingdotseq }}% U02252%
\expandafter\def\csname Entfbowtie\endcsname{\ensuremath{}}% U029D3%
\expandafter\def\csname Entfcy\endcsname{\cyrchar\cyrf }% U00444%
\expandafter\def\csname Entfdiag\endcsname{\ensuremath{}}% U02572%
\expandafter\def\csname Entfdiordi\endcsname{\ensuremath{}}% U0292C%
\expandafter\def\csname Entfdonearr\endcsname{\ensuremath{}}% U0292F%
\expandafter\def\csname Entfemale\endcsname{\venus }% U02640%
\expandafter\def\csname Entffilig\endcsname{ffi}% U0FB03%
\expandafter\def\csname Entfflig\endcsname{ff}% U0FB00%
\expandafter\def\csname Entffllig\endcsname{ffl}% U0FB04%
\expandafter\def\csname Entffr\endcsname{\ensuremath{\mathfrak{f}}}% U1D523%
\expandafter\def\csname Entfhrglass\endcsname{\ensuremath{}}% U029D7%
\expandafter\def\csname Entfilig\endcsname{fi}% U0FB01%
\expandafter\def\csname Entflat\endcsname{\ensuremath{\flat }}% U0266D%
\expandafter\def\csname Entfllig\endcsname{fl}% U0FB02%
\expandafter\def\csname Entfnof\endcsname{\ensuremath{\mathsl{f}}}% U1D453%
\expandafter\def\csname Entfnof\endcsname{\ensuremath{f}}% U00192%
\expandafter\def\csname Entfopf\endcsname{\ensuremath{\mathbb{f}}}% U1D557%
\expandafter\def\csname Entforall\endcsname{\ensuremath{\forall }}% U02200%
\expandafter\def\csname Entfork\endcsname{\ensuremath{\pitchfork }}% U022D4%
\expandafter\def\csname Entforkv\endcsname{\ensuremath{}}% U02AD9%
\expandafter\def\csname Entfpartint\endcsname{\ensuremath{\ElzCint }}% U02A0D%
\expandafter\def\csname Entfrac12\endcsname{\textonehalf }% U000BD%
\expandafter\def\csname Entfrac13\endcsname{\ensuremath{\textfrac{1}{3}}}% U02153%
\expandafter\def\csname Entfrac14\endcsname{\textonequarter }% U000BC%
\expandafter\def\csname Entfrac15\endcsname{\ensuremath{\textfrac{1}{5}}}% U02155%
\expandafter\def\csname Entfrac16\endcsname{\ensuremath{\textfrac{1}{6}}}% U02159%
\expandafter\def\csname Entfrac18\endcsname{\ensuremath{\textfrac{1}{8}}}% U0215B%
\expandafter\def\csname Entfrac23\endcsname{\ensuremath{\textfrac{2}{3}}}% U02154%
\expandafter\def\csname Entfrac25\endcsname{\ensuremath{\textfrac{2}{5}}}% U02156%
\expandafter\def\csname Entfrac34\endcsname{\textthreequarters }% U000BE%
\expandafter\def\csname Entfrac35\endcsname{\ensuremath{\textfrac{3}{5}}}% U02157%
\expandafter\def\csname Entfrac38\endcsname{\ensuremath{\textfrac{3}{8}}}% U0215C%
\expandafter\def\csname Entfrac45\endcsname{\ensuremath{\textfrac{4}{5}}}% U02158%
\expandafter\def\csname Entfrac56\endcsname{\ensuremath{\textfrac{5}{6}}}% U0215A%
\expandafter\def\csname Entfrac58\endcsname{\ensuremath{\textfrac{5}{8}}}% U0215D%
\expandafter\def\csname Entfrac78\endcsname{\ensuremath{\textfrac{7}{8}}}% U0215E%
\expandafter\def\csname Entfrasl\endcsname{\ensuremath{}}% U02044%
\expandafter\def\csname Entfrown\endcsname{\ensuremath{\frown }}% U02322%
\expandafter\def\csname Entfscr\endcsname{\ensuremath{\mathscr{f}}}% U1D4BB%
\expandafter\def\csname EntgE\endcsname{\ensuremath{\geqq }}% U02267%
\expandafter\def\csname EntgEl\endcsname{\ensuremath{\gtreqless }}% U022DB%
\expandafter\def\csname EntgEl\endcsname{\ensuremath{\gtreqqless }}% U02A8C%
\expandafter\def\csname Entgacute\endcsname{\ifmmode \acute{g}\else \'{g}\fi}% U001F5%
\expandafter\def\csname Entgamma\endcsname{\ensuremath{\gamma }}% U003B3%
\expandafter\def\csname Entgammad\endcsname{\ensuremath{\Digamma }}% U003DC%
\expandafter\def\csname Entgammad\endcsname{\ensuremath{\digamma }}% U003DD%
\expandafter\def\csname Entgap\endcsname{\ensuremath{\greaterequivlnt }}% U02273%
\expandafter\def\csname Entgap\endcsname{\ensuremath{\gtrapprox }}% U02A86%
\expandafter\def\csname Entgbreve\endcsname{\ifmmode \breve{g}\else \u{g}\fi}% U0011F%
\expandafter\def\csname Entgcedil\endcsname{\ifmmode \mbox{\c{g}}\else \c{g}\fi}% U00123%
\expandafter\def\csname Entgcirc\endcsname{\ifmmode \hat{g}\else \^{g}\fi}% U0011D%
\expandafter\def\csname Entgcy\endcsname{\cyrchar\cyrg }% U00433%
\expandafter\def\csname Entgdot\endcsname{\ifmmode \dot{g}\else \.{g}\fi}% U00121%
\expandafter\def\csname Entge\endcsname{\ensuremath{\geq }}% U02265%
\expandafter\def\csname Entgel\endcsname{\ensuremath{\gtreqless }}% U022DB%
\expandafter\def\csname Entgeq\endcsname{\ensuremath{\geq }}% U02265%
\expandafter\def\csname Entgeqq\endcsname{\ensuremath{\geqq }}% U02267%
\expandafter\def\csname Entgeqslant\endcsname{\ensuremath{\geqslant }}% U02A7E%
\expandafter\def\csname Entges\endcsname{\ensuremath{\geqslant }}% U02A7E%
\expandafter\def\csname Entgescc\endcsname{\ensuremath{}}% U02AA9%
\expandafter\def\csname Entgesdot\endcsname{\ensuremath{}}% U02A80%
\expandafter\def\csname Entgesdoto\endcsname{\ensuremath{}}% U02A82%
\expandafter\def\csname Entgesdotol\endcsname{\ensuremath{}}% U02A84%
\expandafter\def\csname Entgesl\endcsname{\ensuremath{}}% U022DB-02063%
\expandafter\def\csname Entgesles\endcsname{\ensuremath{}}% U02A94%
\expandafter\def\csname Entgfr\endcsname{\ensuremath{\mathfrak{g}}}% U1D524%
\expandafter\def\csname Entgg\endcsname{\ensuremath{\gg }}% U0226B%
\expandafter\def\csname Entggg\endcsname{\ensuremath{\verymuchgreater }}% U022D9%
\expandafter\def\csname Entggr\endcsname{\ensuremath{\gamma }}% U003B3%
\expandafter\def\csname Entgimel\endcsname{\ensuremath{\gimel }}% U02137%
\expandafter\def\csname Entgjcy\endcsname{\cyrchar{\'\cyrg}}% U00453%
\expandafter\def\csname EntglE\endcsname{\ensuremath{}}% U02A92%
\expandafter\def\csname Entgl\endcsname{\ensuremath{\gtrless }}% U02277%
\expandafter\def\csname Entgla\endcsname{\ensuremath{}}% U02AA5%
\expandafter\def\csname Entglj\endcsname{\ensuremath{}}% U02AA4%
\expandafter\def\csname EntgnE\endcsname{\ensuremath{\gneqq }}% U02269%
\expandafter\def\csname Entgnap\endcsname{\ensuremath{\gnapprox }}% U02A8A%
\expandafter\def\csname Entgnapprox\endcsname{\ensuremath{\gnapprox }}% U02A8A%
\expandafter\def\csname Entgne\endcsname{\ensuremath{\gneq }}% U02A88%
\expandafter\def\csname Entgne\endcsname{\ensuremath{\gneqq }}% U02269%
\expandafter\def\csname Entgneq\endcsname{\ensuremath{\gneqq }}% U02269%
\expandafter\def\csname Entgneqq\endcsname{\ensuremath{\gneqq }}% U02269%
\expandafter\def\csname Entgnsim\endcsname{\ensuremath{\gnsim }}% U022E7%
\expandafter\def\csname Entgopf\endcsname{\ensuremath{\mathbb{g}}}% U1D558%
\expandafter\def\csname Entgrave\endcsname{\textasciigrave }% U00060%
\expandafter\def\csname Entgsdot\endcsname{\ensuremath{\gtrdot }}% U022D7%
\expandafter\def\csname Entgsim\endcsname{\ensuremath{\greaterequivlnt }}% U02273%
\expandafter\def\csname Entgsime\endcsname{\ensuremath{}}% U02A8E%
\expandafter\def\csname Entgsiml\endcsname{\ensuremath{}}% U02A90%
\expandafter\def\csname Entgt\endcsname{\ensuremath{>}}% U0003E%
\expandafter\def\csname Entgtcc\endcsname{\ensuremath{}}% U02AA7%
\expandafter\def\csname Entgtcir\endcsname{\ensuremath{}}% U02A7A%
\expandafter\def\csname Entgtdot\endcsname{\ensuremath{\gtrdot }}% U022D7%
\expandafter\def\csname Entgtquest\endcsname{\ensuremath{}}% U02A7C%
\expandafter\def\csname Entgtrapprox\endcsname{\ensuremath{\greaterequivlnt }}% U02273%
\expandafter\def\csname Entgtrarr\endcsname{\ensuremath{}}% U02978%
\expandafter\def\csname Entgtrdot\endcsname{\ensuremath{\gtrdot }}% U022D7%
\expandafter\def\csname Entgtreqless\endcsname{\ensuremath{\gtreqless }}% U022DB%
\expandafter\def\csname Entgtreqqless\endcsname{\ensuremath{\gtreqless }}% U022DB%
\expandafter\def\csname Entgtrless\endcsname{\ensuremath{\gtrless }}% U02277%
\expandafter\def\csname Entgtrpar\endcsname{\ensuremath{\Elzlpargt }}% U029A0%
\expandafter\def\csname Entgtrsim\endcsname{\ensuremath{\greaterequivlnt }}% U02273%
\expandafter\def\csname Entgvertneqq\endcsname{\ensuremath{\gvertneqq }}% U02269-00338%
\expandafter\def\csname EntgvnE\endcsname{\ensuremath{\gvertneqq }}% U02269-00338%
\expandafter\def\csname EnthArr\endcsname{\ensuremath{\Leftrightarrow }}% U021D4%
\expandafter\def\csname Enthairsp\endcsname{\ensuremath{\mkern1mu }}% U0200A%
\expandafter\def\csname Enthalf\endcsname{\textonehalf }% U000BD%
\expandafter\def\csname Enthamilt\endcsname{\ensuremath{\mathscr{H}}}% U0210B%
\expandafter\def\csname Enthardcy\endcsname{\cyrchar\cyrhrdsn }% U0044A%
\expandafter\def\csname Entharr\endcsname{\ensuremath{\leftrightarrow }}% U02194%
\expandafter\def\csname Entharrcir\endcsname{\ensuremath{}}% U02948%
\expandafter\def\csname Entharrw\endcsname{\ensuremath{\leftrightsquigarrow }}% U021AD%
\expandafter\def\csname Enthbar\endcsname{\ensuremath{\hslash }}% U0210Fx%
\expandafter\def\csname Enthbenzen\endcsname{\ensuremath{\Elzhex }}% XE44F%
\expandafter\def\csname Enthcirc\endcsname{\ifmmode \hat{h}\else \^{h}\fi}% U00125%
\expandafter\def\csname Enthearts\endcsname{\ding{170}}% U02665%
\expandafter\def\csname Enthellip\endcsname{\ldots }% U02026%
\expandafter\def\csname Enthercon\endcsname{\ensuremath{\hermitconjmatrix }}% U022B9%
\expandafter\def\csname Enthfr\endcsname{\ensuremath{\mathfrak{h}}}% U1D525%
\expandafter\def\csname Enthksearow\endcsname{\ensuremath{\ElsevierGlyph{E20B}}}% U02925%
\expandafter\def\csname Enthkswarow\endcsname{\ensuremath{\ElsevierGlyph{E20A}}}% U02926%
\expandafter\def\csname Enthmphdite\endcsname{\ensuremath{\Elzherma }}% XE5BC%
\expandafter\def\csname Enthoarr\endcsname{\ensuremath{}}% U021FF%
\expandafter\def\csname Enthomtht\endcsname{\ensuremath{\homothetic }}% U0223B%
\expandafter\def\csname Enthookleftarrow\endcsname{\ensuremath{\hookleftarrow }}% U021A9%
\expandafter\def\csname Enthookrightarrow\endcsname{\ensuremath{\hookrightarrow }}% U021AA%
\expandafter\def\csname Enthopf\endcsname{\ensuremath{\mathbb{h}}}% U1D559%
\expandafter\def\csname Enthorbar\endcsname{\rule{1em}{1pt}}% U02015%
\expandafter\def\csname Enthrglass\endcsname{\ensuremath{}}% U029D6%
\expandafter\def\csname Enthscr\endcsname{\ensuremath{\mathscr{h}}}% U1D4BD%
\expandafter\def\csname Enthslash\endcsname{\ensuremath{\hslash }}% U0210F%
\expandafter\def\csname Enthstrok\endcsname{\ensuremath{\Elzxh }}% U00127%
\expandafter\def\csname Enthtimes\endcsname{\ensuremath{\ElzTimes }}% U02A2F%
\expandafter\def\csname Enthyphen\endcsname{-}% U02010%
\expandafter\def\csname Entiacgr\endcsname{\ensuremath{\acute{\iota}}}% U003AF%
\expandafter\def\csname Entiacute\endcsname{\ifmmode \acute{\imath}\else \'{\i}\fi}% U000ED%
\expandafter\def\csname Enticirc\endcsname{\ifmmode \hat{\imath}\else \^{\i}\fi}% U000EE%
\expandafter\def\csname Enticy\endcsname{\cyrchar\cyri }% U00438%
\expandafter\def\csname Entidiagr\endcsname{\ensuremath{\acute{\ddot{\iota}}}}% U00390%
\expandafter\def\csname Entidigr\endcsname{\ensuremath{\ddot{\iota}}}% U003CA%
\expandafter\def\csname Entiecy\endcsname{\cyrchar\cyre }% U00435%
\expandafter\def\csname Entiexcl\endcsname{\textexclamdown }% U000A1%
\expandafter\def\csname Entiff\endcsname{\ensuremath{\ElsevierGlyph{E365}}}% U021D4xx%
\expandafter\def\csname Entifr\endcsname{\ensuremath{\mathfrak{i}}}% U1D526%
\expandafter\def\csname Entigr\endcsname{\ensuremath{\iota }}% U003B9%
\expandafter\def\csname Entigrave\endcsname{\ifmmode \grave{\imath}\else \`{\i}\fi}% U000EC%
\expandafter\def\csname Entiiint\endcsname{\ensuremath{\int\!\int\!\int }}% U0222D%
\expandafter\def\csname Entiinfin\endcsname{\ensuremath{\ElsevierGlyph{E372}}}% U029DC%
\expandafter\def\csname Entiiota\endcsname{\ensuremath{\ElsevierGlyph{2129}}}% U02129%
\expandafter\def\csname Entijlig\endcsname{ij}% U00133%
\expandafter\def\csname Entimacr\endcsname{\ifmmode \bar{\imath}\else \={\i}\fi}% U0012B%
\expandafter\def\csname Entimage\endcsname{\ensuremath{\mathfrak{I}}}% U02111%
\expandafter\def\csname Entimagline\endcsname{\ensuremath{\mathscr{I}}}% U02110%
\expandafter\def\csname Entimagpart\endcsname{\ensuremath{\mathfrak{I}}}% U02111%
\expandafter\def\csname Entimath\endcsname{\ifmmode \imath \else \i \fi}% U00131%
\expandafter\def\csname Entimof\endcsname{\ensuremath{\image }}% U022B7%
\expandafter\def\csname Entimped\endcsname{\ensuremath{\mathbb{L}}}% U1D543%
\expandafter\def\csname Entin\endcsname{\ensuremath{\in }}% U02208%
\expandafter\def\csname Entinfin\endcsname{\ensuremath{\infty }}% U0221E%
\expandafter\def\csname Entinodot\endcsname{\ifmmode \imath \else \i \fi}% U00131%
\expandafter\def\csname Entint\endcsname{\ensuremath{\int }}% U0222B%
\expandafter\def\csname Entintcal\endcsname{\ensuremath{\intercal }}% U022BA%
\expandafter\def\csname Entintegers\endcsname{\ensuremath{\mathbb{Z}}}% U02124%
\expandafter\def\csname Entintercal\endcsname{\ensuremath{\intercal }}% U022BA%
\expandafter\def\csname Entintprod\endcsname{\ensuremath{\ElsevierGlyph{E259}}}% U02A3C%
\expandafter\def\csname Entinvamp\endcsname{\ensuremath{}}% U02056%
\expandafter\def\csname Entiocy\endcsname{\cyrchar\cyryo }% U00451%
\expandafter\def\csname Entiogon\endcsname{\k{i}}% U0012F%
\expandafter\def\csname Entiopf\endcsname{\ensuremath{\mathbb{i}}}% U1D55A%
\expandafter\def\csname Entiota\endcsname{\ensuremath{\iota }}% U003B9%
\expandafter\def\csname Entiprod\endcsname{\ensuremath{\ElsevierGlyph{E259}}}% U02A3C%
\expandafter\def\csname Entiprodr\endcsname{\ensuremath{}}% U02A3D%
\expandafter\def\csname Entiquest\endcsname{\textquestiondown }% U000BF%
\expandafter\def\csname Entiscr\endcsname{\ensuremath{\mathscr{i}}}% U1D4BE%
\expandafter\def\csname EntisinE\endcsname{\ensuremath{}}% U022F9%
\expandafter\def\csname Entisin\endcsname{\ensuremath{\in }}% U02208%
\expandafter\def\csname Entisindot\endcsname{\ensuremath{}}% U022F5%
\expandafter\def\csname Entisins\endcsname{\ensuremath{}}% U022F4%
\expandafter\def\csname Entisinsv\endcsname{\ensuremath{}}% U022F3%
\expandafter\def\csname Entisinv\endcsname{\ensuremath{\in }}% U02208%
\expandafter\def\csname Entisinvb\endcsname{\ensuremath{}}% U022F8%
\expandafter\def\csname Entitilde\endcsname{\ifmmode \tilde{\imath}\else \~{\i}\fi}% U00129%
\expandafter\def\csname Entiukcy\endcsname{\cyrchar\cyrii }% U00456%
\expandafter\def\csname Entiuml\endcsname{\ifmmode \ddot{\imath}\else \"{\i}\fi}% U000EF%
\expandafter\def\csname Entjcirc\endcsname{\ifmmode \hat{\jmath}\else \^{\j}\fi}% U00135%
\expandafter\def\csname Entjcy\endcsname{\cyrchar\cyrishrt }% U00439%
\expandafter\def\csname Entjfr\endcsname{\ensuremath{\mathfrak{j}}}% U1D527%
\expandafter\def\csname Entjmath\endcsname{\ensuremath{\jmath }}% U0006A-02063%
\expandafter\def\csname Entjnodot\endcsname{\ensuremath{\jmath }}% U0006A-02063%
\expandafter\def\csname Entjopf\endcsname{\ensuremath{\mathbb{j}}}% U1D55B%
\expandafter\def\csname Entjscr\endcsname{\ensuremath{\mathscr{j}}}% U1D4BF%
\expandafter\def\csname Entjsercy\endcsname{\cyrchar\cyrje }% U00458%
\expandafter\def\csname Entjukcy\endcsname{\cyrchar\cyrie }% U00454%
\expandafter\def\csname Entkappa\endcsname{\ensuremath{\kappa }}% U003BA%
\expandafter\def\csname Entkappav\endcsname{\ensuremath{\varkappa }}% U003F0%
\expandafter\def\csname Entkcedil\endcsname{\ifmmode \mbox{\c{k}}\else \c{k}\fi}% U00137%
\expandafter\def\csname Entkcy\endcsname{\cyrchar\cyrk }% U0043A%
\expandafter\def\csname Entkfr\endcsname{\ensuremath{\mathfrak{k}}}% U1D528%
\expandafter\def\csname Entkgr\endcsname{\ensuremath{\kappa }}% U003BA%
\expandafter\def\csname Entkgreen\endcsname{{\fontencoding{LELA}\selectfont\char91}}% U00138%
\expandafter\def\csname Entkhcy\endcsname{\cyrchar\cyrh }% U00445%
\expandafter\def\csname Entkhgr\endcsname{\ensuremath{\chi }}% U003C7%
\expandafter\def\csname Entkjcy\endcsname{\cyrchar{\'\cyrk}}% U0045C%
\expandafter\def\csname Entkopf\endcsname{\ensuremath{\mathbb{k}}}% U1D55C%
\expandafter\def\csname Entkoppa\endcsname{\ensuremath{\Koppa }}% U003DE%
\expandafter\def\csname Entkscr\endcsname{\ensuremath{\mathscr{k}}}% U1D4C0%
\expandafter\def\csname EntlAarr\endcsname{\ensuremath{\Lleftarrow }}% U021DA%
\expandafter\def\csname EntlArr\endcsname{\ensuremath{\Leftarrow }}% U021D0%
\expandafter\def\csname EntlAtail\endcsname{\ensuremath{}}% U0291B%
\expandafter\def\csname EntlBarr\endcsname{\ensuremath{}}% U0290E%
\expandafter\def\csname EntlE\endcsname{\ensuremath{\leqq }}% U02266%
\expandafter\def\csname EntlEg\endcsname{\ensuremath{\lesseqgtr }}% U022DA%
\expandafter\def\csname EntlEg\endcsname{\ensuremath{\lesseqqgtr }}% U02A8B%
\expandafter\def\csname EntlHar\endcsname{\ensuremath{}}% U02962%
\expandafter\def\csname Entlacute\endcsname{\ifmmode \acute{l}\else \'{l}\fi}% U0013A%
\expandafter\def\csname Entlagran\endcsname{\ensuremath{\mathscr{L}}}% U02112%
\expandafter\def\csname Entlambda\endcsname{\ensuremath{\lambda }}% U003BB%
\expandafter\def\csname Entlang\endcsname{\ensuremath{\langle }}% U02329%
\expandafter\def\csname Entlangle\endcsname{\ensuremath{\langle }}% U02329%
\expandafter\def\csname Entlap\endcsname{\ensuremath{\lessapprox }}% U02A85%
\expandafter\def\csname Entlap\endcsname{\ensuremath{\lessequivlnt }}% U02272%
\expandafter\def\csname Entlaquo\endcsname{\ifmmode \mbox{\guillemotleft}\else \guillemotleft \fi}% U000AB%
\expandafter\def\csname Entlarr2\endcsname{\ensuremath{\leftleftarrows }}% U021C7%
\expandafter\def\csname Entlarr\endcsname{\ensuremath{\leftarrow }}% U02190%
\expandafter\def\csname Entlarrb\endcsname{\ensuremath{}}% U021E4%
\expandafter\def\csname Entlarrbfs\endcsname{\ensuremath{}}% U0291F%
\expandafter\def\csname Entlarrfs\endcsname{\ensuremath{}}% U0291D%
\expandafter\def\csname Entlarrhk\endcsname{\ensuremath{\hookleftarrow }}% U021A9%
\expandafter\def\csname Entlarrlp\endcsname{\ensuremath{\looparrowleft }}% U021AB%
\expandafter\def\csname Entlarrpl\endcsname{\ensuremath{}}% U02939%
\expandafter\def\csname Entlarrpl\endcsname{\ensuremath{}}% U02946%
\expandafter\def\csname Entlarrsim\endcsname{\ensuremath{}}% U02973%
\expandafter\def\csname Entlarrtl\endcsname{\ensuremath{\leftarrowtail }}% U021A2%
\expandafter\def\csname Entlat\endcsname{\ensuremath{}}% U02AAB%
\expandafter\def\csname Entlatail\endcsname{\ensuremath{}}% U02919%
\expandafter\def\csname Entlate\endcsname{\ensuremath{}}% U02AAD%
\expandafter\def\csname Entlates\endcsname{\ensuremath{}}% U02AAD-02063%
\expandafter\def\csname Entlbarr\endcsname{\ensuremath{}}% U0290C%
\expandafter\def\csname Entlbrace\endcsname{\ensuremath{\lbrace }}% U0007B%
\expandafter\def\csname Entlbrack\endcsname{[}% U0005B%
\expandafter\def\csname Entlcaron\endcsname{\ifmmode \check{l}\else \v{l}\fi}% U0013E%
\expandafter\def\csname Entlcedil\endcsname{\ifmmode \mbox{\c{l}}\else \c{l}\fi}% U0013C%
\expandafter\def\csname Entlceil\endcsname{\ensuremath{\lceil }}% U02308%
\expandafter\def\csname Entlcub\endcsname{\ensuremath{\lbrace }}% U0007B%
\expandafter\def\csname Entlcy\endcsname{\cyrchar\cyrl }% U0043B%
\expandafter\def\csname Entldashv\endcsname{\ensuremath{\Elzdrcorn }}% U023A6x%
\expandafter\def\csname Entldca\endcsname{\ensuremath{\ElsevierGlyph{E21A}}}% U02936%
\expandafter\def\csname Entldharb\endcsname{\ensuremath{\DownLeftVectorBar }}% U02956%
\expandafter\def\csname Entldot\endcsname{\ensuremath{\lessdot }}% U022D6%
\expandafter\def\csname Entldquo\endcsname{\textquotedblleft }% U0201C%
\expandafter\def\csname Entldquor\endcsname{,,}% U0201E%
\expandafter\def\csname Entldrdhar\endcsname{\ensuremath{}}% U02967%
\expandafter\def\csname Entldrdshar\endcsname{\ensuremath{\DownLeftRightVector }}% U02950%
\expandafter\def\csname Entldrushar\endcsname{\ensuremath{}}% U0294B%
\expandafter\def\csname Entldsh\endcsname{\ensuremath{}}% U021B2%
\expandafter\def\csname Entle\endcsname{\ensuremath{\leq }}% U02264%
\expandafter\def\csname Entleftarrow\endcsname{\ensuremath{\leftarrow }}% U02190%
\expandafter\def\csname Entleftarrowtail\endcsname{\ensuremath{\leftarrowtail }}% U021A2%
\expandafter\def\csname Entleftharpoondown\endcsname{\ensuremath{\leftharpoondown }}% U021BD%
\expandafter\def\csname Entleftharpoonup\endcsname{\ensuremath{\leftharpoonup }}% U021BC%
\expandafter\def\csname Entleftleftarrows\endcsname{\ensuremath{\leftleftarrows }}% U021C7%
\expandafter\def\csname Entleftrightarrow\endcsname{\ensuremath{\leftrightarrow }}% U02194%
\expandafter\def\csname Entleftrightarrows\endcsname{\ensuremath{\leftrightarrows }}% U021C6%
\expandafter\def\csname Entleftrightharpoons\endcsname{\ensuremath{\leftrightharpoons }}% U021CB%
\expandafter\def\csname Entleftrightsquigarrow\endcsname{\ensuremath{\leftrightsquigarrow }}% U021AD%
\expandafter\def\csname Entleftthreetimes\endcsname{\ensuremath{\leftthreetimes }}% U022CB%
\expandafter\def\csname Entleg\endcsname{\ensuremath{\lesseqgtr }}% U022DA%
\expandafter\def\csname Entleq\endcsname{\ensuremath{\leq }}% U02264%
\expandafter\def\csname Entleqq\endcsname{\ensuremath{\leqq }}% U02266%
\expandafter\def\csname Entleqslant\endcsname{\ensuremath{\leqslant }}% U02A7D%
\expandafter\def\csname Entles\endcsname{\ensuremath{\leqslant }}% U02A7D%
\expandafter\def\csname Entlescc\endcsname{\ensuremath{}}% U02AA8%
\expandafter\def\csname Entlesdot\endcsname{\ensuremath{}}% U02A7F%
\expandafter\def\csname Entlesdoto\endcsname{\ensuremath{}}% U02A81%
\expandafter\def\csname Entlesdotor\endcsname{\ensuremath{}}% U02A83%
\expandafter\def\csname Entlesg\endcsname{\ensuremath{}}% U022DA-02063%
\expandafter\def\csname Entlesges\endcsname{\ensuremath{}}% U02A93%
\expandafter\def\csname Entlessapprox\endcsname{\ensuremath{\lessequivlnt }}% U02272%
\expandafter\def\csname Entlessdot\endcsname{\ensuremath{\lessdot }}% U022D6%
\expandafter\def\csname Entlesseqgtr\endcsname{\ensuremath{\lesseqgtr }}% U022DA%
\expandafter\def\csname Entlesseqqgtr\endcsname{\ensuremath{\lesseqgtr }}% U022DA%
\expandafter\def\csname Entlessgtr\endcsname{\ensuremath{\lessgtr }}% U02276%
\expandafter\def\csname Entlesssim\endcsname{\ensuremath{\lessequivlnt }}% U02272%
\expandafter\def\csname Entlfbowtie\endcsname{\ensuremath{}}% U029D1%
\expandafter\def\csname Entlfisht\endcsname{\ensuremath{\ElsevierGlyph{E214}}}% U0297C%
\expandafter\def\csname Entlfloor\endcsname{\ensuremath{\lfloor }}% U0230A%
\expandafter\def\csname Entlfr\endcsname{\ensuremath{\mathfrak{l}}}% U1D529%
\expandafter\def\csname Entlftimes\endcsname{\ensuremath{}}% U029D4%
\expandafter\def\csname EntlgE\endcsname{\ensuremath{}}% U02A91%
\expandafter\def\csname Entlg\endcsname{\ensuremath{\lessgtr }}% U02276%
\expandafter\def\csname Entlgr\endcsname{\ensuremath{\lambda }}% U003BB%
\expandafter\def\csname Entlhard\endcsname{\ensuremath{\leftharpoondown }}% U021BD%
\expandafter\def\csname Entlharu\endcsname{\ensuremath{\leftharpoonup }}% U021BC%
\expandafter\def\csname Entlharul\endcsname{\ensuremath{}}% U0296A%
\expandafter\def\csname Entljcy\endcsname{\cyrchar\cyrlje }% U00459%
\expandafter\def\csname Entll\endcsname{\ensuremath{\ll }}% U0226A%
\expandafter\def\csname Entllarr\endcsname{\ensuremath{\leftleftarrows }}% U021C7%
\expandafter\def\csname Entllcorner\endcsname{\ensuremath{\llcorner }}% U0231E%
\expandafter\def\csname Entllhard\endcsname{\ensuremath{}}% U0296B%
\expandafter\def\csname Entlltrif\endcsname{\ensuremath{}}% U025E3%
\expandafter\def\csname Entlmidot\endcsname{{\fontencoding{LELA}\selectfont\char202}}% U00140%
\expandafter\def\csname Entlmoust\endcsname{\ensuremath{\lmoustache }}% U02998%
\expandafter\def\csname Entlmoustache\endcsname{\ensuremath{\lmoustache }}% U02998%
\expandafter\def\csname EntlnE\endcsname{\ensuremath{\lneqq }}% U02268%
\expandafter\def\csname Entlnap\endcsname{\ensuremath{\lnapprox }}% U02A89%
\expandafter\def\csname Entlnapprox\endcsname{\ensuremath{\lnapprox }}% U02A89%
\expandafter\def\csname Entlne\endcsname{\ensuremath{\lneq }}% U02A87%
\expandafter\def\csname Entlne\endcsname{\ensuremath{\lneqq }}% U02268%
\expandafter\def\csname Entlneq\endcsname{\ensuremath{\lneqq }}% U02268%
\expandafter\def\csname Entlneqq\endcsname{\ensuremath{\lneqq }}% U02268%
\expandafter\def\csname Entlnsim\endcsname{\ensuremath{\lnsim }}% U022E6%
\expandafter\def\csname Entloang\endcsname{\ensuremath{\ElsevierGlyph{3018}}}% U02985%
\expandafter\def\csname Entloang\endcsname{\ensuremath{\ElsevierGlyph{3018}}}% U03018%
\expandafter\def\csname Entloarr\endcsname{\ensuremath{}}% U021FD%
\expandafter\def\csname Entlobrk\endcsname{\ensuremath{\openbracketleft }}% U0301A%
\expandafter\def\csname Entlocub\endcsname{\ensuremath{}}% U02983%
\expandafter\def\csname Entlongleftarrow\endcsname{\ensuremath{\longleftarrow }}% U02190x%
\expandafter\def\csname Entlongleftrightarrow\endcsname{\ensuremath{\longleftrightarrow }}% U02194x%
\expandafter\def\csname Entlongmapsto\endcsname{\ensuremath{\longmapsto }}% U021A6x%
\expandafter\def\csname Entlongrightarrow\endcsname{\ensuremath{\longrightarrow }}% U02192x%
\expandafter\def\csname Entlooparrowleft\endcsname{\ensuremath{\looparrowleft }}% U021AB%
\expandafter\def\csname Entlooparrowright\endcsname{\ensuremath{\looparrowright }}% U021AC%
\expandafter\def\csname Entlopar\endcsname{\ensuremath{\ElsevierGlyph{3018}}}% U02985x%
\expandafter\def\csname Entlopf\endcsname{\ensuremath{\mathbb{l}}}% U1D55D%
\expandafter\def\csname Entloplus\endcsname{\ensuremath{\ElsevierGlyph{E25C}}}% U02A2D%
\expandafter\def\csname Entlotimes\endcsname{\ensuremath{\ElsevierGlyph{E25E}}}% U02A34%
\expandafter\def\csname Entlowast\endcsname{\ensuremath{{_\ast}}}% U02217%
\expandafter\def\csname Entlowast\endcsname{\ensuremath{}}% U0204E%
\expandafter\def\csname Entlowbar\endcsname{\ensuremath{\_}}% U0005F%
\expandafter\def\csname Entlowint\endcsname{\ensuremath{}}% U02A1C%
\expandafter\def\csname Entloz\endcsname{\ensuremath{\lozenge }}% U025CA%
\expandafter\def\csname Entlozenge\endcsname{\ensuremath{\lozenge }}% U025CA%
\expandafter\def\csname Entlozf\endcsname{\ensuremath{\blacklozenge }}% U029EB%
\expandafter\def\csname Entlpar\endcsname{(}% U00028%
\expandafter\def\csname Entlpargt\endcsname{\ensuremath{\Elzlpargt }}% U029A0%
\expandafter\def\csname Entlparlt\endcsname{\ensuremath{<\kern-0.58em(}}% U02993%
\expandafter\def\csname Entlrarr2\endcsname{\ensuremath{\leftrightarrows }}% U021C6%
\expandafter\def\csname Entlrarr\endcsname{\ensuremath{\leftrightarrows }}% U021C6%
\expandafter\def\csname Entlrcorner\endcsname{\ensuremath{\lrcorner }}% U0231F%
\expandafter\def\csname Entlrhar2\endcsname{\ensuremath{\leftrightharpoons }}% U021CB%
\expandafter\def\csname Entlrhar\endcsname{\ensuremath{\leftrightharpoons }}% U021CB%
\expandafter\def\csname Entlrhard\endcsname{\ensuremath{}}% U0296D%
\expandafter\def\csname Entlscr\endcsname{\ensuremath{\mathscr{l}}}% U02113%
\expandafter\def\csname Entlsh\endcsname{\ensuremath{\Lsh }}% U021B0%
\expandafter\def\csname Entlsim\endcsname{\ensuremath{\lessequivlnt }}% U02272%
\expandafter\def\csname Entlsime\endcsname{\ensuremath{}}% U02A8D%
\expandafter\def\csname Entlsimg\endcsname{\ensuremath{}}% U02A8F%
\expandafter\def\csname Entlsqb\endcsname{[}% U0005B%
\expandafter\def\csname Entlsquo\endcsname{`}% U02018%
\expandafter\def\csname Entlsquor\endcsname{,}% U0201A%
\expandafter\def\csname Entlstrok\endcsname{\l }% U00142%
\expandafter\def\csname Entlt\endcsname{\ensuremath{<}}% U0003C%
\expandafter\def\csname Entltcc\endcsname{\ensuremath{}}% U02AA6%
\expandafter\def\csname Entltcir\endcsname{\ensuremath{}}% U02A79%
\expandafter\def\csname Entltdot\endcsname{\ensuremath{\lessdot }}% U022D6%
\expandafter\def\csname Entlthree\endcsname{\ensuremath{\leftthreetimes }}% U022CB%
\expandafter\def\csname Entltimes\endcsname{\ensuremath{\ltimes }}% U022C9%
\expandafter\def\csname Entltlarr\endcsname{\ensuremath{}}% U02976%
\expandafter\def\csname Entltquest\endcsname{\ensuremath{}}% U02A7B%
\expandafter\def\csname Entltri\endcsname{\ensuremath{\triangleleft }}% U025C3%
\expandafter\def\csname Entltrie\endcsname{\ensuremath{\trianglelefteq }}% U022B4%
\expandafter\def\csname Entltrif\endcsname{\ensuremath{\blacktriangleleft }}% U025C2%
\expandafter\def\csname Entltrivb\endcsname{\ensuremath{\LeftTriangleBar }}% U029CF%
\expandafter\def\csname Entltrpar\endcsname{\ensuremath{\Elzrparlt }}% U02222x%
\expandafter\def\csname Entluharb\endcsname{\ensuremath{\LeftVectorBar }}% U02952%
\expandafter\def\csname Entlurdshar\endcsname{\ensuremath{}}% U0294A%
\expandafter\def\csname Entluruhar\endcsname{\ensuremath{}}% U02966%
\expandafter\def\csname Entlurushar\endcsname{\ensuremath{\LeftRightVector }}% U0294E%
\expandafter\def\csname Entlvertneqq\endcsname{\ensuremath{\lvertneqq }}% U02268-00338%
\expandafter\def\csname EntlvnE\endcsname{\ensuremath{\lvertneqq }}% U02268-00338%
\expandafter\def\csname EntmDDot\endcsname{\ensuremath{\mathbin{{:}\!\!{-}\!\!{:}}}}% U0223A%
\expandafter\def\csname Entmacr\endcsname{\textasciimacron }% U000AF%
\expandafter\def\csname Entmale\endcsname{\male }% U02642%
\expandafter\def\csname Entmalt\endcsname{\ding{64}}% U02720%
\expandafter\def\csname Entmaltese\endcsname{\ding{64}}% U02720%
\expandafter\def\csname Entmap\endcsname{\ensuremath{\mapsto }}% U021A6%
\expandafter\def\csname Entmapsto\endcsname{\ensuremath{\mapsto }}% U021A6%
\expandafter\def\csname Entmapstodown\endcsname{\ensuremath{}}% U021A7%
\expandafter\def\csname Entmcy\endcsname{\cyrchar\cyrm }% U0043C%
\expandafter\def\csname Entmdash\endcsname{\ifmmode ---\else \textemdash \fi}% U02014%
\expandafter\def\csname Entmeasuredangle\endcsname{\ensuremath{\measuredangle }}% U02221%
\expandafter\def\csname Entmfr\endcsname{\ensuremath{\mathfrak{m}}}% U1D52A%
\expandafter\def\csname Entmgr\endcsname{\ensuremath{\mu }}% U003BC%
\expandafter\def\csname Entmho\endcsname{\ensuremath{\mho }}% U02127%
\expandafter\def\csname Entmicro\endcsname{\ensuremath{\mathrm{\mu}}}% U000B5%
\expandafter\def\csname Entmid\endcsname{\ensuremath{\mid }}% U02223%
\expandafter\def\csname Entmidast\endcsname{\ensuremath{\ast }}% U0002A%
\expandafter\def\csname Entmidcir\endcsname{\ensuremath{}}% U02AF0%
\expandafter\def\csname Entmiddot\endcsname{\ensuremath{\cdot }}% U000B7%
\expandafter\def\csname Entminus\endcsname{-}% U02212%
\expandafter\def\csname Entminusb\endcsname{\ensuremath{\boxminus }}% U0229F%
\expandafter\def\csname Entminusd\endcsname{\ensuremath{\ElsevierGlyph{2238}}}% U02238%
\expandafter\def\csname Entminusdu\endcsname{\ensuremath{\ElsevierGlyph{E25B}}}% U02A2A%
\expandafter\def\csname Entmlcp\endcsname{\ensuremath{}}% U02ADB%
\expandafter\def\csname Entmldr\endcsname{\ensuremath{}}% U02050%
\expandafter\def\csname Entmldr\endcsname{\ldots }% U02026%
\expandafter\def\csname Entmnplus\endcsname{\ensuremath{\mp }}% U02213%
\expandafter\def\csname Entmodels\endcsname{\ensuremath{\truestate }}% U022A7%
\expandafter\def\csname Entmopf\endcsname{\ensuremath{\mathbb{m}}}% U1D55E%
\expandafter\def\csname Entmp\endcsname{\ensuremath{\mp }}% U02213%
\expandafter\def\csname Entmscr\endcsname{\ensuremath{\mathscr{m}}}% U1D4C2%
\expandafter\def\csname Entmstpos\endcsname{\ensuremath{\lazysinv }}% U0223E%
\expandafter\def\csname Entmu\endcsname{\ensuremath{\mu }}% U003BC%
\expandafter\def\csname Entmultimap\endcsname{\ensuremath{\multimap }}% U022B8%
\expandafter\def\csname Entmumap\endcsname{\ensuremath{\multimap }}% U022B8%
\expandafter\def\csname EntnGg\endcsname{\ensuremath{}}% U022D9-00338%
\expandafter\def\csname EntnGt\endcsname{\ensuremath{}}% U0226B-00338%
\expandafter\def\csname EntnGtv\endcsname{\ensuremath{\NotGreaterGreater }}% U0226B-00338-02063%
\expandafter\def\csname EntnLeftarrow\endcsname{\ensuremath{\nLeftarrow }}% U021CD%
\expandafter\def\csname EntnLeftrightarrow\endcsname{\ensuremath{\nLeftrightarrow }}% U021CE%
\expandafter\def\csname EntnLl\endcsname{\ensuremath{}}% U022D8-00338%
\expandafter\def\csname EntnLt\endcsname{\ensuremath{}}% U0226A-00338%
\expandafter\def\csname EntnLtv\endcsname{\ensuremath{\NotLessLess }}% U0226A-00338-02063%
\expandafter\def\csname EntnRightarrow\endcsname{\ensuremath{\nRightarrow }}% U021CF%
\expandafter\def\csname EntnVDash\endcsname{\ensuremath{\nVDash }}% U022AF%
\expandafter\def\csname EntnVdash\endcsname{\ensuremath{\nVdash }}% U022AE%
\expandafter\def\csname Entnabla\endcsname{\ensuremath{\nabla }}% U02207%
\expandafter\def\csname Entnacute\endcsname{\ifmmode \acute{n}\else \'{n}\fi}% U00144%
\expandafter\def\csname EntnapE\endcsname{\ensuremath{}}% U02A70-00338%
\expandafter\def\csname Entnap\endcsname{\ensuremath{\not\approx }}% U02249%
\expandafter\def\csname Entnapid\endcsname{\ensuremath{\not\apid }}% U0224B-00338%
\expandafter\def\csname Entnapos\endcsname{'n}% U00149%
\expandafter\def\csname Entnapprox\endcsname{\ensuremath{\not\approx }}% U02249%
\expandafter\def\csname Entnatur\endcsname{\ensuremath{\natural }}% U0266E%
\expandafter\def\csname Entnatural\endcsname{\ensuremath{\natural }}% U0266E%
\expandafter\def\csname Entnaturals\endcsname{\ensuremath{\mathbb{N}}}% U02115%
\expandafter\def\csname Entnbsp\endcsname{\ensuremath{\penalty10000\ }}% U000A0%
\expandafter\def\csname Entnbump\endcsname{\ensuremath{\NotHumpDownHump }}% U0224E-00338%
\expandafter\def\csname Entnbumpe\endcsname{\ensuremath{\NotHumpEqual }}% U0224F-00338%
\expandafter\def\csname Entncaron\endcsname{\ifmmode \check{n}\else \v{n}\fi}% U00148%
\expandafter\def\csname Entncedil\endcsname{\ifmmode \mbox{\c{n}}\else \c{n}\fi}% U00146%
\expandafter\def\csname Entncong\endcsname{\ensuremath{\not\cong }}% U02247%
\expandafter\def\csname Entncongdot\endcsname{\ensuremath{}}% U02A6D-00338%
\expandafter\def\csname Entncy\endcsname{\cyrchar\cyrn }% U0043D%
\expandafter\def\csname Entndash\endcsname{\textendash }% U02013%
\expandafter\def\csname EntneArr\endcsname{\ensuremath{}}% U021D7%
\expandafter\def\csname Entne\endcsname{\ensuremath{\not =}}% U02260%
\expandafter\def\csname Entnearhk\endcsname{\ensuremath{\ElsevierGlyph{E20D}}}% U02924%
\expandafter\def\csname Entnearr\endcsname{\ensuremath{\nearrow }}% U02197%
\expandafter\def\csname Entnearrow\endcsname{\ensuremath{\nearrow }}% U02197%
\expandafter\def\csname Entnedot\endcsname{\ensuremath{}}% U02260-02063%
\expandafter\def\csname Entneonwarr\endcsname{\ensuremath{}}% U02931%
\expandafter\def\csname Entneosearr\endcsname{\ensuremath{}}% U0292E%
\expandafter\def\csname Entnequiv\endcsname{\ensuremath{\not\equiv }}% U02262%
\expandafter\def\csname Entnesear\endcsname{\ensuremath{\ElsevierGlyph{E20E}}}% U02928%
\expandafter\def\csname Entnesim\endcsname{\ensuremath{\NotEqualTilde }}% U02242-00338%
\expandafter\def\csname Entneswsarr\endcsname{\ensuremath{}}% U02922%
\expandafter\def\csname Entnexist\endcsname{\ensuremath{\nexists }}% U02204%
\expandafter\def\csname Entnexists\endcsname{\ensuremath{\nexists }}% U02204%
\expandafter\def\csname Entnfr\endcsname{\ensuremath{\mathfrak{n}}}% U1D52B%
\expandafter\def\csname EntngE\endcsname{\ensuremath{\ngeqq }}% U02271-020E5x%
\expandafter\def\csname EntngE\endcsname{\ensuremath{\ngeqslant }}% U02271%
\expandafter\def\csname Entnge\endcsname{\ensuremath{\not\geq }}% U02271-020E5%
\expandafter\def\csname Entngeq\endcsname{\ensuremath{\not\geq }}% U02271-020E5%
\expandafter\def\csname Entngeqq\endcsname{\ensuremath{\ngeqslant }}% U02271%
\expandafter\def\csname Entngeqslant\endcsname{\ensuremath{\ngeqslant }}% U02271%
\expandafter\def\csname Entnges\endcsname{\ensuremath{\ngeqslant }}% U02271%
\expandafter\def\csname Entngr\endcsname{\ensuremath{\nu }}% U003BD%
\expandafter\def\csname Entngsim\endcsname{\ensuremath{\ElsevierGlyph{2275}}}% U02275%
\expandafter\def\csname Entngt\endcsname{\ensuremath{\not>}}% U0226F%
\expandafter\def\csname Entngtr\endcsname{\ensuremath{\not>}}% U0226F%
\expandafter\def\csname EntnhArr\endcsname{\ensuremath{\nLeftrightarrow }}% U021CE%
\expandafter\def\csname Entnharr\endcsname{\ensuremath{\nleftrightarrow }}% U021AE%
\expandafter\def\csname Entnhpar\endcsname{\ensuremath{}}% U02AF2%
\expandafter\def\csname Entni\endcsname{\ensuremath{\ni }}% U0220B%
\expandafter\def\csname Entnis\endcsname{\ensuremath{}}% U022FC%
\expandafter\def\csname Entnisd\endcsname{\ensuremath{}}% U022FA%
\expandafter\def\csname Entniv\endcsname{\ensuremath{\ni }}% U0220B%
\expandafter\def\csname Entnjcy\endcsname{\cyrchar\cyrnje }% U0045A%
\expandafter\def\csname EntnlArr\endcsname{\ensuremath{\nLeftarrow }}% U021CD%
\expandafter\def\csname EntnlE\endcsname{\ensuremath{\nleqq }}% U02270-020E5x%
\expandafter\def\csname EntnlE\endcsname{\ensuremath{\nleqslant }}% U02270%
\expandafter\def\csname Entnlarr\endcsname{\ensuremath{\nleftarrow }}% U0219A%
\expandafter\def\csname Entnldr\endcsname{..}% U02025%
\expandafter\def\csname Entnle\endcsname{\ensuremath{\not\leq }}% U02270-020E5%
\expandafter\def\csname Entnleftarrow\endcsname{\ensuremath{\nleftarrow }}% U0219A%
\expandafter\def\csname Entnleftrightarrow\endcsname{\ensuremath{\nleftrightarrow }}% U021AE%
\expandafter\def\csname Entnleq\endcsname{\ensuremath{\not\leq }}% U02270-020E5%
\expandafter\def\csname Entnleqq\endcsname{\ensuremath{\nleqslant }}% U02270%
\expandafter\def\csname Entnleqslant\endcsname{\ensuremath{\nleqslant }}% U02270%
\expandafter\def\csname Entnles\endcsname{\ensuremath{\nleqslant }}% U02270%
\expandafter\def\csname Entnless\endcsname{\ensuremath{\not<}}% U0226E%
\expandafter\def\csname Entnlsim\endcsname{\ensuremath{\ElsevierGlyph{2274}}}% U02274%
\expandafter\def\csname Entnlt\endcsname{\ensuremath{\not<}}% U0226E%
\expandafter\def\csname Entnltri\endcsname{\ensuremath{\ntriangleleft }}% U022EA%
\expandafter\def\csname Entnltrie\endcsname{\ensuremath{\ntrianglelefteq }}% U022EC%
\expandafter\def\csname Entnltrivb\endcsname{\ensuremath{\NotLeftTriangleBar }}% U029CF-00338%
\expandafter\def\csname Entnmid\endcsname{\ensuremath{\nmid }}% U02224%
\expandafter\def\csname Entnopf\endcsname{\ensuremath{\mathbb{n}}}% U1D55F%
\expandafter\def\csname Entnot\endcsname{\ensuremath{\lnot }}% U000AC%
\expandafter\def\csname EntnotinE\endcsname{\ensuremath{}}% U022F9-02063%
\expandafter\def\csname Entnotin\endcsname{\ensuremath{\not\in }}% U02209%
\expandafter\def\csname Entnotindot\endcsname{\ensuremath{}}% U022F6-02063%
\expandafter\def\csname Entnotins\endcsname{\ensuremath{}}% U02209-02063%
\expandafter\def\csname Entnotinva\endcsname{\ensuremath{}}% U02209-00338%
\expandafter\def\csname Entnotinvb\endcsname{\ensuremath{}}% U022F7%
\expandafter\def\csname Entnotinvc\endcsname{\ensuremath{}}% U022F6%
\expandafter\def\csname Entnotni\endcsname{\ensuremath{\not\ni }}% U0220C%
\expandafter\def\csname Entnotni\endcsname{\ensuremath{}}% U0220C-00338%
\expandafter\def\csname Entnotniva\endcsname{\ensuremath{\not\ni }}% U0220C%
\expandafter\def\csname Entnotnivb\endcsname{\ensuremath{}}% U022FE%
\expandafter\def\csname Entnotnivc\endcsname{\ensuremath{}}% U022FD%
\expandafter\def\csname Entnpar\endcsname{\ensuremath{\nparallel }}% U02226%
\expandafter\def\csname Entnparallel\endcsname{\ensuremath{\nparallel }}% U02226%
\expandafter\def\csname Entnparsl\endcsname{\ensuremath{}}% U02225-02063-020E5%
\expandafter\def\csname Entnpr\endcsname{\ensuremath{\not\prec }}% U02280%
\expandafter\def\csname Entnprcue\endcsname{\ensuremath{}}% U022E0%
\expandafter\def\csname Entnpre\endcsname{\ensuremath{\not\preceq }}% U02AAF-00338%
\expandafter\def\csname Entnprec\endcsname{\ensuremath{\not\prec }}% U02280%
\expandafter\def\csname Entnpreceq\endcsname{\ensuremath{\not\preceq }}% U02AAF-00338%
\expandafter\def\csname Entnprsim\endcsname{\ensuremath{\NotPrecedesTilde }}% U0227E-00338%
\expandafter\def\csname EntnrArr\endcsname{\ensuremath{\nRightarrow }}% U021CF%
\expandafter\def\csname Entnrarr\endcsname{\ensuremath{\nrightarrow }}% U0219B%
\expandafter\def\csname Entnrarrc\endcsname{\ensuremath{\ElsevierGlyph{E21D}}}% U02933-00338%
\expandafter\def\csname Entnrarrw\endcsname{\ensuremath{}}% U0219D-00338%
\expandafter\def\csname Entnrightarrow\endcsname{\ensuremath{\nrightarrow }}% U0219B%
\expandafter\def\csname Entnrtri\endcsname{\ensuremath{\ntriangleright }}% U022EB%
\expandafter\def\csname Entnrtrie\endcsname{\ensuremath{\ntrianglerighteq }}% U022ED%
\expandafter\def\csname EntnsGt\endcsname{\ensuremath{\NotNestedGreaterGreater }}% U024A2-00338%
\expandafter\def\csname EntnsLt\endcsname{\ensuremath{\NotNestedLessLess }}% U024A1-00338%
\expandafter\def\csname Entnsc\endcsname{\ensuremath{\not\succ }}% U02281%
\expandafter\def\csname Entnsccue\endcsname{\ensuremath{}}% U022E1%
\expandafter\def\csname Entnsce\endcsname{\ensuremath{\not\succeq }}% U02AB0-00338%
\expandafter\def\csname Entnscr\endcsname{\ensuremath{\mathscr{n}}}% U1D4C3%
\expandafter\def\csname Entnscsim\endcsname{\ensuremath{\NotSucceedsTilde }}% U0227F-00338%
\expandafter\def\csname Entnshortmid\endcsname{\ensuremath{\nshortmid }}% U02224-02063%
\expandafter\def\csname Entnshortparallel\endcsname{\ensuremath{\nshortparallel }}% U02226-02063%
\expandafter\def\csname Entnsim\endcsname{\ensuremath{\not\sim }}% U02241%
\expandafter\def\csname Entnsime\endcsname{\ensuremath{\not\simeq }}% U02244%
\expandafter\def\csname Entnsimeq\endcsname{\ensuremath{\not\simeq }}% U02244%
\expandafter\def\csname Entnsmid\endcsname{\ensuremath{\nshortmid }}% U02224-02063%
\expandafter\def\csname Entnspar\endcsname{\ensuremath{\nshortparallel }}% U02226-02063%
\expandafter\def\csname Entnsqsub\endcsname{\ensuremath{\NotSquareSubset }}% U0228F-00338%
\expandafter\def\csname Entnsqsube\endcsname{\ensuremath{\not\sqsubseteq }}% U022E2%
\expandafter\def\csname Entnsqsup\endcsname{\ensuremath{\NotSquareSuperset }}% U02290-00338%
\expandafter\def\csname Entnsqsupe\endcsname{\ensuremath{\not\sqsupseteq }}% U022E3%
\expandafter\def\csname EntnsubE\endcsname{\ensuremath{\not\subseteq }}% U02288%
\expandafter\def\csname EntnsubE\endcsname{\ensuremath{\nsubseteqq }}% U02288-020E5%
\expandafter\def\csname Entnsub\endcsname{\ensuremath{\not\subset }}% U02284%
\expandafter\def\csname Entnsube\endcsname{\ensuremath{\not\subseteq }}% U02288%
\expandafter\def\csname Entnsubset\endcsname{\ensuremath{\not\subset }}% U02284%
\expandafter\def\csname Entnsubseteq\endcsname{\ensuremath{\not\subseteq }}% U02288%
\expandafter\def\csname Entnsubseteqq\endcsname{\ensuremath{\not\subseteq }}% U02288%
\expandafter\def\csname Entnsucc\endcsname{\ensuremath{\not\succ }}% U02281%
\expandafter\def\csname Entnsucceq\endcsname{\ensuremath{\not\succeq }}% U02AB0-00338%
\expandafter\def\csname EntnsupE\endcsname{\ensuremath{\not\supseteq }}% U02289%
\expandafter\def\csname EntnsupE\endcsname{\ensuremath{\nsupseteqq }}% U02289-020E5%
\expandafter\def\csname Entnsup\endcsname{\ensuremath{\not\supset }}% U02285%
\expandafter\def\csname Entnsupe\endcsname{\ensuremath{\not\supseteq }}% U02289%
\expandafter\def\csname Entnsupset\endcsname{\ensuremath{\not\supset }}% U02285%
\expandafter\def\csname Entnsupseteq\endcsname{\ensuremath{\not\supseteq }}% U02289%
\expandafter\def\csname Entnsupseteqq\endcsname{\ensuremath{\not\supseteq }}% U02289%
\expandafter\def\csname Entntgl\endcsname{\ensuremath{\notgreaterless }}% U02279%
\expandafter\def\csname Entntilde\endcsname{\ifmmode \tilde{n}\else \~{n}\fi}% U000F1%
\expandafter\def\csname Entntlg\endcsname{\ensuremath{\notlessgreater }}% U02278%
\expandafter\def\csname Entntriangleleft\endcsname{\ensuremath{\ntriangleleft }}% U022EA%
\expandafter\def\csname Entntrianglelefteq\endcsname{\ensuremath{\ntrianglelefteq }}% U022EC%
\expandafter\def\csname Entntriangleright\endcsname{\ensuremath{\ntriangleright }}% U022EB%
\expandafter\def\csname Entntrianglerighteq\endcsname{\ensuremath{\ntrianglerighteq }}% U022ED%
\expandafter\def\csname Entnu\endcsname{\ensuremath{\nu }}% U003BD%
\expandafter\def\csname Entnum\endcsname{\#}% U00023%
\expandafter\def\csname Entnumero\endcsname{\cyrchar\textnumero }% U02116%
\expandafter\def\csname Entnumsp\endcsname{\hphantom{0}}% U02007%
\expandafter\def\csname EntnvDash\endcsname{\ensuremath{\nvDash }}% U022AD%
\expandafter\def\csname EntnvHarr\endcsname{\ensuremath{\nLeftrightarrow }}% U021CE%
\expandafter\def\csname Entnvap\endcsname{\ensuremath{}}% U02249-00338%
\expandafter\def\csname Entnvbrtri\endcsname{\ensuremath{\NotRightTriangleBar }}% U029D0-00338%
\expandafter\def\csname Entnvdash\endcsname{\ensuremath{\nvdash }}% U022AC%
\expandafter\def\csname Entnvesim\endcsname{\ensuremath{\Elznesim }}% XE5E4%
\expandafter\def\csname Entnvge\endcsname{\ensuremath{\ngeqslant }}% U02271%
\expandafter\def\csname Entnvgt\endcsname{\ensuremath{\not>}}% U0226F%
\expandafter\def\csname EntnvlArr\endcsname{\ensuremath{\nLeftarrow }}% U021CD%
\expandafter\def\csname Entnvle\endcsname{\ensuremath{\nleqslant }}% U02270%
\expandafter\def\csname Entnvlt\endcsname{\ensuremath{\not<}}% U0226E%
\expandafter\def\csname Entnvltrie\endcsname{\ensuremath{}}% U022EC-00338%
\expandafter\def\csname EntnvrArr\endcsname{\ensuremath{\nRightarrow }}% U021CF%
\expandafter\def\csname Entnvrtrie\endcsname{\ensuremath{}}% U022ED-00338%
\expandafter\def\csname Entnvsim\endcsname{\ensuremath{}}% U02241-00338%
\expandafter\def\csname EntnwArr\endcsname{\ensuremath{}}% U021D6%
\expandafter\def\csname Entnwarhk\endcsname{\ensuremath{\ElsevierGlyph{E20C}}}% U02923%
\expandafter\def\csname Entnwarr\endcsname{\ensuremath{\nwarrow }}% U02196%
\expandafter\def\csname Entnwarrow\endcsname{\ensuremath{\nwarrow }}% U02196%
\expandafter\def\csname Entnwnear\endcsname{\ensuremath{\ElsevierGlyph{E211}}}% U02927%
\expandafter\def\csname Entnwonearr\endcsname{\ensuremath{}}% U02932%
\expandafter\def\csname Entnwsesarr\endcsname{\ensuremath{}}% U02921%
\expandafter\def\csname EntoHbar\endcsname{\ensuremath{}}% U0229C-02063%
\expandafter\def\csname EntoS\endcsname{\ensuremath{\circledS }}% U024C8%
\expandafter\def\csname Entoacgr\endcsname{\ifmmode \acute{o}\else \'{o}\fi}% U003CC%
\expandafter\def\csname Entoacute\endcsname{\ifmmode \acute{o}\else \'{o}\fi}% U000F3%
\expandafter\def\csname Entoast\endcsname{\ensuremath{\circledast }}% U0229B%
\expandafter\def\csname Entobsol\endcsname{\ensuremath{}}% U029B8%
\expandafter\def\csname Entocir\endcsname{\ensuremath{\circledcirc }}% U0229A%
\expandafter\def\csname Entocirc\endcsname{\ifmmode \hat{o}\else \^{o}\fi}% U000F4%
\expandafter\def\csname Entocy\endcsname{\cyrchar\cyro }% U0043E%
\expandafter\def\csname Entodash\endcsname{\ensuremath{\circleddash }}% U0229D%
\expandafter\def\csname Entodblac\endcsname{\ifmmode \mbox{\H{o}}\else \H{o}\fi}% U00151%
\expandafter\def\csname Entodiv\endcsname{\ensuremath{}}% U02A38%
\expandafter\def\csname Entodot\endcsname{\ensuremath{\odot }}% U02299%
\expandafter\def\csname Entoelig\endcsname{\oe }% U00153%
\expandafter\def\csname Entofr\endcsname{\ensuremath{\mathfrak{o}}}% U1D52C%
\expandafter\def\csname Entogon\endcsname{\ifmmode \mbox{\k{}}\else \k{}\fi}% U002DB%
\expandafter\def\csname Entogr\endcsname{\ensuremath{o}}% U003BF%
\expandafter\def\csname Entograve\endcsname{\ifmmode \grave{o}\else \`{o}\fi}% U000F2%
\expandafter\def\csname Entogt\endcsname{\ensuremath{}}% U029C1%
\expandafter\def\csname Entohacgr\endcsname{\ensuremath{\acute{\omega}}}% U003CE%
\expandafter\def\csname Entohbar\endcsname{\ensuremath{\ElsevierGlyph{E260}}}% U029B5%
\expandafter\def\csname Entohgr\endcsname{\ensuremath{\omega }}% U003C9%
\expandafter\def\csname Entohm\endcsname{\ensuremath{\Omega }}% U02126%
\expandafter\def\csname Entoint\endcsname{\ensuremath{\oint }}% U0222E%
\expandafter\def\csname Entolarr\endcsname{\ensuremath{\Elolarr }}% U02940%
\expandafter\def\csname Entolarr\endcsname{\ensuremath{\circlearrowleft }}% U021BA%
\expandafter\def\csname Entolcir\endcsname{\ensuremath{}}% U029BE%
\expandafter\def\csname Entolt\endcsname{\ensuremath{}}% U029C0%
\expandafter\def\csname Entomacr\endcsname{\ifmmode \bar{o}\else \={o}\fi}% U0014D%
\expandafter\def\csname Entomega\endcsname{\ensuremath{\omega }}% U003C9%
\expandafter\def\csname Entomicron\endcsname{\ensuremath{o}}% U003BF%
\expandafter\def\csname Entomid\endcsname{\ensuremath{\ElsevierGlyph{E61B}}}% U029B6%
\expandafter\def\csname Entominus\endcsname{\ensuremath{\ominus }}% U02296%
\expandafter\def\csname Entoopf\endcsname{\ensuremath{\mathbb{o}}}% U1D560%
\expandafter\def\csname Entopfsum\endcsname{\ensuremath{}}% U02140%
\expandafter\def\csname Entoplus\endcsname{\ensuremath{\oplus }}% U02295%
\expandafter\def\csname Entor\endcsname{\ensuremath{\vee }}% U02228%
\expandafter\def\csname Entorarr\endcsname{\ensuremath{\Elorarr }}% U02941%
\expandafter\def\csname Entorarr\endcsname{\ensuremath{\circlearrowright }}% U021BB%
\expandafter\def\csname Entorder\endcsname{\ensuremath{\mathscr{o}}}% U02134%
\expandafter\def\csname Entorderof\endcsname{\ensuremath{\mathscr{o}}}% U02134%
\expandafter\def\csname Entordf\endcsname{\textordfeminine }% U000AA%
\expandafter\def\csname Entordm\endcsname{\textordmasculine }% U000BA%
\expandafter\def\csname Entorigof\endcsname{\ensuremath{\original }}% U022B6%
\expandafter\def\csname Entoror\endcsname{\ensuremath{\ElOr }}% U02A56%
\expandafter\def\csname Entoscr\endcsname{\ensuremath{\mathscr{o}}}% U02134%
\expandafter\def\csname Entoslash\endcsname{\o }% U000F8%
\expandafter\def\csname Entosol\endcsname{\ensuremath{\oslash }}% U02298%
\expandafter\def\csname Entotilde\endcsname{\ifmmode \tilde{o}\else \~{o}\fi}% U000F5%
\expandafter\def\csname Entotimes\endcsname{\ensuremath{\otimes }}% U02297%
\expandafter\def\csname Entouml\endcsname{\ifmmode \ddot{o}\else \"{o}\fi}% U000F6%
\expandafter\def\csname Entovbar\endcsname{\ensuremath{\ElsevierGlyph{E838}}}% U0233D%
\expandafter\def\csname Entovrcub\endcsname{\ensuremath{}}% U0FE37%
\expandafter\def\csname Entovrpar\endcsname{\ensuremath{}}% U0FE35%
\expandafter\def\csname Entoxuarr\endcsname{\ensuremath{}}% U029BD%
\expandafter\def\csname Entpar\endcsname{\ensuremath{\parallel }}% U02225%
\expandafter\def\csname Entpara\endcsname{\ifmmode \P \else \textparagraph \fi}% U000B6%
\expandafter\def\csname Entparallel\endcsname{\ensuremath{\parallel }}% U02225%
\expandafter\def\csname Entparsim\endcsname{\ensuremath{}}% U02AF3%
\expandafter\def\csname Entparsl\endcsname{\ensuremath{}}% U02225-02063x%
\expandafter\def\csname Entpart\endcsname{\ensuremath{\partial }}% U02202%
\expandafter\def\csname Entpcy\endcsname{\cyrchar\cyrp }% U0043F%
\expandafter\def\csname Entpentagon\endcsname{\ensuremath{\Elzpent }}% XE5F2%
\expandafter\def\csname Entpercnt\endcsname{\%}% U00025%
\expandafter\def\csname Entperiod\endcsname{.}% U0002E%
\expandafter\def\csname Entpermil\endcsname{\textperthousand }% U02030%
\expandafter\def\csname Entperp\endcsname{\ensuremath{\perp }}% U022A5%
\expandafter\def\csname Entpertenk\endcsname{\textpertenthousand }% U02031%
\expandafter\def\csname Entpfr\endcsname{\ensuremath{\mathfrak{p}}}% U1D52D%
\expandafter\def\csname Entpgr\endcsname{\ensuremath{\pi }}% U003C0%
\expandafter\def\csname Entphgr\endcsname{\ensuremath{\phi }}% U003C6%
\expandafter\def\csname Entphi\endcsname{\ensuremath{\phi }}% U003C6%
\expandafter\def\csname Entphis\endcsname{\ensuremath{\phi }}% U003C6%
\expandafter\def\csname Entphiv\endcsname{\ensuremath{\varphi }}% U003D5%
\expandafter\def\csname Entphmmat\endcsname{\ensuremath{\mathscr{M}}}% U02133%
\expandafter\def\csname Entphone\endcsname{\ding{37}}% U0260E%
\expandafter\def\csname Entpi\endcsname{\ensuremath{\pi }}% U003C0%
\expandafter\def\csname Entpitchfork\endcsname{\ensuremath{\pitchfork }}% U022D4%
\expandafter\def\csname Entpiv\endcsname{\ensuremath{\varpi }}% U003D6%
\expandafter\def\csname Entplanck\endcsname{\ensuremath{\Elzxh }}% U00127%
\expandafter\def\csname Entplanckh\endcsname{\ensuremath{}}% U0210E%
\expandafter\def\csname Entplank\endcsname{\ensuremath{\hslash }}% U0210Fx%
\expandafter\def\csname Entplankv\endcsname{\ensuremath{\hslash }}% U0210F%
\expandafter\def\csname Entplus\endcsname{\ensuremath{+}}% U0002B%
\expandafter\def\csname Entplusb\endcsname{\ensuremath{\boxplus }}% U0229E%
\expandafter\def\csname Entplusdo\endcsname{\ensuremath{\dotplus }}% U02214%
\expandafter\def\csname Entplusdu\endcsname{\ensuremath{\ElsevierGlyph{E25A}}}% U02A25%
\expandafter\def\csname Entplusmn\endcsname{\ensuremath{\pm }}% U000B1%
\expandafter\def\csname Entplustrif\endcsname{\ensuremath{}}% U02A28%
\expandafter\def\csname Entpm\endcsname{\ensuremath{\pm }}% U000B1%
\expandafter\def\csname Entpopf\endcsname{\ensuremath{\mathbb{p}}}% U1D561%
\expandafter\def\csname Entpound\endcsname{\ifmmode \pounds \else \textsterling \fi}% U000A3%
\expandafter\def\csname EntprE\endcsname{\ensuremath{\preceq }}% U02AAF%
\expandafter\def\csname EntprE\endcsname{\ensuremath{}}% U02AB3%
\expandafter\def\csname Entpr\endcsname{\ensuremath{\prec }}% U0227A%
\expandafter\def\csname Entprap\endcsname{\ensuremath{\precapprox }}% U0227E%
\expandafter\def\csname Entprap\endcsname{\ensuremath{\precapprox }}% U02AB7%
\expandafter\def\csname Entprcue\endcsname{\ensuremath{\preccurlyeq }}% U0227C%
\expandafter\def\csname Entpre\endcsname{\ensuremath{\preceq }}% U02AAF%
\expandafter\def\csname Entprec\endcsname{\ensuremath{\prec }}% U0227A%
\expandafter\def\csname Entprecapprox\endcsname{\ensuremath{\precapprox }}% U0227E%
\expandafter\def\csname Entpreccurlyeq\endcsname{\ensuremath{\preccurlyeq }}% U0227C%
\expandafter\def\csname Entpreceq\endcsname{\ensuremath{\preceq }}% U02AAF%
\expandafter\def\csname Entprecnapprox\endcsname{\ensuremath{\precedesnotsimilar }}% U022E8%
\expandafter\def\csname Entprecneqq\endcsname{\ensuremath{\precneqq }}% U02AB5%
\expandafter\def\csname Entprecnsim\endcsname{\ensuremath{\precedesnotsimilar }}% U022E8%
\expandafter\def\csname Entprecsim\endcsname{\ensuremath{\precapprox }}% U0227E%
\expandafter\def\csname Entprime\endcsname{\ensuremath{{'}}}% U02032%
\expandafter\def\csname Entprimes\endcsname{\ensuremath{\mathbb{P}}}% U02119%
\expandafter\def\csname EntprnE\endcsname{\ensuremath{\precneqq }}% U02AB5%
\expandafter\def\csname Entprnap\endcsname{\ensuremath{\precedesnotsimilar }}% U022E8%
\expandafter\def\csname Entprnap\endcsname{\ensuremath{\precnapprox }}% U02AB9%
\expandafter\def\csname Entprnsim\endcsname{\ensuremath{\precedesnotsimilar }}% U022E8%
\expandafter\def\csname Entprod\endcsname{\ensuremath{\prod }}% U0220F%
\expandafter\def\csname Entprop\endcsname{\ensuremath{\propto }}% U0221D%
\expandafter\def\csname Entpropto\endcsname{\ensuremath{\propto }}% U0221D%
\expandafter\def\csname Entprsim\endcsname{\ensuremath{\precapprox }}% U0227E%
\expandafter\def\csname Entprurel\endcsname{\ensuremath{}}% U022B0%
\expandafter\def\csname Entpscr\endcsname{\ensuremath{\mathscr{p}}}% U1D4C5%
\expandafter\def\csname Entpsgr\endcsname{\ensuremath{\psi }}% U003C8%
\expandafter\def\csname Entpsi\endcsname{\ensuremath{\psi }}% U003C8%
\expandafter\def\csname Entpuncsp\endcsname{\hphantom{,}}% U02008%
\expandafter\def\csname Entqfr\endcsname{\ensuremath{\mathfrak{q}}}% U1D52E%
\expandafter\def\csname Entqopf\endcsname{\ensuremath{\mathbb{q}}}% U1D562%
\expandafter\def\csname Entqprime\endcsname{\ensuremath{''''}}% U02057%
\expandafter\def\csname Entqscr\endcsname{\ensuremath{\mathscr{q}}}% U1D4C6%
\expandafter\def\csname Entquaternions\endcsname{\ensuremath{\mathbb{H}}}% U0210D%
\expandafter\def\csname Entquatint\endcsname{\ensuremath{\sqrint }}% U02A16%
\expandafter\def\csname Entquest\endcsname{?}% U0003F%
\expandafter\def\csname Entquesteq\endcsname{\ensuremath{\ElsevierGlyph{225F}}}% U0225F%
\expandafter\def\csname Entquot\endcsname{"}% U00022%
\expandafter\def\csname EntrAarr\endcsname{\ensuremath{\Rrightarrow }}% U021DB%
\expandafter\def\csname EntrArr\endcsname{\ensuremath{\Rightarrow }}% U021D2%
\expandafter\def\csname EntrAtail\endcsname{\ensuremath{}}% U0291C%
\expandafter\def\csname EntrBarr\endcsname{\ensuremath{}}% U0290F%
\expandafter\def\csname EntrHar\endcsname{\ensuremath{}}% U02964%
\expandafter\def\csname Entrace\endcsname{\ensuremath{}}% U029DA%
\expandafter\def\csname Entracute\endcsname{\ifmmode \acute{r}\else \'{r}\fi}% U00155%
\expandafter\def\csname Entradic\endcsname{\ensuremath{\surd }}% U0221A%
\expandafter\def\csname Entrang\endcsname{\ensuremath{\rangle }}% U0232A%
\expandafter\def\csname Entrangle\endcsname{\ensuremath{\rangle }}% U0232A%
\expandafter\def\csname Entraquo\endcsname{\ifmmode \mbox{\guillemotright}\else \guillemotright \fi}% U000BB%
\expandafter\def\csname Entrarr2\endcsname{\ensuremath{\rightrightarrows }}% U021C9%
\expandafter\def\csname Entrarr3\endcsname{\ensuremath{}}% U021F6%
\expandafter\def\csname Entrarr\endcsname{\ensuremath{\rightarrow }}% U02192%
\expandafter\def\csname Entrarrap\endcsname{\ensuremath{}}% U02975%
\expandafter\def\csname Entrarrb\endcsname{\ensuremath{}}% U021E5%
\expandafter\def\csname Entrarrbfs\endcsname{\ensuremath{}}% U02920%
\expandafter\def\csname Entrarrc\endcsname{\ensuremath{\ElsevierGlyph{E21C}}}% U02933%
\expandafter\def\csname Entrarrfs\endcsname{\ensuremath{}}% U0291E%
\expandafter\def\csname Entrarrhk\endcsname{\ensuremath{\hookrightarrow }}% U021AA%
\expandafter\def\csname Entrarrlp\endcsname{\ensuremath{\looparrowright }}% U021AC%
\expandafter\def\csname Entrarrpl\endcsname{\ensuremath{}}% U02945%
\expandafter\def\csname Entrarrsim\endcsname{\ensuremath{}}% U02974%
\expandafter\def\csname Entrarrtl\endcsname{\ensuremath{\rightarrowtail }}% U021A3%
\expandafter\def\csname Entrarrw\endcsname{\ensuremath{\rightsquigarrow }}% U021DD%
\expandafter\def\csname Entrarrx\endcsname{\ensuremath{\Elzrarrx }}% U02947%
\expandafter\def\csname Entratail\endcsname{\ensuremath{\rightarrowtail }}% U021A3%
\expandafter\def\csname Entratail\endcsname{\ensuremath{}}% U0291A%
\expandafter\def\csname Entrationals\endcsname{\ensuremath{\mathbb{Q}}}% U0211A%
\expandafter\def\csname Entrbrace\endcsname{\ensuremath{\rbrace }}% U0007D%
\expandafter\def\csname Entrbrack\endcsname{]}% U0005D%
\expandafter\def\csname Entrcaron\endcsname{\ifmmode \check{r}\else \v{r}\fi}% U00159%
\expandafter\def\csname Entrcedil\endcsname{\ifmmode \mbox{\c{r}}\else \c{r}\fi}% U00157%
\expandafter\def\csname Entrceil\endcsname{\ensuremath{\rceil }}% U02309%
\expandafter\def\csname Entrcub\endcsname{\ensuremath{\rbrace }}% U0007D%
\expandafter\def\csname Entrcy\endcsname{\cyrchar\cyrr }% U00440%
\expandafter\def\csname Entrdca\endcsname{\ensuremath{\ElsevierGlyph{E219}}}% U02937%
\expandafter\def\csname Entrdharb\endcsname{\ensuremath{\DownRightVectorBar }}% U02957%
\expandafter\def\csname Entrdiag\endcsname{\ensuremath{}}% U02571%
\expandafter\def\csname Entrdiofdi\endcsname{\ensuremath{}}% U0292B%
\expandafter\def\csname Entrdldhar\endcsname{\ensuremath{}}% U02969%
\expandafter\def\csname Entrdosearr\endcsname{\ensuremath{}}% U02930%
\expandafter\def\csname Entrdquo\endcsname{\textquotedblright }% U0201D%
\expandafter\def\csname Entrdquor\endcsname{\textquotedblright }% U0201D%
\expandafter\def\csname Entrdsh\endcsname{\ensuremath{\ElsevierGlyph{21B3}}}% U021B3%
\expandafter\def\csname Entreal\endcsname{\ensuremath{\mathfrak{R}}}% U0211C%
\expandafter\def\csname Entrealine\endcsname{\ensuremath{\mathscr{R}}}% U0211B%
\expandafter\def\csname Entrealpart\endcsname{\ensuremath{\mathfrak{R}}}% U0211C%
\expandafter\def\csname Entreals\endcsname{\ensuremath{\mathbb{R}}}% U0211D%
\expandafter\def\csname Entrect\endcsname{\ensuremath{\fbox{~~}}}% U025AD%
\expandafter\def\csname Entreg\endcsname{\ifmmode \circledR \else \textregistered \fi}% U000AE%
\expandafter\def\csname Entrfbowtie\endcsname{\ensuremath{}}% U029D2%
\expandafter\def\csname Entrfisht\endcsname{\ensuremath{\ElsevierGlyph{E215}}}% U0297D%
\expandafter\def\csname Entrfloor\endcsname{\ensuremath{\rfloor }}% U0230B%
\expandafter\def\csname Entrfr\endcsname{\ensuremath{\mathfrak{r}}}% U1D52F%
\expandafter\def\csname Entrftimes\endcsname{\ensuremath{}}% U029D5%
\expandafter\def\csname Entrgr\endcsname{\ensuremath{\rho }}% U003C1%
\expandafter\def\csname Entrhard\endcsname{\ensuremath{\rightharpoondown }}% U021C1%
\expandafter\def\csname Entrharu\endcsname{\ensuremath{\rightharpoonup }}% U021C0%
\expandafter\def\csname Entrharul\endcsname{\ensuremath{}}% U0296C%
\expandafter\def\csname Entrho\endcsname{\ensuremath{\rho }}% U003C1%
\expandafter\def\csname Entrhov\endcsname{\ensuremath{\varrho }}% U003F1%
\expandafter\def\csname Entrightarrow\endcsname{\ensuremath{\rightarrow }}% U02192%
\expandafter\def\csname Entrightarrowtail\endcsname{\ensuremath{\rightarrowtail }}% U021A3%
\expandafter\def\csname Entrightharpoondown\endcsname{\ensuremath{\rightharpoondown }}% U021C1%
\expandafter\def\csname Entrightharpoonup\endcsname{\ensuremath{\rightharpoonup }}% U021C0%
\expandafter\def\csname Entrightleftarrows\endcsname{\ensuremath{\rightleftarrows }}% U021C4%
\expandafter\def\csname Entrightleftharpoons\endcsname{\ensuremath{\rightleftharpoons }}% U021CC%
\expandafter\def\csname Entrightrightarrows\endcsname{\ensuremath{\rightrightarrows }}% U021C9%
\expandafter\def\csname Entrightsquigarrow\endcsname{\ensuremath{\rightsquigarrow }}% U021DD%
\expandafter\def\csname Entrightthreetimes\endcsname{\ensuremath{\rightthreetimes }}% U022CC%
\expandafter\def\csname Entrimply\endcsname{\ensuremath{\RoundImplies }}% U02970%
\expandafter\def\csname Entring\endcsname{\ifmmode \mathring{}\else \r{}\fi}% U002DA%
\expandafter\def\csname Entrisingdotseq\endcsname{\ensuremath{\risingdotseq }}% U02253%
\expandafter\def\csname Entrlarr2\endcsname{\ensuremath{\rightleftarrows }}% U021C4%
\expandafter\def\csname Entrlarr\endcsname{\ensuremath{\rightleftarrows }}% U021C4%
\expandafter\def\csname Entrlhar2\endcsname{\ensuremath{\rightleftharpoons }}% U021CC%
\expandafter\def\csname Entrlhar\endcsname{\ensuremath{\rightleftharpoons }}% U021CC%
\expandafter\def\csname Entrmoust\endcsname{\ensuremath{\rmoustache }}% U02997%
\expandafter\def\csname Entrmoustache\endcsname{\ensuremath{\rmoustache }}% U02997%
\expandafter\def\csname Entrnmid\endcsname{\ensuremath{}}% U02AEE%
\expandafter\def\csname Entroang\endcsname{\ensuremath{\Elroang }}% U02986%
\expandafter\def\csname Entroang\endcsname{\ensuremath{\ElsevierGlyph{3019}}}% U03019%
\expandafter\def\csname Entroarr\endcsname{\ensuremath{}}% U021FE%
\expandafter\def\csname Entrobrk\endcsname{\ensuremath{\openbracketright }}% U0301B%
\expandafter\def\csname Entrocub\endcsname{\ensuremath{}}% U02984%
\expandafter\def\csname Entropar\endcsname{\ensuremath{\ElsevierGlyph{3019}}}% U02986x%
\expandafter\def\csname Entropf\endcsname{\ensuremath{\mathbb{r}}}% U1D563%
\expandafter\def\csname Entroplus\endcsname{\ensuremath{\ElsevierGlyph{E25D}}}% U02A2E%
\expandafter\def\csname Entrotimes\endcsname{\ensuremath{\ElsevierGlyph{E25E}}}% U02A35%
\expandafter\def\csname Entrpar\endcsname{)}% U00029%
\expandafter\def\csname Entrpargt\endcsname{\ensuremath{\ElsevierGlyph{E291}}}% U02994%
\expandafter\def\csname Entrrarr\endcsname{\ensuremath{\rightrightarrows }}% U021C9%
\expandafter\def\csname Entrscr\endcsname{\ensuremath{\mathscr{r}}}% U1D4C7%
\expandafter\def\csname Entrsh\endcsname{\ensuremath{\Rsh }}% U021B1%
\expandafter\def\csname Entrsolbar\endcsname{\ensuremath{}}% U02053%
\expandafter\def\csname Entrsqb\endcsname{]}% U0005D%
\expandafter\def\csname Entrsquo\endcsname{'}% U02019%
\expandafter\def\csname Entrsquor\endcsname{'}% U02019%
\expandafter\def\csname Entrthree\endcsname{\ensuremath{\rightthreetimes }}% U022CC%
\expandafter\def\csname Entrtimes\endcsname{\ensuremath{\rtimes }}% U022CA%
\expandafter\def\csname Entrtri\endcsname{\ensuremath{\triangleright }}% U025B9%
\expandafter\def\csname Entrtrie\endcsname{\ensuremath{\trianglerighteq }}% U022B5%
\expandafter\def\csname Entrtrif\endcsname{\ensuremath{\blacktriangleright }}% U025B8%
\expandafter\def\csname Entruharb\endcsname{\ensuremath{\RightVectorBar }}% U02953%
\expandafter\def\csname Entruluhar\endcsname{\ensuremath{}}% U02968%
\expandafter\def\csname Entrx\endcsname{\ensuremath{\Elzxrat }}% U0211E%
\expandafter\def\csname Entsacute\endcsname{\ifmmode \acute{s}\else \'{s}\fi}% U0015B%
\expandafter\def\csname Entsamalg\endcsname{\ensuremath{\coprod }}% U02210%
\expandafter\def\csname Entsampi\endcsname{\ensuremath{\Sampi }}% U003E0%
\expandafter\def\csname Entsbquo\endcsname{,}% U0201A%
\expandafter\def\csname EntscE\endcsname{\ensuremath{\precapprox }}% U0227E%
\expandafter\def\csname EntscE\endcsname{\ensuremath{}}% U02AB4%
\expandafter\def\csname Entsc\endcsname{\ensuremath{\succ }}% U0227B%
\expandafter\def\csname Entscap\endcsname{\ensuremath{\succapprox }}% U0227F%
\expandafter\def\csname Entscap\endcsname{\ensuremath{\succapprox }}% U02AB8%
\expandafter\def\csname Entscaron\endcsname{\ifmmode \check{s}\else \v{s}\fi}% U00161%
\expandafter\def\csname Entsccue\endcsname{\ensuremath{\succcurlyeq }}% U0227D%
\expandafter\def\csname Entsce\endcsname{\ensuremath{\succcurlyeq }}% U0227D%
\expandafter\def\csname Entsce\endcsname{\ensuremath{\succeq }}% U02AB0%
\expandafter\def\csname Entscedil\endcsname{\ifmmode \mbox{\c{s}}\else \c{s}\fi}% U0015F%
\expandafter\def\csname Entscirc\endcsname{\ifmmode \hat{s}\else \^{s}\fi}% U0015D%
\expandafter\def\csname EntscnE\endcsname{\ensuremath{\succneqq }}% U02AB6%
\expandafter\def\csname Entscnap\endcsname{\ensuremath{\succnapprox }}% U02ABA%
\expandafter\def\csname Entscnap\endcsname{\ensuremath{\succnsim }}% U022E9%
\expandafter\def\csname Entscnsim\endcsname{\ensuremath{\succnsim }}% U022E9%
\expandafter\def\csname Entscsim\endcsname{\ensuremath{\succapprox }}% U0227F%
\expandafter\def\csname Entscy\endcsname{\cyrchar\cyrs }% U00441%
\expandafter\def\csname Entsdot\endcsname{\ensuremath{\cdot }}% U022C5%
\expandafter\def\csname Entsdotb\endcsname{\ensuremath{\boxdot }}% U022A1%
\expandafter\def\csname Entsdote\endcsname{\ensuremath{}}% U02A66%
\expandafter\def\csname EntseArr\endcsname{\ensuremath{}}% U021D8%
\expandafter\def\csname Entsearhk\endcsname{\ensuremath{\ElsevierGlyph{E20B}}}% U02925%
\expandafter\def\csname Entsearr\endcsname{\ensuremath{\searrow }}% U02198%
\expandafter\def\csname Entsearrow\endcsname{\ensuremath{\searrow }}% U02198%
\expandafter\def\csname Entsect\endcsname{\ifmmode \S \else \textsection \fi}% U000A7%
\expandafter\def\csname Entsemi\endcsname{\ensuremath{;}}% U0003B%
\expandafter\def\csname Entseonearr\endcsname{\ensuremath{}}% U0292D%
\expandafter\def\csname Entseswar\endcsname{\ensuremath{\ElsevierGlyph{E20F}}}% U02929%
\expandafter\def\csname Entsetminus\endcsname{\ensuremath{\setminus }}% U02216%
\expandafter\def\csname Entsetmn\endcsname{\ensuremath{\setminus }}% U02216%
\expandafter\def\csname Entsext\endcsname{\ding{86}}% U02736%
\expandafter\def\csname Entsfgr\endcsname{\ensuremath{\varsigma }}% U003C2%
\expandafter\def\csname Entsfr\endcsname{\ensuremath{\mathfrak{s}}}% U1D530%
\expandafter\def\csname Entsgr\endcsname{\ensuremath{\sigma }}% U003C3%
\expandafter\def\csname Entsharp\endcsname{\ensuremath{\sharp }}% U0266F%
\expandafter\def\csname Entshchcy\endcsname{\cyrchar\cyrshch }% U00449%
\expandafter\def\csname Entshcy\endcsname{\cyrchar\cyrsh }% U00448%
\expandafter\def\csname Entshortmid\endcsname{\ensuremath{\shortmid }}% U02223-02063%
\expandafter\def\csname Entshortparallel\endcsname{\ensuremath{\shortparallel }}% U02225-02063%
\expandafter\def\csname Entshuffle\endcsname{\ensuremath{}}% U029E2%
\expandafter\def\csname Entshy\endcsname{\ensuremath{\-}}% U000AD%
\expandafter\def\csname Entsigma\endcsname{\ensuremath{\sigma }}% U003C3%
\expandafter\def\csname Entsigmaf\endcsname{\ensuremath{\varsigma }}% U003C2%
\expandafter\def\csname Entsigmav\endcsname{\ensuremath{\varsigma }}% U003C2%
\expandafter\def\csname Entsim\endcsname{\ensuremath{\sim }}% U0223C%
\expandafter\def\csname Entsimdot\endcsname{\ensuremath{}}% U02A6A%
\expandafter\def\csname Entsime\endcsname{\ensuremath{\simeq }}% U02243%
\expandafter\def\csname Entsimeq\endcsname{\ensuremath{\simeq }}% U02243%
\expandafter\def\csname EntsimgE\endcsname{\ensuremath{}}% U02AA0%
\expandafter\def\csname Entsimg\endcsname{\ensuremath{\Pisymbol{ppi020}{105}}}% U02A9E%
\expandafter\def\csname EntsimlE\endcsname{\ensuremath{}}% U02A9F%
\expandafter\def\csname Entsiml\endcsname{\ensuremath{\Pisymbol{ppi020}{117}}}% U02A9D%
\expandafter\def\csname Entsimne\endcsname{\ensuremath{\approxnotequal }}% U02246%
\expandafter\def\csname Entsimrarr\endcsname{\ensuremath{}}% U02972%
\expandafter\def\csname Entslint\endcsname{\ensuremath{\clockoint }}% U02A0F%
\expandafter\def\csname Entsmallsetminus\endcsname{\ensuremath{\smallsetminus }}% U02216x%
\expandafter\def\csname Entsmeparsl\endcsname{\ensuremath{}}% U029E4%
\expandafter\def\csname Entsmid\endcsname{\ensuremath{\shortmid }}% U02223-02063%
\expandafter\def\csname Entsmile\endcsname{\ensuremath{\smile }}% U02323%
\expandafter\def\csname Entsmt\endcsname{\ensuremath{}}% U02AAA%
\expandafter\def\csname Entsmte\endcsname{\ensuremath{}}% U02AAC%
\expandafter\def\csname Entsmtes\endcsname{\ensuremath{}}% U02AAC-02063%
\expandafter\def\csname Entsoftcy\endcsname{\cyrchar\cyrsftsn }% U0044C%
\expandafter\def\csname Entsol\endcsname{/}% U0002F%
\expandafter\def\csname Entsolb\endcsname{\ensuremath{}}% U029C4%
\expandafter\def\csname Entsopf\endcsname{\ensuremath{\mathbb{s}}}% U1D564%
\expandafter\def\csname Entspace\endcsname{\space }% U00020%
\expandafter\def\csname Entspades\endcsname{\ding{171}}% U02660%
\expandafter\def\csname Entspadesuit\endcsname{\ding{171}}% U02660%
\expandafter\def\csname Entspar\endcsname{\ensuremath{\shortparallel }}% U02225-02063%
\expandafter\def\csname Entsqcap\endcsname{\ensuremath{\sqcap }}% U02293%
\expandafter\def\csname Entsqcup\endcsname{\ensuremath{\sqcup }}% U02294%
\expandafter\def\csname Entsqsub\endcsname{\ensuremath{\sqsubset }}% U0228F%
\expandafter\def\csname Entsqsube\endcsname{\ensuremath{\sqsubseteq }}% U02291%
\expandafter\def\csname Entsqsubset\endcsname{\ensuremath{\sqsubset }}% U0228F%
\expandafter\def\csname Entsqsubseteq\endcsname{\ensuremath{\sqsubseteq }}% U02291%
\expandafter\def\csname Entsqsup\endcsname{\ensuremath{\sqsupset }}% U02290%
\expandafter\def\csname Entsqsupe\endcsname{\ensuremath{\sqsupseteq }}% U02292%
\expandafter\def\csname Entsqsupset\endcsname{\ensuremath{\sqsupset }}% U02290%
\expandafter\def\csname Entsqsupseteq\endcsname{\ensuremath{\sqsupseteq }}% U02292%
\expandafter\def\csname Entsqu\endcsname{\ensuremath{\square }}% U025A1%
\expandafter\def\csname Entsquare\endcsname{\ensuremath{\square }}% U025A1%
\expandafter\def\csname Entsquarf\endcsname{\ensuremath{\blacksquare }}% U025AA%
\expandafter\def\csname Entsquarfb\endcsname{\ensuremath{\Elzsqfb }}% XE5B7%
\expandafter\def\csname Entsquarfbl\endcsname{\ensuremath{\Elzsqfsw }}% XE5B5%
\expandafter\def\csname Entsquarft\endcsname{\ensuremath{\Elzsqft }}% XE5B6%
\expandafter\def\csname Entsquarftr\endcsname{\ensuremath{\Elzsqfne }}% XE5B4%
\expandafter\def\csname Entsqub\endcsname{\ensuremath{}}% U029C8%
\expandafter\def\csname Entsquf\endcsname{\ensuremath{\blacksquare }}% U025AA%
\expandafter\def\csname Entsscr\endcsname{\ensuremath{\mathscr{s}}}% U1D4C8%
\expandafter\def\csname Entssetmn\endcsname{\ensuremath{\smallsetminus }}% U02216x%
\expandafter\def\csname Entsstarf\endcsname{\ensuremath{\star }}% U022C6%
\expandafter\def\csname Entstar\endcsname{\ensuremath{\star }}% U022C6%
\expandafter\def\csname Entstarf\endcsname{\ding{72}}% U02605%
\expandafter\def\csname Entstigma\endcsname{\ensuremath{\Stigma }}% U003DA%
\expandafter\def\csname Entstraightepsilon\endcsname{\ensuremath{\epsilon }}% U003B5%
\expandafter\def\csname Entstraightphi\endcsname{\ensuremath{\phi }}% U003C6%
\expandafter\def\csname EntsubE\endcsname{\ensuremath{\subseteq }}% U02286%
\expandafter\def\csname EntsubE\endcsname{\ensuremath{\subseteqq }}% U02AC5%
\expandafter\def\csname Entsub\endcsname{\ensuremath{\subset }}% U02282%
\expandafter\def\csname Entsubdot\endcsname{\ensuremath{}}% U02ABD%
\expandafter\def\csname Entsube\endcsname{\ensuremath{\subseteq }}% U02286%
\expandafter\def\csname Entsubedot\endcsname{\ensuremath{}}% U02AC3%
\expandafter\def\csname Entsubmult\endcsname{\ensuremath{}}% U02AC1%
\expandafter\def\csname EntsubnE\endcsname{\ensuremath{\subsetneq }}% U0228A%
\expandafter\def\csname EntsubnE\endcsname{\ensuremath{\subsetneqq }}% U02ACB%
\expandafter\def\csname Entsubne\endcsname{\ensuremath{\subsetneq }}% U0228A%
\expandafter\def\csname Entsubplus\endcsname{\ensuremath{}}% U02ABF%
\expandafter\def\csname Entsubrarr\endcsname{\ensuremath{}}% U02979%
\expandafter\def\csname Entsubset\endcsname{\ensuremath{\subset }}% U02282%
\expandafter\def\csname Entsubseteq\endcsname{\ensuremath{\subseteq }}% U02286%
\expandafter\def\csname Entsubseteqq\endcsname{\ensuremath{\subseteq }}% U02286%
\expandafter\def\csname Entsubsetneq\endcsname{\ensuremath{\subsetneq }}% U0228A%
\expandafter\def\csname Entsubsetneqq\endcsname{\ensuremath{\subsetneq }}% U0228A%
\expandafter\def\csname Entsubsim\endcsname{\ensuremath{}}% U02AC7%
\expandafter\def\csname Entsubsub\endcsname{\ensuremath{}}% U02AD5%
\expandafter\def\csname Entsubsup\endcsname{\ensuremath{}}% U02AD3%
\expandafter\def\csname Entsucc\endcsname{\ensuremath{\succ }}% U0227B%
\expandafter\def\csname Entsuccapprox\endcsname{\ensuremath{\succapprox }}% U0227F%
\expandafter\def\csname Entsucccurlyeq\endcsname{\ensuremath{\succcurlyeq }}% U0227D%
\expandafter\def\csname Entsucceq\endcsname{\ensuremath{\succcurlyeq }}% U0227D%
\expandafter\def\csname Entsuccnapprox\endcsname{\ensuremath{\succnsim }}% U022E9%
\expandafter\def\csname Entsuccneqq\endcsname{\ensuremath{\succneqq }}% U02AB6%
\expandafter\def\csname Entsuccnsim\endcsname{\ensuremath{\succnsim }}% U022E9%
\expandafter\def\csname Entsuccsim\endcsname{\ensuremath{\succapprox }}% U0227F%
\expandafter\def\csname Entsum\endcsname{\ensuremath{\sum }}% U02211%
\expandafter\def\csname Entsumint\endcsname{\ensuremath{}}% U02A0B%
\expandafter\def\csname Entsung\endcsname{\eighthnote }% U0266A%
\expandafter\def\csname Entsup1\endcsname{\ensuremath{{^1}}}% U000B9%
\expandafter\def\csname Entsup2\endcsname{\ensuremath{{^2}}}% U000B2%
\expandafter\def\csname Entsup3\endcsname{\ensuremath{{^3}}}% U000B3%
\expandafter\def\csname EntsupE\endcsname{\ensuremath{\supseteq }}% U02287%
\expandafter\def\csname EntsupE\endcsname{\ensuremath{\supseteqq }}% U02AC6%
\expandafter\def\csname Entsup\endcsname{\ensuremath{\supset }}% U02283%
\expandafter\def\csname Entsupdot\endcsname{\ensuremath{}}% U02ABE%
\expandafter\def\csname Entsupdsub\endcsname{\ensuremath{}}% U02AD8%
\expandafter\def\csname Entsupe\endcsname{\ensuremath{\supseteq }}% U02287%
\expandafter\def\csname Entsupedot\endcsname{\ensuremath{}}% U02AC4%
\expandafter\def\csname Entsuphsol\endcsname{\ensuremath{}}% U02283-0002F%
\expandafter\def\csname Entsuphsub\endcsname{\ensuremath{}}% U02AD7%
\expandafter\def\csname Entsuplarr\endcsname{\ensuremath{}}% U0297B%
\expandafter\def\csname Entsupmult\endcsname{\ensuremath{}}% U02AC2%
\expandafter\def\csname EntsupnE\endcsname{\ensuremath{\supsetneq }}% U0228B%
\expandafter\def\csname EntsupnE\endcsname{\ensuremath{\supsetneqq }}% U02ACC%
\expandafter\def\csname Entsupne\endcsname{\ensuremath{\supsetneq }}% U0228B%
\expandafter\def\csname Entsupplus\endcsname{\ensuremath{}}% U02AC0%
\expandafter\def\csname Entsupset\endcsname{\ensuremath{\supset }}% U02283%
\expandafter\def\csname Entsupseteq\endcsname{\ensuremath{\supseteq }}% U02287%
\expandafter\def\csname Entsupseteqq\endcsname{\ensuremath{\supseteq }}% U02287%
\expandafter\def\csname Entsupsetneq\endcsname{\ensuremath{\supsetneq }}% U0228B%
\expandafter\def\csname Entsupsetneqq\endcsname{\ensuremath{\supsetneq }}% U0228B%
\expandafter\def\csname Entsupsim\endcsname{\ensuremath{}}% U02AC8%
\expandafter\def\csname Entsupsub\endcsname{\ensuremath{}}% U02AD4%
\expandafter\def\csname Entsupsup\endcsname{\ensuremath{}}% U02AD6%
\expandafter\def\csname EntswArr\endcsname{\ensuremath{}}% U021D9%
\expandafter\def\csname Entswarhk\endcsname{\ensuremath{\ElsevierGlyph{E20A}}}% U02926%
\expandafter\def\csname Entswarr\endcsname{\ensuremath{\swarrow }}% U02199%
\expandafter\def\csname Entswarrow\endcsname{\ensuremath{\swarrow }}% U02199%
\expandafter\def\csname Entswnwar\endcsname{\ensuremath{\ElsevierGlyph{E210}}}% U0292A%
\expandafter\def\csname Entszlig\endcsname{\ss }% U000DF%
\expandafter\def\csname Enttarget\endcsname{\ensuremath{\mathchar"2208}}% U02316%
\expandafter\def\csname Enttau\endcsname{\ensuremath{\tau }}% U003C4%
\expandafter\def\csname Enttcaron\endcsname{\ifmmode \check{t}\else \v{t}\fi}% U00165%
\expandafter\def\csname Enttcedil\endcsname{\ifmmode \mbox{\c{t}}\else \c{t}\fi}% U00163%
\expandafter\def\csname Enttcy\endcsname{\cyrchar\cyrt }% U00442%
\expandafter\def\csname Enttdot\endcsname{\ensuremath{\dddot{}}}% U020DB%
\expandafter\def\csname Enttelrec\endcsname{\ensuremath{\recorder }}% U02315%
\expandafter\def\csname Enttfr\endcsname{\ensuremath{\mathfrak{t}}}% U1D531%
\expandafter\def\csname Enttgr\endcsname{\ensuremath{\tau }}% U003C4%
\expandafter\def\csname Entthere4\endcsname{\ensuremath{\therefore }}% U02234%
\expandafter\def\csname Enttherefore\endcsname{\ensuremath{\therefore }}% U02234%
\expandafter\def\csname Enttheta\endcsname{\ensuremath{\theta }}% U003B8%
\expandafter\def\csname Entthetas\endcsname{\ensuremath{\theta }}% U003B8%
\expandafter\def\csname Entthetasym\endcsname{\ifmmode \vartheta \else \textvartheta \fi}% U003D1%
\expandafter\def\csname Entthetav\endcsname{\ifmmode \vartheta \else \textvartheta \fi}% U003D1%
\expandafter\def\csname Entthgr\endcsname{\ensuremath{\theta }}% U003B8%
\expandafter\def\csname Entthickapprox\endcsname{\ensuremath{}}% U02248-02063%
\expandafter\def\csname Entthicksim\endcsname{\ensuremath{}}% U0223Cx%
\expandafter\def\csname Entthinsp\endcsname{\hspace{0.167em}}% U02009%
\expandafter\def\csname Entthkap\endcsname{\ensuremath{}}% U02248-02063%
\expandafter\def\csname Entthksim\endcsname{\ensuremath{}}% U0223Cx%
\expandafter\def\csname Entthorn\endcsname{\th }% U000FE%
\expandafter\def\csname Enttilde\endcsname{\texttildelow }% U002DC%
\expandafter\def\csname Enttimeint\endcsname{\ensuremath{}}% U02A18%
\expandafter\def\csname Enttimes\endcsname{\ifmmode \times \else \texttimes \fi}% U000D7%
\expandafter\def\csname Enttimesb\endcsname{\ensuremath{\boxtimes }}% U022A0%
\expandafter\def\csname Enttint\endcsname{\ensuremath{\int\!\int\!\int }}% U0222D%
\expandafter\def\csname Enttoea\endcsname{\ensuremath{\ElsevierGlyph{E20E}}}% U02928%
\expandafter\def\csname Enttop\endcsname{\ensuremath{\top }}% U022A4%
\expandafter\def\csname Enttopf\endcsname{\ensuremath{\mathbb{t}}}% U1D565%
\expandafter\def\csname Enttopfork\endcsname{\ensuremath{}}% U02ADA%
\expandafter\def\csname Enttosa\endcsname{\ensuremath{\ElsevierGlyph{E20F}}}% U02929%
\expandafter\def\csname Enttprime\endcsname{\ensuremath{{'''}}}% U02034%
\expandafter\def\csname Enttrade\endcsname{\texttrademark }% U02122%
\expandafter\def\csname EnttriS\endcsname{\ensuremath{}}% U029CC%
\expandafter\def\csname Enttriangle\endcsname{\ensuremath{\vartriangle }}% U025B5%
\expandafter\def\csname Enttriangledown\endcsname{\ensuremath{\triangledown }}% U025BF%
\expandafter\def\csname Enttriangleleft\endcsname{\ensuremath{\triangleleft }}% U025C3%
\expandafter\def\csname Enttrianglelefteq\endcsname{\ensuremath{\trianglelefteq }}% U022B4%
\expandafter\def\csname Enttriangleq\endcsname{\ensuremath{\triangleq }}% U0225C%
\expandafter\def\csname Enttriangleright\endcsname{\ensuremath{\triangleright }}% U025B9%
\expandafter\def\csname Enttrianglerighteq\endcsname{\ensuremath{\trianglerighteq }}% U022B5%
\expandafter\def\csname Enttribar\endcsname{\ensuremath{\Elzdefas }}% U029CB%
\expandafter\def\csname Enttridoto\endcsname{\ensuremath{\ElzLap }}% U029CA%
\expandafter\def\csname Enttrie\endcsname{\ensuremath{\triangleq }}% U0225C%
\expandafter\def\csname Enttscr\endcsname{\ensuremath{\mathscr{t}}}% U1D4C9%
\expandafter\def\csname Enttscy\endcsname{\cyrchar\cyrc }% U00446%
\expandafter\def\csname Enttshcy\endcsname{\cyrchar\cyrtshe }% U0045B%
\expandafter\def\csname Enttstrok\endcsname{{\fontencoding{LELA}\selectfont\char63}}% U00167%
\expandafter\def\csname Enttverbar\endcsname{\ensuremath{\Elztfnc }}% U02980%
\expandafter\def\csname Enttwixt\endcsname{\ensuremath{\between }}% U0226C%
\expandafter\def\csname Enttwoheadleftarrow\endcsname{\ensuremath{\twoheadleftarrow }}% U0219E%
\expandafter\def\csname Enttwoheadrightarrow\endcsname{\ensuremath{\twoheadrightarrow }}% U021A0%
\expandafter\def\csname EntuAarr\endcsname{\ensuremath{}}% U0290A%
\expandafter\def\csname EntuArr\endcsname{\ensuremath{\Uparrow }}% U021D1%
\expandafter\def\csname EntuHar\endcsname{\ensuremath{}}% U02963%
\expandafter\def\csname Entuacgr\endcsname{\ensuremath{\acute{\upsilon}}}% U003CD%
\expandafter\def\csname Entuacute\endcsname{\ifmmode \acute{u}\else \'{u}\fi}% U000FA%
\expandafter\def\csname Entuarr2\endcsname{\ensuremath{\upuparrows }}% U021C8%
\expandafter\def\csname Entuarr\endcsname{\ensuremath{\uparrow }}% U02191%
\expandafter\def\csname Entuarrb\endcsname{\ensuremath{\UpArrowBar }}% U02912%
\expandafter\def\csname Entuarrln\endcsname{\ensuremath{}}% U02909%
\expandafter\def\csname Entubrcy\endcsname{\cyrchar\cyrushrt }% U0045E%
\expandafter\def\csname Entubreve\endcsname{\ifmmode \breve{u}\else \u{u}\fi}% U0016D%
\expandafter\def\csname Entucirc\endcsname{\ifmmode \hat{u}\else \^{u}\fi}% U000FB%
\expandafter\def\csname Entucy\endcsname{\cyrchar\cyru }% U00443%
\expandafter\def\csname Entudarr\endcsname{\ensuremath{\dblarrowupdown }}% U021C5%
\expandafter\def\csname Entudblac\endcsname{\ifmmode \mbox{\H{u}}\else \H{u}\fi}% U00171%
\expandafter\def\csname Entudhar\endcsname{\ensuremath{\UpEquilibrium }}% U0296E%
\expandafter\def\csname Entudiagr\endcsname{\ensuremath{\ddot{\acute{\upsilon}}}}% U003B0%
\expandafter\def\csname Entudigr\endcsname{\ensuremath{\ddot{\upsilon}}}% U003CB%
\expandafter\def\csname Entudrcub\endcsname{\ensuremath{}}% U0FE38%
\expandafter\def\csname Entudrpar\endcsname{\ensuremath{}}% U0FE36%
\expandafter\def\csname Entufisht\endcsname{\ensuremath{}}% U0297E%
\expandafter\def\csname Entufr\endcsname{\ensuremath{\mathfrak{u}}}% U1D532%
\expandafter\def\csname Entugr\endcsname{\ensuremath{\upsilon }}% U003C5%
\expandafter\def\csname Entugrave\endcsname{\ifmmode \grave{u}\else \`{u}\fi}% U000F9%
\expandafter\def\csname Entuharl\endcsname{\ensuremath{\upharpoonleft }}% U021BF%
\expandafter\def\csname Entuharr\endcsname{\ensuremath{\upharpoonright }}% U021BE%
\expandafter\def\csname Entulcorn\endcsname{\ensuremath{\ulcorner }}% U0231C%
\expandafter\def\csname Entulcorner\endcsname{\ensuremath{\ulcorner }}% U0231C%
\expandafter\def\csname Entuldlshar\endcsname{\ensuremath{\LeftUpDownVector }}% U02951%
\expandafter\def\csname Entulharb\endcsname{\ensuremath{\LeftUpVectorBar }}% U02958%
\expandafter\def\csname Entumacr\endcsname{\ifmmode \bar{u}\else \={u}\fi}% U0016B%
\expandafter\def\csname Entuml\endcsname{\textasciidieresis }% U000A8%
\expandafter\def\csname Entuogon\endcsname{\k{u}}% U00173%
\expandafter\def\csname Entuopf\endcsname{\ensuremath{\mathbb{u}}}% U1D566%
\expandafter\def\csname Entuparrow\endcsname{\ensuremath{\uparrow }}% U02191%
\expandafter\def\csname Entupdownarrow\endcsname{\ensuremath{\updownarrow }}% U02195%
\expandafter\def\csname Entupharpoonleft\endcsname{\ensuremath{\upharpoonleft }}% U021BF%
\expandafter\def\csname Entupharpoonright\endcsname{\ensuremath{\upharpoonright }}% U021BE%
\expandafter\def\csname Entupint\endcsname{\ensuremath{}}% U02A1B%
\expandafter\def\csname Entuplus\endcsname{\ensuremath{\uplus }}% U0228E%
\expandafter\def\csname Entupsi\endcsname{\ensuremath{\upsilon }}% U003C5%
\expandafter\def\csname Entupsilon\endcsname{\ensuremath{\upsilon }}% U003C5%
\expandafter\def\csname Entupuparrows\endcsname{\ensuremath{\upuparrows }}% U021C8%
\expandafter\def\csname Enturcorn\endcsname{\ensuremath{\urcorner }}% U0231D%
\expandafter\def\csname Enturcorner\endcsname{\ensuremath{\urcorner }}% U0231D%
\expandafter\def\csname Enturdrshar\endcsname{\ensuremath{\RightUpDownVector }}% U0294F%
\expandafter\def\csname Enturharb\endcsname{\ensuremath{\RightUpVectorBar }}% U02954%
\expandafter\def\csname Enturing\endcsname{\ifmmode \mathring{u}\else \r{u}\fi}% U0016F%
\expandafter\def\csname Enturtrif\endcsname{\ensuremath{}}% U025E5%
\expandafter\def\csname Entuscr\endcsname{\ensuremath{\mathscr{u}}}% U1D4CA%
\expandafter\def\csname Entutdot\endcsname{\ensuremath{\upslopeellipsis }}% U022F0%
\expandafter\def\csname Entutilde\endcsname{\ifmmode \tilde{u}\else \~{u}\fi}% U00169%
\expandafter\def\csname Entutri\endcsname{\ensuremath{\vartriangle }}% U025B5%
\expandafter\def\csname Entutrif\endcsname{\ensuremath{\blacktriangle }}% U025B4%
\expandafter\def\csname Entuuarr\endcsname{\ensuremath{\upuparrows }}% U021C8%
\expandafter\def\csname Entuuml\endcsname{\ifmmode \ddot{u}\else \"{u}\fi}% U000FC%
\expandafter\def\csname EntvArr\endcsname{\ensuremath{\Updownarrow }}% U021D5%
\expandafter\def\csname EntvBar\endcsname{\ensuremath{}}% U02AE8%
\expandafter\def\csname EntvBarv\endcsname{\ensuremath{}}% U02AE9%
\expandafter\def\csname EntvDash\endcsname{\ensuremath{\forcesextra }}% U022A8%
\expandafter\def\csname EntvDdash\endcsname{\ensuremath{}}% U02AE2%
\expandafter\def\csname Entvangrt\endcsname{\ensuremath{\Angle }}% U0299C%
\expandafter\def\csname Entvangrt\endcsname{\ensuremath{\rightanglearc }}% U022BE%
\expandafter\def\csname Entvarepsilon\endcsname{\ensuremath{\varepsilon }}% U0025B%
\expandafter\def\csname Entvarkappa\endcsname{\ensuremath{\varkappa }}% U003F0%
\expandafter\def\csname Entvarnothing\endcsname{\ensuremath{\varnothing }}% U02205%
\expandafter\def\csname Entvarphi\endcsname{\ensuremath{\varphi }}% U003D5%
\expandafter\def\csname Entvarpi\endcsname{\ensuremath{\varpi }}% U003D6%
\expandafter\def\csname Entvarpropto\endcsname{\ensuremath{\propto }}% U0221D%
\expandafter\def\csname Entvarr\endcsname{\ensuremath{\updownarrow }}% U02195%
\expandafter\def\csname Entvarrho\endcsname{\ensuremath{\varrho }}% U003F1%
\expandafter\def\csname Entvarsigma\endcsname{\ensuremath{\varsigma }}% U003C2%
\expandafter\def\csname Entvarsubsetneq\endcsname{\ensuremath{\varsubsetneq }}% U0228A-02063x%
\expandafter\def\csname Entvarsubsetneqq\endcsname{\ensuremath{\varsubsetneqq }}% U0228A-02063%
\expandafter\def\csname Entvarsupsetneq\endcsname{\ensuremath{\varsupsetneq }}% U0228B-02063%
\expandafter\def\csname Entvarsupsetneqq\endcsname{\ensuremath{\varsupsetneqq }}% U0228B-02063x%
\expandafter\def\csname Entvartheta\endcsname{\ifmmode \vartheta \else \textvartheta \fi}% U003D1%
\expandafter\def\csname Entvartriangleleft\endcsname{\ensuremath{\vartriangleleft }}% U022B2%
\expandafter\def\csname Entvartriangleright\endcsname{\ensuremath{\vartriangleright }}% U022B3%
\expandafter\def\csname Entvbrtri\endcsname{\ensuremath{\RightTriangleBar }}% U029D0%
\expandafter\def\csname Entvcy\endcsname{\cyrchar\cyrv }% U00432%
\expandafter\def\csname Entvdash\endcsname{\ensuremath{\vdash }}% U022A2%
\expandafter\def\csname EntveeBar\endcsname{\ensuremath{\ElsevierGlyph{225A}}}% U02A63%
\expandafter\def\csname Entvee\endcsname{\ensuremath{\vee }}% U02228%
\expandafter\def\csname Entveebar\endcsname{\ensuremath{\veebar }}% U022BB%
\expandafter\def\csname Entveebar\endcsname{\ensuremath{}}% U02A61%
\expandafter\def\csname Entveeeq\endcsname{\ensuremath{\ElsevierGlyph{225A}}}% U0225A%
\expandafter\def\csname Entvellip4\endcsname{\ensuremath{\Elzddfnc }}% U02999%
\expandafter\def\csname Entvellip\endcsname{\ensuremath{\vdots }}% U022EE%
\expandafter\def\csname Entvellipv\endcsname{\ensuremath{\Elztdcol }}% U02AF6%
\expandafter\def\csname Entverbar\endcsname{\ensuremath{\vert }}% U0007C%
\expandafter\def\csname Entvert3\endcsname{\ensuremath{}}% U02AF4%
\expandafter\def\csname Entvert\endcsname{\ensuremath{\vert }}% U0007C%
\expandafter\def\csname Entvfr\endcsname{\ensuremath{\mathfrak{v}}}% U1D533%
\expandafter\def\csname Entvldash\endcsname{\ensuremath{\Elzdlcorn }}% U023A3x%
\expandafter\def\csname Entvltri\endcsname{\ensuremath{\vartriangleleft }}% U022B2%
\expandafter\def\csname Entvnsub\endcsname{\ensuremath{\not\subset }}% U02284%
\expandafter\def\csname Entvnsup\endcsname{\ensuremath{\not\supset }}% U02285%
\expandafter\def\csname Entvopf\endcsname{\ensuremath{\mathbb{v}}}% U1D567%
\expandafter\def\csname Entvprime\endcsname{\ensuremath{{'}}}% U02032%
\expandafter\def\csname Entvprop\endcsname{\ensuremath{\propto }}% U0221D%
\expandafter\def\csname Entvprop\endcsname{\ensuremath{}}% U0221Dx%
\expandafter\def\csname Entvrtri\endcsname{\ensuremath{\vartriangleright }}% U022B3%
\expandafter\def\csname Entvscr\endcsname{\ensuremath{\mathscr{v}}}% U1D4CB%
\expandafter\def\csname EntvsubnE\endcsname{\ensuremath{\varsubsetneqq }}% U0228A-02063%
\expandafter\def\csname Entvsubne\endcsname{\ensuremath{\varsubsetneq }}% U0228A-02063x%
\expandafter\def\csname EntvsupnE\endcsname{\ensuremath{\varsupsetneqq }}% U0228B-02063x%
\expandafter\def\csname Entvsupne\endcsname{\ensuremath{\varsupsetneq }}% U0228B-02063%
\expandafter\def\csname Entwcirc\endcsname{\ifmmode \hat{w}\else \^{w}\fi}% U00175%
\expandafter\def\csname Entwedbar\endcsname{\ensuremath{\Elzminhat }}% U02A5F%
\expandafter\def\csname Entwedge\endcsname{\ensuremath{\wedge }}% U02227%
\expandafter\def\csname Entwedgeq\endcsname{\ensuremath{\estimates }}% U02259%
\expandafter\def\csname Entweierp\endcsname{\ensuremath{\wp }}% U02118%
\expandafter\def\csname Entwfr\endcsname{\ensuremath{\mathfrak{w}}}% U1D534%
\expandafter\def\csname Entwopf\endcsname{\ensuremath{\mathbb{w}}}% U1D568%
\expandafter\def\csname Entwp\endcsname{\ensuremath{\wp }}% U02118%
\expandafter\def\csname Entwr\endcsname{\ensuremath{\wr }}% U02240%
\expandafter\def\csname Entwreath\endcsname{\ensuremath{\wr }}% U02240%
\expandafter\def\csname Entwscr\endcsname{\ensuremath{\mathscr{w}}}% U1D4CC%
\expandafter\def\csname Entxandand\endcsname{\ensuremath{\ElzInf }}% U02A07%
\expandafter\def\csname Entxbsol\endcsname{\ensuremath{\diagup }}% U02055%
\expandafter\def\csname Entxcap\endcsname{\ensuremath{\bigcap }}% U022C2%
\expandafter\def\csname Entxcirc\endcsname{\ensuremath{\bigcirc }}% U025EF%
\expandafter\def\csname Entxcup\endcsname{\ensuremath{\bigcup }}% U022C3%
\expandafter\def\csname Entxcupdot\endcsname{\ensuremath{}}% U02A03%
\expandafter\def\csname Entxdtri\endcsname{\ensuremath{\bigtriangledown }}% U025BD%
\expandafter\def\csname Entxfr\endcsname{\ensuremath{\mathfrak{x}}}% U1D535%
\expandafter\def\csname Entxgr\endcsname{\ensuremath{\xi }}% U003BE%
\expandafter\def\csname EntxhArr\endcsname{\ensuremath{\Longleftrightarrow }}% U021D4x%
\expandafter\def\csname Entxharr\endcsname{\ensuremath{\longleftrightarrow }}% U02194x%
\expandafter\def\csname Entxi\endcsname{\ensuremath{\xi }}% U003BE%
\expandafter\def\csname EntxlArr\endcsname{\ensuremath{\Longleftarrow }}% U021D0x%
\expandafter\def\csname Entxlarr\endcsname{\ensuremath{\longleftarrow }}% U02190x%
\expandafter\def\csname Entxmap\endcsname{\ensuremath{\longmapsto }}% U021A6x%
\expandafter\def\csname Entxnis\endcsname{\ensuremath{}}% U022FB%
\expandafter\def\csname Entxodot\endcsname{\ensuremath{\odot }}% U02299%
\expandafter\def\csname Entxodot\endcsname{\ensuremath{}}% U02A00%
\expandafter\def\csname Entxopf\endcsname{\ensuremath{\mathbb{x}}}% U1D569%
\expandafter\def\csname Entxoplus\endcsname{\ensuremath{\oplus }}% U02295%
\expandafter\def\csname Entxoplus\endcsname{\ensuremath{}}% U02A01%
\expandafter\def\csname Entxoror\endcsname{\ensuremath{\ElzSup }}% U02A08%
\expandafter\def\csname Entxotime\endcsname{\ensuremath{\otimes }}% U02297%
\expandafter\def\csname Entxotime\endcsname{\ensuremath{}}% U02A02%
\expandafter\def\csname EntxrArr\endcsname{\ensuremath{\Longrightarrow }}% U021D2x%
\expandafter\def\csname Entxrarr\endcsname{\ensuremath{\longrightarrow }}% U02192x%
\expandafter\def\csname Entxscr\endcsname{\ensuremath{\mathscr{x}}}% U1D4CD%
\expandafter\def\csname Entxsol\endcsname{\ensuremath{\diagdown }}% U02054%
\expandafter\def\csname Entxsqcap\endcsname{\ensuremath{\ElzThr }}% U02A05%
\expandafter\def\csname Entxsqcup\endcsname{\ensuremath{\Elxsqcup }}% U02A06%
\expandafter\def\csname Entxsqcup\endcsname{\ensuremath{\sqcup }}% U02294%
\expandafter\def\csname Entxsqu\endcsname{\ensuremath{}}% U025FB%
\expandafter\def\csname Entxtimes\endcsname{\ensuremath{}}% U02A09%
\expandafter\def\csname Entxuplus\endcsname{\ensuremath{\Elxuplus }}% U02A04%
\expandafter\def\csname Entxuplus\endcsname{\ensuremath{\uplus }}% U0228E%
\expandafter\def\csname Entxutri\endcsname{\ensuremath{\bigtriangleup }}% U025B3%
\expandafter\def\csname Entxvee\endcsname{\ensuremath{\ElsevierGlyph{22C1}}}% U022C1%
\expandafter\def\csname Entxwedge\endcsname{\ensuremath{\ElsevierGlyph{22C0}}}% U022C0%
\expandafter\def\csname Entyacute\endcsname{\ifmmode \acute{y}\else \'{y}\fi}% U000FD%
\expandafter\def\csname Entyacy\endcsname{\cyrchar\cyrya }% U0044F%
\expandafter\def\csname Entycirc\endcsname{\ifmmode \hat{y}\else \^{y}\fi}% U00177%
\expandafter\def\csname Entycy\endcsname{\cyrchar\cyrery }% U0044B%
\expandafter\def\csname Entyen\endcsname{\ifmmode \yen \else \textyen \fi}% U000A5%
\expandafter\def\csname Entyfr\endcsname{\ensuremath{\mathfrak{y}}}% U1D536%
\expandafter\def\csname Entyicy\endcsname{\cyrchar\cyryi }% U00457%
\expandafter\def\csname Entyopf\endcsname{\ensuremath{\mathbb{y}}}% U1D56A%
\expandafter\def\csname Entyscr\endcsname{\ensuremath{\mathscr{y}}}% U1D4CE%
\expandafter\def\csname Entyucy\endcsname{\cyrchar\cyryu }% U0044E%
\expandafter\def\csname Entyuml\endcsname{\ifmmode \ddot{y}\else \"{y}\fi}% U000FF%
\expandafter\def\csname Entzacute\endcsname{\ifmmode \acute{z}\else \'{z}\fi}% U0017A%
\expandafter\def\csname Entzcaron\endcsname{\ifmmode \check{z}\else \v{z}\fi}% U0017E%
\expandafter\def\csname Entzcy\endcsname{\cyrchar\cyrz }% U00437%
\expandafter\def\csname Entzdot\endcsname{\ifmmode \dot{z}\else \.{z}\fi}% U0017C%
\expandafter\def\csname Entzeetrf\endcsname{\ensuremath{\mathfrak{Z}}}% U02128%
\expandafter\def\csname Entzeta\endcsname{\ensuremath{\zeta }}% U003B6%
\expandafter\def\csname Entzfr\endcsname{\ensuremath{\mathfrak{z}}}% U1D537%
\expandafter\def\csname Entzgr\endcsname{\ensuremath{\zeta }}% U003B6%
\expandafter\def\csname Entzhcy\endcsname{\cyrchar\cyrzh }% U00436%
\expandafter\def\csname Entzigrarr\endcsname{\ensuremath{}}% U021DDx%
\expandafter\def\csname Entzopf\endcsname{\ensuremath{\mathbb{z}}}% U1D56B%
\expandafter\def\csname Entzscr\endcsname{\ensuremath{\mathscr{z}}}% U1D4CF%
\expandafter\def\csname Enteuro\endcsname{\EUR}% U020AC%