From 865735f6a380cd9a5b5eb1b64d4c82b78e7c0ed1 Mon Sep 17 00:00:00 2001 From: Context Git Mirror Bot Date: Wed, 1 Jul 2015 23:15:05 +0200 Subject: 2015-07-01 21:42:00 --- tex/context/base/anch-bck.mkvi | 1 - tex/context/base/attr-ini.mkiv | 16 + tex/context/base/back-exp.lua | 14 +- tex/context/base/back-exp.mkiv | 1 + tex/context/base/char-cjk.lua | 926 +- tex/context/base/char-def.lua | 38154 +++++++++++++------ tex/context/base/char-ini.lua | 16 +- tex/context/base/cont-new.mkiv | 2 +- tex/context/base/context-version.pdf | Bin 4203 -> 4202 bytes tex/context/base/context.mkiv | 6 +- tex/context/base/font-agl.lua | 12 +- tex/context/base/font-cff.lua | 721 +- tex/context/base/font-inj.lua | 23 +- tex/context/base/font-lib.mkvi | 1 + tex/context/base/font-map.lua | 473 +- tex/context/base/font-mis.lua | 2 +- tex/context/base/font-otf.lua | 165 +- tex/context/base/font-otl.lua | 25 + tex/context/base/font-otn.lua | 28 +- tex/context/base/font-otp.lua | 5 +- tex/context/base/font-otr.lua | 655 +- tex/context/base/font-tmp.lua | 34 +- tex/context/base/font-ttf.lua | 31 +- tex/context/base/font-vf.lua | 52 +- tex/context/base/lpdf-tag.lua | 28 +- tex/context/base/luat-cbk.lua | 146 +- tex/context/base/luat-fio.lua | 8 +- tex/context/base/luat-lib.mkiv | 1 + tex/context/base/lxml-ini.mkiv | 20 +- tex/context/base/lxml-tex.lua | 24 +- tex/context/base/meta-imp-outlines.mkiv | 28 +- tex/context/base/node-fnt.lua | 64 +- tex/context/base/s-fonts-shapes.lua | 5 +- tex/context/base/s-fonts-shapes.mkiv | 52 +- tex/context/base/status-files.pdf | Bin 24442 -> 24438 bytes tex/context/base/status-lua.pdf | Bin 252050 -> 253676 bytes tex/context/base/strc-num.mkiv | 16 +- tex/context/base/strc-ref.lua | 6 +- tex/context/base/strc-tag.mkiv | 23 +- tex/context/base/type-imp-mscore.mkiv | 15 + tex/context/base/util-fil.lua | 78 +- tex/context/base/util-sac.lua | 202 + tex/context/base/x-asciimath.lua | 14 +- tex/generic/context/luatex/luatex-fonts-cbk.lua | 33 +- tex/generic/context/luatex/luatex-fonts-merged.lua | 399 +- 45 files changed, 29012 insertions(+), 13513 deletions(-) create mode 100644 tex/context/base/font-otl.lua create mode 100644 tex/context/base/util-sac.lua (limited to 'tex') diff --git a/tex/context/base/anch-bck.mkvi b/tex/context/base/anch-bck.mkvi index 273cf0159..ee392f114 100644 --- a/tex/context/base/anch-bck.mkvi +++ b/tex/context/base/anch-bck.mkvi @@ -256,7 +256,6 @@ % \usetextbackgroundstyleandcolor\c!style\c!color \nowhitespace - \nobreak % new per 23/04/2006 (else potential break when whitespace) \seteffectivehsize \doinhibitblank % \blank[\v!disable]% new \par} diff --git a/tex/context/base/attr-ini.mkiv b/tex/context/base/attr-ini.mkiv index c6b798d18..614c30da0 100644 --- a/tex/context/base/attr-ini.mkiv +++ b/tex/context/base/attr-ini.mkiv @@ -108,3 +108,19 @@ \unexpanded\def\showattributes{\clf_showattributes} \protect \endinput + +% for the luatex list: +% +% \attributedef\zeroattribute=0 +% \attributedef\someatriubute=999 +% +% \directlua { +% local createtoken = newtoken.create +% function attributenumber(name) +% local n = createtoken(name).mode - createtoken("zeroattribute").mode +% return n >= 0 and n or false +% end +% } +% +% \directlua{print(attributenumber("noneattribute"))} +% \directlua{print(attributenumber("someattribute"))} diff --git a/tex/context/base/back-exp.lua b/tex/context/base/back-exp.lua index 33b6aa1e8..27b4db8ef 100644 --- a/tex/context/base/back-exp.lua +++ b/tex/context/base/back-exp.lua @@ -139,6 +139,9 @@ local specifications = structurestags.specifications local properties = structurestags.properties local locatedtag = structurestags.locatedtag +local usewithcare = { } +structurestags.usewithcare = usewithcare + local starttiming = statistics.starttiming local stoptiming = statistics.stoptiming @@ -771,12 +774,13 @@ end do - local image = { } - usedimages.image = image + local image = { } + usedimages.image = image + usewithcare.images = image local f_id = formatters["%s-%s"] - function structurestags.setfigure(name,used,page,width,height) + function structurestags.setfigure(name,used,page,width,height,label) local fulltag = locatedtag("image") local spec = specifications[fulltag] local page = tonumber(page) @@ -787,6 +791,7 @@ do page = page and page > 1 and page or nil, width = todimen(width, "cm","%0.3F%s"), height = todimen(height,"cm","%0.3F%s"), + label = label, } end @@ -798,6 +803,7 @@ do setattribute(di,"id",data.id) setattribute(di,"width",data.width) setattribute(di,"height",data.height) + setattribute(di,"label",data.height) end end @@ -3622,7 +3628,7 @@ implement { implement { name = "settagfigure", actions = structurestags.setfigure, - arguments = { "string", "string", "string", "dimen", "dimen" } + arguments = { "string", "string", "string", "dimen", "dimen", "string" } } implement { diff --git a/tex/context/base/back-exp.mkiv b/tex/context/base/back-exp.mkiv index a4ebe38aa..ed521e652 100644 --- a/tex/context/base/back-exp.mkiv +++ b/tex/context/base/back-exp.mkiv @@ -125,6 +125,7 @@ {\figurefilepage}% \dimexpr\figurewidth\relax \dimexpr\figureheight\relax + {\figurelabel}% \fi}% \to \everyenableelements diff --git a/tex/context/base/char-cjk.lua b/tex/context/base/char-cjk.lua index 30f618896..42fb49555 100644 --- a/tex/context/base/char-cjk.lua +++ b/tex/context/base/char-cjk.lua @@ -6,12 +6,15 @@ if not modules then modules = { } end modules ['char-cjk'] = { license = "see context related readme files" } -local setmetatable = setmetatable +local setmetatable, next = setmetatable, next local insert = table.insert local floor = math.floor local formatters = string.formatters local utfchar = utf.char +local setmetatableindex = table.setmetatableindex + +characters = characters or { } local ranges = characters.ranges local allocate = utilities.storage.allocate @@ -276,6 +279,911 @@ setmetatable(hangul_syllable_range, hangul_syllable_metatable) -- CJK Ideograph +local knownvariants = { + [0x0349E] = { [0x0FE00] = 0x2F80C }, + [0x034B9] = { [0x0FE00] = 0x2F813 }, + [0x034BB] = { [0x0FE00] = 0x2F9CA }, + [0x034DF] = { [0x0FE00] = 0x2F81F }, + [0x03515] = { [0x0FE00] = 0x2F824 }, + [0x036EE] = { [0x0FE00] = 0x2F867 }, + [0x036FC] = { [0x0FE00] = 0x2F868 }, + [0x03781] = { [0x0FE00] = 0x2F876 }, + [0x0382F] = { [0x0FE00] = 0x2F883 }, + [0x03862] = { [0x0FE00] = 0x2F888 }, + [0x0387C] = { [0x0FE00] = 0x2F88A }, + [0x038C7] = { [0x0FE00] = 0x2F896 }, + [0x038E3] = { [0x0FE00] = 0x2F89B }, + [0x0391C] = { [0x0FE00] = 0x2F8A2 }, + [0x0393A] = { [0x0FE00] = 0x2F8A1 }, + [0x03A2E] = { [0x0FE00] = 0x2F8C2 }, + [0x03A6C] = { [0x0FE00] = 0x2F8C7 }, + [0x03AE4] = { [0x0FE00] = 0x2F8D1 }, + [0x03B08] = { [0x0FE00] = 0x2F8D0 }, + [0x03B19] = { [0x0FE00] = 0x2F8CE }, + [0x03B49] = { [0x0FE00] = 0x2F8DE }, + [0x03B9D] = { [0x0FE00] = 0x0FAD2, [0x0FE01] = 0x2F8E7 }, + [0x03C18] = { [0x0FE00] = 0x2F8EE }, + [0x03C4E] = { [0x0FE00] = 0x2F8F2 }, + [0x03D33] = { [0x0FE00] = 0x2F90A }, + [0x03D96] = { [0x0FE00] = 0x2F916 }, + [0x03EAC] = { [0x0FE00] = 0x2F92A }, + [0x03EB8] = { [0x0FE00] = 0x2F92C, [0x0FE01] = 0x2F92D }, + [0x03F1B] = { [0x0FE00] = 0x2F933 }, + [0x03FFC] = { [0x0FE00] = 0x2F93E }, + [0x04008] = { [0x0FE00] = 0x2F93F }, + [0x04018] = { [0x0FE00] = 0x0FAD3 }, + [0x04039] = { [0x0FE00] = 0x0FAD4, [0x0FE01] = 0x2F949 }, + [0x04046] = { [0x0FE00] = 0x2F94B }, + [0x04096] = { [0x0FE00] = 0x2F94C }, + [0x040E3] = { [0x0FE00] = 0x2F951 }, + [0x0412F] = { [0x0FE00] = 0x2F958 }, + [0x04202] = { [0x0FE00] = 0x2F960 }, + [0x04227] = { [0x0FE00] = 0x2F964 }, + [0x042A0] = { [0x0FE00] = 0x2F967 }, + [0x04301] = { [0x0FE00] = 0x2F96D }, + [0x04334] = { [0x0FE00] = 0x2F971 }, + [0x04359] = { [0x0FE00] = 0x2F974 }, + [0x043D5] = { [0x0FE00] = 0x2F981 }, + [0x043D9] = { [0x0FE00] = 0x2F8D7 }, + [0x0440B] = { [0x0FE00] = 0x2F984 }, + [0x0446B] = { [0x0FE00] = 0x2F98E }, + [0x0452B] = { [0x0FE00] = 0x2F9A7 }, + [0x0455D] = { [0x0FE00] = 0x2F9AE }, + [0x04561] = { [0x0FE00] = 0x2F9AF }, + [0x0456B] = { [0x0FE00] = 0x2F9B2 }, + [0x045D7] = { [0x0FE00] = 0x2F9BF }, + [0x045F9] = { [0x0FE00] = 0x2F9C2 }, + [0x04635] = { [0x0FE00] = 0x2F9C8 }, + [0x046BE] = { [0x0FE00] = 0x2F9CD }, + [0x046C7] = { [0x0FE00] = 0x2F9CE }, + [0x04995] = { [0x0FE00] = 0x2F9EF }, + [0x049E6] = { [0x0FE00] = 0x2F9F2 }, + [0x04A6E] = { [0x0FE00] = 0x2F9F8 }, + [0x04A76] = { [0x0FE00] = 0x2F9F9 }, + [0x04AB2] = { [0x0FE00] = 0x2F9FC }, + [0x04B33] = { [0x0FE00] = 0x2FA03 }, + [0x04BCE] = { [0x0FE00] = 0x2FA08 }, + [0x04CCE] = { [0x0FE00] = 0x2FA0D }, + [0x04CED] = { [0x0FE00] = 0x2FA0E }, + [0x04CF8] = { [0x0FE00] = 0x2FA11 }, + [0x04D56] = { [0x0FE00] = 0x2FA16 }, + [0x04E0D] = { [0x0FE00] = 0x0F967 }, + [0x04E26] = { [0x0FE00] = 0x0FA70 }, + [0x04E32] = { [0x0FE00] = 0x0F905 }, + [0x04E38] = { [0x0FE00] = 0x2F801 }, + [0x04E39] = { [0x0FE00] = 0x0F95E }, + [0x04E3D] = { [0x0FE00] = 0x2F800 }, + [0x04E41] = { [0x0FE00] = 0x2F802 }, + [0x04E82] = { [0x0FE00] = 0x0F91B }, + [0x04E86] = { [0x0FE00] = 0x0F9BA }, + [0x04EAE] = { [0x0FE00] = 0x0F977 }, + [0x04EC0] = { [0x0FE00] = 0x0F9FD }, + [0x04ECC] = { [0x0FE00] = 0x2F819 }, + [0x04EE4] = { [0x0FE00] = 0x0F9A8 }, + [0x04F60] = { [0x0FE00] = 0x2F804 }, + [0x04F80] = { [0x0FE00] = 0x0FA73 }, + [0x04F86] = { [0x0FE00] = 0x0F92D }, + [0x04F8B] = { [0x0FE00] = 0x0F9B5 }, + [0x04FAE] = { [0x0FE00] = 0x0FA30, [0x0FE01] = 0x2F805 }, + [0x04FBB] = { [0x0FE00] = 0x2F806 }, + [0x04FBF] = { [0x0FE00] = 0x0F965 }, + [0x05002] = { [0x0FE00] = 0x2F807 }, + [0x0502B] = { [0x0FE00] = 0x0F9D4 }, + [0x0507A] = { [0x0FE00] = 0x2F808 }, + [0x05099] = { [0x0FE00] = 0x2F809 }, + [0x050CF] = { [0x0FE00] = 0x2F80B }, + [0x050DA] = { [0x0FE00] = 0x0F9BB }, + [0x050E7] = { [0x0FE00] = 0x0FA31, [0x0FE01] = 0x2F80A }, + [0x05140] = { [0x0FE00] = 0x0FA0C }, + [0x05145] = { [0x0FE00] = 0x0FA74 }, + [0x0514D] = { [0x0FE00] = 0x0FA32, [0x0FE01] = 0x2F80E }, + [0x05154] = { [0x0FE00] = 0x2F80F }, + [0x05164] = { [0x0FE00] = 0x2F810 }, + [0x05167] = { [0x0FE00] = 0x2F814 }, + [0x05168] = { [0x0FE00] = 0x0FA72 }, + [0x05169] = { [0x0FE00] = 0x0F978 }, + [0x0516D] = { [0x0FE00] = 0x0F9D1 }, + [0x05177] = { [0x0FE00] = 0x2F811 }, + [0x05180] = { [0x0FE00] = 0x0FA75 }, + [0x0518D] = { [0x0FE00] = 0x2F815 }, + [0x05192] = { [0x0FE00] = 0x2F8D2 }, + [0x05195] = { [0x0FE00] = 0x2F8D3 }, + [0x05197] = { [0x0FE00] = 0x2F817 }, + [0x051A4] = { [0x0FE00] = 0x2F818 }, + [0x051AC] = { [0x0FE00] = 0x2F81A }, + [0x051B5] = { [0x0FE00] = 0x0FA71, [0x0FE01] = 0x2F81B }, + [0x051B7] = { [0x0FE00] = 0x0F92E }, + [0x051C9] = { [0x0FE00] = 0x0F979 }, + [0x051CC] = { [0x0FE00] = 0x0F955 }, + [0x051DC] = { [0x0FE00] = 0x0F954 }, + [0x051DE] = { [0x0FE00] = 0x0FA15 }, + [0x051F5] = { [0x0FE00] = 0x2F81D }, + [0x05203] = { [0x0FE00] = 0x2F81E }, + [0x05207] = { [0x0FE00] = 0x0FA00, [0x0FE01] = 0x2F850 }, + [0x05217] = { [0x0FE00] = 0x0F99C }, + [0x05229] = { [0x0FE00] = 0x0F9DD }, + [0x0523A] = { [0x0FE00] = 0x0F9FF }, + [0x0523B] = { [0x0FE00] = 0x2F820 }, + [0x05246] = { [0x0FE00] = 0x2F821 }, + [0x05272] = { [0x0FE00] = 0x2F822 }, + [0x05277] = { [0x0FE00] = 0x2F823 }, + [0x05289] = { [0x0FE00] = 0x0F9C7 }, + [0x0529B] = { [0x0FE00] = 0x0F98A }, + [0x052A3] = { [0x0FE00] = 0x0F99D }, + [0x052B3] = { [0x0FE00] = 0x2F992 }, + [0x052C7] = { [0x0FE00] = 0x0FA76, [0x0FE01] = 0x2F825 }, + [0x052C9] = { [0x0FE00] = 0x0FA33, [0x0FE01] = 0x2F826 }, + [0x052D2] = { [0x0FE00] = 0x0F952 }, + [0x052DE] = { [0x0FE00] = 0x0F92F }, + [0x052E4] = { [0x0FE00] = 0x0FA34, [0x0FE01] = 0x2F827 }, + [0x052F5] = { [0x0FE00] = 0x0F97F }, + [0x052FA] = { [0x0FE00] = 0x0FA77, [0x0FE01] = 0x2F828 }, + [0x05305] = { [0x0FE00] = 0x2F829 }, + [0x05306] = { [0x0FE00] = 0x2F82A }, + [0x05317] = { [0x0FE00] = 0x0F963, [0x0FE01] = 0x2F82B }, + [0x0533F] = { [0x0FE00] = 0x0F9EB }, + [0x05349] = { [0x0FE00] = 0x2F82C }, + [0x05351] = { [0x0FE00] = 0x0FA35, [0x0FE01] = 0x2F82D }, + [0x0535A] = { [0x0FE00] = 0x2F82E }, + [0x05373] = { [0x0FE00] = 0x2F82F }, + [0x05375] = { [0x0FE00] = 0x0F91C }, + [0x0537D] = { [0x0FE00] = 0x2F830 }, + [0x0537F] = { [0x0FE00] = 0x2F831, [0x0FE01] = 0x2F832, [0x0FE02] = 0x2F833 }, + [0x053C3] = { [0x0FE00] = 0x0F96B }, + [0x053CA] = { [0x0FE00] = 0x2F836 }, + [0x053DF] = { [0x0FE00] = 0x2F837 }, + [0x053E5] = { [0x0FE00] = 0x0F906 }, + [0x053EB] = { [0x0FE00] = 0x2F839 }, + [0x053F1] = { [0x0FE00] = 0x2F83A }, + [0x05406] = { [0x0FE00] = 0x2F83B }, + [0x0540F] = { [0x0FE00] = 0x0F9DE }, + [0x0541D] = { [0x0FE00] = 0x0F9ED }, + [0x05438] = { [0x0FE00] = 0x2F83D }, + [0x05442] = { [0x0FE00] = 0x0F980 }, + [0x05448] = { [0x0FE00] = 0x2F83E }, + [0x05468] = { [0x0FE00] = 0x2F83F }, + [0x0549E] = { [0x0FE00] = 0x2F83C }, + [0x054A2] = { [0x0FE00] = 0x2F840 }, + [0x054BD] = { [0x0FE00] = 0x0F99E }, + [0x054F6] = { [0x0FE00] = 0x2F841 }, + [0x05510] = { [0x0FE00] = 0x2F842 }, + [0x05553] = { [0x0FE00] = 0x2F843 }, + [0x05555] = { [0x0FE00] = 0x0FA79 }, + [0x05563] = { [0x0FE00] = 0x2F844 }, + [0x05584] = { [0x0FE00] = 0x2F845, [0x0FE01] = 0x2F846 }, + [0x05587] = { [0x0FE00] = 0x0F90B }, + [0x05599] = { [0x0FE00] = 0x0FA7A, [0x0FE01] = 0x2F847 }, + [0x0559D] = { [0x0FE00] = 0x0FA36, [0x0FE01] = 0x0FA78 }, + [0x055AB] = { [0x0FE00] = 0x2F848 }, + [0x055B3] = { [0x0FE00] = 0x2F849 }, + [0x055C0] = { [0x0FE00] = 0x0FA0D }, + [0x055C2] = { [0x0FE00] = 0x2F84A }, + [0x055E2] = { [0x0FE00] = 0x0FA7B }, + [0x05606] = { [0x0FE00] = 0x0FA37, [0x0FE01] = 0x2F84C }, + [0x05651] = { [0x0FE00] = 0x2F84E }, + [0x05668] = { [0x0FE00] = 0x0FA38 }, + [0x05674] = { [0x0FE00] = 0x2F84F }, + [0x056F9] = { [0x0FE00] = 0x0F9A9 }, + [0x05716] = { [0x0FE00] = 0x2F84B }, + [0x05717] = { [0x0FE00] = 0x2F84D }, + [0x0578B] = { [0x0FE00] = 0x2F855 }, + [0x057CE] = { [0x0FE00] = 0x2F852 }, + [0x057F4] = { [0x0FE00] = 0x2F853 }, + [0x0580D] = { [0x0FE00] = 0x2F854 }, + [0x05831] = { [0x0FE00] = 0x2F857 }, + [0x05832] = { [0x0FE00] = 0x2F856 }, + [0x05840] = { [0x0FE00] = 0x0FA39 }, + [0x0585A] = { [0x0FE00] = 0x0FA10, [0x0FE01] = 0x0FA7C }, + [0x0585E] = { [0x0FE00] = 0x0F96C }, + [0x058A8] = { [0x0FE00] = 0x0FA3A }, + [0x058AC] = { [0x0FE00] = 0x2F858 }, + [0x058B3] = { [0x0FE00] = 0x0FA7D }, + [0x058D8] = { [0x0FE00] = 0x0F94A }, + [0x058DF] = { [0x0FE00] = 0x0F942 }, + [0x058EE] = { [0x0FE00] = 0x2F851 }, + [0x058F2] = { [0x0FE00] = 0x2F85A }, + [0x058F7] = { [0x0FE00] = 0x2F85B }, + [0x05906] = { [0x0FE00] = 0x2F85C }, + [0x0591A] = { [0x0FE00] = 0x2F85D }, + [0x05922] = { [0x0FE00] = 0x2F85E }, + [0x05944] = { [0x0FE00] = 0x0FA7E }, + [0x05948] = { [0x0FE00] = 0x0F90C }, + [0x05951] = { [0x0FE00] = 0x0F909 }, + [0x05954] = { [0x0FE00] = 0x0FA7F }, + [0x05962] = { [0x0FE00] = 0x2F85F }, + [0x05973] = { [0x0FE00] = 0x0F981 }, + [0x059D8] = { [0x0FE00] = 0x2F865 }, + [0x059EC] = { [0x0FE00] = 0x2F862 }, + [0x05A1B] = { [0x0FE00] = 0x2F863 }, + [0x05A27] = { [0x0FE00] = 0x2F864 }, + [0x05A62] = { [0x0FE00] = 0x0FA80 }, + [0x05A66] = { [0x0FE00] = 0x2F866 }, + [0x05AB5] = { [0x0FE00] = 0x2F986 }, + [0x05B08] = { [0x0FE00] = 0x2F869 }, + [0x05B28] = { [0x0FE00] = 0x0FA81 }, + [0x05B3E] = { [0x0FE00] = 0x2F86A, [0x0FE01] = 0x2F86B }, + [0x05B85] = { [0x0FE00] = 0x0FA04 }, + [0x05BC3] = { [0x0FE00] = 0x2F86D }, + [0x05BD8] = { [0x0FE00] = 0x2F86E }, + [0x05BE7] = { [0x0FE00] = 0x0F95F, [0x0FE01] = 0x0F9AA, [0x0FE02] = 0x2F86F }, + [0x05BEE] = { [0x0FE00] = 0x0F9BC }, + [0x05BF3] = { [0x0FE00] = 0x2F870 }, + [0x05BFF] = { [0x0FE00] = 0x2F872 }, + [0x05C06] = { [0x0FE00] = 0x2F873 }, + [0x05C22] = { [0x0FE00] = 0x2F875 }, + [0x05C3F] = { [0x0FE00] = 0x0F9BD }, + [0x05C60] = { [0x0FE00] = 0x2F877 }, + [0x05C62] = { [0x0FE00] = 0x0F94B }, + [0x05C64] = { [0x0FE00] = 0x0FA3B }, + [0x05C65] = { [0x0FE00] = 0x0F9DF }, + [0x05C6E] = { [0x0FE00] = 0x0FA3C, [0x0FE01] = 0x2F878 }, + [0x05C8D] = { [0x0FE00] = 0x2F87A }, + [0x05CC0] = { [0x0FE00] = 0x2F879 }, + [0x05D19] = { [0x0FE00] = 0x0F9D5 }, + [0x05D43] = { [0x0FE00] = 0x2F87C }, + [0x05D50] = { [0x0FE00] = 0x0F921 }, + [0x05D6B] = { [0x0FE00] = 0x2F87F }, + [0x05D6E] = { [0x0FE00] = 0x2F87E }, + [0x05D7C] = { [0x0FE00] = 0x2F880 }, + [0x05DB2] = { [0x0FE00] = 0x2F9F4 }, + [0x05DBA] = { [0x0FE00] = 0x0F9AB }, + [0x05DE1] = { [0x0FE00] = 0x2F881 }, + [0x05DE2] = { [0x0FE00] = 0x2F882 }, + [0x05DFD] = { [0x0FE00] = 0x2F884 }, + [0x05E28] = { [0x0FE00] = 0x2F885 }, + [0x05E3D] = { [0x0FE00] = 0x2F886 }, + [0x05E69] = { [0x0FE00] = 0x2F887 }, + [0x05E74] = { [0x0FE00] = 0x0F98E }, + [0x05EA6] = { [0x0FE00] = 0x0FA01 }, + [0x05EB0] = { [0x0FE00] = 0x2F88B }, + [0x05EB3] = { [0x0FE00] = 0x2F88C }, + [0x05EB6] = { [0x0FE00] = 0x2F88D }, + [0x05EC9] = { [0x0FE00] = 0x0F9A2 }, + [0x05ECA] = { [0x0FE00] = 0x0F928, [0x0FE01] = 0x2F88E }, + [0x05ED2] = { [0x0FE00] = 0x0FA82 }, + [0x05ED3] = { [0x0FE00] = 0x0FA0B }, + [0x05ED9] = { [0x0FE00] = 0x0FA83 }, + [0x05EEC] = { [0x0FE00] = 0x0F982 }, + [0x05EFE] = { [0x0FE00] = 0x2F890 }, + [0x05F04] = { [0x0FE00] = 0x0F943 }, + [0x05F22] = { [0x0FE00] = 0x2F894, [0x0FE01] = 0x2F895 }, + [0x05F53] = { [0x0FE00] = 0x2F874 }, + [0x05F62] = { [0x0FE00] = 0x2F899 }, + [0x05F69] = { [0x0FE00] = 0x0FA84 }, + [0x05F6B] = { [0x0FE00] = 0x2F89A }, + [0x05F8B] = { [0x0FE00] = 0x0F9D8 }, + [0x05F9A] = { [0x0FE00] = 0x2F89C }, + [0x05FA9] = { [0x0FE00] = 0x0F966 }, + [0x05FAD] = { [0x0FE00] = 0x0FA85 }, + [0x05FCD] = { [0x0FE00] = 0x2F89D }, + [0x05FD7] = { [0x0FE00] = 0x2F89E }, + [0x05FF5] = { [0x0FE00] = 0x0F9A3 }, + [0x05FF9] = { [0x0FE00] = 0x2F89F }, + [0x06012] = { [0x0FE00] = 0x0F960 }, + [0x0601C] = { [0x0FE00] = 0x0F9AC }, + [0x06075] = { [0x0FE00] = 0x0FA6B }, + [0x06081] = { [0x0FE00] = 0x2F8A0 }, + [0x06094] = { [0x0FE00] = 0x0FA3D, [0x0FE01] = 0x2F8A3 }, + [0x060C7] = { [0x0FE00] = 0x2F8A5 }, + [0x060D8] = { [0x0FE00] = 0x0FA86 }, + [0x060E1] = { [0x0FE00] = 0x0F9B9 }, + [0x06108] = { [0x0FE00] = 0x0FA88 }, + [0x06144] = { [0x0FE00] = 0x0F9D9 }, + [0x06148] = { [0x0FE00] = 0x2F8A6 }, + [0x0614C] = { [0x0FE00] = 0x2F8A7, [0x0FE01] = 0x2F8A9 }, + [0x0614E] = { [0x0FE00] = 0x0FA87, [0x0FE01] = 0x2F8A8 }, + [0x06160] = { [0x0FE00] = 0x0FA8A }, + [0x06168] = { [0x0FE00] = 0x0FA3E }, + [0x0617A] = { [0x0FE00] = 0x2F8AA }, + [0x0618E] = { [0x0FE00] = 0x0FA3F, [0x0FE01] = 0x0FA89, [0x0FE02] = 0x2F8AB }, + [0x06190] = { [0x0FE00] = 0x0F98F }, + [0x061A4] = { [0x0FE00] = 0x2F8AD }, + [0x061AF] = { [0x0FE00] = 0x2F8AE }, + [0x061B2] = { [0x0FE00] = 0x2F8AC }, + [0x061DE] = { [0x0FE00] = 0x2F8AF }, + [0x061F2] = { [0x0FE00] = 0x0FA40, [0x0FE01] = 0x0FA8B, [0x0FE02] = 0x2F8B0 }, + [0x061F6] = { [0x0FE00] = 0x0F90D, [0x0FE01] = 0x2F8B1 }, + [0x06200] = { [0x0FE00] = 0x0F990 }, + [0x06210] = { [0x0FE00] = 0x2F8B2 }, + [0x0621B] = { [0x0FE00] = 0x2F8B3 }, + [0x0622E] = { [0x0FE00] = 0x0F9D2 }, + [0x06234] = { [0x0FE00] = 0x0FA8C }, + [0x0625D] = { [0x0FE00] = 0x2F8B4 }, + [0x062B1] = { [0x0FE00] = 0x2F8B5 }, + [0x062C9] = { [0x0FE00] = 0x0F925 }, + [0x062CF] = { [0x0FE00] = 0x0F95B }, + [0x062D3] = { [0x0FE00] = 0x0FA02 }, + [0x062D4] = { [0x0FE00] = 0x2F8B6 }, + [0x062FC] = { [0x0FE00] = 0x2F8BA }, + [0x062FE] = { [0x0FE00] = 0x0F973 }, + [0x0633D] = { [0x0FE00] = 0x2F8B9 }, + [0x06350] = { [0x0FE00] = 0x2F8B7 }, + [0x06368] = { [0x0FE00] = 0x2F8BB }, + [0x0637B] = { [0x0FE00] = 0x0F9A4 }, + [0x06383] = { [0x0FE00] = 0x2F8BC }, + [0x063A0] = { [0x0FE00] = 0x0F975 }, + [0x063A9] = { [0x0FE00] = 0x2F8C1 }, + [0x063C4] = { [0x0FE00] = 0x0FA8D }, + [0x063C5] = { [0x0FE00] = 0x2F8C0 }, + [0x063E4] = { [0x0FE00] = 0x2F8BD }, + [0x0641C] = { [0x0FE00] = 0x0FA8E }, + [0x06422] = { [0x0FE00] = 0x2F8BF }, + [0x06452] = { [0x0FE00] = 0x0FA8F }, + [0x06469] = { [0x0FE00] = 0x2F8C3 }, + [0x06477] = { [0x0FE00] = 0x2F8C6 }, + [0x0647E] = { [0x0FE00] = 0x2F8C4 }, + [0x0649A] = { [0x0FE00] = 0x0F991 }, + [0x0649D] = { [0x0FE00] = 0x2F8C5 }, + [0x064C4] = { [0x0FE00] = 0x0F930 }, + [0x0654F] = { [0x0FE00] = 0x0FA41, [0x0FE01] = 0x2F8C8 }, + [0x06556] = { [0x0FE00] = 0x0FA90 }, + [0x0656C] = { [0x0FE00] = 0x2F8C9 }, + [0x06578] = { [0x0FE00] = 0x0F969 }, + [0x06599] = { [0x0FE00] = 0x0F9BE }, + [0x065C5] = { [0x0FE00] = 0x0F983 }, + [0x065E2] = { [0x0FE00] = 0x0FA42 }, + [0x065E3] = { [0x0FE00] = 0x2F8CB }, + [0x06613] = { [0x0FE00] = 0x0F9E0 }, + [0x06649] = { [0x0FE00] = 0x2F8CD }, + [0x06674] = { [0x0FE00] = 0x0FA12, [0x0FE01] = 0x0FA91 }, + [0x06688] = { [0x0FE00] = 0x0F9C5 }, + [0x06691] = { [0x0FE00] = 0x0FA43, [0x0FE01] = 0x2F8CF }, + [0x0669C] = { [0x0FE00] = 0x2F8D5 }, + [0x066B4] = { [0x0FE00] = 0x0FA06 }, + [0x066C6] = { [0x0FE00] = 0x0F98B }, + [0x066F4] = { [0x0FE00] = 0x0F901 }, + [0x066F8] = { [0x0FE00] = 0x2F8CC }, + [0x06700] = { [0x0FE00] = 0x2F8D4 }, + [0x06717] = { [0x0FE00] = 0x0F929, [0x0FE01] = 0x0FA92, [0x0FE02] = 0x2F8D8 }, + [0x0671B] = { [0x0FE00] = 0x0FA93, [0x0FE01] = 0x2F8D9 }, + [0x06721] = { [0x0FE00] = 0x2F8DA }, + [0x0674E] = { [0x0FE00] = 0x0F9E1 }, + [0x06753] = { [0x0FE00] = 0x2F8DC }, + [0x06756] = { [0x0FE00] = 0x0FA94 }, + [0x0675E] = { [0x0FE00] = 0x2F8DB }, + [0x0677B] = { [0x0FE00] = 0x0F9C8 }, + [0x06785] = { [0x0FE00] = 0x2F8E0 }, + [0x06797] = { [0x0FE00] = 0x0F9F4 }, + [0x067F3] = { [0x0FE00] = 0x0F9C9 }, + [0x067FA] = { [0x0FE00] = 0x2F8DF }, + [0x06817] = { [0x0FE00] = 0x0F9DA }, + [0x0681F] = { [0x0FE00] = 0x2F8E5 }, + [0x06852] = { [0x0FE00] = 0x2F8E1 }, + [0x06881] = { [0x0FE00] = 0x0F97A }, + [0x06885] = { [0x0FE00] = 0x0FA44, [0x0FE01] = 0x2F8E2 }, + [0x0688E] = { [0x0FE00] = 0x2F8E4 }, + [0x068A8] = { [0x0FE00] = 0x0F9E2 }, + [0x06914] = { [0x0FE00] = 0x2F8E6 }, + [0x06942] = { [0x0FE00] = 0x2F8E8 }, + [0x069A3] = { [0x0FE00] = 0x2F8E9 }, + [0x069EA] = { [0x0FE00] = 0x2F8EA }, + [0x06A02] = { [0x0FE00] = 0x0F914, [0x0FE01] = 0x0F95C, [0x0FE02] = 0x0F9BF }, + [0x06A13] = { [0x0FE00] = 0x0F94C }, + [0x06AA8] = { [0x0FE00] = 0x2F8EB }, + [0x06AD3] = { [0x0FE00] = 0x0F931 }, + [0x06ADB] = { [0x0FE00] = 0x2F8ED }, + [0x06B04] = { [0x0FE00] = 0x0F91D }, + [0x06B21] = { [0x0FE00] = 0x2F8EF }, + [0x06B54] = { [0x0FE00] = 0x2F8F1 }, + [0x06B72] = { [0x0FE00] = 0x2F8F3 }, + [0x06B77] = { [0x0FE00] = 0x0F98C }, + [0x06B79] = { [0x0FE00] = 0x0FA95 }, + [0x06B9F] = { [0x0FE00] = 0x2F8F4 }, + [0x06BAE] = { [0x0FE00] = 0x0F9A5 }, + [0x06BBA] = { [0x0FE00] = 0x0F970, [0x0FE01] = 0x0FA96, [0x0FE02] = 0x2F8F5 }, + [0x06BBB] = { [0x0FE00] = 0x2F8F6 }, + [0x06C4E] = { [0x0FE00] = 0x2F8FA }, + [0x06C67] = { [0x0FE00] = 0x2F8FE }, + [0x06C88] = { [0x0FE00] = 0x0F972 }, + [0x06CBF] = { [0x0FE00] = 0x2F8FC }, + [0x06CCC] = { [0x0FE00] = 0x0F968 }, + [0x06CCD] = { [0x0FE00] = 0x2F8FD }, + [0x06CE5] = { [0x0FE00] = 0x0F9E3 }, + [0x06D16] = { [0x0FE00] = 0x2F8FF }, + [0x06D1B] = { [0x0FE00] = 0x0F915 }, + [0x06D1E] = { [0x0FE00] = 0x0FA05 }, + [0x06D34] = { [0x0FE00] = 0x2F907 }, + [0x06D3E] = { [0x0FE00] = 0x2F900 }, + [0x06D41] = { [0x0FE00] = 0x0F9CA, [0x0FE01] = 0x0FA97, [0x0FE02] = 0x2F902 }, + [0x06D69] = { [0x0FE00] = 0x2F903 }, + [0x06D6A] = { [0x0FE00] = 0x0F92A }, + [0x06D77] = { [0x0FE00] = 0x0FA45, [0x0FE01] = 0x2F901 }, + [0x06D78] = { [0x0FE00] = 0x2F904 }, + [0x06D85] = { [0x0FE00] = 0x2F905 }, + [0x06DCB] = { [0x0FE00] = 0x0F9F5 }, + [0x06DDA] = { [0x0FE00] = 0x0F94D }, + [0x06DEA] = { [0x0FE00] = 0x0F9D6 }, + [0x06DF9] = { [0x0FE00] = 0x2F90E }, + [0x06E1A] = { [0x0FE00] = 0x0FA46 }, + [0x06E2F] = { [0x0FE00] = 0x2F908 }, + [0x06E6E] = { [0x0FE00] = 0x2F909 }, + [0x06E9C] = { [0x0FE00] = 0x0F9CB }, + [0x06EBA] = { [0x0FE00] = 0x0F9EC }, + [0x06EC7] = { [0x0FE00] = 0x2F90C }, + [0x06ECB] = { [0x0FE00] = 0x0FA99, [0x0FE01] = 0x2F90B }, + [0x06ED1] = { [0x0FE00] = 0x0F904 }, + [0x06EDB] = { [0x0FE00] = 0x0FA98 }, + [0x06F0F] = { [0x0FE00] = 0x0F94E }, + [0x06F22] = { [0x0FE00] = 0x0FA47, [0x0FE01] = 0x0FA9A }, + [0x06F23] = { [0x0FE00] = 0x0F992 }, + [0x06F6E] = { [0x0FE00] = 0x2F90F }, + [0x06FC6] = { [0x0FE00] = 0x2F912 }, + [0x06FEB] = { [0x0FE00] = 0x0F922 }, + [0x06FFE] = { [0x0FE00] = 0x0F984 }, + [0x0701B] = { [0x0FE00] = 0x2F915 }, + [0x0701E] = { [0x0FE00] = 0x0FA9B, [0x0FE01] = 0x2F914 }, + [0x07039] = { [0x0FE00] = 0x2F913 }, + [0x0704A] = { [0x0FE00] = 0x2F917 }, + [0x07070] = { [0x0FE00] = 0x2F835 }, + [0x07077] = { [0x0FE00] = 0x2F919 }, + [0x0707D] = { [0x0FE00] = 0x2F918 }, + [0x07099] = { [0x0FE00] = 0x0F9FB }, + [0x070AD] = { [0x0FE00] = 0x2F91A }, + [0x070C8] = { [0x0FE00] = 0x0F99F }, + [0x070D9] = { [0x0FE00] = 0x0F916 }, + [0x07145] = { [0x0FE00] = 0x2F91C }, + [0x07149] = { [0x0FE00] = 0x0F993 }, + [0x0716E] = { [0x0FE00] = 0x0FA48, [0x0FE01] = 0x0FA9C }, + [0x0719C] = { [0x0FE00] = 0x2F91E }, + [0x071CE] = { [0x0FE00] = 0x0F9C0 }, + [0x071D0] = { [0x0FE00] = 0x0F9EE }, + [0x07210] = { [0x0FE00] = 0x0F932 }, + [0x0721B] = { [0x0FE00] = 0x0F91E }, + [0x07228] = { [0x0FE00] = 0x2F920 }, + [0x0722B] = { [0x0FE00] = 0x0FA49 }, + [0x07235] = { [0x0FE00] = 0x0FA9E, [0x0FE01] = 0x2F921 }, + [0x07250] = { [0x0FE00] = 0x2F922 }, + [0x07262] = { [0x0FE00] = 0x0F946 }, + [0x07280] = { [0x0FE00] = 0x2F924 }, + [0x07295] = { [0x0FE00] = 0x2F925 }, + [0x072AF] = { [0x0FE00] = 0x0FA9F }, + [0x072C0] = { [0x0FE00] = 0x0F9FA }, + [0x072FC] = { [0x0FE00] = 0x0F92B }, + [0x0732A] = { [0x0FE00] = 0x0FA16, [0x0FE01] = 0x0FAA0 }, + [0x07375] = { [0x0FE00] = 0x0F9A7 }, + [0x0737A] = { [0x0FE00] = 0x2F928 }, + [0x07387] = { [0x0FE00] = 0x0F961, [0x0FE01] = 0x0F9DB }, + [0x0738B] = { [0x0FE00] = 0x2F929 }, + [0x073A5] = { [0x0FE00] = 0x2F92B }, + [0x073B2] = { [0x0FE00] = 0x0F9AD }, + [0x073DE] = { [0x0FE00] = 0x0F917 }, + [0x07406] = { [0x0FE00] = 0x0F9E4 }, + [0x07409] = { [0x0FE00] = 0x0F9CC }, + [0x07422] = { [0x0FE00] = 0x0FA4A }, + [0x07447] = { [0x0FE00] = 0x2F92E }, + [0x0745C] = { [0x0FE00] = 0x2F92F }, + [0x07469] = { [0x0FE00] = 0x0F9AE }, + [0x07471] = { [0x0FE00] = 0x0FAA1, [0x0FE01] = 0x2F930 }, + [0x07485] = { [0x0FE00] = 0x2F931 }, + [0x07489] = { [0x0FE00] = 0x0F994 }, + [0x07498] = { [0x0FE00] = 0x0F9EF }, + [0x074CA] = { [0x0FE00] = 0x2F932 }, + [0x07506] = { [0x0FE00] = 0x0FAA2 }, + [0x07524] = { [0x0FE00] = 0x2F934 }, + [0x0753B] = { [0x0FE00] = 0x0FAA3 }, + [0x0753E] = { [0x0FE00] = 0x2F936 }, + [0x07559] = { [0x0FE00] = 0x0F9CD }, + [0x07565] = { [0x0FE00] = 0x0F976 }, + [0x07570] = { [0x0FE00] = 0x0F962, [0x0FE01] = 0x2F938 }, + [0x075E2] = { [0x0FE00] = 0x0F9E5 }, + [0x07610] = { [0x0FE00] = 0x2F93A }, + [0x0761D] = { [0x0FE00] = 0x0FAA4 }, + [0x0761F] = { [0x0FE00] = 0x0FAA5 }, + [0x07642] = { [0x0FE00] = 0x0F9C1 }, + [0x07669] = { [0x0FE00] = 0x0F90E }, + [0x076CA] = { [0x0FE00] = 0x0FA17, [0x0FE01] = 0x0FAA6 }, + [0x076DB] = { [0x0FE00] = 0x0FAA7 }, + [0x076E7] = { [0x0FE00] = 0x0F933 }, + [0x076F4] = { [0x0FE00] = 0x0FAA8, [0x0FE01] = 0x2F940 }, + [0x07701] = { [0x0FE00] = 0x0F96D }, + [0x0771E] = { [0x0FE00] = 0x2F945 }, + [0x0771F] = { [0x0FE00] = 0x2F946, [0x0FE01] = 0x2F947 }, + [0x07740] = { [0x0FE00] = 0x0FAAA }, + [0x0774A] = { [0x0FE00] = 0x0FAA9, [0x0FE01] = 0x2F948 }, + [0x0778B] = { [0x0FE00] = 0x2F94A }, + [0x077A7] = { [0x0FE00] = 0x0FA9D }, + [0x0784E] = { [0x0FE00] = 0x2F94E }, + [0x0786B] = { [0x0FE00] = 0x0F9CE }, + [0x0788C] = { [0x0FE00] = 0x0F93B, [0x0FE01] = 0x2F94F }, + [0x07891] = { [0x0FE00] = 0x0FA4B }, + [0x078CA] = { [0x0FE00] = 0x0F947 }, + [0x078CC] = { [0x0FE00] = 0x0FAAB, [0x0FE01] = 0x2F950 }, + [0x078FB] = { [0x0FE00] = 0x0F964 }, + [0x0792A] = { [0x0FE00] = 0x0F985 }, + [0x0793C] = { [0x0FE00] = 0x0FA18 }, + [0x0793E] = { [0x0FE00] = 0x0FA4C }, + [0x07948] = { [0x0FE00] = 0x0FA4E }, + [0x07949] = { [0x0FE00] = 0x0FA4D }, + [0x07950] = { [0x0FE00] = 0x0FA4F }, + [0x07956] = { [0x0FE00] = 0x0FA50, [0x0FE01] = 0x2F953 }, + [0x0795D] = { [0x0FE00] = 0x0FA51 }, + [0x0795E] = { [0x0FE00] = 0x0FA19 }, + [0x07965] = { [0x0FE00] = 0x0FA1A }, + [0x0797F] = { [0x0FE00] = 0x0F93C }, + [0x0798D] = { [0x0FE00] = 0x0FA52 }, + [0x0798E] = { [0x0FE00] = 0x0FA53 }, + [0x0798F] = { [0x0FE00] = 0x0FA1B, [0x0FE01] = 0x2F956 }, + [0x079AE] = { [0x0FE00] = 0x0F9B6 }, + [0x079CA] = { [0x0FE00] = 0x0F995 }, + [0x079EB] = { [0x0FE00] = 0x2F957 }, + [0x07A1C] = { [0x0FE00] = 0x0F956 }, + [0x07A40] = { [0x0FE00] = 0x0FA54, [0x0FE01] = 0x2F959 }, + [0x07A4A] = { [0x0FE00] = 0x2F95A }, + [0x07A4F] = { [0x0FE00] = 0x2F95B }, + [0x07A81] = { [0x0FE00] = 0x0FA55 }, + [0x07AB1] = { [0x0FE00] = 0x0FAAC }, + [0x07ACB] = { [0x0FE00] = 0x0F9F7 }, + [0x07AEE] = { [0x0FE00] = 0x2F95F }, + [0x07B20] = { [0x0FE00] = 0x0F9F8 }, + [0x07BC0] = { [0x0FE00] = 0x0FA56, [0x0FE01] = 0x0FAAD }, + [0x07BC6] = { [0x0FE00] = 0x2F962 }, + [0x07BC9] = { [0x0FE00] = 0x2F963 }, + [0x07C3E] = { [0x0FE00] = 0x0F9A6 }, + [0x07C60] = { [0x0FE00] = 0x0F944 }, + [0x07C7B] = { [0x0FE00] = 0x0FAAE }, + [0x07C92] = { [0x0FE00] = 0x0F9F9 }, + [0x07CBE] = { [0x0FE00] = 0x0FA1D }, + [0x07CD2] = { [0x0FE00] = 0x2F966 }, + [0x07CD6] = { [0x0FE00] = 0x0FA03 }, + [0x07CE3] = { [0x0FE00] = 0x2F969 }, + [0x07CE7] = { [0x0FE00] = 0x0F97B }, + [0x07CE8] = { [0x0FE00] = 0x2F968 }, + [0x07D00] = { [0x0FE00] = 0x2F96A }, + [0x07D10] = { [0x0FE00] = 0x0F9CF }, + [0x07D22] = { [0x0FE00] = 0x0F96A }, + [0x07D2F] = { [0x0FE00] = 0x0F94F }, + [0x07D5B] = { [0x0FE00] = 0x0FAAF }, + [0x07D63] = { [0x0FE00] = 0x2F96C }, + [0x07DA0] = { [0x0FE00] = 0x0F93D }, + [0x07DBE] = { [0x0FE00] = 0x0F957 }, + [0x07DC7] = { [0x0FE00] = 0x2F96E }, + [0x07DF4] = { [0x0FE00] = 0x0F996, [0x0FE01] = 0x0FA57, [0x0FE02] = 0x0FAB0 }, + [0x07E02] = { [0x0FE00] = 0x2F96F }, + [0x07E09] = { [0x0FE00] = 0x0FA58 }, + [0x07E37] = { [0x0FE00] = 0x0F950 }, + [0x07E41] = { [0x0FE00] = 0x0FA59 }, + [0x07E45] = { [0x0FE00] = 0x2F970 }, + [0x07F3E] = { [0x0FE00] = 0x0FAB1 }, + [0x07F72] = { [0x0FE00] = 0x0FA5A }, + [0x07F79] = { [0x0FE00] = 0x0F9E6 }, + [0x07F7A] = { [0x0FE00] = 0x2F976 }, + [0x07F85] = { [0x0FE00] = 0x0F90F }, + [0x07F95] = { [0x0FE00] = 0x2F978 }, + [0x07F9A] = { [0x0FE00] = 0x0F9AF }, + [0x07FBD] = { [0x0FE00] = 0x0FA1E }, + [0x07FFA] = { [0x0FE00] = 0x2F979 }, + [0x08001] = { [0x0FE00] = 0x0F934 }, + [0x08005] = { [0x0FE00] = 0x0FA5B, [0x0FE01] = 0x0FAB2, [0x0FE02] = 0x2F97A }, + [0x08046] = { [0x0FE00] = 0x0F9B0 }, + [0x08060] = { [0x0FE00] = 0x2F97D }, + [0x0806F] = { [0x0FE00] = 0x0F997 }, + [0x08070] = { [0x0FE00] = 0x2F97F }, + [0x0807E] = { [0x0FE00] = 0x0F945 }, + [0x0808B] = { [0x0FE00] = 0x0F953 }, + [0x080AD] = { [0x0FE00] = 0x2F8D6 }, + [0x080B2] = { [0x0FE00] = 0x2F982 }, + [0x08103] = { [0x0FE00] = 0x2F983 }, + [0x0813E] = { [0x0FE00] = 0x2F985 }, + [0x081D8] = { [0x0FE00] = 0x0F926 }, + [0x081E8] = { [0x0FE00] = 0x0F9F6 }, + [0x081ED] = { [0x0FE00] = 0x0FA5C }, + [0x08201] = { [0x0FE00] = 0x2F893, [0x0FE01] = 0x2F98B }, + [0x08204] = { [0x0FE00] = 0x2F98C }, + [0x08218] = { [0x0FE00] = 0x0FA6D }, + [0x0826F] = { [0x0FE00] = 0x0F97C }, + [0x08279] = { [0x0FE00] = 0x0FA5D, [0x0FE01] = 0x0FA5E }, + [0x0828B] = { [0x0FE00] = 0x2F990 }, + [0x08291] = { [0x0FE00] = 0x2F98F }, + [0x0829D] = { [0x0FE00] = 0x2F991 }, + [0x082B1] = { [0x0FE00] = 0x2F993 }, + [0x082B3] = { [0x0FE00] = 0x2F994 }, + [0x082BD] = { [0x0FE00] = 0x2F995 }, + [0x082E5] = { [0x0FE00] = 0x0F974, [0x0FE01] = 0x2F998 }, + [0x082E6] = { [0x0FE00] = 0x2F996 }, + [0x0831D] = { [0x0FE00] = 0x2F999 }, + [0x08323] = { [0x0FE00] = 0x2F99C }, + [0x08336] = { [0x0FE00] = 0x0F9FE }, + [0x08352] = { [0x0FE00] = 0x0FAB3 }, + [0x08353] = { [0x0FE00] = 0x2F9A0 }, + [0x08363] = { [0x0FE00] = 0x2F99A }, + [0x083AD] = { [0x0FE00] = 0x2F99B }, + [0x083BD] = { [0x0FE00] = 0x2F99D }, + [0x083C9] = { [0x0FE00] = 0x0F93E }, + [0x083CA] = { [0x0FE00] = 0x2F9A1 }, + [0x083CC] = { [0x0FE00] = 0x2F9A2 }, + [0x083DC] = { [0x0FE00] = 0x2F9A3 }, + [0x083E7] = { [0x0FE00] = 0x2F99E }, + [0x083EF] = { [0x0FE00] = 0x0FAB4 }, + [0x083F1] = { [0x0FE00] = 0x0F958 }, + [0x0843D] = { [0x0FE00] = 0x0F918 }, + [0x08449] = { [0x0FE00] = 0x0F96E }, + [0x08457] = { [0x0FE00] = 0x0FA5F, [0x0FE01] = 0x2F99F }, + [0x084EE] = { [0x0FE00] = 0x0F999 }, + [0x084F1] = { [0x0FE00] = 0x2F9A8 }, + [0x084F3] = { [0x0FE00] = 0x2F9A9 }, + [0x084FC] = { [0x0FE00] = 0x0F9C2 }, + [0x08516] = { [0x0FE00] = 0x2F9AA }, + [0x08564] = { [0x0FE00] = 0x2F9AC }, + [0x085CD] = { [0x0FE00] = 0x0F923 }, + [0x085FA] = { [0x0FE00] = 0x0F9F0 }, + [0x08606] = { [0x0FE00] = 0x0F935 }, + [0x08612] = { [0x0FE00] = 0x0FA20 }, + [0x0862D] = { [0x0FE00] = 0x0F91F }, + [0x0863F] = { [0x0FE00] = 0x0F910 }, + [0x08650] = { [0x0FE00] = 0x2F9B3 }, + [0x0865C] = { [0x0FE00] = 0x0F936, [0x0FE01] = 0x2F9B4 }, + [0x08667] = { [0x0FE00] = 0x2F9B5 }, + [0x08669] = { [0x0FE00] = 0x2F9B6 }, + [0x08688] = { [0x0FE00] = 0x2F9B8 }, + [0x086A9] = { [0x0FE00] = 0x2F9B7 }, + [0x086E2] = { [0x0FE00] = 0x2F9BA }, + [0x0870E] = { [0x0FE00] = 0x2F9B9 }, + [0x08728] = { [0x0FE00] = 0x2F9BC }, + [0x0876B] = { [0x0FE00] = 0x2F9BD }, + [0x08779] = { [0x0FE00] = 0x0FAB5, [0x0FE01] = 0x2F9BB }, + [0x08786] = { [0x0FE00] = 0x2F9BE }, + [0x087BA] = { [0x0FE00] = 0x0F911 }, + [0x087E1] = { [0x0FE00] = 0x2F9C0 }, + [0x08801] = { [0x0FE00] = 0x2F9C1 }, + [0x0881F] = { [0x0FE00] = 0x0F927 }, + [0x0884C] = { [0x0FE00] = 0x0FA08 }, + [0x08860] = { [0x0FE00] = 0x2F9C3 }, + [0x08863] = { [0x0FE00] = 0x2F9C4 }, + [0x088C2] = { [0x0FE00] = 0x0F9A0 }, + [0x088CF] = { [0x0FE00] = 0x0F9E7 }, + [0x088D7] = { [0x0FE00] = 0x2F9C6 }, + [0x088DE] = { [0x0FE00] = 0x2F9C7 }, + [0x088E1] = { [0x0FE00] = 0x0F9E8 }, + [0x088F8] = { [0x0FE00] = 0x0F912 }, + [0x088FA] = { [0x0FE00] = 0x2F9C9 }, + [0x08910] = { [0x0FE00] = 0x0FA60 }, + [0x08941] = { [0x0FE00] = 0x0FAB6 }, + [0x08964] = { [0x0FE00] = 0x0F924 }, + [0x08986] = { [0x0FE00] = 0x0FAB7 }, + [0x0898B] = { [0x0FE00] = 0x0FA0A }, + [0x08996] = { [0x0FE00] = 0x0FA61, [0x0FE01] = 0x0FAB8 }, + [0x08AA0] = { [0x0FE00] = 0x2F9CF }, + [0x08AAA] = { [0x0FE00] = 0x0F96F, [0x0FE01] = 0x0F9A1 }, + [0x08ABF] = { [0x0FE00] = 0x0FAB9 }, + [0x08ACB] = { [0x0FE00] = 0x0FABB }, + [0x08AD2] = { [0x0FE00] = 0x0F97D }, + [0x08AD6] = { [0x0FE00] = 0x0F941 }, + [0x08AED] = { [0x0FE00] = 0x0FABE, [0x0FE01] = 0x2F9D0 }, + [0x08AF8] = { [0x0FE00] = 0x0FA22, [0x0FE01] = 0x0FABA }, + [0x08AFE] = { [0x0FE00] = 0x0F95D, [0x0FE01] = 0x0FABD }, + [0x08B01] = { [0x0FE00] = 0x0FA62, [0x0FE01] = 0x0FABC }, + [0x08B39] = { [0x0FE00] = 0x0FA63, [0x0FE01] = 0x0FABF }, + [0x08B58] = { [0x0FE00] = 0x0F9FC }, + [0x08B80] = { [0x0FE00] = 0x0F95A }, + [0x08B8A] = { [0x0FE00] = 0x0FAC0, [0x0FE01] = 0x2F9D1 }, + [0x08C48] = { [0x0FE00] = 0x0F900 }, + [0x08C55] = { [0x0FE00] = 0x2F9D2 }, + [0x08CAB] = { [0x0FE00] = 0x2F9D4 }, + [0x08CC1] = { [0x0FE00] = 0x2F9D5 }, + [0x08CC2] = { [0x0FE00] = 0x0F948 }, + [0x08CC8] = { [0x0FE00] = 0x0F903 }, + [0x08CD3] = { [0x0FE00] = 0x0FA64 }, + [0x08D08] = { [0x0FE00] = 0x0FA65, [0x0FE01] = 0x0FAC1 }, + [0x08D1B] = { [0x0FE00] = 0x2F9D6 }, + [0x08D77] = { [0x0FE00] = 0x2F9D7 }, + [0x08DBC] = { [0x0FE00] = 0x2F9DB }, + [0x08DCB] = { [0x0FE00] = 0x2F9DA }, + [0x08DEF] = { [0x0FE00] = 0x0F937 }, + [0x08DF0] = { [0x0FE00] = 0x2F9DC }, + [0x08ECA] = { [0x0FE00] = 0x0F902 }, + [0x08ED4] = { [0x0FE00] = 0x2F9DE }, + [0x08F26] = { [0x0FE00] = 0x0F998 }, + [0x08F2A] = { [0x0FE00] = 0x0F9D7 }, + [0x08F38] = { [0x0FE00] = 0x0FAC2, [0x0FE01] = 0x2F9DF }, + [0x08F3B] = { [0x0FE00] = 0x0FA07 }, + [0x08F62] = { [0x0FE00] = 0x0F98D }, + [0x08F9E] = { [0x0FE00] = 0x2F98D }, + [0x08FB0] = { [0x0FE00] = 0x0F971 }, + [0x08FB6] = { [0x0FE00] = 0x0FA66 }, + [0x09023] = { [0x0FE00] = 0x0F99A }, + [0x09038] = { [0x0FE00] = 0x0FA25, [0x0FE01] = 0x0FA67 }, + [0x09072] = { [0x0FE00] = 0x0FAC3 }, + [0x0907C] = { [0x0FE00] = 0x0F9C3 }, + [0x0908F] = { [0x0FE00] = 0x0F913 }, + [0x09094] = { [0x0FE00] = 0x2F9E2 }, + [0x090CE] = { [0x0FE00] = 0x0F92C }, + [0x090DE] = { [0x0FE00] = 0x0FA2E }, + [0x090F1] = { [0x0FE00] = 0x2F9E3 }, + [0x090FD] = { [0x0FE00] = 0x0FA26 }, + [0x09111] = { [0x0FE00] = 0x2F9E4 }, + [0x0911B] = { [0x0FE00] = 0x2F9E6 }, + [0x0916A] = { [0x0FE00] = 0x0F919 }, + [0x09199] = { [0x0FE00] = 0x0FAC4 }, + [0x091B4] = { [0x0FE00] = 0x0F9B7 }, + [0x091CC] = { [0x0FE00] = 0x0F9E9 }, + [0x091CF] = { [0x0FE00] = 0x0F97E }, + [0x091D1] = { [0x0FE00] = 0x0F90A }, + [0x09234] = { [0x0FE00] = 0x0F9B1 }, + [0x09238] = { [0x0FE00] = 0x2F9E7 }, + [0x09276] = { [0x0FE00] = 0x0FAC5 }, + [0x0927C] = { [0x0FE00] = 0x2F9EA }, + [0x092D7] = { [0x0FE00] = 0x2F9E8 }, + [0x092D8] = { [0x0FE00] = 0x2F9E9 }, + [0x09304] = { [0x0FE00] = 0x0F93F }, + [0x0934A] = { [0x0FE00] = 0x0F99B }, + [0x093F9] = { [0x0FE00] = 0x2F9EB }, + [0x09415] = { [0x0FE00] = 0x2F9EC }, + [0x0958B] = { [0x0FE00] = 0x2F9EE }, + [0x095AD] = { [0x0FE00] = 0x0F986 }, + [0x095B7] = { [0x0FE00] = 0x2F9F0 }, + [0x0962E] = { [0x0FE00] = 0x0F9C6 }, + [0x0964B] = { [0x0FE00] = 0x0F951 }, + [0x0964D] = { [0x0FE00] = 0x0FA09 }, + [0x09675] = { [0x0FE00] = 0x0F959 }, + [0x09678] = { [0x0FE00] = 0x0F9D3 }, + [0x0967C] = { [0x0FE00] = 0x0FAC6 }, + [0x09686] = { [0x0FE00] = 0x0F9DC }, + [0x096A3] = { [0x0FE00] = 0x0F9F1 }, + [0x096B7] = { [0x0FE00] = 0x0FA2F }, + [0x096B8] = { [0x0FE00] = 0x0F9B8 }, + [0x096C3] = { [0x0FE00] = 0x2F9F3 }, + [0x096E2] = { [0x0FE00] = 0x0F9EA }, + [0x096E3] = { [0x0FE00] = 0x0FA68, [0x0FE01] = 0x0FAC7 }, + [0x096F6] = { [0x0FE00] = 0x0F9B2 }, + [0x096F7] = { [0x0FE00] = 0x0F949 }, + [0x09723] = { [0x0FE00] = 0x2F9F5 }, + [0x09732] = { [0x0FE00] = 0x0F938 }, + [0x09748] = { [0x0FE00] = 0x0F9B3 }, + [0x09756] = { [0x0FE00] = 0x0FA1C, [0x0FE01] = 0x0FAC8 }, + [0x097DB] = { [0x0FE00] = 0x0FAC9 }, + [0x097E0] = { [0x0FE00] = 0x2F9FA }, + [0x097FF] = { [0x0FE00] = 0x0FA69, [0x0FE01] = 0x0FACA }, + [0x0980B] = { [0x0FE00] = 0x0FACB, [0x0FE01] = 0x2F9FE, [0x0FE02] = 0x2F9FF }, + [0x09818] = { [0x0FE00] = 0x0F9B4 }, + [0x09829] = { [0x0FE00] = 0x2FA00 }, + [0x0983B] = { [0x0FE00] = 0x0FA6A, [0x0FE01] = 0x0FACC }, + [0x0985E] = { [0x0FE00] = 0x0F9D0 }, + [0x098E2] = { [0x0FE00] = 0x2FA02 }, + [0x098EF] = { [0x0FE00] = 0x0FA2A }, + [0x098FC] = { [0x0FE00] = 0x0FA2B }, + [0x09928] = { [0x0FE00] = 0x0FA2C }, + [0x09929] = { [0x0FE00] = 0x2FA04 }, + [0x099A7] = { [0x0FE00] = 0x2FA05 }, + [0x099C2] = { [0x0FE00] = 0x2FA06 }, + [0x099F1] = { [0x0FE00] = 0x0F91A }, + [0x099FE] = { [0x0FE00] = 0x2FA07 }, + [0x09A6A] = { [0x0FE00] = 0x0F987 }, + [0x09B12] = { [0x0FE00] = 0x0FACD, [0x0FE01] = 0x2FA0A }, + [0x09B6F] = { [0x0FE00] = 0x0F939 }, + [0x09C40] = { [0x0FE00] = 0x2FA0B }, + [0x09C57] = { [0x0FE00] = 0x0F9F2 }, + [0x09CFD] = { [0x0FE00] = 0x2FA0C }, + [0x09D67] = { [0x0FE00] = 0x2FA0F }, + [0x09DB4] = { [0x0FE00] = 0x0FA2D }, + [0x09DFA] = { [0x0FE00] = 0x0F93A }, + [0x09E1E] = { [0x0FE00] = 0x0F920 }, + [0x09E7F] = { [0x0FE00] = 0x0F940 }, + [0x09E97] = { [0x0FE00] = 0x0F988 }, + [0x09E9F] = { [0x0FE00] = 0x0F9F3 }, + [0x09EBB] = { [0x0FE00] = 0x2FA15 }, + [0x09ECE] = { [0x0FE00] = 0x0F989 }, + [0x09EF9] = { [0x0FE00] = 0x2FA17 }, + [0x09EFE] = { [0x0FE00] = 0x2FA18 }, + [0x09F05] = { [0x0FE00] = 0x2FA19 }, + [0x09F0F] = { [0x0FE00] = 0x2FA1A }, + [0x09F16] = { [0x0FE00] = 0x2FA1B }, + [0x09F3B] = { [0x0FE00] = 0x2FA1C }, + [0x09F43] = { [0x0FE00] = 0x0FAD8 }, + [0x09F8D] = { [0x0FE00] = 0x0F9C4 }, + [0x09F8E] = { [0x0FE00] = 0x0FAD9 }, + [0x09F9C] = { [0x0FE00] = 0x0F907, [0x0FE01] = 0x0F908, [0x0FE02] = 0x0FACE }, + [0x20122] = { [0x0FE00] = 0x2F803 }, + [0x2051C] = { [0x0FE00] = 0x2F812 }, + [0x20525] = { [0x0FE00] = 0x2F91B }, + [0x2054B] = { [0x0FE00] = 0x2F816 }, + [0x2063A] = { [0x0FE00] = 0x2F80D }, + [0x20804] = { [0x0FE00] = 0x2F9D9 }, + [0x208DE] = { [0x0FE00] = 0x2F9DD }, + [0x20A2C] = { [0x0FE00] = 0x2F834 }, + [0x20B63] = { [0x0FE00] = 0x2F838 }, + [0x214E4] = { [0x0FE00] = 0x2F859 }, + [0x216A8] = { [0x0FE00] = 0x2F860 }, + [0x216EA] = { [0x0FE00] = 0x2F861 }, + [0x219C8] = { [0x0FE00] = 0x2F86C }, + [0x21B18] = { [0x0FE00] = 0x2F871 }, + [0x21D0B] = { [0x0FE00] = 0x2F8F8 }, + [0x21DE4] = { [0x0FE00] = 0x2F87B }, + [0x21DE6] = { [0x0FE00] = 0x2F87D }, + [0x22183] = { [0x0FE00] = 0x2F889 }, + [0x2219F] = { [0x0FE00] = 0x2F939 }, + [0x22331] = { [0x0FE00] = 0x2F891, [0x0FE01] = 0x2F892 }, + [0x226D4] = { [0x0FE00] = 0x2F8A4 }, + [0x22844] = { [0x0FE00] = 0x0FAD0 }, + [0x2284A] = { [0x0FE00] = 0x0FACF }, + [0x22B0C] = { [0x0FE00] = 0x2F8B8 }, + [0x22BF1] = { [0x0FE00] = 0x2F8BE }, + [0x2300A] = { [0x0FE00] = 0x2F8CA }, + [0x232B8] = { [0x0FE00] = 0x2F897 }, + [0x2335F] = { [0x0FE00] = 0x2F980 }, + [0x23393] = { [0x0FE00] = 0x2F989 }, + [0x2339C] = { [0x0FE00] = 0x2F98A }, + [0x233C3] = { [0x0FE00] = 0x2F8DD }, + [0x233D5] = { [0x0FE00] = 0x0FAD1 }, + [0x2346D] = { [0x0FE00] = 0x2F8E3 }, + [0x236A3] = { [0x0FE00] = 0x2F8EC }, + [0x238A7] = { [0x0FE00] = 0x2F8F0 }, + [0x23A8D] = { [0x0FE00] = 0x2F8F7 }, + [0x23AFA] = { [0x0FE00] = 0x2F8F9 }, + [0x23CBC] = { [0x0FE00] = 0x2F8FB }, + [0x23D1E] = { [0x0FE00] = 0x2F906 }, + [0x23ED1] = { [0x0FE00] = 0x2F90D }, + [0x23F5E] = { [0x0FE00] = 0x2F910 }, + [0x23F8E] = { [0x0FE00] = 0x2F911 }, + [0x24263] = { [0x0FE00] = 0x2F91D }, + [0x242EE] = { [0x0FE00] = 0x0FA6C }, + [0x243AB] = { [0x0FE00] = 0x2F91F }, + [0x24608] = { [0x0FE00] = 0x2F923 }, + [0x24735] = { [0x0FE00] = 0x2F926 }, + [0x24814] = { [0x0FE00] = 0x2F927 }, + [0x24C36] = { [0x0FE00] = 0x2F935 }, + [0x24C92] = { [0x0FE00] = 0x2F937 }, + [0x24FA1] = { [0x0FE00] = 0x2F93B }, + [0x24FB8] = { [0x0FE00] = 0x2F93C }, + [0x25044] = { [0x0FE00] = 0x2F93D }, + [0x250F2] = { [0x0FE00] = 0x2F942 }, + [0x250F3] = { [0x0FE00] = 0x2F941 }, + [0x25119] = { [0x0FE00] = 0x2F943 }, + [0x25133] = { [0x0FE00] = 0x2F944 }, + [0x25249] = { [0x0FE00] = 0x0FAD5 }, + [0x2541D] = { [0x0FE00] = 0x2F94D }, + [0x25626] = { [0x0FE00] = 0x2F952 }, + [0x2569A] = { [0x0FE00] = 0x2F954 }, + [0x256C5] = { [0x0FE00] = 0x2F955 }, + [0x2597C] = { [0x0FE00] = 0x2F95C }, + [0x25AA7] = { [0x0FE00] = 0x2F95D, [0x0FE01] = 0x2F95E }, + [0x25BAB] = { [0x0FE00] = 0x2F961 }, + [0x25C80] = { [0x0FE00] = 0x2F965 }, + [0x25CD0] = { [0x0FE00] = 0x0FAD6 }, + [0x25F86] = { [0x0FE00] = 0x2F96B }, + [0x261DA] = { [0x0FE00] = 0x2F898 }, + [0x26228] = { [0x0FE00] = 0x2F972 }, + [0x26247] = { [0x0FE00] = 0x2F973 }, + [0x262D9] = { [0x0FE00] = 0x2F975 }, + [0x2633E] = { [0x0FE00] = 0x2F977 }, + [0x264DA] = { [0x0FE00] = 0x2F97B }, + [0x26523] = { [0x0FE00] = 0x2F97C }, + [0x265A8] = { [0x0FE00] = 0x2F97E }, + [0x267A7] = { [0x0FE00] = 0x2F987 }, + [0x267B5] = { [0x0FE00] = 0x2F988 }, + [0x26B3C] = { [0x0FE00] = 0x2F997 }, + [0x26C36] = { [0x0FE00] = 0x2F9A4 }, + [0x26CD5] = { [0x0FE00] = 0x2F9A6 }, + [0x26D6B] = { [0x0FE00] = 0x2F9A5 }, + [0x26F2C] = { [0x0FE00] = 0x2F9AD }, + [0x26FB1] = { [0x0FE00] = 0x2F9B0 }, + [0x270D2] = { [0x0FE00] = 0x2F9B1 }, + [0x273CA] = { [0x0FE00] = 0x2F9AB }, + [0x27667] = { [0x0FE00] = 0x2F9C5 }, + [0x278AE] = { [0x0FE00] = 0x2F9CB }, + [0x27966] = { [0x0FE00] = 0x2F9CC }, + [0x27CA8] = { [0x0FE00] = 0x2F9D3 }, + [0x27ED3] = { [0x0FE00] = 0x0FAD7 }, + [0x27F2F] = { [0x0FE00] = 0x2F9D8 }, + [0x285D2] = { [0x0FE00] = 0x2F9E0 }, + [0x285ED] = { [0x0FE00] = 0x2F9E1 }, + [0x2872E] = { [0x0FE00] = 0x2F9E5 }, + [0x28BFA] = { [0x0FE00] = 0x2F9ED }, + [0x28D77] = { [0x0FE00] = 0x2F9F1 }, + [0x29145] = { [0x0FE00] = 0x2F9F6 }, + [0x291DF] = { [0x0FE00] = 0x2F81C }, + [0x2921A] = { [0x0FE00] = 0x2F9F7 }, + [0x2940A] = { [0x0FE00] = 0x2F9FB }, + [0x29496] = { [0x0FE00] = 0x2F9FD }, + [0x295B6] = { [0x0FE00] = 0x2FA01 }, + [0x29B30] = { [0x0FE00] = 0x2FA09 }, + [0x2A0CE] = { [0x0FE00] = 0x2FA10 }, + [0x2A105] = { [0x0FE00] = 0x2FA12 }, + [0x2A20E] = { [0x0FE00] = 0x2FA13 }, + [0x2A291] = { [0x0FE00] = 0x2FA14 }, + [0x2A392] = { [0x0FE00] = 0x2F88F }, + [0x2A600] = { [0x0FE00] = 0x2FA1D }, +} + local cjk_ideograph_metatable = { __index = { category = "lo", @@ -286,10 +1194,24 @@ local cjk_ideograph_metatable = { } } +local f_variant_name = formatters["CJK COMPATIBILITY IDEOGRAPH-%X"] + +local variants = setmetatableindex(function(t,k) + local kv = knownvariants[k] + if kv then + for k, v in next, kv do + kv[k] = f_variant_name(v) + end + end + knownvariants[k] = nil + return kv +end) + local cjk_ideograph_extender = function(k,v) local t = { -- shcode = shcode, unicodeslot = k, + variants = variants[k], } setmetatable(t,cjk_ideograph_metatable) return t @@ -317,6 +1239,7 @@ local cjk_ideograph_extension_a_extender = function(k,v) local t = { -- shcode = shcode, unicodeslot = k, + variants = variants[k], } setmetatable(t,cjk_ideograph_extension_a_metatable) return t @@ -344,6 +1267,7 @@ local cjk_ideograph_extension_b_extender = function(k,v) local t = { -- shcode = shcode, unicodeslot = k, + variants = variants[k], } setmetatable(t,cjk_ideograph_extension_b_metatable) return t diff --git a/tex/context/base/char-def.lua b/tex/context/base/char-def.lua index 90ac4609d..29b225446 100644 --- a/tex/context/base/char-def.lua +++ b/tex/context/base/char-def.lua @@ -1764,6 +1764,10 @@ characters.data={ direction="on", linebreak="al", unicodeslot=0xA9, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, { adobename="ordfeminine", @@ -1826,6 +1830,10 @@ characters.data={ direction="on", linebreak="al", unicodeslot=0xAE, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, { adobename="macron", @@ -19709,7 +19717,7 @@ characters.data={ unicodeslot=0x846, }, [0x847]={ - arabic="d", + arabic="r", category="lo", description="MANDAIC LETTER IT", direction="r", @@ -19773,7 +19781,7 @@ characters.data={ unicodeslot=0x84E, }, [0x84F]={ - arabic="r", + arabic="d", category="lo", description="MANDAIC LETTER IN", direction="r", @@ -20035,6 +20043,30 @@ characters.data={ linebreak="al", unicodeslot=0x8B2, }, + [0x8B3]={ + arabic="d", + category="lo", + description="ARABIC LETTER AIN WITH THREE DOTS BELOW", + direction="al", + linebreak="al", + unicodeslot=0x8B3, + }, + [0x8B4]={ + arabic="d", + category="lo", + description="ARABIC LETTER KAF WITH DOT BELOW", + direction="al", + linebreak="al", + unicodeslot=0x8B4, + }, + [0x8E3]={ + category="mn", + combining=0xDC, + description="ARABIC TURNED DAMMA BELOW", + direction="nsm", + linebreak="cm", + unicodeslot=0x8E3, + }, [0x8E4]={ category="mn", combining=0xE6, @@ -23327,6 +23359,13 @@ characters.data={ linebreak="pr", unicodeslot=0xAF1, }, + [0xAF9]={ + category="lo", + description="GUJARATI LETTER ZHA", + direction="l", + linebreak="al", + unicodeslot=0xAF9, + }, [0xB01]={ category="mn", description="ORIYA SIGN CANDRABINDU", @@ -24988,6 +25027,13 @@ characters.data={ linebreak="al", unicodeslot=0xC59, }, + [0xC5A]={ + category="lo", + description="TELUGU LETTER RRRA", + direction="l", + linebreak="al", + unicodeslot=0xC5A, + }, [0xC60]={ category="lo", description="TELUGU LETTER VOCALIC RR", @@ -26266,6 +26312,13 @@ characters.data={ linebreak="cm", unicodeslot=0xD57, }, + [0xD5F]={ + category="lo", + description="MALAYALAM LETTER ARCHAIC II", + direction="l", + linebreak="al", + unicodeslot=0xD5F, + }, [0xD60]={ category="lo", description="MALAYALAM LETTER VOCALIC RR", @@ -36746,6 +36799,55 @@ characters.data={ linebreak="al", unicodeslot=0x13F4, }, + [0x13F5]={ + category="lu", + description="CHEROKEE LETTER MV", + direction="l", + linebreak="al", + unicodeslot=0x13F5, + }, + [0x13F8]={ + category="ll", + description="CHEROKEE SMALL LETTER YE", + direction="l", + linebreak="al", + unicodeslot=0x13F8, + }, + [0x13F9]={ + category="ll", + description="CHEROKEE SMALL LETTER YI", + direction="l", + linebreak="al", + unicodeslot=0x13F9, + }, + [0x13FA]={ + category="ll", + description="CHEROKEE SMALL LETTER YO", + direction="l", + linebreak="al", + unicodeslot=0x13FA, + }, + [0x13FB]={ + category="ll", + description="CHEROKEE SMALL LETTER YU", + direction="l", + linebreak="al", + unicodeslot=0x13FB, + }, + [0x13FC]={ + category="ll", + description="CHEROKEE SMALL LETTER YV", + direction="l", + linebreak="al", + unicodeslot=0x13FC, + }, + [0x13FD]={ + category="ll", + description="CHEROKEE SMALL LETTER MV", + direction="l", + linebreak="al", + unicodeslot=0x13FD, + }, [0x1400]={ category="pd", description="CANADIAN SYLLABICS HYPHEN", @@ -59905,6 +60007,13 @@ characters.data={ linebreak="pr", unicodeslot=0x20BD, }, + [0x20BE]={ + category="sc", + description="LARI SIGN", + direction="et", + linebreak="po", + unicodeslot=0x20BE, + }, [0x20D0]={ category="mn", combining=0xE6, @@ -60509,6 +60618,10 @@ characters.data={ linebreak="ai", specials={ "super", 0x54, 0x4D }, unicodeslot=0x2122, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, [0x2123]={ category="so", @@ -61507,6 +61620,20 @@ characters.data={ specials={ "fraction", 0x30, 0x2044, 0x33 }, unicodeslot=0x2189, }, + [0x218A]={ + category="so", + description="TURNED DIGIT TWO", + direction="on", + linebreak="al", + unicodeslot=0x218A, + }, + [0x218B]={ + category="so", + description="TURNED DIGIT THREE", + direction="on", + linebreak="al", + unicodeslot=0x218B, + }, [0x2190]={ adobename="arrowleft", category="sm", @@ -65406,7 +65533,7 @@ characters.data={ category="sm", description="MIDLINE HORIZONTAL ELLIPSIS", direction="on", - linebreak="al", + linebreak="in", mathclass="inner", mathname="cdots", unicodeslot=0x22EF, @@ -82744,6 +82871,34 @@ characters.data={ linebreak="al", unicodeslot=0x2BD1, }, + [0x2BEC]={ + category="so", + description="LEFTWARDS TWO-HEADED ARROW WITH TRIANGLE ARROWHEADS", + direction="on", + linebreak="al", + unicodeslot=0x2BEC, + }, + [0x2BED]={ + category="so", + description="UPWARDS TWO-HEADED ARROW WITH TRIANGLE ARROWHEADS", + direction="on", + linebreak="al", + unicodeslot=0x2BED, + }, + [0x2BEE]={ + category="so", + description="RIGHTWARDS TWO-HEADED ARROW WITH TRIANGLE ARROWHEADS", + direction="on", + linebreak="al", + unicodeslot=0x2BEE, + }, + [0x2BEF]={ + category="so", + description="DOWNWARDS TWO-HEADED ARROW WITH TRIANGLE ARROWHEADS", + direction="on", + linebreak="al", + unicodeslot=0x2BEF, + }, [0x2C00]={ category="lu", description="GLAGOLITIC CAPITAL LETTER AZU", @@ -90146,6 +90301,10 @@ characters.data={ direction="on", linebreak="id", unicodeslot=0x3030, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, [0x3031]={ category="lm", @@ -112827,6 +112986,14 @@ characters.data={ specials={ "super", 0x44C }, unicodeslot=0xA69D, }, + [0xA69E]={ + category="mn", + combining=0xE6, + description="COMBINING CYRILLIC LETTER EF", + direction="nsm", + linebreak="cm", + unicodeslot=0xA69E, + }, [0xA69F]={ category="mn", combining=0xE6, @@ -114455,6 +114622,13 @@ characters.data={ linebreak="al", unicodeslot=0xA78E, }, + [0xA78F]={ + category="lo", + description="LATIN LETTER SINOLOGICAL DOT", + direction="l", + linebreak="al", + unicodeslot=0xA78F, + }, [0xA790]={ category="lu", description="LATIN CAPITAL LETTER N WITH DESCENDER", @@ -114679,6 +114853,48 @@ characters.data={ linebreak="al", unicodeslot=0xA7B1, }, + [0xA7B2]={ + category="lu", + description="LATIN CAPITAL LETTER J WITH CROSSED-TAIL", + direction="l", + linebreak="al", + unicodeslot=0xA7B2, + }, + [0xA7B3]={ + category="lu", + description="LATIN CAPITAL LETTER CHI", + direction="l", + linebreak="al", + unicodeslot=0xA7B3, + }, + [0xA7B4]={ + category="lu", + description="LATIN CAPITAL LETTER BETA", + direction="l", + linebreak="al", + unicodeslot=0xA7B4, + }, + [0xA7B5]={ + category="ll", + description="LATIN SMALL LETTER BETA", + direction="l", + linebreak="al", + unicodeslot=0xA7B5, + }, + [0xA7B6]={ + category="lu", + description="LATIN CAPITAL LETTER OMEGA", + direction="l", + linebreak="al", + unicodeslot=0xA7B6, + }, + [0xA7B7]={ + category="ll", + description="LATIN SMALL LETTER OMEGA", + direction="l", + linebreak="al", + unicodeslot=0xA7B7, + }, [0xA7F7]={ category="lo", description="LATIN EPIGRAPHIC LETTER SIDEWAYS I", @@ -116367,6 +116583,20 @@ characters.data={ linebreak="al", unicodeslot=0xA8FB, }, + [0xA8FC]={ + category="po", + description="DEVANAGARI SIGN SIDDHAM", + direction="l", + linebreak="bb", + unicodeslot=0xA8FC, + }, + [0xA8FD]={ + category="lo", + description="DEVANAGARI JAIN OM", + direction="l", + linebreak="al", + unicodeslot=0xA8FD, + }, [0xA900]={ category="nd", description="KAYAH LI DIGIT ZERO", @@ -120098,6 +120328,34 @@ characters.data={ specials={ "super", 0xAB52 }, unicodeslot=0xAB5F, }, + [0xAB60]={ + category="ll", + description="LATIN SMALL LETTER SAKHA YAT", + direction="l", + linebreak="al", + unicodeslot=0xAB60, + }, + [0xAB61]={ + category="ll", + description="LATIN SMALL LETTER IOTIFIED E", + direction="l", + linebreak="al", + unicodeslot=0xAB61, + }, + [0xAB62]={ + category="ll", + description="LATIN SMALL LETTER OPEN OE", + direction="l", + linebreak="al", + unicodeslot=0xAB62, + }, + [0xAB63]={ + category="ll", + description="LATIN SMALL LETTER UO", + direction="l", + linebreak="al", + unicodeslot=0xAB63, + }, [0xAB64]={ category="ll", description="LATIN SMALL LETTER INVERTED ALPHA", @@ -120112,6 +120370,566 @@ characters.data={ linebreak="al", unicodeslot=0xAB65, }, + [0xAB70]={ + category="ll", + description="CHEROKEE SMALL LETTER A", + direction="l", + linebreak="al", + unicodeslot=0xAB70, + }, + [0xAB71]={ + category="ll", + description="CHEROKEE SMALL LETTER E", + direction="l", + linebreak="al", + unicodeslot=0xAB71, + }, + [0xAB72]={ + category="ll", + description="CHEROKEE SMALL LETTER I", + direction="l", + linebreak="al", + unicodeslot=0xAB72, + }, + [0xAB73]={ + category="ll", + description="CHEROKEE SMALL LETTER O", + direction="l", + linebreak="al", + unicodeslot=0xAB73, + }, + [0xAB74]={ + category="ll", + description="CHEROKEE SMALL LETTER U", + direction="l", + linebreak="al", + unicodeslot=0xAB74, + }, + [0xAB75]={ + category="ll", + description="CHEROKEE SMALL LETTER V", + direction="l", + linebreak="al", + unicodeslot=0xAB75, + }, + [0xAB76]={ + category="ll", + description="CHEROKEE SMALL LETTER GA", + direction="l", + linebreak="al", + unicodeslot=0xAB76, + }, + [0xAB77]={ + category="ll", + description="CHEROKEE SMALL LETTER KA", + direction="l", + linebreak="al", + unicodeslot=0xAB77, + }, + [0xAB78]={ + category="ll", + description="CHEROKEE SMALL LETTER GE", + direction="l", + linebreak="al", + unicodeslot=0xAB78, + }, + [0xAB79]={ + category="ll", + description="CHEROKEE SMALL LETTER GI", + direction="l", + linebreak="al", + unicodeslot=0xAB79, + }, + [0xAB7A]={ + category="ll", + description="CHEROKEE SMALL LETTER GO", + direction="l", + linebreak="al", + unicodeslot=0xAB7A, + }, + [0xAB7B]={ + category="ll", + description="CHEROKEE SMALL LETTER GU", + direction="l", + linebreak="al", + unicodeslot=0xAB7B, + }, + [0xAB7C]={ + category="ll", + description="CHEROKEE SMALL LETTER GV", + direction="l", + linebreak="al", + unicodeslot=0xAB7C, + }, + [0xAB7D]={ + category="ll", + description="CHEROKEE SMALL LETTER HA", + direction="l", + linebreak="al", + unicodeslot=0xAB7D, + }, + [0xAB7E]={ + category="ll", + description="CHEROKEE SMALL LETTER HE", + direction="l", + linebreak="al", + unicodeslot=0xAB7E, + }, + [0xAB7F]={ + category="ll", + description="CHEROKEE SMALL LETTER HI", + direction="l", + linebreak="al", + unicodeslot=0xAB7F, + }, + [0xAB80]={ + category="ll", + description="CHEROKEE SMALL LETTER HO", + direction="l", + linebreak="al", + unicodeslot=0xAB80, + }, + [0xAB81]={ + category="ll", + description="CHEROKEE SMALL LETTER HU", + direction="l", + linebreak="al", + unicodeslot=0xAB81, + }, + [0xAB82]={ + category="ll", + description="CHEROKEE SMALL LETTER HV", + direction="l", + linebreak="al", + unicodeslot=0xAB82, + }, + [0xAB83]={ + category="ll", + description="CHEROKEE SMALL LETTER LA", + direction="l", + linebreak="al", + unicodeslot=0xAB83, + }, + [0xAB84]={ + category="ll", + description="CHEROKEE SMALL LETTER LE", + direction="l", + linebreak="al", + unicodeslot=0xAB84, + }, + [0xAB85]={ + category="ll", + description="CHEROKEE SMALL LETTER LI", + direction="l", + linebreak="al", + unicodeslot=0xAB85, + }, + [0xAB86]={ + category="ll", + description="CHEROKEE SMALL LETTER LO", + direction="l", + linebreak="al", + unicodeslot=0xAB86, + }, + [0xAB87]={ + category="ll", + description="CHEROKEE SMALL LETTER LU", + direction="l", + linebreak="al", + unicodeslot=0xAB87, + }, + [0xAB88]={ + category="ll", + description="CHEROKEE SMALL LETTER LV", + direction="l", + linebreak="al", + unicodeslot=0xAB88, + }, + [0xAB89]={ + category="ll", + description="CHEROKEE SMALL LETTER MA", + direction="l", + linebreak="al", + unicodeslot=0xAB89, + }, + [0xAB8A]={ + category="ll", + description="CHEROKEE SMALL LETTER ME", + direction="l", + linebreak="al", + unicodeslot=0xAB8A, + }, + [0xAB8B]={ + category="ll", + description="CHEROKEE SMALL LETTER MI", + direction="l", + linebreak="al", + unicodeslot=0xAB8B, + }, + [0xAB8C]={ + category="ll", + description="CHEROKEE SMALL LETTER MO", + direction="l", + linebreak="al", + unicodeslot=0xAB8C, + }, + [0xAB8D]={ + category="ll", + description="CHEROKEE SMALL LETTER MU", + direction="l", + linebreak="al", + unicodeslot=0xAB8D, + }, + [0xAB8E]={ + category="ll", + description="CHEROKEE SMALL LETTER NA", + direction="l", + linebreak="al", + unicodeslot=0xAB8E, + }, + [0xAB8F]={ + category="ll", + description="CHEROKEE SMALL LETTER HNA", + direction="l", + linebreak="al", + unicodeslot=0xAB8F, + }, + [0xAB90]={ + category="ll", + description="CHEROKEE SMALL LETTER NAH", + direction="l", + linebreak="al", + unicodeslot=0xAB90, + }, + [0xAB91]={ + category="ll", + description="CHEROKEE SMALL LETTER NE", + direction="l", + linebreak="al", + unicodeslot=0xAB91, + }, + [0xAB92]={ + category="ll", + description="CHEROKEE SMALL LETTER NI", + direction="l", + linebreak="al", + unicodeslot=0xAB92, + }, + [0xAB93]={ + category="ll", + description="CHEROKEE SMALL LETTER NO", + direction="l", + linebreak="al", + unicodeslot=0xAB93, + }, + [0xAB94]={ + category="ll", + description="CHEROKEE SMALL LETTER NU", + direction="l", + linebreak="al", + unicodeslot=0xAB94, + }, + [0xAB95]={ + category="ll", + description="CHEROKEE SMALL LETTER NV", + direction="l", + linebreak="al", + unicodeslot=0xAB95, + }, + [0xAB96]={ + category="ll", + description="CHEROKEE SMALL LETTER QUA", + direction="l", + linebreak="al", + unicodeslot=0xAB96, + }, + [0xAB97]={ + category="ll", + description="CHEROKEE SMALL LETTER QUE", + direction="l", + linebreak="al", + unicodeslot=0xAB97, + }, + [0xAB98]={ + category="ll", + description="CHEROKEE SMALL LETTER QUI", + direction="l", + linebreak="al", + unicodeslot=0xAB98, + }, + [0xAB99]={ + category="ll", + description="CHEROKEE SMALL LETTER QUO", + direction="l", + linebreak="al", + unicodeslot=0xAB99, + }, + [0xAB9A]={ + category="ll", + description="CHEROKEE SMALL LETTER QUU", + direction="l", + linebreak="al", + unicodeslot=0xAB9A, + }, + [0xAB9B]={ + category="ll", + description="CHEROKEE SMALL LETTER QUV", + direction="l", + linebreak="al", + unicodeslot=0xAB9B, + }, + [0xAB9C]={ + category="ll", + description="CHEROKEE SMALL LETTER SA", + direction="l", + linebreak="al", + unicodeslot=0xAB9C, + }, + [0xAB9D]={ + category="ll", + description="CHEROKEE SMALL LETTER S", + direction="l", + linebreak="al", + unicodeslot=0xAB9D, + }, + [0xAB9E]={ + category="ll", + description="CHEROKEE SMALL LETTER SE", + direction="l", + linebreak="al", + unicodeslot=0xAB9E, + }, + [0xAB9F]={ + category="ll", + description="CHEROKEE SMALL LETTER SI", + direction="l", + linebreak="al", + unicodeslot=0xAB9F, + }, + [0xABA0]={ + category="ll", + description="CHEROKEE SMALL LETTER SO", + direction="l", + linebreak="al", + unicodeslot=0xABA0, + }, + [0xABA1]={ + category="ll", + description="CHEROKEE SMALL LETTER SU", + direction="l", + linebreak="al", + unicodeslot=0xABA1, + }, + [0xABA2]={ + category="ll", + description="CHEROKEE SMALL LETTER SV", + direction="l", + linebreak="al", + unicodeslot=0xABA2, + }, + [0xABA3]={ + category="ll", + description="CHEROKEE SMALL LETTER DA", + direction="l", + linebreak="al", + unicodeslot=0xABA3, + }, + [0xABA4]={ + category="ll", + description="CHEROKEE SMALL LETTER TA", + direction="l", + linebreak="al", + unicodeslot=0xABA4, + }, + [0xABA5]={ + category="ll", + description="CHEROKEE SMALL LETTER DE", + direction="l", + linebreak="al", + unicodeslot=0xABA5, + }, + [0xABA6]={ + category="ll", + description="CHEROKEE SMALL LETTER TE", + direction="l", + linebreak="al", + unicodeslot=0xABA6, + }, + [0xABA7]={ + category="ll", + description="CHEROKEE SMALL LETTER DI", + direction="l", + linebreak="al", + unicodeslot=0xABA7, + }, + [0xABA8]={ + category="ll", + description="CHEROKEE SMALL LETTER TI", + direction="l", + linebreak="al", + unicodeslot=0xABA8, + }, + [0xABA9]={ + category="ll", + description="CHEROKEE SMALL LETTER DO", + direction="l", + linebreak="al", + unicodeslot=0xABA9, + }, + [0xABAA]={ + category="ll", + description="CHEROKEE SMALL LETTER DU", + direction="l", + linebreak="al", + unicodeslot=0xABAA, + }, + [0xABAB]={ + category="ll", + description="CHEROKEE SMALL LETTER DV", + direction="l", + linebreak="al", + unicodeslot=0xABAB, + }, + [0xABAC]={ + category="ll", + description="CHEROKEE SMALL LETTER DLA", + direction="l", + linebreak="al", + unicodeslot=0xABAC, + }, + [0xABAD]={ + category="ll", + description="CHEROKEE SMALL LETTER TLA", + direction="l", + linebreak="al", + unicodeslot=0xABAD, + }, + [0xABAE]={ + category="ll", + description="CHEROKEE SMALL LETTER TLE", + direction="l", + linebreak="al", + unicodeslot=0xABAE, + }, + [0xABAF]={ + category="ll", + description="CHEROKEE SMALL LETTER TLI", + direction="l", + linebreak="al", + unicodeslot=0xABAF, + }, + [0xABB0]={ + category="ll", + description="CHEROKEE SMALL LETTER TLO", + direction="l", + linebreak="al", + unicodeslot=0xABB0, + }, + [0xABB1]={ + category="ll", + description="CHEROKEE SMALL LETTER TLU", + direction="l", + linebreak="al", + unicodeslot=0xABB1, + }, + [0xABB2]={ + category="ll", + description="CHEROKEE SMALL LETTER TLV", + direction="l", + linebreak="al", + unicodeslot=0xABB2, + }, + [0xABB3]={ + category="ll", + description="CHEROKEE SMALL LETTER TSA", + direction="l", + linebreak="al", + unicodeslot=0xABB3, + }, + [0xABB4]={ + category="ll", + description="CHEROKEE SMALL LETTER TSE", + direction="l", + linebreak="al", + unicodeslot=0xABB4, + }, + [0xABB5]={ + category="ll", + description="CHEROKEE SMALL LETTER TSI", + direction="l", + linebreak="al", + unicodeslot=0xABB5, + }, + [0xABB6]={ + category="ll", + description="CHEROKEE SMALL LETTER TSO", + direction="l", + linebreak="al", + unicodeslot=0xABB6, + }, + [0xABB7]={ + category="ll", + description="CHEROKEE SMALL LETTER TSU", + direction="l", + linebreak="al", + unicodeslot=0xABB7, + }, + [0xABB8]={ + category="ll", + description="CHEROKEE SMALL LETTER TSV", + direction="l", + linebreak="al", + unicodeslot=0xABB8, + }, + [0xABB9]={ + category="ll", + description="CHEROKEE SMALL LETTER WA", + direction="l", + linebreak="al", + unicodeslot=0xABB9, + }, + [0xABBA]={ + category="ll", + description="CHEROKEE SMALL LETTER WE", + direction="l", + linebreak="al", + unicodeslot=0xABBA, + }, + [0xABBB]={ + category="ll", + description="CHEROKEE SMALL LETTER WI", + direction="l", + linebreak="al", + unicodeslot=0xABBB, + }, + [0xABBC]={ + category="ll", + description="CHEROKEE SMALL LETTER WO", + direction="l", + linebreak="al", + unicodeslot=0xABBC, + }, + [0xABBD]={ + category="ll", + description="CHEROKEE SMALL LETTER WU", + direction="l", + linebreak="al", + unicodeslot=0xABBD, + }, + [0xABBE]={ + category="ll", + description="CHEROKEE SMALL LETTER WV", + direction="l", + linebreak="al", + unicodeslot=0xABBE, + }, + [0xABBF]={ + category="ll", + description="CHEROKEE SMALL LETTER YA", + direction="l", + linebreak="al", + unicodeslot=0xABBF, + }, [0xABC0]={ category="lo", description="MEETEI MAYEK LETTER KOK", @@ -131110,6 +131928,22 @@ characters.data={ linebreak="cm", unicodeslot=0xFE2D, }, + [0xFE2E]={ + category="mn", + combining=0xE6, + description="COMBINING CYRILLIC TITLO LEFT HALF", + direction="nsm", + linebreak="cm", + unicodeslot=0xFE2E, + }, + [0xFE2F]={ + category="mn", + combining=0xE6, + description="COMBINING CYRILLIC TITLO RIGHT HALF", + direction="nsm", + linebreak="cm", + unicodeslot=0xFE2F, + }, [0xFE30]={ adobename="twodotleadervertical", category="po", @@ -145565,6 +146399,188 @@ characters.data={ linebreak="al", unicodeslot=0x108AF, }, + [0x108E0]={ + category="lo", + description="HATRAN LETTER ALEPH", + direction="r", + linebreak="al", + unicodeslot=0x108E0, + }, + [0x108E1]={ + category="lo", + description="HATRAN LETTER BETH", + direction="r", + linebreak="al", + unicodeslot=0x108E1, + }, + [0x108E2]={ + category="lo", + description="HATRAN LETTER GIMEL", + direction="r", + linebreak="al", + unicodeslot=0x108E2, + }, + [0x108E3]={ + category="lo", + description="HATRAN LETTER DALETH-RESH", + direction="r", + linebreak="al", + unicodeslot=0x108E3, + }, + [0x108E4]={ + category="lo", + description="HATRAN LETTER HE", + direction="r", + linebreak="al", + unicodeslot=0x108E4, + }, + [0x108E5]={ + category="lo", + description="HATRAN LETTER WAW", + direction="r", + linebreak="al", + unicodeslot=0x108E5, + }, + [0x108E6]={ + category="lo", + description="HATRAN LETTER ZAYN", + direction="r", + linebreak="al", + unicodeslot=0x108E6, + }, + [0x108E7]={ + category="lo", + description="HATRAN LETTER HETH", + direction="r", + linebreak="al", + unicodeslot=0x108E7, + }, + [0x108E8]={ + category="lo", + description="HATRAN LETTER TETH", + direction="r", + linebreak="al", + unicodeslot=0x108E8, + }, + [0x108E9]={ + category="lo", + description="HATRAN LETTER YODH", + direction="r", + linebreak="al", + unicodeslot=0x108E9, + }, + [0x108EA]={ + category="lo", + description="HATRAN LETTER KAPH", + direction="r", + linebreak="al", + unicodeslot=0x108EA, + }, + [0x108EB]={ + category="lo", + description="HATRAN LETTER LAMEDH", + direction="r", + linebreak="al", + unicodeslot=0x108EB, + }, + [0x108EC]={ + category="lo", + description="HATRAN LETTER MEM", + direction="r", + linebreak="al", + unicodeslot=0x108EC, + }, + [0x108ED]={ + category="lo", + description="HATRAN LETTER NUN", + direction="r", + linebreak="al", + unicodeslot=0x108ED, + }, + [0x108EE]={ + category="lo", + description="HATRAN LETTER SAMEKH", + direction="r", + linebreak="al", + unicodeslot=0x108EE, + }, + [0x108EF]={ + category="lo", + description="HATRAN LETTER AYN", + direction="r", + linebreak="al", + unicodeslot=0x108EF, + }, + [0x108F0]={ + category="lo", + description="HATRAN LETTER PE", + direction="r", + linebreak="al", + unicodeslot=0x108F0, + }, + [0x108F1]={ + category="lo", + description="HATRAN LETTER SADHE", + direction="r", + linebreak="al", + unicodeslot=0x108F1, + }, + [0x108F2]={ + category="lo", + description="HATRAN LETTER QOPH", + direction="r", + linebreak="al", + unicodeslot=0x108F2, + }, + [0x108F4]={ + category="lo", + description="HATRAN LETTER SHIN", + direction="r", + linebreak="al", + unicodeslot=0x108F4, + }, + [0x108F5]={ + category="lo", + description="HATRAN LETTER TAW", + direction="r", + linebreak="al", + unicodeslot=0x108F5, + }, + [0x108FB]={ + category="no", + description="HATRAN NUMBER ONE", + direction="r", + linebreak="al", + unicodeslot=0x108FB, + }, + [0x108FC]={ + category="no", + description="HATRAN NUMBER FIVE", + direction="r", + linebreak="al", + unicodeslot=0x108FC, + }, + [0x108FD]={ + category="no", + description="HATRAN NUMBER TEN", + direction="r", + linebreak="al", + unicodeslot=0x108FD, + }, + [0x108FE]={ + category="no", + description="HATRAN NUMBER TWENTY", + direction="r", + linebreak="al", + unicodeslot=0x108FE, + }, + [0x108FF]={ + category="no", + description="HATRAN NUMBER ONE HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x108FF, + }, [0x10900]={ category="lo", description="PHOENICIAN LETTER ALF", @@ -146349,6 +147365,20 @@ characters.data={ linebreak="al", unicodeslot=0x109B7, }, + [0x109BC]={ + category="no", + description="MEROITIC CURSIVE FRACTION ELEVEN TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109BC, + }, + [0x109BD]={ + category="no", + description="MEROITIC CURSIVE FRACTION ONE HALF", + direction="r", + linebreak="al", + unicodeslot=0x109BD, + }, [0x109BE]={ category="lo", description="MEROITIC CURSIVE LOGOGRAM RMT", @@ -146363,6 +147393,440 @@ characters.data={ linebreak="al", unicodeslot=0x109BF, }, + [0x109C0]={ + category="no", + description="MEROITIC CURSIVE NUMBER ONE", + direction="r", + linebreak="al", + unicodeslot=0x109C0, + }, + [0x109C1]={ + category="no", + description="MEROITIC CURSIVE NUMBER TWO", + direction="r", + linebreak="al", + unicodeslot=0x109C1, + }, + [0x109C2]={ + category="no", + description="MEROITIC CURSIVE NUMBER THREE", + direction="r", + linebreak="al", + unicodeslot=0x109C2, + }, + [0x109C3]={ + category="no", + description="MEROITIC CURSIVE NUMBER FOUR", + direction="r", + linebreak="al", + unicodeslot=0x109C3, + }, + [0x109C4]={ + category="no", + description="MEROITIC CURSIVE NUMBER FIVE", + direction="r", + linebreak="al", + unicodeslot=0x109C4, + }, + [0x109C5]={ + category="no", + description="MEROITIC CURSIVE NUMBER SIX", + direction="r", + linebreak="al", + unicodeslot=0x109C5, + }, + [0x109C6]={ + category="no", + description="MEROITIC CURSIVE NUMBER SEVEN", + direction="r", + linebreak="al", + unicodeslot=0x109C6, + }, + [0x109C7]={ + category="no", + description="MEROITIC CURSIVE NUMBER EIGHT", + direction="r", + linebreak="al", + unicodeslot=0x109C7, + }, + [0x109C8]={ + category="no", + description="MEROITIC CURSIVE NUMBER NINE", + direction="r", + linebreak="al", + unicodeslot=0x109C8, + }, + [0x109C9]={ + category="no", + description="MEROITIC CURSIVE NUMBER TEN", + direction="r", + linebreak="al", + unicodeslot=0x109C9, + }, + [0x109CA]={ + category="no", + description="MEROITIC CURSIVE NUMBER TWENTY", + direction="r", + linebreak="al", + unicodeslot=0x109CA, + }, + [0x109CB]={ + category="no", + description="MEROITIC CURSIVE NUMBER THIRTY", + direction="r", + linebreak="al", + unicodeslot=0x109CB, + }, + [0x109CC]={ + category="no", + description="MEROITIC CURSIVE NUMBER FORTY", + direction="r", + linebreak="al", + unicodeslot=0x109CC, + }, + [0x109CD]={ + category="no", + description="MEROITIC CURSIVE NUMBER FIFTY", + direction="r", + linebreak="al", + unicodeslot=0x109CD, + }, + [0x109CE]={ + category="no", + description="MEROITIC CURSIVE NUMBER SIXTY", + direction="r", + linebreak="al", + unicodeslot=0x109CE, + }, + [0x109CF]={ + category="no", + description="MEROITIC CURSIVE NUMBER SEVENTY", + direction="r", + linebreak="al", + unicodeslot=0x109CF, + }, + [0x109D2]={ + category="no", + description="MEROITIC CURSIVE NUMBER ONE HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109D2, + }, + [0x109D3]={ + category="no", + description="MEROITIC CURSIVE NUMBER TWO HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109D3, + }, + [0x109D4]={ + category="no", + description="MEROITIC CURSIVE NUMBER THREE HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109D4, + }, + [0x109D5]={ + category="no", + description="MEROITIC CURSIVE NUMBER FOUR HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109D5, + }, + [0x109D6]={ + category="no", + description="MEROITIC CURSIVE NUMBER FIVE HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109D6, + }, + [0x109D7]={ + category="no", + description="MEROITIC CURSIVE NUMBER SIX HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109D7, + }, + [0x109D8]={ + category="no", + description="MEROITIC CURSIVE NUMBER SEVEN HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109D8, + }, + [0x109D9]={ + category="no", + description="MEROITIC CURSIVE NUMBER EIGHT HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109D9, + }, + [0x109DA]={ + category="no", + description="MEROITIC CURSIVE NUMBER NINE HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x109DA, + }, + [0x109DB]={ + category="no", + description="MEROITIC CURSIVE NUMBER ONE THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109DB, + }, + [0x109DC]={ + category="no", + description="MEROITIC CURSIVE NUMBER TWO THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109DC, + }, + [0x109DD]={ + category="no", + description="MEROITIC CURSIVE NUMBER THREE THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109DD, + }, + [0x109DE]={ + category="no", + description="MEROITIC CURSIVE NUMBER FOUR THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109DE, + }, + [0x109DF]={ + category="no", + description="MEROITIC CURSIVE NUMBER FIVE THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109DF, + }, + [0x109E0]={ + category="no", + description="MEROITIC CURSIVE NUMBER SIX THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E0, + }, + [0x109E1]={ + category="no", + description="MEROITIC CURSIVE NUMBER SEVEN THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E1, + }, + [0x109E2]={ + category="no", + description="MEROITIC CURSIVE NUMBER EIGHT THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E2, + }, + [0x109E3]={ + category="no", + description="MEROITIC CURSIVE NUMBER NINE THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E3, + }, + [0x109E4]={ + category="no", + description="MEROITIC CURSIVE NUMBER TEN THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E4, + }, + [0x109E5]={ + category="no", + description="MEROITIC CURSIVE NUMBER TWENTY THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E5, + }, + [0x109E6]={ + category="no", + description="MEROITIC CURSIVE NUMBER THIRTY THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E6, + }, + [0x109E7]={ + category="no", + description="MEROITIC CURSIVE NUMBER FORTY THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E7, + }, + [0x109E8]={ + category="no", + description="MEROITIC CURSIVE NUMBER FIFTY THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E8, + }, + [0x109E9]={ + category="no", + description="MEROITIC CURSIVE NUMBER SIXTY THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109E9, + }, + [0x109EA]={ + category="no", + description="MEROITIC CURSIVE NUMBER SEVENTY THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109EA, + }, + [0x109EB]={ + category="no", + description="MEROITIC CURSIVE NUMBER EIGHTY THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109EB, + }, + [0x109EC]={ + category="no", + description="MEROITIC CURSIVE NUMBER NINETY THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109EC, + }, + [0x109ED]={ + category="no", + description="MEROITIC CURSIVE NUMBER ONE HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109ED, + }, + [0x109EE]={ + category="no", + description="MEROITIC CURSIVE NUMBER TWO HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109EE, + }, + [0x109EF]={ + category="no", + description="MEROITIC CURSIVE NUMBER THREE HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109EF, + }, + [0x109F0]={ + category="no", + description="MEROITIC CURSIVE NUMBER FOUR HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109F0, + }, + [0x109F1]={ + category="no", + description="MEROITIC CURSIVE NUMBER FIVE HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109F1, + }, + [0x109F2]={ + category="no", + description="MEROITIC CURSIVE NUMBER SIX HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109F2, + }, + [0x109F3]={ + category="no", + description="MEROITIC CURSIVE NUMBER SEVEN HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109F3, + }, + [0x109F4]={ + category="no", + description="MEROITIC CURSIVE NUMBER EIGHT HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109F4, + }, + [0x109F5]={ + category="no", + description="MEROITIC CURSIVE NUMBER NINE HUNDRED THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x109F5, + }, + [0x109F6]={ + category="no", + description="MEROITIC CURSIVE FRACTION ONE TWELFTH", + direction="r", + linebreak="al", + unicodeslot=0x109F6, + }, + [0x109F7]={ + category="no", + description="MEROITIC CURSIVE FRACTION TWO TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109F7, + }, + [0x109F8]={ + category="no", + description="MEROITIC CURSIVE FRACTION THREE TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109F8, + }, + [0x109F9]={ + category="no", + description="MEROITIC CURSIVE FRACTION FOUR TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109F9, + }, + [0x109FA]={ + category="no", + description="MEROITIC CURSIVE FRACTION FIVE TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109FA, + }, + [0x109FB]={ + category="no", + description="MEROITIC CURSIVE FRACTION SIX TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109FB, + }, + [0x109FC]={ + category="no", + description="MEROITIC CURSIVE FRACTION SEVEN TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109FC, + }, + [0x109FD]={ + category="no", + description="MEROITIC CURSIVE FRACTION EIGHT TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109FD, + }, + [0x109FE]={ + category="no", + description="MEROITIC CURSIVE FRACTION NINE TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109FE, + }, + [0x109FF]={ + category="no", + description="MEROITIC CURSIVE FRACTION TEN TWELFTHS", + direction="r", + linebreak="al", + unicodeslot=0x109FF, + }, [0x10A00]={ category="lo", description="KHAROSHTHI LETTER A", @@ -147319,6 +148783,9 @@ characters.data={ direction="r", linebreak="al", unicodeslot=0x10AC5, + variants={ + [0xFE00]="alternate form", + }, }, [0x10AC6]={ arabic="u", @@ -147327,6 +148794,9 @@ characters.data={ direction="r", linebreak="al", unicodeslot=0x10AC6, + variants={ + [0xFE00]="alternate form", + }, }, [0x10AC7]={ arabic="r", @@ -147455,6 +148925,9 @@ characters.data={ direction="r", linebreak="al", unicodeslot=0x10AD6, + variants={ + [0xFE00]="alternate form", + }, }, [0x10AD7]={ arabic="l", @@ -147463,6 +148936,9 @@ characters.data={ direction="r", linebreak="al", unicodeslot=0x10AD7, + variants={ + [0xFE00]="alternate form", + }, }, [0x10AD8]={ arabic="d", @@ -147543,6 +149019,9 @@ characters.data={ direction="r", linebreak="al", unicodeslot=0x10AE1, + variants={ + [0xFE00]="alternate form", + }, }, [0x10AE2]={ arabic="u", @@ -149238,6 +150717,762 @@ characters.data={ linebreak="al", unicodeslot=0x10C48, }, + [0x10C80]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER A", + direction="r", + linebreak="al", + unicodeslot=0x10C80, + }, + [0x10C81]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER AA", + direction="r", + linebreak="al", + unicodeslot=0x10C81, + }, + [0x10C82]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EB", + direction="r", + linebreak="al", + unicodeslot=0x10C82, + }, + [0x10C83]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER AMB", + direction="r", + linebreak="al", + unicodeslot=0x10C83, + }, + [0x10C84]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EC", + direction="r", + linebreak="al", + unicodeslot=0x10C84, + }, + [0x10C85]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ENC", + direction="r", + linebreak="al", + unicodeslot=0x10C85, + }, + [0x10C86]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ECS", + direction="r", + linebreak="al", + unicodeslot=0x10C86, + }, + [0x10C87]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ED", + direction="r", + linebreak="al", + unicodeslot=0x10C87, + }, + [0x10C88]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER AND", + direction="r", + linebreak="al", + unicodeslot=0x10C88, + }, + [0x10C89]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER E", + direction="r", + linebreak="al", + unicodeslot=0x10C89, + }, + [0x10C8A]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER CLOSE E", + direction="r", + linebreak="al", + unicodeslot=0x10C8A, + }, + [0x10C8B]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EE", + direction="r", + linebreak="al", + unicodeslot=0x10C8B, + }, + [0x10C8C]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EF", + direction="r", + linebreak="al", + unicodeslot=0x10C8C, + }, + [0x10C8D]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EG", + direction="r", + linebreak="al", + unicodeslot=0x10C8D, + }, + [0x10C8E]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EGY", + direction="r", + linebreak="al", + unicodeslot=0x10C8E, + }, + [0x10C8F]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EH", + direction="r", + linebreak="al", + unicodeslot=0x10C8F, + }, + [0x10C90]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER I", + direction="r", + linebreak="al", + unicodeslot=0x10C90, + }, + [0x10C91]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER II", + direction="r", + linebreak="al", + unicodeslot=0x10C91, + }, + [0x10C92]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EJ", + direction="r", + linebreak="al", + unicodeslot=0x10C92, + }, + [0x10C93]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EK", + direction="r", + linebreak="al", + unicodeslot=0x10C93, + }, + [0x10C94]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER AK", + direction="r", + linebreak="al", + unicodeslot=0x10C94, + }, + [0x10C95]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER UNK", + direction="r", + linebreak="al", + unicodeslot=0x10C95, + }, + [0x10C96]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EL", + direction="r", + linebreak="al", + unicodeslot=0x10C96, + }, + [0x10C97]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ELY", + direction="r", + linebreak="al", + unicodeslot=0x10C97, + }, + [0x10C98]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EM", + direction="r", + linebreak="al", + unicodeslot=0x10C98, + }, + [0x10C99]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EN", + direction="r", + linebreak="al", + unicodeslot=0x10C99, + }, + [0x10C9A]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ENY", + direction="r", + linebreak="al", + unicodeslot=0x10C9A, + }, + [0x10C9B]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER O", + direction="r", + linebreak="al", + unicodeslot=0x10C9B, + }, + [0x10C9C]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER OO", + direction="r", + linebreak="al", + unicodeslot=0x10C9C, + }, + [0x10C9D]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER NIKOLSBURG OE", + direction="r", + linebreak="al", + unicodeslot=0x10C9D, + }, + [0x10C9E]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER RUDIMENTA OE", + direction="r", + linebreak="al", + unicodeslot=0x10C9E, + }, + [0x10C9F]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER OEE", + direction="r", + linebreak="al", + unicodeslot=0x10C9F, + }, + [0x10CA0]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EP", + direction="r", + linebreak="al", + unicodeslot=0x10CA0, + }, + [0x10CA1]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EMP", + direction="r", + linebreak="al", + unicodeslot=0x10CA1, + }, + [0x10CA2]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ER", + direction="r", + linebreak="al", + unicodeslot=0x10CA2, + }, + [0x10CA3]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER SHORT ER", + direction="r", + linebreak="al", + unicodeslot=0x10CA3, + }, + [0x10CA4]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ES", + direction="r", + linebreak="al", + unicodeslot=0x10CA4, + }, + [0x10CA5]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ESZ", + direction="r", + linebreak="al", + unicodeslot=0x10CA5, + }, + [0x10CA6]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ET", + direction="r", + linebreak="al", + unicodeslot=0x10CA6, + }, + [0x10CA7]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ENT", + direction="r", + linebreak="al", + unicodeslot=0x10CA7, + }, + [0x10CA8]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ETY", + direction="r", + linebreak="al", + unicodeslot=0x10CA8, + }, + [0x10CA9]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ECH", + direction="r", + linebreak="al", + unicodeslot=0x10CA9, + }, + [0x10CAA]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER U", + direction="r", + linebreak="al", + unicodeslot=0x10CAA, + }, + [0x10CAB]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER UU", + direction="r", + linebreak="al", + unicodeslot=0x10CAB, + }, + [0x10CAC]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER NIKOLSBURG UE", + direction="r", + linebreak="al", + unicodeslot=0x10CAC, + }, + [0x10CAD]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER RUDIMENTA UE", + direction="r", + linebreak="al", + unicodeslot=0x10CAD, + }, + [0x10CAE]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EV", + direction="r", + linebreak="al", + unicodeslot=0x10CAE, + }, + [0x10CAF]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EZ", + direction="r", + linebreak="al", + unicodeslot=0x10CAF, + }, + [0x10CB0]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER EZS", + direction="r", + linebreak="al", + unicodeslot=0x10CB0, + }, + [0x10CB1]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER ENT-SHAPED SIGN", + direction="r", + linebreak="al", + unicodeslot=0x10CB1, + }, + [0x10CB2]={ + category="lu", + description="OLD HUNGARIAN CAPITAL LETTER US", + direction="r", + linebreak="al", + unicodeslot=0x10CB2, + }, + [0x10CC0]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER A", + direction="r", + linebreak="al", + unicodeslot=0x10CC0, + }, + [0x10CC1]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER AA", + direction="r", + linebreak="al", + unicodeslot=0x10CC1, + }, + [0x10CC2]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EB", + direction="r", + linebreak="al", + unicodeslot=0x10CC2, + }, + [0x10CC3]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER AMB", + direction="r", + linebreak="al", + unicodeslot=0x10CC3, + }, + [0x10CC4]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EC", + direction="r", + linebreak="al", + unicodeslot=0x10CC4, + }, + [0x10CC5]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ENC", + direction="r", + linebreak="al", + unicodeslot=0x10CC5, + }, + [0x10CC6]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ECS", + direction="r", + linebreak="al", + unicodeslot=0x10CC6, + }, + [0x10CC7]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ED", + direction="r", + linebreak="al", + unicodeslot=0x10CC7, + }, + [0x10CC8]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER AND", + direction="r", + linebreak="al", + unicodeslot=0x10CC8, + }, + [0x10CC9]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER E", + direction="r", + linebreak="al", + unicodeslot=0x10CC9, + }, + [0x10CCA]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER CLOSE E", + direction="r", + linebreak="al", + unicodeslot=0x10CCA, + }, + [0x10CCB]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EE", + direction="r", + linebreak="al", + unicodeslot=0x10CCB, + }, + [0x10CCC]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EF", + direction="r", + linebreak="al", + unicodeslot=0x10CCC, + }, + [0x10CCD]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EG", + direction="r", + linebreak="al", + unicodeslot=0x10CCD, + }, + [0x10CCE]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EGY", + direction="r", + linebreak="al", + unicodeslot=0x10CCE, + }, + [0x10CCF]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EH", + direction="r", + linebreak="al", + unicodeslot=0x10CCF, + }, + [0x10CD0]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER I", + direction="r", + linebreak="al", + unicodeslot=0x10CD0, + }, + [0x10CD1]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER II", + direction="r", + linebreak="al", + unicodeslot=0x10CD1, + }, + [0x10CD2]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EJ", + direction="r", + linebreak="al", + unicodeslot=0x10CD2, + }, + [0x10CD3]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EK", + direction="r", + linebreak="al", + unicodeslot=0x10CD3, + }, + [0x10CD4]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER AK", + direction="r", + linebreak="al", + unicodeslot=0x10CD4, + }, + [0x10CD5]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER UNK", + direction="r", + linebreak="al", + unicodeslot=0x10CD5, + }, + [0x10CD6]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EL", + direction="r", + linebreak="al", + unicodeslot=0x10CD6, + }, + [0x10CD7]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ELY", + direction="r", + linebreak="al", + unicodeslot=0x10CD7, + }, + [0x10CD8]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EM", + direction="r", + linebreak="al", + unicodeslot=0x10CD8, + }, + [0x10CD9]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EN", + direction="r", + linebreak="al", + unicodeslot=0x10CD9, + }, + [0x10CDA]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ENY", + direction="r", + linebreak="al", + unicodeslot=0x10CDA, + }, + [0x10CDB]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER O", + direction="r", + linebreak="al", + unicodeslot=0x10CDB, + }, + [0x10CDC]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER OO", + direction="r", + linebreak="al", + unicodeslot=0x10CDC, + }, + [0x10CDD]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER NIKOLSBURG OE", + direction="r", + linebreak="al", + unicodeslot=0x10CDD, + }, + [0x10CDE]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER RUDIMENTA OE", + direction="r", + linebreak="al", + unicodeslot=0x10CDE, + }, + [0x10CDF]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER OEE", + direction="r", + linebreak="al", + unicodeslot=0x10CDF, + }, + [0x10CE0]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EP", + direction="r", + linebreak="al", + unicodeslot=0x10CE0, + }, + [0x10CE1]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EMP", + direction="r", + linebreak="al", + unicodeslot=0x10CE1, + }, + [0x10CE2]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ER", + direction="r", + linebreak="al", + unicodeslot=0x10CE2, + }, + [0x10CE3]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER SHORT ER", + direction="r", + linebreak="al", + unicodeslot=0x10CE3, + }, + [0x10CE4]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ES", + direction="r", + linebreak="al", + unicodeslot=0x10CE4, + }, + [0x10CE5]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ESZ", + direction="r", + linebreak="al", + unicodeslot=0x10CE5, + }, + [0x10CE6]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ET", + direction="r", + linebreak="al", + unicodeslot=0x10CE6, + }, + [0x10CE7]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ENT", + direction="r", + linebreak="al", + unicodeslot=0x10CE7, + }, + [0x10CE8]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ETY", + direction="r", + linebreak="al", + unicodeslot=0x10CE8, + }, + [0x10CE9]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ECH", + direction="r", + linebreak="al", + unicodeslot=0x10CE9, + }, + [0x10CEA]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER U", + direction="r", + linebreak="al", + unicodeslot=0x10CEA, + }, + [0x10CEB]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER UU", + direction="r", + linebreak="al", + unicodeslot=0x10CEB, + }, + [0x10CEC]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER NIKOLSBURG UE", + direction="r", + linebreak="al", + unicodeslot=0x10CEC, + }, + [0x10CED]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER RUDIMENTA UE", + direction="r", + linebreak="al", + unicodeslot=0x10CED, + }, + [0x10CEE]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EV", + direction="r", + linebreak="al", + unicodeslot=0x10CEE, + }, + [0x10CEF]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EZ", + direction="r", + linebreak="al", + unicodeslot=0x10CEF, + }, + [0x10CF0]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER EZS", + direction="r", + linebreak="al", + unicodeslot=0x10CF0, + }, + [0x10CF1]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER ENT-SHAPED SIGN", + direction="r", + linebreak="al", + unicodeslot=0x10CF1, + }, + [0x10CF2]={ + category="ll", + description="OLD HUNGARIAN SMALL LETTER US", + direction="r", + linebreak="al", + unicodeslot=0x10CF2, + }, + [0x10CFA]={ + category="no", + description="OLD HUNGARIAN NUMBER ONE", + direction="r", + linebreak="al", + unicodeslot=0x10CFA, + }, + [0x10CFB]={ + category="no", + description="OLD HUNGARIAN NUMBER FIVE", + direction="r", + linebreak="al", + unicodeslot=0x10CFB, + }, + [0x10CFC]={ + category="no", + description="OLD HUNGARIAN NUMBER TEN", + direction="r", + linebreak="al", + unicodeslot=0x10CFC, + }, + [0x10CFD]={ + category="no", + description="OLD HUNGARIAN NUMBER FIFTY", + direction="r", + linebreak="al", + unicodeslot=0x10CFD, + }, + [0x10CFE]={ + category="no", + description="OLD HUNGARIAN NUMBER ONE HUNDRED", + direction="r", + linebreak="al", + unicodeslot=0x10CFE, + }, + [0x10CFF]={ + category="no", + description="OLD HUNGARIAN NUMBER ONE THOUSAND", + direction="r", + linebreak="al", + unicodeslot=0x10CFF, + }, [0x10E60]={ category="no", description="RUMI DIGIT ONE", @@ -152194,6 +154429,35 @@ characters.data={ linebreak="ba", unicodeslot=0x111C8, }, + [0x111C9]={ + category="po", + description="SHARADA SANDHI MARK", + direction="l", + linebreak="al", + unicodeslot=0x111C9, + }, + [0x111CA]={ + category="mn", + combining=0x7, + description="SHARADA SIGN NUKTA", + direction="nsm", + linebreak="cm", + unicodeslot=0x111CA, + }, + [0x111CB]={ + category="mn", + description="SHARADA VOWEL MODIFIER MARK", + direction="nsm", + linebreak="cm", + unicodeslot=0x111CB, + }, + [0x111CC]={ + category="mn", + description="SHARADA EXTRA SHORT VOWEL MARK", + direction="nsm", + linebreak="cm", + unicodeslot=0x111CC, + }, [0x111CD]={ category="po", description="SHARADA SUTRA MARK", @@ -152278,6 +154542,41 @@ characters.data={ linebreak="al", unicodeslot=0x111DA, }, + [0x111DB]={ + category="po", + description="SHARADA SIGN SIDDHAM", + direction="l", + linebreak="bb", + unicodeslot=0x111DB, + }, + [0x111DC]={ + category="lo", + description="SHARADA HEADSTROKE", + direction="l", + linebreak="al", + unicodeslot=0x111DC, + }, + [0x111DD]={ + category="po", + description="SHARADA CONTINUATION SIGN", + direction="l", + linebreak="ba", + unicodeslot=0x111DD, + }, + [0x111DE]={ + category="po", + description="SHARADA SECTION MARK-1", + direction="l", + linebreak="ba", + unicodeslot=0x111DE, + }, + [0x111DF]={ + category="po", + description="SHARADA SECTION MARK-2", + direction="l", + linebreak="ba", + unicodeslot=0x111DF, + }, [0x111E1]={ category="no", description="SINHALA ARCHAIC DIGIT ONE", @@ -152847,6 +155146,272 @@ characters.data={ linebreak="al", unicodeslot=0x1123D, }, + [0x11280]={ + category="lo", + description="MULTANI LETTER A", + direction="l", + linebreak="al", + unicodeslot=0x11280, + }, + [0x11281]={ + category="lo", + description="MULTANI LETTER I", + direction="l", + linebreak="al", + unicodeslot=0x11281, + }, + [0x11282]={ + category="lo", + description="MULTANI LETTER U", + direction="l", + linebreak="al", + unicodeslot=0x11282, + }, + [0x11283]={ + category="lo", + description="MULTANI LETTER E", + direction="l", + linebreak="al", + unicodeslot=0x11283, + }, + [0x11284]={ + category="lo", + description="MULTANI LETTER KA", + direction="l", + linebreak="al", + unicodeslot=0x11284, + }, + [0x11285]={ + category="lo", + description="MULTANI LETTER KHA", + direction="l", + linebreak="al", + unicodeslot=0x11285, + }, + [0x11286]={ + category="lo", + description="MULTANI LETTER GA", + direction="l", + linebreak="al", + unicodeslot=0x11286, + }, + [0x11288]={ + category="lo", + description="MULTANI LETTER GHA", + direction="l", + linebreak="al", + unicodeslot=0x11288, + }, + [0x1128A]={ + category="lo", + description="MULTANI LETTER CA", + direction="l", + linebreak="al", + unicodeslot=0x1128A, + }, + [0x1128B]={ + category="lo", + description="MULTANI LETTER CHA", + direction="l", + linebreak="al", + unicodeslot=0x1128B, + }, + [0x1128C]={ + category="lo", + description="MULTANI LETTER JA", + direction="l", + linebreak="al", + unicodeslot=0x1128C, + }, + [0x1128D]={ + category="lo", + description="MULTANI LETTER JJA", + direction="l", + linebreak="al", + unicodeslot=0x1128D, + }, + [0x1128F]={ + category="lo", + description="MULTANI LETTER NYA", + direction="l", + linebreak="al", + unicodeslot=0x1128F, + }, + [0x11290]={ + category="lo", + description="MULTANI LETTER TTA", + direction="l", + linebreak="al", + unicodeslot=0x11290, + }, + [0x11291]={ + category="lo", + description="MULTANI LETTER TTHA", + direction="l", + linebreak="al", + unicodeslot=0x11291, + }, + [0x11292]={ + category="lo", + description="MULTANI LETTER DDA", + direction="l", + linebreak="al", + unicodeslot=0x11292, + }, + [0x11293]={ + category="lo", + description="MULTANI LETTER DDDA", + direction="l", + linebreak="al", + unicodeslot=0x11293, + }, + [0x11294]={ + category="lo", + description="MULTANI LETTER DDHA", + direction="l", + linebreak="al", + unicodeslot=0x11294, + }, + [0x11295]={ + category="lo", + description="MULTANI LETTER NNA", + direction="l", + linebreak="al", + unicodeslot=0x11295, + }, + [0x11296]={ + category="lo", + description="MULTANI LETTER TA", + direction="l", + linebreak="al", + unicodeslot=0x11296, + }, + [0x11297]={ + category="lo", + description="MULTANI LETTER THA", + direction="l", + linebreak="al", + unicodeslot=0x11297, + }, + [0x11298]={ + category="lo", + description="MULTANI LETTER DA", + direction="l", + linebreak="al", + unicodeslot=0x11298, + }, + [0x11299]={ + category="lo", + description="MULTANI LETTER DHA", + direction="l", + linebreak="al", + unicodeslot=0x11299, + }, + [0x1129A]={ + category="lo", + description="MULTANI LETTER NA", + direction="l", + linebreak="al", + unicodeslot=0x1129A, + }, + [0x1129B]={ + category="lo", + description="MULTANI LETTER PA", + direction="l", + linebreak="al", + unicodeslot=0x1129B, + }, + [0x1129C]={ + category="lo", + description="MULTANI LETTER PHA", + direction="l", + linebreak="al", + unicodeslot=0x1129C, + }, + [0x1129D]={ + category="lo", + description="MULTANI LETTER BA", + direction="l", + linebreak="al", + unicodeslot=0x1129D, + }, + [0x1129F]={ + category="lo", + description="MULTANI LETTER BHA", + direction="l", + linebreak="al", + unicodeslot=0x1129F, + }, + [0x112A0]={ + category="lo", + description="MULTANI LETTER MA", + direction="l", + linebreak="al", + unicodeslot=0x112A0, + }, + [0x112A1]={ + category="lo", + description="MULTANI LETTER YA", + direction="l", + linebreak="al", + unicodeslot=0x112A1, + }, + [0x112A2]={ + category="lo", + description="MULTANI LETTER RA", + direction="l", + linebreak="al", + unicodeslot=0x112A2, + }, + [0x112A3]={ + category="lo", + description="MULTANI LETTER LA", + direction="l", + linebreak="al", + unicodeslot=0x112A3, + }, + [0x112A4]={ + category="lo", + description="MULTANI LETTER VA", + direction="l", + linebreak="al", + unicodeslot=0x112A4, + }, + [0x112A5]={ + category="lo", + description="MULTANI LETTER SA", + direction="l", + linebreak="al", + unicodeslot=0x112A5, + }, + [0x112A6]={ + category="lo", + description="MULTANI LETTER HA", + direction="l", + linebreak="al", + unicodeslot=0x112A6, + }, + [0x112A7]={ + category="lo", + description="MULTANI LETTER RRA", + direction="l", + linebreak="al", + unicodeslot=0x112A7, + }, + [0x112A8]={ + category="lo", + description="MULTANI LETTER RHA", + direction="l", + linebreak="al", + unicodeslot=0x112A8, + }, + [0x112A9]={ + category="po", + description="MULTANI SECTION MARK", + direction="l", + linebreak="ba", + unicodeslot=0x112A9, + }, [0x112B0]={ category="lo", description="KHUDAWADI LETTER A", @@ -153332,6 +155897,13 @@ characters.data={ linebreak="nu", unicodeslot=0x112F9, }, + [0x11300]={ + category="mn", + description="GRANTHA SIGN COMBINING ANUSVARA ABOVE", + direction="nsm", + linebreak="cm", + unicodeslot=0x11300, + }, [0x11301]={ category="mn", description="GRANTHA SIGN CANDRABINDU", @@ -153777,6 +156349,13 @@ characters.data={ linebreak="cm", unicodeslot=0x1134D, }, + [0x11350]={ + category="lo", + description="GRANTHA OM", + direction="l", + linebreak="al", + unicodeslot=0x11350, + }, [0x11357]={ category="mc", description="GRANTHA AU LENGTH MARK", @@ -155016,6 +157595,146 @@ characters.data={ linebreak="ba", unicodeslot=0x115C9, }, + [0x115CA]={ + category="po", + description="SIDDHAM SECTION MARK WITH TRIDENT AND U-SHAPED ORNAMENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115CA, + }, + [0x115CB]={ + category="po", + description="SIDDHAM SECTION MARK WITH TRIDENT AND DOTTED CRESCENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115CB, + }, + [0x115CC]={ + category="po", + description="SIDDHAM SECTION MARK WITH RAYS AND DOTTED CRESCENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115CC, + }, + [0x115CD]={ + category="po", + description="SIDDHAM SECTION MARK WITH RAYS AND DOTTED DOUBLE CRESCENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115CD, + }, + [0x115CE]={ + category="po", + description="SIDDHAM SECTION MARK WITH RAYS AND DOTTED TRIPLE CRESCENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115CE, + }, + [0x115CF]={ + category="po", + description="SIDDHAM SECTION MARK DOUBLE RING", + direction="l", + linebreak="ba", + unicodeslot=0x115CF, + }, + [0x115D0]={ + category="po", + description="SIDDHAM SECTION MARK DOUBLE RING WITH RAYS", + direction="l", + linebreak="ba", + unicodeslot=0x115D0, + }, + [0x115D1]={ + category="po", + description="SIDDHAM SECTION MARK WITH DOUBLE CRESCENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115D1, + }, + [0x115D2]={ + category="po", + description="SIDDHAM SECTION MARK WITH TRIPLE CRESCENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115D2, + }, + [0x115D3]={ + category="po", + description="SIDDHAM SECTION MARK WITH QUADRUPLE CRESCENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115D3, + }, + [0x115D4]={ + category="po", + description="SIDDHAM SECTION MARK WITH SEPTUPLE CRESCENTS", + direction="l", + linebreak="ba", + unicodeslot=0x115D4, + }, + [0x115D5]={ + category="po", + description="SIDDHAM SECTION MARK WITH CIRCLES AND RAYS", + direction="l", + linebreak="ba", + unicodeslot=0x115D5, + }, + [0x115D6]={ + category="po", + description="SIDDHAM SECTION MARK WITH CIRCLES AND TWO ENCLOSURES", + direction="l", + linebreak="ba", + unicodeslot=0x115D6, + }, + [0x115D7]={ + category="po", + description="SIDDHAM SECTION MARK WITH CIRCLES AND FOUR ENCLOSURES", + direction="l", + linebreak="ba", + unicodeslot=0x115D7, + }, + [0x115D8]={ + category="lo", + description="SIDDHAM LETTER THREE-CIRCLE ALTERNATE I", + direction="l", + linebreak="al", + unicodeslot=0x115D8, + }, + [0x115D9]={ + category="lo", + description="SIDDHAM LETTER TWO-CIRCLE ALTERNATE I", + direction="l", + linebreak="al", + unicodeslot=0x115D9, + }, + [0x115DA]={ + category="lo", + description="SIDDHAM LETTER TWO-CIRCLE ALTERNATE II", + direction="l", + linebreak="al", + unicodeslot=0x115DA, + }, + [0x115DB]={ + category="lo", + description="SIDDHAM LETTER ALTERNATE U", + direction="l", + linebreak="al", + unicodeslot=0x115DB, + }, + [0x115DC]={ + category="mn", + description="SIDDHAM VOWEL SIGN ALTERNATE U", + direction="nsm", + linebreak="cm", + unicodeslot=0x115DC, + }, + [0x115DD]={ + category="mn", + description="SIDDHAM VOWEL SIGN ALTERNATE UU", + direction="nsm", + linebreak="cm", + unicodeslot=0x115DD, + }, [0x11600]={ category="lo", description="MODI LETTER A", @@ -156034,6 +158753,406 @@ characters.data={ linebreak="nu", unicodeslot=0x116C9, }, + [0x11700]={ + category="lo", + description="AHOM LETTER KA", + direction="l", + linebreak="sa", + unicodeslot=0x11700, + }, + [0x11701]={ + category="lo", + description="AHOM LETTER KHA", + direction="l", + linebreak="sa", + unicodeslot=0x11701, + }, + [0x11702]={ + category="lo", + description="AHOM LETTER NGA", + direction="l", + linebreak="sa", + unicodeslot=0x11702, + }, + [0x11703]={ + category="lo", + description="AHOM LETTER NA", + direction="l", + linebreak="sa", + unicodeslot=0x11703, + }, + [0x11704]={ + category="lo", + description="AHOM LETTER TA", + direction="l", + linebreak="sa", + unicodeslot=0x11704, + }, + [0x11705]={ + category="lo", + description="AHOM LETTER ALTERNATE TA", + direction="l", + linebreak="sa", + unicodeslot=0x11705, + }, + [0x11706]={ + category="lo", + description="AHOM LETTER PA", + direction="l", + linebreak="sa", + unicodeslot=0x11706, + }, + [0x11707]={ + category="lo", + description="AHOM LETTER PHA", + direction="l", + linebreak="sa", + unicodeslot=0x11707, + }, + [0x11708]={ + category="lo", + description="AHOM LETTER BA", + direction="l", + linebreak="sa", + unicodeslot=0x11708, + }, + [0x11709]={ + category="lo", + description="AHOM LETTER MA", + direction="l", + linebreak="sa", + unicodeslot=0x11709, + }, + [0x1170A]={ + category="lo", + description="AHOM LETTER JA", + direction="l", + linebreak="sa", + unicodeslot=0x1170A, + }, + [0x1170B]={ + category="lo", + description="AHOM LETTER CHA", + direction="l", + linebreak="sa", + unicodeslot=0x1170B, + }, + [0x1170C]={ + category="lo", + description="AHOM LETTER THA", + direction="l", + linebreak="sa", + unicodeslot=0x1170C, + }, + [0x1170D]={ + category="lo", + description="AHOM LETTER RA", + direction="l", + linebreak="sa", + unicodeslot=0x1170D, + }, + [0x1170E]={ + category="lo", + description="AHOM LETTER LA", + direction="l", + linebreak="sa", + unicodeslot=0x1170E, + }, + [0x1170F]={ + category="lo", + description="AHOM LETTER SA", + direction="l", + linebreak="sa", + unicodeslot=0x1170F, + }, + [0x11710]={ + category="lo", + description="AHOM LETTER NYA", + direction="l", + linebreak="sa", + unicodeslot=0x11710, + }, + [0x11711]={ + category="lo", + description="AHOM LETTER HA", + direction="l", + linebreak="sa", + unicodeslot=0x11711, + }, + [0x11712]={ + category="lo", + description="AHOM LETTER A", + direction="l", + linebreak="sa", + unicodeslot=0x11712, + }, + [0x11713]={ + category="lo", + description="AHOM LETTER DA", + direction="l", + linebreak="sa", + unicodeslot=0x11713, + }, + [0x11714]={ + category="lo", + description="AHOM LETTER DHA", + direction="l", + linebreak="sa", + unicodeslot=0x11714, + }, + [0x11715]={ + category="lo", + description="AHOM LETTER GA", + direction="l", + linebreak="sa", + unicodeslot=0x11715, + }, + [0x11716]={ + category="lo", + description="AHOM LETTER ALTERNATE GA", + direction="l", + linebreak="sa", + unicodeslot=0x11716, + }, + [0x11717]={ + category="lo", + description="AHOM LETTER GHA", + direction="l", + linebreak="sa", + unicodeslot=0x11717, + }, + [0x11718]={ + category="lo", + description="AHOM LETTER BHA", + direction="l", + linebreak="sa", + unicodeslot=0x11718, + }, + [0x11719]={ + category="lo", + description="AHOM LETTER JHA", + direction="l", + linebreak="sa", + unicodeslot=0x11719, + }, + [0x1171D]={ + category="mn", + description="AHOM CONSONANT SIGN MEDIAL LA", + direction="nsm", + linebreak="sa", + unicodeslot=0x1171D, + }, + [0x1171E]={ + category="mn", + description="AHOM CONSONANT SIGN MEDIAL RA", + direction="nsm", + linebreak="sa", + unicodeslot=0x1171E, + }, + [0x1171F]={ + category="mn", + description="AHOM CONSONANT SIGN MEDIAL LIGATING RA", + direction="nsm", + linebreak="sa", + unicodeslot=0x1171F, + }, + [0x11720]={ + category="mc", + description="AHOM VOWEL SIGN A", + direction="l", + linebreak="sa", + unicodeslot=0x11720, + }, + [0x11721]={ + category="mc", + description="AHOM VOWEL SIGN AA", + direction="l", + linebreak="sa", + unicodeslot=0x11721, + }, + [0x11722]={ + category="mn", + description="AHOM VOWEL SIGN I", + direction="nsm", + linebreak="sa", + unicodeslot=0x11722, + }, + [0x11723]={ + category="mn", + description="AHOM VOWEL SIGN II", + direction="nsm", + linebreak="sa", + unicodeslot=0x11723, + }, + [0x11724]={ + category="mn", + description="AHOM VOWEL SIGN U", + direction="nsm", + linebreak="sa", + unicodeslot=0x11724, + }, + [0x11725]={ + category="mn", + description="AHOM VOWEL SIGN UU", + direction="nsm", + linebreak="sa", + unicodeslot=0x11725, + }, + [0x11726]={ + category="mc", + description="AHOM VOWEL SIGN E", + direction="l", + linebreak="sa", + unicodeslot=0x11726, + }, + [0x11727]={ + category="mn", + description="AHOM VOWEL SIGN AW", + direction="nsm", + linebreak="sa", + unicodeslot=0x11727, + }, + [0x11728]={ + category="mn", + description="AHOM VOWEL SIGN O", + direction="nsm", + linebreak="sa", + unicodeslot=0x11728, + }, + [0x11729]={ + category="mn", + description="AHOM VOWEL SIGN AI", + direction="nsm", + linebreak="sa", + unicodeslot=0x11729, + }, + [0x1172A]={ + category="mn", + description="AHOM VOWEL SIGN AM", + direction="nsm", + linebreak="sa", + unicodeslot=0x1172A, + }, + [0x1172B]={ + category="mn", + combining=0x9, + description="AHOM SIGN KILLER", + direction="nsm", + linebreak="sa", + unicodeslot=0x1172B, + }, + [0x11730]={ + category="nd", + description="AHOM DIGIT ZERO", + direction="l", + linebreak="nu", + unicodeslot=0x11730, + }, + [0x11731]={ + category="nd", + description="AHOM DIGIT ONE", + direction="l", + linebreak="nu", + unicodeslot=0x11731, + }, + [0x11732]={ + category="nd", + description="AHOM DIGIT TWO", + direction="l", + linebreak="nu", + unicodeslot=0x11732, + }, + [0x11733]={ + category="nd", + description="AHOM DIGIT THREE", + direction="l", + linebreak="nu", + unicodeslot=0x11733, + }, + [0x11734]={ + category="nd", + description="AHOM DIGIT FOUR", + direction="l", + linebreak="nu", + unicodeslot=0x11734, + }, + [0x11735]={ + category="nd", + description="AHOM DIGIT FIVE", + direction="l", + linebreak="nu", + unicodeslot=0x11735, + }, + [0x11736]={ + category="nd", + description="AHOM DIGIT SIX", + direction="l", + linebreak="nu", + unicodeslot=0x11736, + }, + [0x11737]={ + category="nd", + description="AHOM DIGIT SEVEN", + direction="l", + linebreak="nu", + unicodeslot=0x11737, + }, + [0x11738]={ + category="nd", + description="AHOM DIGIT EIGHT", + direction="l", + linebreak="nu", + unicodeslot=0x11738, + }, + [0x11739]={ + category="nd", + description="AHOM DIGIT NINE", + direction="l", + linebreak="nu", + unicodeslot=0x11739, + }, + [0x1173A]={ + category="no", + description="AHOM NUMBER TEN", + direction="l", + linebreak="sa", + unicodeslot=0x1173A, + }, + [0x1173B]={ + category="no", + description="AHOM NUMBER TWENTY", + direction="l", + linebreak="sa", + unicodeslot=0x1173B, + }, + [0x1173C]={ + category="po", + description="AHOM SIGN SMALL SECTION", + direction="l", + linebreak="ba", + unicodeslot=0x1173C, + }, + [0x1173D]={ + category="po", + description="AHOM SIGN SECTION", + direction="l", + linebreak="ba", + unicodeslot=0x1173D, + }, + [0x1173E]={ + category="po", + description="AHOM SIGN RULAI", + direction="l", + linebreak="ba", + unicodeslot=0x1173E, + }, + [0x1173F]={ + category="so", + description="AHOM SYMBOL VI", + direction="l", + linebreak="sa", + unicodeslot=0x1173F, + }, [0x118A0]={ category="lu", description="WARANG CITI CAPITAL LETTER NGAA", @@ -163470,6 +166589,13 @@ characters.data={ linebreak="al", unicodeslot=0x12398, }, + [0x12399]={ + category="lo", + description="CUNEIFORM SIGN U U", + direction="l", + linebreak="al", + unicodeslot=0x12399, + }, [0x12400]={ category="nl", description="CUNEIFORM NUMERIC SIGN TWO ASH", @@ -164282,6 +167408,1378 @@ characters.data={ linebreak="ba", unicodeslot=0x12474, }, + [0x12480]={ + category="lo", + description="CUNEIFORM SIGN AB TIMES NUN TENU", + direction="l", + linebreak="al", + unicodeslot=0x12480, + }, + [0x12481]={ + category="lo", + description="CUNEIFORM SIGN AB TIMES SHU2", + direction="l", + linebreak="al", + unicodeslot=0x12481, + }, + [0x12482]={ + category="lo", + description="CUNEIFORM SIGN AD TIMES ESH2", + direction="l", + linebreak="al", + unicodeslot=0x12482, + }, + [0x12483]={ + category="lo", + description="CUNEIFORM SIGN BAD TIMES DISH TENU", + direction="l", + linebreak="al", + unicodeslot=0x12483, + }, + [0x12484]={ + category="lo", + description="CUNEIFORM SIGN BAHAR2 TIMES AB2", + direction="l", + linebreak="al", + unicodeslot=0x12484, + }, + [0x12485]={ + category="lo", + description="CUNEIFORM SIGN BAHAR2 TIMES NI", + direction="l", + linebreak="al", + unicodeslot=0x12485, + }, + [0x12486]={ + category="lo", + description="CUNEIFORM SIGN BAHAR2 TIMES ZA", + direction="l", + linebreak="al", + unicodeslot=0x12486, + }, + [0x12487]={ + category="lo", + description="CUNEIFORM SIGN BU OVER BU TIMES NA2", + direction="l", + linebreak="al", + unicodeslot=0x12487, + }, + [0x12488]={ + category="lo", + description="CUNEIFORM SIGN DA TIMES TAK4", + direction="l", + linebreak="al", + unicodeslot=0x12488, + }, + [0x12489]={ + category="lo", + description="CUNEIFORM SIGN DAG TIMES KUR", + direction="l", + linebreak="al", + unicodeslot=0x12489, + }, + [0x1248A]={ + category="lo", + description="CUNEIFORM SIGN DIM TIMES IGI", + direction="l", + linebreak="al", + unicodeslot=0x1248A, + }, + [0x1248B]={ + category="lo", + description="CUNEIFORM SIGN DIM TIMES U U U", + direction="l", + linebreak="al", + unicodeslot=0x1248B, + }, + [0x1248C]={ + category="lo", + description="CUNEIFORM SIGN DIM2 TIMES UD", + direction="l", + linebreak="al", + unicodeslot=0x1248C, + }, + [0x1248D]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES ANSHE", + direction="l", + linebreak="al", + unicodeslot=0x1248D, + }, + [0x1248E]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES ASH", + direction="l", + linebreak="al", + unicodeslot=0x1248E, + }, + [0x1248F]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES ASH AT LEFT", + direction="l", + linebreak="al", + unicodeslot=0x1248F, + }, + [0x12490]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES DIN", + direction="l", + linebreak="al", + unicodeslot=0x12490, + }, + [0x12491]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES DUN", + direction="l", + linebreak="al", + unicodeslot=0x12491, + }, + [0x12492]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES ERIN2", + direction="l", + linebreak="al", + unicodeslot=0x12492, + }, + [0x12493]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES GA", + direction="l", + linebreak="al", + unicodeslot=0x12493, + }, + [0x12494]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES GI", + direction="l", + linebreak="al", + unicodeslot=0x12494, + }, + [0x12495]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES GIR2 GUNU", + direction="l", + linebreak="al", + unicodeslot=0x12495, + }, + [0x12496]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES GISH", + direction="l", + linebreak="al", + unicodeslot=0x12496, + }, + [0x12497]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES HA", + direction="l", + linebreak="al", + unicodeslot=0x12497, + }, + [0x12498]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES HI", + direction="l", + linebreak="al", + unicodeslot=0x12498, + }, + [0x12499]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES IGI GUNU", + direction="l", + linebreak="al", + unicodeslot=0x12499, + }, + [0x1249A]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES KASKAL", + direction="l", + linebreak="al", + unicodeslot=0x1249A, + }, + [0x1249B]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES KUR", + direction="l", + linebreak="al", + unicodeslot=0x1249B, + }, + [0x1249C]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES KUSHU2", + direction="l", + linebreak="al", + unicodeslot=0x1249C, + }, + [0x1249D]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES KUSHU2 PLUS KASKAL", + direction="l", + linebreak="al", + unicodeslot=0x1249D, + }, + [0x1249E]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES LAK-020", + direction="l", + linebreak="al", + unicodeslot=0x1249E, + }, + [0x1249F]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES LAM", + direction="l", + linebreak="al", + unicodeslot=0x1249F, + }, + [0x124A0]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES LAM TIMES KUR", + direction="l", + linebreak="al", + unicodeslot=0x124A0, + }, + [0x124A1]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES LUH PLUS GISH", + direction="l", + linebreak="al", + unicodeslot=0x124A1, + }, + [0x124A2]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES MASH", + direction="l", + linebreak="al", + unicodeslot=0x124A2, + }, + [0x124A3]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES MES", + direction="l", + linebreak="al", + unicodeslot=0x124A3, + }, + [0x124A4]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES MI", + direction="l", + linebreak="al", + unicodeslot=0x124A4, + }, + [0x124A5]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES NI", + direction="l", + linebreak="al", + unicodeslot=0x124A5, + }, + [0x124A6]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES PI", + direction="l", + linebreak="al", + unicodeslot=0x124A6, + }, + [0x124A7]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES SHE", + direction="l", + linebreak="al", + unicodeslot=0x124A7, + }, + [0x124A8]={ + category="lo", + description="CUNEIFORM SIGN DUG TIMES SI GUNU", + direction="l", + linebreak="al", + unicodeslot=0x124A8, + }, + [0x124A9]={ + category="lo", + description="CUNEIFORM SIGN E2 TIMES KUR", + direction="l", + linebreak="al", + unicodeslot=0x124A9, + }, + [0x124AA]={ + category="lo", + description="CUNEIFORM SIGN E2 TIMES PAP", + direction="l", + linebreak="al", + unicodeslot=0x124AA, + }, + [0x124AB]={ + category="lo", + description="CUNEIFORM SIGN ERIN2 X", + direction="l", + linebreak="al", + unicodeslot=0x124AB, + }, + [0x124AC]={ + category="lo", + description="CUNEIFORM SIGN ESH2 CROSSING ESH2", + direction="l", + linebreak="al", + unicodeslot=0x124AC, + }, + [0x124AD]={ + category="lo", + description="CUNEIFORM SIGN EZEN SHESHIG TIMES ASH", + direction="l", + linebreak="al", + unicodeslot=0x124AD, + }, + [0x124AE]={ + category="lo", + description="CUNEIFORM SIGN EZEN SHESHIG TIMES HI", + direction="l", + linebreak="al", + unicodeslot=0x124AE, + }, + [0x124AF]={ + category="lo", + description="CUNEIFORM SIGN EZEN SHESHIG TIMES IGI GUNU", + direction="l", + linebreak="al", + unicodeslot=0x124AF, + }, + [0x124B0]={ + category="lo", + description="CUNEIFORM SIGN EZEN SHESHIG TIMES LA", + direction="l", + linebreak="al", + unicodeslot=0x124B0, + }, + [0x124B1]={ + category="lo", + description="CUNEIFORM SIGN EZEN SHESHIG TIMES LAL", + direction="l", + linebreak="al", + unicodeslot=0x124B1, + }, + [0x124B2]={ + category="lo", + description="CUNEIFORM SIGN EZEN SHESHIG TIMES ME", + direction="l", + linebreak="al", + unicodeslot=0x124B2, + }, + [0x124B3]={ + category="lo", + description="CUNEIFORM SIGN EZEN SHESHIG TIMES MES", + direction="l", + linebreak="al", + unicodeslot=0x124B3, + }, + [0x124B4]={ + category="lo", + description="CUNEIFORM SIGN EZEN SHESHIG TIMES SU", + direction="l", + linebreak="al", + unicodeslot=0x124B4, + }, + [0x124B5]={ + category="lo", + description="CUNEIFORM SIGN EZEN TIMES SU", + direction="l", + linebreak="al", + unicodeslot=0x124B5, + }, + [0x124B6]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES BAHAR2", + direction="l", + linebreak="al", + unicodeslot=0x124B6, + }, + [0x124B7]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES DIM GUNU", + direction="l", + linebreak="al", + unicodeslot=0x124B7, + }, + [0x124B8]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES DUG TIMES IGI GUNU", + direction="l", + linebreak="al", + unicodeslot=0x124B8, + }, + [0x124B9]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES DUG TIMES KASKAL", + direction="l", + linebreak="al", + unicodeslot=0x124B9, + }, + [0x124BA]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES EREN", + direction="l", + linebreak="al", + unicodeslot=0x124BA, + }, + [0x124BB]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES GA", + direction="l", + linebreak="al", + unicodeslot=0x124BB, + }, + [0x124BC]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES GAR PLUS DI", + direction="l", + linebreak="al", + unicodeslot=0x124BC, + }, + [0x124BD]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES GAR PLUS NE", + direction="l", + linebreak="al", + unicodeslot=0x124BD, + }, + [0x124BE]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES HA PLUS A", + direction="l", + linebreak="al", + unicodeslot=0x124BE, + }, + [0x124BF]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES KUSHU2 PLUS KASKAL", + direction="l", + linebreak="al", + unicodeslot=0x124BF, + }, + [0x124C0]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES LAM", + direction="l", + linebreak="al", + unicodeslot=0x124C0, + }, + [0x124C1]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES LAM TIMES KUR", + direction="l", + linebreak="al", + unicodeslot=0x124C1, + }, + [0x124C2]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES LUH", + direction="l", + linebreak="al", + unicodeslot=0x124C2, + }, + [0x124C3]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES MUSH", + direction="l", + linebreak="al", + unicodeslot=0x124C3, + }, + [0x124C4]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES NE", + direction="l", + linebreak="al", + unicodeslot=0x124C4, + }, + [0x124C5]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES NE PLUS E2", + direction="l", + linebreak="al", + unicodeslot=0x124C5, + }, + [0x124C6]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES NE PLUS GI", + direction="l", + linebreak="al", + unicodeslot=0x124C6, + }, + [0x124C7]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES SHIM", + direction="l", + linebreak="al", + unicodeslot=0x124C7, + }, + [0x124C8]={ + category="lo", + description="CUNEIFORM SIGN GA2 TIMES ZIZ2", + direction="l", + linebreak="al", + unicodeslot=0x124C8, + }, + [0x124C9]={ + category="lo", + description="CUNEIFORM SIGN GABA ROTATED NINETY DEGREES", + direction="l", + linebreak="al", + unicodeslot=0x124C9, + }, + [0x124CA]={ + category="lo", + description="CUNEIFORM SIGN GESHTIN TIMES U", + direction="l", + linebreak="al", + unicodeslot=0x124CA, + }, + [0x124CB]={ + category="lo", + description="CUNEIFORM SIGN GISH TIMES GISH CROSSING GISH", + direction="l", + linebreak="al", + unicodeslot=0x124CB, + }, + [0x124CC]={ + category="lo", + description="CUNEIFORM SIGN GU2 TIMES IGI GUNU", + direction="l", + linebreak="al", + unicodeslot=0x124CC, + }, + [0x124CD]={ + category="lo", + description="CUNEIFORM SIGN GUD PLUS GISH TIMES TAK4", + direction="l", + linebreak="al", + unicodeslot=0x124CD, + }, + [0x124CE]={ + category="lo", + description="CUNEIFORM SIGN HA TENU GUNU", + direction="l", + linebreak="al", + unicodeslot=0x124CE, + }, + [0x124CF]={ + category="lo", + description="CUNEIFORM SIGN HI TIMES ASH OVER HI TIMES ASH", + direction="l", + linebreak="al", + unicodeslot=0x124CF, + }, + [0x124D0]={ + category="lo", + description="CUNEIFORM SIGN KA TIMES BU", + direction="l", + linebreak="al", + unicodeslot=0x124D0, + }, + [0x124D1]={ + category="lo", + description="CUNEIFORM SIGN KA TIMES KA", + direction="l", + linebreak="al", + unicodeslot=0x124D1, + }, + [0x124D2]={ + category="lo", + description="CUNEIFORM SIGN KA TIMES U U U", + direction="l", + linebreak="al", + unicodeslot=0x124D2, + }, + [0x124D3]={ + category="lo", + description="CUNEIFORM SIGN KA TIMES UR", + direction="l", + linebreak="al", + unicodeslot=0x124D3, + }, + [0x124D4]={ + category="lo", + description="CUNEIFORM SIGN LAGAB TIMES ZU OVER ZU", + direction="l", + linebreak="al", + unicodeslot=0x124D4, + }, + [0x124D5]={ + category="lo", + description="CUNEIFORM SIGN LAK-003", + direction="l", + linebreak="al", + unicodeslot=0x124D5, + }, + [0x124D6]={ + category="lo", + description="CUNEIFORM SIGN LAK-021", + direction="l", + linebreak="al", + unicodeslot=0x124D6, + }, + [0x124D7]={ + category="lo", + description="CUNEIFORM SIGN LAK-025", + direction="l", + linebreak="al", + unicodeslot=0x124D7, + }, + [0x124D8]={ + category="lo", + description="CUNEIFORM SIGN LAK-030", + direction="l", + linebreak="al", + unicodeslot=0x124D8, + }, + [0x124D9]={ + category="lo", + description="CUNEIFORM SIGN LAK-050", + direction="l", + linebreak="al", + unicodeslot=0x124D9, + }, + [0x124DA]={ + category="lo", + description="CUNEIFORM SIGN LAK-051", + direction="l", + linebreak="al", + unicodeslot=0x124DA, + }, + [0x124DB]={ + category="lo", + description="CUNEIFORM SIGN LAK-062", + direction="l", + linebreak="al", + unicodeslot=0x124DB, + }, + [0x124DC]={ + category="lo", + description="CUNEIFORM SIGN LAK-079 OVER LAK-079 GUNU", + direction="l", + linebreak="al", + unicodeslot=0x124DC, + }, + [0x124DD]={ + category="lo", + description="CUNEIFORM SIGN LAK-080", + direction="l", + linebreak="al", + unicodeslot=0x124DD, + }, + [0x124DE]={ + category="lo", + description="CUNEIFORM SIGN LAK-081 OVER LAK-081", + direction="l", + linebreak="al", + unicodeslot=0x124DE, + }, + [0x124DF]={ + category="lo", + description="CUNEIFORM SIGN LAK-092", + direction="l", + linebreak="al", + unicodeslot=0x124DF, + }, + [0x124E0]={ + category="lo", + description="CUNEIFORM SIGN LAK-130", + direction="l", + linebreak="al", + unicodeslot=0x124E0, + }, + [0x124E1]={ + category="lo", + description="CUNEIFORM SIGN LAK-142", + direction="l", + linebreak="al", + unicodeslot=0x124E1, + }, + [0x124E2]={ + category="lo", + description="CUNEIFORM SIGN LAK-210", + direction="l", + linebreak="al", + unicodeslot=0x124E2, + }, + [0x124E3]={ + category="lo", + description="CUNEIFORM SIGN LAK-219", + direction="l", + linebreak="al", + unicodeslot=0x124E3, + }, + [0x124E4]={ + category="lo", + description="CUNEIFORM SIGN LAK-220", + direction="l", + linebreak="al", + unicodeslot=0x124E4, + }, + [0x124E5]={ + category="lo", + description="CUNEIFORM SIGN LAK-225", + direction="l", + linebreak="al", + unicodeslot=0x124E5, + }, + [0x124E6]={ + category="lo", + description="CUNEIFORM SIGN LAK-228", + direction="l", + linebreak="al", + unicodeslot=0x124E6, + }, + [0x124E7]={ + category="lo", + description="CUNEIFORM SIGN LAK-238", + direction="l", + linebreak="al", + unicodeslot=0x124E7, + }, + [0x124E8]={ + category="lo", + description="CUNEIFORM SIGN LAK-265", + direction="l", + linebreak="al", + unicodeslot=0x124E8, + }, + [0x124E9]={ + category="lo", + description="CUNEIFORM SIGN LAK-266", + direction="l", + linebreak="al", + unicodeslot=0x124E9, + }, + [0x124EA]={ + category="lo", + description="CUNEIFORM SIGN LAK-343", + direction="l", + linebreak="al", + unicodeslot=0x124EA, + }, + [0x124EB]={ + category="lo", + description="CUNEIFORM SIGN LAK-347", + direction="l", + linebreak="al", + unicodeslot=0x124EB, + }, + [0x124EC]={ + category="lo", + description="CUNEIFORM SIGN LAK-348", + direction="l", + linebreak="al", + unicodeslot=0x124EC, + }, + [0x124ED]={ + category="lo", + description="CUNEIFORM SIGN LAK-383", + direction="l", + linebreak="al", + unicodeslot=0x124ED, + }, + [0x124EE]={ + category="lo", + description="CUNEIFORM SIGN LAK-384", + direction="l", + linebreak="al", + unicodeslot=0x124EE, + }, + [0x124EF]={ + category="lo", + description="CUNEIFORM SIGN LAK-390", + direction="l", + linebreak="al", + unicodeslot=0x124EF, + }, + [0x124F0]={ + category="lo", + description="CUNEIFORM SIGN LAK-441", + direction="l", + linebreak="al", + unicodeslot=0x124F0, + }, + [0x124F1]={ + category="lo", + description="CUNEIFORM SIGN LAK-449", + direction="l", + linebreak="al", + unicodeslot=0x124F1, + }, + [0x124F2]={ + category="lo", + description="CUNEIFORM SIGN LAK-449 TIMES GU", + direction="l", + linebreak="al", + unicodeslot=0x124F2, + }, + [0x124F3]={ + category="lo", + description="CUNEIFORM SIGN LAK-449 TIMES IGI", + direction="l", + linebreak="al", + unicodeslot=0x124F3, + }, + [0x124F4]={ + category="lo", + description="CUNEIFORM SIGN LAK-449 TIMES PAP PLUS LU3", + direction="l", + linebreak="al", + unicodeslot=0x124F4, + }, + [0x124F5]={ + category="lo", + description="CUNEIFORM SIGN LAK-449 TIMES PAP PLUS PAP PLUS LU3", + direction="l", + linebreak="al", + unicodeslot=0x124F5, + }, + [0x124F6]={ + category="lo", + description="CUNEIFORM SIGN LAK-449 TIMES U2 PLUS BA", + direction="l", + linebreak="al", + unicodeslot=0x124F6, + }, + [0x124F7]={ + category="lo", + description="CUNEIFORM SIGN LAK-450", + direction="l", + linebreak="al", + unicodeslot=0x124F7, + }, + [0x124F8]={ + category="lo", + description="CUNEIFORM SIGN LAK-457", + direction="l", + linebreak="al", + unicodeslot=0x124F8, + }, + [0x124F9]={ + category="lo", + description="CUNEIFORM SIGN LAK-470", + direction="l", + linebreak="al", + unicodeslot=0x124F9, + }, + [0x124FA]={ + category="lo", + description="CUNEIFORM SIGN LAK-483", + direction="l", + linebreak="al", + unicodeslot=0x124FA, + }, + [0x124FB]={ + category="lo", + description="CUNEIFORM SIGN LAK-490", + direction="l", + linebreak="al", + unicodeslot=0x124FB, + }, + [0x124FC]={ + category="lo", + description="CUNEIFORM SIGN LAK-492", + direction="l", + linebreak="al", + unicodeslot=0x124FC, + }, + [0x124FD]={ + category="lo", + description="CUNEIFORM SIGN LAK-493", + direction="l", + linebreak="al", + unicodeslot=0x124FD, + }, + [0x124FE]={ + category="lo", + description="CUNEIFORM SIGN LAK-495", + direction="l", + linebreak="al", + unicodeslot=0x124FE, + }, + [0x124FF]={ + category="lo", + description="CUNEIFORM SIGN LAK-550", + direction="l", + linebreak="al", + unicodeslot=0x124FF, + }, + [0x12500]={ + category="lo", + description="CUNEIFORM SIGN LAK-608", + direction="l", + linebreak="al", + unicodeslot=0x12500, + }, + [0x12501]={ + category="lo", + description="CUNEIFORM SIGN LAK-617", + direction="l", + linebreak="al", + unicodeslot=0x12501, + }, + [0x12502]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES ASH", + direction="l", + linebreak="al", + unicodeslot=0x12502, + }, + [0x12503]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES BAD", + direction="l", + linebreak="al", + unicodeslot=0x12503, + }, + [0x12504]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES DUN3 GUNU GUNU", + direction="l", + linebreak="al", + unicodeslot=0x12504, + }, + [0x12505]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES KU3", + direction="l", + linebreak="al", + unicodeslot=0x12505, + }, + [0x12506]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES LA", + direction="l", + linebreak="al", + unicodeslot=0x12506, + }, + [0x12507]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES TAR", + direction="l", + linebreak="al", + unicodeslot=0x12507, + }, + [0x12508]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES TE", + direction="l", + linebreak="al", + unicodeslot=0x12508, + }, + [0x12509]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES U2", + direction="l", + linebreak="al", + unicodeslot=0x12509, + }, + [0x1250A]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES UD", + direction="l", + linebreak="al", + unicodeslot=0x1250A, + }, + [0x1250B]={ + category="lo", + description="CUNEIFORM SIGN LAK-617 TIMES URUDA", + direction="l", + linebreak="al", + unicodeslot=0x1250B, + }, + [0x1250C]={ + category="lo", + description="CUNEIFORM SIGN LAK-636", + direction="l", + linebreak="al", + unicodeslot=0x1250C, + }, + [0x1250D]={ + category="lo", + description="CUNEIFORM SIGN LAK-648", + direction="l", + linebreak="al", + unicodeslot=0x1250D, + }, + [0x1250E]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES DUB", + direction="l", + linebreak="al", + unicodeslot=0x1250E, + }, + [0x1250F]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES GA", + direction="l", + linebreak="al", + unicodeslot=0x1250F, + }, + [0x12510]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES IGI", + direction="l", + linebreak="al", + unicodeslot=0x12510, + }, + [0x12511]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES IGI GUNU", + direction="l", + linebreak="al", + unicodeslot=0x12511, + }, + [0x12512]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES NI", + direction="l", + linebreak="al", + unicodeslot=0x12512, + }, + [0x12513]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES PAP PLUS PAP PLUS LU3", + direction="l", + linebreak="al", + unicodeslot=0x12513, + }, + [0x12514]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES SHESH PLUS KI", + direction="l", + linebreak="al", + unicodeslot=0x12514, + }, + [0x12515]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES UD", + direction="l", + linebreak="al", + unicodeslot=0x12515, + }, + [0x12516]={ + category="lo", + description="CUNEIFORM SIGN LAK-648 TIMES URUDA", + direction="l", + linebreak="al", + unicodeslot=0x12516, + }, + [0x12517]={ + category="lo", + description="CUNEIFORM SIGN LAK-724", + direction="l", + linebreak="al", + unicodeslot=0x12517, + }, + [0x12518]={ + category="lo", + description="CUNEIFORM SIGN LAK-749", + direction="l", + linebreak="al", + unicodeslot=0x12518, + }, + [0x12519]={ + category="lo", + description="CUNEIFORM SIGN LU2 GUNU TIMES ASH", + direction="l", + linebreak="al", + unicodeslot=0x12519, + }, + [0x1251A]={ + category="lo", + description="CUNEIFORM SIGN LU2 TIMES DISH", + direction="l", + linebreak="al", + unicodeslot=0x1251A, + }, + [0x1251B]={ + category="lo", + description="CUNEIFORM SIGN LU2 TIMES HAL", + direction="l", + linebreak="al", + unicodeslot=0x1251B, + }, + [0x1251C]={ + category="lo", + description="CUNEIFORM SIGN LU2 TIMES PAP", + direction="l", + linebreak="al", + unicodeslot=0x1251C, + }, + [0x1251D]={ + category="lo", + description="CUNEIFORM SIGN LU2 TIMES PAP PLUS PAP PLUS LU3", + direction="l", + linebreak="al", + unicodeslot=0x1251D, + }, + [0x1251E]={ + category="lo", + description="CUNEIFORM SIGN LU2 TIMES TAK4", + direction="l", + linebreak="al", + unicodeslot=0x1251E, + }, + [0x1251F]={ + category="lo", + description="CUNEIFORM SIGN MI PLUS ZA7", + direction="l", + linebreak="al", + unicodeslot=0x1251F, + }, + [0x12520]={ + category="lo", + description="CUNEIFORM SIGN MUSH OVER MUSH TIMES GA", + direction="l", + linebreak="al", + unicodeslot=0x12520, + }, + [0x12521]={ + category="lo", + description="CUNEIFORM SIGN MUSH OVER MUSH TIMES KAK", + direction="l", + linebreak="al", + unicodeslot=0x12521, + }, + [0x12522]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES DIM GUNU", + direction="l", + linebreak="al", + unicodeslot=0x12522, + }, + [0x12523]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES GISH", + direction="l", + linebreak="al", + unicodeslot=0x12523, + }, + [0x12524]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES GUL", + direction="l", + linebreak="al", + unicodeslot=0x12524, + }, + [0x12525]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES HI", + direction="l", + linebreak="al", + unicodeslot=0x12525, + }, + [0x12526]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES KESH2", + direction="l", + linebreak="al", + unicodeslot=0x12526, + }, + [0x12527]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES LAK-050", + direction="l", + linebreak="al", + unicodeslot=0x12527, + }, + [0x12528]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES MASH", + direction="l", + linebreak="al", + unicodeslot=0x12528, + }, + [0x12529]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES PAP PLUS PAP", + direction="l", + linebreak="al", + unicodeslot=0x12529, + }, + [0x1252A]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES U", + direction="l", + linebreak="al", + unicodeslot=0x1252A, + }, + [0x1252B]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES U PLUS U", + direction="l", + linebreak="al", + unicodeslot=0x1252B, + }, + [0x1252C]={ + category="lo", + description="CUNEIFORM SIGN NINDA2 TIMES URUDA", + direction="l", + linebreak="al", + unicodeslot=0x1252C, + }, + [0x1252D]={ + category="lo", + description="CUNEIFORM SIGN SAG GUNU TIMES HA", + direction="l", + linebreak="al", + unicodeslot=0x1252D, + }, + [0x1252E]={ + category="lo", + description="CUNEIFORM SIGN SAG TIMES EN", + direction="l", + linebreak="al", + unicodeslot=0x1252E, + }, + [0x1252F]={ + category="lo", + description="CUNEIFORM SIGN SAG TIMES SHE AT LEFT", + direction="l", + linebreak="al", + unicodeslot=0x1252F, + }, + [0x12530]={ + category="lo", + description="CUNEIFORM SIGN SAG TIMES TAK4", + direction="l", + linebreak="al", + unicodeslot=0x12530, + }, + [0x12531]={ + category="lo", + description="CUNEIFORM SIGN SHA6 TENU", + direction="l", + linebreak="al", + unicodeslot=0x12531, + }, + [0x12532]={ + category="lo", + description="CUNEIFORM SIGN SHE OVER SHE", + direction="l", + linebreak="al", + unicodeslot=0x12532, + }, + [0x12533]={ + category="lo", + description="CUNEIFORM SIGN SHE PLUS HUB2", + direction="l", + linebreak="al", + unicodeslot=0x12533, + }, + [0x12534]={ + category="lo", + description="CUNEIFORM SIGN SHE PLUS NAM2", + direction="l", + linebreak="al", + unicodeslot=0x12534, + }, + [0x12535]={ + category="lo", + description="CUNEIFORM SIGN SHE PLUS SAR", + direction="l", + linebreak="al", + unicodeslot=0x12535, + }, + [0x12536]={ + category="lo", + description="CUNEIFORM SIGN SHU2 PLUS DUG TIMES NI", + direction="l", + linebreak="al", + unicodeslot=0x12536, + }, + [0x12537]={ + category="lo", + description="CUNEIFORM SIGN SHU2 PLUS E2 TIMES AN", + direction="l", + linebreak="al", + unicodeslot=0x12537, + }, + [0x12538]={ + category="lo", + description="CUNEIFORM SIGN SI TIMES TAK4", + direction="l", + linebreak="al", + unicodeslot=0x12538, + }, + [0x12539]={ + category="lo", + description="CUNEIFORM SIGN TAK4 PLUS SAG", + direction="l", + linebreak="al", + unicodeslot=0x12539, + }, + [0x1253A]={ + category="lo", + description="CUNEIFORM SIGN TUM TIMES GAN2 TENU", + direction="l", + linebreak="al", + unicodeslot=0x1253A, + }, + [0x1253B]={ + category="lo", + description="CUNEIFORM SIGN TUM TIMES THREE DISH", + direction="l", + linebreak="al", + unicodeslot=0x1253B, + }, + [0x1253C]={ + category="lo", + description="CUNEIFORM SIGN UR2 INVERTED", + direction="l", + linebreak="al", + unicodeslot=0x1253C, + }, + [0x1253D]={ + category="lo", + description="CUNEIFORM SIGN UR2 TIMES UD", + direction="l", + linebreak="al", + unicodeslot=0x1253D, + }, + [0x1253E]={ + category="lo", + description="CUNEIFORM SIGN URU TIMES DARA3", + direction="l", + linebreak="al", + unicodeslot=0x1253E, + }, + [0x1253F]={ + category="lo", + description="CUNEIFORM SIGN URU TIMES LAK-668", + direction="l", + linebreak="al", + unicodeslot=0x1253F, + }, + [0x12540]={ + category="lo", + description="CUNEIFORM SIGN URU TIMES LU3", + direction="l", + linebreak="al", + unicodeslot=0x12540, + }, + [0x12541]={ + category="lo", + description="CUNEIFORM SIGN ZA7", + direction="l", + linebreak="al", + unicodeslot=0x12541, + }, + [0x12542]={ + category="lo", + description="CUNEIFORM SIGN ZU OVER ZU PLUS SAR", + direction="l", + linebreak="al", + unicodeslot=0x12542, + }, + [0x12543]={ + category="lo", + description="CUNEIFORM SIGN ZU5 TIMES THREE DISH TENU", + direction="l", + linebreak="al", + unicodeslot=0x12543, + }, [0x13000]={ category="lo", description="EGYPTIAN HIEROGLYPH A001", @@ -171779,20660 +176277,29522 @@ characters.data={ linebreak="al", unicodeslot=0x1342E, }, - [0x16800]={ + [0x14400]={ category="lo", - description="BAMUM LETTER PHASE-A NGKUE MFON", + description="ANATOLIAN HIEROGLYPH A001", direction="l", linebreak="al", - unicodeslot=0x16800, + unicodeslot=0x14400, }, - [0x16801]={ + [0x14401]={ category="lo", - description="BAMUM LETTER PHASE-A GBIEE FON", + description="ANATOLIAN HIEROGLYPH A002", direction="l", linebreak="al", - unicodeslot=0x16801, + unicodeslot=0x14401, }, - [0x16802]={ + [0x14402]={ category="lo", - description="BAMUM LETTER PHASE-A PON MFON PIPAEMGBIEE", + description="ANATOLIAN HIEROGLYPH A003", direction="l", linebreak="al", - unicodeslot=0x16802, + unicodeslot=0x14402, }, - [0x16803]={ + [0x14403]={ category="lo", - description="BAMUM LETTER PHASE-A PON MFON PIPAEMBA", + description="ANATOLIAN HIEROGLYPH A004", direction="l", linebreak="al", - unicodeslot=0x16803, + unicodeslot=0x14403, }, - [0x16804]={ + [0x14404]={ category="lo", - description="BAMUM LETTER PHASE-A NAA MFON", + description="ANATOLIAN HIEROGLYPH A005", direction="l", linebreak="al", - unicodeslot=0x16804, + unicodeslot=0x14404, }, - [0x16805]={ + [0x14405]={ category="lo", - description="BAMUM LETTER PHASE-A SHUENSHUET", + description="ANATOLIAN HIEROGLYPH A006", direction="l", linebreak="al", - unicodeslot=0x16805, + unicodeslot=0x14405, }, - [0x16806]={ + [0x14406]={ category="lo", - description="BAMUM LETTER PHASE-A TITA MFON", + description="ANATOLIAN HIEROGLYPH A007", direction="l", linebreak="al", - unicodeslot=0x16806, + unicodeslot=0x14406, }, - [0x16807]={ + [0x14407]={ category="lo", - description="BAMUM LETTER PHASE-A NZA MFON", + description="ANATOLIAN HIEROGLYPH A008", direction="l", linebreak="al", - unicodeslot=0x16807, + unicodeslot=0x14407, }, - [0x16808]={ + [0x14408]={ category="lo", - description="BAMUM LETTER PHASE-A SHINDA PA NJI", + description="ANATOLIAN HIEROGLYPH A009", direction="l", linebreak="al", - unicodeslot=0x16808, + unicodeslot=0x14408, }, - [0x16809]={ + [0x14409]={ category="lo", - description="BAMUM LETTER PHASE-A PON PA NJI PIPAEMGBIEE", + description="ANATOLIAN HIEROGLYPH A010", direction="l", linebreak="al", - unicodeslot=0x16809, + unicodeslot=0x14409, }, - [0x1680A]={ + [0x1440A]={ category="lo", - description="BAMUM LETTER PHASE-A PON PA NJI PIPAEMBA", + description="ANATOLIAN HIEROGLYPH A010A", direction="l", linebreak="al", - unicodeslot=0x1680A, + unicodeslot=0x1440A, }, - [0x1680B]={ + [0x1440B]={ category="lo", - description="BAMUM LETTER PHASE-A MAEMBGBIEE", + description="ANATOLIAN HIEROGLYPH A011", direction="l", linebreak="al", - unicodeslot=0x1680B, + unicodeslot=0x1440B, }, - [0x1680C]={ + [0x1440C]={ category="lo", - description="BAMUM LETTER PHASE-A TU MAEMBA", + description="ANATOLIAN HIEROGLYPH A012", direction="l", linebreak="al", - unicodeslot=0x1680C, + unicodeslot=0x1440C, }, - [0x1680D]={ + [0x1440D]={ category="lo", - description="BAMUM LETTER PHASE-A NGANGU", + description="ANATOLIAN HIEROGLYPH A013", direction="l", linebreak="al", - unicodeslot=0x1680D, + unicodeslot=0x1440D, }, - [0x1680E]={ + [0x1440E]={ category="lo", - description="BAMUM LETTER PHASE-A MAEMVEUX", + description="ANATOLIAN HIEROGLYPH A014", direction="l", linebreak="al", - unicodeslot=0x1680E, + unicodeslot=0x1440E, }, - [0x1680F]={ + [0x1440F]={ category="lo", - description="BAMUM LETTER PHASE-A MANSUAE", + description="ANATOLIAN HIEROGLYPH A015", direction="l", linebreak="al", - unicodeslot=0x1680F, + unicodeslot=0x1440F, }, - [0x16810]={ + [0x14410]={ category="lo", - description="BAMUM LETTER PHASE-A MVEUAENGAM", + description="ANATOLIAN HIEROGLYPH A016", direction="l", linebreak="al", - unicodeslot=0x16810, + unicodeslot=0x14410, }, - [0x16811]={ + [0x14411]={ category="lo", - description="BAMUM LETTER PHASE-A SEUNYAM", + description="ANATOLIAN HIEROGLYPH A017", direction="l", linebreak="al", - unicodeslot=0x16811, + unicodeslot=0x14411, }, - [0x16812]={ + [0x14412]={ category="lo", - description="BAMUM LETTER PHASE-A NTOQPEN", + description="ANATOLIAN HIEROGLYPH A018", direction="l", linebreak="al", - unicodeslot=0x16812, + unicodeslot=0x14412, }, - [0x16813]={ + [0x14413]={ category="lo", - description="BAMUM LETTER PHASE-A KEUKEUTNDA", + description="ANATOLIAN HIEROGLYPH A019", direction="l", linebreak="al", - unicodeslot=0x16813, + unicodeslot=0x14413, }, - [0x16814]={ + [0x14414]={ category="lo", - description="BAMUM LETTER PHASE-A NKINDI", + description="ANATOLIAN HIEROGLYPH A020", direction="l", linebreak="al", - unicodeslot=0x16814, + unicodeslot=0x14414, }, - [0x16815]={ + [0x14415]={ category="lo", - description="BAMUM LETTER PHASE-A SUU", + description="ANATOLIAN HIEROGLYPH A021", direction="l", linebreak="al", - unicodeslot=0x16815, + unicodeslot=0x14415, }, - [0x16816]={ + [0x14416]={ category="lo", - description="BAMUM LETTER PHASE-A NGKUENZEUM", + description="ANATOLIAN HIEROGLYPH A022", direction="l", linebreak="al", - unicodeslot=0x16816, + unicodeslot=0x14416, }, - [0x16817]={ + [0x14417]={ category="lo", - description="BAMUM LETTER PHASE-A LAPAQ", + description="ANATOLIAN HIEROGLYPH A023", direction="l", linebreak="al", - unicodeslot=0x16817, + unicodeslot=0x14417, }, - [0x16818]={ + [0x14418]={ category="lo", - description="BAMUM LETTER PHASE-A LET KUT", + description="ANATOLIAN HIEROGLYPH A024", direction="l", linebreak="al", - unicodeslot=0x16818, + unicodeslot=0x14418, }, - [0x16819]={ + [0x14419]={ category="lo", - description="BAMUM LETTER PHASE-A NTAP MFAA", + description="ANATOLIAN HIEROGLYPH A025", direction="l", linebreak="al", - unicodeslot=0x16819, + unicodeslot=0x14419, }, - [0x1681A]={ + [0x1441A]={ category="lo", - description="BAMUM LETTER PHASE-A MAEKEUP", + description="ANATOLIAN HIEROGLYPH A026", direction="l", linebreak="al", - unicodeslot=0x1681A, + unicodeslot=0x1441A, }, - [0x1681B]={ + [0x1441B]={ category="lo", - description="BAMUM LETTER PHASE-A PASHAE", + description="ANATOLIAN HIEROGLYPH A026A", direction="l", linebreak="al", - unicodeslot=0x1681B, + unicodeslot=0x1441B, }, - [0x1681C]={ + [0x1441C]={ category="lo", - description="BAMUM LETTER PHASE-A GHEUAERAE", + description="ANATOLIAN HIEROGLYPH A027", direction="l", linebreak="al", - unicodeslot=0x1681C, + unicodeslot=0x1441C, }, - [0x1681D]={ + [0x1441D]={ category="lo", - description="BAMUM LETTER PHASE-A PAMSHAE", + description="ANATOLIAN HIEROGLYPH A028", direction="l", linebreak="al", - unicodeslot=0x1681D, + unicodeslot=0x1441D, }, - [0x1681E]={ + [0x1441E]={ category="lo", - description="BAMUM LETTER PHASE-A MON NGGEUAET", + description="ANATOLIAN HIEROGLYPH A029", direction="l", linebreak="al", - unicodeslot=0x1681E, + unicodeslot=0x1441E, }, - [0x1681F]={ + [0x1441F]={ category="lo", - description="BAMUM LETTER PHASE-A NZUN MEUT", + description="ANATOLIAN HIEROGLYPH A030", direction="l", linebreak="al", - unicodeslot=0x1681F, + unicodeslot=0x1441F, }, - [0x16820]={ + [0x14420]={ category="lo", - description="BAMUM LETTER PHASE-A U YUQ NAE", + description="ANATOLIAN HIEROGLYPH A031", direction="l", linebreak="al", - unicodeslot=0x16820, + unicodeslot=0x14420, }, - [0x16821]={ + [0x14421]={ category="lo", - description="BAMUM LETTER PHASE-A GHEUAEGHEUAE", + description="ANATOLIAN HIEROGLYPH A032", direction="l", linebreak="al", - unicodeslot=0x16821, + unicodeslot=0x14421, }, - [0x16822]={ + [0x14422]={ category="lo", - description="BAMUM LETTER PHASE-A NTAP NTAA", + description="ANATOLIAN HIEROGLYPH A033", direction="l", linebreak="al", - unicodeslot=0x16822, + unicodeslot=0x14422, }, - [0x16823]={ + [0x14423]={ category="lo", - description="BAMUM LETTER PHASE-A SISA", + description="ANATOLIAN HIEROGLYPH A034", direction="l", linebreak="al", - unicodeslot=0x16823, + unicodeslot=0x14423, }, - [0x16824]={ + [0x14424]={ category="lo", - description="BAMUM LETTER PHASE-A MGBASA", + description="ANATOLIAN HIEROGLYPH A035", direction="l", linebreak="al", - unicodeslot=0x16824, + unicodeslot=0x14424, }, - [0x16825]={ + [0x14425]={ category="lo", - description="BAMUM LETTER PHASE-A MEUNJOMNDEUQ", + description="ANATOLIAN HIEROGLYPH A036", direction="l", linebreak="al", - unicodeslot=0x16825, + unicodeslot=0x14425, }, - [0x16826]={ + [0x14426]={ category="lo", - description="BAMUM LETTER PHASE-A MOOMPUQ", + description="ANATOLIAN HIEROGLYPH A037", direction="l", linebreak="al", - unicodeslot=0x16826, + unicodeslot=0x14426, }, - [0x16827]={ + [0x14427]={ category="lo", - description="BAMUM LETTER PHASE-A KAFA", + description="ANATOLIAN HIEROGLYPH A038", direction="l", linebreak="al", - unicodeslot=0x16827, + unicodeslot=0x14427, }, - [0x16828]={ + [0x14428]={ category="lo", - description="BAMUM LETTER PHASE-A PA LEERAEWA", + description="ANATOLIAN HIEROGLYPH A039", direction="l", linebreak="al", - unicodeslot=0x16828, + unicodeslot=0x14428, }, - [0x16829]={ + [0x14429]={ category="lo", - description="BAMUM LETTER PHASE-A NDA LEERAEWA", + description="ANATOLIAN HIEROGLYPH A039A", direction="l", linebreak="al", - unicodeslot=0x16829, + unicodeslot=0x14429, }, - [0x1682A]={ + [0x1442A]={ category="lo", - description="BAMUM LETTER PHASE-A PET", + description="ANATOLIAN HIEROGLYPH A040", direction="l", linebreak="al", - unicodeslot=0x1682A, + unicodeslot=0x1442A, }, - [0x1682B]={ + [0x1442B]={ category="lo", - description="BAMUM LETTER PHASE-A MAEMKPEN", + description="ANATOLIAN HIEROGLYPH A041", direction="l", linebreak="al", - unicodeslot=0x1682B, + unicodeslot=0x1442B, }, - [0x1682C]={ + [0x1442C]={ category="lo", - description="BAMUM LETTER PHASE-A NIKA", + description="ANATOLIAN HIEROGLYPH A041A", direction="l", linebreak="al", - unicodeslot=0x1682C, + unicodeslot=0x1442C, }, - [0x1682D]={ + [0x1442D]={ category="lo", - description="BAMUM LETTER PHASE-A PUP", + description="ANATOLIAN HIEROGLYPH A042", direction="l", linebreak="al", - unicodeslot=0x1682D, + unicodeslot=0x1442D, }, - [0x1682E]={ + [0x1442E]={ category="lo", - description="BAMUM LETTER PHASE-A TUAEP", + description="ANATOLIAN HIEROGLYPH A043", direction="l", linebreak="al", - unicodeslot=0x1682E, + unicodeslot=0x1442E, }, - [0x1682F]={ + [0x1442F]={ category="lo", - description="BAMUM LETTER PHASE-A LUAEP", + description="ANATOLIAN HIEROGLYPH A044", direction="l", linebreak="al", - unicodeslot=0x1682F, + unicodeslot=0x1442F, }, - [0x16830]={ + [0x14430]={ category="lo", - description="BAMUM LETTER PHASE-A SONJAM", + description="ANATOLIAN HIEROGLYPH A045", direction="l", linebreak="al", - unicodeslot=0x16830, + unicodeslot=0x14430, }, - [0x16831]={ + [0x14431]={ category="lo", - description="BAMUM LETTER PHASE-A TEUTEUWEN", + description="ANATOLIAN HIEROGLYPH A045A", direction="l", linebreak="al", - unicodeslot=0x16831, + unicodeslot=0x14431, }, - [0x16832]={ + [0x14432]={ category="lo", - description="BAMUM LETTER PHASE-A MAENYI", + description="ANATOLIAN HIEROGLYPH A046", direction="l", linebreak="al", - unicodeslot=0x16832, + unicodeslot=0x14432, }, - [0x16833]={ + [0x14433]={ category="lo", - description="BAMUM LETTER PHASE-A KET", + description="ANATOLIAN HIEROGLYPH A046A", direction="l", linebreak="al", - unicodeslot=0x16833, + unicodeslot=0x14433, }, - [0x16834]={ + [0x14434]={ category="lo", - description="BAMUM LETTER PHASE-A NDAANGGEUAET", + description="ANATOLIAN HIEROGLYPH A046B", direction="l", linebreak="al", - unicodeslot=0x16834, + unicodeslot=0x14434, }, - [0x16835]={ + [0x14435]={ category="lo", - description="BAMUM LETTER PHASE-A KUOQ", + description="ANATOLIAN HIEROGLYPH A047", direction="l", linebreak="al", - unicodeslot=0x16835, + unicodeslot=0x14435, }, - [0x16836]={ + [0x14436]={ category="lo", - description="BAMUM LETTER PHASE-A MOOMEUT", + description="ANATOLIAN HIEROGLYPH A048", direction="l", linebreak="al", - unicodeslot=0x16836, + unicodeslot=0x14436, }, - [0x16837]={ + [0x14437]={ category="lo", - description="BAMUM LETTER PHASE-A SHUM", + description="ANATOLIAN HIEROGLYPH A049", direction="l", linebreak="al", - unicodeslot=0x16837, + unicodeslot=0x14437, }, - [0x16838]={ + [0x14438]={ category="lo", - description="BAMUM LETTER PHASE-A LOMMAE", + description="ANATOLIAN HIEROGLYPH A050", direction="l", linebreak="al", - unicodeslot=0x16838, + unicodeslot=0x14438, }, - [0x16839]={ + [0x14439]={ category="lo", - description="BAMUM LETTER PHASE-A FIRI", + description="ANATOLIAN HIEROGLYPH A051", direction="l", linebreak="al", - unicodeslot=0x16839, + unicodeslot=0x14439, }, - [0x1683A]={ + [0x1443A]={ category="lo", - description="BAMUM LETTER PHASE-A ROM", + description="ANATOLIAN HIEROGLYPH A052", direction="l", linebreak="al", - unicodeslot=0x1683A, + unicodeslot=0x1443A, }, - [0x1683B]={ + [0x1443B]={ category="lo", - description="BAMUM LETTER PHASE-A KPOQ", + description="ANATOLIAN HIEROGLYPH A053", direction="l", linebreak="al", - unicodeslot=0x1683B, + unicodeslot=0x1443B, }, - [0x1683C]={ + [0x1443C]={ category="lo", - description="BAMUM LETTER PHASE-A SOQ", + description="ANATOLIAN HIEROGLYPH A054", direction="l", linebreak="al", - unicodeslot=0x1683C, + unicodeslot=0x1443C, }, - [0x1683D]={ + [0x1443D]={ category="lo", - description="BAMUM LETTER PHASE-A MAP PIEET", + description="ANATOLIAN HIEROGLYPH A055", direction="l", linebreak="al", - unicodeslot=0x1683D, + unicodeslot=0x1443D, }, - [0x1683E]={ + [0x1443E]={ category="lo", - description="BAMUM LETTER PHASE-A SHIRAE", + description="ANATOLIAN HIEROGLYPH A056", direction="l", linebreak="al", - unicodeslot=0x1683E, + unicodeslot=0x1443E, }, - [0x1683F]={ + [0x1443F]={ category="lo", - description="BAMUM LETTER PHASE-A NTAP", + description="ANATOLIAN HIEROGLYPH A057", direction="l", linebreak="al", - unicodeslot=0x1683F, + unicodeslot=0x1443F, }, - [0x16840]={ + [0x14440]={ category="lo", - description="BAMUM LETTER PHASE-A SHOQ NSHUT YUM", + description="ANATOLIAN HIEROGLYPH A058", direction="l", linebreak="al", - unicodeslot=0x16840, + unicodeslot=0x14440, }, - [0x16841]={ + [0x14441]={ category="lo", - description="BAMUM LETTER PHASE-A NYIT MONGKEUAEQ", + description="ANATOLIAN HIEROGLYPH A059", direction="l", linebreak="al", - unicodeslot=0x16841, + unicodeslot=0x14441, }, - [0x16842]={ + [0x14442]={ category="lo", - description="BAMUM LETTER PHASE-A PAARAE", + description="ANATOLIAN HIEROGLYPH A060", direction="l", linebreak="al", - unicodeslot=0x16842, + unicodeslot=0x14442, }, - [0x16843]={ + [0x14443]={ category="lo", - description="BAMUM LETTER PHASE-A NKAARAE", + description="ANATOLIAN HIEROGLYPH A061", direction="l", linebreak="al", - unicodeslot=0x16843, + unicodeslot=0x14443, }, - [0x16844]={ + [0x14444]={ category="lo", - description="BAMUM LETTER PHASE-A UNKNOWN", + description="ANATOLIAN HIEROGLYPH A062", direction="l", linebreak="al", - unicodeslot=0x16844, + unicodeslot=0x14444, }, - [0x16845]={ + [0x14445]={ category="lo", - description="BAMUM LETTER PHASE-A NGGEN", + description="ANATOLIAN HIEROGLYPH A063", direction="l", linebreak="al", - unicodeslot=0x16845, + unicodeslot=0x14445, }, - [0x16846]={ + [0x14446]={ category="lo", - description="BAMUM LETTER PHASE-A MAESI", + description="ANATOLIAN HIEROGLYPH A064", direction="l", linebreak="al", - unicodeslot=0x16846, + unicodeslot=0x14446, }, - [0x16847]={ + [0x14447]={ category="lo", - description="BAMUM LETTER PHASE-A NJAM", + description="ANATOLIAN HIEROGLYPH A065", direction="l", linebreak="al", - unicodeslot=0x16847, + unicodeslot=0x14447, }, - [0x16848]={ + [0x14448]={ category="lo", - description="BAMUM LETTER PHASE-A MBANYI", + description="ANATOLIAN HIEROGLYPH A066", direction="l", linebreak="al", - unicodeslot=0x16848, + unicodeslot=0x14448, }, - [0x16849]={ + [0x14449]={ category="lo", - description="BAMUM LETTER PHASE-A NYET", + description="ANATOLIAN HIEROGLYPH A066A", direction="l", linebreak="al", - unicodeslot=0x16849, + unicodeslot=0x14449, }, - [0x1684A]={ + [0x1444A]={ category="lo", - description="BAMUM LETTER PHASE-A TEUAEN", + description="ANATOLIAN HIEROGLYPH A066B", direction="l", linebreak="al", - unicodeslot=0x1684A, + unicodeslot=0x1444A, }, - [0x1684B]={ + [0x1444B]={ category="lo", - description="BAMUM LETTER PHASE-A SOT", + description="ANATOLIAN HIEROGLYPH A066C", direction="l", linebreak="al", - unicodeslot=0x1684B, + unicodeslot=0x1444B, }, - [0x1684C]={ + [0x1444C]={ category="lo", - description="BAMUM LETTER PHASE-A PAAM", + description="ANATOLIAN HIEROGLYPH A067", direction="l", linebreak="al", - unicodeslot=0x1684C, + unicodeslot=0x1444C, }, - [0x1684D]={ + [0x1444D]={ category="lo", - description="BAMUM LETTER PHASE-A NSHIEE", + description="ANATOLIAN HIEROGLYPH A068", direction="l", linebreak="al", - unicodeslot=0x1684D, + unicodeslot=0x1444D, }, - [0x1684E]={ + [0x1444E]={ category="lo", - description="BAMUM LETTER PHASE-A MAEM", + description="ANATOLIAN HIEROGLYPH A069", direction="l", linebreak="al", - unicodeslot=0x1684E, + unicodeslot=0x1444E, }, - [0x1684F]={ + [0x1444F]={ category="lo", - description="BAMUM LETTER PHASE-A NYI", + description="ANATOLIAN HIEROGLYPH A070", direction="l", linebreak="al", - unicodeslot=0x1684F, + unicodeslot=0x1444F, }, - [0x16850]={ + [0x14450]={ category="lo", - description="BAMUM LETTER PHASE-A KAQ", + description="ANATOLIAN HIEROGLYPH A071", direction="l", linebreak="al", - unicodeslot=0x16850, + unicodeslot=0x14450, }, - [0x16851]={ + [0x14451]={ category="lo", - description="BAMUM LETTER PHASE-A NSHA", + description="ANATOLIAN HIEROGLYPH A072", direction="l", linebreak="al", - unicodeslot=0x16851, + unicodeslot=0x14451, }, - [0x16852]={ + [0x14452]={ category="lo", - description="BAMUM LETTER PHASE-A VEE", + description="ANATOLIAN HIEROGLYPH A073", direction="l", linebreak="al", - unicodeslot=0x16852, + unicodeslot=0x14452, }, - [0x16853]={ + [0x14453]={ category="lo", - description="BAMUM LETTER PHASE-A LU", + description="ANATOLIAN HIEROGLYPH A074", direction="l", linebreak="al", - unicodeslot=0x16853, + unicodeslot=0x14453, }, - [0x16854]={ + [0x14454]={ category="lo", - description="BAMUM LETTER PHASE-A NEN", + description="ANATOLIAN HIEROGLYPH A075", direction="l", linebreak="al", - unicodeslot=0x16854, + unicodeslot=0x14454, }, - [0x16855]={ + [0x14455]={ category="lo", - description="BAMUM LETTER PHASE-A NAQ", + description="ANATOLIAN HIEROGLYPH A076", direction="l", linebreak="al", - unicodeslot=0x16855, + unicodeslot=0x14455, }, - [0x16856]={ + [0x14456]={ category="lo", - description="BAMUM LETTER PHASE-A MBAQ", + description="ANATOLIAN HIEROGLYPH A077", direction="l", linebreak="al", - unicodeslot=0x16856, + unicodeslot=0x14456, }, - [0x16857]={ + [0x14457]={ category="lo", - description="BAMUM LETTER PHASE-B NSHUET", + description="ANATOLIAN HIEROGLYPH A078", direction="l", linebreak="al", - unicodeslot=0x16857, + unicodeslot=0x14457, }, - [0x16858]={ + [0x14458]={ category="lo", - description="BAMUM LETTER PHASE-B TU MAEMGBIEE", + description="ANATOLIAN HIEROGLYPH A079", direction="l", linebreak="al", - unicodeslot=0x16858, + unicodeslot=0x14458, }, - [0x16859]={ + [0x14459]={ category="lo", - description="BAMUM LETTER PHASE-B SIEE", + description="ANATOLIAN HIEROGLYPH A080", direction="l", linebreak="al", - unicodeslot=0x16859, + unicodeslot=0x14459, }, - [0x1685A]={ + [0x1445A]={ category="lo", - description="BAMUM LETTER PHASE-B SET TU", + description="ANATOLIAN HIEROGLYPH A081", direction="l", linebreak="al", - unicodeslot=0x1685A, + unicodeslot=0x1445A, }, - [0x1685B]={ + [0x1445B]={ category="lo", - description="BAMUM LETTER PHASE-B LOM NTEUM", + description="ANATOLIAN HIEROGLYPH A082", direction="l", linebreak="al", - unicodeslot=0x1685B, + unicodeslot=0x1445B, }, - [0x1685C]={ + [0x1445C]={ category="lo", - description="BAMUM LETTER PHASE-B MBA MAELEE", + description="ANATOLIAN HIEROGLYPH A083", direction="l", linebreak="al", - unicodeslot=0x1685C, + unicodeslot=0x1445C, }, - [0x1685D]={ + [0x1445D]={ category="lo", - description="BAMUM LETTER PHASE-B KIEEM", + description="ANATOLIAN HIEROGLYPH A084", direction="l", linebreak="al", - unicodeslot=0x1685D, + unicodeslot=0x1445D, }, - [0x1685E]={ + [0x1445E]={ category="lo", - description="BAMUM LETTER PHASE-B YEURAE", + description="ANATOLIAN HIEROGLYPH A085", direction="l", linebreak="al", - unicodeslot=0x1685E, + unicodeslot=0x1445E, }, - [0x1685F]={ + [0x1445F]={ category="lo", - description="BAMUM LETTER PHASE-B MBAARAE", + description="ANATOLIAN HIEROGLYPH A086", direction="l", linebreak="al", - unicodeslot=0x1685F, + unicodeslot=0x1445F, }, - [0x16860]={ + [0x14460]={ category="lo", - description="BAMUM LETTER PHASE-B KAM", + description="ANATOLIAN HIEROGLYPH A087", direction="l", linebreak="al", - unicodeslot=0x16860, + unicodeslot=0x14460, }, - [0x16861]={ + [0x14461]={ category="lo", - description="BAMUM LETTER PHASE-B PEESHI", + description="ANATOLIAN HIEROGLYPH A088", direction="l", linebreak="al", - unicodeslot=0x16861, + unicodeslot=0x14461, }, - [0x16862]={ + [0x14462]={ category="lo", - description="BAMUM LETTER PHASE-B YAFU LEERAEWA", + description="ANATOLIAN HIEROGLYPH A089", direction="l", linebreak="al", - unicodeslot=0x16862, + unicodeslot=0x14462, }, - [0x16863]={ + [0x14463]={ category="lo", - description="BAMUM LETTER PHASE-B LAM NSHUT NYAM", + description="ANATOLIAN HIEROGLYPH A090", direction="l", linebreak="al", - unicodeslot=0x16863, + unicodeslot=0x14463, }, - [0x16864]={ + [0x14464]={ category="lo", - description="BAMUM LETTER PHASE-B NTIEE SHEUOQ", + description="ANATOLIAN HIEROGLYPH A091", direction="l", linebreak="al", - unicodeslot=0x16864, + unicodeslot=0x14464, }, - [0x16865]={ + [0x14465]={ category="lo", - description="BAMUM LETTER PHASE-B NDU NJAA", + description="ANATOLIAN HIEROGLYPH A092", direction="l", linebreak="al", - unicodeslot=0x16865, + unicodeslot=0x14465, }, - [0x16866]={ + [0x14466]={ category="lo", - description="BAMUM LETTER PHASE-B GHEUGHEUAEM", + description="ANATOLIAN HIEROGLYPH A093", direction="l", linebreak="al", - unicodeslot=0x16866, + unicodeslot=0x14466, }, - [0x16867]={ + [0x14467]={ category="lo", - description="BAMUM LETTER PHASE-B PIT", + description="ANATOLIAN HIEROGLYPH A094", direction="l", linebreak="al", - unicodeslot=0x16867, + unicodeslot=0x14467, }, - [0x16868]={ + [0x14468]={ category="lo", - description="BAMUM LETTER PHASE-B TU NSIEE", + description="ANATOLIAN HIEROGLYPH A095", direction="l", linebreak="al", - unicodeslot=0x16868, + unicodeslot=0x14468, }, - [0x16869]={ + [0x14469]={ category="lo", - description="BAMUM LETTER PHASE-B SHET NJAQ", + description="ANATOLIAN HIEROGLYPH A096", direction="l", linebreak="al", - unicodeslot=0x16869, + unicodeslot=0x14469, }, - [0x1686A]={ + [0x1446A]={ category="lo", - description="BAMUM LETTER PHASE-B SHEUAEQTU", + description="ANATOLIAN HIEROGLYPH A097", direction="l", linebreak="al", - unicodeslot=0x1686A, + unicodeslot=0x1446A, }, - [0x1686B]={ + [0x1446B]={ category="lo", - description="BAMUM LETTER PHASE-B MFON TEUAEQ", + description="ANATOLIAN HIEROGLYPH A097A", direction="l", linebreak="al", - unicodeslot=0x1686B, + unicodeslot=0x1446B, }, - [0x1686C]={ + [0x1446C]={ category="lo", - description="BAMUM LETTER PHASE-B MBIT MBAAKET", + description="ANATOLIAN HIEROGLYPH A098", direction="l", linebreak="al", - unicodeslot=0x1686C, + unicodeslot=0x1446C, }, - [0x1686D]={ + [0x1446D]={ category="lo", - description="BAMUM LETTER PHASE-B NYI NTEUM", + description="ANATOLIAN HIEROGLYPH A098A", direction="l", linebreak="al", - unicodeslot=0x1686D, + unicodeslot=0x1446D, }, - [0x1686E]={ + [0x1446E]={ category="lo", - description="BAMUM LETTER PHASE-B KEUPUQ", + description="ANATOLIAN HIEROGLYPH A099", direction="l", linebreak="al", - unicodeslot=0x1686E, + unicodeslot=0x1446E, }, - [0x1686F]={ + [0x1446F]={ category="lo", - description="BAMUM LETTER PHASE-B GHEUGHEN", + description="ANATOLIAN HIEROGLYPH A100", direction="l", linebreak="al", - unicodeslot=0x1686F, + unicodeslot=0x1446F, }, - [0x16870]={ + [0x14470]={ category="lo", - description="BAMUM LETTER PHASE-B KEUYEUX", + description="ANATOLIAN HIEROGLYPH A100A", direction="l", linebreak="al", - unicodeslot=0x16870, + unicodeslot=0x14470, }, - [0x16871]={ + [0x14471]={ category="lo", - description="BAMUM LETTER PHASE-B LAANAE", + description="ANATOLIAN HIEROGLYPH A101", direction="l", linebreak="al", - unicodeslot=0x16871, + unicodeslot=0x14471, }, - [0x16872]={ + [0x14472]={ category="lo", - description="BAMUM LETTER PHASE-B PARUM", + description="ANATOLIAN HIEROGLYPH A101A", direction="l", linebreak="al", - unicodeslot=0x16872, + unicodeslot=0x14472, }, - [0x16873]={ + [0x14473]={ category="lo", - description="BAMUM LETTER PHASE-B VEUM", + description="ANATOLIAN HIEROGLYPH A102", direction="l", linebreak="al", - unicodeslot=0x16873, + unicodeslot=0x14473, }, - [0x16874]={ + [0x14474]={ category="lo", - description="BAMUM LETTER PHASE-B NGKINDI MVOP", + description="ANATOLIAN HIEROGLYPH A102A", direction="l", linebreak="al", - unicodeslot=0x16874, + unicodeslot=0x14474, }, - [0x16875]={ + [0x14475]={ category="lo", - description="BAMUM LETTER PHASE-B NGGEU MBU", + description="ANATOLIAN HIEROGLYPH A103", direction="l", linebreak="al", - unicodeslot=0x16875, + unicodeslot=0x14475, }, - [0x16876]={ + [0x14476]={ category="lo", - description="BAMUM LETTER PHASE-B WUAET", + description="ANATOLIAN HIEROGLYPH A104", direction="l", linebreak="al", - unicodeslot=0x16876, + unicodeslot=0x14476, }, - [0x16877]={ + [0x14477]={ category="lo", - description="BAMUM LETTER PHASE-B SAKEUAE", + description="ANATOLIAN HIEROGLYPH A104A", direction="l", linebreak="al", - unicodeslot=0x16877, + unicodeslot=0x14477, }, - [0x16878]={ + [0x14478]={ category="lo", - description="BAMUM LETTER PHASE-B TAAM", + description="ANATOLIAN HIEROGLYPH A104B", direction="l", linebreak="al", - unicodeslot=0x16878, + unicodeslot=0x14478, }, - [0x16879]={ + [0x14479]={ category="lo", - description="BAMUM LETTER PHASE-B MEUQ", + description="ANATOLIAN HIEROGLYPH A104C", direction="l", linebreak="al", - unicodeslot=0x16879, + unicodeslot=0x14479, }, - [0x1687A]={ + [0x1447A]={ category="lo", - description="BAMUM LETTER PHASE-B NGGUOQ", + description="ANATOLIAN HIEROGLYPH A105", direction="l", linebreak="al", - unicodeslot=0x1687A, + unicodeslot=0x1447A, }, - [0x1687B]={ + [0x1447B]={ category="lo", - description="BAMUM LETTER PHASE-B NGGUOQ LARGE", + description="ANATOLIAN HIEROGLYPH A105A", direction="l", linebreak="al", - unicodeslot=0x1687B, + unicodeslot=0x1447B, }, - [0x1687C]={ + [0x1447C]={ category="lo", - description="BAMUM LETTER PHASE-B MFIYAQ", + description="ANATOLIAN HIEROGLYPH A105B", direction="l", linebreak="al", - unicodeslot=0x1687C, + unicodeslot=0x1447C, }, - [0x1687D]={ + [0x1447D]={ category="lo", - description="BAMUM LETTER PHASE-B SUE", + description="ANATOLIAN HIEROGLYPH A106", direction="l", linebreak="al", - unicodeslot=0x1687D, + unicodeslot=0x1447D, }, - [0x1687E]={ + [0x1447E]={ category="lo", - description="BAMUM LETTER PHASE-B MBEURI", + description="ANATOLIAN HIEROGLYPH A107", direction="l", linebreak="al", - unicodeslot=0x1687E, + unicodeslot=0x1447E, }, - [0x1687F]={ + [0x1447F]={ category="lo", - description="BAMUM LETTER PHASE-B MONTIEEN", + description="ANATOLIAN HIEROGLYPH A107A", direction="l", linebreak="al", - unicodeslot=0x1687F, + unicodeslot=0x1447F, }, - [0x16880]={ + [0x14480]={ category="lo", - description="BAMUM LETTER PHASE-B NYAEMAE", + description="ANATOLIAN HIEROGLYPH A107B", direction="l", linebreak="al", - unicodeslot=0x16880, + unicodeslot=0x14480, }, - [0x16881]={ + [0x14481]={ category="lo", - description="BAMUM LETTER PHASE-B PUNGAAM", + description="ANATOLIAN HIEROGLYPH A107C", direction="l", linebreak="al", - unicodeslot=0x16881, + unicodeslot=0x14481, }, - [0x16882]={ + [0x14482]={ category="lo", - description="BAMUM LETTER PHASE-B MEUT NGGEET", + description="ANATOLIAN HIEROGLYPH A108", direction="l", linebreak="al", - unicodeslot=0x16882, + unicodeslot=0x14482, }, - [0x16883]={ + [0x14483]={ category="lo", - description="BAMUM LETTER PHASE-B FEUX", + description="ANATOLIAN HIEROGLYPH A109", direction="l", linebreak="al", - unicodeslot=0x16883, + unicodeslot=0x14483, }, - [0x16884]={ + [0x14484]={ category="lo", - description="BAMUM LETTER PHASE-B MBUOQ", + description="ANATOLIAN HIEROGLYPH A110", direction="l", linebreak="al", - unicodeslot=0x16884, + unicodeslot=0x14484, }, - [0x16885]={ + [0x14485]={ category="lo", - description="BAMUM LETTER PHASE-B FEE", + description="ANATOLIAN HIEROGLYPH A110A", direction="l", linebreak="al", - unicodeslot=0x16885, + unicodeslot=0x14485, }, - [0x16886]={ + [0x14486]={ category="lo", - description="BAMUM LETTER PHASE-B KEUAEM", + description="ANATOLIAN HIEROGLYPH A110B", direction="l", linebreak="al", - unicodeslot=0x16886, + unicodeslot=0x14486, }, - [0x16887]={ + [0x14487]={ category="lo", - description="BAMUM LETTER PHASE-B MA NJEUAENA", + description="ANATOLIAN HIEROGLYPH A111", direction="l", linebreak="al", - unicodeslot=0x16887, + unicodeslot=0x14487, }, - [0x16888]={ + [0x14488]={ category="lo", - description="BAMUM LETTER PHASE-B MA NJUQA", + description="ANATOLIAN HIEROGLYPH A112", direction="l", linebreak="al", - unicodeslot=0x16888, + unicodeslot=0x14488, }, - [0x16889]={ + [0x14489]={ category="lo", - description="BAMUM LETTER PHASE-B LET", + description="ANATOLIAN HIEROGLYPH A113", direction="l", linebreak="al", - unicodeslot=0x16889, + unicodeslot=0x14489, }, - [0x1688A]={ + [0x1448A]={ category="lo", - description="BAMUM LETTER PHASE-B NGGAAM", + description="ANATOLIAN HIEROGLYPH A114", direction="l", linebreak="al", - unicodeslot=0x1688A, + unicodeslot=0x1448A, }, - [0x1688B]={ + [0x1448B]={ category="lo", - description="BAMUM LETTER PHASE-B NSEN", + description="ANATOLIAN HIEROGLYPH A115", direction="l", linebreak="al", - unicodeslot=0x1688B, + unicodeslot=0x1448B, }, - [0x1688C]={ + [0x1448C]={ category="lo", - description="BAMUM LETTER PHASE-B MA", + description="ANATOLIAN HIEROGLYPH A115A", direction="l", linebreak="al", - unicodeslot=0x1688C, + unicodeslot=0x1448C, }, - [0x1688D]={ + [0x1448D]={ category="lo", - description="BAMUM LETTER PHASE-B KIQ", + description="ANATOLIAN HIEROGLYPH A116", direction="l", linebreak="al", - unicodeslot=0x1688D, + unicodeslot=0x1448D, }, - [0x1688E]={ + [0x1448E]={ category="lo", - description="BAMUM LETTER PHASE-B NGOM", + description="ANATOLIAN HIEROGLYPH A117", direction="l", linebreak="al", - unicodeslot=0x1688E, + unicodeslot=0x1448E, }, - [0x1688F]={ + [0x1448F]={ category="lo", - description="BAMUM LETTER PHASE-C NGKUE MAEMBA", + description="ANATOLIAN HIEROGLYPH A118", direction="l", linebreak="al", - unicodeslot=0x1688F, + unicodeslot=0x1448F, }, - [0x16890]={ + [0x14490]={ category="lo", - description="BAMUM LETTER PHASE-C NZA", + description="ANATOLIAN HIEROGLYPH A119", direction="l", linebreak="al", - unicodeslot=0x16890, + unicodeslot=0x14490, }, - [0x16891]={ + [0x14491]={ category="lo", - description="BAMUM LETTER PHASE-C YUM", + description="ANATOLIAN HIEROGLYPH A120", direction="l", linebreak="al", - unicodeslot=0x16891, + unicodeslot=0x14491, }, - [0x16892]={ + [0x14492]={ category="lo", - description="BAMUM LETTER PHASE-C WANGKUOQ", + description="ANATOLIAN HIEROGLYPH A121", direction="l", linebreak="al", - unicodeslot=0x16892, + unicodeslot=0x14492, }, - [0x16893]={ + [0x14493]={ category="lo", - description="BAMUM LETTER PHASE-C NGGEN", + description="ANATOLIAN HIEROGLYPH A122", direction="l", linebreak="al", - unicodeslot=0x16893, + unicodeslot=0x14493, }, - [0x16894]={ + [0x14494]={ category="lo", - description="BAMUM LETTER PHASE-C NDEUAEREE", + description="ANATOLIAN HIEROGLYPH A123", direction="l", linebreak="al", - unicodeslot=0x16894, + unicodeslot=0x14494, }, - [0x16895]={ + [0x14495]={ category="lo", - description="BAMUM LETTER PHASE-C NGKAQ", + description="ANATOLIAN HIEROGLYPH A124", direction="l", linebreak="al", - unicodeslot=0x16895, + unicodeslot=0x14495, }, - [0x16896]={ + [0x14496]={ category="lo", - description="BAMUM LETTER PHASE-C GHARAE", + description="ANATOLIAN HIEROGLYPH A125", direction="l", linebreak="al", - unicodeslot=0x16896, + unicodeslot=0x14496, }, - [0x16897]={ + [0x14497]={ category="lo", - description="BAMUM LETTER PHASE-C MBEEKEET", + description="ANATOLIAN HIEROGLYPH A125A", direction="l", linebreak="al", - unicodeslot=0x16897, + unicodeslot=0x14497, }, - [0x16898]={ + [0x14498]={ category="lo", - description="BAMUM LETTER PHASE-C GBAYI", + description="ANATOLIAN HIEROGLYPH A126", direction="l", linebreak="al", - unicodeslot=0x16898, + unicodeslot=0x14498, }, - [0x16899]={ + [0x14499]={ category="lo", - description="BAMUM LETTER PHASE-C NYIR MKPARAQ MEUN", + description="ANATOLIAN HIEROGLYPH A127", direction="l", linebreak="al", - unicodeslot=0x16899, + unicodeslot=0x14499, }, - [0x1689A]={ + [0x1449A]={ category="lo", - description="BAMUM LETTER PHASE-C NTU MBIT", + description="ANATOLIAN HIEROGLYPH A128", direction="l", linebreak="al", - unicodeslot=0x1689A, + unicodeslot=0x1449A, }, - [0x1689B]={ + [0x1449B]={ category="lo", - description="BAMUM LETTER PHASE-C MBEUM", + description="ANATOLIAN HIEROGLYPH A129", direction="l", linebreak="al", - unicodeslot=0x1689B, + unicodeslot=0x1449B, }, - [0x1689C]={ + [0x1449C]={ category="lo", - description="BAMUM LETTER PHASE-C PIRIEEN", + description="ANATOLIAN HIEROGLYPH A130", direction="l", linebreak="al", - unicodeslot=0x1689C, + unicodeslot=0x1449C, }, - [0x1689D]={ + [0x1449D]={ category="lo", - description="BAMUM LETTER PHASE-C NDOMBU", + description="ANATOLIAN HIEROGLYPH A131", direction="l", linebreak="al", - unicodeslot=0x1689D, + unicodeslot=0x1449D, }, - [0x1689E]={ + [0x1449E]={ category="lo", - description="BAMUM LETTER PHASE-C MBAA CABBAGE-TREE", + description="ANATOLIAN HIEROGLYPH A132", direction="l", linebreak="al", - unicodeslot=0x1689E, + unicodeslot=0x1449E, }, - [0x1689F]={ + [0x1449F]={ category="lo", - description="BAMUM LETTER PHASE-C KEUSHEUAEP", + description="ANATOLIAN HIEROGLYPH A133", direction="l", linebreak="al", - unicodeslot=0x1689F, + unicodeslot=0x1449F, }, - [0x168A0]={ + [0x144A0]={ category="lo", - description="BAMUM LETTER PHASE-C GHAP", + description="ANATOLIAN HIEROGLYPH A134", direction="l", linebreak="al", - unicodeslot=0x168A0, + unicodeslot=0x144A0, }, - [0x168A1]={ + [0x144A1]={ category="lo", - description="BAMUM LETTER PHASE-C KEUKAQ", + description="ANATOLIAN HIEROGLYPH A135", direction="l", linebreak="al", - unicodeslot=0x168A1, + unicodeslot=0x144A1, }, - [0x168A2]={ + [0x144A2]={ category="lo", - description="BAMUM LETTER PHASE-C YU MUOMAE", + description="ANATOLIAN HIEROGLYPH A135A", direction="l", linebreak="al", - unicodeslot=0x168A2, + unicodeslot=0x144A2, }, - [0x168A3]={ + [0x144A3]={ category="lo", - description="BAMUM LETTER PHASE-C NZEUM", + description="ANATOLIAN HIEROGLYPH A136", direction="l", linebreak="al", - unicodeslot=0x168A3, + unicodeslot=0x144A3, }, - [0x168A4]={ + [0x144A4]={ category="lo", - description="BAMUM LETTER PHASE-C MBUE", + description="ANATOLIAN HIEROGLYPH A137", direction="l", linebreak="al", - unicodeslot=0x168A4, + unicodeslot=0x144A4, }, - [0x168A5]={ + [0x144A5]={ category="lo", - description="BAMUM LETTER PHASE-C NSEUAEN", + description="ANATOLIAN HIEROGLYPH A138", direction="l", linebreak="al", - unicodeslot=0x168A5, + unicodeslot=0x144A5, }, - [0x168A6]={ + [0x144A6]={ category="lo", - description="BAMUM LETTER PHASE-C MBIT", + description="ANATOLIAN HIEROGLYPH A139", direction="l", linebreak="al", - unicodeslot=0x168A6, + unicodeslot=0x144A6, }, - [0x168A7]={ + [0x144A7]={ category="lo", - description="BAMUM LETTER PHASE-C YEUQ", + description="ANATOLIAN HIEROGLYPH A140", direction="l", linebreak="al", - unicodeslot=0x168A7, + unicodeslot=0x144A7, }, - [0x168A8]={ + [0x144A8]={ category="lo", - description="BAMUM LETTER PHASE-C KPARAQ", + description="ANATOLIAN HIEROGLYPH A141", direction="l", linebreak="al", - unicodeslot=0x168A8, + unicodeslot=0x144A8, }, - [0x168A9]={ + [0x144A9]={ category="lo", - description="BAMUM LETTER PHASE-C KAA", + description="ANATOLIAN HIEROGLYPH A142", direction="l", linebreak="al", - unicodeslot=0x168A9, + unicodeslot=0x144A9, }, - [0x168AA]={ + [0x144AA]={ category="lo", - description="BAMUM LETTER PHASE-C SEUX", + description="ANATOLIAN HIEROGLYPH A143", direction="l", linebreak="al", - unicodeslot=0x168AA, + unicodeslot=0x144AA, }, - [0x168AB]={ + [0x144AB]={ category="lo", - description="BAMUM LETTER PHASE-C NDIDA", + description="ANATOLIAN HIEROGLYPH A144", direction="l", linebreak="al", - unicodeslot=0x168AB, + unicodeslot=0x144AB, }, - [0x168AC]={ + [0x144AC]={ category="lo", - description="BAMUM LETTER PHASE-C TAASHAE", + description="ANATOLIAN HIEROGLYPH A145", direction="l", linebreak="al", - unicodeslot=0x168AC, + unicodeslot=0x144AC, }, - [0x168AD]={ + [0x144AD]={ category="lo", - description="BAMUM LETTER PHASE-C NJUEQ", + description="ANATOLIAN HIEROGLYPH A146", direction="l", linebreak="al", - unicodeslot=0x168AD, + unicodeslot=0x144AD, }, - [0x168AE]={ + [0x144AE]={ category="lo", - description="BAMUM LETTER PHASE-C TITA YUE", + description="ANATOLIAN HIEROGLYPH A147", direction="l", linebreak="al", - unicodeslot=0x168AE, + unicodeslot=0x144AE, }, - [0x168AF]={ + [0x144AF]={ category="lo", - description="BAMUM LETTER PHASE-C SUAET", + description="ANATOLIAN HIEROGLYPH A148", direction="l", linebreak="al", - unicodeslot=0x168AF, + unicodeslot=0x144AF, }, - [0x168B0]={ + [0x144B0]={ category="lo", - description="BAMUM LETTER PHASE-C NGGUAEN NYAM", + description="ANATOLIAN HIEROGLYPH A149", direction="l", linebreak="al", - unicodeslot=0x168B0, + unicodeslot=0x144B0, }, - [0x168B1]={ + [0x144B1]={ category="lo", - description="BAMUM LETTER PHASE-C VEUX", + description="ANATOLIAN HIEROGLYPH A150", direction="l", linebreak="al", - unicodeslot=0x168B1, + unicodeslot=0x144B1, }, - [0x168B2]={ + [0x144B2]={ category="lo", - description="BAMUM LETTER PHASE-C NANSANAQ", + description="ANATOLIAN HIEROGLYPH A151", direction="l", linebreak="al", - unicodeslot=0x168B2, + unicodeslot=0x144B2, }, - [0x168B3]={ + [0x144B3]={ category="lo", - description="BAMUM LETTER PHASE-C MA KEUAERI", + description="ANATOLIAN HIEROGLYPH A152", direction="l", linebreak="al", - unicodeslot=0x168B3, + unicodeslot=0x144B3, }, - [0x168B4]={ + [0x144B4]={ category="lo", - description="BAMUM LETTER PHASE-C NTAA", + description="ANATOLIAN HIEROGLYPH A153", direction="l", linebreak="al", - unicodeslot=0x168B4, + unicodeslot=0x144B4, }, - [0x168B5]={ + [0x144B5]={ category="lo", - description="BAMUM LETTER PHASE-C NGGUON", + description="ANATOLIAN HIEROGLYPH A154", direction="l", linebreak="al", - unicodeslot=0x168B5, + unicodeslot=0x144B5, }, - [0x168B6]={ + [0x144B6]={ category="lo", - description="BAMUM LETTER PHASE-C LAP", + description="ANATOLIAN HIEROGLYPH A155", direction="l", linebreak="al", - unicodeslot=0x168B6, + unicodeslot=0x144B6, }, - [0x168B7]={ + [0x144B7]={ category="lo", - description="BAMUM LETTER PHASE-C MBIRIEEN", + description="ANATOLIAN HIEROGLYPH A156", direction="l", linebreak="al", - unicodeslot=0x168B7, + unicodeslot=0x144B7, }, - [0x168B8]={ + [0x144B8]={ category="lo", - description="BAMUM LETTER PHASE-C MGBASAQ", + description="ANATOLIAN HIEROGLYPH A157", direction="l", linebreak="al", - unicodeslot=0x168B8, + unicodeslot=0x144B8, }, - [0x168B9]={ + [0x144B9]={ category="lo", - description="BAMUM LETTER PHASE-C NTEUNGBA", + description="ANATOLIAN HIEROGLYPH A158", direction="l", linebreak="al", - unicodeslot=0x168B9, + unicodeslot=0x144B9, }, - [0x168BA]={ + [0x144BA]={ category="lo", - description="BAMUM LETTER PHASE-C TEUTEUX", + description="ANATOLIAN HIEROGLYPH A159", direction="l", linebreak="al", - unicodeslot=0x168BA, + unicodeslot=0x144BA, }, - [0x168BB]={ + [0x144BB]={ category="lo", - description="BAMUM LETTER PHASE-C NGGUM", + description="ANATOLIAN HIEROGLYPH A160", direction="l", linebreak="al", - unicodeslot=0x168BB, + unicodeslot=0x144BB, }, - [0x168BC]={ + [0x144BC]={ category="lo", - description="BAMUM LETTER PHASE-C FUE", + description="ANATOLIAN HIEROGLYPH A161", direction="l", linebreak="al", - unicodeslot=0x168BC, + unicodeslot=0x144BC, }, - [0x168BD]={ + [0x144BD]={ category="lo", - description="BAMUM LETTER PHASE-C NDEUT", + description="ANATOLIAN HIEROGLYPH A162", direction="l", linebreak="al", - unicodeslot=0x168BD, + unicodeslot=0x144BD, }, - [0x168BE]={ + [0x144BE]={ category="lo", - description="BAMUM LETTER PHASE-C NSA", + description="ANATOLIAN HIEROGLYPH A163", direction="l", linebreak="al", - unicodeslot=0x168BE, + unicodeslot=0x144BE, }, - [0x168BF]={ + [0x144BF]={ category="lo", - description="BAMUM LETTER PHASE-C NSHAQ", + description="ANATOLIAN HIEROGLYPH A164", direction="l", linebreak="al", - unicodeslot=0x168BF, + unicodeslot=0x144BF, }, - [0x168C0]={ + [0x144C0]={ category="lo", - description="BAMUM LETTER PHASE-C BUNG", + description="ANATOLIAN HIEROGLYPH A165", direction="l", linebreak="al", - unicodeslot=0x168C0, + unicodeslot=0x144C0, }, - [0x168C1]={ + [0x144C1]={ category="lo", - description="BAMUM LETTER PHASE-C VEUAEPEN", + description="ANATOLIAN HIEROGLYPH A166", direction="l", linebreak="al", - unicodeslot=0x168C1, + unicodeslot=0x144C1, }, - [0x168C2]={ + [0x144C2]={ category="lo", - description="BAMUM LETTER PHASE-C MBERAE", + description="ANATOLIAN HIEROGLYPH A167", direction="l", linebreak="al", - unicodeslot=0x168C2, + unicodeslot=0x144C2, }, - [0x168C3]={ + [0x144C3]={ category="lo", - description="BAMUM LETTER PHASE-C RU", + description="ANATOLIAN HIEROGLYPH A168", direction="l", linebreak="al", - unicodeslot=0x168C3, + unicodeslot=0x144C3, }, - [0x168C4]={ + [0x144C4]={ category="lo", - description="BAMUM LETTER PHASE-C NJAEM", + description="ANATOLIAN HIEROGLYPH A169", direction="l", linebreak="al", - unicodeslot=0x168C4, + unicodeslot=0x144C4, }, - [0x168C5]={ + [0x144C5]={ category="lo", - description="BAMUM LETTER PHASE-C LAM", + description="ANATOLIAN HIEROGLYPH A170", direction="l", linebreak="al", - unicodeslot=0x168C5, + unicodeslot=0x144C5, }, - [0x168C6]={ + [0x144C6]={ category="lo", - description="BAMUM LETTER PHASE-C TITUAEP", + description="ANATOLIAN HIEROGLYPH A171", direction="l", linebreak="al", - unicodeslot=0x168C6, + unicodeslot=0x144C6, }, - [0x168C7]={ + [0x144C7]={ category="lo", - description="BAMUM LETTER PHASE-C NSUOT NGOM", + description="ANATOLIAN HIEROGLYPH A172", direction="l", linebreak="al", - unicodeslot=0x168C7, + unicodeslot=0x144C7, }, - [0x168C8]={ + [0x144C8]={ category="lo", - description="BAMUM LETTER PHASE-C NJEEEE", + description="ANATOLIAN HIEROGLYPH A173", direction="l", linebreak="al", - unicodeslot=0x168C8, + unicodeslot=0x144C8, }, - [0x168C9]={ + [0x144C9]={ category="lo", - description="BAMUM LETTER PHASE-C KET", + description="ANATOLIAN HIEROGLYPH A174", direction="l", linebreak="al", - unicodeslot=0x168C9, + unicodeslot=0x144C9, }, - [0x168CA]={ + [0x144CA]={ category="lo", - description="BAMUM LETTER PHASE-C NGGU", + description="ANATOLIAN HIEROGLYPH A175", direction="l", linebreak="al", - unicodeslot=0x168CA, + unicodeslot=0x144CA, }, - [0x168CB]={ + [0x144CB]={ category="lo", - description="BAMUM LETTER PHASE-C MAESI", + description="ANATOLIAN HIEROGLYPH A176", direction="l", linebreak="al", - unicodeslot=0x168CB, + unicodeslot=0x144CB, }, - [0x168CC]={ + [0x144CC]={ category="lo", - description="BAMUM LETTER PHASE-C MBUAEM", + description="ANATOLIAN HIEROGLYPH A177", direction="l", linebreak="al", - unicodeslot=0x168CC, + unicodeslot=0x144CC, }, - [0x168CD]={ + [0x144CD]={ category="lo", - description="BAMUM LETTER PHASE-C LU", + description="ANATOLIAN HIEROGLYPH A178", direction="l", linebreak="al", - unicodeslot=0x168CD, + unicodeslot=0x144CD, }, - [0x168CE]={ + [0x144CE]={ category="lo", - description="BAMUM LETTER PHASE-C KUT", + description="ANATOLIAN HIEROGLYPH A179", direction="l", linebreak="al", - unicodeslot=0x168CE, + unicodeslot=0x144CE, }, - [0x168CF]={ + [0x144CF]={ category="lo", - description="BAMUM LETTER PHASE-C NJAM", + description="ANATOLIAN HIEROGLYPH A180", direction="l", linebreak="al", - unicodeslot=0x168CF, + unicodeslot=0x144CF, }, - [0x168D0]={ + [0x144D0]={ category="lo", - description="BAMUM LETTER PHASE-C NGOM", + description="ANATOLIAN HIEROGLYPH A181", direction="l", linebreak="al", - unicodeslot=0x168D0, + unicodeslot=0x144D0, }, - [0x168D1]={ + [0x144D1]={ category="lo", - description="BAMUM LETTER PHASE-C WUP", + description="ANATOLIAN HIEROGLYPH A182", direction="l", linebreak="al", - unicodeslot=0x168D1, + unicodeslot=0x144D1, }, - [0x168D2]={ + [0x144D2]={ category="lo", - description="BAMUM LETTER PHASE-C NGGUEET", + description="ANATOLIAN HIEROGLYPH A183", direction="l", linebreak="al", - unicodeslot=0x168D2, + unicodeslot=0x144D2, }, - [0x168D3]={ + [0x144D3]={ category="lo", - description="BAMUM LETTER PHASE-C NSOM", + description="ANATOLIAN HIEROGLYPH A184", direction="l", linebreak="al", - unicodeslot=0x168D3, + unicodeslot=0x144D3, }, - [0x168D4]={ + [0x144D4]={ category="lo", - description="BAMUM LETTER PHASE-C NTEN", + description="ANATOLIAN HIEROGLYPH A185", direction="l", linebreak="al", - unicodeslot=0x168D4, + unicodeslot=0x144D4, }, - [0x168D5]={ + [0x144D5]={ category="lo", - description="BAMUM LETTER PHASE-C KUOP NKAARAE", + description="ANATOLIAN HIEROGLYPH A186", direction="l", linebreak="al", - unicodeslot=0x168D5, + unicodeslot=0x144D5, }, - [0x168D6]={ + [0x144D6]={ category="lo", - description="BAMUM LETTER PHASE-C NSUN", + description="ANATOLIAN HIEROGLYPH A187", direction="l", linebreak="al", - unicodeslot=0x168D6, + unicodeslot=0x144D6, }, - [0x168D7]={ + [0x144D7]={ category="lo", - description="BAMUM LETTER PHASE-C NDAM", + description="ANATOLIAN HIEROGLYPH A188", direction="l", linebreak="al", - unicodeslot=0x168D7, + unicodeslot=0x144D7, }, - [0x168D8]={ + [0x144D8]={ category="lo", - description="BAMUM LETTER PHASE-C MA NSIEE", + description="ANATOLIAN HIEROGLYPH A189", direction="l", linebreak="al", - unicodeslot=0x168D8, + unicodeslot=0x144D8, }, - [0x168D9]={ + [0x144D9]={ category="lo", - description="BAMUM LETTER PHASE-C YAA", + description="ANATOLIAN HIEROGLYPH A190", direction="l", linebreak="al", - unicodeslot=0x168D9, + unicodeslot=0x144D9, }, - [0x168DA]={ + [0x144DA]={ category="lo", - description="BAMUM LETTER PHASE-C NDAP", + description="ANATOLIAN HIEROGLYPH A191", direction="l", linebreak="al", - unicodeslot=0x168DA, + unicodeslot=0x144DA, }, - [0x168DB]={ + [0x144DB]={ category="lo", - description="BAMUM LETTER PHASE-C SHUEQ", + description="ANATOLIAN HIEROGLYPH A192", direction="l", linebreak="al", - unicodeslot=0x168DB, + unicodeslot=0x144DB, }, - [0x168DC]={ + [0x144DC]={ category="lo", - description="BAMUM LETTER PHASE-C SETFON", + description="ANATOLIAN HIEROGLYPH A193", direction="l", linebreak="al", - unicodeslot=0x168DC, + unicodeslot=0x144DC, }, - [0x168DD]={ + [0x144DD]={ category="lo", - description="BAMUM LETTER PHASE-C MBI", + description="ANATOLIAN HIEROGLYPH A194", direction="l", linebreak="al", - unicodeslot=0x168DD, + unicodeslot=0x144DD, }, - [0x168DE]={ + [0x144DE]={ category="lo", - description="BAMUM LETTER PHASE-C MAEMBA", + description="ANATOLIAN HIEROGLYPH A195", direction="l", linebreak="al", - unicodeslot=0x168DE, + unicodeslot=0x144DE, }, - [0x168DF]={ + [0x144DF]={ category="lo", - description="BAMUM LETTER PHASE-C MBANYI", + description="ANATOLIAN HIEROGLYPH A196", direction="l", linebreak="al", - unicodeslot=0x168DF, + unicodeslot=0x144DF, }, - [0x168E0]={ + [0x144E0]={ category="lo", - description="BAMUM LETTER PHASE-C KEUSEUX", + description="ANATOLIAN HIEROGLYPH A197", direction="l", linebreak="al", - unicodeslot=0x168E0, + unicodeslot=0x144E0, }, - [0x168E1]={ + [0x144E1]={ category="lo", - description="BAMUM LETTER PHASE-C MBEUX", + description="ANATOLIAN HIEROGLYPH A198", direction="l", linebreak="al", - unicodeslot=0x168E1, + unicodeslot=0x144E1, }, - [0x168E2]={ + [0x144E2]={ category="lo", - description="BAMUM LETTER PHASE-C KEUM", + description="ANATOLIAN HIEROGLYPH A199", direction="l", linebreak="al", - unicodeslot=0x168E2, + unicodeslot=0x144E2, }, - [0x168E3]={ + [0x144E3]={ category="lo", - description="BAMUM LETTER PHASE-C MBAA PICKET", + description="ANATOLIAN HIEROGLYPH A200", direction="l", linebreak="al", - unicodeslot=0x168E3, + unicodeslot=0x144E3, }, - [0x168E4]={ + [0x144E4]={ category="lo", - description="BAMUM LETTER PHASE-C YUWOQ", + description="ANATOLIAN HIEROGLYPH A201", direction="l", linebreak="al", - unicodeslot=0x168E4, + unicodeslot=0x144E4, }, - [0x168E5]={ + [0x144E5]={ category="lo", - description="BAMUM LETTER PHASE-C NJEUX", + description="ANATOLIAN HIEROGLYPH A202", direction="l", linebreak="al", - unicodeslot=0x168E5, + unicodeslot=0x144E5, }, - [0x168E6]={ + [0x144E6]={ category="lo", - description="BAMUM LETTER PHASE-C MIEE", + description="ANATOLIAN HIEROGLYPH A202A", direction="l", linebreak="al", - unicodeslot=0x168E6, + unicodeslot=0x144E6, }, - [0x168E7]={ + [0x144E7]={ category="lo", - description="BAMUM LETTER PHASE-C MUAE", + description="ANATOLIAN HIEROGLYPH A202B", direction="l", linebreak="al", - unicodeslot=0x168E7, + unicodeslot=0x144E7, }, - [0x168E8]={ + [0x144E8]={ category="lo", - description="BAMUM LETTER PHASE-C SHIQ", + description="ANATOLIAN HIEROGLYPH A203", direction="l", linebreak="al", - unicodeslot=0x168E8, + unicodeslot=0x144E8, }, - [0x168E9]={ + [0x144E9]={ category="lo", - description="BAMUM LETTER PHASE-C KEN LAW", + description="ANATOLIAN HIEROGLYPH A204", direction="l", linebreak="al", - unicodeslot=0x168E9, + unicodeslot=0x144E9, }, - [0x168EA]={ + [0x144EA]={ category="lo", - description="BAMUM LETTER PHASE-C KEN FATIGUE", + description="ANATOLIAN HIEROGLYPH A205", direction="l", linebreak="al", - unicodeslot=0x168EA, + unicodeslot=0x144EA, }, - [0x168EB]={ + [0x144EB]={ category="lo", - description="BAMUM LETTER PHASE-C NGAQ", + description="ANATOLIAN HIEROGLYPH A206", direction="l", linebreak="al", - unicodeslot=0x168EB, + unicodeslot=0x144EB, }, - [0x168EC]={ + [0x144EC]={ category="lo", - description="BAMUM LETTER PHASE-C NAQ", + description="ANATOLIAN HIEROGLYPH A207", direction="l", linebreak="al", - unicodeslot=0x168EC, + unicodeslot=0x144EC, }, - [0x168ED]={ + [0x144ED]={ category="lo", - description="BAMUM LETTER PHASE-C LIQ", + description="ANATOLIAN HIEROGLYPH A207A", direction="l", linebreak="al", - unicodeslot=0x168ED, + unicodeslot=0x144ED, }, - [0x168EE]={ + [0x144EE]={ category="lo", - description="BAMUM LETTER PHASE-C PIN", + description="ANATOLIAN HIEROGLYPH A208", direction="l", linebreak="al", - unicodeslot=0x168EE, + unicodeslot=0x144EE, }, - [0x168EF]={ + [0x144EF]={ category="lo", - description="BAMUM LETTER PHASE-C PEN", + description="ANATOLIAN HIEROGLYPH A209", direction="l", linebreak="al", - unicodeslot=0x168EF, + unicodeslot=0x144EF, }, - [0x168F0]={ + [0x144F0]={ category="lo", - description="BAMUM LETTER PHASE-C TET", + description="ANATOLIAN HIEROGLYPH A209A", direction="l", linebreak="al", - unicodeslot=0x168F0, + unicodeslot=0x144F0, }, - [0x168F1]={ + [0x144F1]={ category="lo", - description="BAMUM LETTER PHASE-D MBUO", + description="ANATOLIAN HIEROGLYPH A210", direction="l", linebreak="al", - unicodeslot=0x168F1, + unicodeslot=0x144F1, }, - [0x168F2]={ + [0x144F2]={ category="lo", - description="BAMUM LETTER PHASE-D WAP", + description="ANATOLIAN HIEROGLYPH A211", direction="l", linebreak="al", - unicodeslot=0x168F2, + unicodeslot=0x144F2, }, - [0x168F3]={ + [0x144F3]={ category="lo", - description="BAMUM LETTER PHASE-D NJI", + description="ANATOLIAN HIEROGLYPH A212", direction="l", linebreak="al", - unicodeslot=0x168F3, + unicodeslot=0x144F3, }, - [0x168F4]={ + [0x144F4]={ category="lo", - description="BAMUM LETTER PHASE-D MFON", + description="ANATOLIAN HIEROGLYPH A213", direction="l", linebreak="al", - unicodeslot=0x168F4, + unicodeslot=0x144F4, }, - [0x168F5]={ + [0x144F5]={ category="lo", - description="BAMUM LETTER PHASE-D NJIEE", + description="ANATOLIAN HIEROGLYPH A214", direction="l", linebreak="al", - unicodeslot=0x168F5, + unicodeslot=0x144F5, }, - [0x168F6]={ + [0x144F6]={ category="lo", - description="BAMUM LETTER PHASE-D LIEE", + description="ANATOLIAN HIEROGLYPH A215", direction="l", linebreak="al", - unicodeslot=0x168F6, + unicodeslot=0x144F6, }, - [0x168F7]={ + [0x144F7]={ category="lo", - description="BAMUM LETTER PHASE-D NJEUT", + description="ANATOLIAN HIEROGLYPH A215A", direction="l", linebreak="al", - unicodeslot=0x168F7, + unicodeslot=0x144F7, }, - [0x168F8]={ + [0x144F8]={ category="lo", - description="BAMUM LETTER PHASE-D NSHEE", + description="ANATOLIAN HIEROGLYPH A216", direction="l", linebreak="al", - unicodeslot=0x168F8, + unicodeslot=0x144F8, }, - [0x168F9]={ + [0x144F9]={ category="lo", - description="BAMUM LETTER PHASE-D NGGAAMAE", + description="ANATOLIAN HIEROGLYPH A216A", direction="l", linebreak="al", - unicodeslot=0x168F9, + unicodeslot=0x144F9, }, - [0x168FA]={ + [0x144FA]={ category="lo", - description="BAMUM LETTER PHASE-D NYAM", + description="ANATOLIAN HIEROGLYPH A217", direction="l", linebreak="al", - unicodeslot=0x168FA, + unicodeslot=0x144FA, }, - [0x168FB]={ + [0x144FB]={ category="lo", - description="BAMUM LETTER PHASE-D WUAEN", + description="ANATOLIAN HIEROGLYPH A218", direction="l", linebreak="al", - unicodeslot=0x168FB, + unicodeslot=0x144FB, }, - [0x168FC]={ + [0x144FC]={ category="lo", - description="BAMUM LETTER PHASE-D NGKUN", + description="ANATOLIAN HIEROGLYPH A219", direction="l", linebreak="al", - unicodeslot=0x168FC, + unicodeslot=0x144FC, }, - [0x168FD]={ + [0x144FD]={ category="lo", - description="BAMUM LETTER PHASE-D SHEE", + description="ANATOLIAN HIEROGLYPH A220", direction="l", linebreak="al", - unicodeslot=0x168FD, + unicodeslot=0x144FD, }, - [0x168FE]={ + [0x144FE]={ category="lo", - description="BAMUM LETTER PHASE-D NGKAP", + description="ANATOLIAN HIEROGLYPH A221", direction="l", linebreak="al", - unicodeslot=0x168FE, + unicodeslot=0x144FE, }, - [0x168FF]={ + [0x144FF]={ category="lo", - description="BAMUM LETTER PHASE-D KEUAETMEUN", + description="ANATOLIAN HIEROGLYPH A222", direction="l", linebreak="al", - unicodeslot=0x168FF, + unicodeslot=0x144FF, }, - [0x16900]={ + [0x14500]={ category="lo", - description="BAMUM LETTER PHASE-D TEUT", + description="ANATOLIAN HIEROGLYPH A223", direction="l", linebreak="al", - unicodeslot=0x16900, + unicodeslot=0x14500, }, - [0x16901]={ + [0x14501]={ category="lo", - description="BAMUM LETTER PHASE-D SHEUAE", + description="ANATOLIAN HIEROGLYPH A224", direction="l", linebreak="al", - unicodeslot=0x16901, + unicodeslot=0x14501, }, - [0x16902]={ + [0x14502]={ category="lo", - description="BAMUM LETTER PHASE-D NJAP", + description="ANATOLIAN HIEROGLYPH A225", direction="l", linebreak="al", - unicodeslot=0x16902, + unicodeslot=0x14502, }, - [0x16903]={ + [0x14503]={ category="lo", - description="BAMUM LETTER PHASE-D SUE", + description="ANATOLIAN HIEROGLYPH A226", direction="l", linebreak="al", - unicodeslot=0x16903, + unicodeslot=0x14503, }, - [0x16904]={ + [0x14504]={ category="lo", - description="BAMUM LETTER PHASE-D KET", + description="ANATOLIAN HIEROGLYPH A227", direction="l", linebreak="al", - unicodeslot=0x16904, + unicodeslot=0x14504, }, - [0x16905]={ + [0x14505]={ category="lo", - description="BAMUM LETTER PHASE-D YAEMMAE", + description="ANATOLIAN HIEROGLYPH A227A", direction="l", linebreak="al", - unicodeslot=0x16905, + unicodeslot=0x14505, }, - [0x16906]={ + [0x14506]={ category="lo", - description="BAMUM LETTER PHASE-D KUOM", + description="ANATOLIAN HIEROGLYPH A228", direction="l", linebreak="al", - unicodeslot=0x16906, + unicodeslot=0x14506, }, - [0x16907]={ + [0x14507]={ category="lo", - description="BAMUM LETTER PHASE-D SAP", + description="ANATOLIAN HIEROGLYPH A229", direction="l", linebreak="al", - unicodeslot=0x16907, + unicodeslot=0x14507, }, - [0x16908]={ + [0x14508]={ category="lo", - description="BAMUM LETTER PHASE-D MFEUT", + description="ANATOLIAN HIEROGLYPH A230", direction="l", linebreak="al", - unicodeslot=0x16908, + unicodeslot=0x14508, }, - [0x16909]={ + [0x14509]={ category="lo", - description="BAMUM LETTER PHASE-D NDEUX", + description="ANATOLIAN HIEROGLYPH A231", direction="l", linebreak="al", - unicodeslot=0x16909, + unicodeslot=0x14509, }, - [0x1690A]={ + [0x1450A]={ category="lo", - description="BAMUM LETTER PHASE-D MALEERI", + description="ANATOLIAN HIEROGLYPH A232", direction="l", linebreak="al", - unicodeslot=0x1690A, + unicodeslot=0x1450A, }, - [0x1690B]={ + [0x1450B]={ category="lo", - description="BAMUM LETTER PHASE-D MEUT", + description="ANATOLIAN HIEROGLYPH A233", direction="l", linebreak="al", - unicodeslot=0x1690B, + unicodeslot=0x1450B, }, - [0x1690C]={ + [0x1450C]={ category="lo", - description="BAMUM LETTER PHASE-D SEUAEQ", + description="ANATOLIAN HIEROGLYPH A234", direction="l", linebreak="al", - unicodeslot=0x1690C, + unicodeslot=0x1450C, }, - [0x1690D]={ + [0x1450D]={ category="lo", - description="BAMUM LETTER PHASE-D YEN", + description="ANATOLIAN HIEROGLYPH A235", direction="l", linebreak="al", - unicodeslot=0x1690D, + unicodeslot=0x1450D, }, - [0x1690E]={ + [0x1450E]={ category="lo", - description="BAMUM LETTER PHASE-D NJEUAEM", + description="ANATOLIAN HIEROGLYPH A236", direction="l", linebreak="al", - unicodeslot=0x1690E, + unicodeslot=0x1450E, }, - [0x1690F]={ + [0x1450F]={ category="lo", - description="BAMUM LETTER PHASE-D KEUOT MBUAE", + description="ANATOLIAN HIEROGLYPH A237", direction="l", linebreak="al", - unicodeslot=0x1690F, + unicodeslot=0x1450F, }, - [0x16910]={ + [0x14510]={ category="lo", - description="BAMUM LETTER PHASE-D NGKEURI", + description="ANATOLIAN HIEROGLYPH A238", direction="l", linebreak="al", - unicodeslot=0x16910, + unicodeslot=0x14510, }, - [0x16911]={ + [0x14511]={ category="lo", - description="BAMUM LETTER PHASE-D TU", + description="ANATOLIAN HIEROGLYPH A239", direction="l", linebreak="al", - unicodeslot=0x16911, + unicodeslot=0x14511, }, - [0x16912]={ + [0x14512]={ category="lo", - description="BAMUM LETTER PHASE-D GHAA", + description="ANATOLIAN HIEROGLYPH A240", direction="l", linebreak="al", - unicodeslot=0x16912, + unicodeslot=0x14512, }, - [0x16913]={ + [0x14513]={ category="lo", - description="BAMUM LETTER PHASE-D NGKYEE", + description="ANATOLIAN HIEROGLYPH A241", direction="l", linebreak="al", - unicodeslot=0x16913, + unicodeslot=0x14513, }, - [0x16914]={ + [0x14514]={ category="lo", - description="BAMUM LETTER PHASE-D FEUFEUAET", + description="ANATOLIAN HIEROGLYPH A242", direction="l", linebreak="al", - unicodeslot=0x16914, + unicodeslot=0x14514, }, - [0x16915]={ + [0x14515]={ category="lo", - description="BAMUM LETTER PHASE-D NDEE", + description="ANATOLIAN HIEROGLYPH A243", direction="l", linebreak="al", - unicodeslot=0x16915, + unicodeslot=0x14515, }, - [0x16916]={ + [0x14516]={ category="lo", - description="BAMUM LETTER PHASE-D MGBOFUM", + description="ANATOLIAN HIEROGLYPH A244", direction="l", linebreak="al", - unicodeslot=0x16916, + unicodeslot=0x14516, }, - [0x16917]={ + [0x14517]={ category="lo", - description="BAMUM LETTER PHASE-D LEUAEP", + description="ANATOLIAN HIEROGLYPH A245", direction="l", linebreak="al", - unicodeslot=0x16917, + unicodeslot=0x14517, }, - [0x16918]={ + [0x14518]={ category="lo", - description="BAMUM LETTER PHASE-D NDON", + description="ANATOLIAN HIEROGLYPH A246", direction="l", linebreak="al", - unicodeslot=0x16918, + unicodeslot=0x14518, }, - [0x16919]={ + [0x14519]={ category="lo", - description="BAMUM LETTER PHASE-D MONI", + description="ANATOLIAN HIEROGLYPH A247", direction="l", linebreak="al", - unicodeslot=0x16919, + unicodeslot=0x14519, }, - [0x1691A]={ + [0x1451A]={ category="lo", - description="BAMUM LETTER PHASE-D MGBEUN", + description="ANATOLIAN HIEROGLYPH A248", direction="l", linebreak="al", - unicodeslot=0x1691A, + unicodeslot=0x1451A, }, - [0x1691B]={ + [0x1451B]={ category="lo", - description="BAMUM LETTER PHASE-D PUUT", + description="ANATOLIAN HIEROGLYPH A249", direction="l", linebreak="al", - unicodeslot=0x1691B, + unicodeslot=0x1451B, }, - [0x1691C]={ + [0x1451C]={ category="lo", - description="BAMUM LETTER PHASE-D MGBIEE", + description="ANATOLIAN HIEROGLYPH A250", direction="l", linebreak="al", - unicodeslot=0x1691C, + unicodeslot=0x1451C, }, - [0x1691D]={ + [0x1451D]={ category="lo", - description="BAMUM LETTER PHASE-D MFO", + description="ANATOLIAN HIEROGLYPH A251", direction="l", linebreak="al", - unicodeslot=0x1691D, + unicodeslot=0x1451D, }, - [0x1691E]={ + [0x1451E]={ category="lo", - description="BAMUM LETTER PHASE-D LUM", + description="ANATOLIAN HIEROGLYPH A252", direction="l", linebreak="al", - unicodeslot=0x1691E, + unicodeslot=0x1451E, }, - [0x1691F]={ + [0x1451F]={ category="lo", - description="BAMUM LETTER PHASE-D NSIEEP", + description="ANATOLIAN HIEROGLYPH A253", direction="l", linebreak="al", - unicodeslot=0x1691F, + unicodeslot=0x1451F, }, - [0x16920]={ + [0x14520]={ category="lo", - description="BAMUM LETTER PHASE-D MBAA", + description="ANATOLIAN HIEROGLYPH A254", direction="l", linebreak="al", - unicodeslot=0x16920, + unicodeslot=0x14520, }, - [0x16921]={ + [0x14521]={ category="lo", - description="BAMUM LETTER PHASE-D KWAET", + description="ANATOLIAN HIEROGLYPH A255", direction="l", linebreak="al", - unicodeslot=0x16921, + unicodeslot=0x14521, }, - [0x16922]={ + [0x14522]={ category="lo", - description="BAMUM LETTER PHASE-D NYET", + description="ANATOLIAN HIEROGLYPH A256", direction="l", linebreak="al", - unicodeslot=0x16922, + unicodeslot=0x14522, }, - [0x16923]={ + [0x14523]={ category="lo", - description="BAMUM LETTER PHASE-D TEUAEN", + description="ANATOLIAN HIEROGLYPH A257", direction="l", linebreak="al", - unicodeslot=0x16923, + unicodeslot=0x14523, }, - [0x16924]={ + [0x14524]={ category="lo", - description="BAMUM LETTER PHASE-D SOT", + description="ANATOLIAN HIEROGLYPH A258", direction="l", linebreak="al", - unicodeslot=0x16924, + unicodeslot=0x14524, }, - [0x16925]={ + [0x14525]={ category="lo", - description="BAMUM LETTER PHASE-D YUWOQ", + description="ANATOLIAN HIEROGLYPH A259", direction="l", linebreak="al", - unicodeslot=0x16925, + unicodeslot=0x14525, }, - [0x16926]={ + [0x14526]={ category="lo", - description="BAMUM LETTER PHASE-D KEUM", + description="ANATOLIAN HIEROGLYPH A260", direction="l", linebreak="al", - unicodeslot=0x16926, + unicodeslot=0x14526, }, - [0x16927]={ + [0x14527]={ category="lo", - description="BAMUM LETTER PHASE-D RAEM", + description="ANATOLIAN HIEROGLYPH A261", direction="l", linebreak="al", - unicodeslot=0x16927, + unicodeslot=0x14527, }, - [0x16928]={ + [0x14528]={ category="lo", - description="BAMUM LETTER PHASE-D TEEEE", + description="ANATOLIAN HIEROGLYPH A262", direction="l", linebreak="al", - unicodeslot=0x16928, + unicodeslot=0x14528, }, - [0x16929]={ + [0x14529]={ category="lo", - description="BAMUM LETTER PHASE-D NGKEUAEQ", + description="ANATOLIAN HIEROGLYPH A263", direction="l", linebreak="al", - unicodeslot=0x16929, + unicodeslot=0x14529, }, - [0x1692A]={ + [0x1452A]={ category="lo", - description="BAMUM LETTER PHASE-D MFEUAE", + description="ANATOLIAN HIEROGLYPH A264", direction="l", linebreak="al", - unicodeslot=0x1692A, + unicodeslot=0x1452A, }, - [0x1692B]={ + [0x1452B]={ category="lo", - description="BAMUM LETTER PHASE-D NSIEET", + description="ANATOLIAN HIEROGLYPH A265", direction="l", linebreak="al", - unicodeslot=0x1692B, + unicodeslot=0x1452B, }, - [0x1692C]={ + [0x1452C]={ category="lo", - description="BAMUM LETTER PHASE-D KEUP", + description="ANATOLIAN HIEROGLYPH A266", direction="l", linebreak="al", - unicodeslot=0x1692C, + unicodeslot=0x1452C, }, - [0x1692D]={ + [0x1452D]={ category="lo", - description="BAMUM LETTER PHASE-D PIP", + description="ANATOLIAN HIEROGLYPH A267", direction="l", linebreak="al", - unicodeslot=0x1692D, + unicodeslot=0x1452D, }, - [0x1692E]={ + [0x1452E]={ category="lo", - description="BAMUM LETTER PHASE-D PEUTAE", + description="ANATOLIAN HIEROGLYPH A267A", direction="l", linebreak="al", - unicodeslot=0x1692E, + unicodeslot=0x1452E, }, - [0x1692F]={ + [0x1452F]={ category="lo", - description="BAMUM LETTER PHASE-D NYUE", + description="ANATOLIAN HIEROGLYPH A268", direction="l", linebreak="al", - unicodeslot=0x1692F, + unicodeslot=0x1452F, }, - [0x16930]={ + [0x14530]={ category="lo", - description="BAMUM LETTER PHASE-D LET", + description="ANATOLIAN HIEROGLYPH A269", direction="l", linebreak="al", - unicodeslot=0x16930, + unicodeslot=0x14530, }, - [0x16931]={ + [0x14531]={ category="lo", - description="BAMUM LETTER PHASE-D NGGAAM", + description="ANATOLIAN HIEROGLYPH A270", direction="l", linebreak="al", - unicodeslot=0x16931, + unicodeslot=0x14531, }, - [0x16932]={ + [0x14532]={ category="lo", - description="BAMUM LETTER PHASE-D MFIEE", + description="ANATOLIAN HIEROGLYPH A271", direction="l", linebreak="al", - unicodeslot=0x16932, + unicodeslot=0x14532, }, - [0x16933]={ + [0x14533]={ category="lo", - description="BAMUM LETTER PHASE-D NGGWAEN", + description="ANATOLIAN HIEROGLYPH A272", direction="l", linebreak="al", - unicodeslot=0x16933, + unicodeslot=0x14533, }, - [0x16934]={ + [0x14534]={ category="lo", - description="BAMUM LETTER PHASE-D YUOM", + description="ANATOLIAN HIEROGLYPH A273", direction="l", linebreak="al", - unicodeslot=0x16934, + unicodeslot=0x14534, }, - [0x16935]={ + [0x14535]={ category="lo", - description="BAMUM LETTER PHASE-D PAP", + description="ANATOLIAN HIEROGLYPH A274", direction="l", linebreak="al", - unicodeslot=0x16935, + unicodeslot=0x14535, }, - [0x16936]={ + [0x14536]={ category="lo", - description="BAMUM LETTER PHASE-D YUOP", + description="ANATOLIAN HIEROGLYPH A275", direction="l", linebreak="al", - unicodeslot=0x16936, + unicodeslot=0x14536, }, - [0x16937]={ + [0x14537]={ category="lo", - description="BAMUM LETTER PHASE-D NDAM", + description="ANATOLIAN HIEROGLYPH A276", direction="l", linebreak="al", - unicodeslot=0x16937, + unicodeslot=0x14537, }, - [0x16938]={ + [0x14538]={ category="lo", - description="BAMUM LETTER PHASE-D NTEUM", + description="ANATOLIAN HIEROGLYPH A277", direction="l", linebreak="al", - unicodeslot=0x16938, + unicodeslot=0x14538, }, - [0x16939]={ + [0x14539]={ category="lo", - description="BAMUM LETTER PHASE-D SUAE", + description="ANATOLIAN HIEROGLYPH A278", direction="l", linebreak="al", - unicodeslot=0x16939, + unicodeslot=0x14539, }, - [0x1693A]={ + [0x1453A]={ category="lo", - description="BAMUM LETTER PHASE-D KUN", + description="ANATOLIAN HIEROGLYPH A279", direction="l", linebreak="al", - unicodeslot=0x1693A, + unicodeslot=0x1453A, }, - [0x1693B]={ + [0x1453B]={ category="lo", - description="BAMUM LETTER PHASE-D NGGEUX", + description="ANATOLIAN HIEROGLYPH A280", direction="l", linebreak="al", - unicodeslot=0x1693B, + unicodeslot=0x1453B, }, - [0x1693C]={ + [0x1453C]={ category="lo", - description="BAMUM LETTER PHASE-D NGKIEE", + description="ANATOLIAN HIEROGLYPH A281", direction="l", linebreak="al", - unicodeslot=0x1693C, + unicodeslot=0x1453C, }, - [0x1693D]={ + [0x1453D]={ category="lo", - description="BAMUM LETTER PHASE-D TUOT", + description="ANATOLIAN HIEROGLYPH A282", direction="l", linebreak="al", - unicodeslot=0x1693D, + unicodeslot=0x1453D, }, - [0x1693E]={ + [0x1453E]={ category="lo", - description="BAMUM LETTER PHASE-D MEUN", + description="ANATOLIAN HIEROGLYPH A283", direction="l", linebreak="al", - unicodeslot=0x1693E, + unicodeslot=0x1453E, }, - [0x1693F]={ + [0x1453F]={ category="lo", - description="BAMUM LETTER PHASE-D KUQ", + description="ANATOLIAN HIEROGLYPH A284", direction="l", linebreak="al", - unicodeslot=0x1693F, + unicodeslot=0x1453F, }, - [0x16940]={ + [0x14540]={ category="lo", - description="BAMUM LETTER PHASE-D NSUM", + description="ANATOLIAN HIEROGLYPH A285", direction="l", linebreak="al", - unicodeslot=0x16940, + unicodeslot=0x14540, }, - [0x16941]={ + [0x14541]={ category="lo", - description="BAMUM LETTER PHASE-D TEUN", + description="ANATOLIAN HIEROGLYPH A286", direction="l", linebreak="al", - unicodeslot=0x16941, + unicodeslot=0x14541, }, - [0x16942]={ + [0x14542]={ category="lo", - description="BAMUM LETTER PHASE-D MAENJET", + description="ANATOLIAN HIEROGLYPH A287", direction="l", linebreak="al", - unicodeslot=0x16942, + unicodeslot=0x14542, }, - [0x16943]={ + [0x14543]={ category="lo", - description="BAMUM LETTER PHASE-D NGGAP", + description="ANATOLIAN HIEROGLYPH A288", direction="l", linebreak="al", - unicodeslot=0x16943, + unicodeslot=0x14543, }, - [0x16944]={ + [0x14544]={ category="lo", - description="BAMUM LETTER PHASE-D LEUM", + description="ANATOLIAN HIEROGLYPH A289", direction="l", linebreak="al", - unicodeslot=0x16944, + unicodeslot=0x14544, }, - [0x16945]={ + [0x14545]={ category="lo", - description="BAMUM LETTER PHASE-D NGGUOM", + description="ANATOLIAN HIEROGLYPH A289A", direction="l", linebreak="al", - unicodeslot=0x16945, + unicodeslot=0x14545, }, - [0x16946]={ + [0x14546]={ category="lo", - description="BAMUM LETTER PHASE-D NSHUT", + description="ANATOLIAN HIEROGLYPH A290", direction="l", linebreak="al", - unicodeslot=0x16946, + unicodeslot=0x14546, }, - [0x16947]={ + [0x14547]={ category="lo", - description="BAMUM LETTER PHASE-D NJUEQ", + description="ANATOLIAN HIEROGLYPH A291", direction="l", linebreak="al", - unicodeslot=0x16947, + unicodeslot=0x14547, }, - [0x16948]={ + [0x14548]={ category="lo", - description="BAMUM LETTER PHASE-D GHEUAE", + description="ANATOLIAN HIEROGLYPH A292", direction="l", linebreak="al", - unicodeslot=0x16948, + unicodeslot=0x14548, }, - [0x16949]={ + [0x14549]={ category="lo", - description="BAMUM LETTER PHASE-D KU", + description="ANATOLIAN HIEROGLYPH A293", direction="l", linebreak="al", - unicodeslot=0x16949, + unicodeslot=0x14549, }, - [0x1694A]={ + [0x1454A]={ category="lo", - description="BAMUM LETTER PHASE-D REN OLD", + description="ANATOLIAN HIEROGLYPH A294", direction="l", linebreak="al", - unicodeslot=0x1694A, + unicodeslot=0x1454A, }, - [0x1694B]={ + [0x1454B]={ category="lo", - description="BAMUM LETTER PHASE-D TAE", + description="ANATOLIAN HIEROGLYPH A294A", direction="l", linebreak="al", - unicodeslot=0x1694B, + unicodeslot=0x1454B, }, - [0x1694C]={ + [0x1454C]={ category="lo", - description="BAMUM LETTER PHASE-D TOQ", + description="ANATOLIAN HIEROGLYPH A295", direction="l", linebreak="al", - unicodeslot=0x1694C, + unicodeslot=0x1454C, }, - [0x1694D]={ + [0x1454D]={ category="lo", - description="BAMUM LETTER PHASE-D NYI", + description="ANATOLIAN HIEROGLYPH A296", direction="l", linebreak="al", - unicodeslot=0x1694D, + unicodeslot=0x1454D, }, - [0x1694E]={ + [0x1454E]={ category="lo", - description="BAMUM LETTER PHASE-D RII", + description="ANATOLIAN HIEROGLYPH A297", direction="l", linebreak="al", - unicodeslot=0x1694E, + unicodeslot=0x1454E, }, - [0x1694F]={ + [0x1454F]={ category="lo", - description="BAMUM LETTER PHASE-D LEEEE", + description="ANATOLIAN HIEROGLYPH A298", direction="l", linebreak="al", - unicodeslot=0x1694F, + unicodeslot=0x1454F, }, - [0x16950]={ + [0x14550]={ category="lo", - description="BAMUM LETTER PHASE-D MEEEE", + description="ANATOLIAN HIEROGLYPH A299", direction="l", linebreak="al", - unicodeslot=0x16950, + unicodeslot=0x14550, }, - [0x16951]={ + [0x14551]={ category="lo", - description="BAMUM LETTER PHASE-D M", + description="ANATOLIAN HIEROGLYPH A299A", direction="l", linebreak="al", - unicodeslot=0x16951, + unicodeslot=0x14551, }, - [0x16952]={ + [0x14552]={ category="lo", - description="BAMUM LETTER PHASE-D SUU", + description="ANATOLIAN HIEROGLYPH A300", direction="l", linebreak="al", - unicodeslot=0x16952, + unicodeslot=0x14552, }, - [0x16953]={ + [0x14553]={ category="lo", - description="BAMUM LETTER PHASE-D MU", + description="ANATOLIAN HIEROGLYPH A301", direction="l", linebreak="al", - unicodeslot=0x16953, + unicodeslot=0x14553, }, - [0x16954]={ + [0x14554]={ category="lo", - description="BAMUM LETTER PHASE-D SHII", + description="ANATOLIAN HIEROGLYPH A302", direction="l", linebreak="al", - unicodeslot=0x16954, + unicodeslot=0x14554, }, - [0x16955]={ + [0x14555]={ category="lo", - description="BAMUM LETTER PHASE-D SHEUX", + description="ANATOLIAN HIEROGLYPH A303", direction="l", linebreak="al", - unicodeslot=0x16955, + unicodeslot=0x14555, }, - [0x16956]={ + [0x14556]={ category="lo", - description="BAMUM LETTER PHASE-D KYEE", + description="ANATOLIAN HIEROGLYPH A304", direction="l", linebreak="al", - unicodeslot=0x16956, + unicodeslot=0x14556, }, - [0x16957]={ + [0x14557]={ category="lo", - description="BAMUM LETTER PHASE-D NU", + description="ANATOLIAN HIEROGLYPH A305", direction="l", linebreak="al", - unicodeslot=0x16957, + unicodeslot=0x14557, }, - [0x16958]={ + [0x14558]={ category="lo", - description="BAMUM LETTER PHASE-D SHU", + description="ANATOLIAN HIEROGLYPH A306", direction="l", linebreak="al", - unicodeslot=0x16958, + unicodeslot=0x14558, }, - [0x16959]={ + [0x14559]={ category="lo", - description="BAMUM LETTER PHASE-D NTEE", + description="ANATOLIAN HIEROGLYPH A307", direction="l", linebreak="al", - unicodeslot=0x16959, + unicodeslot=0x14559, }, - [0x1695A]={ + [0x1455A]={ category="lo", - description="BAMUM LETTER PHASE-D PEE", + description="ANATOLIAN HIEROGLYPH A308", direction="l", linebreak="al", - unicodeslot=0x1695A, + unicodeslot=0x1455A, }, - [0x1695B]={ + [0x1455B]={ category="lo", - description="BAMUM LETTER PHASE-D NI", + description="ANATOLIAN HIEROGLYPH A309", direction="l", linebreak="al", - unicodeslot=0x1695B, + unicodeslot=0x1455B, }, - [0x1695C]={ + [0x1455C]={ category="lo", - description="BAMUM LETTER PHASE-D SHOQ", + description="ANATOLIAN HIEROGLYPH A309A", direction="l", linebreak="al", - unicodeslot=0x1695C, + unicodeslot=0x1455C, }, - [0x1695D]={ + [0x1455D]={ category="lo", - description="BAMUM LETTER PHASE-D PUQ", + description="ANATOLIAN HIEROGLYPH A310", direction="l", linebreak="al", - unicodeslot=0x1695D, + unicodeslot=0x1455D, }, - [0x1695E]={ + [0x1455E]={ category="lo", - description="BAMUM LETTER PHASE-D MVOP", + description="ANATOLIAN HIEROGLYPH A311", direction="l", linebreak="al", - unicodeslot=0x1695E, + unicodeslot=0x1455E, }, - [0x1695F]={ + [0x1455F]={ category="lo", - description="BAMUM LETTER PHASE-D LOQ", + description="ANATOLIAN HIEROGLYPH A312", direction="l", linebreak="al", - unicodeslot=0x1695F, + unicodeslot=0x1455F, }, - [0x16960]={ + [0x14560]={ category="lo", - description="BAMUM LETTER PHASE-D REN MUCH", + description="ANATOLIAN HIEROGLYPH A313", direction="l", linebreak="al", - unicodeslot=0x16960, + unicodeslot=0x14560, }, - [0x16961]={ + [0x14561]={ category="lo", - description="BAMUM LETTER PHASE-D TI", + description="ANATOLIAN HIEROGLYPH A314", direction="l", linebreak="al", - unicodeslot=0x16961, + unicodeslot=0x14561, }, - [0x16962]={ + [0x14562]={ category="lo", - description="BAMUM LETTER PHASE-D NTUU", + description="ANATOLIAN HIEROGLYPH A315", direction="l", linebreak="al", - unicodeslot=0x16962, + unicodeslot=0x14562, }, - [0x16963]={ + [0x14563]={ category="lo", - description="BAMUM LETTER PHASE-D MBAA SEVEN", + description="ANATOLIAN HIEROGLYPH A316", direction="l", linebreak="al", - unicodeslot=0x16963, + unicodeslot=0x14563, }, - [0x16964]={ + [0x14564]={ category="lo", - description="BAMUM LETTER PHASE-D SAQ", + description="ANATOLIAN HIEROGLYPH A317", direction="l", linebreak="al", - unicodeslot=0x16964, + unicodeslot=0x14564, }, - [0x16965]={ + [0x14565]={ category="lo", - description="BAMUM LETTER PHASE-D FAA", + description="ANATOLIAN HIEROGLYPH A318", direction="l", linebreak="al", - unicodeslot=0x16965, + unicodeslot=0x14565, }, - [0x16966]={ + [0x14566]={ category="lo", - description="BAMUM LETTER PHASE-E NDAP", + description="ANATOLIAN HIEROGLYPH A319", direction="l", linebreak="al", - unicodeslot=0x16966, + unicodeslot=0x14566, }, - [0x16967]={ + [0x14567]={ category="lo", - description="BAMUM LETTER PHASE-E TOON", + description="ANATOLIAN HIEROGLYPH A320", direction="l", linebreak="al", - unicodeslot=0x16967, + unicodeslot=0x14567, }, - [0x16968]={ + [0x14568]={ category="lo", - description="BAMUM LETTER PHASE-E MBEUM", + description="ANATOLIAN HIEROGLYPH A321", direction="l", linebreak="al", - unicodeslot=0x16968, + unicodeslot=0x14568, }, - [0x16969]={ + [0x14569]={ category="lo", - description="BAMUM LETTER PHASE-E LAP", + description="ANATOLIAN HIEROGLYPH A322", direction="l", linebreak="al", - unicodeslot=0x16969, + unicodeslot=0x14569, }, - [0x1696A]={ + [0x1456A]={ category="lo", - description="BAMUM LETTER PHASE-E VOM", + description="ANATOLIAN HIEROGLYPH A323", direction="l", linebreak="al", - unicodeslot=0x1696A, + unicodeslot=0x1456A, }, - [0x1696B]={ + [0x1456B]={ category="lo", - description="BAMUM LETTER PHASE-E LOON", + description="ANATOLIAN HIEROGLYPH A324", direction="l", linebreak="al", - unicodeslot=0x1696B, + unicodeslot=0x1456B, }, - [0x1696C]={ + [0x1456C]={ category="lo", - description="BAMUM LETTER PHASE-E PAA", + description="ANATOLIAN HIEROGLYPH A325", direction="l", linebreak="al", - unicodeslot=0x1696C, + unicodeslot=0x1456C, }, - [0x1696D]={ + [0x1456D]={ category="lo", - description="BAMUM LETTER PHASE-E SOM", + description="ANATOLIAN HIEROGLYPH A326", direction="l", linebreak="al", - unicodeslot=0x1696D, + unicodeslot=0x1456D, }, - [0x1696E]={ + [0x1456E]={ category="lo", - description="BAMUM LETTER PHASE-E RAQ", + description="ANATOLIAN HIEROGLYPH A327", direction="l", linebreak="al", - unicodeslot=0x1696E, + unicodeslot=0x1456E, }, - [0x1696F]={ + [0x1456F]={ category="lo", - description="BAMUM LETTER PHASE-E NSHUOP", + description="ANATOLIAN HIEROGLYPH A328", direction="l", linebreak="al", - unicodeslot=0x1696F, + unicodeslot=0x1456F, }, - [0x16970]={ + [0x14570]={ category="lo", - description="BAMUM LETTER PHASE-E NDUN", + description="ANATOLIAN HIEROGLYPH A329", direction="l", linebreak="al", - unicodeslot=0x16970, + unicodeslot=0x14570, }, - [0x16971]={ + [0x14571]={ category="lo", - description="BAMUM LETTER PHASE-E PUAE", + description="ANATOLIAN HIEROGLYPH A329A", direction="l", linebreak="al", - unicodeslot=0x16971, + unicodeslot=0x14571, }, - [0x16972]={ + [0x14572]={ category="lo", - description="BAMUM LETTER PHASE-E TAM", + description="ANATOLIAN HIEROGLYPH A330", direction="l", linebreak="al", - unicodeslot=0x16972, + unicodeslot=0x14572, }, - [0x16973]={ + [0x14573]={ category="lo", - description="BAMUM LETTER PHASE-E NGKA", + description="ANATOLIAN HIEROGLYPH A331", direction="l", linebreak="al", - unicodeslot=0x16973, + unicodeslot=0x14573, }, - [0x16974]={ + [0x14574]={ category="lo", - description="BAMUM LETTER PHASE-E KPEUX", + description="ANATOLIAN HIEROGLYPH A332A", direction="l", linebreak="al", - unicodeslot=0x16974, + unicodeslot=0x14574, }, - [0x16975]={ + [0x14575]={ category="lo", - description="BAMUM LETTER PHASE-E WUO", + description="ANATOLIAN HIEROGLYPH A332B", direction="l", linebreak="al", - unicodeslot=0x16975, + unicodeslot=0x14575, }, - [0x16976]={ + [0x14576]={ category="lo", - description="BAMUM LETTER PHASE-E SEE", + description="ANATOLIAN HIEROGLYPH A332C", direction="l", linebreak="al", - unicodeslot=0x16976, + unicodeslot=0x14576, }, - [0x16977]={ + [0x14577]={ category="lo", - description="BAMUM LETTER PHASE-E NGGEUAET", + description="ANATOLIAN HIEROGLYPH A333", direction="l", linebreak="al", - unicodeslot=0x16977, + unicodeslot=0x14577, }, - [0x16978]={ + [0x14578]={ category="lo", - description="BAMUM LETTER PHASE-E PAAM", + description="ANATOLIAN HIEROGLYPH A334", direction="l", linebreak="al", - unicodeslot=0x16978, + unicodeslot=0x14578, }, - [0x16979]={ + [0x14579]={ category="lo", - description="BAMUM LETTER PHASE-E TOO", + description="ANATOLIAN HIEROGLYPH A335", direction="l", linebreak="al", - unicodeslot=0x16979, + unicodeslot=0x14579, }, - [0x1697A]={ + [0x1457A]={ category="lo", - description="BAMUM LETTER PHASE-E KUOP", + description="ANATOLIAN HIEROGLYPH A336", direction="l", linebreak="al", - unicodeslot=0x1697A, + unicodeslot=0x1457A, }, - [0x1697B]={ + [0x1457B]={ category="lo", - description="BAMUM LETTER PHASE-E LOM", + description="ANATOLIAN HIEROGLYPH A336A", direction="l", linebreak="al", - unicodeslot=0x1697B, + unicodeslot=0x1457B, }, - [0x1697C]={ + [0x1457C]={ category="lo", - description="BAMUM LETTER PHASE-E NSHIEE", + description="ANATOLIAN HIEROGLYPH A336B", direction="l", linebreak="al", - unicodeslot=0x1697C, + unicodeslot=0x1457C, }, - [0x1697D]={ + [0x1457D]={ category="lo", - description="BAMUM LETTER PHASE-E NGOP", + description="ANATOLIAN HIEROGLYPH A336C", direction="l", linebreak="al", - unicodeslot=0x1697D, + unicodeslot=0x1457D, }, - [0x1697E]={ + [0x1457E]={ category="lo", - description="BAMUM LETTER PHASE-E MAEM", + description="ANATOLIAN HIEROGLYPH A337", direction="l", linebreak="al", - unicodeslot=0x1697E, + unicodeslot=0x1457E, }, - [0x1697F]={ + [0x1457F]={ category="lo", - description="BAMUM LETTER PHASE-E NGKEUX", + description="ANATOLIAN HIEROGLYPH A338", direction="l", linebreak="al", - unicodeslot=0x1697F, + unicodeslot=0x1457F, }, - [0x16980]={ + [0x14580]={ category="lo", - description="BAMUM LETTER PHASE-E NGOQ", + description="ANATOLIAN HIEROGLYPH A339", direction="l", linebreak="al", - unicodeslot=0x16980, + unicodeslot=0x14580, }, - [0x16981]={ + [0x14581]={ category="lo", - description="BAMUM LETTER PHASE-E NSHUE", + description="ANATOLIAN HIEROGLYPH A340", direction="l", linebreak="al", - unicodeslot=0x16981, + unicodeslot=0x14581, }, - [0x16982]={ + [0x14582]={ category="lo", - description="BAMUM LETTER PHASE-E RIMGBA", + description="ANATOLIAN HIEROGLYPH A341", direction="l", linebreak="al", - unicodeslot=0x16982, + unicodeslot=0x14582, }, - [0x16983]={ + [0x14583]={ category="lo", - description="BAMUM LETTER PHASE-E NJEUX", + description="ANATOLIAN HIEROGLYPH A342", direction="l", linebreak="al", - unicodeslot=0x16983, + unicodeslot=0x14583, }, - [0x16984]={ + [0x14584]={ category="lo", - description="BAMUM LETTER PHASE-E PEEM", + description="ANATOLIAN HIEROGLYPH A343", direction="l", linebreak="al", - unicodeslot=0x16984, + unicodeslot=0x14584, }, - [0x16985]={ + [0x14585]={ category="lo", - description="BAMUM LETTER PHASE-E SAA", + description="ANATOLIAN HIEROGLYPH A344", direction="l", linebreak="al", - unicodeslot=0x16985, + unicodeslot=0x14585, }, - [0x16986]={ + [0x14586]={ category="lo", - description="BAMUM LETTER PHASE-E NGGURAE", + description="ANATOLIAN HIEROGLYPH A345", direction="l", linebreak="al", - unicodeslot=0x16986, + unicodeslot=0x14586, }, - [0x16987]={ + [0x14587]={ category="lo", - description="BAMUM LETTER PHASE-E MGBA", + description="ANATOLIAN HIEROGLYPH A346", direction="l", linebreak="al", - unicodeslot=0x16987, + unicodeslot=0x14587, }, - [0x16988]={ + [0x14588]={ category="lo", - description="BAMUM LETTER PHASE-E GHEUX", + description="ANATOLIAN HIEROGLYPH A347", direction="l", linebreak="al", - unicodeslot=0x16988, + unicodeslot=0x14588, }, - [0x16989]={ + [0x14589]={ category="lo", - description="BAMUM LETTER PHASE-E NGKEUAEM", + description="ANATOLIAN HIEROGLYPH A348", direction="l", linebreak="al", - unicodeslot=0x16989, + unicodeslot=0x14589, }, - [0x1698A]={ + [0x1458A]={ category="lo", - description="BAMUM LETTER PHASE-E NJAEMLI", + description="ANATOLIAN HIEROGLYPH A349", direction="l", linebreak="al", - unicodeslot=0x1698A, + unicodeslot=0x1458A, }, - [0x1698B]={ + [0x1458B]={ category="lo", - description="BAMUM LETTER PHASE-E MAP", + description="ANATOLIAN HIEROGLYPH A350", direction="l", linebreak="al", - unicodeslot=0x1698B, + unicodeslot=0x1458B, }, - [0x1698C]={ + [0x1458C]={ category="lo", - description="BAMUM LETTER PHASE-E LOOT", + description="ANATOLIAN HIEROGLYPH A351", direction="l", linebreak="al", - unicodeslot=0x1698C, + unicodeslot=0x1458C, }, - [0x1698D]={ + [0x1458D]={ category="lo", - description="BAMUM LETTER PHASE-E NGGEEEE", + description="ANATOLIAN HIEROGLYPH A352", direction="l", linebreak="al", - unicodeslot=0x1698D, + unicodeslot=0x1458D, }, - [0x1698E]={ + [0x1458E]={ category="lo", - description="BAMUM LETTER PHASE-E NDIQ", + description="ANATOLIAN HIEROGLYPH A353", direction="l", linebreak="al", - unicodeslot=0x1698E, + unicodeslot=0x1458E, }, - [0x1698F]={ + [0x1458F]={ category="lo", - description="BAMUM LETTER PHASE-E TAEN NTEUM", + description="ANATOLIAN HIEROGLYPH A354", direction="l", linebreak="al", - unicodeslot=0x1698F, + unicodeslot=0x1458F, }, - [0x16990]={ + [0x14590]={ category="lo", - description="BAMUM LETTER PHASE-E SET", + description="ANATOLIAN HIEROGLYPH A355", direction="l", linebreak="al", - unicodeslot=0x16990, + unicodeslot=0x14590, }, - [0x16991]={ + [0x14591]={ category="lo", - description="BAMUM LETTER PHASE-E PUM", + description="ANATOLIAN HIEROGLYPH A356", direction="l", linebreak="al", - unicodeslot=0x16991, + unicodeslot=0x14591, }, - [0x16992]={ + [0x14592]={ category="lo", - description="BAMUM LETTER PHASE-E NDAA SOFTNESS", + description="ANATOLIAN HIEROGLYPH A357", direction="l", linebreak="al", - unicodeslot=0x16992, + unicodeslot=0x14592, }, - [0x16993]={ + [0x14593]={ category="lo", - description="BAMUM LETTER PHASE-E NGGUAESHAE NYAM", + description="ANATOLIAN HIEROGLYPH A358", direction="l", linebreak="al", - unicodeslot=0x16993, + unicodeslot=0x14593, }, - [0x16994]={ + [0x14594]={ category="lo", - description="BAMUM LETTER PHASE-E YIEE", + description="ANATOLIAN HIEROGLYPH A359", direction="l", linebreak="al", - unicodeslot=0x16994, + unicodeslot=0x14594, }, - [0x16995]={ + [0x14595]={ category="lo", - description="BAMUM LETTER PHASE-E GHEUN", + description="ANATOLIAN HIEROGLYPH A359A", direction="l", linebreak="al", - unicodeslot=0x16995, + unicodeslot=0x14595, }, - [0x16996]={ + [0x14596]={ category="lo", - description="BAMUM LETTER PHASE-E TUAE", + description="ANATOLIAN HIEROGLYPH A360", direction="l", linebreak="al", - unicodeslot=0x16996, + unicodeslot=0x14596, }, - [0x16997]={ + [0x14597]={ category="lo", - description="BAMUM LETTER PHASE-E YEUAE", + description="ANATOLIAN HIEROGLYPH A361", direction="l", linebreak="al", - unicodeslot=0x16997, + unicodeslot=0x14597, }, - [0x16998]={ + [0x14598]={ category="lo", - description="BAMUM LETTER PHASE-E PO", + description="ANATOLIAN HIEROGLYPH A362", direction="l", linebreak="al", - unicodeslot=0x16998, + unicodeslot=0x14598, }, - [0x16999]={ + [0x14599]={ category="lo", - description="BAMUM LETTER PHASE-E TUMAE", + description="ANATOLIAN HIEROGLYPH A363", direction="l", linebreak="al", - unicodeslot=0x16999, + unicodeslot=0x14599, }, - [0x1699A]={ + [0x1459A]={ category="lo", - description="BAMUM LETTER PHASE-E KEUAE", + description="ANATOLIAN HIEROGLYPH A364", direction="l", linebreak="al", - unicodeslot=0x1699A, + unicodeslot=0x1459A, }, - [0x1699B]={ + [0x1459B]={ category="lo", - description="BAMUM LETTER PHASE-E SUAEN", + description="ANATOLIAN HIEROGLYPH A364A", direction="l", linebreak="al", - unicodeslot=0x1699B, + unicodeslot=0x1459B, }, - [0x1699C]={ + [0x1459C]={ category="lo", - description="BAMUM LETTER PHASE-E TEUAEQ", + description="ANATOLIAN HIEROGLYPH A365", direction="l", linebreak="al", - unicodeslot=0x1699C, + unicodeslot=0x1459C, }, - [0x1699D]={ + [0x1459D]={ category="lo", - description="BAMUM LETTER PHASE-E VEUAE", + description="ANATOLIAN HIEROGLYPH A366", direction="l", linebreak="al", - unicodeslot=0x1699D, + unicodeslot=0x1459D, }, - [0x1699E]={ + [0x1459E]={ category="lo", - description="BAMUM LETTER PHASE-E WEUX", + description="ANATOLIAN HIEROGLYPH A367", direction="l", linebreak="al", - unicodeslot=0x1699E, + unicodeslot=0x1459E, }, - [0x1699F]={ + [0x1459F]={ category="lo", - description="BAMUM LETTER PHASE-E LAAM", + description="ANATOLIAN HIEROGLYPH A368", direction="l", linebreak="al", - unicodeslot=0x1699F, + unicodeslot=0x1459F, }, - [0x169A0]={ + [0x145A0]={ category="lo", - description="BAMUM LETTER PHASE-E PU", + description="ANATOLIAN HIEROGLYPH A368A", direction="l", linebreak="al", - unicodeslot=0x169A0, + unicodeslot=0x145A0, }, - [0x169A1]={ + [0x145A1]={ category="lo", - description="BAMUM LETTER PHASE-E TAAQ", + description="ANATOLIAN HIEROGLYPH A369", direction="l", linebreak="al", - unicodeslot=0x169A1, + unicodeslot=0x145A1, }, - [0x169A2]={ + [0x145A2]={ category="lo", - description="BAMUM LETTER PHASE-E GHAAMAE", + description="ANATOLIAN HIEROGLYPH A370", direction="l", linebreak="al", - unicodeslot=0x169A2, + unicodeslot=0x145A2, }, - [0x169A3]={ + [0x145A3]={ category="lo", - description="BAMUM LETTER PHASE-E NGEUREUT", + description="ANATOLIAN HIEROGLYPH A371", direction="l", linebreak="al", - unicodeslot=0x169A3, + unicodeslot=0x145A3, }, - [0x169A4]={ + [0x145A4]={ category="lo", - description="BAMUM LETTER PHASE-E SHEUAEQ", + description="ANATOLIAN HIEROGLYPH A371A", direction="l", linebreak="al", - unicodeslot=0x169A4, + unicodeslot=0x145A4, }, - [0x169A5]={ + [0x145A5]={ category="lo", - description="BAMUM LETTER PHASE-E MGBEN", + description="ANATOLIAN HIEROGLYPH A372", direction="l", linebreak="al", - unicodeslot=0x169A5, + unicodeslot=0x145A5, }, - [0x169A6]={ + [0x145A6]={ category="lo", - description="BAMUM LETTER PHASE-E MBEE", + description="ANATOLIAN HIEROGLYPH A373", direction="l", linebreak="al", - unicodeslot=0x169A6, + unicodeslot=0x145A6, }, - [0x169A7]={ + [0x145A7]={ category="lo", - description="BAMUM LETTER PHASE-E NZAQ", + description="ANATOLIAN HIEROGLYPH A374", direction="l", linebreak="al", - unicodeslot=0x169A7, + unicodeslot=0x145A7, }, - [0x169A8]={ + [0x145A8]={ category="lo", - description="BAMUM LETTER PHASE-E NKOM", + description="ANATOLIAN HIEROGLYPH A375", direction="l", linebreak="al", - unicodeslot=0x169A8, + unicodeslot=0x145A8, }, - [0x169A9]={ + [0x145A9]={ category="lo", - description="BAMUM LETTER PHASE-E GBET", + description="ANATOLIAN HIEROGLYPH A376", direction="l", linebreak="al", - unicodeslot=0x169A9, + unicodeslot=0x145A9, }, - [0x169AA]={ + [0x145AA]={ category="lo", - description="BAMUM LETTER PHASE-E TUM", + description="ANATOLIAN HIEROGLYPH A377", direction="l", linebreak="al", - unicodeslot=0x169AA, + unicodeslot=0x145AA, }, - [0x169AB]={ + [0x145AB]={ category="lo", - description="BAMUM LETTER PHASE-E KUET", + description="ANATOLIAN HIEROGLYPH A378", direction="l", linebreak="al", - unicodeslot=0x169AB, + unicodeslot=0x145AB, }, - [0x169AC]={ + [0x145AC]={ category="lo", - description="BAMUM LETTER PHASE-E YAP", + description="ANATOLIAN HIEROGLYPH A379", direction="l", linebreak="al", - unicodeslot=0x169AC, + unicodeslot=0x145AC, }, - [0x169AD]={ + [0x145AD]={ category="lo", - description="BAMUM LETTER PHASE-E NYI CLEAVER", + description="ANATOLIAN HIEROGLYPH A380", direction="l", linebreak="al", - unicodeslot=0x169AD, + unicodeslot=0x145AD, }, - [0x169AE]={ + [0x145AE]={ category="lo", - description="BAMUM LETTER PHASE-E YIT", + description="ANATOLIAN HIEROGLYPH A381", direction="l", linebreak="al", - unicodeslot=0x169AE, + unicodeslot=0x145AE, }, - [0x169AF]={ + [0x145AF]={ category="lo", - description="BAMUM LETTER PHASE-E MFEUQ", + description="ANATOLIAN HIEROGLYPH A381A", direction="l", linebreak="al", - unicodeslot=0x169AF, + unicodeslot=0x145AF, }, - [0x169B0]={ + [0x145B0]={ category="lo", - description="BAMUM LETTER PHASE-E NDIAQ", + description="ANATOLIAN HIEROGLYPH A382", direction="l", linebreak="al", - unicodeslot=0x169B0, + unicodeslot=0x145B0, }, - [0x169B1]={ + [0x145B1]={ category="lo", - description="BAMUM LETTER PHASE-E PIEEQ", + description="ANATOLIAN HIEROGLYPH A383 RA OR RI", direction="l", linebreak="al", - unicodeslot=0x169B1, + unicodeslot=0x145B1, }, - [0x169B2]={ + [0x145B2]={ category="lo", - description="BAMUM LETTER PHASE-E YUEQ", + description="ANATOLIAN HIEROGLYPH A383A", direction="l", linebreak="al", - unicodeslot=0x169B2, + unicodeslot=0x145B2, }, - [0x169B3]={ + [0x145B3]={ category="lo", - description="BAMUM LETTER PHASE-E LEUAEM", + description="ANATOLIAN HIEROGLYPH A384", direction="l", linebreak="al", - unicodeslot=0x169B3, + unicodeslot=0x145B3, }, - [0x169B4]={ + [0x145B4]={ category="lo", - description="BAMUM LETTER PHASE-E FUE", + description="ANATOLIAN HIEROGLYPH A385", direction="l", linebreak="al", - unicodeslot=0x169B4, + unicodeslot=0x145B4, }, - [0x169B5]={ + [0x145B5]={ category="lo", - description="BAMUM LETTER PHASE-E GBEUX", + description="ANATOLIAN HIEROGLYPH A386", direction="l", linebreak="al", - unicodeslot=0x169B5, + unicodeslot=0x145B5, }, - [0x169B6]={ + [0x145B6]={ category="lo", - description="BAMUM LETTER PHASE-E NGKUP", + description="ANATOLIAN HIEROGLYPH A386A", direction="l", linebreak="al", - unicodeslot=0x169B6, + unicodeslot=0x145B6, }, - [0x169B7]={ + [0x145B7]={ category="lo", - description="BAMUM LETTER PHASE-E KET", + description="ANATOLIAN HIEROGLYPH A387", direction="l", linebreak="al", - unicodeslot=0x169B7, + unicodeslot=0x145B7, }, - [0x169B8]={ + [0x145B8]={ category="lo", - description="BAMUM LETTER PHASE-E MAE", + description="ANATOLIAN HIEROGLYPH A388", direction="l", linebreak="al", - unicodeslot=0x169B8, + unicodeslot=0x145B8, }, - [0x169B9]={ + [0x145B9]={ category="lo", - description="BAMUM LETTER PHASE-E NGKAAMI", + description="ANATOLIAN HIEROGLYPH A389", direction="l", linebreak="al", - unicodeslot=0x169B9, + unicodeslot=0x145B9, }, - [0x169BA]={ + [0x145BA]={ category="lo", - description="BAMUM LETTER PHASE-E GHET", + description="ANATOLIAN HIEROGLYPH A390", direction="l", linebreak="al", - unicodeslot=0x169BA, + unicodeslot=0x145BA, }, - [0x169BB]={ + [0x145BB]={ category="lo", - description="BAMUM LETTER PHASE-E FA", + description="ANATOLIAN HIEROGLYPH A391", direction="l", linebreak="al", - unicodeslot=0x169BB, + unicodeslot=0x145BB, }, - [0x169BC]={ + [0x145BC]={ category="lo", - description="BAMUM LETTER PHASE-E NTUM", + description="ANATOLIAN HIEROGLYPH A392", direction="l", linebreak="al", - unicodeslot=0x169BC, + unicodeslot=0x145BC, }, - [0x169BD]={ + [0x145BD]={ category="lo", - description="BAMUM LETTER PHASE-E PEUT", + description="ANATOLIAN HIEROGLYPH A393 EIGHT", direction="l", linebreak="al", - unicodeslot=0x169BD, + unicodeslot=0x145BD, }, - [0x169BE]={ + [0x145BE]={ category="lo", - description="BAMUM LETTER PHASE-E YEUM", + description="ANATOLIAN HIEROGLYPH A394", direction="l", linebreak="al", - unicodeslot=0x169BE, + unicodeslot=0x145BE, }, - [0x169BF]={ + [0x145BF]={ category="lo", - description="BAMUM LETTER PHASE-E NGGEUAE", + description="ANATOLIAN HIEROGLYPH A395", direction="l", linebreak="al", - unicodeslot=0x169BF, + unicodeslot=0x145BF, }, - [0x169C0]={ + [0x145C0]={ category="lo", - description="BAMUM LETTER PHASE-E NYI BETWEEN", + description="ANATOLIAN HIEROGLYPH A396", direction="l", linebreak="al", - unicodeslot=0x169C0, + unicodeslot=0x145C0, }, - [0x169C1]={ + [0x145C1]={ category="lo", - description="BAMUM LETTER PHASE-E NZUQ", + description="ANATOLIAN HIEROGLYPH A397", direction="l", linebreak="al", - unicodeslot=0x169C1, + unicodeslot=0x145C1, }, - [0x169C2]={ + [0x145C2]={ category="lo", - description="BAMUM LETTER PHASE-E POON", + description="ANATOLIAN HIEROGLYPH A398", direction="l", linebreak="al", - unicodeslot=0x169C2, + unicodeslot=0x145C2, }, - [0x169C3]={ + [0x145C3]={ category="lo", - description="BAMUM LETTER PHASE-E MIEE", + description="ANATOLIAN HIEROGLYPH A399", direction="l", linebreak="al", - unicodeslot=0x169C3, + unicodeslot=0x145C3, }, - [0x169C4]={ + [0x145C4]={ category="lo", - description="BAMUM LETTER PHASE-E FUET", + description="ANATOLIAN HIEROGLYPH A400", direction="l", linebreak="al", - unicodeslot=0x169C4, + unicodeslot=0x145C4, }, - [0x169C5]={ + [0x145C5]={ category="lo", - description="BAMUM LETTER PHASE-E NAE", + description="ANATOLIAN HIEROGLYPH A401", direction="l", linebreak="al", - unicodeslot=0x169C5, + unicodeslot=0x145C5, }, - [0x169C6]={ + [0x145C6]={ category="lo", - description="BAMUM LETTER PHASE-E MUAE", + description="ANATOLIAN HIEROGLYPH A402", direction="l", linebreak="al", - unicodeslot=0x169C6, + unicodeslot=0x145C6, }, - [0x169C7]={ + [0x145C7]={ category="lo", - description="BAMUM LETTER PHASE-E GHEUAE", + description="ANATOLIAN HIEROGLYPH A403", direction="l", linebreak="al", - unicodeslot=0x169C7, + unicodeslot=0x145C7, }, - [0x169C8]={ + [0x145C8]={ category="lo", - description="BAMUM LETTER PHASE-E FU I", + description="ANATOLIAN HIEROGLYPH A404", direction="l", linebreak="al", - unicodeslot=0x169C8, + unicodeslot=0x145C8, }, - [0x169C9]={ + [0x145C9]={ category="lo", - description="BAMUM LETTER PHASE-E MVI", + description="ANATOLIAN HIEROGLYPH A405", direction="l", linebreak="al", - unicodeslot=0x169C9, + unicodeslot=0x145C9, }, - [0x169CA]={ + [0x145CA]={ category="lo", - description="BAMUM LETTER PHASE-E PUAQ", + description="ANATOLIAN HIEROGLYPH A406", direction="l", linebreak="al", - unicodeslot=0x169CA, + unicodeslot=0x145CA, }, - [0x169CB]={ + [0x145CB]={ category="lo", - description="BAMUM LETTER PHASE-E NGKUM", + description="ANATOLIAN HIEROGLYPH A407", direction="l", linebreak="al", - unicodeslot=0x169CB, + unicodeslot=0x145CB, }, - [0x169CC]={ + [0x145CC]={ category="lo", - description="BAMUM LETTER PHASE-E KUT", + description="ANATOLIAN HIEROGLYPH A408", direction="l", linebreak="al", - unicodeslot=0x169CC, + unicodeslot=0x145CC, }, - [0x169CD]={ + [0x145CD]={ category="lo", - description="BAMUM LETTER PHASE-E PIET", + description="ANATOLIAN HIEROGLYPH A409", direction="l", linebreak="al", - unicodeslot=0x169CD, + unicodeslot=0x145CD, }, - [0x169CE]={ + [0x145CE]={ category="lo", - description="BAMUM LETTER PHASE-E NTAP", + description="ANATOLIAN HIEROGLYPH A410 BEGIN LOGOGRAM MARK", direction="l", - linebreak="al", - unicodeslot=0x169CE, + linebreak="op", + unicodeslot=0x145CE, }, - [0x169CF]={ + [0x145CF]={ category="lo", - description="BAMUM LETTER PHASE-E YEUAET", + description="ANATOLIAN HIEROGLYPH A410A END LOGOGRAM MARK", direction="l", - linebreak="al", - unicodeslot=0x169CF, + linebreak="cl", + unicodeslot=0x145CF, }, - [0x169D0]={ + [0x145D0]={ category="lo", - description="BAMUM LETTER PHASE-E NGGUP", + description="ANATOLIAN HIEROGLYPH A411", direction="l", linebreak="al", - unicodeslot=0x169D0, + unicodeslot=0x145D0, }, - [0x169D1]={ + [0x145D1]={ category="lo", - description="BAMUM LETTER PHASE-E PA PEOPLE", + description="ANATOLIAN HIEROGLYPH A412", direction="l", linebreak="al", - unicodeslot=0x169D1, + unicodeslot=0x145D1, }, - [0x169D2]={ + [0x145D2]={ category="lo", - description="BAMUM LETTER PHASE-E FU CALL", + description="ANATOLIAN HIEROGLYPH A413", direction="l", linebreak="al", - unicodeslot=0x169D2, + unicodeslot=0x145D2, }, - [0x169D3]={ + [0x145D3]={ category="lo", - description="BAMUM LETTER PHASE-E FOM", + description="ANATOLIAN HIEROGLYPH A414", direction="l", linebreak="al", - unicodeslot=0x169D3, + unicodeslot=0x145D3, }, - [0x169D4]={ + [0x145D4]={ category="lo", - description="BAMUM LETTER PHASE-E NJEE", + description="ANATOLIAN HIEROGLYPH A415", direction="l", linebreak="al", - unicodeslot=0x169D4, + unicodeslot=0x145D4, }, - [0x169D5]={ + [0x145D5]={ category="lo", - description="BAMUM LETTER PHASE-E A", + description="ANATOLIAN HIEROGLYPH A416", direction="l", linebreak="al", - unicodeslot=0x169D5, + unicodeslot=0x145D5, }, - [0x169D6]={ + [0x145D6]={ category="lo", - description="BAMUM LETTER PHASE-E TOQ", + description="ANATOLIAN HIEROGLYPH A417", direction="l", linebreak="al", - unicodeslot=0x169D6, + unicodeslot=0x145D6, }, - [0x169D7]={ + [0x145D7]={ category="lo", - description="BAMUM LETTER PHASE-E O", + description="ANATOLIAN HIEROGLYPH A418", direction="l", linebreak="al", - unicodeslot=0x169D7, + unicodeslot=0x145D7, }, - [0x169D8]={ + [0x145D8]={ category="lo", - description="BAMUM LETTER PHASE-E I", + description="ANATOLIAN HIEROGLYPH A419", direction="l", linebreak="al", - unicodeslot=0x169D8, + unicodeslot=0x145D8, }, - [0x169D9]={ + [0x145D9]={ category="lo", - description="BAMUM LETTER PHASE-E LAQ", + description="ANATOLIAN HIEROGLYPH A420", direction="l", linebreak="al", - unicodeslot=0x169D9, + unicodeslot=0x145D9, }, - [0x169DA]={ + [0x145DA]={ category="lo", - description="BAMUM LETTER PHASE-E PA PLURAL", + description="ANATOLIAN HIEROGLYPH A421", direction="l", linebreak="al", - unicodeslot=0x169DA, + unicodeslot=0x145DA, }, - [0x169DB]={ + [0x145DB]={ category="lo", - description="BAMUM LETTER PHASE-E TAA", + description="ANATOLIAN HIEROGLYPH A422", direction="l", linebreak="al", - unicodeslot=0x169DB, + unicodeslot=0x145DB, }, - [0x169DC]={ + [0x145DC]={ category="lo", - description="BAMUM LETTER PHASE-E TAQ", + description="ANATOLIAN HIEROGLYPH A423", direction="l", linebreak="al", - unicodeslot=0x169DC, + unicodeslot=0x145DC, }, - [0x169DD]={ + [0x145DD]={ category="lo", - description="BAMUM LETTER PHASE-E NDAA MY HOUSE", + description="ANATOLIAN HIEROGLYPH A424", direction="l", linebreak="al", - unicodeslot=0x169DD, + unicodeslot=0x145DD, }, - [0x169DE]={ + [0x145DE]={ category="lo", - description="BAMUM LETTER PHASE-E SHIQ", + description="ANATOLIAN HIEROGLYPH A425", direction="l", linebreak="al", - unicodeslot=0x169DE, + unicodeslot=0x145DE, }, - [0x169DF]={ + [0x145DF]={ category="lo", - description="BAMUM LETTER PHASE-E YEUX", + description="ANATOLIAN HIEROGLYPH A426", direction="l", linebreak="al", - unicodeslot=0x169DF, + unicodeslot=0x145DF, }, - [0x169E0]={ + [0x145E0]={ category="lo", - description="BAMUM LETTER PHASE-E NGUAE", + description="ANATOLIAN HIEROGLYPH A427", direction="l", linebreak="al", - unicodeslot=0x169E0, + unicodeslot=0x145E0, }, - [0x169E1]={ + [0x145E1]={ category="lo", - description="BAMUM LETTER PHASE-E YUAEN", + description="ANATOLIAN HIEROGLYPH A428", direction="l", linebreak="al", - unicodeslot=0x169E1, + unicodeslot=0x145E1, }, - [0x169E2]={ + [0x145E2]={ category="lo", - description="BAMUM LETTER PHASE-E YOQ SWIMMING", + description="ANATOLIAN HIEROGLYPH A429", direction="l", linebreak="al", - unicodeslot=0x169E2, + unicodeslot=0x145E2, }, - [0x169E3]={ + [0x145E3]={ category="lo", - description="BAMUM LETTER PHASE-E YOQ COVER", + description="ANATOLIAN HIEROGLYPH A430", direction="l", linebreak="al", - unicodeslot=0x169E3, + unicodeslot=0x145E3, }, - [0x169E4]={ + [0x145E4]={ category="lo", - description="BAMUM LETTER PHASE-E YUQ", + description="ANATOLIAN HIEROGLYPH A431", direction="l", linebreak="al", - unicodeslot=0x169E4, + unicodeslot=0x145E4, }, - [0x169E5]={ + [0x145E5]={ category="lo", - description="BAMUM LETTER PHASE-E YUN", + description="ANATOLIAN HIEROGLYPH A432", direction="l", linebreak="al", - unicodeslot=0x169E5, + unicodeslot=0x145E5, }, - [0x169E6]={ + [0x145E6]={ category="lo", - description="BAMUM LETTER PHASE-E KEUX", + description="ANATOLIAN HIEROGLYPH A433", direction="l", linebreak="al", - unicodeslot=0x169E6, + unicodeslot=0x145E6, }, - [0x169E7]={ + [0x145E7]={ category="lo", - description="BAMUM LETTER PHASE-E PEUX", + description="ANATOLIAN HIEROGLYPH A434", direction="l", linebreak="al", - unicodeslot=0x169E7, + unicodeslot=0x145E7, }, - [0x169E8]={ + [0x145E8]={ category="lo", - description="BAMUM LETTER PHASE-E NJEE EPOCH", + description="ANATOLIAN HIEROGLYPH A435", direction="l", linebreak="al", - unicodeslot=0x169E8, + unicodeslot=0x145E8, }, - [0x169E9]={ + [0x145E9]={ category="lo", - description="BAMUM LETTER PHASE-E PUE", + description="ANATOLIAN HIEROGLYPH A436", direction="l", linebreak="al", - unicodeslot=0x169E9, + unicodeslot=0x145E9, }, - [0x169EA]={ + [0x145EA]={ category="lo", - description="BAMUM LETTER PHASE-E WUE", + description="ANATOLIAN HIEROGLYPH A437", direction="l", linebreak="al", - unicodeslot=0x169EA, + unicodeslot=0x145EA, }, - [0x169EB]={ + [0x145EB]={ category="lo", - description="BAMUM LETTER PHASE-E FEE", + description="ANATOLIAN HIEROGLYPH A438", direction="l", linebreak="al", - unicodeslot=0x169EB, + unicodeslot=0x145EB, }, - [0x169EC]={ + [0x145EC]={ category="lo", - description="BAMUM LETTER PHASE-E VEE", + description="ANATOLIAN HIEROGLYPH A439", direction="l", linebreak="al", - unicodeslot=0x169EC, + unicodeslot=0x145EC, }, - [0x169ED]={ + [0x145ED]={ category="lo", - description="BAMUM LETTER PHASE-E LU", + description="ANATOLIAN HIEROGLYPH A440", direction="l", linebreak="al", - unicodeslot=0x169ED, + unicodeslot=0x145ED, }, - [0x169EE]={ + [0x145EE]={ category="lo", - description="BAMUM LETTER PHASE-E MI", + description="ANATOLIAN HIEROGLYPH A441", direction="l", linebreak="al", - unicodeslot=0x169EE, + unicodeslot=0x145EE, }, - [0x169EF]={ + [0x145EF]={ category="lo", - description="BAMUM LETTER PHASE-E REUX", + description="ANATOLIAN HIEROGLYPH A442", direction="l", linebreak="al", - unicodeslot=0x169EF, + unicodeslot=0x145EF, }, - [0x169F0]={ + [0x145F0]={ category="lo", - description="BAMUM LETTER PHASE-E RAE", + description="ANATOLIAN HIEROGLYPH A443", direction="l", linebreak="al", - unicodeslot=0x169F0, + unicodeslot=0x145F0, }, - [0x169F1]={ + [0x145F1]={ category="lo", - description="BAMUM LETTER PHASE-E NGUAET", + description="ANATOLIAN HIEROGLYPH A444", direction="l", linebreak="al", - unicodeslot=0x169F1, + unicodeslot=0x145F1, }, - [0x169F2]={ + [0x145F2]={ category="lo", - description="BAMUM LETTER PHASE-E NGA", + description="ANATOLIAN HIEROGLYPH A445", direction="l", linebreak="al", - unicodeslot=0x169F2, + unicodeslot=0x145F2, }, - [0x169F3]={ + [0x145F3]={ category="lo", - description="BAMUM LETTER PHASE-E SHO", + description="ANATOLIAN HIEROGLYPH A446", direction="l", linebreak="al", - unicodeslot=0x169F3, + unicodeslot=0x145F3, }, - [0x169F4]={ + [0x145F4]={ category="lo", - description="BAMUM LETTER PHASE-E SHOQ", + description="ANATOLIAN HIEROGLYPH A447", direction="l", linebreak="al", - unicodeslot=0x169F4, + unicodeslot=0x145F4, }, - [0x169F5]={ + [0x145F5]={ category="lo", - description="BAMUM LETTER PHASE-E FU REMEDY", + description="ANATOLIAN HIEROGLYPH A448", direction="l", linebreak="al", - unicodeslot=0x169F5, + unicodeslot=0x145F5, }, - [0x169F6]={ + [0x145F6]={ category="lo", - description="BAMUM LETTER PHASE-E NA", + description="ANATOLIAN HIEROGLYPH A449", direction="l", linebreak="al", - unicodeslot=0x169F6, + unicodeslot=0x145F6, }, - [0x169F7]={ + [0x145F7]={ category="lo", - description="BAMUM LETTER PHASE-E PI", + description="ANATOLIAN HIEROGLYPH A450", direction="l", linebreak="al", - unicodeslot=0x169F7, + unicodeslot=0x145F7, }, - [0x169F8]={ + [0x145F8]={ category="lo", - description="BAMUM LETTER PHASE-E LOQ", + description="ANATOLIAN HIEROGLYPH A450A", direction="l", linebreak="al", - unicodeslot=0x169F8, + unicodeslot=0x145F8, }, - [0x169F9]={ + [0x145F9]={ category="lo", - description="BAMUM LETTER PHASE-E KO", + description="ANATOLIAN HIEROGLYPH A451", direction="l", linebreak="al", - unicodeslot=0x169F9, + unicodeslot=0x145F9, }, - [0x169FA]={ + [0x145FA]={ category="lo", - description="BAMUM LETTER PHASE-E MEN", + description="ANATOLIAN HIEROGLYPH A452", direction="l", linebreak="al", - unicodeslot=0x169FA, + unicodeslot=0x145FA, }, - [0x169FB]={ + [0x145FB]={ category="lo", - description="BAMUM LETTER PHASE-E MA", + description="ANATOLIAN HIEROGLYPH A453", direction="l", linebreak="al", - unicodeslot=0x169FB, + unicodeslot=0x145FB, }, - [0x169FC]={ + [0x145FC]={ category="lo", - description="BAMUM LETTER PHASE-E MAQ", + description="ANATOLIAN HIEROGLYPH A454", direction="l", linebreak="al", - unicodeslot=0x169FC, + unicodeslot=0x145FC, }, - [0x169FD]={ + [0x145FD]={ category="lo", - description="BAMUM LETTER PHASE-E TEU", + description="ANATOLIAN HIEROGLYPH A455", direction="l", linebreak="al", - unicodeslot=0x169FD, + unicodeslot=0x145FD, }, - [0x169FE]={ + [0x145FE]={ category="lo", - description="BAMUM LETTER PHASE-E KI", + description="ANATOLIAN HIEROGLYPH A456", direction="l", linebreak="al", - unicodeslot=0x169FE, + unicodeslot=0x145FE, }, - [0x169FF]={ + [0x145FF]={ category="lo", - description="BAMUM LETTER PHASE-E MON", + description="ANATOLIAN HIEROGLYPH A457", direction="l", linebreak="al", - unicodeslot=0x169FF, + unicodeslot=0x145FF, }, - [0x16A00]={ + [0x14600]={ category="lo", - description="BAMUM LETTER PHASE-E TEN", + description="ANATOLIAN HIEROGLYPH A457A", direction="l", linebreak="al", - unicodeslot=0x16A00, + unicodeslot=0x14600, }, - [0x16A01]={ + [0x14601]={ category="lo", - description="BAMUM LETTER PHASE-E FAQ", + description="ANATOLIAN HIEROGLYPH A458", direction="l", linebreak="al", - unicodeslot=0x16A01, + unicodeslot=0x14601, }, - [0x16A02]={ + [0x14602]={ category="lo", - description="BAMUM LETTER PHASE-E GHOM", + description="ANATOLIAN HIEROGLYPH A459", direction="l", linebreak="al", - unicodeslot=0x16A02, + unicodeslot=0x14602, }, - [0x16A03]={ + [0x14603]={ category="lo", - description="BAMUM LETTER PHASE-F KA", + description="ANATOLIAN HIEROGLYPH A460", direction="l", linebreak="al", - unicodeslot=0x16A03, + unicodeslot=0x14603, }, - [0x16A04]={ + [0x14604]={ category="lo", - description="BAMUM LETTER PHASE-F U", + description="ANATOLIAN HIEROGLYPH A461", direction="l", linebreak="al", - unicodeslot=0x16A04, + unicodeslot=0x14604, }, - [0x16A05]={ + [0x14605]={ category="lo", - description="BAMUM LETTER PHASE-F KU", + description="ANATOLIAN HIEROGLYPH A462", direction="l", linebreak="al", - unicodeslot=0x16A05, + unicodeslot=0x14605, }, - [0x16A06]={ + [0x14606]={ category="lo", - description="BAMUM LETTER PHASE-F EE", + description="ANATOLIAN HIEROGLYPH A463", direction="l", linebreak="al", - unicodeslot=0x16A06, + unicodeslot=0x14606, }, - [0x16A07]={ + [0x14607]={ category="lo", - description="BAMUM LETTER PHASE-F REE", + description="ANATOLIAN HIEROGLYPH A464", direction="l", linebreak="al", - unicodeslot=0x16A07, + unicodeslot=0x14607, }, - [0x16A08]={ + [0x14608]={ category="lo", - description="BAMUM LETTER PHASE-F TAE", + description="ANATOLIAN HIEROGLYPH A465", direction="l", linebreak="al", - unicodeslot=0x16A08, + unicodeslot=0x14608, }, - [0x16A09]={ + [0x14609]={ category="lo", - description="BAMUM LETTER PHASE-F NYI", + description="ANATOLIAN HIEROGLYPH A466", direction="l", linebreak="al", - unicodeslot=0x16A09, + unicodeslot=0x14609, }, - [0x16A0A]={ + [0x1460A]={ category="lo", - description="BAMUM LETTER PHASE-F LA", + description="ANATOLIAN HIEROGLYPH A467", direction="l", linebreak="al", - unicodeslot=0x16A0A, + unicodeslot=0x1460A, }, - [0x16A0B]={ + [0x1460B]={ category="lo", - description="BAMUM LETTER PHASE-F RII", + description="ANATOLIAN HIEROGLYPH A468", direction="l", linebreak="al", - unicodeslot=0x16A0B, + unicodeslot=0x1460B, }, - [0x16A0C]={ + [0x1460C]={ category="lo", - description="BAMUM LETTER PHASE-F RIEE", + description="ANATOLIAN HIEROGLYPH A469", direction="l", linebreak="al", - unicodeslot=0x16A0C, + unicodeslot=0x1460C, }, - [0x16A0D]={ + [0x1460D]={ category="lo", - description="BAMUM LETTER PHASE-F MEEEE", + description="ANATOLIAN HIEROGLYPH A470", direction="l", linebreak="al", - unicodeslot=0x16A0D, + unicodeslot=0x1460D, }, - [0x16A0E]={ + [0x1460E]={ category="lo", - description="BAMUM LETTER PHASE-F TAA", + description="ANATOLIAN HIEROGLYPH A471", direction="l", linebreak="al", - unicodeslot=0x16A0E, + unicodeslot=0x1460E, }, - [0x16A0F]={ + [0x1460F]={ category="lo", - description="BAMUM LETTER PHASE-F NDAA", + description="ANATOLIAN HIEROGLYPH A472", direction="l", linebreak="al", - unicodeslot=0x16A0F, + unicodeslot=0x1460F, }, - [0x16A10]={ + [0x14610]={ category="lo", - description="BAMUM LETTER PHASE-F NJAEM", + description="ANATOLIAN HIEROGLYPH A473", direction="l", linebreak="al", - unicodeslot=0x16A10, + unicodeslot=0x14610, }, - [0x16A11]={ + [0x14611]={ category="lo", - description="BAMUM LETTER PHASE-F M", + description="ANATOLIAN HIEROGLYPH A474", direction="l", linebreak="al", - unicodeslot=0x16A11, + unicodeslot=0x14611, }, - [0x16A12]={ + [0x14612]={ category="lo", - description="BAMUM LETTER PHASE-F SUU", + description="ANATOLIAN HIEROGLYPH A475", direction="l", linebreak="al", - unicodeslot=0x16A12, + unicodeslot=0x14612, }, - [0x16A13]={ + [0x14613]={ category="lo", - description="BAMUM LETTER PHASE-F SHII", + description="ANATOLIAN HIEROGLYPH A476", direction="l", linebreak="al", - unicodeslot=0x16A13, + unicodeslot=0x14613, }, - [0x16A14]={ + [0x14614]={ category="lo", - description="BAMUM LETTER PHASE-F SI", + description="ANATOLIAN HIEROGLYPH A477", direction="l", linebreak="al", - unicodeslot=0x16A14, + unicodeslot=0x14614, }, - [0x16A15]={ + [0x14615]={ category="lo", - description="BAMUM LETTER PHASE-F SEUX", + description="ANATOLIAN HIEROGLYPH A478", direction="l", linebreak="al", - unicodeslot=0x16A15, + unicodeslot=0x14615, }, - [0x16A16]={ + [0x14616]={ category="lo", - description="BAMUM LETTER PHASE-F KYEE", + description="ANATOLIAN HIEROGLYPH A479", direction="l", linebreak="al", - unicodeslot=0x16A16, + unicodeslot=0x14616, }, - [0x16A17]={ + [0x14617]={ category="lo", - description="BAMUM LETTER PHASE-F KET", + description="ANATOLIAN HIEROGLYPH A480", direction="l", linebreak="al", - unicodeslot=0x16A17, + unicodeslot=0x14617, }, - [0x16A18]={ + [0x14618]={ category="lo", - description="BAMUM LETTER PHASE-F NUAE", + description="ANATOLIAN HIEROGLYPH A481", direction="l", linebreak="al", - unicodeslot=0x16A18, + unicodeslot=0x14618, }, - [0x16A19]={ + [0x14619]={ category="lo", - description="BAMUM LETTER PHASE-F NU", + description="ANATOLIAN HIEROGLYPH A482", direction="l", linebreak="al", - unicodeslot=0x16A19, + unicodeslot=0x14619, }, - [0x16A1A]={ + [0x1461A]={ category="lo", - description="BAMUM LETTER PHASE-F NJUAE", + description="ANATOLIAN HIEROGLYPH A483", direction="l", linebreak="al", - unicodeslot=0x16A1A, + unicodeslot=0x1461A, }, - [0x16A1B]={ + [0x1461B]={ category="lo", - description="BAMUM LETTER PHASE-F YOQ", + description="ANATOLIAN HIEROGLYPH A484", direction="l", linebreak="al", - unicodeslot=0x16A1B, + unicodeslot=0x1461B, }, - [0x16A1C]={ + [0x1461C]={ category="lo", - description="BAMUM LETTER PHASE-F SHU", + description="ANATOLIAN HIEROGLYPH A485", direction="l", linebreak="al", - unicodeslot=0x16A1C, + unicodeslot=0x1461C, }, - [0x16A1D]={ + [0x1461D]={ category="lo", - description="BAMUM LETTER PHASE-F YA", + description="ANATOLIAN HIEROGLYPH A486", direction="l", linebreak="al", - unicodeslot=0x16A1D, + unicodeslot=0x1461D, }, - [0x16A1E]={ + [0x1461E]={ category="lo", - description="BAMUM LETTER PHASE-F NSHA", + description="ANATOLIAN HIEROGLYPH A487", direction="l", linebreak="al", - unicodeslot=0x16A1E, + unicodeslot=0x1461E, }, - [0x16A1F]={ + [0x1461F]={ category="lo", - description="BAMUM LETTER PHASE-F PEUX", + description="ANATOLIAN HIEROGLYPH A488", direction="l", linebreak="al", - unicodeslot=0x16A1F, + unicodeslot=0x1461F, }, - [0x16A20]={ + [0x14620]={ category="lo", - description="BAMUM LETTER PHASE-F NTEE", + description="ANATOLIAN HIEROGLYPH A489", direction="l", linebreak="al", - unicodeslot=0x16A20, + unicodeslot=0x14620, }, - [0x16A21]={ + [0x14621]={ category="lo", - description="BAMUM LETTER PHASE-F WUE", + description="ANATOLIAN HIEROGLYPH A490", direction="l", linebreak="al", - unicodeslot=0x16A21, + unicodeslot=0x14621, }, - [0x16A22]={ + [0x14622]={ category="lo", - description="BAMUM LETTER PHASE-F PEE", + description="ANATOLIAN HIEROGLYPH A491", direction="l", linebreak="al", - unicodeslot=0x16A22, + unicodeslot=0x14622, }, - [0x16A23]={ + [0x14623]={ category="lo", - description="BAMUM LETTER PHASE-F RU", + description="ANATOLIAN HIEROGLYPH A492", direction="l", linebreak="al", - unicodeslot=0x16A23, + unicodeslot=0x14623, }, - [0x16A24]={ + [0x14624]={ category="lo", - description="BAMUM LETTER PHASE-F NI", + description="ANATOLIAN HIEROGLYPH A493", direction="l", linebreak="al", - unicodeslot=0x16A24, + unicodeslot=0x14624, }, - [0x16A25]={ + [0x14625]={ category="lo", - description="BAMUM LETTER PHASE-F REUX", + description="ANATOLIAN HIEROGLYPH A494", direction="l", linebreak="al", - unicodeslot=0x16A25, + unicodeslot=0x14625, }, - [0x16A26]={ + [0x14626]={ category="lo", - description="BAMUM LETTER PHASE-F KEN", + description="ANATOLIAN HIEROGLYPH A495", direction="l", linebreak="al", - unicodeslot=0x16A26, + unicodeslot=0x14626, }, - [0x16A27]={ + [0x14627]={ category="lo", - description="BAMUM LETTER PHASE-F NGKWAEN", + description="ANATOLIAN HIEROGLYPH A496", direction="l", linebreak="al", - unicodeslot=0x16A27, + unicodeslot=0x14627, }, - [0x16A28]={ + [0x14628]={ category="lo", - description="BAMUM LETTER PHASE-F NGGA", + description="ANATOLIAN HIEROGLYPH A497", direction="l", linebreak="al", - unicodeslot=0x16A28, + unicodeslot=0x14628, }, - [0x16A29]={ + [0x14629]={ category="lo", - description="BAMUM LETTER PHASE-F SHO", + description="ANATOLIAN HIEROGLYPH A501", direction="l", linebreak="al", - unicodeslot=0x16A29, + unicodeslot=0x14629, }, - [0x16A2A]={ + [0x1462A]={ category="lo", - description="BAMUM LETTER PHASE-F PUAE", + description="ANATOLIAN HIEROGLYPH A502", direction="l", linebreak="al", - unicodeslot=0x16A2A, + unicodeslot=0x1462A, }, - [0x16A2B]={ + [0x1462B]={ category="lo", - description="BAMUM LETTER PHASE-F FOM", + description="ANATOLIAN HIEROGLYPH A503", direction="l", linebreak="al", - unicodeslot=0x16A2B, + unicodeslot=0x1462B, }, - [0x16A2C]={ + [0x1462C]={ category="lo", - description="BAMUM LETTER PHASE-F WA", + description="ANATOLIAN HIEROGLYPH A504", direction="l", linebreak="al", - unicodeslot=0x16A2C, + unicodeslot=0x1462C, }, - [0x16A2D]={ + [0x1462D]={ category="lo", - description="BAMUM LETTER PHASE-F LI", + description="ANATOLIAN HIEROGLYPH A505", direction="l", linebreak="al", - unicodeslot=0x16A2D, + unicodeslot=0x1462D, }, - [0x16A2E]={ + [0x1462E]={ category="lo", - description="BAMUM LETTER PHASE-F LOQ", + description="ANATOLIAN HIEROGLYPH A506", direction="l", linebreak="al", - unicodeslot=0x16A2E, + unicodeslot=0x1462E, }, - [0x16A2F]={ + [0x1462F]={ category="lo", - description="BAMUM LETTER PHASE-F KO", + description="ANATOLIAN HIEROGLYPH A507", direction="l", linebreak="al", - unicodeslot=0x16A2F, + unicodeslot=0x1462F, }, - [0x16A30]={ + [0x14630]={ category="lo", - description="BAMUM LETTER PHASE-F MBEN", + description="ANATOLIAN HIEROGLYPH A508", direction="l", linebreak="al", - unicodeslot=0x16A30, + unicodeslot=0x14630, }, - [0x16A31]={ + [0x14631]={ category="lo", - description="BAMUM LETTER PHASE-F REN", + description="ANATOLIAN HIEROGLYPH A509", direction="l", linebreak="al", - unicodeslot=0x16A31, + unicodeslot=0x14631, }, - [0x16A32]={ + [0x14632]={ category="lo", - description="BAMUM LETTER PHASE-F MA", + description="ANATOLIAN HIEROGLYPH A510", direction="l", linebreak="al", - unicodeslot=0x16A32, + unicodeslot=0x14632, }, - [0x16A33]={ + [0x14633]={ category="lo", - description="BAMUM LETTER PHASE-F MO", + description="ANATOLIAN HIEROGLYPH A511", direction="l", linebreak="al", - unicodeslot=0x16A33, + unicodeslot=0x14633, }, - [0x16A34]={ + [0x14634]={ category="lo", - description="BAMUM LETTER PHASE-F MBAA", + description="ANATOLIAN HIEROGLYPH A512", direction="l", linebreak="al", - unicodeslot=0x16A34, + unicodeslot=0x14634, }, - [0x16A35]={ + [0x14635]={ category="lo", - description="BAMUM LETTER PHASE-F TET", + description="ANATOLIAN HIEROGLYPH A513", direction="l", linebreak="al", - unicodeslot=0x16A35, + unicodeslot=0x14635, }, - [0x16A36]={ + [0x14636]={ category="lo", - description="BAMUM LETTER PHASE-F KPA", + description="ANATOLIAN HIEROGLYPH A514", direction="l", linebreak="al", - unicodeslot=0x16A36, + unicodeslot=0x14636, }, - [0x16A37]={ + [0x14637]={ category="lo", - description="BAMUM LETTER PHASE-F SAMBA", + description="ANATOLIAN HIEROGLYPH A515", direction="l", linebreak="al", - unicodeslot=0x16A37, + unicodeslot=0x14637, }, - [0x16A38]={ + [0x14638]={ category="lo", - description="BAMUM LETTER PHASE-F VUEQ", + description="ANATOLIAN HIEROGLYPH A516", direction="l", linebreak="al", - unicodeslot=0x16A38, + unicodeslot=0x14638, }, - [0x16A40]={ + [0x14639]={ category="lo", - description="MRO LETTER TA", + description="ANATOLIAN HIEROGLYPH A517", direction="l", linebreak="al", - unicodeslot=0x16A40, + unicodeslot=0x14639, }, - [0x16A41]={ + [0x1463A]={ category="lo", - description="MRO LETTER NGI", + description="ANATOLIAN HIEROGLYPH A518", direction="l", linebreak="al", - unicodeslot=0x16A41, + unicodeslot=0x1463A, }, - [0x16A42]={ + [0x1463B]={ category="lo", - description="MRO LETTER YO", + description="ANATOLIAN HIEROGLYPH A519", direction="l", linebreak="al", - unicodeslot=0x16A42, + unicodeslot=0x1463B, }, - [0x16A43]={ + [0x1463C]={ category="lo", - description="MRO LETTER MIM", + description="ANATOLIAN HIEROGLYPH A520", direction="l", linebreak="al", - unicodeslot=0x16A43, + unicodeslot=0x1463C, }, - [0x16A44]={ + [0x1463D]={ category="lo", - description="MRO LETTER BA", + description="ANATOLIAN HIEROGLYPH A521", direction="l", linebreak="al", - unicodeslot=0x16A44, + unicodeslot=0x1463D, }, - [0x16A45]={ + [0x1463E]={ category="lo", - description="MRO LETTER DA", + description="ANATOLIAN HIEROGLYPH A522", direction="l", linebreak="al", - unicodeslot=0x16A45, + unicodeslot=0x1463E, }, - [0x16A46]={ + [0x1463F]={ category="lo", - description="MRO LETTER A", + description="ANATOLIAN HIEROGLYPH A523", direction="l", linebreak="al", - unicodeslot=0x16A46, + unicodeslot=0x1463F, }, - [0x16A47]={ + [0x14640]={ category="lo", - description="MRO LETTER PHI", + description="ANATOLIAN HIEROGLYPH A524", direction="l", linebreak="al", - unicodeslot=0x16A47, + unicodeslot=0x14640, }, - [0x16A48]={ + [0x14641]={ category="lo", - description="MRO LETTER KHAI", + description="ANATOLIAN HIEROGLYPH A525", direction="l", linebreak="al", - unicodeslot=0x16A48, + unicodeslot=0x14641, }, - [0x16A49]={ + [0x14642]={ category="lo", - description="MRO LETTER HAO", + description="ANATOLIAN HIEROGLYPH A526", direction="l", linebreak="al", - unicodeslot=0x16A49, + unicodeslot=0x14642, }, - [0x16A4A]={ + [0x14643]={ category="lo", - description="MRO LETTER DAI", + description="ANATOLIAN HIEROGLYPH A527", direction="l", linebreak="al", - unicodeslot=0x16A4A, + unicodeslot=0x14643, }, - [0x16A4B]={ + [0x14644]={ category="lo", - description="MRO LETTER CHU", + description="ANATOLIAN HIEROGLYPH A528", direction="l", linebreak="al", - unicodeslot=0x16A4B, + unicodeslot=0x14644, }, - [0x16A4C]={ + [0x14645]={ category="lo", - description="MRO LETTER KEAAE", + description="ANATOLIAN HIEROGLYPH A529", direction="l", linebreak="al", - unicodeslot=0x16A4C, + unicodeslot=0x14645, }, - [0x16A4D]={ + [0x14646]={ category="lo", - description="MRO LETTER OL", + description="ANATOLIAN HIEROGLYPH A530", direction="l", linebreak="al", - unicodeslot=0x16A4D, + unicodeslot=0x14646, }, - [0x16A4E]={ + [0x16800]={ category="lo", - description="MRO LETTER MAEM", + description="BAMUM LETTER PHASE-A NGKUE MFON", direction="l", linebreak="al", - unicodeslot=0x16A4E, + unicodeslot=0x16800, }, - [0x16A4F]={ + [0x16801]={ category="lo", - description="MRO LETTER NIN", + description="BAMUM LETTER PHASE-A GBIEE FON", direction="l", linebreak="al", - unicodeslot=0x16A4F, + unicodeslot=0x16801, }, - [0x16A50]={ + [0x16802]={ category="lo", - description="MRO LETTER PA", + description="BAMUM LETTER PHASE-A PON MFON PIPAEMGBIEE", direction="l", linebreak="al", - unicodeslot=0x16A50, + unicodeslot=0x16802, }, - [0x16A51]={ + [0x16803]={ category="lo", - description="MRO LETTER OO", + description="BAMUM LETTER PHASE-A PON MFON PIPAEMBA", direction="l", linebreak="al", - unicodeslot=0x16A51, + unicodeslot=0x16803, }, - [0x16A52]={ + [0x16804]={ category="lo", - description="MRO LETTER O", + description="BAMUM LETTER PHASE-A NAA MFON", direction="l", linebreak="al", - unicodeslot=0x16A52, + unicodeslot=0x16804, }, - [0x16A53]={ + [0x16805]={ category="lo", - description="MRO LETTER RO", + description="BAMUM LETTER PHASE-A SHUENSHUET", direction="l", linebreak="al", - unicodeslot=0x16A53, + unicodeslot=0x16805, }, - [0x16A54]={ + [0x16806]={ category="lo", - description="MRO LETTER SHI", + description="BAMUM LETTER PHASE-A TITA MFON", direction="l", linebreak="al", - unicodeslot=0x16A54, + unicodeslot=0x16806, }, - [0x16A55]={ + [0x16807]={ category="lo", - description="MRO LETTER THEA", + description="BAMUM LETTER PHASE-A NZA MFON", direction="l", linebreak="al", - unicodeslot=0x16A55, + unicodeslot=0x16807, }, - [0x16A56]={ + [0x16808]={ category="lo", - description="MRO LETTER EA", + description="BAMUM LETTER PHASE-A SHINDA PA NJI", direction="l", linebreak="al", - unicodeslot=0x16A56, + unicodeslot=0x16808, }, - [0x16A57]={ + [0x16809]={ category="lo", - description="MRO LETTER WA", + description="BAMUM LETTER PHASE-A PON PA NJI PIPAEMGBIEE", direction="l", linebreak="al", - unicodeslot=0x16A57, + unicodeslot=0x16809, }, - [0x16A58]={ + [0x1680A]={ category="lo", - description="MRO LETTER E", + description="BAMUM LETTER PHASE-A PON PA NJI PIPAEMBA", direction="l", linebreak="al", - unicodeslot=0x16A58, + unicodeslot=0x1680A, }, - [0x16A59]={ + [0x1680B]={ category="lo", - description="MRO LETTER KO", + description="BAMUM LETTER PHASE-A MAEMBGBIEE", direction="l", linebreak="al", - unicodeslot=0x16A59, + unicodeslot=0x1680B, }, - [0x16A5A]={ + [0x1680C]={ category="lo", - description="MRO LETTER LAN", + description="BAMUM LETTER PHASE-A TU MAEMBA", direction="l", linebreak="al", - unicodeslot=0x16A5A, + unicodeslot=0x1680C, }, - [0x16A5B]={ + [0x1680D]={ category="lo", - description="MRO LETTER LA", + description="BAMUM LETTER PHASE-A NGANGU", direction="l", linebreak="al", - unicodeslot=0x16A5B, + unicodeslot=0x1680D, }, - [0x16A5C]={ + [0x1680E]={ category="lo", - description="MRO LETTER HAI", + description="BAMUM LETTER PHASE-A MAEMVEUX", direction="l", linebreak="al", - unicodeslot=0x16A5C, + unicodeslot=0x1680E, }, - [0x16A5D]={ + [0x1680F]={ category="lo", - description="MRO LETTER RI", + description="BAMUM LETTER PHASE-A MANSUAE", direction="l", linebreak="al", - unicodeslot=0x16A5D, + unicodeslot=0x1680F, }, - [0x16A5E]={ + [0x16810]={ category="lo", - description="MRO LETTER TEK", + description="BAMUM LETTER PHASE-A MVEUAENGAM", direction="l", linebreak="al", - unicodeslot=0x16A5E, - }, - [0x16A60]={ - category="nd", - description="MRO DIGIT ZERO", - direction="l", - linebreak="nu", - unicodeslot=0x16A60, - }, - [0x16A61]={ - category="nd", - description="MRO DIGIT ONE", - direction="l", - linebreak="nu", - unicodeslot=0x16A61, - }, - [0x16A62]={ - category="nd", - description="MRO DIGIT TWO", - direction="l", - linebreak="nu", - unicodeslot=0x16A62, - }, - [0x16A63]={ - category="nd", - description="MRO DIGIT THREE", - direction="l", - linebreak="nu", - unicodeslot=0x16A63, - }, - [0x16A64]={ - category="nd", - description="MRO DIGIT FOUR", - direction="l", - linebreak="nu", - unicodeslot=0x16A64, - }, - [0x16A65]={ - category="nd", - description="MRO DIGIT FIVE", - direction="l", - linebreak="nu", - unicodeslot=0x16A65, - }, - [0x16A66]={ - category="nd", - description="MRO DIGIT SIX", - direction="l", - linebreak="nu", - unicodeslot=0x16A66, - }, - [0x16A67]={ - category="nd", - description="MRO DIGIT SEVEN", - direction="l", - linebreak="nu", - unicodeslot=0x16A67, - }, - [0x16A68]={ - category="nd", - description="MRO DIGIT EIGHT", - direction="l", - linebreak="nu", - unicodeslot=0x16A68, - }, - [0x16A69]={ - category="nd", - description="MRO DIGIT NINE", - direction="l", - linebreak="nu", - unicodeslot=0x16A69, - }, - [0x16A6E]={ - category="po", - description="MRO DANDA", - direction="l", - linebreak="ba", - unicodeslot=0x16A6E, + unicodeslot=0x16810, }, - [0x16A6F]={ - category="po", - description="MRO DOUBLE DANDA", + [0x16811]={ + category="lo", + description="BAMUM LETTER PHASE-A SEUNYAM", direction="l", - linebreak="ba", - unicodeslot=0x16A6F, + linebreak="al", + unicodeslot=0x16811, }, - [0x16AD0]={ + [0x16812]={ category="lo", - description="BASSA VAH LETTER ENNI", + description="BAMUM LETTER PHASE-A NTOQPEN", direction="l", linebreak="al", - unicodeslot=0x16AD0, + unicodeslot=0x16812, }, - [0x16AD1]={ + [0x16813]={ category="lo", - description="BASSA VAH LETTER KA", + description="BAMUM LETTER PHASE-A KEUKEUTNDA", direction="l", linebreak="al", - unicodeslot=0x16AD1, + unicodeslot=0x16813, }, - [0x16AD2]={ + [0x16814]={ category="lo", - description="BASSA VAH LETTER SE", + description="BAMUM LETTER PHASE-A NKINDI", direction="l", linebreak="al", - unicodeslot=0x16AD2, + unicodeslot=0x16814, }, - [0x16AD3]={ + [0x16815]={ category="lo", - description="BASSA VAH LETTER FA", + description="BAMUM LETTER PHASE-A SUU", direction="l", linebreak="al", - unicodeslot=0x16AD3, + unicodeslot=0x16815, }, - [0x16AD4]={ + [0x16816]={ category="lo", - description="BASSA VAH LETTER MBE", + description="BAMUM LETTER PHASE-A NGKUENZEUM", direction="l", linebreak="al", - unicodeslot=0x16AD4, + unicodeslot=0x16816, }, - [0x16AD5]={ + [0x16817]={ category="lo", - description="BASSA VAH LETTER YIE", + description="BAMUM LETTER PHASE-A LAPAQ", direction="l", linebreak="al", - unicodeslot=0x16AD5, + unicodeslot=0x16817, }, - [0x16AD6]={ + [0x16818]={ category="lo", - description="BASSA VAH LETTER GAH", + description="BAMUM LETTER PHASE-A LET KUT", direction="l", linebreak="al", - unicodeslot=0x16AD6, + unicodeslot=0x16818, }, - [0x16AD7]={ + [0x16819]={ category="lo", - description="BASSA VAH LETTER DHII", + description="BAMUM LETTER PHASE-A NTAP MFAA", direction="l", linebreak="al", - unicodeslot=0x16AD7, + unicodeslot=0x16819, }, - [0x16AD8]={ + [0x1681A]={ category="lo", - description="BASSA VAH LETTER KPAH", + description="BAMUM LETTER PHASE-A MAEKEUP", direction="l", linebreak="al", - unicodeslot=0x16AD8, + unicodeslot=0x1681A, }, - [0x16AD9]={ + [0x1681B]={ category="lo", - description="BASSA VAH LETTER JO", + description="BAMUM LETTER PHASE-A PASHAE", direction="l", linebreak="al", - unicodeslot=0x16AD9, + unicodeslot=0x1681B, }, - [0x16ADA]={ + [0x1681C]={ category="lo", - description="BASSA VAH LETTER HWAH", + description="BAMUM LETTER PHASE-A GHEUAERAE", direction="l", linebreak="al", - unicodeslot=0x16ADA, + unicodeslot=0x1681C, }, - [0x16ADB]={ + [0x1681D]={ category="lo", - description="BASSA VAH LETTER WA", + description="BAMUM LETTER PHASE-A PAMSHAE", direction="l", linebreak="al", - unicodeslot=0x16ADB, + unicodeslot=0x1681D, }, - [0x16ADC]={ + [0x1681E]={ category="lo", - description="BASSA VAH LETTER ZO", + description="BAMUM LETTER PHASE-A MON NGGEUAET", direction="l", linebreak="al", - unicodeslot=0x16ADC, + unicodeslot=0x1681E, }, - [0x16ADD]={ + [0x1681F]={ category="lo", - description="BASSA VAH LETTER GBU", + description="BAMUM LETTER PHASE-A NZUN MEUT", direction="l", linebreak="al", - unicodeslot=0x16ADD, + unicodeslot=0x1681F, }, - [0x16ADE]={ + [0x16820]={ category="lo", - description="BASSA VAH LETTER DO", + description="BAMUM LETTER PHASE-A U YUQ NAE", direction="l", linebreak="al", - unicodeslot=0x16ADE, + unicodeslot=0x16820, }, - [0x16ADF]={ + [0x16821]={ category="lo", - description="BASSA VAH LETTER CE", + description="BAMUM LETTER PHASE-A GHEUAEGHEUAE", direction="l", linebreak="al", - unicodeslot=0x16ADF, + unicodeslot=0x16821, }, - [0x16AE0]={ + [0x16822]={ category="lo", - description="BASSA VAH LETTER UWU", + description="BAMUM LETTER PHASE-A NTAP NTAA", direction="l", linebreak="al", - unicodeslot=0x16AE0, + unicodeslot=0x16822, }, - [0x16AE1]={ + [0x16823]={ category="lo", - description="BASSA VAH LETTER TO", + description="BAMUM LETTER PHASE-A SISA", direction="l", linebreak="al", - unicodeslot=0x16AE1, + unicodeslot=0x16823, }, - [0x16AE2]={ + [0x16824]={ category="lo", - description="BASSA VAH LETTER BA", + description="BAMUM LETTER PHASE-A MGBASA", direction="l", linebreak="al", - unicodeslot=0x16AE2, + unicodeslot=0x16824, }, - [0x16AE3]={ + [0x16825]={ category="lo", - description="BASSA VAH LETTER VU", + description="BAMUM LETTER PHASE-A MEUNJOMNDEUQ", direction="l", linebreak="al", - unicodeslot=0x16AE3, + unicodeslot=0x16825, }, - [0x16AE4]={ + [0x16826]={ category="lo", - description="BASSA VAH LETTER YEIN", + description="BAMUM LETTER PHASE-A MOOMPUQ", direction="l", linebreak="al", - unicodeslot=0x16AE4, + unicodeslot=0x16826, }, - [0x16AE5]={ + [0x16827]={ category="lo", - description="BASSA VAH LETTER PA", + description="BAMUM LETTER PHASE-A KAFA", direction="l", linebreak="al", - unicodeslot=0x16AE5, + unicodeslot=0x16827, }, - [0x16AE6]={ + [0x16828]={ category="lo", - description="BASSA VAH LETTER WADDA", + description="BAMUM LETTER PHASE-A PA LEERAEWA", direction="l", linebreak="al", - unicodeslot=0x16AE6, + unicodeslot=0x16828, }, - [0x16AE7]={ + [0x16829]={ category="lo", - description="BASSA VAH LETTER A", + description="BAMUM LETTER PHASE-A NDA LEERAEWA", direction="l", linebreak="al", - unicodeslot=0x16AE7, + unicodeslot=0x16829, }, - [0x16AE8]={ + [0x1682A]={ category="lo", - description="BASSA VAH LETTER O", + description="BAMUM LETTER PHASE-A PET", direction="l", linebreak="al", - unicodeslot=0x16AE8, + unicodeslot=0x1682A, }, - [0x16AE9]={ + [0x1682B]={ category="lo", - description="BASSA VAH LETTER OO", + description="BAMUM LETTER PHASE-A MAEMKPEN", direction="l", linebreak="al", - unicodeslot=0x16AE9, + unicodeslot=0x1682B, }, - [0x16AEA]={ + [0x1682C]={ category="lo", - description="BASSA VAH LETTER U", + description="BAMUM LETTER PHASE-A NIKA", direction="l", linebreak="al", - unicodeslot=0x16AEA, + unicodeslot=0x1682C, }, - [0x16AEB]={ + [0x1682D]={ category="lo", - description="BASSA VAH LETTER EE", + description="BAMUM LETTER PHASE-A PUP", direction="l", linebreak="al", - unicodeslot=0x16AEB, + unicodeslot=0x1682D, }, - [0x16AEC]={ + [0x1682E]={ category="lo", - description="BASSA VAH LETTER E", + description="BAMUM LETTER PHASE-A TUAEP", direction="l", linebreak="al", - unicodeslot=0x16AEC, + unicodeslot=0x1682E, }, - [0x16AED]={ + [0x1682F]={ category="lo", - description="BASSA VAH LETTER I", + description="BAMUM LETTER PHASE-A LUAEP", direction="l", linebreak="al", - unicodeslot=0x16AED, - }, - [0x16AF0]={ - category="mn", - combining=0x1, - description="BASSA VAH COMBINING HIGH TONE", - direction="nsm", - linebreak="cm", - unicodeslot=0x16AF0, - }, - [0x16AF1]={ - category="mn", - combining=0x1, - description="BASSA VAH COMBINING LOW TONE", - direction="nsm", - linebreak="cm", - unicodeslot=0x16AF1, - }, - [0x16AF2]={ - category="mn", - combining=0x1, - description="BASSA VAH COMBINING MID TONE", - direction="nsm", - linebreak="cm", - unicodeslot=0x16AF2, - }, - [0x16AF3]={ - category="mn", - combining=0x1, - description="BASSA VAH COMBINING LOW-MID TONE", - direction="nsm", - linebreak="cm", - unicodeslot=0x16AF3, - }, - [0x16AF4]={ - category="mn", - combining=0x1, - description="BASSA VAH COMBINING HIGH-LOW TONE", - direction="nsm", - linebreak="cm", - unicodeslot=0x16AF4, - }, - [0x16AF5]={ - category="po", - description="BASSA VAH FULL STOP", - direction="l", - linebreak="ba", - unicodeslot=0x16AF5, + unicodeslot=0x1682F, }, - [0x16B00]={ + [0x16830]={ category="lo", - description="PAHAWH HMONG VOWEL KEEB", + description="BAMUM LETTER PHASE-A SONJAM", direction="l", linebreak="al", - unicodeslot=0x16B00, + unicodeslot=0x16830, }, - [0x16B01]={ + [0x16831]={ category="lo", - description="PAHAWH HMONG VOWEL KEEV", + description="BAMUM LETTER PHASE-A TEUTEUWEN", direction="l", linebreak="al", - unicodeslot=0x16B01, + unicodeslot=0x16831, }, - [0x16B02]={ + [0x16832]={ category="lo", - description="PAHAWH HMONG VOWEL KIB", + description="BAMUM LETTER PHASE-A MAENYI", direction="l", linebreak="al", - unicodeslot=0x16B02, + unicodeslot=0x16832, }, - [0x16B03]={ + [0x16833]={ category="lo", - description="PAHAWH HMONG VOWEL KIV", + description="BAMUM LETTER PHASE-A KET", direction="l", linebreak="al", - unicodeslot=0x16B03, + unicodeslot=0x16833, }, - [0x16B04]={ + [0x16834]={ category="lo", - description="PAHAWH HMONG VOWEL KAUB", + description="BAMUM LETTER PHASE-A NDAANGGEUAET", direction="l", linebreak="al", - unicodeslot=0x16B04, + unicodeslot=0x16834, }, - [0x16B05]={ + [0x16835]={ category="lo", - description="PAHAWH HMONG VOWEL KAUV", + description="BAMUM LETTER PHASE-A KUOQ", direction="l", linebreak="al", - unicodeslot=0x16B05, + unicodeslot=0x16835, }, - [0x16B06]={ + [0x16836]={ category="lo", - description="PAHAWH HMONG VOWEL KUB", + description="BAMUM LETTER PHASE-A MOOMEUT", direction="l", linebreak="al", - unicodeslot=0x16B06, + unicodeslot=0x16836, }, - [0x16B07]={ + [0x16837]={ category="lo", - description="PAHAWH HMONG VOWEL KUV", + description="BAMUM LETTER PHASE-A SHUM", direction="l", linebreak="al", - unicodeslot=0x16B07, + unicodeslot=0x16837, }, - [0x16B08]={ + [0x16838]={ category="lo", - description="PAHAWH HMONG VOWEL KEB", + description="BAMUM LETTER PHASE-A LOMMAE", direction="l", linebreak="al", - unicodeslot=0x16B08, + unicodeslot=0x16838, }, - [0x16B09]={ + [0x16839]={ category="lo", - description="PAHAWH HMONG VOWEL KEV", + description="BAMUM LETTER PHASE-A FIRI", direction="l", linebreak="al", - unicodeslot=0x16B09, + unicodeslot=0x16839, }, - [0x16B0A]={ + [0x1683A]={ category="lo", - description="PAHAWH HMONG VOWEL KAIB", + description="BAMUM LETTER PHASE-A ROM", direction="l", linebreak="al", - unicodeslot=0x16B0A, + unicodeslot=0x1683A, }, - [0x16B0B]={ + [0x1683B]={ category="lo", - description="PAHAWH HMONG VOWEL KAIV", + description="BAMUM LETTER PHASE-A KPOQ", direction="l", linebreak="al", - unicodeslot=0x16B0B, + unicodeslot=0x1683B, }, - [0x16B0C]={ + [0x1683C]={ category="lo", - description="PAHAWH HMONG VOWEL KOOB", + description="BAMUM LETTER PHASE-A SOQ", direction="l", linebreak="al", - unicodeslot=0x16B0C, + unicodeslot=0x1683C, }, - [0x16B0D]={ + [0x1683D]={ category="lo", - description="PAHAWH HMONG VOWEL KOOV", + description="BAMUM LETTER PHASE-A MAP PIEET", direction="l", linebreak="al", - unicodeslot=0x16B0D, + unicodeslot=0x1683D, }, - [0x16B0E]={ + [0x1683E]={ category="lo", - description="PAHAWH HMONG VOWEL KAWB", + description="BAMUM LETTER PHASE-A SHIRAE", direction="l", linebreak="al", - unicodeslot=0x16B0E, + unicodeslot=0x1683E, }, - [0x16B0F]={ + [0x1683F]={ category="lo", - description="PAHAWH HMONG VOWEL KAWV", + description="BAMUM LETTER PHASE-A NTAP", direction="l", linebreak="al", - unicodeslot=0x16B0F, + unicodeslot=0x1683F, }, - [0x16B10]={ + [0x16840]={ category="lo", - description="PAHAWH HMONG VOWEL KUAB", + description="BAMUM LETTER PHASE-A SHOQ NSHUT YUM", direction="l", linebreak="al", - unicodeslot=0x16B10, + unicodeslot=0x16840, }, - [0x16B11]={ + [0x16841]={ category="lo", - description="PAHAWH HMONG VOWEL KUAV", + description="BAMUM LETTER PHASE-A NYIT MONGKEUAEQ", direction="l", linebreak="al", - unicodeslot=0x16B11, + unicodeslot=0x16841, }, - [0x16B12]={ + [0x16842]={ category="lo", - description="PAHAWH HMONG VOWEL KOB", + description="BAMUM LETTER PHASE-A PAARAE", direction="l", linebreak="al", - unicodeslot=0x16B12, + unicodeslot=0x16842, }, - [0x16B13]={ + [0x16843]={ category="lo", - description="PAHAWH HMONG VOWEL KOV", + description="BAMUM LETTER PHASE-A NKAARAE", direction="l", linebreak="al", - unicodeslot=0x16B13, + unicodeslot=0x16843, }, - [0x16B14]={ + [0x16844]={ category="lo", - description="PAHAWH HMONG VOWEL KIAB", + description="BAMUM LETTER PHASE-A UNKNOWN", direction="l", linebreak="al", - unicodeslot=0x16B14, + unicodeslot=0x16844, }, - [0x16B15]={ + [0x16845]={ category="lo", - description="PAHAWH HMONG VOWEL KIAV", + description="BAMUM LETTER PHASE-A NGGEN", direction="l", linebreak="al", - unicodeslot=0x16B15, + unicodeslot=0x16845, }, - [0x16B16]={ + [0x16846]={ category="lo", - description="PAHAWH HMONG VOWEL KAB", + description="BAMUM LETTER PHASE-A MAESI", direction="l", linebreak="al", - unicodeslot=0x16B16, + unicodeslot=0x16846, }, - [0x16B17]={ + [0x16847]={ category="lo", - description="PAHAWH HMONG VOWEL KAV", + description="BAMUM LETTER PHASE-A NJAM", direction="l", linebreak="al", - unicodeslot=0x16B17, + unicodeslot=0x16847, }, - [0x16B18]={ + [0x16848]={ category="lo", - description="PAHAWH HMONG VOWEL KWB", + description="BAMUM LETTER PHASE-A MBANYI", direction="l", linebreak="al", - unicodeslot=0x16B18, + unicodeslot=0x16848, }, - [0x16B19]={ + [0x16849]={ category="lo", - description="PAHAWH HMONG VOWEL KWV", + description="BAMUM LETTER PHASE-A NYET", direction="l", linebreak="al", - unicodeslot=0x16B19, + unicodeslot=0x16849, }, - [0x16B1A]={ + [0x1684A]={ category="lo", - description="PAHAWH HMONG VOWEL KAAB", + description="BAMUM LETTER PHASE-A TEUAEN", direction="l", linebreak="al", - unicodeslot=0x16B1A, + unicodeslot=0x1684A, }, - [0x16B1B]={ + [0x1684B]={ category="lo", - description="PAHAWH HMONG VOWEL KAAV", + description="BAMUM LETTER PHASE-A SOT", direction="l", linebreak="al", - unicodeslot=0x16B1B, + unicodeslot=0x1684B, }, - [0x16B1C]={ + [0x1684C]={ category="lo", - description="PAHAWH HMONG CONSONANT VAU", + description="BAMUM LETTER PHASE-A PAAM", direction="l", linebreak="al", - unicodeslot=0x16B1C, + unicodeslot=0x1684C, }, - [0x16B1D]={ + [0x1684D]={ category="lo", - description="PAHAWH HMONG CONSONANT NTSAU", + description="BAMUM LETTER PHASE-A NSHIEE", direction="l", linebreak="al", - unicodeslot=0x16B1D, + unicodeslot=0x1684D, }, - [0x16B1E]={ + [0x1684E]={ category="lo", - description="PAHAWH HMONG CONSONANT LAU", + description="BAMUM LETTER PHASE-A MAEM", direction="l", linebreak="al", - unicodeslot=0x16B1E, + unicodeslot=0x1684E, }, - [0x16B1F]={ + [0x1684F]={ category="lo", - description="PAHAWH HMONG CONSONANT HAU", + description="BAMUM LETTER PHASE-A NYI", direction="l", linebreak="al", - unicodeslot=0x16B1F, + unicodeslot=0x1684F, }, - [0x16B20]={ + [0x16850]={ category="lo", - description="PAHAWH HMONG CONSONANT NLAU", + description="BAMUM LETTER PHASE-A KAQ", direction="l", linebreak="al", - unicodeslot=0x16B20, + unicodeslot=0x16850, }, - [0x16B21]={ + [0x16851]={ category="lo", - description="PAHAWH HMONG CONSONANT RAU", + description="BAMUM LETTER PHASE-A NSHA", direction="l", linebreak="al", - unicodeslot=0x16B21, + unicodeslot=0x16851, }, - [0x16B22]={ + [0x16852]={ category="lo", - description="PAHAWH HMONG CONSONANT NKAU", + description="BAMUM LETTER PHASE-A VEE", direction="l", linebreak="al", - unicodeslot=0x16B22, + unicodeslot=0x16852, }, - [0x16B23]={ + [0x16853]={ category="lo", - description="PAHAWH HMONG CONSONANT QHAU", + description="BAMUM LETTER PHASE-A LU", direction="l", linebreak="al", - unicodeslot=0x16B23, + unicodeslot=0x16853, }, - [0x16B24]={ + [0x16854]={ category="lo", - description="PAHAWH HMONG CONSONANT YAU", + description="BAMUM LETTER PHASE-A NEN", direction="l", linebreak="al", - unicodeslot=0x16B24, + unicodeslot=0x16854, }, - [0x16B25]={ + [0x16855]={ category="lo", - description="PAHAWH HMONG CONSONANT HLAU", + description="BAMUM LETTER PHASE-A NAQ", direction="l", linebreak="al", - unicodeslot=0x16B25, + unicodeslot=0x16855, }, - [0x16B26]={ + [0x16856]={ category="lo", - description="PAHAWH HMONG CONSONANT MAU", + description="BAMUM LETTER PHASE-A MBAQ", direction="l", linebreak="al", - unicodeslot=0x16B26, + unicodeslot=0x16856, }, - [0x16B27]={ + [0x16857]={ category="lo", - description="PAHAWH HMONG CONSONANT CHAU", + description="BAMUM LETTER PHASE-B NSHUET", direction="l", linebreak="al", - unicodeslot=0x16B27, + unicodeslot=0x16857, }, - [0x16B28]={ + [0x16858]={ category="lo", - description="PAHAWH HMONG CONSONANT NCHAU", + description="BAMUM LETTER PHASE-B TU MAEMGBIEE", direction="l", linebreak="al", - unicodeslot=0x16B28, + unicodeslot=0x16858, }, - [0x16B29]={ + [0x16859]={ category="lo", - description="PAHAWH HMONG CONSONANT HNAU", + description="BAMUM LETTER PHASE-B SIEE", direction="l", linebreak="al", - unicodeslot=0x16B29, + unicodeslot=0x16859, }, - [0x16B2A]={ + [0x1685A]={ category="lo", - description="PAHAWH HMONG CONSONANT PLHAU", + description="BAMUM LETTER PHASE-B SET TU", direction="l", linebreak="al", - unicodeslot=0x16B2A, + unicodeslot=0x1685A, }, - [0x16B2B]={ + [0x1685B]={ category="lo", - description="PAHAWH HMONG CONSONANT NTHAU", + description="BAMUM LETTER PHASE-B LOM NTEUM", direction="l", linebreak="al", - unicodeslot=0x16B2B, + unicodeslot=0x1685B, }, - [0x16B2C]={ + [0x1685C]={ category="lo", - description="PAHAWH HMONG CONSONANT NAU", + description="BAMUM LETTER PHASE-B MBA MAELEE", direction="l", linebreak="al", - unicodeslot=0x16B2C, + unicodeslot=0x1685C, }, - [0x16B2D]={ + [0x1685D]={ category="lo", - description="PAHAWH HMONG CONSONANT AU", + description="BAMUM LETTER PHASE-B KIEEM", direction="l", linebreak="al", - unicodeslot=0x16B2D, + unicodeslot=0x1685D, }, - [0x16B2E]={ + [0x1685E]={ category="lo", - description="PAHAWH HMONG CONSONANT XAU", + description="BAMUM LETTER PHASE-B YEURAE", direction="l", linebreak="al", - unicodeslot=0x16B2E, + unicodeslot=0x1685E, }, - [0x16B2F]={ + [0x1685F]={ category="lo", - description="PAHAWH HMONG CONSONANT CAU", + description="BAMUM LETTER PHASE-B MBAARAE", direction="l", linebreak="al", - unicodeslot=0x16B2F, - }, - [0x16B30]={ - category="mn", - combining=0xE6, - description="PAHAWH HMONG MARK CIM TUB", - direction="nsm", - linebreak="cm", - unicodeslot=0x16B30, - }, - [0x16B31]={ - category="mn", - combining=0xE6, - description="PAHAWH HMONG MARK CIM SO", - direction="nsm", - linebreak="cm", - unicodeslot=0x16B31, - }, - [0x16B32]={ - category="mn", - combining=0xE6, - description="PAHAWH HMONG MARK CIM KES", - direction="nsm", - linebreak="cm", - unicodeslot=0x16B32, - }, - [0x16B33]={ - category="mn", - combining=0xE6, - description="PAHAWH HMONG MARK CIM KHAV", - direction="nsm", - linebreak="cm", - unicodeslot=0x16B33, - }, - [0x16B34]={ - category="mn", - combining=0xE6, - description="PAHAWH HMONG MARK CIM SUAM", - direction="nsm", - linebreak="cm", - unicodeslot=0x16B34, - }, - [0x16B35]={ - category="mn", - combining=0xE6, - description="PAHAWH HMONG MARK CIM HOM", - direction="nsm", - linebreak="cm", - unicodeslot=0x16B35, - }, - [0x16B36]={ - category="mn", - combining=0xE6, - description="PAHAWH HMONG MARK CIM TAUM", - direction="nsm", - linebreak="cm", - unicodeslot=0x16B36, - }, - [0x16B37]={ - category="po", - description="PAHAWH HMONG SIGN VOS THOM", - direction="l", - linebreak="ba", - unicodeslot=0x16B37, - }, - [0x16B38]={ - category="po", - description="PAHAWH HMONG SIGN VOS TSHAB CEEB", - direction="l", - linebreak="ba", - unicodeslot=0x16B38, - }, - [0x16B39]={ - category="po", - description="PAHAWH HMONG SIGN CIM CHEEM", - direction="l", - linebreak="ba", - unicodeslot=0x16B39, + unicodeslot=0x1685F, }, - [0x16B3A]={ - category="po", - description="PAHAWH HMONG SIGN VOS THIAB", + [0x16860]={ + category="lo", + description="BAMUM LETTER PHASE-B KAM", direction="l", linebreak="al", - unicodeslot=0x16B3A, + unicodeslot=0x16860, }, - [0x16B3B]={ - category="po", - description="PAHAWH HMONG SIGN VOS FEEM", + [0x16861]={ + category="lo", + description="BAMUM LETTER PHASE-B PEESHI", direction="l", linebreak="al", - unicodeslot=0x16B3B, + unicodeslot=0x16861, }, - [0x16B3C]={ - category="so", - description="PAHAWH HMONG SIGN XYEEM NTXIV", + [0x16862]={ + category="lo", + description="BAMUM LETTER PHASE-B YAFU LEERAEWA", direction="l", linebreak="al", - unicodeslot=0x16B3C, + unicodeslot=0x16862, }, - [0x16B3D]={ - category="so", - description="PAHAWH HMONG SIGN XYEEM RHO", + [0x16863]={ + category="lo", + description="BAMUM LETTER PHASE-B LAM NSHUT NYAM", direction="l", linebreak="al", - unicodeslot=0x16B3D, + unicodeslot=0x16863, }, - [0x16B3E]={ - category="so", - description="PAHAWH HMONG SIGN XYEEM TOV", + [0x16864]={ + category="lo", + description="BAMUM LETTER PHASE-B NTIEE SHEUOQ", direction="l", linebreak="al", - unicodeslot=0x16B3E, + unicodeslot=0x16864, }, - [0x16B3F]={ - category="so", - description="PAHAWH HMONG SIGN XYEEM FAIB", + [0x16865]={ + category="lo", + description="BAMUM LETTER PHASE-B NDU NJAA", direction="l", linebreak="al", - unicodeslot=0x16B3F, + unicodeslot=0x16865, }, - [0x16B40]={ - category="lm", - description="PAHAWH HMONG SIGN VOS SEEV", + [0x16866]={ + category="lo", + description="BAMUM LETTER PHASE-B GHEUGHEUAEM", direction="l", linebreak="al", - unicodeslot=0x16B40, + unicodeslot=0x16866, }, - [0x16B41]={ - category="lm", - description="PAHAWH HMONG SIGN MEEJ SUAB", + [0x16867]={ + category="lo", + description="BAMUM LETTER PHASE-B PIT", direction="l", linebreak="al", - unicodeslot=0x16B41, + unicodeslot=0x16867, }, - [0x16B42]={ - category="lm", - description="PAHAWH HMONG SIGN VOS NRUA", + [0x16868]={ + category="lo", + description="BAMUM LETTER PHASE-B TU NSIEE", direction="l", linebreak="al", - unicodeslot=0x16B42, + unicodeslot=0x16868, }, - [0x16B43]={ - category="lm", - description="PAHAWH HMONG SIGN IB YAM", + [0x16869]={ + category="lo", + description="BAMUM LETTER PHASE-B SHET NJAQ", direction="l", linebreak="al", - unicodeslot=0x16B43, - }, - [0x16B44]={ - category="po", - description="PAHAWH HMONG SIGN XAUS", - direction="l", - linebreak="ba", - unicodeslot=0x16B44, + unicodeslot=0x16869, }, - [0x16B45]={ - category="so", - description="PAHAWH HMONG SIGN CIM TSOV ROG", + [0x1686A]={ + category="lo", + description="BAMUM LETTER PHASE-B SHEUAEQTU", direction="l", linebreak="al", - unicodeslot=0x16B45, - }, - [0x16B50]={ - category="nd", - description="PAHAWH HMONG DIGIT ZERO", - direction="l", - linebreak="nu", - unicodeslot=0x16B50, - }, - [0x16B51]={ - category="nd", - description="PAHAWH HMONG DIGIT ONE", - direction="l", - linebreak="nu", - unicodeslot=0x16B51, - }, - [0x16B52]={ - category="nd", - description="PAHAWH HMONG DIGIT TWO", - direction="l", - linebreak="nu", - unicodeslot=0x16B52, - }, - [0x16B53]={ - category="nd", - description="PAHAWH HMONG DIGIT THREE", - direction="l", - linebreak="nu", - unicodeslot=0x16B53, - }, - [0x16B54]={ - category="nd", - description="PAHAWH HMONG DIGIT FOUR", - direction="l", - linebreak="nu", - unicodeslot=0x16B54, - }, - [0x16B55]={ - category="nd", - description="PAHAWH HMONG DIGIT FIVE", - direction="l", - linebreak="nu", - unicodeslot=0x16B55, - }, - [0x16B56]={ - category="nd", - description="PAHAWH HMONG DIGIT SIX", - direction="l", - linebreak="nu", - unicodeslot=0x16B56, - }, - [0x16B57]={ - category="nd", - description="PAHAWH HMONG DIGIT SEVEN", - direction="l", - linebreak="nu", - unicodeslot=0x16B57, - }, - [0x16B58]={ - category="nd", - description="PAHAWH HMONG DIGIT EIGHT", - direction="l", - linebreak="nu", - unicodeslot=0x16B58, - }, - [0x16B59]={ - category="nd", - description="PAHAWH HMONG DIGIT NINE", - direction="l", - linebreak="nu", - unicodeslot=0x16B59, + unicodeslot=0x1686A, }, - [0x16B5B]={ - category="no", - description="PAHAWH HMONG NUMBER TENS", + [0x1686B]={ + category="lo", + description="BAMUM LETTER PHASE-B MFON TEUAEQ", direction="l", linebreak="al", - unicodeslot=0x16B5B, + unicodeslot=0x1686B, }, - [0x16B5C]={ - category="no", - description="PAHAWH HMONG NUMBER HUNDREDS", + [0x1686C]={ + category="lo", + description="BAMUM LETTER PHASE-B MBIT MBAAKET", direction="l", linebreak="al", - unicodeslot=0x16B5C, + unicodeslot=0x1686C, }, - [0x16B5D]={ - category="no", - description="PAHAWH HMONG NUMBER TEN THOUSANDS", + [0x1686D]={ + category="lo", + description="BAMUM LETTER PHASE-B NYI NTEUM", direction="l", linebreak="al", - unicodeslot=0x16B5D, + unicodeslot=0x1686D, }, - [0x16B5E]={ - category="no", - description="PAHAWH HMONG NUMBER MILLIONS", + [0x1686E]={ + category="lo", + description="BAMUM LETTER PHASE-B KEUPUQ", direction="l", linebreak="al", - unicodeslot=0x16B5E, + unicodeslot=0x1686E, }, - [0x16B5F]={ - category="no", - description="PAHAWH HMONG NUMBER HUNDRED MILLIONS", + [0x1686F]={ + category="lo", + description="BAMUM LETTER PHASE-B GHEUGHEN", direction="l", linebreak="al", - unicodeslot=0x16B5F, + unicodeslot=0x1686F, }, - [0x16B60]={ - category="no", - description="PAHAWH HMONG NUMBER TEN BILLIONS", + [0x16870]={ + category="lo", + description="BAMUM LETTER PHASE-B KEUYEUX", direction="l", linebreak="al", - unicodeslot=0x16B60, + unicodeslot=0x16870, }, - [0x16B61]={ - category="no", - description="PAHAWH HMONG NUMBER TRILLIONS", + [0x16871]={ + category="lo", + description="BAMUM LETTER PHASE-B LAANAE", direction="l", linebreak="al", - unicodeslot=0x16B61, + unicodeslot=0x16871, }, - [0x16B63]={ + [0x16872]={ category="lo", - description="PAHAWH HMONG SIGN VOS LUB", + description="BAMUM LETTER PHASE-B PARUM", direction="l", linebreak="al", - unicodeslot=0x16B63, + unicodeslot=0x16872, }, - [0x16B64]={ + [0x16873]={ category="lo", - description="PAHAWH HMONG SIGN XYOO", + description="BAMUM LETTER PHASE-B VEUM", direction="l", linebreak="al", - unicodeslot=0x16B64, + unicodeslot=0x16873, }, - [0x16B65]={ + [0x16874]={ category="lo", - description="PAHAWH HMONG SIGN HLI", + description="BAMUM LETTER PHASE-B NGKINDI MVOP", direction="l", linebreak="al", - unicodeslot=0x16B65, + unicodeslot=0x16874, }, - [0x16B66]={ + [0x16875]={ category="lo", - description="PAHAWH HMONG SIGN THIRD-STAGE HLI", + description="BAMUM LETTER PHASE-B NGGEU MBU", direction="l", linebreak="al", - unicodeslot=0x16B66, + unicodeslot=0x16875, }, - [0x16B67]={ + [0x16876]={ category="lo", - description="PAHAWH HMONG SIGN ZWJ THAJ", + description="BAMUM LETTER PHASE-B WUAET", direction="l", linebreak="al", - unicodeslot=0x16B67, + unicodeslot=0x16876, }, - [0x16B68]={ + [0x16877]={ category="lo", - description="PAHAWH HMONG SIGN HNUB", + description="BAMUM LETTER PHASE-B SAKEUAE", direction="l", linebreak="al", - unicodeslot=0x16B68, + unicodeslot=0x16877, }, - [0x16B69]={ + [0x16878]={ category="lo", - description="PAHAWH HMONG SIGN NQIG", + description="BAMUM LETTER PHASE-B TAAM", direction="l", linebreak="al", - unicodeslot=0x16B69, + unicodeslot=0x16878, }, - [0x16B6A]={ + [0x16879]={ category="lo", - description="PAHAWH HMONG SIGN XIAB", + description="BAMUM LETTER PHASE-B MEUQ", direction="l", linebreak="al", - unicodeslot=0x16B6A, + unicodeslot=0x16879, }, - [0x16B6B]={ + [0x1687A]={ category="lo", - description="PAHAWH HMONG SIGN NTUJ", + description="BAMUM LETTER PHASE-B NGGUOQ", direction="l", linebreak="al", - unicodeslot=0x16B6B, + unicodeslot=0x1687A, }, - [0x16B6C]={ + [0x1687B]={ category="lo", - description="PAHAWH HMONG SIGN AV", + description="BAMUM LETTER PHASE-B NGGUOQ LARGE", direction="l", linebreak="al", - unicodeslot=0x16B6C, + unicodeslot=0x1687B, }, - [0x16B6D]={ + [0x1687C]={ category="lo", - description="PAHAWH HMONG SIGN TXHEEJ CEEV", + description="BAMUM LETTER PHASE-B MFIYAQ", direction="l", linebreak="al", - unicodeslot=0x16B6D, + unicodeslot=0x1687C, }, - [0x16B6E]={ + [0x1687D]={ category="lo", - description="PAHAWH HMONG SIGN MEEJ TSEEB", + description="BAMUM LETTER PHASE-B SUE", direction="l", linebreak="al", - unicodeslot=0x16B6E, + unicodeslot=0x1687D, }, - [0x16B6F]={ + [0x1687E]={ category="lo", - description="PAHAWH HMONG SIGN TAU", + description="BAMUM LETTER PHASE-B MBEURI", direction="l", linebreak="al", - unicodeslot=0x16B6F, + unicodeslot=0x1687E, }, - [0x16B70]={ + [0x1687F]={ category="lo", - description="PAHAWH HMONG SIGN LOS", + description="BAMUM LETTER PHASE-B MONTIEEN", direction="l", linebreak="al", - unicodeslot=0x16B70, + unicodeslot=0x1687F, }, - [0x16B71]={ + [0x16880]={ category="lo", - description="PAHAWH HMONG SIGN MUS", + description="BAMUM LETTER PHASE-B NYAEMAE", direction="l", linebreak="al", - unicodeslot=0x16B71, + unicodeslot=0x16880, }, - [0x16B72]={ + [0x16881]={ category="lo", - description="PAHAWH HMONG SIGN CIM HAIS LUS NTOG NTOG", + description="BAMUM LETTER PHASE-B PUNGAAM", direction="l", linebreak="al", - unicodeslot=0x16B72, + unicodeslot=0x16881, }, - [0x16B73]={ + [0x16882]={ category="lo", - description="PAHAWH HMONG SIGN CIM CUAM TSHOOJ", + description="BAMUM LETTER PHASE-B MEUT NGGEET", direction="l", linebreak="al", - unicodeslot=0x16B73, + unicodeslot=0x16882, }, - [0x16B74]={ + [0x16883]={ category="lo", - description="PAHAWH HMONG SIGN CIM TXWV", + description="BAMUM LETTER PHASE-B FEUX", direction="l", linebreak="al", - unicodeslot=0x16B74, + unicodeslot=0x16883, }, - [0x16B75]={ + [0x16884]={ category="lo", - description="PAHAWH HMONG SIGN CIM TXWV CHWV", + description="BAMUM LETTER PHASE-B MBUOQ", direction="l", linebreak="al", - unicodeslot=0x16B75, + unicodeslot=0x16884, }, - [0x16B76]={ + [0x16885]={ category="lo", - description="PAHAWH HMONG SIGN CIM PUB DAWB", + description="BAMUM LETTER PHASE-B FEE", direction="l", linebreak="al", - unicodeslot=0x16B76, + unicodeslot=0x16885, }, - [0x16B77]={ + [0x16886]={ category="lo", - description="PAHAWH HMONG SIGN CIM NRES TOS", + description="BAMUM LETTER PHASE-B KEUAEM", direction="l", linebreak="al", - unicodeslot=0x16B77, + unicodeslot=0x16886, }, - [0x16B7D]={ + [0x16887]={ category="lo", - description="PAHAWH HMONG CLAN SIGN TSHEEJ", + description="BAMUM LETTER PHASE-B MA NJEUAENA", direction="l", linebreak="al", - unicodeslot=0x16B7D, + unicodeslot=0x16887, }, - [0x16B7E]={ + [0x16888]={ category="lo", - description="PAHAWH HMONG CLAN SIGN YEEG", + description="BAMUM LETTER PHASE-B MA NJUQA", direction="l", linebreak="al", - unicodeslot=0x16B7E, + unicodeslot=0x16888, }, - [0x16B7F]={ + [0x16889]={ category="lo", - description="PAHAWH HMONG CLAN SIGN LIS", + description="BAMUM LETTER PHASE-B LET", direction="l", linebreak="al", - unicodeslot=0x16B7F, + unicodeslot=0x16889, }, - [0x16B80]={ + [0x1688A]={ category="lo", - description="PAHAWH HMONG CLAN SIGN LAUJ", + description="BAMUM LETTER PHASE-B NGGAAM", direction="l", linebreak="al", - unicodeslot=0x16B80, + unicodeslot=0x1688A, }, - [0x16B81]={ + [0x1688B]={ category="lo", - description="PAHAWH HMONG CLAN SIGN XYOOJ", + description="BAMUM LETTER PHASE-B NSEN", direction="l", linebreak="al", - unicodeslot=0x16B81, + unicodeslot=0x1688B, }, - [0x16B82]={ + [0x1688C]={ category="lo", - description="PAHAWH HMONG CLAN SIGN KOO", + description="BAMUM LETTER PHASE-B MA", direction="l", linebreak="al", - unicodeslot=0x16B82, + unicodeslot=0x1688C, }, - [0x16B83]={ + [0x1688D]={ category="lo", - description="PAHAWH HMONG CLAN SIGN HAWJ", + description="BAMUM LETTER PHASE-B KIQ", direction="l", linebreak="al", - unicodeslot=0x16B83, + unicodeslot=0x1688D, }, - [0x16B84]={ + [0x1688E]={ category="lo", - description="PAHAWH HMONG CLAN SIGN MUAS", + description="BAMUM LETTER PHASE-B NGOM", direction="l", linebreak="al", - unicodeslot=0x16B84, + unicodeslot=0x1688E, }, - [0x16B85]={ + [0x1688F]={ category="lo", - description="PAHAWH HMONG CLAN SIGN THOJ", + description="BAMUM LETTER PHASE-C NGKUE MAEMBA", direction="l", linebreak="al", - unicodeslot=0x16B85, + unicodeslot=0x1688F, }, - [0x16B86]={ + [0x16890]={ category="lo", - description="PAHAWH HMONG CLAN SIGN TSAB", + description="BAMUM LETTER PHASE-C NZA", direction="l", linebreak="al", - unicodeslot=0x16B86, + unicodeslot=0x16890, }, - [0x16B87]={ + [0x16891]={ category="lo", - description="PAHAWH HMONG CLAN SIGN PHAB", + description="BAMUM LETTER PHASE-C YUM", direction="l", linebreak="al", - unicodeslot=0x16B87, + unicodeslot=0x16891, }, - [0x16B88]={ + [0x16892]={ category="lo", - description="PAHAWH HMONG CLAN SIGN KHAB", + description="BAMUM LETTER PHASE-C WANGKUOQ", direction="l", linebreak="al", - unicodeslot=0x16B88, + unicodeslot=0x16892, }, - [0x16B89]={ + [0x16893]={ category="lo", - description="PAHAWH HMONG CLAN SIGN HAM", + description="BAMUM LETTER PHASE-C NGGEN", direction="l", linebreak="al", - unicodeslot=0x16B89, + unicodeslot=0x16893, }, - [0x16B8A]={ + [0x16894]={ category="lo", - description="PAHAWH HMONG CLAN SIGN VAJ", + description="BAMUM LETTER PHASE-C NDEUAEREE", direction="l", linebreak="al", - unicodeslot=0x16B8A, + unicodeslot=0x16894, }, - [0x16B8B]={ + [0x16895]={ category="lo", - description="PAHAWH HMONG CLAN SIGN FAJ", + description="BAMUM LETTER PHASE-C NGKAQ", direction="l", linebreak="al", - unicodeslot=0x16B8B, + unicodeslot=0x16895, }, - [0x16B8C]={ + [0x16896]={ category="lo", - description="PAHAWH HMONG CLAN SIGN YAJ", + description="BAMUM LETTER PHASE-C GHARAE", direction="l", linebreak="al", - unicodeslot=0x16B8C, + unicodeslot=0x16896, }, - [0x16B8D]={ + [0x16897]={ category="lo", - description="PAHAWH HMONG CLAN SIGN TSWB", + description="BAMUM LETTER PHASE-C MBEEKEET", direction="l", linebreak="al", - unicodeslot=0x16B8D, + unicodeslot=0x16897, }, - [0x16B8E]={ + [0x16898]={ category="lo", - description="PAHAWH HMONG CLAN SIGN KWM", + description="BAMUM LETTER PHASE-C GBAYI", direction="l", linebreak="al", - unicodeslot=0x16B8E, + unicodeslot=0x16898, }, - [0x16B8F]={ + [0x16899]={ category="lo", - description="PAHAWH HMONG CLAN SIGN VWJ", + description="BAMUM LETTER PHASE-C NYIR MKPARAQ MEUN", direction="l", linebreak="al", - unicodeslot=0x16B8F, + unicodeslot=0x16899, }, - [0x16F00]={ + [0x1689A]={ category="lo", - description="MIAO LETTER PA", + description="BAMUM LETTER PHASE-C NTU MBIT", direction="l", linebreak="al", - unicodeslot=0x16F00, + unicodeslot=0x1689A, }, - [0x16F01]={ + [0x1689B]={ category="lo", - description="MIAO LETTER BA", + description="BAMUM LETTER PHASE-C MBEUM", direction="l", linebreak="al", - unicodeslot=0x16F01, + unicodeslot=0x1689B, }, - [0x16F02]={ + [0x1689C]={ category="lo", - description="MIAO LETTER YI PA", + description="BAMUM LETTER PHASE-C PIRIEEN", direction="l", linebreak="al", - unicodeslot=0x16F02, + unicodeslot=0x1689C, }, - [0x16F03]={ + [0x1689D]={ category="lo", - description="MIAO LETTER PLA", + description="BAMUM LETTER PHASE-C NDOMBU", direction="l", linebreak="al", - unicodeslot=0x16F03, + unicodeslot=0x1689D, }, - [0x16F04]={ + [0x1689E]={ category="lo", - description="MIAO LETTER MA", + description="BAMUM LETTER PHASE-C MBAA CABBAGE-TREE", direction="l", linebreak="al", - unicodeslot=0x16F04, + unicodeslot=0x1689E, }, - [0x16F05]={ + [0x1689F]={ category="lo", - description="MIAO LETTER MHA", + description="BAMUM LETTER PHASE-C KEUSHEUAEP", direction="l", linebreak="al", - unicodeslot=0x16F05, + unicodeslot=0x1689F, }, - [0x16F06]={ + [0x168A0]={ category="lo", - description="MIAO LETTER ARCHAIC MA", + description="BAMUM LETTER PHASE-C GHAP", direction="l", linebreak="al", - unicodeslot=0x16F06, + unicodeslot=0x168A0, }, - [0x16F07]={ + [0x168A1]={ category="lo", - description="MIAO LETTER FA", + description="BAMUM LETTER PHASE-C KEUKAQ", direction="l", linebreak="al", - unicodeslot=0x16F07, + unicodeslot=0x168A1, }, - [0x16F08]={ + [0x168A2]={ category="lo", - description="MIAO LETTER VA", + description="BAMUM LETTER PHASE-C YU MUOMAE", direction="l", linebreak="al", - unicodeslot=0x16F08, + unicodeslot=0x168A2, }, - [0x16F09]={ + [0x168A3]={ category="lo", - description="MIAO LETTER VFA", + description="BAMUM LETTER PHASE-C NZEUM", direction="l", linebreak="al", - unicodeslot=0x16F09, + unicodeslot=0x168A3, }, - [0x16F0A]={ + [0x168A4]={ category="lo", - description="MIAO LETTER TA", + description="BAMUM LETTER PHASE-C MBUE", direction="l", linebreak="al", - unicodeslot=0x16F0A, + unicodeslot=0x168A4, }, - [0x16F0B]={ + [0x168A5]={ category="lo", - description="MIAO LETTER DA", + description="BAMUM LETTER PHASE-C NSEUAEN", direction="l", linebreak="al", - unicodeslot=0x16F0B, + unicodeslot=0x168A5, }, - [0x16F0C]={ + [0x168A6]={ category="lo", - description="MIAO LETTER YI TTA", + description="BAMUM LETTER PHASE-C MBIT", direction="l", linebreak="al", - unicodeslot=0x16F0C, + unicodeslot=0x168A6, }, - [0x16F0D]={ + [0x168A7]={ category="lo", - description="MIAO LETTER YI TA", + description="BAMUM LETTER PHASE-C YEUQ", direction="l", linebreak="al", - unicodeslot=0x16F0D, + unicodeslot=0x168A7, }, - [0x16F0E]={ + [0x168A8]={ category="lo", - description="MIAO LETTER TTA", + description="BAMUM LETTER PHASE-C KPARAQ", direction="l", linebreak="al", - unicodeslot=0x16F0E, + unicodeslot=0x168A8, }, - [0x16F0F]={ + [0x168A9]={ category="lo", - description="MIAO LETTER DDA", + description="BAMUM LETTER PHASE-C KAA", direction="l", linebreak="al", - unicodeslot=0x16F0F, + unicodeslot=0x168A9, }, - [0x16F10]={ + [0x168AA]={ category="lo", - description="MIAO LETTER NA", + description="BAMUM LETTER PHASE-C SEUX", direction="l", linebreak="al", - unicodeslot=0x16F10, + unicodeslot=0x168AA, }, - [0x16F11]={ + [0x168AB]={ category="lo", - description="MIAO LETTER NHA", + description="BAMUM LETTER PHASE-C NDIDA", direction="l", linebreak="al", - unicodeslot=0x16F11, + unicodeslot=0x168AB, }, - [0x16F12]={ + [0x168AC]={ category="lo", - description="MIAO LETTER YI NNA", + description="BAMUM LETTER PHASE-C TAASHAE", direction="l", linebreak="al", - unicodeslot=0x16F12, + unicodeslot=0x168AC, }, - [0x16F13]={ + [0x168AD]={ category="lo", - description="MIAO LETTER ARCHAIC NA", + description="BAMUM LETTER PHASE-C NJUEQ", direction="l", linebreak="al", - unicodeslot=0x16F13, + unicodeslot=0x168AD, }, - [0x16F14]={ + [0x168AE]={ category="lo", - description="MIAO LETTER NNA", + description="BAMUM LETTER PHASE-C TITA YUE", direction="l", linebreak="al", - unicodeslot=0x16F14, + unicodeslot=0x168AE, }, - [0x16F15]={ + [0x168AF]={ category="lo", - description="MIAO LETTER NNHA", + description="BAMUM LETTER PHASE-C SUAET", direction="l", linebreak="al", - unicodeslot=0x16F15, + unicodeslot=0x168AF, }, - [0x16F16]={ + [0x168B0]={ category="lo", - description="MIAO LETTER LA", + description="BAMUM LETTER PHASE-C NGGUAEN NYAM", direction="l", linebreak="al", - unicodeslot=0x16F16, + unicodeslot=0x168B0, }, - [0x16F17]={ + [0x168B1]={ category="lo", - description="MIAO LETTER LYA", + description="BAMUM LETTER PHASE-C VEUX", direction="l", linebreak="al", - unicodeslot=0x16F17, + unicodeslot=0x168B1, }, - [0x16F18]={ + [0x168B2]={ category="lo", - description="MIAO LETTER LHA", + description="BAMUM LETTER PHASE-C NANSANAQ", direction="l", linebreak="al", - unicodeslot=0x16F18, + unicodeslot=0x168B2, }, - [0x16F19]={ + [0x168B3]={ category="lo", - description="MIAO LETTER LHYA", + description="BAMUM LETTER PHASE-C MA KEUAERI", direction="l", linebreak="al", - unicodeslot=0x16F19, + unicodeslot=0x168B3, }, - [0x16F1A]={ + [0x168B4]={ category="lo", - description="MIAO LETTER TLHA", + description="BAMUM LETTER PHASE-C NTAA", direction="l", linebreak="al", - unicodeslot=0x16F1A, + unicodeslot=0x168B4, }, - [0x16F1B]={ + [0x168B5]={ category="lo", - description="MIAO LETTER DLHA", + description="BAMUM LETTER PHASE-C NGGUON", direction="l", linebreak="al", - unicodeslot=0x16F1B, + unicodeslot=0x168B5, }, - [0x16F1C]={ + [0x168B6]={ category="lo", - description="MIAO LETTER TLHYA", + description="BAMUM LETTER PHASE-C LAP", direction="l", linebreak="al", - unicodeslot=0x16F1C, + unicodeslot=0x168B6, }, - [0x16F1D]={ + [0x168B7]={ category="lo", - description="MIAO LETTER DLHYA", + description="BAMUM LETTER PHASE-C MBIRIEEN", direction="l", linebreak="al", - unicodeslot=0x16F1D, + unicodeslot=0x168B7, }, - [0x16F1E]={ + [0x168B8]={ category="lo", - description="MIAO LETTER KA", + description="BAMUM LETTER PHASE-C MGBASAQ", direction="l", linebreak="al", - unicodeslot=0x16F1E, + unicodeslot=0x168B8, }, - [0x16F1F]={ + [0x168B9]={ category="lo", - description="MIAO LETTER GA", + description="BAMUM LETTER PHASE-C NTEUNGBA", direction="l", linebreak="al", - unicodeslot=0x16F1F, + unicodeslot=0x168B9, }, - [0x16F20]={ + [0x168BA]={ category="lo", - description="MIAO LETTER YI KA", + description="BAMUM LETTER PHASE-C TEUTEUX", direction="l", linebreak="al", - unicodeslot=0x16F20, + unicodeslot=0x168BA, }, - [0x16F21]={ + [0x168BB]={ category="lo", - description="MIAO LETTER QA", + description="BAMUM LETTER PHASE-C NGGUM", direction="l", linebreak="al", - unicodeslot=0x16F21, + unicodeslot=0x168BB, }, - [0x16F22]={ + [0x168BC]={ category="lo", - description="MIAO LETTER QGA", + description="BAMUM LETTER PHASE-C FUE", direction="l", linebreak="al", - unicodeslot=0x16F22, + unicodeslot=0x168BC, }, - [0x16F23]={ + [0x168BD]={ category="lo", - description="MIAO LETTER NGA", + description="BAMUM LETTER PHASE-C NDEUT", direction="l", linebreak="al", - unicodeslot=0x16F23, + unicodeslot=0x168BD, }, - [0x16F24]={ + [0x168BE]={ category="lo", - description="MIAO LETTER NGHA", + description="BAMUM LETTER PHASE-C NSA", direction="l", linebreak="al", - unicodeslot=0x16F24, + unicodeslot=0x168BE, }, - [0x16F25]={ + [0x168BF]={ category="lo", - description="MIAO LETTER ARCHAIC NGA", + description="BAMUM LETTER PHASE-C NSHAQ", direction="l", linebreak="al", - unicodeslot=0x16F25, + unicodeslot=0x168BF, }, - [0x16F26]={ + [0x168C0]={ category="lo", - description="MIAO LETTER HA", + description="BAMUM LETTER PHASE-C BUNG", direction="l", linebreak="al", - unicodeslot=0x16F26, + unicodeslot=0x168C0, }, - [0x16F27]={ + [0x168C1]={ category="lo", - description="MIAO LETTER XA", + description="BAMUM LETTER PHASE-C VEUAEPEN", direction="l", linebreak="al", - unicodeslot=0x16F27, + unicodeslot=0x168C1, }, - [0x16F28]={ + [0x168C2]={ category="lo", - description="MIAO LETTER GHA", + description="BAMUM LETTER PHASE-C MBERAE", direction="l", linebreak="al", - unicodeslot=0x16F28, + unicodeslot=0x168C2, }, - [0x16F29]={ + [0x168C3]={ category="lo", - description="MIAO LETTER GHHA", + description="BAMUM LETTER PHASE-C RU", direction="l", linebreak="al", - unicodeslot=0x16F29, + unicodeslot=0x168C3, }, - [0x16F2A]={ + [0x168C4]={ category="lo", - description="MIAO LETTER TSSA", + description="BAMUM LETTER PHASE-C NJAEM", direction="l", linebreak="al", - unicodeslot=0x16F2A, + unicodeslot=0x168C4, }, - [0x16F2B]={ + [0x168C5]={ category="lo", - description="MIAO LETTER DZZA", + description="BAMUM LETTER PHASE-C LAM", direction="l", linebreak="al", - unicodeslot=0x16F2B, + unicodeslot=0x168C5, }, - [0x16F2C]={ + [0x168C6]={ category="lo", - description="MIAO LETTER NYA", + description="BAMUM LETTER PHASE-C TITUAEP", direction="l", linebreak="al", - unicodeslot=0x16F2C, + unicodeslot=0x168C6, }, - [0x16F2D]={ + [0x168C7]={ category="lo", - description="MIAO LETTER NYHA", + description="BAMUM LETTER PHASE-C NSUOT NGOM", direction="l", linebreak="al", - unicodeslot=0x16F2D, + unicodeslot=0x168C7, }, - [0x16F2E]={ + [0x168C8]={ category="lo", - description="MIAO LETTER TSHA", + description="BAMUM LETTER PHASE-C NJEEEE", direction="l", linebreak="al", - unicodeslot=0x16F2E, + unicodeslot=0x168C8, }, - [0x16F2F]={ + [0x168C9]={ category="lo", - description="MIAO LETTER DZHA", + description="BAMUM LETTER PHASE-C KET", direction="l", linebreak="al", - unicodeslot=0x16F2F, + unicodeslot=0x168C9, }, - [0x16F30]={ + [0x168CA]={ category="lo", - description="MIAO LETTER YI TSHA", + description="BAMUM LETTER PHASE-C NGGU", direction="l", linebreak="al", - unicodeslot=0x16F30, + unicodeslot=0x168CA, }, - [0x16F31]={ + [0x168CB]={ category="lo", - description="MIAO LETTER YI DZHA", + description="BAMUM LETTER PHASE-C MAESI", direction="l", linebreak="al", - unicodeslot=0x16F31, + unicodeslot=0x168CB, }, - [0x16F32]={ + [0x168CC]={ category="lo", - description="MIAO LETTER REFORMED TSHA", + description="BAMUM LETTER PHASE-C MBUAEM", direction="l", linebreak="al", - unicodeslot=0x16F32, + unicodeslot=0x168CC, }, - [0x16F33]={ + [0x168CD]={ category="lo", - description="MIAO LETTER SHA", + description="BAMUM LETTER PHASE-C LU", direction="l", linebreak="al", - unicodeslot=0x16F33, + unicodeslot=0x168CD, }, - [0x16F34]={ + [0x168CE]={ category="lo", - description="MIAO LETTER SSA", + description="BAMUM LETTER PHASE-C KUT", direction="l", linebreak="al", - unicodeslot=0x16F34, + unicodeslot=0x168CE, }, - [0x16F35]={ + [0x168CF]={ category="lo", - description="MIAO LETTER ZHA", + description="BAMUM LETTER PHASE-C NJAM", direction="l", linebreak="al", - unicodeslot=0x16F35, + unicodeslot=0x168CF, }, - [0x16F36]={ + [0x168D0]={ category="lo", - description="MIAO LETTER ZSHA", + description="BAMUM LETTER PHASE-C NGOM", direction="l", linebreak="al", - unicodeslot=0x16F36, + unicodeslot=0x168D0, }, - [0x16F37]={ + [0x168D1]={ category="lo", - description="MIAO LETTER TSA", + description="BAMUM LETTER PHASE-C WUP", direction="l", linebreak="al", - unicodeslot=0x16F37, + unicodeslot=0x168D1, }, - [0x16F38]={ + [0x168D2]={ category="lo", - description="MIAO LETTER DZA", + description="BAMUM LETTER PHASE-C NGGUEET", direction="l", linebreak="al", - unicodeslot=0x16F38, + unicodeslot=0x168D2, }, - [0x16F39]={ + [0x168D3]={ category="lo", - description="MIAO LETTER YI TSA", + description="BAMUM LETTER PHASE-C NSOM", direction="l", linebreak="al", - unicodeslot=0x16F39, + unicodeslot=0x168D3, }, - [0x16F3A]={ + [0x168D4]={ category="lo", - description="MIAO LETTER SA", + description="BAMUM LETTER PHASE-C NTEN", direction="l", linebreak="al", - unicodeslot=0x16F3A, + unicodeslot=0x168D4, }, - [0x16F3B]={ + [0x168D5]={ category="lo", - description="MIAO LETTER ZA", + description="BAMUM LETTER PHASE-C KUOP NKAARAE", direction="l", linebreak="al", - unicodeslot=0x16F3B, + unicodeslot=0x168D5, }, - [0x16F3C]={ + [0x168D6]={ category="lo", - description="MIAO LETTER ZSA", + description="BAMUM LETTER PHASE-C NSUN", direction="l", linebreak="al", - unicodeslot=0x16F3C, + unicodeslot=0x168D6, }, - [0x16F3D]={ + [0x168D7]={ category="lo", - description="MIAO LETTER ZZA", + description="BAMUM LETTER PHASE-C NDAM", direction="l", linebreak="al", - unicodeslot=0x16F3D, + unicodeslot=0x168D7, }, - [0x16F3E]={ + [0x168D8]={ category="lo", - description="MIAO LETTER ZZSA", + description="BAMUM LETTER PHASE-C MA NSIEE", direction="l", linebreak="al", - unicodeslot=0x16F3E, + unicodeslot=0x168D8, }, - [0x16F3F]={ + [0x168D9]={ category="lo", - description="MIAO LETTER ARCHAIC ZZA", + description="BAMUM LETTER PHASE-C YAA", direction="l", linebreak="al", - unicodeslot=0x16F3F, + unicodeslot=0x168D9, }, - [0x16F40]={ + [0x168DA]={ category="lo", - description="MIAO LETTER ZZYA", + description="BAMUM LETTER PHASE-C NDAP", direction="l", linebreak="al", - unicodeslot=0x16F40, + unicodeslot=0x168DA, }, - [0x16F41]={ + [0x168DB]={ category="lo", - description="MIAO LETTER ZZSYA", + description="BAMUM LETTER PHASE-C SHUEQ", direction="l", linebreak="al", - unicodeslot=0x16F41, + unicodeslot=0x168DB, }, - [0x16F42]={ + [0x168DC]={ category="lo", - description="MIAO LETTER WA", + description="BAMUM LETTER PHASE-C SETFON", direction="l", linebreak="al", - unicodeslot=0x16F42, + unicodeslot=0x168DC, }, - [0x16F43]={ + [0x168DD]={ category="lo", - description="MIAO LETTER AH", + description="BAMUM LETTER PHASE-C MBI", direction="l", linebreak="al", - unicodeslot=0x16F43, + unicodeslot=0x168DD, }, - [0x16F44]={ + [0x168DE]={ category="lo", - description="MIAO LETTER HHA", + description="BAMUM LETTER PHASE-C MAEMBA", direction="l", linebreak="al", - unicodeslot=0x16F44, + unicodeslot=0x168DE, }, - [0x16F50]={ + [0x168DF]={ category="lo", - description="MIAO LETTER NASALIZATION", + description="BAMUM LETTER PHASE-C MBANYI", direction="l", linebreak="al", - unicodeslot=0x16F50, - }, - [0x16F51]={ - category="mc", - description="MIAO SIGN ASPIRATION", - direction="l", - linebreak="cm", - unicodeslot=0x16F51, - }, - [0x16F52]={ - category="mc", - description="MIAO SIGN REFORMED VOICING", - direction="l", - linebreak="cm", - unicodeslot=0x16F52, - }, - [0x16F53]={ - category="mc", - description="MIAO SIGN REFORMED ASPIRATION", - direction="l", - linebreak="cm", - unicodeslot=0x16F53, - }, - [0x16F54]={ - category="mc", - description="MIAO VOWEL SIGN A", - direction="l", - linebreak="cm", - unicodeslot=0x16F54, - }, - [0x16F55]={ - category="mc", - description="MIAO VOWEL SIGN AA", - direction="l", - linebreak="cm", - unicodeslot=0x16F55, - }, - [0x16F56]={ - category="mc", - description="MIAO VOWEL SIGN AHH", - direction="l", - linebreak="cm", - unicodeslot=0x16F56, - }, - [0x16F57]={ - category="mc", - description="MIAO VOWEL SIGN AN", - direction="l", - linebreak="cm", - unicodeslot=0x16F57, - }, - [0x16F58]={ - category="mc", - description="MIAO VOWEL SIGN ANG", - direction="l", - linebreak="cm", - unicodeslot=0x16F58, - }, - [0x16F59]={ - category="mc", - description="MIAO VOWEL SIGN O", - direction="l", - linebreak="cm", - unicodeslot=0x16F59, - }, - [0x16F5A]={ - category="mc", - description="MIAO VOWEL SIGN OO", - direction="l", - linebreak="cm", - unicodeslot=0x16F5A, - }, - [0x16F5B]={ - category="mc", - description="MIAO VOWEL SIGN WO", - direction="l", - linebreak="cm", - unicodeslot=0x16F5B, - }, - [0x16F5C]={ - category="mc", - description="MIAO VOWEL SIGN W", - direction="l", - linebreak="cm", - unicodeslot=0x16F5C, - }, - [0x16F5D]={ - category="mc", - description="MIAO VOWEL SIGN E", - direction="l", - linebreak="cm", - unicodeslot=0x16F5D, - }, - [0x16F5E]={ - category="mc", - description="MIAO VOWEL SIGN EN", - direction="l", - linebreak="cm", - unicodeslot=0x16F5E, - }, - [0x16F5F]={ - category="mc", - description="MIAO VOWEL SIGN ENG", - direction="l", - linebreak="cm", - unicodeslot=0x16F5F, - }, - [0x16F60]={ - category="mc", - description="MIAO VOWEL SIGN OEY", - direction="l", - linebreak="cm", - unicodeslot=0x16F60, - }, - [0x16F61]={ - category="mc", - description="MIAO VOWEL SIGN I", - direction="l", - linebreak="cm", - unicodeslot=0x16F61, - }, - [0x16F62]={ - category="mc", - description="MIAO VOWEL SIGN IA", - direction="l", - linebreak="cm", - unicodeslot=0x16F62, - }, - [0x16F63]={ - category="mc", - description="MIAO VOWEL SIGN IAN", - direction="l", - linebreak="cm", - unicodeslot=0x16F63, - }, - [0x16F64]={ - category="mc", - description="MIAO VOWEL SIGN IANG", - direction="l", - linebreak="cm", - unicodeslot=0x16F64, - }, - [0x16F65]={ - category="mc", - description="MIAO VOWEL SIGN IO", - direction="l", - linebreak="cm", - unicodeslot=0x16F65, - }, - [0x16F66]={ - category="mc", - description="MIAO VOWEL SIGN IE", - direction="l", - linebreak="cm", - unicodeslot=0x16F66, - }, - [0x16F67]={ - category="mc", - description="MIAO VOWEL SIGN II", - direction="l", - linebreak="cm", - unicodeslot=0x16F67, - }, - [0x16F68]={ - category="mc", - description="MIAO VOWEL SIGN IU", - direction="l", - linebreak="cm", - unicodeslot=0x16F68, - }, - [0x16F69]={ - category="mc", - description="MIAO VOWEL SIGN ING", - direction="l", - linebreak="cm", - unicodeslot=0x16F69, - }, - [0x16F6A]={ - category="mc", - description="MIAO VOWEL SIGN U", - direction="l", - linebreak="cm", - unicodeslot=0x16F6A, - }, - [0x16F6B]={ - category="mc", - description="MIAO VOWEL SIGN UA", - direction="l", - linebreak="cm", - unicodeslot=0x16F6B, - }, - [0x16F6C]={ - category="mc", - description="MIAO VOWEL SIGN UAN", - direction="l", - linebreak="cm", - unicodeslot=0x16F6C, - }, - [0x16F6D]={ - category="mc", - description="MIAO VOWEL SIGN UANG", - direction="l", - linebreak="cm", - unicodeslot=0x16F6D, - }, - [0x16F6E]={ - category="mc", - description="MIAO VOWEL SIGN UU", - direction="l", - linebreak="cm", - unicodeslot=0x16F6E, - }, - [0x16F6F]={ - category="mc", - description="MIAO VOWEL SIGN UEI", - direction="l", - linebreak="cm", - unicodeslot=0x16F6F, - }, - [0x16F70]={ - category="mc", - description="MIAO VOWEL SIGN UNG", - direction="l", - linebreak="cm", - unicodeslot=0x16F70, - }, - [0x16F71]={ - category="mc", - description="MIAO VOWEL SIGN Y", - direction="l", - linebreak="cm", - unicodeslot=0x16F71, - }, - [0x16F72]={ - category="mc", - description="MIAO VOWEL SIGN YI", - direction="l", - linebreak="cm", - unicodeslot=0x16F72, - }, - [0x16F73]={ - category="mc", - description="MIAO VOWEL SIGN AE", - direction="l", - linebreak="cm", - unicodeslot=0x16F73, - }, - [0x16F74]={ - category="mc", - description="MIAO VOWEL SIGN AEE", - direction="l", - linebreak="cm", - unicodeslot=0x16F74, - }, - [0x16F75]={ - category="mc", - description="MIAO VOWEL SIGN ERR", - direction="l", - linebreak="cm", - unicodeslot=0x16F75, - }, - [0x16F76]={ - category="mc", - description="MIAO VOWEL SIGN ROUNDED ERR", - direction="l", - linebreak="cm", - unicodeslot=0x16F76, - }, - [0x16F77]={ - category="mc", - description="MIAO VOWEL SIGN ER", - direction="l", - linebreak="cm", - unicodeslot=0x16F77, - }, - [0x16F78]={ - category="mc", - description="MIAO VOWEL SIGN ROUNDED ER", - direction="l", - linebreak="cm", - unicodeslot=0x16F78, - }, - [0x16F79]={ - category="mc", - description="MIAO VOWEL SIGN AI", - direction="l", - linebreak="cm", - unicodeslot=0x16F79, - }, - [0x16F7A]={ - category="mc", - description="MIAO VOWEL SIGN EI", - direction="l", - linebreak="cm", - unicodeslot=0x16F7A, - }, - [0x16F7B]={ - category="mc", - description="MIAO VOWEL SIGN AU", - direction="l", - linebreak="cm", - unicodeslot=0x16F7B, - }, - [0x16F7C]={ - category="mc", - description="MIAO VOWEL SIGN OU", - direction="l", - linebreak="cm", - unicodeslot=0x16F7C, - }, - [0x16F7D]={ - category="mc", - description="MIAO VOWEL SIGN N", - direction="l", - linebreak="cm", - unicodeslot=0x16F7D, - }, - [0x16F7E]={ - category="mc", - description="MIAO VOWEL SIGN NG", - direction="l", - linebreak="cm", - unicodeslot=0x16F7E, - }, - [0x16F8F]={ - category="mn", - description="MIAO TONE RIGHT", - direction="nsm", - linebreak="cm", - unicodeslot=0x16F8F, - }, - [0x16F90]={ - category="mn", - description="MIAO TONE TOP RIGHT", - direction="nsm", - linebreak="cm", - unicodeslot=0x16F90, - }, - [0x16F91]={ - category="mn", - description="MIAO TONE ABOVE", - direction="nsm", - linebreak="cm", - unicodeslot=0x16F91, - }, - [0x16F92]={ - category="mn", - description="MIAO TONE BELOW", - direction="nsm", - linebreak="cm", - unicodeslot=0x16F92, + unicodeslot=0x168DF, }, - [0x16F93]={ - category="lm", - description="MIAO LETTER TONE-2", + [0x168E0]={ + category="lo", + description="BAMUM LETTER PHASE-C KEUSEUX", direction="l", linebreak="al", - unicodeslot=0x16F93, + unicodeslot=0x168E0, }, - [0x16F94]={ - category="lm", - description="MIAO LETTER TONE-3", + [0x168E1]={ + category="lo", + description="BAMUM LETTER PHASE-C MBEUX", direction="l", linebreak="al", - unicodeslot=0x16F94, + unicodeslot=0x168E1, }, - [0x16F95]={ - category="lm", - description="MIAO LETTER TONE-4", + [0x168E2]={ + category="lo", + description="BAMUM LETTER PHASE-C KEUM", direction="l", linebreak="al", - unicodeslot=0x16F95, + unicodeslot=0x168E2, }, - [0x16F96]={ - category="lm", - description="MIAO LETTER TONE-5", + [0x168E3]={ + category="lo", + description="BAMUM LETTER PHASE-C MBAA PICKET", direction="l", linebreak="al", - unicodeslot=0x16F96, + unicodeslot=0x168E3, }, - [0x16F97]={ - category="lm", - description="MIAO LETTER TONE-6", + [0x168E4]={ + category="lo", + description="BAMUM LETTER PHASE-C YUWOQ", direction="l", linebreak="al", - unicodeslot=0x16F97, + unicodeslot=0x168E4, }, - [0x16F98]={ - category="lm", - description="MIAO LETTER TONE-7", + [0x168E5]={ + category="lo", + description="BAMUM LETTER PHASE-C NJEUX", direction="l", linebreak="al", - unicodeslot=0x16F98, + unicodeslot=0x168E5, }, - [0x16F99]={ - category="lm", - description="MIAO LETTER TONE-8", + [0x168E6]={ + category="lo", + description="BAMUM LETTER PHASE-C MIEE", direction="l", linebreak="al", - unicodeslot=0x16F99, + unicodeslot=0x168E6, }, - [0x16F9A]={ - category="lm", - description="MIAO LETTER REFORMED TONE-1", + [0x168E7]={ + category="lo", + description="BAMUM LETTER PHASE-C MUAE", direction="l", linebreak="al", - unicodeslot=0x16F9A, + unicodeslot=0x168E7, }, - [0x16F9B]={ - category="lm", - description="MIAO LETTER REFORMED TONE-2", + [0x168E8]={ + category="lo", + description="BAMUM LETTER PHASE-C SHIQ", direction="l", linebreak="al", - unicodeslot=0x16F9B, + unicodeslot=0x168E8, }, - [0x16F9C]={ - category="lm", - description="MIAO LETTER REFORMED TONE-4", + [0x168E9]={ + category="lo", + description="BAMUM LETTER PHASE-C KEN LAW", direction="l", linebreak="al", - unicodeslot=0x16F9C, + unicodeslot=0x168E9, }, - [0x16F9D]={ - category="lm", - description="MIAO LETTER REFORMED TONE-5", + [0x168EA]={ + category="lo", + description="BAMUM LETTER PHASE-C KEN FATIGUE", direction="l", linebreak="al", - unicodeslot=0x16F9D, + unicodeslot=0x168EA, }, - [0x16F9E]={ - category="lm", - description="MIAO LETTER REFORMED TONE-6", + [0x168EB]={ + category="lo", + description="BAMUM LETTER PHASE-C NGAQ", direction="l", linebreak="al", - unicodeslot=0x16F9E, + unicodeslot=0x168EB, }, - [0x16F9F]={ - category="lm", - description="MIAO LETTER REFORMED TONE-8", + [0x168EC]={ + category="lo", + description="BAMUM LETTER PHASE-C NAQ", direction="l", linebreak="al", - unicodeslot=0x16F9F, + unicodeslot=0x168EC, }, - [0x1B000]={ + [0x168ED]={ category="lo", - cjkwd="w", - description="KATAKANA LETTER ARCHAIC E", + description="BAMUM LETTER PHASE-C LIQ", direction="l", - linebreak="id", - unicodeslot=0x1B000, + linebreak="al", + unicodeslot=0x168ED, }, - [0x1B001]={ + [0x168EE]={ category="lo", - cjkwd="w", - description="HIRAGANA LETTER ARCHAIC YE", + description="BAMUM LETTER PHASE-C PIN", direction="l", - linebreak="id", - unicodeslot=0x1B001, + linebreak="al", + unicodeslot=0x168EE, }, - [0x1BC00]={ + [0x168EF]={ category="lo", - description="DUPLOYAN LETTER H", + description="BAMUM LETTER PHASE-C PEN", direction="l", linebreak="al", - unicodeslot=0x1BC00, + unicodeslot=0x168EF, }, - [0x1BC01]={ + [0x168F0]={ category="lo", - description="DUPLOYAN LETTER X", + description="BAMUM LETTER PHASE-C TET", direction="l", linebreak="al", - unicodeslot=0x1BC01, + unicodeslot=0x168F0, }, - [0x1BC02]={ + [0x168F1]={ category="lo", - description="DUPLOYAN LETTER P", + description="BAMUM LETTER PHASE-D MBUO", direction="l", linebreak="al", - unicodeslot=0x1BC02, + unicodeslot=0x168F1, }, - [0x1BC03]={ + [0x168F2]={ category="lo", - description="DUPLOYAN LETTER T", + description="BAMUM LETTER PHASE-D WAP", direction="l", linebreak="al", - unicodeslot=0x1BC03, + unicodeslot=0x168F2, }, - [0x1BC04]={ + [0x168F3]={ category="lo", - description="DUPLOYAN LETTER F", + description="BAMUM LETTER PHASE-D NJI", direction="l", linebreak="al", - unicodeslot=0x1BC04, + unicodeslot=0x168F3, }, - [0x1BC05]={ + [0x168F4]={ category="lo", - description="DUPLOYAN LETTER K", + description="BAMUM LETTER PHASE-D MFON", direction="l", linebreak="al", - unicodeslot=0x1BC05, + unicodeslot=0x168F4, }, - [0x1BC06]={ + [0x168F5]={ category="lo", - description="DUPLOYAN LETTER L", + description="BAMUM LETTER PHASE-D NJIEE", direction="l", linebreak="al", - unicodeslot=0x1BC06, + unicodeslot=0x168F5, }, - [0x1BC07]={ + [0x168F6]={ category="lo", - description="DUPLOYAN LETTER B", + description="BAMUM LETTER PHASE-D LIEE", direction="l", linebreak="al", - unicodeslot=0x1BC07, + unicodeslot=0x168F6, }, - [0x1BC08]={ + [0x168F7]={ category="lo", - description="DUPLOYAN LETTER D", + description="BAMUM LETTER PHASE-D NJEUT", direction="l", linebreak="al", - unicodeslot=0x1BC08, + unicodeslot=0x168F7, }, - [0x1BC09]={ + [0x168F8]={ category="lo", - description="DUPLOYAN LETTER V", + description="BAMUM LETTER PHASE-D NSHEE", direction="l", linebreak="al", - unicodeslot=0x1BC09, + unicodeslot=0x168F8, }, - [0x1BC0A]={ + [0x168F9]={ category="lo", - description="DUPLOYAN LETTER G", + description="BAMUM LETTER PHASE-D NGGAAMAE", direction="l", linebreak="al", - unicodeslot=0x1BC0A, + unicodeslot=0x168F9, }, - [0x1BC0B]={ + [0x168FA]={ category="lo", - description="DUPLOYAN LETTER R", + description="BAMUM LETTER PHASE-D NYAM", direction="l", linebreak="al", - unicodeslot=0x1BC0B, + unicodeslot=0x168FA, }, - [0x1BC0C]={ + [0x168FB]={ category="lo", - description="DUPLOYAN LETTER P N", + description="BAMUM LETTER PHASE-D WUAEN", direction="l", linebreak="al", - unicodeslot=0x1BC0C, + unicodeslot=0x168FB, }, - [0x1BC0D]={ + [0x168FC]={ category="lo", - description="DUPLOYAN LETTER D S", + description="BAMUM LETTER PHASE-D NGKUN", direction="l", linebreak="al", - unicodeslot=0x1BC0D, + unicodeslot=0x168FC, }, - [0x1BC0E]={ + [0x168FD]={ category="lo", - description="DUPLOYAN LETTER F N", + description="BAMUM LETTER PHASE-D SHEE", direction="l", linebreak="al", - unicodeslot=0x1BC0E, + unicodeslot=0x168FD, }, - [0x1BC0F]={ + [0x168FE]={ category="lo", - description="DUPLOYAN LETTER K M", + description="BAMUM LETTER PHASE-D NGKAP", direction="l", linebreak="al", - unicodeslot=0x1BC0F, + unicodeslot=0x168FE, }, - [0x1BC10]={ + [0x168FF]={ category="lo", - description="DUPLOYAN LETTER R S", + description="BAMUM LETTER PHASE-D KEUAETMEUN", direction="l", linebreak="al", - unicodeslot=0x1BC10, + unicodeslot=0x168FF, }, - [0x1BC11]={ + [0x16900]={ category="lo", - description="DUPLOYAN LETTER TH", + description="BAMUM LETTER PHASE-D TEUT", direction="l", linebreak="al", - unicodeslot=0x1BC11, + unicodeslot=0x16900, }, - [0x1BC12]={ + [0x16901]={ category="lo", - description="DUPLOYAN LETTER SLOAN DH", + description="BAMUM LETTER PHASE-D SHEUAE", direction="l", linebreak="al", - unicodeslot=0x1BC12, + unicodeslot=0x16901, }, - [0x1BC13]={ + [0x16902]={ category="lo", - description="DUPLOYAN LETTER DH", + description="BAMUM LETTER PHASE-D NJAP", direction="l", linebreak="al", - unicodeslot=0x1BC13, + unicodeslot=0x16902, }, - [0x1BC14]={ + [0x16903]={ category="lo", - description="DUPLOYAN LETTER KK", + description="BAMUM LETTER PHASE-D SUE", direction="l", linebreak="al", - unicodeslot=0x1BC14, + unicodeslot=0x16903, }, - [0x1BC15]={ + [0x16904]={ category="lo", - description="DUPLOYAN LETTER SLOAN J", + description="BAMUM LETTER PHASE-D KET", direction="l", linebreak="al", - unicodeslot=0x1BC15, + unicodeslot=0x16904, }, - [0x1BC16]={ + [0x16905]={ category="lo", - description="DUPLOYAN LETTER HL", + description="BAMUM LETTER PHASE-D YAEMMAE", direction="l", linebreak="al", - unicodeslot=0x1BC16, + unicodeslot=0x16905, }, - [0x1BC17]={ + [0x16906]={ category="lo", - description="DUPLOYAN LETTER LH", + description="BAMUM LETTER PHASE-D KUOM", direction="l", linebreak="al", - unicodeslot=0x1BC17, + unicodeslot=0x16906, }, - [0x1BC18]={ + [0x16907]={ category="lo", - description="DUPLOYAN LETTER RH", + description="BAMUM LETTER PHASE-D SAP", direction="l", linebreak="al", - unicodeslot=0x1BC18, + unicodeslot=0x16907, }, - [0x1BC19]={ + [0x16908]={ category="lo", - description="DUPLOYAN LETTER M", + description="BAMUM LETTER PHASE-D MFEUT", direction="l", linebreak="al", - unicodeslot=0x1BC19, + unicodeslot=0x16908, }, - [0x1BC1A]={ + [0x16909]={ category="lo", - description="DUPLOYAN LETTER N", + description="BAMUM LETTER PHASE-D NDEUX", direction="l", linebreak="al", - unicodeslot=0x1BC1A, + unicodeslot=0x16909, }, - [0x1BC1B]={ + [0x1690A]={ category="lo", - description="DUPLOYAN LETTER J", + description="BAMUM LETTER PHASE-D MALEERI", direction="l", linebreak="al", - unicodeslot=0x1BC1B, + unicodeslot=0x1690A, }, - [0x1BC1C]={ + [0x1690B]={ category="lo", - description="DUPLOYAN LETTER S", + description="BAMUM LETTER PHASE-D MEUT", direction="l", linebreak="al", - unicodeslot=0x1BC1C, + unicodeslot=0x1690B, }, - [0x1BC1D]={ + [0x1690C]={ category="lo", - description="DUPLOYAN LETTER M N", + description="BAMUM LETTER PHASE-D SEUAEQ", direction="l", linebreak="al", - unicodeslot=0x1BC1D, + unicodeslot=0x1690C, }, - [0x1BC1E]={ + [0x1690D]={ category="lo", - description="DUPLOYAN LETTER N M", + description="BAMUM LETTER PHASE-D YEN", direction="l", linebreak="al", - unicodeslot=0x1BC1E, + unicodeslot=0x1690D, }, - [0x1BC1F]={ + [0x1690E]={ category="lo", - description="DUPLOYAN LETTER J M", + description="BAMUM LETTER PHASE-D NJEUAEM", direction="l", linebreak="al", - unicodeslot=0x1BC1F, + unicodeslot=0x1690E, }, - [0x1BC20]={ + [0x1690F]={ category="lo", - description="DUPLOYAN LETTER S J", + description="BAMUM LETTER PHASE-D KEUOT MBUAE", direction="l", linebreak="al", - unicodeslot=0x1BC20, + unicodeslot=0x1690F, }, - [0x1BC21]={ + [0x16910]={ category="lo", - description="DUPLOYAN LETTER M WITH DOT", + description="BAMUM LETTER PHASE-D NGKEURI", direction="l", linebreak="al", - unicodeslot=0x1BC21, + unicodeslot=0x16910, }, - [0x1BC22]={ + [0x16911]={ category="lo", - description="DUPLOYAN LETTER N WITH DOT", + description="BAMUM LETTER PHASE-D TU", direction="l", linebreak="al", - unicodeslot=0x1BC22, + unicodeslot=0x16911, }, - [0x1BC23]={ + [0x16912]={ category="lo", - description="DUPLOYAN LETTER J WITH DOT", + description="BAMUM LETTER PHASE-D GHAA", direction="l", linebreak="al", - unicodeslot=0x1BC23, + unicodeslot=0x16912, }, - [0x1BC24]={ + [0x16913]={ category="lo", - description="DUPLOYAN LETTER J WITH DOTS INSIDE AND ABOVE", + description="BAMUM LETTER PHASE-D NGKYEE", direction="l", linebreak="al", - unicodeslot=0x1BC24, + unicodeslot=0x16913, }, - [0x1BC25]={ + [0x16914]={ category="lo", - description="DUPLOYAN LETTER S WITH DOT", + description="BAMUM LETTER PHASE-D FEUFEUAET", direction="l", linebreak="al", - unicodeslot=0x1BC25, + unicodeslot=0x16914, }, - [0x1BC26]={ + [0x16915]={ category="lo", - description="DUPLOYAN LETTER S WITH DOT BELOW", + description="BAMUM LETTER PHASE-D NDEE", direction="l", linebreak="al", - unicodeslot=0x1BC26, + unicodeslot=0x16915, }, - [0x1BC27]={ + [0x16916]={ category="lo", - description="DUPLOYAN LETTER M S", + description="BAMUM LETTER PHASE-D MGBOFUM", direction="l", linebreak="al", - unicodeslot=0x1BC27, + unicodeslot=0x16916, }, - [0x1BC28]={ + [0x16917]={ category="lo", - description="DUPLOYAN LETTER N S", + description="BAMUM LETTER PHASE-D LEUAEP", direction="l", linebreak="al", - unicodeslot=0x1BC28, + unicodeslot=0x16917, }, - [0x1BC29]={ + [0x16918]={ category="lo", - description="DUPLOYAN LETTER J S", + description="BAMUM LETTER PHASE-D NDON", direction="l", linebreak="al", - unicodeslot=0x1BC29, + unicodeslot=0x16918, }, - [0x1BC2A]={ + [0x16919]={ category="lo", - description="DUPLOYAN LETTER S S", + description="BAMUM LETTER PHASE-D MONI", direction="l", linebreak="al", - unicodeslot=0x1BC2A, + unicodeslot=0x16919, }, - [0x1BC2B]={ + [0x1691A]={ category="lo", - description="DUPLOYAN LETTER M N S", + description="BAMUM LETTER PHASE-D MGBEUN", direction="l", linebreak="al", - unicodeslot=0x1BC2B, + unicodeslot=0x1691A, }, - [0x1BC2C]={ + [0x1691B]={ category="lo", - description="DUPLOYAN LETTER N M S", + description="BAMUM LETTER PHASE-D PUUT", direction="l", linebreak="al", - unicodeslot=0x1BC2C, + unicodeslot=0x1691B, }, - [0x1BC2D]={ + [0x1691C]={ category="lo", - description="DUPLOYAN LETTER J M S", + description="BAMUM LETTER PHASE-D MGBIEE", direction="l", linebreak="al", - unicodeslot=0x1BC2D, + unicodeslot=0x1691C, }, - [0x1BC2E]={ + [0x1691D]={ category="lo", - description="DUPLOYAN LETTER S J S", + description="BAMUM LETTER PHASE-D MFO", direction="l", linebreak="al", - unicodeslot=0x1BC2E, + unicodeslot=0x1691D, }, - [0x1BC2F]={ + [0x1691E]={ category="lo", - description="DUPLOYAN LETTER J S WITH DOT", + description="BAMUM LETTER PHASE-D LUM", direction="l", linebreak="al", - unicodeslot=0x1BC2F, + unicodeslot=0x1691E, }, - [0x1BC30]={ + [0x1691F]={ category="lo", - description="DUPLOYAN LETTER J N", + description="BAMUM LETTER PHASE-D NSIEEP", direction="l", linebreak="al", - unicodeslot=0x1BC30, + unicodeslot=0x1691F, }, - [0x1BC31]={ + [0x16920]={ category="lo", - description="DUPLOYAN LETTER J N S", + description="BAMUM LETTER PHASE-D MBAA", direction="l", linebreak="al", - unicodeslot=0x1BC31, + unicodeslot=0x16920, }, - [0x1BC32]={ + [0x16921]={ category="lo", - description="DUPLOYAN LETTER S T", + description="BAMUM LETTER PHASE-D KWAET", direction="l", linebreak="al", - unicodeslot=0x1BC32, + unicodeslot=0x16921, }, - [0x1BC33]={ + [0x16922]={ category="lo", - description="DUPLOYAN LETTER S T R", + description="BAMUM LETTER PHASE-D NYET", direction="l", linebreak="al", - unicodeslot=0x1BC33, + unicodeslot=0x16922, }, - [0x1BC34]={ + [0x16923]={ category="lo", - description="DUPLOYAN LETTER S P", + description="BAMUM LETTER PHASE-D TEUAEN", direction="l", linebreak="al", - unicodeslot=0x1BC34, + unicodeslot=0x16923, }, - [0x1BC35]={ + [0x16924]={ category="lo", - description="DUPLOYAN LETTER S P R", + description="BAMUM LETTER PHASE-D SOT", direction="l", linebreak="al", - unicodeslot=0x1BC35, + unicodeslot=0x16924, }, - [0x1BC36]={ + [0x16925]={ category="lo", - description="DUPLOYAN LETTER T S", + description="BAMUM LETTER PHASE-D YUWOQ", direction="l", linebreak="al", - unicodeslot=0x1BC36, + unicodeslot=0x16925, }, - [0x1BC37]={ + [0x16926]={ category="lo", - description="DUPLOYAN LETTER T R S", + description="BAMUM LETTER PHASE-D KEUM", direction="l", linebreak="al", - unicodeslot=0x1BC37, + unicodeslot=0x16926, }, - [0x1BC38]={ + [0x16927]={ category="lo", - description="DUPLOYAN LETTER W", + description="BAMUM LETTER PHASE-D RAEM", direction="l", linebreak="al", - unicodeslot=0x1BC38, + unicodeslot=0x16927, }, - [0x1BC39]={ + [0x16928]={ category="lo", - description="DUPLOYAN LETTER WH", + description="BAMUM LETTER PHASE-D TEEEE", direction="l", linebreak="al", - unicodeslot=0x1BC39, + unicodeslot=0x16928, }, - [0x1BC3A]={ + [0x16929]={ category="lo", - description="DUPLOYAN LETTER W R", + description="BAMUM LETTER PHASE-D NGKEUAEQ", direction="l", linebreak="al", - unicodeslot=0x1BC3A, + unicodeslot=0x16929, }, - [0x1BC3B]={ + [0x1692A]={ category="lo", - description="DUPLOYAN LETTER S N", + description="BAMUM LETTER PHASE-D MFEUAE", direction="l", linebreak="al", - unicodeslot=0x1BC3B, + unicodeslot=0x1692A, }, - [0x1BC3C]={ + [0x1692B]={ category="lo", - description="DUPLOYAN LETTER S M", + description="BAMUM LETTER PHASE-D NSIEET", direction="l", linebreak="al", - unicodeslot=0x1BC3C, + unicodeslot=0x1692B, }, - [0x1BC3D]={ + [0x1692C]={ category="lo", - description="DUPLOYAN LETTER K R S", + description="BAMUM LETTER PHASE-D KEUP", direction="l", linebreak="al", - unicodeslot=0x1BC3D, + unicodeslot=0x1692C, }, - [0x1BC3E]={ + [0x1692D]={ category="lo", - description="DUPLOYAN LETTER G R S", + description="BAMUM LETTER PHASE-D PIP", direction="l", linebreak="al", - unicodeslot=0x1BC3E, + unicodeslot=0x1692D, }, - [0x1BC3F]={ + [0x1692E]={ category="lo", - description="DUPLOYAN LETTER S K", + description="BAMUM LETTER PHASE-D PEUTAE", direction="l", linebreak="al", - unicodeslot=0x1BC3F, + unicodeslot=0x1692E, }, - [0x1BC40]={ + [0x1692F]={ category="lo", - description="DUPLOYAN LETTER S K R", + description="BAMUM LETTER PHASE-D NYUE", direction="l", linebreak="al", - unicodeslot=0x1BC40, + unicodeslot=0x1692F, }, - [0x1BC41]={ + [0x16930]={ category="lo", - description="DUPLOYAN LETTER A", + description="BAMUM LETTER PHASE-D LET", direction="l", linebreak="al", - unicodeslot=0x1BC41, + unicodeslot=0x16930, }, - [0x1BC42]={ + [0x16931]={ category="lo", - description="DUPLOYAN LETTER SLOAN OW", + description="BAMUM LETTER PHASE-D NGGAAM", direction="l", linebreak="al", - unicodeslot=0x1BC42, + unicodeslot=0x16931, }, - [0x1BC43]={ + [0x16932]={ category="lo", - description="DUPLOYAN LETTER OA", + description="BAMUM LETTER PHASE-D MFIEE", direction="l", linebreak="al", - unicodeslot=0x1BC43, + unicodeslot=0x16932, }, - [0x1BC44]={ + [0x16933]={ category="lo", - description="DUPLOYAN LETTER O", + description="BAMUM LETTER PHASE-D NGGWAEN", direction="l", linebreak="al", - unicodeslot=0x1BC44, + unicodeslot=0x16933, }, - [0x1BC45]={ + [0x16934]={ category="lo", - description="DUPLOYAN LETTER AOU", + description="BAMUM LETTER PHASE-D YUOM", direction="l", linebreak="al", - unicodeslot=0x1BC45, + unicodeslot=0x16934, }, - [0x1BC46]={ + [0x16935]={ category="lo", - description="DUPLOYAN LETTER I", + description="BAMUM LETTER PHASE-D PAP", direction="l", linebreak="al", - unicodeslot=0x1BC46, + unicodeslot=0x16935, }, - [0x1BC47]={ + [0x16936]={ category="lo", - description="DUPLOYAN LETTER E", + description="BAMUM LETTER PHASE-D YUOP", direction="l", linebreak="al", - unicodeslot=0x1BC47, + unicodeslot=0x16936, }, - [0x1BC48]={ + [0x16937]={ category="lo", - description="DUPLOYAN LETTER IE", + description="BAMUM LETTER PHASE-D NDAM", direction="l", linebreak="al", - unicodeslot=0x1BC48, + unicodeslot=0x16937, }, - [0x1BC49]={ + [0x16938]={ category="lo", - description="DUPLOYAN LETTER SHORT I", + description="BAMUM LETTER PHASE-D NTEUM", direction="l", linebreak="al", - unicodeslot=0x1BC49, + unicodeslot=0x16938, }, - [0x1BC4A]={ + [0x16939]={ category="lo", - description="DUPLOYAN LETTER UI", + description="BAMUM LETTER PHASE-D SUAE", direction="l", linebreak="al", - unicodeslot=0x1BC4A, + unicodeslot=0x16939, }, - [0x1BC4B]={ + [0x1693A]={ category="lo", - description="DUPLOYAN LETTER EE", + description="BAMUM LETTER PHASE-D KUN", direction="l", linebreak="al", - unicodeslot=0x1BC4B, + unicodeslot=0x1693A, }, - [0x1BC4C]={ + [0x1693B]={ category="lo", - description="DUPLOYAN LETTER SLOAN EH", + description="BAMUM LETTER PHASE-D NGGEUX", direction="l", linebreak="al", - unicodeslot=0x1BC4C, + unicodeslot=0x1693B, }, - [0x1BC4D]={ + [0x1693C]={ category="lo", - description="DUPLOYAN LETTER ROMANIAN I", + description="BAMUM LETTER PHASE-D NGKIEE", direction="l", linebreak="al", - unicodeslot=0x1BC4D, + unicodeslot=0x1693C, }, - [0x1BC4E]={ + [0x1693D]={ category="lo", - description="DUPLOYAN LETTER SLOAN EE", + description="BAMUM LETTER PHASE-D TUOT", direction="l", linebreak="al", - unicodeslot=0x1BC4E, + unicodeslot=0x1693D, }, - [0x1BC4F]={ + [0x1693E]={ category="lo", - description="DUPLOYAN LETTER LONG I", + description="BAMUM LETTER PHASE-D MEUN", direction="l", linebreak="al", - unicodeslot=0x1BC4F, + unicodeslot=0x1693E, }, - [0x1BC50]={ + [0x1693F]={ category="lo", - description="DUPLOYAN LETTER YE", + description="BAMUM LETTER PHASE-D KUQ", direction="l", linebreak="al", - unicodeslot=0x1BC50, + unicodeslot=0x1693F, }, - [0x1BC51]={ + [0x16940]={ category="lo", - description="DUPLOYAN LETTER U", + description="BAMUM LETTER PHASE-D NSUM", direction="l", linebreak="al", - unicodeslot=0x1BC51, + unicodeslot=0x16940, }, - [0x1BC52]={ + [0x16941]={ category="lo", - description="DUPLOYAN LETTER EU", + description="BAMUM LETTER PHASE-D TEUN", direction="l", linebreak="al", - unicodeslot=0x1BC52, + unicodeslot=0x16941, }, - [0x1BC53]={ + [0x16942]={ category="lo", - description="DUPLOYAN LETTER XW", + description="BAMUM LETTER PHASE-D MAENJET", direction="l", linebreak="al", - unicodeslot=0x1BC53, + unicodeslot=0x16942, }, - [0x1BC54]={ + [0x16943]={ category="lo", - description="DUPLOYAN LETTER U N", + description="BAMUM LETTER PHASE-D NGGAP", direction="l", linebreak="al", - unicodeslot=0x1BC54, + unicodeslot=0x16943, }, - [0x1BC55]={ + [0x16944]={ category="lo", - description="DUPLOYAN LETTER LONG U", + description="BAMUM LETTER PHASE-D LEUM", direction="l", linebreak="al", - unicodeslot=0x1BC55, + unicodeslot=0x16944, }, - [0x1BC56]={ + [0x16945]={ category="lo", - description="DUPLOYAN LETTER ROMANIAN U", + description="BAMUM LETTER PHASE-D NGGUOM", direction="l", linebreak="al", - unicodeslot=0x1BC56, + unicodeslot=0x16945, }, - [0x1BC57]={ + [0x16946]={ category="lo", - description="DUPLOYAN LETTER UH", + description="BAMUM LETTER PHASE-D NSHUT", direction="l", linebreak="al", - unicodeslot=0x1BC57, + unicodeslot=0x16946, }, - [0x1BC58]={ + [0x16947]={ category="lo", - description="DUPLOYAN LETTER SLOAN U", + description="BAMUM LETTER PHASE-D NJUEQ", direction="l", linebreak="al", - unicodeslot=0x1BC58, + unicodeslot=0x16947, }, - [0x1BC59]={ + [0x16948]={ category="lo", - description="DUPLOYAN LETTER OOH", + description="BAMUM LETTER PHASE-D GHEUAE", direction="l", linebreak="al", - unicodeslot=0x1BC59, + unicodeslot=0x16948, }, - [0x1BC5A]={ + [0x16949]={ category="lo", - description="DUPLOYAN LETTER OW", + description="BAMUM LETTER PHASE-D KU", direction="l", linebreak="al", - unicodeslot=0x1BC5A, + unicodeslot=0x16949, }, - [0x1BC5B]={ + [0x1694A]={ category="lo", - description="DUPLOYAN LETTER OU", + description="BAMUM LETTER PHASE-D REN OLD", direction="l", linebreak="al", - unicodeslot=0x1BC5B, + unicodeslot=0x1694A, }, - [0x1BC5C]={ + [0x1694B]={ category="lo", - description="DUPLOYAN LETTER WA", + description="BAMUM LETTER PHASE-D TAE", direction="l", linebreak="al", - unicodeslot=0x1BC5C, + unicodeslot=0x1694B, }, - [0x1BC5D]={ + [0x1694C]={ category="lo", - description="DUPLOYAN LETTER WO", + description="BAMUM LETTER PHASE-D TOQ", direction="l", linebreak="al", - unicodeslot=0x1BC5D, + unicodeslot=0x1694C, }, - [0x1BC5E]={ + [0x1694D]={ category="lo", - description="DUPLOYAN LETTER WI", + description="BAMUM LETTER PHASE-D NYI", direction="l", linebreak="al", - unicodeslot=0x1BC5E, + unicodeslot=0x1694D, }, - [0x1BC5F]={ + [0x1694E]={ category="lo", - description="DUPLOYAN LETTER WEI", + description="BAMUM LETTER PHASE-D RII", direction="l", linebreak="al", - unicodeslot=0x1BC5F, + unicodeslot=0x1694E, }, - [0x1BC60]={ + [0x1694F]={ category="lo", - description="DUPLOYAN LETTER WOW", + description="BAMUM LETTER PHASE-D LEEEE", direction="l", linebreak="al", - unicodeslot=0x1BC60, + unicodeslot=0x1694F, }, - [0x1BC61]={ + [0x16950]={ category="lo", - description="DUPLOYAN LETTER NASAL U", + description="BAMUM LETTER PHASE-D MEEEE", direction="l", linebreak="al", - unicodeslot=0x1BC61, + unicodeslot=0x16950, }, - [0x1BC62]={ + [0x16951]={ category="lo", - description="DUPLOYAN LETTER NASAL O", + description="BAMUM LETTER PHASE-D M", direction="l", linebreak="al", - unicodeslot=0x1BC62, + unicodeslot=0x16951, }, - [0x1BC63]={ + [0x16952]={ category="lo", - description="DUPLOYAN LETTER NASAL I", + description="BAMUM LETTER PHASE-D SUU", direction="l", linebreak="al", - unicodeslot=0x1BC63, + unicodeslot=0x16952, }, - [0x1BC64]={ + [0x16953]={ category="lo", - description="DUPLOYAN LETTER NASAL A", + description="BAMUM LETTER PHASE-D MU", direction="l", linebreak="al", - unicodeslot=0x1BC64, + unicodeslot=0x16953, }, - [0x1BC65]={ + [0x16954]={ category="lo", - description="DUPLOYAN LETTER PERNIN AN", + description="BAMUM LETTER PHASE-D SHII", direction="l", linebreak="al", - unicodeslot=0x1BC65, + unicodeslot=0x16954, }, - [0x1BC66]={ + [0x16955]={ category="lo", - description="DUPLOYAN LETTER PERNIN AM", + description="BAMUM LETTER PHASE-D SHEUX", direction="l", linebreak="al", - unicodeslot=0x1BC66, + unicodeslot=0x16955, }, - [0x1BC67]={ + [0x16956]={ category="lo", - description="DUPLOYAN LETTER SLOAN EN", + description="BAMUM LETTER PHASE-D KYEE", direction="l", linebreak="al", - unicodeslot=0x1BC67, + unicodeslot=0x16956, }, - [0x1BC68]={ + [0x16957]={ category="lo", - description="DUPLOYAN LETTER SLOAN AN", + description="BAMUM LETTER PHASE-D NU", direction="l", linebreak="al", - unicodeslot=0x1BC68, + unicodeslot=0x16957, }, - [0x1BC69]={ + [0x16958]={ category="lo", - description="DUPLOYAN LETTER SLOAN ON", + description="BAMUM LETTER PHASE-D SHU", direction="l", linebreak="al", - unicodeslot=0x1BC69, + unicodeslot=0x16958, }, - [0x1BC6A]={ + [0x16959]={ category="lo", - description="DUPLOYAN LETTER VOCALIC M", + description="BAMUM LETTER PHASE-D NTEE", direction="l", linebreak="al", - unicodeslot=0x1BC6A, + unicodeslot=0x16959, }, - [0x1BC70]={ + [0x1695A]={ category="lo", - description="DUPLOYAN AFFIX LEFT HORIZONTAL SECANT", + description="BAMUM LETTER PHASE-D PEE", direction="l", linebreak="al", - unicodeslot=0x1BC70, + unicodeslot=0x1695A, }, - [0x1BC71]={ + [0x1695B]={ category="lo", - description="DUPLOYAN AFFIX MID HORIZONTAL SECANT", + description="BAMUM LETTER PHASE-D NI", direction="l", linebreak="al", - unicodeslot=0x1BC71, + unicodeslot=0x1695B, }, - [0x1BC72]={ + [0x1695C]={ category="lo", - description="DUPLOYAN AFFIX RIGHT HORIZONTAL SECANT", + description="BAMUM LETTER PHASE-D SHOQ", direction="l", linebreak="al", - unicodeslot=0x1BC72, + unicodeslot=0x1695C, }, - [0x1BC73]={ + [0x1695D]={ category="lo", - description="DUPLOYAN AFFIX LOW VERTICAL SECANT", + description="BAMUM LETTER PHASE-D PUQ", direction="l", linebreak="al", - unicodeslot=0x1BC73, + unicodeslot=0x1695D, }, - [0x1BC74]={ + [0x1695E]={ category="lo", - description="DUPLOYAN AFFIX MID VERTICAL SECANT", + description="BAMUM LETTER PHASE-D MVOP", direction="l", linebreak="al", - unicodeslot=0x1BC74, + unicodeslot=0x1695E, }, - [0x1BC75]={ + [0x1695F]={ category="lo", - description="DUPLOYAN AFFIX HIGH VERTICAL SECANT", + description="BAMUM LETTER PHASE-D LOQ", direction="l", linebreak="al", - unicodeslot=0x1BC75, + unicodeslot=0x1695F, }, - [0x1BC76]={ + [0x16960]={ category="lo", - description="DUPLOYAN AFFIX ATTACHED SECANT", + description="BAMUM LETTER PHASE-D REN MUCH", direction="l", linebreak="al", - unicodeslot=0x1BC76, + unicodeslot=0x16960, }, - [0x1BC77]={ + [0x16961]={ category="lo", - description="DUPLOYAN AFFIX ATTACHED LEFT-TO-RIGHT SECANT", + description="BAMUM LETTER PHASE-D TI", direction="l", linebreak="al", - unicodeslot=0x1BC77, + unicodeslot=0x16961, }, - [0x1BC78]={ + [0x16962]={ category="lo", - description="DUPLOYAN AFFIX ATTACHED TANGENT", + description="BAMUM LETTER PHASE-D NTUU", direction="l", linebreak="al", - unicodeslot=0x1BC78, + unicodeslot=0x16962, }, - [0x1BC79]={ + [0x16963]={ category="lo", - description="DUPLOYAN AFFIX ATTACHED TAIL", + description="BAMUM LETTER PHASE-D MBAA SEVEN", direction="l", linebreak="al", - unicodeslot=0x1BC79, + unicodeslot=0x16963, }, - [0x1BC7A]={ + [0x16964]={ category="lo", - description="DUPLOYAN AFFIX ATTACHED E HOOK", + description="BAMUM LETTER PHASE-D SAQ", direction="l", linebreak="al", - unicodeslot=0x1BC7A, + unicodeslot=0x16964, }, - [0x1BC7B]={ + [0x16965]={ category="lo", - description="DUPLOYAN AFFIX ATTACHED I HOOK", + description="BAMUM LETTER PHASE-D FAA", direction="l", linebreak="al", - unicodeslot=0x1BC7B, + unicodeslot=0x16965, }, - [0x1BC7C]={ + [0x16966]={ category="lo", - description="DUPLOYAN AFFIX ATTACHED TANGENT HOOK", + description="BAMUM LETTER PHASE-E NDAP", direction="l", linebreak="al", - unicodeslot=0x1BC7C, + unicodeslot=0x16966, }, - [0x1BC80]={ + [0x16967]={ category="lo", - description="DUPLOYAN AFFIX HIGH ACUTE", + description="BAMUM LETTER PHASE-E TOON", direction="l", linebreak="al", - unicodeslot=0x1BC80, + unicodeslot=0x16967, }, - [0x1BC81]={ + [0x16968]={ category="lo", - description="DUPLOYAN AFFIX HIGH TIGHT ACUTE", + description="BAMUM LETTER PHASE-E MBEUM", direction="l", linebreak="al", - unicodeslot=0x1BC81, + unicodeslot=0x16968, }, - [0x1BC82]={ + [0x16969]={ category="lo", - description="DUPLOYAN AFFIX HIGH GRAVE", + description="BAMUM LETTER PHASE-E LAP", direction="l", linebreak="al", - unicodeslot=0x1BC82, + unicodeslot=0x16969, }, - [0x1BC83]={ + [0x1696A]={ category="lo", - description="DUPLOYAN AFFIX HIGH LONG GRAVE", + description="BAMUM LETTER PHASE-E VOM", direction="l", linebreak="al", - unicodeslot=0x1BC83, + unicodeslot=0x1696A, }, - [0x1BC84]={ + [0x1696B]={ category="lo", - description="DUPLOYAN AFFIX HIGH DOT", + description="BAMUM LETTER PHASE-E LOON", direction="l", linebreak="al", - unicodeslot=0x1BC84, + unicodeslot=0x1696B, }, - [0x1BC85]={ + [0x1696C]={ category="lo", - description="DUPLOYAN AFFIX HIGH CIRCLE", + description="BAMUM LETTER PHASE-E PAA", direction="l", linebreak="al", - unicodeslot=0x1BC85, + unicodeslot=0x1696C, }, - [0x1BC86]={ + [0x1696D]={ category="lo", - description="DUPLOYAN AFFIX HIGH LINE", + description="BAMUM LETTER PHASE-E SOM", direction="l", linebreak="al", - unicodeslot=0x1BC86, + unicodeslot=0x1696D, }, - [0x1BC87]={ + [0x1696E]={ category="lo", - description="DUPLOYAN AFFIX HIGH WAVE", + description="BAMUM LETTER PHASE-E RAQ", direction="l", linebreak="al", - unicodeslot=0x1BC87, + unicodeslot=0x1696E, }, - [0x1BC88]={ + [0x1696F]={ category="lo", - description="DUPLOYAN AFFIX HIGH VERTICAL", + description="BAMUM LETTER PHASE-E NSHUOP", direction="l", linebreak="al", - unicodeslot=0x1BC88, + unicodeslot=0x1696F, }, - [0x1BC90]={ + [0x16970]={ category="lo", - description="DUPLOYAN AFFIX LOW ACUTE", + description="BAMUM LETTER PHASE-E NDUN", direction="l", linebreak="al", - unicodeslot=0x1BC90, + unicodeslot=0x16970, }, - [0x1BC91]={ + [0x16971]={ category="lo", - description="DUPLOYAN AFFIX LOW TIGHT ACUTE", + description="BAMUM LETTER PHASE-E PUAE", direction="l", linebreak="al", - unicodeslot=0x1BC91, + unicodeslot=0x16971, }, - [0x1BC92]={ + [0x16972]={ category="lo", - description="DUPLOYAN AFFIX LOW GRAVE", + description="BAMUM LETTER PHASE-E TAM", direction="l", linebreak="al", - unicodeslot=0x1BC92, + unicodeslot=0x16972, }, - [0x1BC93]={ + [0x16973]={ category="lo", - description="DUPLOYAN AFFIX LOW LONG GRAVE", + description="BAMUM LETTER PHASE-E NGKA", direction="l", linebreak="al", - unicodeslot=0x1BC93, + unicodeslot=0x16973, }, - [0x1BC94]={ + [0x16974]={ category="lo", - description="DUPLOYAN AFFIX LOW DOT", + description="BAMUM LETTER PHASE-E KPEUX", direction="l", linebreak="al", - unicodeslot=0x1BC94, + unicodeslot=0x16974, }, - [0x1BC95]={ + [0x16975]={ category="lo", - description="DUPLOYAN AFFIX LOW CIRCLE", + description="BAMUM LETTER PHASE-E WUO", direction="l", linebreak="al", - unicodeslot=0x1BC95, + unicodeslot=0x16975, }, - [0x1BC96]={ + [0x16976]={ category="lo", - description="DUPLOYAN AFFIX LOW LINE", + description="BAMUM LETTER PHASE-E SEE", direction="l", linebreak="al", - unicodeslot=0x1BC96, + unicodeslot=0x16976, }, - [0x1BC97]={ + [0x16977]={ category="lo", - description="DUPLOYAN AFFIX LOW WAVE", + description="BAMUM LETTER PHASE-E NGGEUAET", direction="l", linebreak="al", - unicodeslot=0x1BC97, + unicodeslot=0x16977, }, - [0x1BC98]={ + [0x16978]={ category="lo", - description="DUPLOYAN AFFIX LOW VERTICAL", + description="BAMUM LETTER PHASE-E PAAM", direction="l", linebreak="al", - unicodeslot=0x1BC98, + unicodeslot=0x16978, }, - [0x1BC99]={ + [0x16979]={ category="lo", - description="DUPLOYAN AFFIX LOW ARROW", + description="BAMUM LETTER PHASE-E TOO", direction="l", linebreak="al", - unicodeslot=0x1BC99, + unicodeslot=0x16979, }, - [0x1BC9C]={ - category="so", - description="DUPLOYAN SIGN O WITH CROSS", + [0x1697A]={ + category="lo", + description="BAMUM LETTER PHASE-E KUOP", direction="l", linebreak="al", - unicodeslot=0x1BC9C, - }, - [0x1BC9D]={ - category="mn", - description="DUPLOYAN THICK LETTER SELECTOR", - direction="nsm", - linebreak="cm", - unicodeslot=0x1BC9D, - }, - [0x1BC9E]={ - category="mn", - combining=0x1, - description="DUPLOYAN DOUBLE MARK", - direction="nsm", - linebreak="cm", - unicodeslot=0x1BC9E, + unicodeslot=0x1697A, }, - [0x1BC9F]={ - category="po", - description="DUPLOYAN PUNCTUATION CHINOOK FULL STOP", + [0x1697B]={ + category="lo", + description="BAMUM LETTER PHASE-E LOM", direction="l", - linebreak="ba", - unicodeslot=0x1BC9F, - }, - [0x1BCA0]={ - category="cf", - description="SHORTHAND FORMAT LETTER OVERLAP", - direction="bn", - linebreak="cm", - unicodeslot=0x1BCA0, - }, - [0x1BCA1]={ - category="cf", - description="SHORTHAND FORMAT CONTINUING OVERLAP", - direction="bn", - linebreak="cm", - unicodeslot=0x1BCA1, - }, - [0x1BCA2]={ - category="cf", - description="SHORTHAND FORMAT DOWN STEP", - direction="bn", - linebreak="cm", - unicodeslot=0x1BCA2, - }, - [0x1BCA3]={ - category="cf", - description="SHORTHAND FORMAT UP STEP", - direction="bn", - linebreak="cm", - unicodeslot=0x1BCA3, + linebreak="al", + unicodeslot=0x1697B, }, - [0x1D000]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PSILI", + [0x1697C]={ + category="lo", + description="BAMUM LETTER PHASE-E NSHIEE", direction="l", linebreak="al", - unicodeslot=0x1D000, + unicodeslot=0x1697C, }, - [0x1D001]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DASEIA", + [0x1697D]={ + category="lo", + description="BAMUM LETTER PHASE-E NGOP", direction="l", linebreak="al", - unicodeslot=0x1D001, + unicodeslot=0x1697D, }, - [0x1D002]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PERISPOMENI", + [0x1697E]={ + category="lo", + description="BAMUM LETTER PHASE-E MAEM", direction="l", linebreak="al", - unicodeslot=0x1D002, + unicodeslot=0x1697E, }, - [0x1D003]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OXEIA EKFONITIKON", + [0x1697F]={ + category="lo", + description="BAMUM LETTER PHASE-E NGKEUX", direction="l", linebreak="al", - unicodeslot=0x1D003, + unicodeslot=0x1697F, }, - [0x1D004]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OXEIA DIPLI", + [0x16980]={ + category="lo", + description="BAMUM LETTER PHASE-E NGOQ", direction="l", linebreak="al", - unicodeslot=0x1D004, + unicodeslot=0x16980, }, - [0x1D005]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL VAREIA EKFONITIKON", + [0x16981]={ + category="lo", + description="BAMUM LETTER PHASE-E NSHUE", direction="l", linebreak="al", - unicodeslot=0x1D005, + unicodeslot=0x16981, }, - [0x1D006]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL VAREIA DIPLI", + [0x16982]={ + category="lo", + description="BAMUM LETTER PHASE-E RIMGBA", direction="l", linebreak="al", - unicodeslot=0x1D006, + unicodeslot=0x16982, }, - [0x1D007]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KATHISTI", + [0x16983]={ + category="lo", + description="BAMUM LETTER PHASE-E NJEUX", direction="l", linebreak="al", - unicodeslot=0x1D007, + unicodeslot=0x16983, }, - [0x1D008]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SYRMATIKI", + [0x16984]={ + category="lo", + description="BAMUM LETTER PHASE-E PEEM", direction="l", linebreak="al", - unicodeslot=0x1D008, + unicodeslot=0x16984, }, - [0x1D009]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PARAKLITIKI", + [0x16985]={ + category="lo", + description="BAMUM LETTER PHASE-E SAA", direction="l", linebreak="al", - unicodeslot=0x1D009, + unicodeslot=0x16985, }, - [0x1D00A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YPOKRISIS", + [0x16986]={ + category="lo", + description="BAMUM LETTER PHASE-E NGGURAE", direction="l", linebreak="al", - unicodeslot=0x1D00A, + unicodeslot=0x16986, }, - [0x1D00B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YPOKRISIS DIPLI", + [0x16987]={ + category="lo", + description="BAMUM LETTER PHASE-E MGBA", direction="l", linebreak="al", - unicodeslot=0x1D00B, + unicodeslot=0x16987, }, - [0x1D00C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KREMASTI", + [0x16988]={ + category="lo", + description="BAMUM LETTER PHASE-E GHEUX", direction="l", linebreak="al", - unicodeslot=0x1D00C, + unicodeslot=0x16988, }, - [0x1D00D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APESO EKFONITIKON", + [0x16989]={ + category="lo", + description="BAMUM LETTER PHASE-E NGKEUAEM", direction="l", linebreak="al", - unicodeslot=0x1D00D, + unicodeslot=0x16989, }, - [0x1D00E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL EXO EKFONITIKON", + [0x1698A]={ + category="lo", + description="BAMUM LETTER PHASE-E NJAEMLI", direction="l", linebreak="al", - unicodeslot=0x1D00E, + unicodeslot=0x1698A, }, - [0x1D00F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TELEIA", + [0x1698B]={ + category="lo", + description="BAMUM LETTER PHASE-E MAP", direction="l", linebreak="al", - unicodeslot=0x1D00F, + unicodeslot=0x1698B, }, - [0x1D010]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMATA", + [0x1698C]={ + category="lo", + description="BAMUM LETTER PHASE-E LOOT", direction="l", linebreak="al", - unicodeslot=0x1D010, + unicodeslot=0x1698C, }, - [0x1D011]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APOSTROFOS", + [0x1698D]={ + category="lo", + description="BAMUM LETTER PHASE-E NGGEEEE", direction="l", linebreak="al", - unicodeslot=0x1D011, + unicodeslot=0x1698D, }, - [0x1D012]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APOSTROFOS DIPLI", + [0x1698E]={ + category="lo", + description="BAMUM LETTER PHASE-E NDIQ", direction="l", linebreak="al", - unicodeslot=0x1D012, + unicodeslot=0x1698E, }, - [0x1D013]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SYNEVMA", + [0x1698F]={ + category="lo", + description="BAMUM LETTER PHASE-E TAEN NTEUM", direction="l", linebreak="al", - unicodeslot=0x1D013, + unicodeslot=0x1698F, }, - [0x1D014]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL THITA", + [0x16990]={ + category="lo", + description="BAMUM LETTER PHASE-E SET", direction="l", linebreak="al", - unicodeslot=0x1D014, + unicodeslot=0x16990, }, - [0x1D015]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OLIGON ARCHAION", + [0x16991]={ + category="lo", + description="BAMUM LETTER PHASE-E PUM", direction="l", linebreak="al", - unicodeslot=0x1D015, + unicodeslot=0x16991, }, - [0x1D016]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GORGON ARCHAION", + [0x16992]={ + category="lo", + description="BAMUM LETTER PHASE-E NDAA SOFTNESS", direction="l", linebreak="al", - unicodeslot=0x1D016, + unicodeslot=0x16992, }, - [0x1D017]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PSILON", + [0x16993]={ + category="lo", + description="BAMUM LETTER PHASE-E NGGUAESHAE NYAM", direction="l", linebreak="al", - unicodeslot=0x1D017, + unicodeslot=0x16993, }, - [0x1D018]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL CHAMILON", + [0x16994]={ + category="lo", + description="BAMUM LETTER PHASE-E YIEE", direction="l", linebreak="al", - unicodeslot=0x1D018, + unicodeslot=0x16994, }, - [0x1D019]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL VATHY", + [0x16995]={ + category="lo", + description="BAMUM LETTER PHASE-E GHEUN", direction="l", linebreak="al", - unicodeslot=0x1D019, + unicodeslot=0x16995, }, - [0x1D01A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ISON ARCHAION", + [0x16996]={ + category="lo", + description="BAMUM LETTER PHASE-E TUAE", direction="l", linebreak="al", - unicodeslot=0x1D01A, + unicodeslot=0x16996, }, - [0x1D01B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMA ARCHAION", + [0x16997]={ + category="lo", + description="BAMUM LETTER PHASE-E YEUAE", direction="l", linebreak="al", - unicodeslot=0x1D01B, + unicodeslot=0x16997, }, - [0x1D01C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMATA ARCHAION", + [0x16998]={ + category="lo", + description="BAMUM LETTER PHASE-E PO", direction="l", linebreak="al", - unicodeslot=0x1D01C, + unicodeslot=0x16998, }, - [0x1D01D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SAXIMATA", + [0x16999]={ + category="lo", + description="BAMUM LETTER PHASE-E TUMAE", direction="l", linebreak="al", - unicodeslot=0x1D01D, + unicodeslot=0x16999, }, - [0x1D01E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PARICHON", + [0x1699A]={ + category="lo", + description="BAMUM LETTER PHASE-E KEUAE", direction="l", linebreak="al", - unicodeslot=0x1D01E, + unicodeslot=0x1699A, }, - [0x1D01F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL STAVROS APODEXIA", + [0x1699B]={ + category="lo", + description="BAMUM LETTER PHASE-E SUAEN", direction="l", linebreak="al", - unicodeslot=0x1D01F, + unicodeslot=0x1699B, }, - [0x1D020]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OXEIAI ARCHAION", + [0x1699C]={ + category="lo", + description="BAMUM LETTER PHASE-E TEUAEQ", direction="l", linebreak="al", - unicodeslot=0x1D020, + unicodeslot=0x1699C, }, - [0x1D021]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL VAREIAI ARCHAION", + [0x1699D]={ + category="lo", + description="BAMUM LETTER PHASE-E VEUAE", direction="l", linebreak="al", - unicodeslot=0x1D021, + unicodeslot=0x1699D, }, - [0x1D022]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APODERMA ARCHAION", + [0x1699E]={ + category="lo", + description="BAMUM LETTER PHASE-E WEUX", direction="l", linebreak="al", - unicodeslot=0x1D022, + unicodeslot=0x1699E, }, - [0x1D023]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APOTHEMA", + [0x1699F]={ + category="lo", + description="BAMUM LETTER PHASE-E LAAM", direction="l", linebreak="al", - unicodeslot=0x1D023, + unicodeslot=0x1699F, }, - [0x1D024]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KLASMA", + [0x169A0]={ + category="lo", + description="BAMUM LETTER PHASE-E PU", direction="l", linebreak="al", - unicodeslot=0x1D024, + unicodeslot=0x169A0, }, - [0x1D025]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL REVMA", + [0x169A1]={ + category="lo", + description="BAMUM LETTER PHASE-E TAAQ", direction="l", linebreak="al", - unicodeslot=0x1D025, + unicodeslot=0x169A1, }, - [0x1D026]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PIASMA ARCHAION", + [0x169A2]={ + category="lo", + description="BAMUM LETTER PHASE-E GHAAMAE", direction="l", linebreak="al", - unicodeslot=0x1D026, + unicodeslot=0x169A2, }, - [0x1D027]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TINAGMA", + [0x169A3]={ + category="lo", + description="BAMUM LETTER PHASE-E NGEUREUT", direction="l", linebreak="al", - unicodeslot=0x1D027, + unicodeslot=0x169A3, }, - [0x1D028]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ANATRICHISMA", + [0x169A4]={ + category="lo", + description="BAMUM LETTER PHASE-E SHEUAEQ", direction="l", linebreak="al", - unicodeslot=0x1D028, + unicodeslot=0x169A4, }, - [0x1D029]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SEISMA", + [0x169A5]={ + category="lo", + description="BAMUM LETTER PHASE-E MGBEN", direction="l", linebreak="al", - unicodeslot=0x1D029, + unicodeslot=0x169A5, }, - [0x1D02A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SYNAGMA ARCHAION", + [0x169A6]={ + category="lo", + description="BAMUM LETTER PHASE-E MBEE", direction="l", linebreak="al", - unicodeslot=0x1D02A, + unicodeslot=0x169A6, }, - [0x1D02B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SYNAGMA META STAVROU", + [0x169A7]={ + category="lo", + description="BAMUM LETTER PHASE-E NZAQ", direction="l", linebreak="al", - unicodeslot=0x1D02B, + unicodeslot=0x169A7, }, - [0x1D02C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OYRANISMA ARCHAION", + [0x169A8]={ + category="lo", + description="BAMUM LETTER PHASE-E NKOM", direction="l", linebreak="al", - unicodeslot=0x1D02C, + unicodeslot=0x169A8, }, - [0x1D02D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL THEMA", + [0x169A9]={ + category="lo", + description="BAMUM LETTER PHASE-E GBET", direction="l", linebreak="al", - unicodeslot=0x1D02D, + unicodeslot=0x169A9, }, - [0x1D02E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL LEMOI", + [0x169AA]={ + category="lo", + description="BAMUM LETTER PHASE-E TUM", direction="l", linebreak="al", - unicodeslot=0x1D02E, + unicodeslot=0x169AA, }, - [0x1D02F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DYO", + [0x169AB]={ + category="lo", + description="BAMUM LETTER PHASE-E KUET", direction="l", linebreak="al", - unicodeslot=0x1D02F, + unicodeslot=0x169AB, }, - [0x1D030]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TRIA", + [0x169AC]={ + category="lo", + description="BAMUM LETTER PHASE-E YAP", direction="l", linebreak="al", - unicodeslot=0x1D030, + unicodeslot=0x169AC, }, - [0x1D031]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TESSERA", + [0x169AD]={ + category="lo", + description="BAMUM LETTER PHASE-E NYI CLEAVER", direction="l", linebreak="al", - unicodeslot=0x1D031, + unicodeslot=0x169AD, }, - [0x1D032]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KRATIMATA", + [0x169AE]={ + category="lo", + description="BAMUM LETTER PHASE-E YIT", direction="l", linebreak="al", - unicodeslot=0x1D032, + unicodeslot=0x169AE, }, - [0x1D033]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APESO EXO NEO", + [0x169AF]={ + category="lo", + description="BAMUM LETTER PHASE-E MFEUQ", direction="l", linebreak="al", - unicodeslot=0x1D033, + unicodeslot=0x169AF, }, - [0x1D034]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA ARCHAION", + [0x169B0]={ + category="lo", + description="BAMUM LETTER PHASE-E NDIAQ", direction="l", linebreak="al", - unicodeslot=0x1D034, + unicodeslot=0x169B0, }, - [0x1D035]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL IMIFTHORA", + [0x169B1]={ + category="lo", + description="BAMUM LETTER PHASE-E PIEEQ", direction="l", linebreak="al", - unicodeslot=0x1D035, + unicodeslot=0x169B1, }, - [0x1D036]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TROMIKON ARCHAION", + [0x169B2]={ + category="lo", + description="BAMUM LETTER PHASE-E YUEQ", direction="l", linebreak="al", - unicodeslot=0x1D036, + unicodeslot=0x169B2, }, - [0x1D037]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KATAVA TROMIKON", + [0x169B3]={ + category="lo", + description="BAMUM LETTER PHASE-E LEUAEM", direction="l", linebreak="al", - unicodeslot=0x1D037, + unicodeslot=0x169B3, }, - [0x1D038]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PELASTON", + [0x169B4]={ + category="lo", + description="BAMUM LETTER PHASE-E FUE", direction="l", linebreak="al", - unicodeslot=0x1D038, + unicodeslot=0x169B4, }, - [0x1D039]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PSIFISTON", + [0x169B5]={ + category="lo", + description="BAMUM LETTER PHASE-E GBEUX", direction="l", linebreak="al", - unicodeslot=0x1D039, + unicodeslot=0x169B5, }, - [0x1D03A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KONTEVMA", + [0x169B6]={ + category="lo", + description="BAMUM LETTER PHASE-E NGKUP", direction="l", linebreak="al", - unicodeslot=0x1D03A, + unicodeslot=0x169B6, }, - [0x1D03B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL CHOREVMA ARCHAION", + [0x169B7]={ + category="lo", + description="BAMUM LETTER PHASE-E KET", direction="l", linebreak="al", - unicodeslot=0x1D03B, + unicodeslot=0x169B7, }, - [0x1D03C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL RAPISMA", + [0x169B8]={ + category="lo", + description="BAMUM LETTER PHASE-E MAE", direction="l", linebreak="al", - unicodeslot=0x1D03C, + unicodeslot=0x169B8, }, - [0x1D03D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PARAKALESMA ARCHAION", + [0x169B9]={ + category="lo", + description="BAMUM LETTER PHASE-E NGKAAMI", direction="l", linebreak="al", - unicodeslot=0x1D03D, + unicodeslot=0x169B9, }, - [0x1D03E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PARAKLITIKI ARCHAION", + [0x169BA]={ + category="lo", + description="BAMUM LETTER PHASE-E GHET", direction="l", linebreak="al", - unicodeslot=0x1D03E, + unicodeslot=0x169BA, }, - [0x1D03F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ICHADIN", + [0x169BB]={ + category="lo", + description="BAMUM LETTER PHASE-E FA", direction="l", linebreak="al", - unicodeslot=0x1D03F, + unicodeslot=0x169BB, }, - [0x1D040]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL NANA", + [0x169BC]={ + category="lo", + description="BAMUM LETTER PHASE-E NTUM", direction="l", linebreak="al", - unicodeslot=0x1D040, + unicodeslot=0x169BC, }, - [0x1D041]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PETASMA", + [0x169BD]={ + category="lo", + description="BAMUM LETTER PHASE-E PEUT", direction="l", linebreak="al", - unicodeslot=0x1D041, + unicodeslot=0x169BD, }, - [0x1D042]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KONTEVMA ALLO", + [0x169BE]={ + category="lo", + description="BAMUM LETTER PHASE-E YEUM", direction="l", linebreak="al", - unicodeslot=0x1D042, + unicodeslot=0x169BE, }, - [0x1D043]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TROMIKON ALLO", + [0x169BF]={ + category="lo", + description="BAMUM LETTER PHASE-E NGGEUAE", direction="l", linebreak="al", - unicodeslot=0x1D043, + unicodeslot=0x169BF, }, - [0x1D044]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL STRAGGISMATA", + [0x169C0]={ + category="lo", + description="BAMUM LETTER PHASE-E NYI BETWEEN", direction="l", linebreak="al", - unicodeslot=0x1D044, + unicodeslot=0x169C0, }, - [0x1D045]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GRONTHISMATA", + [0x169C1]={ + category="lo", + description="BAMUM LETTER PHASE-E NZUQ", direction="l", linebreak="al", - unicodeslot=0x1D045, + unicodeslot=0x169C1, }, - [0x1D046]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ISON NEO", + [0x169C2]={ + category="lo", + description="BAMUM LETTER PHASE-E POON", direction="l", linebreak="al", - unicodeslot=0x1D046, + unicodeslot=0x169C2, }, - [0x1D047]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OLIGON NEO", + [0x169C3]={ + category="lo", + description="BAMUM LETTER PHASE-E MIEE", direction="l", linebreak="al", - unicodeslot=0x1D047, + unicodeslot=0x169C3, }, - [0x1D048]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OXEIA NEO", + [0x169C4]={ + category="lo", + description="BAMUM LETTER PHASE-E FUET", direction="l", linebreak="al", - unicodeslot=0x1D048, + unicodeslot=0x169C4, }, - [0x1D049]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PETASTI", + [0x169C5]={ + category="lo", + description="BAMUM LETTER PHASE-E NAE", direction="l", linebreak="al", - unicodeslot=0x1D049, + unicodeslot=0x169C5, }, - [0x1D04A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KOUFISMA", + [0x169C6]={ + category="lo", + description="BAMUM LETTER PHASE-E MUAE", direction="l", linebreak="al", - unicodeslot=0x1D04A, + unicodeslot=0x169C6, }, - [0x1D04B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PETASTOKOUFISMA", + [0x169C7]={ + category="lo", + description="BAMUM LETTER PHASE-E GHEUAE", direction="l", linebreak="al", - unicodeslot=0x1D04B, + unicodeslot=0x169C7, }, - [0x1D04C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KRATIMOKOUFISMA", + [0x169C8]={ + category="lo", + description="BAMUM LETTER PHASE-E FU I", direction="l", linebreak="al", - unicodeslot=0x1D04C, + unicodeslot=0x169C8, }, - [0x1D04D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PELASTON NEO", + [0x169C9]={ + category="lo", + description="BAMUM LETTER PHASE-E MVI", direction="l", linebreak="al", - unicodeslot=0x1D04D, + unicodeslot=0x169C9, }, - [0x1D04E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMATA NEO ANO", + [0x169CA]={ + category="lo", + description="BAMUM LETTER PHASE-E PUAQ", direction="l", linebreak="al", - unicodeslot=0x1D04E, + unicodeslot=0x169CA, }, - [0x1D04F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMA NEO ANO", + [0x169CB]={ + category="lo", + description="BAMUM LETTER PHASE-E NGKUM", direction="l", linebreak="al", - unicodeslot=0x1D04F, + unicodeslot=0x169CB, }, - [0x1D050]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YPSILI", + [0x169CC]={ + category="lo", + description="BAMUM LETTER PHASE-E KUT", direction="l", linebreak="al", - unicodeslot=0x1D050, + unicodeslot=0x169CC, }, - [0x1D051]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APOSTROFOS NEO", + [0x169CD]={ + category="lo", + description="BAMUM LETTER PHASE-E PIET", direction="l", linebreak="al", - unicodeslot=0x1D051, + unicodeslot=0x169CD, }, - [0x1D052]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APOSTROFOI SYNDESMOS NEO", + [0x169CE]={ + category="lo", + description="BAMUM LETTER PHASE-E NTAP", direction="l", linebreak="al", - unicodeslot=0x1D052, + unicodeslot=0x169CE, }, - [0x1D053]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YPORROI", + [0x169CF]={ + category="lo", + description="BAMUM LETTER PHASE-E YEUAET", direction="l", linebreak="al", - unicodeslot=0x1D053, + unicodeslot=0x169CF, }, - [0x1D054]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KRATIMOYPORROON", + [0x169D0]={ + category="lo", + description="BAMUM LETTER PHASE-E NGGUP", direction="l", linebreak="al", - unicodeslot=0x1D054, + unicodeslot=0x169D0, }, - [0x1D055]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ELAFRON", + [0x169D1]={ + category="lo", + description="BAMUM LETTER PHASE-E PA PEOPLE", direction="l", linebreak="al", - unicodeslot=0x1D055, + unicodeslot=0x169D1, }, - [0x1D056]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL CHAMILI", + [0x169D2]={ + category="lo", + description="BAMUM LETTER PHASE-E FU CALL", direction="l", linebreak="al", - unicodeslot=0x1D056, + unicodeslot=0x169D2, }, - [0x1D057]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MIKRON ISON", + [0x169D3]={ + category="lo", + description="BAMUM LETTER PHASE-E FOM", direction="l", linebreak="al", - unicodeslot=0x1D057, + unicodeslot=0x169D3, }, - [0x1D058]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL VAREIA NEO", + [0x169D4]={ + category="lo", + description="BAMUM LETTER PHASE-E NJEE", direction="l", linebreak="al", - unicodeslot=0x1D058, + unicodeslot=0x169D4, }, - [0x1D059]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PIASMA NEO", + [0x169D5]={ + category="lo", + description="BAMUM LETTER PHASE-E A", direction="l", linebreak="al", - unicodeslot=0x1D059, + unicodeslot=0x169D5, }, - [0x1D05A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PSIFISTON NEO", + [0x169D6]={ + category="lo", + description="BAMUM LETTER PHASE-E TOQ", direction="l", linebreak="al", - unicodeslot=0x1D05A, + unicodeslot=0x169D6, }, - [0x1D05B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OMALON", + [0x169D7]={ + category="lo", + description="BAMUM LETTER PHASE-E O", direction="l", linebreak="al", - unicodeslot=0x1D05B, + unicodeslot=0x169D7, }, - [0x1D05C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ANTIKENOMA", + [0x169D8]={ + category="lo", + description="BAMUM LETTER PHASE-E I", direction="l", linebreak="al", - unicodeslot=0x1D05C, + unicodeslot=0x169D8, }, - [0x1D05D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL LYGISMA", + [0x169D9]={ + category="lo", + description="BAMUM LETTER PHASE-E LAQ", direction="l", linebreak="al", - unicodeslot=0x1D05D, + unicodeslot=0x169D9, }, - [0x1D05E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PARAKLITIKI NEO", + [0x169DA]={ + category="lo", + description="BAMUM LETTER PHASE-E PA PLURAL", direction="l", linebreak="al", - unicodeslot=0x1D05E, + unicodeslot=0x169DA, }, - [0x1D05F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PARAKALESMA NEO", + [0x169DB]={ + category="lo", + description="BAMUM LETTER PHASE-E TAA", direction="l", linebreak="al", - unicodeslot=0x1D05F, + unicodeslot=0x169DB, }, - [0x1D060]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ETERON PARAKALESMA", + [0x169DC]={ + category="lo", + description="BAMUM LETTER PHASE-E TAQ", direction="l", linebreak="al", - unicodeslot=0x1D060, + unicodeslot=0x169DC, }, - [0x1D061]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KYLISMA", + [0x169DD]={ + category="lo", + description="BAMUM LETTER PHASE-E NDAA MY HOUSE", direction="l", linebreak="al", - unicodeslot=0x1D061, + unicodeslot=0x169DD, }, - [0x1D062]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ANTIKENOKYLISMA", + [0x169DE]={ + category="lo", + description="BAMUM LETTER PHASE-E SHIQ", direction="l", linebreak="al", - unicodeslot=0x1D062, + unicodeslot=0x169DE, }, - [0x1D063]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TROMIKON NEO", + [0x169DF]={ + category="lo", + description="BAMUM LETTER PHASE-E YEUX", direction="l", linebreak="al", - unicodeslot=0x1D063, + unicodeslot=0x169DF, }, - [0x1D064]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL EKSTREPTON", + [0x169E0]={ + category="lo", + description="BAMUM LETTER PHASE-E NGUAE", direction="l", linebreak="al", - unicodeslot=0x1D064, + unicodeslot=0x169E0, }, - [0x1D065]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SYNAGMA NEO", + [0x169E1]={ + category="lo", + description="BAMUM LETTER PHASE-E YUAEN", direction="l", linebreak="al", - unicodeslot=0x1D065, + unicodeslot=0x169E1, }, - [0x1D066]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SYRMA", + [0x169E2]={ + category="lo", + description="BAMUM LETTER PHASE-E YOQ SWIMMING", direction="l", linebreak="al", - unicodeslot=0x1D066, + unicodeslot=0x169E2, }, - [0x1D067]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL CHOREVMA NEO", + [0x169E3]={ + category="lo", + description="BAMUM LETTER PHASE-E YOQ COVER", direction="l", linebreak="al", - unicodeslot=0x1D067, + unicodeslot=0x169E3, }, - [0x1D068]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL EPEGERMA", + [0x169E4]={ + category="lo", + description="BAMUM LETTER PHASE-E YUQ", direction="l", linebreak="al", - unicodeslot=0x1D068, + unicodeslot=0x169E4, }, - [0x1D069]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SEISMA NEO", + [0x169E5]={ + category="lo", + description="BAMUM LETTER PHASE-E YUN", direction="l", linebreak="al", - unicodeslot=0x1D069, + unicodeslot=0x169E5, }, - [0x1D06A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL XIRON KLASMA", + [0x169E6]={ + category="lo", + description="BAMUM LETTER PHASE-E KEUX", direction="l", linebreak="al", - unicodeslot=0x1D06A, + unicodeslot=0x169E6, }, - [0x1D06B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TROMIKOPSIFISTON", + [0x169E7]={ + category="lo", + description="BAMUM LETTER PHASE-E PEUX", direction="l", linebreak="al", - unicodeslot=0x1D06B, + unicodeslot=0x169E7, }, - [0x1D06C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PSIFISTOLYGISMA", + [0x169E8]={ + category="lo", + description="BAMUM LETTER PHASE-E NJEE EPOCH", direction="l", linebreak="al", - unicodeslot=0x1D06C, + unicodeslot=0x169E8, }, - [0x1D06D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TROMIKOLYGISMA", + [0x169E9]={ + category="lo", + description="BAMUM LETTER PHASE-E PUE", direction="l", linebreak="al", - unicodeslot=0x1D06D, + unicodeslot=0x169E9, }, - [0x1D06E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TROMIKOPARAKALESMA", + [0x169EA]={ + category="lo", + description="BAMUM LETTER PHASE-E WUE", direction="l", linebreak="al", - unicodeslot=0x1D06E, + unicodeslot=0x169EA, }, - [0x1D06F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PSIFISTOPARAKALESMA", + [0x169EB]={ + category="lo", + description="BAMUM LETTER PHASE-E FEE", direction="l", linebreak="al", - unicodeslot=0x1D06F, + unicodeslot=0x169EB, }, - [0x1D070]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TROMIKOSYNAGMA", + [0x169EC]={ + category="lo", + description="BAMUM LETTER PHASE-E VEE", direction="l", linebreak="al", - unicodeslot=0x1D070, + unicodeslot=0x169EC, }, - [0x1D071]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL PSIFISTOSYNAGMA", + [0x169ED]={ + category="lo", + description="BAMUM LETTER PHASE-E LU", direction="l", linebreak="al", - unicodeslot=0x1D071, + unicodeslot=0x169ED, }, - [0x1D072]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GORGOSYNTHETON", + [0x169EE]={ + category="lo", + description="BAMUM LETTER PHASE-E MI", direction="l", linebreak="al", - unicodeslot=0x1D072, + unicodeslot=0x169EE, }, - [0x1D073]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARGOSYNTHETON", + [0x169EF]={ + category="lo", + description="BAMUM LETTER PHASE-E REUX", direction="l", linebreak="al", - unicodeslot=0x1D073, + unicodeslot=0x169EF, }, - [0x1D074]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ETERON ARGOSYNTHETON", + [0x169F0]={ + category="lo", + description="BAMUM LETTER PHASE-E RAE", direction="l", linebreak="al", - unicodeslot=0x1D074, + unicodeslot=0x169F0, }, - [0x1D075]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL OYRANISMA NEO", + [0x169F1]={ + category="lo", + description="BAMUM LETTER PHASE-E NGUAET", direction="l", linebreak="al", - unicodeslot=0x1D075, + unicodeslot=0x169F1, }, - [0x1D076]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL THEMATISMOS ESO", + [0x169F2]={ + category="lo", + description="BAMUM LETTER PHASE-E NGA", direction="l", linebreak="al", - unicodeslot=0x1D076, + unicodeslot=0x169F2, }, - [0x1D077]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL THEMATISMOS EXO", + [0x169F3]={ + category="lo", + description="BAMUM LETTER PHASE-E SHO", direction="l", linebreak="al", - unicodeslot=0x1D077, + unicodeslot=0x169F3, }, - [0x1D078]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL THEMA APLOUN", + [0x169F4]={ + category="lo", + description="BAMUM LETTER PHASE-E SHOQ", direction="l", linebreak="al", - unicodeslot=0x1D078, + unicodeslot=0x169F4, }, - [0x1D079]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL THES KAI APOTHES", + [0x169F5]={ + category="lo", + description="BAMUM LETTER PHASE-E FU REMEDY", direction="l", linebreak="al", - unicodeslot=0x1D079, + unicodeslot=0x169F5, }, - [0x1D07A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KATAVASMA", + [0x169F6]={ + category="lo", + description="BAMUM LETTER PHASE-E NA", direction="l", linebreak="al", - unicodeslot=0x1D07A, + unicodeslot=0x169F6, }, - [0x1D07B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ENDOFONON", + [0x169F7]={ + category="lo", + description="BAMUM LETTER PHASE-E PI", direction="l", linebreak="al", - unicodeslot=0x1D07B, + unicodeslot=0x169F7, }, - [0x1D07C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YFEN KATO", + [0x169F8]={ + category="lo", + description="BAMUM LETTER PHASE-E LOQ", direction="l", linebreak="al", - unicodeslot=0x1D07C, + unicodeslot=0x169F8, }, - [0x1D07D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YFEN ANO", + [0x169F9]={ + category="lo", + description="BAMUM LETTER PHASE-E KO", direction="l", linebreak="al", - unicodeslot=0x1D07D, + unicodeslot=0x169F9, }, - [0x1D07E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL STAVROS", + [0x169FA]={ + category="lo", + description="BAMUM LETTER PHASE-E MEN", direction="l", linebreak="al", - unicodeslot=0x1D07E, + unicodeslot=0x169FA, }, - [0x1D07F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KLASMA ANO", + [0x169FB]={ + category="lo", + description="BAMUM LETTER PHASE-E MA", direction="l", linebreak="al", - unicodeslot=0x1D07F, + unicodeslot=0x169FB, }, - [0x1D080]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIPLI ARCHAION", + [0x169FC]={ + category="lo", + description="BAMUM LETTER PHASE-E MAQ", direction="l", linebreak="al", - unicodeslot=0x1D080, + unicodeslot=0x169FC, }, - [0x1D081]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KRATIMA ARCHAION", + [0x169FD]={ + category="lo", + description="BAMUM LETTER PHASE-E TEU", direction="l", linebreak="al", - unicodeslot=0x1D081, + unicodeslot=0x169FD, }, - [0x1D082]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KRATIMA ALLO", + [0x169FE]={ + category="lo", + description="BAMUM LETTER PHASE-E KI", direction="l", linebreak="al", - unicodeslot=0x1D082, + unicodeslot=0x169FE, }, - [0x1D083]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KRATIMA NEO", + [0x169FF]={ + category="lo", + description="BAMUM LETTER PHASE-E MON", direction="l", linebreak="al", - unicodeslot=0x1D083, + unicodeslot=0x169FF, }, - [0x1D084]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APODERMA NEO", + [0x16A00]={ + category="lo", + description="BAMUM LETTER PHASE-E TEN", direction="l", linebreak="al", - unicodeslot=0x1D084, + unicodeslot=0x16A00, }, - [0x1D085]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APLI", + [0x16A01]={ + category="lo", + description="BAMUM LETTER PHASE-E FAQ", direction="l", linebreak="al", - unicodeslot=0x1D085, + unicodeslot=0x16A01, }, - [0x1D086]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIPLI", + [0x16A02]={ + category="lo", + description="BAMUM LETTER PHASE-E GHOM", direction="l", linebreak="al", - unicodeslot=0x1D086, + unicodeslot=0x16A02, }, - [0x1D087]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TRIPLI", + [0x16A03]={ + category="lo", + description="BAMUM LETTER PHASE-F KA", direction="l", linebreak="al", - unicodeslot=0x1D087, + unicodeslot=0x16A03, }, - [0x1D088]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TETRAPLI", + [0x16A04]={ + category="lo", + description="BAMUM LETTER PHASE-F U", direction="l", linebreak="al", - unicodeslot=0x1D088, + unicodeslot=0x16A04, }, - [0x1D089]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KORONIS", + [0x16A05]={ + category="lo", + description="BAMUM LETTER PHASE-F KU", direction="l", linebreak="al", - unicodeslot=0x1D089, + unicodeslot=0x16A05, }, - [0x1D08A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL LEIMMA ENOS CHRONOU", + [0x16A06]={ + category="lo", + description="BAMUM LETTER PHASE-F EE", direction="l", linebreak="al", - unicodeslot=0x1D08A, + unicodeslot=0x16A06, }, - [0x1D08B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL LEIMMA DYO CHRONON", + [0x16A07]={ + category="lo", + description="BAMUM LETTER PHASE-F REE", direction="l", linebreak="al", - unicodeslot=0x1D08B, + unicodeslot=0x16A07, }, - [0x1D08C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL LEIMMA TRION CHRONON", + [0x16A08]={ + category="lo", + description="BAMUM LETTER PHASE-F TAE", direction="l", linebreak="al", - unicodeslot=0x1D08C, + unicodeslot=0x16A08, }, - [0x1D08D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL LEIMMA TESSARON CHRONON", + [0x16A09]={ + category="lo", + description="BAMUM LETTER PHASE-F NYI", direction="l", linebreak="al", - unicodeslot=0x1D08D, + unicodeslot=0x16A09, }, - [0x1D08E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL LEIMMA IMISEOS CHRONOU", + [0x16A0A]={ + category="lo", + description="BAMUM LETTER PHASE-F LA", direction="l", linebreak="al", - unicodeslot=0x1D08E, + unicodeslot=0x16A0A, }, - [0x1D08F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GORGON NEO ANO", + [0x16A0B]={ + category="lo", + description="BAMUM LETTER PHASE-F RII", direction="l", linebreak="al", - unicodeslot=0x1D08F, + unicodeslot=0x16A0B, }, - [0x1D090]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GORGON PARESTIGMENON ARISTERA", + [0x16A0C]={ + category="lo", + description="BAMUM LETTER PHASE-F RIEE", direction="l", linebreak="al", - unicodeslot=0x1D090, + unicodeslot=0x16A0C, }, - [0x1D091]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GORGON PARESTIGMENON DEXIA", + [0x16A0D]={ + category="lo", + description="BAMUM LETTER PHASE-F MEEEE", direction="l", linebreak="al", - unicodeslot=0x1D091, + unicodeslot=0x16A0D, }, - [0x1D092]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIGORGON", + [0x16A0E]={ + category="lo", + description="BAMUM LETTER PHASE-F TAA", direction="l", linebreak="al", - unicodeslot=0x1D092, + unicodeslot=0x16A0E, }, - [0x1D093]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON ARISTERA KATO", + [0x16A0F]={ + category="lo", + description="BAMUM LETTER PHASE-F NDAA", direction="l", linebreak="al", - unicodeslot=0x1D093, + unicodeslot=0x16A0F, }, - [0x1D094]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON ARISTERA ANO", + [0x16A10]={ + category="lo", + description="BAMUM LETTER PHASE-F NJAEM", direction="l", linebreak="al", - unicodeslot=0x1D094, + unicodeslot=0x16A10, }, - [0x1D095]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON DEXIA", + [0x16A11]={ + category="lo", + description="BAMUM LETTER PHASE-F M", direction="l", linebreak="al", - unicodeslot=0x1D095, + unicodeslot=0x16A11, }, - [0x1D096]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL TRIGORGON", + [0x16A12]={ + category="lo", + description="BAMUM LETTER PHASE-F SUU", direction="l", linebreak="al", - unicodeslot=0x1D096, + unicodeslot=0x16A12, }, - [0x1D097]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARGON", + [0x16A13]={ + category="lo", + description="BAMUM LETTER PHASE-F SHII", direction="l", linebreak="al", - unicodeslot=0x1D097, + unicodeslot=0x16A13, }, - [0x1D098]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL IMIDIARGON", + [0x16A14]={ + category="lo", + description="BAMUM LETTER PHASE-F SI", direction="l", linebreak="al", - unicodeslot=0x1D098, + unicodeslot=0x16A14, }, - [0x1D099]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIARGON", + [0x16A15]={ + category="lo", + description="BAMUM LETTER PHASE-F SEUX", direction="l", linebreak="al", - unicodeslot=0x1D099, + unicodeslot=0x16A15, }, - [0x1D09A]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL AGOGI POLI ARGI", + [0x16A16]={ + category="lo", + description="BAMUM LETTER PHASE-F KYEE", direction="l", linebreak="al", - unicodeslot=0x1D09A, + unicodeslot=0x16A16, }, - [0x1D09B]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL AGOGI ARGOTERI", + [0x16A17]={ + category="lo", + description="BAMUM LETTER PHASE-F KET", direction="l", linebreak="al", - unicodeslot=0x1D09B, + unicodeslot=0x16A17, }, - [0x1D09C]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL AGOGI ARGI", + [0x16A18]={ + category="lo", + description="BAMUM LETTER PHASE-F NUAE", direction="l", linebreak="al", - unicodeslot=0x1D09C, + unicodeslot=0x16A18, }, - [0x1D09D]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL AGOGI METRIA", + [0x16A19]={ + category="lo", + description="BAMUM LETTER PHASE-F NU", direction="l", linebreak="al", - unicodeslot=0x1D09D, + unicodeslot=0x16A19, }, - [0x1D09E]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL AGOGI MESI", + [0x16A1A]={ + category="lo", + description="BAMUM LETTER PHASE-F NJUAE", direction="l", linebreak="al", - unicodeslot=0x1D09E, + unicodeslot=0x16A1A, }, - [0x1D09F]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL AGOGI GORGI", + [0x16A1B]={ + category="lo", + description="BAMUM LETTER PHASE-F YOQ", direction="l", linebreak="al", - unicodeslot=0x1D09F, + unicodeslot=0x16A1B, }, - [0x1D0A0]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL AGOGI GORGOTERI", + [0x16A1C]={ + category="lo", + description="BAMUM LETTER PHASE-F SHU", direction="l", linebreak="al", - unicodeslot=0x1D0A0, + unicodeslot=0x16A1C, }, - [0x1D0A1]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL AGOGI POLI GORGI", + [0x16A1D]={ + category="lo", + description="BAMUM LETTER PHASE-F YA", direction="l", linebreak="al", - unicodeslot=0x1D0A1, + unicodeslot=0x16A1D, }, - [0x1D0A2]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA PROTOS ICHOS", + [0x16A1E]={ + category="lo", + description="BAMUM LETTER PHASE-F NSHA", direction="l", linebreak="al", - unicodeslot=0x1D0A2, + unicodeslot=0x16A1E, }, - [0x1D0A3]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA ALLI PROTOS ICHOS", + [0x16A1F]={ + category="lo", + description="BAMUM LETTER PHASE-F PEUX", direction="l", linebreak="al", - unicodeslot=0x1D0A3, + unicodeslot=0x16A1F, }, - [0x1D0A4]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA DEYTEROS ICHOS", + [0x16A20]={ + category="lo", + description="BAMUM LETTER PHASE-F NTEE", direction="l", linebreak="al", - unicodeslot=0x1D0A4, + unicodeslot=0x16A20, }, - [0x1D0A5]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA ALLI DEYTEROS ICHOS", + [0x16A21]={ + category="lo", + description="BAMUM LETTER PHASE-F WUE", direction="l", linebreak="al", - unicodeslot=0x1D0A5, + unicodeslot=0x16A21, }, - [0x1D0A6]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA TRITOS ICHOS", + [0x16A22]={ + category="lo", + description="BAMUM LETTER PHASE-F PEE", direction="l", linebreak="al", - unicodeslot=0x1D0A6, + unicodeslot=0x16A22, }, - [0x1D0A7]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA TRIFONIAS", + [0x16A23]={ + category="lo", + description="BAMUM LETTER PHASE-F RU", direction="l", linebreak="al", - unicodeslot=0x1D0A7, + unicodeslot=0x16A23, }, - [0x1D0A8]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA TETARTOS ICHOS", + [0x16A24]={ + category="lo", + description="BAMUM LETTER PHASE-F NI", direction="l", linebreak="al", - unicodeslot=0x1D0A8, + unicodeslot=0x16A24, }, - [0x1D0A9]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA TETARTOS LEGETOS ICHOS", + [0x16A25]={ + category="lo", + description="BAMUM LETTER PHASE-F REUX", direction="l", linebreak="al", - unicodeslot=0x1D0A9, + unicodeslot=0x16A25, }, - [0x1D0AA]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA LEGETOS ICHOS", + [0x16A26]={ + category="lo", + description="BAMUM LETTER PHASE-F KEN", direction="l", linebreak="al", - unicodeslot=0x1D0AA, + unicodeslot=0x16A26, }, - [0x1D0AB]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA PLAGIOS ICHOS", + [0x16A27]={ + category="lo", + description="BAMUM LETTER PHASE-F NGKWAEN", direction="l", linebreak="al", - unicodeslot=0x1D0AB, + unicodeslot=0x16A27, }, - [0x1D0AC]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ISAKIA TELOUS ICHIMATOS", + [0x16A28]={ + category="lo", + description="BAMUM LETTER PHASE-F NGGA", direction="l", linebreak="al", - unicodeslot=0x1D0AC, + unicodeslot=0x16A28, }, - [0x1D0AD]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL APOSTROFOI TELOUS ICHIMATOS", + [0x16A29]={ + category="lo", + description="BAMUM LETTER PHASE-F SHO", direction="l", linebreak="al", - unicodeslot=0x1D0AD, + unicodeslot=0x16A29, }, - [0x1D0AE]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FANEROSIS TETRAFONIAS", + [0x16A2A]={ + category="lo", + description="BAMUM LETTER PHASE-F PUAE", direction="l", linebreak="al", - unicodeslot=0x1D0AE, + unicodeslot=0x16A2A, }, - [0x1D0AF]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FANEROSIS MONOFONIAS", + [0x16A2B]={ + category="lo", + description="BAMUM LETTER PHASE-F FOM", direction="l", linebreak="al", - unicodeslot=0x1D0AF, + unicodeslot=0x16A2B, }, - [0x1D0B0]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FANEROSIS DIFONIAS", + [0x16A2C]={ + category="lo", + description="BAMUM LETTER PHASE-F WA", direction="l", linebreak="al", - unicodeslot=0x1D0B0, + unicodeslot=0x16A2C, }, - [0x1D0B1]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA VARYS ICHOS", + [0x16A2D]={ + category="lo", + description="BAMUM LETTER PHASE-F LI", direction="l", linebreak="al", - unicodeslot=0x1D0B1, + unicodeslot=0x16A2D, }, - [0x1D0B2]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA PROTOVARYS ICHOS", + [0x16A2E]={ + category="lo", + description="BAMUM LETTER PHASE-F LOQ", direction="l", linebreak="al", - unicodeslot=0x1D0B2, + unicodeslot=0x16A2E, }, - [0x1D0B3]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL MARTYRIA PLAGIOS TETARTOS ICHOS", + [0x16A2F]={ + category="lo", + description="BAMUM LETTER PHASE-F KO", direction="l", linebreak="al", - unicodeslot=0x1D0B3, + unicodeslot=0x16A2F, }, - [0x1D0B4]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GORTHMIKON N APLOUN", + [0x16A30]={ + category="lo", + description="BAMUM LETTER PHASE-F MBEN", direction="l", linebreak="al", - unicodeslot=0x1D0B4, + unicodeslot=0x16A30, }, - [0x1D0B5]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GORTHMIKON N DIPLOUN", + [0x16A31]={ + category="lo", + description="BAMUM LETTER PHASE-F REN", direction="l", linebreak="al", - unicodeslot=0x1D0B5, + unicodeslot=0x16A31, }, - [0x1D0B6]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ENARXIS KAI FTHORA VOU", + [0x16A32]={ + category="lo", + description="BAMUM LETTER PHASE-F MA", direction="l", linebreak="al", - unicodeslot=0x1D0B6, + unicodeslot=0x16A32, }, - [0x1D0B7]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL IMIFONON", + [0x16A33]={ + category="lo", + description="BAMUM LETTER PHASE-F MO", direction="l", linebreak="al", - unicodeslot=0x1D0B7, + unicodeslot=0x16A33, }, - [0x1D0B8]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL IMIFTHORON", + [0x16A34]={ + category="lo", + description="BAMUM LETTER PHASE-F MBAA", direction="l", linebreak="al", - unicodeslot=0x1D0B8, + unicodeslot=0x16A34, }, - [0x1D0B9]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA ARCHAION DEYTEROU ICHOU", + [0x16A35]={ + category="lo", + description="BAMUM LETTER PHASE-F TET", direction="l", linebreak="al", - unicodeslot=0x1D0B9, + unicodeslot=0x16A35, }, - [0x1D0BA]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI PA", + [0x16A36]={ + category="lo", + description="BAMUM LETTER PHASE-F KPA", direction="l", linebreak="al", - unicodeslot=0x1D0BA, + unicodeslot=0x16A36, }, - [0x1D0BB]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NANA", + [0x16A37]={ + category="lo", + description="BAMUM LETTER PHASE-F SAMBA", direction="l", linebreak="al", - unicodeslot=0x1D0BB, + unicodeslot=0x16A37, }, - [0x1D0BC]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA NAOS ICHOS", + [0x16A38]={ + category="lo", + description="BAMUM LETTER PHASE-F VUEQ", direction="l", linebreak="al", - unicodeslot=0x1D0BC, + unicodeslot=0x16A38, }, - [0x1D0BD]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI DI", + [0x16A40]={ + category="lo", + description="MRO LETTER TA", direction="l", linebreak="al", - unicodeslot=0x1D0BD, + unicodeslot=0x16A40, }, - [0x1D0BE]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON DIATONON DI", + [0x16A41]={ + category="lo", + description="MRO LETTER NGI", direction="l", linebreak="al", - unicodeslot=0x1D0BE, + unicodeslot=0x16A41, }, - [0x1D0BF]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI KE", + [0x16A42]={ + category="lo", + description="MRO LETTER YO", direction="l", linebreak="al", - unicodeslot=0x1D0BF, + unicodeslot=0x16A42, }, - [0x1D0C0]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI ZO", + [0x16A43]={ + category="lo", + description="MRO LETTER MIM", direction="l", linebreak="al", - unicodeslot=0x1D0C0, + unicodeslot=0x16A43, }, - [0x1D0C1]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NI KATO", + [0x16A44]={ + category="lo", + description="MRO LETTER BA", direction="l", linebreak="al", - unicodeslot=0x1D0C1, + unicodeslot=0x16A44, }, - [0x1D0C2]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NI ANO", + [0x16A45]={ + category="lo", + description="MRO LETTER DA", direction="l", linebreak="al", - unicodeslot=0x1D0C2, + unicodeslot=0x16A45, }, - [0x1D0C3]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA MALAKON CHROMA DIFONIAS", + [0x16A46]={ + category="lo", + description="MRO LETTER A", direction="l", linebreak="al", - unicodeslot=0x1D0C3, + unicodeslot=0x16A46, }, - [0x1D0C4]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA MALAKON CHROMA MONOFONIAS", + [0x16A47]={ + category="lo", + description="MRO LETTER PHI", direction="l", linebreak="al", - unicodeslot=0x1D0C4, + unicodeslot=0x16A47, }, - [0x1D0C5]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FHTORA SKLIRON CHROMA VASIS", + [0x16A48]={ + category="lo", + description="MRO LETTER KHAI", direction="l", linebreak="al", - unicodeslot=0x1D0C5, + unicodeslot=0x16A48, }, - [0x1D0C6]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON CHROMA SYNAFI", + [0x16A49]={ + category="lo", + description="MRO LETTER HAO", direction="l", linebreak="al", - unicodeslot=0x1D0C6, + unicodeslot=0x16A49, }, - [0x1D0C7]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA NENANO", + [0x16A4A]={ + category="lo", + description="MRO LETTER DAI", direction="l", linebreak="al", - unicodeslot=0x1D0C7, + unicodeslot=0x16A4A, }, - [0x1D0C8]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL CHROA ZYGOS", + [0x16A4B]={ + category="lo", + description="MRO LETTER CHU", direction="l", linebreak="al", - unicodeslot=0x1D0C8, + unicodeslot=0x16A4B, }, - [0x1D0C9]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL CHROA KLITON", + [0x16A4C]={ + category="lo", + description="MRO LETTER KEAAE", direction="l", linebreak="al", - unicodeslot=0x1D0C9, + unicodeslot=0x16A4C, }, - [0x1D0CA]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL CHROA SPATHI", + [0x16A4D]={ + category="lo", + description="MRO LETTER OL", direction="l", linebreak="al", - unicodeslot=0x1D0CA, + unicodeslot=0x16A4D, }, - [0x1D0CB]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA I YFESIS TETARTIMORION", + [0x16A4E]={ + category="lo", + description="MRO LETTER MAEM", direction="l", linebreak="al", - unicodeslot=0x1D0CB, + unicodeslot=0x16A4E, }, - [0x1D0CC]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL FTHORA ENARMONIOS ANTIFONIA", + [0x16A4F]={ + category="lo", + description="MRO LETTER NIN", direction="l", linebreak="al", - unicodeslot=0x1D0CC, + unicodeslot=0x16A4F, }, - [0x1D0CD]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YFESIS TRITIMORION", + [0x16A50]={ + category="lo", + description="MRO LETTER PA", direction="l", linebreak="al", - unicodeslot=0x1D0CD, + unicodeslot=0x16A50, }, - [0x1D0CE]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIESIS TRITIMORION", + [0x16A51]={ + category="lo", + description="MRO LETTER OO", direction="l", linebreak="al", - unicodeslot=0x1D0CE, + unicodeslot=0x16A51, }, - [0x1D0CF]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIESIS TETARTIMORION", + [0x16A52]={ + category="lo", + description="MRO LETTER O", direction="l", linebreak="al", - unicodeslot=0x1D0CF, + unicodeslot=0x16A52, }, - [0x1D0D0]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIESIS APLI DYO DODEKATA", + [0x16A53]={ + category="lo", + description="MRO LETTER RO", direction="l", linebreak="al", - unicodeslot=0x1D0D0, + unicodeslot=0x16A53, }, - [0x1D0D1]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIESIS MONOGRAMMOS TESSERA DODEKATA", + [0x16A54]={ + category="lo", + description="MRO LETTER SHI", direction="l", linebreak="al", - unicodeslot=0x1D0D1, + unicodeslot=0x16A54, }, - [0x1D0D2]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIESIS DIGRAMMOS EX DODEKATA", + [0x16A55]={ + category="lo", + description="MRO LETTER THEA", direction="l", linebreak="al", - unicodeslot=0x1D0D2, + unicodeslot=0x16A55, }, - [0x1D0D3]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIESIS TRIGRAMMOS OKTO DODEKATA", + [0x16A56]={ + category="lo", + description="MRO LETTER EA", direction="l", linebreak="al", - unicodeslot=0x1D0D3, + unicodeslot=0x16A56, }, - [0x1D0D4]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YFESIS APLI DYO DODEKATA", + [0x16A57]={ + category="lo", + description="MRO LETTER WA", direction="l", linebreak="al", - unicodeslot=0x1D0D4, + unicodeslot=0x16A57, }, - [0x1D0D5]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YFESIS MONOGRAMMOS TESSERA DODEKATA", + [0x16A58]={ + category="lo", + description="MRO LETTER E", direction="l", linebreak="al", - unicodeslot=0x1D0D5, + unicodeslot=0x16A58, }, - [0x1D0D6]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YFESIS DIGRAMMOS EX DODEKATA", + [0x16A59]={ + category="lo", + description="MRO LETTER KO", direction="l", linebreak="al", - unicodeslot=0x1D0D6, + unicodeslot=0x16A59, }, - [0x1D0D7]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL YFESIS TRIGRAMMOS OKTO DODEKATA", + [0x16A5A]={ + category="lo", + description="MRO LETTER LAN", direction="l", linebreak="al", - unicodeslot=0x1D0D7, + unicodeslot=0x16A5A, }, - [0x1D0D8]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GENIKI DIESIS", + [0x16A5B]={ + category="lo", + description="MRO LETTER LA", direction="l", linebreak="al", - unicodeslot=0x1D0D8, + unicodeslot=0x16A5B, }, - [0x1D0D9]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GENIKI YFESIS", + [0x16A5C]={ + category="lo", + description="MRO LETTER HAI", direction="l", linebreak="al", - unicodeslot=0x1D0D9, + unicodeslot=0x16A5C, }, - [0x1D0DA]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIASTOLI APLI MIKRI", + [0x16A5D]={ + category="lo", + description="MRO LETTER RI", direction="l", linebreak="al", - unicodeslot=0x1D0DA, + unicodeslot=0x16A5D, }, - [0x1D0DB]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIASTOLI APLI MEGALI", + [0x16A5E]={ + category="lo", + description="MRO LETTER TEK", direction="l", linebreak="al", - unicodeslot=0x1D0DB, + unicodeslot=0x16A5E, }, - [0x1D0DC]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIASTOLI DIPLI", + [0x16A60]={ + category="nd", + description="MRO DIGIT ZERO", direction="l", - linebreak="al", - unicodeslot=0x1D0DC, + linebreak="nu", + unicodeslot=0x16A60, }, - [0x1D0DD]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIASTOLI THESEOS", + [0x16A61]={ + category="nd", + description="MRO DIGIT ONE", direction="l", - linebreak="al", - unicodeslot=0x1D0DD, + linebreak="nu", + unicodeslot=0x16A61, }, - [0x1D0DE]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS", + [0x16A62]={ + category="nd", + description="MRO DIGIT TWO", direction="l", - linebreak="al", - unicodeslot=0x1D0DE, + linebreak="nu", + unicodeslot=0x16A62, }, - [0x1D0DF]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS DISIMOU", + [0x16A63]={ + category="nd", + description="MRO DIGIT THREE", direction="l", - linebreak="al", - unicodeslot=0x1D0DF, + linebreak="nu", + unicodeslot=0x16A63, }, - [0x1D0E0]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS TRISIMOU", + [0x16A64]={ + category="nd", + description="MRO DIGIT FOUR", direction="l", - linebreak="al", - unicodeslot=0x1D0E0, + linebreak="nu", + unicodeslot=0x16A64, }, - [0x1D0E1]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS TETRASIMOU", + [0x16A65]={ + category="nd", + description="MRO DIGIT FIVE", direction="l", - linebreak="al", - unicodeslot=0x1D0E1, + linebreak="nu", + unicodeslot=0x16A65, }, - [0x1D0E2]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS", + [0x16A66]={ + category="nd", + description="MRO DIGIT SIX", direction="l", - linebreak="al", - unicodeslot=0x1D0E2, + linebreak="nu", + unicodeslot=0x16A66, }, - [0x1D0E3]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS DISIMOU", + [0x16A67]={ + category="nd", + description="MRO DIGIT SEVEN", direction="l", - linebreak="al", - unicodeslot=0x1D0E3, + linebreak="nu", + unicodeslot=0x16A67, }, - [0x1D0E4]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS TRISIMOU", + [0x16A68]={ + category="nd", + description="MRO DIGIT EIGHT", direction="l", - linebreak="al", - unicodeslot=0x1D0E4, + linebreak="nu", + unicodeslot=0x16A68, }, - [0x1D0E5]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS TETRASIMOU", + [0x16A69]={ + category="nd", + description="MRO DIGIT NINE", direction="l", - linebreak="al", - unicodeslot=0x1D0E5, + linebreak="nu", + unicodeslot=0x16A69, }, - [0x1D0E6]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIGRAMMA GG", + [0x16A6E]={ + category="po", + description="MRO DANDA", direction="l", - linebreak="al", - unicodeslot=0x1D0E6, + linebreak="ba", + unicodeslot=0x16A6E, }, - [0x1D0E7]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL DIFTOGGOS OU", + [0x16A6F]={ + category="po", + description="MRO DOUBLE DANDA", direction="l", - linebreak="al", - unicodeslot=0x1D0E7, + linebreak="ba", + unicodeslot=0x16A6F, }, - [0x1D0E8]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL STIGMA", + [0x16AD0]={ + category="lo", + description="BASSA VAH LETTER ENNI", direction="l", linebreak="al", - unicodeslot=0x1D0E8, + unicodeslot=0x16AD0, }, - [0x1D0E9]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARKTIKO PA", + [0x16AD1]={ + category="lo", + description="BASSA VAH LETTER KA", direction="l", linebreak="al", - unicodeslot=0x1D0E9, + unicodeslot=0x16AD1, }, - [0x1D0EA]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARKTIKO VOU", + [0x16AD2]={ + category="lo", + description="BASSA VAH LETTER SE", direction="l", linebreak="al", - unicodeslot=0x1D0EA, + unicodeslot=0x16AD2, }, - [0x1D0EB]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARKTIKO GA", + [0x16AD3]={ + category="lo", + description="BASSA VAH LETTER FA", direction="l", linebreak="al", - unicodeslot=0x1D0EB, + unicodeslot=0x16AD3, }, - [0x1D0EC]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARKTIKO DI", + [0x16AD4]={ + category="lo", + description="BASSA VAH LETTER MBE", direction="l", linebreak="al", - unicodeslot=0x1D0EC, + unicodeslot=0x16AD4, }, - [0x1D0ED]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARKTIKO KE", + [0x16AD5]={ + category="lo", + description="BASSA VAH LETTER YIE", direction="l", linebreak="al", - unicodeslot=0x1D0ED, + unicodeslot=0x16AD5, }, - [0x1D0EE]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARKTIKO ZO", + [0x16AD6]={ + category="lo", + description="BASSA VAH LETTER GAH", direction="l", linebreak="al", - unicodeslot=0x1D0EE, + unicodeslot=0x16AD6, }, - [0x1D0EF]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL ARKTIKO NI", + [0x16AD7]={ + category="lo", + description="BASSA VAH LETTER DHII", direction="l", linebreak="al", - unicodeslot=0x1D0EF, + unicodeslot=0x16AD7, }, - [0x1D0F0]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMATA NEO MESO", + [0x16AD8]={ + category="lo", + description="BASSA VAH LETTER KPAH", direction="l", linebreak="al", - unicodeslot=0x1D0F0, + unicodeslot=0x16AD8, }, - [0x1D0F1]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMA NEO MESO", + [0x16AD9]={ + category="lo", + description="BASSA VAH LETTER JO", direction="l", linebreak="al", - unicodeslot=0x1D0F1, + unicodeslot=0x16AD9, }, - [0x1D0F2]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMATA NEO KATO", + [0x16ADA]={ + category="lo", + description="BASSA VAH LETTER HWAH", direction="l", linebreak="al", - unicodeslot=0x1D0F2, + unicodeslot=0x16ADA, }, - [0x1D0F3]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KENTIMA NEO KATO", + [0x16ADB]={ + category="lo", + description="BASSA VAH LETTER WA", direction="l", linebreak="al", - unicodeslot=0x1D0F3, + unicodeslot=0x16ADB, }, - [0x1D0F4]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL KLASMA KATO", + [0x16ADC]={ + category="lo", + description="BASSA VAH LETTER ZO", direction="l", linebreak="al", - unicodeslot=0x1D0F4, + unicodeslot=0x16ADC, }, - [0x1D0F5]={ - category="so", - description="BYZANTINE MUSICAL SYMBOL GORGON NEO KATO", + [0x16ADD]={ + category="lo", + description="BASSA VAH LETTER GBU", direction="l", linebreak="al", - unicodeslot=0x1D0F5, + unicodeslot=0x16ADD, }, - [0x1D100]={ - category="so", - description="MUSICAL SYMBOL SINGLE BARLINE", + [0x16ADE]={ + category="lo", + description="BASSA VAH LETTER DO", direction="l", linebreak="al", - unicodeslot=0x1D100, + unicodeslot=0x16ADE, }, - [0x1D101]={ - category="so", - description="MUSICAL SYMBOL DOUBLE BARLINE", + [0x16ADF]={ + category="lo", + description="BASSA VAH LETTER CE", direction="l", linebreak="al", - unicodeslot=0x1D101, + unicodeslot=0x16ADF, }, - [0x1D102]={ - category="so", - description="MUSICAL SYMBOL FINAL BARLINE", + [0x16AE0]={ + category="lo", + description="BASSA VAH LETTER UWU", direction="l", linebreak="al", - unicodeslot=0x1D102, + unicodeslot=0x16AE0, }, - [0x1D103]={ - category="so", - description="MUSICAL SYMBOL REVERSE FINAL BARLINE", + [0x16AE1]={ + category="lo", + description="BASSA VAH LETTER TO", direction="l", linebreak="al", - unicodeslot=0x1D103, + unicodeslot=0x16AE1, }, - [0x1D104]={ - category="so", - description="MUSICAL SYMBOL DASHED BARLINE", + [0x16AE2]={ + category="lo", + description="BASSA VAH LETTER BA", direction="l", linebreak="al", - unicodeslot=0x1D104, + unicodeslot=0x16AE2, }, - [0x1D105]={ - category="so", - description="MUSICAL SYMBOL SHORT BARLINE", + [0x16AE3]={ + category="lo", + description="BASSA VAH LETTER VU", direction="l", linebreak="al", - unicodeslot=0x1D105, + unicodeslot=0x16AE3, }, - [0x1D106]={ - category="so", - description="MUSICAL SYMBOL LEFT REPEAT SIGN", + [0x16AE4]={ + category="lo", + description="BASSA VAH LETTER YEIN", direction="l", linebreak="al", - unicodeslot=0x1D106, + unicodeslot=0x16AE4, }, - [0x1D107]={ - category="so", - description="MUSICAL SYMBOL RIGHT REPEAT SIGN", + [0x16AE5]={ + category="lo", + description="BASSA VAH LETTER PA", direction="l", linebreak="al", - unicodeslot=0x1D107, + unicodeslot=0x16AE5, }, - [0x1D108]={ - category="so", - description="MUSICAL SYMBOL REPEAT DOTS", + [0x16AE6]={ + category="lo", + description="BASSA VAH LETTER WADDA", direction="l", linebreak="al", - unicodeslot=0x1D108, + unicodeslot=0x16AE6, }, - [0x1D109]={ - category="so", - description="MUSICAL SYMBOL DAL SEGNO", + [0x16AE7]={ + category="lo", + description="BASSA VAH LETTER A", direction="l", linebreak="al", - unicodeslot=0x1D109, + unicodeslot=0x16AE7, }, - [0x1D10A]={ - category="so", - description="MUSICAL SYMBOL DA CAPO", + [0x16AE8]={ + category="lo", + description="BASSA VAH LETTER O", direction="l", linebreak="al", - unicodeslot=0x1D10A, + unicodeslot=0x16AE8, }, - [0x1D10B]={ - category="so", - description="MUSICAL SYMBOL SEGNO", + [0x16AE9]={ + category="lo", + description="BASSA VAH LETTER OO", direction="l", linebreak="al", - unicodeslot=0x1D10B, + unicodeslot=0x16AE9, }, - [0x1D10C]={ - category="so", - description="MUSICAL SYMBOL CODA", + [0x16AEA]={ + category="lo", + description="BASSA VAH LETTER U", direction="l", linebreak="al", - unicodeslot=0x1D10C, + unicodeslot=0x16AEA, }, - [0x1D10D]={ - category="so", - description="MUSICAL SYMBOL REPEATED FIGURE-0x0001", + [0x16AEB]={ + category="lo", + description="BASSA VAH LETTER EE", direction="l", linebreak="al", - unicodeslot=0x1D10D, + unicodeslot=0x16AEB, }, - [0x1D10E]={ - category="so", - description="MUSICAL SYMBOL REPEATED FIGURE-0x0002", + [0x16AEC]={ + category="lo", + description="BASSA VAH LETTER E", direction="l", linebreak="al", - unicodeslot=0x1D10E, + unicodeslot=0x16AEC, }, - [0x1D10F]={ - category="so", - description="MUSICAL SYMBOL REPEATED FIGURE-0x0003", + [0x16AED]={ + category="lo", + description="BASSA VAH LETTER I", direction="l", linebreak="al", - unicodeslot=0x1D10F, + unicodeslot=0x16AED, }, - [0x1D110]={ - category="so", - description="MUSICAL SYMBOL FERMATA", + [0x16AF0]={ + category="mn", + combining=0x1, + description="BASSA VAH COMBINING HIGH TONE", + direction="nsm", + linebreak="cm", + unicodeslot=0x16AF0, + }, + [0x16AF1]={ + category="mn", + combining=0x1, + description="BASSA VAH COMBINING LOW TONE", + direction="nsm", + linebreak="cm", + unicodeslot=0x16AF1, + }, + [0x16AF2]={ + category="mn", + combining=0x1, + description="BASSA VAH COMBINING MID TONE", + direction="nsm", + linebreak="cm", + unicodeslot=0x16AF2, + }, + [0x16AF3]={ + category="mn", + combining=0x1, + description="BASSA VAH COMBINING LOW-MID TONE", + direction="nsm", + linebreak="cm", + unicodeslot=0x16AF3, + }, + [0x16AF4]={ + category="mn", + combining=0x1, + description="BASSA VAH COMBINING HIGH-LOW TONE", + direction="nsm", + linebreak="cm", + unicodeslot=0x16AF4, + }, + [0x16AF5]={ + category="po", + description="BASSA VAH FULL STOP", direction="l", - linebreak="al", - unicodeslot=0x1D110, + linebreak="ba", + unicodeslot=0x16AF5, }, - [0x1D111]={ - category="so", - description="MUSICAL SYMBOL FERMATA BELOW", + [0x16B00]={ + category="lo", + description="PAHAWH HMONG VOWEL KEEB", direction="l", linebreak="al", - unicodeslot=0x1D111, + unicodeslot=0x16B00, }, - [0x1D112]={ - category="so", - description="MUSICAL SYMBOL BREATH MARK", + [0x16B01]={ + category="lo", + description="PAHAWH HMONG VOWEL KEEV", direction="l", linebreak="al", - unicodeslot=0x1D112, + unicodeslot=0x16B01, }, - [0x1D113]={ - category="so", - description="MUSICAL SYMBOL CAESURA", + [0x16B02]={ + category="lo", + description="PAHAWH HMONG VOWEL KIB", direction="l", linebreak="al", - unicodeslot=0x1D113, + unicodeslot=0x16B02, }, - [0x1D114]={ - category="so", - description="MUSICAL SYMBOL BRACE", + [0x16B03]={ + category="lo", + description="PAHAWH HMONG VOWEL KIV", direction="l", linebreak="al", - unicodeslot=0x1D114, + unicodeslot=0x16B03, }, - [0x1D115]={ - category="so", - description="MUSICAL SYMBOL BRACKET", + [0x16B04]={ + category="lo", + description="PAHAWH HMONG VOWEL KAUB", direction="l", linebreak="al", - unicodeslot=0x1D115, + unicodeslot=0x16B04, }, - [0x1D116]={ - category="so", - description="MUSICAL SYMBOL ONE-LINE STAFF", + [0x16B05]={ + category="lo", + description="PAHAWH HMONG VOWEL KAUV", direction="l", linebreak="al", - unicodeslot=0x1D116, + unicodeslot=0x16B05, }, - [0x1D117]={ - category="so", - description="MUSICAL SYMBOL TWO-LINE STAFF", + [0x16B06]={ + category="lo", + description="PAHAWH HMONG VOWEL KUB", direction="l", linebreak="al", - unicodeslot=0x1D117, + unicodeslot=0x16B06, }, - [0x1D118]={ - category="so", - description="MUSICAL SYMBOL THREE-LINE STAFF", + [0x16B07]={ + category="lo", + description="PAHAWH HMONG VOWEL KUV", direction="l", linebreak="al", - unicodeslot=0x1D118, + unicodeslot=0x16B07, }, - [0x1D119]={ - category="so", - description="MUSICAL SYMBOL FOUR-LINE STAFF", + [0x16B08]={ + category="lo", + description="PAHAWH HMONG VOWEL KEB", direction="l", linebreak="al", - unicodeslot=0x1D119, + unicodeslot=0x16B08, }, - [0x1D11A]={ - category="so", - description="MUSICAL SYMBOL FIVE-LINE STAFF", + [0x16B09]={ + category="lo", + description="PAHAWH HMONG VOWEL KEV", direction="l", linebreak="al", - unicodeslot=0x1D11A, + unicodeslot=0x16B09, }, - [0x1D11B]={ - category="so", - description="MUSICAL SYMBOL SIX-LINE STAFF", + [0x16B0A]={ + category="lo", + description="PAHAWH HMONG VOWEL KAIB", direction="l", linebreak="al", - unicodeslot=0x1D11B, + unicodeslot=0x16B0A, }, - [0x1D11C]={ - category="so", - description="MUSICAL SYMBOL SIX-STRING FRETBOARD", + [0x16B0B]={ + category="lo", + description="PAHAWH HMONG VOWEL KAIV", direction="l", linebreak="al", - unicodeslot=0x1D11C, + unicodeslot=0x16B0B, }, - [0x1D11D]={ - category="so", - description="MUSICAL SYMBOL FOUR-STRING FRETBOARD", + [0x16B0C]={ + category="lo", + description="PAHAWH HMONG VOWEL KOOB", direction="l", linebreak="al", - unicodeslot=0x1D11D, + unicodeslot=0x16B0C, }, - [0x1D11E]={ - category="so", - description="MUSICAL SYMBOL G CLEF", + [0x16B0D]={ + category="lo", + description="PAHAWH HMONG VOWEL KOOV", direction="l", linebreak="al", - unicodeslot=0x1D11E, + unicodeslot=0x16B0D, }, - [0x1D11F]={ - category="so", - description="MUSICAL SYMBOL G CLEF OTTAVA ALTA", + [0x16B0E]={ + category="lo", + description="PAHAWH HMONG VOWEL KAWB", direction="l", linebreak="al", - unicodeslot=0x1D11F, + unicodeslot=0x16B0E, }, - [0x1D120]={ - category="so", - description="MUSICAL SYMBOL G CLEF OTTAVA BASSA", + [0x16B0F]={ + category="lo", + description="PAHAWH HMONG VOWEL KAWV", direction="l", linebreak="al", - unicodeslot=0x1D120, + unicodeslot=0x16B0F, }, - [0x1D121]={ - category="so", - description="MUSICAL SYMBOL C CLEF", + [0x16B10]={ + category="lo", + description="PAHAWH HMONG VOWEL KUAB", direction="l", linebreak="al", - unicodeslot=0x1D121, + unicodeslot=0x16B10, }, - [0x1D122]={ - category="so", - description="MUSICAL SYMBOL F CLEF", + [0x16B11]={ + category="lo", + description="PAHAWH HMONG VOWEL KUAV", direction="l", linebreak="al", - unicodeslot=0x1D122, + unicodeslot=0x16B11, }, - [0x1D123]={ - category="so", - description="MUSICAL SYMBOL F CLEF OTTAVA ALTA", + [0x16B12]={ + category="lo", + description="PAHAWH HMONG VOWEL KOB", direction="l", linebreak="al", - unicodeslot=0x1D123, + unicodeslot=0x16B12, }, - [0x1D124]={ - category="so", - description="MUSICAL SYMBOL F CLEF OTTAVA BASSA", + [0x16B13]={ + category="lo", + description="PAHAWH HMONG VOWEL KOV", direction="l", linebreak="al", - unicodeslot=0x1D124, + unicodeslot=0x16B13, }, - [0x1D125]={ - category="so", - description="MUSICAL SYMBOL DRUM CLEF-0x0001", + [0x16B14]={ + category="lo", + description="PAHAWH HMONG VOWEL KIAB", direction="l", linebreak="al", - unicodeslot=0x1D125, + unicodeslot=0x16B14, }, - [0x1D126]={ - category="so", - description="MUSICAL SYMBOL DRUM CLEF-0x0002", + [0x16B15]={ + category="lo", + description="PAHAWH HMONG VOWEL KIAV", direction="l", linebreak="al", - unicodeslot=0x1D126, + unicodeslot=0x16B15, }, - [0x1D129]={ - category="so", - description="MUSICAL SYMBOL MULTIPLE MEASURE REST", + [0x16B16]={ + category="lo", + description="PAHAWH HMONG VOWEL KAB", direction="l", linebreak="al", - unicodeslot=0x1D129, + unicodeslot=0x16B16, }, - [0x1D12A]={ - category="so", - description="MUSICAL SYMBOL DOUBLE SHARP", + [0x16B17]={ + category="lo", + description="PAHAWH HMONG VOWEL KAV", direction="l", linebreak="al", - unicodeslot=0x1D12A, + unicodeslot=0x16B17, }, - [0x1D12B]={ - category="so", - description="MUSICAL SYMBOL DOUBLE FLAT", + [0x16B18]={ + category="lo", + description="PAHAWH HMONG VOWEL KWB", direction="l", linebreak="al", - unicodeslot=0x1D12B, + unicodeslot=0x16B18, }, - [0x1D12C]={ - category="so", - description="MUSICAL SYMBOL FLAT UP", + [0x16B19]={ + category="lo", + description="PAHAWH HMONG VOWEL KWV", direction="l", linebreak="al", - unicodeslot=0x1D12C, + unicodeslot=0x16B19, }, - [0x1D12D]={ - category="so", - description="MUSICAL SYMBOL FLAT DOWN", + [0x16B1A]={ + category="lo", + description="PAHAWH HMONG VOWEL KAAB", direction="l", linebreak="al", - unicodeslot=0x1D12D, + unicodeslot=0x16B1A, }, - [0x1D12E]={ - category="so", - description="MUSICAL SYMBOL NATURAL UP", + [0x16B1B]={ + category="lo", + description="PAHAWH HMONG VOWEL KAAV", direction="l", linebreak="al", - unicodeslot=0x1D12E, + unicodeslot=0x16B1B, }, - [0x1D12F]={ - category="so", - description="MUSICAL SYMBOL NATURAL DOWN", + [0x16B1C]={ + category="lo", + description="PAHAWH HMONG CONSONANT VAU", direction="l", linebreak="al", - unicodeslot=0x1D12F, + unicodeslot=0x16B1C, }, - [0x1D130]={ - category="so", - description="MUSICAL SYMBOL SHARP UP", + [0x16B1D]={ + category="lo", + description="PAHAWH HMONG CONSONANT NTSAU", direction="l", linebreak="al", - unicodeslot=0x1D130, + unicodeslot=0x16B1D, }, - [0x1D131]={ - category="so", - description="MUSICAL SYMBOL SHARP DOWN", + [0x16B1E]={ + category="lo", + description="PAHAWH HMONG CONSONANT LAU", direction="l", linebreak="al", - unicodeslot=0x1D131, + unicodeslot=0x16B1E, }, - [0x1D132]={ - category="so", - description="MUSICAL SYMBOL QUARTER TONE SHARP", + [0x16B1F]={ + category="lo", + description="PAHAWH HMONG CONSONANT HAU", direction="l", linebreak="al", - unicodeslot=0x1D132, + unicodeslot=0x16B1F, }, - [0x1D133]={ - category="so", - description="MUSICAL SYMBOL QUARTER TONE FLAT", + [0x16B20]={ + category="lo", + description="PAHAWH HMONG CONSONANT NLAU", direction="l", linebreak="al", - unicodeslot=0x1D133, + unicodeslot=0x16B20, }, - [0x1D134]={ - category="so", - description="MUSICAL SYMBOL COMMON TIME", + [0x16B21]={ + category="lo", + description="PAHAWH HMONG CONSONANT RAU", direction="l", linebreak="al", - unicodeslot=0x1D134, + unicodeslot=0x16B21, }, - [0x1D135]={ - category="so", - description="MUSICAL SYMBOL CUT TIME", + [0x16B22]={ + category="lo", + description="PAHAWH HMONG CONSONANT NKAU", direction="l", linebreak="al", - unicodeslot=0x1D135, + unicodeslot=0x16B22, }, - [0x1D136]={ - category="so", - description="MUSICAL SYMBOL OTTAVA ALTA", + [0x16B23]={ + category="lo", + description="PAHAWH HMONG CONSONANT QHAU", direction="l", linebreak="al", - unicodeslot=0x1D136, + unicodeslot=0x16B23, }, - [0x1D137]={ - category="so", - description="MUSICAL SYMBOL OTTAVA BASSA", + [0x16B24]={ + category="lo", + description="PAHAWH HMONG CONSONANT YAU", direction="l", linebreak="al", - unicodeslot=0x1D137, + unicodeslot=0x16B24, }, - [0x1D138]={ - category="so", - description="MUSICAL SYMBOL QUINDICESIMA ALTA", + [0x16B25]={ + category="lo", + description="PAHAWH HMONG CONSONANT HLAU", direction="l", linebreak="al", - unicodeslot=0x1D138, + unicodeslot=0x16B25, }, - [0x1D139]={ - category="so", - description="MUSICAL SYMBOL QUINDICESIMA BASSA", + [0x16B26]={ + category="lo", + description="PAHAWH HMONG CONSONANT MAU", direction="l", linebreak="al", - unicodeslot=0x1D139, + unicodeslot=0x16B26, }, - [0x1D13A]={ - category="so", - description="MUSICAL SYMBOL MULTI REST", + [0x16B27]={ + category="lo", + description="PAHAWH HMONG CONSONANT CHAU", direction="l", linebreak="al", - unicodeslot=0x1D13A, + unicodeslot=0x16B27, }, - [0x1D13B]={ - category="so", - description="MUSICAL SYMBOL WHOLE REST", + [0x16B28]={ + category="lo", + description="PAHAWH HMONG CONSONANT NCHAU", direction="l", linebreak="al", - unicodeslot=0x1D13B, + unicodeslot=0x16B28, }, - [0x1D13C]={ - category="so", - description="MUSICAL SYMBOL HALF REST", + [0x16B29]={ + category="lo", + description="PAHAWH HMONG CONSONANT HNAU", direction="l", linebreak="al", - unicodeslot=0x1D13C, + unicodeslot=0x16B29, }, - [0x1D13D]={ - category="so", - description="MUSICAL SYMBOL QUARTER REST", + [0x16B2A]={ + category="lo", + description="PAHAWH HMONG CONSONANT PLHAU", direction="l", linebreak="al", - unicodeslot=0x1D13D, + unicodeslot=0x16B2A, }, - [0x1D13E]={ - category="so", - description="MUSICAL SYMBOL EIGHTH REST", + [0x16B2B]={ + category="lo", + description="PAHAWH HMONG CONSONANT NTHAU", direction="l", linebreak="al", - unicodeslot=0x1D13E, + unicodeslot=0x16B2B, }, - [0x1D13F]={ - category="so", - description="MUSICAL SYMBOL SIXTEENTH REST", + [0x16B2C]={ + category="lo", + description="PAHAWH HMONG CONSONANT NAU", direction="l", linebreak="al", - unicodeslot=0x1D13F, + unicodeslot=0x16B2C, }, - [0x1D140]={ - category="so", - description="MUSICAL SYMBOL THIRTY-SECOND REST", + [0x16B2D]={ + category="lo", + description="PAHAWH HMONG CONSONANT AU", direction="l", linebreak="al", - unicodeslot=0x1D140, + unicodeslot=0x16B2D, }, - [0x1D141]={ - category="so", - description="MUSICAL SYMBOL SIXTY-FOURTH REST", + [0x16B2E]={ + category="lo", + description="PAHAWH HMONG CONSONANT XAU", direction="l", linebreak="al", - unicodeslot=0x1D141, + unicodeslot=0x16B2E, }, - [0x1D142]={ - category="so", - description="MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH REST", + [0x16B2F]={ + category="lo", + description="PAHAWH HMONG CONSONANT CAU", direction="l", linebreak="al", - unicodeslot=0x1D142, + unicodeslot=0x16B2F, }, - [0x1D143]={ - category="so", - description="MUSICAL SYMBOL X NOTEHEAD", + [0x16B30]={ + category="mn", + combining=0xE6, + description="PAHAWH HMONG MARK CIM TUB", + direction="nsm", + linebreak="cm", + unicodeslot=0x16B30, + }, + [0x16B31]={ + category="mn", + combining=0xE6, + description="PAHAWH HMONG MARK CIM SO", + direction="nsm", + linebreak="cm", + unicodeslot=0x16B31, + }, + [0x16B32]={ + category="mn", + combining=0xE6, + description="PAHAWH HMONG MARK CIM KES", + direction="nsm", + linebreak="cm", + unicodeslot=0x16B32, + }, + [0x16B33]={ + category="mn", + combining=0xE6, + description="PAHAWH HMONG MARK CIM KHAV", + direction="nsm", + linebreak="cm", + unicodeslot=0x16B33, + }, + [0x16B34]={ + category="mn", + combining=0xE6, + description="PAHAWH HMONG MARK CIM SUAM", + direction="nsm", + linebreak="cm", + unicodeslot=0x16B34, + }, + [0x16B35]={ + category="mn", + combining=0xE6, + description="PAHAWH HMONG MARK CIM HOM", + direction="nsm", + linebreak="cm", + unicodeslot=0x16B35, + }, + [0x16B36]={ + category="mn", + combining=0xE6, + description="PAHAWH HMONG MARK CIM TAUM", + direction="nsm", + linebreak="cm", + unicodeslot=0x16B36, + }, + [0x16B37]={ + category="po", + description="PAHAWH HMONG SIGN VOS THOM", direction="l", - linebreak="al", - unicodeslot=0x1D143, + linebreak="ba", + unicodeslot=0x16B37, }, - [0x1D144]={ - category="so", - description="MUSICAL SYMBOL PLUS NOTEHEAD", + [0x16B38]={ + category="po", + description="PAHAWH HMONG SIGN VOS TSHAB CEEB", direction="l", - linebreak="al", - unicodeslot=0x1D144, + linebreak="ba", + unicodeslot=0x16B38, }, - [0x1D145]={ - category="so", - description="MUSICAL SYMBOL CIRCLE X NOTEHEAD", + [0x16B39]={ + category="po", + description="PAHAWH HMONG SIGN CIM CHEEM", direction="l", - linebreak="al", - unicodeslot=0x1D145, + linebreak="ba", + unicodeslot=0x16B39, }, - [0x1D146]={ - category="so", - description="MUSICAL SYMBOL SQUARE NOTEHEAD WHITE", + [0x16B3A]={ + category="po", + description="PAHAWH HMONG SIGN VOS THIAB", direction="l", linebreak="al", - unicodeslot=0x1D146, + unicodeslot=0x16B3A, }, - [0x1D147]={ - category="so", - description="MUSICAL SYMBOL SQUARE NOTEHEAD BLACK", + [0x16B3B]={ + category="po", + description="PAHAWH HMONG SIGN VOS FEEM", direction="l", linebreak="al", - unicodeslot=0x1D147, + unicodeslot=0x16B3B, }, - [0x1D148]={ + [0x16B3C]={ category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD UP WHITE", + description="PAHAWH HMONG SIGN XYEEM NTXIV", direction="l", linebreak="al", - unicodeslot=0x1D148, + unicodeslot=0x16B3C, }, - [0x1D149]={ + [0x16B3D]={ category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD UP BLACK", + description="PAHAWH HMONG SIGN XYEEM RHO", direction="l", linebreak="al", - unicodeslot=0x1D149, + unicodeslot=0x16B3D, }, - [0x1D14A]={ + [0x16B3E]={ category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD LEFT WHITE", + description="PAHAWH HMONG SIGN XYEEM TOV", direction="l", linebreak="al", - unicodeslot=0x1D14A, + unicodeslot=0x16B3E, }, - [0x1D14B]={ + [0x16B3F]={ category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD LEFT BLACK", + description="PAHAWH HMONG SIGN XYEEM FAIB", direction="l", linebreak="al", - unicodeslot=0x1D14B, + unicodeslot=0x16B3F, }, - [0x1D14C]={ - category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD RIGHT WHITE", + [0x16B40]={ + category="lm", + description="PAHAWH HMONG SIGN VOS SEEV", direction="l", linebreak="al", - unicodeslot=0x1D14C, + unicodeslot=0x16B40, }, - [0x1D14D]={ - category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD RIGHT BLACK", + [0x16B41]={ + category="lm", + description="PAHAWH HMONG SIGN MEEJ SUAB", direction="l", linebreak="al", - unicodeslot=0x1D14D, + unicodeslot=0x16B41, }, - [0x1D14E]={ - category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD DOWN WHITE", + [0x16B42]={ + category="lm", + description="PAHAWH HMONG SIGN VOS NRUA", direction="l", linebreak="al", - unicodeslot=0x1D14E, + unicodeslot=0x16B42, }, - [0x1D14F]={ - category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD DOWN BLACK", + [0x16B43]={ + category="lm", + description="PAHAWH HMONG SIGN IB YAM", direction="l", linebreak="al", - unicodeslot=0x1D14F, + unicodeslot=0x16B43, }, - [0x1D150]={ - category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD UP RIGHT WHITE", + [0x16B44]={ + category="po", + description="PAHAWH HMONG SIGN XAUS", direction="l", - linebreak="al", - unicodeslot=0x1D150, + linebreak="ba", + unicodeslot=0x16B44, }, - [0x1D151]={ + [0x16B45]={ category="so", - description="MUSICAL SYMBOL TRIANGLE NOTEHEAD UP RIGHT BLACK", + description="PAHAWH HMONG SIGN CIM TSOV ROG", direction="l", linebreak="al", - unicodeslot=0x1D151, + unicodeslot=0x16B45, }, - [0x1D152]={ - category="so", - description="MUSICAL SYMBOL MOON NOTEHEAD WHITE", + [0x16B50]={ + category="nd", + description="PAHAWH HMONG DIGIT ZERO", direction="l", - linebreak="al", - unicodeslot=0x1D152, + linebreak="nu", + unicodeslot=0x16B50, }, - [0x1D153]={ - category="so", - description="MUSICAL SYMBOL MOON NOTEHEAD BLACK", + [0x16B51]={ + category="nd", + description="PAHAWH HMONG DIGIT ONE", direction="l", - linebreak="al", - unicodeslot=0x1D153, + linebreak="nu", + unicodeslot=0x16B51, }, - [0x1D154]={ - category="so", - description="MUSICAL SYMBOL TRIANGLE-ROUND NOTEHEAD DOWN WHITE", + [0x16B52]={ + category="nd", + description="PAHAWH HMONG DIGIT TWO", direction="l", - linebreak="al", - unicodeslot=0x1D154, + linebreak="nu", + unicodeslot=0x16B52, }, - [0x1D155]={ - category="so", - description="MUSICAL SYMBOL TRIANGLE-ROUND NOTEHEAD DOWN BLACK", + [0x16B53]={ + category="nd", + description="PAHAWH HMONG DIGIT THREE", direction="l", - linebreak="al", - unicodeslot=0x1D155, + linebreak="nu", + unicodeslot=0x16B53, }, - [0x1D156]={ - category="so", - description="MUSICAL SYMBOL PARENTHESIS NOTEHEAD", + [0x16B54]={ + category="nd", + description="PAHAWH HMONG DIGIT FOUR", direction="l", - linebreak="al", - unicodeslot=0x1D156, + linebreak="nu", + unicodeslot=0x16B54, }, - [0x1D157]={ - category="so", - description="MUSICAL SYMBOL VOID NOTEHEAD", + [0x16B55]={ + category="nd", + description="PAHAWH HMONG DIGIT FIVE", direction="l", - linebreak="al", - unicodeslot=0x1D157, + linebreak="nu", + unicodeslot=0x16B55, }, - [0x1D158]={ - category="so", - description="MUSICAL SYMBOL NOTEHEAD BLACK", + [0x16B56]={ + category="nd", + description="PAHAWH HMONG DIGIT SIX", direction="l", - linebreak="al", - unicodeslot=0x1D158, + linebreak="nu", + unicodeslot=0x16B56, }, - [0x1D159]={ - category="so", - description="MUSICAL SYMBOL NULL NOTEHEAD", + [0x16B57]={ + category="nd", + description="PAHAWH HMONG DIGIT SEVEN", direction="l", - linebreak="al", - unicodeslot=0x1D159, + linebreak="nu", + unicodeslot=0x16B57, }, - [0x1D15A]={ - category="so", - description="MUSICAL SYMBOL CLUSTER NOTEHEAD WHITE", + [0x16B58]={ + category="nd", + description="PAHAWH HMONG DIGIT EIGHT", direction="l", - linebreak="al", - unicodeslot=0x1D15A, + linebreak="nu", + unicodeslot=0x16B58, }, - [0x1D15B]={ - category="so", - description="MUSICAL SYMBOL CLUSTER NOTEHEAD BLACK", + [0x16B59]={ + category="nd", + description="PAHAWH HMONG DIGIT NINE", direction="l", - linebreak="al", - unicodeslot=0x1D15B, + linebreak="nu", + unicodeslot=0x16B59, }, - [0x1D15C]={ - category="so", - description="MUSICAL SYMBOL BREVE", + [0x16B5B]={ + category="no", + description="PAHAWH HMONG NUMBER TENS", direction="l", linebreak="al", - unicodeslot=0x1D15C, + unicodeslot=0x16B5B, }, - [0x1D15D]={ - category="so", - description="MUSICAL SYMBOL WHOLE NOTE", + [0x16B5C]={ + category="no", + description="PAHAWH HMONG NUMBER HUNDREDS", direction="l", linebreak="al", - unicodeslot=0x1D15D, + unicodeslot=0x16B5C, }, - [0x1D15E]={ - category="so", - description="MUSICAL SYMBOL HALF NOTE", + [0x16B5D]={ + category="no", + description="PAHAWH HMONG NUMBER TEN THOUSANDS", direction="l", linebreak="al", - specials={ "char", 0x1D157, 0x1D165 }, - unicodeslot=0x1D15E, + unicodeslot=0x16B5D, }, - [0x1D15F]={ - category="so", - description="MUSICAL SYMBOL QUARTER NOTE", + [0x16B5E]={ + category="no", + description="PAHAWH HMONG NUMBER MILLIONS", direction="l", linebreak="al", - specials={ "char", 0x1D158, 0x1D165 }, - unicodeslot=0x1D15F, + unicodeslot=0x16B5E, }, - [0x1D160]={ - category="so", - description="MUSICAL SYMBOL EIGHTH NOTE", + [0x16B5F]={ + category="no", + description="PAHAWH HMONG NUMBER HUNDRED MILLIONS", direction="l", linebreak="al", - specials={ "char", 0x1D15F, 0x1D16E }, - unicodeslot=0x1D160, + unicodeslot=0x16B5F, }, - [0x1D161]={ - category="so", - description="MUSICAL SYMBOL SIXTEENTH NOTE", + [0x16B60]={ + category="no", + description="PAHAWH HMONG NUMBER TEN BILLIONS", direction="l", linebreak="al", - specials={ "char", 0x1D15F, 0x1D16F }, - unicodeslot=0x1D161, + unicodeslot=0x16B60, }, - [0x1D162]={ - category="so", - description="MUSICAL SYMBOL THIRTY-SECOND NOTE", + [0x16B61]={ + category="no", + description="PAHAWH HMONG NUMBER TRILLIONS", direction="l", linebreak="al", - specials={ "char", 0x1D15F, 0x1D170 }, - unicodeslot=0x1D162, + unicodeslot=0x16B61, }, - [0x1D163]={ - category="so", - description="MUSICAL SYMBOL SIXTY-FOURTH NOTE", + [0x16B63]={ + category="lo", + description="PAHAWH HMONG SIGN VOS LUB", direction="l", linebreak="al", - specials={ "char", 0x1D15F, 0x1D171 }, - unicodeslot=0x1D163, + unicodeslot=0x16B63, }, - [0x1D164]={ - category="so", - description="MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH NOTE", + [0x16B64]={ + category="lo", + description="PAHAWH HMONG SIGN XYOO", direction="l", linebreak="al", - specials={ "char", 0x1D15F, 0x1D172 }, - unicodeslot=0x1D164, + unicodeslot=0x16B64, }, - [0x1D165]={ - category="mc", - combining=0xD8, - description="MUSICAL SYMBOL COMBINING STEM", + [0x16B65]={ + category="lo", + description="PAHAWH HMONG SIGN HLI", direction="l", - linebreak="cm", - unicodeslot=0x1D165, + linebreak="al", + unicodeslot=0x16B65, }, - [0x1D166]={ - category="mc", - combining=0xD8, - description="MUSICAL SYMBOL COMBINING SPRECHGESANG STEM", + [0x16B66]={ + category="lo", + description="PAHAWH HMONG SIGN THIRD-STAGE HLI", direction="l", - linebreak="cm", - unicodeslot=0x1D166, - }, - [0x1D167]={ - category="mn", - combining=0x1, - description="MUSICAL SYMBOL COMBINING TREMOLO-0x0001", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D167, - }, - [0x1D168]={ - category="mn", - combining=0x1, - description="MUSICAL SYMBOL COMBINING TREMOLO-0x0002", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D168, - }, - [0x1D169]={ - category="mn", - combining=0x1, - description="MUSICAL SYMBOL COMBINING TREMOLO-0x0003", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D169, + linebreak="al", + unicodeslot=0x16B66, }, - [0x1D16A]={ - category="so", - description="MUSICAL SYMBOL FINGERED TREMOLO-0x0001", + [0x16B67]={ + category="lo", + description="PAHAWH HMONG SIGN ZWJ THAJ", direction="l", linebreak="al", - unicodeslot=0x1D16A, + unicodeslot=0x16B67, }, - [0x1D16B]={ - category="so", - description="MUSICAL SYMBOL FINGERED TREMOLO-0x0002", + [0x16B68]={ + category="lo", + description="PAHAWH HMONG SIGN HNUB", direction="l", linebreak="al", - unicodeslot=0x1D16B, + unicodeslot=0x16B68, }, - [0x1D16C]={ - category="so", - description="MUSICAL SYMBOL FINGERED TREMOLO-0x0003", + [0x16B69]={ + category="lo", + description="PAHAWH HMONG SIGN NQIG", direction="l", linebreak="al", - unicodeslot=0x1D16C, + unicodeslot=0x16B69, }, - [0x1D16D]={ - category="mc", - combining=0xE2, - description="MUSICAL SYMBOL COMBINING AUGMENTATION DOT", + [0x16B6A]={ + category="lo", + description="PAHAWH HMONG SIGN XIAB", direction="l", - linebreak="cm", - unicodeslot=0x1D16D, + linebreak="al", + unicodeslot=0x16B6A, }, - [0x1D16E]={ - category="mc", - combining=0xD8, - description="MUSICAL SYMBOL COMBINING FLAG-0x0001", + [0x16B6B]={ + category="lo", + description="PAHAWH HMONG SIGN NTUJ", direction="l", - linebreak="cm", - unicodeslot=0x1D16E, + linebreak="al", + unicodeslot=0x16B6B, }, - [0x1D16F]={ - category="mc", - combining=0xD8, - description="MUSICAL SYMBOL COMBINING FLAG-0x0002", + [0x16B6C]={ + category="lo", + description="PAHAWH HMONG SIGN AV", direction="l", - linebreak="cm", - unicodeslot=0x1D16F, + linebreak="al", + unicodeslot=0x16B6C, }, - [0x1D170]={ - category="mc", - combining=0xD8, - description="MUSICAL SYMBOL COMBINING FLAG-0x0003", + [0x16B6D]={ + category="lo", + description="PAHAWH HMONG SIGN TXHEEJ CEEV", direction="l", - linebreak="cm", - unicodeslot=0x1D170, + linebreak="al", + unicodeslot=0x16B6D, }, - [0x1D171]={ - category="mc", - combining=0xD8, - description="MUSICAL SYMBOL COMBINING FLAG-0x0004", + [0x16B6E]={ + category="lo", + description="PAHAWH HMONG SIGN MEEJ TSEEB", direction="l", - linebreak="cm", - unicodeslot=0x1D171, + linebreak="al", + unicodeslot=0x16B6E, }, - [0x1D172]={ - category="mc", - combining=0xD8, - description="MUSICAL SYMBOL COMBINING FLAG-0x0005", + [0x16B6F]={ + category="lo", + description="PAHAWH HMONG SIGN TAU", direction="l", - linebreak="cm", - unicodeslot=0x1D172, - }, - [0x1D173]={ - category="cf", - description="MUSICAL SYMBOL BEGIN BEAM", - direction="bn", - linebreak="cm", - unicodeslot=0x1D173, - }, - [0x1D174]={ - category="cf", - description="MUSICAL SYMBOL END BEAM", - direction="bn", - linebreak="cm", - unicodeslot=0x1D174, - }, - [0x1D175]={ - category="cf", - description="MUSICAL SYMBOL BEGIN TIE", - direction="bn", - linebreak="cm", - unicodeslot=0x1D175, - }, - [0x1D176]={ - category="cf", - description="MUSICAL SYMBOL END TIE", - direction="bn", - linebreak="cm", - unicodeslot=0x1D176, - }, - [0x1D177]={ - category="cf", - description="MUSICAL SYMBOL BEGIN SLUR", - direction="bn", - linebreak="cm", - unicodeslot=0x1D177, - }, - [0x1D178]={ - category="cf", - description="MUSICAL SYMBOL END SLUR", - direction="bn", - linebreak="cm", - unicodeslot=0x1D178, - }, - [0x1D179]={ - category="cf", - description="MUSICAL SYMBOL BEGIN PHRASE", - direction="bn", - linebreak="cm", - unicodeslot=0x1D179, - }, - [0x1D17A]={ - category="cf", - description="MUSICAL SYMBOL END PHRASE", - direction="bn", - linebreak="cm", - unicodeslot=0x1D17A, - }, - [0x1D17B]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING ACCENT", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D17B, - }, - [0x1D17C]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING STACCATO", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D17C, - }, - [0x1D17D]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING TENUTO", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D17D, - }, - [0x1D17E]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING STACCATISSIMO", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D17E, - }, - [0x1D17F]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING MARCATO", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D17F, - }, - [0x1D180]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING MARCATO-STACCATO", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D180, - }, - [0x1D181]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING ACCENT-STACCATO", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D181, - }, - [0x1D182]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING LOURE", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D182, + linebreak="al", + unicodeslot=0x16B6F, }, - [0x1D183]={ - category="so", - description="MUSICAL SYMBOL ARPEGGIATO UP", + [0x16B70]={ + category="lo", + description="PAHAWH HMONG SIGN LOS", direction="l", linebreak="al", - unicodeslot=0x1D183, + unicodeslot=0x16B70, }, - [0x1D184]={ - category="so", - description="MUSICAL SYMBOL ARPEGGIATO DOWN", + [0x16B71]={ + category="lo", + description="PAHAWH HMONG SIGN MUS", direction="l", linebreak="al", - unicodeslot=0x1D184, - }, - [0x1D185]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING DOIT", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D185, - }, - [0x1D186]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING RIP", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D186, - }, - [0x1D187]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING FLIP", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D187, - }, - [0x1D188]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING SMEAR", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D188, - }, - [0x1D189]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING BEND", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D189, - }, - [0x1D18A]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING DOUBLE TONGUE", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D18A, - }, - [0x1D18B]={ - category="mn", - combining=0xDC, - description="MUSICAL SYMBOL COMBINING TRIPLE TONGUE", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D18B, + unicodeslot=0x16B71, }, - [0x1D18C]={ - category="so", - description="MUSICAL SYMBOL RINFORZANDO", + [0x16B72]={ + category="lo", + description="PAHAWH HMONG SIGN CIM HAIS LUS NTOG NTOG", direction="l", linebreak="al", - unicodeslot=0x1D18C, + unicodeslot=0x16B72, }, - [0x1D18D]={ - category="so", - description="MUSICAL SYMBOL SUBITO", + [0x16B73]={ + category="lo", + description="PAHAWH HMONG SIGN CIM CUAM TSHOOJ", direction="l", linebreak="al", - unicodeslot=0x1D18D, + unicodeslot=0x16B73, }, - [0x1D18E]={ - category="so", - description="MUSICAL SYMBOL Z", + [0x16B74]={ + category="lo", + description="PAHAWH HMONG SIGN CIM TXWV", direction="l", linebreak="al", - unicodeslot=0x1D18E, + unicodeslot=0x16B74, }, - [0x1D18F]={ - category="so", - description="MUSICAL SYMBOL PIANO", + [0x16B75]={ + category="lo", + description="PAHAWH HMONG SIGN CIM TXWV CHWV", direction="l", linebreak="al", - unicodeslot=0x1D18F, + unicodeslot=0x16B75, }, - [0x1D190]={ - category="so", - description="MUSICAL SYMBOL MEZZO", + [0x16B76]={ + category="lo", + description="PAHAWH HMONG SIGN CIM PUB DAWB", direction="l", linebreak="al", - unicodeslot=0x1D190, + unicodeslot=0x16B76, }, - [0x1D191]={ - category="so", - description="MUSICAL SYMBOL FORTE", + [0x16B77]={ + category="lo", + description="PAHAWH HMONG SIGN CIM NRES TOS", direction="l", linebreak="al", - unicodeslot=0x1D191, + unicodeslot=0x16B77, }, - [0x1D192]={ - category="so", - description="MUSICAL SYMBOL CRESCENDO", + [0x16B7D]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN TSHEEJ", direction="l", linebreak="al", - unicodeslot=0x1D192, + unicodeslot=0x16B7D, }, - [0x1D193]={ - category="so", - description="MUSICAL SYMBOL DECRESCENDO", + [0x16B7E]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN YEEG", direction="l", linebreak="al", - unicodeslot=0x1D193, + unicodeslot=0x16B7E, }, - [0x1D194]={ - category="so", - description="MUSICAL SYMBOL GRACE NOTE SLASH", + [0x16B7F]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN LIS", direction="l", linebreak="al", - unicodeslot=0x1D194, + unicodeslot=0x16B7F, }, - [0x1D195]={ - category="so", - description="MUSICAL SYMBOL GRACE NOTE NO SLASH", + [0x16B80]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN LAUJ", direction="l", linebreak="al", - unicodeslot=0x1D195, + unicodeslot=0x16B80, }, - [0x1D196]={ - category="so", - description="MUSICAL SYMBOL TR", + [0x16B81]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN XYOOJ", direction="l", linebreak="al", - unicodeslot=0x1D196, + unicodeslot=0x16B81, }, - [0x1D197]={ - category="so", - description="MUSICAL SYMBOL TURN", + [0x16B82]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN KOO", direction="l", linebreak="al", - unicodeslot=0x1D197, + unicodeslot=0x16B82, }, - [0x1D198]={ - category="so", - description="MUSICAL SYMBOL INVERTED TURN", + [0x16B83]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN HAWJ", direction="l", linebreak="al", - unicodeslot=0x1D198, + unicodeslot=0x16B83, }, - [0x1D199]={ - category="so", - description="MUSICAL SYMBOL TURN SLASH", + [0x16B84]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN MUAS", direction="l", linebreak="al", - unicodeslot=0x1D199, + unicodeslot=0x16B84, }, - [0x1D19A]={ - category="so", - description="MUSICAL SYMBOL TURN UP", + [0x16B85]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN THOJ", direction="l", linebreak="al", - unicodeslot=0x1D19A, + unicodeslot=0x16B85, }, - [0x1D19B]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0001", + [0x16B86]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN TSAB", direction="l", linebreak="al", - unicodeslot=0x1D19B, + unicodeslot=0x16B86, }, - [0x1D19C]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0002", + [0x16B87]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN PHAB", direction="l", linebreak="al", - unicodeslot=0x1D19C, + unicodeslot=0x16B87, }, - [0x1D19D]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0003", + [0x16B88]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN KHAB", direction="l", linebreak="al", - unicodeslot=0x1D19D, + unicodeslot=0x16B88, }, - [0x1D19E]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0004", + [0x16B89]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN HAM", direction="l", linebreak="al", - unicodeslot=0x1D19E, + unicodeslot=0x16B89, }, - [0x1D19F]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0005", + [0x16B8A]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN VAJ", direction="l", linebreak="al", - unicodeslot=0x1D19F, + unicodeslot=0x16B8A, }, - [0x1D1A0]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0006", + [0x16B8B]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN FAJ", direction="l", linebreak="al", - unicodeslot=0x1D1A0, + unicodeslot=0x16B8B, }, - [0x1D1A1]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0007", + [0x16B8C]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN YAJ", direction="l", linebreak="al", - unicodeslot=0x1D1A1, + unicodeslot=0x16B8C, }, - [0x1D1A2]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0008", + [0x16B8D]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN TSWB", direction="l", linebreak="al", - unicodeslot=0x1D1A2, + unicodeslot=0x16B8D, }, - [0x1D1A3]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x0009", + [0x16B8E]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN KWM", direction="l", linebreak="al", - unicodeslot=0x1D1A3, + unicodeslot=0x16B8E, }, - [0x1D1A4]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x000A", + [0x16B8F]={ + category="lo", + description="PAHAWH HMONG CLAN SIGN VWJ", direction="l", linebreak="al", - unicodeslot=0x1D1A4, + unicodeslot=0x16B8F, }, - [0x1D1A5]={ - category="so", - description="MUSICAL SYMBOL ORNAMENT STROKE-0x000B", + [0x16F00]={ + category="lo", + description="MIAO LETTER PA", direction="l", linebreak="al", - unicodeslot=0x1D1A5, + unicodeslot=0x16F00, }, - [0x1D1A6]={ - category="so", - description="MUSICAL SYMBOL HAUPTSTIMME", + [0x16F01]={ + category="lo", + description="MIAO LETTER BA", direction="l", linebreak="al", - unicodeslot=0x1D1A6, + unicodeslot=0x16F01, }, - [0x1D1A7]={ - category="so", - description="MUSICAL SYMBOL NEBENSTIMME", + [0x16F02]={ + category="lo", + description="MIAO LETTER YI PA", direction="l", linebreak="al", - unicodeslot=0x1D1A7, + unicodeslot=0x16F02, }, - [0x1D1A8]={ - category="so", - description="MUSICAL SYMBOL END OF STIMME", + [0x16F03]={ + category="lo", + description="MIAO LETTER PLA", direction="l", linebreak="al", - unicodeslot=0x1D1A8, + unicodeslot=0x16F03, }, - [0x1D1A9]={ - category="so", - description="MUSICAL SYMBOL DEGREE SLASH", + [0x16F04]={ + category="lo", + description="MIAO LETTER MA", direction="l", linebreak="al", - unicodeslot=0x1D1A9, - }, - [0x1D1AA]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING DOWN BOW", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D1AA, - }, - [0x1D1AB]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING UP BOW", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D1AB, - }, - [0x1D1AC]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING HARMONIC", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D1AC, - }, - [0x1D1AD]={ - category="mn", - combining=0xE6, - description="MUSICAL SYMBOL COMBINING SNAP PIZZICATO", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D1AD, + unicodeslot=0x16F04, }, - [0x1D1AE]={ - category="so", - description="MUSICAL SYMBOL PEDAL MARK", + [0x16F05]={ + category="lo", + description="MIAO LETTER MHA", direction="l", linebreak="al", - unicodeslot=0x1D1AE, + unicodeslot=0x16F05, }, - [0x1D1AF]={ - category="so", - description="MUSICAL SYMBOL PEDAL UP MARK", + [0x16F06]={ + category="lo", + description="MIAO LETTER ARCHAIC MA", direction="l", linebreak="al", - unicodeslot=0x1D1AF, + unicodeslot=0x16F06, }, - [0x1D1B0]={ - category="so", - description="MUSICAL SYMBOL HALF PEDAL MARK", + [0x16F07]={ + category="lo", + description="MIAO LETTER FA", direction="l", linebreak="al", - unicodeslot=0x1D1B0, + unicodeslot=0x16F07, }, - [0x1D1B1]={ - category="so", - description="MUSICAL SYMBOL GLISSANDO UP", + [0x16F08]={ + category="lo", + description="MIAO LETTER VA", direction="l", linebreak="al", - unicodeslot=0x1D1B1, + unicodeslot=0x16F08, }, - [0x1D1B2]={ - category="so", - description="MUSICAL SYMBOL GLISSANDO DOWN", + [0x16F09]={ + category="lo", + description="MIAO LETTER VFA", direction="l", linebreak="al", - unicodeslot=0x1D1B2, + unicodeslot=0x16F09, }, - [0x1D1B3]={ - category="so", - description="MUSICAL SYMBOL WITH FINGERNAILS", + [0x16F0A]={ + category="lo", + description="MIAO LETTER TA", direction="l", linebreak="al", - unicodeslot=0x1D1B3, + unicodeslot=0x16F0A, }, - [0x1D1B4]={ - category="so", - description="MUSICAL SYMBOL DAMP", + [0x16F0B]={ + category="lo", + description="MIAO LETTER DA", direction="l", linebreak="al", - unicodeslot=0x1D1B4, + unicodeslot=0x16F0B, }, - [0x1D1B5]={ - category="so", - description="MUSICAL SYMBOL DAMP ALL", + [0x16F0C]={ + category="lo", + description="MIAO LETTER YI TTA", direction="l", linebreak="al", - unicodeslot=0x1D1B5, + unicodeslot=0x16F0C, }, - [0x1D1B6]={ - category="so", - description="MUSICAL SYMBOL MAXIMA", + [0x16F0D]={ + category="lo", + description="MIAO LETTER YI TA", direction="l", linebreak="al", - unicodeslot=0x1D1B6, + unicodeslot=0x16F0D, }, - [0x1D1B7]={ - category="so", - description="MUSICAL SYMBOL LONGA", + [0x16F0E]={ + category="lo", + description="MIAO LETTER TTA", direction="l", linebreak="al", - unicodeslot=0x1D1B7, + unicodeslot=0x16F0E, }, - [0x1D1B8]={ - category="so", - description="MUSICAL SYMBOL BREVIS", + [0x16F0F]={ + category="lo", + description="MIAO LETTER DDA", direction="l", linebreak="al", - unicodeslot=0x1D1B8, + unicodeslot=0x16F0F, }, - [0x1D1B9]={ - category="so", - description="MUSICAL SYMBOL SEMIBREVIS WHITE", + [0x16F10]={ + category="lo", + description="MIAO LETTER NA", direction="l", linebreak="al", - unicodeslot=0x1D1B9, + unicodeslot=0x16F10, }, - [0x1D1BA]={ - category="so", - description="MUSICAL SYMBOL SEMIBREVIS BLACK", + [0x16F11]={ + category="lo", + description="MIAO LETTER NHA", direction="l", linebreak="al", - unicodeslot=0x1D1BA, + unicodeslot=0x16F11, }, - [0x1D1BB]={ - category="so", - description="MUSICAL SYMBOL MINIMA", + [0x16F12]={ + category="lo", + description="MIAO LETTER YI NNA", direction="l", linebreak="al", - specials={ "char", 0x1D1B9, 0x1D165 }, - unicodeslot=0x1D1BB, + unicodeslot=0x16F12, }, - [0x1D1BC]={ - category="so", - description="MUSICAL SYMBOL MINIMA BLACK", + [0x16F13]={ + category="lo", + description="MIAO LETTER ARCHAIC NA", direction="l", linebreak="al", - specials={ "char", 0x1D1BA, 0x1D165 }, - unicodeslot=0x1D1BC, + unicodeslot=0x16F13, }, - [0x1D1BD]={ - category="so", - description="MUSICAL SYMBOL SEMIMINIMA WHITE", + [0x16F14]={ + category="lo", + description="MIAO LETTER NNA", direction="l", linebreak="al", - specials={ "char", 0x1D1BB, 0x1D16E }, - unicodeslot=0x1D1BD, + unicodeslot=0x16F14, }, - [0x1D1BE]={ - category="so", - description="MUSICAL SYMBOL SEMIMINIMA BLACK", + [0x16F15]={ + category="lo", + description="MIAO LETTER NNHA", direction="l", linebreak="al", - specials={ "char", 0x1D1BC, 0x1D16E }, - unicodeslot=0x1D1BE, + unicodeslot=0x16F15, }, - [0x1D1BF]={ - category="so", - description="MUSICAL SYMBOL FUSA WHITE", + [0x16F16]={ + category="lo", + description="MIAO LETTER LA", direction="l", linebreak="al", - specials={ "char", 0x1D1BB, 0x1D16F }, - unicodeslot=0x1D1BF, + unicodeslot=0x16F16, }, - [0x1D1C0]={ - category="so", - description="MUSICAL SYMBOL FUSA BLACK", + [0x16F17]={ + category="lo", + description="MIAO LETTER LYA", direction="l", linebreak="al", - specials={ "char", 0x1D1BC, 0x1D16F }, - unicodeslot=0x1D1C0, + unicodeslot=0x16F17, }, - [0x1D1C1]={ - category="so", - description="MUSICAL SYMBOL LONGA PERFECTA REST", + [0x16F18]={ + category="lo", + description="MIAO LETTER LHA", direction="l", linebreak="al", - unicodeslot=0x1D1C1, + unicodeslot=0x16F18, }, - [0x1D1C2]={ - category="so", - description="MUSICAL SYMBOL LONGA IMPERFECTA REST", + [0x16F19]={ + category="lo", + description="MIAO LETTER LHYA", direction="l", linebreak="al", - unicodeslot=0x1D1C2, + unicodeslot=0x16F19, }, - [0x1D1C3]={ - category="so", - description="MUSICAL SYMBOL BREVIS REST", + [0x16F1A]={ + category="lo", + description="MIAO LETTER TLHA", direction="l", linebreak="al", - unicodeslot=0x1D1C3, + unicodeslot=0x16F1A, }, - [0x1D1C4]={ - category="so", - description="MUSICAL SYMBOL SEMIBREVIS REST", + [0x16F1B]={ + category="lo", + description="MIAO LETTER DLHA", direction="l", linebreak="al", - unicodeslot=0x1D1C4, + unicodeslot=0x16F1B, }, - [0x1D1C5]={ - category="so", - description="MUSICAL SYMBOL MINIMA REST", + [0x16F1C]={ + category="lo", + description="MIAO LETTER TLHYA", direction="l", linebreak="al", - unicodeslot=0x1D1C5, + unicodeslot=0x16F1C, }, - [0x1D1C6]={ - category="so", - description="MUSICAL SYMBOL SEMIMINIMA REST", + [0x16F1D]={ + category="lo", + description="MIAO LETTER DLHYA", direction="l", linebreak="al", - unicodeslot=0x1D1C6, + unicodeslot=0x16F1D, }, - [0x1D1C7]={ - category="so", - description="MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE PERFECTA", + [0x16F1E]={ + category="lo", + description="MIAO LETTER KA", direction="l", linebreak="al", - unicodeslot=0x1D1C7, + unicodeslot=0x16F1E, }, - [0x1D1C8]={ - category="so", - description="MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE IMPERFECTA", + [0x16F1F]={ + category="lo", + description="MIAO LETTER GA", direction="l", linebreak="al", - unicodeslot=0x1D1C8, + unicodeslot=0x16F1F, }, - [0x1D1C9]={ - category="so", - description="MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE PERFECTA DIMINUTION-0x0001", + [0x16F20]={ + category="lo", + description="MIAO LETTER YI KA", direction="l", linebreak="al", - unicodeslot=0x1D1C9, + unicodeslot=0x16F20, }, - [0x1D1CA]={ - category="so", - description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE PERFECTA", + [0x16F21]={ + category="lo", + description="MIAO LETTER QA", direction="l", linebreak="al", - unicodeslot=0x1D1CA, + unicodeslot=0x16F21, }, - [0x1D1CB]={ - category="so", - description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA", + [0x16F22]={ + category="lo", + description="MIAO LETTER QGA", direction="l", linebreak="al", - unicodeslot=0x1D1CB, + unicodeslot=0x16F22, }, - [0x1D1CC]={ - category="so", - description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-0x0001", + [0x16F23]={ + category="lo", + description="MIAO LETTER NGA", direction="l", linebreak="al", - unicodeslot=0x1D1CC, + unicodeslot=0x16F23, }, - [0x1D1CD]={ - category="so", - description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-0x0002", + [0x16F24]={ + category="lo", + description="MIAO LETTER NGHA", direction="l", linebreak="al", - unicodeslot=0x1D1CD, + unicodeslot=0x16F24, }, - [0x1D1CE]={ - category="so", - description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-0x0003", + [0x16F25]={ + category="lo", + description="MIAO LETTER ARCHAIC NGA", direction="l", linebreak="al", - unicodeslot=0x1D1CE, + unicodeslot=0x16F25, }, - [0x1D1CF]={ - category="so", - description="MUSICAL SYMBOL CROIX", + [0x16F26]={ + category="lo", + description="MIAO LETTER HA", direction="l", linebreak="al", - unicodeslot=0x1D1CF, + unicodeslot=0x16F26, }, - [0x1D1D0]={ - category="so", - description="MUSICAL SYMBOL GREGORIAN C CLEF", + [0x16F27]={ + category="lo", + description="MIAO LETTER XA", direction="l", linebreak="al", - unicodeslot=0x1D1D0, + unicodeslot=0x16F27, }, - [0x1D1D1]={ - category="so", - description="MUSICAL SYMBOL GREGORIAN F CLEF", + [0x16F28]={ + category="lo", + description="MIAO LETTER GHA", direction="l", linebreak="al", - unicodeslot=0x1D1D1, + unicodeslot=0x16F28, }, - [0x1D1D2]={ - category="so", - description="MUSICAL SYMBOL SQUARE B", + [0x16F29]={ + category="lo", + description="MIAO LETTER GHHA", direction="l", linebreak="al", - unicodeslot=0x1D1D2, + unicodeslot=0x16F29, }, - [0x1D1D3]={ - category="so", - description="MUSICAL SYMBOL VIRGA", + [0x16F2A]={ + category="lo", + description="MIAO LETTER TSSA", direction="l", linebreak="al", - unicodeslot=0x1D1D3, + unicodeslot=0x16F2A, }, - [0x1D1D4]={ - category="so", - description="MUSICAL SYMBOL PODATUS", + [0x16F2B]={ + category="lo", + description="MIAO LETTER DZZA", direction="l", linebreak="al", - unicodeslot=0x1D1D4, + unicodeslot=0x16F2B, }, - [0x1D1D5]={ - category="so", - description="MUSICAL SYMBOL CLIVIS", + [0x16F2C]={ + category="lo", + description="MIAO LETTER NYA", direction="l", linebreak="al", - unicodeslot=0x1D1D5, + unicodeslot=0x16F2C, }, - [0x1D1D6]={ - category="so", - description="MUSICAL SYMBOL SCANDICUS", + [0x16F2D]={ + category="lo", + description="MIAO LETTER NYHA", direction="l", linebreak="al", - unicodeslot=0x1D1D6, + unicodeslot=0x16F2D, }, - [0x1D1D7]={ - category="so", - description="MUSICAL SYMBOL CLIMACUS", + [0x16F2E]={ + category="lo", + description="MIAO LETTER TSHA", direction="l", linebreak="al", - unicodeslot=0x1D1D7, + unicodeslot=0x16F2E, }, - [0x1D1D8]={ - category="so", - description="MUSICAL SYMBOL TORCULUS", + [0x16F2F]={ + category="lo", + description="MIAO LETTER DZHA", direction="l", linebreak="al", - unicodeslot=0x1D1D8, + unicodeslot=0x16F2F, }, - [0x1D1D9]={ - category="so", - description="MUSICAL SYMBOL PORRECTUS", + [0x16F30]={ + category="lo", + description="MIAO LETTER YI TSHA", direction="l", linebreak="al", - unicodeslot=0x1D1D9, + unicodeslot=0x16F30, }, - [0x1D1DA]={ - category="so", - description="MUSICAL SYMBOL PORRECTUS FLEXUS", + [0x16F31]={ + category="lo", + description="MIAO LETTER YI DZHA", direction="l", linebreak="al", - unicodeslot=0x1D1DA, + unicodeslot=0x16F31, }, - [0x1D1DB]={ - category="so", - description="MUSICAL SYMBOL SCANDICUS FLEXUS", + [0x16F32]={ + category="lo", + description="MIAO LETTER REFORMED TSHA", direction="l", linebreak="al", - unicodeslot=0x1D1DB, + unicodeslot=0x16F32, }, - [0x1D1DC]={ - category="so", - description="MUSICAL SYMBOL TORCULUS RESUPINUS", + [0x16F33]={ + category="lo", + description="MIAO LETTER SHA", direction="l", linebreak="al", - unicodeslot=0x1D1DC, + unicodeslot=0x16F33, }, - [0x1D1DD]={ - category="so", - description="MUSICAL SYMBOL PES SUBPUNCTIS", + [0x16F34]={ + category="lo", + description="MIAO LETTER SSA", direction="l", linebreak="al", - unicodeslot=0x1D1DD, - }, - [0x1D200]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0001", - direction="on", - linebreak="al", - unicodeslot=0x1D200, + unicodeslot=0x16F34, }, - [0x1D201]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0002", - direction="on", + [0x16F35]={ + category="lo", + description="MIAO LETTER ZHA", + direction="l", linebreak="al", - unicodeslot=0x1D201, + unicodeslot=0x16F35, }, - [0x1D202]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0003", - direction="on", + [0x16F36]={ + category="lo", + description="MIAO LETTER ZSHA", + direction="l", linebreak="al", - unicodeslot=0x1D202, + unicodeslot=0x16F36, }, - [0x1D203]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0004", - direction="on", + [0x16F37]={ + category="lo", + description="MIAO LETTER TSA", + direction="l", linebreak="al", - unicodeslot=0x1D203, + unicodeslot=0x16F37, }, - [0x1D204]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0005", - direction="on", + [0x16F38]={ + category="lo", + description="MIAO LETTER DZA", + direction="l", linebreak="al", - unicodeslot=0x1D204, + unicodeslot=0x16F38, }, - [0x1D205]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0006", - direction="on", + [0x16F39]={ + category="lo", + description="MIAO LETTER YI TSA", + direction="l", linebreak="al", - unicodeslot=0x1D205, + unicodeslot=0x16F39, }, - [0x1D206]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0007", - direction="on", + [0x16F3A]={ + category="lo", + description="MIAO LETTER SA", + direction="l", linebreak="al", - unicodeslot=0x1D206, + unicodeslot=0x16F3A, }, - [0x1D207]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0008", - direction="on", + [0x16F3B]={ + category="lo", + description="MIAO LETTER ZA", + direction="l", linebreak="al", - unicodeslot=0x1D207, + unicodeslot=0x16F3B, }, - [0x1D208]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0009", - direction="on", + [0x16F3C]={ + category="lo", + description="MIAO LETTER ZSA", + direction="l", linebreak="al", - unicodeslot=0x1D208, + unicodeslot=0x16F3C, }, - [0x1D209]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x000A", - direction="on", + [0x16F3D]={ + category="lo", + description="MIAO LETTER ZZA", + direction="l", linebreak="al", - unicodeslot=0x1D209, + unicodeslot=0x16F3D, }, - [0x1D20A]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x000B", - direction="on", + [0x16F3E]={ + category="lo", + description="MIAO LETTER ZZSA", + direction="l", linebreak="al", - unicodeslot=0x1D20A, + unicodeslot=0x16F3E, }, - [0x1D20B]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x000C", - direction="on", + [0x16F3F]={ + category="lo", + description="MIAO LETTER ARCHAIC ZZA", + direction="l", linebreak="al", - unicodeslot=0x1D20B, + unicodeslot=0x16F3F, }, - [0x1D20C]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x000D", - direction="on", + [0x16F40]={ + category="lo", + description="MIAO LETTER ZZYA", + direction="l", linebreak="al", - unicodeslot=0x1D20C, + unicodeslot=0x16F40, }, - [0x1D20D]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x000E", - direction="on", + [0x16F41]={ + category="lo", + description="MIAO LETTER ZZSYA", + direction="l", linebreak="al", - unicodeslot=0x1D20D, + unicodeslot=0x16F41, }, - [0x1D20E]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x000F", - direction="on", + [0x16F42]={ + category="lo", + description="MIAO LETTER WA", + direction="l", linebreak="al", - unicodeslot=0x1D20E, + unicodeslot=0x16F42, }, - [0x1D20F]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0010", - direction="on", + [0x16F43]={ + category="lo", + description="MIAO LETTER AH", + direction="l", linebreak="al", - unicodeslot=0x1D20F, + unicodeslot=0x16F43, }, - [0x1D210]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0011", - direction="on", + [0x16F44]={ + category="lo", + description="MIAO LETTER HHA", + direction="l", linebreak="al", - unicodeslot=0x1D210, + unicodeslot=0x16F44, }, - [0x1D211]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0012", - direction="on", + [0x16F50]={ + category="lo", + description="MIAO LETTER NASALIZATION", + direction="l", linebreak="al", - unicodeslot=0x1D211, + unicodeslot=0x16F50, }, - [0x1D212]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0013", - direction="on", - linebreak="al", - unicodeslot=0x1D212, + [0x16F51]={ + category="mc", + description="MIAO SIGN ASPIRATION", + direction="l", + linebreak="cm", + unicodeslot=0x16F51, }, - [0x1D213]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0014", - direction="on", - linebreak="al", - unicodeslot=0x1D213, + [0x16F52]={ + category="mc", + description="MIAO SIGN REFORMED VOICING", + direction="l", + linebreak="cm", + unicodeslot=0x16F52, }, - [0x1D214]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0015", - direction="on", - linebreak="al", - unicodeslot=0x1D214, + [0x16F53]={ + category="mc", + description="MIAO SIGN REFORMED ASPIRATION", + direction="l", + linebreak="cm", + unicodeslot=0x16F53, }, - [0x1D215]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0016", - direction="on", - linebreak="al", - unicodeslot=0x1D215, + [0x16F54]={ + category="mc", + description="MIAO VOWEL SIGN A", + direction="l", + linebreak="cm", + unicodeslot=0x16F54, }, - [0x1D216]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0017", - direction="on", - linebreak="al", - unicodeslot=0x1D216, + [0x16F55]={ + category="mc", + description="MIAO VOWEL SIGN AA", + direction="l", + linebreak="cm", + unicodeslot=0x16F55, }, - [0x1D217]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0018", - direction="on", - linebreak="al", - unicodeslot=0x1D217, + [0x16F56]={ + category="mc", + description="MIAO VOWEL SIGN AHH", + direction="l", + linebreak="cm", + unicodeslot=0x16F56, }, - [0x1D218]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0032", - direction="on", - linebreak="al", - unicodeslot=0x1D218, + [0x16F57]={ + category="mc", + description="MIAO VOWEL SIGN AN", + direction="l", + linebreak="cm", + unicodeslot=0x16F57, }, - [0x1D219]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0033", - direction="on", - linebreak="al", - unicodeslot=0x1D219, + [0x16F58]={ + category="mc", + description="MIAO VOWEL SIGN ANG", + direction="l", + linebreak="cm", + unicodeslot=0x16F58, }, - [0x1D21A]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0034", - direction="on", - linebreak="al", - unicodeslot=0x1D21A, + [0x16F59]={ + category="mc", + description="MIAO VOWEL SIGN O", + direction="l", + linebreak="cm", + unicodeslot=0x16F59, }, - [0x1D21B]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0035", - direction="on", - linebreak="al", - unicodeslot=0x1D21B, + [0x16F5A]={ + category="mc", + description="MIAO VOWEL SIGN OO", + direction="l", + linebreak="cm", + unicodeslot=0x16F5A, }, - [0x1D21C]={ - category="so", - description="GREEK VOCAL NOTATION SYMBOL-0x0036", - direction="on", - linebreak="al", - unicodeslot=0x1D21C, + [0x16F5B]={ + category="mc", + description="MIAO VOWEL SIGN WO", + direction="l", + linebreak="cm", + unicodeslot=0x16F5B, }, - [0x1D21D]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0001", - direction="on", - linebreak="al", - unicodeslot=0x1D21D, + [0x16F5C]={ + category="mc", + description="MIAO VOWEL SIGN W", + direction="l", + linebreak="cm", + unicodeslot=0x16F5C, }, - [0x1D21E]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0002", - direction="on", - linebreak="al", - unicodeslot=0x1D21E, + [0x16F5D]={ + category="mc", + description="MIAO VOWEL SIGN E", + direction="l", + linebreak="cm", + unicodeslot=0x16F5D, }, - [0x1D21F]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0004", - direction="on", - linebreak="al", - unicodeslot=0x1D21F, + [0x16F5E]={ + category="mc", + description="MIAO VOWEL SIGN EN", + direction="l", + linebreak="cm", + unicodeslot=0x16F5E, }, - [0x1D220]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0005", - direction="on", - linebreak="al", - unicodeslot=0x1D220, + [0x16F5F]={ + category="mc", + description="MIAO VOWEL SIGN ENG", + direction="l", + linebreak="cm", + unicodeslot=0x16F5F, }, - [0x1D221]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0007", - direction="on", - linebreak="al", - unicodeslot=0x1D221, + [0x16F60]={ + category="mc", + description="MIAO VOWEL SIGN OEY", + direction="l", + linebreak="cm", + unicodeslot=0x16F60, }, - [0x1D222]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0008", - direction="on", - linebreak="al", - unicodeslot=0x1D222, + [0x16F61]={ + category="mc", + description="MIAO VOWEL SIGN I", + direction="l", + linebreak="cm", + unicodeslot=0x16F61, }, - [0x1D223]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x000B", - direction="on", - linebreak="al", - unicodeslot=0x1D223, + [0x16F62]={ + category="mc", + description="MIAO VOWEL SIGN IA", + direction="l", + linebreak="cm", + unicodeslot=0x16F62, }, - [0x1D224]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x000C", - direction="on", - linebreak="al", - unicodeslot=0x1D224, + [0x16F63]={ + category="mc", + description="MIAO VOWEL SIGN IAN", + direction="l", + linebreak="cm", + unicodeslot=0x16F63, }, - [0x1D225]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x000D", - direction="on", - linebreak="al", - unicodeslot=0x1D225, + [0x16F64]={ + category="mc", + description="MIAO VOWEL SIGN IANG", + direction="l", + linebreak="cm", + unicodeslot=0x16F64, }, - [0x1D226]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x000E", - direction="on", - linebreak="al", - unicodeslot=0x1D226, + [0x16F65]={ + category="mc", + description="MIAO VOWEL SIGN IO", + direction="l", + linebreak="cm", + unicodeslot=0x16F65, }, - [0x1D227]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0011", - direction="on", - linebreak="al", - unicodeslot=0x1D227, + [0x16F66]={ + category="mc", + description="MIAO VOWEL SIGN IE", + direction="l", + linebreak="cm", + unicodeslot=0x16F66, }, - [0x1D228]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0012", - direction="on", - linebreak="al", - unicodeslot=0x1D228, + [0x16F67]={ + category="mc", + description="MIAO VOWEL SIGN II", + direction="l", + linebreak="cm", + unicodeslot=0x16F67, }, - [0x1D229]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0013", - direction="on", - linebreak="al", - unicodeslot=0x1D229, + [0x16F68]={ + category="mc", + description="MIAO VOWEL SIGN IU", + direction="l", + linebreak="cm", + unicodeslot=0x16F68, }, - [0x1D22A]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0017", - direction="on", - linebreak="al", - unicodeslot=0x1D22A, + [0x16F69]={ + category="mc", + description="MIAO VOWEL SIGN ING", + direction="l", + linebreak="cm", + unicodeslot=0x16F69, }, - [0x1D22B]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0018", - direction="on", - linebreak="al", - unicodeslot=0x1D22B, + [0x16F6A]={ + category="mc", + description="MIAO VOWEL SIGN U", + direction="l", + linebreak="cm", + unicodeslot=0x16F6A, }, - [0x1D22C]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0019", - direction="on", - linebreak="al", - unicodeslot=0x1D22C, + [0x16F6B]={ + category="mc", + description="MIAO VOWEL SIGN UA", + direction="l", + linebreak="cm", + unicodeslot=0x16F6B, }, - [0x1D22D]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x001A", - direction="on", - linebreak="al", - unicodeslot=0x1D22D, + [0x16F6C]={ + category="mc", + description="MIAO VOWEL SIGN UAN", + direction="l", + linebreak="cm", + unicodeslot=0x16F6C, }, - [0x1D22E]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x001B", - direction="on", - linebreak="al", - unicodeslot=0x1D22E, + [0x16F6D]={ + category="mc", + description="MIAO VOWEL SIGN UANG", + direction="l", + linebreak="cm", + unicodeslot=0x16F6D, }, - [0x1D22F]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x001D", - direction="on", - linebreak="al", - unicodeslot=0x1D22F, + [0x16F6E]={ + category="mc", + description="MIAO VOWEL SIGN UU", + direction="l", + linebreak="cm", + unicodeslot=0x16F6E, + }, + [0x16F6F]={ + category="mc", + description="MIAO VOWEL SIGN UEI", + direction="l", + linebreak="cm", + unicodeslot=0x16F6F, + }, + [0x16F70]={ + category="mc", + description="MIAO VOWEL SIGN UNG", + direction="l", + linebreak="cm", + unicodeslot=0x16F70, + }, + [0x16F71]={ + category="mc", + description="MIAO VOWEL SIGN Y", + direction="l", + linebreak="cm", + unicodeslot=0x16F71, + }, + [0x16F72]={ + category="mc", + description="MIAO VOWEL SIGN YI", + direction="l", + linebreak="cm", + unicodeslot=0x16F72, + }, + [0x16F73]={ + category="mc", + description="MIAO VOWEL SIGN AE", + direction="l", + linebreak="cm", + unicodeslot=0x16F73, + }, + [0x16F74]={ + category="mc", + description="MIAO VOWEL SIGN AEE", + direction="l", + linebreak="cm", + unicodeslot=0x16F74, + }, + [0x16F75]={ + category="mc", + description="MIAO VOWEL SIGN ERR", + direction="l", + linebreak="cm", + unicodeslot=0x16F75, + }, + [0x16F76]={ + category="mc", + description="MIAO VOWEL SIGN ROUNDED ERR", + direction="l", + linebreak="cm", + unicodeslot=0x16F76, + }, + [0x16F77]={ + category="mc", + description="MIAO VOWEL SIGN ER", + direction="l", + linebreak="cm", + unicodeslot=0x16F77, + }, + [0x16F78]={ + category="mc", + description="MIAO VOWEL SIGN ROUNDED ER", + direction="l", + linebreak="cm", + unicodeslot=0x16F78, + }, + [0x16F79]={ + category="mc", + description="MIAO VOWEL SIGN AI", + direction="l", + linebreak="cm", + unicodeslot=0x16F79, + }, + [0x16F7A]={ + category="mc", + description="MIAO VOWEL SIGN EI", + direction="l", + linebreak="cm", + unicodeslot=0x16F7A, + }, + [0x16F7B]={ + category="mc", + description="MIAO VOWEL SIGN AU", + direction="l", + linebreak="cm", + unicodeslot=0x16F7B, + }, + [0x16F7C]={ + category="mc", + description="MIAO VOWEL SIGN OU", + direction="l", + linebreak="cm", + unicodeslot=0x16F7C, + }, + [0x16F7D]={ + category="mc", + description="MIAO VOWEL SIGN N", + direction="l", + linebreak="cm", + unicodeslot=0x16F7D, + }, + [0x16F7E]={ + category="mc", + description="MIAO VOWEL SIGN NG", + direction="l", + linebreak="cm", + unicodeslot=0x16F7E, + }, + [0x16F8F]={ + category="mn", + description="MIAO TONE RIGHT", + direction="nsm", + linebreak="cm", + unicodeslot=0x16F8F, + }, + [0x16F90]={ + category="mn", + description="MIAO TONE TOP RIGHT", + direction="nsm", + linebreak="cm", + unicodeslot=0x16F90, + }, + [0x16F91]={ + category="mn", + description="MIAO TONE ABOVE", + direction="nsm", + linebreak="cm", + unicodeslot=0x16F91, + }, + [0x16F92]={ + category="mn", + description="MIAO TONE BELOW", + direction="nsm", + linebreak="cm", + unicodeslot=0x16F92, + }, + [0x16F93]={ + category="lm", + description="MIAO LETTER TONE-2", + direction="l", + linebreak="al", + unicodeslot=0x16F93, + }, + [0x16F94]={ + category="lm", + description="MIAO LETTER TONE-3", + direction="l", + linebreak="al", + unicodeslot=0x16F94, + }, + [0x16F95]={ + category="lm", + description="MIAO LETTER TONE-4", + direction="l", + linebreak="al", + unicodeslot=0x16F95, + }, + [0x16F96]={ + category="lm", + description="MIAO LETTER TONE-5", + direction="l", + linebreak="al", + unicodeslot=0x16F96, + }, + [0x16F97]={ + category="lm", + description="MIAO LETTER TONE-6", + direction="l", + linebreak="al", + unicodeslot=0x16F97, + }, + [0x16F98]={ + category="lm", + description="MIAO LETTER TONE-7", + direction="l", + linebreak="al", + unicodeslot=0x16F98, + }, + [0x16F99]={ + category="lm", + description="MIAO LETTER TONE-8", + direction="l", + linebreak="al", + unicodeslot=0x16F99, + }, + [0x16F9A]={ + category="lm", + description="MIAO LETTER REFORMED TONE-1", + direction="l", + linebreak="al", + unicodeslot=0x16F9A, + }, + [0x16F9B]={ + category="lm", + description="MIAO LETTER REFORMED TONE-2", + direction="l", + linebreak="al", + unicodeslot=0x16F9B, + }, + [0x16F9C]={ + category="lm", + description="MIAO LETTER REFORMED TONE-4", + direction="l", + linebreak="al", + unicodeslot=0x16F9C, + }, + [0x16F9D]={ + category="lm", + description="MIAO LETTER REFORMED TONE-5", + direction="l", + linebreak="al", + unicodeslot=0x16F9D, + }, + [0x16F9E]={ + category="lm", + description="MIAO LETTER REFORMED TONE-6", + direction="l", + linebreak="al", + unicodeslot=0x16F9E, + }, + [0x16F9F]={ + category="lm", + description="MIAO LETTER REFORMED TONE-8", + direction="l", + linebreak="al", + unicodeslot=0x16F9F, + }, + [0x1B000]={ + category="lo", + cjkwd="w", + description="KATAKANA LETTER ARCHAIC E", + direction="l", + linebreak="id", + unicodeslot=0x1B000, + }, + [0x1B001]={ + category="lo", + cjkwd="w", + description="HIRAGANA LETTER ARCHAIC YE", + direction="l", + linebreak="id", + unicodeslot=0x1B001, + }, + [0x1BC00]={ + category="lo", + description="DUPLOYAN LETTER H", + direction="l", + linebreak="al", + unicodeslot=0x1BC00, + }, + [0x1BC01]={ + category="lo", + description="DUPLOYAN LETTER X", + direction="l", + linebreak="al", + unicodeslot=0x1BC01, + }, + [0x1BC02]={ + category="lo", + description="DUPLOYAN LETTER P", + direction="l", + linebreak="al", + unicodeslot=0x1BC02, + }, + [0x1BC03]={ + category="lo", + description="DUPLOYAN LETTER T", + direction="l", + linebreak="al", + unicodeslot=0x1BC03, + }, + [0x1BC04]={ + category="lo", + description="DUPLOYAN LETTER F", + direction="l", + linebreak="al", + unicodeslot=0x1BC04, + }, + [0x1BC05]={ + category="lo", + description="DUPLOYAN LETTER K", + direction="l", + linebreak="al", + unicodeslot=0x1BC05, + }, + [0x1BC06]={ + category="lo", + description="DUPLOYAN LETTER L", + direction="l", + linebreak="al", + unicodeslot=0x1BC06, + }, + [0x1BC07]={ + category="lo", + description="DUPLOYAN LETTER B", + direction="l", + linebreak="al", + unicodeslot=0x1BC07, + }, + [0x1BC08]={ + category="lo", + description="DUPLOYAN LETTER D", + direction="l", + linebreak="al", + unicodeslot=0x1BC08, + }, + [0x1BC09]={ + category="lo", + description="DUPLOYAN LETTER V", + direction="l", + linebreak="al", + unicodeslot=0x1BC09, + }, + [0x1BC0A]={ + category="lo", + description="DUPLOYAN LETTER G", + direction="l", + linebreak="al", + unicodeslot=0x1BC0A, + }, + [0x1BC0B]={ + category="lo", + description="DUPLOYAN LETTER R", + direction="l", + linebreak="al", + unicodeslot=0x1BC0B, + }, + [0x1BC0C]={ + category="lo", + description="DUPLOYAN LETTER P N", + direction="l", + linebreak="al", + unicodeslot=0x1BC0C, + }, + [0x1BC0D]={ + category="lo", + description="DUPLOYAN LETTER D S", + direction="l", + linebreak="al", + unicodeslot=0x1BC0D, + }, + [0x1BC0E]={ + category="lo", + description="DUPLOYAN LETTER F N", + direction="l", + linebreak="al", + unicodeslot=0x1BC0E, + }, + [0x1BC0F]={ + category="lo", + description="DUPLOYAN LETTER K M", + direction="l", + linebreak="al", + unicodeslot=0x1BC0F, + }, + [0x1BC10]={ + category="lo", + description="DUPLOYAN LETTER R S", + direction="l", + linebreak="al", + unicodeslot=0x1BC10, + }, + [0x1BC11]={ + category="lo", + description="DUPLOYAN LETTER TH", + direction="l", + linebreak="al", + unicodeslot=0x1BC11, + }, + [0x1BC12]={ + category="lo", + description="DUPLOYAN LETTER SLOAN DH", + direction="l", + linebreak="al", + unicodeslot=0x1BC12, + }, + [0x1BC13]={ + category="lo", + description="DUPLOYAN LETTER DH", + direction="l", + linebreak="al", + unicodeslot=0x1BC13, + }, + [0x1BC14]={ + category="lo", + description="DUPLOYAN LETTER KK", + direction="l", + linebreak="al", + unicodeslot=0x1BC14, + }, + [0x1BC15]={ + category="lo", + description="DUPLOYAN LETTER SLOAN J", + direction="l", + linebreak="al", + unicodeslot=0x1BC15, + }, + [0x1BC16]={ + category="lo", + description="DUPLOYAN LETTER HL", + direction="l", + linebreak="al", + unicodeslot=0x1BC16, + }, + [0x1BC17]={ + category="lo", + description="DUPLOYAN LETTER LH", + direction="l", + linebreak="al", + unicodeslot=0x1BC17, + }, + [0x1BC18]={ + category="lo", + description="DUPLOYAN LETTER RH", + direction="l", + linebreak="al", + unicodeslot=0x1BC18, + }, + [0x1BC19]={ + category="lo", + description="DUPLOYAN LETTER M", + direction="l", + linebreak="al", + unicodeslot=0x1BC19, + }, + [0x1BC1A]={ + category="lo", + description="DUPLOYAN LETTER N", + direction="l", + linebreak="al", + unicodeslot=0x1BC1A, + }, + [0x1BC1B]={ + category="lo", + description="DUPLOYAN LETTER J", + direction="l", + linebreak="al", + unicodeslot=0x1BC1B, + }, + [0x1BC1C]={ + category="lo", + description="DUPLOYAN LETTER S", + direction="l", + linebreak="al", + unicodeslot=0x1BC1C, + }, + [0x1BC1D]={ + category="lo", + description="DUPLOYAN LETTER M N", + direction="l", + linebreak="al", + unicodeslot=0x1BC1D, + }, + [0x1BC1E]={ + category="lo", + description="DUPLOYAN LETTER N M", + direction="l", + linebreak="al", + unicodeslot=0x1BC1E, + }, + [0x1BC1F]={ + category="lo", + description="DUPLOYAN LETTER J M", + direction="l", + linebreak="al", + unicodeslot=0x1BC1F, + }, + [0x1BC20]={ + category="lo", + description="DUPLOYAN LETTER S J", + direction="l", + linebreak="al", + unicodeslot=0x1BC20, + }, + [0x1BC21]={ + category="lo", + description="DUPLOYAN LETTER M WITH DOT", + direction="l", + linebreak="al", + unicodeslot=0x1BC21, + }, + [0x1BC22]={ + category="lo", + description="DUPLOYAN LETTER N WITH DOT", + direction="l", + linebreak="al", + unicodeslot=0x1BC22, + }, + [0x1BC23]={ + category="lo", + description="DUPLOYAN LETTER J WITH DOT", + direction="l", + linebreak="al", + unicodeslot=0x1BC23, + }, + [0x1BC24]={ + category="lo", + description="DUPLOYAN LETTER J WITH DOTS INSIDE AND ABOVE", + direction="l", + linebreak="al", + unicodeslot=0x1BC24, + }, + [0x1BC25]={ + category="lo", + description="DUPLOYAN LETTER S WITH DOT", + direction="l", + linebreak="al", + unicodeslot=0x1BC25, + }, + [0x1BC26]={ + category="lo", + description="DUPLOYAN LETTER S WITH DOT BELOW", + direction="l", + linebreak="al", + unicodeslot=0x1BC26, + }, + [0x1BC27]={ + category="lo", + description="DUPLOYAN LETTER M S", + direction="l", + linebreak="al", + unicodeslot=0x1BC27, + }, + [0x1BC28]={ + category="lo", + description="DUPLOYAN LETTER N S", + direction="l", + linebreak="al", + unicodeslot=0x1BC28, + }, + [0x1BC29]={ + category="lo", + description="DUPLOYAN LETTER J S", + direction="l", + linebreak="al", + unicodeslot=0x1BC29, + }, + [0x1BC2A]={ + category="lo", + description="DUPLOYAN LETTER S S", + direction="l", + linebreak="al", + unicodeslot=0x1BC2A, + }, + [0x1BC2B]={ + category="lo", + description="DUPLOYAN LETTER M N S", + direction="l", + linebreak="al", + unicodeslot=0x1BC2B, + }, + [0x1BC2C]={ + category="lo", + description="DUPLOYAN LETTER N M S", + direction="l", + linebreak="al", + unicodeslot=0x1BC2C, + }, + [0x1BC2D]={ + category="lo", + description="DUPLOYAN LETTER J M S", + direction="l", + linebreak="al", + unicodeslot=0x1BC2D, + }, + [0x1BC2E]={ + category="lo", + description="DUPLOYAN LETTER S J S", + direction="l", + linebreak="al", + unicodeslot=0x1BC2E, + }, + [0x1BC2F]={ + category="lo", + description="DUPLOYAN LETTER J S WITH DOT", + direction="l", + linebreak="al", + unicodeslot=0x1BC2F, + }, + [0x1BC30]={ + category="lo", + description="DUPLOYAN LETTER J N", + direction="l", + linebreak="al", + unicodeslot=0x1BC30, + }, + [0x1BC31]={ + category="lo", + description="DUPLOYAN LETTER J N S", + direction="l", + linebreak="al", + unicodeslot=0x1BC31, + }, + [0x1BC32]={ + category="lo", + description="DUPLOYAN LETTER S T", + direction="l", + linebreak="al", + unicodeslot=0x1BC32, + }, + [0x1BC33]={ + category="lo", + description="DUPLOYAN LETTER S T R", + direction="l", + linebreak="al", + unicodeslot=0x1BC33, + }, + [0x1BC34]={ + category="lo", + description="DUPLOYAN LETTER S P", + direction="l", + linebreak="al", + unicodeslot=0x1BC34, + }, + [0x1BC35]={ + category="lo", + description="DUPLOYAN LETTER S P R", + direction="l", + linebreak="al", + unicodeslot=0x1BC35, + }, + [0x1BC36]={ + category="lo", + description="DUPLOYAN LETTER T S", + direction="l", + linebreak="al", + unicodeslot=0x1BC36, + }, + [0x1BC37]={ + category="lo", + description="DUPLOYAN LETTER T R S", + direction="l", + linebreak="al", + unicodeslot=0x1BC37, + }, + [0x1BC38]={ + category="lo", + description="DUPLOYAN LETTER W", + direction="l", + linebreak="al", + unicodeslot=0x1BC38, + }, + [0x1BC39]={ + category="lo", + description="DUPLOYAN LETTER WH", + direction="l", + linebreak="al", + unicodeslot=0x1BC39, + }, + [0x1BC3A]={ + category="lo", + description="DUPLOYAN LETTER W R", + direction="l", + linebreak="al", + unicodeslot=0x1BC3A, + }, + [0x1BC3B]={ + category="lo", + description="DUPLOYAN LETTER S N", + direction="l", + linebreak="al", + unicodeslot=0x1BC3B, + }, + [0x1BC3C]={ + category="lo", + description="DUPLOYAN LETTER S M", + direction="l", + linebreak="al", + unicodeslot=0x1BC3C, + }, + [0x1BC3D]={ + category="lo", + description="DUPLOYAN LETTER K R S", + direction="l", + linebreak="al", + unicodeslot=0x1BC3D, + }, + [0x1BC3E]={ + category="lo", + description="DUPLOYAN LETTER G R S", + direction="l", + linebreak="al", + unicodeslot=0x1BC3E, + }, + [0x1BC3F]={ + category="lo", + description="DUPLOYAN LETTER S K", + direction="l", + linebreak="al", + unicodeslot=0x1BC3F, + }, + [0x1BC40]={ + category="lo", + description="DUPLOYAN LETTER S K R", + direction="l", + linebreak="al", + unicodeslot=0x1BC40, + }, + [0x1BC41]={ + category="lo", + description="DUPLOYAN LETTER A", + direction="l", + linebreak="al", + unicodeslot=0x1BC41, + }, + [0x1BC42]={ + category="lo", + description="DUPLOYAN LETTER SLOAN OW", + direction="l", + linebreak="al", + unicodeslot=0x1BC42, + }, + [0x1BC43]={ + category="lo", + description="DUPLOYAN LETTER OA", + direction="l", + linebreak="al", + unicodeslot=0x1BC43, + }, + [0x1BC44]={ + category="lo", + description="DUPLOYAN LETTER O", + direction="l", + linebreak="al", + unicodeslot=0x1BC44, + }, + [0x1BC45]={ + category="lo", + description="DUPLOYAN LETTER AOU", + direction="l", + linebreak="al", + unicodeslot=0x1BC45, + }, + [0x1BC46]={ + category="lo", + description="DUPLOYAN LETTER I", + direction="l", + linebreak="al", + unicodeslot=0x1BC46, + }, + [0x1BC47]={ + category="lo", + description="DUPLOYAN LETTER E", + direction="l", + linebreak="al", + unicodeslot=0x1BC47, + }, + [0x1BC48]={ + category="lo", + description="DUPLOYAN LETTER IE", + direction="l", + linebreak="al", + unicodeslot=0x1BC48, + }, + [0x1BC49]={ + category="lo", + description="DUPLOYAN LETTER SHORT I", + direction="l", + linebreak="al", + unicodeslot=0x1BC49, + }, + [0x1BC4A]={ + category="lo", + description="DUPLOYAN LETTER UI", + direction="l", + linebreak="al", + unicodeslot=0x1BC4A, + }, + [0x1BC4B]={ + category="lo", + description="DUPLOYAN LETTER EE", + direction="l", + linebreak="al", + unicodeslot=0x1BC4B, + }, + [0x1BC4C]={ + category="lo", + description="DUPLOYAN LETTER SLOAN EH", + direction="l", + linebreak="al", + unicodeslot=0x1BC4C, + }, + [0x1BC4D]={ + category="lo", + description="DUPLOYAN LETTER ROMANIAN I", + direction="l", + linebreak="al", + unicodeslot=0x1BC4D, + }, + [0x1BC4E]={ + category="lo", + description="DUPLOYAN LETTER SLOAN EE", + direction="l", + linebreak="al", + unicodeslot=0x1BC4E, + }, + [0x1BC4F]={ + category="lo", + description="DUPLOYAN LETTER LONG I", + direction="l", + linebreak="al", + unicodeslot=0x1BC4F, + }, + [0x1BC50]={ + category="lo", + description="DUPLOYAN LETTER YE", + direction="l", + linebreak="al", + unicodeslot=0x1BC50, + }, + [0x1BC51]={ + category="lo", + description="DUPLOYAN LETTER U", + direction="l", + linebreak="al", + unicodeslot=0x1BC51, + }, + [0x1BC52]={ + category="lo", + description="DUPLOYAN LETTER EU", + direction="l", + linebreak="al", + unicodeslot=0x1BC52, + }, + [0x1BC53]={ + category="lo", + description="DUPLOYAN LETTER XW", + direction="l", + linebreak="al", + unicodeslot=0x1BC53, + }, + [0x1BC54]={ + category="lo", + description="DUPLOYAN LETTER U N", + direction="l", + linebreak="al", + unicodeslot=0x1BC54, + }, + [0x1BC55]={ + category="lo", + description="DUPLOYAN LETTER LONG U", + direction="l", + linebreak="al", + unicodeslot=0x1BC55, + }, + [0x1BC56]={ + category="lo", + description="DUPLOYAN LETTER ROMANIAN U", + direction="l", + linebreak="al", + unicodeslot=0x1BC56, + }, + [0x1BC57]={ + category="lo", + description="DUPLOYAN LETTER UH", + direction="l", + linebreak="al", + unicodeslot=0x1BC57, + }, + [0x1BC58]={ + category="lo", + description="DUPLOYAN LETTER SLOAN U", + direction="l", + linebreak="al", + unicodeslot=0x1BC58, + }, + [0x1BC59]={ + category="lo", + description="DUPLOYAN LETTER OOH", + direction="l", + linebreak="al", + unicodeslot=0x1BC59, + }, + [0x1BC5A]={ + category="lo", + description="DUPLOYAN LETTER OW", + direction="l", + linebreak="al", + unicodeslot=0x1BC5A, + }, + [0x1BC5B]={ + category="lo", + description="DUPLOYAN LETTER OU", + direction="l", + linebreak="al", + unicodeslot=0x1BC5B, + }, + [0x1BC5C]={ + category="lo", + description="DUPLOYAN LETTER WA", + direction="l", + linebreak="al", + unicodeslot=0x1BC5C, + }, + [0x1BC5D]={ + category="lo", + description="DUPLOYAN LETTER WO", + direction="l", + linebreak="al", + unicodeslot=0x1BC5D, + }, + [0x1BC5E]={ + category="lo", + description="DUPLOYAN LETTER WI", + direction="l", + linebreak="al", + unicodeslot=0x1BC5E, + }, + [0x1BC5F]={ + category="lo", + description="DUPLOYAN LETTER WEI", + direction="l", + linebreak="al", + unicodeslot=0x1BC5F, + }, + [0x1BC60]={ + category="lo", + description="DUPLOYAN LETTER WOW", + direction="l", + linebreak="al", + unicodeslot=0x1BC60, + }, + [0x1BC61]={ + category="lo", + description="DUPLOYAN LETTER NASAL U", + direction="l", + linebreak="al", + unicodeslot=0x1BC61, + }, + [0x1BC62]={ + category="lo", + description="DUPLOYAN LETTER NASAL O", + direction="l", + linebreak="al", + unicodeslot=0x1BC62, + }, + [0x1BC63]={ + category="lo", + description="DUPLOYAN LETTER NASAL I", + direction="l", + linebreak="al", + unicodeslot=0x1BC63, + }, + [0x1BC64]={ + category="lo", + description="DUPLOYAN LETTER NASAL A", + direction="l", + linebreak="al", + unicodeslot=0x1BC64, + }, + [0x1BC65]={ + category="lo", + description="DUPLOYAN LETTER PERNIN AN", + direction="l", + linebreak="al", + unicodeslot=0x1BC65, + }, + [0x1BC66]={ + category="lo", + description="DUPLOYAN LETTER PERNIN AM", + direction="l", + linebreak="al", + unicodeslot=0x1BC66, + }, + [0x1BC67]={ + category="lo", + description="DUPLOYAN LETTER SLOAN EN", + direction="l", + linebreak="al", + unicodeslot=0x1BC67, + }, + [0x1BC68]={ + category="lo", + description="DUPLOYAN LETTER SLOAN AN", + direction="l", + linebreak="al", + unicodeslot=0x1BC68, + }, + [0x1BC69]={ + category="lo", + description="DUPLOYAN LETTER SLOAN ON", + direction="l", + linebreak="al", + unicodeslot=0x1BC69, + }, + [0x1BC6A]={ + category="lo", + description="DUPLOYAN LETTER VOCALIC M", + direction="l", + linebreak="al", + unicodeslot=0x1BC6A, + }, + [0x1BC70]={ + category="lo", + description="DUPLOYAN AFFIX LEFT HORIZONTAL SECANT", + direction="l", + linebreak="al", + unicodeslot=0x1BC70, + }, + [0x1BC71]={ + category="lo", + description="DUPLOYAN AFFIX MID HORIZONTAL SECANT", + direction="l", + linebreak="al", + unicodeslot=0x1BC71, + }, + [0x1BC72]={ + category="lo", + description="DUPLOYAN AFFIX RIGHT HORIZONTAL SECANT", + direction="l", + linebreak="al", + unicodeslot=0x1BC72, + }, + [0x1BC73]={ + category="lo", + description="DUPLOYAN AFFIX LOW VERTICAL SECANT", + direction="l", + linebreak="al", + unicodeslot=0x1BC73, + }, + [0x1BC74]={ + category="lo", + description="DUPLOYAN AFFIX MID VERTICAL SECANT", + direction="l", + linebreak="al", + unicodeslot=0x1BC74, + }, + [0x1BC75]={ + category="lo", + description="DUPLOYAN AFFIX HIGH VERTICAL SECANT", + direction="l", + linebreak="al", + unicodeslot=0x1BC75, + }, + [0x1BC76]={ + category="lo", + description="DUPLOYAN AFFIX ATTACHED SECANT", + direction="l", + linebreak="al", + unicodeslot=0x1BC76, + }, + [0x1BC77]={ + category="lo", + description="DUPLOYAN AFFIX ATTACHED LEFT-TO-RIGHT SECANT", + direction="l", + linebreak="al", + unicodeslot=0x1BC77, + }, + [0x1BC78]={ + category="lo", + description="DUPLOYAN AFFIX ATTACHED TANGENT", + direction="l", + linebreak="al", + unicodeslot=0x1BC78, + }, + [0x1BC79]={ + category="lo", + description="DUPLOYAN AFFIX ATTACHED TAIL", + direction="l", + linebreak="al", + unicodeslot=0x1BC79, + }, + [0x1BC7A]={ + category="lo", + description="DUPLOYAN AFFIX ATTACHED E HOOK", + direction="l", + linebreak="al", + unicodeslot=0x1BC7A, + }, + [0x1BC7B]={ + category="lo", + description="DUPLOYAN AFFIX ATTACHED I HOOK", + direction="l", + linebreak="al", + unicodeslot=0x1BC7B, + }, + [0x1BC7C]={ + category="lo", + description="DUPLOYAN AFFIX ATTACHED TANGENT HOOK", + direction="l", + linebreak="al", + unicodeslot=0x1BC7C, + }, + [0x1BC80]={ + category="lo", + description="DUPLOYAN AFFIX HIGH ACUTE", + direction="l", + linebreak="al", + unicodeslot=0x1BC80, + }, + [0x1BC81]={ + category="lo", + description="DUPLOYAN AFFIX HIGH TIGHT ACUTE", + direction="l", + linebreak="al", + unicodeslot=0x1BC81, + }, + [0x1BC82]={ + category="lo", + description="DUPLOYAN AFFIX HIGH GRAVE", + direction="l", + linebreak="al", + unicodeslot=0x1BC82, + }, + [0x1BC83]={ + category="lo", + description="DUPLOYAN AFFIX HIGH LONG GRAVE", + direction="l", + linebreak="al", + unicodeslot=0x1BC83, + }, + [0x1BC84]={ + category="lo", + description="DUPLOYAN AFFIX HIGH DOT", + direction="l", + linebreak="al", + unicodeslot=0x1BC84, + }, + [0x1BC85]={ + category="lo", + description="DUPLOYAN AFFIX HIGH CIRCLE", + direction="l", + linebreak="al", + unicodeslot=0x1BC85, + }, + [0x1BC86]={ + category="lo", + description="DUPLOYAN AFFIX HIGH LINE", + direction="l", + linebreak="al", + unicodeslot=0x1BC86, + }, + [0x1BC87]={ + category="lo", + description="DUPLOYAN AFFIX HIGH WAVE", + direction="l", + linebreak="al", + unicodeslot=0x1BC87, + }, + [0x1BC88]={ + category="lo", + description="DUPLOYAN AFFIX HIGH VERTICAL", + direction="l", + linebreak="al", + unicodeslot=0x1BC88, + }, + [0x1BC90]={ + category="lo", + description="DUPLOYAN AFFIX LOW ACUTE", + direction="l", + linebreak="al", + unicodeslot=0x1BC90, + }, + [0x1BC91]={ + category="lo", + description="DUPLOYAN AFFIX LOW TIGHT ACUTE", + direction="l", + linebreak="al", + unicodeslot=0x1BC91, + }, + [0x1BC92]={ + category="lo", + description="DUPLOYAN AFFIX LOW GRAVE", + direction="l", + linebreak="al", + unicodeslot=0x1BC92, + }, + [0x1BC93]={ + category="lo", + description="DUPLOYAN AFFIX LOW LONG GRAVE", + direction="l", + linebreak="al", + unicodeslot=0x1BC93, + }, + [0x1BC94]={ + category="lo", + description="DUPLOYAN AFFIX LOW DOT", + direction="l", + linebreak="al", + unicodeslot=0x1BC94, + }, + [0x1BC95]={ + category="lo", + description="DUPLOYAN AFFIX LOW CIRCLE", + direction="l", + linebreak="al", + unicodeslot=0x1BC95, + }, + [0x1BC96]={ + category="lo", + description="DUPLOYAN AFFIX LOW LINE", + direction="l", + linebreak="al", + unicodeslot=0x1BC96, + }, + [0x1BC97]={ + category="lo", + description="DUPLOYAN AFFIX LOW WAVE", + direction="l", + linebreak="al", + unicodeslot=0x1BC97, + }, + [0x1BC98]={ + category="lo", + description="DUPLOYAN AFFIX LOW VERTICAL", + direction="l", + linebreak="al", + unicodeslot=0x1BC98, + }, + [0x1BC99]={ + category="lo", + description="DUPLOYAN AFFIX LOW ARROW", + direction="l", + linebreak="al", + unicodeslot=0x1BC99, + }, + [0x1BC9C]={ + category="so", + description="DUPLOYAN SIGN O WITH CROSS", + direction="l", + linebreak="al", + unicodeslot=0x1BC9C, + }, + [0x1BC9D]={ + category="mn", + description="DUPLOYAN THICK LETTER SELECTOR", + direction="nsm", + linebreak="cm", + unicodeslot=0x1BC9D, + }, + [0x1BC9E]={ + category="mn", + combining=0x1, + description="DUPLOYAN DOUBLE MARK", + direction="nsm", + linebreak="cm", + unicodeslot=0x1BC9E, + }, + [0x1BC9F]={ + category="po", + description="DUPLOYAN PUNCTUATION CHINOOK FULL STOP", + direction="l", + linebreak="ba", + unicodeslot=0x1BC9F, + }, + [0x1BCA0]={ + category="cf", + description="SHORTHAND FORMAT LETTER OVERLAP", + direction="bn", + linebreak="cm", + unicodeslot=0x1BCA0, + }, + [0x1BCA1]={ + category="cf", + description="SHORTHAND FORMAT CONTINUING OVERLAP", + direction="bn", + linebreak="cm", + unicodeslot=0x1BCA1, + }, + [0x1BCA2]={ + category="cf", + description="SHORTHAND FORMAT DOWN STEP", + direction="bn", + linebreak="cm", + unicodeslot=0x1BCA2, + }, + [0x1BCA3]={ + category="cf", + description="SHORTHAND FORMAT UP STEP", + direction="bn", + linebreak="cm", + unicodeslot=0x1BCA3, + }, + [0x1D000]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PSILI", + direction="l", + linebreak="al", + unicodeslot=0x1D000, + }, + [0x1D001]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DASEIA", + direction="l", + linebreak="al", + unicodeslot=0x1D001, + }, + [0x1D002]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PERISPOMENI", + direction="l", + linebreak="al", + unicodeslot=0x1D002, + }, + [0x1D003]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OXEIA EKFONITIKON", + direction="l", + linebreak="al", + unicodeslot=0x1D003, + }, + [0x1D004]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OXEIA DIPLI", + direction="l", + linebreak="al", + unicodeslot=0x1D004, + }, + [0x1D005]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL VAREIA EKFONITIKON", + direction="l", + linebreak="al", + unicodeslot=0x1D005, + }, + [0x1D006]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL VAREIA DIPLI", + direction="l", + linebreak="al", + unicodeslot=0x1D006, + }, + [0x1D007]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KATHISTI", + direction="l", + linebreak="al", + unicodeslot=0x1D007, + }, + [0x1D008]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SYRMATIKI", + direction="l", + linebreak="al", + unicodeslot=0x1D008, + }, + [0x1D009]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PARAKLITIKI", + direction="l", + linebreak="al", + unicodeslot=0x1D009, + }, + [0x1D00A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YPOKRISIS", + direction="l", + linebreak="al", + unicodeslot=0x1D00A, + }, + [0x1D00B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YPOKRISIS DIPLI", + direction="l", + linebreak="al", + unicodeslot=0x1D00B, + }, + [0x1D00C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KREMASTI", + direction="l", + linebreak="al", + unicodeslot=0x1D00C, + }, + [0x1D00D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APESO EKFONITIKON", + direction="l", + linebreak="al", + unicodeslot=0x1D00D, + }, + [0x1D00E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL EXO EKFONITIKON", + direction="l", + linebreak="al", + unicodeslot=0x1D00E, + }, + [0x1D00F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TELEIA", + direction="l", + linebreak="al", + unicodeslot=0x1D00F, + }, + [0x1D010]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMATA", + direction="l", + linebreak="al", + unicodeslot=0x1D010, + }, + [0x1D011]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APOSTROFOS", + direction="l", + linebreak="al", + unicodeslot=0x1D011, + }, + [0x1D012]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APOSTROFOS DIPLI", + direction="l", + linebreak="al", + unicodeslot=0x1D012, + }, + [0x1D013]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SYNEVMA", + direction="l", + linebreak="al", + unicodeslot=0x1D013, + }, + [0x1D014]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL THITA", + direction="l", + linebreak="al", + unicodeslot=0x1D014, + }, + [0x1D015]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OLIGON ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D015, + }, + [0x1D016]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GORGON ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D016, + }, + [0x1D017]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PSILON", + direction="l", + linebreak="al", + unicodeslot=0x1D017, + }, + [0x1D018]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL CHAMILON", + direction="l", + linebreak="al", + unicodeslot=0x1D018, + }, + [0x1D019]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL VATHY", + direction="l", + linebreak="al", + unicodeslot=0x1D019, + }, + [0x1D01A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ISON ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D01A, + }, + [0x1D01B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D01B, + }, + [0x1D01C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMATA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D01C, + }, + [0x1D01D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SAXIMATA", + direction="l", + linebreak="al", + unicodeslot=0x1D01D, + }, + [0x1D01E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PARICHON", + direction="l", + linebreak="al", + unicodeslot=0x1D01E, + }, + [0x1D01F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL STAVROS APODEXIA", + direction="l", + linebreak="al", + unicodeslot=0x1D01F, + }, + [0x1D020]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OXEIAI ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D020, + }, + [0x1D021]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL VAREIAI ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D021, + }, + [0x1D022]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APODERMA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D022, + }, + [0x1D023]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APOTHEMA", + direction="l", + linebreak="al", + unicodeslot=0x1D023, + }, + [0x1D024]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KLASMA", + direction="l", + linebreak="al", + unicodeslot=0x1D024, + }, + [0x1D025]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL REVMA", + direction="l", + linebreak="al", + unicodeslot=0x1D025, + }, + [0x1D026]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PIASMA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D026, + }, + [0x1D027]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TINAGMA", + direction="l", + linebreak="al", + unicodeslot=0x1D027, + }, + [0x1D028]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ANATRICHISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D028, + }, + [0x1D029]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SEISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D029, + }, + [0x1D02A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SYNAGMA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D02A, + }, + [0x1D02B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SYNAGMA META STAVROU", + direction="l", + linebreak="al", + unicodeslot=0x1D02B, + }, + [0x1D02C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OYRANISMA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D02C, + }, + [0x1D02D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL THEMA", + direction="l", + linebreak="al", + unicodeslot=0x1D02D, + }, + [0x1D02E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL LEMOI", + direction="l", + linebreak="al", + unicodeslot=0x1D02E, + }, + [0x1D02F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DYO", + direction="l", + linebreak="al", + unicodeslot=0x1D02F, + }, + [0x1D030]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TRIA", + direction="l", + linebreak="al", + unicodeslot=0x1D030, + }, + [0x1D031]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TESSERA", + direction="l", + linebreak="al", + unicodeslot=0x1D031, + }, + [0x1D032]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KRATIMATA", + direction="l", + linebreak="al", + unicodeslot=0x1D032, + }, + [0x1D033]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APESO EXO NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D033, + }, + [0x1D034]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D034, + }, + [0x1D035]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL IMIFTHORA", + direction="l", + linebreak="al", + unicodeslot=0x1D035, + }, + [0x1D036]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TROMIKON ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D036, + }, + [0x1D037]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KATAVA TROMIKON", + direction="l", + linebreak="al", + unicodeslot=0x1D037, + }, + [0x1D038]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PELASTON", + direction="l", + linebreak="al", + unicodeslot=0x1D038, + }, + [0x1D039]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PSIFISTON", + direction="l", + linebreak="al", + unicodeslot=0x1D039, + }, + [0x1D03A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KONTEVMA", + direction="l", + linebreak="al", + unicodeslot=0x1D03A, + }, + [0x1D03B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL CHOREVMA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D03B, + }, + [0x1D03C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL RAPISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D03C, + }, + [0x1D03D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PARAKALESMA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D03D, + }, + [0x1D03E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PARAKLITIKI ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D03E, + }, + [0x1D03F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ICHADIN", + direction="l", + linebreak="al", + unicodeslot=0x1D03F, + }, + [0x1D040]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL NANA", + direction="l", + linebreak="al", + unicodeslot=0x1D040, + }, + [0x1D041]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PETASMA", + direction="l", + linebreak="al", + unicodeslot=0x1D041, + }, + [0x1D042]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KONTEVMA ALLO", + direction="l", + linebreak="al", + unicodeslot=0x1D042, + }, + [0x1D043]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TROMIKON ALLO", + direction="l", + linebreak="al", + unicodeslot=0x1D043, + }, + [0x1D044]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL STRAGGISMATA", + direction="l", + linebreak="al", + unicodeslot=0x1D044, + }, + [0x1D045]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GRONTHISMATA", + direction="l", + linebreak="al", + unicodeslot=0x1D045, + }, + [0x1D046]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ISON NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D046, + }, + [0x1D047]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OLIGON NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D047, + }, + [0x1D048]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OXEIA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D048, + }, + [0x1D049]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PETASTI", + direction="l", + linebreak="al", + unicodeslot=0x1D049, + }, + [0x1D04A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KOUFISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D04A, + }, + [0x1D04B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PETASTOKOUFISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D04B, + }, + [0x1D04C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KRATIMOKOUFISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D04C, + }, + [0x1D04D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PELASTON NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D04D, + }, + [0x1D04E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMATA NEO ANO", + direction="l", + linebreak="al", + unicodeslot=0x1D04E, + }, + [0x1D04F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMA NEO ANO", + direction="l", + linebreak="al", + unicodeslot=0x1D04F, + }, + [0x1D050]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YPSILI", + direction="l", + linebreak="al", + unicodeslot=0x1D050, + }, + [0x1D051]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APOSTROFOS NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D051, + }, + [0x1D052]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APOSTROFOI SYNDESMOS NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D052, + }, + [0x1D053]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YPORROI", + direction="l", + linebreak="al", + unicodeslot=0x1D053, + }, + [0x1D054]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KRATIMOYPORROON", + direction="l", + linebreak="al", + unicodeslot=0x1D054, + }, + [0x1D055]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ELAFRON", + direction="l", + linebreak="al", + unicodeslot=0x1D055, + }, + [0x1D056]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL CHAMILI", + direction="l", + linebreak="al", + unicodeslot=0x1D056, + }, + [0x1D057]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MIKRON ISON", + direction="l", + linebreak="al", + unicodeslot=0x1D057, + }, + [0x1D058]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL VAREIA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D058, + }, + [0x1D059]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PIASMA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D059, + }, + [0x1D05A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PSIFISTON NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D05A, + }, + [0x1D05B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OMALON", + direction="l", + linebreak="al", + unicodeslot=0x1D05B, + }, + [0x1D05C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ANTIKENOMA", + direction="l", + linebreak="al", + unicodeslot=0x1D05C, + }, + [0x1D05D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL LYGISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D05D, + }, + [0x1D05E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PARAKLITIKI NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D05E, + }, + [0x1D05F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PARAKALESMA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D05F, + }, + [0x1D060]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ETERON PARAKALESMA", + direction="l", + linebreak="al", + unicodeslot=0x1D060, + }, + [0x1D061]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KYLISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D061, + }, + [0x1D062]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ANTIKENOKYLISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D062, + }, + [0x1D063]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TROMIKON NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D063, + }, + [0x1D064]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL EKSTREPTON", + direction="l", + linebreak="al", + unicodeslot=0x1D064, + }, + [0x1D065]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SYNAGMA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D065, + }, + [0x1D066]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SYRMA", + direction="l", + linebreak="al", + unicodeslot=0x1D066, + }, + [0x1D067]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL CHOREVMA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D067, + }, + [0x1D068]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL EPEGERMA", + direction="l", + linebreak="al", + unicodeslot=0x1D068, + }, + [0x1D069]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SEISMA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D069, + }, + [0x1D06A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL XIRON KLASMA", + direction="l", + linebreak="al", + unicodeslot=0x1D06A, + }, + [0x1D06B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TROMIKOPSIFISTON", + direction="l", + linebreak="al", + unicodeslot=0x1D06B, + }, + [0x1D06C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PSIFISTOLYGISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D06C, + }, + [0x1D06D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TROMIKOLYGISMA", + direction="l", + linebreak="al", + unicodeslot=0x1D06D, + }, + [0x1D06E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TROMIKOPARAKALESMA", + direction="l", + linebreak="al", + unicodeslot=0x1D06E, + }, + [0x1D06F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PSIFISTOPARAKALESMA", + direction="l", + linebreak="al", + unicodeslot=0x1D06F, + }, + [0x1D070]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TROMIKOSYNAGMA", + direction="l", + linebreak="al", + unicodeslot=0x1D070, + }, + [0x1D071]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL PSIFISTOSYNAGMA", + direction="l", + linebreak="al", + unicodeslot=0x1D071, + }, + [0x1D072]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GORGOSYNTHETON", + direction="l", + linebreak="al", + unicodeslot=0x1D072, + }, + [0x1D073]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARGOSYNTHETON", + direction="l", + linebreak="al", + unicodeslot=0x1D073, + }, + [0x1D074]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ETERON ARGOSYNTHETON", + direction="l", + linebreak="al", + unicodeslot=0x1D074, + }, + [0x1D075]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL OYRANISMA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D075, + }, + [0x1D076]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL THEMATISMOS ESO", + direction="l", + linebreak="al", + unicodeslot=0x1D076, + }, + [0x1D077]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL THEMATISMOS EXO", + direction="l", + linebreak="al", + unicodeslot=0x1D077, + }, + [0x1D078]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL THEMA APLOUN", + direction="l", + linebreak="al", + unicodeslot=0x1D078, + }, + [0x1D079]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL THES KAI APOTHES", + direction="l", + linebreak="al", + unicodeslot=0x1D079, + }, + [0x1D07A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KATAVASMA", + direction="l", + linebreak="al", + unicodeslot=0x1D07A, + }, + [0x1D07B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ENDOFONON", + direction="l", + linebreak="al", + unicodeslot=0x1D07B, + }, + [0x1D07C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YFEN KATO", + direction="l", + linebreak="al", + unicodeslot=0x1D07C, + }, + [0x1D07D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YFEN ANO", + direction="l", + linebreak="al", + unicodeslot=0x1D07D, + }, + [0x1D07E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL STAVROS", + direction="l", + linebreak="al", + unicodeslot=0x1D07E, + }, + [0x1D07F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KLASMA ANO", + direction="l", + linebreak="al", + unicodeslot=0x1D07F, + }, + [0x1D080]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIPLI ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D080, + }, + [0x1D081]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KRATIMA ARCHAION", + direction="l", + linebreak="al", + unicodeslot=0x1D081, + }, + [0x1D082]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KRATIMA ALLO", + direction="l", + linebreak="al", + unicodeslot=0x1D082, + }, + [0x1D083]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KRATIMA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D083, + }, + [0x1D084]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APODERMA NEO", + direction="l", + linebreak="al", + unicodeslot=0x1D084, + }, + [0x1D085]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APLI", + direction="l", + linebreak="al", + unicodeslot=0x1D085, + }, + [0x1D086]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIPLI", + direction="l", + linebreak="al", + unicodeslot=0x1D086, + }, + [0x1D087]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TRIPLI", + direction="l", + linebreak="al", + unicodeslot=0x1D087, + }, + [0x1D088]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TETRAPLI", + direction="l", + linebreak="al", + unicodeslot=0x1D088, + }, + [0x1D089]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KORONIS", + direction="l", + linebreak="al", + unicodeslot=0x1D089, + }, + [0x1D08A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL LEIMMA ENOS CHRONOU", + direction="l", + linebreak="al", + unicodeslot=0x1D08A, + }, + [0x1D08B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL LEIMMA DYO CHRONON", + direction="l", + linebreak="al", + unicodeslot=0x1D08B, + }, + [0x1D08C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL LEIMMA TRION CHRONON", + direction="l", + linebreak="al", + unicodeslot=0x1D08C, + }, + [0x1D08D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL LEIMMA TESSARON CHRONON", + direction="l", + linebreak="al", + unicodeslot=0x1D08D, + }, + [0x1D08E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL LEIMMA IMISEOS CHRONOU", + direction="l", + linebreak="al", + unicodeslot=0x1D08E, + }, + [0x1D08F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GORGON NEO ANO", + direction="l", + linebreak="al", + unicodeslot=0x1D08F, + }, + [0x1D090]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GORGON PARESTIGMENON ARISTERA", + direction="l", + linebreak="al", + unicodeslot=0x1D090, + }, + [0x1D091]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GORGON PARESTIGMENON DEXIA", + direction="l", + linebreak="al", + unicodeslot=0x1D091, + }, + [0x1D092]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIGORGON", + direction="l", + linebreak="al", + unicodeslot=0x1D092, + }, + [0x1D093]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON ARISTERA KATO", + direction="l", + linebreak="al", + unicodeslot=0x1D093, + }, + [0x1D094]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON ARISTERA ANO", + direction="l", + linebreak="al", + unicodeslot=0x1D094, + }, + [0x1D095]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIGORGON PARESTIGMENON DEXIA", + direction="l", + linebreak="al", + unicodeslot=0x1D095, + }, + [0x1D096]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL TRIGORGON", + direction="l", + linebreak="al", + unicodeslot=0x1D096, + }, + [0x1D097]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARGON", + direction="l", + linebreak="al", + unicodeslot=0x1D097, + }, + [0x1D098]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL IMIDIARGON", + direction="l", + linebreak="al", + unicodeslot=0x1D098, + }, + [0x1D099]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIARGON", + direction="l", + linebreak="al", + unicodeslot=0x1D099, + }, + [0x1D09A]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL AGOGI POLI ARGI", + direction="l", + linebreak="al", + unicodeslot=0x1D09A, + }, + [0x1D09B]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL AGOGI ARGOTERI", + direction="l", + linebreak="al", + unicodeslot=0x1D09B, + }, + [0x1D09C]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL AGOGI ARGI", + direction="l", + linebreak="al", + unicodeslot=0x1D09C, + }, + [0x1D09D]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL AGOGI METRIA", + direction="l", + linebreak="al", + unicodeslot=0x1D09D, + }, + [0x1D09E]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL AGOGI MESI", + direction="l", + linebreak="al", + unicodeslot=0x1D09E, + }, + [0x1D09F]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL AGOGI GORGI", + direction="l", + linebreak="al", + unicodeslot=0x1D09F, + }, + [0x1D0A0]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL AGOGI GORGOTERI", + direction="l", + linebreak="al", + unicodeslot=0x1D0A0, + }, + [0x1D0A1]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL AGOGI POLI GORGI", + direction="l", + linebreak="al", + unicodeslot=0x1D0A1, + }, + [0x1D0A2]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA PROTOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0A2, + }, + [0x1D0A3]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA ALLI PROTOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0A3, + }, + [0x1D0A4]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA DEYTEROS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0A4, + }, + [0x1D0A5]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA ALLI DEYTEROS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0A5, + }, + [0x1D0A6]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA TRITOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0A6, + }, + [0x1D0A7]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA TRIFONIAS", + direction="l", + linebreak="al", + unicodeslot=0x1D0A7, + }, + [0x1D0A8]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA TETARTOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0A8, + }, + [0x1D0A9]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA TETARTOS LEGETOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0A9, + }, + [0x1D0AA]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA LEGETOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0AA, + }, + [0x1D0AB]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA PLAGIOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0AB, + }, + [0x1D0AC]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ISAKIA TELOUS ICHIMATOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0AC, + }, + [0x1D0AD]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL APOSTROFOI TELOUS ICHIMATOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0AD, + }, + [0x1D0AE]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FANEROSIS TETRAFONIAS", + direction="l", + linebreak="al", + unicodeslot=0x1D0AE, + }, + [0x1D0AF]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FANEROSIS MONOFONIAS", + direction="l", + linebreak="al", + unicodeslot=0x1D0AF, + }, + [0x1D0B0]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FANEROSIS DIFONIAS", + direction="l", + linebreak="al", + unicodeslot=0x1D0B0, + }, + [0x1D0B1]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA VARYS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0B1, + }, + [0x1D0B2]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA PROTOVARYS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0B2, + }, + [0x1D0B3]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL MARTYRIA PLAGIOS TETARTOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0B3, + }, + [0x1D0B4]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GORTHMIKON N APLOUN", + direction="l", + linebreak="al", + unicodeslot=0x1D0B4, + }, + [0x1D0B5]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GORTHMIKON N DIPLOUN", + direction="l", + linebreak="al", + unicodeslot=0x1D0B5, + }, + [0x1D0B6]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ENARXIS KAI FTHORA VOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0B6, + }, + [0x1D0B7]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL IMIFONON", + direction="l", + linebreak="al", + unicodeslot=0x1D0B7, + }, + [0x1D0B8]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL IMIFTHORON", + direction="l", + linebreak="al", + unicodeslot=0x1D0B8, + }, + [0x1D0B9]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA ARCHAION DEYTEROU ICHOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0B9, + }, + [0x1D0BA]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI PA", + direction="l", + linebreak="al", + unicodeslot=0x1D0BA, + }, + [0x1D0BB]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NANA", + direction="l", + linebreak="al", + unicodeslot=0x1D0BB, + }, + [0x1D0BC]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA NAOS ICHOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0BC, + }, + [0x1D0BD]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI DI", + direction="l", + linebreak="al", + unicodeslot=0x1D0BD, + }, + [0x1D0BE]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON DIATONON DI", + direction="l", + linebreak="al", + unicodeslot=0x1D0BE, + }, + [0x1D0BF]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI KE", + direction="l", + linebreak="al", + unicodeslot=0x1D0BF, + }, + [0x1D0C0]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI ZO", + direction="l", + linebreak="al", + unicodeslot=0x1D0C0, + }, + [0x1D0C1]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NI KATO", + direction="l", + linebreak="al", + unicodeslot=0x1D0C1, + }, + [0x1D0C2]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA DIATONIKI NI ANO", + direction="l", + linebreak="al", + unicodeslot=0x1D0C2, + }, + [0x1D0C3]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA MALAKON CHROMA DIFONIAS", + direction="l", + linebreak="al", + unicodeslot=0x1D0C3, + }, + [0x1D0C4]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA MALAKON CHROMA MONOFONIAS", + direction="l", + linebreak="al", + unicodeslot=0x1D0C4, + }, + [0x1D0C5]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FHTORA SKLIRON CHROMA VASIS", + direction="l", + linebreak="al", + unicodeslot=0x1D0C5, + }, + [0x1D0C6]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA SKLIRON CHROMA SYNAFI", + direction="l", + linebreak="al", + unicodeslot=0x1D0C6, + }, + [0x1D0C7]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA NENANO", + direction="l", + linebreak="al", + unicodeslot=0x1D0C7, + }, + [0x1D0C8]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL CHROA ZYGOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0C8, + }, + [0x1D0C9]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL CHROA KLITON", + direction="l", + linebreak="al", + unicodeslot=0x1D0C9, + }, + [0x1D0CA]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL CHROA SPATHI", + direction="l", + linebreak="al", + unicodeslot=0x1D0CA, + }, + [0x1D0CB]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA I YFESIS TETARTIMORION", + direction="l", + linebreak="al", + unicodeslot=0x1D0CB, + }, + [0x1D0CC]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL FTHORA ENARMONIOS ANTIFONIA", + direction="l", + linebreak="al", + unicodeslot=0x1D0CC, + }, + [0x1D0CD]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YFESIS TRITIMORION", + direction="l", + linebreak="al", + unicodeslot=0x1D0CD, + }, + [0x1D0CE]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIESIS TRITIMORION", + direction="l", + linebreak="al", + unicodeslot=0x1D0CE, + }, + [0x1D0CF]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIESIS TETARTIMORION", + direction="l", + linebreak="al", + unicodeslot=0x1D0CF, + }, + [0x1D0D0]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIESIS APLI DYO DODEKATA", + direction="l", + linebreak="al", + unicodeslot=0x1D0D0, + }, + [0x1D0D1]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIESIS MONOGRAMMOS TESSERA DODEKATA", + direction="l", + linebreak="al", + unicodeslot=0x1D0D1, + }, + [0x1D0D2]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIESIS DIGRAMMOS EX DODEKATA", + direction="l", + linebreak="al", + unicodeslot=0x1D0D2, + }, + [0x1D0D3]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIESIS TRIGRAMMOS OKTO DODEKATA", + direction="l", + linebreak="al", + unicodeslot=0x1D0D3, + }, + [0x1D0D4]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YFESIS APLI DYO DODEKATA", + direction="l", + linebreak="al", + unicodeslot=0x1D0D4, + }, + [0x1D0D5]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YFESIS MONOGRAMMOS TESSERA DODEKATA", + direction="l", + linebreak="al", + unicodeslot=0x1D0D5, + }, + [0x1D0D6]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YFESIS DIGRAMMOS EX DODEKATA", + direction="l", + linebreak="al", + unicodeslot=0x1D0D6, + }, + [0x1D0D7]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL YFESIS TRIGRAMMOS OKTO DODEKATA", + direction="l", + linebreak="al", + unicodeslot=0x1D0D7, + }, + [0x1D0D8]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GENIKI DIESIS", + direction="l", + linebreak="al", + unicodeslot=0x1D0D8, + }, + [0x1D0D9]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GENIKI YFESIS", + direction="l", + linebreak="al", + unicodeslot=0x1D0D9, + }, + [0x1D0DA]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIASTOLI APLI MIKRI", + direction="l", + linebreak="al", + unicodeslot=0x1D0DA, + }, + [0x1D0DB]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIASTOLI APLI MEGALI", + direction="l", + linebreak="al", + unicodeslot=0x1D0DB, + }, + [0x1D0DC]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIASTOLI DIPLI", + direction="l", + linebreak="al", + unicodeslot=0x1D0DC, + }, + [0x1D0DD]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIASTOLI THESEOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0DD, + }, + [0x1D0DE]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0DE, + }, + [0x1D0DF]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS DISIMOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0DF, + }, + [0x1D0E0]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS TRISIMOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0E0, + }, + [0x1D0E1]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SIMANSIS THESEOS TETRASIMOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0E1, + }, + [0x1D0E2]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS", + direction="l", + linebreak="al", + unicodeslot=0x1D0E2, + }, + [0x1D0E3]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS DISIMOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0E3, + }, + [0x1D0E4]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS TRISIMOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0E4, + }, + [0x1D0E5]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL SIMANSIS ARSEOS TETRASIMOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0E5, + }, + [0x1D0E6]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIGRAMMA GG", + direction="l", + linebreak="al", + unicodeslot=0x1D0E6, + }, + [0x1D0E7]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL DIFTOGGOS OU", + direction="l", + linebreak="al", + unicodeslot=0x1D0E7, + }, + [0x1D0E8]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL STIGMA", + direction="l", + linebreak="al", + unicodeslot=0x1D0E8, + }, + [0x1D0E9]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARKTIKO PA", + direction="l", + linebreak="al", + unicodeslot=0x1D0E9, + }, + [0x1D0EA]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARKTIKO VOU", + direction="l", + linebreak="al", + unicodeslot=0x1D0EA, + }, + [0x1D0EB]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARKTIKO GA", + direction="l", + linebreak="al", + unicodeslot=0x1D0EB, + }, + [0x1D0EC]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARKTIKO DI", + direction="l", + linebreak="al", + unicodeslot=0x1D0EC, + }, + [0x1D0ED]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARKTIKO KE", + direction="l", + linebreak="al", + unicodeslot=0x1D0ED, + }, + [0x1D0EE]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARKTIKO ZO", + direction="l", + linebreak="al", + unicodeslot=0x1D0EE, + }, + [0x1D0EF]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL ARKTIKO NI", + direction="l", + linebreak="al", + unicodeslot=0x1D0EF, + }, + [0x1D0F0]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMATA NEO MESO", + direction="l", + linebreak="al", + unicodeslot=0x1D0F0, + }, + [0x1D0F1]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMA NEO MESO", + direction="l", + linebreak="al", + unicodeslot=0x1D0F1, + }, + [0x1D0F2]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMATA NEO KATO", + direction="l", + linebreak="al", + unicodeslot=0x1D0F2, + }, + [0x1D0F3]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KENTIMA NEO KATO", + direction="l", + linebreak="al", + unicodeslot=0x1D0F3, + }, + [0x1D0F4]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL KLASMA KATO", + direction="l", + linebreak="al", + unicodeslot=0x1D0F4, + }, + [0x1D0F5]={ + category="so", + description="BYZANTINE MUSICAL SYMBOL GORGON NEO KATO", + direction="l", + linebreak="al", + unicodeslot=0x1D0F5, + }, + [0x1D100]={ + category="so", + description="MUSICAL SYMBOL SINGLE BARLINE", + direction="l", + linebreak="al", + unicodeslot=0x1D100, + }, + [0x1D101]={ + category="so", + description="MUSICAL SYMBOL DOUBLE BARLINE", + direction="l", + linebreak="al", + unicodeslot=0x1D101, + }, + [0x1D102]={ + category="so", + description="MUSICAL SYMBOL FINAL BARLINE", + direction="l", + linebreak="al", + unicodeslot=0x1D102, + }, + [0x1D103]={ + category="so", + description="MUSICAL SYMBOL REVERSE FINAL BARLINE", + direction="l", + linebreak="al", + unicodeslot=0x1D103, + }, + [0x1D104]={ + category="so", + description="MUSICAL SYMBOL DASHED BARLINE", + direction="l", + linebreak="al", + unicodeslot=0x1D104, + }, + [0x1D105]={ + category="so", + description="MUSICAL SYMBOL SHORT BARLINE", + direction="l", + linebreak="al", + unicodeslot=0x1D105, + }, + [0x1D106]={ + category="so", + description="MUSICAL SYMBOL LEFT REPEAT SIGN", + direction="l", + linebreak="al", + unicodeslot=0x1D106, + }, + [0x1D107]={ + category="so", + description="MUSICAL SYMBOL RIGHT REPEAT SIGN", + direction="l", + linebreak="al", + unicodeslot=0x1D107, + }, + [0x1D108]={ + category="so", + description="MUSICAL SYMBOL REPEAT DOTS", + direction="l", + linebreak="al", + unicodeslot=0x1D108, + }, + [0x1D109]={ + category="so", + description="MUSICAL SYMBOL DAL SEGNO", + direction="l", + linebreak="al", + unicodeslot=0x1D109, + }, + [0x1D10A]={ + category="so", + description="MUSICAL SYMBOL DA CAPO", + direction="l", + linebreak="al", + unicodeslot=0x1D10A, + }, + [0x1D10B]={ + category="so", + description="MUSICAL SYMBOL SEGNO", + direction="l", + linebreak="al", + unicodeslot=0x1D10B, + }, + [0x1D10C]={ + category="so", + description="MUSICAL SYMBOL CODA", + direction="l", + linebreak="al", + unicodeslot=0x1D10C, + }, + [0x1D10D]={ + category="so", + description="MUSICAL SYMBOL REPEATED FIGURE-0x0001", + direction="l", + linebreak="al", + unicodeslot=0x1D10D, + }, + [0x1D10E]={ + category="so", + description="MUSICAL SYMBOL REPEATED FIGURE-0x0002", + direction="l", + linebreak="al", + unicodeslot=0x1D10E, + }, + [0x1D10F]={ + category="so", + description="MUSICAL SYMBOL REPEATED FIGURE-0x0003", + direction="l", + linebreak="al", + unicodeslot=0x1D10F, + }, + [0x1D110]={ + category="so", + description="MUSICAL SYMBOL FERMATA", + direction="l", + linebreak="al", + unicodeslot=0x1D110, + }, + [0x1D111]={ + category="so", + description="MUSICAL SYMBOL FERMATA BELOW", + direction="l", + linebreak="al", + unicodeslot=0x1D111, + }, + [0x1D112]={ + category="so", + description="MUSICAL SYMBOL BREATH MARK", + direction="l", + linebreak="al", + unicodeslot=0x1D112, + }, + [0x1D113]={ + category="so", + description="MUSICAL SYMBOL CAESURA", + direction="l", + linebreak="al", + unicodeslot=0x1D113, + }, + [0x1D114]={ + category="so", + description="MUSICAL SYMBOL BRACE", + direction="l", + linebreak="al", + unicodeslot=0x1D114, + }, + [0x1D115]={ + category="so", + description="MUSICAL SYMBOL BRACKET", + direction="l", + linebreak="al", + unicodeslot=0x1D115, + }, + [0x1D116]={ + category="so", + description="MUSICAL SYMBOL ONE-LINE STAFF", + direction="l", + linebreak="al", + unicodeslot=0x1D116, + }, + [0x1D117]={ + category="so", + description="MUSICAL SYMBOL TWO-LINE STAFF", + direction="l", + linebreak="al", + unicodeslot=0x1D117, + }, + [0x1D118]={ + category="so", + description="MUSICAL SYMBOL THREE-LINE STAFF", + direction="l", + linebreak="al", + unicodeslot=0x1D118, + }, + [0x1D119]={ + category="so", + description="MUSICAL SYMBOL FOUR-LINE STAFF", + direction="l", + linebreak="al", + unicodeslot=0x1D119, + }, + [0x1D11A]={ + category="so", + description="MUSICAL SYMBOL FIVE-LINE STAFF", + direction="l", + linebreak="al", + unicodeslot=0x1D11A, + }, + [0x1D11B]={ + category="so", + description="MUSICAL SYMBOL SIX-LINE STAFF", + direction="l", + linebreak="al", + unicodeslot=0x1D11B, + }, + [0x1D11C]={ + category="so", + description="MUSICAL SYMBOL SIX-STRING FRETBOARD", + direction="l", + linebreak="al", + unicodeslot=0x1D11C, + }, + [0x1D11D]={ + category="so", + description="MUSICAL SYMBOL FOUR-STRING FRETBOARD", + direction="l", + linebreak="al", + unicodeslot=0x1D11D, + }, + [0x1D11E]={ + category="so", + description="MUSICAL SYMBOL G CLEF", + direction="l", + linebreak="al", + unicodeslot=0x1D11E, + }, + [0x1D11F]={ + category="so", + description="MUSICAL SYMBOL G CLEF OTTAVA ALTA", + direction="l", + linebreak="al", + unicodeslot=0x1D11F, + }, + [0x1D120]={ + category="so", + description="MUSICAL SYMBOL G CLEF OTTAVA BASSA", + direction="l", + linebreak="al", + unicodeslot=0x1D120, + }, + [0x1D121]={ + category="so", + description="MUSICAL SYMBOL C CLEF", + direction="l", + linebreak="al", + unicodeslot=0x1D121, + }, + [0x1D122]={ + category="so", + description="MUSICAL SYMBOL F CLEF", + direction="l", + linebreak="al", + unicodeslot=0x1D122, + }, + [0x1D123]={ + category="so", + description="MUSICAL SYMBOL F CLEF OTTAVA ALTA", + direction="l", + linebreak="al", + unicodeslot=0x1D123, + }, + [0x1D124]={ + category="so", + description="MUSICAL SYMBOL F CLEF OTTAVA BASSA", + direction="l", + linebreak="al", + unicodeslot=0x1D124, + }, + [0x1D125]={ + category="so", + description="MUSICAL SYMBOL DRUM CLEF-0x0001", + direction="l", + linebreak="al", + unicodeslot=0x1D125, + }, + [0x1D126]={ + category="so", + description="MUSICAL SYMBOL DRUM CLEF-0x0002", + direction="l", + linebreak="al", + unicodeslot=0x1D126, + }, + [0x1D129]={ + category="so", + description="MUSICAL SYMBOL MULTIPLE MEASURE REST", + direction="l", + linebreak="al", + unicodeslot=0x1D129, + }, + [0x1D12A]={ + category="so", + description="MUSICAL SYMBOL DOUBLE SHARP", + direction="l", + linebreak="al", + unicodeslot=0x1D12A, + }, + [0x1D12B]={ + category="so", + description="MUSICAL SYMBOL DOUBLE FLAT", + direction="l", + linebreak="al", + unicodeslot=0x1D12B, + }, + [0x1D12C]={ + category="so", + description="MUSICAL SYMBOL FLAT UP", + direction="l", + linebreak="al", + unicodeslot=0x1D12C, + }, + [0x1D12D]={ + category="so", + description="MUSICAL SYMBOL FLAT DOWN", + direction="l", + linebreak="al", + unicodeslot=0x1D12D, + }, + [0x1D12E]={ + category="so", + description="MUSICAL SYMBOL NATURAL UP", + direction="l", + linebreak="al", + unicodeslot=0x1D12E, + }, + [0x1D12F]={ + category="so", + description="MUSICAL SYMBOL NATURAL DOWN", + direction="l", + linebreak="al", + unicodeslot=0x1D12F, + }, + [0x1D130]={ + category="so", + description="MUSICAL SYMBOL SHARP UP", + direction="l", + linebreak="al", + unicodeslot=0x1D130, + }, + [0x1D131]={ + category="so", + description="MUSICAL SYMBOL SHARP DOWN", + direction="l", + linebreak="al", + unicodeslot=0x1D131, + }, + [0x1D132]={ + category="so", + description="MUSICAL SYMBOL QUARTER TONE SHARP", + direction="l", + linebreak="al", + unicodeslot=0x1D132, + }, + [0x1D133]={ + category="so", + description="MUSICAL SYMBOL QUARTER TONE FLAT", + direction="l", + linebreak="al", + unicodeslot=0x1D133, + }, + [0x1D134]={ + category="so", + description="MUSICAL SYMBOL COMMON TIME", + direction="l", + linebreak="al", + unicodeslot=0x1D134, + }, + [0x1D135]={ + category="so", + description="MUSICAL SYMBOL CUT TIME", + direction="l", + linebreak="al", + unicodeslot=0x1D135, + }, + [0x1D136]={ + category="so", + description="MUSICAL SYMBOL OTTAVA ALTA", + direction="l", + linebreak="al", + unicodeslot=0x1D136, + }, + [0x1D137]={ + category="so", + description="MUSICAL SYMBOL OTTAVA BASSA", + direction="l", + linebreak="al", + unicodeslot=0x1D137, + }, + [0x1D138]={ + category="so", + description="MUSICAL SYMBOL QUINDICESIMA ALTA", + direction="l", + linebreak="al", + unicodeslot=0x1D138, + }, + [0x1D139]={ + category="so", + description="MUSICAL SYMBOL QUINDICESIMA BASSA", + direction="l", + linebreak="al", + unicodeslot=0x1D139, + }, + [0x1D13A]={ + category="so", + description="MUSICAL SYMBOL MULTI REST", + direction="l", + linebreak="al", + unicodeslot=0x1D13A, + }, + [0x1D13B]={ + category="so", + description="MUSICAL SYMBOL WHOLE REST", + direction="l", + linebreak="al", + unicodeslot=0x1D13B, + }, + [0x1D13C]={ + category="so", + description="MUSICAL SYMBOL HALF REST", + direction="l", + linebreak="al", + unicodeslot=0x1D13C, + }, + [0x1D13D]={ + category="so", + description="MUSICAL SYMBOL QUARTER REST", + direction="l", + linebreak="al", + unicodeslot=0x1D13D, + }, + [0x1D13E]={ + category="so", + description="MUSICAL SYMBOL EIGHTH REST", + direction="l", + linebreak="al", + unicodeslot=0x1D13E, + }, + [0x1D13F]={ + category="so", + description="MUSICAL SYMBOL SIXTEENTH REST", + direction="l", + linebreak="al", + unicodeslot=0x1D13F, + }, + [0x1D140]={ + category="so", + description="MUSICAL SYMBOL THIRTY-SECOND REST", + direction="l", + linebreak="al", + unicodeslot=0x1D140, + }, + [0x1D141]={ + category="so", + description="MUSICAL SYMBOL SIXTY-FOURTH REST", + direction="l", + linebreak="al", + unicodeslot=0x1D141, + }, + [0x1D142]={ + category="so", + description="MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH REST", + direction="l", + linebreak="al", + unicodeslot=0x1D142, + }, + [0x1D143]={ + category="so", + description="MUSICAL SYMBOL X NOTEHEAD", + direction="l", + linebreak="al", + unicodeslot=0x1D143, + }, + [0x1D144]={ + category="so", + description="MUSICAL SYMBOL PLUS NOTEHEAD", + direction="l", + linebreak="al", + unicodeslot=0x1D144, + }, + [0x1D145]={ + category="so", + description="MUSICAL SYMBOL CIRCLE X NOTEHEAD", + direction="l", + linebreak="al", + unicodeslot=0x1D145, + }, + [0x1D146]={ + category="so", + description="MUSICAL SYMBOL SQUARE NOTEHEAD WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D146, + }, + [0x1D147]={ + category="so", + description="MUSICAL SYMBOL SQUARE NOTEHEAD BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D147, + }, + [0x1D148]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD UP WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D148, + }, + [0x1D149]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD UP BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D149, + }, + [0x1D14A]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD LEFT WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D14A, + }, + [0x1D14B]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD LEFT BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D14B, + }, + [0x1D14C]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD RIGHT WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D14C, + }, + [0x1D14D]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD RIGHT BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D14D, + }, + [0x1D14E]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD DOWN WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D14E, + }, + [0x1D14F]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD DOWN BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D14F, + }, + [0x1D150]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD UP RIGHT WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D150, + }, + [0x1D151]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE NOTEHEAD UP RIGHT BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D151, + }, + [0x1D152]={ + category="so", + description="MUSICAL SYMBOL MOON NOTEHEAD WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D152, + }, + [0x1D153]={ + category="so", + description="MUSICAL SYMBOL MOON NOTEHEAD BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D153, + }, + [0x1D154]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE-ROUND NOTEHEAD DOWN WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D154, + }, + [0x1D155]={ + category="so", + description="MUSICAL SYMBOL TRIANGLE-ROUND NOTEHEAD DOWN BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D155, + }, + [0x1D156]={ + category="so", + description="MUSICAL SYMBOL PARENTHESIS NOTEHEAD", + direction="l", + linebreak="al", + unicodeslot=0x1D156, + }, + [0x1D157]={ + category="so", + description="MUSICAL SYMBOL VOID NOTEHEAD", + direction="l", + linebreak="al", + unicodeslot=0x1D157, + }, + [0x1D158]={ + category="so", + description="MUSICAL SYMBOL NOTEHEAD BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D158, + }, + [0x1D159]={ + category="so", + description="MUSICAL SYMBOL NULL NOTEHEAD", + direction="l", + linebreak="al", + unicodeslot=0x1D159, + }, + [0x1D15A]={ + category="so", + description="MUSICAL SYMBOL CLUSTER NOTEHEAD WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D15A, + }, + [0x1D15B]={ + category="so", + description="MUSICAL SYMBOL CLUSTER NOTEHEAD BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D15B, + }, + [0x1D15C]={ + category="so", + description="MUSICAL SYMBOL BREVE", + direction="l", + linebreak="al", + unicodeslot=0x1D15C, + }, + [0x1D15D]={ + category="so", + description="MUSICAL SYMBOL WHOLE NOTE", + direction="l", + linebreak="al", + unicodeslot=0x1D15D, + }, + [0x1D15E]={ + category="so", + description="MUSICAL SYMBOL HALF NOTE", + direction="l", + linebreak="al", + specials={ "char", 0x1D157, 0x1D165 }, + unicodeslot=0x1D15E, + }, + [0x1D15F]={ + category="so", + description="MUSICAL SYMBOL QUARTER NOTE", + direction="l", + linebreak="al", + specials={ "char", 0x1D158, 0x1D165 }, + unicodeslot=0x1D15F, + }, + [0x1D160]={ + category="so", + description="MUSICAL SYMBOL EIGHTH NOTE", + direction="l", + linebreak="al", + specials={ "char", 0x1D15F, 0x1D16E }, + unicodeslot=0x1D160, + }, + [0x1D161]={ + category="so", + description="MUSICAL SYMBOL SIXTEENTH NOTE", + direction="l", + linebreak="al", + specials={ "char", 0x1D15F, 0x1D16F }, + unicodeslot=0x1D161, + }, + [0x1D162]={ + category="so", + description="MUSICAL SYMBOL THIRTY-SECOND NOTE", + direction="l", + linebreak="al", + specials={ "char", 0x1D15F, 0x1D170 }, + unicodeslot=0x1D162, + }, + [0x1D163]={ + category="so", + description="MUSICAL SYMBOL SIXTY-FOURTH NOTE", + direction="l", + linebreak="al", + specials={ "char", 0x1D15F, 0x1D171 }, + unicodeslot=0x1D163, + }, + [0x1D164]={ + category="so", + description="MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH NOTE", + direction="l", + linebreak="al", + specials={ "char", 0x1D15F, 0x1D172 }, + unicodeslot=0x1D164, + }, + [0x1D165]={ + category="mc", + combining=0xD8, + description="MUSICAL SYMBOL COMBINING STEM", + direction="l", + linebreak="cm", + unicodeslot=0x1D165, + }, + [0x1D166]={ + category="mc", + combining=0xD8, + description="MUSICAL SYMBOL COMBINING SPRECHGESANG STEM", + direction="l", + linebreak="cm", + unicodeslot=0x1D166, + }, + [0x1D167]={ + category="mn", + combining=0x1, + description="MUSICAL SYMBOL COMBINING TREMOLO-0x0001", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D167, + }, + [0x1D168]={ + category="mn", + combining=0x1, + description="MUSICAL SYMBOL COMBINING TREMOLO-0x0002", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D168, + }, + [0x1D169]={ + category="mn", + combining=0x1, + description="MUSICAL SYMBOL COMBINING TREMOLO-0x0003", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D169, + }, + [0x1D16A]={ + category="so", + description="MUSICAL SYMBOL FINGERED TREMOLO-0x0001", + direction="l", + linebreak="al", + unicodeslot=0x1D16A, + }, + [0x1D16B]={ + category="so", + description="MUSICAL SYMBOL FINGERED TREMOLO-0x0002", + direction="l", + linebreak="al", + unicodeslot=0x1D16B, + }, + [0x1D16C]={ + category="so", + description="MUSICAL SYMBOL FINGERED TREMOLO-0x0003", + direction="l", + linebreak="al", + unicodeslot=0x1D16C, + }, + [0x1D16D]={ + category="mc", + combining=0xE2, + description="MUSICAL SYMBOL COMBINING AUGMENTATION DOT", + direction="l", + linebreak="cm", + unicodeslot=0x1D16D, + }, + [0x1D16E]={ + category="mc", + combining=0xD8, + description="MUSICAL SYMBOL COMBINING FLAG-0x0001", + direction="l", + linebreak="cm", + unicodeslot=0x1D16E, + }, + [0x1D16F]={ + category="mc", + combining=0xD8, + description="MUSICAL SYMBOL COMBINING FLAG-0x0002", + direction="l", + linebreak="cm", + unicodeslot=0x1D16F, + }, + [0x1D170]={ + category="mc", + combining=0xD8, + description="MUSICAL SYMBOL COMBINING FLAG-0x0003", + direction="l", + linebreak="cm", + unicodeslot=0x1D170, + }, + [0x1D171]={ + category="mc", + combining=0xD8, + description="MUSICAL SYMBOL COMBINING FLAG-0x0004", + direction="l", + linebreak="cm", + unicodeslot=0x1D171, + }, + [0x1D172]={ + category="mc", + combining=0xD8, + description="MUSICAL SYMBOL COMBINING FLAG-0x0005", + direction="l", + linebreak="cm", + unicodeslot=0x1D172, + }, + [0x1D173]={ + category="cf", + description="MUSICAL SYMBOL BEGIN BEAM", + direction="bn", + linebreak="cm", + unicodeslot=0x1D173, + }, + [0x1D174]={ + category="cf", + description="MUSICAL SYMBOL END BEAM", + direction="bn", + linebreak="cm", + unicodeslot=0x1D174, + }, + [0x1D175]={ + category="cf", + description="MUSICAL SYMBOL BEGIN TIE", + direction="bn", + linebreak="cm", + unicodeslot=0x1D175, + }, + [0x1D176]={ + category="cf", + description="MUSICAL SYMBOL END TIE", + direction="bn", + linebreak="cm", + unicodeslot=0x1D176, + }, + [0x1D177]={ + category="cf", + description="MUSICAL SYMBOL BEGIN SLUR", + direction="bn", + linebreak="cm", + unicodeslot=0x1D177, + }, + [0x1D178]={ + category="cf", + description="MUSICAL SYMBOL END SLUR", + direction="bn", + linebreak="cm", + unicodeslot=0x1D178, + }, + [0x1D179]={ + category="cf", + description="MUSICAL SYMBOL BEGIN PHRASE", + direction="bn", + linebreak="cm", + unicodeslot=0x1D179, + }, + [0x1D17A]={ + category="cf", + description="MUSICAL SYMBOL END PHRASE", + direction="bn", + linebreak="cm", + unicodeslot=0x1D17A, + }, + [0x1D17B]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING ACCENT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D17B, + }, + [0x1D17C]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING STACCATO", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D17C, + }, + [0x1D17D]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING TENUTO", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D17D, + }, + [0x1D17E]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING STACCATISSIMO", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D17E, + }, + [0x1D17F]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING MARCATO", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D17F, + }, + [0x1D180]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING MARCATO-STACCATO", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D180, + }, + [0x1D181]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING ACCENT-STACCATO", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D181, + }, + [0x1D182]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING LOURE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D182, + }, + [0x1D183]={ + category="so", + description="MUSICAL SYMBOL ARPEGGIATO UP", + direction="l", + linebreak="al", + unicodeslot=0x1D183, + }, + [0x1D184]={ + category="so", + description="MUSICAL SYMBOL ARPEGGIATO DOWN", + direction="l", + linebreak="al", + unicodeslot=0x1D184, + }, + [0x1D185]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING DOIT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D185, + }, + [0x1D186]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING RIP", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D186, + }, + [0x1D187]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING FLIP", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D187, + }, + [0x1D188]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING SMEAR", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D188, + }, + [0x1D189]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING BEND", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D189, + }, + [0x1D18A]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING DOUBLE TONGUE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D18A, + }, + [0x1D18B]={ + category="mn", + combining=0xDC, + description="MUSICAL SYMBOL COMBINING TRIPLE TONGUE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D18B, + }, + [0x1D18C]={ + category="so", + description="MUSICAL SYMBOL RINFORZANDO", + direction="l", + linebreak="al", + unicodeslot=0x1D18C, + }, + [0x1D18D]={ + category="so", + description="MUSICAL SYMBOL SUBITO", + direction="l", + linebreak="al", + unicodeslot=0x1D18D, + }, + [0x1D18E]={ + category="so", + description="MUSICAL SYMBOL Z", + direction="l", + linebreak="al", + unicodeslot=0x1D18E, + }, + [0x1D18F]={ + category="so", + description="MUSICAL SYMBOL PIANO", + direction="l", + linebreak="al", + unicodeslot=0x1D18F, + }, + [0x1D190]={ + category="so", + description="MUSICAL SYMBOL MEZZO", + direction="l", + linebreak="al", + unicodeslot=0x1D190, + }, + [0x1D191]={ + category="so", + description="MUSICAL SYMBOL FORTE", + direction="l", + linebreak="al", + unicodeslot=0x1D191, + }, + [0x1D192]={ + category="so", + description="MUSICAL SYMBOL CRESCENDO", + direction="l", + linebreak="al", + unicodeslot=0x1D192, + }, + [0x1D193]={ + category="so", + description="MUSICAL SYMBOL DECRESCENDO", + direction="l", + linebreak="al", + unicodeslot=0x1D193, + }, + [0x1D194]={ + category="so", + description="MUSICAL SYMBOL GRACE NOTE SLASH", + direction="l", + linebreak="al", + unicodeslot=0x1D194, + }, + [0x1D195]={ + category="so", + description="MUSICAL SYMBOL GRACE NOTE NO SLASH", + direction="l", + linebreak="al", + unicodeslot=0x1D195, + }, + [0x1D196]={ + category="so", + description="MUSICAL SYMBOL TR", + direction="l", + linebreak="al", + unicodeslot=0x1D196, + }, + [0x1D197]={ + category="so", + description="MUSICAL SYMBOL TURN", + direction="l", + linebreak="al", + unicodeslot=0x1D197, + }, + [0x1D198]={ + category="so", + description="MUSICAL SYMBOL INVERTED TURN", + direction="l", + linebreak="al", + unicodeslot=0x1D198, + }, + [0x1D199]={ + category="so", + description="MUSICAL SYMBOL TURN SLASH", + direction="l", + linebreak="al", + unicodeslot=0x1D199, + }, + [0x1D19A]={ + category="so", + description="MUSICAL SYMBOL TURN UP", + direction="l", + linebreak="al", + unicodeslot=0x1D19A, + }, + [0x1D19B]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0001", + direction="l", + linebreak="al", + unicodeslot=0x1D19B, + }, + [0x1D19C]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0002", + direction="l", + linebreak="al", + unicodeslot=0x1D19C, + }, + [0x1D19D]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0003", + direction="l", + linebreak="al", + unicodeslot=0x1D19D, + }, + [0x1D19E]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0004", + direction="l", + linebreak="al", + unicodeslot=0x1D19E, + }, + [0x1D19F]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0005", + direction="l", + linebreak="al", + unicodeslot=0x1D19F, + }, + [0x1D1A0]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0006", + direction="l", + linebreak="al", + unicodeslot=0x1D1A0, + }, + [0x1D1A1]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0007", + direction="l", + linebreak="al", + unicodeslot=0x1D1A1, + }, + [0x1D1A2]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0008", + direction="l", + linebreak="al", + unicodeslot=0x1D1A2, + }, + [0x1D1A3]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x0009", + direction="l", + linebreak="al", + unicodeslot=0x1D1A3, + }, + [0x1D1A4]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x000A", + direction="l", + linebreak="al", + unicodeslot=0x1D1A4, + }, + [0x1D1A5]={ + category="so", + description="MUSICAL SYMBOL ORNAMENT STROKE-0x000B", + direction="l", + linebreak="al", + unicodeslot=0x1D1A5, + }, + [0x1D1A6]={ + category="so", + description="MUSICAL SYMBOL HAUPTSTIMME", + direction="l", + linebreak="al", + unicodeslot=0x1D1A6, + }, + [0x1D1A7]={ + category="so", + description="MUSICAL SYMBOL NEBENSTIMME", + direction="l", + linebreak="al", + unicodeslot=0x1D1A7, + }, + [0x1D1A8]={ + category="so", + description="MUSICAL SYMBOL END OF STIMME", + direction="l", + linebreak="al", + unicodeslot=0x1D1A8, + }, + [0x1D1A9]={ + category="so", + description="MUSICAL SYMBOL DEGREE SLASH", + direction="l", + linebreak="al", + unicodeslot=0x1D1A9, + }, + [0x1D1AA]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING DOWN BOW", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D1AA, + }, + [0x1D1AB]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING UP BOW", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D1AB, + }, + [0x1D1AC]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING HARMONIC", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D1AC, + }, + [0x1D1AD]={ + category="mn", + combining=0xE6, + description="MUSICAL SYMBOL COMBINING SNAP PIZZICATO", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D1AD, + }, + [0x1D1AE]={ + category="so", + description="MUSICAL SYMBOL PEDAL MARK", + direction="l", + linebreak="al", + unicodeslot=0x1D1AE, + }, + [0x1D1AF]={ + category="so", + description="MUSICAL SYMBOL PEDAL UP MARK", + direction="l", + linebreak="al", + unicodeslot=0x1D1AF, + }, + [0x1D1B0]={ + category="so", + description="MUSICAL SYMBOL HALF PEDAL MARK", + direction="l", + linebreak="al", + unicodeslot=0x1D1B0, + }, + [0x1D1B1]={ + category="so", + description="MUSICAL SYMBOL GLISSANDO UP", + direction="l", + linebreak="al", + unicodeslot=0x1D1B1, + }, + [0x1D1B2]={ + category="so", + description="MUSICAL SYMBOL GLISSANDO DOWN", + direction="l", + linebreak="al", + unicodeslot=0x1D1B2, + }, + [0x1D1B3]={ + category="so", + description="MUSICAL SYMBOL WITH FINGERNAILS", + direction="l", + linebreak="al", + unicodeslot=0x1D1B3, + }, + [0x1D1B4]={ + category="so", + description="MUSICAL SYMBOL DAMP", + direction="l", + linebreak="al", + unicodeslot=0x1D1B4, + }, + [0x1D1B5]={ + category="so", + description="MUSICAL SYMBOL DAMP ALL", + direction="l", + linebreak="al", + unicodeslot=0x1D1B5, + }, + [0x1D1B6]={ + category="so", + description="MUSICAL SYMBOL MAXIMA", + direction="l", + linebreak="al", + unicodeslot=0x1D1B6, + }, + [0x1D1B7]={ + category="so", + description="MUSICAL SYMBOL LONGA", + direction="l", + linebreak="al", + unicodeslot=0x1D1B7, + }, + [0x1D1B8]={ + category="so", + description="MUSICAL SYMBOL BREVIS", + direction="l", + linebreak="al", + unicodeslot=0x1D1B8, + }, + [0x1D1B9]={ + category="so", + description="MUSICAL SYMBOL SEMIBREVIS WHITE", + direction="l", + linebreak="al", + unicodeslot=0x1D1B9, + }, + [0x1D1BA]={ + category="so", + description="MUSICAL SYMBOL SEMIBREVIS BLACK", + direction="l", + linebreak="al", + unicodeslot=0x1D1BA, + }, + [0x1D1BB]={ + category="so", + description="MUSICAL SYMBOL MINIMA", + direction="l", + linebreak="al", + specials={ "char", 0x1D1B9, 0x1D165 }, + unicodeslot=0x1D1BB, + }, + [0x1D1BC]={ + category="so", + description="MUSICAL SYMBOL MINIMA BLACK", + direction="l", + linebreak="al", + specials={ "char", 0x1D1BA, 0x1D165 }, + unicodeslot=0x1D1BC, + }, + [0x1D1BD]={ + category="so", + description="MUSICAL SYMBOL SEMIMINIMA WHITE", + direction="l", + linebreak="al", + specials={ "char", 0x1D1BB, 0x1D16E }, + unicodeslot=0x1D1BD, + }, + [0x1D1BE]={ + category="so", + description="MUSICAL SYMBOL SEMIMINIMA BLACK", + direction="l", + linebreak="al", + specials={ "char", 0x1D1BC, 0x1D16E }, + unicodeslot=0x1D1BE, + }, + [0x1D1BF]={ + category="so", + description="MUSICAL SYMBOL FUSA WHITE", + direction="l", + linebreak="al", + specials={ "char", 0x1D1BB, 0x1D16F }, + unicodeslot=0x1D1BF, + }, + [0x1D1C0]={ + category="so", + description="MUSICAL SYMBOL FUSA BLACK", + direction="l", + linebreak="al", + specials={ "char", 0x1D1BC, 0x1D16F }, + unicodeslot=0x1D1C0, + }, + [0x1D1C1]={ + category="so", + description="MUSICAL SYMBOL LONGA PERFECTA REST", + direction="l", + linebreak="al", + unicodeslot=0x1D1C1, + }, + [0x1D1C2]={ + category="so", + description="MUSICAL SYMBOL LONGA IMPERFECTA REST", + direction="l", + linebreak="al", + unicodeslot=0x1D1C2, + }, + [0x1D1C3]={ + category="so", + description="MUSICAL SYMBOL BREVIS REST", + direction="l", + linebreak="al", + unicodeslot=0x1D1C3, + }, + [0x1D1C4]={ + category="so", + description="MUSICAL SYMBOL SEMIBREVIS REST", + direction="l", + linebreak="al", + unicodeslot=0x1D1C4, + }, + [0x1D1C5]={ + category="so", + description="MUSICAL SYMBOL MINIMA REST", + direction="l", + linebreak="al", + unicodeslot=0x1D1C5, + }, + [0x1D1C6]={ + category="so", + description="MUSICAL SYMBOL SEMIMINIMA REST", + direction="l", + linebreak="al", + unicodeslot=0x1D1C6, + }, + [0x1D1C7]={ + category="so", + description="MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE PERFECTA", + direction="l", + linebreak="al", + unicodeslot=0x1D1C7, + }, + [0x1D1C8]={ + category="so", + description="MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE IMPERFECTA", + direction="l", + linebreak="al", + unicodeslot=0x1D1C8, + }, + [0x1D1C9]={ + category="so", + description="MUSICAL SYMBOL TEMPUS PERFECTUM CUM PROLATIONE PERFECTA DIMINUTION-0x0001", + direction="l", + linebreak="al", + unicodeslot=0x1D1C9, + }, + [0x1D1CA]={ + category="so", + description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE PERFECTA", + direction="l", + linebreak="al", + unicodeslot=0x1D1CA, + }, + [0x1D1CB]={ + category="so", + description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA", + direction="l", + linebreak="al", + unicodeslot=0x1D1CB, + }, + [0x1D1CC]={ + category="so", + description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-0x0001", + direction="l", + linebreak="al", + unicodeslot=0x1D1CC, + }, + [0x1D1CD]={ + category="so", + description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-0x0002", + direction="l", + linebreak="al", + unicodeslot=0x1D1CD, + }, + [0x1D1CE]={ + category="so", + description="MUSICAL SYMBOL TEMPUS IMPERFECTUM CUM PROLATIONE IMPERFECTA DIMINUTION-0x0003", + direction="l", + linebreak="al", + unicodeslot=0x1D1CE, + }, + [0x1D1CF]={ + category="so", + description="MUSICAL SYMBOL CROIX", + direction="l", + linebreak="al", + unicodeslot=0x1D1CF, + }, + [0x1D1D0]={ + category="so", + description="MUSICAL SYMBOL GREGORIAN C CLEF", + direction="l", + linebreak="al", + unicodeslot=0x1D1D0, + }, + [0x1D1D1]={ + category="so", + description="MUSICAL SYMBOL GREGORIAN F CLEF", + direction="l", + linebreak="al", + unicodeslot=0x1D1D1, + }, + [0x1D1D2]={ + category="so", + description="MUSICAL SYMBOL SQUARE B", + direction="l", + linebreak="al", + unicodeslot=0x1D1D2, + }, + [0x1D1D3]={ + category="so", + description="MUSICAL SYMBOL VIRGA", + direction="l", + linebreak="al", + unicodeslot=0x1D1D3, + }, + [0x1D1D4]={ + category="so", + description="MUSICAL SYMBOL PODATUS", + direction="l", + linebreak="al", + unicodeslot=0x1D1D4, + }, + [0x1D1D5]={ + category="so", + description="MUSICAL SYMBOL CLIVIS", + direction="l", + linebreak="al", + unicodeslot=0x1D1D5, + }, + [0x1D1D6]={ + category="so", + description="MUSICAL SYMBOL SCANDICUS", + direction="l", + linebreak="al", + unicodeslot=0x1D1D6, + }, + [0x1D1D7]={ + category="so", + description="MUSICAL SYMBOL CLIMACUS", + direction="l", + linebreak="al", + unicodeslot=0x1D1D7, + }, + [0x1D1D8]={ + category="so", + description="MUSICAL SYMBOL TORCULUS", + direction="l", + linebreak="al", + unicodeslot=0x1D1D8, + }, + [0x1D1D9]={ + category="so", + description="MUSICAL SYMBOL PORRECTUS", + direction="l", + linebreak="al", + unicodeslot=0x1D1D9, + }, + [0x1D1DA]={ + category="so", + description="MUSICAL SYMBOL PORRECTUS FLEXUS", + direction="l", + linebreak="al", + unicodeslot=0x1D1DA, + }, + [0x1D1DB]={ + category="so", + description="MUSICAL SYMBOL SCANDICUS FLEXUS", + direction="l", + linebreak="al", + unicodeslot=0x1D1DB, + }, + [0x1D1DC]={ + category="so", + description="MUSICAL SYMBOL TORCULUS RESUPINUS", + direction="l", + linebreak="al", + unicodeslot=0x1D1DC, + }, + [0x1D1DD]={ + category="so", + description="MUSICAL SYMBOL PES SUBPUNCTIS", + direction="l", + linebreak="al", + unicodeslot=0x1D1DD, + }, + [0x1D1DE]={ + category="so", + description="MUSICAL SYMBOL KIEVAN C CLEF", + direction="l", + linebreak="al", + unicodeslot=0x1D1DE, + }, + [0x1D1DF]={ + category="so", + description="MUSICAL SYMBOL KIEVAN END OF PIECE", + direction="l", + linebreak="al", + unicodeslot=0x1D1DF, + }, + [0x1D1E0]={ + category="so", + description="MUSICAL SYMBOL KIEVAN FINAL NOTE", + direction="l", + linebreak="al", + unicodeslot=0x1D1E0, + }, + [0x1D1E1]={ + category="so", + description="MUSICAL SYMBOL KIEVAN RECITATIVE MARK", + direction="l", + linebreak="al", + unicodeslot=0x1D1E1, + }, + [0x1D1E2]={ + category="so", + description="MUSICAL SYMBOL KIEVAN WHOLE NOTE", + direction="l", + linebreak="al", + unicodeslot=0x1D1E2, + }, + [0x1D1E3]={ + category="so", + description="MUSICAL SYMBOL KIEVAN HALF NOTE", + direction="l", + linebreak="al", + unicodeslot=0x1D1E3, + }, + [0x1D1E4]={ + category="so", + description="MUSICAL SYMBOL KIEVAN QUARTER NOTE STEM DOWN", + direction="l", + linebreak="al", + unicodeslot=0x1D1E4, + }, + [0x1D1E5]={ + category="so", + description="MUSICAL SYMBOL KIEVAN QUARTER NOTE STEM UP", + direction="l", + linebreak="al", + unicodeslot=0x1D1E5, + }, + [0x1D1E6]={ + category="so", + description="MUSICAL SYMBOL KIEVAN EIGHTH NOTE STEM DOWN", + direction="l", + linebreak="al", + unicodeslot=0x1D1E6, + }, + [0x1D1E7]={ + category="so", + description="MUSICAL SYMBOL KIEVAN EIGHTH NOTE STEM UP", + direction="l", + linebreak="al", + unicodeslot=0x1D1E7, + }, + [0x1D1E8]={ + category="so", + description="MUSICAL SYMBOL KIEVAN FLAT SIGN", + direction="l", + linebreak="al", + unicodeslot=0x1D1E8, + }, + [0x1D200]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0001", + direction="on", + linebreak="al", + unicodeslot=0x1D200, + }, + [0x1D201]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0002", + direction="on", + linebreak="al", + unicodeslot=0x1D201, + }, + [0x1D202]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0003", + direction="on", + linebreak="al", + unicodeslot=0x1D202, + }, + [0x1D203]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0004", + direction="on", + linebreak="al", + unicodeslot=0x1D203, + }, + [0x1D204]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0005", + direction="on", + linebreak="al", + unicodeslot=0x1D204, + }, + [0x1D205]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0006", + direction="on", + linebreak="al", + unicodeslot=0x1D205, + }, + [0x1D206]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0007", + direction="on", + linebreak="al", + unicodeslot=0x1D206, + }, + [0x1D207]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0008", + direction="on", + linebreak="al", + unicodeslot=0x1D207, + }, + [0x1D208]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0009", + direction="on", + linebreak="al", + unicodeslot=0x1D208, + }, + [0x1D209]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x000A", + direction="on", + linebreak="al", + unicodeslot=0x1D209, + }, + [0x1D20A]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x000B", + direction="on", + linebreak="al", + unicodeslot=0x1D20A, + }, + [0x1D20B]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x000C", + direction="on", + linebreak="al", + unicodeslot=0x1D20B, + }, + [0x1D20C]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x000D", + direction="on", + linebreak="al", + unicodeslot=0x1D20C, + }, + [0x1D20D]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x000E", + direction="on", + linebreak="al", + unicodeslot=0x1D20D, + }, + [0x1D20E]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x000F", + direction="on", + linebreak="al", + unicodeslot=0x1D20E, + }, + [0x1D20F]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0010", + direction="on", + linebreak="al", + unicodeslot=0x1D20F, + }, + [0x1D210]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0011", + direction="on", + linebreak="al", + unicodeslot=0x1D210, + }, + [0x1D211]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0012", + direction="on", + linebreak="al", + unicodeslot=0x1D211, + }, + [0x1D212]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0013", + direction="on", + linebreak="al", + unicodeslot=0x1D212, + }, + [0x1D213]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0014", + direction="on", + linebreak="al", + unicodeslot=0x1D213, + }, + [0x1D214]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0015", + direction="on", + linebreak="al", + unicodeslot=0x1D214, + }, + [0x1D215]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0016", + direction="on", + linebreak="al", + unicodeslot=0x1D215, + }, + [0x1D216]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0017", + direction="on", + linebreak="al", + unicodeslot=0x1D216, + }, + [0x1D217]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0018", + direction="on", + linebreak="al", + unicodeslot=0x1D217, + }, + [0x1D218]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0032", + direction="on", + linebreak="al", + unicodeslot=0x1D218, + }, + [0x1D219]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0033", + direction="on", + linebreak="al", + unicodeslot=0x1D219, + }, + [0x1D21A]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0034", + direction="on", + linebreak="al", + unicodeslot=0x1D21A, + }, + [0x1D21B]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0035", + direction="on", + linebreak="al", + unicodeslot=0x1D21B, + }, + [0x1D21C]={ + category="so", + description="GREEK VOCAL NOTATION SYMBOL-0x0036", + direction="on", + linebreak="al", + unicodeslot=0x1D21C, + }, + [0x1D21D]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0001", + direction="on", + linebreak="al", + unicodeslot=0x1D21D, + }, + [0x1D21E]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0002", + direction="on", + linebreak="al", + unicodeslot=0x1D21E, + }, + [0x1D21F]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0004", + direction="on", + linebreak="al", + unicodeslot=0x1D21F, + }, + [0x1D220]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0005", + direction="on", + linebreak="al", + unicodeslot=0x1D220, + }, + [0x1D221]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0007", + direction="on", + linebreak="al", + unicodeslot=0x1D221, + }, + [0x1D222]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0008", + direction="on", + linebreak="al", + unicodeslot=0x1D222, + }, + [0x1D223]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x000B", + direction="on", + linebreak="al", + unicodeslot=0x1D223, + }, + [0x1D224]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x000C", + direction="on", + linebreak="al", + unicodeslot=0x1D224, + }, + [0x1D225]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x000D", + direction="on", + linebreak="al", + unicodeslot=0x1D225, + }, + [0x1D226]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x000E", + direction="on", + linebreak="al", + unicodeslot=0x1D226, + }, + [0x1D227]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0011", + direction="on", + linebreak="al", + unicodeslot=0x1D227, + }, + [0x1D228]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0012", + direction="on", + linebreak="al", + unicodeslot=0x1D228, + }, + [0x1D229]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0013", + direction="on", + linebreak="al", + unicodeslot=0x1D229, + }, + [0x1D22A]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0017", + direction="on", + linebreak="al", + unicodeslot=0x1D22A, + }, + [0x1D22B]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0018", + direction="on", + linebreak="al", + unicodeslot=0x1D22B, + }, + [0x1D22C]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0019", + direction="on", + linebreak="al", + unicodeslot=0x1D22C, + }, + [0x1D22D]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x001A", + direction="on", + linebreak="al", + unicodeslot=0x1D22D, + }, + [0x1D22E]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x001B", + direction="on", + linebreak="al", + unicodeslot=0x1D22E, + }, + [0x1D22F]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x001D", + direction="on", + linebreak="al", + unicodeslot=0x1D22F, }, [0x1D230]={ category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x001E", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x001E", + direction="on", + linebreak="al", + unicodeslot=0x1D230, + }, + [0x1D231]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0020", + direction="on", + linebreak="al", + unicodeslot=0x1D231, + }, + [0x1D232]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0024", + direction="on", + linebreak="al", + unicodeslot=0x1D232, + }, + [0x1D233]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0025", + direction="on", + linebreak="al", + unicodeslot=0x1D233, + }, + [0x1D234]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0026", + direction="on", + linebreak="al", + unicodeslot=0x1D234, + }, + [0x1D235]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0027", + direction="on", + linebreak="al", + unicodeslot=0x1D235, + }, + [0x1D236]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0028", + direction="on", + linebreak="al", + unicodeslot=0x1D236, + }, + [0x1D237]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x002A", + direction="on", + linebreak="al", + unicodeslot=0x1D237, + }, + [0x1D238]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x002B", + direction="on", + linebreak="al", + unicodeslot=0x1D238, + }, + [0x1D239]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x002D", + direction="on", + linebreak="al", + unicodeslot=0x1D239, + }, + [0x1D23A]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x002F", + direction="on", + linebreak="al", + unicodeslot=0x1D23A, + }, + [0x1D23B]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0030", + direction="on", + linebreak="al", + unicodeslot=0x1D23B, + }, + [0x1D23C]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0031", + direction="on", + linebreak="al", + unicodeslot=0x1D23C, + }, + [0x1D23D]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0032", + direction="on", + linebreak="al", + unicodeslot=0x1D23D, + }, + [0x1D23E]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0033", + direction="on", + linebreak="al", + unicodeslot=0x1D23E, + }, + [0x1D23F]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0034", + direction="on", + linebreak="al", + unicodeslot=0x1D23F, + }, + [0x1D240]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0035", + direction="on", + linebreak="al", + unicodeslot=0x1D240, + }, + [0x1D241]={ + category="so", + description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0036", + direction="on", + linebreak="al", + unicodeslot=0x1D241, + }, + [0x1D242]={ + category="mn", + combining=0xE6, + description="COMBINING GREEK MUSICAL TRISEME", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D242, + }, + [0x1D243]={ + category="mn", + combining=0xE6, + description="COMBINING GREEK MUSICAL TETRASEME", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D243, + }, + [0x1D244]={ + category="mn", + combining=0xE6, + description="COMBINING GREEK MUSICAL PENTASEME", + direction="nsm", + linebreak="cm", + unicodeslot=0x1D244, + }, + [0x1D245]={ + category="so", + description="GREEK MUSICAL LEIMMA", + direction="on", + linebreak="al", + unicodeslot=0x1D245, + }, + [0x1D300]={ + category="so", + description="MONOGRAM FOR EARTH", + direction="on", + linebreak="al", + unicodeslot=0x1D300, + }, + [0x1D301]={ + category="so", + description="DIGRAM FOR HEAVENLY EARTH", + direction="on", + linebreak="al", + unicodeslot=0x1D301, + }, + [0x1D302]={ + category="so", + description="DIGRAM FOR HUMAN EARTH", + direction="on", + linebreak="al", + unicodeslot=0x1D302, + }, + [0x1D303]={ + category="so", + description="DIGRAM FOR EARTHLY HEAVEN", + direction="on", + linebreak="al", + unicodeslot=0x1D303, + }, + [0x1D304]={ + category="so", + description="DIGRAM FOR EARTHLY HUMAN", + direction="on", + linebreak="al", + unicodeslot=0x1D304, + }, + [0x1D305]={ + category="so", + description="DIGRAM FOR EARTH", + direction="on", + linebreak="al", + unicodeslot=0x1D305, + }, + [0x1D306]={ + category="so", + description="TETRAGRAM FOR CENTRE", + direction="on", + linebreak="al", + unicodeslot=0x1D306, + }, + [0x1D307]={ + category="so", + description="TETRAGRAM FOR FULL CIRCLE", + direction="on", + linebreak="al", + unicodeslot=0x1D307, + }, + [0x1D308]={ + category="so", + description="TETRAGRAM FOR MIRED", + direction="on", + linebreak="al", + unicodeslot=0x1D308, + }, + [0x1D309]={ + category="so", + description="TETRAGRAM FOR BARRIER", + direction="on", + linebreak="al", + unicodeslot=0x1D309, + }, + [0x1D30A]={ + category="so", + description="TETRAGRAM FOR KEEPING SMALL", + direction="on", + linebreak="al", + unicodeslot=0x1D30A, + }, + [0x1D30B]={ + category="so", + description="TETRAGRAM FOR CONTRARIETY", + direction="on", + linebreak="al", + unicodeslot=0x1D30B, + }, + [0x1D30C]={ + category="so", + description="TETRAGRAM FOR ASCENT", + direction="on", + linebreak="al", + unicodeslot=0x1D30C, + }, + [0x1D30D]={ + category="so", + description="TETRAGRAM FOR OPPOSITION", + direction="on", + linebreak="al", + unicodeslot=0x1D30D, + }, + [0x1D30E]={ + category="so", + description="TETRAGRAM FOR BRANCHING OUT", + direction="on", + linebreak="al", + unicodeslot=0x1D30E, + }, + [0x1D30F]={ + category="so", + description="TETRAGRAM FOR DEFECTIVENESS OR DISTORTION", + direction="on", + linebreak="al", + unicodeslot=0x1D30F, + }, + [0x1D310]={ + category="so", + description="TETRAGRAM FOR DIVERGENCE", + direction="on", + linebreak="al", + unicodeslot=0x1D310, + }, + [0x1D311]={ + category="so", + description="TETRAGRAM FOR YOUTHFULNESS", + direction="on", + linebreak="al", + unicodeslot=0x1D311, + }, + [0x1D312]={ + category="so", + description="TETRAGRAM FOR INCREASE", + direction="on", + linebreak="al", + unicodeslot=0x1D312, + }, + [0x1D313]={ + category="so", + description="TETRAGRAM FOR PENETRATION", + direction="on", + linebreak="al", + unicodeslot=0x1D313, + }, + [0x1D314]={ + category="so", + description="TETRAGRAM FOR REACH", + direction="on", + linebreak="al", + unicodeslot=0x1D314, + }, + [0x1D315]={ + category="so", + description="TETRAGRAM FOR CONTACT", + direction="on", + linebreak="al", + unicodeslot=0x1D315, + }, + [0x1D316]={ + category="so", + description="TETRAGRAM FOR HOLDING BACK", + direction="on", + linebreak="al", + unicodeslot=0x1D316, + }, + [0x1D317]={ + category="so", + description="TETRAGRAM FOR WAITING", + direction="on", + linebreak="al", + unicodeslot=0x1D317, + }, + [0x1D318]={ + category="so", + description="TETRAGRAM FOR FOLLOWING", + direction="on", + linebreak="al", + unicodeslot=0x1D318, + }, + [0x1D319]={ + category="so", + description="TETRAGRAM FOR ADVANCE", + direction="on", + linebreak="al", + unicodeslot=0x1D319, + }, + [0x1D31A]={ + category="so", + description="TETRAGRAM FOR RELEASE", + direction="on", + linebreak="al", + unicodeslot=0x1D31A, + }, + [0x1D31B]={ + category="so", + description="TETRAGRAM FOR RESISTANCE", + direction="on", + linebreak="al", + unicodeslot=0x1D31B, + }, + [0x1D31C]={ + category="so", + description="TETRAGRAM FOR EASE", + direction="on", + linebreak="al", + unicodeslot=0x1D31C, + }, + [0x1D31D]={ + category="so", + description="TETRAGRAM FOR JOY", + direction="on", + linebreak="al", + unicodeslot=0x1D31D, + }, + [0x1D31E]={ + category="so", + description="TETRAGRAM FOR CONTENTION", + direction="on", + linebreak="al", + unicodeslot=0x1D31E, + }, + [0x1D31F]={ + category="so", + description="TETRAGRAM FOR ENDEAVOUR", + direction="on", + linebreak="al", + unicodeslot=0x1D31F, + }, + [0x1D320]={ + category="so", + description="TETRAGRAM FOR DUTIES", + direction="on", + linebreak="al", + unicodeslot=0x1D320, + }, + [0x1D321]={ + category="so", + description="TETRAGRAM FOR CHANGE", + direction="on", + linebreak="al", + unicodeslot=0x1D321, + }, + [0x1D322]={ + category="so", + description="TETRAGRAM FOR DECISIVENESS", + direction="on", + linebreak="al", + unicodeslot=0x1D322, + }, + [0x1D323]={ + category="so", + description="TETRAGRAM FOR BOLD RESOLUTION", + direction="on", + linebreak="al", + unicodeslot=0x1D323, + }, + [0x1D324]={ + category="so", + description="TETRAGRAM FOR PACKING", + direction="on", + linebreak="al", + unicodeslot=0x1D324, + }, + [0x1D325]={ + category="so", + description="TETRAGRAM FOR LEGION", + direction="on", + linebreak="al", + unicodeslot=0x1D325, + }, + [0x1D326]={ + category="so", + description="TETRAGRAM FOR CLOSENESS", + direction="on", + linebreak="al", + unicodeslot=0x1D326, + }, + [0x1D327]={ + category="so", + description="TETRAGRAM FOR KINSHIP", + direction="on", + linebreak="al", + unicodeslot=0x1D327, + }, + [0x1D328]={ + category="so", + description="TETRAGRAM FOR GATHERING", + direction="on", + linebreak="al", + unicodeslot=0x1D328, + }, + [0x1D329]={ + category="so", + description="TETRAGRAM FOR STRENGTH", + direction="on", + linebreak="al", + unicodeslot=0x1D329, + }, + [0x1D32A]={ + category="so", + description="TETRAGRAM FOR PURITY", + direction="on", + linebreak="al", + unicodeslot=0x1D32A, + }, + [0x1D32B]={ + category="so", + description="TETRAGRAM FOR FULLNESS", + direction="on", + linebreak="al", + unicodeslot=0x1D32B, + }, + [0x1D32C]={ + category="so", + description="TETRAGRAM FOR RESIDENCE", + direction="on", + linebreak="al", + unicodeslot=0x1D32C, + }, + [0x1D32D]={ + category="so", + description="TETRAGRAM FOR LAW OR MODEL", + direction="on", + linebreak="al", + unicodeslot=0x1D32D, + }, + [0x1D32E]={ + category="so", + description="TETRAGRAM FOR RESPONSE", + direction="on", + linebreak="al", + unicodeslot=0x1D32E, + }, + [0x1D32F]={ + category="so", + description="TETRAGRAM FOR GOING TO MEET", + direction="on", + linebreak="al", + unicodeslot=0x1D32F, + }, + [0x1D330]={ + category="so", + description="TETRAGRAM FOR ENCOUNTERS", + direction="on", + linebreak="al", + unicodeslot=0x1D330, + }, + [0x1D331]={ + category="so", + description="TETRAGRAM FOR STOVE", + direction="on", + linebreak="al", + unicodeslot=0x1D331, + }, + [0x1D332]={ + category="so", + description="TETRAGRAM FOR GREATNESS", + direction="on", + linebreak="al", + unicodeslot=0x1D332, + }, + [0x1D333]={ + category="so", + description="TETRAGRAM FOR ENLARGEMENT", + direction="on", + linebreak="al", + unicodeslot=0x1D333, + }, + [0x1D334]={ + category="so", + description="TETRAGRAM FOR PATTERN", + direction="on", + linebreak="al", + unicodeslot=0x1D334, + }, + [0x1D335]={ + category="so", + description="TETRAGRAM FOR RITUAL", + direction="on", + linebreak="al", + unicodeslot=0x1D335, + }, + [0x1D336]={ + category="so", + description="TETRAGRAM FOR FLIGHT", + direction="on", + linebreak="al", + unicodeslot=0x1D336, + }, + [0x1D337]={ + category="so", + description="TETRAGRAM FOR VASTNESS OR WASTING", + direction="on", + linebreak="al", + unicodeslot=0x1D337, + }, + [0x1D338]={ + category="so", + description="TETRAGRAM FOR CONSTANCY", + direction="on", + linebreak="al", + unicodeslot=0x1D338, + }, + [0x1D339]={ + category="so", + description="TETRAGRAM FOR MEASURE", + direction="on", + linebreak="al", + unicodeslot=0x1D339, + }, + [0x1D33A]={ + category="so", + description="TETRAGRAM FOR ETERNITY", + direction="on", + linebreak="al", + unicodeslot=0x1D33A, + }, + [0x1D33B]={ + category="so", + description="TETRAGRAM FOR UNITY", + direction="on", + linebreak="al", + unicodeslot=0x1D33B, + }, + [0x1D33C]={ + category="so", + description="TETRAGRAM FOR DIMINISHMENT", + direction="on", + linebreak="al", + unicodeslot=0x1D33C, + }, + [0x1D33D]={ + category="so", + description="TETRAGRAM FOR CLOSED MOUTH", + direction="on", + linebreak="al", + unicodeslot=0x1D33D, + }, + [0x1D33E]={ + category="so", + description="TETRAGRAM FOR GUARDEDNESS", + direction="on", + linebreak="al", + unicodeslot=0x1D33E, + }, + [0x1D33F]={ + category="so", + description="TETRAGRAM FOR GATHERING IN", + direction="on", + linebreak="al", + unicodeslot=0x1D33F, + }, + [0x1D340]={ + category="so", + description="TETRAGRAM FOR MASSING", + direction="on", + linebreak="al", + unicodeslot=0x1D340, + }, + [0x1D341]={ + category="so", + description="TETRAGRAM FOR ACCUMULATION", + direction="on", + linebreak="al", + unicodeslot=0x1D341, + }, + [0x1D342]={ + category="so", + description="TETRAGRAM FOR EMBELLISHMENT", + direction="on", + linebreak="al", + unicodeslot=0x1D342, + }, + [0x1D343]={ + category="so", + description="TETRAGRAM FOR DOUBT", + direction="on", + linebreak="al", + unicodeslot=0x1D343, + }, + [0x1D344]={ + category="so", + description="TETRAGRAM FOR WATCH", + direction="on", + linebreak="al", + unicodeslot=0x1D344, + }, + [0x1D345]={ + category="so", + description="TETRAGRAM FOR SINKING", + direction="on", + linebreak="al", + unicodeslot=0x1D345, + }, + [0x1D346]={ + category="so", + description="TETRAGRAM FOR INNER", + direction="on", + linebreak="al", + unicodeslot=0x1D346, + }, + [0x1D347]={ + category="so", + description="TETRAGRAM FOR DEPARTURE", + direction="on", + linebreak="al", + unicodeslot=0x1D347, + }, + [0x1D348]={ + category="so", + description="TETRAGRAM FOR DARKENING", + direction="on", + linebreak="al", + unicodeslot=0x1D348, + }, + [0x1D349]={ + category="so", + description="TETRAGRAM FOR DIMMING", + direction="on", + linebreak="al", + unicodeslot=0x1D349, + }, + [0x1D34A]={ + category="so", + description="TETRAGRAM FOR EXHAUSTION", + direction="on", + linebreak="al", + unicodeslot=0x1D34A, + }, + [0x1D34B]={ + category="so", + description="TETRAGRAM FOR SEVERANCE", + direction="on", + linebreak="al", + unicodeslot=0x1D34B, + }, + [0x1D34C]={ + category="so", + description="TETRAGRAM FOR STOPPAGE", + direction="on", + linebreak="al", + unicodeslot=0x1D34C, + }, + [0x1D34D]={ + category="so", + description="TETRAGRAM FOR HARDNESS", + direction="on", + linebreak="al", + unicodeslot=0x1D34D, + }, + [0x1D34E]={ + category="so", + description="TETRAGRAM FOR COMPLETION", + direction="on", + linebreak="al", + unicodeslot=0x1D34E, + }, + [0x1D34F]={ + category="so", + description="TETRAGRAM FOR CLOSURE", + direction="on", + linebreak="al", + unicodeslot=0x1D34F, + }, + [0x1D350]={ + category="so", + description="TETRAGRAM FOR FAILURE", + direction="on", + linebreak="al", + unicodeslot=0x1D350, + }, + [0x1D351]={ + category="so", + description="TETRAGRAM FOR AGGRAVATION", + direction="on", + linebreak="al", + unicodeslot=0x1D351, + }, + [0x1D352]={ + category="so", + description="TETRAGRAM FOR COMPLIANCE", + direction="on", + linebreak="al", + unicodeslot=0x1D352, + }, + [0x1D353]={ + category="so", + description="TETRAGRAM FOR ON THE VERGE", + direction="on", + linebreak="al", + unicodeslot=0x1D353, + }, + [0x1D354]={ + category="so", + description="TETRAGRAM FOR DIFFICULTIES", direction="on", linebreak="al", - unicodeslot=0x1D230, + unicodeslot=0x1D354, + }, + [0x1D355]={ + category="so", + description="TETRAGRAM FOR LABOURING", + direction="on", + linebreak="al", + unicodeslot=0x1D355, + }, + [0x1D356]={ + category="so", + description="TETRAGRAM FOR FOSTERING", + direction="on", + linebreak="al", + unicodeslot=0x1D356, + }, + [0x1D360]={ + category="no", + description="COUNTING ROD UNIT DIGIT ONE", + direction="l", + linebreak="al", + unicodeslot=0x1D360, + }, + [0x1D361]={ + category="no", + description="COUNTING ROD UNIT DIGIT TWO", + direction="l", + linebreak="al", + unicodeslot=0x1D361, + }, + [0x1D362]={ + category="no", + description="COUNTING ROD UNIT DIGIT THREE", + direction="l", + linebreak="al", + unicodeslot=0x1D362, + }, + [0x1D363]={ + category="no", + description="COUNTING ROD UNIT DIGIT FOUR", + direction="l", + linebreak="al", + unicodeslot=0x1D363, + }, + [0x1D364]={ + category="no", + description="COUNTING ROD UNIT DIGIT FIVE", + direction="l", + linebreak="al", + unicodeslot=0x1D364, + }, + [0x1D365]={ + category="no", + description="COUNTING ROD UNIT DIGIT SIX", + direction="l", + linebreak="al", + unicodeslot=0x1D365, + }, + [0x1D366]={ + category="no", + description="COUNTING ROD UNIT DIGIT SEVEN", + direction="l", + linebreak="al", + unicodeslot=0x1D366, + }, + [0x1D367]={ + category="no", + description="COUNTING ROD UNIT DIGIT EIGHT", + direction="l", + linebreak="al", + unicodeslot=0x1D367, + }, + [0x1D368]={ + category="no", + description="COUNTING ROD UNIT DIGIT NINE", + direction="l", + linebreak="al", + unicodeslot=0x1D368, + }, + [0x1D369]={ + category="no", + description="COUNTING ROD TENS DIGIT ONE", + direction="l", + linebreak="al", + unicodeslot=0x1D369, + }, + [0x1D36A]={ + category="no", + description="COUNTING ROD TENS DIGIT TWO", + direction="l", + linebreak="al", + unicodeslot=0x1D36A, + }, + [0x1D36B]={ + category="no", + description="COUNTING ROD TENS DIGIT THREE", + direction="l", + linebreak="al", + unicodeslot=0x1D36B, + }, + [0x1D36C]={ + category="no", + description="COUNTING ROD TENS DIGIT FOUR", + direction="l", + linebreak="al", + unicodeslot=0x1D36C, + }, + [0x1D36D]={ + category="no", + description="COUNTING ROD TENS DIGIT FIVE", + direction="l", + linebreak="al", + unicodeslot=0x1D36D, + }, + [0x1D36E]={ + category="no", + description="COUNTING ROD TENS DIGIT SIX", + direction="l", + linebreak="al", + unicodeslot=0x1D36E, + }, + [0x1D36F]={ + category="no", + description="COUNTING ROD TENS DIGIT SEVEN", + direction="l", + linebreak="al", + unicodeslot=0x1D36F, + }, + [0x1D370]={ + category="no", + description="COUNTING ROD TENS DIGIT EIGHT", + direction="l", + linebreak="al", + unicodeslot=0x1D370, + }, + [0x1D371]={ + category="no", + description="COUNTING ROD TENS DIGIT NINE", + direction="l", + linebreak="al", + unicodeslot=0x1D371, + }, + [0x1D400]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D400, + visual="bf", + }, + [0x1D401]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D401, + visual="bf", + }, + [0x1D402]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D402, + visual="bf", + }, + [0x1D403]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D403, + visual="bf", + }, + [0x1D404]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D404, + visual="bf", + }, + [0x1D405]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D405, + visual="bf", + }, + [0x1D406]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D406, + visual="bf", + }, + [0x1D407]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL H", + direction="l", + linebreak="al", + specials={ "font", 0x48 }, + unicodeslot=0x1D407, + visual="bf", + }, + [0x1D408]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D408, + visual="bf", + }, + [0x1D409]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D409, + visual="bf", + }, + [0x1D40A]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D40A, + visual="bf", + }, + [0x1D40B]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D40B, + visual="bf", + }, + [0x1D40C]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D40C, + visual="bf", + }, + [0x1D40D]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D40D, + visual="bf", + }, + [0x1D40E]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D40E, + visual="bf", + }, + [0x1D40F]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D40F, + visual="bf", + }, + [0x1D410]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D410, + visual="bf", + }, + [0x1D411]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL R", + direction="l", + linebreak="al", + specials={ "font", 0x52 }, + unicodeslot=0x1D411, + visual="bf", + }, + [0x1D412]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D412, + visual="bf", + }, + [0x1D413]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D413, + visual="bf", + }, + [0x1D414]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D414, + visual="bf", + }, + [0x1D415]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D415, + visual="bf", + }, + [0x1D416]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D416, + visual="bf", + }, + [0x1D417]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D417, + visual="bf", + }, + [0x1D418]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D418, + visual="bf", + }, + [0x1D419]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL Z", + direction="l", + linebreak="al", + specials={ "font", 0x5A }, + unicodeslot=0x1D419, + visual="bf", + }, + [0x1D41A]={ + category="ll", + description="MATHEMATICAL BOLD SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D41A, + visual="bf", + }, + [0x1D41B]={ + category="ll", + description="MATHEMATICAL BOLD SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D41B, + visual="bf", + }, + [0x1D41C]={ + category="ll", + description="MATHEMATICAL BOLD SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D41C, + visual="bf", + }, + [0x1D41D]={ + category="ll", + description="MATHEMATICAL BOLD SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D41D, + visual="bf", + }, + [0x1D41E]={ + category="ll", + description="MATHEMATICAL BOLD SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D41E, + visual="bf", + }, + [0x1D41F]={ + category="ll", + description="MATHEMATICAL BOLD SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D41F, + visual="bf", + }, + [0x1D420]={ + category="ll", + description="MATHEMATICAL BOLD SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D420, + visual="bf", + }, + [0x1D421]={ + category="ll", + description="MATHEMATICAL BOLD SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D421, + visual="bf", + }, + [0x1D422]={ + category="ll", + description="MATHEMATICAL BOLD SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D422, + visual="bf", + }, + [0x1D423]={ + category="ll", + description="MATHEMATICAL BOLD SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D423, + visual="bf", + }, + [0x1D424]={ + category="ll", + description="MATHEMATICAL BOLD SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D424, + visual="bf", + }, + [0x1D425]={ + category="ll", + description="MATHEMATICAL BOLD SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D425, + visual="bf", + }, + [0x1D426]={ + category="ll", + description="MATHEMATICAL BOLD SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D426, + visual="bf", + }, + [0x1D427]={ + category="ll", + description="MATHEMATICAL BOLD SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D427, + visual="bf", + }, + [0x1D428]={ + category="ll", + description="MATHEMATICAL BOLD SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D428, + visual="bf", + }, + [0x1D429]={ + category="ll", + description="MATHEMATICAL BOLD SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D429, + visual="bf", + }, + [0x1D42A]={ + category="ll", + description="MATHEMATICAL BOLD SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D42A, + visual="bf", + }, + [0x1D42B]={ + category="ll", + description="MATHEMATICAL BOLD SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D42B, + visual="bf", + }, + [0x1D42C]={ + category="ll", + description="MATHEMATICAL BOLD SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D42C, + visual="bf", + }, + [0x1D42D]={ + category="ll", + description="MATHEMATICAL BOLD SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D42D, + visual="bf", + }, + [0x1D42E]={ + category="ll", + description="MATHEMATICAL BOLD SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D42E, + visual="bf", + }, + [0x1D42F]={ + category="ll", + description="MATHEMATICAL BOLD SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D42F, + visual="bf", + }, + [0x1D430]={ + category="ll", + description="MATHEMATICAL BOLD SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D430, + visual="bf", + }, + [0x1D431]={ + category="ll", + description="MATHEMATICAL BOLD SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D431, + visual="bf", + }, + [0x1D432]={ + category="ll", + description="MATHEMATICAL BOLD SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D432, + visual="bf", + }, + [0x1D433]={ + category="ll", + description="MATHEMATICAL BOLD SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D433, + visual="bf", + }, + [0x1D434]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D434, + visual="it", + }, + [0x1D435]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D435, + visual="it", + }, + [0x1D436]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D436, + visual="it", + }, + [0x1D437]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D437, + visual="it", + }, + [0x1D438]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D438, + visual="it", + }, + [0x1D439]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D439, + visual="it", + }, + [0x1D43A]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D43A, + visual="it", + }, + [0x1D43B]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL H", + direction="l", + linebreak="al", + specials={ "font", 0x48 }, + unicodeslot=0x1D43B, + visual="it", + }, + [0x1D43C]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D43C, + visual="it", + }, + [0x1D43D]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D43D, + visual="it", + }, + [0x1D43E]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D43E, + visual="it", + }, + [0x1D43F]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D43F, + visual="it", + }, + [0x1D440]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D440, + visual="it", + }, + [0x1D441]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D441, + visual="it", + }, + [0x1D442]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D442, + visual="it", + }, + [0x1D443]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D443, + visual="it", + }, + [0x1D444]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D444, + visual="it", + }, + [0x1D445]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL R", + direction="l", + linebreak="al", + specials={ "font", 0x52 }, + unicodeslot=0x1D445, + visual="it", + }, + [0x1D446]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D446, + visual="it", + }, + [0x1D447]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D447, + visual="it", + }, + [0x1D448]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D448, + visual="it", + }, + [0x1D449]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D449, + visual="it", + }, + [0x1D44A]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D44A, + visual="it", + }, + [0x1D44B]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D44B, + visual="it", + }, + [0x1D44C]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D44C, + visual="it", + }, + [0x1D44D]={ + category="lu", + description="MATHEMATICAL ITALIC CAPITAL Z", + direction="l", + linebreak="al", + specials={ "font", 0x5A }, + unicodeslot=0x1D44D, + visual="it", + }, + [0x1D44E]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D44E, + visual="it", + }, + [0x1D44F]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D44F, + visual="it", + }, + [0x1D450]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D450, + visual="it", + }, + [0x1D451]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D451, + visual="it", + }, + [0x1D452]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D452, + visual="it", + }, + [0x1D453]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D453, + visual="it", + }, + [0x1D454]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D454, + visual="it", + }, + [0x1D456]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D456, + visual="it", + }, + [0x1D457]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D457, + visual="it", + }, + [0x1D458]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D458, + visual="it", + }, + [0x1D459]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D459, + visual="it", + }, + [0x1D45A]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D45A, + visual="it", + }, + [0x1D45B]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D45B, + visual="it", + }, + [0x1D45C]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D45C, + visual="it", + }, + [0x1D45D]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D45D, + visual="it", + }, + [0x1D45E]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D45E, + visual="it", + }, + [0x1D45F]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D45F, + visual="it", + }, + [0x1D460]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D460, + visual="it", + }, + [0x1D461]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D461, + visual="it", + }, + [0x1D462]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D462, + visual="it", + }, + [0x1D463]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D463, + visual="it", + }, + [0x1D464]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D464, + visual="it", + }, + [0x1D465]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D465, + visual="it", + }, + [0x1D466]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D466, + visual="it", + }, + [0x1D467]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D467, + visual="it", + }, + [0x1D468]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D468, + visual="bi", + }, + [0x1D469]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D469, + visual="bi", + }, + [0x1D46A]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D46A, + visual="bi", + }, + [0x1D46B]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D46B, + visual="bi", + }, + [0x1D46C]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D46C, + visual="bi", + }, + [0x1D46D]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D46D, + visual="bi", + }, + [0x1D46E]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D46E, + visual="bi", + }, + [0x1D46F]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL H", + direction="l", + linebreak="al", + specials={ "font", 0x48 }, + unicodeslot=0x1D46F, + visual="bi", + }, + [0x1D470]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D470, + visual="bi", + }, + [0x1D471]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D471, + visual="bi", + }, + [0x1D472]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D472, + visual="bi", + }, + [0x1D473]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D473, + visual="bi", + }, + [0x1D474]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D474, + visual="bi", + }, + [0x1D475]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D475, + visual="bi", + }, + [0x1D476]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D476, + visual="bi", + }, + [0x1D477]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D477, + visual="bi", + }, + [0x1D478]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D478, + visual="bi", + }, + [0x1D479]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL R", + direction="l", + linebreak="al", + specials={ "font", 0x52 }, + unicodeslot=0x1D479, + visual="bi", + }, + [0x1D47A]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D47A, + visual="bi", + }, + [0x1D47B]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D47B, + visual="bi", + }, + [0x1D47C]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D47C, + visual="bi", + }, + [0x1D47D]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D47D, + visual="bi", + }, + [0x1D47E]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D47E, + visual="bi", + }, + [0x1D47F]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D47F, + visual="bi", + }, + [0x1D480]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D480, + visual="bi", + }, + [0x1D481]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL Z", + direction="l", + linebreak="al", + specials={ "font", 0x5A }, + unicodeslot=0x1D481, + visual="bi", + }, + [0x1D482]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D482, + visual="bi", + }, + [0x1D483]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D483, + visual="bi", + }, + [0x1D484]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D484, + visual="bi", + }, + [0x1D485]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D485, + visual="bi", + }, + [0x1D486]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D486, + visual="bi", + }, + [0x1D487]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D487, + visual="bi", + }, + [0x1D488]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D488, + visual="bi", + }, + [0x1D489]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D489, + visual="bi", + }, + [0x1D48A]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D48A, + visual="bi", + }, + [0x1D48B]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D48B, + visual="bi", + }, + [0x1D48C]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D48C, + visual="bi", + }, + [0x1D48D]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D48D, + visual="bi", + }, + [0x1D48E]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D48E, + visual="bi", + }, + [0x1D48F]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D48F, + visual="bi", + }, + [0x1D490]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D490, + visual="bi", + }, + [0x1D491]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D491, + visual="bi", + }, + [0x1D492]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D492, + visual="bi", + }, + [0x1D493]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D493, + visual="bi", + }, + [0x1D494]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D494, + visual="bi", + }, + [0x1D495]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D495, + visual="bi", + }, + [0x1D496]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D496, + visual="bi", + }, + [0x1D497]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D497, + visual="bi", + }, + [0x1D498]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D498, + visual="bi", + }, + [0x1D499]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D499, + visual="bi", + }, + [0x1D49A]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D49A, + visual="bi", + }, + [0x1D49B]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D49B, + visual="bi", + }, + [0x1D49C]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D49C, + }, + [0x1D49E]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D49E, + }, + [0x1D49F]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D49F, + }, + [0x1D4A2]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D4A2, + }, + [0x1D4A5]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D4A5, + }, + [0x1D4A6]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D4A6, + }, + [0x1D4A9]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D4A9, + }, + [0x1D4AA]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D4AA, + }, + [0x1D4AB]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D4AB, + }, + [0x1D4AC]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D4AC, + }, + [0x1D4AE]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D4AE, + }, + [0x1D4AF]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D4AF, + }, + [0x1D4B0]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D4B0, + }, + [0x1D4B1]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D4B1, + }, + [0x1D4B2]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D4B2, + }, + [0x1D4B3]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D4B3, + }, + [0x1D4B4]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D4B4, + }, + [0x1D4B5]={ + category="lu", + description="MATHEMATICAL SCRIPT CAPITAL Z", + direction="l", + linebreak="al", + specials={ "font", 0x5A }, + unicodeslot=0x1D4B5, + }, + [0x1D4B6]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D4B6, + }, + [0x1D4B7]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D4B7, + }, + [0x1D4B8]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D4B8, + }, + [0x1D4B9]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D4B9, + }, + [0x1D4BB]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D4BB, + }, + [0x1D4BD]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D4BD, + }, + [0x1D4BE]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D4BE, + }, + [0x1D4BF]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D4BF, + }, + [0x1D4C0]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D4C0, + }, + [0x1D4C1]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D4C1, + }, + [0x1D4C2]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D4C2, + }, + [0x1D4C3]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D4C3, + }, + [0x1D4C5]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D4C5, + }, + [0x1D4C6]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D4C6, + }, + [0x1D4C7]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D4C7, + }, + [0x1D4C8]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D4C8, + }, + [0x1D4C9]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D4C9, + }, + [0x1D4CA]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D4CA, + }, + [0x1D4CB]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D4CB, + }, + [0x1D4CC]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D4CC, + }, + [0x1D4CD]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D4CD, + }, + [0x1D4CE]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D4CE, + }, + [0x1D4CF]={ + category="ll", + description="MATHEMATICAL SCRIPT SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D4CF, + }, + [0x1D4D0]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D4D0, + visual="bf", + }, + [0x1D4D1]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D4D1, + visual="bf", + }, + [0x1D4D2]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D4D2, + visual="bf", + }, + [0x1D4D3]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D4D3, + visual="bf", + }, + [0x1D4D4]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D4D4, + visual="bf", + }, + [0x1D4D5]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D4D5, + visual="bf", + }, + [0x1D4D6]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D4D6, + visual="bf", + }, + [0x1D4D7]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL H", + direction="l", + linebreak="al", + specials={ "font", 0x48 }, + unicodeslot=0x1D4D7, + visual="bf", + }, + [0x1D4D8]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D4D8, + visual="bf", + }, + [0x1D4D9]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D4D9, + visual="bf", + }, + [0x1D4DA]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D4DA, + visual="bf", + }, + [0x1D4DB]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D4DB, + visual="bf", + }, + [0x1D4DC]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D4DC, + visual="bf", + }, + [0x1D4DD]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D4DD, + visual="bf", + }, + [0x1D4DE]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D4DE, + visual="bf", + }, + [0x1D4DF]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D4DF, + visual="bf", + }, + [0x1D4E0]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D4E0, + visual="bf", + }, + [0x1D4E1]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL R", + direction="l", + linebreak="al", + specials={ "font", 0x52 }, + unicodeslot=0x1D4E1, + visual="bf", + }, + [0x1D4E2]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D4E2, + visual="bf", + }, + [0x1D4E3]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D4E3, + visual="bf", + }, + [0x1D4E4]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D4E4, + visual="bf", + }, + [0x1D4E5]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D4E5, + visual="bf", + }, + [0x1D4E6]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D4E6, + visual="bf", + }, + [0x1D4E7]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D4E7, + visual="bf", + }, + [0x1D4E8]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D4E8, + visual="bf", + }, + [0x1D4E9]={ + category="lu", + description="MATHEMATICAL BOLD SCRIPT CAPITAL Z", + direction="l", + linebreak="al", + specials={ "font", 0x5A }, + unicodeslot=0x1D4E9, + visual="bf", + }, + [0x1D4EA]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D4EA, + visual="bf", + }, + [0x1D4EB]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D4EB, + visual="bf", + }, + [0x1D4EC]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D4EC, + visual="bf", + }, + [0x1D4ED]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D4ED, + visual="bf", + }, + [0x1D4EE]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D4EE, + visual="bf", + }, + [0x1D4EF]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D4EF, + visual="bf", + }, + [0x1D4F0]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D4F0, + visual="bf", + }, + [0x1D4F1]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D4F1, + visual="bf", + }, + [0x1D4F2]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D4F2, + visual="bf", + }, + [0x1D4F3]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D4F3, + visual="bf", + }, + [0x1D4F4]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D4F4, + visual="bf", + }, + [0x1D4F5]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D4F5, + visual="bf", + }, + [0x1D4F6]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D4F6, + visual="bf", + }, + [0x1D4F7]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D4F7, + visual="bf", + }, + [0x1D4F8]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D4F8, + visual="bf", + }, + [0x1D4F9]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D4F9, + visual="bf", + }, + [0x1D4FA]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D4FA, + visual="bf", + }, + [0x1D4FB]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D4FB, + visual="bf", + }, + [0x1D4FC]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D4FC, + visual="bf", + }, + [0x1D4FD]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D4FD, + visual="bf", + }, + [0x1D4FE]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D4FE, + visual="bf", + }, + [0x1D4FF]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D4FF, + visual="bf", + }, + [0x1D500]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D500, + visual="bf", + }, + [0x1D501]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D501, + visual="bf", + }, + [0x1D502]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D502, + visual="bf", + }, + [0x1D503]={ + category="ll", + description="MATHEMATICAL BOLD SCRIPT SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D503, + visual="bf", + }, + [0x1D504]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D504, + }, + [0x1D505]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D505, + }, + [0x1D507]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D507, + }, + [0x1D508]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D508, + }, + [0x1D509]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D509, + }, + [0x1D50A]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D50A, + }, + [0x1D50D]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D50D, + }, + [0x1D50E]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D50E, + }, + [0x1D50F]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D50F, + }, + [0x1D510]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D510, + }, + [0x1D511]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D511, + }, + [0x1D512]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D512, + }, + [0x1D513]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D513, + }, + [0x1D514]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D514, + }, + [0x1D516]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D516, + }, + [0x1D517]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D517, + }, + [0x1D518]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D518, + }, + [0x1D519]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D519, + }, + [0x1D51A]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D51A, + }, + [0x1D51B]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D51B, + }, + [0x1D51C]={ + category="lu", + description="MATHEMATICAL FRAKTUR CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D51C, + }, + [0x1D51E]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D51E, + }, + [0x1D51F]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D51F, + }, + [0x1D520]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D520, + }, + [0x1D521]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D521, + }, + [0x1D522]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D522, + }, + [0x1D523]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D523, + }, + [0x1D524]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D524, + }, + [0x1D525]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D525, + }, + [0x1D526]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D526, + }, + [0x1D527]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D527, + }, + [0x1D528]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D528, + }, + [0x1D529]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D529, + }, + [0x1D52A]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D52A, + }, + [0x1D52B]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D52B, + }, + [0x1D52C]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D52C, + }, + [0x1D52D]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D52D, + }, + [0x1D52E]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D52E, + }, + [0x1D52F]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D52F, + }, + [0x1D530]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D530, + }, + [0x1D531]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D531, + }, + [0x1D532]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D532, + }, + [0x1D533]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D533, + }, + [0x1D534]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D534, + }, + [0x1D535]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D535, + }, + [0x1D536]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D536, + }, + [0x1D537]={ + category="ll", + description="MATHEMATICAL FRAKTUR SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D537, + }, + [0x1D538]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D538, + }, + [0x1D539]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D539, + }, + [0x1D53B]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D53B, + }, + [0x1D53C]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D53C, + }, + [0x1D53D]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D53D, + }, + [0x1D53E]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D53E, + }, + [0x1D540]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D540, + }, + [0x1D541]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D541, + }, + [0x1D542]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D542, + }, + [0x1D543]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D543, + }, + [0x1D544]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D544, + }, + [0x1D546]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D546, + }, + [0x1D54A]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D54A, + }, + [0x1D54B]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D54B, + }, + [0x1D54C]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D54C, + }, + [0x1D54D]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D54D, + }, + [0x1D54E]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D54E, + }, + [0x1D54F]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D54F, + }, + [0x1D550]={ + category="lu", + description="MATHEMATICAL DOUBLE-STRUCK CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D550, + }, + [0x1D552]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D552, + }, + [0x1D553]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D553, + }, + [0x1D554]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D554, + }, + [0x1D555]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D555, + }, + [0x1D556]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D556, + }, + [0x1D557]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D557, + }, + [0x1D558]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D558, + }, + [0x1D559]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D559, + }, + [0x1D55A]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D55A, + }, + [0x1D55B]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D55B, + }, + [0x1D55C]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D55C, + }, + [0x1D55D]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D55D, + }, + [0x1D55E]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D55E, + }, + [0x1D55F]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D55F, + }, + [0x1D560]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D560, + }, + [0x1D561]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D561, + }, + [0x1D562]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D562, + }, + [0x1D563]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D563, + }, + [0x1D564]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D564, + }, + [0x1D565]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D565, + }, + [0x1D566]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D566, + }, + [0x1D567]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D567, + }, + [0x1D568]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D568, + }, + [0x1D569]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D569, + }, + [0x1D56A]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D56A, + }, + [0x1D56B]={ + category="ll", + description="MATHEMATICAL DOUBLE-STRUCK SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D56B, + }, + [0x1D56C]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D56C, + visual="bf", + }, + [0x1D56D]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D56D, + visual="bf", + }, + [0x1D56E]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D56E, + visual="bf", + }, + [0x1D56F]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D56F, + visual="bf", + }, + [0x1D570]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D570, + visual="bf", + }, + [0x1D571]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D571, + visual="bf", + }, + [0x1D572]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D572, + visual="bf", + }, + [0x1D573]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL H", + direction="l", + linebreak="al", + specials={ "font", 0x48 }, + unicodeslot=0x1D573, + visual="bf", + }, + [0x1D574]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D574, + visual="bf", + }, + [0x1D575]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D575, + visual="bf", + }, + [0x1D576]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D576, + visual="bf", + }, + [0x1D577]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D577, + visual="bf", + }, + [0x1D578]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D578, + visual="bf", + }, + [0x1D579]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D579, + visual="bf", + }, + [0x1D57A]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D57A, + visual="bf", + }, + [0x1D57B]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D57B, + visual="bf", + }, + [0x1D57C]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D57C, + visual="bf", + }, + [0x1D57D]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL R", + direction="l", + linebreak="al", + specials={ "font", 0x52 }, + unicodeslot=0x1D57D, + visual="bf", + }, + [0x1D57E]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D57E, + visual="bf", + }, + [0x1D57F]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D57F, + visual="bf", + }, + [0x1D580]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D580, + visual="bf", + }, + [0x1D581]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D581, + visual="bf", + }, + [0x1D582]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D582, + visual="bf", + }, + [0x1D583]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D583, + visual="bf", + }, + [0x1D584]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D584, + visual="bf", + }, + [0x1D585]={ + category="lu", + description="MATHEMATICAL BOLD FRAKTUR CAPITAL Z", + direction="l", + linebreak="al", + specials={ "font", 0x5A }, + unicodeslot=0x1D585, + visual="bf", + }, + [0x1D586]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D586, + visual="bf", + }, + [0x1D587]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D587, + visual="bf", + }, + [0x1D588]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D588, + visual="bf", + }, + [0x1D589]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D589, + visual="bf", + }, + [0x1D58A]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D58A, + visual="bf", + }, + [0x1D58B]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D58B, + visual="bf", + }, + [0x1D58C]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D58C, + visual="bf", + }, + [0x1D58D]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D58D, + visual="bf", + }, + [0x1D58E]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D58E, + visual="bf", + }, + [0x1D58F]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D58F, + visual="bf", + }, + [0x1D590]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D590, + visual="bf", + }, + [0x1D591]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D591, + visual="bf", + }, + [0x1D592]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D592, + visual="bf", + }, + [0x1D593]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D593, + visual="bf", + }, + [0x1D594]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D594, + visual="bf", + }, + [0x1D595]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D595, + visual="bf", + }, + [0x1D596]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D596, + visual="bf", + }, + [0x1D597]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D597, + visual="bf", + }, + [0x1D598]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D598, + visual="bf", + }, + [0x1D599]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D599, + visual="bf", + }, + [0x1D59A]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D59A, + visual="bf", + }, + [0x1D59B]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D59B, + visual="bf", + }, + [0x1D59C]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D59C, + visual="bf", + }, + [0x1D59D]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D59D, + visual="bf", + }, + [0x1D59E]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D59E, + visual="bf", + }, + [0x1D59F]={ + category="ll", + description="MATHEMATICAL BOLD FRAKTUR SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D59F, + visual="bf", + }, + [0x1D5A0]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D5A0, + }, + [0x1D5A1]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D5A1, + }, + [0x1D5A2]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D5A2, + }, + [0x1D5A3]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D5A3, + }, + [0x1D5A4]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D5A4, + }, + [0x1D5A5]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D5A5, + }, + [0x1D5A6]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D5A6, + }, + [0x1D5A7]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL H", + direction="l", + linebreak="al", + specials={ "font", 0x48 }, + unicodeslot=0x1D5A7, + }, + [0x1D5A8]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D5A8, + }, + [0x1D5A9]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D5A9, + }, + [0x1D5AA]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D5AA, + }, + [0x1D5AB]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D5AB, + }, + [0x1D5AC]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D5AC, + }, + [0x1D5AD]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D5AD, + }, + [0x1D5AE]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D5AE, + }, + [0x1D5AF]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D5AF, + }, + [0x1D5B0]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D5B0, + }, + [0x1D5B1]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL R", + direction="l", + linebreak="al", + specials={ "font", 0x52 }, + unicodeslot=0x1D5B1, + }, + [0x1D5B2]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D5B2, + }, + [0x1D5B3]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D5B3, + }, + [0x1D5B4]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D5B4, + }, + [0x1D5B5]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D5B5, + }, + [0x1D5B6]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D5B6, + }, + [0x1D5B7]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D5B7, + }, + [0x1D5B8]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D5B8, + }, + [0x1D5B9]={ + category="lu", + description="MATHEMATICAL SANS-SERIF CAPITAL Z", + direction="l", + linebreak="al", + specials={ "font", 0x5A }, + unicodeslot=0x1D5B9, + }, + [0x1D5BA]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D5BA, + }, + [0x1D5BB]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D5BB, + }, + [0x1D5BC]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D5BC, + }, + [0x1D5BD]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D5BD, + }, + [0x1D5BE]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D5BE, + }, + [0x1D5BF]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D5BF, + }, + [0x1D5C0]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D5C0, + }, + [0x1D5C1]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D5C1, + }, + [0x1D5C2]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D5C2, + }, + [0x1D5C3]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D5C3, + }, + [0x1D5C4]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D5C4, + }, + [0x1D5C5]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D5C5, + }, + [0x1D5C6]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D5C6, + }, + [0x1D5C7]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D5C7, + }, + [0x1D5C8]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D5C8, + }, + [0x1D5C9]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D5C9, + }, + [0x1D5CA]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D5CA, + }, + [0x1D5CB]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D5CB, + }, + [0x1D5CC]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D5CC, + }, + [0x1D5CD]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D5CD, + }, + [0x1D5CE]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D5CE, + }, + [0x1D5CF]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D5CF, + }, + [0x1D5D0]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D5D0, + }, + [0x1D5D1]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D5D1, + }, + [0x1D5D2]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D5D2, + }, + [0x1D5D3]={ + category="ll", + description="MATHEMATICAL SANS-SERIF SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D5D3, + }, + [0x1D5D4]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D5D4, + visual="bf", + }, + [0x1D5D5]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D5D5, + visual="bf", + }, + [0x1D5D6]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D5D6, + visual="bf", + }, + [0x1D5D7]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D5D7, + visual="bf", + }, + [0x1D5D8]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D5D8, + visual="bf", + }, + [0x1D5D9]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D5D9, + visual="bf", + }, + [0x1D5DA]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D5DA, + visual="bf", + }, + [0x1D5DB]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL H", + direction="l", + linebreak="al", + specials={ "font", 0x48 }, + unicodeslot=0x1D5DB, + visual="bf", + }, + [0x1D5DC]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D5DC, + visual="bf", + }, + [0x1D5DD]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D5DD, + visual="bf", + }, + [0x1D5DE]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D5DE, + visual="bf", + }, + [0x1D5DF]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D5DF, + visual="bf", + }, + [0x1D5E0]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D5E0, + visual="bf", + }, + [0x1D5E1]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D5E1, + visual="bf", + }, + [0x1D5E2]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D5E2, + visual="bf", + }, + [0x1D5E3]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D5E3, + visual="bf", + }, + [0x1D5E4]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL Q", + direction="l", + linebreak="al", + specials={ "font", 0x51 }, + unicodeslot=0x1D5E4, + visual="bf", + }, + [0x1D5E5]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL R", + direction="l", + linebreak="al", + specials={ "font", 0x52 }, + unicodeslot=0x1D5E5, + visual="bf", + }, + [0x1D5E6]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL S", + direction="l", + linebreak="al", + specials={ "font", 0x53 }, + unicodeslot=0x1D5E6, + visual="bf", + }, + [0x1D5E7]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL T", + direction="l", + linebreak="al", + specials={ "font", 0x54 }, + unicodeslot=0x1D5E7, + visual="bf", + }, + [0x1D5E8]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL U", + direction="l", + linebreak="al", + specials={ "font", 0x55 }, + unicodeslot=0x1D5E8, + visual="bf", + }, + [0x1D5E9]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL V", + direction="l", + linebreak="al", + specials={ "font", 0x56 }, + unicodeslot=0x1D5E9, + visual="bf", + }, + [0x1D5EA]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL W", + direction="l", + linebreak="al", + specials={ "font", 0x57 }, + unicodeslot=0x1D5EA, + visual="bf", + }, + [0x1D5EB]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL X", + direction="l", + linebreak="al", + specials={ "font", 0x58 }, + unicodeslot=0x1D5EB, + visual="bf", + }, + [0x1D5EC]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL Y", + direction="l", + linebreak="al", + specials={ "font", 0x59 }, + unicodeslot=0x1D5EC, + visual="bf", + }, + [0x1D5ED]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL Z", + direction="l", + linebreak="al", + specials={ "font", 0x5A }, + unicodeslot=0x1D5ED, + visual="bf", + }, + [0x1D5EE]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL A", + direction="l", + linebreak="al", + specials={ "font", 0x61 }, + unicodeslot=0x1D5EE, + visual="bf", + }, + [0x1D5EF]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL B", + direction="l", + linebreak="al", + specials={ "font", 0x62 }, + unicodeslot=0x1D5EF, + visual="bf", + }, + [0x1D5F0]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL C", + direction="l", + linebreak="al", + specials={ "font", 0x63 }, + unicodeslot=0x1D5F0, + visual="bf", + }, + [0x1D5F1]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL D", + direction="l", + linebreak="al", + specials={ "font", 0x64 }, + unicodeslot=0x1D5F1, + visual="bf", + }, + [0x1D5F2]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL E", + direction="l", + linebreak="al", + specials={ "font", 0x65 }, + unicodeslot=0x1D5F2, + visual="bf", + }, + [0x1D5F3]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL F", + direction="l", + linebreak="al", + specials={ "font", 0x66 }, + unicodeslot=0x1D5F3, + visual="bf", + }, + [0x1D5F4]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL G", + direction="l", + linebreak="al", + specials={ "font", 0x67 }, + unicodeslot=0x1D5F4, + visual="bf", + }, + [0x1D5F5]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D5F5, + visual="bf", + }, + [0x1D5F6]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D5F6, + visual="bf", + }, + [0x1D5F7]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D5F7, + visual="bf", + }, + [0x1D5F8]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D5F8, + visual="bf", + }, + [0x1D5F9]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D5F9, + visual="bf", + }, + [0x1D5FA]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D5FA, + visual="bf", + }, + [0x1D5FB]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D5FB, + visual="bf", + }, + [0x1D5FC]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D5FC, + visual="bf", + }, + [0x1D5FD]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D5FD, + visual="bf", + }, + [0x1D5FE]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D5FE, + visual="bf", + }, + [0x1D5FF]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D5FF, + visual="bf", + }, + [0x1D600]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D600, + visual="bf", + }, + [0x1D601]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D601, + visual="bf", + }, + [0x1D602]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D602, + visual="bf", + }, + [0x1D603]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D603, + visual="bf", + }, + [0x1D604]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D604, + visual="bf", + }, + [0x1D605]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D605, + visual="bf", + }, + [0x1D606]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D606, + visual="bf", + }, + [0x1D607]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D607, + visual="bf", + }, + [0x1D608]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL A", + direction="l", + linebreak="al", + specials={ "font", 0x41 }, + unicodeslot=0x1D608, + visual="it", + }, + [0x1D609]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL B", + direction="l", + linebreak="al", + specials={ "font", 0x42 }, + unicodeslot=0x1D609, + visual="it", + }, + [0x1D60A]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL C", + direction="l", + linebreak="al", + specials={ "font", 0x43 }, + unicodeslot=0x1D60A, + visual="it", + }, + [0x1D60B]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL D", + direction="l", + linebreak="al", + specials={ "font", 0x44 }, + unicodeslot=0x1D60B, + visual="it", + }, + [0x1D60C]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL E", + direction="l", + linebreak="al", + specials={ "font", 0x45 }, + unicodeslot=0x1D60C, + visual="it", + }, + [0x1D60D]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL F", + direction="l", + linebreak="al", + specials={ "font", 0x46 }, + unicodeslot=0x1D60D, + visual="it", + }, + [0x1D60E]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL G", + direction="l", + linebreak="al", + specials={ "font", 0x47 }, + unicodeslot=0x1D60E, + visual="it", + }, + [0x1D60F]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL H", + direction="l", + linebreak="al", + specials={ "font", 0x48 }, + unicodeslot=0x1D60F, + visual="it", + }, + [0x1D610]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL I", + direction="l", + linebreak="al", + specials={ "font", 0x49 }, + unicodeslot=0x1D610, + visual="it", + }, + [0x1D611]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL J", + direction="l", + linebreak="al", + specials={ "font", 0x4A }, + unicodeslot=0x1D611, + visual="it", + }, + [0x1D612]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL K", + direction="l", + linebreak="al", + specials={ "font", 0x4B }, + unicodeslot=0x1D612, + visual="it", + }, + [0x1D613]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL L", + direction="l", + linebreak="al", + specials={ "font", 0x4C }, + unicodeslot=0x1D613, + visual="it", + }, + [0x1D614]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL M", + direction="l", + linebreak="al", + specials={ "font", 0x4D }, + unicodeslot=0x1D614, + visual="it", + }, + [0x1D615]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL N", + direction="l", + linebreak="al", + specials={ "font", 0x4E }, + unicodeslot=0x1D615, + visual="it", + }, + [0x1D616]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL O", + direction="l", + linebreak="al", + specials={ "font", 0x4F }, + unicodeslot=0x1D616, + visual="it", + }, + [0x1D617]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL P", + direction="l", + linebreak="al", + specials={ "font", 0x50 }, + unicodeslot=0x1D617, + visual="it", }, - [0x1D231]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0020", - direction="on", + [0x1D618]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL Q", + direction="l", linebreak="al", - unicodeslot=0x1D231, + specials={ "font", 0x51 }, + unicodeslot=0x1D618, + visual="it", }, - [0x1D232]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0024", - direction="on", + [0x1D619]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL R", + direction="l", linebreak="al", - unicodeslot=0x1D232, + specials={ "font", 0x52 }, + unicodeslot=0x1D619, + visual="it", }, - [0x1D233]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0025", - direction="on", + [0x1D61A]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL S", + direction="l", linebreak="al", - unicodeslot=0x1D233, + specials={ "font", 0x53 }, + unicodeslot=0x1D61A, + visual="it", }, - [0x1D234]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0026", - direction="on", + [0x1D61B]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL T", + direction="l", linebreak="al", - unicodeslot=0x1D234, + specials={ "font", 0x54 }, + unicodeslot=0x1D61B, + visual="it", }, - [0x1D235]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0027", - direction="on", + [0x1D61C]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL U", + direction="l", linebreak="al", - unicodeslot=0x1D235, + specials={ "font", 0x55 }, + unicodeslot=0x1D61C, + visual="it", }, - [0x1D236]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0028", - direction="on", + [0x1D61D]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL V", + direction="l", linebreak="al", - unicodeslot=0x1D236, + specials={ "font", 0x56 }, + unicodeslot=0x1D61D, + visual="it", }, - [0x1D237]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x002A", - direction="on", + [0x1D61E]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL W", + direction="l", linebreak="al", - unicodeslot=0x1D237, + specials={ "font", 0x57 }, + unicodeslot=0x1D61E, + visual="it", }, - [0x1D238]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x002B", - direction="on", + [0x1D61F]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL X", + direction="l", linebreak="al", - unicodeslot=0x1D238, + specials={ "font", 0x58 }, + unicodeslot=0x1D61F, + visual="it", }, - [0x1D239]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x002D", - direction="on", + [0x1D620]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL Y", + direction="l", linebreak="al", - unicodeslot=0x1D239, + specials={ "font", 0x59 }, + unicodeslot=0x1D620, + visual="it", }, - [0x1D23A]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x002F", - direction="on", + [0x1D621]={ + category="lu", + description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z", + direction="l", linebreak="al", - unicodeslot=0x1D23A, + specials={ "font", 0x5A }, + unicodeslot=0x1D621, + visual="it", }, - [0x1D23B]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0030", - direction="on", + [0x1D622]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL A", + direction="l", linebreak="al", - unicodeslot=0x1D23B, + specials={ "font", 0x61 }, + unicodeslot=0x1D622, + visual="it", }, - [0x1D23C]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0031", - direction="on", + [0x1D623]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL B", + direction="l", linebreak="al", - unicodeslot=0x1D23C, + specials={ "font", 0x62 }, + unicodeslot=0x1D623, + visual="it", }, - [0x1D23D]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0032", - direction="on", + [0x1D624]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL C", + direction="l", linebreak="al", - unicodeslot=0x1D23D, + specials={ "font", 0x63 }, + unicodeslot=0x1D624, + visual="it", }, - [0x1D23E]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0033", - direction="on", + [0x1D625]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL D", + direction="l", linebreak="al", - unicodeslot=0x1D23E, + specials={ "font", 0x64 }, + unicodeslot=0x1D625, + visual="it", }, - [0x1D23F]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0034", - direction="on", + [0x1D626]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL E", + direction="l", linebreak="al", - unicodeslot=0x1D23F, + specials={ "font", 0x65 }, + unicodeslot=0x1D626, + visual="it", }, - [0x1D240]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0035", - direction="on", + [0x1D627]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL F", + direction="l", linebreak="al", - unicodeslot=0x1D240, + specials={ "font", 0x66 }, + unicodeslot=0x1D627, + visual="it", }, - [0x1D241]={ - category="so", - description="GREEK INSTRUMENTAL NOTATION SYMBOL-0x0036", - direction="on", + [0x1D628]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL G", + direction="l", linebreak="al", - unicodeslot=0x1D241, + specials={ "font", 0x67 }, + unicodeslot=0x1D628, + visual="it", }, - [0x1D242]={ - category="mn", - combining=0xE6, - description="COMBINING GREEK MUSICAL TRISEME", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D242, + [0x1D629]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL H", + direction="l", + linebreak="al", + specials={ "font", 0x68 }, + unicodeslot=0x1D629, + visual="it", }, - [0x1D243]={ - category="mn", - combining=0xE6, - description="COMBINING GREEK MUSICAL TETRASEME", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D243, + [0x1D62A]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D62A, + visual="it", }, - [0x1D244]={ - category="mn", - combining=0xE6, - description="COMBINING GREEK MUSICAL PENTASEME", - direction="nsm", - linebreak="cm", - unicodeslot=0x1D244, + [0x1D62B]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D62B, + visual="it", }, - [0x1D245]={ - category="so", - description="GREEK MUSICAL LEIMMA", - direction="on", + [0x1D62C]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL K", + direction="l", linebreak="al", - unicodeslot=0x1D245, + specials={ "font", 0x6B }, + unicodeslot=0x1D62C, + visual="it", }, - [0x1D300]={ - category="so", - description="MONOGRAM FOR EARTH", - direction="on", + [0x1D62D]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL L", + direction="l", linebreak="al", - unicodeslot=0x1D300, + specials={ "font", 0x6C }, + unicodeslot=0x1D62D, + visual="it", }, - [0x1D301]={ - category="so", - description="DIGRAM FOR HEAVENLY EARTH", - direction="on", + [0x1D62E]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL M", + direction="l", linebreak="al", - unicodeslot=0x1D301, + specials={ "font", 0x6D }, + unicodeslot=0x1D62E, + visual="it", }, - [0x1D302]={ - category="so", - description="DIGRAM FOR HUMAN EARTH", - direction="on", + [0x1D62F]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL N", + direction="l", linebreak="al", - unicodeslot=0x1D302, + specials={ "font", 0x6E }, + unicodeslot=0x1D62F, + visual="it", }, - [0x1D303]={ - category="so", - description="DIGRAM FOR EARTHLY HEAVEN", - direction="on", + [0x1D630]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL O", + direction="l", linebreak="al", - unicodeslot=0x1D303, + specials={ "font", 0x6F }, + unicodeslot=0x1D630, + visual="it", }, - [0x1D304]={ - category="so", - description="DIGRAM FOR EARTHLY HUMAN", - direction="on", + [0x1D631]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL P", + direction="l", linebreak="al", - unicodeslot=0x1D304, + specials={ "font", 0x70 }, + unicodeslot=0x1D631, + visual="it", }, - [0x1D305]={ - category="so", - description="DIGRAM FOR EARTH", - direction="on", + [0x1D632]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL Q", + direction="l", linebreak="al", - unicodeslot=0x1D305, + specials={ "font", 0x71 }, + unicodeslot=0x1D632, + visual="it", }, - [0x1D306]={ - category="so", - description="TETRAGRAM FOR CENTRE", - direction="on", + [0x1D633]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL R", + direction="l", linebreak="al", - unicodeslot=0x1D306, + specials={ "font", 0x72 }, + unicodeslot=0x1D633, + visual="it", }, - [0x1D307]={ - category="so", - description="TETRAGRAM FOR FULL CIRCLE", - direction="on", + [0x1D634]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL S", + direction="l", linebreak="al", - unicodeslot=0x1D307, + specials={ "font", 0x73 }, + unicodeslot=0x1D634, + visual="it", }, - [0x1D308]={ - category="so", - description="TETRAGRAM FOR MIRED", - direction="on", + [0x1D635]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL T", + direction="l", linebreak="al", - unicodeslot=0x1D308, + specials={ "font", 0x74 }, + unicodeslot=0x1D635, + visual="it", }, - [0x1D309]={ - category="so", - description="TETRAGRAM FOR BARRIER", - direction="on", + [0x1D636]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL U", + direction="l", linebreak="al", - unicodeslot=0x1D309, + specials={ "font", 0x75 }, + unicodeslot=0x1D636, + visual="it", }, - [0x1D30A]={ - category="so", - description="TETRAGRAM FOR KEEPING SMALL", - direction="on", + [0x1D637]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL V", + direction="l", linebreak="al", - unicodeslot=0x1D30A, + specials={ "font", 0x76 }, + unicodeslot=0x1D637, + visual="it", }, - [0x1D30B]={ - category="so", - description="TETRAGRAM FOR CONTRARIETY", - direction="on", + [0x1D638]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL W", + direction="l", linebreak="al", - unicodeslot=0x1D30B, + specials={ "font", 0x77 }, + unicodeslot=0x1D638, + visual="it", }, - [0x1D30C]={ - category="so", - description="TETRAGRAM FOR ASCENT", - direction="on", + [0x1D639]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL X", + direction="l", linebreak="al", - unicodeslot=0x1D30C, + specials={ "font", 0x78 }, + unicodeslot=0x1D639, + visual="it", }, - [0x1D30D]={ - category="so", - description="TETRAGRAM FOR OPPOSITION", - direction="on", + [0x1D63A]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL Y", + direction="l", linebreak="al", - unicodeslot=0x1D30D, + specials={ "font", 0x79 }, + unicodeslot=0x1D63A, + visual="it", }, - [0x1D30E]={ - category="so", - description="TETRAGRAM FOR BRANCHING OUT", - direction="on", + [0x1D63B]={ + category="ll", + description="MATHEMATICAL SANS-SERIF ITALIC SMALL Z", + direction="l", linebreak="al", - unicodeslot=0x1D30E, + specials={ "font", 0x7A }, + unicodeslot=0x1D63B, + visual="it", }, - [0x1D30F]={ - category="so", - description="TETRAGRAM FOR DEFECTIVENESS OR DISTORTION", - direction="on", + [0x1D63C]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A", + direction="l", linebreak="al", - unicodeslot=0x1D30F, + specials={ "font", 0x41 }, + unicodeslot=0x1D63C, + visual="bi", }, - [0x1D310]={ - category="so", - description="TETRAGRAM FOR DIVERGENCE", - direction="on", + [0x1D63D]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL B", + direction="l", linebreak="al", - unicodeslot=0x1D310, + specials={ "font", 0x42 }, + unicodeslot=0x1D63D, + visual="bi", }, - [0x1D311]={ - category="so", - description="TETRAGRAM FOR YOUTHFULNESS", - direction="on", + [0x1D63E]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL C", + direction="l", linebreak="al", - unicodeslot=0x1D311, + specials={ "font", 0x43 }, + unicodeslot=0x1D63E, + visual="bi", }, - [0x1D312]={ - category="so", - description="TETRAGRAM FOR INCREASE", - direction="on", + [0x1D63F]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL D", + direction="l", linebreak="al", - unicodeslot=0x1D312, + specials={ "font", 0x44 }, + unicodeslot=0x1D63F, + visual="bi", }, - [0x1D313]={ - category="so", - description="TETRAGRAM FOR PENETRATION", - direction="on", + [0x1D640]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL E", + direction="l", linebreak="al", - unicodeslot=0x1D313, + specials={ "font", 0x45 }, + unicodeslot=0x1D640, + visual="bi", }, - [0x1D314]={ - category="so", - description="TETRAGRAM FOR REACH", - direction="on", + [0x1D641]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL F", + direction="l", linebreak="al", - unicodeslot=0x1D314, + specials={ "font", 0x46 }, + unicodeslot=0x1D641, + visual="bi", }, - [0x1D315]={ - category="so", - description="TETRAGRAM FOR CONTACT", - direction="on", + [0x1D642]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL G", + direction="l", linebreak="al", - unicodeslot=0x1D315, + specials={ "font", 0x47 }, + unicodeslot=0x1D642, + visual="bi", }, - [0x1D316]={ - category="so", - description="TETRAGRAM FOR HOLDING BACK", - direction="on", + [0x1D643]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL H", + direction="l", linebreak="al", - unicodeslot=0x1D316, + specials={ "font", 0x48 }, + unicodeslot=0x1D643, + visual="bi", }, - [0x1D317]={ - category="so", - description="TETRAGRAM FOR WAITING", - direction="on", + [0x1D644]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL I", + direction="l", linebreak="al", - unicodeslot=0x1D317, + specials={ "font", 0x49 }, + unicodeslot=0x1D644, + visual="bi", }, - [0x1D318]={ - category="so", - description="TETRAGRAM FOR FOLLOWING", - direction="on", + [0x1D645]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL J", + direction="l", linebreak="al", - unicodeslot=0x1D318, + specials={ "font", 0x4A }, + unicodeslot=0x1D645, + visual="bi", }, - [0x1D319]={ - category="so", - description="TETRAGRAM FOR ADVANCE", - direction="on", + [0x1D646]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL K", + direction="l", linebreak="al", - unicodeslot=0x1D319, + specials={ "font", 0x4B }, + unicodeslot=0x1D646, + visual="bi", }, - [0x1D31A]={ - category="so", - description="TETRAGRAM FOR RELEASE", - direction="on", + [0x1D647]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL L", + direction="l", linebreak="al", - unicodeslot=0x1D31A, + specials={ "font", 0x4C }, + unicodeslot=0x1D647, + visual="bi", }, - [0x1D31B]={ - category="so", - description="TETRAGRAM FOR RESISTANCE", - direction="on", + [0x1D648]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL M", + direction="l", linebreak="al", - unicodeslot=0x1D31B, + specials={ "font", 0x4D }, + unicodeslot=0x1D648, + visual="bi", }, - [0x1D31C]={ - category="so", - description="TETRAGRAM FOR EASE", - direction="on", + [0x1D649]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL N", + direction="l", linebreak="al", - unicodeslot=0x1D31C, + specials={ "font", 0x4E }, + unicodeslot=0x1D649, + visual="bi", }, - [0x1D31D]={ - category="so", - description="TETRAGRAM FOR JOY", - direction="on", + [0x1D64A]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL O", + direction="l", linebreak="al", - unicodeslot=0x1D31D, + specials={ "font", 0x4F }, + unicodeslot=0x1D64A, + visual="bi", }, - [0x1D31E]={ - category="so", - description="TETRAGRAM FOR CONTENTION", - direction="on", + [0x1D64B]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL P", + direction="l", linebreak="al", - unicodeslot=0x1D31E, + specials={ "font", 0x50 }, + unicodeslot=0x1D64B, + visual="bi", }, - [0x1D31F]={ - category="so", - description="TETRAGRAM FOR ENDEAVOUR", - direction="on", + [0x1D64C]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Q", + direction="l", linebreak="al", - unicodeslot=0x1D31F, + specials={ "font", 0x51 }, + unicodeslot=0x1D64C, + visual="bi", }, - [0x1D320]={ - category="so", - description="TETRAGRAM FOR DUTIES", - direction="on", + [0x1D64D]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL R", + direction="l", linebreak="al", - unicodeslot=0x1D320, + specials={ "font", 0x52 }, + unicodeslot=0x1D64D, + visual="bi", }, - [0x1D321]={ - category="so", - description="TETRAGRAM FOR CHANGE", - direction="on", + [0x1D64E]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL S", + direction="l", linebreak="al", - unicodeslot=0x1D321, + specials={ "font", 0x53 }, + unicodeslot=0x1D64E, + visual="bi", }, - [0x1D322]={ - category="so", - description="TETRAGRAM FOR DECISIVENESS", - direction="on", + [0x1D64F]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL T", + direction="l", linebreak="al", - unicodeslot=0x1D322, + specials={ "font", 0x54 }, + unicodeslot=0x1D64F, + visual="bi", }, - [0x1D323]={ - category="so", - description="TETRAGRAM FOR BOLD RESOLUTION", - direction="on", + [0x1D650]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL U", + direction="l", linebreak="al", - unicodeslot=0x1D323, + specials={ "font", 0x55 }, + unicodeslot=0x1D650, + visual="bi", }, - [0x1D324]={ - category="so", - description="TETRAGRAM FOR PACKING", - direction="on", + [0x1D651]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL V", + direction="l", linebreak="al", - unicodeslot=0x1D324, + specials={ "font", 0x56 }, + unicodeslot=0x1D651, + visual="bi", }, - [0x1D325]={ - category="so", - description="TETRAGRAM FOR LEGION", - direction="on", + [0x1D652]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL W", + direction="l", linebreak="al", - unicodeslot=0x1D325, + specials={ "font", 0x57 }, + unicodeslot=0x1D652, + visual="bi", }, - [0x1D326]={ - category="so", - description="TETRAGRAM FOR CLOSENESS", - direction="on", + [0x1D653]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL X", + direction="l", linebreak="al", - unicodeslot=0x1D326, + specials={ "font", 0x58 }, + unicodeslot=0x1D653, + visual="bi", }, - [0x1D327]={ - category="so", - description="TETRAGRAM FOR KINSHIP", - direction="on", + [0x1D654]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Y", + direction="l", linebreak="al", - unicodeslot=0x1D327, + specials={ "font", 0x59 }, + unicodeslot=0x1D654, + visual="bi", }, - [0x1D328]={ - category="so", - description="TETRAGRAM FOR GATHERING", - direction="on", + [0x1D655]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z", + direction="l", linebreak="al", - unicodeslot=0x1D328, + specials={ "font", 0x5A }, + unicodeslot=0x1D655, + visual="bi", }, - [0x1D329]={ - category="so", - description="TETRAGRAM FOR STRENGTH", - direction="on", + [0x1D656]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A", + direction="l", linebreak="al", - unicodeslot=0x1D329, + specials={ "font", 0x61 }, + unicodeslot=0x1D656, + visual="bi", }, - [0x1D32A]={ - category="so", - description="TETRAGRAM FOR PURITY", - direction="on", + [0x1D657]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B", + direction="l", linebreak="al", - unicodeslot=0x1D32A, + specials={ "font", 0x62 }, + unicodeslot=0x1D657, + visual="bi", }, - [0x1D32B]={ - category="so", - description="TETRAGRAM FOR FULLNESS", - direction="on", + [0x1D658]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C", + direction="l", linebreak="al", - unicodeslot=0x1D32B, + specials={ "font", 0x63 }, + unicodeslot=0x1D658, + visual="bi", }, - [0x1D32C]={ - category="so", - description="TETRAGRAM FOR RESIDENCE", - direction="on", + [0x1D659]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D", + direction="l", linebreak="al", - unicodeslot=0x1D32C, + specials={ "font", 0x64 }, + unicodeslot=0x1D659, + visual="bi", }, - [0x1D32D]={ - category="so", - description="TETRAGRAM FOR LAW OR MODEL", - direction="on", + [0x1D65A]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E", + direction="l", linebreak="al", - unicodeslot=0x1D32D, + specials={ "font", 0x65 }, + unicodeslot=0x1D65A, + visual="bi", }, - [0x1D32E]={ - category="so", - description="TETRAGRAM FOR RESPONSE", - direction="on", + [0x1D65B]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F", + direction="l", linebreak="al", - unicodeslot=0x1D32E, + specials={ "font", 0x66 }, + unicodeslot=0x1D65B, + visual="bi", }, - [0x1D32F]={ - category="so", - description="TETRAGRAM FOR GOING TO MEET", - direction="on", + [0x1D65C]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G", + direction="l", linebreak="al", - unicodeslot=0x1D32F, + specials={ "font", 0x67 }, + unicodeslot=0x1D65C, + visual="bi", }, - [0x1D330]={ - category="so", - description="TETRAGRAM FOR ENCOUNTERS", - direction="on", + [0x1D65D]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H", + direction="l", linebreak="al", - unicodeslot=0x1D330, + specials={ "font", 0x68 }, + unicodeslot=0x1D65D, + visual="bi", }, - [0x1D331]={ - category="so", - description="TETRAGRAM FOR STOVE", - direction="on", + [0x1D65E]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I", + direction="l", + linebreak="al", + specials={ "font", 0x69 }, + unicodeslot=0x1D65E, + visual="bi", + }, + [0x1D65F]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J", + direction="l", + linebreak="al", + specials={ "font", 0x6A }, + unicodeslot=0x1D65F, + visual="bi", + }, + [0x1D660]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K", + direction="l", + linebreak="al", + specials={ "font", 0x6B }, + unicodeslot=0x1D660, + visual="bi", + }, + [0x1D661]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L", + direction="l", + linebreak="al", + specials={ "font", 0x6C }, + unicodeslot=0x1D661, + visual="bi", + }, + [0x1D662]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M", + direction="l", + linebreak="al", + specials={ "font", 0x6D }, + unicodeslot=0x1D662, + visual="bi", + }, + [0x1D663]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N", + direction="l", + linebreak="al", + specials={ "font", 0x6E }, + unicodeslot=0x1D663, + visual="bi", + }, + [0x1D664]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O", + direction="l", + linebreak="al", + specials={ "font", 0x6F }, + unicodeslot=0x1D664, + visual="bi", + }, + [0x1D665]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P", + direction="l", + linebreak="al", + specials={ "font", 0x70 }, + unicodeslot=0x1D665, + visual="bi", + }, + [0x1D666]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q", + direction="l", + linebreak="al", + specials={ "font", 0x71 }, + unicodeslot=0x1D666, + visual="bi", + }, + [0x1D667]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R", + direction="l", + linebreak="al", + specials={ "font", 0x72 }, + unicodeslot=0x1D667, + visual="bi", + }, + [0x1D668]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S", + direction="l", + linebreak="al", + specials={ "font", 0x73 }, + unicodeslot=0x1D668, + visual="bi", + }, + [0x1D669]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T", + direction="l", + linebreak="al", + specials={ "font", 0x74 }, + unicodeslot=0x1D669, + visual="bi", + }, + [0x1D66A]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U", + direction="l", + linebreak="al", + specials={ "font", 0x75 }, + unicodeslot=0x1D66A, + visual="bi", + }, + [0x1D66B]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V", + direction="l", + linebreak="al", + specials={ "font", 0x76 }, + unicodeslot=0x1D66B, + visual="bi", + }, + [0x1D66C]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W", + direction="l", + linebreak="al", + specials={ "font", 0x77 }, + unicodeslot=0x1D66C, + visual="bi", + }, + [0x1D66D]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X", + direction="l", + linebreak="al", + specials={ "font", 0x78 }, + unicodeslot=0x1D66D, + visual="bi", + }, + [0x1D66E]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y", + direction="l", + linebreak="al", + specials={ "font", 0x79 }, + unicodeslot=0x1D66E, + visual="bi", + }, + [0x1D66F]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z", + direction="l", + linebreak="al", + specials={ "font", 0x7A }, + unicodeslot=0x1D66F, + visual="bi", + }, + [0x1D670]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL A", + direction="l", linebreak="al", - unicodeslot=0x1D331, + specials={ "font", 0x41 }, + unicodeslot=0x1D670, }, - [0x1D332]={ - category="so", - description="TETRAGRAM FOR GREATNESS", - direction="on", + [0x1D671]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL B", + direction="l", linebreak="al", - unicodeslot=0x1D332, + specials={ "font", 0x42 }, + unicodeslot=0x1D671, }, - [0x1D333]={ - category="so", - description="TETRAGRAM FOR ENLARGEMENT", - direction="on", + [0x1D672]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL C", + direction="l", linebreak="al", - unicodeslot=0x1D333, + specials={ "font", 0x43 }, + unicodeslot=0x1D672, }, - [0x1D334]={ - category="so", - description="TETRAGRAM FOR PATTERN", - direction="on", + [0x1D673]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL D", + direction="l", linebreak="al", - unicodeslot=0x1D334, + specials={ "font", 0x44 }, + unicodeslot=0x1D673, }, - [0x1D335]={ - category="so", - description="TETRAGRAM FOR RITUAL", - direction="on", + [0x1D674]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL E", + direction="l", linebreak="al", - unicodeslot=0x1D335, + specials={ "font", 0x45 }, + unicodeslot=0x1D674, }, - [0x1D336]={ - category="so", - description="TETRAGRAM FOR FLIGHT", - direction="on", + [0x1D675]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL F", + direction="l", linebreak="al", - unicodeslot=0x1D336, + specials={ "font", 0x46 }, + unicodeslot=0x1D675, }, - [0x1D337]={ - category="so", - description="TETRAGRAM FOR VASTNESS OR WASTING", - direction="on", + [0x1D676]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL G", + direction="l", linebreak="al", - unicodeslot=0x1D337, + specials={ "font", 0x47 }, + unicodeslot=0x1D676, }, - [0x1D338]={ - category="so", - description="TETRAGRAM FOR CONSTANCY", - direction="on", + [0x1D677]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL H", + direction="l", linebreak="al", - unicodeslot=0x1D338, + specials={ "font", 0x48 }, + unicodeslot=0x1D677, }, - [0x1D339]={ - category="so", - description="TETRAGRAM FOR MEASURE", - direction="on", + [0x1D678]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL I", + direction="l", linebreak="al", - unicodeslot=0x1D339, + specials={ "font", 0x49 }, + unicodeslot=0x1D678, }, - [0x1D33A]={ - category="so", - description="TETRAGRAM FOR ETERNITY", - direction="on", + [0x1D679]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL J", + direction="l", linebreak="al", - unicodeslot=0x1D33A, + specials={ "font", 0x4A }, + unicodeslot=0x1D679, }, - [0x1D33B]={ - category="so", - description="TETRAGRAM FOR UNITY", - direction="on", + [0x1D67A]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL K", + direction="l", linebreak="al", - unicodeslot=0x1D33B, + specials={ "font", 0x4B }, + unicodeslot=0x1D67A, }, - [0x1D33C]={ - category="so", - description="TETRAGRAM FOR DIMINISHMENT", - direction="on", + [0x1D67B]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL L", + direction="l", linebreak="al", - unicodeslot=0x1D33C, + specials={ "font", 0x4C }, + unicodeslot=0x1D67B, }, - [0x1D33D]={ - category="so", - description="TETRAGRAM FOR CLOSED MOUTH", - direction="on", + [0x1D67C]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL M", + direction="l", linebreak="al", - unicodeslot=0x1D33D, + specials={ "font", 0x4D }, + unicodeslot=0x1D67C, }, - [0x1D33E]={ - category="so", - description="TETRAGRAM FOR GUARDEDNESS", - direction="on", + [0x1D67D]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL N", + direction="l", linebreak="al", - unicodeslot=0x1D33E, + specials={ "font", 0x4E }, + unicodeslot=0x1D67D, }, - [0x1D33F]={ - category="so", - description="TETRAGRAM FOR GATHERING IN", - direction="on", + [0x1D67E]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL O", + direction="l", linebreak="al", - unicodeslot=0x1D33F, + specials={ "font", 0x4F }, + unicodeslot=0x1D67E, }, - [0x1D340]={ - category="so", - description="TETRAGRAM FOR MASSING", - direction="on", + [0x1D67F]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL P", + direction="l", linebreak="al", - unicodeslot=0x1D340, + specials={ "font", 0x50 }, + unicodeslot=0x1D67F, }, - [0x1D341]={ - category="so", - description="TETRAGRAM FOR ACCUMULATION", - direction="on", + [0x1D680]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL Q", + direction="l", linebreak="al", - unicodeslot=0x1D341, + specials={ "font", 0x51 }, + unicodeslot=0x1D680, }, - [0x1D342]={ - category="so", - description="TETRAGRAM FOR EMBELLISHMENT", - direction="on", + [0x1D681]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL R", + direction="l", linebreak="al", - unicodeslot=0x1D342, + specials={ "font", 0x52 }, + unicodeslot=0x1D681, }, - [0x1D343]={ - category="so", - description="TETRAGRAM FOR DOUBT", - direction="on", + [0x1D682]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL S", + direction="l", linebreak="al", - unicodeslot=0x1D343, + specials={ "font", 0x53 }, + unicodeslot=0x1D682, }, - [0x1D344]={ - category="so", - description="TETRAGRAM FOR WATCH", - direction="on", + [0x1D683]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL T", + direction="l", linebreak="al", - unicodeslot=0x1D344, + specials={ "font", 0x54 }, + unicodeslot=0x1D683, }, - [0x1D345]={ - category="so", - description="TETRAGRAM FOR SINKING", - direction="on", + [0x1D684]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL U", + direction="l", linebreak="al", - unicodeslot=0x1D345, + specials={ "font", 0x55 }, + unicodeslot=0x1D684, }, - [0x1D346]={ - category="so", - description="TETRAGRAM FOR INNER", - direction="on", + [0x1D685]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL V", + direction="l", linebreak="al", - unicodeslot=0x1D346, + specials={ "font", 0x56 }, + unicodeslot=0x1D685, }, - [0x1D347]={ - category="so", - description="TETRAGRAM FOR DEPARTURE", - direction="on", + [0x1D686]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL W", + direction="l", linebreak="al", - unicodeslot=0x1D347, + specials={ "font", 0x57 }, + unicodeslot=0x1D686, }, - [0x1D348]={ - category="so", - description="TETRAGRAM FOR DARKENING", - direction="on", + [0x1D687]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL X", + direction="l", linebreak="al", - unicodeslot=0x1D348, + specials={ "font", 0x58 }, + unicodeslot=0x1D687, }, - [0x1D349]={ - category="so", - description="TETRAGRAM FOR DIMMING", - direction="on", + [0x1D688]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL Y", + direction="l", linebreak="al", - unicodeslot=0x1D349, + specials={ "font", 0x59 }, + unicodeslot=0x1D688, }, - [0x1D34A]={ - category="so", - description="TETRAGRAM FOR EXHAUSTION", - direction="on", + [0x1D689]={ + category="lu", + description="MATHEMATICAL MONOSPACE CAPITAL Z", + direction="l", linebreak="al", - unicodeslot=0x1D34A, + specials={ "font", 0x5A }, + unicodeslot=0x1D689, }, - [0x1D34B]={ - category="so", - description="TETRAGRAM FOR SEVERANCE", - direction="on", + [0x1D68A]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL A", + direction="l", linebreak="al", - unicodeslot=0x1D34B, + specials={ "font", 0x61 }, + unicodeslot=0x1D68A, }, - [0x1D34C]={ - category="so", - description="TETRAGRAM FOR STOPPAGE", - direction="on", + [0x1D68B]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL B", + direction="l", linebreak="al", - unicodeslot=0x1D34C, + specials={ "font", 0x62 }, + unicodeslot=0x1D68B, }, - [0x1D34D]={ - category="so", - description="TETRAGRAM FOR HARDNESS", - direction="on", + [0x1D68C]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL C", + direction="l", linebreak="al", - unicodeslot=0x1D34D, + specials={ "font", 0x63 }, + unicodeslot=0x1D68C, }, - [0x1D34E]={ - category="so", - description="TETRAGRAM FOR COMPLETION", - direction="on", + [0x1D68D]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL D", + direction="l", linebreak="al", - unicodeslot=0x1D34E, + specials={ "font", 0x64 }, + unicodeslot=0x1D68D, }, - [0x1D34F]={ - category="so", - description="TETRAGRAM FOR CLOSURE", - direction="on", + [0x1D68E]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL E", + direction="l", linebreak="al", - unicodeslot=0x1D34F, + specials={ "font", 0x65 }, + unicodeslot=0x1D68E, }, - [0x1D350]={ - category="so", - description="TETRAGRAM FOR FAILURE", - direction="on", + [0x1D68F]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL F", + direction="l", linebreak="al", - unicodeslot=0x1D350, + specials={ "font", 0x66 }, + unicodeslot=0x1D68F, }, - [0x1D351]={ - category="so", - description="TETRAGRAM FOR AGGRAVATION", - direction="on", + [0x1D690]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL G", + direction="l", linebreak="al", - unicodeslot=0x1D351, + specials={ "font", 0x67 }, + unicodeslot=0x1D690, }, - [0x1D352]={ - category="so", - description="TETRAGRAM FOR COMPLIANCE", - direction="on", + [0x1D691]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL H", + direction="l", linebreak="al", - unicodeslot=0x1D352, + specials={ "font", 0x68 }, + unicodeslot=0x1D691, }, - [0x1D353]={ - category="so", - description="TETRAGRAM FOR ON THE VERGE", - direction="on", + [0x1D692]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL I", + direction="l", linebreak="al", - unicodeslot=0x1D353, + specials={ "font", 0x69 }, + unicodeslot=0x1D692, }, - [0x1D354]={ - category="so", - description="TETRAGRAM FOR DIFFICULTIES", - direction="on", + [0x1D693]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL J", + direction="l", linebreak="al", - unicodeslot=0x1D354, + specials={ "font", 0x6A }, + unicodeslot=0x1D693, }, - [0x1D355]={ - category="so", - description="TETRAGRAM FOR LABOURING", - direction="on", + [0x1D694]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL K", + direction="l", linebreak="al", - unicodeslot=0x1D355, + specials={ "font", 0x6B }, + unicodeslot=0x1D694, }, - [0x1D356]={ - category="so", - description="TETRAGRAM FOR FOSTERING", - direction="on", + [0x1D695]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL L", + direction="l", linebreak="al", - unicodeslot=0x1D356, + specials={ "font", 0x6C }, + unicodeslot=0x1D695, }, - [0x1D360]={ - category="no", - description="COUNTING ROD UNIT DIGIT ONE", + [0x1D696]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL M", direction="l", linebreak="al", - unicodeslot=0x1D360, + specials={ "font", 0x6D }, + unicodeslot=0x1D696, }, - [0x1D361]={ - category="no", - description="COUNTING ROD UNIT DIGIT TWO", + [0x1D697]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL N", direction="l", linebreak="al", - unicodeslot=0x1D361, + specials={ "font", 0x6E }, + unicodeslot=0x1D697, }, - [0x1D362]={ - category="no", - description="COUNTING ROD UNIT DIGIT THREE", + [0x1D698]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL O", direction="l", linebreak="al", - unicodeslot=0x1D362, + specials={ "font", 0x6F }, + unicodeslot=0x1D698, }, - [0x1D363]={ - category="no", - description="COUNTING ROD UNIT DIGIT FOUR", + [0x1D699]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL P", direction="l", linebreak="al", - unicodeslot=0x1D363, + specials={ "font", 0x70 }, + unicodeslot=0x1D699, }, - [0x1D364]={ - category="no", - description="COUNTING ROD UNIT DIGIT FIVE", + [0x1D69A]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL Q", direction="l", linebreak="al", - unicodeslot=0x1D364, + specials={ "font", 0x71 }, + unicodeslot=0x1D69A, }, - [0x1D365]={ - category="no", - description="COUNTING ROD UNIT DIGIT SIX", + [0x1D69B]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL R", direction="l", linebreak="al", - unicodeslot=0x1D365, + specials={ "font", 0x72 }, + unicodeslot=0x1D69B, }, - [0x1D366]={ - category="no", - description="COUNTING ROD UNIT DIGIT SEVEN", + [0x1D69C]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL S", direction="l", linebreak="al", - unicodeslot=0x1D366, + specials={ "font", 0x73 }, + unicodeslot=0x1D69C, }, - [0x1D367]={ - category="no", - description="COUNTING ROD UNIT DIGIT EIGHT", + [0x1D69D]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL T", direction="l", linebreak="al", - unicodeslot=0x1D367, + specials={ "font", 0x74 }, + unicodeslot=0x1D69D, }, - [0x1D368]={ - category="no", - description="COUNTING ROD UNIT DIGIT NINE", + [0x1D69E]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL U", direction="l", linebreak="al", - unicodeslot=0x1D368, + specials={ "font", 0x75 }, + unicodeslot=0x1D69E, }, - [0x1D369]={ - category="no", - description="COUNTING ROD TENS DIGIT ONE", + [0x1D69F]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL V", direction="l", linebreak="al", - unicodeslot=0x1D369, + specials={ "font", 0x76 }, + unicodeslot=0x1D69F, }, - [0x1D36A]={ - category="no", - description="COUNTING ROD TENS DIGIT TWO", + [0x1D6A0]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL W", direction="l", linebreak="al", - unicodeslot=0x1D36A, + specials={ "font", 0x77 }, + unicodeslot=0x1D6A0, }, - [0x1D36B]={ - category="no", - description="COUNTING ROD TENS DIGIT THREE", + [0x1D6A1]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL X", direction="l", linebreak="al", - unicodeslot=0x1D36B, + specials={ "font", 0x78 }, + unicodeslot=0x1D6A1, }, - [0x1D36C]={ - category="no", - description="COUNTING ROD TENS DIGIT FOUR", + [0x1D6A2]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL Y", direction="l", linebreak="al", - unicodeslot=0x1D36C, + specials={ "font", 0x79 }, + unicodeslot=0x1D6A2, }, - [0x1D36D]={ - category="no", - description="COUNTING ROD TENS DIGIT FIVE", + [0x1D6A3]={ + category="ll", + description="MATHEMATICAL MONOSPACE SMALL Z", direction="l", linebreak="al", - unicodeslot=0x1D36D, + specials={ "font", 0x7A }, + unicodeslot=0x1D6A3, }, - [0x1D36E]={ - category="no", - description="COUNTING ROD TENS DIGIT SIX", + [0x1D6A4]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL DOTLESS I", direction="l", linebreak="al", - unicodeslot=0x1D36E, + mathclass="default", + mathname="imath", + specials={ "font", 0x131 }, + unicodeslot=0x1D6A4, + visual="it", }, - [0x1D36F]={ - category="no", - description="COUNTING ROD TENS DIGIT SEVEN", + [0x1D6A5]={ + category="ll", + description="MATHEMATICAL ITALIC SMALL DOTLESS J", direction="l", linebreak="al", - unicodeslot=0x1D36F, + mathclass="default", + mathname="jmath", + specials={ "font", 0x237 }, + unicodeslot=0x1D6A5, + visual="it", }, - [0x1D370]={ - category="no", - description="COUNTING ROD TENS DIGIT EIGHT", + [0x1D6A8]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL ALPHA", direction="l", linebreak="al", - unicodeslot=0x1D370, + specials={ "font", 0x391 }, + unicodeslot=0x1D6A8, + visual="bf", }, - [0x1D371]={ - category="no", - description="COUNTING ROD TENS DIGIT NINE", + [0x1D6A9]={ + category="lu", + description="MATHEMATICAL BOLD CAPITAL BETA", direction="l", linebreak="al", - unicodeslot=0x1D371, + specials={ "font", 0x392 }, + unicodeslot=0x1D6A9, + visual="bf", }, - [0x1D400]={ + [0x1D6AA]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL A", + description="MATHEMATICAL BOLD CAPITAL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D400, + specials={ "font", 0x393 }, + unicodeslot=0x1D6AA, visual="bf", }, - [0x1D401]={ + [0x1D6AB]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL B", + description="MATHEMATICAL BOLD CAPITAL DELTA", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D401, + specials={ "font", 0x394 }, + unicodeslot=0x1D6AB, visual="bf", }, - [0x1D402]={ + [0x1D6AC]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL C", + description="MATHEMATICAL BOLD CAPITAL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D402, + specials={ "font", 0x395 }, + unicodeslot=0x1D6AC, visual="bf", }, - [0x1D403]={ + [0x1D6AD]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL D", + description="MATHEMATICAL BOLD CAPITAL ZETA", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D403, + specials={ "font", 0x396 }, + unicodeslot=0x1D6AD, visual="bf", }, - [0x1D404]={ + [0x1D6AE]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL E", + description="MATHEMATICAL BOLD CAPITAL ETA", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D404, + specials={ "font", 0x397 }, + unicodeslot=0x1D6AE, visual="bf", }, - [0x1D405]={ + [0x1D6AF]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL F", + description="MATHEMATICAL BOLD CAPITAL THETA", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D405, + specials={ "font", 0x398 }, + unicodeslot=0x1D6AF, visual="bf", }, - [0x1D406]={ + [0x1D6B0]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL G", + description="MATHEMATICAL BOLD CAPITAL IOTA", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D406, + specials={ "font", 0x399 }, + unicodeslot=0x1D6B0, visual="bf", }, - [0x1D407]={ + [0x1D6B1]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL H", + description="MATHEMATICAL BOLD CAPITAL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D407, + specials={ "font", 0x39A }, + unicodeslot=0x1D6B1, visual="bf", }, - [0x1D408]={ + [0x1D6B2]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL I", + description="MATHEMATICAL BOLD CAPITAL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D408, + specials={ "font", 0x39B }, + unicodeslot=0x1D6B2, visual="bf", }, - [0x1D409]={ + [0x1D6B3]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL J", + description="MATHEMATICAL BOLD CAPITAL MU", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D409, + specials={ "font", 0x39C }, + unicodeslot=0x1D6B3, visual="bf", }, - [0x1D40A]={ + [0x1D6B4]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL K", + description="MATHEMATICAL BOLD CAPITAL NU", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D40A, + specials={ "font", 0x39D }, + unicodeslot=0x1D6B4, visual="bf", }, - [0x1D40B]={ + [0x1D6B5]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL L", + description="MATHEMATICAL BOLD CAPITAL XI", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D40B, + specials={ "font", 0x39E }, + unicodeslot=0x1D6B5, visual="bf", }, - [0x1D40C]={ + [0x1D6B6]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL M", + description="MATHEMATICAL BOLD CAPITAL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D40C, + specials={ "font", 0x39F }, + unicodeslot=0x1D6B6, visual="bf", }, - [0x1D40D]={ + [0x1D6B7]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL N", + description="MATHEMATICAL BOLD CAPITAL PI", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D40D, + specials={ "font", 0x3A0 }, + unicodeslot=0x1D6B7, visual="bf", }, - [0x1D40E]={ + [0x1D6B8]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL O", + description="MATHEMATICAL BOLD CAPITAL RHO", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D40E, + specials={ "font", 0x3A1 }, + unicodeslot=0x1D6B8, visual="bf", }, - [0x1D40F]={ + [0x1D6B9]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL P", + description="MATHEMATICAL BOLD CAPITAL THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D40F, + specials={ "font", 0x3F4 }, + unicodeslot=0x1D6B9, visual="bf", }, - [0x1D410]={ + [0x1D6BA]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL Q", + description="MATHEMATICAL BOLD CAPITAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D410, + specials={ "font", 0x3A3 }, + unicodeslot=0x1D6BA, visual="bf", }, - [0x1D411]={ + [0x1D6BB]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL R", + description="MATHEMATICAL BOLD CAPITAL TAU", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D411, + specials={ "font", 0x3A4 }, + unicodeslot=0x1D6BB, visual="bf", }, - [0x1D412]={ + [0x1D6BC]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL S", + description="MATHEMATICAL BOLD CAPITAL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D412, + specials={ "font", 0x3A5 }, + unicodeslot=0x1D6BC, visual="bf", }, - [0x1D413]={ + [0x1D6BD]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL T", + description="MATHEMATICAL BOLD CAPITAL PHI", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D413, + specials={ "font", 0x3A6 }, + unicodeslot=0x1D6BD, visual="bf", }, - [0x1D414]={ + [0x1D6BE]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL U", + description="MATHEMATICAL BOLD CAPITAL CHI", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D414, + specials={ "font", 0x3A7 }, + unicodeslot=0x1D6BE, visual="bf", }, - [0x1D415]={ + [0x1D6BF]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL V", + description="MATHEMATICAL BOLD CAPITAL PSI", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D415, + specials={ "font", 0x3A8 }, + unicodeslot=0x1D6BF, visual="bf", }, - [0x1D416]={ + [0x1D6C0]={ category="lu", - description="MATHEMATICAL BOLD CAPITAL W", + description="MATHEMATICAL BOLD CAPITAL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D416, + specials={ "font", 0x3A9 }, + unicodeslot=0x1D6C0, visual="bf", }, - [0x1D417]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL X", + [0x1D6C1]={ + category="sm", + description="MATHEMATICAL BOLD NABLA", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D417, + specials={ "font", 0x2207 }, + unicodeslot=0x1D6C1, visual="bf", }, - [0x1D418]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL Y", + [0x1D6C2]={ + category="ll", + description="MATHEMATICAL BOLD SMALL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D418, + specials={ "font", 0x3B1 }, + unicodeslot=0x1D6C2, visual="bf", }, - [0x1D419]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL Z", + [0x1D6C3]={ + category="ll", + description="MATHEMATICAL BOLD SMALL BETA", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D419, + specials={ "font", 0x3B2 }, + unicodeslot=0x1D6C3, visual="bf", }, - [0x1D41A]={ + [0x1D6C4]={ category="ll", - description="MATHEMATICAL BOLD SMALL A", + description="MATHEMATICAL BOLD SMALL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D41A, + specials={ "font", 0x3B3 }, + unicodeslot=0x1D6C4, visual="bf", }, - [0x1D41B]={ + [0x1D6C5]={ category="ll", - description="MATHEMATICAL BOLD SMALL B", + description="MATHEMATICAL BOLD SMALL DELTA", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D41B, + specials={ "font", 0x3B4 }, + unicodeslot=0x1D6C5, visual="bf", }, - [0x1D41C]={ + [0x1D6C6]={ category="ll", - description="MATHEMATICAL BOLD SMALL C", + description="MATHEMATICAL BOLD SMALL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D41C, + specials={ "font", 0x3B5 }, + unicodeslot=0x1D6C6, visual="bf", }, - [0x1D41D]={ + [0x1D6C7]={ category="ll", - description="MATHEMATICAL BOLD SMALL D", + description="MATHEMATICAL BOLD SMALL ZETA", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D41D, + specials={ "font", 0x3B6 }, + unicodeslot=0x1D6C7, visual="bf", }, - [0x1D41E]={ + [0x1D6C8]={ category="ll", - description="MATHEMATICAL BOLD SMALL E", + description="MATHEMATICAL BOLD SMALL ETA", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D41E, + specials={ "font", 0x3B7 }, + unicodeslot=0x1D6C8, visual="bf", }, - [0x1D41F]={ + [0x1D6C9]={ category="ll", - description="MATHEMATICAL BOLD SMALL F", + description="MATHEMATICAL BOLD SMALL THETA", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D41F, + specials={ "font", 0x3B8 }, + unicodeslot=0x1D6C9, visual="bf", }, - [0x1D420]={ + [0x1D6CA]={ category="ll", - description="MATHEMATICAL BOLD SMALL G", + description="MATHEMATICAL BOLD SMALL IOTA", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D420, + specials={ "font", 0x3B9 }, + unicodeslot=0x1D6CA, visual="bf", }, - [0x1D421]={ + [0x1D6CB]={ category="ll", - description="MATHEMATICAL BOLD SMALL H", + description="MATHEMATICAL BOLD SMALL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D421, + specials={ "font", 0x3BA }, + unicodeslot=0x1D6CB, visual="bf", }, - [0x1D422]={ + [0x1D6CC]={ category="ll", - description="MATHEMATICAL BOLD SMALL I", + description="MATHEMATICAL BOLD SMALL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D422, + specials={ "font", 0x3BB }, + unicodeslot=0x1D6CC, visual="bf", }, - [0x1D423]={ + [0x1D6CD]={ category="ll", - description="MATHEMATICAL BOLD SMALL J", + description="MATHEMATICAL BOLD SMALL MU", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D423, + specials={ "font", 0x3BC }, + unicodeslot=0x1D6CD, visual="bf", }, - [0x1D424]={ + [0x1D6CE]={ category="ll", - description="MATHEMATICAL BOLD SMALL K", + description="MATHEMATICAL BOLD SMALL NU", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D424, + specials={ "font", 0x3BD }, + unicodeslot=0x1D6CE, visual="bf", }, - [0x1D425]={ + [0x1D6CF]={ category="ll", - description="MATHEMATICAL BOLD SMALL L", + description="MATHEMATICAL BOLD SMALL XI", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D425, + specials={ "font", 0x3BE }, + unicodeslot=0x1D6CF, visual="bf", }, - [0x1D426]={ + [0x1D6D0]={ category="ll", - description="MATHEMATICAL BOLD SMALL M", + description="MATHEMATICAL BOLD SMALL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D426, + specials={ "font", 0x3BF }, + unicodeslot=0x1D6D0, visual="bf", }, - [0x1D427]={ + [0x1D6D1]={ category="ll", - description="MATHEMATICAL BOLD SMALL N", + description="MATHEMATICAL BOLD SMALL PI", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D427, + specials={ "font", 0x3C0 }, + unicodeslot=0x1D6D1, visual="bf", }, - [0x1D428]={ + [0x1D6D2]={ category="ll", - description="MATHEMATICAL BOLD SMALL O", + description="MATHEMATICAL BOLD SMALL RHO", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D428, + specials={ "font", 0x3C1 }, + unicodeslot=0x1D6D2, visual="bf", }, - [0x1D429]={ + [0x1D6D3]={ category="ll", - description="MATHEMATICAL BOLD SMALL P", + description="MATHEMATICAL BOLD SMALL FINAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D429, + specials={ "font", 0x3C2 }, + unicodeslot=0x1D6D3, visual="bf", }, - [0x1D42A]={ + [0x1D6D4]={ category="ll", - description="MATHEMATICAL BOLD SMALL Q", + description="MATHEMATICAL BOLD SMALL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D42A, + specials={ "font", 0x3C3 }, + unicodeslot=0x1D6D4, visual="bf", }, - [0x1D42B]={ + [0x1D6D5]={ category="ll", - description="MATHEMATICAL BOLD SMALL R", + description="MATHEMATICAL BOLD SMALL TAU", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D42B, + specials={ "font", 0x3C4 }, + unicodeslot=0x1D6D5, visual="bf", }, - [0x1D42C]={ + [0x1D6D6]={ category="ll", - description="MATHEMATICAL BOLD SMALL S", + description="MATHEMATICAL BOLD SMALL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D42C, + specials={ "font", 0x3C5 }, + unicodeslot=0x1D6D6, visual="bf", }, - [0x1D42D]={ + [0x1D6D7]={ category="ll", - description="MATHEMATICAL BOLD SMALL T", + description="MATHEMATICAL BOLD SMALL PHI", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D42D, + specials={ "font", 0x3C6 }, + unicodeslot=0x1D6D7, visual="bf", }, - [0x1D42E]={ + [0x1D6D8]={ category="ll", - description="MATHEMATICAL BOLD SMALL U", + description="MATHEMATICAL BOLD SMALL CHI", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D42E, + specials={ "font", 0x3C7 }, + unicodeslot=0x1D6D8, visual="bf", }, - [0x1D42F]={ + [0x1D6D9]={ category="ll", - description="MATHEMATICAL BOLD SMALL V", + description="MATHEMATICAL BOLD SMALL PSI", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D42F, + specials={ "font", 0x3C8 }, + unicodeslot=0x1D6D9, visual="bf", }, - [0x1D430]={ + [0x1D6DA]={ category="ll", - description="MATHEMATICAL BOLD SMALL W", + description="MATHEMATICAL BOLD SMALL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D430, + specials={ "font", 0x3C9 }, + unicodeslot=0x1D6DA, visual="bf", }, - [0x1D431]={ + [0x1D6DB]={ + category="sm", + description="MATHEMATICAL BOLD PARTIAL DIFFERENTIAL", + direction="on", + linebreak="al", + specials={ "font", 0x2202 }, + unicodeslot=0x1D6DB, + visual="bf", + }, + [0x1D6DC]={ category="ll", - description="MATHEMATICAL BOLD SMALL X", + description="MATHEMATICAL BOLD EPSILON SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D431, + specials={ "font", 0x3F5 }, + unicodeslot=0x1D6DC, visual="bf", }, - [0x1D432]={ + [0x1D6DD]={ + category="ll", + description="MATHEMATICAL BOLD THETA SYMBOL", + direction="l", + linebreak="al", + specials={ "font", 0x3D1 }, + unicodeslot=0x1D6DD, + visual="bf", + }, + [0x1D6DE]={ + category="ll", + description="MATHEMATICAL BOLD KAPPA SYMBOL", + direction="l", + linebreak="al", + specials={ "font", 0x3F0 }, + unicodeslot=0x1D6DE, + visual="bf", + }, + [0x1D6DF]={ + category="ll", + description="MATHEMATICAL BOLD PHI SYMBOL", + direction="l", + linebreak="al", + specials={ "font", 0x3D5 }, + unicodeslot=0x1D6DF, + visual="bf", + }, + [0x1D6E0]={ category="ll", - description="MATHEMATICAL BOLD SMALL Y", + description="MATHEMATICAL BOLD RHO SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D432, + specials={ "font", 0x3F1 }, + unicodeslot=0x1D6E0, visual="bf", }, - [0x1D433]={ + [0x1D6E1]={ category="ll", - description="MATHEMATICAL BOLD SMALL Z", + description="MATHEMATICAL BOLD PI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D433, + specials={ "font", 0x3D6 }, + unicodeslot=0x1D6E1, visual="bf", }, - [0x1D434]={ + [0x1D6E2]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL A", + description="MATHEMATICAL ITALIC CAPITAL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D434, + specials={ "font", 0x391 }, + unicodeslot=0x1D6E2, visual="it", }, - [0x1D435]={ + [0x1D6E3]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL B", + description="MATHEMATICAL ITALIC CAPITAL BETA", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D435, + specials={ "font", 0x392 }, + unicodeslot=0x1D6E3, visual="it", }, - [0x1D436]={ + [0x1D6E4]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL C", + description="MATHEMATICAL ITALIC CAPITAL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D436, + specials={ "font", 0x393 }, + unicodeslot=0x1D6E4, visual="it", }, - [0x1D437]={ + [0x1D6E5]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL D", + description="MATHEMATICAL ITALIC CAPITAL DELTA", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D437, + specials={ "font", 0x394 }, + unicodeslot=0x1D6E5, visual="it", }, - [0x1D438]={ + [0x1D6E6]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL E", + description="MATHEMATICAL ITALIC CAPITAL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D438, + specials={ "font", 0x395 }, + unicodeslot=0x1D6E6, visual="it", }, - [0x1D439]={ + [0x1D6E7]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL F", + description="MATHEMATICAL ITALIC CAPITAL ZETA", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D439, + specials={ "font", 0x396 }, + unicodeslot=0x1D6E7, visual="it", }, - [0x1D43A]={ + [0x1D6E8]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL G", + description="MATHEMATICAL ITALIC CAPITAL ETA", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D43A, + specials={ "font", 0x397 }, + unicodeslot=0x1D6E8, visual="it", }, - [0x1D43B]={ + [0x1D6E9]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL H", + description="MATHEMATICAL ITALIC CAPITAL THETA", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D43B, + specials={ "font", 0x398 }, + unicodeslot=0x1D6E9, visual="it", }, - [0x1D43C]={ + [0x1D6EA]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL I", + description="MATHEMATICAL ITALIC CAPITAL IOTA", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D43C, + specials={ "font", 0x399 }, + unicodeslot=0x1D6EA, visual="it", }, - [0x1D43D]={ + [0x1D6EB]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL J", + description="MATHEMATICAL ITALIC CAPITAL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D43D, + specials={ "font", 0x39A }, + unicodeslot=0x1D6EB, visual="it", }, - [0x1D43E]={ + [0x1D6EC]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL K", + description="MATHEMATICAL ITALIC CAPITAL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D43E, + specials={ "font", 0x39B }, + unicodeslot=0x1D6EC, visual="it", }, - [0x1D43F]={ + [0x1D6ED]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL L", + description="MATHEMATICAL ITALIC CAPITAL MU", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D43F, + specials={ "font", 0x39C }, + unicodeslot=0x1D6ED, visual="it", }, - [0x1D440]={ + [0x1D6EE]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL M", + description="MATHEMATICAL ITALIC CAPITAL NU", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D440, + specials={ "font", 0x39D }, + unicodeslot=0x1D6EE, visual="it", }, - [0x1D441]={ + [0x1D6EF]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL N", + description="MATHEMATICAL ITALIC CAPITAL XI", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D441, + specials={ "font", 0x39E }, + unicodeslot=0x1D6EF, visual="it", }, - [0x1D442]={ + [0x1D6F0]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL O", + description="MATHEMATICAL ITALIC CAPITAL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D442, + specials={ "font", 0x39F }, + unicodeslot=0x1D6F0, visual="it", }, - [0x1D443]={ + [0x1D6F1]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL P", + description="MATHEMATICAL ITALIC CAPITAL PI", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D443, + specials={ "font", 0x3A0 }, + unicodeslot=0x1D6F1, visual="it", }, - [0x1D444]={ + [0x1D6F2]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL Q", + description="MATHEMATICAL ITALIC CAPITAL RHO", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D444, + specials={ "font", 0x3A1 }, + unicodeslot=0x1D6F2, visual="it", }, - [0x1D445]={ + [0x1D6F3]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL R", + description="MATHEMATICAL ITALIC CAPITAL THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D445, + specials={ "font", 0x3F4 }, + unicodeslot=0x1D6F3, visual="it", }, - [0x1D446]={ + [0x1D6F4]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL S", + description="MATHEMATICAL ITALIC CAPITAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D446, + specials={ "font", 0x3A3 }, + unicodeslot=0x1D6F4, visual="it", }, - [0x1D447]={ + [0x1D6F5]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL T", + description="MATHEMATICAL ITALIC CAPITAL TAU", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D447, + specials={ "font", 0x3A4 }, + unicodeslot=0x1D6F5, visual="it", }, - [0x1D448]={ + [0x1D6F6]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL U", + description="MATHEMATICAL ITALIC CAPITAL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D448, + specials={ "font", 0x3A5 }, + unicodeslot=0x1D6F6, visual="it", }, - [0x1D449]={ + [0x1D6F7]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL V", + description="MATHEMATICAL ITALIC CAPITAL PHI", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D449, + specials={ "font", 0x3A6 }, + unicodeslot=0x1D6F7, visual="it", }, - [0x1D44A]={ + [0x1D6F8]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL W", + description="MATHEMATICAL ITALIC CAPITAL CHI", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D44A, + specials={ "font", 0x3A7 }, + unicodeslot=0x1D6F8, visual="it", }, - [0x1D44B]={ + [0x1D6F9]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL X", + description="MATHEMATICAL ITALIC CAPITAL PSI", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D44B, + specials={ "font", 0x3A8 }, + unicodeslot=0x1D6F9, visual="it", }, - [0x1D44C]={ + [0x1D6FA]={ category="lu", - description="MATHEMATICAL ITALIC CAPITAL Y", + description="MATHEMATICAL ITALIC CAPITAL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D44C, + specials={ "font", 0x3A9 }, + unicodeslot=0x1D6FA, visual="it", }, - [0x1D44D]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL Z", + [0x1D6FB]={ + category="sm", + description="MATHEMATICAL ITALIC NABLA", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D44D, + mathclass="default", + specials={ "font", 0x2207 }, + unicodeslot=0x1D6FB, visual="it", }, - [0x1D44E]={ + [0x1D6FC]={ category="ll", - description="MATHEMATICAL ITALIC SMALL A", + description="MATHEMATICAL ITALIC SMALL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D44E, + specials={ "font", 0x3B1 }, + unicodeslot=0x1D6FC, visual="it", }, - [0x1D44F]={ + [0x1D6FD]={ category="ll", - description="MATHEMATICAL ITALIC SMALL B", + description="MATHEMATICAL ITALIC SMALL BETA", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D44F, + specials={ "font", 0x3B2 }, + unicodeslot=0x1D6FD, visual="it", }, - [0x1D450]={ + [0x1D6FE]={ category="ll", - description="MATHEMATICAL ITALIC SMALL C", + description="MATHEMATICAL ITALIC SMALL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D450, + specials={ "font", 0x3B3 }, + unicodeslot=0x1D6FE, visual="it", }, - [0x1D451]={ + [0x1D6FF]={ category="ll", - description="MATHEMATICAL ITALIC SMALL D", + description="MATHEMATICAL ITALIC SMALL DELTA", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D451, + specials={ "font", 0x3B4 }, + unicodeslot=0x1D6FF, visual="it", }, - [0x1D452]={ + [0x1D700]={ category="ll", - description="MATHEMATICAL ITALIC SMALL E", + description="MATHEMATICAL ITALIC SMALL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D452, + specials={ "font", 0x3B5 }, + unicodeslot=0x1D700, visual="it", }, - [0x1D453]={ + [0x1D701]={ category="ll", - description="MATHEMATICAL ITALIC SMALL F", + description="MATHEMATICAL ITALIC SMALL ZETA", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D453, + specials={ "font", 0x3B6 }, + unicodeslot=0x1D701, visual="it", }, - [0x1D454]={ + [0x1D702]={ category="ll", - description="MATHEMATICAL ITALIC SMALL G", + description="MATHEMATICAL ITALIC SMALL ETA", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D454, + specials={ "font", 0x3B7 }, + unicodeslot=0x1D702, visual="it", }, - [0x1D456]={ + [0x1D703]={ category="ll", - description="MATHEMATICAL ITALIC SMALL I", + description="MATHEMATICAL ITALIC SMALL THETA", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D456, + specials={ "font", 0x3B8 }, + unicodeslot=0x1D703, visual="it", }, - [0x1D457]={ + [0x1D704]={ category="ll", - description="MATHEMATICAL ITALIC SMALL J", + description="MATHEMATICAL ITALIC SMALL IOTA", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D457, + specials={ "font", 0x3B9 }, + unicodeslot=0x1D704, visual="it", }, - [0x1D458]={ + [0x1D705]={ category="ll", - description="MATHEMATICAL ITALIC SMALL K", + description="MATHEMATICAL ITALIC SMALL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D458, + specials={ "font", 0x3BA }, + unicodeslot=0x1D705, visual="it", }, - [0x1D459]={ + [0x1D706]={ category="ll", - description="MATHEMATICAL ITALIC SMALL L", + description="MATHEMATICAL ITALIC SMALL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D459, + specials={ "font", 0x3BB }, + unicodeslot=0x1D706, visual="it", }, - [0x1D45A]={ + [0x1D707]={ category="ll", - description="MATHEMATICAL ITALIC SMALL M", + description="MATHEMATICAL ITALIC SMALL MU", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D45A, + specials={ "font", 0x3BC }, + unicodeslot=0x1D707, visual="it", }, - [0x1D45B]={ + [0x1D708]={ category="ll", - description="MATHEMATICAL ITALIC SMALL N", + description="MATHEMATICAL ITALIC SMALL NU", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D45B, + specials={ "font", 0x3BD }, + unicodeslot=0x1D708, visual="it", }, - [0x1D45C]={ + [0x1D709]={ category="ll", - description="MATHEMATICAL ITALIC SMALL O", + description="MATHEMATICAL ITALIC SMALL XI", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D45C, + specials={ "font", 0x3BE }, + unicodeslot=0x1D709, visual="it", }, - [0x1D45D]={ + [0x1D70A]={ category="ll", - description="MATHEMATICAL ITALIC SMALL P", + description="MATHEMATICAL ITALIC SMALL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D45D, + specials={ "font", 0x3BF }, + unicodeslot=0x1D70A, visual="it", }, - [0x1D45E]={ + [0x1D70B]={ category="ll", - description="MATHEMATICAL ITALIC SMALL Q", + description="MATHEMATICAL ITALIC SMALL PI", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D45E, + specials={ "font", 0x3C0 }, + unicodeslot=0x1D70B, visual="it", }, - [0x1D45F]={ + [0x1D70C]={ category="ll", - description="MATHEMATICAL ITALIC SMALL R", + description="MATHEMATICAL ITALIC SMALL RHO", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D45F, + specials={ "font", 0x3C1 }, + unicodeslot=0x1D70C, visual="it", }, - [0x1D460]={ + [0x1D70D]={ category="ll", - description="MATHEMATICAL ITALIC SMALL S", + description="MATHEMATICAL ITALIC SMALL FINAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D460, + specials={ "font", 0x3C2 }, + unicodeslot=0x1D70D, visual="it", }, - [0x1D461]={ + [0x1D70E]={ category="ll", - description="MATHEMATICAL ITALIC SMALL T", + description="MATHEMATICAL ITALIC SMALL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D461, + specials={ "font", 0x3C3 }, + unicodeslot=0x1D70E, visual="it", }, - [0x1D462]={ + [0x1D70F]={ category="ll", - description="MATHEMATICAL ITALIC SMALL U", + description="MATHEMATICAL ITALIC SMALL TAU", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D462, + specials={ "font", 0x3C4 }, + unicodeslot=0x1D70F, visual="it", }, - [0x1D463]={ + [0x1D710]={ category="ll", - description="MATHEMATICAL ITALIC SMALL V", + description="MATHEMATICAL ITALIC SMALL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D463, + specials={ "font", 0x3C5 }, + unicodeslot=0x1D710, visual="it", }, - [0x1D464]={ + [0x1D711]={ category="ll", - description="MATHEMATICAL ITALIC SMALL W", + description="MATHEMATICAL ITALIC SMALL PHI", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D464, + specials={ "font", 0x3C6 }, + unicodeslot=0x1D711, visual="it", }, - [0x1D465]={ + [0x1D712]={ category="ll", - description="MATHEMATICAL ITALIC SMALL X", + description="MATHEMATICAL ITALIC SMALL CHI", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D465, + specials={ "font", 0x3C7 }, + unicodeslot=0x1D712, visual="it", }, - [0x1D466]={ + [0x1D713]={ category="ll", - description="MATHEMATICAL ITALIC SMALL Y", + description="MATHEMATICAL ITALIC SMALL PSI", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D466, + specials={ "font", 0x3C8 }, + unicodeslot=0x1D713, visual="it", }, - [0x1D467]={ + [0x1D714]={ category="ll", - description="MATHEMATICAL ITALIC SMALL Z", + description="MATHEMATICAL ITALIC SMALL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D467, + specials={ "font", 0x3C9 }, + unicodeslot=0x1D714, visual="it", }, - [0x1D468]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL A", - direction="l", + [0x1D715]={ + category="sm", + description="MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL", + direction="on", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D468, - visual="bi", + specials={ "font", 0x2202 }, + unicodeslot=0x1D715, + visual="it", }, - [0x1D469]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL B", + [0x1D716]={ + category="ll", + description="MATHEMATICAL ITALIC EPSILON SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D469, - visual="bi", + specials={ "font", 0x3F5 }, + unicodeslot=0x1D716, + visual="it", }, - [0x1D46A]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL C", + [0x1D717]={ + category="ll", + description="MATHEMATICAL ITALIC THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D46A, - visual="bi", + mathclass="default", + mathname="vartheta", + specials={ "font", 0x3D1 }, + unicodeslot=0x1D717, + visual="it", }, - [0x1D46B]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL D", + [0x1D718]={ + category="ll", + description="MATHEMATICAL ITALIC KAPPA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D46B, - visual="bi", + mathclass="default", + mathname="varkappa", + specials={ "font", 0x3F0 }, + unicodeslot=0x1D718, + visual="it", }, - [0x1D46C]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL E", + [0x1D719]={ + category="ll", + description="MATHEMATICAL ITALIC PHI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D46C, - visual="bi", + specials={ "font", 0x3D5 }, + unicodeslot=0x1D719, + visual="it", }, - [0x1D46D]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL F", + [0x1D71A]={ + category="ll", + description="MATHEMATICAL ITALIC RHO SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D46D, - visual="bi", + mathclass="variable", + mathname="varrho", + specials={ "font", 0x3F1 }, + unicodeslot=0x1D71A, + visual="it", }, - [0x1D46E]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL G", + [0x1D71B]={ + category="ll", + description="MATHEMATICAL ITALIC PI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D46E, - visual="bi", + specials={ "font", 0x3D6 }, + unicodeslot=0x1D71B, + visual="it", }, - [0x1D46F]={ + [0x1D71C]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL H", + description="MATHEMATICAL BOLD ITALIC CAPITAL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D46F, + specials={ "font", 0x391 }, + unicodeslot=0x1D71C, visual="bi", }, - [0x1D470]={ + [0x1D71D]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL I", + description="MATHEMATICAL BOLD ITALIC CAPITAL BETA", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D470, + specials={ "font", 0x392 }, + unicodeslot=0x1D71D, visual="bi", }, - [0x1D471]={ + [0x1D71E]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL J", + description="MATHEMATICAL BOLD ITALIC CAPITAL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D471, + specials={ "font", 0x393 }, + unicodeslot=0x1D71E, visual="bi", }, - [0x1D472]={ + [0x1D71F]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL K", + description="MATHEMATICAL BOLD ITALIC CAPITAL DELTA", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D472, + specials={ "font", 0x394 }, + unicodeslot=0x1D71F, visual="bi", }, - [0x1D473]={ + [0x1D720]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL L", + description="MATHEMATICAL BOLD ITALIC CAPITAL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D473, + specials={ "font", 0x395 }, + unicodeslot=0x1D720, visual="bi", }, - [0x1D474]={ + [0x1D721]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL M", + description="MATHEMATICAL BOLD ITALIC CAPITAL ZETA", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D474, + specials={ "font", 0x396 }, + unicodeslot=0x1D721, visual="bi", }, - [0x1D475]={ + [0x1D722]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL N", + description="MATHEMATICAL BOLD ITALIC CAPITAL ETA", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D475, + specials={ "font", 0x397 }, + unicodeslot=0x1D722, visual="bi", }, - [0x1D476]={ + [0x1D723]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL O", + description="MATHEMATICAL BOLD ITALIC CAPITAL THETA", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D476, + specials={ "font", 0x398 }, + unicodeslot=0x1D723, visual="bi", }, - [0x1D477]={ + [0x1D724]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL P", + description="MATHEMATICAL BOLD ITALIC CAPITAL IOTA", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D477, + specials={ "font", 0x399 }, + unicodeslot=0x1D724, visual="bi", }, - [0x1D478]={ + [0x1D725]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL Q", + description="MATHEMATICAL BOLD ITALIC CAPITAL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D478, + specials={ "font", 0x39A }, + unicodeslot=0x1D725, visual="bi", }, - [0x1D479]={ + [0x1D726]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL R", + description="MATHEMATICAL BOLD ITALIC CAPITAL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D479, + specials={ "font", 0x39B }, + unicodeslot=0x1D726, visual="bi", }, - [0x1D47A]={ + [0x1D727]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL S", + description="MATHEMATICAL BOLD ITALIC CAPITAL MU", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D47A, + specials={ "font", 0x39C }, + unicodeslot=0x1D727, visual="bi", }, - [0x1D47B]={ + [0x1D728]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL T", + description="MATHEMATICAL BOLD ITALIC CAPITAL NU", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D47B, + specials={ "font", 0x39D }, + unicodeslot=0x1D728, visual="bi", }, - [0x1D47C]={ + [0x1D729]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL U", + description="MATHEMATICAL BOLD ITALIC CAPITAL XI", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D47C, + specials={ "font", 0x39E }, + unicodeslot=0x1D729, visual="bi", }, - [0x1D47D]={ + [0x1D72A]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL V", + description="MATHEMATICAL BOLD ITALIC CAPITAL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D47D, + specials={ "font", 0x39F }, + unicodeslot=0x1D72A, visual="bi", }, - [0x1D47E]={ + [0x1D72B]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL W", + description="MATHEMATICAL BOLD ITALIC CAPITAL PI", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D47E, + specials={ "font", 0x3A0 }, + unicodeslot=0x1D72B, visual="bi", }, - [0x1D47F]={ + [0x1D72C]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL X", + description="MATHEMATICAL BOLD ITALIC CAPITAL RHO", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D47F, + specials={ "font", 0x3A1 }, + unicodeslot=0x1D72C, visual="bi", }, - [0x1D480]={ + [0x1D72D]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL Y", + description="MATHEMATICAL BOLD ITALIC CAPITAL THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D480, + specials={ "font", 0x3F4 }, + unicodeslot=0x1D72D, visual="bi", }, - [0x1D481]={ + [0x1D72E]={ category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL Z", - direction="l", - linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D481, - visual="bi", - }, - [0x1D482]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL A", - direction="l", - linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D482, - visual="bi", - }, - [0x1D483]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL B", - direction="l", - linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D483, - visual="bi", - }, - [0x1D484]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL C", - direction="l", - linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D484, - visual="bi", - }, - [0x1D485]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL D", - direction="l", - linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D485, - visual="bi", - }, - [0x1D486]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL E", - direction="l", - linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D486, - visual="bi", - }, - [0x1D487]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL F", - direction="l", - linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D487, - visual="bi", - }, - [0x1D488]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL G", - direction="l", - linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D488, - visual="bi", - }, - [0x1D489]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL H", - direction="l", - linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D489, - visual="bi", - }, - [0x1D48A]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL I", - direction="l", - linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D48A, - visual="bi", - }, - [0x1D48B]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL J", - direction="l", - linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D48B, - visual="bi", - }, - [0x1D48C]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL K", - direction="l", - linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D48C, - visual="bi", - }, - [0x1D48D]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL L", - direction="l", - linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D48D, - visual="bi", - }, - [0x1D48E]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL M", - direction="l", - linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D48E, - visual="bi", - }, - [0x1D48F]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL N", - direction="l", - linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D48F, - visual="bi", - }, - [0x1D490]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL O", - direction="l", - linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D490, - visual="bi", - }, - [0x1D491]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL P", + description="MATHEMATICAL BOLD ITALIC CAPITAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D491, + specials={ "font", 0x3A3 }, + unicodeslot=0x1D72E, visual="bi", }, - [0x1D492]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL Q", + [0x1D72F]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL TAU", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D492, + specials={ "font", 0x3A4 }, + unicodeslot=0x1D72F, visual="bi", }, - [0x1D493]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL R", + [0x1D730]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D493, + specials={ "font", 0x3A5 }, + unicodeslot=0x1D730, visual="bi", }, - [0x1D494]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL S", + [0x1D731]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL PHI", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D494, + specials={ "font", 0x3A6 }, + unicodeslot=0x1D731, visual="bi", }, - [0x1D495]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL T", + [0x1D732]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL CHI", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D495, + specials={ "font", 0x3A7 }, + unicodeslot=0x1D732, visual="bi", }, - [0x1D496]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL U", + [0x1D733]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL PSI", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D496, + specials={ "font", 0x3A8 }, + unicodeslot=0x1D733, visual="bi", }, - [0x1D497]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL V", + [0x1D734]={ + category="lu", + description="MATHEMATICAL BOLD ITALIC CAPITAL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D497, + specials={ "font", 0x3A9 }, + unicodeslot=0x1D734, visual="bi", }, - [0x1D498]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL W", + [0x1D735]={ + category="sm", + description="MATHEMATICAL BOLD ITALIC NABLA", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D498, + specials={ "font", 0x2207 }, + unicodeslot=0x1D735, visual="bi", }, - [0x1D499]={ + [0x1D736]={ category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL X", + description="MATHEMATICAL BOLD ITALIC SMALL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D499, + specials={ "font", 0x3B1 }, + unicodeslot=0x1D736, visual="bi", }, - [0x1D49A]={ + [0x1D737]={ category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL Y", + description="MATHEMATICAL BOLD ITALIC SMALL BETA", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D49A, + specials={ "font", 0x3B2 }, + unicodeslot=0x1D737, visual="bi", }, - [0x1D49B]={ + [0x1D738]={ category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL Z", - direction="l", - linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D49B, - visual="bi", - }, - [0x1D49C]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL A", - direction="l", - linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D49C, - }, - [0x1D49E]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL C", - direction="l", - linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D49E, - }, - [0x1D49F]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL D", - direction="l", - linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D49F, - }, - [0x1D4A2]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL G", - direction="l", - linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D4A2, - }, - [0x1D4A5]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL J", - direction="l", - linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D4A5, - }, - [0x1D4A6]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL K", - direction="l", - linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D4A6, - }, - [0x1D4A9]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL N", - direction="l", - linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D4A9, - }, - [0x1D4AA]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL O", - direction="l", - linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D4AA, - }, - [0x1D4AB]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL P", - direction="l", - linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D4AB, - }, - [0x1D4AC]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL Q", - direction="l", - linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D4AC, - }, - [0x1D4AE]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL S", - direction="l", - linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D4AE, - }, - [0x1D4AF]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL T", - direction="l", - linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D4AF, - }, - [0x1D4B0]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL U", - direction="l", - linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D4B0, - }, - [0x1D4B1]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL V", + description="MATHEMATICAL BOLD ITALIC SMALL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D4B1, - }, - [0x1D4B2]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL W", + specials={ "font", 0x3B3 }, + unicodeslot=0x1D738, + visual="bi", + }, + [0x1D739]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL DELTA", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D4B2, + specials={ "font", 0x3B4 }, + unicodeslot=0x1D739, + visual="bi", }, - [0x1D4B3]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL X", + [0x1D73A]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D4B3, + specials={ "font", 0x3B5 }, + unicodeslot=0x1D73A, + visual="bi", }, - [0x1D4B4]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL Y", + [0x1D73B]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL ZETA", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D4B4, + specials={ "font", 0x3B6 }, + unicodeslot=0x1D73B, + visual="bi", }, - [0x1D4B5]={ - category="lu", - description="MATHEMATICAL SCRIPT CAPITAL Z", + [0x1D73C]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC SMALL ETA", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D4B5, + specials={ "font", 0x3B7 }, + unicodeslot=0x1D73C, + visual="bi", }, - [0x1D4B6]={ + [0x1D73D]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL A", + description="MATHEMATICAL BOLD ITALIC SMALL THETA", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D4B6, + specials={ "font", 0x3B8 }, + unicodeslot=0x1D73D, + visual="bi", }, - [0x1D4B7]={ + [0x1D73E]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL B", + description="MATHEMATICAL BOLD ITALIC SMALL IOTA", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D4B7, + specials={ "font", 0x3B9 }, + unicodeslot=0x1D73E, + visual="bi", }, - [0x1D4B8]={ + [0x1D73F]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL C", + description="MATHEMATICAL BOLD ITALIC SMALL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D4B8, + specials={ "font", 0x3BA }, + unicodeslot=0x1D73F, + visual="bi", }, - [0x1D4B9]={ + [0x1D740]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL D", + description="MATHEMATICAL BOLD ITALIC SMALL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D4B9, + specials={ "font", 0x3BB }, + unicodeslot=0x1D740, + visual="bi", }, - [0x1D4BB]={ + [0x1D741]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL F", + description="MATHEMATICAL BOLD ITALIC SMALL MU", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D4BB, + specials={ "font", 0x3BC }, + unicodeslot=0x1D741, + visual="bi", }, - [0x1D4BD]={ + [0x1D742]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL H", + description="MATHEMATICAL BOLD ITALIC SMALL NU", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D4BD, + specials={ "font", 0x3BD }, + unicodeslot=0x1D742, + visual="bi", }, - [0x1D4BE]={ + [0x1D743]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL I", + description="MATHEMATICAL BOLD ITALIC SMALL XI", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D4BE, + specials={ "font", 0x3BE }, + unicodeslot=0x1D743, + visual="bi", }, - [0x1D4BF]={ + [0x1D744]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL J", + description="MATHEMATICAL BOLD ITALIC SMALL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D4BF, + specials={ "font", 0x3BF }, + unicodeslot=0x1D744, + visual="bi", }, - [0x1D4C0]={ + [0x1D745]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL K", + description="MATHEMATICAL BOLD ITALIC SMALL PI", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D4C0, + specials={ "font", 0x3C0 }, + unicodeslot=0x1D745, + visual="bi", }, - [0x1D4C1]={ + [0x1D746]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL L", + description="MATHEMATICAL BOLD ITALIC SMALL RHO", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D4C1, + specials={ "font", 0x3C1 }, + unicodeslot=0x1D746, + visual="bi", }, - [0x1D4C2]={ + [0x1D747]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL M", + description="MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D4C2, + specials={ "font", 0x3C2 }, + unicodeslot=0x1D747, + visual="bi", }, - [0x1D4C3]={ + [0x1D748]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL N", + description="MATHEMATICAL BOLD ITALIC SMALL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D4C3, + specials={ "font", 0x3C3 }, + unicodeslot=0x1D748, + visual="bi", }, - [0x1D4C5]={ + [0x1D749]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL P", + description="MATHEMATICAL BOLD ITALIC SMALL TAU", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D4C5, + specials={ "font", 0x3C4 }, + unicodeslot=0x1D749, + visual="bi", }, - [0x1D4C6]={ + [0x1D74A]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL Q", + description="MATHEMATICAL BOLD ITALIC SMALL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D4C6, + specials={ "font", 0x3C5 }, + unicodeslot=0x1D74A, + visual="bi", }, - [0x1D4C7]={ + [0x1D74B]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL R", + description="MATHEMATICAL BOLD ITALIC SMALL PHI", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D4C7, + specials={ "font", 0x3C6 }, + unicodeslot=0x1D74B, + visual="bi", }, - [0x1D4C8]={ + [0x1D74C]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL S", + description="MATHEMATICAL BOLD ITALIC SMALL CHI", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D4C8, + specials={ "font", 0x3C7 }, + unicodeslot=0x1D74C, + visual="bi", }, - [0x1D4C9]={ + [0x1D74D]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL T", + description="MATHEMATICAL BOLD ITALIC SMALL PSI", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D4C9, + specials={ "font", 0x3C8 }, + unicodeslot=0x1D74D, + visual="bi", }, - [0x1D4CA]={ + [0x1D74E]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL U", + description="MATHEMATICAL BOLD ITALIC SMALL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D4CA, + specials={ "font", 0x3C9 }, + unicodeslot=0x1D74E, + visual="bi", }, - [0x1D4CB]={ + [0x1D74F]={ + category="sm", + description="MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL", + direction="on", + linebreak="al", + specials={ "font", 0x2202 }, + unicodeslot=0x1D74F, + visual="bi", + }, + [0x1D750]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL V", + description="MATHEMATICAL BOLD ITALIC EPSILON SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D4CB, + specials={ "font", 0x3F5 }, + unicodeslot=0x1D750, + visual="bi", }, - [0x1D4CC]={ + [0x1D751]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL W", + description="MATHEMATICAL BOLD ITALIC THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D4CC, + specials={ "font", 0x3D1 }, + unicodeslot=0x1D751, + visual="bi", }, - [0x1D4CD]={ + [0x1D752]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL X", + description="MATHEMATICAL BOLD ITALIC KAPPA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D4CD, + specials={ "font", 0x3F0 }, + unicodeslot=0x1D752, + visual="bi", }, - [0x1D4CE]={ + [0x1D753]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL Y", + description="MATHEMATICAL BOLD ITALIC PHI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D4CE, + specials={ "font", 0x3D5 }, + unicodeslot=0x1D753, + visual="bi", }, - [0x1D4CF]={ + [0x1D754]={ category="ll", - description="MATHEMATICAL SCRIPT SMALL Z", + description="MATHEMATICAL BOLD ITALIC RHO SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D4CF, + specials={ "font", 0x3F1 }, + unicodeslot=0x1D754, + visual="bi", }, - [0x1D4D0]={ - category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL A", + [0x1D755]={ + category="ll", + description="MATHEMATICAL BOLD ITALIC PI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D4D0, - visual="bf", + specials={ "font", 0x3D6 }, + unicodeslot=0x1D755, + visual="bi", }, - [0x1D4D1]={ + [0x1D756]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL B", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D4D1, + specials={ "font", 0x391 }, + unicodeslot=0x1D756, visual="bf", }, - [0x1D4D2]={ + [0x1D757]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL C", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL BETA", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D4D2, + specials={ "font", 0x392 }, + unicodeslot=0x1D757, visual="bf", }, - [0x1D4D3]={ + [0x1D758]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL D", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D4D3, + specials={ "font", 0x393 }, + unicodeslot=0x1D758, visual="bf", }, - [0x1D4D4]={ + [0x1D759]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL E", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL DELTA", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D4D4, + specials={ "font", 0x394 }, + unicodeslot=0x1D759, visual="bf", }, - [0x1D4D5]={ + [0x1D75A]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL F", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D4D5, + specials={ "font", 0x395 }, + unicodeslot=0x1D75A, visual="bf", }, - [0x1D4D6]={ + [0x1D75B]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL G", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL ZETA", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D4D6, + specials={ "font", 0x396 }, + unicodeslot=0x1D75B, visual="bf", }, - [0x1D4D7]={ + [0x1D75C]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL H", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL ETA", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D4D7, + specials={ "font", 0x397 }, + unicodeslot=0x1D75C, visual="bf", }, - [0x1D4D8]={ + [0x1D75D]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL I", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D4D8, + specials={ "font", 0x398 }, + unicodeslot=0x1D75D, visual="bf", }, - [0x1D4D9]={ + [0x1D75E]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL J", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL IOTA", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D4D9, + specials={ "font", 0x399 }, + unicodeslot=0x1D75E, visual="bf", }, - [0x1D4DA]={ + [0x1D75F]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL K", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D4DA, + specials={ "font", 0x39A }, + unicodeslot=0x1D75F, visual="bf", }, - [0x1D4DB]={ + [0x1D760]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL L", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D4DB, + specials={ "font", 0x39B }, + unicodeslot=0x1D760, visual="bf", }, - [0x1D4DC]={ + [0x1D761]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL M", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL MU", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D4DC, + specials={ "font", 0x39C }, + unicodeslot=0x1D761, visual="bf", }, - [0x1D4DD]={ + [0x1D762]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL N", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL NU", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D4DD, + specials={ "font", 0x39D }, + unicodeslot=0x1D762, visual="bf", }, - [0x1D4DE]={ + [0x1D763]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL O", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL XI", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D4DE, + specials={ "font", 0x39E }, + unicodeslot=0x1D763, visual="bf", }, - [0x1D4DF]={ + [0x1D764]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL P", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D4DF, + specials={ "font", 0x39F }, + unicodeslot=0x1D764, visual="bf", }, - [0x1D4E0]={ + [0x1D765]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL Q", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL PI", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D4E0, + specials={ "font", 0x3A0 }, + unicodeslot=0x1D765, visual="bf", }, - [0x1D4E1]={ + [0x1D766]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL R", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL RHO", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D4E1, + specials={ "font", 0x3A1 }, + unicodeslot=0x1D766, visual="bf", }, - [0x1D4E2]={ + [0x1D767]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL S", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D4E2, + specials={ "font", 0x3F4 }, + unicodeslot=0x1D767, visual="bf", }, - [0x1D4E3]={ + [0x1D768]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL T", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D4E3, + specials={ "font", 0x3A3 }, + unicodeslot=0x1D768, visual="bf", }, - [0x1D4E4]={ + [0x1D769]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL U", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL TAU", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D4E4, + specials={ "font", 0x3A4 }, + unicodeslot=0x1D769, visual="bf", }, - [0x1D4E5]={ + [0x1D76A]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL V", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D4E5, + specials={ "font", 0x3A5 }, + unicodeslot=0x1D76A, visual="bf", }, - [0x1D4E6]={ + [0x1D76B]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL W", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL PHI", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D4E6, + specials={ "font", 0x3A6 }, + unicodeslot=0x1D76B, visual="bf", }, - [0x1D4E7]={ + [0x1D76C]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL X", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL CHI", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D4E7, + specials={ "font", 0x3A7 }, + unicodeslot=0x1D76C, visual="bf", }, - [0x1D4E8]={ + [0x1D76D]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL Y", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL PSI", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D4E8, + specials={ "font", 0x3A8 }, + unicodeslot=0x1D76D, visual="bf", }, - [0x1D4E9]={ + [0x1D76E]={ category="lu", - description="MATHEMATICAL BOLD SCRIPT CAPITAL Z", + description="MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D4E9, + specials={ "font", 0x3A9 }, + unicodeslot=0x1D76E, visual="bf", }, - [0x1D4EA]={ - category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL A", + [0x1D76F]={ + category="sm", + description="MATHEMATICAL SANS-SERIF BOLD NABLA", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D4EA, + specials={ "font", 0x2207 }, + unicodeslot=0x1D76F, visual="bf", }, - [0x1D4EB]={ + [0x1D770]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL B", + description="MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D4EB, + specials={ "font", 0x3B1 }, + unicodeslot=0x1D770, visual="bf", }, - [0x1D4EC]={ + [0x1D771]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL C", + description="MATHEMATICAL SANS-SERIF BOLD SMALL BETA", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D4EC, + specials={ "font", 0x3B2 }, + unicodeslot=0x1D771, visual="bf", }, - [0x1D4ED]={ + [0x1D772]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL D", + description="MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D4ED, + specials={ "font", 0x3B3 }, + unicodeslot=0x1D772, visual="bf", }, - [0x1D4EE]={ + [0x1D773]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL E", + description="MATHEMATICAL SANS-SERIF BOLD SMALL DELTA", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D4EE, + specials={ "font", 0x3B4 }, + unicodeslot=0x1D773, visual="bf", }, - [0x1D4EF]={ + [0x1D774]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL F", + description="MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D4EF, + specials={ "font", 0x3B5 }, + unicodeslot=0x1D774, visual="bf", }, - [0x1D4F0]={ + [0x1D775]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL G", + description="MATHEMATICAL SANS-SERIF BOLD SMALL ZETA", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D4F0, + specials={ "font", 0x3B6 }, + unicodeslot=0x1D775, visual="bf", }, - [0x1D4F1]={ + [0x1D776]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL H", + description="MATHEMATICAL SANS-SERIF BOLD SMALL ETA", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D4F1, + specials={ "font", 0x3B7 }, + unicodeslot=0x1D776, visual="bf", }, - [0x1D4F2]={ + [0x1D777]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL I", + description="MATHEMATICAL SANS-SERIF BOLD SMALL THETA", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D4F2, + specials={ "font", 0x3B8 }, + unicodeslot=0x1D777, visual="bf", }, - [0x1D4F3]={ + [0x1D778]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL J", + description="MATHEMATICAL SANS-SERIF BOLD SMALL IOTA", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D4F3, + specials={ "font", 0x3B9 }, + unicodeslot=0x1D778, visual="bf", }, - [0x1D4F4]={ + [0x1D779]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL K", + description="MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D4F4, + specials={ "font", 0x3BA }, + unicodeslot=0x1D779, visual="bf", }, - [0x1D4F5]={ + [0x1D77A]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL L", + description="MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D4F5, + specials={ "font", 0x3BB }, + unicodeslot=0x1D77A, visual="bf", }, - [0x1D4F6]={ + [0x1D77B]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL M", + description="MATHEMATICAL SANS-SERIF BOLD SMALL MU", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D4F6, + specials={ "font", 0x3BC }, + unicodeslot=0x1D77B, visual="bf", }, - [0x1D4F7]={ + [0x1D77C]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL N", + description="MATHEMATICAL SANS-SERIF BOLD SMALL NU", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D4F7, + specials={ "font", 0x3BD }, + unicodeslot=0x1D77C, visual="bf", }, - [0x1D4F8]={ + [0x1D77D]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL O", + description="MATHEMATICAL SANS-SERIF BOLD SMALL XI", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D4F8, + specials={ "font", 0x3BE }, + unicodeslot=0x1D77D, visual="bf", }, - [0x1D4F9]={ + [0x1D77E]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL P", + description="MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D4F9, + specials={ "font", 0x3BF }, + unicodeslot=0x1D77E, visual="bf", }, - [0x1D4FA]={ + [0x1D77F]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL Q", + description="MATHEMATICAL SANS-SERIF BOLD SMALL PI", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D4FA, + specials={ "font", 0x3C0 }, + unicodeslot=0x1D77F, visual="bf", }, - [0x1D4FB]={ + [0x1D780]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL R", + description="MATHEMATICAL SANS-SERIF BOLD SMALL RHO", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D4FB, + specials={ "font", 0x3C1 }, + unicodeslot=0x1D780, visual="bf", }, - [0x1D4FC]={ + [0x1D781]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL S", + description="MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D4FC, + specials={ "font", 0x3C2 }, + unicodeslot=0x1D781, visual="bf", }, - [0x1D4FD]={ + [0x1D782]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL T", + description="MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D4FD, + specials={ "font", 0x3C3 }, + unicodeslot=0x1D782, visual="bf", }, - [0x1D4FE]={ + [0x1D783]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL U", + description="MATHEMATICAL SANS-SERIF BOLD SMALL TAU", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D4FE, + specials={ "font", 0x3C4 }, + unicodeslot=0x1D783, visual="bf", }, - [0x1D4FF]={ + [0x1D784]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL V", + description="MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D4FF, + specials={ "font", 0x3C5 }, + unicodeslot=0x1D784, visual="bf", }, - [0x1D500]={ + [0x1D785]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL W", + description="MATHEMATICAL SANS-SERIF BOLD SMALL PHI", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D500, + specials={ "font", 0x3C6 }, + unicodeslot=0x1D785, visual="bf", }, - [0x1D501]={ + [0x1D786]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL X", + description="MATHEMATICAL SANS-SERIF BOLD SMALL CHI", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D501, + specials={ "font", 0x3C7 }, + unicodeslot=0x1D786, visual="bf", }, - [0x1D502]={ + [0x1D787]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL Y", + description="MATHEMATICAL SANS-SERIF BOLD SMALL PSI", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D502, + specials={ "font", 0x3C8 }, + unicodeslot=0x1D787, visual="bf", }, - [0x1D503]={ + [0x1D788]={ category="ll", - description="MATHEMATICAL BOLD SCRIPT SMALL Z", + description="MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D503, + specials={ "font", 0x3C9 }, + unicodeslot=0x1D788, visual="bf", }, - [0x1D504]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL A", - direction="l", - linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D504, - }, - [0x1D505]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL B", - direction="l", - linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D505, - }, - [0x1D507]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL D", - direction="l", - linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D507, - }, - [0x1D508]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL E", - direction="l", - linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D508, - }, - [0x1D509]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL F", - direction="l", - linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D509, - }, - [0x1D50A]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL G", - direction="l", - linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D50A, - }, - [0x1D50D]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL J", - direction="l", - linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D50D, - }, - [0x1D50E]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL K", - direction="l", - linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D50E, - }, - [0x1D50F]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL L", - direction="l", - linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D50F, - }, - [0x1D510]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL M", - direction="l", - linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D510, - }, - [0x1D511]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL N", - direction="l", - linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D511, - }, - [0x1D512]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL O", - direction="l", - linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D512, - }, - [0x1D513]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL P", - direction="l", - linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D513, - }, - [0x1D514]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL Q", - direction="l", - linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D514, - }, - [0x1D516]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL S", - direction="l", - linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D516, - }, - [0x1D517]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL T", - direction="l", - linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D517, - }, - [0x1D518]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL U", - direction="l", - linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D518, - }, - [0x1D519]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL V", - direction="l", - linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D519, - }, - [0x1D51A]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL W", - direction="l", - linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D51A, - }, - [0x1D51B]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL X", - direction="l", - linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D51B, - }, - [0x1D51C]={ - category="lu", - description="MATHEMATICAL FRAKTUR CAPITAL Y", - direction="l", - linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D51C, - }, - [0x1D51E]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL A", - direction="l", - linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D51E, - }, - [0x1D51F]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL B", - direction="l", - linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D51F, - }, - [0x1D520]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL C", - direction="l", - linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D520, - }, - [0x1D521]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL D", - direction="l", - linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D521, - }, - [0x1D522]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL E", - direction="l", - linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D522, - }, - [0x1D523]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL F", - direction="l", - linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D523, - }, - [0x1D524]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL G", - direction="l", - linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D524, - }, - [0x1D525]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL H", - direction="l", - linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D525, - }, - [0x1D526]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL I", - direction="l", - linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D526, - }, - [0x1D527]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL J", - direction="l", - linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D527, - }, - [0x1D528]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL K", - direction="l", - linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D528, - }, - [0x1D529]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL L", - direction="l", - linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D529, - }, - [0x1D52A]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL M", - direction="l", - linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D52A, - }, - [0x1D52B]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL N", - direction="l", + [0x1D789]={ + category="sm", + description="MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL", + direction="on", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D52B, + specials={ "font", 0x2202 }, + unicodeslot=0x1D789, + visual="bf", }, - [0x1D52C]={ + [0x1D78A]={ category="ll", - description="MATHEMATICAL FRAKTUR SMALL O", + description="MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D52C, + specials={ "font", 0x3F5 }, + unicodeslot=0x1D78A, + visual="bf", }, - [0x1D52D]={ + [0x1D78B]={ category="ll", - description="MATHEMATICAL FRAKTUR SMALL P", + description="MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D52D, + specials={ "font", 0x3D1 }, + unicodeslot=0x1D78B, + visual="bf", }, - [0x1D52E]={ + [0x1D78C]={ category="ll", - description="MATHEMATICAL FRAKTUR SMALL Q", + description="MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D52E, + specials={ "font", 0x3F0 }, + unicodeslot=0x1D78C, + visual="bf", }, - [0x1D52F]={ + [0x1D78D]={ category="ll", - description="MATHEMATICAL FRAKTUR SMALL R", + description="MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D52F, + specials={ "font", 0x3D5 }, + unicodeslot=0x1D78D, + visual="bf", }, - [0x1D530]={ + [0x1D78E]={ category="ll", - description="MATHEMATICAL FRAKTUR SMALL S", + description="MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D530, + specials={ "font", 0x3F1 }, + unicodeslot=0x1D78E, + visual="bf", }, - [0x1D531]={ + [0x1D78F]={ category="ll", - description="MATHEMATICAL FRAKTUR SMALL T", + description="MATHEMATICAL SANS-SERIF BOLD PI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D531, - }, - [0x1D532]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL U", + specials={ "font", 0x3D6 }, + unicodeslot=0x1D78F, + visual="bf", + }, + [0x1D790]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D532, + specials={ "font", 0x391 }, + unicodeslot=0x1D790, + visual="bi", }, - [0x1D533]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL V", + [0x1D791]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL BETA", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D533, + specials={ "font", 0x392 }, + unicodeslot=0x1D791, + visual="bi", }, - [0x1D534]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL W", + [0x1D792]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D534, + specials={ "font", 0x393 }, + unicodeslot=0x1D792, + visual="bi", }, - [0x1D535]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL X", + [0x1D793]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL DELTA", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D535, + specials={ "font", 0x394 }, + unicodeslot=0x1D793, + visual="bi", }, - [0x1D536]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL Y", + [0x1D794]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D536, + specials={ "font", 0x395 }, + unicodeslot=0x1D794, + visual="bi", }, - [0x1D537]={ - category="ll", - description="MATHEMATICAL FRAKTUR SMALL Z", + [0x1D795]={ + category="lu", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ZETA", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D537, + specials={ "font", 0x396 }, + unicodeslot=0x1D795, + visual="bi", }, - [0x1D538]={ + [0x1D796]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL A", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ETA", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D538, + specials={ "font", 0x397 }, + unicodeslot=0x1D796, + visual="bi", }, - [0x1D539]={ + [0x1D797]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL B", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D539, + specials={ "font", 0x398 }, + unicodeslot=0x1D797, + visual="bi", }, - [0x1D53B]={ + [0x1D798]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL D", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL IOTA", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D53B, + specials={ "font", 0x399 }, + unicodeslot=0x1D798, + visual="bi", }, - [0x1D53C]={ + [0x1D799]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL E", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D53C, + specials={ "font", 0x39A }, + unicodeslot=0x1D799, + visual="bi", }, - [0x1D53D]={ + [0x1D79A]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL F", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D53D, + specials={ "font", 0x39B }, + unicodeslot=0x1D79A, + visual="bi", }, - [0x1D53E]={ + [0x1D79B]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL G", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL MU", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D53E, + specials={ "font", 0x39C }, + unicodeslot=0x1D79B, + visual="bi", }, - [0x1D540]={ + [0x1D79C]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL I", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL NU", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D540, + specials={ "font", 0x39D }, + unicodeslot=0x1D79C, + visual="bi", }, - [0x1D541]={ + [0x1D79D]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL J", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL XI", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D541, + specials={ "font", 0x39E }, + unicodeslot=0x1D79D, + visual="bi", }, - [0x1D542]={ + [0x1D79E]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL K", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D542, + specials={ "font", 0x39F }, + unicodeslot=0x1D79E, + visual="bi", }, - [0x1D543]={ + [0x1D79F]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL L", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PI", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D543, + specials={ "font", 0x3A0 }, + unicodeslot=0x1D79F, + visual="bi", }, - [0x1D544]={ + [0x1D7A0]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL M", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL RHO", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D544, + specials={ "font", 0x3A1 }, + unicodeslot=0x1D7A0, + visual="bi", }, - [0x1D546]={ + [0x1D7A1]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL O", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D546, + specials={ "font", 0x3F4 }, + unicodeslot=0x1D7A1, + visual="bi", }, - [0x1D54A]={ + [0x1D7A2]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL S", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D54A, + specials={ "font", 0x3A3 }, + unicodeslot=0x1D7A2, + visual="bi", }, - [0x1D54B]={ + [0x1D7A3]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL T", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL TAU", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D54B, + specials={ "font", 0x3A4 }, + unicodeslot=0x1D7A3, + visual="bi", }, - [0x1D54C]={ + [0x1D7A4]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL U", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D54C, + specials={ "font", 0x3A5 }, + unicodeslot=0x1D7A4, + visual="bi", }, - [0x1D54D]={ + [0x1D7A5]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL V", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PHI", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D54D, + specials={ "font", 0x3A6 }, + unicodeslot=0x1D7A5, + visual="bi", }, - [0x1D54E]={ + [0x1D7A6]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL W", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL CHI", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D54E, + specials={ "font", 0x3A7 }, + unicodeslot=0x1D7A6, + visual="bi", }, - [0x1D54F]={ + [0x1D7A7]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL X", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PSI", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D54F, + specials={ "font", 0x3A8 }, + unicodeslot=0x1D7A7, + visual="bi", }, - [0x1D550]={ + [0x1D7A8]={ category="lu", - description="MATHEMATICAL DOUBLE-STRUCK CAPITAL Y", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D550, + specials={ "font", 0x3A9 }, + unicodeslot=0x1D7A8, + visual="bi", }, - [0x1D552]={ - category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL A", + [0x1D7A9]={ + category="sm", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D552, + specials={ "font", 0x2207 }, + unicodeslot=0x1D7A9, + visual="bi", }, - [0x1D553]={ + [0x1D7AA]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL B", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D553, + specials={ "font", 0x3B1 }, + unicodeslot=0x1D7AA, + visual="bi", }, - [0x1D554]={ + [0x1D7AB]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL C", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D554, + specials={ "font", 0x3B2 }, + unicodeslot=0x1D7AB, + visual="bi", }, - [0x1D555]={ + [0x1D7AC]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL D", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D555, + specials={ "font", 0x3B3 }, + unicodeslot=0x1D7AC, + visual="bi", }, - [0x1D556]={ + [0x1D7AD]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL E", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D556, + specials={ "font", 0x3B4 }, + unicodeslot=0x1D7AD, + visual="bi", }, - [0x1D557]={ + [0x1D7AE]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL F", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D557, + specials={ "font", 0x3B5 }, + unicodeslot=0x1D7AE, + visual="bi", }, - [0x1D558]={ + [0x1D7AF]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL G", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D558, + specials={ "font", 0x3B6 }, + unicodeslot=0x1D7AF, + visual="bi", }, - [0x1D559]={ + [0x1D7B0]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL H", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D559, + specials={ "font", 0x3B7 }, + unicodeslot=0x1D7B0, + visual="bi", }, - [0x1D55A]={ + [0x1D7B1]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL I", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D55A, + specials={ "font", 0x3B8 }, + unicodeslot=0x1D7B1, + visual="bi", }, - [0x1D55B]={ + [0x1D7B2]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL J", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D55B, + specials={ "font", 0x3B9 }, + unicodeslot=0x1D7B2, + visual="bi", }, - [0x1D55C]={ + [0x1D7B3]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL K", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D55C, + specials={ "font", 0x3BA }, + unicodeslot=0x1D7B3, + visual="bi", }, - [0x1D55D]={ + [0x1D7B4]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL L", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D55D, + specials={ "font", 0x3BB }, + unicodeslot=0x1D7B4, + visual="bi", }, - [0x1D55E]={ + [0x1D7B5]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL M", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D55E, + specials={ "font", 0x3BC }, + unicodeslot=0x1D7B5, + visual="bi", }, - [0x1D55F]={ + [0x1D7B6]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL N", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D55F, + specials={ "font", 0x3BD }, + unicodeslot=0x1D7B6, + visual="bi", }, - [0x1D560]={ + [0x1D7B7]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL O", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D560, + specials={ "font", 0x3BE }, + unicodeslot=0x1D7B7, + visual="bi", }, - [0x1D561]={ + [0x1D7B8]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL P", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D561, + specials={ "font", 0x3BF }, + unicodeslot=0x1D7B8, + visual="bi", }, - [0x1D562]={ + [0x1D7B9]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL Q", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D562, + specials={ "font", 0x3C0 }, + unicodeslot=0x1D7B9, + visual="bi", }, - [0x1D563]={ + [0x1D7BA]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL R", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D563, + specials={ "font", 0x3C1 }, + unicodeslot=0x1D7BA, + visual="bi", }, - [0x1D564]={ + [0x1D7BB]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL S", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D564, + specials={ "font", 0x3C2 }, + unicodeslot=0x1D7BB, + visual="bi", }, - [0x1D565]={ + [0x1D7BC]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL T", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D565, + specials={ "font", 0x3C3 }, + unicodeslot=0x1D7BC, + visual="bi", }, - [0x1D566]={ + [0x1D7BD]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL U", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D566, + specials={ "font", 0x3C4 }, + unicodeslot=0x1D7BD, + visual="bi", }, - [0x1D567]={ + [0x1D7BE]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL V", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D567, + specials={ "font", 0x3C5 }, + unicodeslot=0x1D7BE, + visual="bi", }, - [0x1D568]={ + [0x1D7BF]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL W", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D568, + specials={ "font", 0x3C6 }, + unicodeslot=0x1D7BF, + visual="bi", }, - [0x1D569]={ + [0x1D7C0]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL X", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D569, + specials={ "font", 0x3C7 }, + unicodeslot=0x1D7C0, + visual="bi", }, - [0x1D56A]={ + [0x1D7C1]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL Y", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D56A, + specials={ "font", 0x3C8 }, + unicodeslot=0x1D7C1, + visual="bi", }, - [0x1D56B]={ + [0x1D7C2]={ category="ll", - description="MATHEMATICAL DOUBLE-STRUCK SMALL Z", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D56B, + specials={ "font", 0x3C9 }, + unicodeslot=0x1D7C2, + visual="bi", }, - [0x1D56C]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL A", - direction="l", + [0x1D7C3]={ + category="sm", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL", + direction="on", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D56C, - visual="bf", + specials={ "font", 0x2202 }, + unicodeslot=0x1D7C3, + visual="bi", }, - [0x1D56D]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL B", + [0x1D7C4]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D56D, - visual="bf", + specials={ "font", 0x3F5 }, + unicodeslot=0x1D7C4, + visual="bi", }, - [0x1D56E]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL C", + [0x1D7C5]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D56E, - visual="bf", + specials={ "font", 0x3D1 }, + unicodeslot=0x1D7C5, + visual="bi", }, - [0x1D56F]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL D", + [0x1D7C6]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D56F, - visual="bf", + specials={ "font", 0x3F0 }, + unicodeslot=0x1D7C6, + visual="bi", }, - [0x1D570]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL E", + [0x1D7C7]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D570, - visual="bf", + specials={ "font", 0x3D5 }, + unicodeslot=0x1D7C7, + visual="bi", }, - [0x1D571]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL F", + [0x1D7C8]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D571, - visual="bf", + specials={ "font", 0x3F1 }, + unicodeslot=0x1D7C8, + visual="bi", }, - [0x1D572]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL G", + [0x1D7C9]={ + category="ll", + description="MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D572, - visual="bf", + specials={ "font", 0x3D6 }, + unicodeslot=0x1D7C9, + visual="bi", }, - [0x1D573]={ + [0x1D7CA]={ category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL H", + description="MATHEMATICAL BOLD CAPITAL DIGAMMA", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D573, + specials={ "font", 0x3DC }, + unicodeslot=0x1D7CA, visual="bf", }, - [0x1D574]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL I", + [0x1D7CB]={ + category="ll", + description="MATHEMATICAL BOLD SMALL DIGAMMA", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D574, + specials={ "font", 0x3DD }, + unicodeslot=0x1D7CB, visual="bf", }, - [0x1D575]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL J", - direction="l", - linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D575, + [0x1D7CE]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT ZERO", + direction="en", + linebreak="nu", + specials={ "font", 0x30 }, + unicodeslot=0x1D7CE, visual="bf", }, - [0x1D576]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL K", - direction="l", - linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D576, + [0x1D7CF]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT ONE", + direction="en", + linebreak="nu", + specials={ "font", 0x31 }, + unicodeslot=0x1D7CF, visual="bf", }, - [0x1D577]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL L", - direction="l", - linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D577, + [0x1D7D0]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT TWO", + direction="en", + linebreak="nu", + specials={ "font", 0x32 }, + unicodeslot=0x1D7D0, visual="bf", }, - [0x1D578]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL M", - direction="l", - linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D578, + [0x1D7D1]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT THREE", + direction="en", + linebreak="nu", + specials={ "font", 0x33 }, + unicodeslot=0x1D7D1, visual="bf", }, - [0x1D579]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL N", - direction="l", - linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D579, + [0x1D7D2]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT FOUR", + direction="en", + linebreak="nu", + specials={ "font", 0x34 }, + unicodeslot=0x1D7D2, visual="bf", }, - [0x1D57A]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL O", - direction="l", - linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D57A, + [0x1D7D3]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT FIVE", + direction="en", + linebreak="nu", + specials={ "font", 0x35 }, + unicodeslot=0x1D7D3, visual="bf", }, - [0x1D57B]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL P", - direction="l", - linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D57B, + [0x1D7D4]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT SIX", + direction="en", + linebreak="nu", + specials={ "font", 0x36 }, + unicodeslot=0x1D7D4, visual="bf", }, - [0x1D57C]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL Q", - direction="l", - linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D57C, + [0x1D7D5]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT SEVEN", + direction="en", + linebreak="nu", + specials={ "font", 0x37 }, + unicodeslot=0x1D7D5, visual="bf", }, - [0x1D57D]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL R", - direction="l", - linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D57D, + [0x1D7D6]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT EIGHT", + direction="en", + linebreak="nu", + specials={ "font", 0x38 }, + unicodeslot=0x1D7D6, visual="bf", }, - [0x1D57E]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL S", - direction="l", - linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D57E, + [0x1D7D7]={ + category="nd", + description="MATHEMATICAL BOLD DIGIT NINE", + direction="en", + linebreak="nu", + specials={ "font", 0x39 }, + unicodeslot=0x1D7D7, visual="bf", }, - [0x1D57F]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL T", - direction="l", - linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D57F, - visual="bf", + [0x1D7D8]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT ZERO", + direction="en", + linebreak="nu", + specials={ "font", 0x30 }, + unicodeslot=0x1D7D8, }, - [0x1D580]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL U", - direction="l", - linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D580, - visual="bf", + [0x1D7D9]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT ONE", + direction="en", + linebreak="nu", + specials={ "font", 0x31 }, + unicodeslot=0x1D7D9, }, - [0x1D581]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL V", - direction="l", - linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D581, - visual="bf", + [0x1D7DA]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT TWO", + direction="en", + linebreak="nu", + specials={ "font", 0x32 }, + unicodeslot=0x1D7DA, }, - [0x1D582]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL W", - direction="l", - linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D582, - visual="bf", + [0x1D7DB]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT THREE", + direction="en", + linebreak="nu", + specials={ "font", 0x33 }, + unicodeslot=0x1D7DB, }, - [0x1D583]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL X", - direction="l", - linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D583, - visual="bf", + [0x1D7DC]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT FOUR", + direction="en", + linebreak="nu", + specials={ "font", 0x34 }, + unicodeslot=0x1D7DC, }, - [0x1D584]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL Y", - direction="l", - linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D584, - visual="bf", + [0x1D7DD]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT FIVE", + direction="en", + linebreak="nu", + specials={ "font", 0x35 }, + unicodeslot=0x1D7DD, }, - [0x1D585]={ - category="lu", - description="MATHEMATICAL BOLD FRAKTUR CAPITAL Z", - direction="l", - linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D585, - visual="bf", + [0x1D7DE]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT SIX", + direction="en", + linebreak="nu", + specials={ "font", 0x36 }, + unicodeslot=0x1D7DE, }, - [0x1D586]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL A", - direction="l", - linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D586, - visual="bf", + [0x1D7DF]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT SEVEN", + direction="en", + linebreak="nu", + specials={ "font", 0x37 }, + unicodeslot=0x1D7DF, }, - [0x1D587]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL B", - direction="l", - linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D587, - visual="bf", + [0x1D7E0]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT EIGHT", + direction="en", + linebreak="nu", + specials={ "font", 0x38 }, + unicodeslot=0x1D7E0, }, - [0x1D588]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL C", - direction="l", - linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D588, - visual="bf", + [0x1D7E1]={ + category="nd", + description="MATHEMATICAL DOUBLE-STRUCK DIGIT NINE", + direction="en", + linebreak="nu", + specials={ "font", 0x39 }, + unicodeslot=0x1D7E1, }, - [0x1D589]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL D", - direction="l", - linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D589, - visual="bf", + [0x1D7E2]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT ZERO", + direction="en", + linebreak="nu", + specials={ "font", 0x30 }, + unicodeslot=0x1D7E2, }, - [0x1D58A]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL E", - direction="l", - linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D58A, - visual="bf", + [0x1D7E3]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT ONE", + direction="en", + linebreak="nu", + specials={ "font", 0x31 }, + unicodeslot=0x1D7E3, }, - [0x1D58B]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL F", - direction="l", - linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D58B, - visual="bf", + [0x1D7E4]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT TWO", + direction="en", + linebreak="nu", + specials={ "font", 0x32 }, + unicodeslot=0x1D7E4, }, - [0x1D58C]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL G", - direction="l", - linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D58C, - visual="bf", + [0x1D7E5]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT THREE", + direction="en", + linebreak="nu", + specials={ "font", 0x33 }, + unicodeslot=0x1D7E5, }, - [0x1D58D]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL H", - direction="l", - linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D58D, - visual="bf", + [0x1D7E6]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT FOUR", + direction="en", + linebreak="nu", + specials={ "font", 0x34 }, + unicodeslot=0x1D7E6, }, - [0x1D58E]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL I", - direction="l", - linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D58E, - visual="bf", + [0x1D7E7]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT FIVE", + direction="en", + linebreak="nu", + specials={ "font", 0x35 }, + unicodeslot=0x1D7E7, }, - [0x1D58F]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL J", - direction="l", - linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D58F, - visual="bf", + [0x1D7E8]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT SIX", + direction="en", + linebreak="nu", + specials={ "font", 0x36 }, + unicodeslot=0x1D7E8, }, - [0x1D590]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL K", - direction="l", - linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D590, - visual="bf", + [0x1D7E9]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT SEVEN", + direction="en", + linebreak="nu", + specials={ "font", 0x37 }, + unicodeslot=0x1D7E9, }, - [0x1D591]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL L", - direction="l", - linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D591, + [0x1D7EA]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT EIGHT", + direction="en", + linebreak="nu", + specials={ "font", 0x38 }, + unicodeslot=0x1D7EA, + }, + [0x1D7EB]={ + category="nd", + description="MATHEMATICAL SANS-SERIF DIGIT NINE", + direction="en", + linebreak="nu", + specials={ "font", 0x39 }, + unicodeslot=0x1D7EB, + }, + [0x1D7EC]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT ZERO", + direction="en", + linebreak="nu", + specials={ "font", 0x30 }, + unicodeslot=0x1D7EC, visual="bf", }, - [0x1D592]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL M", - direction="l", - linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D592, + [0x1D7ED]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT ONE", + direction="en", + linebreak="nu", + specials={ "font", 0x31 }, + unicodeslot=0x1D7ED, visual="bf", }, - [0x1D593]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL N", - direction="l", - linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D593, + [0x1D7EE]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT TWO", + direction="en", + linebreak="nu", + specials={ "font", 0x32 }, + unicodeslot=0x1D7EE, visual="bf", }, - [0x1D594]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL O", - direction="l", - linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D594, + [0x1D7EF]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT THREE", + direction="en", + linebreak="nu", + specials={ "font", 0x33 }, + unicodeslot=0x1D7EF, visual="bf", }, - [0x1D595]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL P", - direction="l", - linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D595, + [0x1D7F0]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT FOUR", + direction="en", + linebreak="nu", + specials={ "font", 0x34 }, + unicodeslot=0x1D7F0, visual="bf", }, - [0x1D596]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL Q", - direction="l", - linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D596, + [0x1D7F1]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT FIVE", + direction="en", + linebreak="nu", + specials={ "font", 0x35 }, + unicodeslot=0x1D7F1, visual="bf", }, - [0x1D597]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL R", - direction="l", - linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D597, + [0x1D7F2]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT SIX", + direction="en", + linebreak="nu", + specials={ "font", 0x36 }, + unicodeslot=0x1D7F2, visual="bf", }, - [0x1D598]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL S", - direction="l", - linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D598, + [0x1D7F3]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT SEVEN", + direction="en", + linebreak="nu", + specials={ "font", 0x37 }, + unicodeslot=0x1D7F3, visual="bf", }, - [0x1D599]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL T", - direction="l", - linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D599, + [0x1D7F4]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT EIGHT", + direction="en", + linebreak="nu", + specials={ "font", 0x38 }, + unicodeslot=0x1D7F4, visual="bf", }, - [0x1D59A]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL U", - direction="l", - linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D59A, + [0x1D7F5]={ + category="nd", + description="MATHEMATICAL SANS-SERIF BOLD DIGIT NINE", + direction="en", + linebreak="nu", + specials={ "font", 0x39 }, + unicodeslot=0x1D7F5, visual="bf", }, - [0x1D59B]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL V", - direction="l", - linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D59B, - visual="bf", + [0x1D7F6]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT ZERO", + direction="en", + linebreak="nu", + specials={ "font", 0x30 }, + unicodeslot=0x1D7F6, }, - [0x1D59C]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL W", + [0x1D7F7]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT ONE", + direction="en", + linebreak="nu", + specials={ "font", 0x31 }, + unicodeslot=0x1D7F7, + }, + [0x1D7F8]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT TWO", + direction="en", + linebreak="nu", + specials={ "font", 0x32 }, + unicodeslot=0x1D7F8, + }, + [0x1D7F9]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT THREE", + direction="en", + linebreak="nu", + specials={ "font", 0x33 }, + unicodeslot=0x1D7F9, + }, + [0x1D7FA]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT FOUR", + direction="en", + linebreak="nu", + specials={ "font", 0x34 }, + unicodeslot=0x1D7FA, + }, + [0x1D7FB]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT FIVE", + direction="en", + linebreak="nu", + specials={ "font", 0x35 }, + unicodeslot=0x1D7FB, + }, + [0x1D7FC]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT SIX", + direction="en", + linebreak="nu", + specials={ "font", 0x36 }, + unicodeslot=0x1D7FC, + }, + [0x1D7FD]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT SEVEN", + direction="en", + linebreak="nu", + specials={ "font", 0x37 }, + unicodeslot=0x1D7FD, + }, + [0x1D7FE]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT EIGHT", + direction="en", + linebreak="nu", + specials={ "font", 0x38 }, + unicodeslot=0x1D7FE, + }, + [0x1D7FF]={ + category="nd", + description="MATHEMATICAL MONOSPACE DIGIT NINE", + direction="en", + linebreak="nu", + specials={ "font", 0x39 }, + unicodeslot=0x1D7FF, + }, + [0x1D800]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D59C, - visual="bf", + unicodeslot=0x1D800, }, - [0x1D59D]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL X", + [0x1D801]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D59D, - visual="bf", + unicodeslot=0x1D801, }, - [0x1D59E]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL Y", + [0x1D802]={ + category="so", + description="SIGNWRITING HAND-CUP INDEX", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D59E, - visual="bf", + unicodeslot=0x1D802, }, - [0x1D59F]={ - category="ll", - description="MATHEMATICAL BOLD FRAKTUR SMALL Z", + [0x1D803]={ + category="so", + description="SIGNWRITING HAND-OVAL INDEX", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D59F, - visual="bf", + unicodeslot=0x1D803, }, - [0x1D5A0]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL A", + [0x1D804]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D5A0, + unicodeslot=0x1D804, }, - [0x1D5A1]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL B", + [0x1D805]={ + category="so", + description="SIGNWRITING HAND-ANGLE INDEX", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D5A1, + unicodeslot=0x1D805, }, - [0x1D5A2]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL C", + [0x1D806]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX BENT", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D5A2, + unicodeslot=0x1D806, }, - [0x1D5A3]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL D", + [0x1D807]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX BENT", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D5A3, + unicodeslot=0x1D807, }, - [0x1D5A4]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL E", + [0x1D808]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB UNDER INDEX BENT", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D5A4, + unicodeslot=0x1D808, }, - [0x1D5A5]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL F", + [0x1D809]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX RAISED KNUCKLE", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D5A5, + unicodeslot=0x1D809, }, - [0x1D5A6]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL G", + [0x1D80A]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX CUPPED", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D5A6, + unicodeslot=0x1D80A, }, - [0x1D5A7]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL H", + [0x1D80B]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX HINGED", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D5A7, + unicodeslot=0x1D80B, }, - [0x1D5A8]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL I", + [0x1D80C]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX HINGED LOW", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D5A8, + unicodeslot=0x1D80C, }, - [0x1D5A9]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL J", + [0x1D80D]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX HINGE", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D5A9, + unicodeslot=0x1D80D, }, - [0x1D5AA]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL K", + [0x1D80E]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D5AA, + unicodeslot=0x1D80E, }, - [0x1D5AB]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL L", + [0x1D80F]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX MIDDLE", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D5AB, + unicodeslot=0x1D80F, }, - [0x1D5AC]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL M", + [0x1D810]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE BENT", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D5AC, + unicodeslot=0x1D810, }, - [0x1D5AD]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL N", + [0x1D811]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE RAISED KNUCKLES", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D5AD, + unicodeslot=0x1D811, }, - [0x1D5AE]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL O", + [0x1D812]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE HINGED", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D5AE, + unicodeslot=0x1D812, }, - [0x1D5AF]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL P", + [0x1D813]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX UP MIDDLE HINGED", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D5AF, + unicodeslot=0x1D813, }, - [0x1D5B0]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL Q", + [0x1D814]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX HINGED MIDDLE UP", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D5B0, + unicodeslot=0x1D814, }, - [0x1D5B1]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL R", + [0x1D815]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D5B1, + unicodeslot=0x1D815, }, - [0x1D5B2]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL S", + [0x1D816]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED INDEX BENT", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D5B2, + unicodeslot=0x1D816, }, - [0x1D5B3]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL T", + [0x1D817]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED MIDDLE BENT", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D5B3, + unicodeslot=0x1D817, }, - [0x1D5B4]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL U", + [0x1D818]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED CUPPED", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D5B4, + unicodeslot=0x1D818, }, - [0x1D5B5]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL V", + [0x1D819]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED HINGED", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D5B5, + unicodeslot=0x1D819, }, - [0x1D5B6]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL W", + [0x1D81A]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CROSSED", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D5B6, + unicodeslot=0x1D81A, }, - [0x1D5B7]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL X", + [0x1D81B]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX MIDDLE CROSSED", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D5B7, + unicodeslot=0x1D81B, }, - [0x1D5B8]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL Y", + [0x1D81C]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE BENT OVER INDEX", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D5B8, + unicodeslot=0x1D81C, }, - [0x1D5B9]={ - category="lu", - description="MATHEMATICAL SANS-SERIF CAPITAL Z", + [0x1D81D]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX BENT OVER MIDDLE", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D5B9, + unicodeslot=0x1D81D, }, - [0x1D5BA]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL A", + [0x1D81E]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D5BA, + unicodeslot=0x1D81E, }, - [0x1D5BB]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL B", + [0x1D81F]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX MIDDLE THUMB", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D5BB, + unicodeslot=0x1D81F, }, - [0x1D5BC]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL C", + [0x1D820]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE STRAIGHT THUMB BENT", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D5BC, + unicodeslot=0x1D820, }, - [0x1D5BD]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL D", + [0x1D821]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE BENT THUMB STRAIGHT", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D5BD, + unicodeslot=0x1D821, }, - [0x1D5BE]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL E", + [0x1D822]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB BENT", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D5BE, + unicodeslot=0x1D822, }, - [0x1D5BF]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL F", + [0x1D823]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE HINGED SPREAD THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D5BF, + unicodeslot=0x1D823, }, - [0x1D5C0]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL G", + [0x1D824]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX UP MIDDLE HINGED THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D5C0, + unicodeslot=0x1D824, }, - [0x1D5C1]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL H", + [0x1D825]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX UP MIDDLE HINGED THUMB CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D5C1, + unicodeslot=0x1D825, }, - [0x1D5C2]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL I", + [0x1D826]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX HINGED MIDDLE UP THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D5C2, + unicodeslot=0x1D826, }, - [0x1D5C3]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL J", + [0x1D827]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE UP SPREAD THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D5C3, + unicodeslot=0x1D827, }, - [0x1D5C4]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL K", + [0x1D828]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB CUPPED", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D5C4, + unicodeslot=0x1D828, }, - [0x1D5C5]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL L", + [0x1D829]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB CIRCLED", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D5C5, + unicodeslot=0x1D829, }, - [0x1D5C6]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL M", + [0x1D82A]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB HOOKED", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D5C6, + unicodeslot=0x1D82A, }, - [0x1D5C7]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL N", + [0x1D82B]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB HINGED", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D5C7, + unicodeslot=0x1D82B, }, - [0x1D5C8]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL O", + [0x1D82C]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB BETWEEN INDEX MIDDLE STRAIGHT", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D5C8, + unicodeslot=0x1D82C, }, - [0x1D5C9]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL P", + [0x1D82D]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D5C9, + unicodeslot=0x1D82D, }, - [0x1D5CA]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL Q", + [0x1D82E]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED THUMB SIDE CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D5CA, + unicodeslot=0x1D82E, }, - [0x1D5CB]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL R", + [0x1D82F]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED THUMB SIDE BENT", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D5CB, + unicodeslot=0x1D82F, }, - [0x1D5CC]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL S", + [0x1D830]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE THUMB HOOKED INDEX UP", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D5CC, + unicodeslot=0x1D830, }, - [0x1D5CD]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL T", + [0x1D831]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB HOOKED MIDDLE UP", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D5CD, + unicodeslot=0x1D831, }, - [0x1D5CE]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL U", + [0x1D832]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED HINGED THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D5CE, + unicodeslot=0x1D832, }, - [0x1D5CF]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL V", + [0x1D833]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CROSSED THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D5CF, + unicodeslot=0x1D833, }, - [0x1D5D0]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL W", + [0x1D834]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D5D0, + unicodeslot=0x1D834, }, - [0x1D5D1]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL X", + [0x1D835]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CONJOINED CUPPED THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D5D1, + unicodeslot=0x1D835, }, - [0x1D5D2]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL Y", + [0x1D836]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE THUMB CUPPED INDEX UP", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D5D2, + unicodeslot=0x1D836, }, - [0x1D5D3]={ - category="ll", - description="MATHEMATICAL SANS-SERIF SMALL Z", + [0x1D837]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB CUPPED MIDDLE UP", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D5D3, + unicodeslot=0x1D837, }, - [0x1D5D4]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL A", + [0x1D838]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE THUMB CIRCLED INDEX UP", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D5D4, - visual="bf", + unicodeslot=0x1D838, }, - [0x1D5D5]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL B", + [0x1D839]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE THUMB CIRCLED INDEX HINGED", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D5D5, - visual="bf", + unicodeslot=0x1D839, }, - [0x1D5D6]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL C", + [0x1D83A]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB ANGLED OUT MIDDLE UP", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D5D6, - visual="bf", + unicodeslot=0x1D83A, }, - [0x1D5D7]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL D", + [0x1D83B]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB ANGLED IN MIDDLE UP", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D5D7, - visual="bf", + unicodeslot=0x1D83B, }, - [0x1D5D8]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL E", + [0x1D83C]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB CIRCLED MIDDLE UP", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D5D8, - visual="bf", + unicodeslot=0x1D83C, }, - [0x1D5D9]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL F", + [0x1D83D]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB CONJOINED HINGED", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D5D9, - visual="bf", + unicodeslot=0x1D83D, }, - [0x1D5DA]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL G", + [0x1D83E]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB ANGLED OUT", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D5DA, - visual="bf", + unicodeslot=0x1D83E, }, - [0x1D5DB]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL H", + [0x1D83F]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE THUMB ANGLED", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D5DB, - visual="bf", + unicodeslot=0x1D83F, }, - [0x1D5DC]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL I", + [0x1D840]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE THUMB ANGLED OUT INDEX UP", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D5DC, - visual="bf", + unicodeslot=0x1D840, }, - [0x1D5DD]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL J", + [0x1D841]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE THUMB ANGLED OUT INDEX CROSSED", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D5DD, - visual="bf", + unicodeslot=0x1D841, }, - [0x1D5DE]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL K", + [0x1D842]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE THUMB ANGLED INDEX UP", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D5DE, - visual="bf", + unicodeslot=0x1D842, }, - [0x1D5DF]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL L", + [0x1D843]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB HOOKED MIDDLE HINGED", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D5DF, - visual="bf", + unicodeslot=0x1D843, }, - [0x1D5E0]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL M", + [0x1D844]={ + category="so", + description="SIGNWRITING HAND-FLAT FOUR FINGERS", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D5E0, - visual="bf", + unicodeslot=0x1D844, }, - [0x1D5E1]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL N", + [0x1D845]={ + category="so", + description="SIGNWRITING HAND-FLAT FOUR FINGERS BENT", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D5E1, - visual="bf", + unicodeslot=0x1D845, }, - [0x1D5E2]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL O", + [0x1D846]={ + category="so", + description="SIGNWRITING HAND-FLAT FOUR FINGERS HINGED", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D5E2, - visual="bf", + unicodeslot=0x1D846, }, - [0x1D5E3]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL P", + [0x1D847]={ + category="so", + description="SIGNWRITING HAND-FLAT FOUR FINGERS CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D5E3, - visual="bf", + unicodeslot=0x1D847, }, - [0x1D5E4]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL Q", + [0x1D848]={ + category="so", + description="SIGNWRITING HAND-FLAT FOUR FINGERS CONJOINED SPLIT", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D5E4, - visual="bf", + unicodeslot=0x1D848, }, - [0x1D5E5]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL R", + [0x1D849]={ + category="so", + description="SIGNWRITING HAND-CLAW FOUR FINGERS CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D5E5, - visual="bf", + unicodeslot=0x1D849, }, - [0x1D5E6]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL S", + [0x1D84A]={ + category="so", + description="SIGNWRITING HAND-FIST FOUR FINGERS CONJOINED BENT", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D5E6, - visual="bf", + unicodeslot=0x1D84A, }, - [0x1D5E7]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL T", + [0x1D84B]={ + category="so", + description="SIGNWRITING HAND-HINGE FOUR FINGERS CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D5E7, - visual="bf", + unicodeslot=0x1D84B, }, - [0x1D5E8]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL U", + [0x1D84C]={ + category="so", + description="SIGNWRITING HAND-FLAT FIVE FINGERS SPREAD", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D5E8, - visual="bf", + unicodeslot=0x1D84C, }, - [0x1D5E9]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL V", + [0x1D84D]={ + category="so", + description="SIGNWRITING HAND-FLAT HEEL FIVE FINGERS SPREAD", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D5E9, - visual="bf", + unicodeslot=0x1D84D, }, - [0x1D5EA]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL W", + [0x1D84E]={ + category="so", + description="SIGNWRITING HAND-FLAT FIVE FINGERS SPREAD FOUR BENT", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D5EA, - visual="bf", + unicodeslot=0x1D84E, }, - [0x1D5EB]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL X", + [0x1D84F]={ + category="so", + description="SIGNWRITING HAND-FLAT HEEL FIVE FINGERS SPREAD FOUR BENT", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D5EB, - visual="bf", + unicodeslot=0x1D84F, }, - [0x1D5EC]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL Y", + [0x1D850]={ + category="so", + description="SIGNWRITING HAND-FLAT FIVE FINGERS SPREAD BENT", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D5EC, - visual="bf", + unicodeslot=0x1D850, }, - [0x1D5ED]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL Z", + [0x1D851]={ + category="so", + description="SIGNWRITING HAND-FLAT HEEL FIVE FINGERS SPREAD BENT", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D5ED, - visual="bf", + unicodeslot=0x1D851, }, - [0x1D5EE]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL A", + [0x1D852]={ + category="so", + description="SIGNWRITING HAND-FLAT FIVE FINGERS SPREAD THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D5EE, - visual="bf", + unicodeslot=0x1D852, }, - [0x1D5EF]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL B", + [0x1D853]={ + category="so", + description="SIGNWRITING HAND-CUP FIVE FINGERS SPREAD", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D5EF, - visual="bf", + unicodeslot=0x1D853, }, - [0x1D5F0]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL C", + [0x1D854]={ + category="so", + description="SIGNWRITING HAND-CUP FIVE FINGERS SPREAD OPEN", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D5F0, - visual="bf", + unicodeslot=0x1D854, }, - [0x1D5F1]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL D", + [0x1D855]={ + category="so", + description="SIGNWRITING HAND-HINGE FIVE FINGERS SPREAD OPEN", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D5F1, - visual="bf", + unicodeslot=0x1D855, }, - [0x1D5F2]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL E", + [0x1D856]={ + category="so", + description="SIGNWRITING HAND-OVAL FIVE FINGERS SPREAD", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D5F2, - visual="bf", + unicodeslot=0x1D856, }, - [0x1D5F3]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL F", + [0x1D857]={ + category="so", + description="SIGNWRITING HAND-FLAT FIVE FINGERS SPREAD HINGED", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D5F3, - visual="bf", + unicodeslot=0x1D857, }, - [0x1D5F4]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL G", + [0x1D858]={ + category="so", + description="SIGNWRITING HAND-FLAT FIVE FINGERS SPREAD HINGED THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D5F4, - visual="bf", + unicodeslot=0x1D858, }, - [0x1D5F5]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL H", + [0x1D859]={ + category="so", + description="SIGNWRITING HAND-FLAT FIVE FINGERS SPREAD HINGED NO THUMB", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D5F5, - visual="bf", + unicodeslot=0x1D859, }, - [0x1D5F6]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL I", + [0x1D85A]={ + category="so", + description="SIGNWRITING HAND-FLAT", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D5F6, - visual="bf", + unicodeslot=0x1D85A, }, - [0x1D5F7]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL J", + [0x1D85B]={ + category="so", + description="SIGNWRITING HAND-FLAT BETWEEN PALM FACINGS", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D5F7, - visual="bf", + unicodeslot=0x1D85B, }, - [0x1D5F8]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL K", + [0x1D85C]={ + category="so", + description="SIGNWRITING HAND-FLAT HEEL", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D5F8, - visual="bf", + unicodeslot=0x1D85C, }, - [0x1D5F9]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL L", + [0x1D85D]={ + category="so", + description="SIGNWRITING HAND-FLAT THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D5F9, - visual="bf", + unicodeslot=0x1D85D, }, - [0x1D5FA]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL M", + [0x1D85E]={ + category="so", + description="SIGNWRITING HAND-FLAT HEEL THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D5FA, - visual="bf", + unicodeslot=0x1D85E, }, - [0x1D5FB]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL N", + [0x1D85F]={ + category="so", + description="SIGNWRITING HAND-FLAT THUMB BENT", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D5FB, - visual="bf", + unicodeslot=0x1D85F, }, - [0x1D5FC]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL O", + [0x1D860]={ + category="so", + description="SIGNWRITING HAND-FLAT THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D5FC, - visual="bf", + unicodeslot=0x1D860, }, - [0x1D5FD]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL P", + [0x1D861]={ + category="so", + description="SIGNWRITING HAND-FLAT SPLIT INDEX THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D5FD, - visual="bf", + unicodeslot=0x1D861, }, - [0x1D5FE]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL Q", + [0x1D862]={ + category="so", + description="SIGNWRITING HAND-FLAT SPLIT CENTRE", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D5FE, - visual="bf", + unicodeslot=0x1D862, }, - [0x1D5FF]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL R", + [0x1D863]={ + category="so", + description="SIGNWRITING HAND-FLAT SPLIT CENTRE THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D5FF, - visual="bf", + unicodeslot=0x1D863, }, - [0x1D600]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL S", + [0x1D864]={ + category="so", + description="SIGNWRITING HAND-FLAT SPLIT CENTRE THUMB SIDE BENT", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D600, - visual="bf", + unicodeslot=0x1D864, }, - [0x1D601]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL T", + [0x1D865]={ + category="so", + description="SIGNWRITING HAND-FLAT SPLIT LITTLE", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D601, - visual="bf", + unicodeslot=0x1D865, }, - [0x1D602]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL U", + [0x1D866]={ + category="so", + description="SIGNWRITING HAND-CLAW", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D602, - visual="bf", + unicodeslot=0x1D866, }, - [0x1D603]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL V", + [0x1D867]={ + category="so", + description="SIGNWRITING HAND-CLAW THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D603, - visual="bf", + unicodeslot=0x1D867, }, - [0x1D604]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL W", + [0x1D868]={ + category="so", + description="SIGNWRITING HAND-CLAW NO THUMB", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D604, - visual="bf", + unicodeslot=0x1D868, }, - [0x1D605]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL X", + [0x1D869]={ + category="so", + description="SIGNWRITING HAND-CLAW THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D605, - visual="bf", + unicodeslot=0x1D869, }, - [0x1D606]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL Y", + [0x1D86A]={ + category="so", + description="SIGNWRITING HAND-HOOK CURLICUE", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D606, - visual="bf", + unicodeslot=0x1D86A, }, - [0x1D607]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL Z", + [0x1D86B]={ + category="so", + description="SIGNWRITING HAND-HOOK", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D607, - visual="bf", + unicodeslot=0x1D86B, }, - [0x1D608]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL A", + [0x1D86C]={ + category="so", + description="SIGNWRITING HAND-CUP OPEN", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D608, - visual="it", + unicodeslot=0x1D86C, }, - [0x1D609]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL B", + [0x1D86D]={ + category="so", + description="SIGNWRITING HAND-CUP", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D609, - visual="it", + unicodeslot=0x1D86D, }, - [0x1D60A]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL C", + [0x1D86E]={ + category="so", + description="SIGNWRITING HAND-CUP OPEN THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D60A, - visual="it", + unicodeslot=0x1D86E, }, - [0x1D60B]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL D", + [0x1D86F]={ + category="so", + description="SIGNWRITING HAND-CUP THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D60B, - visual="it", + unicodeslot=0x1D86F, }, - [0x1D60C]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL E", + [0x1D870]={ + category="so", + description="SIGNWRITING HAND-CUP OPEN NO THUMB", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D60C, - visual="it", + unicodeslot=0x1D870, }, - [0x1D60D]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL F", + [0x1D871]={ + category="so", + description="SIGNWRITING HAND-CUP NO THUMB", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D60D, - visual="it", + unicodeslot=0x1D871, }, - [0x1D60E]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL G", + [0x1D872]={ + category="so", + description="SIGNWRITING HAND-CUP OPEN THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D60E, - visual="it", + unicodeslot=0x1D872, }, - [0x1D60F]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL H", + [0x1D873]={ + category="so", + description="SIGNWRITING HAND-CUP THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D60F, - visual="it", + unicodeslot=0x1D873, }, - [0x1D610]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL I", + [0x1D874]={ + category="so", + description="SIGNWRITING HAND-CURLICUE OPEN", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D610, - visual="it", + unicodeslot=0x1D874, }, - [0x1D611]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL J", + [0x1D875]={ + category="so", + description="SIGNWRITING HAND-CURLICUE", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D611, - visual="it", + unicodeslot=0x1D875, }, - [0x1D612]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL K", + [0x1D876]={ + category="so", + description="SIGNWRITING HAND-CIRCLE", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D612, - visual="it", + unicodeslot=0x1D876, }, - [0x1D613]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL L", + [0x1D877]={ + category="so", + description="SIGNWRITING HAND-OVAL", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D613, - visual="it", + unicodeslot=0x1D877, }, - [0x1D614]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL M", + [0x1D878]={ + category="so", + description="SIGNWRITING HAND-OVAL THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D614, - visual="it", + unicodeslot=0x1D878, }, - [0x1D615]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL N", + [0x1D879]={ + category="so", + description="SIGNWRITING HAND-OVAL NO THUMB", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D615, - visual="it", + unicodeslot=0x1D879, }, - [0x1D616]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL O", + [0x1D87A]={ + category="so", + description="SIGNWRITING HAND-OVAL THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D616, - visual="it", + unicodeslot=0x1D87A, }, - [0x1D617]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL P", + [0x1D87B]={ + category="so", + description="SIGNWRITING HAND-HINGE OPEN", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D617, - visual="it", + unicodeslot=0x1D87B, }, - [0x1D618]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL Q", + [0x1D87C]={ + category="so", + description="SIGNWRITING HAND-HINGE OPEN THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D618, - visual="it", + unicodeslot=0x1D87C, }, - [0x1D619]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL R", + [0x1D87D]={ + category="so", + description="SIGNWRITING HAND-HINGE", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D619, - visual="it", + unicodeslot=0x1D87D, }, - [0x1D61A]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL S", + [0x1D87E]={ + category="so", + description="SIGNWRITING HAND-HINGE SMALL", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D61A, - visual="it", + unicodeslot=0x1D87E, }, - [0x1D61B]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL T", + [0x1D87F]={ + category="so", + description="SIGNWRITING HAND-HINGE OPEN THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D61B, - visual="it", + unicodeslot=0x1D87F, }, - [0x1D61C]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL U", + [0x1D880]={ + category="so", + description="SIGNWRITING HAND-HINGE THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D61C, - visual="it", + unicodeslot=0x1D880, }, - [0x1D61D]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL V", + [0x1D881]={ + category="so", + description="SIGNWRITING HAND-HINGE OPEN NO THUMB", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D61D, - visual="it", + unicodeslot=0x1D881, }, - [0x1D61E]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL W", + [0x1D882]={ + category="so", + description="SIGNWRITING HAND-HINGE NO THUMB", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D61E, - visual="it", + unicodeslot=0x1D882, }, - [0x1D61F]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL X", + [0x1D883]={ + category="so", + description="SIGNWRITING HAND-HINGE THUMB SIDE TOUCHING INDEX", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D61F, - visual="it", + unicodeslot=0x1D883, }, - [0x1D620]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL Y", + [0x1D884]={ + category="so", + description="SIGNWRITING HAND-HINGE THUMB BETWEEN MIDDLE RING", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D620, - visual="it", + unicodeslot=0x1D884, }, - [0x1D621]={ - category="lu", - description="MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z", + [0x1D885]={ + category="so", + description="SIGNWRITING HAND-ANGLE", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D621, - visual="it", + unicodeslot=0x1D885, }, - [0x1D622]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL A", + [0x1D886]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE RING", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D622, - visual="it", + unicodeslot=0x1D886, }, - [0x1D623]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL B", + [0x1D887]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX MIDDLE RING", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D623, - visual="it", + unicodeslot=0x1D887, }, - [0x1D624]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL C", + [0x1D888]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX MIDDLE RING", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D624, - visual="it", + unicodeslot=0x1D888, }, - [0x1D625]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL D", + [0x1D889]={ + category="so", + description="SIGNWRITING HAND-ANGLE INDEX MIDDLE RING", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D625, - visual="it", + unicodeslot=0x1D889, }, - [0x1D626]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL E", + [0x1D88A]={ + category="so", + description="SIGNWRITING HAND-HINGE LITTLE", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D626, - visual="it", + unicodeslot=0x1D88A, }, - [0x1D627]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL F", + [0x1D88B]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE RING BENT", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D627, - visual="it", + unicodeslot=0x1D88B, }, - [0x1D628]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL G", + [0x1D88C]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE RING CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D628, - visual="it", + unicodeslot=0x1D88C, }, - [0x1D629]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL H", + [0x1D88D]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX MIDDLE RING CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D629, - visual="it", + unicodeslot=0x1D88D, }, - [0x1D62A]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL I", + [0x1D88E]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE DOWN", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D62A, - visual="it", + unicodeslot=0x1D88E, }, - [0x1D62B]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL J", + [0x1D88F]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE DOWN RIPPLE STRAIGHT", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D62B, - visual="it", + unicodeslot=0x1D88F, }, - [0x1D62C]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL K", + [0x1D890]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE DOWN RIPPLE CURVED", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D62C, - visual="it", + unicodeslot=0x1D890, }, - [0x1D62D]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL L", + [0x1D891]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE DOWN OTHERS CIRCLED", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D62D, - visual="it", + unicodeslot=0x1D891, }, - [0x1D62E]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL M", + [0x1D892]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE UP", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D62E, - visual="it", + unicodeslot=0x1D892, }, - [0x1D62F]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL N", + [0x1D893]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB UNDER LITTLE UP", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D62F, - visual="it", + unicodeslot=0x1D893, }, - [0x1D630]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL O", + [0x1D894]={ + category="so", + description="SIGNWRITING HAND-CIRCLE LITTLE UP", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D630, - visual="it", + unicodeslot=0x1D894, }, - [0x1D631]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL P", + [0x1D895]={ + category="so", + description="SIGNWRITING HAND-OVAL LITTLE UP", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D631, - visual="it", + unicodeslot=0x1D895, }, - [0x1D632]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL Q", + [0x1D896]={ + category="so", + description="SIGNWRITING HAND-ANGLE LITTLE UP", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D632, - visual="it", + unicodeslot=0x1D896, }, - [0x1D633]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL R", + [0x1D897]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE RAISED KNUCKLE", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D633, - visual="it", + unicodeslot=0x1D897, }, - [0x1D634]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL S", + [0x1D898]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE BENT", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D634, - visual="it", + unicodeslot=0x1D898, }, - [0x1D635]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL T", + [0x1D899]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE TOUCHES THUMB", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D635, - visual="it", + unicodeslot=0x1D899, }, - [0x1D636]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL U", + [0x1D89A]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE THUMB", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D636, - visual="it", + unicodeslot=0x1D89A, }, - [0x1D637]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL V", + [0x1D89B]={ + category="so", + description="SIGNWRITING HAND-HINGE LITTLE THUMB", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D637, - visual="it", + unicodeslot=0x1D89B, }, - [0x1D638]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL W", + [0x1D89C]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE INDEX THUMB", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D638, - visual="it", + unicodeslot=0x1D89C, }, - [0x1D639]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL X", + [0x1D89D]={ + category="so", + description="SIGNWRITING HAND-HINGE LITTLE INDEX THUMB", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D639, - visual="it", + unicodeslot=0x1D89D, }, - [0x1D63A]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL Y", + [0x1D89E]={ + category="so", + description="SIGNWRITING HAND-ANGLE LITTLE INDEX THUMB INDEX THUMB OUT", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D63A, - visual="it", + unicodeslot=0x1D89E, }, - [0x1D63B]={ - category="ll", - description="MATHEMATICAL SANS-SERIF ITALIC SMALL Z", + [0x1D89F]={ + category="so", + description="SIGNWRITING HAND-ANGLE LITTLE INDEX THUMB INDEX THUMB", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D63B, - visual="it", + unicodeslot=0x1D89F, }, - [0x1D63C]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A", + [0x1D8A0]={ + category="so", + description="SIGNWRITING HAND-FIST LITTLE INDEX", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D63C, - visual="bi", + unicodeslot=0x1D8A0, }, - [0x1D63D]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL B", + [0x1D8A1]={ + category="so", + description="SIGNWRITING HAND-CIRCLE LITTLE INDEX", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D63D, - visual="bi", + unicodeslot=0x1D8A1, }, - [0x1D63E]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL C", + [0x1D8A2]={ + category="so", + description="SIGNWRITING HAND-HINGE LITTLE INDEX", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D63E, - visual="bi", + unicodeslot=0x1D8A2, }, - [0x1D63F]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL D", + [0x1D8A3]={ + category="so", + description="SIGNWRITING HAND-ANGLE LITTLE INDEX", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D63F, - visual="bi", + unicodeslot=0x1D8A3, }, - [0x1D640]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL E", + [0x1D8A4]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE LITTLE", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D640, - visual="bi", + unicodeslot=0x1D8A4, }, - [0x1D641]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL F", + [0x1D8A5]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX MIDDLE LITTLE", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D641, - visual="bi", + unicodeslot=0x1D8A5, }, - [0x1D642]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL G", + [0x1D8A6]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX MIDDLE LITTLE", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D642, - visual="bi", + unicodeslot=0x1D8A6, }, - [0x1D643]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL H", + [0x1D8A7]={ + category="so", + description="SIGNWRITING HAND-HINGE RING", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D643, - visual="bi", + unicodeslot=0x1D8A7, }, - [0x1D644]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL I", + [0x1D8A8]={ + category="so", + description="SIGNWRITING HAND-ANGLE INDEX MIDDLE LITTLE", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D644, - visual="bi", + unicodeslot=0x1D8A8, }, - [0x1D645]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL J", + [0x1D8A9]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX MIDDLE CROSS LITTLE", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D645, - visual="bi", + unicodeslot=0x1D8A9, }, - [0x1D646]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL K", + [0x1D8AA]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX MIDDLE CROSS LITTLE", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D646, - visual="bi", + unicodeslot=0x1D8AA, }, - [0x1D647]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL L", + [0x1D8AB]={ + category="so", + description="SIGNWRITING HAND-FIST RING DOWN", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D647, - visual="bi", + unicodeslot=0x1D8AB, }, - [0x1D648]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL M", + [0x1D8AC]={ + category="so", + description="SIGNWRITING HAND-HINGE RING DOWN INDEX THUMB HOOK MIDDLE", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D648, - visual="bi", + unicodeslot=0x1D8AC, }, - [0x1D649]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL N", + [0x1D8AD]={ + category="so", + description="SIGNWRITING HAND-ANGLE RING DOWN MIDDLE THUMB INDEX CROSS", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D649, - visual="bi", + unicodeslot=0x1D8AD, }, - [0x1D64A]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL O", + [0x1D8AE]={ + category="so", + description="SIGNWRITING HAND-FIST RING UP", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D64A, - visual="bi", + unicodeslot=0x1D8AE, }, - [0x1D64B]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL P", + [0x1D8AF]={ + category="so", + description="SIGNWRITING HAND-FIST RING RAISED KNUCKLE", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D64B, - visual="bi", + unicodeslot=0x1D8AF, }, - [0x1D64C]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Q", + [0x1D8B0]={ + category="so", + description="SIGNWRITING HAND-FIST RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D64C, - visual="bi", + unicodeslot=0x1D8B0, }, - [0x1D64D]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL R", + [0x1D8B1]={ + category="so", + description="SIGNWRITING HAND-CIRCLE RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D64D, - visual="bi", + unicodeslot=0x1D8B1, }, - [0x1D64E]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL S", + [0x1D8B2]={ + category="so", + description="SIGNWRITING HAND-OVAL RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D64E, - visual="bi", + unicodeslot=0x1D8B2, }, - [0x1D64F]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL T", + [0x1D8B3]={ + category="so", + description="SIGNWRITING HAND-ANGLE RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D64F, - visual="bi", + unicodeslot=0x1D8B3, }, - [0x1D650]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL U", + [0x1D8B4]={ + category="so", + description="SIGNWRITING HAND-FIST RING MIDDLE", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D650, - visual="bi", + unicodeslot=0x1D8B4, }, - [0x1D651]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL V", + [0x1D8B5]={ + category="so", + description="SIGNWRITING HAND-FIST RING MIDDLE CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D651, - visual="bi", + unicodeslot=0x1D8B5, }, - [0x1D652]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL W", + [0x1D8B6]={ + category="so", + description="SIGNWRITING HAND-FIST RING MIDDLE RAISED KNUCKLES", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D652, - visual="bi", + unicodeslot=0x1D8B6, }, - [0x1D653]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL X", + [0x1D8B7]={ + category="so", + description="SIGNWRITING HAND-FIST RING INDEX", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D653, - visual="bi", + unicodeslot=0x1D8B7, }, - [0x1D654]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Y", + [0x1D8B8]={ + category="so", + description="SIGNWRITING HAND-FIST RING THUMB", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D654, - visual="bi", + unicodeslot=0x1D8B8, }, - [0x1D655]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z", + [0x1D8B9]={ + category="so", + description="SIGNWRITING HAND-HOOK RING THUMB", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D655, - visual="bi", + unicodeslot=0x1D8B9, }, - [0x1D656]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A", + [0x1D8BA]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D656, - visual="bi", + unicodeslot=0x1D8BA, }, - [0x1D657]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B", + [0x1D8BB]={ + category="so", + description="SIGNWRITING HAND-CIRCLE INDEX RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D657, - visual="bi", + unicodeslot=0x1D8BB, }, - [0x1D658]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C", + [0x1D8BC]={ + category="so", + description="SIGNWRITING HAND-CURLICUE INDEX RING LITTLE ON", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D658, - visual="bi", + unicodeslot=0x1D8BC, }, - [0x1D659]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D", + [0x1D8BD]={ + category="so", + description="SIGNWRITING HAND-HOOK INDEX RING LITTLE OUT", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D659, - visual="bi", + unicodeslot=0x1D8BD, }, - [0x1D65A]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E", + [0x1D8BE]={ + category="so", + description="SIGNWRITING HAND-HOOK INDEX RING LITTLE IN", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D65A, - visual="bi", + unicodeslot=0x1D8BE, }, - [0x1D65B]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F", + [0x1D8BF]={ + category="so", + description="SIGNWRITING HAND-HOOK INDEX RING LITTLE UNDER", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D65B, - visual="bi", + unicodeslot=0x1D8BF, }, - [0x1D65C]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G", + [0x1D8C0]={ + category="so", + description="SIGNWRITING HAND-CUP INDEX RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D65C, - visual="bi", + unicodeslot=0x1D8C0, }, - [0x1D65D]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H", + [0x1D8C1]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D65D, - visual="bi", + unicodeslot=0x1D8C1, }, - [0x1D65E]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I", + [0x1D8C2]={ + category="so", + description="SIGNWRITING HAND-ANGLE INDEX RING LITTLE OUT", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D65E, - visual="bi", + unicodeslot=0x1D8C2, }, - [0x1D65F]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J", + [0x1D8C3]={ + category="so", + description="SIGNWRITING HAND-ANGLE INDEX RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D65F, - visual="bi", + unicodeslot=0x1D8C3, }, - [0x1D660]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K", + [0x1D8C4]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE DOWN", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D660, - visual="bi", + unicodeslot=0x1D8C4, }, - [0x1D661]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L", + [0x1D8C5]={ + category="so", + description="SIGNWRITING HAND-HINGE MIDDLE", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D661, - visual="bi", + unicodeslot=0x1D8C5, }, - [0x1D662]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M", + [0x1D8C6]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE UP", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D662, - visual="bi", + unicodeslot=0x1D8C6, }, - [0x1D663]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N", + [0x1D8C7]={ + category="so", + description="SIGNWRITING HAND-CIRCLE MIDDLE UP", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D663, - visual="bi", + unicodeslot=0x1D8C7, }, - [0x1D664]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O", + [0x1D8C8]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE RAISED KNUCKLE", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D664, - visual="bi", + unicodeslot=0x1D8C8, }, - [0x1D665]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P", + [0x1D8C9]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE UP THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D665, - visual="bi", + unicodeslot=0x1D8C9, }, - [0x1D666]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q", + [0x1D8CA]={ + category="so", + description="SIGNWRITING HAND-HOOK MIDDLE THUMB", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D666, - visual="bi", + unicodeslot=0x1D8CA, }, - [0x1D667]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R", + [0x1D8CB]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE THUMB LITTLE", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D667, - visual="bi", + unicodeslot=0x1D8CB, }, - [0x1D668]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S", + [0x1D8CC]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE LITTLE", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D668, - visual="bi", + unicodeslot=0x1D8CC, }, - [0x1D669]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T", + [0x1D8CD]={ + category="so", + description="SIGNWRITING HAND-FIST MIDDLE RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D669, - visual="bi", + unicodeslot=0x1D8CD, }, - [0x1D66A]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U", + [0x1D8CE]={ + category="so", + description="SIGNWRITING HAND-CIRCLE MIDDLE RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D66A, - visual="bi", + unicodeslot=0x1D8CE, }, - [0x1D66B]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V", + [0x1D8CF]={ + category="so", + description="SIGNWRITING HAND-CURLICUE MIDDLE RING LITTLE ON", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D66B, - visual="bi", + unicodeslot=0x1D8CF, }, - [0x1D66C]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W", + [0x1D8D0]={ + category="so", + description="SIGNWRITING HAND-CUP MIDDLE RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D66C, - visual="bi", + unicodeslot=0x1D8D0, }, - [0x1D66D]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X", + [0x1D8D1]={ + category="so", + description="SIGNWRITING HAND-HINGE MIDDLE RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D66D, - visual="bi", + unicodeslot=0x1D8D1, }, - [0x1D66E]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y", + [0x1D8D2]={ + category="so", + description="SIGNWRITING HAND-ANGLE MIDDLE RING LITTLE OUT", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D66E, - visual="bi", + unicodeslot=0x1D8D2, }, - [0x1D66F]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z", + [0x1D8D3]={ + category="so", + description="SIGNWRITING HAND-ANGLE MIDDLE RING LITTLE IN", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D66F, - visual="bi", + unicodeslot=0x1D8D3, }, - [0x1D670]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL A", + [0x1D8D4]={ + category="so", + description="SIGNWRITING HAND-ANGLE MIDDLE RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x41 }, - unicodeslot=0x1D670, + unicodeslot=0x1D8D4, }, - [0x1D671]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL B", + [0x1D8D5]={ + category="so", + description="SIGNWRITING HAND-CIRCLE MIDDLE RING LITTLE BENT", direction="l", linebreak="al", - specials={ "font", 0x42 }, - unicodeslot=0x1D671, + unicodeslot=0x1D8D5, }, - [0x1D672]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL C", + [0x1D8D6]={ + category="so", + description="SIGNWRITING HAND-CLAW MIDDLE RING LITTLE CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x43 }, - unicodeslot=0x1D672, + unicodeslot=0x1D8D6, }, - [0x1D673]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL D", + [0x1D8D7]={ + category="so", + description="SIGNWRITING HAND-CLAW MIDDLE RING LITTLE CONJOINED SIDE", direction="l", linebreak="al", - specials={ "font", 0x44 }, - unicodeslot=0x1D673, + unicodeslot=0x1D8D7, }, - [0x1D674]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL E", + [0x1D8D8]={ + category="so", + description="SIGNWRITING HAND-HOOK MIDDLE RING LITTLE CONJOINED OUT", direction="l", linebreak="al", - specials={ "font", 0x45 }, - unicodeslot=0x1D674, + unicodeslot=0x1D8D8, }, - [0x1D675]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL F", + [0x1D8D9]={ + category="so", + description="SIGNWRITING HAND-HOOK MIDDLE RING LITTLE CONJOINED IN", direction="l", linebreak="al", - specials={ "font", 0x46 }, - unicodeslot=0x1D675, + unicodeslot=0x1D8D9, }, - [0x1D676]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL G", + [0x1D8DA]={ + category="so", + description="SIGNWRITING HAND-HOOK MIDDLE RING LITTLE CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x47 }, - unicodeslot=0x1D676, + unicodeslot=0x1D8DA, }, - [0x1D677]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL H", + [0x1D8DB]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX HINGED", direction="l", linebreak="al", - specials={ "font", 0x48 }, - unicodeslot=0x1D677, + unicodeslot=0x1D8DB, }, - [0x1D678]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL I", + [0x1D8DC]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x49 }, - unicodeslot=0x1D678, + unicodeslot=0x1D8DC, }, - [0x1D679]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL J", + [0x1D8DD]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX THUMB SIDE", direction="l", linebreak="al", - specials={ "font", 0x4A }, - unicodeslot=0x1D679, + unicodeslot=0x1D8DD, }, - [0x1D67A]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL K", + [0x1D8DE]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB SIDE THUMB DIAGONAL", direction="l", linebreak="al", - specials={ "font", 0x4B }, - unicodeslot=0x1D67A, + unicodeslot=0x1D8DE, }, - [0x1D67B]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL L", + [0x1D8DF]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB SIDE THUMB CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x4C }, - unicodeslot=0x1D67B, + unicodeslot=0x1D8DF, }, - [0x1D67C]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL M", + [0x1D8E0]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB SIDE THUMB BENT", direction="l", linebreak="al", - specials={ "font", 0x4D }, - unicodeslot=0x1D67C, + unicodeslot=0x1D8E0, }, - [0x1D67D]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL N", + [0x1D8E1]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB SIDE INDEX BENT", direction="l", linebreak="al", - specials={ "font", 0x4E }, - unicodeslot=0x1D67D, + unicodeslot=0x1D8E1, }, - [0x1D67E]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL O", + [0x1D8E2]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB SIDE BOTH BENT", direction="l", linebreak="al", - specials={ "font", 0x4F }, - unicodeslot=0x1D67E, + unicodeslot=0x1D8E2, }, - [0x1D67F]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL P", + [0x1D8E3]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB SIDE INDEX HINGE", direction="l", linebreak="al", - specials={ "font", 0x50 }, - unicodeslot=0x1D67F, + unicodeslot=0x1D8E3, }, - [0x1D680]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL Q", + [0x1D8E4]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB FORWARD INDEX STRAIGHT", direction="l", linebreak="al", - specials={ "font", 0x51 }, - unicodeslot=0x1D680, + unicodeslot=0x1D8E4, }, - [0x1D681]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL R", + [0x1D8E5]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB FORWARD INDEX BENT", direction="l", linebreak="al", - specials={ "font", 0x52 }, - unicodeslot=0x1D681, + unicodeslot=0x1D8E5, }, - [0x1D682]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL S", + [0x1D8E6]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB HOOK", direction="l", linebreak="al", - specials={ "font", 0x53 }, - unicodeslot=0x1D682, + unicodeslot=0x1D8E6, }, - [0x1D683]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL T", + [0x1D8E7]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB CURLICUE", direction="l", linebreak="al", - specials={ "font", 0x54 }, - unicodeslot=0x1D683, + unicodeslot=0x1D8E7, }, - [0x1D684]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL U", + [0x1D8E8]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB CURVE THUMB INSIDE", direction="l", linebreak="al", - specials={ "font", 0x55 }, - unicodeslot=0x1D684, + unicodeslot=0x1D8E8, }, - [0x1D685]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL V", + [0x1D8E9]={ + category="so", + description="SIGNWRITING HAND-CLAW INDEX THUMB CURVE THUMB INSIDE", direction="l", linebreak="al", - specials={ "font", 0x56 }, - unicodeslot=0x1D685, + unicodeslot=0x1D8E9, }, - [0x1D686]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL W", + [0x1D8EA]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB CURVE THUMB UNDER", direction="l", linebreak="al", - specials={ "font", 0x57 }, - unicodeslot=0x1D686, + unicodeslot=0x1D8EA, }, - [0x1D687]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL X", + [0x1D8EB]={ + category="so", + description="SIGNWRITING HAND-FIST INDEX THUMB CIRCLE", direction="l", linebreak="al", - specials={ "font", 0x58 }, - unicodeslot=0x1D687, + unicodeslot=0x1D8EB, }, - [0x1D688]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL Y", + [0x1D8EC]={ + category="so", + description="SIGNWRITING HAND-CUP INDEX THUMB", direction="l", linebreak="al", - specials={ "font", 0x59 }, - unicodeslot=0x1D688, + unicodeslot=0x1D8EC, }, - [0x1D689]={ - category="lu", - description="MATHEMATICAL MONOSPACE CAPITAL Z", + [0x1D8ED]={ + category="so", + description="SIGNWRITING HAND-CUP INDEX THUMB OPEN", direction="l", linebreak="al", - specials={ "font", 0x5A }, - unicodeslot=0x1D689, + unicodeslot=0x1D8ED, }, - [0x1D68A]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL A", + [0x1D8EE]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX THUMB OPEN", direction="l", linebreak="al", - specials={ "font", 0x61 }, - unicodeslot=0x1D68A, + unicodeslot=0x1D8EE, }, - [0x1D68B]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL B", + [0x1D8EF]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX THUMB LARGE", direction="l", linebreak="al", - specials={ "font", 0x62 }, - unicodeslot=0x1D68B, + unicodeslot=0x1D8EF, }, - [0x1D68C]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL C", + [0x1D8F0]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX THUMB", direction="l", linebreak="al", - specials={ "font", 0x63 }, - unicodeslot=0x1D68C, + unicodeslot=0x1D8F0, }, - [0x1D68D]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL D", + [0x1D8F1]={ + category="so", + description="SIGNWRITING HAND-HINGE INDEX THUMB SMALL", direction="l", linebreak="al", - specials={ "font", 0x64 }, - unicodeslot=0x1D68D, + unicodeslot=0x1D8F1, }, - [0x1D68E]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL E", + [0x1D8F2]={ + category="so", + description="SIGNWRITING HAND-ANGLE INDEX THUMB OUT", direction="l", linebreak="al", - specials={ "font", 0x65 }, - unicodeslot=0x1D68E, + unicodeslot=0x1D8F2, }, - [0x1D68F]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL F", + [0x1D8F3]={ + category="so", + description="SIGNWRITING HAND-ANGLE INDEX THUMB IN", direction="l", linebreak="al", - specials={ "font", 0x66 }, - unicodeslot=0x1D68F, + unicodeslot=0x1D8F3, }, - [0x1D690]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL G", + [0x1D8F4]={ + category="so", + description="SIGNWRITING HAND-ANGLE INDEX THUMB", direction="l", linebreak="al", - specials={ "font", 0x67 }, - unicodeslot=0x1D690, + unicodeslot=0x1D8F4, }, - [0x1D691]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL H", + [0x1D8F5]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB", direction="l", linebreak="al", - specials={ "font", 0x68 }, - unicodeslot=0x1D691, + unicodeslot=0x1D8F5, }, - [0x1D692]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL I", + [0x1D8F6]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB HEEL", direction="l", linebreak="al", - specials={ "font", 0x69 }, - unicodeslot=0x1D692, + unicodeslot=0x1D8F6, }, - [0x1D693]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL J", + [0x1D8F7]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB SIDE DIAGONAL", direction="l", linebreak="al", - specials={ "font", 0x6A }, - unicodeslot=0x1D693, + unicodeslot=0x1D8F7, }, - [0x1D694]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL K", + [0x1D8F8]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB SIDE CONJOINED", direction="l", linebreak="al", - specials={ "font", 0x6B }, - unicodeslot=0x1D694, + unicodeslot=0x1D8F8, }, - [0x1D695]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL L", + [0x1D8F9]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB SIDE BENT", direction="l", linebreak="al", - specials={ "font", 0x6C }, - unicodeslot=0x1D695, + unicodeslot=0x1D8F9, }, - [0x1D696]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL M", + [0x1D8FA]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB FORWARD", direction="l", linebreak="al", - specials={ "font", 0x6D }, - unicodeslot=0x1D696, + unicodeslot=0x1D8FA, }, - [0x1D697]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL N", + [0x1D8FB]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB BETWEEN INDEX MIDDLE", direction="l", linebreak="al", - specials={ "font", 0x6E }, - unicodeslot=0x1D697, + unicodeslot=0x1D8FB, }, - [0x1D698]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL O", + [0x1D8FC]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB BETWEEN MIDDLE RING", direction="l", linebreak="al", - specials={ "font", 0x6F }, - unicodeslot=0x1D698, + unicodeslot=0x1D8FC, }, - [0x1D699]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL P", + [0x1D8FD]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB BETWEEN RING LITTLE", direction="l", linebreak="al", - specials={ "font", 0x70 }, - unicodeslot=0x1D699, + unicodeslot=0x1D8FD, }, - [0x1D69A]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL Q", + [0x1D8FE]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB UNDER TWO FINGERS", direction="l", linebreak="al", - specials={ "font", 0x71 }, - unicodeslot=0x1D69A, + unicodeslot=0x1D8FE, }, - [0x1D69B]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL R", + [0x1D8FF]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB OVER TWO FINGERS", direction="l", linebreak="al", - specials={ "font", 0x72 }, - unicodeslot=0x1D69B, + unicodeslot=0x1D8FF, }, - [0x1D69C]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL S", + [0x1D900]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB UNDER THREE FINGERS", direction="l", linebreak="al", - specials={ "font", 0x73 }, - unicodeslot=0x1D69C, + unicodeslot=0x1D900, }, - [0x1D69D]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL T", + [0x1D901]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB UNDER FOUR FINGERS", direction="l", linebreak="al", - specials={ "font", 0x74 }, - unicodeslot=0x1D69D, + unicodeslot=0x1D901, }, - [0x1D69E]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL U", + [0x1D902]={ + category="so", + description="SIGNWRITING HAND-FIST THUMB OVER FOUR RAISED KNUCKLES", direction="l", linebreak="al", - specials={ "font", 0x75 }, - unicodeslot=0x1D69E, + unicodeslot=0x1D902, }, - [0x1D69F]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL V", + [0x1D903]={ + category="so", + description="SIGNWRITING HAND-FIST", direction="l", linebreak="al", - specials={ "font", 0x76 }, - unicodeslot=0x1D69F, + unicodeslot=0x1D903, }, - [0x1D6A0]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL W", + [0x1D904]={ + category="so", + description="SIGNWRITING HAND-FIST HEEL", direction="l", linebreak="al", - specials={ "font", 0x77 }, - unicodeslot=0x1D6A0, + unicodeslot=0x1D904, }, - [0x1D6A1]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL X", + [0x1D905]={ + category="so", + description="SIGNWRITING TOUCH SINGLE", direction="l", linebreak="al", - specials={ "font", 0x78 }, - unicodeslot=0x1D6A1, + unicodeslot=0x1D905, }, - [0x1D6A2]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL Y", + [0x1D906]={ + category="so", + description="SIGNWRITING TOUCH MULTIPLE", direction="l", linebreak="al", - specials={ "font", 0x79 }, - unicodeslot=0x1D6A2, + unicodeslot=0x1D906, }, - [0x1D6A3]={ - category="ll", - description="MATHEMATICAL MONOSPACE SMALL Z", + [0x1D907]={ + category="so", + description="SIGNWRITING TOUCH BETWEEN", direction="l", linebreak="al", - specials={ "font", 0x7A }, - unicodeslot=0x1D6A3, + unicodeslot=0x1D907, }, - [0x1D6A4]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL DOTLESS I", + [0x1D908]={ + category="so", + description="SIGNWRITING GRASP SINGLE", direction="l", linebreak="al", - mathclass="default", - mathname="imath", - specials={ "font", 0x131 }, - unicodeslot=0x1D6A4, - visual="it", + unicodeslot=0x1D908, }, - [0x1D6A5]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL DOTLESS J", + [0x1D909]={ + category="so", + description="SIGNWRITING GRASP MULTIPLE", direction="l", linebreak="al", - mathclass="default", - mathname="jmath", - specials={ "font", 0x237 }, - unicodeslot=0x1D6A5, - visual="it", + unicodeslot=0x1D909, }, - [0x1D6A8]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL ALPHA", + [0x1D90A]={ + category="so", + description="SIGNWRITING GRASP BETWEEN", direction="l", linebreak="al", - specials={ "font", 0x391 }, - unicodeslot=0x1D6A8, - visual="bf", + unicodeslot=0x1D90A, }, - [0x1D6A9]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL BETA", + [0x1D90B]={ + category="so", + description="SIGNWRITING STRIKE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x392 }, - unicodeslot=0x1D6A9, - visual="bf", + unicodeslot=0x1D90B, }, - [0x1D6AA]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL GAMMA", + [0x1D90C]={ + category="so", + description="SIGNWRITING STRIKE MULTIPLE", direction="l", linebreak="al", - specials={ "font", 0x393 }, - unicodeslot=0x1D6AA, - visual="bf", + unicodeslot=0x1D90C, }, - [0x1D6AB]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL DELTA", + [0x1D90D]={ + category="so", + description="SIGNWRITING STRIKE BETWEEN", direction="l", linebreak="al", - specials={ "font", 0x394 }, - unicodeslot=0x1D6AB, - visual="bf", + unicodeslot=0x1D90D, }, - [0x1D6AC]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL EPSILON", + [0x1D90E]={ + category="so", + description="SIGNWRITING BRUSH SINGLE", direction="l", linebreak="al", - specials={ "font", 0x395 }, - unicodeslot=0x1D6AC, - visual="bf", + unicodeslot=0x1D90E, }, - [0x1D6AD]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL ZETA", + [0x1D90F]={ + category="so", + description="SIGNWRITING BRUSH MULTIPLE", direction="l", linebreak="al", - specials={ "font", 0x396 }, - unicodeslot=0x1D6AD, - visual="bf", + unicodeslot=0x1D90F, }, - [0x1D6AE]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL ETA", + [0x1D910]={ + category="so", + description="SIGNWRITING BRUSH BETWEEN", direction="l", linebreak="al", - specials={ "font", 0x397 }, - unicodeslot=0x1D6AE, - visual="bf", + unicodeslot=0x1D910, }, - [0x1D6AF]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL THETA", + [0x1D911]={ + category="so", + description="SIGNWRITING RUB SINGLE", direction="l", linebreak="al", - specials={ "font", 0x398 }, - unicodeslot=0x1D6AF, - visual="bf", + unicodeslot=0x1D911, }, - [0x1D6B0]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL IOTA", + [0x1D912]={ + category="so", + description="SIGNWRITING RUB MULTIPLE", direction="l", linebreak="al", - specials={ "font", 0x399 }, - unicodeslot=0x1D6B0, - visual="bf", + unicodeslot=0x1D912, }, - [0x1D6B1]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL KAPPA", + [0x1D913]={ + category="so", + description="SIGNWRITING RUB BETWEEN", direction="l", linebreak="al", - specials={ "font", 0x39A }, - unicodeslot=0x1D6B1, - visual="bf", + unicodeslot=0x1D913, }, - [0x1D6B2]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL LAMDA", + [0x1D914]={ + category="so", + description="SIGNWRITING SURFACE SYMBOLS", direction="l", linebreak="al", - specials={ "font", 0x39B }, - unicodeslot=0x1D6B2, - visual="bf", + unicodeslot=0x1D914, }, - [0x1D6B3]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL MU", + [0x1D915]={ + category="so", + description="SIGNWRITING SURFACE BETWEEN", + direction="l", + linebreak="al", + unicodeslot=0x1D915, + }, + [0x1D916]={ + category="so", + description="SIGNWRITING SQUEEZE LARGE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x39C }, - unicodeslot=0x1D6B3, - visual="bf", + unicodeslot=0x1D916, }, - [0x1D6B4]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL NU", + [0x1D917]={ + category="so", + description="SIGNWRITING SQUEEZE SMALL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x39D }, - unicodeslot=0x1D6B4, - visual="bf", + unicodeslot=0x1D917, }, - [0x1D6B5]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL XI", + [0x1D918]={ + category="so", + description="SIGNWRITING SQUEEZE LARGE MULTIPLE", direction="l", linebreak="al", - specials={ "font", 0x39E }, - unicodeslot=0x1D6B5, - visual="bf", + unicodeslot=0x1D918, }, - [0x1D6B6]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL OMICRON", + [0x1D919]={ + category="so", + description="SIGNWRITING SQUEEZE SMALL MULTIPLE", direction="l", linebreak="al", - specials={ "font", 0x39F }, - unicodeslot=0x1D6B6, - visual="bf", + unicodeslot=0x1D919, }, - [0x1D6B7]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL PI", + [0x1D91A]={ + category="so", + description="SIGNWRITING SQUEEZE SEQUENTIAL", direction="l", linebreak="al", - specials={ "font", 0x3A0 }, - unicodeslot=0x1D6B7, - visual="bf", + unicodeslot=0x1D91A, }, - [0x1D6B8]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL RHO", + [0x1D91B]={ + category="so", + description="SIGNWRITING FLICK LARGE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3A1 }, - unicodeslot=0x1D6B8, - visual="bf", + unicodeslot=0x1D91B, }, - [0x1D6B9]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL THETA SYMBOL", + [0x1D91C]={ + category="so", + description="SIGNWRITING FLICK SMALL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3F4 }, - unicodeslot=0x1D6B9, - visual="bf", + unicodeslot=0x1D91C, }, - [0x1D6BA]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL SIGMA", + [0x1D91D]={ + category="so", + description="SIGNWRITING FLICK LARGE MULTIPLE", direction="l", linebreak="al", - specials={ "font", 0x3A3 }, - unicodeslot=0x1D6BA, - visual="bf", + unicodeslot=0x1D91D, }, - [0x1D6BB]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL TAU", + [0x1D91E]={ + category="so", + description="SIGNWRITING FLICK SMALL MULTIPLE", direction="l", linebreak="al", - specials={ "font", 0x3A4 }, - unicodeslot=0x1D6BB, - visual="bf", + unicodeslot=0x1D91E, }, - [0x1D6BC]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL UPSILON", + [0x1D91F]={ + category="so", + description="SIGNWRITING FLICK SEQUENTIAL", direction="l", linebreak="al", - specials={ "font", 0x3A5 }, - unicodeslot=0x1D6BC, - visual="bf", + unicodeslot=0x1D91F, }, - [0x1D6BD]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL PHI", + [0x1D920]={ + category="so", + description="SIGNWRITING SQUEEZE FLICK ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x3A6 }, - unicodeslot=0x1D6BD, - visual="bf", + unicodeslot=0x1D920, }, - [0x1D6BE]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL CHI", + [0x1D921]={ + category="so", + description="SIGNWRITING MOVEMENT-HINGE UP DOWN LARGE", direction="l", linebreak="al", - specials={ "font", 0x3A7 }, - unicodeslot=0x1D6BE, - visual="bf", + unicodeslot=0x1D921, }, - [0x1D6BF]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL PSI", + [0x1D922]={ + category="so", + description="SIGNWRITING MOVEMENT-HINGE UP DOWN SMALL", direction="l", linebreak="al", - specials={ "font", 0x3A8 }, - unicodeslot=0x1D6BF, - visual="bf", + unicodeslot=0x1D922, }, - [0x1D6C0]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL OMEGA", + [0x1D923]={ + category="so", + description="SIGNWRITING MOVEMENT-HINGE UP SEQUENTIAL", direction="l", linebreak="al", - specials={ "font", 0x3A9 }, - unicodeslot=0x1D6C0, - visual="bf", + unicodeslot=0x1D923, }, - [0x1D6C1]={ - category="sm", - description="MATHEMATICAL BOLD NABLA", + [0x1D924]={ + category="so", + description="SIGNWRITING MOVEMENT-HINGE DOWN SEQUENTIAL", direction="l", linebreak="al", - specials={ "font", 0x2207 }, - unicodeslot=0x1D6C1, - visual="bf", + unicodeslot=0x1D924, }, - [0x1D6C2]={ - category="ll", - description="MATHEMATICAL BOLD SMALL ALPHA", + [0x1D925]={ + category="so", + description="SIGNWRITING MOVEMENT-HINGE UP DOWN ALTERNATING LARGE", direction="l", linebreak="al", - specials={ "font", 0x3B1 }, - unicodeslot=0x1D6C2, - visual="bf", + unicodeslot=0x1D925, }, - [0x1D6C3]={ - category="ll", - description="MATHEMATICAL BOLD SMALL BETA", + [0x1D926]={ + category="so", + description="SIGNWRITING MOVEMENT-HINGE UP DOWN ALTERNATING SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B2 }, - unicodeslot=0x1D6C3, - visual="bf", + unicodeslot=0x1D926, }, - [0x1D6C4]={ - category="ll", - description="MATHEMATICAL BOLD SMALL GAMMA", + [0x1D927]={ + category="so", + description="SIGNWRITING MOVEMENT-HINGE SIDE TO SIDE SCISSORS", direction="l", linebreak="al", - specials={ "font", 0x3B3 }, - unicodeslot=0x1D6C4, - visual="bf", + unicodeslot=0x1D927, }, - [0x1D6C5]={ - category="ll", - description="MATHEMATICAL BOLD SMALL DELTA", + [0x1D928]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE FINGER CONTACT", direction="l", linebreak="al", - specials={ "font", 0x3B4 }, - unicodeslot=0x1D6C5, - visual="bf", + unicodeslot=0x1D928, }, - [0x1D6C6]={ - category="ll", - description="MATHEMATICAL BOLD SMALL EPSILON", + [0x1D929]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE FINGER CONTACT", direction="l", linebreak="al", - specials={ "font", 0x3B5 }, - unicodeslot=0x1D6C6, - visual="bf", + unicodeslot=0x1D929, }, - [0x1D6C7]={ - category="ll", - description="MATHEMATICAL BOLD SMALL ZETA", + [0x1D92A]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE SINGLE STRAIGHT SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B6 }, - unicodeslot=0x1D6C7, - visual="bf", + unicodeslot=0x1D92A, }, - [0x1D6C8]={ - category="ll", - description="MATHEMATICAL BOLD SMALL ETA", + [0x1D92B]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE SINGLE STRAIGHT MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3B7 }, - unicodeslot=0x1D6C8, - visual="bf", + unicodeslot=0x1D92B, }, - [0x1D6C9]={ - category="ll", - description="MATHEMATICAL BOLD SMALL THETA", + [0x1D92C]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE SINGLE STRAIGHT LARGE", direction="l", linebreak="al", - specials={ "font", 0x3B8 }, - unicodeslot=0x1D6C9, - visual="bf", + unicodeslot=0x1D92C, }, - [0x1D6CA]={ - category="ll", - description="MATHEMATICAL BOLD SMALL IOTA", + [0x1D92D]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE SINGLE STRAIGHT LARGEST", direction="l", linebreak="al", - specials={ "font", 0x3B9 }, - unicodeslot=0x1D6CA, - visual="bf", + unicodeslot=0x1D92D, }, - [0x1D6CB]={ - category="ll", - description="MATHEMATICAL BOLD SMALL KAPPA", + [0x1D92E]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE SINGLE WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3BA }, - unicodeslot=0x1D6CB, - visual="bf", + unicodeslot=0x1D92E, }, - [0x1D6CC]={ - category="ll", - description="MATHEMATICAL BOLD SMALL LAMDA", + [0x1D92F]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE DOUBLE STRAIGHT", direction="l", linebreak="al", - specials={ "font", 0x3BB }, - unicodeslot=0x1D6CC, - visual="bf", + unicodeslot=0x1D92F, }, - [0x1D6CD]={ - category="ll", - description="MATHEMATICAL BOLD SMALL MU", + [0x1D930]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE DOUBLE WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3BC }, - unicodeslot=0x1D6CD, - visual="bf", + unicodeslot=0x1D930, }, - [0x1D6CE]={ - category="ll", - description="MATHEMATICAL BOLD SMALL NU", + [0x1D931]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE DOUBLE ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x3BD }, - unicodeslot=0x1D6CE, - visual="bf", + unicodeslot=0x1D931, }, - [0x1D6CF]={ - category="ll", - description="MATHEMATICAL BOLD SMALL XI", + [0x1D932]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE DOUBLE ALTERNATING WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3BE }, - unicodeslot=0x1D6CF, - visual="bf", + unicodeslot=0x1D932, }, - [0x1D6D0]={ - category="ll", - description="MATHEMATICAL BOLD SMALL OMICRON", + [0x1D933]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CROSS", direction="l", linebreak="al", - specials={ "font", 0x3BF }, - unicodeslot=0x1D6D0, - visual="bf", + unicodeslot=0x1D933, }, - [0x1D6D1]={ - category="ll", - description="MATHEMATICAL BOLD SMALL PI", + [0x1D934]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE TRIPLE STRAIGHT MOVEMENT", direction="l", linebreak="al", - specials={ "font", 0x3C0 }, - unicodeslot=0x1D6D1, - visual="bf", + unicodeslot=0x1D934, }, - [0x1D6D2]={ - category="ll", - description="MATHEMATICAL BOLD SMALL RHO", + [0x1D935]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE TRIPLE WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3C1 }, - unicodeslot=0x1D6D2, - visual="bf", + unicodeslot=0x1D935, }, - [0x1D6D3]={ - category="ll", - description="MATHEMATICAL BOLD SMALL FINAL SIGMA", + [0x1D936]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE TRIPLE ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x3C2 }, - unicodeslot=0x1D6D3, - visual="bf", + unicodeslot=0x1D936, }, - [0x1D6D4]={ - category="ll", - description="MATHEMATICAL BOLD SMALL SIGMA", + [0x1D937]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE TRIPLE ALTERNATING WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3C3 }, - unicodeslot=0x1D6D4, - visual="bf", + unicodeslot=0x1D937, }, - [0x1D6D5]={ - category="ll", - description="MATHEMATICAL BOLD SMALL TAU", + [0x1D938]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE BEND SMALL", direction="l", linebreak="al", - specials={ "font", 0x3C4 }, - unicodeslot=0x1D6D5, - visual="bf", + unicodeslot=0x1D938, }, - [0x1D6D6]={ - category="ll", - description="MATHEMATICAL BOLD SMALL UPSILON", + [0x1D939]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE BEND MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3C5 }, - unicodeslot=0x1D6D6, - visual="bf", + unicodeslot=0x1D939, }, - [0x1D6D7]={ - category="ll", - description="MATHEMATICAL BOLD SMALL PHI", + [0x1D93A]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE BEND LARGE", direction="l", linebreak="al", - specials={ "font", 0x3C6 }, - unicodeslot=0x1D6D7, - visual="bf", + unicodeslot=0x1D93A, }, - [0x1D6D8]={ - category="ll", - description="MATHEMATICAL BOLD SMALL CHI", + [0x1D93B]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CORNER SMALL", direction="l", linebreak="al", - specials={ "font", 0x3C7 }, - unicodeslot=0x1D6D8, - visual="bf", + unicodeslot=0x1D93B, }, - [0x1D6D9]={ - category="ll", - description="MATHEMATICAL BOLD SMALL PSI", + [0x1D93C]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CORNER MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3C8 }, - unicodeslot=0x1D6D9, - visual="bf", + unicodeslot=0x1D93C, }, - [0x1D6DA]={ - category="ll", - description="MATHEMATICAL BOLD SMALL OMEGA", + [0x1D93D]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CORNER LARGE", direction="l", linebreak="al", - specials={ "font", 0x3C9 }, - unicodeslot=0x1D6DA, - visual="bf", + unicodeslot=0x1D93D, }, - [0x1D6DB]={ - category="sm", - description="MATHEMATICAL BOLD PARTIAL DIFFERENTIAL", - direction="on", + [0x1D93E]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CORNER ROTATION", + direction="l", linebreak="al", - specials={ "font", 0x2202 }, - unicodeslot=0x1D6DB, - visual="bf", + unicodeslot=0x1D93E, }, - [0x1D6DC]={ - category="ll", - description="MATHEMATICAL BOLD EPSILON SYMBOL", + [0x1D93F]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CHECK SMALL", direction="l", linebreak="al", - specials={ "font", 0x3F5 }, - unicodeslot=0x1D6DC, - visual="bf", + unicodeslot=0x1D93F, }, - [0x1D6DD]={ - category="ll", - description="MATHEMATICAL BOLD THETA SYMBOL", + [0x1D940]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CHECK MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3D1 }, - unicodeslot=0x1D6DD, - visual="bf", + unicodeslot=0x1D940, }, - [0x1D6DE]={ - category="ll", - description="MATHEMATICAL BOLD KAPPA SYMBOL", + [0x1D941]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CHECK LARGE", direction="l", linebreak="al", - specials={ "font", 0x3F0 }, - unicodeslot=0x1D6DE, - visual="bf", + unicodeslot=0x1D941, }, - [0x1D6DF]={ - category="ll", - description="MATHEMATICAL BOLD PHI SYMBOL", + [0x1D942]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE BOX SMALL", direction="l", linebreak="al", - specials={ "font", 0x3D5 }, - unicodeslot=0x1D6DF, - visual="bf", + unicodeslot=0x1D942, }, - [0x1D6E0]={ - category="ll", - description="MATHEMATICAL BOLD RHO SYMBOL", + [0x1D943]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE BOX MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3F1 }, - unicodeslot=0x1D6E0, - visual="bf", + unicodeslot=0x1D943, }, - [0x1D6E1]={ - category="ll", - description="MATHEMATICAL BOLD PI SYMBOL", + [0x1D944]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE BOX LARGE", direction="l", linebreak="al", - specials={ "font", 0x3D6 }, - unicodeslot=0x1D6E1, - visual="bf", + unicodeslot=0x1D944, }, - [0x1D6E2]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL ALPHA", + [0x1D945]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE ZIGZAG SMALL", direction="l", linebreak="al", - specials={ "font", 0x391 }, - unicodeslot=0x1D6E2, - visual="it", + unicodeslot=0x1D945, }, - [0x1D6E3]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL BETA", + [0x1D946]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE ZIGZAG MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x392 }, - unicodeslot=0x1D6E3, - visual="it", + unicodeslot=0x1D946, }, - [0x1D6E4]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL GAMMA", + [0x1D947]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE ZIGZAG LARGE", direction="l", linebreak="al", - specials={ "font", 0x393 }, - unicodeslot=0x1D6E4, - visual="it", + unicodeslot=0x1D947, }, - [0x1D6E5]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL DELTA", + [0x1D948]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE PEAKS SMALL", direction="l", linebreak="al", - specials={ "font", 0x394 }, - unicodeslot=0x1D6E5, - visual="it", + unicodeslot=0x1D948, }, - [0x1D6E6]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL EPSILON", + [0x1D949]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE PEAKS MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x395 }, - unicodeslot=0x1D6E6, - visual="it", + unicodeslot=0x1D949, }, - [0x1D6E7]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL ZETA", + [0x1D94A]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE PEAKS LARGE", direction="l", linebreak="al", - specials={ "font", 0x396 }, - unicodeslot=0x1D6E7, - visual="it", + unicodeslot=0x1D94A, }, - [0x1D6E8]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL ETA", + [0x1D94B]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ROTATION-WALLPLANE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x397 }, - unicodeslot=0x1D6E8, - visual="it", + unicodeslot=0x1D94B, }, - [0x1D6E9]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL THETA", + [0x1D94C]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ROTATION-WALLPLANE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x398 }, - unicodeslot=0x1D6E9, - visual="it", + unicodeslot=0x1D94C, }, - [0x1D6EA]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL IOTA", + [0x1D94D]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ROTATION-WALLPLANE ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x399 }, - unicodeslot=0x1D6EA, - visual="it", + unicodeslot=0x1D94D, }, - [0x1D6EB]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL KAPPA", + [0x1D94E]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ROTATION-FLOORPLANE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x39A }, - unicodeslot=0x1D6EB, - visual="it", + unicodeslot=0x1D94E, }, - [0x1D6EC]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL LAMDA", + [0x1D94F]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ROTATION-FLOORPLANE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x39B }, - unicodeslot=0x1D6EC, - visual="it", + unicodeslot=0x1D94F, }, - [0x1D6ED]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL MU", + [0x1D950]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ROTATION-FLOORPLANE ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x39C }, - unicodeslot=0x1D6ED, - visual="it", + unicodeslot=0x1D950, }, - [0x1D6EE]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL NU", + [0x1D951]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE SHAKING", direction="l", linebreak="al", - specials={ "font", 0x39D }, - unicodeslot=0x1D6EE, - visual="it", + unicodeslot=0x1D951, }, - [0x1D6EF]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL XI", + [0x1D952]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ARM SPIRAL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x39E }, - unicodeslot=0x1D6EF, - visual="it", + unicodeslot=0x1D952, }, - [0x1D6F0]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL OMICRON", + [0x1D953]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ARM SPIRAL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x39F }, - unicodeslot=0x1D6F0, - visual="it", + unicodeslot=0x1D953, }, - [0x1D6F1]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL PI", + [0x1D954]={ + category="so", + description="SIGNWRITING TRAVEL-WALLPLANE ARM SPIRAL TRIPLE", direction="l", linebreak="al", - specials={ "font", 0x3A0 }, - unicodeslot=0x1D6F1, - visual="it", + unicodeslot=0x1D954, }, - [0x1D6F2]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL RHO", + [0x1D955]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL AWAY SMALL", direction="l", linebreak="al", - specials={ "font", 0x3A1 }, - unicodeslot=0x1D6F2, - visual="it", + unicodeslot=0x1D955, }, - [0x1D6F3]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL THETA SYMBOL", + [0x1D956]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL AWAY MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3F4 }, - unicodeslot=0x1D6F3, - visual="it", + unicodeslot=0x1D956, }, - [0x1D6F4]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL SIGMA", + [0x1D957]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL AWAY LARGE", direction="l", linebreak="al", - specials={ "font", 0x3A3 }, - unicodeslot=0x1D6F4, - visual="it", + unicodeslot=0x1D957, }, - [0x1D6F5]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL TAU", + [0x1D958]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL AWAY LARGEST", direction="l", linebreak="al", - specials={ "font", 0x3A4 }, - unicodeslot=0x1D6F5, - visual="it", + unicodeslot=0x1D958, }, - [0x1D6F6]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL UPSILON", + [0x1D959]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL TOWARDS SMALL", direction="l", linebreak="al", - specials={ "font", 0x3A5 }, - unicodeslot=0x1D6F6, - visual="it", + unicodeslot=0x1D959, }, - [0x1D6F7]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL PHI", + [0x1D95A]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL TOWARDS MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3A6 }, - unicodeslot=0x1D6F7, - visual="it", + unicodeslot=0x1D95A, }, - [0x1D6F8]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL CHI", + [0x1D95B]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL TOWARDS LARGE", direction="l", linebreak="al", - specials={ "font", 0x3A7 }, - unicodeslot=0x1D6F8, - visual="it", + unicodeslot=0x1D95B, }, - [0x1D6F9]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL PSI", + [0x1D95C]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL TOWARDS LARGEST", direction="l", linebreak="al", - specials={ "font", 0x3A8 }, - unicodeslot=0x1D6F9, - visual="it", + unicodeslot=0x1D95C, }, - [0x1D6FA]={ - category="lu", - description="MATHEMATICAL ITALIC CAPITAL OMEGA", + [0x1D95D]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL BETWEEN AWAY SMALL", direction="l", linebreak="al", - specials={ "font", 0x3A9 }, - unicodeslot=0x1D6FA, - visual="it", + unicodeslot=0x1D95D, }, - [0x1D6FB]={ - category="sm", - description="MATHEMATICAL ITALIC NABLA", + [0x1D95E]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL BETWEEN AWAY MEDIUM", direction="l", linebreak="al", - mathclass="default", - specials={ "font", 0x2207 }, - unicodeslot=0x1D6FB, - visual="it", + unicodeslot=0x1D95E, }, - [0x1D6FC]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL ALPHA", + [0x1D95F]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL BETWEEN AWAY LARGE", direction="l", linebreak="al", - specials={ "font", 0x3B1 }, - unicodeslot=0x1D6FC, - visual="it", + unicodeslot=0x1D95F, }, - [0x1D6FD]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL BETA", + [0x1D960]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL BETWEEN AWAY LARGEST", direction="l", linebreak="al", - specials={ "font", 0x3B2 }, - unicodeslot=0x1D6FD, - visual="it", + unicodeslot=0x1D960, }, - [0x1D6FE]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL GAMMA", + [0x1D961]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL BETWEEN TOWARDS SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B3 }, - unicodeslot=0x1D6FE, - visual="it", + unicodeslot=0x1D961, }, - [0x1D6FF]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL DELTA", + [0x1D962]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL BETWEEN TOWARDS MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3B4 }, - unicodeslot=0x1D6FF, - visual="it", + unicodeslot=0x1D962, }, - [0x1D700]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL EPSILON", + [0x1D963]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL BETWEEN TOWARDS LARGE", direction="l", linebreak="al", - specials={ "font", 0x3B5 }, - unicodeslot=0x1D700, - visual="it", + unicodeslot=0x1D963, }, - [0x1D701]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL ZETA", + [0x1D964]={ + category="so", + description="SIGNWRITING MOVEMENT-DIAGONAL BETWEEN TOWARDS LARGEST", direction="l", linebreak="al", - specials={ "font", 0x3B6 }, - unicodeslot=0x1D701, - visual="it", + unicodeslot=0x1D964, }, - [0x1D702]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL ETA", + [0x1D965]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE SINGLE STRAIGHT SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B7 }, - unicodeslot=0x1D702, - visual="it", + unicodeslot=0x1D965, }, - [0x1D703]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL THETA", + [0x1D966]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE SINGLE STRAIGHT MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3B8 }, - unicodeslot=0x1D703, - visual="it", + unicodeslot=0x1D966, }, - [0x1D704]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL IOTA", + [0x1D967]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE SINGLE STRAIGHT LARGE", direction="l", linebreak="al", - specials={ "font", 0x3B9 }, - unicodeslot=0x1D704, - visual="it", + unicodeslot=0x1D967, }, - [0x1D705]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL KAPPA", + [0x1D968]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE SINGLE STRAIGHT LARGEST", direction="l", linebreak="al", - specials={ "font", 0x3BA }, - unicodeslot=0x1D705, - visual="it", + unicodeslot=0x1D968, }, - [0x1D706]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL LAMDA", + [0x1D969]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE SINGLE WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3BB }, - unicodeslot=0x1D706, - visual="it", + unicodeslot=0x1D969, }, - [0x1D707]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL MU", + [0x1D96A]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE DOUBLE STRAIGHT", direction="l", linebreak="al", - specials={ "font", 0x3BC }, - unicodeslot=0x1D707, - visual="it", + unicodeslot=0x1D96A, }, - [0x1D708]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL NU", + [0x1D96B]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE DOUBLE WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3BD }, - unicodeslot=0x1D708, - visual="it", + unicodeslot=0x1D96B, }, - [0x1D709]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL XI", + [0x1D96C]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE DOUBLE ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x3BE }, - unicodeslot=0x1D709, - visual="it", + unicodeslot=0x1D96C, }, - [0x1D70A]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL OMICRON", + [0x1D96D]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE DOUBLE ALTERNATING WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3BF }, - unicodeslot=0x1D70A, - visual="it", + unicodeslot=0x1D96D, }, - [0x1D70B]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL PI", + [0x1D96E]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CROSS", direction="l", linebreak="al", - specials={ "font", 0x3C0 }, - unicodeslot=0x1D70B, - visual="it", + unicodeslot=0x1D96E, }, - [0x1D70C]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL RHO", + [0x1D96F]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE TRIPLE STRAIGHT MOVEMENT", direction="l", linebreak="al", - specials={ "font", 0x3C1 }, - unicodeslot=0x1D70C, - visual="it", + unicodeslot=0x1D96F, }, - [0x1D70D]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL FINAL SIGMA", + [0x1D970]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE TRIPLE WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3C2 }, - unicodeslot=0x1D70D, - visual="it", + unicodeslot=0x1D970, }, - [0x1D70E]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL SIGMA", + [0x1D971]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE TRIPLE ALTERNATING MOVEMENT", direction="l", linebreak="al", - specials={ "font", 0x3C3 }, - unicodeslot=0x1D70E, - visual="it", + unicodeslot=0x1D971, }, - [0x1D70F]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL TAU", + [0x1D972]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE TRIPLE ALTERNATING WRIST FLEX", direction="l", linebreak="al", - specials={ "font", 0x3C4 }, - unicodeslot=0x1D70F, - visual="it", + unicodeslot=0x1D972, }, - [0x1D710]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL UPSILON", + [0x1D973]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE BEND", direction="l", linebreak="al", - specials={ "font", 0x3C5 }, - unicodeslot=0x1D710, - visual="it", + unicodeslot=0x1D973, }, - [0x1D711]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL PHI", + [0x1D974]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CORNER SMALL", direction="l", linebreak="al", - specials={ "font", 0x3C6 }, - unicodeslot=0x1D711, - visual="it", + unicodeslot=0x1D974, }, - [0x1D712]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL CHI", + [0x1D975]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CORNER MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3C7 }, - unicodeslot=0x1D712, - visual="it", + unicodeslot=0x1D975, }, - [0x1D713]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL PSI", + [0x1D976]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CORNER LARGE", direction="l", linebreak="al", - specials={ "font", 0x3C8 }, - unicodeslot=0x1D713, - visual="it", + unicodeslot=0x1D976, }, - [0x1D714]={ - category="ll", - description="MATHEMATICAL ITALIC SMALL OMEGA", + [0x1D977]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CHECK", direction="l", linebreak="al", - specials={ "font", 0x3C9 }, - unicodeslot=0x1D714, - visual="it", + unicodeslot=0x1D977, }, - [0x1D715]={ - category="sm", - description="MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL", - direction="on", + [0x1D978]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE BOX SMALL", + direction="l", linebreak="al", - specials={ "font", 0x2202 }, - unicodeslot=0x1D715, - visual="it", + unicodeslot=0x1D978, }, - [0x1D716]={ - category="ll", - description="MATHEMATICAL ITALIC EPSILON SYMBOL", + [0x1D979]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE BOX MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3F5 }, - unicodeslot=0x1D716, - visual="it", + unicodeslot=0x1D979, }, - [0x1D717]={ - category="ll", - description="MATHEMATICAL ITALIC THETA SYMBOL", + [0x1D97A]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE BOX LARGE", direction="l", linebreak="al", - mathclass="default", - mathname="vartheta", - specials={ "font", 0x3D1 }, - unicodeslot=0x1D717, - visual="it", + unicodeslot=0x1D97A, }, - [0x1D718]={ - category="ll", - description="MATHEMATICAL ITALIC KAPPA SYMBOL", + [0x1D97B]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ZIGZAG SMALL", direction="l", linebreak="al", - mathclass="default", - mathname="varkappa", - specials={ "font", 0x3F0 }, - unicodeslot=0x1D718, - visual="it", + unicodeslot=0x1D97B, }, - [0x1D719]={ - category="ll", - description="MATHEMATICAL ITALIC PHI SYMBOL", + [0x1D97C]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ZIGZAG MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3D5 }, - unicodeslot=0x1D719, - visual="it", + unicodeslot=0x1D97C, }, - [0x1D71A]={ - category="ll", - description="MATHEMATICAL ITALIC RHO SYMBOL", + [0x1D97D]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ZIGZAG LARGE", direction="l", linebreak="al", - mathclass="variable", - mathname="varrho", - specials={ "font", 0x3F1 }, - unicodeslot=0x1D71A, - visual="it", + unicodeslot=0x1D97D, }, - [0x1D71B]={ - category="ll", - description="MATHEMATICAL ITALIC PI SYMBOL", + [0x1D97E]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE PEAKS SMALL", direction="l", linebreak="al", - specials={ "font", 0x3D6 }, - unicodeslot=0x1D71B, - visual="it", + unicodeslot=0x1D97E, }, - [0x1D71C]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL ALPHA", + [0x1D97F]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE PEAKS MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x391 }, - unicodeslot=0x1D71C, - visual="bi", + unicodeslot=0x1D97F, }, - [0x1D71D]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL BETA", + [0x1D980]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE PEAKS LARGE", direction="l", linebreak="al", - specials={ "font", 0x392 }, - unicodeslot=0x1D71D, - visual="bi", + unicodeslot=0x1D980, }, - [0x1D71E]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL GAMMA", + [0x1D981]={ + category="so", + description="SIGNWRITING TRAVEL-FLOORPLANE ROTATION-FLOORPLANE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x393 }, - unicodeslot=0x1D71E, - visual="bi", + unicodeslot=0x1D981, }, - [0x1D71F]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL DELTA", + [0x1D982]={ + category="so", + description="SIGNWRITING TRAVEL-FLOORPLANE ROTATION-FLOORPLANE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x394 }, - unicodeslot=0x1D71F, - visual="bi", + unicodeslot=0x1D982, }, - [0x1D720]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL EPSILON", + [0x1D983]={ + category="so", + description="SIGNWRITING TRAVEL-FLOORPLANE ROTATION-FLOORPLANE ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x395 }, - unicodeslot=0x1D720, - visual="bi", + unicodeslot=0x1D983, }, - [0x1D721]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL ZETA", + [0x1D984]={ + category="so", + description="SIGNWRITING TRAVEL-FLOORPLANE ROTATION-WALLPLANE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x396 }, - unicodeslot=0x1D721, - visual="bi", + unicodeslot=0x1D984, }, - [0x1D722]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL ETA", + [0x1D985]={ + category="so", + description="SIGNWRITING TRAVEL-FLOORPLANE ROTATION-WALLPLANE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x397 }, - unicodeslot=0x1D722, - visual="bi", + unicodeslot=0x1D985, }, - [0x1D723]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL THETA", + [0x1D986]={ + category="so", + description="SIGNWRITING TRAVEL-FLOORPLANE ROTATION-WALLPLANE ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x398 }, - unicodeslot=0x1D723, - visual="bi", + unicodeslot=0x1D986, }, - [0x1D724]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL IOTA", + [0x1D987]={ + category="so", + description="SIGNWRITING TRAVEL-FLOORPLANE SHAKING", direction="l", linebreak="al", - specials={ "font", 0x399 }, - unicodeslot=0x1D724, - visual="bi", + unicodeslot=0x1D987, }, - [0x1D725]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL KAPPA", + [0x1D988]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE QUARTER SMALL", direction="l", linebreak="al", - specials={ "font", 0x39A }, - unicodeslot=0x1D725, - visual="bi", + unicodeslot=0x1D988, }, - [0x1D726]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL LAMDA", + [0x1D989]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE QUARTER MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x39B }, - unicodeslot=0x1D726, - visual="bi", + unicodeslot=0x1D989, }, - [0x1D727]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL MU", + [0x1D98A]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE QUARTER LARGE", direction="l", linebreak="al", - specials={ "font", 0x39C }, - unicodeslot=0x1D727, - visual="bi", + unicodeslot=0x1D98A, }, - [0x1D728]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL NU", + [0x1D98B]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE QUARTER LARGEST", direction="l", linebreak="al", - specials={ "font", 0x39D }, - unicodeslot=0x1D728, - visual="bi", + unicodeslot=0x1D98B, }, - [0x1D729]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL XI", + [0x1D98C]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE HALF-CIRCLE SMALL", direction="l", linebreak="al", - specials={ "font", 0x39E }, - unicodeslot=0x1D729, - visual="bi", + unicodeslot=0x1D98C, }, - [0x1D72A]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL OMICRON", + [0x1D98D]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE HALF-CIRCLE MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x39F }, - unicodeslot=0x1D72A, - visual="bi", + unicodeslot=0x1D98D, }, - [0x1D72B]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL PI", + [0x1D98E]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE HALF-CIRCLE LARGE", direction="l", linebreak="al", - specials={ "font", 0x3A0 }, - unicodeslot=0x1D72B, - visual="bi", + unicodeslot=0x1D98E, }, - [0x1D72C]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL RHO", + [0x1D98F]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE HALF-CIRCLE LARGEST", direction="l", linebreak="al", - specials={ "font", 0x3A1 }, - unicodeslot=0x1D72C, - visual="bi", + unicodeslot=0x1D98F, }, - [0x1D72D]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL THETA SYMBOL", + [0x1D990]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE THREE-QUARTER CIRCLE SMALL", direction="l", linebreak="al", - specials={ "font", 0x3F4 }, - unicodeslot=0x1D72D, - visual="bi", + unicodeslot=0x1D990, }, - [0x1D72E]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL SIGMA", + [0x1D991]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE THREE-QUARTER CIRCLE MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3A3 }, - unicodeslot=0x1D72E, - visual="bi", + unicodeslot=0x1D991, }, - [0x1D72F]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL TAU", + [0x1D992]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE HUMP SMALL", direction="l", linebreak="al", - specials={ "font", 0x3A4 }, - unicodeslot=0x1D72F, - visual="bi", + unicodeslot=0x1D992, }, - [0x1D730]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL UPSILON", + [0x1D993]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE HUMP MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3A5 }, - unicodeslot=0x1D730, - visual="bi", + unicodeslot=0x1D993, }, - [0x1D731]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL PHI", + [0x1D994]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE HUMP LARGE", direction="l", linebreak="al", - specials={ "font", 0x3A6 }, - unicodeslot=0x1D731, - visual="bi", + unicodeslot=0x1D994, }, - [0x1D732]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL CHI", + [0x1D995]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE LOOP SMALL", direction="l", linebreak="al", - specials={ "font", 0x3A7 }, - unicodeslot=0x1D732, - visual="bi", + unicodeslot=0x1D995, }, - [0x1D733]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL PSI", + [0x1D996]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE LOOP MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3A8 }, - unicodeslot=0x1D733, - visual="bi", + unicodeslot=0x1D996, }, - [0x1D734]={ - category="lu", - description="MATHEMATICAL BOLD ITALIC CAPITAL OMEGA", + [0x1D997]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE LOOP LARGE", direction="l", linebreak="al", - specials={ "font", 0x3A9 }, - unicodeslot=0x1D734, - visual="bi", + unicodeslot=0x1D997, }, - [0x1D735]={ - category="sm", - description="MATHEMATICAL BOLD ITALIC NABLA", + [0x1D998]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE LOOP SMALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x2207 }, - unicodeslot=0x1D735, - visual="bi", + unicodeslot=0x1D998, }, - [0x1D736]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL ALPHA", + [0x1D999]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE CURVE DOUBLE SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B1 }, - unicodeslot=0x1D736, - visual="bi", + unicodeslot=0x1D999, }, - [0x1D737]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL BETA", + [0x1D99A]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE CURVE DOUBLE MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3B2 }, - unicodeslot=0x1D737, - visual="bi", + unicodeslot=0x1D99A, }, - [0x1D738]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL GAMMA", + [0x1D99B]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE CURVE DOUBLE LARGE", direction="l", linebreak="al", - specials={ "font", 0x3B3 }, - unicodeslot=0x1D738, - visual="bi", + unicodeslot=0x1D99B, }, - [0x1D739]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL DELTA", + [0x1D99C]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE CURVE TRIPLE SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B4 }, - unicodeslot=0x1D739, - visual="bi", + unicodeslot=0x1D99C, }, - [0x1D73A]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL EPSILON", + [0x1D99D]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE CURVE TRIPLE MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3B5 }, - unicodeslot=0x1D73A, - visual="bi", + unicodeslot=0x1D99D, }, - [0x1D73B]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL ZETA", + [0x1D99E]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE CURVE TRIPLE LARGE", direction="l", linebreak="al", - specials={ "font", 0x3B6 }, - unicodeslot=0x1D73B, - visual="bi", + unicodeslot=0x1D99E, }, - [0x1D73C]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL ETA", + [0x1D99F]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE THEN STRAIGHT", direction="l", linebreak="al", - specials={ "font", 0x3B7 }, - unicodeslot=0x1D73C, - visual="bi", + unicodeslot=0x1D99F, }, - [0x1D73D]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL THETA", + [0x1D9A0]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVED CROSS SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B8 }, - unicodeslot=0x1D73D, - visual="bi", + unicodeslot=0x1D9A0, }, - [0x1D73E]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL IOTA", + [0x1D9A1]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVED CROSS MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3B9 }, - unicodeslot=0x1D73E, - visual="bi", + unicodeslot=0x1D9A1, }, - [0x1D73F]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL KAPPA", + [0x1D9A2]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3BA }, - unicodeslot=0x1D73F, - visual="bi", + unicodeslot=0x1D9A2, }, - [0x1D740]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL LAMDA", + [0x1D9A3]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3BB }, - unicodeslot=0x1D740, - visual="bi", + unicodeslot=0x1D9A3, }, - [0x1D741]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL MU", + [0x1D9A4]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE ALTERNATE", direction="l", linebreak="al", - specials={ "font", 0x3BC }, - unicodeslot=0x1D741, - visual="bi", + unicodeslot=0x1D9A4, }, - [0x1D742]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL NU", + [0x1D9A5]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE SHAKING", direction="l", linebreak="al", - specials={ "font", 0x3BD }, - unicodeslot=0x1D742, - visual="bi", + unicodeslot=0x1D9A5, }, - [0x1D743]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL XI", + [0x1D9A6]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE HITTING FRONT WALL", + direction="l", + linebreak="al", + unicodeslot=0x1D9A6, + }, + [0x1D9A7]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE HUMP HITTING FRONT WALL", direction="l", linebreak="al", - specials={ "font", 0x3BE }, - unicodeslot=0x1D743, - visual="bi", + unicodeslot=0x1D9A7, }, - [0x1D744]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL OMICRON", + [0x1D9A8]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE LOOP HITTING FRONT WALL", direction="l", linebreak="al", - specials={ "font", 0x3BF }, - unicodeslot=0x1D744, - visual="bi", + unicodeslot=0x1D9A8, }, - [0x1D745]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL PI", + [0x1D9A9]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE HITTING FRONT WALL", direction="l", linebreak="al", - specials={ "font", 0x3C0 }, - unicodeslot=0x1D745, - visual="bi", + unicodeslot=0x1D9A9, }, - [0x1D746]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL RHO", + [0x1D9AA]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE SINGLE HITTING FRONT WALL", direction="l", linebreak="al", - specials={ "font", 0x3C1 }, - unicodeslot=0x1D746, - visual="bi", + unicodeslot=0x1D9AA, }, - [0x1D747]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA", + [0x1D9AB]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE DOUBLE HITTING FRONT WALL", direction="l", linebreak="al", - specials={ "font", 0x3C2 }, - unicodeslot=0x1D747, - visual="bi", + unicodeslot=0x1D9AB, }, - [0x1D748]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL SIGMA", + [0x1D9AC]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE ALTERNATING HITTING FRONT WALL", direction="l", linebreak="al", - specials={ "font", 0x3C3 }, - unicodeslot=0x1D748, - visual="bi", + unicodeslot=0x1D9AC, }, - [0x1D749]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL TAU", + [0x1D9AD]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE CURVE HITTING CHEST", direction="l", linebreak="al", - specials={ "font", 0x3C4 }, - unicodeslot=0x1D749, - visual="bi", + unicodeslot=0x1D9AD, }, - [0x1D74A]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL UPSILON", + [0x1D9AE]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE HUMP HITTING CHEST", direction="l", linebreak="al", - specials={ "font", 0x3C5 }, - unicodeslot=0x1D74A, - visual="bi", + unicodeslot=0x1D9AE, }, - [0x1D74B]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL PHI", + [0x1D9AF]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE LOOP HITTING CHEST", direction="l", linebreak="al", - specials={ "font", 0x3C6 }, - unicodeslot=0x1D74B, - visual="bi", + unicodeslot=0x1D9AF, }, - [0x1D74C]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL CHI", + [0x1D9B0]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE HITTING CHEST", direction="l", linebreak="al", - specials={ "font", 0x3C7 }, - unicodeslot=0x1D74C, - visual="bi", + unicodeslot=0x1D9B0, }, - [0x1D74D]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL PSI", + [0x1D9B1]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE SINGLE HITTING CHEST", direction="l", linebreak="al", - specials={ "font", 0x3C8 }, - unicodeslot=0x1D74D, - visual="bi", + unicodeslot=0x1D9B1, }, - [0x1D74E]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC SMALL OMEGA", + [0x1D9B2]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE DOUBLE HITTING CHEST", direction="l", linebreak="al", - specials={ "font", 0x3C9 }, - unicodeslot=0x1D74E, - visual="bi", + unicodeslot=0x1D9B2, }, - [0x1D74F]={ - category="sm", - description="MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL", - direction="on", + [0x1D9B3]={ + category="so", + description="SIGNWRITING ROTATION-WALLPLANE ALTERNATING HITTING CHEST", + direction="l", linebreak="al", - specials={ "font", 0x2202 }, - unicodeslot=0x1D74F, - visual="bi", + unicodeslot=0x1D9B3, }, - [0x1D750]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC EPSILON SYMBOL", + [0x1D9B4]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE DIAGONAL PATH SMALL", direction="l", linebreak="al", - specials={ "font", 0x3F5 }, - unicodeslot=0x1D750, - visual="bi", + unicodeslot=0x1D9B4, }, - [0x1D751]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC THETA SYMBOL", + [0x1D9B5]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE DIAGONAL PATH MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3D1 }, - unicodeslot=0x1D751, - visual="bi", + unicodeslot=0x1D9B5, }, - [0x1D752]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC KAPPA SYMBOL", + [0x1D9B6]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WAVE DIAGONAL PATH LARGE", direction="l", linebreak="al", - specials={ "font", 0x3F0 }, - unicodeslot=0x1D752, - visual="bi", + unicodeslot=0x1D9B6, }, - [0x1D753]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC PHI SYMBOL", + [0x1D9B7]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE HITTING CEILING SMALL", direction="l", linebreak="al", - specials={ "font", 0x3D5 }, - unicodeslot=0x1D753, - visual="bi", + unicodeslot=0x1D9B7, }, - [0x1D754]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC RHO SYMBOL", + [0x1D9B8]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE HITTING CEILING LARGE", direction="l", linebreak="al", - specials={ "font", 0x3F1 }, - unicodeslot=0x1D754, - visual="bi", + unicodeslot=0x1D9B8, }, - [0x1D755]={ - category="ll", - description="MATHEMATICAL BOLD ITALIC PI SYMBOL", + [0x1D9B9]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP HITTING CEILING SMALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3D6 }, - unicodeslot=0x1D755, - visual="bi", + unicodeslot=0x1D9B9, }, - [0x1D756]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA", + [0x1D9BA]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP HITTING CEILING LARGE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x391 }, - unicodeslot=0x1D756, - visual="bf", + unicodeslot=0x1D9BA, }, - [0x1D757]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL BETA", + [0x1D9BB]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP HITTING CEILING SMALL TRIPLE", direction="l", linebreak="al", - specials={ "font", 0x392 }, - unicodeslot=0x1D757, - visual="bf", + unicodeslot=0x1D9BB, }, - [0x1D758]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL GAMMA", + [0x1D9BC]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP HITTING CEILING LARGE TRIPLE", direction="l", linebreak="al", - specials={ "font", 0x393 }, - unicodeslot=0x1D758, - visual="bf", + unicodeslot=0x1D9BC, }, - [0x1D759]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL DELTA", + [0x1D9BD]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP HITTING CEILING SMALL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x394 }, - unicodeslot=0x1D759, - visual="bf", + unicodeslot=0x1D9BD, }, - [0x1D75A]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL EPSILON", + [0x1D9BE]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP HITTING CEILING LARGE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x395 }, - unicodeslot=0x1D75A, - visual="bf", + unicodeslot=0x1D9BE, }, - [0x1D75B]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL ZETA", + [0x1D9BF]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP HITTING CEILING SMALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x396 }, - unicodeslot=0x1D75B, - visual="bf", + unicodeslot=0x1D9BF, }, - [0x1D75C]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL ETA", + [0x1D9C0]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP HITTING CEILING LARGE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x397 }, - unicodeslot=0x1D75C, - visual="bf", + unicodeslot=0x1D9C0, }, - [0x1D75D]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA", + [0x1D9C1]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WAVE HITTING CEILING SMALL", direction="l", linebreak="al", - specials={ "font", 0x398 }, - unicodeslot=0x1D75D, - visual="bf", + unicodeslot=0x1D9C1, }, - [0x1D75E]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL IOTA", + [0x1D9C2]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WAVE HITTING CEILING LARGE", direction="l", linebreak="al", - specials={ "font", 0x399 }, - unicodeslot=0x1D75E, - visual="bf", + unicodeslot=0x1D9C2, }, - [0x1D75F]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL KAPPA", + [0x1D9C3]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE SINGLE HITTING CEILING", direction="l", linebreak="al", - specials={ "font", 0x39A }, - unicodeslot=0x1D75F, - visual="bf", + unicodeslot=0x1D9C3, }, - [0x1D760]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL LAMDA", + [0x1D9C4]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE DOUBLE HITTING CEILING", direction="l", linebreak="al", - specials={ "font", 0x39B }, - unicodeslot=0x1D760, - visual="bf", + unicodeslot=0x1D9C4, }, - [0x1D761]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL MU", + [0x1D9C5]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE ALTERNATING HITTING CEILING", direction="l", linebreak="al", - specials={ "font", 0x39C }, - unicodeslot=0x1D761, - visual="bf", + unicodeslot=0x1D9C5, }, - [0x1D762]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL NU", + [0x1D9C6]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE HITTING FLOOR SMALL", direction="l", linebreak="al", - specials={ "font", 0x39D }, - unicodeslot=0x1D762, - visual="bf", + unicodeslot=0x1D9C6, }, - [0x1D763]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL XI", + [0x1D9C7]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE HITTING FLOOR LARGE", direction="l", linebreak="al", - specials={ "font", 0x39E }, - unicodeslot=0x1D763, - visual="bf", + unicodeslot=0x1D9C7, }, - [0x1D764]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL OMICRON", + [0x1D9C8]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP HITTING FLOOR SMALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x39F }, - unicodeslot=0x1D764, - visual="bf", + unicodeslot=0x1D9C8, }, - [0x1D765]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL PI", + [0x1D9C9]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP HITTING FLOOR LARGE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3A0 }, - unicodeslot=0x1D765, - visual="bf", + unicodeslot=0x1D9C9, }, - [0x1D766]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL RHO", + [0x1D9CA]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP HITTING FLOOR TRIPLE SMALL TRIPLE", direction="l", linebreak="al", - specials={ "font", 0x3A1 }, - unicodeslot=0x1D766, - visual="bf", + unicodeslot=0x1D9CA, }, - [0x1D767]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA SYMBOL", + [0x1D9CB]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP HITTING FLOOR TRIPLE LARGE TRIPLE", direction="l", linebreak="al", - specials={ "font", 0x3F4 }, - unicodeslot=0x1D767, - visual="bf", + unicodeslot=0x1D9CB, }, - [0x1D768]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL SIGMA", + [0x1D9CC]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP HITTING FLOOR SMALL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3A3 }, - unicodeslot=0x1D768, - visual="bf", + unicodeslot=0x1D9CC, }, - [0x1D769]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL TAU", + [0x1D9CD]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP HITTING FLOOR LARGE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3A4 }, - unicodeslot=0x1D769, - visual="bf", + unicodeslot=0x1D9CD, }, - [0x1D76A]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL UPSILON", + [0x1D9CE]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP HITTING FLOOR SMALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3A5 }, - unicodeslot=0x1D76A, - visual="bf", + unicodeslot=0x1D9CE, }, - [0x1D76B]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL PHI", + [0x1D9CF]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP HITTING FLOOR LARGE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3A6 }, - unicodeslot=0x1D76B, - visual="bf", + unicodeslot=0x1D9CF, }, - [0x1D76C]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL CHI", + [0x1D9D0]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WAVE HITTING FLOOR SMALL", direction="l", linebreak="al", - specials={ "font", 0x3A7 }, - unicodeslot=0x1D76C, - visual="bf", + unicodeslot=0x1D9D0, }, - [0x1D76D]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL PSI", + [0x1D9D1]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WAVE HITTING FLOOR LARGE", direction="l", linebreak="al", - specials={ "font", 0x3A8 }, - unicodeslot=0x1D76D, - visual="bf", + unicodeslot=0x1D9D1, }, - [0x1D76E]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA", + [0x1D9D2]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE SINGLE HITTING FLOOR", direction="l", linebreak="al", - specials={ "font", 0x3A9 }, - unicodeslot=0x1D76E, - visual="bf", + unicodeslot=0x1D9D2, }, - [0x1D76F]={ - category="sm", - description="MATHEMATICAL SANS-SERIF BOLD NABLA", + [0x1D9D3]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE DOUBLE HITTING FLOOR", direction="l", linebreak="al", - specials={ "font", 0x2207 }, - unicodeslot=0x1D76F, - visual="bf", + unicodeslot=0x1D9D3, }, - [0x1D770]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA", + [0x1D9D4]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE ALTERNATING HITTING FLOOR", direction="l", linebreak="al", - specials={ "font", 0x3B1 }, - unicodeslot=0x1D770, - visual="bf", + unicodeslot=0x1D9D4, }, - [0x1D771]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL BETA", + [0x1D9D5]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B2 }, - unicodeslot=0x1D771, - visual="bf", + unicodeslot=0x1D9D5, }, - [0x1D772]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA", + [0x1D9D6]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE MEDIUM", direction="l", linebreak="al", - specials={ "font", 0x3B3 }, - unicodeslot=0x1D772, - visual="bf", + unicodeslot=0x1D9D6, }, - [0x1D773]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL DELTA", + [0x1D9D7]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE LARGE", direction="l", linebreak="al", - specials={ "font", 0x3B4 }, - unicodeslot=0x1D773, - visual="bf", + unicodeslot=0x1D9D7, }, - [0x1D774]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON", + [0x1D9D8]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE LARGEST", direction="l", linebreak="al", - specials={ "font", 0x3B5 }, - unicodeslot=0x1D774, - visual="bf", + unicodeslot=0x1D9D8, }, - [0x1D775]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL ZETA", + [0x1D9D9]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE CURVE COMBINED", direction="l", linebreak="al", - specials={ "font", 0x3B6 }, - unicodeslot=0x1D775, - visual="bf", + unicodeslot=0x1D9D9, }, - [0x1D776]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL ETA", + [0x1D9DA]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE HUMP SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B7 }, - unicodeslot=0x1D776, - visual="bf", + unicodeslot=0x1D9DA, }, - [0x1D777]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL THETA", + [0x1D9DB]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE LOOP SMALL", direction="l", linebreak="al", - specials={ "font", 0x3B8 }, - unicodeslot=0x1D777, - visual="bf", + unicodeslot=0x1D9DB, }, - [0x1D778]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL IOTA", + [0x1D9DC]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WAVE SNAKE", direction="l", linebreak="al", - specials={ "font", 0x3B9 }, - unicodeslot=0x1D778, - visual="bf", + unicodeslot=0x1D9DC, }, - [0x1D779]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA", + [0x1D9DD]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WAVE SMALL", direction="l", linebreak="al", - specials={ "font", 0x3BA }, - unicodeslot=0x1D779, - visual="bf", + unicodeslot=0x1D9DD, }, - [0x1D77A]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA", + [0x1D9DE]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WAVE LARGE", direction="l", linebreak="al", - specials={ "font", 0x3BB }, - unicodeslot=0x1D77A, - visual="bf", + unicodeslot=0x1D9DE, }, - [0x1D77B]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL MU", + [0x1D9DF]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3BC }, - unicodeslot=0x1D77B, - visual="bf", + unicodeslot=0x1D9DF, }, - [0x1D77C]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL NU", + [0x1D9E0]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3BD }, - unicodeslot=0x1D77C, - visual="bf", + unicodeslot=0x1D9E0, }, - [0x1D77D]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL XI", + [0x1D9E1]={ + category="so", + description="SIGNWRITING ROTATION-FLOORPLANE ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x3BE }, - unicodeslot=0x1D77D, - visual="bf", + unicodeslot=0x1D9E1, }, - [0x1D77E]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON", + [0x1D9E2]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE SHAKING PARALLEL", direction="l", linebreak="al", - specials={ "font", 0x3BF }, - unicodeslot=0x1D77E, - visual="bf", + unicodeslot=0x1D9E2, }, - [0x1D77F]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL PI", + [0x1D9E3]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE ARM CIRCLE SMALL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3C0 }, - unicodeslot=0x1D77F, - visual="bf", + unicodeslot=0x1D9E3, }, - [0x1D780]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL RHO", + [0x1D9E4]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE ARM CIRCLE MEDIUM SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3C1 }, - unicodeslot=0x1D780, - visual="bf", + unicodeslot=0x1D9E4, }, - [0x1D781]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA", + [0x1D9E5]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE ARM CIRCLE SMALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3C2 }, - unicodeslot=0x1D781, - visual="bf", + unicodeslot=0x1D9E5, }, - [0x1D782]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA", + [0x1D9E6]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE ARM CIRCLE MEDIUM DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3C3 }, - unicodeslot=0x1D782, - visual="bf", + unicodeslot=0x1D9E6, }, - [0x1D783]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL TAU", + [0x1D9E7]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ARM CIRCLE HITTING WALL SMALL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3C4 }, - unicodeslot=0x1D783, - visual="bf", + unicodeslot=0x1D9E7, }, - [0x1D784]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON", + [0x1D9E8]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ARM CIRCLE HITTING WALL MEDIUM SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3C5 }, - unicodeslot=0x1D784, - visual="bf", + unicodeslot=0x1D9E8, }, - [0x1D785]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL PHI", + [0x1D9E9]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ARM CIRCLE HITTING WALL LARGE SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3C6 }, - unicodeslot=0x1D785, - visual="bf", + unicodeslot=0x1D9E9, }, - [0x1D786]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL CHI", + [0x1D9EA]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ARM CIRCLE HITTING WALL SMALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3C7 }, - unicodeslot=0x1D786, - visual="bf", + unicodeslot=0x1D9EA, }, - [0x1D787]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL PSI", + [0x1D9EB]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ARM CIRCLE HITTING WALL MEDIUM DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3C8 }, - unicodeslot=0x1D787, - visual="bf", + unicodeslot=0x1D9EB, }, - [0x1D788]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA", + [0x1D9EC]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE ARM CIRCLE HITTING WALL LARGE DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3C9 }, - unicodeslot=0x1D788, - visual="bf", + unicodeslot=0x1D9EC, }, - [0x1D789]={ - category="sm", - description="MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL", - direction="on", + [0x1D9ED]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WRIST CIRCLE FRONT SINGLE", + direction="l", linebreak="al", - specials={ "font", 0x2202 }, - unicodeslot=0x1D789, - visual="bf", + unicodeslot=0x1D9ED, }, - [0x1D78A]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL", + [0x1D9EE]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE WRIST CIRCLE FRONT DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3F5 }, - unicodeslot=0x1D78A, - visual="bf", + unicodeslot=0x1D9EE, }, - [0x1D78B]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL", + [0x1D9EF]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WRIST CIRCLE HITTING WALL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3D1 }, - unicodeslot=0x1D78B, - visual="bf", + unicodeslot=0x1D9EF, }, - [0x1D78C]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL", + [0x1D9F0]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE WRIST CIRCLE HITTING WALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3F0 }, - unicodeslot=0x1D78C, - visual="bf", + unicodeslot=0x1D9F0, }, - [0x1D78D]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL", + [0x1D9F1]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE FINGER CIRCLES SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3D5 }, - unicodeslot=0x1D78D, - visual="bf", + unicodeslot=0x1D9F1, }, - [0x1D78E]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL", + [0x1D9F2]={ + category="so", + description="SIGNWRITING MOVEMENT-WALLPLANE FINGER CIRCLES DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x3F1 }, - unicodeslot=0x1D78E, - visual="bf", + unicodeslot=0x1D9F2, }, - [0x1D78F]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD PI SYMBOL", + [0x1D9F3]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE FINGER CIRCLES HITTING WALL SINGLE", direction="l", linebreak="al", - specials={ "font", 0x3D6 }, - unicodeslot=0x1D78F, - visual="bf", + unicodeslot=0x1D9F3, }, - [0x1D790]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA", + [0x1D9F4]={ + category="so", + description="SIGNWRITING MOVEMENT-FLOORPLANE FINGER CIRCLES HITTING WALL DOUBLE", direction="l", linebreak="al", - specials={ "font", 0x391 }, - unicodeslot=0x1D790, - visual="bi", + unicodeslot=0x1D9F4, }, - [0x1D791]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL BETA", + [0x1D9F5]={ + category="so", + description="SIGNWRITING DYNAMIC ARROWHEAD SMALL", direction="l", linebreak="al", - specials={ "font", 0x392 }, - unicodeslot=0x1D791, - visual="bi", + unicodeslot=0x1D9F5, }, - [0x1D792]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL GAMMA", + [0x1D9F6]={ + category="so", + description="SIGNWRITING DYNAMIC ARROWHEAD LARGE", direction="l", linebreak="al", - specials={ "font", 0x393 }, - unicodeslot=0x1D792, - visual="bi", + unicodeslot=0x1D9F6, }, - [0x1D793]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL DELTA", + [0x1D9F7]={ + category="so", + description="SIGNWRITING DYNAMIC FAST", direction="l", linebreak="al", - specials={ "font", 0x394 }, - unicodeslot=0x1D793, - visual="bi", + unicodeslot=0x1D9F7, }, - [0x1D794]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL EPSILON", + [0x1D9F8]={ + category="so", + description="SIGNWRITING DYNAMIC SLOW", direction="l", linebreak="al", - specials={ "font", 0x395 }, - unicodeslot=0x1D794, - visual="bi", + unicodeslot=0x1D9F8, }, - [0x1D795]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ZETA", + [0x1D9F9]={ + category="so", + description="SIGNWRITING DYNAMIC TENSE", direction="l", linebreak="al", - specials={ "font", 0x396 }, - unicodeslot=0x1D795, - visual="bi", + unicodeslot=0x1D9F9, }, - [0x1D796]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ETA", + [0x1D9FA]={ + category="so", + description="SIGNWRITING DYNAMIC RELAXED", direction="l", linebreak="al", - specials={ "font", 0x397 }, - unicodeslot=0x1D796, - visual="bi", + unicodeslot=0x1D9FA, }, - [0x1D797]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA", + [0x1D9FB]={ + category="so", + description="SIGNWRITING DYNAMIC SIMULTANEOUS", direction="l", linebreak="al", - specials={ "font", 0x398 }, - unicodeslot=0x1D797, - visual="bi", + unicodeslot=0x1D9FB, }, - [0x1D798]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL IOTA", + [0x1D9FC]={ + category="so", + description="SIGNWRITING DYNAMIC SIMULTANEOUS ALTERNATING", direction="l", linebreak="al", - specials={ "font", 0x399 }, - unicodeslot=0x1D798, - visual="bi", + unicodeslot=0x1D9FC, }, - [0x1D799]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL KAPPA", + [0x1D9FD]={ + category="so", + description="SIGNWRITING DYNAMIC EVERY OTHER TIME", direction="l", linebreak="al", - specials={ "font", 0x39A }, - unicodeslot=0x1D799, - visual="bi", + unicodeslot=0x1D9FD, }, - [0x1D79A]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL LAMDA", + [0x1D9FE]={ + category="so", + description="SIGNWRITING DYNAMIC GRADUAL", direction="l", linebreak="al", - specials={ "font", 0x39B }, - unicodeslot=0x1D79A, - visual="bi", + unicodeslot=0x1D9FE, }, - [0x1D79B]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL MU", + [0x1D9FF]={ + category="so", + description="SIGNWRITING HEAD", direction="l", linebreak="al", - specials={ "font", 0x39C }, - unicodeslot=0x1D79B, - visual="bi", + unicodeslot=0x1D9FF, }, - [0x1D79C]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL NU", + [0x1DA00]={ + category="mn", + description="SIGNWRITING HEAD RIM", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA00, + }, + [0x1DA01]={ + category="mn", + description="SIGNWRITING HEAD MOVEMENT-WALLPLANE STRAIGHT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA01, + }, + [0x1DA02]={ + category="mn", + description="SIGNWRITING HEAD MOVEMENT-WALLPLANE TILT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA02, + }, + [0x1DA03]={ + category="mn", + description="SIGNWRITING HEAD MOVEMENT-FLOORPLANE STRAIGHT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA03, + }, + [0x1DA04]={ + category="mn", + description="SIGNWRITING HEAD MOVEMENT-WALLPLANE CURVE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA04, + }, + [0x1DA05]={ + category="mn", + description="SIGNWRITING HEAD MOVEMENT-FLOORPLANE CURVE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA05, + }, + [0x1DA06]={ + category="mn", + description="SIGNWRITING HEAD MOVEMENT CIRCLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA06, + }, + [0x1DA07]={ + category="mn", + description="SIGNWRITING FACE DIRECTION POSITION NOSE FORWARD TILTING", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA07, + }, + [0x1DA08]={ + category="mn", + description="SIGNWRITING FACE DIRECTION POSITION NOSE UP OR DOWN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA08, + }, + [0x1DA09]={ + category="mn", + description="SIGNWRITING FACE DIRECTION POSITION NOSE UP OR DOWN TILTING", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA09, + }, + [0x1DA0A]={ + category="mn", + description="SIGNWRITING EYEBROWS STRAIGHT UP", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA0A, + }, + [0x1DA0B]={ + category="mn", + description="SIGNWRITING EYEBROWS STRAIGHT NEUTRAL", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA0B, + }, + [0x1DA0C]={ + category="mn", + description="SIGNWRITING EYEBROWS STRAIGHT DOWN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA0C, + }, + [0x1DA0D]={ + category="mn", + description="SIGNWRITING DREAMY EYEBROWS NEUTRAL DOWN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA0D, + }, + [0x1DA0E]={ + category="mn", + description="SIGNWRITING DREAMY EYEBROWS DOWN NEUTRAL", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA0E, + }, + [0x1DA0F]={ + category="mn", + description="SIGNWRITING DREAMY EYEBROWS UP NEUTRAL", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA0F, + }, + [0x1DA10]={ + category="mn", + description="SIGNWRITING DREAMY EYEBROWS NEUTRAL UP", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA10, + }, + [0x1DA11]={ + category="mn", + description="SIGNWRITING FOREHEAD NEUTRAL", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA11, + }, + [0x1DA12]={ + category="mn", + description="SIGNWRITING FOREHEAD CONTACT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA12, + }, + [0x1DA13]={ + category="mn", + description="SIGNWRITING FOREHEAD WRINKLED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA13, + }, + [0x1DA14]={ + category="mn", + description="SIGNWRITING EYES OPEN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA14, + }, + [0x1DA15]={ + category="mn", + description="SIGNWRITING EYES SQUEEZED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA15, + }, + [0x1DA16]={ + category="mn", + description="SIGNWRITING EYES CLOSED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA16, + }, + [0x1DA17]={ + category="mn", + description="SIGNWRITING EYE BLINK SINGLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA17, + }, + [0x1DA18]={ + category="mn", + description="SIGNWRITING EYE BLINK MULTIPLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA18, + }, + [0x1DA19]={ + category="mn", + description="SIGNWRITING EYES HALF OPEN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA19, + }, + [0x1DA1A]={ + category="mn", + description="SIGNWRITING EYES WIDE OPEN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA1A, + }, + [0x1DA1B]={ + category="mn", + description="SIGNWRITING EYES HALF CLOSED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA1B, + }, + [0x1DA1C]={ + category="mn", + description="SIGNWRITING EYES WIDENING MOVEMENT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA1C, + }, + [0x1DA1D]={ + category="mn", + description="SIGNWRITING EYE WINK", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA1D, + }, + [0x1DA1E]={ + category="mn", + description="SIGNWRITING EYELASHES UP", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA1E, + }, + [0x1DA1F]={ + category="mn", + description="SIGNWRITING EYELASHES DOWN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA1F, + }, + [0x1DA20]={ + category="mn", + description="SIGNWRITING EYELASHES FLUTTERING", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA20, + }, + [0x1DA21]={ + category="mn", + description="SIGNWRITING EYEGAZE-WALLPLANE STRAIGHT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA21, + }, + [0x1DA22]={ + category="mn", + description="SIGNWRITING EYEGAZE-WALLPLANE STRAIGHT DOUBLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA22, + }, + [0x1DA23]={ + category="mn", + description="SIGNWRITING EYEGAZE-WALLPLANE STRAIGHT ALTERNATING", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA23, + }, + [0x1DA24]={ + category="mn", + description="SIGNWRITING EYEGAZE-FLOORPLANE STRAIGHT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA24, + }, + [0x1DA25]={ + category="mn", + description="SIGNWRITING EYEGAZE-FLOORPLANE STRAIGHT DOUBLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA25, + }, + [0x1DA26]={ + category="mn", + description="SIGNWRITING EYEGAZE-FLOORPLANE STRAIGHT ALTERNATING", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA26, + }, + [0x1DA27]={ + category="mn", + description="SIGNWRITING EYEGAZE-WALLPLANE CURVED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA27, + }, + [0x1DA28]={ + category="mn", + description="SIGNWRITING EYEGAZE-FLOORPLANE CURVED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA28, + }, + [0x1DA29]={ + category="mn", + description="SIGNWRITING EYEGAZE-WALLPLANE CIRCLING", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA29, + }, + [0x1DA2A]={ + category="mn", + description="SIGNWRITING CHEEKS PUFFED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA2A, + }, + [0x1DA2B]={ + category="mn", + description="SIGNWRITING CHEEKS NEUTRAL", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA2B, + }, + [0x1DA2C]={ + category="mn", + description="SIGNWRITING CHEEKS SUCKED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA2C, + }, + [0x1DA2D]={ + category="mn", + description="SIGNWRITING TENSE CHEEKS HIGH", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA2D, + }, + [0x1DA2E]={ + category="mn", + description="SIGNWRITING TENSE CHEEKS MIDDLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA2E, + }, + [0x1DA2F]={ + category="mn", + description="SIGNWRITING TENSE CHEEKS LOW", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA2F, + }, + [0x1DA30]={ + category="mn", + description="SIGNWRITING EARS", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA30, + }, + [0x1DA31]={ + category="mn", + description="SIGNWRITING NOSE NEUTRAL", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA31, + }, + [0x1DA32]={ + category="mn", + description="SIGNWRITING NOSE CONTACT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA32, + }, + [0x1DA33]={ + category="mn", + description="SIGNWRITING NOSE WRINKLES", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA33, + }, + [0x1DA34]={ + category="mn", + description="SIGNWRITING NOSE WIGGLES", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA34, + }, + [0x1DA35]={ + category="mn", + description="SIGNWRITING AIR BLOWING OUT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA35, + }, + [0x1DA36]={ + category="mn", + description="SIGNWRITING AIR SUCKING IN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA36, + }, + [0x1DA37]={ + category="so", + description="SIGNWRITING AIR BLOW SMALL ROTATIONS", direction="l", linebreak="al", - specials={ "font", 0x39D }, - unicodeslot=0x1D79C, - visual="bi", + unicodeslot=0x1DA37, }, - [0x1D79D]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL XI", + [0x1DA38]={ + category="so", + description="SIGNWRITING AIR SUCK SMALL ROTATIONS", direction="l", linebreak="al", - specials={ "font", 0x39E }, - unicodeslot=0x1D79D, - visual="bi", + unicodeslot=0x1DA38, }, - [0x1D79E]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMICRON", + [0x1DA39]={ + category="so", + description="SIGNWRITING BREATH INHALE", direction="l", linebreak="al", - specials={ "font", 0x39F }, - unicodeslot=0x1D79E, - visual="bi", + unicodeslot=0x1DA39, }, - [0x1D79F]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PI", + [0x1DA3A]={ + category="so", + description="SIGNWRITING BREATH EXHALE", direction="l", linebreak="al", - specials={ "font", 0x3A0 }, - unicodeslot=0x1D79F, - visual="bi", + unicodeslot=0x1DA3A, + }, + [0x1DA3B]={ + category="mn", + description="SIGNWRITING MOUTH CLOSED NEUTRAL", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA3B, + }, + [0x1DA3C]={ + category="mn", + description="SIGNWRITING MOUTH CLOSED FORWARD", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA3C, + }, + [0x1DA3D]={ + category="mn", + description="SIGNWRITING MOUTH CLOSED CONTACT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA3D, + }, + [0x1DA3E]={ + category="mn", + description="SIGNWRITING MOUTH SMILE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA3E, + }, + [0x1DA3F]={ + category="mn", + description="SIGNWRITING MOUTH SMILE WRINKLED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA3F, + }, + [0x1DA40]={ + category="mn", + description="SIGNWRITING MOUTH SMILE OPEN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA40, + }, + [0x1DA41]={ + category="mn", + description="SIGNWRITING MOUTH FROWN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA41, + }, + [0x1DA42]={ + category="mn", + description="SIGNWRITING MOUTH FROWN WRINKLED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA42, + }, + [0x1DA43]={ + category="mn", + description="SIGNWRITING MOUTH FROWN OPEN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA43, + }, + [0x1DA44]={ + category="mn", + description="SIGNWRITING MOUTH OPEN CIRCLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA44, + }, + [0x1DA45]={ + category="mn", + description="SIGNWRITING MOUTH OPEN FORWARD", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA45, + }, + [0x1DA46]={ + category="mn", + description="SIGNWRITING MOUTH OPEN WRINKLED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA46, + }, + [0x1DA47]={ + category="mn", + description="SIGNWRITING MOUTH OPEN OVAL", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA47, + }, + [0x1DA48]={ + category="mn", + description="SIGNWRITING MOUTH OPEN OVAL WRINKLED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA48, + }, + [0x1DA49]={ + category="mn", + description="SIGNWRITING MOUTH OPEN OVAL YAWN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA49, + }, + [0x1DA4A]={ + category="mn", + description="SIGNWRITING MOUTH OPEN RECTANGLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA4A, + }, + [0x1DA4B]={ + category="mn", + description="SIGNWRITING MOUTH OPEN RECTANGLE WRINKLED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA4B, + }, + [0x1DA4C]={ + category="mn", + description="SIGNWRITING MOUTH OPEN RECTANGLE YAWN", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA4C, + }, + [0x1DA4D]={ + category="mn", + description="SIGNWRITING MOUTH KISS", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA4D, + }, + [0x1DA4E]={ + category="mn", + description="SIGNWRITING MOUTH KISS FORWARD", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA4E, + }, + [0x1DA4F]={ + category="mn", + description="SIGNWRITING MOUTH KISS WRINKLED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA4F, + }, + [0x1DA50]={ + category="mn", + description="SIGNWRITING MOUTH TENSE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA50, + }, + [0x1DA51]={ + category="mn", + description="SIGNWRITING MOUTH TENSE FORWARD", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA51, + }, + [0x1DA52]={ + category="mn", + description="SIGNWRITING MOUTH TENSE SUCKED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA52, + }, + [0x1DA53]={ + category="mn", + description="SIGNWRITING LIPS PRESSED TOGETHER", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA53, + }, + [0x1DA54]={ + category="mn", + description="SIGNWRITING LIP LOWER OVER UPPER", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA54, + }, + [0x1DA55]={ + category="mn", + description="SIGNWRITING LIP UPPER OVER LOWER", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA55, + }, + [0x1DA56]={ + category="mn", + description="SIGNWRITING MOUTH CORNERS", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA56, + }, + [0x1DA57]={ + category="mn", + description="SIGNWRITING MOUTH WRINKLES SINGLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA57, + }, + [0x1DA58]={ + category="mn", + description="SIGNWRITING MOUTH WRINKLES DOUBLE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA58, + }, + [0x1DA59]={ + category="mn", + description="SIGNWRITING TONGUE STICKING OUT FAR", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA59, + }, + [0x1DA5A]={ + category="mn", + description="SIGNWRITING TONGUE LICKING LIPS", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA5A, + }, + [0x1DA5B]={ + category="mn", + description="SIGNWRITING TONGUE TIP BETWEEN LIPS", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA5B, + }, + [0x1DA5C]={ + category="mn", + description="SIGNWRITING TONGUE TIP TOUCHING INSIDE MOUTH", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA5C, + }, + [0x1DA5D]={ + category="mn", + description="SIGNWRITING TONGUE INSIDE MOUTH RELAXED", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA5D, + }, + [0x1DA5E]={ + category="mn", + description="SIGNWRITING TONGUE MOVES AGAINST CHEEK", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA5E, + }, + [0x1DA5F]={ + category="mn", + description="SIGNWRITING TONGUE CENTRE STICKING OUT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA5F, + }, + [0x1DA60]={ + category="mn", + description="SIGNWRITING TONGUE CENTRE INSIDE MOUTH", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA60, }, - [0x1D7A0]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL RHO", - direction="l", - linebreak="al", - specials={ "font", 0x3A1 }, - unicodeslot=0x1D7A0, - visual="bi", + [0x1DA61]={ + category="mn", + description="SIGNWRITING TEETH", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA61, }, - [0x1D7A1]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA SYMBOL", - direction="l", - linebreak="al", - specials={ "font", 0x3F4 }, - unicodeslot=0x1D7A1, - visual="bi", + [0x1DA62]={ + category="mn", + description="SIGNWRITING TEETH MOVEMENT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA62, }, - [0x1D7A2]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL SIGMA", - direction="l", - linebreak="al", - specials={ "font", 0x3A3 }, - unicodeslot=0x1D7A2, - visual="bi", + [0x1DA63]={ + category="mn", + description="SIGNWRITING TEETH ON TONGUE", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA63, }, - [0x1D7A3]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL TAU", - direction="l", - linebreak="al", - specials={ "font", 0x3A4 }, - unicodeslot=0x1D7A3, - visual="bi", + [0x1DA64]={ + category="mn", + description="SIGNWRITING TEETH ON TONGUE MOVEMENT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA64, }, - [0x1D7A4]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL UPSILON", - direction="l", - linebreak="al", - specials={ "font", 0x3A5 }, - unicodeslot=0x1D7A4, - visual="bi", + [0x1DA65]={ + category="mn", + description="SIGNWRITING TEETH ON LIPS", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA65, }, - [0x1D7A5]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PHI", - direction="l", - linebreak="al", - specials={ "font", 0x3A6 }, - unicodeslot=0x1D7A5, - visual="bi", + [0x1DA66]={ + category="mn", + description="SIGNWRITING TEETH ON LIPS MOVEMENT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA66, }, - [0x1D7A6]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL CHI", - direction="l", - linebreak="al", - specials={ "font", 0x3A7 }, - unicodeslot=0x1D7A6, - visual="bi", + [0x1DA67]={ + category="mn", + description="SIGNWRITING TEETH BITE LIPS", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA67, }, - [0x1D7A7]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PSI", - direction="l", - linebreak="al", - specials={ "font", 0x3A8 }, - unicodeslot=0x1D7A7, - visual="bi", + [0x1DA68]={ + category="mn", + description="SIGNWRITING MOVEMENT-WALLPLANE JAW", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA68, }, - [0x1D7A8]={ - category="lu", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA", - direction="l", - linebreak="al", - specials={ "font", 0x3A9 }, - unicodeslot=0x1D7A8, - visual="bi", + [0x1DA69]={ + category="mn", + description="SIGNWRITING MOVEMENT-FLOORPLANE JAW", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA69, }, - [0x1D7A9]={ - category="sm", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA", - direction="l", - linebreak="al", - specials={ "font", 0x2207 }, - unicodeslot=0x1D7A9, - visual="bi", + [0x1DA6A]={ + category="mn", + description="SIGNWRITING NECK", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA6A, }, - [0x1D7AA]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA", - direction="l", - linebreak="al", - specials={ "font", 0x3B1 }, - unicodeslot=0x1D7AA, - visual="bi", + [0x1DA6B]={ + category="mn", + description="SIGNWRITING HAIR", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA6B, }, - [0x1D7AB]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA", - direction="l", - linebreak="al", - specials={ "font", 0x3B2 }, - unicodeslot=0x1D7AB, - visual="bi", + [0x1DA6C]={ + category="mn", + description="SIGNWRITING EXCITEMENT", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA6C, }, - [0x1D7AC]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA", + [0x1DA6D]={ + category="so", + description="SIGNWRITING SHOULDER HIP SPINE", direction="l", linebreak="al", - specials={ "font", 0x3B3 }, - unicodeslot=0x1D7AC, - visual="bi", + unicodeslot=0x1DA6D, }, - [0x1D7AD]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA", + [0x1DA6E]={ + category="so", + description="SIGNWRITING SHOULDER HIP POSITIONS", direction="l", linebreak="al", - specials={ "font", 0x3B4 }, - unicodeslot=0x1D7AD, - visual="bi", + unicodeslot=0x1DA6E, }, - [0x1D7AE]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON", + [0x1DA6F]={ + category="so", + description="SIGNWRITING WALLPLANE SHOULDER HIP MOVE", direction="l", linebreak="al", - specials={ "font", 0x3B5 }, - unicodeslot=0x1D7AE, - visual="bi", + unicodeslot=0x1DA6F, }, - [0x1D7AF]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA", + [0x1DA70]={ + category="so", + description="SIGNWRITING FLOORPLANE SHOULDER HIP MOVE", direction="l", linebreak="al", - specials={ "font", 0x3B6 }, - unicodeslot=0x1D7AF, - visual="bi", + unicodeslot=0x1DA70, }, - [0x1D7B0]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA", + [0x1DA71]={ + category="so", + description="SIGNWRITING SHOULDER TILTING FROM WAIST", direction="l", linebreak="al", - specials={ "font", 0x3B7 }, - unicodeslot=0x1D7B0, - visual="bi", + unicodeslot=0x1DA71, }, - [0x1D7B1]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA", + [0x1DA72]={ + category="so", + description="SIGNWRITING TORSO-WALLPLANE STRAIGHT STRETCH", direction="l", linebreak="al", - specials={ "font", 0x3B8 }, - unicodeslot=0x1D7B1, - visual="bi", + unicodeslot=0x1DA72, }, - [0x1D7B2]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA", + [0x1DA73]={ + category="so", + description="SIGNWRITING TORSO-WALLPLANE CURVED BEND", direction="l", linebreak="al", - specials={ "font", 0x3B9 }, - unicodeslot=0x1D7B2, - visual="bi", + unicodeslot=0x1DA73, }, - [0x1D7B3]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA", + [0x1DA74]={ + category="so", + description="SIGNWRITING TORSO-FLOORPLANE TWISTING", direction="l", linebreak="al", - specials={ "font", 0x3BA }, - unicodeslot=0x1D7B3, - visual="bi", + unicodeslot=0x1DA74, }, - [0x1D7B4]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA", - direction="l", - linebreak="al", - specials={ "font", 0x3BB }, - unicodeslot=0x1D7B4, - visual="bi", + [0x1DA75]={ + category="mn", + description="SIGNWRITING UPPER BODY TILTING FROM HIP JOINTS", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA75, }, - [0x1D7B5]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU", + [0x1DA76]={ + category="so", + description="SIGNWRITING LIMB COMBINATION", direction="l", linebreak="al", - specials={ "font", 0x3BC }, - unicodeslot=0x1D7B5, - visual="bi", + unicodeslot=0x1DA76, }, - [0x1D7B6]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU", + [0x1DA77]={ + category="so", + description="SIGNWRITING LIMB LENGTH-1", direction="l", linebreak="al", - specials={ "font", 0x3BD }, - unicodeslot=0x1D7B6, - visual="bi", + unicodeslot=0x1DA77, }, - [0x1D7B7]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI", + [0x1DA78]={ + category="so", + description="SIGNWRITING LIMB LENGTH-2", direction="l", linebreak="al", - specials={ "font", 0x3BE }, - unicodeslot=0x1D7B7, - visual="bi", + unicodeslot=0x1DA78, }, - [0x1D7B8]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON", + [0x1DA79]={ + category="so", + description="SIGNWRITING LIMB LENGTH-3", direction="l", linebreak="al", - specials={ "font", 0x3BF }, - unicodeslot=0x1D7B8, - visual="bi", + unicodeslot=0x1DA79, }, - [0x1D7B9]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI", + [0x1DA7A]={ + category="so", + description="SIGNWRITING LIMB LENGTH-4", direction="l", linebreak="al", - specials={ "font", 0x3C0 }, - unicodeslot=0x1D7B9, - visual="bi", + unicodeslot=0x1DA7A, }, - [0x1D7BA]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO", + [0x1DA7B]={ + category="so", + description="SIGNWRITING LIMB LENGTH-5", direction="l", linebreak="al", - specials={ "font", 0x3C1 }, - unicodeslot=0x1D7BA, - visual="bi", + unicodeslot=0x1DA7B, }, - [0x1D7BB]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA", + [0x1DA7C]={ + category="so", + description="SIGNWRITING LIMB LENGTH-6", direction="l", linebreak="al", - specials={ "font", 0x3C2 }, - unicodeslot=0x1D7BB, - visual="bi", + unicodeslot=0x1DA7C, }, - [0x1D7BC]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA", + [0x1DA7D]={ + category="so", + description="SIGNWRITING LIMB LENGTH-7", direction="l", linebreak="al", - specials={ "font", 0x3C3 }, - unicodeslot=0x1D7BC, - visual="bi", + unicodeslot=0x1DA7D, }, - [0x1D7BD]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU", + [0x1DA7E]={ + category="so", + description="SIGNWRITING FINGER", direction="l", linebreak="al", - specials={ "font", 0x3C4 }, - unicodeslot=0x1D7BD, - visual="bi", + unicodeslot=0x1DA7E, }, - [0x1D7BE]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON", + [0x1DA7F]={ + category="so", + description="SIGNWRITING LOCATION-WALLPLANE SPACE", direction="l", linebreak="al", - specials={ "font", 0x3C5 }, - unicodeslot=0x1D7BE, - visual="bi", + unicodeslot=0x1DA7F, }, - [0x1D7BF]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI", + [0x1DA80]={ + category="so", + description="SIGNWRITING LOCATION-FLOORPLANE SPACE", direction="l", linebreak="al", - specials={ "font", 0x3C6 }, - unicodeslot=0x1D7BF, - visual="bi", + unicodeslot=0x1DA80, }, - [0x1D7C0]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI", + [0x1DA81]={ + category="so", + description="SIGNWRITING LOCATION HEIGHT", direction="l", linebreak="al", - specials={ "font", 0x3C7 }, - unicodeslot=0x1D7C0, - visual="bi", + unicodeslot=0x1DA81, }, - [0x1D7C1]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI", + [0x1DA82]={ + category="so", + description="SIGNWRITING LOCATION WIDTH", direction="l", linebreak="al", - specials={ "font", 0x3C8 }, - unicodeslot=0x1D7C1, - visual="bi", + unicodeslot=0x1DA82, }, - [0x1D7C2]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA", + [0x1DA83]={ + category="so", + description="SIGNWRITING LOCATION DEPTH", direction="l", linebreak="al", - specials={ "font", 0x3C9 }, - unicodeslot=0x1D7C2, - visual="bi", - }, - [0x1D7C3]={ - category="sm", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL", - direction="on", - linebreak="al", - specials={ "font", 0x2202 }, - unicodeslot=0x1D7C3, - visual="bi", + unicodeslot=0x1DA83, }, - [0x1D7C4]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL", - direction="l", - linebreak="al", - specials={ "font", 0x3F5 }, - unicodeslot=0x1D7C4, - visual="bi", + [0x1DA84]={ + category="mn", + description="SIGNWRITING LOCATION HEAD NECK", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA84, }, - [0x1D7C5]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL", + [0x1DA85]={ + category="so", + description="SIGNWRITING LOCATION TORSO", direction="l", linebreak="al", - specials={ "font", 0x3D1 }, - unicodeslot=0x1D7C5, - visual="bi", + unicodeslot=0x1DA85, }, - [0x1D7C6]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL", + [0x1DA86]={ + category="so", + description="SIGNWRITING LOCATION LIMBS DIGITS", direction="l", linebreak="al", - specials={ "font", 0x3F0 }, - unicodeslot=0x1D7C6, - visual="bi", + unicodeslot=0x1DA86, }, - [0x1D7C7]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL", + [0x1DA87]={ + category="po", + description="SIGNWRITING COMMA", direction="l", - linebreak="al", - specials={ "font", 0x3D5 }, - unicodeslot=0x1D7C7, - visual="bi", + linebreak="ba", + unicodeslot=0x1DA87, }, - [0x1D7C8]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL", + [0x1DA88]={ + category="po", + description="SIGNWRITING FULL STOP", direction="l", - linebreak="al", - specials={ "font", 0x3F1 }, - unicodeslot=0x1D7C8, - visual="bi", + linebreak="ba", + unicodeslot=0x1DA88, }, - [0x1D7C9]={ - category="ll", - description="MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL", + [0x1DA89]={ + category="po", + description="SIGNWRITING SEMICOLON", direction="l", - linebreak="al", - specials={ "font", 0x3D6 }, - unicodeslot=0x1D7C9, - visual="bi", + linebreak="ba", + unicodeslot=0x1DA89, }, - [0x1D7CA]={ - category="lu", - description="MATHEMATICAL BOLD CAPITAL DIGAMMA", + [0x1DA8A]={ + category="po", + description="SIGNWRITING COLON", direction="l", - linebreak="al", - specials={ "font", 0x3DC }, - unicodeslot=0x1D7CA, - visual="bf", + linebreak="ba", + unicodeslot=0x1DA8A, }, - [0x1D7CB]={ - category="ll", - description="MATHEMATICAL BOLD SMALL DIGAMMA", + [0x1DA8B]={ + category="po", + description="SIGNWRITING PARENTHESIS", direction="l", linebreak="al", - specials={ "font", 0x3DD }, - unicodeslot=0x1D7CB, - visual="bf", - }, - [0x1D7CE]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT ZERO", - direction="en", - linebreak="nu", - specials={ "font", 0x30 }, - unicodeslot=0x1D7CE, - visual="bf", - }, - [0x1D7CF]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT ONE", - direction="en", - linebreak="nu", - specials={ "font", 0x31 }, - unicodeslot=0x1D7CF, - visual="bf", - }, - [0x1D7D0]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT TWO", - direction="en", - linebreak="nu", - specials={ "font", 0x32 }, - unicodeslot=0x1D7D0, - visual="bf", - }, - [0x1D7D1]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT THREE", - direction="en", - linebreak="nu", - specials={ "font", 0x33 }, - unicodeslot=0x1D7D1, - visual="bf", - }, - [0x1D7D2]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT FOUR", - direction="en", - linebreak="nu", - specials={ "font", 0x34 }, - unicodeslot=0x1D7D2, - visual="bf", - }, - [0x1D7D3]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT FIVE", - direction="en", - linebreak="nu", - specials={ "font", 0x35 }, - unicodeslot=0x1D7D3, - visual="bf", - }, - [0x1D7D4]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT SIX", - direction="en", - linebreak="nu", - specials={ "font", 0x36 }, - unicodeslot=0x1D7D4, - visual="bf", - }, - [0x1D7D5]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT SEVEN", - direction="en", - linebreak="nu", - specials={ "font", 0x37 }, - unicodeslot=0x1D7D5, - visual="bf", - }, - [0x1D7D6]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT EIGHT", - direction="en", - linebreak="nu", - specials={ "font", 0x38 }, - unicodeslot=0x1D7D6, - visual="bf", - }, - [0x1D7D7]={ - category="nd", - description="MATHEMATICAL BOLD DIGIT NINE", - direction="en", - linebreak="nu", - specials={ "font", 0x39 }, - unicodeslot=0x1D7D7, - visual="bf", - }, - [0x1D7D8]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT ZERO", - direction="en", - linebreak="nu", - specials={ "font", 0x30 }, - unicodeslot=0x1D7D8, - }, - [0x1D7D9]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT ONE", - direction="en", - linebreak="nu", - specials={ "font", 0x31 }, - unicodeslot=0x1D7D9, - }, - [0x1D7DA]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT TWO", - direction="en", - linebreak="nu", - specials={ "font", 0x32 }, - unicodeslot=0x1D7DA, - }, - [0x1D7DB]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT THREE", - direction="en", - linebreak="nu", - specials={ "font", 0x33 }, - unicodeslot=0x1D7DB, - }, - [0x1D7DC]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT FOUR", - direction="en", - linebreak="nu", - specials={ "font", 0x34 }, - unicodeslot=0x1D7DC, - }, - [0x1D7DD]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT FIVE", - direction="en", - linebreak="nu", - specials={ "font", 0x35 }, - unicodeslot=0x1D7DD, - }, - [0x1D7DE]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT SIX", - direction="en", - linebreak="nu", - specials={ "font", 0x36 }, - unicodeslot=0x1D7DE, - }, - [0x1D7DF]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT SEVEN", - direction="en", - linebreak="nu", - specials={ "font", 0x37 }, - unicodeslot=0x1D7DF, - }, - [0x1D7E0]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT EIGHT", - direction="en", - linebreak="nu", - specials={ "font", 0x38 }, - unicodeslot=0x1D7E0, - }, - [0x1D7E1]={ - category="nd", - description="MATHEMATICAL DOUBLE-STRUCK DIGIT NINE", - direction="en", - linebreak="nu", - specials={ "font", 0x39 }, - unicodeslot=0x1D7E1, - }, - [0x1D7E2]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT ZERO", - direction="en", - linebreak="nu", - specials={ "font", 0x30 }, - unicodeslot=0x1D7E2, - }, - [0x1D7E3]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT ONE", - direction="en", - linebreak="nu", - specials={ "font", 0x31 }, - unicodeslot=0x1D7E3, - }, - [0x1D7E4]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT TWO", - direction="en", - linebreak="nu", - specials={ "font", 0x32 }, - unicodeslot=0x1D7E4, - }, - [0x1D7E5]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT THREE", - direction="en", - linebreak="nu", - specials={ "font", 0x33 }, - unicodeslot=0x1D7E5, - }, - [0x1D7E6]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT FOUR", - direction="en", - linebreak="nu", - specials={ "font", 0x34 }, - unicodeslot=0x1D7E6, - }, - [0x1D7E7]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT FIVE", - direction="en", - linebreak="nu", - specials={ "font", 0x35 }, - unicodeslot=0x1D7E7, - }, - [0x1D7E8]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT SIX", - direction="en", - linebreak="nu", - specials={ "font", 0x36 }, - unicodeslot=0x1D7E8, - }, - [0x1D7E9]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT SEVEN", - direction="en", - linebreak="nu", - specials={ "font", 0x37 }, - unicodeslot=0x1D7E9, - }, - [0x1D7EA]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT EIGHT", - direction="en", - linebreak="nu", - specials={ "font", 0x38 }, - unicodeslot=0x1D7EA, - }, - [0x1D7EB]={ - category="nd", - description="MATHEMATICAL SANS-SERIF DIGIT NINE", - direction="en", - linebreak="nu", - specials={ "font", 0x39 }, - unicodeslot=0x1D7EB, + unicodeslot=0x1DA8B, }, - [0x1D7EC]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT ZERO", - direction="en", - linebreak="nu", - specials={ "font", 0x30 }, - unicodeslot=0x1D7EC, - visual="bf", + [0x1DA9B]={ + category="mn", + description="SIGNWRITING FILL MODIFIER-2", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA9B, }, - [0x1D7ED]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT ONE", - direction="en", - linebreak="nu", - specials={ "font", 0x31 }, - unicodeslot=0x1D7ED, - visual="bf", + [0x1DA9C]={ + category="mn", + description="SIGNWRITING FILL MODIFIER-3", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA9C, }, - [0x1D7EE]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT TWO", - direction="en", - linebreak="nu", - specials={ "font", 0x32 }, - unicodeslot=0x1D7EE, - visual="bf", + [0x1DA9D]={ + category="mn", + description="SIGNWRITING FILL MODIFIER-4", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA9D, }, - [0x1D7EF]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT THREE", - direction="en", - linebreak="nu", - specials={ "font", 0x33 }, - unicodeslot=0x1D7EF, - visual="bf", + [0x1DA9E]={ + category="mn", + description="SIGNWRITING FILL MODIFIER-5", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA9E, }, - [0x1D7F0]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT FOUR", - direction="en", - linebreak="nu", - specials={ "font", 0x34 }, - unicodeslot=0x1D7F0, - visual="bf", + [0x1DA9F]={ + category="mn", + description="SIGNWRITING FILL MODIFIER-6", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DA9F, }, - [0x1D7F1]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT FIVE", - direction="en", - linebreak="nu", - specials={ "font", 0x35 }, - unicodeslot=0x1D7F1, - visual="bf", + [0x1DAA1]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-2", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA1, }, - [0x1D7F2]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT SIX", - direction="en", - linebreak="nu", - specials={ "font", 0x36 }, - unicodeslot=0x1D7F2, - visual="bf", + [0x1DAA2]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-3", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA2, }, - [0x1D7F3]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT SEVEN", - direction="en", - linebreak="nu", - specials={ "font", 0x37 }, - unicodeslot=0x1D7F3, - visual="bf", + [0x1DAA3]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-4", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA3, }, - [0x1D7F4]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT EIGHT", - direction="en", - linebreak="nu", - specials={ "font", 0x38 }, - unicodeslot=0x1D7F4, - visual="bf", + [0x1DAA4]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-5", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA4, }, - [0x1D7F5]={ - category="nd", - description="MATHEMATICAL SANS-SERIF BOLD DIGIT NINE", - direction="en", - linebreak="nu", - specials={ "font", 0x39 }, - unicodeslot=0x1D7F5, - visual="bf", + [0x1DAA5]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-6", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA5, }, - [0x1D7F6]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT ZERO", - direction="en", - linebreak="nu", - specials={ "font", 0x30 }, - unicodeslot=0x1D7F6, + [0x1DAA6]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-7", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA6, }, - [0x1D7F7]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT ONE", - direction="en", - linebreak="nu", - specials={ "font", 0x31 }, - unicodeslot=0x1D7F7, + [0x1DAA7]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-8", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA7, }, - [0x1D7F8]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT TWO", - direction="en", - linebreak="nu", - specials={ "font", 0x32 }, - unicodeslot=0x1D7F8, + [0x1DAA8]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-9", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA8, }, - [0x1D7F9]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT THREE", - direction="en", - linebreak="nu", - specials={ "font", 0x33 }, - unicodeslot=0x1D7F9, + [0x1DAA9]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-10", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAA9, }, - [0x1D7FA]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT FOUR", - direction="en", - linebreak="nu", - specials={ "font", 0x34 }, - unicodeslot=0x1D7FA, + [0x1DAAA]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-11", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAAA, }, - [0x1D7FB]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT FIVE", - direction="en", - linebreak="nu", - specials={ "font", 0x35 }, - unicodeslot=0x1D7FB, + [0x1DAAB]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-12", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAAB, }, - [0x1D7FC]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT SIX", - direction="en", - linebreak="nu", - specials={ "font", 0x36 }, - unicodeslot=0x1D7FC, + [0x1DAAC]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-13", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAAC, }, - [0x1D7FD]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT SEVEN", - direction="en", - linebreak="nu", - specials={ "font", 0x37 }, - unicodeslot=0x1D7FD, + [0x1DAAD]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-14", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAAD, }, - [0x1D7FE]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT EIGHT", - direction="en", - linebreak="nu", - specials={ "font", 0x38 }, - unicodeslot=0x1D7FE, + [0x1DAAE]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-15", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAAE, }, - [0x1D7FF]={ - category="nd", - description="MATHEMATICAL MONOSPACE DIGIT NINE", - direction="en", - linebreak="nu", - specials={ "font", 0x39 }, - unicodeslot=0x1D7FF, + [0x1DAAF]={ + category="mn", + description="SIGNWRITING ROTATION MODIFIER-16", + direction="nsm", + linebreak="cm", + unicodeslot=0x1DAAF, }, [0x1E800]={ category="lo", @@ -197713,6 +211073,10 @@ characters.data={ direction="l", linebreak="ai", unicodeslot=0x1F170, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, [0x1F171]={ category="so", @@ -197721,6 +211085,10 @@ characters.data={ direction="l", linebreak="ai", unicodeslot=0x1F171, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, [0x1F172]={ category="so", @@ -197825,6 +211193,10 @@ characters.data={ direction="l", linebreak="ai", unicodeslot=0x1F17E, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, [0x1F17F]={ category="so", @@ -198263,6 +211635,10 @@ characters.data={ linebreak="id", specials={ "square", 0x30B5 }, unicodeslot=0x1F202, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, [0x1F210]={ category="so", @@ -198631,6 +212007,10 @@ characters.data={ linebreak="id", specials={ "square", 0x6708 }, unicodeslot=0x1F237, + variants={ + [0xFE0E]="text style", + [0xFE0F]="emoji style", + }, }, [0x1F238]={ category="so", @@ -199073,6 +212453,27 @@ characters.data={ linebreak="id", unicodeslot=0x1F32C, }, + [0x1F32D]={ + category="so", + description="HOT DOG", + direction="on", + linebreak="id", + unicodeslot=0x1F32D, + }, + [0x1F32E]={ + category="so", + description="TACO", + direction="on", + linebreak="id", + unicodeslot=0x1F32E, + }, + [0x1F32F]={ + category="so", + description="BURRITO", + direction="on", + linebreak="id", + unicodeslot=0x1F32F, + }, [0x1F330]={ category="so", description="CHESTNUT", @@ -199619,6 +213020,20 @@ characters.data={ linebreak="id", unicodeslot=0x1F37D, }, + [0x1F37E]={ + category="so", + description="BOTTLE WITH POPPING CORK", + direction="on", + linebreak="id", + unicodeslot=0x1F37E, + }, + [0x1F37F]={ + category="so", + description="POPCORN", + direction="on", + linebreak="id", + unicodeslot=0x1F37F, + }, [0x1F380]={ category="so", description="RIBBON", @@ -200172,6 +213587,41 @@ characters.data={ linebreak="id", unicodeslot=0x1F3CE, }, + [0x1F3CF]={ + category="so", + description="CRICKET BAT AND BALL", + direction="on", + linebreak="id", + unicodeslot=0x1F3CF, + }, + [0x1F3D0]={ + category="so", + description="VOLLEYBALL", + direction="on", + linebreak="id", + unicodeslot=0x1F3D0, + }, + [0x1F3D1]={ + category="so", + description="FIELD HOCKEY STICK AND BALL", + direction="on", + linebreak="id", + unicodeslot=0x1F3D1, + }, + [0x1F3D2]={ + category="so", + description="ICE HOCKEY STICK AND PUCK", + direction="on", + linebreak="id", + unicodeslot=0x1F3D2, + }, + [0x1F3D3]={ + category="so", + description="TABLE TENNIS PADDLE AND BALL", + direction="on", + linebreak="id", + unicodeslot=0x1F3D3, + }, [0x1F3D4]={ category="so", description="SNOW CAPPED MOUNTAIN", @@ -200424,6 +213874,62 @@ characters.data={ linebreak="id", unicodeslot=0x1F3F7, }, + [0x1F3F8]={ + category="so", + description="BADMINTON RACQUET AND SHUTTLECOCK", + direction="on", + linebreak="id", + unicodeslot=0x1F3F8, + }, + [0x1F3F9]={ + category="so", + description="BOW AND ARROW", + direction="on", + linebreak="id", + unicodeslot=0x1F3F9, + }, + [0x1F3FA]={ + category="so", + description="AMPHORA", + direction="on", + linebreak="id", + unicodeslot=0x1F3FA, + }, + [0x1F3FB]={ + category="sk", + description="EMOJI MODIFIER FITZPATRICK TYPE-1-2", + direction="on", + linebreak="al", + unicodeslot=0x1F3FB, + }, + [0x1F3FC]={ + category="sk", + description="EMOJI MODIFIER FITZPATRICK TYPE-3", + direction="on", + linebreak="al", + unicodeslot=0x1F3FC, + }, + [0x1F3FD]={ + category="sk", + description="EMOJI MODIFIER FITZPATRICK TYPE-4", + direction="on", + linebreak="al", + unicodeslot=0x1F3FD, + }, + [0x1F3FE]={ + category="sk", + description="EMOJI MODIFIER FITZPATRICK TYPE-5", + direction="on", + linebreak="al", + unicodeslot=0x1F3FE, + }, + [0x1F3FF]={ + category="sk", + description="EMOJI MODIFIER FITZPATRICK TYPE-6", + direction="on", + linebreak="al", + unicodeslot=0x1F3FF, + }, [0x1F400]={ category="so", description="RAT", @@ -202209,6 +215715,13 @@ characters.data={ linebreak="id", unicodeslot=0x1F4FE, }, + [0x1F4FF]={ + category="so", + description="PRAYER BEADS", + direction="on", + linebreak="id", + unicodeslot=0x1F4FF, + }, [0x1F500]={ category="so", description="TWISTED RIGHTWARDS ARROWS", @@ -202734,6 +216247,41 @@ characters.data={ linebreak="id", unicodeslot=0x1F54A, }, + [0x1F54B]={ + category="so", + description="KAABA", + direction="on", + linebreak="id", + unicodeslot=0x1F54B, + }, + [0x1F54C]={ + category="so", + description="MOSQUE", + direction="on", + linebreak="id", + unicodeslot=0x1F54C, + }, + [0x1F54D]={ + category="so", + description="SYNAGOGUE", + direction="on", + linebreak="id", + unicodeslot=0x1F54D, + }, + [0x1F54E]={ + category="so", + description="MENORAH WITH NINE BRANCHES", + direction="on", + linebreak="id", + unicodeslot=0x1F54E, + }, + [0x1F54F]={ + category="so", + description="BOWL OF HYGIEIA", + direction="on", + linebreak="id", + unicodeslot=0x1F54F, + }, [0x1F550]={ category="so", description="CLOCK FACE ONE OCLOCK", @@ -204421,6 +217969,20 @@ characters.data={ linebreak="id", unicodeslot=0x1F642, }, + [0x1F643]={ + category="so", + description="UPSIDE-DOWN FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F643, + }, + [0x1F644]={ + category="so", + description="FACE WITH ROLLING EYES", + direction="on", + linebreak="id", + unicodeslot=0x1F644, + }, [0x1F645]={ category="so", description="FACE WITH NO GOOD GESTURE", @@ -205394,6 +218956,13 @@ characters.data={ linebreak="id", unicodeslot=0x1F6CF, }, + [0x1F6D0]={ + category="so", + description="PLACE OF WORSHIP", + direction="on", + linebreak="id", + unicodeslot=0x1F6D0, + }, [0x1F6E0]={ category="so", description="HAMMER AND WRENCH", @@ -207956,6 +221525,111 @@ characters.data={ linebreak="al", unicodeslot=0x1F8AD, }, + [0x1F910]={ + category="so", + description="ZIPPER-MOUTH FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F910, + }, + [0x1F911]={ + category="so", + description="MONEY-MOUTH FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F911, + }, + [0x1F912]={ + category="so", + description="FACE WITH THERMOMETER", + direction="on", + linebreak="id", + unicodeslot=0x1F912, + }, + [0x1F913]={ + category="so", + description="NERD FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F913, + }, + [0x1F914]={ + category="so", + description="THINKING FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F914, + }, + [0x1F915]={ + category="so", + description="FACE WITH HEAD-BANDAGE", + direction="on", + linebreak="id", + unicodeslot=0x1F915, + }, + [0x1F916]={ + category="so", + description="ROBOT FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F916, + }, + [0x1F917]={ + category="so", + description="HUGGING FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F917, + }, + [0x1F918]={ + category="so", + description="SIGN OF THE HORNS", + direction="on", + linebreak="id", + unicodeslot=0x1F918, + }, + [0x1F980]={ + category="so", + description="CRAB", + direction="on", + linebreak="id", + unicodeslot=0x1F980, + }, + [0x1F981]={ + category="so", + description="LION FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F981, + }, + [0x1F982]={ + category="so", + description="SCORPION", + direction="on", + linebreak="id", + unicodeslot=0x1F982, + }, + [0x1F983]={ + category="so", + description="TURKEY", + direction="on", + linebreak="id", + unicodeslot=0x1F983, + }, + [0x1F984]={ + category="so", + description="UNICORN FACE", + direction="on", + linebreak="id", + unicodeslot=0x1F984, + }, + [0x1F9C0]={ + category="so", + description="CHEESE WEDGE", + direction="on", + linebreak="id", + unicodeslot=0x1F9C0, + }, [0x2F800]={ category="lo", cjkwd="w", @@ -215433,4 +229107,4 @@ characters.data={ linebreak="cm", unicodeslot=0xE01EF, }, -} +} \ No newline at end of file diff --git a/tex/context/base/char-ini.lua b/tex/context/base/char-ini.lua index 136cbf705..095133b55 100644 --- a/tex/context/base/char-ini.lua +++ b/tex/context/base/char-ini.lua @@ -140,8 +140,10 @@ end) local blocks = allocate { ["aegeannumbers"] = { first = 0x10100, last = 0x1013F, description = "Aegean Numbers" }, + ["ahom"] = { first = 0x11700, last = 0x1173F, description = "Ahom" }, ["alchemicalsymbols"] = { first = 0x1F700, last = 0x1F77F, description = "Alchemical Symbols" }, ["alphabeticpresentationforms"] = { first = 0x0FB00, last = 0x0FB4F, otf="latn", description = "Alphabetic Presentation Forms" }, + ["anatolianhieroglyphs"] = { first = 0x14400, last = 0x1467F, description = "Anatolian Hieroglyphs" }, ["ancientgreekmusicalnotation"] = { first = 0x1D200, last = 0x1D24F, otf="grek", description = "Ancient Greek Musical Notation" }, ["ancientgreeknumbers"] = { first = 0x10140, last = 0x1018F, otf="grek", description = "Ancient Greek Numbers" }, ["ancientsymbols"] = { first = 0x10190, last = 0x101CF, otf="grek", description = "Ancient Symbols" }, @@ -175,6 +177,7 @@ local blocks = allocate { ["chakma"] = { first = 0x11100, last = 0x1114F, description = "Chakma" }, ["cham"] = { first = 0x0AA00, last = 0x0AA5F, description = "Cham" }, ["cherokee"] = { first = 0x013A0, last = 0x013FF, otf="cher", description = "Cherokee" }, + ["cherokeesupplement"] = { first = 0x0AB70, last = 0x0ABBF, description = "Cherokee Supplement" }, ["cjkcompatibility"] = { first = 0x03300, last = 0x033FF, otf="hang", description = "CJK Compatibility" }, ["cjkcompatibilityforms"] = { first = 0x0FE30, last = 0x0FE4F, otf="hang", description = "CJK Compatibility Forms" }, ["cjkcompatibilityideographs"] = { first = 0x0F900, last = 0x0FAFF, otf="hang", description = "CJK Compatibility Ideographs" }, @@ -187,6 +190,7 @@ local blocks = allocate { ["cjkunifiedideographsextensionb"] = { first = 0x20000, last = 0x2A6DF, otf="hang", description = "CJK Unified Ideographs Extension B" }, ["cjkunifiedideographsextensionc"] = { first = 0x2A700, last = 0x2B73F, description = "CJK Unified Ideographs Extension C" }, ["cjkunifiedideographsextensiond"] = { first = 0x2B740, last = 0x2B81F, description = "CJK Unified Ideographs Extension D" }, + ["cjkunifiedideographsextensione"] = { first = 0x2B820, last = 0x2CEAF, description = "CJK Unified Ideographs Extension E" }, ["combiningdiacriticalmarks"] = { first = 0x00300, last = 0x0036F, description = "Combining Diacritical Marks" }, ["combiningdiacriticalmarksextended"] = { first = 0x01AB0, last = 0x01AFF, description = "Combining Diacritical Marks Extended" }, ["combiningdiacriticalmarksforsymbols"] = { first = 0x020D0, last = 0x020FF, description = "Combining Diacritical Marks for Symbols" }, @@ -236,6 +240,7 @@ local blocks = allocate { ["dingbats"] = { first = 0x02700, last = 0x027BF, description = "Dingbats" }, ["dominotiles"] = { first = 0x1F030, last = 0x1F09F, description = "Domino Tiles" }, ["duployan"] = { first = 0x1BC00, last = 0x1BC9F, description = "Duployan" }, + ["earlydynasticcuneiform"] = { first = 0x12480, last = 0x1254F, description = "Early Dynastic Cuneiform" }, ["egyptianhieroglyphs"] = { first = 0x13000, last = 0x1342F, description = "Egyptian Hieroglyphs" }, ["elbasan"] = { first = 0x10500, last = 0x1052F, description = "Elbasan" }, ["emoticons"] = { first = 0x1F600, last = 0x1F64F, description = "Emoticons" }, @@ -248,8 +253,7 @@ local blocks = allocate { ["ethiopicextendeda"] = { first = 0x0AB00, last = 0x0AB2F, description = "Ethiopic Extended-A" }, ["ethiopicsupplement"] = { first = 0x01380, last = 0x0139F, otf="ethi", description = "Ethiopic Supplement" }, ["generalpunctuation"] = { first = 0x02000, last = 0x0206F, description = "General Punctuation" }, - ["geometricshapes"] = { first = 0x025A0, last = 0x025FF, description = "Geometric Shapes" }, - ["geometricshapes"] = { first = 0x025A0, last = 0x025FF, math = true }, + ["geometricshapes"] = { first = 0x025A0, last = 0x025FF, math = true, description = "Geometric Shapes" }, ["geometricshapesextended"] = { first = 0x1F780, last = 0x1F7FF, description = "Geometric Shapes Extended" }, ["georgian"] = { first = 0x010A0, last = 0x010FF, otf="geor", description = "Georgian" }, ["georgiansupplement"] = { first = 0x02D00, last = 0x02D2F, otf="geor", description = "Georgian Supplement" }, @@ -267,6 +271,7 @@ local blocks = allocate { ["hanguljamoextendedb"] = { first = 0x0D7B0, last = 0x0D7FF, description = "Hangul Jamo Extended-B" }, ["hangulsyllables"] = { first = 0x0AC00, last = 0x0D7AF, otf="hang", description = "Hangul Syllables" }, ["hanunoo"] = { first = 0x01720, last = 0x0173F, otf="hano", description = "Hanunoo" }, + ["hatran"] = { first = 0x108E0, last = 0x108FF, description = "Hatran" }, ["hebrew"] = { first = 0x00590, last = 0x005FF, otf="hebr", description = "Hebrew" }, ["highprivateusesurrogates"] = { first = 0x0DB80, last = 0x0DBFF, description = "High Private Use Surrogates" }, ["highsurrogates"] = { first = 0x0D800, last = 0x0DB7F, description = "High Surrogates" }, @@ -299,8 +304,7 @@ local blocks = allocate { ["latinextendede"] = { first = 0x0AB30, last = 0x0AB6F, description = "Latin Extended-E" }, ["latinsupplement"] = { first = 0x00080, last = 0x000FF, otf="latn", description = "Latin-1 Supplement" }, ["lepcha"] = { first = 0x01C00, last = 0x01C4F, description = "Lepcha" }, - ["letterlikesymbols"] = { first = 0x02100, last = 0x0214F, description = "Letterlike Symbols" }, - ["letterlikesymbols"] = { first = 0x02100, last = 0x0214F, math = true }, + ["letterlikesymbols"] = { first = 0x02100, last = 0x0214F, math = true, description = "Letterlike Symbols" }, ["limbu"] = { first = 0x01900, last = 0x0194F, otf="limb", description = "Limbu" }, ["lineara"] = { first = 0x10600, last = 0x1077F, description = "Linear A" }, ["linearbideograms"] = { first = 0x10080, last = 0x100FF, otf="linb", description = "Linear B Ideograms" }, @@ -352,6 +356,7 @@ local blocks = allocate { ["modifiertoneletters"] = { first = 0x0A700, last = 0x0A71F, description = "Modifier Tone Letters" }, ["mongolian"] = { first = 0x01800, last = 0x018AF, otf="mong", description = "Mongolian" }, ["mro"] = { first = 0x16A40, last = 0x16A6F, description = "Mro" }, + ["multani"] = { first = 0x11280, last = 0x112AF, description = "Multani" }, ["musicalsymbols"] = { first = 0x1D100, last = 0x1D1FF, otf="musc", description = "Musical Symbols" }, ["myanmar"] = { first = 0x01000, last = 0x0109F, otf="mymr", description = "Myanmar" }, ["myanmarextendeda"] = { first = 0x0AA60, last = 0x0AA7F, description = "Myanmar Extended-A" }, @@ -362,6 +367,7 @@ local blocks = allocate { ["numberforms"] = { first = 0x02150, last = 0x0218F, description = "Number Forms" }, ["ogham"] = { first = 0x01680, last = 0x0169F, otf="ogam", description = "Ogham" }, ["olchiki"] = { first = 0x01C50, last = 0x01C7F, description = "Ol Chiki" }, + ["oldhungarian"] = { first = 0x10C80, last = 0x10CFF, description = "Old Hungarian" }, ["olditalic"] = { first = 0x10300, last = 0x1032F, otf="ital", description = "Old Italic" }, ["oldnortharabian"] = { first = 0x10A80, last = 0x10A9F, description = "Old North Arabian" }, ["oldpermic"] = { first = 0x10350, last = 0x1037F, description = "Old Permic" }, @@ -406,8 +412,10 @@ local blocks = allocate { ["supplementalarrowsc"] = { first = 0x1F800, last = 0x1F8FF, math = true, description = "Supplemental Arrows-C" }, ["supplementalmathematicaloperators"] = { first = 0x02A00, last = 0x02AFF, math = true, description = "Supplemental Mathematical Operators" }, ["supplementalpunctuation"] = { first = 0x02E00, last = 0x02E7F, description = "Supplemental Punctuation" }, + ["supplementalsymbolsandpictographs"] = { first = 0x1F900, last = 0x1F9FF, description = "Supplemental Symbols and Pictographs" }, ["supplementaryprivateuseareaa"] = { first = 0xF0000, last = 0xFFFFF, description = "Supplementary Private Use Area-A" }, ["supplementaryprivateuseareab"] = { first = 0x100000,last = 0x10FFFF, description = "Supplementary Private Use Area-B" }, + ["suttonsignwriting"] = { first = 0x1D800, last = 0x1DAAF, description = "Sutton SignWriting" }, ["sylotinagri"] = { first = 0x0A800, last = 0x0A82F, otf="sylo", description = "Syloti Nagri" }, ["syriac"] = { first = 0x00700, last = 0x0074F, otf="syrc", description = "Syriac" }, ["tagalog"] = { first = 0x01700, last = 0x0171F, otf="tglg", description = "Tagalog" }, diff --git a/tex/context/base/cont-new.mkiv b/tex/context/base/cont-new.mkiv index 7e18ea207..8cd739503 100644 --- a/tex/context/base/cont-new.mkiv +++ b/tex/context/base/cont-new.mkiv @@ -11,7 +11,7 @@ %C therefore copyrighted by \PRAGMA. See mreadme.pdf for %C details. -\newcontextversion{2015.06.15 13:42} +\newcontextversion{2015.07.01 21:40} %D This file is loaded at runtime, thereby providing an excellent place for %D hacks, patches, extensions and new features. diff --git a/tex/context/base/context-version.pdf b/tex/context/base/context-version.pdf index 153a6475b..9a613cc88 100644 Binary files a/tex/context/base/context-version.pdf and b/tex/context/base/context-version.pdf differ diff --git a/tex/context/base/context.mkiv b/tex/context/base/context.mkiv index 6c8fc4559..2c3cc0eb0 100644 --- a/tex/context/base/context.mkiv +++ b/tex/context/base/context.mkiv @@ -39,7 +39,7 @@ %D up and the dependencies are more consistent. \edef\contextformat {\jobname} -\edef\contextversion{2015.06.15 13:42} +\edef\contextversion{2015.07.01 21:40} \edef\contextkind {beta} %D For those who want to use this: @@ -547,14 +547,14 @@ % now we hook in backend code (needs checking) +\loadmarkfile{back-exp} + \loadmarkfile{back-pdf} % actually, this one should load the next three using document.arguments.backend \loadmarkfile{mlib-pdf} \loadmarkfile{mlib-pps} \loadmarkfile{meta-pdf} \loadmarkfile{grph-epd} -\loadmarkfile{back-exp} - \loadmarkfile{cont-run} % the main runner (used in cont-yes.mkiv) \setupcurrentlanguage[\defaultlanguagetag] diff --git a/tex/context/base/font-agl.lua b/tex/context/base/font-agl.lua index 122d1adc2..e60a2be0c 100644 --- a/tex/context/base/font-agl.lua +++ b/tex/context/base/font-agl.lua @@ -15,6 +15,10 @@ local unicodes = allocate { -- filled from char-def.lua } +local ctxcodes = allocate { + -- filled from char-def.lua +} + local synonyms = { Acyrillic = 0x0410, Becyrillic = 0x0411, @@ -638,6 +642,11 @@ for u, c in next, characters.data do unicodes[a] = u names [u] = a end + local n = c.contextname + if n then + ctxcodes[n] = u + -- names [u] = a + end end for a, u in next, extras do @@ -657,11 +666,12 @@ end -- We load this table only when needed. We could use a loading mechanism -- return the table but there are no more vectors like this so why bother. -- --- Well, we currently hav ethis table preloaded anyway. +-- Well, we currently have this table preloaded anyway. local agl = { names = names, -- unicode -> name unicodes = unicodes, -- name -> unicode + ctxcodes = ctxcodes, -- name -> unicode synonyms = synonyms, -- merged into the other two extras = extras, -- merged into the other two } diff --git a/tex/context/base/font-cff.lua b/tex/context/base/font-cff.lua index 1de2b1117..c6707ff35 100644 --- a/tex/context/base/font-cff.lua +++ b/tex/context/base/font-cff.lua @@ -20,29 +20,34 @@ if not modules then modules = { } end modules ['font-cff'] = { -- per segment. For pdf a simple concat works ok, but for other purposes a operator first -- flush is nicer. -local next, type = next, type +local next, type, tonumber = next, type, tonumber local byte = string.byte local concat, remove = table.concat, table.remove local floor, abs, round, ceil = math.floor, math.abs, math.round, math.ceil local P, C, R, S, C, Cs, Ct = lpeg.P, lpeg.C, lpeg.R, lpeg.S, lpeg.C, lpeg.Cs, lpeg.Ct local lpegmatch = lpeg.match -local files = utilities.files +local readers = fonts.handlers.otf.readers +local streamreader = readers.streamreader -local readbytes = files.readbytes -local readstring = files.readstring -local readbyte = files.readcardinal1 -- 8-bit unsigned integer -local readushort = files.readcardinal2 -- 16-bit unsigned integer -local readuint = files.readcardinal3 -- 24-bit unsigned integer -local readulong = files.readcardinal4 -- 24-bit unsigned integer +local readbytes = streamreader.readbytes +local readstring = streamreader.readstring +local readbyte = streamreader.readcardinal1 -- 8-bit unsigned integer +local readushort = streamreader.readcardinal2 -- 16-bit unsigned integer +local readuint = streamreader.readcardinal3 -- 24-bit unsigned integer +local readulong = streamreader.readcardinal4 -- 24-bit unsigned integer +local setposition = streamreader.setposition +local getposition = streamreader.getposition local setmetatableindex = table.setmetatableindex local trace_charstrings = false trackers.register("fonts.cff.charstrings",function(v) trace_charstrings = v end) local report = logs.reporter("otf reader","cff") -local parsetopdictionary +local parsedictionaries +local parsecharstring local parsecharstrings +local resetcharstrings local parseprivates local defaultstrings = { [0] = -- hijacked from ff @@ -123,14 +128,15 @@ local cffreaders = { -- The header contains information about its own size. local function readheader(f) + local offset = getposition(f) local header = { - offset = f:seek("cur"), + offset = offset, major = readbyte(f), minor = readbyte(f), size = readbyte(f), -- headersize osize = readbyte(f), -- for offsets to start } - f:seek("set",header.offset+header.size) + setposition(f,offset+header.size) return header end @@ -495,8 +501,7 @@ do + p_unsupported )^1 - parsetopdictionary = function(data) - local dictionaries = data.dictionaries + parsedictionaries = function(data,dictionaries) stack = { } strings = data.strings for i=1,#dictionaries do @@ -523,18 +528,18 @@ do lpegmatch(p_dictionary,dictionaries[i]) dictionaries[i] = result end + -- result = { } top = 0 stack = { } end - parseprivates = function(data) - local dictionaries = data.dictionaries + parseprivates = function(data,dictionaries) stack = { } strings = data.strings for i=1,#dictionaries do local private = dictionaries[i].private - if private.data then + if private and private.data then top = 0 result = { forcebold = false, @@ -580,6 +585,12 @@ do local globals = false local locals = false local depth = 1 + local xmin = 0 + local xmax = 0 + local ymin = 0 + local ymax = 0 + local checked = false + local keepcurve = false local function showstate(where) report("%w%-10s : [%s] n=%i",depth*2,where,concat(stack," ",1,top),top) @@ -593,6 +604,65 @@ do end end + -- All these indirect calls makt this run slower but it's cleaner this way + -- and we cache the result. As we moved the boundingbox code inline we gain + -- some back. + + local function moveto(x,y) + if keepcurve then + r = r + 1 + result[r] = { x, y, "m" } + end + if checked then + if x < xmin then xmin = x elseif x > xmax then xmax = x end + if y < ymin then ymin = y elseif y > ymax then ymax = y end + else + xmin = x + ymin = y + xmax = x + ymax = y + checked = true + end + end + + local function lineto(x,y) + if keepcurve then + r = r + 1 + result[r] = { x, y, "l" } + end + if checked then + if x < xmin then xmin = x elseif x > xmax then xmax = x end + if y < ymin then ymin = y elseif y > ymax then ymax = y end + else + xmin = x + ymin = y + xmax = x + ymax = y + checked = true + end + end + + local function curveto(x1,y1,x2,y2,x3,y3) + if keepcurve then + r = r + 1 + result[r] = { x1, y1, x2, y2, x3, y3, "c" } + end + if checked then + if x1 < xmin then xmin = x1 elseif x1 > xmax then xmax = x1 end + if y1 < ymin then ymin = y1 elseif y1 > ymax then ymax = y1 end + else + xmin = x1 + ymin = y1 + xmax = x1 + ymax = y1 + checked = true + end + if x2 < xmin then xmin = x2 elseif x2 > xmax then xmax = x2 end + if y2 < ymin then ymin = y2 elseif y2 > ymax then ymax = y2 end + if x3 < xmin then xmin = x3 elseif x3 > xmax then xmax = x3 end + if y3 < ymin then ymin = y3 elseif y3 > ymax then ymax = y3 end + end + local function rmoveto() if top > 2 then if not width then @@ -611,8 +681,7 @@ do x = x + stack[top-1] -- dx1 y = y + stack[top] -- dy1 top = 0 - r = r + 1 - result[r] = { x, y, "m" } -- "moveto" + moveto(x,y) end local function hmoveto() @@ -632,8 +701,7 @@ do end x = x + stack[top] -- dx1 top = 0 - r = r + 1 - result[r] = { x, y, "m" } -- "moveto" + moveto(x,y) end local function vmoveto() @@ -653,8 +721,7 @@ do end y = y + stack[top] -- dy1 top = 0 - r = r + 1 - result[r] = { x, y, "m" } -- "moveto" + moveto(x,y) end local function rlineto() @@ -664,8 +731,7 @@ do for i=1,top,2 do x = x + stack[i] -- dxa y = y + stack[i+1] -- dya - r = r + 1 - result[r] = { x, y, "l" } -- "lineto" + lineto(x,y) end top = 0 end @@ -679,8 +745,7 @@ do y = y + stack[i] swap = true end - r = r + 1 - result[r] = { x, y, "l" } -- "lineto" + lineto(x,y) end top = 0 end @@ -710,8 +775,7 @@ do local by = ay + stack[i+3] -- dyb x = bx + stack[i+4] -- dxc y = by + stack[i+5] -- dyc - r = r + 1 - result[r] = { ax, ay, bx, by, x, y, "c" } -- "curveto" + curveto(ax,ay,bx,by,x,y) end top = 0 end @@ -732,8 +796,7 @@ do local by = ay + stack[i+2] -- dyb x = bx + stack[i+3] -- dxc y = by - r = r + 1 - result[r] = { ax, ay, bx, by, x, y, "c" } -- "curveto" + curveto(ax,ay,bx,by,x,y) end top = 0 end @@ -755,8 +818,7 @@ do local by = ay + stack[i+2] -- dyb x = bx y = by + stack[i+3] -- dyc - r = r + 1 - result[r] = { ax, ay, bx, by, x, y, "c" } -- "curveto" + curveto(ax,ay,bx,by,x,y) d = 0 end top = 0 @@ -795,8 +857,7 @@ do end swap = true end - r = r + 1 - result[r] = { ax, ay, bx, by, x, y, "c" } -- "curveto" + curveto(ax,ay,bx,by,x,y) end top = 0 end @@ -826,13 +887,11 @@ do local by = ay + stack[i+3] -- dyb x = bx + stack[i+4] -- dxc y = by + stack[i+5] -- dyc - r = r + 1 - result[r] = { ax, ay, bx, by, x, y, "c" } -- "curveto" + curveto(ax,ay,bx,by,x,y) end x = x + stack[top-1] -- dxc y = y + stack[top] -- dyc - r = r + 1 - result[r] = { x, y, "l" } -- "lineto" + lineto(x,y) top = 0 end @@ -844,41 +903,39 @@ do for i=1,top-6,2 do x = x + stack[i] y = y + stack[i+1] - r = r + 1 - result[r] = { x, y, "l" } -- "lineto" + lineto(x,y) end end local ax = x + stack[top-5] local ay = y + stack[top-4] local bx = ax + stack[top-3] local by = ay + stack[top-2] - x = bx + stack[top-1] - y = by + stack[top] - r = r + 1 - result[r] = { ax, ay, bx, by, x, y, "c" } -- "curveto" + x = bx + stack[top-1] + y = by + stack[top] + curveto(ax,ay,bx,by,x,y) top = 0 end + -- flex is not yet tested! no loop + local function flex() -- fd not used if trace_charstrings then showstate("flex") end - local ax = x + stack[i] -- dx1 - local ay = y + stack[i+1] -- dy1 - local bx = ax + stack[i+2] -- dx2 - local by = ay + stack[i+3] -- dy2 - local cx = bx + stack[i+4] -- dx3 - local cy = by + stack[i+5] -- dy3 - r = r + 1 - result[r] = { ax, ay, bx, by, cx, cy, "c" } -- "curveto" - local dx = cx + stack[i+6] -- dx4 - local dy = cy + stack[i+7] -- dy4 - local ex = dx + stack[i+8] -- dx5 - local ey = dy + stack[i+9] -- dy5 - x = ex + stack[i+10] -- dx6 - y = ey + stack[i+11] -- dy6 - r = r + 1 - result[r] = { dx, dy, ex, ey, x, y, "c" } -- "curveto" + local ax = x + stack[1] -- dx1 + local ay = y + stack[2] -- dy1 + local bx = ax + stack[3] -- dx2 + local by = ay + stack[4] -- dy2 + local cx = bx + stack[5] -- dx3 + local cy = by + stack[6] -- dy3 + curveto(ax,ay,bx,by,cx,cy) + local dx = cx + stack[7] -- dx4 + local dy = cy + stack[8] -- dy4 + local ex = dx + stack[9] -- dx5 + local ey = dy + stack[10] -- dy5 + x = ex + stack[11] -- dx6 + y = ey + stack[12] -- dy6 + curveto(dx,dy,ex,ey,x,y) top = 0 end @@ -886,21 +943,19 @@ do if trace_charstrings then showstate("hflex") end - local ax = x + stack[i ] -- dx1 + local ax = x + stack[1] -- dx1 local ay = y - local bx = ax + stack[i+1] -- dx2 - local by = ay + stack[i+2] -- dy2 - local cx = bx + stack[i+3] -- dx3 + local bx = ax + stack[2] -- dx2 + local by = ay + stack[3] -- dy2 + local cx = bx + stack[4] -- dx3 local cy = by - r = r + 1 - result[r] = { ax, ay, bx, by, cx, cy, "c" } -- "curveto" - local dx = cx + stack[i+4] -- dx4 + curveto(ax,ay,bx,by,cx,cy) + local dx = cx + stack[5] -- dx4 local dy = by - local ex = dx + stack[i+5] -- dx5 + local ex = dx + stack[6] -- dx5 local ey = y - x = ex + stack[i+6] -- dx6 - r = r + 1 - result[r] = { dx, dy, ex, ey, x, y, "c" } -- "curveto" + x = ex + stack[7] -- dx6 + curveto(dx,dy,ex,ey,x,y) top = 0 end @@ -908,21 +963,19 @@ do if trace_charstrings then showstate("hflex1") end - local ax = x + stack[i ] -- dx1 - local ay = y + stack[i+1] -- dy1 - local bx = ax + stack[i+2] -- dx2 - local by = ay + stack[i+3] -- dy2 - local cx = bx + stack[i+4] -- dx3 + local ax = x + stack[1] -- dx1 + local ay = y + stack[2] -- dy1 + local bx = ax + stack[3] -- dx2 + local by = ay + stack[4] -- dy2 + local cx = bx + stack[5] -- dx3 local cy = by - r = r + 1 - result[r] = { ax, ay, bx, by, cx, cy, "c" } -- "curveto" - local dx = cx + stack[i+5] -- dx4 + curveto(ax,ay,bx,by,cx,cy) + local dx = cx + stack[6] -- dx4 local dy = by - local ex = dx + stack[i+7] -- dx5 - local ey = dy + stack[i+8] -- dy5 - x = ex + stack[i+9] -- dx6 - r = r + 1 - result[r] = { dx, dy, dx, dy, x, y, "c" } -- "curveto" + local ex = dx + stack[7] -- dx5 + local ey = dy + stack[8] -- dy5 + x = ex + stack[9] -- dx6 + curveto(dx,dy,ex,ey,x,y) top = 0 end @@ -930,39 +983,39 @@ do if trace_charstrings then showstate("flex1") end - local ax = x + stack[i ] --dx1 - local ay = y + stack[i+1] --dy1 - local bx = ax + stack[i+2] --dx2 - local by = ay + stack[i+3] --dy2 - local cx = bx + stack[i+4] --dx3 - local cy = by + stack[i+5] --dy3 - r = r + 1 - result[r] = { ax, ay, bx, by, cx, cy, "c" } -- "curveto" - local dx = cx + stack[i+6] --dx4 - local dy = cy + stack[i+7] --dy4 - local ex = dx + stack[i+8] --dx5 - local ey = dy + stack[i+9] --dy5 + local ax = x + stack[1] --dx1 + local ay = y + stack[2] --dy1 + local bx = ax + stack[3] --dx2 + local by = ay + stack[4] --dy2 + local cx = bx + stack[5] --dx3 + local cy = by + stack[6] --dy3 + curveto(ax,ay,bx,by,cx,cy) + local dx = cx + stack[7] --dx4 + local dy = cy + stack[8] --dy4 + local ex = dx + stack[9] --dx5 + local ey = dy + stack[10] --dy5 if abs(ex - x) > abs(ey - y) then -- spec: abs(dx) > abs(dy) - x = ex + stack[i+10] + x = ex + stack[11] else - y = ey + stack[i+10] + y = ey + stack[11] end - r = r + 1 - result[r] = { dx, dy, dx, dy, x, y, "c" } -- "curveto" + curveto(dx,dy,ex,ey,x,y) top = 0 end local function getstem() - if top % 2 ~= 0 then + if top == 0 then + -- bad + elseif top % 2 ~= 0 then if width then remove(stack,1) else width = remove(stack,1) + if trace_charstrings then + showvalue("width",width) + end end top = top - 1 - if trace_charstrings then - showvalue("width",width) - end end if trace_charstrings then showstate("stem") @@ -972,23 +1025,27 @@ do end local function getmask() - if top % 2 ~= 0 then + if top == 0 then + -- bad + elseif top % 2 ~= 0 then if width then remove(stack,1) else width = remove(stack,1) + if trace_charstrings then + showvalue("width",width) + end end top = top - 1 - if trace_charstrings then - showvalue("width",width) - end end if trace_charstrings then showstate(operator == 19 and "hintmark" or "cntrmask") end stems = stems + top/2 top = 0 - if stems <= 8 then + if stems == 0 then + -- forget about it + elseif stems <= 8 then return 1 else return floor((stems+7)/8) @@ -1069,8 +1126,8 @@ do end end - local function process(tab) -- I should profile this and optimize the order - local i = 1 -- which is something for a cold dark evening. + local function process(tab) + local i = 1 local n = #tab while i <= n do local t = tab[i] @@ -1108,20 +1165,15 @@ do stack[top] = n + (0x100 * tab[i+3] + tab[i+4])/0xFFFF end i = i + 5 - elseif t == 12 then - i = i + 1 - local t = tab[i] - local a = subactions[t] - if a then - a() - else - if trace_charstrings then - showvalue("",t) - end - top = 0 + elseif t == 11 then + if trace_charstrings then + showstate("return") end + return + elseif t == 10 then + call("local",locals,localbias,process) i = i + 1 - elseif t == 14 then -- endchar + elseif t == 14 then -- endchar if width then -- okay elseif top > 0 then @@ -1136,17 +1188,22 @@ do showstate("endchar") end return - elseif t == 11 then - if trace_charstrings then - showstate("return") - end - return - elseif t == 10 then - call("local",locals,localbias,process) - i = i + 1 elseif t == 29 then call("global",globals,globalbias,process) i = i + 1 + elseif t == 12 then + i = i + 1 + local t = tab[i] + local a = subactions[t] + if a then + a() + else + if trace_charstrings then + showvalue("",t) + end + top = 0 + end + i = i + 1 else local a = actions[t] if a then @@ -1165,49 +1222,50 @@ do end end - local function calculatebounds(segments,x,y) - local nofsegments = #segments - if nofsegments == 0 then - return { x, y, x, y } - else - local xmin = 10000 - local xmax = -10000 - local ymin = 10000 - local ymax = -10000 - if x < xmin then xmin = x end - if x > xmax then xmax = x end - if y < ymin then ymin = y end - if y > ymax then ymax = y end - -- we now have a reasonable start so we could - -- simplyfy the next checks - for i=1,nofsegments do - local s = segments[i] - local x = s[1] - local y = s[2] - if x < xmin then xmin = x end - if x > xmax then xmax = x end - if y < ymin then ymin = y end - if y > ymax then ymax = y end - if s[#s] == "c" then -- "curveto" - local x = s[3] - local y = s[4] - if x < xmin then xmin = x elseif x > xmax then xmax = x end - if y < ymin then ymin = y elseif y > ymax then ymax = y end - local x = s[5] - local y = s[6] - if x < xmin then xmin = x elseif x > xmax then xmax = x end - if y < ymin then ymin = y elseif y > ymax then ymax = y end - end - end - return { round(xmin), round(ymin), round(xmax), round(ymax) } -- doesn't make ceil more sense - end - end + -- local function calculatebounds(segments,x,y) + -- local nofsegments = #segments + -- if nofsegments == 0 then + -- return { x, y, x, y } + -- else + -- local xmin = 10000 + -- local xmax = -10000 + -- local ymin = 10000 + -- local ymax = -10000 + -- if x < xmin then xmin = x end + -- if x > xmax then xmax = x end + -- if y < ymin then ymin = y end + -- if y > ymax then ymax = y end + -- -- we now have a reasonable start so we could + -- -- simplyfy the next checks + -- for i=1,nofsegments do + -- local s = segments[i] + -- local x = s[1] + -- local y = s[2] + -- if x < xmin then xmin = x end + -- if x > xmax then xmax = x end + -- if y < ymin then ymin = y end + -- if y > ymax then ymax = y end + -- if s[#s] == "c" then -- "curveto" + -- local x = s[3] + -- local y = s[4] + -- if x < xmin then xmin = x elseif x > xmax then xmax = x end + -- if y < ymin then ymin = y elseif y > ymax then ymax = y end + -- local x = s[5] + -- local y = s[6] + -- if x < xmin then xmin = x elseif x > xmax then xmax = x end + -- if y < ymin then ymin = y elseif y > ymax then ymax = y end + -- end + -- end + -- return { round(xmin), round(ymin), round(xmax), round(ymax) } -- doesn't make ceil more sense + -- end + -- end parsecharstrings = function(data,glyphs,doshapes) -- for all charstrings local dictionary = data.dictionaries[1] - local charstrings = data.charstrings - local charset = data.charset + local charstrings = dictionary.charstrings + local charset = dictionary.charset + keepcurve = doshapes stack = { } glyphs = glyphs or { } strings = data.strings @@ -1224,13 +1282,20 @@ do local str = charstrings[i] local tab = lpegmatch(p_bytes,str) local index = i - 1 - x = 0 - y = 0 - width = false - r = 0 - top = 0 - stems = 0 - result = { } + x = 0 + y = 0 + width = false + r = 0 + top = 0 + stems = 0 + result = { } + -- + xmin = 0 + xmax = 0 + ymin = 0 + ymax = 0 + checked = false + -- if trace_charstrings then report("glyph: %i",index) report("data: % t",tab) @@ -1238,7 +1303,7 @@ do -- process(tab) -- - local boundingbox = calculatebounds(result,x,y) + local boundingbox = { xmin, ymin, xmax, ymax } -- if width == true or width == false then width = defaultwidth @@ -1272,10 +1337,85 @@ do end charstrings[i] = nil -- free memory end + return glyphs + end + + parsecharstring = function(data,dictionary,charstring,glyphs,index,doshapes) + local private = dictionary.private + keepcurve = doshapes + strings = data.strings -- or in dict? + locals = dictionary.subroutines or { } + globals = data.routines or { } + globalbias = #globals + localbias = #locals + globalbias = ((globalbias < 1240 and 107) or (globalbias < 33900 and 1131) or 32768) + 1 + localbias = ((localbias < 1240 and 107) or (localbias < 33900 and 1131) or 32768) + 1 + local nominalwidth = private and private.data.nominalwidthx or 0 + local defaultwidth = private and private.data.defaultwidthx or 0 + -- + local tab = lpegmatch(p_bytes,charstring) + x = 0 + y = 0 + width = false + r = 0 + top = 0 + stems = 0 + result = { } + -- + xmin = 0 + xmax = 0 + ymin = 0 + ymax = 0 + checked = false + -- + if trace_charstrings then + report("glyph: %i",index) + report("data: % t",tab) + end + -- + process(tab) + -- + local boundingbox = { xmin, ymin, xmax, ymax } + -- + if width == true or width == false then + width = defaultwidth + else + width = nominalwidth + width + end + -- + local glyph = glyphs[index] -- can be autodefined in otr + if not glyph then + glyphs[index] = { + segments = doshapes ~= false and result or nil, -- optional + boundingbox = boundingbox, + width = width, + name = charset[index], + -- sidebearing = 0, + } + else + glyph.segments = doshapes ~= false and result or nil + glyph.boundingbox = boundingbox + if not glyph.width then + glyph.width = width + end + if charset and not glyph.name then + glyph.name = charset[index] + end + -- glyph.sidebearing = 0 -- todo + end + -- + if trace_charstrings then + report("width: %s",tostring(width)) + report("boundingbox: % t",boundingbox) + end + -- + return charstring + end + + resetcharstrings = function() result = { } top = 0 stack = { } - return glyphs end end @@ -1292,54 +1432,69 @@ local function readencodings(f,data) data.encodings = { } end -local function readcharsets(f,data) - local header = data.header - local dictionaries = data.dictionaries - local strings = data.strings - f:seek("set",header.offset+dictionaries[1].charset) - local format = readbyte(f) - if format == 0 then - local charset = { [0] = ".notdef" } - for i=1,data.nofglyphs do - charset[i] = strings[readushort(f)] - end - data.charset = charset - elseif format == 1 then - report("cff parser: todo charset format %a",format) - elseif format == 2 then - report("cff parser: todo charset format %a",format) - else - report("cff parser: unsupported charset format %a",format) +local function readcharsets(f,data,dictionary) + local header = data.header + local strings = data.strings + local nofglyphs = data.nofglyphs + local charsetoffset = dictionary.charset + + if charsetoffset ~= 0 then + setposition(f,header.offset+charsetoffset) + local format = readbyte(f) + local charset = { [0] = ".notdef" } + dictionary.charset = charset + if format == 0 then + for i=1,nofglyphs do + charset[i] = strings[readushort(f)] + end + elseif format == 1 or format == 2 then + local readcount = format == 1 and readbyte or readushort + local i = 0 + while i<= nofglyphs do + local sid = readushort(f) + local n = readcount(f) + for s=sid,sid+n do + charset[i] = strings[s] + i = i + 1 + if i > nofglyphs then + break + end + end + end + else + report("cff parser: unsupported charset format %a",format) + end end end -local function readfdselect(f,data) -end - local function readprivates(f,data) local header = data.header local dictionaries = data.dictionaries local private = dictionaries[1].private if private then - f:seek("set",header.offset+private.offset) + setposition(f,header.offset+private.offset) private.data = readstring(f,private.size) end end -local function readlocals(f,data) - -- todo: make them local indeed - local header = data.header - local dictionaries = data.dictionaries - local dictionary = dictionaries[1] - local private = dictionary.private +local function readlocals(f,data,dictionary) + local header = data.header + local private = dictionary.private if private then - f:seek("set",header.offset+private.offset+private.data.subroutines) - local subroutines = readlengths(f) - for i=1,#subroutines do - subroutines[i] = readstring(f,subroutines[i]) + local subroutineoffset = private.data.subroutines + if subroutineoffset ~= 0 then + setposition(f,header.offset+private.offset+subroutineoffset) + local subroutines = readlengths(f) + for i=1,#subroutines do + subroutines[i] = readstring(f,subroutines[i]) + end + dictionary.subroutines = subroutines + private.data.subroutines = nil + else + dictionary.subroutines = { } end - dictionary.subroutines = subroutines - private.data.subroutines = nil + else + dictionary.subroutines = { } end end @@ -1351,24 +1506,120 @@ local function readcharstrings(f,data) local dictionaries = data.dictionaries local dictionary = dictionaries[1] local type = dictionary.charstringtype + local offset = dictionary.charstrings if type == 2 then - f:seek("set",header.offset+dictionary.charstrings) + setposition(f,header.offset+offset) -- could be a metatable .. delayed loading local charstrings = readlengths(f) local nofglyphs = #charstrings for i=1,nofglyphs do charstrings[i] = readstring(f,charstrings[i]) end - data.nofglyphs = nofglyphs - data.charstrings = charstrings + data.nofglyphs = nofglyphs + dictionary.charstrings = charstrings else report("unsupported charstr type %i",type) - data.nofglyphs = 0 - data.charstrings = { } + data.nofglyphs = 0 + dictionary.charstrings = { } + end +end + +-- cid (maybe do this stepwise so less mem) -- share with above + +local function readcidprivates(f,data) + local header = data.header + local dictionaries = data.dictionaries[1].cid.dictionaries + for i=1,#dictionaries do + local dictionary = dictionaries[i] + local private = dictionary.private + if private then + setposition(f,header.offset+private.offset) + private.data = readstring(f,private.size) + end + end + parseprivates(data,dictionaries) +end + +local function readnoselect(f,data,glyphs,doshapes) + local dictionaries = data.dictionaries + local dictionary = dictionaries[1] + readglobals(f,data) + readcharstrings(f,data) + readencodings(f,data) + readcharsets(f,data,dictionary) + readprivates(f,data) + parseprivates(data,data.dictionaries) + readlocals(f,data,dictionary) + parsecharstrings(data,glyphs,doshapes) + resetcharstrings() +end + +local function readfdselect(f,data,glyphs,doshapes) + local header = data.header + local dictionaries = data.dictionaries + local dictionary = dictionaries[1] + local cid = dictionary.cid + local cidselect = cid and cid.fdselect + readglobals(f,data) + readcharstrings(f,data) + readencodings(f,data) + local charstrings = dictionary.charstrings + local fdindex = { } + local nofglyphs = data.nofglyphs + local maxindex = -1 + setposition(f,header.offset+cidselect) + local format = readbyte(f) + if format == 1 then + for i=0,nofglyphs do -- notdef included (needs checking) + local index = readbyte(i) + fdindex[i] = index + if index > maxindex then + maxindex = index + end + end + elseif format == 3 then + local nofranges = readushort(f) + local first = readushort(f) + local index = readbyte(f) + while true do + local last = readushort(f) + if index > maxindex then + maxindex = index + end + for i=first,last do + fdindex[i] = index + end + if last >= nofglyphs then + break + else + first = last + 1 + index = readbyte(f) + end + end + else + -- unsupported format + end + if maxindex >= 0 then + local cidarray = cid.fdarray + setposition(f,header.offset+cidarray) + local dictionaries = readlengths(f) + for i=1,#dictionaries do + dictionaries[i] = readstring(f,dictionaries[i]) + end + parsedictionaries(data,dictionaries) + cid.dictionaries = dictionaries + readcidprivates(f,data) + for i=1,#dictionaries do + readlocals(f,data,dictionaries[i]) + end + for i=1,#charstrings do + parsecharstring(data,dictionaries[fdindex[i]+1],charstrings[i],glyphs,i,doshapes) + end + resetcharstrings() end end -function fonts.handlers.otf.readers.cff(f,fontdata,specification) +function readers.cff(f,fontdata,specification) -- if specification.glyphs then if specification.details then local datatable = fontdata.tables.cff @@ -1380,7 +1631,7 @@ function fonts.handlers.otf.readers.cff(f,fontdata,specification) return end if offset then - f:seek("set",offset) + setposition(f,offset) end local header = readheader(f) if header.major > 1 then @@ -1395,11 +1646,13 @@ function fonts.handlers.otf.readers.cff(f,fontdata,specification) names = names, dictionaries = dictionaries, strings = strings, + nofglyphs = fontdata.nofglyphs, } -- - parsetopdictionary(data) + parsedictionaries(data,data.dictionaries) -- local d = dictionaries[1] + local c = d.cid fontdata.cffinfo = { familynamename = d.familyname, fullname = d.fullname, @@ -1410,19 +1663,21 @@ function fonts.handlers.otf.readers.cff(f,fontdata,specification) underlinethickness = d.underlinethickness, monospaced = d.monospaced, } + fontdata.cidinfo = c and { + registry = c.registry, + ordering = c.ordering, + supplement = c.supplement, + } -- - if specification.glyphs then - readglobals(f,data) - readcharstrings(f,data) - readencodings(f,data) - readcharsets(f,data) - readfdselect(f,data) - -- - readprivates(f,data) - parseprivates(data) - readlocals(f,data) - -- - parsecharstrings(data,glyphs,specification.shapes or false) + if not specification.glyphs then + -- we only want some metadata + else + local cid = d.cid + if cid and cid.fdselect then + readfdselect(f,data,glyphs,specification.shapes or false) + else + readnoselect(f,data,glyphs,specification.shapes or false) + end end -- -- cleanup (probably more can go) diff --git a/tex/context/base/font-inj.lua b/tex/context/base/font-inj.lua index 332e92033..783d67425 100644 --- a/tex/context/base/font-inj.lua +++ b/tex/context/base/font-inj.lua @@ -285,7 +285,7 @@ function injections.setkern(current,factor,rlmode,x,injection) end end -function injections.setmark(start,base,factor,rlmode,ba,ma,tfmbase) -- ba=baseanchor, ma=markanchor +function injections.setmark(start,base,factor,rlmode,ba,ma,tfmbase,mkmk) -- ba=baseanchor, ma=markanchor local dx, dy = factor*(ba[1]-ma[1]), factor*(ba[2]-ma[2]) nofregisteredmarks = nofregisteredmarks + 1 -- markanchors[nofregisteredmarks] = base @@ -293,14 +293,20 @@ function injections.setmark(start,base,factor,rlmode,ba,ma,tfmbase) -- ba=basean dx = tfmbase.width - dx -- see later commented ox end local p = rawget(properties,start) + -- hm, dejavu serif does a sloppy mark2mark before mark2base if p then local i = rawget(p,"injections") if i then +if i.markmark then + -- out of order mkmk: yes or no or option +else i.markx = dx i.marky = dy i.markdir = rlmode or 0 i.markbase = nofregisteredmarks i.markbasenode = base + i.markmark = mkmk +end else p.injections = { markx = dx, @@ -308,6 +314,7 @@ function injections.setmark(start,base,factor,rlmode,ba,ma,tfmbase) -- ba=basean markdir = rlmode or 0, markbase = nofregisteredmarks, markbasenode = base, + markmark = mkmk, } end else @@ -318,6 +325,7 @@ function injections.setmark(start,base,factor,rlmode,ba,ma,tfmbase) -- ba=basean markdir = rlmode or 0, markbase = nofregisteredmarks, markbasenode = base, + markmark = mkmk, }, } end @@ -548,12 +556,13 @@ local function inject_marks(marks,nofmarks) setfield(n,"xoffset",ox) -- local py = getfield(p,"yoffset") - local oy = 0 - if marks[p] then - oy = py + pn.marky - else - oy = getfield(n,"yoffset") + py + pn.marky - end +-- local oy = 0 +-- if marks[p] then +-- oy = py + pn.marky +-- else +-- oy = getfield(n,"yoffset") + py + pn.marky +-- end + local oy = getfield(n,"yoffset") + py + pn.marky setfield(n,"yoffset",oy) else -- normally this can't happen (only when in trace mode which is a special case anyway) diff --git a/tex/context/base/font-lib.mkvi b/tex/context/base/font-lib.mkvi index b1050f7f5..9478db71b 100644 --- a/tex/context/base/font-lib.mkvi +++ b/tex/context/base/font-lib.mkvi @@ -61,6 +61,7 @@ \registerctxluafile{font-otp}{1.001} % otf pack \registerctxluafile{font-otc}{1.001} % otf context \registerctxluafile{font-oth}{1.001} % otf helpers +\registerctxluafile{font-otl}{1.001} % otf new node mode \registerctxluafile{font-odv}{1.001} % otf devanagari (experimental) diff --git a/tex/context/base/font-map.lua b/tex/context/base/font-map.lua index 69474baf2..b645d9aef 100644 --- a/tex/context/base/font-map.lua +++ b/tex/context/base/font-map.lua @@ -31,25 +31,27 @@ of obsolete. Some code may move to runtime or auxiliary modules.

The name to unciode related code will stay of course.

--ldx]]-- -local function loadlumtable(filename) -- will move to font goodies - local lumname = file.replacesuffix(file.basename(filename),"lum") - local lumfile = resolvers.findfile(lumname,"map") or "" - if lumfile ~= "" and lfs.isfile(lumfile) then - if trace_loading or trace_mapping then - report_fonts("loading map table %a",lumfile) - end - lumunic = dofile(lumfile) - return lumunic, lumfile - end -end +-- local function loadlumtable(filename) -- will move to font goodies +-- local lumname = file.replacesuffix(file.basename(filename),"lum") +-- local lumfile = resolvers.findfile(lumname,"map") or "" +-- if lumfile ~= "" and lfs.isfile(lumfile) then +-- if trace_loading or trace_mapping then +-- report_fonts("loading map table %a",lumfile) +-- end +-- lumunic = dofile(lumfile) +-- return lumunic, lumfile +-- end +-- end local hex = R("AF","09") -local hexfour = (hex*hex*hex*hex) / function(s) return tonumber(s,16) end -local hexsix = (hex*hex*hex*hex*hex*hex) / function(s) return tonumber(s,16) end +----- hexfour = (hex*hex*hex*hex) / function(s) return tonumber(s,16) end +----- hexsix = (hex*hex*hex*hex*hex*hex) / function(s) return tonumber(s,16) end +local hexfour = (hex*hex*hex^-2) / function(s) return tonumber(s,16) end +local hexsix = (hex*hex*hex^-4) / function(s) return tonumber(s,16) end local dec = (R("09")^1) / tonumber local period = P(".") -local unicode = P("uni") * (hexfour * (period + P(-1)) * Cc(false) + Ct(hexfour^1) * Cc(true)) -local ucode = P("u") * (hexsix * (period + P(-1)) * Cc(false) + Ct(hexsix ^1) * Cc(true)) +local unicode = (P("uni") + P("UNI")) * (hexfour * (period + P(-1)) * Cc(false) + Ct(hexfour^1) * Cc(true)) -- base planes +local ucode = (P("u") + P("U") ) * (hexsix * (period + P(-1)) * Cc(false) + Ct(hexsix ^1) * Cc(true)) -- extended local index = P("index") * dec * Cc(false) local parser = unicode + ucode + index @@ -168,7 +170,6 @@ end -- return s -- end -mappings.loadlumtable = loadlumtable mappings.makenameparser = makenameparser mappings.tounicode = tounicode mappings.tounicode16 = tounicode16 @@ -179,13 +180,13 @@ local ligseparator = P("_") local varseparator = P(".") local namesplitter = Ct(C((1 - ligseparator - varseparator)^1) * (ligseparator * C((1 - ligseparator - varseparator)^1))^0) +-- maybe: ff fi fl ffi ffl => f_f f_i f_l f_f_i f_f_l + -- local function test(name) -- local split = lpegmatch(namesplitter,name) -- print(string.formatters["%s: [% t]"](name,split)) -- end --- maybe: ff fi fl ffi ffl => f_f f_i f_l f_f_i f_f_l - -- test("i.f_") -- test("this") -- test("this.that") @@ -221,332 +222,184 @@ end mappings.overloads = overloads -function mappings.addtounicode(data,filename) - local resources = data.resources - local properties = data.properties - local descriptions = data.descriptions - local unicodes = resources.unicodes - local lookuptypes = resources.lookuptypes +function mappings.addtounicode(data,filename,checklookups) + local resources = data.resources + local unicodes = resources.unicodes if not unicodes then return end + local properties = data.properties + local descriptions = data.descriptions -- we need to move this code unicodes['space'] = unicodes['space'] or 32 unicodes['hyphen'] = unicodes['hyphen'] or 45 unicodes['zwj'] = unicodes['zwj'] or 0x200D unicodes['zwnj'] = unicodes['zwnj'] or 0x200C - local private = fonts.constructors.privateoffset - local unicodevector = fonts.encodings.agl.unicodes -- loaded runtime in context - ----- namevector = fonts.encodings.agl.names -- loaded runtime in context - local missing = { } - local lumunic, uparser, oparser - local cidinfo, cidnames, cidcodes, usedmap - -- - cidinfo = properties.cidinfo - usedmap = cidinfo and fonts.cid.getmap(cidinfo) -- + local private = fonts.constructors and fonts.constructors.privateoffset or 0xF0000 -- 0x10FFFF + local unicodevector = fonts.encodings.agl.unicodes or { } -- loaded runtime in context + local contextvector = fonts.encodings.agl.ctxcodes or { } -- loaded runtime in context + local missing = { } + local nofmissing = 0 + local oparser = nil + local cidnames = nil + local cidcodes = nil + local cidinfo = properties.cidinfo + local usedmap = cidinfo and fonts.cid.getmap(cidinfo) + local uparser = makenameparser() -- hm, every time? if usedmap then - oparser = usedmap and makenameparser(cidinfo.ordering) - cidnames = usedmap.names - cidcodes = usedmap.unicodes + oparser = usedmap and makenameparser(cidinfo.ordering) + cidnames = usedmap.names + cidcodes = usedmap.unicodes end - uparser = makenameparser() - local ns, nl = 0, 0 + local ns = 0 + local nl = 0 + -- for unic, glyph in next, descriptions do - local index = glyph.index - local name = glyph.name - local r = overloads[name] - if r then - -- get rid of weird ligatures - -- glyph.name = r.name - glyph.unicode = r.unicode - elseif unic == -1 or unic >= private or (unic >= 0xE000 and unic <= 0xF8FF) or unic == 0xFFFE or unic == 0xFFFF then - local unicode = lumunic and lumunic[name] or unicodevector[name] - if unicode then - glyph.unicode = unicode - ns = ns + 1 - end - -- cidmap heuristics, beware, there is no guarantee for a match unless - -- the chain resolves - if (not unicode) and usedmap then - local foundindex = lpegmatch(oparser,name) - if foundindex then - unicode = cidcodes[foundindex] -- name to number - if unicode then - glyph.unicode = unicode - ns = ns + 1 - else - local reference = cidnames[foundindex] -- number to name - if reference then - local foundindex = lpegmatch(oparser,reference) - if foundindex then - unicode = cidcodes[foundindex] - if unicode then - glyph.unicode = unicode - ns = ns + 1 + local name = glyph.name + if name then + local index = glyph.index + local r = overloads[name] + if r then + -- get rid of weird ligatures + -- glyph.name = r.name + glyph.unicode = r.unicode + elseif not unic or unic == -1 or unic >= private or (unic >= 0xE000 and unic <= 0xF8FF) or unic == 0xFFFE or unic == 0xFFFF then + local unicode = unicodevector[name] or contextvector[name] + if unicode then + glyph.unicode = unicode + ns = ns + 1 + end + -- cidmap heuristics, beware, there is no guarantee for a match unless + -- the chain resolves + if (not unicode) and usedmap then + local foundindex = lpegmatch(oparser,name) + if foundindex then + unicode = cidcodes[foundindex] -- name to number + if unicode then + glyph.unicode = unicode + ns = ns + 1 + else + local reference = cidnames[foundindex] -- number to name + if reference then + local foundindex = lpegmatch(oparser,reference) + if foundindex then + unicode = cidcodes[foundindex] + if unicode then + glyph.unicode = unicode + ns = ns + 1 + end end - end - if not unicode or unicode == "" then - local foundcodes, multiple = lpegmatch(uparser,reference) - if foundcodes then - glyph.unicode = foundcodes - if multiple then - nl = nl + 1 - unicode = true - else - ns = ns + 1 - unicode = foundcodes + if not unicode or unicode == "" then + local foundcodes, multiple = lpegmatch(uparser,reference) + if foundcodes then + glyph.unicode = foundcodes + if multiple then + nl = nl + 1 + unicode = true + else + ns = ns + 1 + unicode = foundcodes + end end end end end end end - end - -- a.whatever or a_b_c.whatever or a_b_c (no numbers) a.b_ - -- - -- It is not trivial to find a solution that suits all fonts. We tried several alternatives - -- and this one seems to work reasonable also with fonts that use less standardized naming - -- schemes. The extra private test is tested by KE and seems to work okay with non-typical - -- fonts as well. - -- - -- The next time I look into this, I'll add an extra analysis step to the otf loader (we can - -- resolve some tounicodes by looking into the gsub data tables that are bound to glyphs. - -- --- a real tricky last resort: --- --- local lookups = glyph.lookups --- if lookups then --- for _, lookup in next, lookups do -- assume consistency else we need to sort --- for i=1,#lookup do --- local l = lookup[i] --- if l.type == "ligature" then --- local s = l.specification --- if s.char == glyph.name then --- local components = s.components --- if components then --- local t, n = { }, 0 --- unicode = true --- for l=1,#components do --- local base = components[l] --- local u = unicodes[base] or unicodevector[base] --- if not u then --- break --- elseif type(u) == "table" then --- if u[1] >= private then --- unicode = false --- break --- end --- n = n + 1 --- t[n] = u[1] --- else --- if u >= private then --- unicode = false --- break --- end --- n = n + 1 --- t[n] = u --- end --- end --- if n == 0 then -- done then --- -- nothing --- elseif n == 1 then --- glyph.unicode = t[1] --- else --- glyph.unicode = t --- end --- nl = nl + 1 --- break --- end --- end --- end --- end --- if unicode then --- break --- end --- end --- end - if not unicode or unicode == "" then - local split = lpegmatch(namesplitter,name) - local nsplit = split and #split or 0 - local t, n = { }, 0 - unicode = true - for l=1,nsplit do - local base = split[l] - local u = unicodes[base] or unicodevector[base] - if not u then - break - elseif type(u) == "table" then - if u[1] >= private then - unicode = false - break + -- a.whatever or a_b_c.whatever or a_b_c (no numbers) a.b_ + -- + -- It is not trivial to find a solution that suits all fonts. We tried several alternatives + -- and this one seems to work reasonable also with fonts that use less standardized naming + -- schemes. The extra private test is tested by KE and seems to work okay with non-typical + -- fonts as well. + -- + if not unicode or unicode == "" then + local split = lpegmatch(namesplitter,name) + local nsplit = split and #split or 0 -- add if + if nsplit == 0 then + -- skip + elseif nsplit == 1 then + local base = split[1] + local u = unicodes[base] or unicodevector[base] or contextvector[name] + if not u then + -- skip + elseif type(u) == "table" then + -- unlikely + if u[1] < private then + unicode = u + glyph.unicode = unicode + end + elseif u < private then + unicode = u + glyph.unicode = unicode end - n = n + 1 - t[n] = u[1] else - if u >= private then - unicode = false - break - end - n = n + 1 - t[n] = u - end - end - if n == 0 then -- done then - -- nothing - elseif n == 1 then - glyph.unicode = t[1] - else - glyph.unicode = t - end - nl = nl + 1 - end - -- last resort (we might need to catch private here as well) - if not unicode or unicode == "" then - local foundcodes, multiple = lpegmatch(uparser,name) - if foundcodes then - glyph.unicode = foundcodes - if multiple then - nl = nl + 1 - unicode = true - else - ns = ns + 1 - unicode = foundcodes - end - end - end - -- check using substitutes and alternates - local r = overloads[unicode] - if r then - unicode = r.unicode - glyph.unicode = unicode - end - -- - if not unicode then - missing[name] = true - end - end - end - if next(missing) then - local guess = { } - -- helper - local function check(gname,code,unicode) - local description = descriptions[code] - -- no need to add a self reference - local variant = description.name - if variant == gname then - return - end - -- the variant already has a unicode (normally that resultrs in a default tounicode to self) - local unic = unicodes[variant] - if unic == -1 or unic >= private or (unic >= 0xE000 and unic <= 0xF8FF) or unic == 0xFFFE or unic == 0xFFFF then - -- no default mapping and therefore maybe no tounicode yet - else - return - end - -- the variant already has a tounicode - if descriptions[code].unicode then - return - end - -- add to the list - local g = guess[variant] - -- local r = overloads[unicode] - -- if r then - -- unicode = r.unicode - -- end - if g then - g[gname] = unicode - else - guess[variant] = { [gname] = unicode } - end - end - -- - for unicode, description in next, descriptions do - local slookups = description.slookups - if slookups then - local gname = description.name - for tag, data in next, slookups do - local lookuptype = lookuptypes[tag] - if lookuptype == "alternate" then - for i=1,#data do - check(gname,data[i],unicode) - end - elseif lookuptype == "substitution" then - check(gname,data,unicode) - end - end - end - local mlookups = description.mlookups - if mlookups then - local gname = description.name - for tag, list in next, mlookups do - local lookuptype = lookuptypes[tag] - if lookuptype == "alternate" then - for i=1,#list do - local data = list[i] - for i=1,#data do - check(gname,data[i],unicode) + local t, n = { }, 0 + for l=1,nsplit do + local base = split[l] + local u = unicodes[base] or unicodevector[base] or contextvector[name] + if not u then + break + elseif type(u) == "table" then + if u[1] >= private then + break + end + n = n + 1 + t[n] = u[1] + else + if u >= private then + break + end + n = n + 1 + t[n] = u end end - elseif lookuptype == "substitution" then - for i=1,#list do - check(gname,list[i],unicode) + if n > 0 then + if n == 1 then + unicode = t[1] + else + unicode = t + end + glyph.unicode = unicode end end + nl = nl + 1 end - end - end - -- resolve references - local done = true - while done do - done = false - for k, v in next, guess do - if type(v) ~= "number" then - for kk, vv in next, v do - if vv == -1 or vv >= private or (vv >= 0xE000 and vv <= 0xF8FF) or vv == 0xFFFE or vv == 0xFFFF then - local uu = guess[kk] - if type(uu) == "number" then - guess[k] = uu - done = true - end + -- last resort (we might need to catch private here as well) + if not unicode or unicode == "" then + local foundcodes, multiple = lpegmatch(uparser,name) + if foundcodes then + glyph.unicode = foundcodes + if multiple then + nl = nl + 1 + unicode = true else - guess[k] = vv - done = true + ns = ns + 1 + unicode = foundcodes end end end - end - end - -- wrap up - local orphans = 0 - local guessed = 0 - for k, v in next, guess do - if type(v) == "number" then - descriptions[unicodes[k]].unicode = descriptions[v].unicode or v -- can also be a table - guessed = guessed + 1 - else - local t = nil - local l = lower(k) - local u = unicodes[l] - if not u then - orphans = orphans + 1 - elseif u == -1 or u >= private or (u >= 0xE000 and u <= 0xF8FF) or u == 0xFFFE or u == 0xFFFF then - local unicode = descriptions[u].unicode - if unicode then - descriptions[unicodes[k]].unicode = unicode - guessed = guessed + 1 - else - orphans = orphans + 1 - end - else - orphans = orphans + 1 + -- check using substitutes and alternates + local r = overloads[unicode] + if r then + unicode = r.unicode + glyph.unicode = unicode + end + -- + if not unicode then + missing[unic] = true + nofmissing = nofmissing + 1 end end + else + -- no name end - if trace_loading and orphans > 0 or guessed > 0 then - report_fonts("%s glyphs with no related unicode, %s guessed, %s orphans",guessed+orphans,guessed,orphans) - end end + if type(checklookups) == "function" then + checklookups(data,missing,nofmissing) + end + -- todo: go lowercase if trace_mapping then for unic, glyph in table.sortedhash(descriptions) do local name = glyph.name diff --git a/tex/context/base/font-mis.lua b/tex/context/base/font-mis.lua index 9fe6e224f..d573750a4 100644 --- a/tex/context/base/font-mis.lua +++ b/tex/context/base/font-mis.lua @@ -22,7 +22,7 @@ local handlers = fonts.handlers handlers.otf = handlers.otf or { } local otf = handlers.otf -otf.version = otf.version or 2.815 +otf.version = otf.version or 2.816 otf.cache = otf.cache or containers.define("fonts", "otf", otf.version, true) local fontloader = fontloader diff --git a/tex/context/base/font-otf.lua b/tex/context/base/font-otf.lua index bc401e490..28a129cc1 100644 --- a/tex/context/base/font-otf.lua +++ b/tex/context/base/font-otf.lua @@ -24,9 +24,7 @@ local utfbyte = utf.byte local format, gmatch, gsub, find, match, lower, strip = string.format, string.gmatch, string.gsub, string.find, string.match, string.lower, string.strip local type, next, tonumber, tostring = type, next, tonumber, tostring local abs = math.abs -local insert = table.insert -local lpegmatch = lpeg.match -local reversed, concat, remove, sortedkeys = table.reversed, table.concat, table.remove, table.sortedkeys +local reversed, concat, insert, remove, sortedkeys = table.reversed, table.concat, table.insert, table.remove, table.sortedkeys local ioflush = io.flush local fastcopy, tohash, derivetable = table.fastcopy, table.tohash, table.derive local formatters = string.formatters @@ -60,7 +58,7 @@ local otf = fonts.handlers.otf otf.glists = { "gsub", "gpos" } -otf.version = 2.815 -- beware: also sync font-mis.lua and in mtx-fonts +otf.version = 2.816 -- beware: also sync font-mis.lua and in mtx-fonts otf.cache = containers.define("fonts", "otf", otf.version, true) local hashes = fonts.hashes @@ -709,7 +707,7 @@ local function somecopy(old) -- fast one end end --- not setting hasitalics and class (when nil) during table cronstruction can save some mem +-- not setting hasitalics and class (when nil) during table construction can save some mem actions["prepare glyphs"] = function(data,filename,raw) local tableversion = tonumber(raw.table_version) or 0 @@ -1128,7 +1126,7 @@ actions["analyze glyphs"] = function(data,filename,raw) -- maybe integrate this local marks = { } -- always present (saves checking) for unicode, description in next, descriptions do local glyph = description.glyph - local italic = glyph.italic_correction + local italic = glyph.italic_correction -- only in a math font if not italic then -- skip elseif italic == 0 then @@ -1197,7 +1195,8 @@ end actions["reorganize features"] = function(data,filename,raw) -- combine with other local features = { } data.resources.features = features - for k, what in next, otf.glists do + for k=1,#otf.glists do + local what = otf.glists[k] local dw = raw[what] if dw then local f = { } @@ -1266,6 +1265,140 @@ actions["reorganize anchor classes"] = function(data,filename,raw) end end +-- local function checklookups(data,missing,nofmissing) +-- local resources = data.resources +-- local unicodes = resources.unicodes +-- local lookuptypes = resources.lookuptypes +-- if not unicodes or not lookuptypes then +-- return +-- elseif nofmissing <= 0 then +-- return +-- end +-- local descriptions = data.descriptions +-- local private = fonts.constructors and fonts.constructors.privateoffset or 0xF0000 -- 0x10FFFF +-- -- +-- local ns, nl = 0, 0 + +-- local guess = { } +-- -- helper +-- local function check(gname,code,unicode) +-- local description = descriptions[code] +-- -- no need to add a self reference +-- local variant = description.name +-- if variant == gname then +-- return +-- end +-- -- the variant already has a unicode (normally that results in a default tounicode to self) +-- local unic = unicodes[variant] +-- if unic == -1 or unic >= private or (unic >= 0xE000 and unic <= 0xF8FF) or unic == 0xFFFE or unic == 0xFFFF then +-- -- no default mapping and therefore maybe no tounicode yet +-- else +-- return +-- end +-- -- the variant already has a tounicode +-- if descriptions[code].unicode then +-- return +-- end +-- -- add to the list +-- local g = guess[variant] +-- -- local r = overloads[unicode] +-- -- if r then +-- -- unicode = r.unicode +-- -- end +-- if g then +-- g[gname] = unicode +-- else +-- guess[variant] = { [gname] = unicode } +-- end +-- end +-- -- +-- for unicode, description in next, descriptions do +-- local slookups = description.slookups +-- if slookups then +-- local gname = description.name +-- for tag, data in next, slookups do +-- local lookuptype = lookuptypes[tag] +-- if lookuptype == "alternate" then +-- for i=1,#data do +-- check(gname,data[i],unicode) +-- end +-- elseif lookuptype == "substitution" then +-- check(gname,data,unicode) +-- end +-- end +-- end +-- local mlookups = description.mlookups +-- if mlookups then +-- local gname = description.name +-- for tag, list in next, mlookups do +-- local lookuptype = lookuptypes[tag] +-- if lookuptype == "alternate" then +-- for i=1,#list do +-- local data = list[i] +-- for i=1,#data do +-- check(gname,data[i],unicode) +-- end +-- end +-- elseif lookuptype == "substitution" then +-- for i=1,#list do +-- check(gname,list[i],unicode) +-- end +-- end +-- end +-- end +-- end +-- -- resolve references +-- local done = true +-- while done do +-- done = false +-- for k, v in next, guess do +-- if type(v) ~= "number" then +-- for kk, vv in next, v do +-- if vv == -1 or vv >= private or (vv >= 0xE000 and vv <= 0xF8FF) or vv == 0xFFFE or vv == 0xFFFF then +-- local uu = guess[kk] +-- if type(uu) == "number" then +-- guess[k] = uu +-- done = true +-- end +-- else +-- guess[k] = vv +-- done = true +-- end +-- end +-- end +-- end +-- end +-- -- wrap up +-- local orphans = 0 +-- local guessed = 0 +-- for k, v in next, guess do +-- if type(v) == "number" then +-- descriptions[unicodes[k]].unicode = descriptions[v].unicode or v -- can also be a table +-- guessed = guessed + 1 +-- else +-- local t = nil +-- local l = lower(k) +-- local u = unicodes[l] +-- if not u then +-- orphans = orphans + 1 +-- elseif u == -1 or u >= private or (u >= 0xE000 and u <= 0xF8FF) or u == 0xFFFE or u == 0xFFFF then +-- local unicode = descriptions[u].unicode +-- if unicode then +-- descriptions[unicodes[k]].unicode = unicode +-- guessed = guessed + 1 +-- else +-- orphans = orphans + 1 +-- end +-- else +-- orphans = orphans + 1 +-- end +-- end +-- end +-- if trace_loading and orphans > 0 or guessed > 0 then +-- report_otf("%s glyphs with no related unicode, %s guessed, %s orphans",guessed+orphans,guessed,orphans) +-- end +-- end + actions["prepare tounicode"] = function(data,filename,raw) fonts.mappings.addtounicode(data,filename) end @@ -1300,8 +1433,9 @@ actions["reorganize subtables"] = function(data,filename,raw) local lookups = { } local chainedfeatures = { } resources.sequences = sequences - resources.lookups = lookups - for _, what in next, otf.glists do + resources.lookups = lookups -- we also have lookups in data itself + for k=1,#otf.glists do + local what = otf.glists[k] local dw = raw[what] if dw then for k=1,#dw do @@ -1387,12 +1521,6 @@ actions["reorganize subtables"] = function(data,filename,raw) end end --- test this: --- --- for _, what in next, otf.glists do --- raw[what] = nil --- end - actions["prepare lookups"] = function(data,filename,raw) local lookups = raw.lookups if lookups then @@ -1963,7 +2091,7 @@ actions["merge kern classes"] = function(data,filename,raw) report_otf("%s kern overloads ignored",ignored) end if blocked > 0 then - report_otf("%s succesive kerns blocked",blocked) + report_otf("%s successive kerns blocked",blocked) end end end @@ -2062,7 +2190,7 @@ end -- ligatures have an extra specification.char entry that we don't use --- mlookups probably only with pairs +-- mlookups only with pairs and ligatures actions["reorganize glyph lookups"] = function(data,filename,raw) local resources = data.resources @@ -2146,12 +2274,11 @@ actions["reorganize glyph lookups"] = function(data,filename,raw) -- description.lookups = nil end end - end local zero = { 0, 0 } -actions["reorganize glyph anchors"] = function(data,filename,raw) -- when we replace inplace we safe entries +actions["reorganize glyph anchors"] = function(data,filename,raw) local descriptions = data.descriptions for unicode, description in next, descriptions do local anchors = description.glyph.anchors diff --git a/tex/context/base/font-otl.lua b/tex/context/base/font-otl.lua new file mode 100644 index 000000000..58cce837c --- /dev/null +++ b/tex/context/base/font-otl.lua @@ -0,0 +1,25 @@ +if not modules then modules = { } end modules ['font-otl'] = { + version = 1.001, + comment = "companion to font-ini.mkiv", + author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", + copyright = "PRAGMA ADE / ConTeXt Development Team", + license = "see context related readme files", +} + +-- After some experimenting with an alternative loader (one that is needed for +-- getting outlines in mp) I decided not to be compatible with the old (built-in) +-- one. The approach used in font-otn is as follows: we load the font in a compact +-- format but still very compatible with the ff data structures. From there we +-- create hashes to access the data efficiently. The implementation of feature +-- processing is mostly based on looking at the data as organized in the glyphs and +-- lookups as well as the specification. Keeping the lookup data in the glyphs is +-- very instructive and handy for tracing. On the other hand hashing is what brings +-- speed. So, the in the new approach (the old one will stay around too) we no +-- longer keep data in the glyphs which saves us (what in retrospect looks a bit +-- like) a reconstruction step. It also means that the data format of the cached +-- files changes. What method is used depends on that format. There is no fundamental +-- change in processing, and not even in data organation. Most has to do with +-- loading and storage. + +-- This file is mostly used for experiments (on my machine) before they make it into +-- the core. diff --git a/tex/context/base/font-otn.lua b/tex/context/base/font-otn.lua index 7736994de..73ee8ecef 100644 --- a/tex/context/base/font-otn.lua +++ b/tex/context/base/font-otn.lua @@ -1085,7 +1085,7 @@ function handlers.gpos_mark2mark(head,start,kind,lookupname,markanchors,sequence if al[anchor] then local ma = markanchors[anchor] if ma then - local dx, dy, bound = setmark(start,base,tfmdata.parameters.factor,rlmode,ba,ma,characters[basechar]) + local dx, dy, bound = setmark(start,base,tfmdata.parameters.factor,rlmode,ba,ma,characters[basechar],true) if trace_marks then logprocess("%s, anchor %s, bound %s: anchoring mark %s to basemark %s => (%p,%p)", pref(kind,lookupname),anchor,bound,gref(markchar),gref(basechar),dx,dy) @@ -1198,7 +1198,7 @@ function handlers.gpos_pair(head,start,kind,lookupname,kerns,sequence,lookuphash -- skip elseif type(krn) == "table" then if lookuptype == "pair" then -- probably not needed - local a, b = krn[2], krn[3] + local a, b = krn[2], krn[3] if a and #a > 0 then local startchar = getchar(start) local x, y, w, h = setpair(start,factor,rlmode,sequence.flags[4],a,injection) -- characters[startchar]) @@ -1811,7 +1811,7 @@ function chainprocs.gpos_mark2mark(head,start,stop,kind,chainname,currentcontext if al[anchor] then local ma = markanchors[anchor] if ma then - local dx, dy, bound = setmark(start,base,tfmdata.parameters.factor,rlmode,ba,ma,characters[basechar]) + local dx, dy, bound = setmark(start,base,tfmdata.parameters.factor,rlmode,ba,ma,characters[basechar],true) if trace_marks then logprocess("%s, anchor %s, bound %s: anchoring mark %s to basemark %s => (%p,%p)", cref(kind,chainname,chainlookupname,lookupname),anchor,bound,gref(markchar),gref(basechar),dx,dy) @@ -1965,16 +1965,16 @@ function chainprocs.gpos_pair(head,start,stop,kind,chainname,currentcontext,look end else report_process("%s: check this out (old kern stuff)",cref(kind,chainname,chainlookupname)) - local a, b = krn[2], krn[6] - if a and a ~= 0 then - local k = setkern(snext,factor,rlmode,a) - if trace_kerns then - logprocess("%s: inserting first kern %s between %s and %s",cref(kind,chainname,chainlookupname),k,gref(getchar(prev)),gref(nextchar)) - end - end - if b and b ~= 0 then - logwarning("%s: ignoring second kern xoff %s",cref(kind,chainname,chainlookupname),b*factor) - end + -- local a, b = krn[2], krn[6] + -- if a and a ~= 0 then + -- local k = setkern(snext,factor,rlmode,a) + -- if trace_kerns then + -- logprocess("%s: inserting first kern %s between %s and %s",cref(kind,chainname,chainlookupname),k,gref(getchar(prev)),gref(nextchar)) + -- end + -- end + -- if b and b ~= 0 then + -- logwarning("%s: ignoring second kern xoff %s",cref(kind,chainname,chainlookupname),b*factor) + -- end end done = true elseif krn ~= 0 then @@ -3492,7 +3492,7 @@ local function prepare_lookups(tfmdata) for name, anchor in next, anchors do local lookups = anchor_to_lookup[name] if lookups then - for lookup, _ in next, lookups do + for lookup in next, lookups do local target = lookuphash[lookup] if target then target[unicode] = anchors diff --git a/tex/context/base/font-otp.lua b/tex/context/base/font-otp.lua index ebf36ed45..91bd05b32 100644 --- a/tex/context/base/font-otp.lua +++ b/tex/context/base/font-otp.lua @@ -12,9 +12,8 @@ if not modules then modules = { } end modules ['font-otp'] = { -- -- unless we sort all hashes we can get a different pack order (no big deal but size can differ) -local next, type = next, type +local next, type, tostring = next, type, tostring local sort, concat = table.sort, table.concat -local sortedhash = table.sortedhash local trace_packing = false trackers.register("otf.packing", function(v) trace_packing = v end) local trace_loading = false trackers.register("otf.loading", function(v) trace_loading = v end) @@ -148,6 +147,7 @@ end -- we then need to sort more thanks to random hashing local function packdata(data) + if data then -- stripdata(data) local h, t, c = { }, { }, { } @@ -537,6 +537,7 @@ local unpacked_mt = { } local function unpackdata(data) + if data then local tables = data.tables if tables then diff --git a/tex/context/base/font-otr.lua b/tex/context/base/font-otr.lua index 3ff260d44..1b53601a9 100644 --- a/tex/context/base/font-otr.lua +++ b/tex/context/base/font-otr.lua @@ -6,35 +6,59 @@ if not modules then modules = { } end modules ['font-otr'] = { license = "see context related readme files" } --- this code is not yet ready for generic i.e. i want to be free to change the --- keys and values - --- we can optimize kern pairs (i.e. simple h only positioning) later if we want --- which is easier as then we know if we have clashes between features --- -- When looking into a cid font relates issue in the ff library I wondered if -- it made sense to use Lua to filter the information from the otf and ttf -- files. Quite some ff code relates to special fonts and in practice we only -- use rather normal opentype fonts. -- -- The code here is based on the documentation (and examples) at the microsoft --- website. The code will be extended and improved stepwise. We generate a table --- that is comparabel with the one luatex creates but also can create one for --- context directly. +-- website. The code will be extended and improved stepwise. After some experiments +-- I decided to convert to a format more suitable for the context font handler +-- because it makes no sense to rehash all those lookups again. +-- +-- Currently we can use this code for getting basic info about the font, loading +-- shapes and loading the extensive table. I'm not sure if I will provide a ff +-- compatible output as well (We're not that far from it as currently I can load +-- all data reasonable fast.) + +-- This code is not yet ready for generic i.e. I want to be free to change the +-- keys and values. Especially the gpos/gsub/gdef/math needs checking (this +-- is implemented in font-dsp.lua). + +-- We can omit redundant glyphs names i.e. ones that match the agl or +-- are just a unicode string but it doesn't save that much. It will be an option +-- some day. + +-- Optimizing the widths wil be done anyway as it save quite some on a cjk font +-- and the existing (old) code if okay. + +-- todo: duplicates +-- todo: markclasses : checking needed (see font-otf) +-- +-- todo: check all unsigned / signed (will be done last) +-- todo: more messages (only if really needed) +-- +-- todo (in old loader and new one) math: -- --- todo: add checks for versions --- todo: check all unsigned / signed --- todo: save mode for context font loader (also deal with unicode dups) +-- italic_correction -> italic +-- top_accent -> top accent +-- vert_parts -> vparts +-- horiz_parts -> hparts +-- vert_variants -> vvariants -> next in tex, so better 'sizes' +-- horiz_variants -> hvariants -> next in tex, so better 'sizes' -- --- widths and weights are kind of messy: for instance lmmonolt ias a pfmweight of --- 400 while it should be 300 +-- start -> first (so we can skip the first same-size one) +-- end -> last -- --- we can have a bit more in the info data if needed as it will nto really slow --- down identifying +-- We can optimize kern pairs (i.e. simple h only positioning) later if we want +-- which is easier as then we know if we have clashes between features. We can have +-- kerns as well as moves (smaller files) -- --- the main loader is not yet for production use (work in progress on the dsp file --- but as soon we we're done i will also adapt that table (as there is no need to --- be completely ff compatible) +-- Widths and weights are kind of messy: for instance lmmonolt has a pfmweight of +-- 400 while it should be 300. So, for now we mostly stick to the old compromis. + +-- We don't really need all those language tables so they might be dropped some +-- day. if not characters then require("char-def") @@ -42,11 +66,11 @@ if not characters then end local next, type, unpack = next, type, unpack -local byte, lower, char = string.byte, string.lower, string.char +local byte, lower, char, strip, gsub = string.byte, string.lower, string.char, string.strip, string.gsub local bittest = bit32.btest local concat, remove = table.concat, table.remove local floor, mod, abs, sqrt, round = math.floor, math.mod, math.abs, math.sqrt, math.round -local P, C, R, S, C, Cs, Cc, Ct, Carg, Cmt = lpeg.P, lpeg.C, lpeg.R, lpeg.S, lpeg.C, lpeg.Cs, lpeg.Cc, lpeg.Ct, lpeg.Carg, lpeg.Cmt +local P, R, S, C, Cs, Cc, Ct, Carg, Cmt = lpeg.P, lpeg.R, lpeg.S, lpeg.C, lpeg.Cs, lpeg.Cc, lpeg.Ct, lpeg.Carg, lpeg.Cmt local lpegmatch = lpeg.match local setmetatableindex = table.setmetatableindex @@ -66,25 +90,45 @@ handlers.otf = otf local readers = otf.readers or { } otf.readers = readers -local files = utilities.files - -local readbytes = files.readbytes -local readstring = files.readstring -local readbyte = files.readcardinal1 -- 8-bit unsigned integer -local readushort = files.readcardinal2 -- 16-bit unsigned integer -local readuint = files.readcardinal3 -- 24-bit unsigned integer -local readulong = files.readcardinal4 -- 24-bit unsigned integer -local readchar = files.readinteger1 -- 8-bit signed integer -local readshort = files.readinteger2 -- 16-bit signed integer -local readlong = files.readinteger4 -- 24-bit unsigned integer -local readfixed = files.readfixed4 -local readfword = readshort -- 16-bit signed integer that describes a quantity in FUnits -local readufword = readushort -- 16-bit unsigned integer that describes a quantity in FUnits +-- local streamreader = utilities.streams -- faster on big files +local streamreader = utilities.files -- faster on identify + +readers.streamreader = streamreader + +local openfile = streamreader.open +local closefile = streamreader.close +local skipbytes = streamreader.skip +local setposition = streamreader.setposition +local skipshort = streamreader.skipshort +local readbytes = streamreader.readbytes +local readstring = streamreader.readstring +local readbyte = streamreader.readcardinal1 -- 8-bit unsigned integer +local readushort = streamreader.readcardinal2 -- 16-bit unsigned integer +local readuint = streamreader.readcardinal3 -- 24-bit unsigned integer +local readulong = streamreader.readcardinal4 -- 24-bit unsigned integer +local readchar = streamreader.readinteger1 -- 8-bit signed integer +local readshort = streamreader.readinteger2 -- 16-bit signed integer +local readlong = streamreader.readinteger4 -- 24-bit unsigned integer +local readfixed = streamreader.readfixed4 +local readfword = readshort -- 16-bit signed integer that describes a quantity in FUnits +local readufword = readushort -- 16-bit unsigned integer that describes a quantity in FUnits local readoffset = readushort -local read2dot14 = files.read2dot14 -- 16-bit signed fixed number with the low 14 bits of fraction (2.14) (F2DOT14) +local read2dot14 = streamreader.read2dot14 -- 16-bit signed fixed number with the low 14 bits of fraction (2.14) (F2DOT14) + +function streamreader.readtag(f) + return lower(strip(readstring(f,4))) +end -local readtag = function(f) return f:read(4) end -local skipshort = function(f,n) f:read(n and 2*n or 2) end +-- date represented in number of seconds since 12:00 midnight, January 1, 1904. The value is represented as a +-- signed 64-bit integer + +local function readlongdatetime(f) + local a, b, c, d, e, f, g, h = readbytes(f,8) + return 0x100000000 * d + 0x1000000 * e + 0x10000 * f + 0x100 * g + h +end + +local tableversion = 0.001 +local privateoffset = fonts.constructors and fonts.constructors.privateoffset or 0xF0000 -- 0x10FFFF local reportedskipped = { } @@ -94,13 +138,6 @@ local function reportskippedtable(tag) reportedskipped[tag] = true end end --- date represented in number of seconds since 12:00 midnight, January 1, 1904. The value is represented as a --- signed 64-bit integer - -local function readlongdatetime(f) - local a, b, c, d, e, f, g, h = byte(f:read(8),1,8) - return 0x100000000 * d + 0x1000000 * e + 0x10000 * f + 0x100 * g + h -end -- We have quite some data tables. We are somewhat ff compatible with names but as I used -- the information form the microsoft site there can be differences. Eventually I might end @@ -151,6 +188,7 @@ local platforms = { [0] = } local encodings = { + -- these stay: unicode = { [0] = "unicode 1.0 semantics", "unicode 1.1 semantics", @@ -160,6 +198,7 @@ local encodings = { "unicode variation sequences", -- cmap subtable format 14). "unicode full repertoire", -- cmap subtable formats 0, 4, 6, 10, 12, 13 }, + -- these can go: macintosh = { [0] = "roman", "japanese", "chinese (traditional)", "korean", "arabic", "hebrew", "greek", "russian", "rsymbol", "devanagari", "gurmukhi", "gujarati", "oriya", "bengali", "tamil", "telugu", "kannada", @@ -167,11 +206,13 @@ local encodings = { "chinese (simplified)", "tibetan", "mongolian", "geez", "slavic", "vietnamese", "sindhi", "uninterpreted", }, + -- these stay: iso = { [0] = "7-bit ascii", "iso 10646", "iso 8859-1", }, + -- these stay: windows = { [0] = "symbol", "unicode bmp", -- this is utf16 @@ -204,9 +245,11 @@ local decoders = { -- names (in that order). A font with no english name is probably a weird one anyway. local languages = { + -- these stay: unicode = { [ 0] = "english", }, + -- english can stay: macintosh = { [ 0] = "english", [ 1] = "french", @@ -327,8 +370,10 @@ local languages = { [149] = "greenlandic", [150] = "azerbaijani (roman script)", }, + -- these can stay: iso = { }, + -- english can stay: windows = { [0x0436] = "afrikaans - south africa", [0x041c] = "albanian - albania", @@ -652,7 +697,7 @@ local panosewidths = { function readers.name(f,fontdata) local datatable = fontdata.tables.name if datatable then - f:seek("set",datatable.offset) + setposition(f,datatable.offset) local format = readushort(f) local nofnames = readushort(f) local offset = readushort(f) @@ -730,7 +775,7 @@ function readers.name(f,fontdata) local encoding = name.encoding local language = name.language if (not e or encoding == e) and (not l or language == l) then - f:seek("set",start+name.offset) + setposition(f,start+name.offset) local content = readstring(f,name.length) local decoder = decoders[platform] if decoder then @@ -771,7 +816,7 @@ end readers["os/2"] = function(f,fontdata) local datatable = fontdata.tables["os/2"] if datatable then - f:seek("set",datatable.offset) + setposition(f,datatable.offset) local version = readushort(f) local windowsmetrics = { version = version, @@ -832,7 +877,7 @@ end readers.head = function(f,fontdata) local datatable = fontdata.tables.head if datatable then - f:seek("set",datatable.offset) + setposition(f,datatable.offset) local fontheader = { version = readfixed(f), revision = readfixed(f), @@ -867,7 +912,7 @@ readers.hhea = function(f,fontdata,specification) if specification.details then local datatable = fontdata.tables.hhea if datatable then - f:seek("set",datatable.offset) + setposition(f,datatable.offset) fontdata.horizontalheader = { version = readfixed(f), ascender = readfword(f), @@ -905,18 +950,20 @@ readers.maxp = function(f,fontdata,specification) if specification.details then local datatable = fontdata.tables.maxp if datatable then - f:seek("set",datatable.offset) - local version = readfixed(f) + setposition(f,datatable.offset) + local version = readfixed(f) + local nofglyphs = readushort(f) + fontdata.nofglyphs = nofglyphs if version == 0.5 then fontdata.maximumprofile = { version = version, - nofglyphs = readushort(f), + nofglyphs = nofglyphs, } return elseif version == 1.0 then fontdata.maximumprofile = { version = version, - nofglyphs = readushort(f), + nofglyphs = nofglyphs, points = readushort(f), contours = readushort(f), compositepoints = readushort(f), @@ -948,7 +995,7 @@ readers.hmtx = function(f,fontdata,specification) if specification.glyphs then local datatable = fontdata.tables.hmtx if datatable then - f:seek("set",datatable.offset) + setposition(f,datatable.offset) local nofmetrics = fontdata.horizontalheader.nofhmetrics local glyphs = fontdata.glyphs local nofglyphs = fontdata.nofglyphs @@ -962,9 +1009,9 @@ readers.hmtx = function(f,fontdata,specification) if advance ~= 0 then glyph.width = width end - if leftsidebearing ~= 0 then - glyph.lsb = leftsidebearing - end + -- if leftsidebearing ~= 0 then + -- glyph.lsb = leftsidebearing + -- end end -- The next can happen in for instance a monospace font or in a cjk font -- with fixed widths. @@ -973,9 +1020,9 @@ readers.hmtx = function(f,fontdata,specification) if width ~= 0 then glyph.width = width end - if leftsidebearing ~= 0 then - glyph.lsb = leftsidebearing - end + -- if leftsidebearing ~= 0 then + -- glyph.lsb = leftsidebearing + -- end end end end @@ -989,7 +1036,7 @@ end readers.post = function(f,fontdata,specification) local datatable = fontdata.tables.post if datatable then - f:seek("set",datatable.offset) + setposition(f,datatable.offset) local version = readfixed(f) fontdata.postscript = { version = version, @@ -1010,12 +1057,11 @@ readers.post = function(f,fontdata,specification) glyphs[index].name = standardromanencoding[index] end elseif version == 2.0 then - local glyphs = fontdata.glyphs - local nofglyphs = readushort(f) - local filesize = fontdata.filesize - local indices = { } - local names = { } - local maxnames = 0 + local glyphs = fontdata.glyphs + local nofglyphs = readushort(f) + local indices = { } + local names = { } + local maxnames = 0 for i=0,nofglyphs-1 do local nameindex = readushort(f) if nameindex >= 258 then @@ -1027,12 +1073,18 @@ readers.post = function(f,fontdata,specification) end end for i=1,maxnames do - local length = readbyte(f) - if length > 0 then - glyphs[indices[i]].name = readstring(f,length) - else - report("quit post name fetching at %a of %a",i,maxnames) + local mapping = indices[i] + if not mapping then + report("quit post name fetching at %a of %a: %s",i,maxnames,"no index") break + else + local length = readbyte(f) + if length > 0 then + glyphs[mapping].name = readstring(f,length) + else + report("quit post name fetching at %a of %a: %s",i,maxnames,"overflow") + break + end end end elseif version == 2.5 then @@ -1058,7 +1110,7 @@ end local formatreaders = { } formatreaders[4] = function(f,fontdata,offset) - f:seek("set",offset+2) -- skip format + setposition(f,offset+2) -- skip format -- local length = readushort(f) -- in bytes of subtable local language = readushort(f) @@ -1071,7 +1123,7 @@ formatreaders[4] = function(f,fontdata,offset) local deltas = { } local offsets = { } local indices = { } - local mapmap = fontdata.map.map + local mapping = fontdata.mapping local glyphs = fontdata.glyphs -- for i=1,nofsegments do @@ -1109,7 +1161,7 @@ formatreaders[4] = function(f,fontdata,offset) if not glyph.unicode then glyph.unicode = unicode end - mapmap[index] = unicode + mapping[index] = unicode -- report("%C %04i %05i %s",unicode,index,glyphs[index].name) end end @@ -1124,7 +1176,7 @@ formatreaders[4] = function(f,fontdata,offset) if not glyph.unicode then glyph.unicode = unicode end - mapmap[index] = unicode + mapping[index] = unicode -- report("%C %04i %05i %s",unicode,index,glyphs[index].name) end end @@ -1134,11 +1186,11 @@ formatreaders[4] = function(f,fontdata,offset) end formatreaders[6] = function(f,fontdata,offset) - f:seek("set",offset+2+2+2) -- skip format length language - local mapmap = fontdata.map.map - local glyphs = fontdata.glyphs - local start = readushort(f) - local count = readushort(f) + setposition(f,offset+2+2+2) -- skip format length language + local mapping = fontdata.mapping + local glyphs = fontdata.glyphs + local start = readushort(f) + local count = readushort(f) for unicode=start,start+count-1 do local index = readushort(f) if index > 0 then @@ -1146,15 +1198,15 @@ formatreaders[6] = function(f,fontdata,offset) if not glyph.unicode then glyph.unicode = unicode end - mapmap[unicode] = index + mapping[index] = unicode end end end formatreaders[12] = function(f,fontdata,offset) - f:seek("set",offset+2+2+4+4) -- skip format reserved length language - local mapmap = fontdata.map.map - local glyphs = fontdata.glyphs + setposition(f,offset+2+2+4+4) -- skip format reserved length language + local mapping = fontdata.mapping + local glyphs = fontdata.glyphs local nofgroups = readulong(f) for i=1,nofgroups do local first = readulong(f) @@ -1165,12 +1217,61 @@ formatreaders[12] = function(f,fontdata,offset) if not glyph.unicode then glyph.unicode = unicode end - mapmap[unicode] = index + mapping[index] = unicode index = index + 1 end end end +formatreaders[14] = function(f,fontdata,offset) + if offset and offset ~= 0 then + setposition(f,offset) + local format = readushort(f) + local length = readulong(f) + local nofrecords = readulong(f) + local records = { } + local variants = { } + fontdata.variants = variants + for i=1,nofrecords do + records[i] = { + selector = readuint(f), + default = readulong(f), -- default offset + other = readulong(f), -- non-default offset + } + end + for i=1,nofrecords do + local record = records[i] + local selector = record.selector + local default = record.default + local other = record.other + -- + -- there is no need to map the defaults to themselves + -- + -- if default ~= 0 then + -- setposition(f,offset+default) + -- local nofranges = readulong(f) + -- for i=1,nofranges do + -- local start = readuint(f) + -- local extra = readbyte(f) + -- for i=start,start+extra do + -- mapping[i] = i + -- end + -- end + -- end + local other = record.other + if other ~= 0 then + setposition(f,offset+other) + local mapping = { } + local count = readulong(f) + for i=1,count do + mapping[readuint(f)] = readushort(f) + end + variants[selector] = mapping + end + end + end +end + local function checkcmap(f,fontdata,records,platform,encoding,format) local data = records[platform] if not data then @@ -1198,12 +1299,13 @@ function readers.cmap(f,fontdata,specification) local datatable = fontdata.tables.cmap if datatable then local tableoffset = datatable.offset - f:seek("set",tableoffset) + setposition(f,tableoffset) local version = readushort(f) local noftables = readushort(f) local records = { } local unicodecid = false local variantcid = false + local variants = { } for i=1,noftables do local platform = readushort(f) local encoding = readushort(f) @@ -1235,7 +1337,7 @@ function readers.cmap(f,fontdata,specification) local formats = subtables.formats for i=1,#offsets do local offset = tableoffset + offsets[i] - f:seek("set",offset) + setposition(f,offset) formats[readushort(f)] = offset end record[encoding] = formats @@ -1246,8 +1348,11 @@ function readers.cmap(f,fontdata,specification) checkcmap(f,fontdata,records,3,10,12) -- checkcmap(f,fontdata,records,0, 3, 4) -- checkcmap(f,fontdata,records,1, 0, 6) - -- todo - variantcid = records[0] and records[0][5] + checkcmap(f,fontdata,records,0, 5,14) +-- variantcid = records[0] and records[0][5] +-- if variantcid then +-- formatreaders[14](f,fontdata,offset,variantcid[14]) +-- end -- fontdata.cidmaps = { version = version, @@ -1286,7 +1391,7 @@ function readers.kern(f,fontdata,specification) if specification.kerns then local datatable = fontdata.tables.kern if datatable then - f:seek("set",datatable.offset) + setposition(f,datatable.offset) local version = readushort(f) local noftables = readushort(f) for i=1,noftables do @@ -1345,14 +1450,7 @@ end function readers.math(f,fontdata,specification) if specification.glyphs then - local datatable = fontdata.tables.math - if datatable then - f:seek("set",datatable.offset) - local scriptlist = readulong(f) - local featurelist = readulong(f) - local lookuplist = readulong(f) - -- todo - end + reportskippedtable("math") end end @@ -1472,24 +1570,81 @@ otf.unpackoutlines = unpackoutlines -- some properties in order to read following tables. When details is true we also -- initialize the glyphs data. --- options: --- --- properties : common metrics, names, list of features --- glyphs : metrics, encoding --- shapes : sequences or segments --- kerns : global (ttf) kerns --- lookups : gsub and gpos lookups +----- validutf = lpeg.patterns.utf8character^0 * P(-1) +local validutf = lpeg.patterns.validutf8 -local function readdata(f,offset,specification) +local function getname(fontdata,key) + local names = fontdata.names + if names then + local value = names[key] + if value then + local content = value.content + return lpegmatch(validutf,content) and content or nil + end + end +end + +local function getinfo(maindata,sub) + local fontdata = sub and maindata.subfonts and maindata.subfonts[sub] or maindata + local names = fontdata.names + if names then + local metrics = fontdata.windowsmetrics or { } + local postscript = fontdata.postscript or { } + local fontheader = fontdata.fontheader or { } + local cffinfo = fontdata.cffinfo or { } + local filename = fontdata.filename + local weight = getname(fontdata,"weight") or cffinfo.weight or metrics.weight + local width = getname(fontdata,"width") or cffinfo.width or metrics.width + return { -- we inherit some inconsistencies/choices from ff + subfontindex = sub or 0, + -- filename = filename, + -- version = name("version"), + -- format = fontdata.format, + fontname = getname(fontdata,"postscriptname"), + fullname = getname(fontdata,"fullname"), -- or file.nameonly(filename) + familyname = getname(fontdata,"typographicfamily") or getname(fontdata,"family"), + subfamily = getname(fontdata,"subfamily"), + modifiers = getname(fontdata,"typographicsubfamily"), + weight = weight and lower(weight), + width = width and lower(width), + pfmweight = metrics.weightclass or 400, -- will become weightclass + pfmwidth = metrics.widthclass or 5, -- will become widthclass + panosewidth = metrics.panosewidth, + panoseweight = metrics.panoseweight, + italicangle = postscript.italicangle or 0, + units = fontheader.units or 0, + designsize = fontdata.designsize, + minsize = fontdata.minsize, + maxsize = fontdata.maxsize, + monospaced = (tonumber(postscript.monospaced or 0) > 0) or metrics.panosewidth == "monospaced", + averagewidth = metrics.averagewidth, + xheight = metrics.xheight, + } + elseif n then + return { + filename = fontdata.filename, + comment = "there is no info for subfont " .. n, + } + else + return { + filename = fontdata.filename, + comment = "there is no info", + } + end +end + +local function loadtables(f,specification,offset) if offset then - f:seek("set",offset) + setposition(f,offset) end - local tables = { } + local tables = { } local basename = file.basename(specification.filename) local filesize = specification.filesize + local filetime = specification.filetime local fontdata = { -- some can/will go filename = basename, filesize = filesize, + filetime = filetime, version = readstring(f,4), noftables = readushort(f), searchrange = readushort(f), -- not needed @@ -1511,23 +1666,44 @@ local function readdata(f,offset,specification) length = length, } end - if specification.glyphs then - local glyphs = setmetatableindex(function(t,k) - local v = { - -- maybe more defaults - index = k, - } - t[k] = v - return v - end) - local map = { - map = { }, - backmap = { }, + if tables.cff then + fontdata.format = "opentype" + else + fontdata.format = "truetype" + end + return fontdata +end + +local function prepareglyps(fontdata) + local glyphs = setmetatableindex(function(t,k) + local v = { + -- maybe more defaults + index = k, } - fontdata.glyphs = glyphs - fontdata.map = map + t[k] = v + return v + end) + fontdata.glyphs = glyphs + fontdata.mapping = { } +end + +local function readdata(f,offset,specification) + local fontdata = loadtables(f,specification,offset) + if specification.glyphs then + prepareglyps(fontdata) end + -- readers["name"](f,fontdata,specification) + -- + local askedname = specification.askedname + if askedname then + local cleanname = gsub(askedname,"[^azAZ09]","") + local foundname = gsub(getname(fontdata,"fullname") or "","[^azAZ09]","") + if lower(cleanname) ~= lower(foundname) then + return -- keep searching + end + end + -- readers["os/2"](f,fontdata,specification) readers["head"](f,fontdata,specification) readers["maxp"](f,fontdata,specification) @@ -1544,53 +1720,66 @@ local function readdata(f,offset,specification) readers["gpos"](f,fontdata,specification) readers["math"](f,fontdata,specification) -- - if readers.filterkerns then - readers.filterkerns(fontdata) - end - if readers.splitlookups then - readers.splitlookups(fontdata) - end - -- fontdata.locations = nil fontdata.tables = nil fontdata.cidmaps = nil fontdata.dictionaries = nil - -- - -- fontdata.cff = nil - -- + -- fontdata.cff = nil return fontdata end local function loadfontdata(specification) local filename = specification.filename - local filesize = file.size(filename) - local f = io.open(filename,"rb") - if f then - if filesize > 0 then - specification.filesize = filesize - local version = readstring(f,4) - local fontdata = nil - if version == "OTTO" or version == "true" or version == "\0\1\0\0" then - fontdata = readdata(f,0,specification) - elseif version == "ttcf" then - local subfont = tonumber(specification.subfont) - local offsets = { } - local ttcversion = readulong(f) - local nofsubfonts = readulong(f) - for i=1,nofsubfonts do - offsets[i] = readulong(f) + local fileattr = lfs.attributes(filename) + local filesize = fileattr and fileattr.size or 0 + local filetime = fileattr and fileattr.modification or 0 + local f = openfile(filename,true) -- zero based + if not f then + report("unable to open %a",filename) + elseif filesize == 0 then + report("empty file %a",filename) + closefile(f) + else + specification.filesize = filesize + specification.filetime = filetime + local version = readstring(f,4) + local fontdata = nil + if version == "OTTO" or version == "true" or version == "\0\1\0\0" then + fontdata = readdata(f,0,specification) + elseif version == "ttcf" then + local subfont = tonumber(specification.subfont) + local offsets = { } + local ttcversion = readulong(f) + local nofsubfonts = readulong(f) + for i=1,nofsubfonts do + offsets[i] = readulong(f) + end + if subfont then + if subfont >= 1 and subfont <= nofsubfonts then + fontdata = readdata(f,offsets[subfont],specification) + else + report("no subfont %a in file %a",subfont,filename) end - if subfont then - if subfont > 1 and subfont <= nofsubfonts then - fontdata = readdata(f,offsets[subfont],specification) - else - report("no subfont %a in file %a",subfont,filename) + else + subfont = specification.subfont + if type(subfont) == "string" and subfont ~= "" then + specification.askedname = subfont + for i=1,nofsubfonts do + fontdata = readdata(f,offsets[i],specification) + if fontdata then + report("subfont named %a has index %a",subfont,i) + break + end + end + if not fontdata then + report("no subfont named %a",subfont) end else local subfonts = { } fontdata = { filename = filename, filesize = filesize, + filetime = filetime, version = version, subfonts = subfonts, ttcversion = ttcversion, @@ -1600,21 +1789,16 @@ local function loadfontdata(specification) subfonts[i] = readdata(f,offsets[i],specification) end end - else - report("unknown version %a in file %a",version,filename) end - f:close() - return fontdata else - report("empty file %a",filename) - f:close() + report("unknown version %a in file %a",version,filename) end - else - report("unable to open %a",filename) + closefile(f) + return fontdata or { } end end -local function loadfont(specification) +local function loadfont(specification,n) if type(specification) == "string" then specification = { filename = specification, @@ -1625,7 +1809,8 @@ local function loadfont(specification) kerns = true, lookups = true, -- true or number: - subfont = true, + subfont = n or true, + tounicode = false, } end -- if shapes only then @@ -1639,7 +1824,7 @@ local function loadfont(specification) specification.info = true end local function message(str) - report("fatal error in file %a: %s",specification.filename,str) + report("fatal error in file %a: %s\n%s",specification.filename,str,debug.traceback()) end local ok, result = xpcall(loadfontdata,message,specification) if ok then @@ -1647,67 +1832,6 @@ local function loadfont(specification) end end -readers.loadfont = loadfont - ------ validutf = lpeg.patterns.utf8character^0 * P(-1) -local validutf = lpeg.patterns.validutf8 - -local function getinfo(maindata,sub) - local fontdata = sub and maindata.subfonts[sub] or maindata - local names = fontdata.names - if names then - local metrics = fontdata.windowsmetrics or { } - local postscript = fontdata.postscript or { } - local fontheader = fontdata.fontheader or { } - local cffinfo = fontdata.cffinfo or { } - local filename = fontdata.filename - -- - local function name(key) - local value = names[key] - if value then - local content = value.content - return lpegmatch(validutf,content) and content or nil - end - end - -- - local weight = name("weight") or cffinfo.weight or metrics.weight - local width = name("width") or cffinfo.width or metrics.width - local info = { -- we inherit some inconsistencies/choices from ff - subfontindex = sub or 0, - -- filename = filename, - -- version = name("version"), - fontname = name("postscriptname"), - fullname = name("fullname"), -- or file.nameonly(filename) - familyname = name("typographicfamily") or name("family"), - subfamily = name("subfamily"), - modifiers = name("typographicsubfamily"), - weight = weight and lower(weight), - width = width and lower(width), - pfmweight = metrics.weightclass or 400, -- will become weightclass - pfmwidth = metrics.widthclass or 5, -- will become widthclass - panosewidth = metrics.panosewidth, - panoseweight = metrics.panoseweight, - italicangle = postscript.italicangle or 0, - units = fontheader.units or 0, - designsize = fontdata.designsize, - minsize = fontdata.minsize, - maxsize = fontdata.maxsize, - monospaced = (tonumber(postscript.monospaced or 0) > 0) or metrics.panosewidth == "monospaced", - } - return info - elseif n then - return { - filename = fontdata.filename, - comment = "there is no info for subfont " .. n, - } - else - return { - filename = fontdata.filename, - comment = "there is no info", - } - end -end - -- we need even less, but we can have a 'detail' variant function readers.loadshapes(filename,n) @@ -1719,23 +1843,72 @@ function readers.loadshapes(filename,n) return fontdata and { -- version = 0.123 -- todo filename = filename, + format = fontdata.format, glyphs = fontdata.glyphs, units = fontdata.fontheader.units, } or { filename = filename, + format = "unknown", glyphs = { }, units = 0, } end +function readers.loadfont(filename,n) + local fontdata = loadfont { + filename = filename, + glyphs = true, + shapes = false, + lookups = true, + subfont = n, + } + if fontdata then + -- + return { + tableversion = tableversion, + -- cache_uuid = false, -- only when cached + -- cache_version = false, -- only when cached + size = fontdata.filesize, + time = fontdata.filetime, + -- warnings = { }, + glyphs = fontdata.glyphs, + descriptions = fontdata.descriptions, + format = fontdata.format, + goodies = { }, + -- lookups = { }, + metadata = getinfo(fontdata,n), + properties = { + hasitalics = fontdata.hasitalics or false, + }, + resources = { + -- anchor_to_lookup = fontdata.anchor_to_lookup or { }, + creator = "context mkiv", + duplicates = { }, -- todo + features = fontdata.features, + filename = fontdata.filename, + -- lookup_to_anchor = fontdata.lookup_to_anchor or { }, + sublookups = fontdata.sublookups, + subtables = fontdata.subtables, + -- lookuptags = { }, -- will be metatable using offsets: gsub-1, gpos-1 etc + lookuptypes = fontdata.lookuptypes or { }, + marks = fontdata.marks or { }, + markclasses = fontdata.markclasses or { }, + marksets = fontdata.marksets or { }, + private = privateoffset, + sequences = fontdata.sequences, + variants = fontdata.variants, -- variant -> unicode -> glyph + version = getname(fontdata,"version"), + cidinfo = fontdata.cidinfo, + }, + } + end +end + function readers.getinfo(filename,n,details) local fontdata = loadfont { filename = filename, details = true, } --- if string.find(filename,"ource") then --- inspect(fontdata) --- end if fontdata then local subfonts = fontdata.subfonts if not subfonts then @@ -1762,6 +1935,26 @@ function readers.getinfo(filename,n,details) end end +function readers.rehash(fontdata,hashmethod) + report("the %a helper is not yet implemented","rehash") +end + +function readers.checkhash(fontdata) + report("the %a helper is not yet implemented","checkhash") +end + +function readers.pack(fontdata,hashmethod) + report("the %a helper is not yet implemented","pack") +end + +function readers.unpack(fontdata) + report("the %a helper is not yet implemented","unpack") +end + +function readers.expand(fontdata) + report("the %a helper is not yet implemented","unpack") +end + -- if fonts.hashes then @@ -1792,7 +1985,7 @@ if fonts.hashes then data = loadshapes(filename,sub) if data then data.size = size - data.format = "opentype" + data.format = data.format or (kind == "otf" and "opentype") or "truetype" data.time = time packoutlines(data) containers.write(readers.cache,hash,data) diff --git a/tex/context/base/font-tmp.lua b/tex/context/base/font-tmp.lua index 5b4a08740..fab693d44 100644 --- a/tex/context/base/font-tmp.lua +++ b/tex/context/base/font-tmp.lua @@ -11,24 +11,23 @@ if not modules then modules = { } end modules ['font-tmp'] = { local next, type = next, type -local report = logs.reporter("otf reader") +local report = logs.reporter("otf reader") -local files = utilities.files +local readers = fonts.handlers.otf.readers +local streamreader = readers.streamreader -local readushort = files.readcardinal2 -- 16-bit unsigned integer -local readulong = files.readcardinal4 -- 24-bit unsigned integer -local readshort = files.readinteger2 -- 16-bit signed integer +local readushort = streamreader.readcardinal2 -- 16-bit unsigned integer +local readulong = streamreader.readcardinal4 -- 24-bit unsigned integer +local readshort = streamreader.readinteger2 -- 16-bit signed integer +local readtag = streamreader.readtag +local skipshort = streamreader.skipshort +local setposition = streamreader.setposition -local readtag = function(f) return f:read(4) end -local skipshort = function(f,n) f:read(n and 2*n or 2) end - -local readers = fonts.handlers.otf.readers - -local plugins = { } +local plugins = { } function plugins.size(f,fontdata,tableoffset,parameters) if not fontdata.designsize then - f:seek("set",tableoffset+parameters) + setposition(f,tableoffset+parameters) local designsize = readushort(f) if designsize > 0 then fontdata.designsize = designsize @@ -45,7 +44,7 @@ local function readscripts(f,fontdata,what) return end local tableoffset = datatable.offset - f:seek("set",tableoffset) + setposition(f,tableoffset) local version = readulong(f) if version ~= 0x00010000 then report("table version %a of %a is not supported (yet), maybe font %s is bad",version,what,fontdata.filename) @@ -56,7 +55,7 @@ local function readscripts(f,fontdata,what) local featureoffset = tableoffset + readushort(f) local lookupoffset = tableoffset + readushort(f) -- - f:seek("set",scriptoffset) + setposition(f,scriptoffset) local nofscripts = readushort(f) local scripts = { } for i=1,nofscripts do @@ -64,7 +63,7 @@ local function readscripts(f,fontdata,what) end local languagesystems = table.setmetatableindex("table") -- we share when possible for script, offset in next, scripts do - f:seek("set",offset) + setposition(f,offset) local defaultoffset = readushort(f) local noflanguages = readushort(f) local languages = { } @@ -79,7 +78,7 @@ local function readscripts(f,fontdata,what) scripts[script] = languages end -- - f:seek("set",featureoffset) + setposition(f,featureoffset) local features = { } local noffeatures = readushort(f) for i=1,noffeatures do @@ -92,7 +91,7 @@ local function readscripts(f,fontdata,what) for i=1,noffeatures do local feature = features[i] local offset = featureoffset + feature.offset - f:seek("set",offset) + setposition(f,offset) local parameters = readushort(f) -- feature.parameters local noflookups = readushort(f) skipshort(f,noflookups+1) @@ -117,4 +116,3 @@ function readers.gpos(f,fontdata,specification) readscripts(f,fontdata,"gpos") end end - diff --git a/tex/context/base/font-ttf.lua b/tex/context/base/font-ttf.lua index f89c0b14e..6df339214 100644 --- a/tex/context/base/font-ttf.lua +++ b/tex/context/base/font-ttf.lua @@ -10,16 +10,20 @@ local next, type, unpack = next, type, unpack local bittest = bit32.btest local sqrt = math.sqrt -local report = logs.reporter("otf reader","ttf") +local report = logs.reporter("otf reader","ttf") -local files = utilities.files +local readers = fonts.handlers.otf.readers +local streamreader = readers.streamreader -local readbyte = files.readcardinal1 -- 8-bit unsigned integer -local readushort = files.readcardinal2 -- 16-bit unsigned integer -local readulong = files.readcardinal4 -- 24-bit unsigned integer -local readchar = files.readinteger1 -- 8-bit signed integer -local readshort = files.readinteger2 -- 16-bit signed integer -local read2dot14 = files.read2dot14 -- 16-bit signed fixed number with the low 14 bits of fraction (2.14) (F2DOT14) +local setposition = streamreader.setposition +local getposition = streamreader.getposition +local skipbytes = streamreader.skip +local readbyte = streamreader.readcardinal1 -- 8-bit unsigned integer +local readushort = streamreader.readcardinal2 -- 16-bit unsigned integer +local readulong = streamreader.readcardinal4 -- 24-bit unsigned integer +local readchar = streamreader.readinteger1 -- 8-bit signed integer +local readshort = streamreader.readinteger2 -- 16-bit signed integer +local read2dot14 = streamreader.read2dot14 -- 16-bit signed fixed number with the low 14 bits of fraction (2.14) (F2DOT14) local function mergecomposites(glyphs,shapes) @@ -226,7 +230,8 @@ local function readglyph(f,nofcontours) end local nofpoints = endpoints[nofcontours] local nofinstructions = readushort(f) - f:seek("set",f:seek()+nofinstructions) +-- f:seek("set",f:seek()+nofinstructions) + skipbytes(f,nofinstructions) -- because flags can repeat we don't know the amount ... in fact this is -- not that efficient (small files but more mem) local i = 1 @@ -392,7 +397,7 @@ end -- need it in our usage (yet). We can remove the locations table when -- we're done (todo: cleanup finalizer). -function fonts.handlers.otf.readers.loca(f,fontdata,specification) +function readers.loca(f,fontdata,specification) if specification.glyphs then local datatable = fontdata.tables.loca if datatable then @@ -400,7 +405,7 @@ function fonts.handlers.otf.readers.loca(f,fontdata,specification) local offset = fontdata.tables.glyf.offset local format = fontdata.fontheader.indextolocformat local locations = { } - f:seek("set",datatable.offset) + setposition(f,datatable.offset) if format == 1 then local nofglyphs = datatable.length/4 - 1 -1 @@ -421,7 +426,7 @@ function fonts.handlers.otf.readers.loca(f,fontdata,specification) end end -function fonts.handlers.otf.readers.glyf(f,fontdata,specification) -- part goes to cff module +function readers.glyf(f,fontdata,specification) -- part goes to cff module if specification.glyphs then local datatable = fontdata.tables.glyf if datatable then @@ -441,7 +446,7 @@ function fonts.handlers.otf.readers.glyf(f,fontdata,specification) -- part goes fontdata.badfont = true break elseif location > 0 then - f:seek("set",location) + setposition(f,location) local nofcontours = readshort(f) glyphs[index].boundingbox = { readshort(f), -- xmin diff --git a/tex/context/base/font-vf.lua b/tex/context/base/font-vf.lua index 1fe6dd71c..bca2cf99a 100644 --- a/tex/context/base/font-vf.lua +++ b/tex/context/base/font-vf.lua @@ -24,36 +24,36 @@ local fonts = fonts local constructors = fonts.constructors local vf = constructors.newhandler("vf") --- general code - -function vf.find(name) - name = file.removesuffix(file.basename(name)) - if constructors.resolvevirtualtoo then - local format = fonts.loggers.format(name) - if format == 'tfm' or format == 'ofm' then - if trace_defining then - report_defining("locating vf for %a",name) - end - return findbinfile(name,"ovf") - else - if trace_defining then - report_defining("vf for %a is already taken care of",name) - end - return nil -- "" - end - else - if trace_defining then - report_defining("locating vf for %a",name) - end - return findbinfile(name,"ovf") - end -end - --[[ldx--

We overload the reader.

--ldx]]-- -callbacks.register('find_vf_file', vf.find, "locating virtual fonts, insofar needed") -- not that relevant any more +-- general code / already frozen +-- +-- function vf.find(name) +-- name = file.removesuffix(file.basename(name)) +-- if constructors.resolvevirtualtoo then +-- local format = fonts.loggers.format(name) +-- if format == 'tfm' or format == 'ofm' then +-- if trace_defining then +-- report_defining("locating vf for %a",name) +-- end +-- return findbinfile(name,"ovf") +-- else +-- if trace_defining then +-- report_defining("vf for %a is already taken care of",name) +-- end +-- return nil -- "" +-- end +-- else +-- if trace_defining then +-- report_defining("locating vf for %a",name) +-- end +-- return findbinfile(name,"ovf") +-- end +-- end +-- +-- callbacks.register('find_vf_file', vf.find, "locating virtual fonts, insofar needed") -- not that relevant any more -- specific code (will move to other module) diff --git a/tex/context/base/lpdf-tag.lua b/tex/context/base/lpdf-tag.lua index 79ccfe075..828bfed25 100644 --- a/tex/context/base/lpdf-tag.lua +++ b/tex/context/base/lpdf-tag.lua @@ -87,6 +87,7 @@ local specifications = structurestags.specifications local usedlabels = structurestags.labels local properties = structurestags.properties local lasttaginchain = structurestags.lastinchain +local usewithcare = structurestags.usewithcare local usedmapping = { } @@ -273,16 +274,19 @@ end local f_BDC = formatters["/%s <> BDC"] -local function makecontent(parent,id) +local function makecontent(parent,id,specification) local tag = parent.tag local kids = parent.kids local last = index if id == "image" then + local list = specification.taglist + local data = usewithcare.images[list[#list]] + local label = data and data.label local d = pdfdictionary { Type = pdf_mcr, Pg = pageref, MCID = last, - Alt = "image", + Alt = pdfunicode(label ~= "" and label or "image"), } kids[#kids+1] = d elseif pagenum == parent.pnum then @@ -303,6 +307,10 @@ local function makecontent(parent,id) return f_BDC(tag,last) end +local function makeignore(specification) + return "/Artifact BMC" +end + -- no need to adapt head, as we always operate on lists function nodeinjections.addtags(head) @@ -388,14 +396,17 @@ function nodeinjections.addtags(head) end end - local prev = common > 0 and elements[taglist[common]] or root + local prev = common > 0 and elements[taglist[common]] or root + local ignore = false + local literal = nil for j=common+1,noftags do local tag = taglist[j] local prv = elements[tag] or makeelement(tag,prev) if prv == false then -- ignore this one - prev = false + prev = false + ignore = true break elseif prv == true then -- skip this one @@ -405,9 +416,12 @@ function nodeinjections.addtags(head) end if prev then - -- use insert instead: - local literal = pdfliteral(makecontent(prev,id)) - local prev = getprev(start) + literal = pdfliteral(makecontent(prev,id,specification)) + elseif ignore then + literal = pdfliteral(makeignore(specification)) + end + if literal then + local prev = getprev(start) if prev then setfield(prev,"next",literal) setfield(literal,"prev",prev) diff --git a/tex/context/base/luat-cbk.lua b/tex/context/base/luat-cbk.lua index 8c224ad2c..65319c333 100644 --- a/tex/context/base/luat-cbk.lua +++ b/tex/context/base/luat-cbk.lua @@ -6,15 +6,11 @@ if not modules then modules = { } end modules ['luat-cbk'] = { license = "see context related readme files" } -local insert, remove, find, format = table.insert, table.remove, string.find, string.format +local insert, remove, concat = table.insert, table.remove, table.concat +local find, format = string.find, string.format local collectgarbage, type, next = collectgarbage, type, next local round = math.round -local sortedhash, tohash = table.sortedhash, table.tohash - -local trace_checking = false trackers.register("memory.checking", function(v) trace_checking = v end) - -local report_callbacks = logs.reporter("system","callbacks") -local report_memory = logs.reporter("system","memory") +local sortedhash, sortedkeys, tohash = table.sortedhash, table.sortedkeys, table.tohash --[[ldx--

Callbacks are the real asset of . They permit you to hook @@ -28,23 +24,61 @@ local callbacks = callbacks --[[ldx--

When you (temporarily) want to install a callback function, and after a while wants to revert to the original one, you can use the following two -functions.

+functions. This only works for non-frozen ones.

--ldx]]-- -local trace_callbacks = false trackers.register("system.callbacks", function(v) trace_callbacks = v end) -local trace_calls = false -- only used when analyzing performance and initializations +local trace_callbacks = false trackers.register("system.callbacks", function(v) trace_callbacks = v end) +local trace_calls = false -- only used when analyzing performance and initializations +local trace_checking = false trackers.register("memory.checking", function(v) trace_checking = v end) + +local report_system = logs.reporter("system") +local report_callbacks = logs.reporter("system","callbacks") +local report_memory = logs.reporter("system","memory") local register_callback = callback.register local find_callback = callback.find local list_callbacks = callback.list +local register_usercall = false +local original_register = register_callback -local frozen, stack, list = { }, { }, callbacks.list +local frozen = { } +local stack = { } +local list = callbacks.list +local permit_overloads = false +local block_overloads = false + +--[[ldx-- +

By now most callbacks are frozen and most provide a way to plug in your own code. For instance +all node list handlers provide before/after namespaces and the file handling code can be extended +by adding schemes and if needed I can add more hooks. So there is no real need to overload a core +callback function. It might be ok for quick and dirty testing but anyway you're on your own if +you permanently overload callback functions.

+--ldx]]-- + +-- This might become a configuration file only option when it gets abused too much. + +directives.register("system.callbacks.permitoverloads", function(v) + if block_overloads or permit_overloads then + -- once bad news, always bad news + elseif v then + permit_overloads = { } + report_system() + report_system("The callback system has been brought in an unprotected state. As a result of directly") + report_system("setting of callbacks subsystems of ConTeXt can stop working. There is no support for") + report_system("bugs resulting from this state. It's better to use the official extension mechanisms.") + report_system() + end +end) + +sandbox.initializer(function() + block_overloads = true +end) if not list then -- otherwise counters get reset list = utilities.storage.allocate(list_callbacks()) - for k, _ in next, list do + for k in next, list do list[k] = 0 end @@ -56,11 +90,9 @@ local delayed = tohash { "buildpage_filter", } - if trace_calls then local functions = { } - local original = register_callback register_callback = function(name,func) if type(func) == "function" then @@ -73,21 +105,45 @@ if trace_calls then list[name] = list[name] + 1 return functions[name](...) end - return original(name,cnuf) + return original_register(name,cnuf) end else - return original(name,func) + return original_register(name,func) end end end +local reported = { } + +local function register_usercall(what,name,func) + if list[name] then + if trace_callbacks or not reported[name] then + report_system() + report_system("disabling core code by %s user function into callback '%s' (reported only once)",what,name) + report_system() + reported[name] = true + end + permit_overloads[name] = true + return original_register(name,function(...) + if trace_callbacks then + report_callbacks("calling user function from '%s'",name) + end + return func(...) + end) + else + report_callbacks("not %s function into invalid callback '%s'",name) + return nil, format("unknown callback '%s'",name) + end +end + local function frozen_message(what,name) - report_callbacks("not %s frozen %a to %a",what,name,frozen[name]) + report_callbacks("not %s frozen %a",what,name) end local function frozen_callback(name) - return nil, format("callback '%s' is frozen to '%s'",name,frozen[name]) -- no formatter yet + frozen_message("registering",name) + return nil, format("callback '%s' is frozen",name) -- no formatter yet end local function state(name) @@ -117,25 +173,28 @@ function callbacks.report() end function callbacks.freeze(name,freeze) - freeze = type(freeze) == "string" and freeze - if find(name,"*",1,true) then - local pattern = name - for name, _ in next, list do - if find(name,pattern) then - frozen[name] = freeze or frozen[name] or "frozen" + if not permit_overloads then + freeze = type(freeze) == "string" and freeze + if find(name,"*",1,true) then + local pattern = name + for name, _ in next, list do + if find(name,pattern) then + frozen[name] = freeze or frozen[name] or "frozen" + end end + else + frozen[name] = freeze or frozen[name] or "frozen" end - else - frozen[name] = freeze or frozen[name] or "frozen" end end function callbacks.register(name,func,freeze) if frozen[name] then - if trace_callbacks then - frozen_message("registering",name) + if permit_overloads then + return register_usercall("registering",name,func) + else + return frozen_callback(name) end - return frozen_callback(name) elseif freeze then frozen[name] = type(freeze) == "string" and freeze or "registered" end @@ -148,36 +207,41 @@ end function callback.register(name,func) -- original if not frozen[name] then return register_callback(name,func) - elseif trace_callbacks then - frozen_message("registering",name) + elseif permit_overloads then + return register_usercall("registering",name,func) + else + return frozen_callback(name) end - return frozen_callback(name) end function callbacks.push(name,func) - if not frozen[name] then + if not frozen[name] or permit_overloads then local sn = stack[name] if not sn then sn = { } stack[name] = sn end insert(sn,find_callback(name)) - register_callback(name, func) - elseif trace_callbacks then + if permit_overloads then + register_usercall("pushing",name,func) + else + register_callback(name,func) + end + else frozen_message("pushing",name) end end function callbacks.pop(name) - if not frozen[name] then + if not frozen[name] or permit_overloads then local sn = stack[name] if not sn or #sn == 0 then -- some error - register_callback(name, nil) -- ! really needed + register_callback(name,nil) -- ! really needed else -- this fails: register_callback(name, remove(stack[name])) local func = remove(sn) - register_callback(name, func) + register_callback(name,func) end end end @@ -194,6 +258,12 @@ if trace_calls then end) end +statistics.register("callbacks overloaded by user", function() + if permit_overloads then + return concat(sortedkeys(permit_overloads)," ") + end +end) + -- -- somehow crashes later on -- -- callbacks.freeze("find_.*_file","finding file") diff --git a/tex/context/base/luat-fio.lua b/tex/context/base/luat-fio.lua index dcc183167..daa6cccb7 100644 --- a/tex/context/base/luat-fio.lua +++ b/tex/context/base/luat-fio.lua @@ -66,11 +66,11 @@ if not resolvers.instance then register('read_sfd_file' , function(file) return loadbinfile(file,"sfd") end, true) register('read_vf_file' , function(file) return loadbinfile(file,"vf" ) end, true) - register('find_font_file' , function(name) return findbinfile(name,"ofm") end, true) - register('find_vf_file' , function(name) return findbinfile(name,"ovf") end, true) + -- register('find_font_file' , function(name) return findbinfile(name,"ofm") end, true) + -- register('find_vf_file' , function(name) return findbinfile(name,"ovf") end, true) - register('read_font_file' , function(file) return loadbinfile(file,"ofm") end, true) - register('read_vf_file' , function(file) return loadbinfile(file,"ovf") end, true) + -- register('read_font_file' , function(file) return loadbinfile(file,"ofm") end, true) + -- register('read_vf_file' , function(file) return loadbinfile(file,"ovf") end, true) -- register('read_opentype_file' , function(file) return loadbinfile(file,"otf") end, true) -- register('read_truetype_file' , function(file) return loadbinfile(file,"ttf") end, true) diff --git a/tex/context/base/luat-lib.mkiv b/tex/context/base/luat-lib.mkiv index 62a53c5dc..cbe15c8a1 100644 --- a/tex/context/base/luat-lib.mkiv +++ b/tex/context/base/luat-lib.mkiv @@ -16,6 +16,7 @@ \registerctxluafile{util-str}{1.001} \registerctxluafile{util-tab}{1.001} \registerctxluafile{util-fil}{1.001} +\registerctxluafile{util-sac}{1.001} \registerctxluafile{util-sto}{1.001} % could also be done in trac-deb.mkiv \registerctxluafile{util-pck}{1.001} \registerctxluafile{util-seq}{1.001} diff --git a/tex/context/base/lxml-ini.mkiv b/tex/context/base/lxml-ini.mkiv index fab644fdb..4a6d530db 100644 --- a/tex/context/base/lxml-ini.mkiv +++ b/tex/context/base/lxml-ini.mkiv @@ -496,7 +496,25 @@ \unexpanded\def\xmlresetinjectors {\clf_xmlresetinjectors{}} -\def\xmlinjector#1{\executeifdefined{#1}\donothing} +% \def\xmlinjector#1{\executeifdefined{#1}\donothing} + +\def\xmlinjector#1{\fastsetup{xml:directive:injector:#1}} + +\startsetups xml:directive:injector:page + \page +\stopsetups + +\startsetups xml:directive:injector:column + \column +\stopsetups + +\startsetups xml:directive:injector:blank + \blank +\stopsetups + +\startsetups xml:directive:injector:noline + \vskip-\lineheight +\stopsetups \let\xmlapplyselectors\clf_xmlapplyselectors diff --git a/tex/context/base/lxml-tex.lua b/tex/context/base/lxml-tex.lua index 4c995acdb..5b4b16184 100644 --- a/tex/context/base/lxml-tex.lua +++ b/tex/context/base/lxml-tex.lua @@ -1948,13 +1948,15 @@ function lxml.applyselectors(id) end end end - if not trace_selectors then - -- skip - elseif okay then - report_lxml("accepting selector: %s",okay) + if okay then + if trace_selectors then + report_lxml("accepting selector: %s",okay) + end else categories.begin = false - report_lxml("rejecting selector: % t",sortedkeys(categories)) + if trace_selectors then + report_lxml("rejecting selector: % t",sortedkeys(categories)) + end end for j=i,ndt do local dtj = dt[j] @@ -1992,13 +1994,15 @@ function lxml.applyselectors(id) end end end - if not trace_selectors then - -- skip - elseif okay then - report_lxml("accepting include: %s",okay) + if okay then + if trace_selectors then + report_lxml("accepting include: %s",okay) + end else categories.begin = false - report_lxml("rejecting include: % t",sortedkeys(categories)) + if trace_selectors then + report_lxml("rejecting include: % t",sortedkeys(categories)) + end end if okay then for j=i,ndt do diff --git a/tex/context/base/meta-imp-outlines.mkiv b/tex/context/base/meta-imp-outlines.mkiv index d47ec7754..ceecb9bbe 100644 --- a/tex/context/base/meta-imp-outlines.mkiv +++ b/tex/context/base/meta-imp-outlines.mkiv @@ -59,7 +59,7 @@ function metapost.showglyph(specification) return end local glyph = shapeglyphs[index] - if glyph and glyph.segments or glyph.sequence then + if glyph and (glyph.segments or glyph.sequence) then local units = data.fontheader and data.fontheader.emsize or 1000 local factor = 100/units local paths = metapost.paths(glyph,factor) @@ -108,7 +108,27 @@ function metapost.showglyph(specification) shape(index,index,f_index) return end - for index=1,#shapeglyphs do + local first, last + if type(index) == "string" then + first, last = string.match(index,"^(.-):(.*)$") + if first and last then + first = tonumber(first) + last = tonumber(last) + else + first = tonumber(index) + last = first + end + if not first then + first = 1 + last = #shapeglyphs + elseif not last then + last = first + end + else + first = 1 + last = #shapeglyphs + end + for index=first,last do shape(index,index,f_index) end end @@ -138,7 +158,6 @@ end \starttext \setupbodyfont[pagella] - \showshape[character=all,alternative=page] % \setupbodyfont[dejavu] @@ -147,4 +166,7 @@ end % \definedfont[almfixed] % \showshape[character=all,alternative=page] +% \definedfont[file:sourcehansans-bold.otf] +% \showshape[index=40000:41000,alternative=page] + \stoptext diff --git a/tex/context/base/node-fnt.lua b/tex/context/base/node-fnt.lua index 2edaa04ea..336164c48 100644 --- a/tex/context/base/node-fnt.lua +++ b/tex/context/base/node-fnt.lua @@ -351,22 +351,21 @@ function handlers.characters(head) -- skip elseif b == 1 then -- only one font - local front = head == start local range = basefonts[1] local start = range[1] local stop = range[2] - if stop then - start, stop = ligaturing(start,stop) - start, stop = kerning(start,stop) - elseif start then -- safeguard - start = ligaturing(start) - start = kerning(start) - else - -- something bad happened - end - if front then - -- shouldn't happen - head = start + if (start or stop) and (start ~= stop) then + local front = head == start + if stop then + start, stop = ligaturing(start,stop) + start, stop = kerning(start,stop) + elseif start then -- safeguard + start = ligaturing(start) + start = kerning(start) + end + if front then + head = start + end end else -- multiple fonts @@ -375,19 +374,34 @@ function handlers.characters(head) local range = basefonts[i] local start = range[1] local stop = range[2] - if stop then - start, stop = ligaturing(start,stop) - start, stop = kerning(start,stop) - elseif start then -- safeguard - start = ligaturing(start) - start = kerning(start) - else - -- something bad happened + if (start or stop) and (start ~= stop) then + local prev, next + if stop then + next = getnext(stop) + start, stop = ligaturing(start,stop) + start, stop = kerning(start,stop) + elseif start then -- safeguard + prev = getprev(start) + start = ligaturing(start) + start = kerning(start) + end + if prev then + setfield(start,"prev",prev) + setfield(prev,"next",start) + end + if next then + setfield(stop,"next",next) + setfield(next,"prev",start) + end + if front then + head = start + front = nil -- we assume a proper sequence + end + end + if front then + -- shouldn't happen + head = start end - end - if front then - -- shouldn't happen - head = start end end stoptiming(nodes) diff --git a/tex/context/base/s-fonts-shapes.lua b/tex/context/base/s-fonts-shapes.lua index bca860f3f..8f872e4bc 100644 --- a/tex/context/base/s-fonts-shapes.lua +++ b/tex/context/base/s-fonts-shapes.lua @@ -303,7 +303,10 @@ function moduledata.fonts.shapes.showallglypshapes(specification) local id, cs = fonts.definers.internal(specification,"") local descriptions = fontdata[id].descriptions for unicode, description in fonts.iterators.descriptions(tfmdata) do - context.modulefontsstartshowglyphshape(unicode,description.name) + if unicode >= 0x110000 then + break + end + context.modulefontsstartshowglyphshape(unicode,description.name or "",description.index or 0) showglyphshape { number = id, character = unicode } context.modulefontsstopshowglyphshape() end diff --git a/tex/context/base/s-fonts-shapes.mkiv b/tex/context/base/s-fonts-shapes.mkiv index f8eb8ffdd..c1e9d61d2 100644 --- a/tex/context/base/s-fonts-shapes.mkiv +++ b/tex/context/base/s-fonts-shapes.mkiv @@ -20,21 +20,22 @@ \installmodulecommandluatwo \showlastglyphshapefield {moduledata.fonts.shapes.showlastglyphshapefield} \installmodulecommandluasingle \showallglyphshapes {moduledata.fonts.shapes.showallglypshapes} -\let\modulefontsstartshowglyphshape\relax +\let\modulefontsstartshowglyphshape\gobblethreearguments \let\modulefontsstopshowglyphshape \relax \unprotect \startsetups module:showallglyphshapes:start - \def\modulefontsstartshowglyphshape##1##2{ + \unexpanded\def\modulefontsstartshowglyphshape##1##2##3{ \startTEXpage[\c!offset=\exheight] \edef\lastshownglyphshapefieldunicode{##1}% \edef\lastshownglyphshapefieldname {##2}% + \edef\lastshownglyphshapefieldindex {##3}% \raggedcenter } - \def\modulefontsstopshowglyphshape { + \unexpanded\def\modulefontsstopshowglyphshape { \par \doifsomething {\lastshownglyphshapefieldunicode} { \begingroup @@ -43,8 +44,10 @@ \setstrut \strut 0x\uchexnumbers\lastshownglyphshapefieldunicode - :\space + \space:\space \lastshownglyphshapefieldname + \space:\space + \lastshownglyphshapefieldindex \par \endgroup } @@ -80,38 +83,33 @@ \starttext - \savedefinedfont[Bold*default] +% \savedefinedfont[Bold*default] +% \showfontshapes[number=\saveddefinedfontid] +% \page - \showfontshapes[number=\saveddefinedfontid] - - \page - - \showfontshapes[name=BoldItalic*default] - - \page +% \showfontshapes[name=BoldItalic*default] +% \page % \startTEXpage \ShowGlyphShape{simplenaskhi}{100bp}{0x62A} \stopTEXpage % \startTEXpage \ShowGlyphShape{simplenaskhi}{100bp}{0x2004} \stopTEXpage % \startTEXpage \ShowGlyphShape{simplenaskhi}{100bp}{0xF0299} \stopTEXpage % \startTEXpage \ShowGlyphShape{simplenaskhi}{100bp}{NameMe.1190} \stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{20bp}{0x00066}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{20bp}{0x1D453}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{20bp}{0x1D43F}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D444}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D447}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x02112}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D432}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D43D}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D44A}\stopTEXpage - \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D45D}\stopTEXpage - - \page +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{20bp}{0x00066}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{20bp}{0x1D453}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{20bp}{0x1D43F}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D444}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D447}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x02112}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D432}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D43D}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D44A}\stopTEXpage +% \startTEXpage[offset=0pt]\ShowGlyphShape{name:cambria-math}{50bp}{0x1D45D}\stopTEXpage +% \page % \showallglyphshapes[name=name:cambria-math,size=100bp] - % \showallglyphshapes[name=name:dejavuserif,size=100bp] - -\stoptext +% \showallglyphshapes[name=name:dejavuserif,size=100bp] +\showallglyphshapes[name=file:brill.otf,size=100bp] \stoptext diff --git a/tex/context/base/status-files.pdf b/tex/context/base/status-files.pdf index 284cbe4ee..6c0039c43 100644 Binary files a/tex/context/base/status-files.pdf and b/tex/context/base/status-files.pdf differ diff --git a/tex/context/base/status-lua.pdf b/tex/context/base/status-lua.pdf index b6f735205..4aea7255e 100644 Binary files a/tex/context/base/status-lua.pdf and b/tex/context/base/status-lua.pdf differ diff --git a/tex/context/base/strc-num.mkiv b/tex/context/base/strc-num.mkiv index 58095b8e7..bad4be514 100644 --- a/tex/context/base/strc-num.mkiv +++ b/tex/context/base/strc-num.mkiv @@ -247,7 +247,7 @@ \def\strc_counters_setown_two [#1][#2][#3]{\clf_setownsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax{#3}} \def\strc_counters_restart_two [#1][#2][#3]{\clf_restartsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax\numexpr#3\relax} \def\strc_counters_reset_two [#1][#2]{\clf_resetsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} -\def\strc_counters_increment_two [#1][#2]{\clf_incrementsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} +%def\strc_counters_increment_two [#1][#2]{\clf_incrementsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} \def\strc_counters_decrement_two [#1][#2]{\clf_decrementsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} \def\strc_counters_raw_two [#1][#2]{\clf_subcountervalue {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} @@ -261,7 +261,7 @@ \def\strc_counters_setown_one [#1][#2][#3]{\clf_setowncounter {\namedcounterparameter{#1}\s!name}{#2}} \def\strc_counters_restart_one [#1][#2][#3]{\clf_restartcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} \def\strc_counters_reset_one [#1][#2]{\clf_resetcounter {\namedcounterparameter{#1}\s!name}} -\def\strc_counters_increment_one [#1][#2]{\clf_incrementcounter {\namedcounterparameter{#1}\s!name}} +%def\strc_counters_increment_one [#1][#2]{\clf_incrementcounter {\namedcounterparameter{#1}\s!name}} \def\strc_counters_decrement_one [#1][#2]{\clf_decrementcounter {\namedcounterparameter{#1}\s!name}} \def\strc_counters_raw_one [#1][#2]{\clf_countervalue {\namedcounterparameter{#1}\s!name}} @@ -278,7 +278,7 @@ \unexpanded\def\strc_counters_setown #1#2{\clf_setowncounter {\namedcounterparameter{#1}\s!name}{#2}} \unexpanded\def\strc_counters_restart #1#2{\clf_restartcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} \unexpanded\def\strc_counters_reset #1{\clf_resetcounter {\namedcounterparameter{#1}\s!name}} -\unexpanded\def\strc_counters_increment #1{\clf_incrementcounter {\namedcounterparameter{#1}\s!name}} +%unexpanded\def\strc_counters_increment #1{\clf_incrementcounter {\namedcounterparameter{#1}\s!name}} \unexpanded\def\strc_counters_decrement #1{\clf_decrementcounter {\namedcounterparameter{#1}\s!name}} \def\strc_counters_raw #1{\clf_countervalue {\namedcounterparameter{#1}\s!name}} @@ -292,7 +292,7 @@ \unexpanded\def\strc_counters_setown_sub #1#2#3{\clf_setownsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax{#3}} \unexpanded\def\strc_counters_restart_sub #1#2#3{\clf_restartsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax\numexpr#3\relax} \unexpanded\def\strc_counters_reset_sub #1#2{\clf_resetsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} -\unexpanded\def\strc_counters_increment_sub #1#2{\clf_incrementsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} +%unexpanded\def\strc_counters_increment_sub #1#2{\clf_incrementsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} \unexpanded\def\strc_counters_decrement_sub #1#2{\clf_decrementsubcounter {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} \def\strc_counters_raw_sub #1#2{\clf_subcountervalue {\namedcounterparameter{#1}\s!name}\numexpr#2\relax} % maybe raw @@ -342,6 +342,14 @@ \fi \clf_incrementsubcounter{\namedcounterparameter{#1}\s!name}\numexpr#2\relax} +% We also need to redefine these because of the page check: + + \def\strc_counters_increment_two [#1][#2]{\strc_counters_increment_sub{#1}{#2}} + \def\strc_counters_increment_one [#1][#2]{\strc_counters_increment_sub{#1}\plusone} +\unexpanded\def\strc_counters_increment #1{\strc_counters_increment_sub{#1}\plusone} + +% so far for the hack + \unexpanded\def\convertedcounter {\dodoubleempty\strc_counters_converted} diff --git a/tex/context/base/strc-ref.lua b/tex/context/base/strc-ref.lua index 2a1d0dd59..6c500e14d 100644 --- a/tex/context/base/strc-ref.lua +++ b/tex/context/base/strc-ref.lua @@ -2078,9 +2078,9 @@ local function getcurrentprefixspec(default) local data = currentreference and currentreference.i local metadata = data and data.metadata return - metatadata and metadata.kind or "?", - metatadata and metadata.name or "?", - default or "?" + metadata and metadata.kind or "?", + metadata and metadata.name or "?", + default or "?" end references.getcurrentprefixspec = getcurrentprefixspec diff --git a/tex/context/base/strc-tag.mkiv b/tex/context/base/strc-tag.mkiv index f2b59c29c..bb1fe200d 100644 --- a/tex/context/base/strc-tag.mkiv +++ b/tex/context/base/strc-tag.mkiv @@ -262,6 +262,11 @@ \let\strc_tags_start_nop_chained \gobblethreearguments \let\strc_tags_stop_nop \donothing +\def\strc_tags_start_yes_ignore{\clf_starttag{\t!ignore}} +\let\strc_tags_stop_yes_ignore \strc_tags_stop_yes +\let\strc_tags_start_nop_ignore\donothing +\let\strc_tags_stop_nop_ignore \donothing + % more efficient: % \dostarttagged % {tag} {detail} @@ -276,13 +281,17 @@ {\let\dostarttagged \strc_tags_enabled_start_detail \let\dostarttaggednodetail\strc_tags_enabled_start_no_detail \let\dostarttaggedchained \strc_tags_enabled_start_chained - \let\dostoptagged \strc_tags_enabled_stop} + \let\dostoptagged \strc_tags_enabled_stop + \let\dostartignoretagging \strc_tags_start_yes_ignore + \let\dostopignoretagging \strc_tags_stop_yes_ignore} \unexpanded\def\strc_tags_disable {\let\dostarttagged \strc_tags_start_nop_detail \let\dostarttaggednodetail\strc_tags_start_nop_no_detail \let\dostarttaggedchained \strc_tags_start_nop_chained - \let\dostoptagged \strc_tags_stop_nop} + \let\dostoptagged \strc_tags_stop_nop + \let\dostartignoretagging \strc_tags_start_nop_ignore + \let\dostopignoretagging \strc_tags_stop_nop_ignore} % for luigi (beware: fully expandable): @@ -434,6 +443,16 @@ \strc_tags_disable \to \everybeforepagebody +%D This will only work well with sane use. + +\appendtoks + \dostartignoretagging +\to \everybeforepagebody + +\appendtoks + \dostopignoretagging +\to \everyafterpagebody + % \doifelseinelement{structure:section} {yes} {no} % \doifelseinelement{structure:chapter} {yes} {no} % \doifelseinelement{division:*-structure:chapter} {yes} {no} diff --git a/tex/context/base/type-imp-mscore.mkiv b/tex/context/base/type-imp-mscore.mkiv index 19276c017..971a03de7 100644 --- a/tex/context/base/type-imp-mscore.mkiv +++ b/tex/context/base/type-imp-mscore.mkiv @@ -31,6 +31,14 @@ \definefontsynonym [\s!SansBoldItalic] [\s!file:arialbi.ttf] [\s!features=\s!default] \stoptypescript + \starttypescript [\s!sans] [mscorearialnarrow] [\s!name] + \setups[\s!font:\s!fallback:\s!sans] + \definefontsynonym [\s!Sans] [\s!file:arialn.ttf] [\s!features=\s!default] + \definefontsynonym [\s!SansBold] [\s!file:arialnb.ttf] [\s!features=\s!default] + \definefontsynonym [\s!SansItalic] [\s!file:arialni.ttf] [\s!features=\s!default] + \definefontsynonym [\s!SansBoldItalic] [\s!file:arialnbi.ttf] [\s!features=\s!default] + \stoptypescript + \starttypescript [\s!mono] [mscorecourier] [\s!name] \setups[\s!font:\s!fallback:\s!mono] \definefontsynonym [\s!Mono] [\s!file:cour.ttf] [\s!features=\s!none] @@ -54,6 +62,13 @@ \definetypeface [mscore] [\s!mm] [\s!math] [times] [\s!default] [\s!rscale=1.020] \stoptypescript + \starttypescript[mscorenarrow] + \definetypeface [mscorenarrow] [\s!rm] [\s!serif] [mscoretimes] [\s!default] + \definetypeface [mscorenarrow] [\s!ss] [\s!sans] [mscorearialnarrow] [\s!default] [\s!rscale=0.860] + \definetypeface [mscorenarrow] [\s!tt] [\s!mono] [mscorecourier] [\s!default] [\s!rscale=1.065] + \definetypeface [mscorenarrow] [\s!mm] [\s!math] [times] [\s!default] [\s!rscale=1.020] + \stoptypescript + % \starttypescript[mscoress] % \definetypeface [mscoress] [\s!ss] [\s!sans] [mscorearial] [\s!default] % \definetypeface [mscoress] [\s!rm] [\s!serif] [mscoretimes] [\s!default] [rscale=1.160] diff --git a/tex/context/base/util-fil.lua b/tex/context/base/util-fil.lua index fe6a117fa..3e8c8ea23 100644 --- a/tex/context/base/util-fil.lua +++ b/tex/context/base/util-fil.lua @@ -6,7 +6,7 @@ if not modules then modules = { } end modules ['util-fil'] = { license = "see context related readme files" } -local byte = string.byte +local byte = string.byte local extract = bit32.extract -- Here are a few helpers (the starting point were old ones I used for parsing @@ -17,20 +17,72 @@ utilities = utilities or { } local files = { } utilities.files = files -function files.readbyte(f) - return byte(f:read(1)) +local zerobased = { } + +function files.open(filename,zb) + local f = io.open(filename,"rb") + zerobased[f] = zb or false + return f end -function files.readchar(f) - return f:read(1) +function files.close(f) + zerobased[f] = nil + f:close() +end + +function files.size(f) + return f:seek("end") +end + +function files.setposition(f,n) + if zerobased[f] then + f:seek("set",n) + else + f:seek("set",n - 1) + end +end + +function files.getposition(f) + if zerobased[f] then + return f:seek() + else + return f:seek() + 1 + end +end + +function files.look(f,n,chars) + local p = f:seek() + local s = f:read(n) + f:seek("set",p) + if chars then + return s + else + return byte(s,1,#s) + end +end + +function files.skip(f,n) + if n == 1 then + f:read(n) + else + f:seek("set",f:seek()+n) + end +end + +function files.readbyte(f) + return byte(f:read(1)) end function files.readbytes(f,n) return byte(f:read(n),1,n) end -function files.skipbytes(f,n) - f:read(n or 1) -- or a seek +function files.readchar(f) + return f:read(1) +end + +function files.readstring(f,n) + return f:read(n or 1) end function files.readinteger1(f) -- one byte @@ -91,10 +143,6 @@ function files.readfixed4(f) end end -function files.readstring(f,n) - return f:read(n or 1) -end - function files.read2dot14(f) local a, b = byte(f:read(2),1,2) local n = 0x100 * a + b @@ -107,3 +155,11 @@ function files.read2dot14(f) return n + m/0x4000 end end + +function files.skipshort(f,n) + f:read(2*(n or 1)) +end + +function files.skiplong(f,n) + f:read(4*(n or 1)) +end diff --git a/tex/context/base/util-sac.lua b/tex/context/base/util-sac.lua new file mode 100644 index 000000000..8a12e7cf0 --- /dev/null +++ b/tex/context/base/util-sac.lua @@ -0,0 +1,202 @@ +if not modules then modules = { } end modules ['util-sac'] = { + version = 1.001, + comment = "companion to luat-lib.mkiv", + author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", + copyright = "PRAGMA ADE / ConTeXt Development Team", + license = "see context related readme files" +} + +-- experimental string access (some 3 times faster than file access when messing +-- with bytes) + +local byte, sub = string.byte, string.sub +local extract = bit32.extract + +utilities = utilities or { } +local streams = { } +utilities.streams = streams + +function streams.open(filename,zerobased) + local f = io.loaddata(filename) + return { f, 1, #f, zerobased or false } +end + +function streams.close() + -- dummy +end + +function streams.size(f) + return f and f[3] or 0 +end + +function streams.setposition(f,i) + if f[4] then + -- zerobased + if i <= 0 then + f[2] = 1 + else + f[2] = i + 1 + end + else + if i <= 1 then + f[2] = 1 + else + f[2] = i + end + end +end + +function streams.getposition(f) + if f[4] then + -- zerobased + return f[2] - 1 + else + return f[2] + end +end + +function streams.look(f,n,chars) + local b = f[2] + local e = b + n - 1 + if chars then + return sub(f[1],b,e) + else + return byte(f[1],b,e) + end +end + +function streams.skip(f,n) + f[2] = f[2] + n +end + +function streams.readbyte(f) + local i = f[2] + f[2] = i + 1 + return byte(f[1],i) +end + +function streams.readbytes(f,n) + local i = f[2] + local j = i + n + f[2] = j + return byte(f[1],i,j-1) +end + +function streams.skipbytes(f,n) + f[2] = f[2] + n +end + +function streams.readchar(f) + local i = f[2] + f[2] = i + 1 + return sub(f[1],i,i) +end + +function streams.readstring(f,n) + local i = f[2] + local j = i + n + f[2] = j + return sub(f[1],i,j-1) +end + +function streams.readinteger1(f) -- one byte + local i = f[2] + f[2] = i + 1 + local n = byte(f[1],i) + if n >= 0x80 then + return n - 0xFF - 1 + else + return n + end +end + +streams.readcardinal1 = streams.readbyte -- one byte +streams.readcardinal = streams.readcardinal1 +streams.readinteger = streams.readinteger1 + +function streams.readcardinal2(f) + local i = f[2] + local j = i + 1 + f[2] = j + 1 + local a, b = byte(f[1],i,j) + return 0x100 * a + b +end + +function streams.readinteger2(f) + local i = f[2] + local j = i + 1 + f[2] = j + 1 + local a, b = byte(f[1],i,j) + local n = 0x100 * a + b + if n >= 0x8000 then + return n - 0xFFFF - 1 + else + return n + end +end + +function streams.readcardinal3(f) + local i = f[2] + local j = i + 2 + f[2] = j + 1 + local a, b, c = byte(f[1],i,j) + return 0x10000 * a + 0x100 * b + c +end + +function streams.readcardinal4(f) + local i = f[2] + local j = i + 3 + f[2] = j + 1 + local a, b, c, d = byte(f[1],i,j) + return 0x1000000 * a + 0x10000 * b + 0x100 * c + d +end + +function streams.readinteger4(f) + local i = f[2] + local j = i + 3 + f[2] = j + 1 + local a, b, c, d = byte(f[1],i,j) + local n = 0x1000000 * a + 0x10000 * b + 0x100 * c + d + if n >= 0x8000000 then + return n - 0xFFFFFFFF - 1 + else + return n + end +end + +function streams.readfixed4(f) + local i = f[2] + local j = i + 3 + f[2] = j + 1 + local a, b, c, d = byte(f[1],i,j) + local n = 0x100 * a + b + if n >= 0x8000 then + return n - 0xFFFF - 1 + (0x100 * c + d)/0xFFFF + else + return n + (0x100 * c + d)/0xFFFF + end +end + +function streams.read2dot14(f) + local i = f[2] + local j = i + 1 + f[2] = j + 1 + local a, b = byte(f[1],i,j) + local n = 0x100 * a + b + local m = extract(n,0,30) + if n > 0x7FFF then + n = extract(n,30,2) + return m/0x4000 - 4 + else + n = extract(n,30,2) + return n + m/0x4000 + end +end + +function streams.skipshort(f,n) + f[2] = f[2] + 2*(n or 1) +end + +function streams.skiplong(f,n) + f[2] = f[2] + 4*(n or 1) +end diff --git a/tex/context/base/x-asciimath.lua b/tex/context/base/x-asciimath.lua index 451cd5925..7835d8f93 100644 --- a/tex/context/base/x-asciimath.lua +++ b/tex/context/base/x-asciimath.lua @@ -117,6 +117,7 @@ local reserved = { ["sqrt"] = { false, "\\asciimathsqrt", "unary" }, ["root"] = { false, "\\asciimathroot", "binary" }, +-- ["\\frac"] = { false, "\\frac", "binary" }, ["frac"] = { false, "\\frac", "binary" }, ["stackrel"] = { false, "\\asciimathstackrel", "binary" }, ["hat"] = { false, "\\widehat", "unary" }, @@ -699,7 +700,7 @@ local reserved = { -- a bit special: - ["\\frac"] = { true, "frac" }, +-- ["\\frac"] = { true, "frac" }, -- now it gets real crazy, only these two: @@ -851,7 +852,10 @@ local digitsymbol = "." function asciimath.setup(settings) splitmethod = splitmethods[tonumber(settings.splitmethod) or 0] if splitmethod then - digitsymbol = settings.symbol or "." + digitsymbol = settings.symbol + if not digitsymbol or digitsymbol == "" then + digitsymbol = "." + end local separator = settings.separator if separator == true or not interfaces or interfaces.variables.yes then digitseparator = utfchar(0x2008) @@ -889,6 +893,7 @@ end -- asciimath.setup { splitmethod = 3, symbol = "," } -- local t = { +-- "0.00002", -- "1", "12", "123", "1234", "12345", "123456", "1234567", "12345678", "123456789", -- "1.1", -- "12.12", @@ -1105,6 +1110,7 @@ local p_special = local u_parser = Cs ( ( patterns.doublequoted + P("text") * p_spaces^0 * P("(") * (1-P(")"))^0 * P(")") + -- -- todo: balanced + P("\\frac") / "frac" + -- bah p_unicode + p_utf_base )^0 ) @@ -1883,7 +1889,9 @@ if not context then -- convert("sqrt") -- convert("^") --- convert("\\frac{a}{b}") +-- convert[[\frac{a}{b}]] +-- convert[[frac{a}{b}]] + -- convert("frac{a}{b}") -- convert("\\sin{a}{b}") -- convert("sin{a}{b}") diff --git a/tex/generic/context/luatex/luatex-fonts-cbk.lua b/tex/generic/context/luatex/luatex-fonts-cbk.lua index 81b5b6e85..9da8151de 100644 --- a/tex/generic/context/luatex/luatex-fonts-cbk.lua +++ b/tex/generic/context/luatex/luatex-fonts-cbk.lua @@ -160,12 +160,31 @@ function nodes.handlers.nodepass(head) local range = basefonts[i] local start = range[1] local stop = range[2] - if stop then - start, stop = ligaturing(start,stop) - start, stop = kerning(start,stop) - elseif start then - start = ligaturing(start) - start = kerning(start) + -- maybe even: if start and start ~= stop then + if start or stop then + local prev = nil + local next = nil + local front = start == head + if stop then + next = stop.next + start, stop = ligaturing(start,stop) + start, stop = kerning(start,stop) + elseif start then + prev = start.prev + start = ligaturing(start) + start = kerning(start) + end + if prev then + start.prev = prev + prev.next = start + end + if next then + stop.next = next + next.prev = stop + end + if front then + head = start + end end end end @@ -176,7 +195,7 @@ function nodes.handlers.nodepass(head) end function nodes.handlers.basepass(head) - if not basepass then + if basepass then head = ligaturing(head) head = kerning(head) end diff --git a/tex/generic/context/luatex/luatex-fonts-merged.lua b/tex/generic/context/luatex/luatex-fonts-merged.lua index edbce4b8f..6597ca93c 100644 --- a/tex/generic/context/luatex/luatex-fonts-merged.lua +++ b/tex/generic/context/luatex/luatex-fonts-merged.lua @@ -1,6 +1,6 @@ -- merged file : luatex-fonts-merged.lua -- parent file : luatex-fonts.lua --- merge date : 06/15/15 13:42:51 +-- merge date : 07/01/15 21:40:12 do -- begin closure to overcome local limits and interference @@ -5423,24 +5423,13 @@ local fonts=fonts or {} local mappings=fonts.mappings or {} fonts.mappings=mappings local allocate=utilities.storage.allocate -local function loadlumtable(filename) - local lumname=file.replacesuffix(file.basename(filename),"lum") - local lumfile=resolvers.findfile(lumname,"map") or "" - if lumfile~="" and lfs.isfile(lumfile) then - if trace_loading or trace_mapping then - report_fonts("loading map table %a",lumfile) - end - lumunic=dofile(lumfile) - return lumunic,lumfile - end -end local hex=R("AF","09") -local hexfour=(hex*hex*hex*hex)/function(s) return tonumber(s,16) end -local hexsix=(hex*hex*hex*hex*hex*hex)/function(s) return tonumber(s,16) end +local hexfour=(hex*hex*hex^-2)/function(s) return tonumber(s,16) end +local hexsix=(hex*hex*hex^-4)/function(s) return tonumber(s,16) end local dec=(R("09")^1)/tonumber local period=P(".") -local unicode=P("uni")*(hexfour*(period+P(-1))*Cc(false)+Ct(hexfour^1)*Cc(true)) -local ucode=P("u")*(hexsix*(period+P(-1))*Cc(false)+Ct(hexsix^1)*Cc(true)) +local unicode=(P("uni")+P("UNI"))*(hexfour*(period+P(-1))*Cc(false)+Ct(hexfour^1)*Cc(true)) +local ucode=(P("u")+P("U") )*(hexsix*(period+P(-1))*Cc(false)+Ct(hexsix^1)*Cc(true)) local index=P("index")*dec*Cc(false) local parser=unicode+ucode+index local parsers={} @@ -5515,7 +5504,6 @@ local function fromunicode16(str) return (tonumber(l,16))*0x400+tonumber(r,16)-0xDC00 end end -mappings.loadlumtable=loadlumtable mappings.makenameparser=makenameparser mappings.tounicode=tounicode mappings.tounicode16=tounicode16 @@ -5546,244 +5534,162 @@ for k,v in next,overloads do end end mappings.overloads=overloads -function mappings.addtounicode(data,filename) +function mappings.addtounicode(data,filename,checklookups) local resources=data.resources - local properties=data.properties - local descriptions=data.descriptions local unicodes=resources.unicodes - local lookuptypes=resources.lookuptypes if not unicodes then return end + local properties=data.properties + local descriptions=data.descriptions unicodes['space']=unicodes['space'] or 32 unicodes['hyphen']=unicodes['hyphen'] or 45 unicodes['zwj']=unicodes['zwj'] or 0x200D unicodes['zwnj']=unicodes['zwnj'] or 0x200C - local private=fonts.constructors.privateoffset - local unicodevector=fonts.encodings.agl.unicodes + local private=fonts.constructors and fonts.constructors.privateoffset or 0xF0000 + local unicodevector=fonts.encodings.agl.unicodes or {} + local contextvector=fonts.encodings.agl.ctxcodes or {} local missing={} - local lumunic,uparser,oparser - local cidinfo,cidnames,cidcodes,usedmap - cidinfo=properties.cidinfo - usedmap=cidinfo and fonts.cid.getmap(cidinfo) + local nofmissing=0 + local oparser=nil + local cidnames=nil + local cidcodes=nil + local cidinfo=properties.cidinfo + local usedmap=cidinfo and fonts.cid.getmap(cidinfo) + local uparser=makenameparser() if usedmap then - oparser=usedmap and makenameparser(cidinfo.ordering) - cidnames=usedmap.names - cidcodes=usedmap.unicodes + oparser=usedmap and makenameparser(cidinfo.ordering) + cidnames=usedmap.names + cidcodes=usedmap.unicodes end - uparser=makenameparser() - local ns,nl=0,0 + local ns=0 + local nl=0 for unic,glyph in next,descriptions do - local index=glyph.index local name=glyph.name - local r=overloads[name] - if r then - glyph.unicode=r.unicode - elseif unic==-1 or unic>=private or (unic>=0xE000 and unic<=0xF8FF) or unic==0xFFFE or unic==0xFFFF then - local unicode=lumunic and lumunic[name] or unicodevector[name] - if unicode then - glyph.unicode=unicode - ns=ns+1 - end - if (not unicode) and usedmap then - local foundindex=lpegmatch(oparser,name) - if foundindex then - unicode=cidcodes[foundindex] - if unicode then - glyph.unicode=unicode - ns=ns+1 - else - local reference=cidnames[foundindex] - if reference then - local foundindex=lpegmatch(oparser,reference) - if foundindex then - unicode=cidcodes[foundindex] - if unicode then - glyph.unicode=unicode - ns=ns+1 - end - end - if not unicode or unicode=="" then - local foundcodes,multiple=lpegmatch(uparser,reference) - if foundcodes then - glyph.unicode=foundcodes - if multiple then - nl=nl+1 - unicode=true - else + if name then + local index=glyph.index + local r=overloads[name] + if r then + glyph.unicode=r.unicode + elseif not unic or unic==-1 or unic>=private or (unic>=0xE000 and unic<=0xF8FF) or unic==0xFFFE or unic==0xFFFF then + local unicode=unicodevector[name] or contextvector[name] + if unicode then + glyph.unicode=unicode + ns=ns+1 + end + if (not unicode) and usedmap then + local foundindex=lpegmatch(oparser,name) + if foundindex then + unicode=cidcodes[foundindex] + if unicode then + glyph.unicode=unicode + ns=ns+1 + else + local reference=cidnames[foundindex] + if reference then + local foundindex=lpegmatch(oparser,reference) + if foundindex then + unicode=cidcodes[foundindex] + if unicode then + glyph.unicode=unicode ns=ns+1 - unicode=foundcodes + end + end + if not unicode or unicode=="" then + local foundcodes,multiple=lpegmatch(uparser,reference) + if foundcodes then + glyph.unicode=foundcodes + if multiple then + nl=nl+1 + unicode=true + else + ns=ns+1 + unicode=foundcodes + end end end end end end end - end - if not unicode or unicode=="" then - local split=lpegmatch(namesplitter,name) - local nsplit=split and #split or 0 - local t,n={},0 - unicode=true - for l=1,nsplit do - local base=split[l] - local u=unicodes[base] or unicodevector[base] - if not u then - break - elseif type(u)=="table" then - if u[1]>=private then - unicode=false - break - end - n=n+1 - t[n]=u[1] - else - if u>=private then - unicode=false - break + if not unicode or unicode=="" then + local split=lpegmatch(namesplitter,name) + local nsplit=split and #split or 0 + if nsplit==0 then + elseif nsplit==1 then + local base=split[1] + local u=unicodes[base] or unicodevector[base] or contextvector[name] + if not u then + elseif type(u)=="table" then + if u[1]=private or (unic>=0xE000 and unic<=0xF8FF) or unic==0xFFFE or unic==0xFFFF then - else - return - end - if descriptions[code].unicode then - return - end - local g=guess[variant] - if g then - g[gname]=unicode - else - guess[variant]={ [gname]=unicode } - end - end - for unicode,description in next,descriptions do - local slookups=description.slookups - if slookups then - local gname=description.name - for tag,data in next,slookups do - local lookuptype=lookuptypes[tag] - if lookuptype=="alternate" then - for i=1,#data do - check(gname,data[i],unicode) - end - elseif lookuptype=="substitution" then - check(gname,data,unicode) - end - end - end - local mlookups=description.mlookups - if mlookups then - local gname=description.name - for tag,list in next,mlookups do - local lookuptype=lookuptypes[tag] - if lookuptype=="alternate" then - for i=1,#list do - local data=list[i] - for i=1,#data do - check(gname,data[i],unicode) + local t,n={},0 + for l=1,nsplit do + local base=split[l] + local u=unicodes[base] or unicodevector[base] or contextvector[name] + if not u then + break + elseif type(u)=="table" then + if u[1]>=private then + break + end + n=n+1 + t[n]=u[1] + else + if u>=private then + break + end + n=n+1 + t[n]=u end end - elseif lookuptype=="substitution" then - for i=1,#list do - check(gname,list[i],unicode) + if n>0 then + if n==1 then + unicode=t[1] + else + unicode=t + end + glyph.unicode=unicode end end + nl=nl+1 end - end - end - local done=true - while done do - done=false - for k,v in next,guess do - if type(v)~="number" then - for kk,vv in next,v do - if vv==-1 or vv>=private or (vv>=0xE000 and vv<=0xF8FF) or vv==0xFFFE or vv==0xFFFF then - local uu=guess[kk] - if type(uu)=="number" then - guess[k]=uu - done=true - end + if not unicode or unicode=="" then + local foundcodes,multiple=lpegmatch(uparser,name) + if foundcodes then + glyph.unicode=foundcodes + if multiple then + nl=nl+1 + unicode=true else - guess[k]=vv - done=true + ns=ns+1 + unicode=foundcodes end end end - end - end - local orphans=0 - local guessed=0 - for k,v in next,guess do - if type(v)=="number" then - descriptions[unicodes[k]].unicode=descriptions[v].unicode or v - guessed=guessed+1 - else - local t=nil - local l=lower(k) - local u=unicodes[l] - if not u then - orphans=orphans+1 - elseif u==-1 or u>=private or (u>=0xE000 and u<=0xF8FF) or u==0xFFFE or u==0xFFFF then - local unicode=descriptions[u].unicode - if unicode then - descriptions[unicodes[k]].unicode=unicode - guessed=guessed+1 - else - orphans=orphans+1 - end - else - orphans=orphans+1 + local r=overloads[unicode] + if r then + unicode=r.unicode + glyph.unicode=unicode + end + if not unicode then + missing[unic]=true + nofmissing=nofmissing+1 end end - end - if trace_loading and orphans>0 or guessed>0 then - report_fonts("%s glyphs with no related unicode, %s guessed, %s orphans",guessed+orphans,guessed,orphans) + else end end + if type(checklookups)=="function" then + checklookups(data,missing,nofmissing) + end if trace_mapping then for unic,glyph in table.sortedhash(descriptions) do local name=glyph.name @@ -7177,9 +7083,7 @@ local utfbyte=utf.byte local format,gmatch,gsub,find,match,lower,strip=string.format,string.gmatch,string.gsub,string.find,string.match,string.lower,string.strip local type,next,tonumber,tostring=type,next,tonumber,tostring local abs=math.abs -local insert=table.insert -local lpegmatch=lpeg.match -local reversed,concat,remove,sortedkeys=table.reversed,table.concat,table.remove,table.sortedkeys +local reversed,concat,insert,remove,sortedkeys=table.reversed,table.concat,table.insert,table.remove,table.sortedkeys local ioflush=io.flush local fastcopy,tohash,derivetable=table.fastcopy,table.tohash,table.derive local formatters=string.formatters @@ -7206,7 +7110,7 @@ local report_otf=logs.reporter("fonts","otf loading") local fonts=fonts local otf=fonts.handlers.otf otf.glists={ "gsub","gpos" } -otf.version=2.815 +otf.version=2.816 otf.cache=containers.define("fonts","otf",otf.version,true) local hashes=fonts.hashes local definers=fonts.definers @@ -8067,7 +7971,7 @@ actions["analyze glyphs"]=function(data,filename,raw) local marks={} for unicode,description in next,descriptions do local glyph=description.glyph - local italic=glyph.italic_correction + local italic=glyph.italic_correction if not italic then elseif italic==0 then else @@ -8128,7 +8032,8 @@ end actions["reorganize features"]=function(data,filename,raw) local features={} data.resources.features=features - for k,what in next,otf.glists do + for k=1,#otf.glists do + local what=otf.glists[k] local dw=raw[what] if dw then local f={} @@ -8210,8 +8115,9 @@ actions["reorganize subtables"]=function(data,filename,raw) local lookups={} local chainedfeatures={} resources.sequences=sequences - resources.lookups=lookups - for _,what in next,otf.glists do + resources.lookups=lookups + for k=1,#otf.glists do + local what=otf.glists[k] local dw=raw[what] if dw then for k=1,#dw do @@ -8818,7 +8724,7 @@ actions["merge kern classes"]=function(data,filename,raw) report_otf("%s kern overloads ignored",ignored) end if blocked>0 then - report_otf("%s succesive kerns blocked",blocked) + report_otf("%s successive kerns blocked",blocked) end end end @@ -8974,7 +8880,7 @@ actions["reorganize glyph lookups"]=function(data,filename,raw) end end local zero={ 0,0 } -actions["reorganize glyph anchors"]=function(data,filename,raw) +actions["reorganize glyph anchors"]=function(data,filename,raw) local descriptions=data.descriptions for unicode,description in next,descriptions do local anchors=description.glyph.anchors @@ -13780,9 +13686,8 @@ if not modules then modules={} end modules ['font-otp']={ copyright="PRAGMA ADE / ConTeXt Development Team", license="see context related readme files" } -local next,type=next,type +local next,type,tostring=next,type,tostring local sort,concat=table.sort,table.concat -local sortedhash=table.sortedhash local trace_packing=false trackers.register("otf.packing",function(v) trace_packing=v end) local trace_loading=false trackers.register("otf.loading",function(v) trace_loading=v end) local report_otf=logs.reporter("fonts","otf loading") @@ -15423,12 +15328,30 @@ function nodes.handlers.nodepass(head) local range=basefonts[i] local start=range[1] local stop=range[2] - if stop then - start,stop=ligaturing(start,stop) - start,stop=kerning(start,stop) - elseif start then - start=ligaturing(start) - start=kerning(start) + if start or stop then + local prev=nil + local next=nil + local front=start==head + if stop then + next=stop.next + start,stop=ligaturing(start,stop) + start,stop=kerning(start,stop) + elseif start then + prev=start.prev + start=ligaturing(start) + start=kerning(start) + end + if prev then + start.prev=prev + prev.next=start + end + if next then + stop.next=next + next.prev=stop + end + if front then + head=start + end end end end @@ -15438,7 +15361,7 @@ function nodes.handlers.nodepass(head) end end function nodes.handlers.basepass(head) - if not basepass then + if basepass then head=ligaturing(head) head=kerning(head) end -- cgit v1.2.3