1cb93a386Sopenharmony_ci/* $XFree86$ 2cb93a386Sopenharmony_ci * This module converts keysym values into the corresponding ISO 10646 3cb93a386Sopenharmony_ci * (UCS, Unicode) values. 4cb93a386Sopenharmony_ci * 5cb93a386Sopenharmony_ci * The array keysymtab[] contains pairs of X11 keysym values for graphical 6cb93a386Sopenharmony_ci * characters and the corresponding Unicode value. The function 7cb93a386Sopenharmony_ci * keysym2ucs() maps a keysym onto a Unicode value using a binary search, 8cb93a386Sopenharmony_ci * therefore keysymtab[] must remain SORTED by keysym value. 9cb93a386Sopenharmony_ci * 10cb93a386Sopenharmony_ci * The keysym -> UTF-8 conversion will hopefully one day be provided 11cb93a386Sopenharmony_ci * by Xlib via XmbLookupString() and should ideally not have to be 12cb93a386Sopenharmony_ci * done in X applications. But we are not there yet. 13cb93a386Sopenharmony_ci * 14cb93a386Sopenharmony_ci * We allow to represent any UCS character in the range U-00000000 to 15cb93a386Sopenharmony_ci * U-00FFFFFF by a keysym value in the range 0x01000000 to 0x01ffffff. 16cb93a386Sopenharmony_ci * This admittedly does not cover the entire 31-bit space of UCS, but 17cb93a386Sopenharmony_ci * it does cover all of the characters up to U-10FFFF, which can be 18cb93a386Sopenharmony_ci * represented by UTF-16, and more, and it is very unlikely that higher 19cb93a386Sopenharmony_ci * UCS codes will ever be assigned by ISO. So to get Unicode character 20cb93a386Sopenharmony_ci * U+ABCD you can directly use keysym 0x0100abcd. 21cb93a386Sopenharmony_ci * 22cb93a386Sopenharmony_ci * NOTE: The comments in the table below contain the actual character 23cb93a386Sopenharmony_ci * encoded in UTF-8, so for viewing and editing best use an editor in 24cb93a386Sopenharmony_ci * UTF-8 mode. 25cb93a386Sopenharmony_ci * 26cb93a386Sopenharmony_ci * Author: Markus G. Kuhn <http://www.cl.cam.ac.uk/~mgk25/>, 27cb93a386Sopenharmony_ci * University of Cambridge, April 2001 28cb93a386Sopenharmony_ci * 29cb93a386Sopenharmony_ci * Special thanks to Richard Verhoeven <river@win.tue.nl> for preparing 30cb93a386Sopenharmony_ci * an initial draft of the mapping table. 31cb93a386Sopenharmony_ci * 32cb93a386Sopenharmony_ci * This software is in the public domain. Share and enjoy! 33cb93a386Sopenharmony_ci * 34cb93a386Sopenharmony_ci * AUTOMATICALLY GENERATED FILE, DO NOT EDIT !!! (unicode/convmap.pl) 35cb93a386Sopenharmony_ci */ 36cb93a386Sopenharmony_ci 37cb93a386Sopenharmony_ci#include "tools/sk_app/unix/keysym2ucs.h" 38cb93a386Sopenharmony_ci 39cb93a386Sopenharmony_cistruct codepair { 40cb93a386Sopenharmony_ci unsigned short keysym; 41cb93a386Sopenharmony_ci unsigned short ucs; 42cb93a386Sopenharmony_ci} keysymtab[] = { 43cb93a386Sopenharmony_ci { 0x01a1, 0x0104 }, /* Aogonek Ą LATIN CAPITAL LETTER A WITH OGONEK */ 44cb93a386Sopenharmony_ci { 0x01a2, 0x02d8 }, /* breve ˘ BREVE */ 45cb93a386Sopenharmony_ci { 0x01a3, 0x0141 }, /* Lstroke Ł LATIN CAPITAL LETTER L WITH STROKE */ 46cb93a386Sopenharmony_ci { 0x01a5, 0x013d }, /* Lcaron Ľ LATIN CAPITAL LETTER L WITH CARON */ 47cb93a386Sopenharmony_ci { 0x01a6, 0x015a }, /* Sacute Ś LATIN CAPITAL LETTER S WITH ACUTE */ 48cb93a386Sopenharmony_ci { 0x01a9, 0x0160 }, /* Scaron Š LATIN CAPITAL LETTER S WITH CARON */ 49cb93a386Sopenharmony_ci { 0x01aa, 0x015e }, /* Scedilla Ş LATIN CAPITAL LETTER S WITH CEDILLA */ 50cb93a386Sopenharmony_ci { 0x01ab, 0x0164 }, /* Tcaron Ť LATIN CAPITAL LETTER T WITH CARON */ 51cb93a386Sopenharmony_ci { 0x01ac, 0x0179 }, /* Zacute Ź LATIN CAPITAL LETTER Z WITH ACUTE */ 52cb93a386Sopenharmony_ci { 0x01ae, 0x017d }, /* Zcaron Ž LATIN CAPITAL LETTER Z WITH CARON */ 53cb93a386Sopenharmony_ci { 0x01af, 0x017b }, /* Zabovedot Ż LATIN CAPITAL LETTER Z WITH DOT ABOVE */ 54cb93a386Sopenharmony_ci { 0x01b1, 0x0105 }, /* aogonek ą LATIN SMALL LETTER A WITH OGONEK */ 55cb93a386Sopenharmony_ci { 0x01b2, 0x02db }, /* ogonek ˛ OGONEK */ 56cb93a386Sopenharmony_ci { 0x01b3, 0x0142 }, /* lstroke ł LATIN SMALL LETTER L WITH STROKE */ 57cb93a386Sopenharmony_ci { 0x01b5, 0x013e }, /* lcaron ľ LATIN SMALL LETTER L WITH CARON */ 58cb93a386Sopenharmony_ci { 0x01b6, 0x015b }, /* sacute ś LATIN SMALL LETTER S WITH ACUTE */ 59cb93a386Sopenharmony_ci { 0x01b7, 0x02c7 }, /* caron ˇ CARON */ 60cb93a386Sopenharmony_ci { 0x01b9, 0x0161 }, /* scaron š LATIN SMALL LETTER S WITH CARON */ 61cb93a386Sopenharmony_ci { 0x01ba, 0x015f }, /* scedilla ş LATIN SMALL LETTER S WITH CEDILLA */ 62cb93a386Sopenharmony_ci { 0x01bb, 0x0165 }, /* tcaron ť LATIN SMALL LETTER T WITH CARON */ 63cb93a386Sopenharmony_ci { 0x01bc, 0x017a }, /* zacute ź LATIN SMALL LETTER Z WITH ACUTE */ 64cb93a386Sopenharmony_ci { 0x01bd, 0x02dd }, /* doubleacute ˝ DOUBLE ACUTE ACCENT */ 65cb93a386Sopenharmony_ci { 0x01be, 0x017e }, /* zcaron ž LATIN SMALL LETTER Z WITH CARON */ 66cb93a386Sopenharmony_ci { 0x01bf, 0x017c }, /* zabovedot ż LATIN SMALL LETTER Z WITH DOT ABOVE */ 67cb93a386Sopenharmony_ci { 0x01c0, 0x0154 }, /* Racute Ŕ LATIN CAPITAL LETTER R WITH ACUTE */ 68cb93a386Sopenharmony_ci { 0x01c3, 0x0102 }, /* Abreve Ă LATIN CAPITAL LETTER A WITH BREVE */ 69cb93a386Sopenharmony_ci { 0x01c5, 0x0139 }, /* Lacute Ĺ LATIN CAPITAL LETTER L WITH ACUTE */ 70cb93a386Sopenharmony_ci { 0x01c6, 0x0106 }, /* Cacute Ć LATIN CAPITAL LETTER C WITH ACUTE */ 71cb93a386Sopenharmony_ci { 0x01c8, 0x010c }, /* Ccaron Č LATIN CAPITAL LETTER C WITH CARON */ 72cb93a386Sopenharmony_ci { 0x01ca, 0x0118 }, /* Eogonek Ę LATIN CAPITAL LETTER E WITH OGONEK */ 73cb93a386Sopenharmony_ci { 0x01cc, 0x011a }, /* Ecaron Ě LATIN CAPITAL LETTER E WITH CARON */ 74cb93a386Sopenharmony_ci { 0x01cf, 0x010e }, /* Dcaron Ď LATIN CAPITAL LETTER D WITH CARON */ 75cb93a386Sopenharmony_ci { 0x01d0, 0x0110 }, /* Dstroke Đ LATIN CAPITAL LETTER D WITH STROKE */ 76cb93a386Sopenharmony_ci { 0x01d1, 0x0143 }, /* Nacute Ń LATIN CAPITAL LETTER N WITH ACUTE */ 77cb93a386Sopenharmony_ci { 0x01d2, 0x0147 }, /* Ncaron Ň LATIN CAPITAL LETTER N WITH CARON */ 78cb93a386Sopenharmony_ci { 0x01d5, 0x0150 }, /* Odoubleacute Ő LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */ 79cb93a386Sopenharmony_ci { 0x01d8, 0x0158 }, /* Rcaron Ř LATIN CAPITAL LETTER R WITH CARON */ 80cb93a386Sopenharmony_ci { 0x01d9, 0x016e }, /* Uring Ů LATIN CAPITAL LETTER U WITH RING ABOVE */ 81cb93a386Sopenharmony_ci { 0x01db, 0x0170 }, /* Udoubleacute Ű LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */ 82cb93a386Sopenharmony_ci { 0x01de, 0x0162 }, /* Tcedilla Ţ LATIN CAPITAL LETTER T WITH CEDILLA */ 83cb93a386Sopenharmony_ci { 0x01e0, 0x0155 }, /* racute ŕ LATIN SMALL LETTER R WITH ACUTE */ 84cb93a386Sopenharmony_ci { 0x01e3, 0x0103 }, /* abreve ă LATIN SMALL LETTER A WITH BREVE */ 85cb93a386Sopenharmony_ci { 0x01e5, 0x013a }, /* lacute ĺ LATIN SMALL LETTER L WITH ACUTE */ 86cb93a386Sopenharmony_ci { 0x01e6, 0x0107 }, /* cacute ć LATIN SMALL LETTER C WITH ACUTE */ 87cb93a386Sopenharmony_ci { 0x01e8, 0x010d }, /* ccaron č LATIN SMALL LETTER C WITH CARON */ 88cb93a386Sopenharmony_ci { 0x01ea, 0x0119 }, /* eogonek ę LATIN SMALL LETTER E WITH OGONEK */ 89cb93a386Sopenharmony_ci { 0x01ec, 0x011b }, /* ecaron ě LATIN SMALL LETTER E WITH CARON */ 90cb93a386Sopenharmony_ci { 0x01ef, 0x010f }, /* dcaron ď LATIN SMALL LETTER D WITH CARON */ 91cb93a386Sopenharmony_ci { 0x01f0, 0x0111 }, /* dstroke đ LATIN SMALL LETTER D WITH STROKE */ 92cb93a386Sopenharmony_ci { 0x01f1, 0x0144 }, /* nacute ń LATIN SMALL LETTER N WITH ACUTE */ 93cb93a386Sopenharmony_ci { 0x01f2, 0x0148 }, /* ncaron ň LATIN SMALL LETTER N WITH CARON */ 94cb93a386Sopenharmony_ci { 0x01f5, 0x0151 }, /* odoubleacute ő LATIN SMALL LETTER O WITH DOUBLE ACUTE */ 95cb93a386Sopenharmony_ci { 0x01f8, 0x0159 }, /* rcaron ř LATIN SMALL LETTER R WITH CARON */ 96cb93a386Sopenharmony_ci { 0x01f9, 0x016f }, /* uring ů LATIN SMALL LETTER U WITH RING ABOVE */ 97cb93a386Sopenharmony_ci { 0x01fb, 0x0171 }, /* udoubleacute ű LATIN SMALL LETTER U WITH DOUBLE ACUTE */ 98cb93a386Sopenharmony_ci { 0x01fe, 0x0163 }, /* tcedilla ţ LATIN SMALL LETTER T WITH CEDILLA */ 99cb93a386Sopenharmony_ci { 0x01ff, 0x02d9 }, /* abovedot ˙ DOT ABOVE */ 100cb93a386Sopenharmony_ci { 0x02a1, 0x0126 }, /* Hstroke Ħ LATIN CAPITAL LETTER H WITH STROKE */ 101cb93a386Sopenharmony_ci { 0x02a6, 0x0124 }, /* Hcircumflex Ĥ LATIN CAPITAL LETTER H WITH CIRCUMFLEX */ 102cb93a386Sopenharmony_ci { 0x02a9, 0x0130 }, /* Iabovedot İ LATIN CAPITAL LETTER I WITH DOT ABOVE */ 103cb93a386Sopenharmony_ci { 0x02ab, 0x011e }, /* Gbreve Ğ LATIN CAPITAL LETTER G WITH BREVE */ 104cb93a386Sopenharmony_ci { 0x02ac, 0x0134 }, /* Jcircumflex Ĵ LATIN CAPITAL LETTER J WITH CIRCUMFLEX */ 105cb93a386Sopenharmony_ci { 0x02b1, 0x0127 }, /* hstroke ħ LATIN SMALL LETTER H WITH STROKE */ 106cb93a386Sopenharmony_ci { 0x02b6, 0x0125 }, /* hcircumflex ĥ LATIN SMALL LETTER H WITH CIRCUMFLEX */ 107cb93a386Sopenharmony_ci { 0x02b9, 0x0131 }, /* idotless ı LATIN SMALL LETTER DOTLESS I */ 108cb93a386Sopenharmony_ci { 0x02bb, 0x011f }, /* gbreve ğ LATIN SMALL LETTER G WITH BREVE */ 109cb93a386Sopenharmony_ci { 0x02bc, 0x0135 }, /* jcircumflex ĵ LATIN SMALL LETTER J WITH CIRCUMFLEX */ 110cb93a386Sopenharmony_ci { 0x02c5, 0x010a }, /* Cabovedot Ċ LATIN CAPITAL LETTER C WITH DOT ABOVE */ 111cb93a386Sopenharmony_ci { 0x02c6, 0x0108 }, /* Ccircumflex Ĉ LATIN CAPITAL LETTER C WITH CIRCUMFLEX */ 112cb93a386Sopenharmony_ci { 0x02d5, 0x0120 }, /* Gabovedot Ġ LATIN CAPITAL LETTER G WITH DOT ABOVE */ 113cb93a386Sopenharmony_ci { 0x02d8, 0x011c }, /* Gcircumflex Ĝ LATIN CAPITAL LETTER G WITH CIRCUMFLEX */ 114cb93a386Sopenharmony_ci { 0x02dd, 0x016c }, /* Ubreve Ŭ LATIN CAPITAL LETTER U WITH BREVE */ 115cb93a386Sopenharmony_ci { 0x02de, 0x015c }, /* Scircumflex Ŝ LATIN CAPITAL LETTER S WITH CIRCUMFLEX */ 116cb93a386Sopenharmony_ci { 0x02e5, 0x010b }, /* cabovedot ċ LATIN SMALL LETTER C WITH DOT ABOVE */ 117cb93a386Sopenharmony_ci { 0x02e6, 0x0109 }, /* ccircumflex ĉ LATIN SMALL LETTER C WITH CIRCUMFLEX */ 118cb93a386Sopenharmony_ci { 0x02f5, 0x0121 }, /* gabovedot ġ LATIN SMALL LETTER G WITH DOT ABOVE */ 119cb93a386Sopenharmony_ci { 0x02f8, 0x011d }, /* gcircumflex ĝ LATIN SMALL LETTER G WITH CIRCUMFLEX */ 120cb93a386Sopenharmony_ci { 0x02fd, 0x016d }, /* ubreve ŭ LATIN SMALL LETTER U WITH BREVE */ 121cb93a386Sopenharmony_ci { 0x02fe, 0x015d }, /* scircumflex ŝ LATIN SMALL LETTER S WITH CIRCUMFLEX */ 122cb93a386Sopenharmony_ci { 0x03a2, 0x0138 }, /* kra ĸ LATIN SMALL LETTER KRA */ 123cb93a386Sopenharmony_ci { 0x03a3, 0x0156 }, /* Rcedilla Ŗ LATIN CAPITAL LETTER R WITH CEDILLA */ 124cb93a386Sopenharmony_ci { 0x03a5, 0x0128 }, /* Itilde Ĩ LATIN CAPITAL LETTER I WITH TILDE */ 125cb93a386Sopenharmony_ci { 0x03a6, 0x013b }, /* Lcedilla Ļ LATIN CAPITAL LETTER L WITH CEDILLA */ 126cb93a386Sopenharmony_ci { 0x03aa, 0x0112 }, /* Emacron Ē LATIN CAPITAL LETTER E WITH MACRON */ 127cb93a386Sopenharmony_ci { 0x03ab, 0x0122 }, /* Gcedilla Ģ LATIN CAPITAL LETTER G WITH CEDILLA */ 128cb93a386Sopenharmony_ci { 0x03ac, 0x0166 }, /* Tslash Ŧ LATIN CAPITAL LETTER T WITH STROKE */ 129cb93a386Sopenharmony_ci { 0x03b3, 0x0157 }, /* rcedilla ŗ LATIN SMALL LETTER R WITH CEDILLA */ 130cb93a386Sopenharmony_ci { 0x03b5, 0x0129 }, /* itilde ĩ LATIN SMALL LETTER I WITH TILDE */ 131cb93a386Sopenharmony_ci { 0x03b6, 0x013c }, /* lcedilla ļ LATIN SMALL LETTER L WITH CEDILLA */ 132cb93a386Sopenharmony_ci { 0x03ba, 0x0113 }, /* emacron ē LATIN SMALL LETTER E WITH MACRON */ 133cb93a386Sopenharmony_ci { 0x03bb, 0x0123 }, /* gcedilla ģ LATIN SMALL LETTER G WITH CEDILLA */ 134cb93a386Sopenharmony_ci { 0x03bc, 0x0167 }, /* tslash ŧ LATIN SMALL LETTER T WITH STROKE */ 135cb93a386Sopenharmony_ci { 0x03bd, 0x014a }, /* ENG Ŋ LATIN CAPITAL LETTER ENG */ 136cb93a386Sopenharmony_ci { 0x03bf, 0x014b }, /* eng ŋ LATIN SMALL LETTER ENG */ 137cb93a386Sopenharmony_ci { 0x03c0, 0x0100 }, /* Amacron Ā LATIN CAPITAL LETTER A WITH MACRON */ 138cb93a386Sopenharmony_ci { 0x03c7, 0x012e }, /* Iogonek Į LATIN CAPITAL LETTER I WITH OGONEK */ 139cb93a386Sopenharmony_ci { 0x03cc, 0x0116 }, /* Eabovedot Ė LATIN CAPITAL LETTER E WITH DOT ABOVE */ 140cb93a386Sopenharmony_ci { 0x03cf, 0x012a }, /* Imacron Ī LATIN CAPITAL LETTER I WITH MACRON */ 141cb93a386Sopenharmony_ci { 0x03d1, 0x0145 }, /* Ncedilla Ņ LATIN CAPITAL LETTER N WITH CEDILLA */ 142cb93a386Sopenharmony_ci { 0x03d2, 0x014c }, /* Omacron Ō LATIN CAPITAL LETTER O WITH MACRON */ 143cb93a386Sopenharmony_ci { 0x03d3, 0x0136 }, /* Kcedilla Ķ LATIN CAPITAL LETTER K WITH CEDILLA */ 144cb93a386Sopenharmony_ci { 0x03d9, 0x0172 }, /* Uogonek Ų LATIN CAPITAL LETTER U WITH OGONEK */ 145cb93a386Sopenharmony_ci { 0x03dd, 0x0168 }, /* Utilde Ũ LATIN CAPITAL LETTER U WITH TILDE */ 146cb93a386Sopenharmony_ci { 0x03de, 0x016a }, /* Umacron Ū LATIN CAPITAL LETTER U WITH MACRON */ 147cb93a386Sopenharmony_ci { 0x03e0, 0x0101 }, /* amacron ā LATIN SMALL LETTER A WITH MACRON */ 148cb93a386Sopenharmony_ci { 0x03e7, 0x012f }, /* iogonek į LATIN SMALL LETTER I WITH OGONEK */ 149cb93a386Sopenharmony_ci { 0x03ec, 0x0117 }, /* eabovedot ė LATIN SMALL LETTER E WITH DOT ABOVE */ 150cb93a386Sopenharmony_ci { 0x03ef, 0x012b }, /* imacron ī LATIN SMALL LETTER I WITH MACRON */ 151cb93a386Sopenharmony_ci { 0x03f1, 0x0146 }, /* ncedilla ņ LATIN SMALL LETTER N WITH CEDILLA */ 152cb93a386Sopenharmony_ci { 0x03f2, 0x014d }, /* omacron ō LATIN SMALL LETTER O WITH MACRON */ 153cb93a386Sopenharmony_ci { 0x03f3, 0x0137 }, /* kcedilla ķ LATIN SMALL LETTER K WITH CEDILLA */ 154cb93a386Sopenharmony_ci { 0x03f9, 0x0173 }, /* uogonek ų LATIN SMALL LETTER U WITH OGONEK */ 155cb93a386Sopenharmony_ci { 0x03fd, 0x0169 }, /* utilde ũ LATIN SMALL LETTER U WITH TILDE */ 156cb93a386Sopenharmony_ci { 0x03fe, 0x016b }, /* umacron ū LATIN SMALL LETTER U WITH MACRON */ 157cb93a386Sopenharmony_ci { 0x047e, 0x203e }, /* overline ‾ OVERLINE */ 158cb93a386Sopenharmony_ci { 0x04a1, 0x3002 }, /* kana_fullstop 。 IDEOGRAPHIC FULL STOP */ 159cb93a386Sopenharmony_ci { 0x04a2, 0x300c }, /* kana_openingbracket 「 LEFT CORNER BRACKET */ 160cb93a386Sopenharmony_ci { 0x04a3, 0x300d }, /* kana_closingbracket 」 RIGHT CORNER BRACKET */ 161cb93a386Sopenharmony_ci { 0x04a4, 0x3001 }, /* kana_comma 、 IDEOGRAPHIC COMMA */ 162cb93a386Sopenharmony_ci { 0x04a5, 0x30fb }, /* kana_conjunctive ・ KATAKANA MIDDLE DOT */ 163cb93a386Sopenharmony_ci { 0x04a6, 0x30f2 }, /* kana_WO ヲ KATAKANA LETTER WO */ 164cb93a386Sopenharmony_ci { 0x04a7, 0x30a1 }, /* kana_a ァ KATAKANA LETTER SMALL A */ 165cb93a386Sopenharmony_ci { 0x04a8, 0x30a3 }, /* kana_i ィ KATAKANA LETTER SMALL I */ 166cb93a386Sopenharmony_ci { 0x04a9, 0x30a5 }, /* kana_u ゥ KATAKANA LETTER SMALL U */ 167cb93a386Sopenharmony_ci { 0x04aa, 0x30a7 }, /* kana_e ェ KATAKANA LETTER SMALL E */ 168cb93a386Sopenharmony_ci { 0x04ab, 0x30a9 }, /* kana_o ォ KATAKANA LETTER SMALL O */ 169cb93a386Sopenharmony_ci { 0x04ac, 0x30e3 }, /* kana_ya ャ KATAKANA LETTER SMALL YA */ 170cb93a386Sopenharmony_ci { 0x04ad, 0x30e5 }, /* kana_yu ュ KATAKANA LETTER SMALL YU */ 171cb93a386Sopenharmony_ci { 0x04ae, 0x30e7 }, /* kana_yo ョ KATAKANA LETTER SMALL YO */ 172cb93a386Sopenharmony_ci { 0x04af, 0x30c3 }, /* kana_tsu ッ KATAKANA LETTER SMALL TU */ 173cb93a386Sopenharmony_ci { 0x04b0, 0x30fc }, /* prolongedsound ー KATAKANA-HIRAGANA PROLONGED SOUND MARK */ 174cb93a386Sopenharmony_ci { 0x04b1, 0x30a2 }, /* kana_A ア KATAKANA LETTER A */ 175cb93a386Sopenharmony_ci { 0x04b2, 0x30a4 }, /* kana_I イ KATAKANA LETTER I */ 176cb93a386Sopenharmony_ci { 0x04b3, 0x30a6 }, /* kana_U ウ KATAKANA LETTER U */ 177cb93a386Sopenharmony_ci { 0x04b4, 0x30a8 }, /* kana_E エ KATAKANA LETTER E */ 178cb93a386Sopenharmony_ci { 0x04b5, 0x30aa }, /* kana_O オ KATAKANA LETTER O */ 179cb93a386Sopenharmony_ci { 0x04b6, 0x30ab }, /* kana_KA カ KATAKANA LETTER KA */ 180cb93a386Sopenharmony_ci { 0x04b7, 0x30ad }, /* kana_KI キ KATAKANA LETTER KI */ 181cb93a386Sopenharmony_ci { 0x04b8, 0x30af }, /* kana_KU ク KATAKANA LETTER KU */ 182cb93a386Sopenharmony_ci { 0x04b9, 0x30b1 }, /* kana_KE ケ KATAKANA LETTER KE */ 183cb93a386Sopenharmony_ci { 0x04ba, 0x30b3 }, /* kana_KO コ KATAKANA LETTER KO */ 184cb93a386Sopenharmony_ci { 0x04bb, 0x30b5 }, /* kana_SA サ KATAKANA LETTER SA */ 185cb93a386Sopenharmony_ci { 0x04bc, 0x30b7 }, /* kana_SHI シ KATAKANA LETTER SI */ 186cb93a386Sopenharmony_ci { 0x04bd, 0x30b9 }, /* kana_SU ス KATAKANA LETTER SU */ 187cb93a386Sopenharmony_ci { 0x04be, 0x30bb }, /* kana_SE セ KATAKANA LETTER SE */ 188cb93a386Sopenharmony_ci { 0x04bf, 0x30bd }, /* kana_SO ソ KATAKANA LETTER SO */ 189cb93a386Sopenharmony_ci { 0x04c0, 0x30bf }, /* kana_TA タ KATAKANA LETTER TA */ 190cb93a386Sopenharmony_ci { 0x04c1, 0x30c1 }, /* kana_CHI チ KATAKANA LETTER TI */ 191cb93a386Sopenharmony_ci { 0x04c2, 0x30c4 }, /* kana_TSU ツ KATAKANA LETTER TU */ 192cb93a386Sopenharmony_ci { 0x04c3, 0x30c6 }, /* kana_TE テ KATAKANA LETTER TE */ 193cb93a386Sopenharmony_ci { 0x04c4, 0x30c8 }, /* kana_TO ト KATAKANA LETTER TO */ 194cb93a386Sopenharmony_ci { 0x04c5, 0x30ca }, /* kana_NA ナ KATAKANA LETTER NA */ 195cb93a386Sopenharmony_ci { 0x04c6, 0x30cb }, /* kana_NI ニ KATAKANA LETTER NI */ 196cb93a386Sopenharmony_ci { 0x04c7, 0x30cc }, /* kana_NU ヌ KATAKANA LETTER NU */ 197cb93a386Sopenharmony_ci { 0x04c8, 0x30cd }, /* kana_NE ネ KATAKANA LETTER NE */ 198cb93a386Sopenharmony_ci { 0x04c9, 0x30ce }, /* kana_NO ノ KATAKANA LETTER NO */ 199cb93a386Sopenharmony_ci { 0x04ca, 0x30cf }, /* kana_HA ハ KATAKANA LETTER HA */ 200cb93a386Sopenharmony_ci { 0x04cb, 0x30d2 }, /* kana_HI ヒ KATAKANA LETTER HI */ 201cb93a386Sopenharmony_ci { 0x04cc, 0x30d5 }, /* kana_FU フ KATAKANA LETTER HU */ 202cb93a386Sopenharmony_ci { 0x04cd, 0x30d8 }, /* kana_HE ヘ KATAKANA LETTER HE */ 203cb93a386Sopenharmony_ci { 0x04ce, 0x30db }, /* kana_HO ホ KATAKANA LETTER HO */ 204cb93a386Sopenharmony_ci { 0x04cf, 0x30de }, /* kana_MA マ KATAKANA LETTER MA */ 205cb93a386Sopenharmony_ci { 0x04d0, 0x30df }, /* kana_MI ミ KATAKANA LETTER MI */ 206cb93a386Sopenharmony_ci { 0x04d1, 0x30e0 }, /* kana_MU ム KATAKANA LETTER MU */ 207cb93a386Sopenharmony_ci { 0x04d2, 0x30e1 }, /* kana_ME メ KATAKANA LETTER ME */ 208cb93a386Sopenharmony_ci { 0x04d3, 0x30e2 }, /* kana_MO モ KATAKANA LETTER MO */ 209cb93a386Sopenharmony_ci { 0x04d4, 0x30e4 }, /* kana_YA ヤ KATAKANA LETTER YA */ 210cb93a386Sopenharmony_ci { 0x04d5, 0x30e6 }, /* kana_YU ユ KATAKANA LETTER YU */ 211cb93a386Sopenharmony_ci { 0x04d6, 0x30e8 }, /* kana_YO ヨ KATAKANA LETTER YO */ 212cb93a386Sopenharmony_ci { 0x04d7, 0x30e9 }, /* kana_RA ラ KATAKANA LETTER RA */ 213cb93a386Sopenharmony_ci { 0x04d8, 0x30ea }, /* kana_RI リ KATAKANA LETTER RI */ 214cb93a386Sopenharmony_ci { 0x04d9, 0x30eb }, /* kana_RU ル KATAKANA LETTER RU */ 215cb93a386Sopenharmony_ci { 0x04da, 0x30ec }, /* kana_RE レ KATAKANA LETTER RE */ 216cb93a386Sopenharmony_ci { 0x04db, 0x30ed }, /* kana_RO ロ KATAKANA LETTER RO */ 217cb93a386Sopenharmony_ci { 0x04dc, 0x30ef }, /* kana_WA ワ KATAKANA LETTER WA */ 218cb93a386Sopenharmony_ci { 0x04dd, 0x30f3 }, /* kana_N ン KATAKANA LETTER N */ 219cb93a386Sopenharmony_ci { 0x04de, 0x309b }, /* voicedsound ゛ KATAKANA-HIRAGANA VOICED SOUND MARK */ 220cb93a386Sopenharmony_ci { 0x04df, 0x309c }, /* semivoicedsound ゜ KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */ 221cb93a386Sopenharmony_ci { 0x05ac, 0x060c }, /* Arabic_comma ، ARABIC COMMA */ 222cb93a386Sopenharmony_ci { 0x05bb, 0x061b }, /* Arabic_semicolon ؛ ARABIC SEMICOLON */ 223cb93a386Sopenharmony_ci { 0x05bf, 0x061f }, /* Arabic_question_mark ؟ ARABIC QUESTION MARK */ 224cb93a386Sopenharmony_ci { 0x05c1, 0x0621 }, /* Arabic_hamza ء ARABIC LETTER HAMZA */ 225cb93a386Sopenharmony_ci { 0x05c2, 0x0622 }, /* Arabic_maddaonalef آ ARABIC LETTER ALEF WITH MADDA ABOVE */ 226cb93a386Sopenharmony_ci { 0x05c3, 0x0623 }, /* Arabic_hamzaonalef أ ARABIC LETTER ALEF WITH HAMZA ABOVE */ 227cb93a386Sopenharmony_ci { 0x05c4, 0x0624 }, /* Arabic_hamzaonwaw ؤ ARABIC LETTER WAW WITH HAMZA ABOVE */ 228cb93a386Sopenharmony_ci { 0x05c5, 0x0625 }, /* Arabic_hamzaunderalef إ ARABIC LETTER ALEF WITH HAMZA BELOW */ 229cb93a386Sopenharmony_ci { 0x05c6, 0x0626 }, /* Arabic_hamzaonyeh ئ ARABIC LETTER YEH WITH HAMZA ABOVE */ 230cb93a386Sopenharmony_ci { 0x05c7, 0x0627 }, /* Arabic_alef ا ARABIC LETTER ALEF */ 231cb93a386Sopenharmony_ci { 0x05c8, 0x0628 }, /* Arabic_beh ب ARABIC LETTER BEH */ 232cb93a386Sopenharmony_ci { 0x05c9, 0x0629 }, /* Arabic_tehmarbuta ة ARABIC LETTER TEH MARBUTA */ 233cb93a386Sopenharmony_ci { 0x05ca, 0x062a }, /* Arabic_teh ت ARABIC LETTER TEH */ 234cb93a386Sopenharmony_ci { 0x05cb, 0x062b }, /* Arabic_theh ث ARABIC LETTER THEH */ 235cb93a386Sopenharmony_ci { 0x05cc, 0x062c }, /* Arabic_jeem ج ARABIC LETTER JEEM */ 236cb93a386Sopenharmony_ci { 0x05cd, 0x062d }, /* Arabic_hah ح ARABIC LETTER HAH */ 237cb93a386Sopenharmony_ci { 0x05ce, 0x062e }, /* Arabic_khah خ ARABIC LETTER KHAH */ 238cb93a386Sopenharmony_ci { 0x05cf, 0x062f }, /* Arabic_dal د ARABIC LETTER DAL */ 239cb93a386Sopenharmony_ci { 0x05d0, 0x0630 }, /* Arabic_thal ذ ARABIC LETTER THAL */ 240cb93a386Sopenharmony_ci { 0x05d1, 0x0631 }, /* Arabic_ra ر ARABIC LETTER REH */ 241cb93a386Sopenharmony_ci { 0x05d2, 0x0632 }, /* Arabic_zain ز ARABIC LETTER ZAIN */ 242cb93a386Sopenharmony_ci { 0x05d3, 0x0633 }, /* Arabic_seen س ARABIC LETTER SEEN */ 243cb93a386Sopenharmony_ci { 0x05d4, 0x0634 }, /* Arabic_sheen ش ARABIC LETTER SHEEN */ 244cb93a386Sopenharmony_ci { 0x05d5, 0x0635 }, /* Arabic_sad ص ARABIC LETTER SAD */ 245cb93a386Sopenharmony_ci { 0x05d6, 0x0636 }, /* Arabic_dad ض ARABIC LETTER DAD */ 246cb93a386Sopenharmony_ci { 0x05d7, 0x0637 }, /* Arabic_tah ط ARABIC LETTER TAH */ 247cb93a386Sopenharmony_ci { 0x05d8, 0x0638 }, /* Arabic_zah ظ ARABIC LETTER ZAH */ 248cb93a386Sopenharmony_ci { 0x05d9, 0x0639 }, /* Arabic_ain ع ARABIC LETTER AIN */ 249cb93a386Sopenharmony_ci { 0x05da, 0x063a }, /* Arabic_ghain غ ARABIC LETTER GHAIN */ 250cb93a386Sopenharmony_ci { 0x05e0, 0x0640 }, /* Arabic_tatweel ـ ARABIC TATWEEL */ 251cb93a386Sopenharmony_ci { 0x05e1, 0x0641 }, /* Arabic_feh ف ARABIC LETTER FEH */ 252cb93a386Sopenharmony_ci { 0x05e2, 0x0642 }, /* Arabic_qaf ق ARABIC LETTER QAF */ 253cb93a386Sopenharmony_ci { 0x05e3, 0x0643 }, /* Arabic_kaf ك ARABIC LETTER KAF */ 254cb93a386Sopenharmony_ci { 0x05e4, 0x0644 }, /* Arabic_lam ل ARABIC LETTER LAM */ 255cb93a386Sopenharmony_ci { 0x05e5, 0x0645 }, /* Arabic_meem م ARABIC LETTER MEEM */ 256cb93a386Sopenharmony_ci { 0x05e6, 0x0646 }, /* Arabic_noon ن ARABIC LETTER NOON */ 257cb93a386Sopenharmony_ci { 0x05e7, 0x0647 }, /* Arabic_ha ه ARABIC LETTER HEH */ 258cb93a386Sopenharmony_ci { 0x05e8, 0x0648 }, /* Arabic_waw و ARABIC LETTER WAW */ 259cb93a386Sopenharmony_ci { 0x05e9, 0x0649 }, /* Arabic_alefmaksura ى ARABIC LETTER ALEF MAKSURA */ 260cb93a386Sopenharmony_ci { 0x05ea, 0x064a }, /* Arabic_yeh ي ARABIC LETTER YEH */ 261cb93a386Sopenharmony_ci { 0x05eb, 0x064b }, /* Arabic_fathatan ً ARABIC FATHATAN */ 262cb93a386Sopenharmony_ci { 0x05ec, 0x064c }, /* Arabic_dammatan ٌ ARABIC DAMMATAN */ 263cb93a386Sopenharmony_ci { 0x05ed, 0x064d }, /* Arabic_kasratan ٍ ARABIC KASRATAN */ 264cb93a386Sopenharmony_ci { 0x05ee, 0x064e }, /* Arabic_fatha َ ARABIC FATHA */ 265cb93a386Sopenharmony_ci { 0x05ef, 0x064f }, /* Arabic_damma ُ ARABIC DAMMA */ 266cb93a386Sopenharmony_ci { 0x05f0, 0x0650 }, /* Arabic_kasra ِ ARABIC KASRA */ 267cb93a386Sopenharmony_ci { 0x05f1, 0x0651 }, /* Arabic_shadda ّ ARABIC SHADDA */ 268cb93a386Sopenharmony_ci { 0x05f2, 0x0652 }, /* Arabic_sukun ْ ARABIC SUKUN */ 269cb93a386Sopenharmony_ci { 0x06a1, 0x0452 }, /* Serbian_dje ђ CYRILLIC SMALL LETTER DJE */ 270cb93a386Sopenharmony_ci { 0x06a2, 0x0453 }, /* Macedonia_gje ѓ CYRILLIC SMALL LETTER GJE */ 271cb93a386Sopenharmony_ci { 0x06a3, 0x0451 }, /* Cyrillic_io ё CYRILLIC SMALL LETTER IO */ 272cb93a386Sopenharmony_ci { 0x06a4, 0x0454 }, /* Ukrainian_ie є CYRILLIC SMALL LETTER UKRAINIAN IE */ 273cb93a386Sopenharmony_ci { 0x06a5, 0x0455 }, /* Macedonia_dse ѕ CYRILLIC SMALL LETTER DZE */ 274cb93a386Sopenharmony_ci { 0x06a6, 0x0456 }, /* Ukrainian_i і CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */ 275cb93a386Sopenharmony_ci { 0x06a7, 0x0457 }, /* Ukrainian_yi ї CYRILLIC SMALL LETTER YI */ 276cb93a386Sopenharmony_ci { 0x06a8, 0x0458 }, /* Cyrillic_je ј CYRILLIC SMALL LETTER JE */ 277cb93a386Sopenharmony_ci { 0x06a9, 0x0459 }, /* Cyrillic_lje љ CYRILLIC SMALL LETTER LJE */ 278cb93a386Sopenharmony_ci { 0x06aa, 0x045a }, /* Cyrillic_nje њ CYRILLIC SMALL LETTER NJE */ 279cb93a386Sopenharmony_ci { 0x06ab, 0x045b }, /* Serbian_tshe ћ CYRILLIC SMALL LETTER TSHE */ 280cb93a386Sopenharmony_ci { 0x06ac, 0x045c }, /* Macedonia_kje ќ CYRILLIC SMALL LETTER KJE */ 281cb93a386Sopenharmony_ci { 0x06ae, 0x045e }, /* Byelorussian_shortu ў CYRILLIC SMALL LETTER SHORT U */ 282cb93a386Sopenharmony_ci { 0x06af, 0x045f }, /* Cyrillic_dzhe џ CYRILLIC SMALL LETTER DZHE */ 283cb93a386Sopenharmony_ci { 0x06b0, 0x2116 }, /* numerosign № NUMERO SIGN */ 284cb93a386Sopenharmony_ci { 0x06b1, 0x0402 }, /* Serbian_DJE Ђ CYRILLIC CAPITAL LETTER DJE */ 285cb93a386Sopenharmony_ci { 0x06b2, 0x0403 }, /* Macedonia_GJE Ѓ CYRILLIC CAPITAL LETTER GJE */ 286cb93a386Sopenharmony_ci { 0x06b3, 0x0401 }, /* Cyrillic_IO Ё CYRILLIC CAPITAL LETTER IO */ 287cb93a386Sopenharmony_ci { 0x06b4, 0x0404 }, /* Ukrainian_IE Є CYRILLIC CAPITAL LETTER UKRAINIAN IE */ 288cb93a386Sopenharmony_ci { 0x06b5, 0x0405 }, /* Macedonia_DSE Ѕ CYRILLIC CAPITAL LETTER DZE */ 289cb93a386Sopenharmony_ci { 0x06b6, 0x0406 }, /* Ukrainian_I І CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */ 290cb93a386Sopenharmony_ci { 0x06b7, 0x0407 }, /* Ukrainian_YI Ї CYRILLIC CAPITAL LETTER YI */ 291cb93a386Sopenharmony_ci { 0x06b8, 0x0408 }, /* Cyrillic_JE Ј CYRILLIC CAPITAL LETTER JE */ 292cb93a386Sopenharmony_ci { 0x06b9, 0x0409 }, /* Cyrillic_LJE Љ CYRILLIC CAPITAL LETTER LJE */ 293cb93a386Sopenharmony_ci { 0x06ba, 0x040a }, /* Cyrillic_NJE Њ CYRILLIC CAPITAL LETTER NJE */ 294cb93a386Sopenharmony_ci { 0x06bb, 0x040b }, /* Serbian_TSHE Ћ CYRILLIC CAPITAL LETTER TSHE */ 295cb93a386Sopenharmony_ci { 0x06bc, 0x040c }, /* Macedonia_KJE Ќ CYRILLIC CAPITAL LETTER KJE */ 296cb93a386Sopenharmony_ci { 0x06be, 0x040e }, /* Byelorussian_SHORTU Ў CYRILLIC CAPITAL LETTER SHORT U */ 297cb93a386Sopenharmony_ci { 0x06bf, 0x040f }, /* Cyrillic_DZHE Џ CYRILLIC CAPITAL LETTER DZHE */ 298cb93a386Sopenharmony_ci { 0x06c0, 0x044e }, /* Cyrillic_yu ю CYRILLIC SMALL LETTER YU */ 299cb93a386Sopenharmony_ci { 0x06c1, 0x0430 }, /* Cyrillic_a а CYRILLIC SMALL LETTER A */ 300cb93a386Sopenharmony_ci { 0x06c2, 0x0431 }, /* Cyrillic_be б CYRILLIC SMALL LETTER BE */ 301cb93a386Sopenharmony_ci { 0x06c3, 0x0446 }, /* Cyrillic_tse ц CYRILLIC SMALL LETTER TSE */ 302cb93a386Sopenharmony_ci { 0x06c4, 0x0434 }, /* Cyrillic_de д CYRILLIC SMALL LETTER DE */ 303cb93a386Sopenharmony_ci { 0x06c5, 0x0435 }, /* Cyrillic_ie е CYRILLIC SMALL LETTER IE */ 304cb93a386Sopenharmony_ci { 0x06c6, 0x0444 }, /* Cyrillic_ef ф CYRILLIC SMALL LETTER EF */ 305cb93a386Sopenharmony_ci { 0x06c7, 0x0433 }, /* Cyrillic_ghe г CYRILLIC SMALL LETTER GHE */ 306cb93a386Sopenharmony_ci { 0x06c8, 0x0445 }, /* Cyrillic_ha х CYRILLIC SMALL LETTER HA */ 307cb93a386Sopenharmony_ci { 0x06c9, 0x0438 }, /* Cyrillic_i и CYRILLIC SMALL LETTER I */ 308cb93a386Sopenharmony_ci { 0x06ca, 0x0439 }, /* Cyrillic_shorti й CYRILLIC SMALL LETTER SHORT I */ 309cb93a386Sopenharmony_ci { 0x06cb, 0x043a }, /* Cyrillic_ka к CYRILLIC SMALL LETTER KA */ 310cb93a386Sopenharmony_ci { 0x06cc, 0x043b }, /* Cyrillic_el л CYRILLIC SMALL LETTER EL */ 311cb93a386Sopenharmony_ci { 0x06cd, 0x043c }, /* Cyrillic_em м CYRILLIC SMALL LETTER EM */ 312cb93a386Sopenharmony_ci { 0x06ce, 0x043d }, /* Cyrillic_en н CYRILLIC SMALL LETTER EN */ 313cb93a386Sopenharmony_ci { 0x06cf, 0x043e }, /* Cyrillic_o о CYRILLIC SMALL LETTER O */ 314cb93a386Sopenharmony_ci { 0x06d0, 0x043f }, /* Cyrillic_pe п CYRILLIC SMALL LETTER PE */ 315cb93a386Sopenharmony_ci { 0x06d1, 0x044f }, /* Cyrillic_ya я CYRILLIC SMALL LETTER YA */ 316cb93a386Sopenharmony_ci { 0x06d2, 0x0440 }, /* Cyrillic_er р CYRILLIC SMALL LETTER ER */ 317cb93a386Sopenharmony_ci { 0x06d3, 0x0441 }, /* Cyrillic_es с CYRILLIC SMALL LETTER ES */ 318cb93a386Sopenharmony_ci { 0x06d4, 0x0442 }, /* Cyrillic_te т CYRILLIC SMALL LETTER TE */ 319cb93a386Sopenharmony_ci { 0x06d5, 0x0443 }, /* Cyrillic_u у CYRILLIC SMALL LETTER U */ 320cb93a386Sopenharmony_ci { 0x06d6, 0x0436 }, /* Cyrillic_zhe ж CYRILLIC SMALL LETTER ZHE */ 321cb93a386Sopenharmony_ci { 0x06d7, 0x0432 }, /* Cyrillic_ve в CYRILLIC SMALL LETTER VE */ 322cb93a386Sopenharmony_ci { 0x06d8, 0x044c }, /* Cyrillic_softsign ь CYRILLIC SMALL LETTER SOFT SIGN */ 323cb93a386Sopenharmony_ci { 0x06d9, 0x044b }, /* Cyrillic_yeru ы CYRILLIC SMALL LETTER YERU */ 324cb93a386Sopenharmony_ci { 0x06da, 0x0437 }, /* Cyrillic_ze з CYRILLIC SMALL LETTER ZE */ 325cb93a386Sopenharmony_ci { 0x06db, 0x0448 }, /* Cyrillic_sha ш CYRILLIC SMALL LETTER SHA */ 326cb93a386Sopenharmony_ci { 0x06dc, 0x044d }, /* Cyrillic_e э CYRILLIC SMALL LETTER E */ 327cb93a386Sopenharmony_ci { 0x06dd, 0x0449 }, /* Cyrillic_shcha щ CYRILLIC SMALL LETTER SHCHA */ 328cb93a386Sopenharmony_ci { 0x06de, 0x0447 }, /* Cyrillic_che ч CYRILLIC SMALL LETTER CHE */ 329cb93a386Sopenharmony_ci { 0x06df, 0x044a }, /* Cyrillic_hardsign ъ CYRILLIC SMALL LETTER HARD SIGN */ 330cb93a386Sopenharmony_ci { 0x06e0, 0x042e }, /* Cyrillic_YU Ю CYRILLIC CAPITAL LETTER YU */ 331cb93a386Sopenharmony_ci { 0x06e1, 0x0410 }, /* Cyrillic_A А CYRILLIC CAPITAL LETTER A */ 332cb93a386Sopenharmony_ci { 0x06e2, 0x0411 }, /* Cyrillic_BE Б CYRILLIC CAPITAL LETTER BE */ 333cb93a386Sopenharmony_ci { 0x06e3, 0x0426 }, /* Cyrillic_TSE Ц CYRILLIC CAPITAL LETTER TSE */ 334cb93a386Sopenharmony_ci { 0x06e4, 0x0414 }, /* Cyrillic_DE Д CYRILLIC CAPITAL LETTER DE */ 335cb93a386Sopenharmony_ci { 0x06e5, 0x0415 }, /* Cyrillic_IE Е CYRILLIC CAPITAL LETTER IE */ 336cb93a386Sopenharmony_ci { 0x06e6, 0x0424 }, /* Cyrillic_EF Ф CYRILLIC CAPITAL LETTER EF */ 337cb93a386Sopenharmony_ci { 0x06e7, 0x0413 }, /* Cyrillic_GHE Г CYRILLIC CAPITAL LETTER GHE */ 338cb93a386Sopenharmony_ci { 0x06e8, 0x0425 }, /* Cyrillic_HA Х CYRILLIC CAPITAL LETTER HA */ 339cb93a386Sopenharmony_ci { 0x06e9, 0x0418 }, /* Cyrillic_I И CYRILLIC CAPITAL LETTER I */ 340cb93a386Sopenharmony_ci { 0x06ea, 0x0419 }, /* Cyrillic_SHORTI Й CYRILLIC CAPITAL LETTER SHORT I */ 341cb93a386Sopenharmony_ci { 0x06eb, 0x041a }, /* Cyrillic_KA К CYRILLIC CAPITAL LETTER KA */ 342cb93a386Sopenharmony_ci { 0x06ec, 0x041b }, /* Cyrillic_EL Л CYRILLIC CAPITAL LETTER EL */ 343cb93a386Sopenharmony_ci { 0x06ed, 0x041c }, /* Cyrillic_EM М CYRILLIC CAPITAL LETTER EM */ 344cb93a386Sopenharmony_ci { 0x06ee, 0x041d }, /* Cyrillic_EN Н CYRILLIC CAPITAL LETTER EN */ 345cb93a386Sopenharmony_ci { 0x06ef, 0x041e }, /* Cyrillic_O О CYRILLIC CAPITAL LETTER O */ 346cb93a386Sopenharmony_ci { 0x06f0, 0x041f }, /* Cyrillic_PE П CYRILLIC CAPITAL LETTER PE */ 347cb93a386Sopenharmony_ci { 0x06f1, 0x042f }, /* Cyrillic_YA Я CYRILLIC CAPITAL LETTER YA */ 348cb93a386Sopenharmony_ci { 0x06f2, 0x0420 }, /* Cyrillic_ER Р CYRILLIC CAPITAL LETTER ER */ 349cb93a386Sopenharmony_ci { 0x06f3, 0x0421 }, /* Cyrillic_ES С CYRILLIC CAPITAL LETTER ES */ 350cb93a386Sopenharmony_ci { 0x06f4, 0x0422 }, /* Cyrillic_TE Т CYRILLIC CAPITAL LETTER TE */ 351cb93a386Sopenharmony_ci { 0x06f5, 0x0423 }, /* Cyrillic_U У CYRILLIC CAPITAL LETTER U */ 352cb93a386Sopenharmony_ci { 0x06f6, 0x0416 }, /* Cyrillic_ZHE Ж CYRILLIC CAPITAL LETTER ZHE */ 353cb93a386Sopenharmony_ci { 0x06f7, 0x0412 }, /* Cyrillic_VE В CYRILLIC CAPITAL LETTER VE */ 354cb93a386Sopenharmony_ci { 0x06f8, 0x042c }, /* Cyrillic_SOFTSIGN Ь CYRILLIC CAPITAL LETTER SOFT SIGN */ 355cb93a386Sopenharmony_ci { 0x06f9, 0x042b }, /* Cyrillic_YERU Ы CYRILLIC CAPITAL LETTER YERU */ 356cb93a386Sopenharmony_ci { 0x06fa, 0x0417 }, /* Cyrillic_ZE З CYRILLIC CAPITAL LETTER ZE */ 357cb93a386Sopenharmony_ci { 0x06fb, 0x0428 }, /* Cyrillic_SHA Ш CYRILLIC CAPITAL LETTER SHA */ 358cb93a386Sopenharmony_ci { 0x06fc, 0x042d }, /* Cyrillic_E Э CYRILLIC CAPITAL LETTER E */ 359cb93a386Sopenharmony_ci { 0x06fd, 0x0429 }, /* Cyrillic_SHCHA Щ CYRILLIC CAPITAL LETTER SHCHA */ 360cb93a386Sopenharmony_ci { 0x06fe, 0x0427 }, /* Cyrillic_CHE Ч CYRILLIC CAPITAL LETTER CHE */ 361cb93a386Sopenharmony_ci { 0x06ff, 0x042a }, /* Cyrillic_HARDSIGN Ъ CYRILLIC CAPITAL LETTER HARD SIGN */ 362cb93a386Sopenharmony_ci { 0x07a1, 0x0386 }, /* Greek_ALPHAaccent Ά GREEK CAPITAL LETTER ALPHA WITH TONOS */ 363cb93a386Sopenharmony_ci { 0x07a2, 0x0388 }, /* Greek_EPSILONaccent Έ GREEK CAPITAL LETTER EPSILON WITH TONOS */ 364cb93a386Sopenharmony_ci { 0x07a3, 0x0389 }, /* Greek_ETAaccent Ή GREEK CAPITAL LETTER ETA WITH TONOS */ 365cb93a386Sopenharmony_ci { 0x07a4, 0x038a }, /* Greek_IOTAaccent Ί GREEK CAPITAL LETTER IOTA WITH TONOS */ 366cb93a386Sopenharmony_ci { 0x07a5, 0x03aa }, /* Greek_IOTAdiaeresis Ϊ GREEK CAPITAL LETTER IOTA WITH DIALYTIKA */ 367cb93a386Sopenharmony_ci { 0x07a7, 0x038c }, /* Greek_OMICRONaccent Ό GREEK CAPITAL LETTER OMICRON WITH TONOS */ 368cb93a386Sopenharmony_ci { 0x07a8, 0x038e }, /* Greek_UPSILONaccent Ύ GREEK CAPITAL LETTER UPSILON WITH TONOS */ 369cb93a386Sopenharmony_ci { 0x07a9, 0x03ab }, /* Greek_UPSILONdieresis Ϋ GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA */ 370cb93a386Sopenharmony_ci { 0x07ab, 0x038f }, /* Greek_OMEGAaccent Ώ GREEK CAPITAL LETTER OMEGA WITH TONOS */ 371cb93a386Sopenharmony_ci { 0x07ae, 0x0385 }, /* Greek_accentdieresis ΅ GREEK DIALYTIKA TONOS */ 372cb93a386Sopenharmony_ci { 0x07af, 0x2015 }, /* Greek_horizbar ― HORIZONTAL BAR */ 373cb93a386Sopenharmony_ci { 0x07b1, 0x03ac }, /* Greek_alphaaccent ά GREEK SMALL LETTER ALPHA WITH TONOS */ 374cb93a386Sopenharmony_ci { 0x07b2, 0x03ad }, /* Greek_epsilonaccent έ GREEK SMALL LETTER EPSILON WITH TONOS */ 375cb93a386Sopenharmony_ci { 0x07b3, 0x03ae }, /* Greek_etaaccent ή GREEK SMALL LETTER ETA WITH TONOS */ 376cb93a386Sopenharmony_ci { 0x07b4, 0x03af }, /* Greek_iotaaccent ί GREEK SMALL LETTER IOTA WITH TONOS */ 377cb93a386Sopenharmony_ci { 0x07b5, 0x03ca }, /* Greek_iotadieresis ϊ GREEK SMALL LETTER IOTA WITH DIALYTIKA */ 378cb93a386Sopenharmony_ci { 0x07b6, 0x0390 }, /* Greek_iotaaccentdieresis ΐ GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS */ 379cb93a386Sopenharmony_ci { 0x07b7, 0x03cc }, /* Greek_omicronaccent ό GREEK SMALL LETTER OMICRON WITH TONOS */ 380cb93a386Sopenharmony_ci { 0x07b8, 0x03cd }, /* Greek_upsilonaccent ύ GREEK SMALL LETTER UPSILON WITH TONOS */ 381cb93a386Sopenharmony_ci { 0x07b9, 0x03cb }, /* Greek_upsilondieresis ϋ GREEK SMALL LETTER UPSILON WITH DIALYTIKA */ 382cb93a386Sopenharmony_ci { 0x07ba, 0x03b0 }, /* Greek_upsilonaccentdieresis ΰ GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS */ 383cb93a386Sopenharmony_ci { 0x07bb, 0x03ce }, /* Greek_omegaaccent ώ GREEK SMALL LETTER OMEGA WITH TONOS */ 384cb93a386Sopenharmony_ci { 0x07c1, 0x0391 }, /* Greek_ALPHA Α GREEK CAPITAL LETTER ALPHA */ 385cb93a386Sopenharmony_ci { 0x07c2, 0x0392 }, /* Greek_BETA Β GREEK CAPITAL LETTER BETA */ 386cb93a386Sopenharmony_ci { 0x07c3, 0x0393 }, /* Greek_GAMMA Γ GREEK CAPITAL LETTER GAMMA */ 387cb93a386Sopenharmony_ci { 0x07c4, 0x0394 }, /* Greek_DELTA Δ GREEK CAPITAL LETTER DELTA */ 388cb93a386Sopenharmony_ci { 0x07c5, 0x0395 }, /* Greek_EPSILON Ε GREEK CAPITAL LETTER EPSILON */ 389cb93a386Sopenharmony_ci { 0x07c6, 0x0396 }, /* Greek_ZETA Ζ GREEK CAPITAL LETTER ZETA */ 390cb93a386Sopenharmony_ci { 0x07c7, 0x0397 }, /* Greek_ETA Η GREEK CAPITAL LETTER ETA */ 391cb93a386Sopenharmony_ci { 0x07c8, 0x0398 }, /* Greek_THETA Θ GREEK CAPITAL LETTER THETA */ 392cb93a386Sopenharmony_ci { 0x07c9, 0x0399 }, /* Greek_IOTA Ι GREEK CAPITAL LETTER IOTA */ 393cb93a386Sopenharmony_ci { 0x07ca, 0x039a }, /* Greek_KAPPA Κ GREEK CAPITAL LETTER KAPPA */ 394cb93a386Sopenharmony_ci { 0x07cb, 0x039b }, /* Greek_LAMBDA Λ GREEK CAPITAL LETTER LAMDA */ 395cb93a386Sopenharmony_ci { 0x07cc, 0x039c }, /* Greek_MU Μ GREEK CAPITAL LETTER MU */ 396cb93a386Sopenharmony_ci { 0x07cd, 0x039d }, /* Greek_NU Ν GREEK CAPITAL LETTER NU */ 397cb93a386Sopenharmony_ci { 0x07ce, 0x039e }, /* Greek_XI Ξ GREEK CAPITAL LETTER XI */ 398cb93a386Sopenharmony_ci { 0x07cf, 0x039f }, /* Greek_OMICRON Ο GREEK CAPITAL LETTER OMICRON */ 399cb93a386Sopenharmony_ci { 0x07d0, 0x03a0 }, /* Greek_PI Π GREEK CAPITAL LETTER PI */ 400cb93a386Sopenharmony_ci { 0x07d1, 0x03a1 }, /* Greek_RHO Ρ GREEK CAPITAL LETTER RHO */ 401cb93a386Sopenharmony_ci { 0x07d2, 0x03a3 }, /* Greek_SIGMA Σ GREEK CAPITAL LETTER SIGMA */ 402cb93a386Sopenharmony_ci { 0x07d4, 0x03a4 }, /* Greek_TAU Τ GREEK CAPITAL LETTER TAU */ 403cb93a386Sopenharmony_ci { 0x07d5, 0x03a5 }, /* Greek_UPSILON Υ GREEK CAPITAL LETTER UPSILON */ 404cb93a386Sopenharmony_ci { 0x07d6, 0x03a6 }, /* Greek_PHI Φ GREEK CAPITAL LETTER PHI */ 405cb93a386Sopenharmony_ci { 0x07d7, 0x03a7 }, /* Greek_CHI Χ GREEK CAPITAL LETTER CHI */ 406cb93a386Sopenharmony_ci { 0x07d8, 0x03a8 }, /* Greek_PSI Ψ GREEK CAPITAL LETTER PSI */ 407cb93a386Sopenharmony_ci { 0x07d9, 0x03a9 }, /* Greek_OMEGA Ω GREEK CAPITAL LETTER OMEGA */ 408cb93a386Sopenharmony_ci { 0x07e1, 0x03b1 }, /* Greek_alpha α GREEK SMALL LETTER ALPHA */ 409cb93a386Sopenharmony_ci { 0x07e2, 0x03b2 }, /* Greek_beta β GREEK SMALL LETTER BETA */ 410cb93a386Sopenharmony_ci { 0x07e3, 0x03b3 }, /* Greek_gamma γ GREEK SMALL LETTER GAMMA */ 411cb93a386Sopenharmony_ci { 0x07e4, 0x03b4 }, /* Greek_delta δ GREEK SMALL LETTER DELTA */ 412cb93a386Sopenharmony_ci { 0x07e5, 0x03b5 }, /* Greek_epsilon ε GREEK SMALL LETTER EPSILON */ 413cb93a386Sopenharmony_ci { 0x07e6, 0x03b6 }, /* Greek_zeta ζ GREEK SMALL LETTER ZETA */ 414cb93a386Sopenharmony_ci { 0x07e7, 0x03b7 }, /* Greek_eta η GREEK SMALL LETTER ETA */ 415cb93a386Sopenharmony_ci { 0x07e8, 0x03b8 }, /* Greek_theta θ GREEK SMALL LETTER THETA */ 416cb93a386Sopenharmony_ci { 0x07e9, 0x03b9 }, /* Greek_iota ι GREEK SMALL LETTER IOTA */ 417cb93a386Sopenharmony_ci { 0x07ea, 0x03ba }, /* Greek_kappa κ GREEK SMALL LETTER KAPPA */ 418cb93a386Sopenharmony_ci { 0x07eb, 0x03bb }, /* Greek_lambda λ GREEK SMALL LETTER LAMDA */ 419cb93a386Sopenharmony_ci { 0x07ec, 0x03bc }, /* Greek_mu μ GREEK SMALL LETTER MU */ 420cb93a386Sopenharmony_ci { 0x07ed, 0x03bd }, /* Greek_nu ν GREEK SMALL LETTER NU */ 421cb93a386Sopenharmony_ci { 0x07ee, 0x03be }, /* Greek_xi ξ GREEK SMALL LETTER XI */ 422cb93a386Sopenharmony_ci { 0x07ef, 0x03bf }, /* Greek_omicron ο GREEK SMALL LETTER OMICRON */ 423cb93a386Sopenharmony_ci { 0x07f0, 0x03c0 }, /* Greek_pi π GREEK SMALL LETTER PI */ 424cb93a386Sopenharmony_ci { 0x07f1, 0x03c1 }, /* Greek_rho ρ GREEK SMALL LETTER RHO */ 425cb93a386Sopenharmony_ci { 0x07f2, 0x03c3 }, /* Greek_sigma σ GREEK SMALL LETTER SIGMA */ 426cb93a386Sopenharmony_ci { 0x07f3, 0x03c2 }, /* Greek_finalsmallsigma ς GREEK SMALL LETTER FINAL SIGMA */ 427cb93a386Sopenharmony_ci { 0x07f4, 0x03c4 }, /* Greek_tau τ GREEK SMALL LETTER TAU */ 428cb93a386Sopenharmony_ci { 0x07f5, 0x03c5 }, /* Greek_upsilon υ GREEK SMALL LETTER UPSILON */ 429cb93a386Sopenharmony_ci { 0x07f6, 0x03c6 }, /* Greek_phi φ GREEK SMALL LETTER PHI */ 430cb93a386Sopenharmony_ci { 0x07f7, 0x03c7 }, /* Greek_chi χ GREEK SMALL LETTER CHI */ 431cb93a386Sopenharmony_ci { 0x07f8, 0x03c8 }, /* Greek_psi ψ GREEK SMALL LETTER PSI */ 432cb93a386Sopenharmony_ci { 0x07f9, 0x03c9 }, /* Greek_omega ω GREEK SMALL LETTER OMEGA */ 433cb93a386Sopenharmony_ci { 0x08a1, 0x23b7 }, /* leftradical ⎷ ??? */ 434cb93a386Sopenharmony_ci { 0x08a2, 0x250c }, /* topleftradical ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT */ 435cb93a386Sopenharmony_ci { 0x08a3, 0x2500 }, /* horizconnector ─ BOX DRAWINGS LIGHT HORIZONTAL */ 436cb93a386Sopenharmony_ci { 0x08a4, 0x2320 }, /* topintegral ⌠ TOP HALF INTEGRAL */ 437cb93a386Sopenharmony_ci { 0x08a5, 0x2321 }, /* botintegral ⌡ BOTTOM HALF INTEGRAL */ 438cb93a386Sopenharmony_ci { 0x08a6, 0x2502 }, /* vertconnector │ BOX DRAWINGS LIGHT VERTICAL */ 439cb93a386Sopenharmony_ci { 0x08a7, 0x23a1 }, /* topleftsqbracket ⎡ ??? */ 440cb93a386Sopenharmony_ci { 0x08a8, 0x23a3 }, /* botleftsqbracket ⎣ ??? */ 441cb93a386Sopenharmony_ci { 0x08a9, 0x23a4 }, /* toprightsqbracket ⎤ ??? */ 442cb93a386Sopenharmony_ci { 0x08aa, 0x23a6 }, /* botrightsqbracket ⎦ ??? */ 443cb93a386Sopenharmony_ci { 0x08ab, 0x239b }, /* topleftparens ⎛ ??? */ 444cb93a386Sopenharmony_ci { 0x08ac, 0x239d }, /* botleftparens ⎝ ??? */ 445cb93a386Sopenharmony_ci { 0x08ad, 0x239e }, /* toprightparens ⎞ ??? */ 446cb93a386Sopenharmony_ci { 0x08ae, 0x23a0 }, /* botrightparens ⎠ ??? */ 447cb93a386Sopenharmony_ci { 0x08af, 0x23a8 }, /* leftmiddlecurlybrace ⎨ ??? */ 448cb93a386Sopenharmony_ci { 0x08b0, 0x23ac }, /* rightmiddlecurlybrace ⎬ ??? */ 449cb93a386Sopenharmony_ci/* 0x08b1 topleftsummation ? ??? */ 450cb93a386Sopenharmony_ci/* 0x08b2 botleftsummation ? ??? */ 451cb93a386Sopenharmony_ci/* 0x08b3 topvertsummationconnector ? ??? */ 452cb93a386Sopenharmony_ci/* 0x08b4 botvertsummationconnector ? ??? */ 453cb93a386Sopenharmony_ci/* 0x08b5 toprightsummation ? ??? */ 454cb93a386Sopenharmony_ci/* 0x08b6 botrightsummation ? ??? */ 455cb93a386Sopenharmony_ci/* 0x08b7 rightmiddlesummation ? ??? */ 456cb93a386Sopenharmony_ci { 0x08bc, 0x2264 }, /* lessthanequal ≤ LESS-THAN OR EQUAL TO */ 457cb93a386Sopenharmony_ci { 0x08bd, 0x2260 }, /* notequal ≠ NOT EQUAL TO */ 458cb93a386Sopenharmony_ci { 0x08be, 0x2265 }, /* greaterthanequal ≥ GREATER-THAN OR EQUAL TO */ 459cb93a386Sopenharmony_ci { 0x08bf, 0x222b }, /* integral ∫ INTEGRAL */ 460cb93a386Sopenharmony_ci { 0x08c0, 0x2234 }, /* therefore ∴ THEREFORE */ 461cb93a386Sopenharmony_ci { 0x08c1, 0x221d }, /* variation ∝ PROPORTIONAL TO */ 462cb93a386Sopenharmony_ci { 0x08c2, 0x221e }, /* infinity ∞ INFINITY */ 463cb93a386Sopenharmony_ci { 0x08c5, 0x2207 }, /* nabla ∇ NABLA */ 464cb93a386Sopenharmony_ci { 0x08c8, 0x223c }, /* approximate ∼ TILDE OPERATOR */ 465cb93a386Sopenharmony_ci { 0x08c9, 0x2243 }, /* similarequal ≃ ASYMPTOTICALLY EQUAL TO */ 466cb93a386Sopenharmony_ci { 0x08cd, 0x21d4 }, /* ifonlyif ⇔ LEFT RIGHT DOUBLE ARROW */ 467cb93a386Sopenharmony_ci { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS DOUBLE ARROW */ 468cb93a386Sopenharmony_ci { 0x08cf, 0x2261 }, /* identical ≡ IDENTICAL TO */ 469cb93a386Sopenharmony_ci { 0x08d6, 0x221a }, /* radical √ SQUARE ROOT */ 470cb93a386Sopenharmony_ci { 0x08da, 0x2282 }, /* includedin ⊂ SUBSET OF */ 471cb93a386Sopenharmony_ci { 0x08db, 0x2283 }, /* includes ⊃ SUPERSET OF */ 472cb93a386Sopenharmony_ci { 0x08dc, 0x2229 }, /* intersection ∩ INTERSECTION */ 473cb93a386Sopenharmony_ci { 0x08dd, 0x222a }, /* union ∪ UNION */ 474cb93a386Sopenharmony_ci { 0x08de, 0x2227 }, /* logicaland ∧ LOGICAL AND */ 475cb93a386Sopenharmony_ci { 0x08df, 0x2228 }, /* logicalor ∨ LOGICAL OR */ 476cb93a386Sopenharmony_ci { 0x08ef, 0x2202 }, /* partialderivative ∂ PARTIAL DIFFERENTIAL */ 477cb93a386Sopenharmony_ci { 0x08f6, 0x0192 }, /* function ƒ LATIN SMALL LETTER F WITH HOOK */ 478cb93a386Sopenharmony_ci { 0x08fb, 0x2190 }, /* leftarrow ← LEFTWARDS ARROW */ 479cb93a386Sopenharmony_ci { 0x08fc, 0x2191 }, /* uparrow ↑ UPWARDS ARROW */ 480cb93a386Sopenharmony_ci { 0x08fd, 0x2192 }, /* rightarrow → RIGHTWARDS ARROW */ 481cb93a386Sopenharmony_ci { 0x08fe, 0x2193 }, /* downarrow ↓ DOWNWARDS ARROW */ 482cb93a386Sopenharmony_ci/* 0x09df blank ? ??? */ 483cb93a386Sopenharmony_ci { 0x09e0, 0x25c6 }, /* soliddiamond ◆ BLACK DIAMOND */ 484cb93a386Sopenharmony_ci { 0x09e1, 0x2592 }, /* checkerboard ▒ MEDIUM SHADE */ 485cb93a386Sopenharmony_ci { 0x09e2, 0x2409 }, /* ht ␉ SYMBOL FOR HORIZONTAL TABULATION */ 486cb93a386Sopenharmony_ci { 0x09e3, 0x240c }, /* ff ␌ SYMBOL FOR FORM FEED */ 487cb93a386Sopenharmony_ci { 0x09e4, 0x240d }, /* cr ␍ SYMBOL FOR CARRIAGE RETURN */ 488cb93a386Sopenharmony_ci { 0x09e5, 0x240a }, /* lf ␊ SYMBOL FOR LINE FEED */ 489cb93a386Sopenharmony_ci { 0x09e8, 0x2424 }, /* nl  SYMBOL FOR NEWLINE */ 490cb93a386Sopenharmony_ci { 0x09e9, 0x240b }, /* vt ␋ SYMBOL FOR VERTICAL TABULATION */ 491cb93a386Sopenharmony_ci { 0x09ea, 0x2518 }, /* lowrightcorner ┘ BOX DRAWINGS LIGHT UP AND LEFT */ 492cb93a386Sopenharmony_ci { 0x09eb, 0x2510 }, /* uprightcorner ┐ BOX DRAWINGS LIGHT DOWN AND LEFT */ 493cb93a386Sopenharmony_ci { 0x09ec, 0x250c }, /* upleftcorner ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT */ 494cb93a386Sopenharmony_ci { 0x09ed, 0x2514 }, /* lowleftcorner └ BOX DRAWINGS LIGHT UP AND RIGHT */ 495cb93a386Sopenharmony_ci { 0x09ee, 0x253c }, /* crossinglines ┼ BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL */ 496cb93a386Sopenharmony_ci { 0x09ef, 0x23ba }, /* horizlinescan1 ⎺ HORIZONTAL SCAN LINE-1 (Unicode 3.2 draft) */ 497cb93a386Sopenharmony_ci { 0x09f0, 0x23bb }, /* horizlinescan3 ⎻ HORIZONTAL SCAN LINE-3 (Unicode 3.2 draft) */ 498cb93a386Sopenharmony_ci { 0x09f1, 0x2500 }, /* horizlinescan5 ─ BOX DRAWINGS LIGHT HORIZONTAL */ 499cb93a386Sopenharmony_ci { 0x09f2, 0x23bc }, /* horizlinescan7 ⎼ HORIZONTAL SCAN LINE-7 (Unicode 3.2 draft) */ 500cb93a386Sopenharmony_ci { 0x09f3, 0x23bd }, /* horizlinescan9 ⎽ HORIZONTAL SCAN LINE-9 (Unicode 3.2 draft) */ 501cb93a386Sopenharmony_ci { 0x09f4, 0x251c }, /* leftt ├ BOX DRAWINGS LIGHT VERTICAL AND RIGHT */ 502cb93a386Sopenharmony_ci { 0x09f5, 0x2524 }, /* rightt ┤ BOX DRAWINGS LIGHT VERTICAL AND LEFT */ 503cb93a386Sopenharmony_ci { 0x09f6, 0x2534 }, /* bott ┴ BOX DRAWINGS LIGHT UP AND HORIZONTAL */ 504cb93a386Sopenharmony_ci { 0x09f7, 0x252c }, /* topt ┬ BOX DRAWINGS LIGHT DOWN AND HORIZONTAL */ 505cb93a386Sopenharmony_ci { 0x09f8, 0x2502 }, /* vertbar │ BOX DRAWINGS LIGHT VERTICAL */ 506cb93a386Sopenharmony_ci { 0x0aa1, 0x2003 }, /* emspace EM SPACE */ 507cb93a386Sopenharmony_ci { 0x0aa2, 0x2002 }, /* enspace EN SPACE */ 508cb93a386Sopenharmony_ci { 0x0aa3, 0x2004 }, /* em3space THREE-PER-EM SPACE */ 509cb93a386Sopenharmony_ci { 0x0aa4, 0x2005 }, /* em4space FOUR-PER-EM SPACE */ 510cb93a386Sopenharmony_ci { 0x0aa5, 0x2007 }, /* digitspace FIGURE SPACE */ 511cb93a386Sopenharmony_ci { 0x0aa6, 0x2008 }, /* punctspace PUNCTUATION SPACE */ 512cb93a386Sopenharmony_ci { 0x0aa7, 0x2009 }, /* thinspace THIN SPACE */ 513cb93a386Sopenharmony_ci { 0x0aa8, 0x200a }, /* hairspace HAIR SPACE */ 514cb93a386Sopenharmony_ci { 0x0aa9, 0x2014 }, /* emdash — EM DASH */ 515cb93a386Sopenharmony_ci { 0x0aaa, 0x2013 }, /* endash – EN DASH */ 516cb93a386Sopenharmony_ci/* 0x0aac signifblank ? ??? */ 517cb93a386Sopenharmony_ci { 0x0aae, 0x2026 }, /* ellipsis … HORIZONTAL ELLIPSIS */ 518cb93a386Sopenharmony_ci { 0x0aaf, 0x2025 }, /* doubbaselinedot ‥ TWO DOT LEADER */ 519cb93a386Sopenharmony_ci { 0x0ab0, 0x2153 }, /* onethird ⅓ VULGAR FRACTION ONE THIRD */ 520cb93a386Sopenharmony_ci { 0x0ab1, 0x2154 }, /* twothirds ⅔ VULGAR FRACTION TWO THIRDS */ 521cb93a386Sopenharmony_ci { 0x0ab2, 0x2155 }, /* onefifth ⅕ VULGAR FRACTION ONE FIFTH */ 522cb93a386Sopenharmony_ci { 0x0ab3, 0x2156 }, /* twofifths ⅖ VULGAR FRACTION TWO FIFTHS */ 523cb93a386Sopenharmony_ci { 0x0ab4, 0x2157 }, /* threefifths ⅗ VULGAR FRACTION THREE FIFTHS */ 524cb93a386Sopenharmony_ci { 0x0ab5, 0x2158 }, /* fourfifths ⅘ VULGAR FRACTION FOUR FIFTHS */ 525cb93a386Sopenharmony_ci { 0x0ab6, 0x2159 }, /* onesixth ⅙ VULGAR FRACTION ONE SIXTH */ 526cb93a386Sopenharmony_ci { 0x0ab7, 0x215a }, /* fivesixths ⅚ VULGAR FRACTION FIVE SIXTHS */ 527cb93a386Sopenharmony_ci { 0x0ab8, 0x2105 }, /* careof ℅ CARE OF */ 528cb93a386Sopenharmony_ci { 0x0abb, 0x2012 }, /* figdash ‒ FIGURE DASH */ 529cb93a386Sopenharmony_ci { 0x0abc, 0x2329 }, /* leftanglebracket 〈 LEFT-POINTING ANGLE BRACKET */ 530cb93a386Sopenharmony_ci/* 0x0abd decimalpoint ? ??? */ 531cb93a386Sopenharmony_ci { 0x0abe, 0x232a }, /* rightanglebracket 〉 RIGHT-POINTING ANGLE BRACKET */ 532cb93a386Sopenharmony_ci/* 0x0abf marker ? ??? */ 533cb93a386Sopenharmony_ci { 0x0ac3, 0x215b }, /* oneeighth ⅛ VULGAR FRACTION ONE EIGHTH */ 534cb93a386Sopenharmony_ci { 0x0ac4, 0x215c }, /* threeeighths ⅜ VULGAR FRACTION THREE EIGHTHS */ 535cb93a386Sopenharmony_ci { 0x0ac5, 0x215d }, /* fiveeighths ⅝ VULGAR FRACTION FIVE EIGHTHS */ 536cb93a386Sopenharmony_ci { 0x0ac6, 0x215e }, /* seveneighths ⅞ VULGAR FRACTION SEVEN EIGHTHS */ 537cb93a386Sopenharmony_ci { 0x0ac9, 0x2122 }, /* trademark ™ TRADE MARK SIGN */ 538cb93a386Sopenharmony_ci { 0x0aca, 0x2613 }, /* signaturemark ☓ SALTIRE */ 539cb93a386Sopenharmony_ci/* 0x0acb trademarkincircle ? ??? */ 540cb93a386Sopenharmony_ci { 0x0acc, 0x25c1 }, /* leftopentriangle ◁ WHITE LEFT-POINTING TRIANGLE */ 541cb93a386Sopenharmony_ci { 0x0acd, 0x25b7 }, /* rightopentriangle ▷ WHITE RIGHT-POINTING TRIANGLE */ 542cb93a386Sopenharmony_ci { 0x0ace, 0x25cb }, /* emopencircle ○ WHITE CIRCLE */ 543cb93a386Sopenharmony_ci { 0x0acf, 0x25af }, /* emopenrectangle ▯ WHITE VERTICAL RECTANGLE */ 544cb93a386Sopenharmony_ci { 0x0ad0, 0x2018 }, /* leftsinglequotemark ‘ LEFT SINGLE QUOTATION MARK */ 545cb93a386Sopenharmony_ci { 0x0ad1, 0x2019 }, /* rightsinglequotemark ’ RIGHT SINGLE QUOTATION MARK */ 546cb93a386Sopenharmony_ci { 0x0ad2, 0x201c }, /* leftdoublequotemark “ LEFT DOUBLE QUOTATION MARK */ 547cb93a386Sopenharmony_ci { 0x0ad3, 0x201d }, /* rightdoublequotemark ” RIGHT DOUBLE QUOTATION MARK */ 548cb93a386Sopenharmony_ci { 0x0ad4, 0x211e }, /* prescription ℞ PRESCRIPTION TAKE */ 549cb93a386Sopenharmony_ci { 0x0ad6, 0x2032 }, /* minutes ′ PRIME */ 550cb93a386Sopenharmony_ci { 0x0ad7, 0x2033 }, /* seconds ″ DOUBLE PRIME */ 551cb93a386Sopenharmony_ci { 0x0ad9, 0x271d }, /* latincross ✝ LATIN CROSS */ 552cb93a386Sopenharmony_ci/* 0x0ada hexagram ? ??? */ 553cb93a386Sopenharmony_ci { 0x0adb, 0x25ac }, /* filledrectbullet ▬ BLACK RECTANGLE */ 554cb93a386Sopenharmony_ci { 0x0adc, 0x25c0 }, /* filledlefttribullet ◀ BLACK LEFT-POINTING TRIANGLE */ 555cb93a386Sopenharmony_ci { 0x0add, 0x25b6 }, /* filledrighttribullet ▶ BLACK RIGHT-POINTING TRIANGLE */ 556cb93a386Sopenharmony_ci { 0x0ade, 0x25cf }, /* emfilledcircle ● BLACK CIRCLE */ 557cb93a386Sopenharmony_ci { 0x0adf, 0x25ae }, /* emfilledrect ▮ BLACK VERTICAL RECTANGLE */ 558cb93a386Sopenharmony_ci { 0x0ae0, 0x25e6 }, /* enopencircbullet ◦ WHITE BULLET */ 559cb93a386Sopenharmony_ci { 0x0ae1, 0x25ab }, /* enopensquarebullet ▫ WHITE SMALL SQUARE */ 560cb93a386Sopenharmony_ci { 0x0ae2, 0x25ad }, /* openrectbullet ▭ WHITE RECTANGLE */ 561cb93a386Sopenharmony_ci { 0x0ae3, 0x25b3 }, /* opentribulletup △ WHITE UP-POINTING TRIANGLE */ 562cb93a386Sopenharmony_ci { 0x0ae4, 0x25bd }, /* opentribulletdown ▽ WHITE DOWN-POINTING TRIANGLE */ 563cb93a386Sopenharmony_ci { 0x0ae5, 0x2606 }, /* openstar ☆ WHITE STAR */ 564cb93a386Sopenharmony_ci { 0x0ae6, 0x2022 }, /* enfilledcircbullet • BULLET */ 565cb93a386Sopenharmony_ci { 0x0ae7, 0x25aa }, /* enfilledsqbullet ▪ BLACK SMALL SQUARE */ 566cb93a386Sopenharmony_ci { 0x0ae8, 0x25b2 }, /* filledtribulletup ▲ BLACK UP-POINTING TRIANGLE */ 567cb93a386Sopenharmony_ci { 0x0ae9, 0x25bc }, /* filledtribulletdown ▼ BLACK DOWN-POINTING TRIANGLE */ 568cb93a386Sopenharmony_ci { 0x0aea, 0x261c }, /* leftpointer ☜ WHITE LEFT POINTING INDEX */ 569cb93a386Sopenharmony_ci { 0x0aeb, 0x261e }, /* rightpointer ☞ WHITE RIGHT POINTING INDEX */ 570cb93a386Sopenharmony_ci { 0x0aec, 0x2663 }, /* club ♣ BLACK CLUB SUIT */ 571cb93a386Sopenharmony_ci { 0x0aed, 0x2666 }, /* diamond ♦ BLACK DIAMOND SUIT */ 572cb93a386Sopenharmony_ci { 0x0aee, 0x2665 }, /* heart ♥ BLACK HEART SUIT */ 573cb93a386Sopenharmony_ci { 0x0af0, 0x2720 }, /* maltesecross ✠ MALTESE CROSS */ 574cb93a386Sopenharmony_ci { 0x0af1, 0x2020 }, /* dagger † DAGGER */ 575cb93a386Sopenharmony_ci { 0x0af2, 0x2021 }, /* doubledagger ‡ DOUBLE DAGGER */ 576cb93a386Sopenharmony_ci { 0x0af3, 0x2713 }, /* checkmark ✓ CHECK MARK */ 577cb93a386Sopenharmony_ci { 0x0af4, 0x2717 }, /* ballotcross ✗ BALLOT X */ 578cb93a386Sopenharmony_ci { 0x0af5, 0x266f }, /* musicalsharp ♯ MUSIC SHARP SIGN */ 579cb93a386Sopenharmony_ci { 0x0af6, 0x266d }, /* musicalflat ♭ MUSIC FLAT SIGN */ 580cb93a386Sopenharmony_ci { 0x0af7, 0x2642 }, /* malesymbol ♂ MALE SIGN */ 581cb93a386Sopenharmony_ci { 0x0af8, 0x2640 }, /* femalesymbol ♀ FEMALE SIGN */ 582cb93a386Sopenharmony_ci { 0x0af9, 0x260e }, /* telephone ☎ BLACK TELEPHONE */ 583cb93a386Sopenharmony_ci { 0x0afa, 0x2315 }, /* telephonerecorder ⌕ TELEPHONE RECORDER */ 584cb93a386Sopenharmony_ci { 0x0afb, 0x2117 }, /* phonographcopyright ℗ SOUND RECORDING COPYRIGHT */ 585cb93a386Sopenharmony_ci { 0x0afc, 0x2038 }, /* caret ‸ CARET */ 586cb93a386Sopenharmony_ci { 0x0afd, 0x201a }, /* singlelowquotemark ‚ SINGLE LOW-9 QUOTATION MARK */ 587cb93a386Sopenharmony_ci { 0x0afe, 0x201e }, /* doublelowquotemark „ DOUBLE LOW-9 QUOTATION MARK */ 588cb93a386Sopenharmony_ci/* 0x0aff cursor ? ??? */ 589cb93a386Sopenharmony_ci { 0x0ba3, 0x003c }, /* leftcaret < LESS-THAN SIGN */ 590cb93a386Sopenharmony_ci { 0x0ba6, 0x003e }, /* rightcaret > GREATER-THAN SIGN */ 591cb93a386Sopenharmony_ci { 0x0ba8, 0x2228 }, /* downcaret ∨ LOGICAL OR */ 592cb93a386Sopenharmony_ci { 0x0ba9, 0x2227 }, /* upcaret ∧ LOGICAL AND */ 593cb93a386Sopenharmony_ci { 0x0bc0, 0x00af }, /* overbar ¯ MACRON */ 594cb93a386Sopenharmony_ci { 0x0bc2, 0x22a5 }, /* downtack ⊥ UP TACK */ 595cb93a386Sopenharmony_ci { 0x0bc3, 0x2229 }, /* upshoe ∩ INTERSECTION */ 596cb93a386Sopenharmony_ci { 0x0bc4, 0x230a }, /* downstile ⌊ LEFT FLOOR */ 597cb93a386Sopenharmony_ci { 0x0bc6, 0x005f }, /* underbar _ LOW LINE */ 598cb93a386Sopenharmony_ci { 0x0bca, 0x2218 }, /* jot ∘ RING OPERATOR */ 599cb93a386Sopenharmony_ci { 0x0bcc, 0x2395 }, /* quad ⎕ APL FUNCTIONAL SYMBOL QUAD */ 600cb93a386Sopenharmony_ci { 0x0bce, 0x22a4 }, /* uptack ⊤ DOWN TACK */ 601cb93a386Sopenharmony_ci { 0x0bcf, 0x25cb }, /* circle ○ WHITE CIRCLE */ 602cb93a386Sopenharmony_ci { 0x0bd3, 0x2308 }, /* upstile ⌈ LEFT CEILING */ 603cb93a386Sopenharmony_ci { 0x0bd6, 0x222a }, /* downshoe ∪ UNION */ 604cb93a386Sopenharmony_ci { 0x0bd8, 0x2283 }, /* rightshoe ⊃ SUPERSET OF */ 605cb93a386Sopenharmony_ci { 0x0bda, 0x2282 }, /* leftshoe ⊂ SUBSET OF */ 606cb93a386Sopenharmony_ci { 0x0bdc, 0x22a2 }, /* lefttack ⊢ RIGHT TACK */ 607cb93a386Sopenharmony_ci { 0x0bfc, 0x22a3 }, /* righttack ⊣ LEFT TACK */ 608cb93a386Sopenharmony_ci { 0x0cdf, 0x2017 }, /* hebrew_doublelowline ‗ DOUBLE LOW LINE */ 609cb93a386Sopenharmony_ci { 0x0ce0, 0x05d0 }, /* hebrew_aleph א HEBREW LETTER ALEF */ 610cb93a386Sopenharmony_ci { 0x0ce1, 0x05d1 }, /* hebrew_bet ב HEBREW LETTER BET */ 611cb93a386Sopenharmony_ci { 0x0ce2, 0x05d2 }, /* hebrew_gimel ג HEBREW LETTER GIMEL */ 612cb93a386Sopenharmony_ci { 0x0ce3, 0x05d3 }, /* hebrew_dalet ד HEBREW LETTER DALET */ 613cb93a386Sopenharmony_ci { 0x0ce4, 0x05d4 }, /* hebrew_he ה HEBREW LETTER HE */ 614cb93a386Sopenharmony_ci { 0x0ce5, 0x05d5 }, /* hebrew_waw ו HEBREW LETTER VAV */ 615cb93a386Sopenharmony_ci { 0x0ce6, 0x05d6 }, /* hebrew_zain ז HEBREW LETTER ZAYIN */ 616cb93a386Sopenharmony_ci { 0x0ce7, 0x05d7 }, /* hebrew_chet ח HEBREW LETTER HET */ 617cb93a386Sopenharmony_ci { 0x0ce8, 0x05d8 }, /* hebrew_tet ט HEBREW LETTER TET */ 618cb93a386Sopenharmony_ci { 0x0ce9, 0x05d9 }, /* hebrew_yod י HEBREW LETTER YOD */ 619cb93a386Sopenharmony_ci { 0x0cea, 0x05da }, /* hebrew_finalkaph ך HEBREW LETTER FINAL KAF */ 620cb93a386Sopenharmony_ci { 0x0ceb, 0x05db }, /* hebrew_kaph כ HEBREW LETTER KAF */ 621cb93a386Sopenharmony_ci { 0x0cec, 0x05dc }, /* hebrew_lamed ל HEBREW LETTER LAMED */ 622cb93a386Sopenharmony_ci { 0x0ced, 0x05dd }, /* hebrew_finalmem ם HEBREW LETTER FINAL MEM */ 623cb93a386Sopenharmony_ci { 0x0cee, 0x05de }, /* hebrew_mem מ HEBREW LETTER MEM */ 624cb93a386Sopenharmony_ci { 0x0cef, 0x05df }, /* hebrew_finalnun ן HEBREW LETTER FINAL NUN */ 625cb93a386Sopenharmony_ci { 0x0cf0, 0x05e0 }, /* hebrew_nun נ HEBREW LETTER NUN */ 626cb93a386Sopenharmony_ci { 0x0cf1, 0x05e1 }, /* hebrew_samech ס HEBREW LETTER SAMEKH */ 627cb93a386Sopenharmony_ci { 0x0cf2, 0x05e2 }, /* hebrew_ayin ע HEBREW LETTER AYIN */ 628cb93a386Sopenharmony_ci { 0x0cf3, 0x05e3 }, /* hebrew_finalpe ף HEBREW LETTER FINAL PE */ 629cb93a386Sopenharmony_ci { 0x0cf4, 0x05e4 }, /* hebrew_pe פ HEBREW LETTER PE */ 630cb93a386Sopenharmony_ci { 0x0cf5, 0x05e5 }, /* hebrew_finalzade ץ HEBREW LETTER FINAL TSADI */ 631cb93a386Sopenharmony_ci { 0x0cf6, 0x05e6 }, /* hebrew_zade צ HEBREW LETTER TSADI */ 632cb93a386Sopenharmony_ci { 0x0cf7, 0x05e7 }, /* hebrew_qoph ק HEBREW LETTER QOF */ 633cb93a386Sopenharmony_ci { 0x0cf8, 0x05e8 }, /* hebrew_resh ר HEBREW LETTER RESH */ 634cb93a386Sopenharmony_ci { 0x0cf9, 0x05e9 }, /* hebrew_shin ש HEBREW LETTER SHIN */ 635cb93a386Sopenharmony_ci { 0x0cfa, 0x05ea }, /* hebrew_taw ת HEBREW LETTER TAV */ 636cb93a386Sopenharmony_ci { 0x0da1, 0x0e01 }, /* Thai_kokai ก THAI CHARACTER KO KAI */ 637cb93a386Sopenharmony_ci { 0x0da2, 0x0e02 }, /* Thai_khokhai ข THAI CHARACTER KHO KHAI */ 638cb93a386Sopenharmony_ci { 0x0da3, 0x0e03 }, /* Thai_khokhuat ฃ THAI CHARACTER KHO KHUAT */ 639cb93a386Sopenharmony_ci { 0x0da4, 0x0e04 }, /* Thai_khokhwai ค THAI CHARACTER KHO KHWAI */ 640cb93a386Sopenharmony_ci { 0x0da5, 0x0e05 }, /* Thai_khokhon ฅ THAI CHARACTER KHO KHON */ 641cb93a386Sopenharmony_ci { 0x0da6, 0x0e06 }, /* Thai_khorakhang ฆ THAI CHARACTER KHO RAKHANG */ 642cb93a386Sopenharmony_ci { 0x0da7, 0x0e07 }, /* Thai_ngongu ง THAI CHARACTER NGO NGU */ 643cb93a386Sopenharmony_ci { 0x0da8, 0x0e08 }, /* Thai_chochan จ THAI CHARACTER CHO CHAN */ 644cb93a386Sopenharmony_ci { 0x0da9, 0x0e09 }, /* Thai_choching ฉ THAI CHARACTER CHO CHING */ 645cb93a386Sopenharmony_ci { 0x0daa, 0x0e0a }, /* Thai_chochang ช THAI CHARACTER CHO CHANG */ 646cb93a386Sopenharmony_ci { 0x0dab, 0x0e0b }, /* Thai_soso ซ THAI CHARACTER SO SO */ 647cb93a386Sopenharmony_ci { 0x0dac, 0x0e0c }, /* Thai_chochoe ฌ THAI CHARACTER CHO CHOE */ 648cb93a386Sopenharmony_ci { 0x0dad, 0x0e0d }, /* Thai_yoying ญ THAI CHARACTER YO YING */ 649cb93a386Sopenharmony_ci { 0x0dae, 0x0e0e }, /* Thai_dochada ฎ THAI CHARACTER DO CHADA */ 650cb93a386Sopenharmony_ci { 0x0daf, 0x0e0f }, /* Thai_topatak ฏ THAI CHARACTER TO PATAK */ 651cb93a386Sopenharmony_ci { 0x0db0, 0x0e10 }, /* Thai_thothan ฐ THAI CHARACTER THO THAN */ 652cb93a386Sopenharmony_ci { 0x0db1, 0x0e11 }, /* Thai_thonangmontho ฑ THAI CHARACTER THO NANGMONTHO */ 653cb93a386Sopenharmony_ci { 0x0db2, 0x0e12 }, /* Thai_thophuthao ฒ THAI CHARACTER THO PHUTHAO */ 654cb93a386Sopenharmony_ci { 0x0db3, 0x0e13 }, /* Thai_nonen ณ THAI CHARACTER NO NEN */ 655cb93a386Sopenharmony_ci { 0x0db4, 0x0e14 }, /* Thai_dodek ด THAI CHARACTER DO DEK */ 656cb93a386Sopenharmony_ci { 0x0db5, 0x0e15 }, /* Thai_totao ต THAI CHARACTER TO TAO */ 657cb93a386Sopenharmony_ci { 0x0db6, 0x0e16 }, /* Thai_thothung ถ THAI CHARACTER THO THUNG */ 658cb93a386Sopenharmony_ci { 0x0db7, 0x0e17 }, /* Thai_thothahan ท THAI CHARACTER THO THAHAN */ 659cb93a386Sopenharmony_ci { 0x0db8, 0x0e18 }, /* Thai_thothong ธ THAI CHARACTER THO THONG */ 660cb93a386Sopenharmony_ci { 0x0db9, 0x0e19 }, /* Thai_nonu น THAI CHARACTER NO NU */ 661cb93a386Sopenharmony_ci { 0x0dba, 0x0e1a }, /* Thai_bobaimai บ THAI CHARACTER BO BAIMAI */ 662cb93a386Sopenharmony_ci { 0x0dbb, 0x0e1b }, /* Thai_popla ป THAI CHARACTER PO PLA */ 663cb93a386Sopenharmony_ci { 0x0dbc, 0x0e1c }, /* Thai_phophung ผ THAI CHARACTER PHO PHUNG */ 664cb93a386Sopenharmony_ci { 0x0dbd, 0x0e1d }, /* Thai_fofa ฝ THAI CHARACTER FO FA */ 665cb93a386Sopenharmony_ci { 0x0dbe, 0x0e1e }, /* Thai_phophan พ THAI CHARACTER PHO PHAN */ 666cb93a386Sopenharmony_ci { 0x0dbf, 0x0e1f }, /* Thai_fofan ฟ THAI CHARACTER FO FAN */ 667cb93a386Sopenharmony_ci { 0x0dc0, 0x0e20 }, /* Thai_phosamphao ภ THAI CHARACTER PHO SAMPHAO */ 668cb93a386Sopenharmony_ci { 0x0dc1, 0x0e21 }, /* Thai_moma ม THAI CHARACTER MO MA */ 669cb93a386Sopenharmony_ci { 0x0dc2, 0x0e22 }, /* Thai_yoyak ย THAI CHARACTER YO YAK */ 670cb93a386Sopenharmony_ci { 0x0dc3, 0x0e23 }, /* Thai_rorua ร THAI CHARACTER RO RUA */ 671cb93a386Sopenharmony_ci { 0x0dc4, 0x0e24 }, /* Thai_ru ฤ THAI CHARACTER RU */ 672cb93a386Sopenharmony_ci { 0x0dc5, 0x0e25 }, /* Thai_loling ล THAI CHARACTER LO LING */ 673cb93a386Sopenharmony_ci { 0x0dc6, 0x0e26 }, /* Thai_lu ฦ THAI CHARACTER LU */ 674cb93a386Sopenharmony_ci { 0x0dc7, 0x0e27 }, /* Thai_wowaen ว THAI CHARACTER WO WAEN */ 675cb93a386Sopenharmony_ci { 0x0dc8, 0x0e28 }, /* Thai_sosala ศ THAI CHARACTER SO SALA */ 676cb93a386Sopenharmony_ci { 0x0dc9, 0x0e29 }, /* Thai_sorusi ษ THAI CHARACTER SO RUSI */ 677cb93a386Sopenharmony_ci { 0x0dca, 0x0e2a }, /* Thai_sosua ส THAI CHARACTER SO SUA */ 678cb93a386Sopenharmony_ci { 0x0dcb, 0x0e2b }, /* Thai_hohip ห THAI CHARACTER HO HIP */ 679cb93a386Sopenharmony_ci { 0x0dcc, 0x0e2c }, /* Thai_lochula ฬ THAI CHARACTER LO CHULA */ 680cb93a386Sopenharmony_ci { 0x0dcd, 0x0e2d }, /* Thai_oang อ THAI CHARACTER O ANG */ 681cb93a386Sopenharmony_ci { 0x0dce, 0x0e2e }, /* Thai_honokhuk ฮ THAI CHARACTER HO NOKHUK */ 682cb93a386Sopenharmony_ci { 0x0dcf, 0x0e2f }, /* Thai_paiyannoi ฯ THAI CHARACTER PAIYANNOI */ 683cb93a386Sopenharmony_ci { 0x0dd0, 0x0e30 }, /* Thai_saraa ะ THAI CHARACTER SARA A */ 684cb93a386Sopenharmony_ci { 0x0dd1, 0x0e31 }, /* Thai_maihanakat ั THAI CHARACTER MAI HAN-AKAT */ 685cb93a386Sopenharmony_ci { 0x0dd2, 0x0e32 }, /* Thai_saraaa า THAI CHARACTER SARA AA */ 686cb93a386Sopenharmony_ci { 0x0dd3, 0x0e33 }, /* Thai_saraam ำ THAI CHARACTER SARA AM */ 687cb93a386Sopenharmony_ci { 0x0dd4, 0x0e34 }, /* Thai_sarai ิ THAI CHARACTER SARA I */ 688cb93a386Sopenharmony_ci { 0x0dd5, 0x0e35 }, /* Thai_saraii ี THAI CHARACTER SARA II */ 689cb93a386Sopenharmony_ci { 0x0dd6, 0x0e36 }, /* Thai_saraue ึ THAI CHARACTER SARA UE */ 690cb93a386Sopenharmony_ci { 0x0dd7, 0x0e37 }, /* Thai_sarauee ื THAI CHARACTER SARA UEE */ 691cb93a386Sopenharmony_ci { 0x0dd8, 0x0e38 }, /* Thai_sarau ุ THAI CHARACTER SARA U */ 692cb93a386Sopenharmony_ci { 0x0dd9, 0x0e39 }, /* Thai_sarauu ู THAI CHARACTER SARA UU */ 693cb93a386Sopenharmony_ci { 0x0dda, 0x0e3a }, /* Thai_phinthu ฺ THAI CHARACTER PHINTHU */ 694cb93a386Sopenharmony_ci/* 0x0dde Thai_maihanakat_maitho ? ??? */ 695cb93a386Sopenharmony_ci { 0x0ddf, 0x0e3f }, /* Thai_baht ฿ THAI CURRENCY SYMBOL BAHT */ 696cb93a386Sopenharmony_ci { 0x0de0, 0x0e40 }, /* Thai_sarae เ THAI CHARACTER SARA E */ 697cb93a386Sopenharmony_ci { 0x0de1, 0x0e41 }, /* Thai_saraae แ THAI CHARACTER SARA AE */ 698cb93a386Sopenharmony_ci { 0x0de2, 0x0e42 }, /* Thai_sarao โ THAI CHARACTER SARA O */ 699cb93a386Sopenharmony_ci { 0x0de3, 0x0e43 }, /* Thai_saraaimaimuan ใ THAI CHARACTER SARA AI MAIMUAN */ 700cb93a386Sopenharmony_ci { 0x0de4, 0x0e44 }, /* Thai_saraaimaimalai ไ THAI CHARACTER SARA AI MAIMALAI */ 701cb93a386Sopenharmony_ci { 0x0de5, 0x0e45 }, /* Thai_lakkhangyao ๅ THAI CHARACTER LAKKHANGYAO */ 702cb93a386Sopenharmony_ci { 0x0de6, 0x0e46 }, /* Thai_maiyamok ๆ THAI CHARACTER MAIYAMOK */ 703cb93a386Sopenharmony_ci { 0x0de7, 0x0e47 }, /* Thai_maitaikhu ็ THAI CHARACTER MAITAIKHU */ 704cb93a386Sopenharmony_ci { 0x0de8, 0x0e48 }, /* Thai_maiek ่ THAI CHARACTER MAI EK */ 705cb93a386Sopenharmony_ci { 0x0de9, 0x0e49 }, /* Thai_maitho ้ THAI CHARACTER MAI THO */ 706cb93a386Sopenharmony_ci { 0x0dea, 0x0e4a }, /* Thai_maitri ๊ THAI CHARACTER MAI TRI */ 707cb93a386Sopenharmony_ci { 0x0deb, 0x0e4b }, /* Thai_maichattawa ๋ THAI CHARACTER MAI CHATTAWA */ 708cb93a386Sopenharmony_ci { 0x0dec, 0x0e4c }, /* Thai_thanthakhat ์ THAI CHARACTER THANTHAKHAT */ 709cb93a386Sopenharmony_ci { 0x0ded, 0x0e4d }, /* Thai_nikhahit ํ THAI CHARACTER NIKHAHIT */ 710cb93a386Sopenharmony_ci { 0x0df0, 0x0e50 }, /* Thai_leksun ๐ THAI DIGIT ZERO */ 711cb93a386Sopenharmony_ci { 0x0df1, 0x0e51 }, /* Thai_leknung ๑ THAI DIGIT ONE */ 712cb93a386Sopenharmony_ci { 0x0df2, 0x0e52 }, /* Thai_leksong ๒ THAI DIGIT TWO */ 713cb93a386Sopenharmony_ci { 0x0df3, 0x0e53 }, /* Thai_leksam ๓ THAI DIGIT THREE */ 714cb93a386Sopenharmony_ci { 0x0df4, 0x0e54 }, /* Thai_leksi ๔ THAI DIGIT FOUR */ 715cb93a386Sopenharmony_ci { 0x0df5, 0x0e55 }, /* Thai_lekha ๕ THAI DIGIT FIVE */ 716cb93a386Sopenharmony_ci { 0x0df6, 0x0e56 }, /* Thai_lekhok ๖ THAI DIGIT SIX */ 717cb93a386Sopenharmony_ci { 0x0df7, 0x0e57 }, /* Thai_lekchet ๗ THAI DIGIT SEVEN */ 718cb93a386Sopenharmony_ci { 0x0df8, 0x0e58 }, /* Thai_lekpaet ๘ THAI DIGIT EIGHT */ 719cb93a386Sopenharmony_ci { 0x0df9, 0x0e59 }, /* Thai_lekkao ๙ THAI DIGIT NINE */ 720cb93a386Sopenharmony_ci { 0x0ea1, 0x3131 }, /* Hangul_Kiyeog ㄱ HANGUL LETTER KIYEOK */ 721cb93a386Sopenharmony_ci { 0x0ea2, 0x3132 }, /* Hangul_SsangKiyeog ㄲ HANGUL LETTER SSANGKIYEOK */ 722cb93a386Sopenharmony_ci { 0x0ea3, 0x3133 }, /* Hangul_KiyeogSios ㄳ HANGUL LETTER KIYEOK-SIOS */ 723cb93a386Sopenharmony_ci { 0x0ea4, 0x3134 }, /* Hangul_Nieun ㄴ HANGUL LETTER NIEUN */ 724cb93a386Sopenharmony_ci { 0x0ea5, 0x3135 }, /* Hangul_NieunJieuj ㄵ HANGUL LETTER NIEUN-CIEUC */ 725cb93a386Sopenharmony_ci { 0x0ea6, 0x3136 }, /* Hangul_NieunHieuh ㄶ HANGUL LETTER NIEUN-HIEUH */ 726cb93a386Sopenharmony_ci { 0x0ea7, 0x3137 }, /* Hangul_Dikeud ㄷ HANGUL LETTER TIKEUT */ 727cb93a386Sopenharmony_ci { 0x0ea8, 0x3138 }, /* Hangul_SsangDikeud ㄸ HANGUL LETTER SSANGTIKEUT */ 728cb93a386Sopenharmony_ci { 0x0ea9, 0x3139 }, /* Hangul_Rieul ㄹ HANGUL LETTER RIEUL */ 729cb93a386Sopenharmony_ci { 0x0eaa, 0x313a }, /* Hangul_RieulKiyeog ㄺ HANGUL LETTER RIEUL-KIYEOK */ 730cb93a386Sopenharmony_ci { 0x0eab, 0x313b }, /* Hangul_RieulMieum ㄻ HANGUL LETTER RIEUL-MIEUM */ 731cb93a386Sopenharmony_ci { 0x0eac, 0x313c }, /* Hangul_RieulPieub ㄼ HANGUL LETTER RIEUL-PIEUP */ 732cb93a386Sopenharmony_ci { 0x0ead, 0x313d }, /* Hangul_RieulSios ㄽ HANGUL LETTER RIEUL-SIOS */ 733cb93a386Sopenharmony_ci { 0x0eae, 0x313e }, /* Hangul_RieulTieut ㄾ HANGUL LETTER RIEUL-THIEUTH */ 734cb93a386Sopenharmony_ci { 0x0eaf, 0x313f }, /* Hangul_RieulPhieuf ㄿ HANGUL LETTER RIEUL-PHIEUPH */ 735cb93a386Sopenharmony_ci { 0x0eb0, 0x3140 }, /* Hangul_RieulHieuh ㅀ HANGUL LETTER RIEUL-HIEUH */ 736cb93a386Sopenharmony_ci { 0x0eb1, 0x3141 }, /* Hangul_Mieum ㅁ HANGUL LETTER MIEUM */ 737cb93a386Sopenharmony_ci { 0x0eb2, 0x3142 }, /* Hangul_Pieub ㅂ HANGUL LETTER PIEUP */ 738cb93a386Sopenharmony_ci { 0x0eb3, 0x3143 }, /* Hangul_SsangPieub ㅃ HANGUL LETTER SSANGPIEUP */ 739cb93a386Sopenharmony_ci { 0x0eb4, 0x3144 }, /* Hangul_PieubSios ㅄ HANGUL LETTER PIEUP-SIOS */ 740cb93a386Sopenharmony_ci { 0x0eb5, 0x3145 }, /* Hangul_Sios ㅅ HANGUL LETTER SIOS */ 741cb93a386Sopenharmony_ci { 0x0eb6, 0x3146 }, /* Hangul_SsangSios ㅆ HANGUL LETTER SSANGSIOS */ 742cb93a386Sopenharmony_ci { 0x0eb7, 0x3147 }, /* Hangul_Ieung ㅇ HANGUL LETTER IEUNG */ 743cb93a386Sopenharmony_ci { 0x0eb8, 0x3148 }, /* Hangul_Jieuj ㅈ HANGUL LETTER CIEUC */ 744cb93a386Sopenharmony_ci { 0x0eb9, 0x3149 }, /* Hangul_SsangJieuj ㅉ HANGUL LETTER SSANGCIEUC */ 745cb93a386Sopenharmony_ci { 0x0eba, 0x314a }, /* Hangul_Cieuc ㅊ HANGUL LETTER CHIEUCH */ 746cb93a386Sopenharmony_ci { 0x0ebb, 0x314b }, /* Hangul_Khieuq ㅋ HANGUL LETTER KHIEUKH */ 747cb93a386Sopenharmony_ci { 0x0ebc, 0x314c }, /* Hangul_Tieut ㅌ HANGUL LETTER THIEUTH */ 748cb93a386Sopenharmony_ci { 0x0ebd, 0x314d }, /* Hangul_Phieuf ㅍ HANGUL LETTER PHIEUPH */ 749cb93a386Sopenharmony_ci { 0x0ebe, 0x314e }, /* Hangul_Hieuh ㅎ HANGUL LETTER HIEUH */ 750cb93a386Sopenharmony_ci { 0x0ebf, 0x314f }, /* Hangul_A ㅏ HANGUL LETTER A */ 751cb93a386Sopenharmony_ci { 0x0ec0, 0x3150 }, /* Hangul_AE ㅐ HANGUL LETTER AE */ 752cb93a386Sopenharmony_ci { 0x0ec1, 0x3151 }, /* Hangul_YA ㅑ HANGUL LETTER YA */ 753cb93a386Sopenharmony_ci { 0x0ec2, 0x3152 }, /* Hangul_YAE ㅒ HANGUL LETTER YAE */ 754cb93a386Sopenharmony_ci { 0x0ec3, 0x3153 }, /* Hangul_EO ㅓ HANGUL LETTER EO */ 755cb93a386Sopenharmony_ci { 0x0ec4, 0x3154 }, /* Hangul_E ㅔ HANGUL LETTER E */ 756cb93a386Sopenharmony_ci { 0x0ec5, 0x3155 }, /* Hangul_YEO ㅕ HANGUL LETTER YEO */ 757cb93a386Sopenharmony_ci { 0x0ec6, 0x3156 }, /* Hangul_YE ㅖ HANGUL LETTER YE */ 758cb93a386Sopenharmony_ci { 0x0ec7, 0x3157 }, /* Hangul_O ㅗ HANGUL LETTER O */ 759cb93a386Sopenharmony_ci { 0x0ec8, 0x3158 }, /* Hangul_WA ㅘ HANGUL LETTER WA */ 760cb93a386Sopenharmony_ci { 0x0ec9, 0x3159 }, /* Hangul_WAE ㅙ HANGUL LETTER WAE */ 761cb93a386Sopenharmony_ci { 0x0eca, 0x315a }, /* Hangul_OE ㅚ HANGUL LETTER OE */ 762cb93a386Sopenharmony_ci { 0x0ecb, 0x315b }, /* Hangul_YO ㅛ HANGUL LETTER YO */ 763cb93a386Sopenharmony_ci { 0x0ecc, 0x315c }, /* Hangul_U ㅜ HANGUL LETTER U */ 764cb93a386Sopenharmony_ci { 0x0ecd, 0x315d }, /* Hangul_WEO ㅝ HANGUL LETTER WEO */ 765cb93a386Sopenharmony_ci { 0x0ece, 0x315e }, /* Hangul_WE ㅞ HANGUL LETTER WE */ 766cb93a386Sopenharmony_ci { 0x0ecf, 0x315f }, /* Hangul_WI ㅟ HANGUL LETTER WI */ 767cb93a386Sopenharmony_ci { 0x0ed0, 0x3160 }, /* Hangul_YU ㅠ HANGUL LETTER YU */ 768cb93a386Sopenharmony_ci { 0x0ed1, 0x3161 }, /* Hangul_EU ㅡ HANGUL LETTER EU */ 769cb93a386Sopenharmony_ci { 0x0ed2, 0x3162 }, /* Hangul_YI ㅢ HANGUL LETTER YI */ 770cb93a386Sopenharmony_ci { 0x0ed3, 0x3163 }, /* Hangul_I ㅣ HANGUL LETTER I */ 771cb93a386Sopenharmony_ci { 0x0ed4, 0x11a8 }, /* Hangul_J_Kiyeog ᆨ HANGUL JONGSEONG KIYEOK */ 772cb93a386Sopenharmony_ci { 0x0ed5, 0x11a9 }, /* Hangul_J_SsangKiyeog ᆩ HANGUL JONGSEONG SSANGKIYEOK */ 773cb93a386Sopenharmony_ci { 0x0ed6, 0x11aa }, /* Hangul_J_KiyeogSios ᆪ HANGUL JONGSEONG KIYEOK-SIOS */ 774cb93a386Sopenharmony_ci { 0x0ed7, 0x11ab }, /* Hangul_J_Nieun ᆫ HANGUL JONGSEONG NIEUN */ 775cb93a386Sopenharmony_ci { 0x0ed8, 0x11ac }, /* Hangul_J_NieunJieuj ᆬ HANGUL JONGSEONG NIEUN-CIEUC */ 776cb93a386Sopenharmony_ci { 0x0ed9, 0x11ad }, /* Hangul_J_NieunHieuh ᆭ HANGUL JONGSEONG NIEUN-HIEUH */ 777cb93a386Sopenharmony_ci { 0x0eda, 0x11ae }, /* Hangul_J_Dikeud ᆮ HANGUL JONGSEONG TIKEUT */ 778cb93a386Sopenharmony_ci { 0x0edb, 0x11af }, /* Hangul_J_Rieul ᆯ HANGUL JONGSEONG RIEUL */ 779cb93a386Sopenharmony_ci { 0x0edc, 0x11b0 }, /* Hangul_J_RieulKiyeog ᆰ HANGUL JONGSEONG RIEUL-KIYEOK */ 780cb93a386Sopenharmony_ci { 0x0edd, 0x11b1 }, /* Hangul_J_RieulMieum ᆱ HANGUL JONGSEONG RIEUL-MIEUM */ 781cb93a386Sopenharmony_ci { 0x0ede, 0x11b2 }, /* Hangul_J_RieulPieub ᆲ HANGUL JONGSEONG RIEUL-PIEUP */ 782cb93a386Sopenharmony_ci { 0x0edf, 0x11b3 }, /* Hangul_J_RieulSios ᆳ HANGUL JONGSEONG RIEUL-SIOS */ 783cb93a386Sopenharmony_ci { 0x0ee0, 0x11b4 }, /* Hangul_J_RieulTieut ᆴ HANGUL JONGSEONG RIEUL-THIEUTH */ 784cb93a386Sopenharmony_ci { 0x0ee1, 0x11b5 }, /* Hangul_J_RieulPhieuf ᆵ HANGUL JONGSEONG RIEUL-PHIEUPH */ 785cb93a386Sopenharmony_ci { 0x0ee2, 0x11b6 }, /* Hangul_J_RieulHieuh ᆶ HANGUL JONGSEONG RIEUL-HIEUH */ 786cb93a386Sopenharmony_ci { 0x0ee3, 0x11b7 }, /* Hangul_J_Mieum ᆷ HANGUL JONGSEONG MIEUM */ 787cb93a386Sopenharmony_ci { 0x0ee4, 0x11b8 }, /* Hangul_J_Pieub ᆸ HANGUL JONGSEONG PIEUP */ 788cb93a386Sopenharmony_ci { 0x0ee5, 0x11b9 }, /* Hangul_J_PieubSios ᆹ HANGUL JONGSEONG PIEUP-SIOS */ 789cb93a386Sopenharmony_ci { 0x0ee6, 0x11ba }, /* Hangul_J_Sios ᆺ HANGUL JONGSEONG SIOS */ 790cb93a386Sopenharmony_ci { 0x0ee7, 0x11bb }, /* Hangul_J_SsangSios ᆻ HANGUL JONGSEONG SSANGSIOS */ 791cb93a386Sopenharmony_ci { 0x0ee8, 0x11bc }, /* Hangul_J_Ieung ᆼ HANGUL JONGSEONG IEUNG */ 792cb93a386Sopenharmony_ci { 0x0ee9, 0x11bd }, /* Hangul_J_Jieuj ᆽ HANGUL JONGSEONG CIEUC */ 793cb93a386Sopenharmony_ci { 0x0eea, 0x11be }, /* Hangul_J_Cieuc ᆾ HANGUL JONGSEONG CHIEUCH */ 794cb93a386Sopenharmony_ci { 0x0eeb, 0x11bf }, /* Hangul_J_Khieuq ᆿ HANGUL JONGSEONG KHIEUKH */ 795cb93a386Sopenharmony_ci { 0x0eec, 0x11c0 }, /* Hangul_J_Tieut ᇀ HANGUL JONGSEONG THIEUTH */ 796cb93a386Sopenharmony_ci { 0x0eed, 0x11c1 }, /* Hangul_J_Phieuf ᇁ HANGUL JONGSEONG PHIEUPH */ 797cb93a386Sopenharmony_ci { 0x0eee, 0x11c2 }, /* Hangul_J_Hieuh ᇂ HANGUL JONGSEONG HIEUH */ 798cb93a386Sopenharmony_ci { 0x0eef, 0x316d }, /* Hangul_RieulYeorinHieuh ㅭ HANGUL LETTER RIEUL-YEORINHIEUH */ 799cb93a386Sopenharmony_ci { 0x0ef0, 0x3171 }, /* Hangul_SunkyeongeumMieum ㅱ HANGUL LETTER KAPYEOUNMIEUM */ 800cb93a386Sopenharmony_ci { 0x0ef1, 0x3178 }, /* Hangul_SunkyeongeumPieub ㅸ HANGUL LETTER KAPYEOUNPIEUP */ 801cb93a386Sopenharmony_ci { 0x0ef2, 0x317f }, /* Hangul_PanSios ㅿ HANGUL LETTER PANSIOS */ 802cb93a386Sopenharmony_ci { 0x0ef3, 0x3181 }, /* Hangul_KkogjiDalrinIeung ㆁ HANGUL LETTER YESIEUNG */ 803cb93a386Sopenharmony_ci { 0x0ef4, 0x3184 }, /* Hangul_SunkyeongeumPhieuf ㆄ HANGUL LETTER KAPYEOUNPHIEUPH */ 804cb93a386Sopenharmony_ci { 0x0ef5, 0x3186 }, /* Hangul_YeorinHieuh ㆆ HANGUL LETTER YEORINHIEUH */ 805cb93a386Sopenharmony_ci { 0x0ef6, 0x318d }, /* Hangul_AraeA ㆍ HANGUL LETTER ARAEA */ 806cb93a386Sopenharmony_ci { 0x0ef7, 0x318e }, /* Hangul_AraeAE ㆎ HANGUL LETTER ARAEAE */ 807cb93a386Sopenharmony_ci { 0x0ef8, 0x11eb }, /* Hangul_J_PanSios ᇫ HANGUL JONGSEONG PANSIOS */ 808cb93a386Sopenharmony_ci { 0x0ef9, 0x11f0 }, /* Hangul_J_KkogjiDalrinIeung ᇰ HANGUL JONGSEONG YESIEUNG */ 809cb93a386Sopenharmony_ci { 0x0efa, 0x11f9 }, /* Hangul_J_YeorinHieuh ᇹ HANGUL JONGSEONG YEORINHIEUH */ 810cb93a386Sopenharmony_ci { 0x0eff, 0x20a9 }, /* Korean_Won ₩ WON SIGN */ 811cb93a386Sopenharmony_ci { 0x13a4, 0x20ac }, /* Euro € EURO SIGN */ 812cb93a386Sopenharmony_ci { 0x13bc, 0x0152 }, /* OE Œ LATIN CAPITAL LIGATURE OE */ 813cb93a386Sopenharmony_ci { 0x13bd, 0x0153 }, /* oe œ LATIN SMALL LIGATURE OE */ 814cb93a386Sopenharmony_ci { 0x13be, 0x0178 }, /* Ydiaeresis Ÿ LATIN CAPITAL LETTER Y WITH DIAERESIS */ 815cb93a386Sopenharmony_ci { 0x20ac, 0x20ac }, /* EuroSign € EURO SIGN */ 816cb93a386Sopenharmony_ci}; 817cb93a386Sopenharmony_ci 818cb93a386Sopenharmony_cilong keysym2ucs(KeySym keysym) 819cb93a386Sopenharmony_ci{ 820cb93a386Sopenharmony_ci int min = 0; 821cb93a386Sopenharmony_ci int max = sizeof(keysymtab) / sizeof(struct codepair) - 1; 822cb93a386Sopenharmony_ci int mid; 823cb93a386Sopenharmony_ci 824cb93a386Sopenharmony_ci /* first check for Latin-1 characters (1:1 mapping) */ 825cb93a386Sopenharmony_ci if ((keysym >= 0x0020 && keysym <= 0x007e) || 826cb93a386Sopenharmony_ci (keysym >= 0x00a0 && keysym <= 0x00ff)) 827cb93a386Sopenharmony_ci return keysym; 828cb93a386Sopenharmony_ci 829cb93a386Sopenharmony_ci /* also check for directly encoded 24-bit UCS characters */ 830cb93a386Sopenharmony_ci if ((keysym & 0xff000000) == 0x01000000) 831cb93a386Sopenharmony_ci return keysym & 0x00ffffff; 832cb93a386Sopenharmony_ci 833cb93a386Sopenharmony_ci /* binary search in table */ 834cb93a386Sopenharmony_ci while (max >= min) { 835cb93a386Sopenharmony_ci mid = (min + max) / 2; 836cb93a386Sopenharmony_ci if (keysymtab[mid].keysym < keysym) 837cb93a386Sopenharmony_ci min = mid + 1; 838cb93a386Sopenharmony_ci else if (keysymtab[mid].keysym > keysym) 839cb93a386Sopenharmony_ci max = mid - 1; 840cb93a386Sopenharmony_ci else { 841cb93a386Sopenharmony_ci /* found it */ 842cb93a386Sopenharmony_ci return keysymtab[mid].ucs; 843cb93a386Sopenharmony_ci } 844cb93a386Sopenharmony_ci } 845cb93a386Sopenharmony_ci 846cb93a386Sopenharmony_ci /* no matching Unicode value found */ 847cb93a386Sopenharmony_ci return -1; 848cb93a386Sopenharmony_ci} 849