│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │ -
Defines the scim::KeyEvent class and related enums, functions.
│ │ │ │ +
Defines scim::HelperModule and it's related types.
│ │ │ │ More...
│ │ │ │
│ │ │ │
│ │ │ │ namespace scim
│ │ │ │
│ │ │ │
│ │ │ │ -
│ │ │ │ -enum scim::KeyMask {
│ │ │ │ - scim::SCIM_KEY_NullMask = 0
│ │ │ │ -, scim::SCIM_KEY_ShiftMask = (1<<0)
│ │ │ │ -, scim::SCIM_KEY_CapsLockMask = (1<<1)
│ │ │ │ -, scim::SCIM_KEY_ControlMask = (1<<2)
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_AltMask = (1<<3)
│ │ │ │ -, scim::SCIM_KEY_MetaMask = (1<<4)
│ │ │ │ -, scim::SCIM_KEY_SuperMask = (1<<5)
│ │ │ │ -, scim::SCIM_KEY_HyperMask = (1<<6)
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_NumLockMask = (1<<7)
│ │ │ │ -, scim::SCIM_KEY_LockMask = SCIM_KEY_CapsLockMask
│ │ │ │ -, scim::SCIM_KEY_Mod1Mask = SCIM_KEY_AltMask
│ │ │ │ -, scim::SCIM_KEY_Mod2Mask = SCIM_KEY_MetaMask
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Mod3Mask = SCIM_KEY_SuperMask
│ │ │ │ -, scim::SCIM_KEY_Mod4Mask = SCIM_KEY_HyperMask
│ │ │ │ -, scim::SCIM_KEY_Mod5Mask = SCIM_KEY_NumLockMask
│ │ │ │ -, scim::SCIM_KEY_ScrollLockMask = 0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_QuirkKanaRoMask = (1<<14)
│ │ │ │ -, scim::SCIM_KEY_ReleaseMask = (1<<15)
│ │ │ │ -, scim::SCIM_KEY_AllMasks = 0xC0FF
│ │ │ │ -
│ │ │ │ - }
│ │ │ │ - Enum values of all valid key masks. More...
│ │ │ │ -
│ │ │ │ -enum scim::KeyCode {
│ │ │ │ - scim::SCIM_KEY_NullKey = 0
│ │ │ │ -, scim::SCIM_KEY_VoidSymbol = 0xFFFFFF
│ │ │ │ -, scim::SCIM_KEY_BackSpace = 0xFF08
│ │ │ │ -, scim::SCIM_KEY_Tab = 0xFF09
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Linefeed = 0xFF0A
│ │ │ │ -, scim::SCIM_KEY_Clear = 0xFF0B
│ │ │ │ -, scim::SCIM_KEY_Return = 0xFF0D
│ │ │ │ -, scim::SCIM_KEY_Pause = 0xFF13
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Scroll_Lock = 0xFF14
│ │ │ │ -, scim::SCIM_KEY_Sys_Req = 0xFF15
│ │ │ │ -, scim::SCIM_KEY_Escape = 0xFF1B
│ │ │ │ -, scim::SCIM_KEY_Delete = 0xFFFF
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Multi_key = 0xFF20
│ │ │ │ -, scim::SCIM_KEY_Codeinput = 0xFF37
│ │ │ │ -, scim::SCIM_KEY_SingleCandidate = 0xFF3C
│ │ │ │ -, scim::SCIM_KEY_MultipleCandidate = 0xFF3D
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_PreviousCandidate = 0xFF3E
│ │ │ │ -, scim::SCIM_KEY_Kanji = 0xFF21
│ │ │ │ -, scim::SCIM_KEY_Muhenkan = 0xFF22
│ │ │ │ -, scim::SCIM_KEY_Henkan_Mode = 0xFF23
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Henkan = 0xFF23
│ │ │ │ -, scim::SCIM_KEY_Romaji = 0xFF24
│ │ │ │ -, scim::SCIM_KEY_Hiragana = 0xFF25
│ │ │ │ -, scim::SCIM_KEY_Katakana = 0xFF26
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hiragana_Katakana = 0xFF27
│ │ │ │ -, scim::SCIM_KEY_Zenkaku = 0xFF28
│ │ │ │ -, scim::SCIM_KEY_Hankaku = 0xFF29
│ │ │ │ -, scim::SCIM_KEY_Zenkaku_Hankaku = 0xFF2A
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Touroku = 0xFF2B
│ │ │ │ -, scim::SCIM_KEY_Massyo = 0xFF2C
│ │ │ │ -, scim::SCIM_KEY_Kana_Lock = 0xFF2D
│ │ │ │ -, scim::SCIM_KEY_Kana_Shift = 0xFF2E
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Eisu_Shift = 0xFF2F
│ │ │ │ -, scim::SCIM_KEY_Eisu_toggle = 0xFF30
│ │ │ │ -, scim::SCIM_KEY_Kanji_Bangou = 0xFF37
│ │ │ │ -, scim::SCIM_KEY_Zen_Koho = 0xFF3D
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Mae_Koho = 0xFF3E
│ │ │ │ -, scim::SCIM_KEY_Home = 0xFF50
│ │ │ │ -, scim::SCIM_KEY_Left = 0xFF51
│ │ │ │ -, scim::SCIM_KEY_Up = 0xFF52
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Right = 0xFF53
│ │ │ │ -, scim::SCIM_KEY_Down = 0xFF54
│ │ │ │ -, scim::SCIM_KEY_Prior = 0xFF55
│ │ │ │ -, scim::SCIM_KEY_Page_Up = 0xFF55
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Next = 0xFF56
│ │ │ │ -, scim::SCIM_KEY_Page_Down = 0xFF56
│ │ │ │ -, scim::SCIM_KEY_End = 0xFF57
│ │ │ │ -, scim::SCIM_KEY_Begin = 0xFF58
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Select = 0xFF60
│ │ │ │ -, scim::SCIM_KEY_Print = 0xFF61
│ │ │ │ -, scim::SCIM_KEY_Execute = 0xFF62
│ │ │ │ -, scim::SCIM_KEY_Insert = 0xFF63
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Undo = 0xFF65
│ │ │ │ -, scim::SCIM_KEY_Redo = 0xFF66
│ │ │ │ -, scim::SCIM_KEY_Menu = 0xFF67
│ │ │ │ -, scim::SCIM_KEY_Find = 0xFF68
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cancel = 0xFF69
│ │ │ │ -, scim::SCIM_KEY_Help = 0xFF6A
│ │ │ │ -, scim::SCIM_KEY_Break = 0xFF6B
│ │ │ │ -, scim::SCIM_KEY_Mode_switch = 0xFF7E
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Num_Lock = 0xFF7F
│ │ │ │ -, scim::SCIM_KEY_KP_Space = 0xFF80
│ │ │ │ -, scim::SCIM_KEY_KP_Tab = 0xFF89
│ │ │ │ -, scim::SCIM_KEY_KP_Enter = 0xFF8D
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_F1 = 0xFF91
│ │ │ │ -, scim::SCIM_KEY_KP_F2 = 0xFF92
│ │ │ │ -, scim::SCIM_KEY_KP_F3 = 0xFF93
│ │ │ │ -, scim::SCIM_KEY_KP_F4 = 0xFF94
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_Home = 0xFF95
│ │ │ │ -, scim::SCIM_KEY_KP_Left = 0xFF96
│ │ │ │ -, scim::SCIM_KEY_KP_Up = 0xFF97
│ │ │ │ -, scim::SCIM_KEY_KP_Right = 0xFF98
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_Down = 0xFF99
│ │ │ │ -, scim::SCIM_KEY_KP_Prior = 0xFF9A
│ │ │ │ -, scim::SCIM_KEY_KP_Page_Up = 0xFF9A
│ │ │ │ -, scim::SCIM_KEY_KP_Next = 0xFF9B
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_Page_Down = 0xFF9B
│ │ │ │ -, scim::SCIM_KEY_KP_End = 0xFF9C
│ │ │ │ -, scim::SCIM_KEY_KP_Begin = 0xFF9D
│ │ │ │ -, scim::SCIM_KEY_KP_Insert = 0xFF9E
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_Delete = 0xFF9F
│ │ │ │ -, scim::SCIM_KEY_KP_Equal = 0xFFBD
│ │ │ │ -, scim::SCIM_KEY_KP_Multiply = 0xFFAA
│ │ │ │ -, scim::SCIM_KEY_KP_Add = 0xFFAB
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_Separator = 0xFFAC
│ │ │ │ -, scim::SCIM_KEY_KP_Subtract = 0xFFAD
│ │ │ │ -, scim::SCIM_KEY_KP_Decimal = 0xFFAE
│ │ │ │ -, scim::SCIM_KEY_KP_Divide = 0xFFAF
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_0 = 0xFFB0
│ │ │ │ -, scim::SCIM_KEY_KP_1 = 0xFFB1
│ │ │ │ -, scim::SCIM_KEY_KP_2 = 0xFFB2
│ │ │ │ -, scim::SCIM_KEY_KP_3 = 0xFFB3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_4 = 0xFFB4
│ │ │ │ -, scim::SCIM_KEY_KP_5 = 0xFFB5
│ │ │ │ -, scim::SCIM_KEY_KP_6 = 0xFFB6
│ │ │ │ -, scim::SCIM_KEY_KP_7 = 0xFFB7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_KP_8 = 0xFFB8
│ │ │ │ -, scim::SCIM_KEY_KP_9 = 0xFFB9
│ │ │ │ -, scim::SCIM_KEY_F1 = 0xFFBE
│ │ │ │ -, scim::SCIM_KEY_F2 = 0xFFBF
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F3 = 0xFFC0
│ │ │ │ -, scim::SCIM_KEY_F4 = 0xFFC1
│ │ │ │ -, scim::SCIM_KEY_F5 = 0xFFC2
│ │ │ │ -, scim::SCIM_KEY_F6 = 0xFFC3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F7 = 0xFFC4
│ │ │ │ -, scim::SCIM_KEY_F8 = 0xFFC5
│ │ │ │ -, scim::SCIM_KEY_F9 = 0xFFC6
│ │ │ │ -, scim::SCIM_KEY_F10 = 0xFFC7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F11 = 0xFFC8
│ │ │ │ -, scim::SCIM_KEY_F12 = 0xFFC9
│ │ │ │ -, scim::SCIM_KEY_F13 = 0xFFCA
│ │ │ │ -, scim::SCIM_KEY_F14 = 0xFFCB
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F15 = 0xFFCC
│ │ │ │ -, scim::SCIM_KEY_F16 = 0xFFCD
│ │ │ │ -, scim::SCIM_KEY_F17 = 0xFFCE
│ │ │ │ -, scim::SCIM_KEY_F18 = 0xFFCF
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F19 = 0xFFD0
│ │ │ │ -, scim::SCIM_KEY_F20 = 0xFFD1
│ │ │ │ -, scim::SCIM_KEY_F21 = 0xFFD2
│ │ │ │ -, scim::SCIM_KEY_F22 = 0xFFD3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F23 = 0xFFD4
│ │ │ │ -, scim::SCIM_KEY_F24 = 0xFFD5
│ │ │ │ -, scim::SCIM_KEY_F25 = 0xFFD6
│ │ │ │ -, scim::SCIM_KEY_F26 = 0xFFD7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F27 = 0xFFD8
│ │ │ │ -, scim::SCIM_KEY_F28 = 0xFFD9
│ │ │ │ -, scim::SCIM_KEY_F29 = 0xFFDA
│ │ │ │ -, scim::SCIM_KEY_F30 = 0xFFDB
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F31 = 0xFFDC
│ │ │ │ -, scim::SCIM_KEY_F32 = 0xFFDD
│ │ │ │ -, scim::SCIM_KEY_F33 = 0xFFDE
│ │ │ │ -, scim::SCIM_KEY_F34 = 0xFFDF
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_F35 = 0xFFE0
│ │ │ │ -, scim::SCIM_KEY_Shift_L = 0xFFE1
│ │ │ │ -, scim::SCIM_KEY_Shift_R = 0xFFE2
│ │ │ │ -, scim::SCIM_KEY_Control_L = 0xFFE3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Control_R = 0xFFE4
│ │ │ │ -, scim::SCIM_KEY_Caps_Lock = 0xFFE5
│ │ │ │ -, scim::SCIM_KEY_Shift_Lock = 0xFFE6
│ │ │ │ -, scim::SCIM_KEY_Meta_L = 0xFFE7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Meta_R = 0xFFE8
│ │ │ │ -, scim::SCIM_KEY_Alt_L = 0xFFE9
│ │ │ │ -, scim::SCIM_KEY_Alt_R = 0xFFEA
│ │ │ │ -, scim::SCIM_KEY_Super_L = 0xFFEB
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Super_R = 0xFFEC
│ │ │ │ -, scim::SCIM_KEY_Hyper_L = 0xFFED
│ │ │ │ -, scim::SCIM_KEY_Hyper_R = 0xFFEE
│ │ │ │ -, scim::SCIM_KEY_ISO_Lock = 0xFE01
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_Level2_Latch = 0xFE02
│ │ │ │ -, scim::SCIM_KEY_ISO_Level3_Shift = 0xFE03
│ │ │ │ -, scim::SCIM_KEY_ISO_Level3_Latch = 0xFE04
│ │ │ │ -, scim::SCIM_KEY_ISO_Level3_Lock = 0xFE05
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_Group_Shift = 0xFF7E
│ │ │ │ -, scim::SCIM_KEY_ISO_Group_Latch = 0xFE06
│ │ │ │ -, scim::SCIM_KEY_ISO_Group_Lock = 0xFE07
│ │ │ │ -, scim::SCIM_KEY_ISO_Next_Group = 0xFE08
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_Next_Group_Lock = 0xFE09
│ │ │ │ -, scim::SCIM_KEY_ISO_Prev_Group = 0xFE0A
│ │ │ │ -, scim::SCIM_KEY_ISO_Prev_Group_Lock = 0xFE0B
│ │ │ │ -, scim::SCIM_KEY_ISO_First_Group = 0xFE0C
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_First_Group_Lock = 0xFE0D
│ │ │ │ -, scim::SCIM_KEY_ISO_Last_Group = 0xFE0E
│ │ │ │ -, scim::SCIM_KEY_ISO_Last_Group_Lock = 0xFE0F
│ │ │ │ -, scim::SCIM_KEY_ISO_Left_Tab = 0xFE20
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_Move_Line_Up = 0xFE21
│ │ │ │ -, scim::SCIM_KEY_ISO_Move_Line_Down = 0xFE22
│ │ │ │ -, scim::SCIM_KEY_ISO_Partial_Line_Up = 0xFE23
│ │ │ │ -, scim::SCIM_KEY_ISO_Partial_Line_Down = 0xFE24
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_Partial_Space_Left = 0xFE25
│ │ │ │ -, scim::SCIM_KEY_ISO_Partial_Space_Right = 0xFE26
│ │ │ │ -, scim::SCIM_KEY_ISO_Set_Margin_Left = 0xFE27
│ │ │ │ -, scim::SCIM_KEY_ISO_Set_Margin_Right = 0xFE28
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_Release_Margin_Left = 0xFE29
│ │ │ │ -, scim::SCIM_KEY_ISO_Release_Margin_Right = 0xFE2A
│ │ │ │ -, scim::SCIM_KEY_ISO_Release_Both_Margins = 0xFE2B
│ │ │ │ -, scim::SCIM_KEY_ISO_Fast_Cursor_Left = 0xFE2C
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_Fast_Cursor_Right = 0xFE2D
│ │ │ │ -, scim::SCIM_KEY_ISO_Fast_Cursor_Up = 0xFE2E
│ │ │ │ -, scim::SCIM_KEY_ISO_Fast_Cursor_Down = 0xFE2F
│ │ │ │ -, scim::SCIM_KEY_ISO_Continuous_Underline = 0xFE30
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ISO_Discontinuous_Underline = 0xFE31
│ │ │ │ -, scim::SCIM_KEY_ISO_Emphasize = 0xFE32
│ │ │ │ -, scim::SCIM_KEY_ISO_Center_Object = 0xFE33
│ │ │ │ -, scim::SCIM_KEY_ISO_Enter = 0xFE34
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_dead_grave = 0xFE50
│ │ │ │ -, scim::SCIM_KEY_dead_acute = 0xFE51
│ │ │ │ -, scim::SCIM_KEY_dead_circumflex = 0xFE52
│ │ │ │ -, scim::SCIM_KEY_dead_tilde = 0xFE53
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_dead_macron = 0xFE54
│ │ │ │ -, scim::SCIM_KEY_dead_breve = 0xFE55
│ │ │ │ -, scim::SCIM_KEY_dead_abovedot = 0xFE56
│ │ │ │ -, scim::SCIM_KEY_dead_diaeresis = 0xFE57
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_dead_abovering = 0xFE58
│ │ │ │ -, scim::SCIM_KEY_dead_doubleacute = 0xFE59
│ │ │ │ -, scim::SCIM_KEY_dead_caron = 0xFE5A
│ │ │ │ -, scim::SCIM_KEY_dead_cedilla = 0xFE5B
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_dead_ogonek = 0xFE5C
│ │ │ │ -, scim::SCIM_KEY_dead_iota = 0xFE5D
│ │ │ │ -, scim::SCIM_KEY_dead_voiced_sound = 0xFE5E
│ │ │ │ -, scim::SCIM_KEY_dead_semivoiced_sound = 0xFE5F
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_dead_belowdot = 0xFE60
│ │ │ │ -, scim::SCIM_KEY_dead_hook = 0xFE61
│ │ │ │ -, scim::SCIM_KEY_dead_horn = 0xFE62
│ │ │ │ -, scim::SCIM_KEY_First_Virtual_Screen = 0xFED0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Prev_Virtual_Screen = 0xFED1
│ │ │ │ -, scim::SCIM_KEY_Next_Virtual_Screen = 0xFED2
│ │ │ │ -, scim::SCIM_KEY_Last_Virtual_Screen = 0xFED4
│ │ │ │ -, scim::SCIM_KEY_Terminate_Server = 0xFED5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_AccessX_Enable = 0xFE70
│ │ │ │ -, scim::SCIM_KEY_AccessX_Feedback_Enable = 0xFE71
│ │ │ │ -, scim::SCIM_KEY_RepeatKeys_Enable = 0xFE72
│ │ │ │ -, scim::SCIM_KEY_SlowKeys_Enable = 0xFE73
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_BounceKeys_Enable = 0xFE74
│ │ │ │ -, scim::SCIM_KEY_StickyKeys_Enable = 0xFE75
│ │ │ │ -, scim::SCIM_KEY_MouseKeys_Enable = 0xFE76
│ │ │ │ -, scim::SCIM_KEY_MouseKeys_Accel_Enable = 0xFE77
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Overlay1_Enable = 0xFE78
│ │ │ │ -, scim::SCIM_KEY_Overlay2_Enable = 0xFE79
│ │ │ │ -, scim::SCIM_KEY_AudibleBell_Enable = 0xFE7A
│ │ │ │ -, scim::SCIM_KEY_Pointer_Left = 0xFEE0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Pointer_Right = 0xFEE1
│ │ │ │ -, scim::SCIM_KEY_Pointer_Up = 0xFEE2
│ │ │ │ -, scim::SCIM_KEY_Pointer_Down = 0xFEE3
│ │ │ │ -, scim::SCIM_KEY_Pointer_UpLeft = 0xFEE4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Pointer_UpRight = 0xFEE5
│ │ │ │ -, scim::SCIM_KEY_Pointer_DownLeft = 0xFEE6
│ │ │ │ -, scim::SCIM_KEY_Pointer_DownRight = 0xFEE7
│ │ │ │ -, scim::SCIM_KEY_Pointer_Button_Dflt = 0xFEE8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Pointer_Button1 = 0xFEE9
│ │ │ │ -, scim::SCIM_KEY_Pointer_Button2 = 0xFEEA
│ │ │ │ -, scim::SCIM_KEY_Pointer_Button3 = 0xFEEB
│ │ │ │ -, scim::SCIM_KEY_Pointer_Button4 = 0xFEEC
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Pointer_Button5 = 0xFEED
│ │ │ │ -, scim::SCIM_KEY_Pointer_DblClick_Dflt = 0xFEEE
│ │ │ │ -, scim::SCIM_KEY_Pointer_DblClick1 = 0xFEEF
│ │ │ │ -, scim::SCIM_KEY_Pointer_DblClick2 = 0xFEF0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Pointer_DblClick3 = 0xFEF1
│ │ │ │ -, scim::SCIM_KEY_Pointer_DblClick4 = 0xFEF2
│ │ │ │ -, scim::SCIM_KEY_Pointer_DblClick5 = 0xFEF3
│ │ │ │ -, scim::SCIM_KEY_Pointer_Drag_Dflt = 0xFEF4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Pointer_Drag1 = 0xFEF5
│ │ │ │ -, scim::SCIM_KEY_Pointer_Drag2 = 0xFEF6
│ │ │ │ -, scim::SCIM_KEY_Pointer_Drag3 = 0xFEF7
│ │ │ │ -, scim::SCIM_KEY_Pointer_Drag4 = 0xFEF8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Pointer_Drag5 = 0xFEFD
│ │ │ │ -, scim::SCIM_KEY_Pointer_EnableKeys = 0xFEF9
│ │ │ │ -, scim::SCIM_KEY_Pointer_Accelerate = 0xFEFA
│ │ │ │ -, scim::SCIM_KEY_Pointer_DfltBtnNext = 0xFEFB
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Pointer_DfltBtnPrev = 0xFEFC
│ │ │ │ -, scim::SCIM_KEY_3270_Duplicate = 0xFD01
│ │ │ │ -, scim::SCIM_KEY_3270_FieldMark = 0xFD02
│ │ │ │ -, scim::SCIM_KEY_3270_Right2 = 0xFD03
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_3270_Left2 = 0xFD04
│ │ │ │ -, scim::SCIM_KEY_3270_BackTab = 0xFD05
│ │ │ │ -, scim::SCIM_KEY_3270_EraseEOF = 0xFD06
│ │ │ │ -, scim::SCIM_KEY_3270_EraseInput = 0xFD07
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_3270_Reset = 0xFD08
│ │ │ │ -, scim::SCIM_KEY_3270_Quit = 0xFD09
│ │ │ │ -, scim::SCIM_KEY_3270_PA1 = 0xFD0A
│ │ │ │ -, scim::SCIM_KEY_3270_PA2 = 0xFD0B
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_3270_PA3 = 0xFD0C
│ │ │ │ -, scim::SCIM_KEY_3270_Test = 0xFD0D
│ │ │ │ -, scim::SCIM_KEY_3270_Attn = 0xFD0E
│ │ │ │ -, scim::SCIM_KEY_3270_CursorBlink = 0xFD0F
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_3270_AltCursor = 0xFD10
│ │ │ │ -, scim::SCIM_KEY_3270_KeyClick = 0xFD11
│ │ │ │ -, scim::SCIM_KEY_3270_Jump = 0xFD12
│ │ │ │ -, scim::SCIM_KEY_3270_Ident = 0xFD13
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_3270_Rule = 0xFD14
│ │ │ │ -, scim::SCIM_KEY_3270_Copy = 0xFD15
│ │ │ │ -, scim::SCIM_KEY_3270_Play = 0xFD16
│ │ │ │ -, scim::SCIM_KEY_3270_Setup = 0xFD17
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_3270_Record = 0xFD18
│ │ │ │ -, scim::SCIM_KEY_3270_ChangeScreen = 0xFD19
│ │ │ │ -, scim::SCIM_KEY_3270_DeleteWord = 0xFD1A
│ │ │ │ -, scim::SCIM_KEY_3270_ExSelect = 0xFD1B
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_3270_CursorSelect = 0xFD1C
│ │ │ │ -, scim::SCIM_KEY_3270_PrintScreen = 0xFD1D
│ │ │ │ -, scim::SCIM_KEY_3270_Enter = 0xFD1E
│ │ │ │ -, scim::SCIM_KEY_space = 0x020
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_exclam = 0x021
│ │ │ │ -, scim::SCIM_KEY_quotedbl = 0x022
│ │ │ │ -, scim::SCIM_KEY_numbersign = 0x023
│ │ │ │ -, scim::SCIM_KEY_dollar = 0x024
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_percent = 0x025
│ │ │ │ -, scim::SCIM_KEY_ampersand = 0x026
│ │ │ │ -, scim::SCIM_KEY_apostrophe = 0x027
│ │ │ │ -, scim::SCIM_KEY_quoteright = 0x027
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_parenleft = 0x028
│ │ │ │ -, scim::SCIM_KEY_parenright = 0x029
│ │ │ │ -, scim::SCIM_KEY_asterisk = 0x02a
│ │ │ │ -, scim::SCIM_KEY_plus = 0x02b
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_comma = 0x02c
│ │ │ │ -, scim::SCIM_KEY_minus = 0x02d
│ │ │ │ -, scim::SCIM_KEY_period = 0x02e
│ │ │ │ -, scim::SCIM_KEY_slash = 0x02f
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_0 = 0x030
│ │ │ │ -, scim::SCIM_KEY_1 = 0x031
│ │ │ │ -, scim::SCIM_KEY_2 = 0x032
│ │ │ │ -, scim::SCIM_KEY_3 = 0x033
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_4 = 0x034
│ │ │ │ -, scim::SCIM_KEY_5 = 0x035
│ │ │ │ -, scim::SCIM_KEY_6 = 0x036
│ │ │ │ -, scim::SCIM_KEY_7 = 0x037
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_8 = 0x038
│ │ │ │ -, scim::SCIM_KEY_9 = 0x039
│ │ │ │ -, scim::SCIM_KEY_colon = 0x03a
│ │ │ │ -, scim::SCIM_KEY_semicolon = 0x03b
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_less = 0x03c
│ │ │ │ -, scim::SCIM_KEY_equal = 0x03d
│ │ │ │ -, scim::SCIM_KEY_greater = 0x03e
│ │ │ │ -, scim::SCIM_KEY_question = 0x03f
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_at = 0x040
│ │ │ │ -, scim::SCIM_KEY_A = 0x041
│ │ │ │ -, scim::SCIM_KEY_B = 0x042
│ │ │ │ -, scim::SCIM_KEY_C = 0x043
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_D = 0x044
│ │ │ │ -, scim::SCIM_KEY_E = 0x045
│ │ │ │ -, scim::SCIM_KEY_F = 0x046
│ │ │ │ -, scim::SCIM_KEY_G = 0x047
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_H = 0x048
│ │ │ │ -, scim::SCIM_KEY_I = 0x049
│ │ │ │ -, scim::SCIM_KEY_J = 0x04a
│ │ │ │ -, scim::SCIM_KEY_K = 0x04b
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_L = 0x04c
│ │ │ │ -, scim::SCIM_KEY_M = 0x04d
│ │ │ │ -, scim::SCIM_KEY_N = 0x04e
│ │ │ │ -, scim::SCIM_KEY_O = 0x04f
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_P = 0x050
│ │ │ │ -, scim::SCIM_KEY_Q = 0x051
│ │ │ │ -, scim::SCIM_KEY_R = 0x052
│ │ │ │ -, scim::SCIM_KEY_S = 0x053
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_T = 0x054
│ │ │ │ -, scim::SCIM_KEY_U = 0x055
│ │ │ │ -, scim::SCIM_KEY_V = 0x056
│ │ │ │ -, scim::SCIM_KEY_W = 0x057
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_X = 0x058
│ │ │ │ -, scim::SCIM_KEY_Y = 0x059
│ │ │ │ -, scim::SCIM_KEY_Z = 0x05a
│ │ │ │ -, scim::SCIM_KEY_bracketleft = 0x05b
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_backslash = 0x05c
│ │ │ │ -, scim::SCIM_KEY_bracketright = 0x05d
│ │ │ │ -, scim::SCIM_KEY_asciicircum = 0x05e
│ │ │ │ -, scim::SCIM_KEY_underscore = 0x05f
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_grave = 0x060
│ │ │ │ -, scim::SCIM_KEY_a = 0x061
│ │ │ │ -, scim::SCIM_KEY_b = 0x062
│ │ │ │ -, scim::SCIM_KEY_c = 0x063
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_d = 0x064
│ │ │ │ -, scim::SCIM_KEY_e = 0x065
│ │ │ │ -, scim::SCIM_KEY_f = 0x066
│ │ │ │ -, scim::SCIM_KEY_g = 0x067
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_h = 0x068
│ │ │ │ -, scim::SCIM_KEY_i = 0x069
│ │ │ │ -, scim::SCIM_KEY_j = 0x06a
│ │ │ │ -, scim::SCIM_KEY_k = 0x06b
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_l = 0x06c
│ │ │ │ -, scim::SCIM_KEY_m = 0x06d
│ │ │ │ -, scim::SCIM_KEY_n = 0x06e
│ │ │ │ -, scim::SCIM_KEY_o = 0x06f
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_p = 0x070
│ │ │ │ -, scim::SCIM_KEY_q = 0x071
│ │ │ │ -, scim::SCIM_KEY_r = 0x072
│ │ │ │ -, scim::SCIM_KEY_s = 0x073
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_t = 0x074
│ │ │ │ -, scim::SCIM_KEY_u = 0x075
│ │ │ │ -, scim::SCIM_KEY_v = 0x076
│ │ │ │ -, scim::SCIM_KEY_w = 0x077
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_x = 0x078
│ │ │ │ -, scim::SCIM_KEY_y = 0x079
│ │ │ │ -, scim::SCIM_KEY_z = 0x07a
│ │ │ │ -, scim::SCIM_KEY_braceleft = 0x07b
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_bar = 0x07c
│ │ │ │ -, scim::SCIM_KEY_braceright = 0x07d
│ │ │ │ -, scim::SCIM_KEY_asciitilde = 0x07e
│ │ │ │ -, scim::SCIM_KEY_nobreakspace = 0x0a0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_exclamdown = 0x0a1
│ │ │ │ -, scim::SCIM_KEY_cent = 0x0a2
│ │ │ │ -, scim::SCIM_KEY_sterling = 0x0a3
│ │ │ │ -, scim::SCIM_KEY_currency = 0x0a4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_yen = 0x0a5
│ │ │ │ -, scim::SCIM_KEY_brokenbar = 0x0a6
│ │ │ │ -, scim::SCIM_KEY_section = 0x0a7
│ │ │ │ -, scim::SCIM_KEY_diaeresis = 0x0a8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_copyright = 0x0a9
│ │ │ │ -, scim::SCIM_KEY_ordfeminine = 0x0aa
│ │ │ │ -, scim::SCIM_KEY_guillemotleft = 0x0ab
│ │ │ │ -, scim::SCIM_KEY_notsign = 0x0ac
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hyphen = 0x0ad
│ │ │ │ -, scim::SCIM_KEY_registered = 0x0ae
│ │ │ │ -, scim::SCIM_KEY_macron = 0x0af
│ │ │ │ -, scim::SCIM_KEY_degree = 0x0b0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_plusminus = 0x0b1
│ │ │ │ -, scim::SCIM_KEY_twosuperior = 0x0b2
│ │ │ │ -, scim::SCIM_KEY_threesuperior = 0x0b3
│ │ │ │ -, scim::SCIM_KEY_acute = 0x0b4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_mu = 0x0b5
│ │ │ │ -, scim::SCIM_KEY_paragraph = 0x0b6
│ │ │ │ -, scim::SCIM_KEY_periodcentered = 0x0b7
│ │ │ │ -, scim::SCIM_KEY_cedilla = 0x0b8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_onesuperior = 0x0b9
│ │ │ │ -, scim::SCIM_KEY_masculine = 0x0ba
│ │ │ │ -, scim::SCIM_KEY_guillemotright = 0x0bb
│ │ │ │ -, scim::SCIM_KEY_onequarter = 0x0bc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_onehalf = 0x0bd
│ │ │ │ -, scim::SCIM_KEY_threequarters = 0x0be
│ │ │ │ -, scim::SCIM_KEY_questiondown = 0x0bf
│ │ │ │ -, scim::SCIM_KEY_Agrave = 0x0c0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Aacute = 0x0c1
│ │ │ │ -, scim::SCIM_KEY_Acircumflex = 0x0c2
│ │ │ │ -, scim::SCIM_KEY_Atilde = 0x0c3
│ │ │ │ -, scim::SCIM_KEY_Adiaeresis = 0x0c4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Aring = 0x0c5
│ │ │ │ -, scim::SCIM_KEY_AE = 0x0c6
│ │ │ │ -, scim::SCIM_KEY_Ccedilla = 0x0c7
│ │ │ │ -, scim::SCIM_KEY_Egrave = 0x0c8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Eacute = 0x0c9
│ │ │ │ -, scim::SCIM_KEY_Ecircumflex = 0x0ca
│ │ │ │ -, scim::SCIM_KEY_Ediaeresis = 0x0cb
│ │ │ │ -, scim::SCIM_KEY_Igrave = 0x0cc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Iacute = 0x0cd
│ │ │ │ -, scim::SCIM_KEY_Icircumflex = 0x0ce
│ │ │ │ -, scim::SCIM_KEY_Idiaeresis = 0x0cf
│ │ │ │ -, scim::SCIM_KEY_ETH = 0x0d0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Eth = 0x0d0
│ │ │ │ -, scim::SCIM_KEY_Ntilde = 0x0d1
│ │ │ │ -, scim::SCIM_KEY_Ograve = 0x0d2
│ │ │ │ -, scim::SCIM_KEY_Oacute = 0x0d3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ocircumflex = 0x0d4
│ │ │ │ -, scim::SCIM_KEY_Otilde = 0x0d5
│ │ │ │ -, scim::SCIM_KEY_Odiaeresis = 0x0d6
│ │ │ │ -, scim::SCIM_KEY_multiply = 0x0d7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ooblique = 0x0d8
│ │ │ │ -, scim::SCIM_KEY_Oslash = SCIM_KEY_Ooblique
│ │ │ │ -, scim::SCIM_KEY_Ugrave = 0x0d9
│ │ │ │ -, scim::SCIM_KEY_Uacute = 0x0da
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ucircumflex = 0x0db
│ │ │ │ -, scim::SCIM_KEY_Udiaeresis = 0x0dc
│ │ │ │ -, scim::SCIM_KEY_Yacute = 0x0dd
│ │ │ │ -, scim::SCIM_KEY_THORN = 0x0de
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thorn = 0x0de
│ │ │ │ -, scim::SCIM_KEY_ssharp = 0x0df
│ │ │ │ -, scim::SCIM_KEY_agrave = 0x0e0
│ │ │ │ -, scim::SCIM_KEY_aacute = 0x0e1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_acircumflex = 0x0e2
│ │ │ │ -, scim::SCIM_KEY_atilde = 0x0e3
│ │ │ │ -, scim::SCIM_KEY_adiaeresis = 0x0e4
│ │ │ │ -, scim::SCIM_KEY_aring = 0x0e5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ae = 0x0e6
│ │ │ │ -, scim::SCIM_KEY_ccedilla = 0x0e7
│ │ │ │ -, scim::SCIM_KEY_egrave = 0x0e8
│ │ │ │ -, scim::SCIM_KEY_eacute = 0x0e9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ecircumflex = 0x0ea
│ │ │ │ -, scim::SCIM_KEY_ediaeresis = 0x0eb
│ │ │ │ -, scim::SCIM_KEY_igrave = 0x0ec
│ │ │ │ -, scim::SCIM_KEY_iacute = 0x0ed
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_icircumflex = 0x0ee
│ │ │ │ -, scim::SCIM_KEY_idiaeresis = 0x0ef
│ │ │ │ -, scim::SCIM_KEY_eth = 0x0f0
│ │ │ │ -, scim::SCIM_KEY_ntilde = 0x0f1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ograve = 0x0f2
│ │ │ │ -, scim::SCIM_KEY_oacute = 0x0f3
│ │ │ │ -, scim::SCIM_KEY_ocircumflex = 0x0f4
│ │ │ │ -, scim::SCIM_KEY_otilde = 0x0f5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_odiaeresis = 0x0f6
│ │ │ │ -, scim::SCIM_KEY_division = 0x0f7
│ │ │ │ -, scim::SCIM_KEY_oslash = 0x0f8
│ │ │ │ -, scim::SCIM_KEY_ooblique = SCIM_KEY_oslash
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ugrave = 0x0f9
│ │ │ │ -, scim::SCIM_KEY_uacute = 0x0fa
│ │ │ │ -, scim::SCIM_KEY_ucircumflex = 0x0fb
│ │ │ │ -, scim::SCIM_KEY_udiaeresis = 0x0fc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_yacute = 0x0fd
│ │ │ │ -, scim::SCIM_KEY_thorn = 0x0fe
│ │ │ │ -, scim::SCIM_KEY_ydiaeresis = 0x0ff
│ │ │ │ -, scim::SCIM_KEY_Aogonek = 0x1a1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_breve = 0x1a2
│ │ │ │ -, scim::SCIM_KEY_Lstroke = 0x1a3
│ │ │ │ -, scim::SCIM_KEY_Lcaron = 0x1a5
│ │ │ │ -, scim::SCIM_KEY_Sacute = 0x1a6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Scaron = 0x1a9
│ │ │ │ -, scim::SCIM_KEY_Scedilla = 0x1aa
│ │ │ │ -, scim::SCIM_KEY_Tcaron = 0x1ab
│ │ │ │ -, scim::SCIM_KEY_Zacute = 0x1ac
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Zcaron = 0x1ae
│ │ │ │ -, scim::SCIM_KEY_Zabovedot = 0x1af
│ │ │ │ -, scim::SCIM_KEY_aogonek = 0x1b1
│ │ │ │ -, scim::SCIM_KEY_ogonek = 0x1b2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_lstroke = 0x1b3
│ │ │ │ -, scim::SCIM_KEY_lcaron = 0x1b5
│ │ │ │ -, scim::SCIM_KEY_sacute = 0x1b6
│ │ │ │ -, scim::SCIM_KEY_caron = 0x1b7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_scaron = 0x1b9
│ │ │ │ -, scim::SCIM_KEY_scedilla = 0x1ba
│ │ │ │ -, scim::SCIM_KEY_tcaron = 0x1bb
│ │ │ │ -, scim::SCIM_KEY_zacute = 0x1bc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_doubleacute = 0x1bd
│ │ │ │ -, scim::SCIM_KEY_zcaron = 0x1be
│ │ │ │ -, scim::SCIM_KEY_zabovedot = 0x1bf
│ │ │ │ -, scim::SCIM_KEY_Racute = 0x1c0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Abreve = 0x1c3
│ │ │ │ -, scim::SCIM_KEY_Lacute = 0x1c5
│ │ │ │ -, scim::SCIM_KEY_Cacute = 0x1c6
│ │ │ │ -, scim::SCIM_KEY_Ccaron = 0x1c8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Eogonek = 0x1ca
│ │ │ │ -, scim::SCIM_KEY_Ecaron = 0x1cc
│ │ │ │ -, scim::SCIM_KEY_Dcaron = 0x1cf
│ │ │ │ -, scim::SCIM_KEY_Dstroke = 0x1d0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Nacute = 0x1d1
│ │ │ │ -, scim::SCIM_KEY_Ncaron = 0x1d2
│ │ │ │ -, scim::SCIM_KEY_Odoubleacute = 0x1d5
│ │ │ │ -, scim::SCIM_KEY_Rcaron = 0x1d8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Uring = 0x1d9
│ │ │ │ -, scim::SCIM_KEY_Udoubleacute = 0x1db
│ │ │ │ -, scim::SCIM_KEY_Tcedilla = 0x1de
│ │ │ │ -, scim::SCIM_KEY_racute = 0x1e0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_abreve = 0x1e3
│ │ │ │ -, scim::SCIM_KEY_lacute = 0x1e5
│ │ │ │ -, scim::SCIM_KEY_cacute = 0x1e6
│ │ │ │ -, scim::SCIM_KEY_ccaron = 0x1e8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_eogonek = 0x1ea
│ │ │ │ -, scim::SCIM_KEY_ecaron = 0x1ec
│ │ │ │ -, scim::SCIM_KEY_dcaron = 0x1ef
│ │ │ │ -, scim::SCIM_KEY_dstroke = 0x1f0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_nacute = 0x1f1
│ │ │ │ -, scim::SCIM_KEY_ncaron = 0x1f2
│ │ │ │ -, scim::SCIM_KEY_odoubleacute = 0x1f5
│ │ │ │ -, scim::SCIM_KEY_udoubleacute = 0x1fb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_rcaron = 0x1f8
│ │ │ │ -, scim::SCIM_KEY_uring = 0x1f9
│ │ │ │ -, scim::SCIM_KEY_tcedilla = 0x1fe
│ │ │ │ -, scim::SCIM_KEY_abovedot = 0x1ff
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hstroke = 0x2a1
│ │ │ │ -, scim::SCIM_KEY_Hcircumflex = 0x2a6
│ │ │ │ -, scim::SCIM_KEY_Iabovedot = 0x2a9
│ │ │ │ -, scim::SCIM_KEY_Gbreve = 0x2ab
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Jcircumflex = 0x2ac
│ │ │ │ -, scim::SCIM_KEY_hstroke = 0x2b1
│ │ │ │ -, scim::SCIM_KEY_hcircumflex = 0x2b6
│ │ │ │ -, scim::SCIM_KEY_idotless = 0x2b9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_gbreve = 0x2bb
│ │ │ │ -, scim::SCIM_KEY_jcircumflex = 0x2bc
│ │ │ │ -, scim::SCIM_KEY_Cabovedot = 0x2c5
│ │ │ │ -, scim::SCIM_KEY_Ccircumflex = 0x2c6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Gabovedot = 0x2d5
│ │ │ │ -, scim::SCIM_KEY_Gcircumflex = 0x2d8
│ │ │ │ -, scim::SCIM_KEY_Ubreve = 0x2dd
│ │ │ │ -, scim::SCIM_KEY_Scircumflex = 0x2de
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_cabovedot = 0x2e5
│ │ │ │ -, scim::SCIM_KEY_ccircumflex = 0x2e6
│ │ │ │ -, scim::SCIM_KEY_gabovedot = 0x2f5
│ │ │ │ -, scim::SCIM_KEY_gcircumflex = 0x2f8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ubreve = 0x2fd
│ │ │ │ -, scim::SCIM_KEY_scircumflex = 0x2fe
│ │ │ │ -, scim::SCIM_KEY_kra = 0x3a2
│ │ │ │ -, scim::SCIM_KEY_kappa = 0x3a2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Rcedilla = 0x3a3
│ │ │ │ -, scim::SCIM_KEY_Itilde = 0x3a5
│ │ │ │ -, scim::SCIM_KEY_Lcedilla = 0x3a6
│ │ │ │ -, scim::SCIM_KEY_Emacron = 0x3aa
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Gcedilla = 0x3ab
│ │ │ │ -, scim::SCIM_KEY_Tslash = 0x3ac
│ │ │ │ -, scim::SCIM_KEY_rcedilla = 0x3b3
│ │ │ │ -, scim::SCIM_KEY_itilde = 0x3b5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_lcedilla = 0x3b6
│ │ │ │ -, scim::SCIM_KEY_emacron = 0x3ba
│ │ │ │ -, scim::SCIM_KEY_gcedilla = 0x3bb
│ │ │ │ -, scim::SCIM_KEY_tslash = 0x3bc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ENG = 0x3bd
│ │ │ │ -, scim::SCIM_KEY_eng = 0x3bf
│ │ │ │ -, scim::SCIM_KEY_Amacron = 0x3c0
│ │ │ │ -, scim::SCIM_KEY_Iogonek = 0x3c7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Eabovedot = 0x3cc
│ │ │ │ -, scim::SCIM_KEY_Imacron = 0x3cf
│ │ │ │ -, scim::SCIM_KEY_Ncedilla = 0x3d1
│ │ │ │ -, scim::SCIM_KEY_Omacron = 0x3d2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Kcedilla = 0x3d3
│ │ │ │ -, scim::SCIM_KEY_Uogonek = 0x3d9
│ │ │ │ -, scim::SCIM_KEY_Utilde = 0x3dd
│ │ │ │ -, scim::SCIM_KEY_Umacron = 0x3de
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_amacron = 0x3e0
│ │ │ │ -, scim::SCIM_KEY_iogonek = 0x3e7
│ │ │ │ -, scim::SCIM_KEY_eabovedot = 0x3ec
│ │ │ │ -, scim::SCIM_KEY_imacron = 0x3ef
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ncedilla = 0x3f1
│ │ │ │ -, scim::SCIM_KEY_omacron = 0x3f2
│ │ │ │ -, scim::SCIM_KEY_kcedilla = 0x3f3
│ │ │ │ -, scim::SCIM_KEY_uogonek = 0x3f9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_utilde = 0x3fd
│ │ │ │ -, scim::SCIM_KEY_umacron = 0x3fe
│ │ │ │ -, scim::SCIM_KEY_Babovedot = 0x12a1
│ │ │ │ -, scim::SCIM_KEY_babovedot = 0x12a2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Dabovedot = 0x12a6
│ │ │ │ -, scim::SCIM_KEY_Wgrave = 0x12a8
│ │ │ │ -, scim::SCIM_KEY_Wacute = 0x12aa
│ │ │ │ -, scim::SCIM_KEY_dabovedot = 0x12ab
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ygrave = 0x12ac
│ │ │ │ -, scim::SCIM_KEY_Fabovedot = 0x12b0
│ │ │ │ -, scim::SCIM_KEY_fabovedot = 0x12b1
│ │ │ │ -, scim::SCIM_KEY_Mabovedot = 0x12b4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_mabovedot = 0x12b5
│ │ │ │ -, scim::SCIM_KEY_Pabovedot = 0x12b7
│ │ │ │ -, scim::SCIM_KEY_wgrave = 0x12b8
│ │ │ │ -, scim::SCIM_KEY_pabovedot = 0x12b9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_wacute = 0x12ba
│ │ │ │ -, scim::SCIM_KEY_Sabovedot = 0x12bb
│ │ │ │ -, scim::SCIM_KEY_ygrave = 0x12bc
│ │ │ │ -, scim::SCIM_KEY_Wdiaeresis = 0x12bd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_wdiaeresis = 0x12be
│ │ │ │ -, scim::SCIM_KEY_sabovedot = 0x12bf
│ │ │ │ -, scim::SCIM_KEY_Wcircumflex = 0x12d0
│ │ │ │ -, scim::SCIM_KEY_Tabovedot = 0x12d7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ycircumflex = 0x12de
│ │ │ │ -, scim::SCIM_KEY_wcircumflex = 0x12f0
│ │ │ │ -, scim::SCIM_KEY_tabovedot = 0x12f7
│ │ │ │ -, scim::SCIM_KEY_ycircumflex = 0x12fe
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_OE = 0x13bc
│ │ │ │ -, scim::SCIM_KEY_oe = 0x13bd
│ │ │ │ -, scim::SCIM_KEY_Ydiaeresis = 0x13be
│ │ │ │ -, scim::SCIM_KEY_overline = 0x47e
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_fullstop = 0x4a1
│ │ │ │ -, scim::SCIM_KEY_kana_openingbracket = 0x4a2
│ │ │ │ -, scim::SCIM_KEY_kana_closingbracket = 0x4a3
│ │ │ │ -, scim::SCIM_KEY_kana_comma = 0x4a4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_conjunctive = 0x4a5
│ │ │ │ -, scim::SCIM_KEY_kana_middledot = 0x4a5
│ │ │ │ -, scim::SCIM_KEY_kana_WO = 0x4a6
│ │ │ │ -, scim::SCIM_KEY_kana_a = 0x4a7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_i = 0x4a8
│ │ │ │ -, scim::SCIM_KEY_kana_u = 0x4a9
│ │ │ │ -, scim::SCIM_KEY_kana_e = 0x4aa
│ │ │ │ -, scim::SCIM_KEY_kana_o = 0x4ab
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_ya = 0x4ac
│ │ │ │ -, scim::SCIM_KEY_kana_yu = 0x4ad
│ │ │ │ -, scim::SCIM_KEY_kana_yo = 0x4ae
│ │ │ │ -, scim::SCIM_KEY_kana_tsu = 0x4af
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_tu = 0x4af
│ │ │ │ -, scim::SCIM_KEY_prolongedsound = 0x4b0
│ │ │ │ -, scim::SCIM_KEY_kana_A = 0x4b1
│ │ │ │ -, scim::SCIM_KEY_kana_I = 0x4b2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_U = 0x4b3
│ │ │ │ -, scim::SCIM_KEY_kana_E = 0x4b4
│ │ │ │ -, scim::SCIM_KEY_kana_O = 0x4b5
│ │ │ │ -, scim::SCIM_KEY_kana_KA = 0x4b6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_KI = 0x4b7
│ │ │ │ -, scim::SCIM_KEY_kana_KU = 0x4b8
│ │ │ │ -, scim::SCIM_KEY_kana_KE = 0x4b9
│ │ │ │ -, scim::SCIM_KEY_kana_KO = 0x4ba
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_SA = 0x4bb
│ │ │ │ -, scim::SCIM_KEY_kana_SHI = 0x4bc
│ │ │ │ -, scim::SCIM_KEY_kana_SU = 0x4bd
│ │ │ │ -, scim::SCIM_KEY_kana_SE = 0x4be
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_SO = 0x4bf
│ │ │ │ -, scim::SCIM_KEY_kana_TA = 0x4c0
│ │ │ │ -, scim::SCIM_KEY_kana_CHI = 0x4c1
│ │ │ │ -, scim::SCIM_KEY_kana_TI = 0x4c1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_TSU = 0x4c2
│ │ │ │ -, scim::SCIM_KEY_kana_TU = 0x4c2
│ │ │ │ -, scim::SCIM_KEY_kana_TE = 0x4c3
│ │ │ │ -, scim::SCIM_KEY_kana_TO = 0x4c4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_NA = 0x4c5
│ │ │ │ -, scim::SCIM_KEY_kana_NI = 0x4c6
│ │ │ │ -, scim::SCIM_KEY_kana_NU = 0x4c7
│ │ │ │ -, scim::SCIM_KEY_kana_NE = 0x4c8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_NO = 0x4c9
│ │ │ │ -, scim::SCIM_KEY_kana_HA = 0x4ca
│ │ │ │ -, scim::SCIM_KEY_kana_HI = 0x4cb
│ │ │ │ -, scim::SCIM_KEY_kana_FU = 0x4cc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_HU = 0x4cc
│ │ │ │ -, scim::SCIM_KEY_kana_HE = 0x4cd
│ │ │ │ -, scim::SCIM_KEY_kana_HO = 0x4ce
│ │ │ │ -, scim::SCIM_KEY_kana_MA = 0x4cf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_MI = 0x4d0
│ │ │ │ -, scim::SCIM_KEY_kana_MU = 0x4d1
│ │ │ │ -, scim::SCIM_KEY_kana_ME = 0x4d2
│ │ │ │ -, scim::SCIM_KEY_kana_MO = 0x4d3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_YA = 0x4d4
│ │ │ │ -, scim::SCIM_KEY_kana_YU = 0x4d5
│ │ │ │ -, scim::SCIM_KEY_kana_YO = 0x4d6
│ │ │ │ -, scim::SCIM_KEY_kana_RA = 0x4d7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_RI = 0x4d8
│ │ │ │ -, scim::SCIM_KEY_kana_RU = 0x4d9
│ │ │ │ -, scim::SCIM_KEY_kana_RE = 0x4da
│ │ │ │ -, scim::SCIM_KEY_kana_RO = 0x4db
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_WA = 0x4dc
│ │ │ │ -, scim::SCIM_KEY_kana_N = 0x4dd
│ │ │ │ -, scim::SCIM_KEY_voicedsound = 0x4de
│ │ │ │ -, scim::SCIM_KEY_semivoicedsound = 0x4df
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_kana_switch = 0xFF7E
│ │ │ │ -, scim::SCIM_KEY_Farsi_0 = 0x590
│ │ │ │ -, scim::SCIM_KEY_Farsi_1 = 0x591
│ │ │ │ -, scim::SCIM_KEY_Farsi_2 = 0x592
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Farsi_3 = 0x593
│ │ │ │ -, scim::SCIM_KEY_Farsi_4 = 0x594
│ │ │ │ -, scim::SCIM_KEY_Farsi_5 = 0x595
│ │ │ │ -, scim::SCIM_KEY_Farsi_6 = 0x596
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Farsi_7 = 0x597
│ │ │ │ -, scim::SCIM_KEY_Farsi_8 = 0x598
│ │ │ │ -, scim::SCIM_KEY_Farsi_9 = 0x599
│ │ │ │ -, scim::SCIM_KEY_Arabic_percent = 0x5a5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_superscript_alef = 0x5a6
│ │ │ │ -, scim::SCIM_KEY_Arabic_tteh = 0x5a7
│ │ │ │ -, scim::SCIM_KEY_Arabic_peh = 0x5a8
│ │ │ │ -, scim::SCIM_KEY_Arabic_tcheh = 0x5a9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_ddal = 0x5aa
│ │ │ │ -, scim::SCIM_KEY_Arabic_rreh = 0x5ab
│ │ │ │ -, scim::SCIM_KEY_Arabic_comma = 0x5ac
│ │ │ │ -, scim::SCIM_KEY_Arabic_fullstop = 0x5ae
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_0 = 0x5b0
│ │ │ │ -, scim::SCIM_KEY_Arabic_1 = 0x5b1
│ │ │ │ -, scim::SCIM_KEY_Arabic_2 = 0x5b2
│ │ │ │ -, scim::SCIM_KEY_Arabic_3 = 0x5b3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_4 = 0x5b4
│ │ │ │ -, scim::SCIM_KEY_Arabic_5 = 0x5b5
│ │ │ │ -, scim::SCIM_KEY_Arabic_6 = 0x5b6
│ │ │ │ -, scim::SCIM_KEY_Arabic_7 = 0x5b7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_8 = 0x5b8
│ │ │ │ -, scim::SCIM_KEY_Arabic_9 = 0x5b9
│ │ │ │ -, scim::SCIM_KEY_Arabic_semicolon = 0x5bb
│ │ │ │ -, scim::SCIM_KEY_Arabic_question_mark = 0x5bf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_hamza = 0x5c1
│ │ │ │ -, scim::SCIM_KEY_Arabic_maddaonalef = 0x5c2
│ │ │ │ -, scim::SCIM_KEY_Arabic_hamzaonalef = 0x5c3
│ │ │ │ -, scim::SCIM_KEY_Arabic_hamzaonwaw = 0x5c4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_hamzaunderalef = 0x5c5
│ │ │ │ -, scim::SCIM_KEY_Arabic_hamzaonyeh = 0x5c6
│ │ │ │ -, scim::SCIM_KEY_Arabic_alef = 0x5c7
│ │ │ │ -, scim::SCIM_KEY_Arabic_beh = 0x5c8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_tehmarbuta = 0x5c9
│ │ │ │ -, scim::SCIM_KEY_Arabic_teh = 0x5ca
│ │ │ │ -, scim::SCIM_KEY_Arabic_theh = 0x5cb
│ │ │ │ -, scim::SCIM_KEY_Arabic_jeem = 0x5cc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_hah = 0x5cd
│ │ │ │ -, scim::SCIM_KEY_Arabic_khah = 0x5ce
│ │ │ │ -, scim::SCIM_KEY_Arabic_dal = 0x5cf
│ │ │ │ -, scim::SCIM_KEY_Arabic_thal = 0x5d0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_ra = 0x5d1
│ │ │ │ -, scim::SCIM_KEY_Arabic_zain = 0x5d2
│ │ │ │ -, scim::SCIM_KEY_Arabic_seen = 0x5d3
│ │ │ │ -, scim::SCIM_KEY_Arabic_sheen = 0x5d4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_sad = 0x5d5
│ │ │ │ -, scim::SCIM_KEY_Arabic_dad = 0x5d6
│ │ │ │ -, scim::SCIM_KEY_Arabic_tah = 0x5d7
│ │ │ │ -, scim::SCIM_KEY_Arabic_zah = 0x5d8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_ain = 0x5d9
│ │ │ │ -, scim::SCIM_KEY_Arabic_ghain = 0x5da
│ │ │ │ -, scim::SCIM_KEY_Arabic_tatweel = 0x5e0
│ │ │ │ -, scim::SCIM_KEY_Arabic_feh = 0x5e1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_qaf = 0x5e2
│ │ │ │ -, scim::SCIM_KEY_Arabic_kaf = 0x5e3
│ │ │ │ -, scim::SCIM_KEY_Arabic_lam = 0x5e4
│ │ │ │ -, scim::SCIM_KEY_Arabic_meem = 0x5e5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_noon = 0x5e6
│ │ │ │ -, scim::SCIM_KEY_Arabic_ha = 0x5e7
│ │ │ │ -, scim::SCIM_KEY_Arabic_heh = 0x5e7
│ │ │ │ -, scim::SCIM_KEY_Arabic_waw = 0x5e8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_alefmaksura = 0x5e9
│ │ │ │ -, scim::SCIM_KEY_Arabic_yeh = 0x5ea
│ │ │ │ -, scim::SCIM_KEY_Arabic_fathatan = 0x5eb
│ │ │ │ -, scim::SCIM_KEY_Arabic_dammatan = 0x5ec
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_kasratan = 0x5ed
│ │ │ │ -, scim::SCIM_KEY_Arabic_fatha = 0x5ee
│ │ │ │ -, scim::SCIM_KEY_Arabic_damma = 0x5ef
│ │ │ │ -, scim::SCIM_KEY_Arabic_kasra = 0x5f0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_shadda = 0x5f1
│ │ │ │ -, scim::SCIM_KEY_Arabic_sukun = 0x5f2
│ │ │ │ -, scim::SCIM_KEY_Arabic_madda_above = 0x5f3
│ │ │ │ -, scim::SCIM_KEY_Arabic_hamza_above = 0x5f4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_hamza_below = 0x5f5
│ │ │ │ -, scim::SCIM_KEY_Arabic_jeh = 0x5f6
│ │ │ │ -, scim::SCIM_KEY_Arabic_veh = 0x5f7
│ │ │ │ -, scim::SCIM_KEY_Arabic_keheh = 0x5f8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_gaf = 0x5f9
│ │ │ │ -, scim::SCIM_KEY_Arabic_noon_ghunna = 0x5fa
│ │ │ │ -, scim::SCIM_KEY_Arabic_heh_doachashmee = 0x5fb
│ │ │ │ -, scim::SCIM_KEY_Farsi_yeh = 0x5fc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Arabic_farsi_yeh = SCIM_KEY_Farsi_yeh
│ │ │ │ -, scim::SCIM_KEY_Arabic_yeh_baree = 0x5fd
│ │ │ │ -, scim::SCIM_KEY_Arabic_heh_goal = 0x5fe
│ │ │ │ -, scim::SCIM_KEY_Arabic_switch = 0xFF7E
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_GHE_bar = 0x680
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ghe_bar = 0x690
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ZHE_descender = 0x681
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_zhe_descender = 0x691
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_KA_descender = 0x682
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ka_descender = 0x692
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_KA_vertstroke = 0x683
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ka_vertstroke = 0x693
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_EN_descender = 0x684
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_en_descender = 0x694
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_U_straight = 0x685
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_u_straight = 0x695
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_U_straight_bar = 0x686
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_u_straight_bar = 0x696
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_HA_descender = 0x687
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ha_descender = 0x697
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_CHE_descender = 0x688
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_che_descender = 0x698
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_CHE_vertstroke = 0x689
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_che_vertstroke = 0x699
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_SHHA = 0x68a
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_shha = 0x69a
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_SCHWA = 0x68c
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_schwa = 0x69c
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_I_macron = 0x68d
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_i_macron = 0x69d
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_O_bar = 0x68e
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_o_bar = 0x69e
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_U_macron = 0x68f
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_u_macron = 0x69f
│ │ │ │ -, scim::SCIM_KEY_Serbian_dje = 0x6a1
│ │ │ │ -, scim::SCIM_KEY_Macedonia_gje = 0x6a2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_io = 0x6a3
│ │ │ │ -, scim::SCIM_KEY_Ukrainian_ie = 0x6a4
│ │ │ │ -, scim::SCIM_KEY_Ukranian_je = 0x6a4
│ │ │ │ -, scim::SCIM_KEY_Macedonia_dse = 0x6a5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ukrainian_i = 0x6a6
│ │ │ │ -, scim::SCIM_KEY_Ukranian_i = 0x6a6
│ │ │ │ -, scim::SCIM_KEY_Ukrainian_yi = 0x6a7
│ │ │ │ -, scim::SCIM_KEY_Ukranian_yi = 0x6a7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_je = 0x6a8
│ │ │ │ -, scim::SCIM_KEY_Serbian_je = 0x6a8
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_lje = 0x6a9
│ │ │ │ -, scim::SCIM_KEY_Serbian_lje = 0x6a9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_nje = 0x6aa
│ │ │ │ -, scim::SCIM_KEY_Serbian_nje = 0x6aa
│ │ │ │ -, scim::SCIM_KEY_Serbian_tshe = 0x6ab
│ │ │ │ -, scim::SCIM_KEY_Macedonia_kje = 0x6ac
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ukrainian_ghe_with_upturn = 0x6ad
│ │ │ │ -, scim::SCIM_KEY_Byelorussian_shortu = 0x6ae
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_dzhe = 0x6af
│ │ │ │ -, scim::SCIM_KEY_Serbian_dze = 0x6af
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_numerosign = 0x6b0
│ │ │ │ -, scim::SCIM_KEY_Serbian_DJE = 0x6b1
│ │ │ │ -, scim::SCIM_KEY_Macedonia_GJE = 0x6b2
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_IO = 0x6b3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ukrainian_IE = 0x6b4
│ │ │ │ -, scim::SCIM_KEY_Ukranian_JE = 0x6b4
│ │ │ │ -, scim::SCIM_KEY_Macedonia_DSE = 0x6b5
│ │ │ │ -, scim::SCIM_KEY_Ukrainian_I = 0x6b6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ukranian_I = 0x6b6
│ │ │ │ -, scim::SCIM_KEY_Ukrainian_YI = 0x6b7
│ │ │ │ -, scim::SCIM_KEY_Ukranian_YI = 0x6b7
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_JE = 0x6b8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Serbian_JE = 0x6b8
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_LJE = 0x6b9
│ │ │ │ -, scim::SCIM_KEY_Serbian_LJE = 0x6b9
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_NJE = 0x6ba
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Serbian_NJE = 0x6ba
│ │ │ │ -, scim::SCIM_KEY_Serbian_TSHE = 0x6bb
│ │ │ │ -, scim::SCIM_KEY_Macedonia_KJE = 0x6bc
│ │ │ │ -, scim::SCIM_KEY_Ukrainian_GHE_WITH_UPTURN = 0x6bd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Byelorussian_SHORTU = 0x6be
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_DZHE = 0x6bf
│ │ │ │ -, scim::SCIM_KEY_Serbian_DZE = 0x6bf
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_yu = 0x6c0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_a = 0x6c1
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_be = 0x6c2
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_tse = 0x6c3
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_de = 0x6c4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_ie = 0x6c5
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ef = 0x6c6
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ghe = 0x6c7
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ha = 0x6c8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_i = 0x6c9
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_shorti = 0x6ca
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ka = 0x6cb
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_el = 0x6cc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_em = 0x6cd
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_en = 0x6ce
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_o = 0x6cf
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_pe = 0x6d0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_ya = 0x6d1
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_er = 0x6d2
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_es = 0x6d3
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_te = 0x6d4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_u = 0x6d5
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_zhe = 0x6d6
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ve = 0x6d7
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_softsign = 0x6d8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_yeru = 0x6d9
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ze = 0x6da
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_sha = 0x6db
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_e = 0x6dc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_shcha = 0x6dd
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_che = 0x6de
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_hardsign = 0x6df
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_YU = 0x6e0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_A = 0x6e1
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_BE = 0x6e2
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_TSE = 0x6e3
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_DE = 0x6e4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_IE = 0x6e5
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_EF = 0x6e6
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_GHE = 0x6e7
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_HA = 0x6e8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_I = 0x6e9
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_SHORTI = 0x6ea
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_KA = 0x6eb
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_EL = 0x6ec
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_EM = 0x6ed
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_EN = 0x6ee
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_O = 0x6ef
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_PE = 0x6f0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_YA = 0x6f1
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ER = 0x6f2
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ES = 0x6f3
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_TE = 0x6f4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_U = 0x6f5
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ZHE = 0x6f6
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_VE = 0x6f7
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_SOFTSIGN = 0x6f8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_YERU = 0x6f9
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_ZE = 0x6fa
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_SHA = 0x6fb
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_E = 0x6fc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Cyrillic_SHCHA = 0x6fd
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_CHE = 0x6fe
│ │ │ │ -, scim::SCIM_KEY_Cyrillic_HARDSIGN = 0x6ff
│ │ │ │ -, scim::SCIM_KEY_Greek_ALPHAaccent = 0x7a1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_EPSILONaccent = 0x7a2
│ │ │ │ -, scim::SCIM_KEY_Greek_ETAaccent = 0x7a3
│ │ │ │ -, scim::SCIM_KEY_Greek_IOTAaccent = 0x7a4
│ │ │ │ -, scim::SCIM_KEY_Greek_IOTAdieresis = 0x7a5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_IOTAdiaeresis = SCIM_KEY_Greek_IOTAdieresis
│ │ │ │ -, scim::SCIM_KEY_Greek_OMICRONaccent = 0x7a7
│ │ │ │ -, scim::SCIM_KEY_Greek_UPSILONaccent = 0x7a8
│ │ │ │ -, scim::SCIM_KEY_Greek_UPSILONdieresis = 0x7a9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_OMEGAaccent = 0x7ab
│ │ │ │ -, scim::SCIM_KEY_Greek_accentdieresis = 0x7ae
│ │ │ │ -, scim::SCIM_KEY_Greek_horizbar = 0x7af
│ │ │ │ -, scim::SCIM_KEY_Greek_alphaaccent = 0x7b1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_epsilonaccent = 0x7b2
│ │ │ │ -, scim::SCIM_KEY_Greek_etaaccent = 0x7b3
│ │ │ │ -, scim::SCIM_KEY_Greek_iotaaccent = 0x7b4
│ │ │ │ -, scim::SCIM_KEY_Greek_iotadieresis = 0x7b5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_iotaaccentdieresis = 0x7b6
│ │ │ │ -, scim::SCIM_KEY_Greek_omicronaccent = 0x7b7
│ │ │ │ -, scim::SCIM_KEY_Greek_upsilonaccent = 0x7b8
│ │ │ │ -, scim::SCIM_KEY_Greek_upsilondieresis = 0x7b9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_upsilonaccentdieresis = 0x7ba
│ │ │ │ -, scim::SCIM_KEY_Greek_omegaaccent = 0x7bb
│ │ │ │ -, scim::SCIM_KEY_Greek_ALPHA = 0x7c1
│ │ │ │ -, scim::SCIM_KEY_Greek_BETA = 0x7c2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_GAMMA = 0x7c3
│ │ │ │ -, scim::SCIM_KEY_Greek_DELTA = 0x7c4
│ │ │ │ -, scim::SCIM_KEY_Greek_EPSILON = 0x7c5
│ │ │ │ -, scim::SCIM_KEY_Greek_ZETA = 0x7c6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_ETA = 0x7c7
│ │ │ │ -, scim::SCIM_KEY_Greek_THETA = 0x7c8
│ │ │ │ -, scim::SCIM_KEY_Greek_IOTA = 0x7c9
│ │ │ │ -, scim::SCIM_KEY_Greek_KAPPA = 0x7ca
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_LAMDA = 0x7cb
│ │ │ │ -, scim::SCIM_KEY_Greek_LAMBDA = 0x7cb
│ │ │ │ -, scim::SCIM_KEY_Greek_MU = 0x7cc
│ │ │ │ -, scim::SCIM_KEY_Greek_NU = 0x7cd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_XI = 0x7ce
│ │ │ │ -, scim::SCIM_KEY_Greek_OMICRON = 0x7cf
│ │ │ │ -, scim::SCIM_KEY_Greek_PI = 0x7d0
│ │ │ │ -, scim::SCIM_KEY_Greek_RHO = 0x7d1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_SIGMA = 0x7d2
│ │ │ │ -, scim::SCIM_KEY_Greek_TAU = 0x7d4
│ │ │ │ -, scim::SCIM_KEY_Greek_UPSILON = 0x7d5
│ │ │ │ -, scim::SCIM_KEY_Greek_PHI = 0x7d6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_CHI = 0x7d7
│ │ │ │ -, scim::SCIM_KEY_Greek_PSI = 0x7d8
│ │ │ │ -, scim::SCIM_KEY_Greek_OMEGA = 0x7d9
│ │ │ │ -, scim::SCIM_KEY_Greek_alpha = 0x7e1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_beta = 0x7e2
│ │ │ │ -, scim::SCIM_KEY_Greek_gamma = 0x7e3
│ │ │ │ -, scim::SCIM_KEY_Greek_delta = 0x7e4
│ │ │ │ -, scim::SCIM_KEY_Greek_epsilon = 0x7e5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_zeta = 0x7e6
│ │ │ │ -, scim::SCIM_KEY_Greek_eta = 0x7e7
│ │ │ │ -, scim::SCIM_KEY_Greek_theta = 0x7e8
│ │ │ │ -, scim::SCIM_KEY_Greek_iota = 0x7e9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_kappa = 0x7ea
│ │ │ │ -, scim::SCIM_KEY_Greek_lamda = 0x7eb
│ │ │ │ -, scim::SCIM_KEY_Greek_lambda = 0x7eb
│ │ │ │ -, scim::SCIM_KEY_Greek_mu = 0x7ec
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_nu = 0x7ed
│ │ │ │ -, scim::SCIM_KEY_Greek_xi = 0x7ee
│ │ │ │ -, scim::SCIM_KEY_Greek_omicron = 0x7ef
│ │ │ │ -, scim::SCIM_KEY_Greek_pi = 0x7f0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_rho = 0x7f1
│ │ │ │ -, scim::SCIM_KEY_Greek_sigma = 0x7f2
│ │ │ │ -, scim::SCIM_KEY_Greek_finalsmallsigma = 0x7f3
│ │ │ │ -, scim::SCIM_KEY_Greek_tau = 0x7f4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_upsilon = 0x7f5
│ │ │ │ -, scim::SCIM_KEY_Greek_phi = 0x7f6
│ │ │ │ -, scim::SCIM_KEY_Greek_chi = 0x7f7
│ │ │ │ -, scim::SCIM_KEY_Greek_psi = 0x7f8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Greek_omega = 0x7f9
│ │ │ │ -, scim::SCIM_KEY_Greek_switch = 0xFF7E
│ │ │ │ -, scim::SCIM_KEY_leftradical = 0x8a1
│ │ │ │ -, scim::SCIM_KEY_topleftradical = 0x8a2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_horizconnector = 0x8a3
│ │ │ │ -, scim::SCIM_KEY_topintegral = 0x8a4
│ │ │ │ -, scim::SCIM_KEY_botintegral = 0x8a5
│ │ │ │ -, scim::SCIM_KEY_vertconnector = 0x8a6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_topleftsqbracket = 0x8a7
│ │ │ │ -, scim::SCIM_KEY_botleftsqbracket = 0x8a8
│ │ │ │ -, scim::SCIM_KEY_toprightsqbracket = 0x8a9
│ │ │ │ -, scim::SCIM_KEY_botrightsqbracket = 0x8aa
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_topleftparens = 0x8ab
│ │ │ │ -, scim::SCIM_KEY_botleftparens = 0x8ac
│ │ │ │ -, scim::SCIM_KEY_toprightparens = 0x8ad
│ │ │ │ -, scim::SCIM_KEY_botrightparens = 0x8ae
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_leftmiddlecurlybrace = 0x8af
│ │ │ │ -, scim::SCIM_KEY_rightmiddlecurlybrace = 0x8b0
│ │ │ │ -, scim::SCIM_KEY_topleftsummation = 0x8b1
│ │ │ │ -, scim::SCIM_KEY_botleftsummation = 0x8b2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_topvertsummationconnector = 0x8b3
│ │ │ │ -, scim::SCIM_KEY_botvertsummationconnector = 0x8b4
│ │ │ │ -, scim::SCIM_KEY_toprightsummation = 0x8b5
│ │ │ │ -, scim::SCIM_KEY_botrightsummation = 0x8b6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_rightmiddlesummation = 0x8b7
│ │ │ │ -, scim::SCIM_KEY_lessthanequal = 0x8bc
│ │ │ │ -, scim::SCIM_KEY_notequal = 0x8bd
│ │ │ │ -, scim::SCIM_KEY_greaterthanequal = 0x8be
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_integral = 0x8bf
│ │ │ │ -, scim::SCIM_KEY_therefore = 0x8c0
│ │ │ │ -, scim::SCIM_KEY_variation = 0x8c1
│ │ │ │ -, scim::SCIM_KEY_infinity = 0x8c2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_nabla = 0x8c5
│ │ │ │ -, scim::SCIM_KEY_approximate = 0x8c8
│ │ │ │ -, scim::SCIM_KEY_similarequal = 0x8c9
│ │ │ │ -, scim::SCIM_KEY_ifonlyif = 0x8cd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_implies = 0x8ce
│ │ │ │ -, scim::SCIM_KEY_identical = 0x8cf
│ │ │ │ -, scim::SCIM_KEY_radical = 0x8d6
│ │ │ │ -, scim::SCIM_KEY_includedin = 0x8da
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_includes = 0x8db
│ │ │ │ -, scim::SCIM_KEY_intersection = 0x8dc
│ │ │ │ -, scim::SCIM_KEY_union = 0x8dd
│ │ │ │ -, scim::SCIM_KEY_logicaland = 0x8de
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_logicalor = 0x8df
│ │ │ │ -, scim::SCIM_KEY_partialderivative = 0x8ef
│ │ │ │ -, scim::SCIM_KEY_function = 0x8f6
│ │ │ │ -, scim::SCIM_KEY_leftarrow = 0x8fb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_uparrow = 0x8fc
│ │ │ │ -, scim::SCIM_KEY_rightarrow = 0x8fd
│ │ │ │ -, scim::SCIM_KEY_downarrow = 0x8fe
│ │ │ │ -, scim::SCIM_KEY_blank = 0x9df
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_soliddiamond = 0x9e0
│ │ │ │ -, scim::SCIM_KEY_checkerboard = 0x9e1
│ │ │ │ -, scim::SCIM_KEY_ht = 0x9e2
│ │ │ │ -, scim::SCIM_KEY_ff = 0x9e3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_cr = 0x9e4
│ │ │ │ -, scim::SCIM_KEY_lf = 0x9e5
│ │ │ │ -, scim::SCIM_KEY_nl = 0x9e8
│ │ │ │ -, scim::SCIM_KEY_vt = 0x9e9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_lowrightcorner = 0x9ea
│ │ │ │ -, scim::SCIM_KEY_uprightcorner = 0x9eb
│ │ │ │ -, scim::SCIM_KEY_upleftcorner = 0x9ec
│ │ │ │ -, scim::SCIM_KEY_lowleftcorner = 0x9ed
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_crossinglines = 0x9ee
│ │ │ │ -, scim::SCIM_KEY_horizlinescan1 = 0x9ef
│ │ │ │ -, scim::SCIM_KEY_horizlinescan3 = 0x9f0
│ │ │ │ -, scim::SCIM_KEY_horizlinescan5 = 0x9f1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_horizlinescan7 = 0x9f2
│ │ │ │ -, scim::SCIM_KEY_horizlinescan9 = 0x9f3
│ │ │ │ -, scim::SCIM_KEY_leftt = 0x9f4
│ │ │ │ -, scim::SCIM_KEY_rightt = 0x9f5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_bott = 0x9f6
│ │ │ │ -, scim::SCIM_KEY_topt = 0x9f7
│ │ │ │ -, scim::SCIM_KEY_vertbar = 0x9f8
│ │ │ │ -, scim::SCIM_KEY_emspace = 0xaa1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_enspace = 0xaa2
│ │ │ │ -, scim::SCIM_KEY_em3space = 0xaa3
│ │ │ │ -, scim::SCIM_KEY_em4space = 0xaa4
│ │ │ │ -, scim::SCIM_KEY_digitspace = 0xaa5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_punctspace = 0xaa6
│ │ │ │ -, scim::SCIM_KEY_thinspace = 0xaa7
│ │ │ │ -, scim::SCIM_KEY_hairspace = 0xaa8
│ │ │ │ -, scim::SCIM_KEY_emdash = 0xaa9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_endash = 0xaaa
│ │ │ │ -, scim::SCIM_KEY_signifblank = 0xaac
│ │ │ │ -, scim::SCIM_KEY_ellipsis = 0xaae
│ │ │ │ -, scim::SCIM_KEY_doubbaselinedot = 0xaaf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_onethird = 0xab0
│ │ │ │ -, scim::SCIM_KEY_twothirds = 0xab1
│ │ │ │ -, scim::SCIM_KEY_onefifth = 0xab2
│ │ │ │ -, scim::SCIM_KEY_twofifths = 0xab3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_threefifths = 0xab4
│ │ │ │ -, scim::SCIM_KEY_fourfifths = 0xab5
│ │ │ │ -, scim::SCIM_KEY_onesixth = 0xab6
│ │ │ │ -, scim::SCIM_KEY_fivesixths = 0xab7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_careof = 0xab8
│ │ │ │ -, scim::SCIM_KEY_figdash = 0xabb
│ │ │ │ -, scim::SCIM_KEY_leftanglebracket = 0xabc
│ │ │ │ -, scim::SCIM_KEY_decimalpoint = 0xabd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_rightanglebracket = 0xabe
│ │ │ │ -, scim::SCIM_KEY_marker = 0xabf
│ │ │ │ -, scim::SCIM_KEY_oneeighth = 0xac3
│ │ │ │ -, scim::SCIM_KEY_threeeighths = 0xac4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_fiveeighths = 0xac5
│ │ │ │ -, scim::SCIM_KEY_seveneighths = 0xac6
│ │ │ │ -, scim::SCIM_KEY_trademark = 0xac9
│ │ │ │ -, scim::SCIM_KEY_signaturemark = 0xaca
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_trademarkincircle = 0xacb
│ │ │ │ -, scim::SCIM_KEY_leftopentriangle = 0xacc
│ │ │ │ -, scim::SCIM_KEY_rightopentriangle = 0xacd
│ │ │ │ -, scim::SCIM_KEY_emopencircle = 0xace
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_emopenrectangle = 0xacf
│ │ │ │ -, scim::SCIM_KEY_leftsinglequotemark = 0xad0
│ │ │ │ -, scim::SCIM_KEY_rightsinglequotemark = 0xad1
│ │ │ │ -, scim::SCIM_KEY_leftdoublequotemark = 0xad2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_rightdoublequotemark = 0xad3
│ │ │ │ -, scim::SCIM_KEY_prescription = 0xad4
│ │ │ │ -, scim::SCIM_KEY_minutes = 0xad6
│ │ │ │ -, scim::SCIM_KEY_seconds = 0xad7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_latincross = 0xad9
│ │ │ │ -, scim::SCIM_KEY_hexagram = 0xada
│ │ │ │ -, scim::SCIM_KEY_filledrectbullet = 0xadb
│ │ │ │ -, scim::SCIM_KEY_filledlefttribullet = 0xadc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_filledrighttribullet = 0xadd
│ │ │ │ -, scim::SCIM_KEY_emfilledcircle = 0xade
│ │ │ │ -, scim::SCIM_KEY_emfilledrect = 0xadf
│ │ │ │ -, scim::SCIM_KEY_enopencircbullet = 0xae0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_enopensquarebullet = 0xae1
│ │ │ │ -, scim::SCIM_KEY_openrectbullet = 0xae2
│ │ │ │ -, scim::SCIM_KEY_opentribulletup = 0xae3
│ │ │ │ -, scim::SCIM_KEY_opentribulletdown = 0xae4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_openstar = 0xae5
│ │ │ │ -, scim::SCIM_KEY_enfilledcircbullet = 0xae6
│ │ │ │ -, scim::SCIM_KEY_enfilledsqbullet = 0xae7
│ │ │ │ -, scim::SCIM_KEY_filledtribulletup = 0xae8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_filledtribulletdown = 0xae9
│ │ │ │ -, scim::SCIM_KEY_leftpointer = 0xaea
│ │ │ │ -, scim::SCIM_KEY_rightpointer = 0xaeb
│ │ │ │ -, scim::SCIM_KEY_club = 0xaec
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_diamond = 0xaed
│ │ │ │ -, scim::SCIM_KEY_heart = 0xaee
│ │ │ │ -, scim::SCIM_KEY_maltesecross = 0xaf0
│ │ │ │ -, scim::SCIM_KEY_dagger = 0xaf1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_doubledagger = 0xaf2
│ │ │ │ -, scim::SCIM_KEY_checkmark = 0xaf3
│ │ │ │ -, scim::SCIM_KEY_ballotcross = 0xaf4
│ │ │ │ -, scim::SCIM_KEY_musicalsharp = 0xaf5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_musicalflat = 0xaf6
│ │ │ │ -, scim::SCIM_KEY_malesymbol = 0xaf7
│ │ │ │ -, scim::SCIM_KEY_femalesymbol = 0xaf8
│ │ │ │ -, scim::SCIM_KEY_telephone = 0xaf9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_telephonerecorder = 0xafa
│ │ │ │ -, scim::SCIM_KEY_phonographcopyright = 0xafb
│ │ │ │ -, scim::SCIM_KEY_caret = 0xafc
│ │ │ │ -, scim::SCIM_KEY_singlelowquotemark = 0xafd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_doublelowquotemark = 0xafe
│ │ │ │ -, scim::SCIM_KEY_cursor = 0xaff
│ │ │ │ -, scim::SCIM_KEY_leftcaret = 0xba3
│ │ │ │ -, scim::SCIM_KEY_rightcaret = 0xba6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_downcaret = 0xba8
│ │ │ │ -, scim::SCIM_KEY_upcaret = 0xba9
│ │ │ │ -, scim::SCIM_KEY_overbar = 0xbc0
│ │ │ │ -, scim::SCIM_KEY_downtack = 0xbc2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_upshoe = 0xbc3
│ │ │ │ -, scim::SCIM_KEY_downstile = 0xbc4
│ │ │ │ -, scim::SCIM_KEY_underbar = 0xbc6
│ │ │ │ -, scim::SCIM_KEY_jot = 0xbca
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_quad = 0xbcc
│ │ │ │ -, scim::SCIM_KEY_uptack = 0xbce
│ │ │ │ -, scim::SCIM_KEY_circle = 0xbcf
│ │ │ │ -, scim::SCIM_KEY_upstile = 0xbd3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_downshoe = 0xbd6
│ │ │ │ -, scim::SCIM_KEY_rightshoe = 0xbd8
│ │ │ │ -, scim::SCIM_KEY_leftshoe = 0xbda
│ │ │ │ -, scim::SCIM_KEY_lefttack = 0xbdc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_righttack = 0xbfc
│ │ │ │ -, scim::SCIM_KEY_hebrew_doublelowline = 0xcdf
│ │ │ │ -, scim::SCIM_KEY_hebrew_aleph = 0xce0
│ │ │ │ -, scim::SCIM_KEY_hebrew_bet = 0xce1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_beth = 0xce1
│ │ │ │ -, scim::SCIM_KEY_hebrew_gimel = 0xce2
│ │ │ │ -, scim::SCIM_KEY_hebrew_gimmel = 0xce2
│ │ │ │ -, scim::SCIM_KEY_hebrew_dalet = 0xce3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_daleth = 0xce3
│ │ │ │ -, scim::SCIM_KEY_hebrew_he = 0xce4
│ │ │ │ -, scim::SCIM_KEY_hebrew_waw = 0xce5
│ │ │ │ -, scim::SCIM_KEY_hebrew_zain = 0xce6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_zayin = 0xce6
│ │ │ │ -, scim::SCIM_KEY_hebrew_chet = 0xce7
│ │ │ │ -, scim::SCIM_KEY_hebrew_het = 0xce7
│ │ │ │ -, scim::SCIM_KEY_hebrew_tet = 0xce8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_teth = 0xce8
│ │ │ │ -, scim::SCIM_KEY_hebrew_yod = 0xce9
│ │ │ │ -, scim::SCIM_KEY_hebrew_finalkaph = 0xcea
│ │ │ │ -, scim::SCIM_KEY_hebrew_kaph = 0xceb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_lamed = 0xcec
│ │ │ │ -, scim::SCIM_KEY_hebrew_finalmem = 0xced
│ │ │ │ -, scim::SCIM_KEY_hebrew_mem = 0xcee
│ │ │ │ -, scim::SCIM_KEY_hebrew_finalnun = 0xcef
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_nun = 0xcf0
│ │ │ │ -, scim::SCIM_KEY_hebrew_samech = 0xcf1
│ │ │ │ -, scim::SCIM_KEY_hebrew_samekh = 0xcf1
│ │ │ │ -, scim::SCIM_KEY_hebrew_ayin = 0xcf2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_finalpe = 0xcf3
│ │ │ │ -, scim::SCIM_KEY_hebrew_pe = 0xcf4
│ │ │ │ -, scim::SCIM_KEY_hebrew_finalzade = 0xcf5
│ │ │ │ -, scim::SCIM_KEY_hebrew_finalzadi = 0xcf5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_zade = 0xcf6
│ │ │ │ -, scim::SCIM_KEY_hebrew_zadi = 0xcf6
│ │ │ │ -, scim::SCIM_KEY_hebrew_qoph = 0xcf7
│ │ │ │ -, scim::SCIM_KEY_hebrew_kuf = 0xcf7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_hebrew_resh = 0xcf8
│ │ │ │ -, scim::SCIM_KEY_hebrew_shin = 0xcf9
│ │ │ │ -, scim::SCIM_KEY_hebrew_taw = 0xcfa
│ │ │ │ -, scim::SCIM_KEY_hebrew_taf = 0xcfa
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hebrew_switch = 0xFF7E
│ │ │ │ -, scim::SCIM_KEY_Thai_kokai = 0xda1
│ │ │ │ -, scim::SCIM_KEY_Thai_khokhai = 0xda2
│ │ │ │ -, scim::SCIM_KEY_Thai_khokhuat = 0xda3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_khokhwai = 0xda4
│ │ │ │ -, scim::SCIM_KEY_Thai_khokhon = 0xda5
│ │ │ │ -, scim::SCIM_KEY_Thai_khorakhang = 0xda6
│ │ │ │ -, scim::SCIM_KEY_Thai_ngongu = 0xda7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_chochan = 0xda8
│ │ │ │ -, scim::SCIM_KEY_Thai_choching = 0xda9
│ │ │ │ -, scim::SCIM_KEY_Thai_chochang = 0xdaa
│ │ │ │ -, scim::SCIM_KEY_Thai_soso = 0xdab
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_chochoe = 0xdac
│ │ │ │ -, scim::SCIM_KEY_Thai_yoying = 0xdad
│ │ │ │ -, scim::SCIM_KEY_Thai_dochada = 0xdae
│ │ │ │ -, scim::SCIM_KEY_Thai_topatak = 0xdaf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_thothan = 0xdb0
│ │ │ │ -, scim::SCIM_KEY_Thai_thonangmontho = 0xdb1
│ │ │ │ -, scim::SCIM_KEY_Thai_thophuthao = 0xdb2
│ │ │ │ -, scim::SCIM_KEY_Thai_nonen = 0xdb3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_dodek = 0xdb4
│ │ │ │ -, scim::SCIM_KEY_Thai_totao = 0xdb5
│ │ │ │ -, scim::SCIM_KEY_Thai_thothung = 0xdb6
│ │ │ │ -, scim::SCIM_KEY_Thai_thothahan = 0xdb7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_thothong = 0xdb8
│ │ │ │ -, scim::SCIM_KEY_Thai_nonu = 0xdb9
│ │ │ │ -, scim::SCIM_KEY_Thai_bobaimai = 0xdba
│ │ │ │ -, scim::SCIM_KEY_Thai_popla = 0xdbb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_phophung = 0xdbc
│ │ │ │ -, scim::SCIM_KEY_Thai_fofa = 0xdbd
│ │ │ │ -, scim::SCIM_KEY_Thai_phophan = 0xdbe
│ │ │ │ -, scim::SCIM_KEY_Thai_fofan = 0xdbf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_phosamphao = 0xdc0
│ │ │ │ -, scim::SCIM_KEY_Thai_moma = 0xdc1
│ │ │ │ -, scim::SCIM_KEY_Thai_yoyak = 0xdc2
│ │ │ │ -, scim::SCIM_KEY_Thai_rorua = 0xdc3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_ru = 0xdc4
│ │ │ │ -, scim::SCIM_KEY_Thai_loling = 0xdc5
│ │ │ │ -, scim::SCIM_KEY_Thai_lu = 0xdc6
│ │ │ │ -, scim::SCIM_KEY_Thai_wowaen = 0xdc7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_sosala = 0xdc8
│ │ │ │ -, scim::SCIM_KEY_Thai_sorusi = 0xdc9
│ │ │ │ -, scim::SCIM_KEY_Thai_sosua = 0xdca
│ │ │ │ -, scim::SCIM_KEY_Thai_hohip = 0xdcb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_lochula = 0xdcc
│ │ │ │ -, scim::SCIM_KEY_Thai_oang = 0xdcd
│ │ │ │ -, scim::SCIM_KEY_Thai_honokhuk = 0xdce
│ │ │ │ -, scim::SCIM_KEY_Thai_paiyannoi = 0xdcf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_saraa = 0xdd0
│ │ │ │ -, scim::SCIM_KEY_Thai_maihanakat = 0xdd1
│ │ │ │ -, scim::SCIM_KEY_Thai_saraaa = 0xdd2
│ │ │ │ -, scim::SCIM_KEY_Thai_saraam = 0xdd3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_sarai = 0xdd4
│ │ │ │ -, scim::SCIM_KEY_Thai_saraii = 0xdd5
│ │ │ │ -, scim::SCIM_KEY_Thai_saraue = 0xdd6
│ │ │ │ -, scim::SCIM_KEY_Thai_sarauee = 0xdd7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_sarau = 0xdd8
│ │ │ │ -, scim::SCIM_KEY_Thai_sarauu = 0xdd9
│ │ │ │ -, scim::SCIM_KEY_Thai_phinthu = 0xdda
│ │ │ │ -, scim::SCIM_KEY_Thai_maihanakat_maitho = 0xdde
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_baht = 0xddf
│ │ │ │ -, scim::SCIM_KEY_Thai_sarae = 0xde0
│ │ │ │ -, scim::SCIM_KEY_Thai_saraae = 0xde1
│ │ │ │ -, scim::SCIM_KEY_Thai_sarao = 0xde2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_saraaimaimuan = 0xde3
│ │ │ │ -, scim::SCIM_KEY_Thai_saraaimaimalai = 0xde4
│ │ │ │ -, scim::SCIM_KEY_Thai_lakkhangyao = 0xde5
│ │ │ │ -, scim::SCIM_KEY_Thai_maiyamok = 0xde6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_maitaikhu = 0xde7
│ │ │ │ -, scim::SCIM_KEY_Thai_maiek = 0xde8
│ │ │ │ -, scim::SCIM_KEY_Thai_maitho = 0xde9
│ │ │ │ -, scim::SCIM_KEY_Thai_maitri = 0xdea
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_maichattawa = 0xdeb
│ │ │ │ -, scim::SCIM_KEY_Thai_thanthakhat = 0xdec
│ │ │ │ -, scim::SCIM_KEY_Thai_nikhahit = 0xded
│ │ │ │ -, scim::SCIM_KEY_Thai_leksun = 0xdf0
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_leknung = 0xdf1
│ │ │ │ -, scim::SCIM_KEY_Thai_leksong = 0xdf2
│ │ │ │ -, scim::SCIM_KEY_Thai_leksam = 0xdf3
│ │ │ │ -, scim::SCIM_KEY_Thai_leksi = 0xdf4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_lekha = 0xdf5
│ │ │ │ -, scim::SCIM_KEY_Thai_lekhok = 0xdf6
│ │ │ │ -, scim::SCIM_KEY_Thai_lekchet = 0xdf7
│ │ │ │ -, scim::SCIM_KEY_Thai_lekpaet = 0xdf8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Thai_lekkao = 0xdf9
│ │ │ │ -, scim::SCIM_KEY_Hangul = 0xff31
│ │ │ │ -, scim::SCIM_KEY_Hangul_Start = 0xff32
│ │ │ │ -, scim::SCIM_KEY_Hangul_End = 0xff33
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_Hanja = 0xff34
│ │ │ │ -, scim::SCIM_KEY_Hangul_Jamo = 0xff35
│ │ │ │ -, scim::SCIM_KEY_Hangul_Romaja = 0xff36
│ │ │ │ -, scim::SCIM_KEY_Hangul_Codeinput = 0xff37
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_Jeonja = 0xff38
│ │ │ │ -, scim::SCIM_KEY_Hangul_Banja = 0xff39
│ │ │ │ -, scim::SCIM_KEY_Hangul_PreHanja = 0xff3a
│ │ │ │ -, scim::SCIM_KEY_Hangul_PostHanja = 0xff3b
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_SingleCandidate = 0xff3c
│ │ │ │ -, scim::SCIM_KEY_Hangul_MultipleCandidate = 0xff3d
│ │ │ │ -, scim::SCIM_KEY_Hangul_PreviousCandidate = 0xff3e
│ │ │ │ -, scim::SCIM_KEY_Hangul_Special = 0xff3f
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_switch = 0xFF7E
│ │ │ │ -, scim::SCIM_KEY_Hangul_Kiyeog = 0xea1
│ │ │ │ -, scim::SCIM_KEY_Hangul_SsangKiyeog = 0xea2
│ │ │ │ -, scim::SCIM_KEY_Hangul_KiyeogSios = 0xea3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_Nieun = 0xea4
│ │ │ │ -, scim::SCIM_KEY_Hangul_NieunJieuj = 0xea5
│ │ │ │ -, scim::SCIM_KEY_Hangul_NieunHieuh = 0xea6
│ │ │ │ -, scim::SCIM_KEY_Hangul_Dikeud = 0xea7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_SsangDikeud = 0xea8
│ │ │ │ -, scim::SCIM_KEY_Hangul_Rieul = 0xea9
│ │ │ │ -, scim::SCIM_KEY_Hangul_RieulKiyeog = 0xeaa
│ │ │ │ -, scim::SCIM_KEY_Hangul_RieulMieum = 0xeab
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_RieulPieub = 0xeac
│ │ │ │ -, scim::SCIM_KEY_Hangul_RieulSios = 0xead
│ │ │ │ -, scim::SCIM_KEY_Hangul_RieulTieut = 0xeae
│ │ │ │ -, scim::SCIM_KEY_Hangul_RieulPhieuf = 0xeaf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_RieulHieuh = 0xeb0
│ │ │ │ -, scim::SCIM_KEY_Hangul_Mieum = 0xeb1
│ │ │ │ -, scim::SCIM_KEY_Hangul_Pieub = 0xeb2
│ │ │ │ -, scim::SCIM_KEY_Hangul_SsangPieub = 0xeb3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_PieubSios = 0xeb4
│ │ │ │ -, scim::SCIM_KEY_Hangul_Sios = 0xeb5
│ │ │ │ -, scim::SCIM_KEY_Hangul_SsangSios = 0xeb6
│ │ │ │ -, scim::SCIM_KEY_Hangul_Ieung = 0xeb7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_Jieuj = 0xeb8
│ │ │ │ -, scim::SCIM_KEY_Hangul_SsangJieuj = 0xeb9
│ │ │ │ -, scim::SCIM_KEY_Hangul_Cieuc = 0xeba
│ │ │ │ -, scim::SCIM_KEY_Hangul_Khieuq = 0xebb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_Tieut = 0xebc
│ │ │ │ -, scim::SCIM_KEY_Hangul_Phieuf = 0xebd
│ │ │ │ -, scim::SCIM_KEY_Hangul_Hieuh = 0xebe
│ │ │ │ -, scim::SCIM_KEY_Hangul_A = 0xebf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_AE = 0xec0
│ │ │ │ -, scim::SCIM_KEY_Hangul_YA = 0xec1
│ │ │ │ -, scim::SCIM_KEY_Hangul_YAE = 0xec2
│ │ │ │ -, scim::SCIM_KEY_Hangul_EO = 0xec3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_E = 0xec4
│ │ │ │ -, scim::SCIM_KEY_Hangul_YEO = 0xec5
│ │ │ │ -, scim::SCIM_KEY_Hangul_YE = 0xec6
│ │ │ │ -, scim::SCIM_KEY_Hangul_O = 0xec7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_WA = 0xec8
│ │ │ │ -, scim::SCIM_KEY_Hangul_WAE = 0xec9
│ │ │ │ -, scim::SCIM_KEY_Hangul_OE = 0xeca
│ │ │ │ -, scim::SCIM_KEY_Hangul_YO = 0xecb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_U = 0xecc
│ │ │ │ -, scim::SCIM_KEY_Hangul_WEO = 0xecd
│ │ │ │ -, scim::SCIM_KEY_Hangul_WE = 0xece
│ │ │ │ -, scim::SCIM_KEY_Hangul_WI = 0xecf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_YU = 0xed0
│ │ │ │ -, scim::SCIM_KEY_Hangul_EU = 0xed1
│ │ │ │ -, scim::SCIM_KEY_Hangul_YI = 0xed2
│ │ │ │ -, scim::SCIM_KEY_Hangul_I = 0xed3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_J_Kiyeog = 0xed4
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_SsangKiyeog = 0xed5
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_KiyeogSios = 0xed6
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Nieun = 0xed7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_J_NieunJieuj = 0xed8
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_NieunHieuh = 0xed9
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Dikeud = 0xeda
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Rieul = 0xedb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_J_RieulKiyeog = 0xedc
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_RieulMieum = 0xedd
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_RieulPieub = 0xede
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_RieulSios = 0xedf
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_J_RieulTieut = 0xee0
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_RieulPhieuf = 0xee1
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_RieulHieuh = 0xee2
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Mieum = 0xee3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_J_Pieub = 0xee4
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_PieubSios = 0xee5
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Sios = 0xee6
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_SsangSios = 0xee7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_J_Ieung = 0xee8
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Jieuj = 0xee9
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Cieuc = 0xeea
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Khieuq = 0xeeb
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_J_Tieut = 0xeec
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Phieuf = 0xeed
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_Hieuh = 0xeee
│ │ │ │ -, scim::SCIM_KEY_Hangul_RieulYeorinHieuh = 0xeef
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_SunkyeongeumMieum = 0xef0
│ │ │ │ -, scim::SCIM_KEY_Hangul_SunkyeongeumPieub = 0xef1
│ │ │ │ -, scim::SCIM_KEY_Hangul_PanSios = 0xef2
│ │ │ │ -, scim::SCIM_KEY_Hangul_KkogjiDalrinIeung = 0xef3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_SunkyeongeumPhieuf = 0xef4
│ │ │ │ -, scim::SCIM_KEY_Hangul_YeorinHieuh = 0xef5
│ │ │ │ -, scim::SCIM_KEY_Hangul_AraeA = 0xef6
│ │ │ │ -, scim::SCIM_KEY_Hangul_AraeAE = 0xef7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Hangul_J_PanSios = 0xef8
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_KkogjiDalrinIeung = 0xef9
│ │ │ │ -, scim::SCIM_KEY_Hangul_J_YeorinHieuh = 0xefa
│ │ │ │ -, scim::SCIM_KEY_Korean_Won = 0xeff
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_eternity = 0x14a1
│ │ │ │ -, scim::SCIM_KEY_Armenian_ligature_ew = 0x14a2
│ │ │ │ -, scim::SCIM_KEY_Armenian_full_stop = 0x14a3
│ │ │ │ -, scim::SCIM_KEY_Armenian_verjaket = 0x14a3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_parenright = 0x14a4
│ │ │ │ -, scim::SCIM_KEY_Armenian_parenleft = 0x14a5
│ │ │ │ -, scim::SCIM_KEY_Armenian_guillemotright = 0x14a6
│ │ │ │ -, scim::SCIM_KEY_Armenian_guillemotleft = 0x14a7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_em_dash = 0x14a8
│ │ │ │ -, scim::SCIM_KEY_Armenian_dot = 0x14a9
│ │ │ │ -, scim::SCIM_KEY_Armenian_mijaket = 0x14a9
│ │ │ │ -, scim::SCIM_KEY_Armenian_separation_mark = 0x14aa
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_but = 0x14aa
│ │ │ │ -, scim::SCIM_KEY_Armenian_comma = 0x14ab
│ │ │ │ -, scim::SCIM_KEY_Armenian_en_dash = 0x14ac
│ │ │ │ -, scim::SCIM_KEY_Armenian_hyphen = 0x14ad
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_yentamna = 0x14ad
│ │ │ │ -, scim::SCIM_KEY_Armenian_ellipsis = 0x14ae
│ │ │ │ -, scim::SCIM_KEY_Armenian_exclam = 0x14af
│ │ │ │ -, scim::SCIM_KEY_Armenian_amanak = 0x14af
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_accent = 0x14b0
│ │ │ │ -, scim::SCIM_KEY_Armenian_shesht = 0x14b0
│ │ │ │ -, scim::SCIM_KEY_Armenian_question = 0x14b1
│ │ │ │ -, scim::SCIM_KEY_Armenian_paruyk = 0x14b1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_AYB = 0x14b2
│ │ │ │ -, scim::SCIM_KEY_Armenian_ayb = 0x14b3
│ │ │ │ -, scim::SCIM_KEY_Armenian_BEN = 0x14b4
│ │ │ │ -, scim::SCIM_KEY_Armenian_ben = 0x14b5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_GIM = 0x14b6
│ │ │ │ -, scim::SCIM_KEY_Armenian_gim = 0x14b7
│ │ │ │ -, scim::SCIM_KEY_Armenian_DA = 0x14b8
│ │ │ │ -, scim::SCIM_KEY_Armenian_da = 0x14b9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_YECH = 0x14ba
│ │ │ │ -, scim::SCIM_KEY_Armenian_yech = 0x14bb
│ │ │ │ -, scim::SCIM_KEY_Armenian_ZA = 0x14bc
│ │ │ │ -, scim::SCIM_KEY_Armenian_za = 0x14bd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_E = 0x14be
│ │ │ │ -, scim::SCIM_KEY_Armenian_e = 0x14bf
│ │ │ │ -, scim::SCIM_KEY_Armenian_AT = 0x14c0
│ │ │ │ -, scim::SCIM_KEY_Armenian_at = 0x14c1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_TO = 0x14c2
│ │ │ │ -, scim::SCIM_KEY_Armenian_to = 0x14c3
│ │ │ │ -, scim::SCIM_KEY_Armenian_ZHE = 0x14c4
│ │ │ │ -, scim::SCIM_KEY_Armenian_zhe = 0x14c5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_INI = 0x14c6
│ │ │ │ -, scim::SCIM_KEY_Armenian_ini = 0x14c7
│ │ │ │ -, scim::SCIM_KEY_Armenian_LYUN = 0x14c8
│ │ │ │ -, scim::SCIM_KEY_Armenian_lyun = 0x14c9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_KHE = 0x14ca
│ │ │ │ -, scim::SCIM_KEY_Armenian_khe = 0x14cb
│ │ │ │ -, scim::SCIM_KEY_Armenian_TSA = 0x14cc
│ │ │ │ -, scim::SCIM_KEY_Armenian_tsa = 0x14cd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_KEN = 0x14ce
│ │ │ │ -, scim::SCIM_KEY_Armenian_ken = 0x14cf
│ │ │ │ -, scim::SCIM_KEY_Armenian_HO = 0x14d0
│ │ │ │ -, scim::SCIM_KEY_Armenian_ho = 0x14d1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_DZA = 0x14d2
│ │ │ │ -, scim::SCIM_KEY_Armenian_dza = 0x14d3
│ │ │ │ -, scim::SCIM_KEY_Armenian_GHAT = 0x14d4
│ │ │ │ -, scim::SCIM_KEY_Armenian_ghat = 0x14d5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_TCHE = 0x14d6
│ │ │ │ -, scim::SCIM_KEY_Armenian_tche = 0x14d7
│ │ │ │ -, scim::SCIM_KEY_Armenian_MEN = 0x14d8
│ │ │ │ -, scim::SCIM_KEY_Armenian_men = 0x14d9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_HI = 0x14da
│ │ │ │ -, scim::SCIM_KEY_Armenian_hi = 0x14db
│ │ │ │ -, scim::SCIM_KEY_Armenian_NU = 0x14dc
│ │ │ │ -, scim::SCIM_KEY_Armenian_nu = 0x14dd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_SHA = 0x14de
│ │ │ │ -, scim::SCIM_KEY_Armenian_sha = 0x14df
│ │ │ │ -, scim::SCIM_KEY_Armenian_VO = 0x14e0
│ │ │ │ -, scim::SCIM_KEY_Armenian_vo = 0x14e1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_CHA = 0x14e2
│ │ │ │ -, scim::SCIM_KEY_Armenian_cha = 0x14e3
│ │ │ │ -, scim::SCIM_KEY_Armenian_PE = 0x14e4
│ │ │ │ -, scim::SCIM_KEY_Armenian_pe = 0x14e5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_JE = 0x14e6
│ │ │ │ -, scim::SCIM_KEY_Armenian_je = 0x14e7
│ │ │ │ -, scim::SCIM_KEY_Armenian_RA = 0x14e8
│ │ │ │ -, scim::SCIM_KEY_Armenian_ra = 0x14e9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_SE = 0x14ea
│ │ │ │ -, scim::SCIM_KEY_Armenian_se = 0x14eb
│ │ │ │ -, scim::SCIM_KEY_Armenian_VEV = 0x14ec
│ │ │ │ -, scim::SCIM_KEY_Armenian_vev = 0x14ed
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_TYUN = 0x14ee
│ │ │ │ -, scim::SCIM_KEY_Armenian_tyun = 0x14ef
│ │ │ │ -, scim::SCIM_KEY_Armenian_RE = 0x14f0
│ │ │ │ -, scim::SCIM_KEY_Armenian_re = 0x14f1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_TSO = 0x14f2
│ │ │ │ -, scim::SCIM_KEY_Armenian_tso = 0x14f3
│ │ │ │ -, scim::SCIM_KEY_Armenian_VYUN = 0x14f4
│ │ │ │ -, scim::SCIM_KEY_Armenian_vyun = 0x14f5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_PYUR = 0x14f6
│ │ │ │ -, scim::SCIM_KEY_Armenian_pyur = 0x14f7
│ │ │ │ -, scim::SCIM_KEY_Armenian_KE = 0x14f8
│ │ │ │ -, scim::SCIM_KEY_Armenian_ke = 0x14f9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_O = 0x14fa
│ │ │ │ -, scim::SCIM_KEY_Armenian_o = 0x14fb
│ │ │ │ -, scim::SCIM_KEY_Armenian_FE = 0x14fc
│ │ │ │ -, scim::SCIM_KEY_Armenian_fe = 0x14fd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Armenian_apostrophe = 0x14fe
│ │ │ │ -, scim::SCIM_KEY_Armenian_section_sign = 0x14ff
│ │ │ │ -, scim::SCIM_KEY_Georgian_an = 0x15d0
│ │ │ │ -, scim::SCIM_KEY_Georgian_ban = 0x15d1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_gan = 0x15d2
│ │ │ │ -, scim::SCIM_KEY_Georgian_don = 0x15d3
│ │ │ │ -, scim::SCIM_KEY_Georgian_en = 0x15d4
│ │ │ │ -, scim::SCIM_KEY_Georgian_vin = 0x15d5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_zen = 0x15d6
│ │ │ │ -, scim::SCIM_KEY_Georgian_tan = 0x15d7
│ │ │ │ -, scim::SCIM_KEY_Georgian_in = 0x15d8
│ │ │ │ -, scim::SCIM_KEY_Georgian_kan = 0x15d9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_las = 0x15da
│ │ │ │ -, scim::SCIM_KEY_Georgian_man = 0x15db
│ │ │ │ -, scim::SCIM_KEY_Georgian_nar = 0x15dc
│ │ │ │ -, scim::SCIM_KEY_Georgian_on = 0x15dd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_par = 0x15de
│ │ │ │ -, scim::SCIM_KEY_Georgian_zhar = 0x15df
│ │ │ │ -, scim::SCIM_KEY_Georgian_rae = 0x15e0
│ │ │ │ -, scim::SCIM_KEY_Georgian_san = 0x15e1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_tar = 0x15e2
│ │ │ │ -, scim::SCIM_KEY_Georgian_un = 0x15e3
│ │ │ │ -, scim::SCIM_KEY_Georgian_phar = 0x15e4
│ │ │ │ -, scim::SCIM_KEY_Georgian_khar = 0x15e5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_ghan = 0x15e6
│ │ │ │ -, scim::SCIM_KEY_Georgian_qar = 0x15e7
│ │ │ │ -, scim::SCIM_KEY_Georgian_shin = 0x15e8
│ │ │ │ -, scim::SCIM_KEY_Georgian_chin = 0x15e9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_can = 0x15ea
│ │ │ │ -, scim::SCIM_KEY_Georgian_jil = 0x15eb
│ │ │ │ -, scim::SCIM_KEY_Georgian_cil = 0x15ec
│ │ │ │ -, scim::SCIM_KEY_Georgian_char = 0x15ed
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_xan = 0x15ee
│ │ │ │ -, scim::SCIM_KEY_Georgian_jhan = 0x15ef
│ │ │ │ -, scim::SCIM_KEY_Georgian_hae = 0x15f0
│ │ │ │ -, scim::SCIM_KEY_Georgian_he = 0x15f1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_hie = 0x15f2
│ │ │ │ -, scim::SCIM_KEY_Georgian_we = 0x15f3
│ │ │ │ -, scim::SCIM_KEY_Georgian_har = 0x15f4
│ │ │ │ -, scim::SCIM_KEY_Georgian_hoe = 0x15f5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Georgian_fi = 0x15f6
│ │ │ │ -, scim::SCIM_KEY_Ccedillaabovedot = 0x16a2
│ │ │ │ -, scim::SCIM_KEY_Xabovedot = 0x16a3
│ │ │ │ -, scim::SCIM_KEY_Qabovedot = 0x16a5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ibreve = 0x16a6
│ │ │ │ -, scim::SCIM_KEY_IE = 0x16a7
│ │ │ │ -, scim::SCIM_KEY_UO = 0x16a8
│ │ │ │ -, scim::SCIM_KEY_Zstroke = 0x16a9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Gcaron = 0x16aa
│ │ │ │ -, scim::SCIM_KEY_Obarred = 0x16af
│ │ │ │ -, scim::SCIM_KEY_ccedillaabovedot = 0x16b2
│ │ │ │ -, scim::SCIM_KEY_xabovedot = 0x16b3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Ocaron = 0x16b4
│ │ │ │ -, scim::SCIM_KEY_qabovedot = 0x16b5
│ │ │ │ -, scim::SCIM_KEY_ibreve = 0x16b6
│ │ │ │ -, scim::SCIM_KEY_ie = 0x16b7
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_uo = 0x16b8
│ │ │ │ -, scim::SCIM_KEY_zstroke = 0x16b9
│ │ │ │ -, scim::SCIM_KEY_gcaron = 0x16ba
│ │ │ │ -, scim::SCIM_KEY_ocaron = 0x16bd
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_obarred = 0x16bf
│ │ │ │ -, scim::SCIM_KEY_SCHWA = 0x16c6
│ │ │ │ -, scim::SCIM_KEY_schwa = 0x16f6
│ │ │ │ -, scim::SCIM_KEY_Lbelowdot = 0x16d1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_Lstrokebelowdot = 0x16d2
│ │ │ │ -, scim::SCIM_KEY_lbelowdot = 0x16e1
│ │ │ │ -, scim::SCIM_KEY_lstrokebelowdot = 0x16e2
│ │ │ │ -, scim::SCIM_KEY_Gtilde = 0x16d3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_gtilde = 0x16e3
│ │ │ │ -, scim::SCIM_KEY_Abelowdot = 0x1ea0
│ │ │ │ -, scim::SCIM_KEY_abelowdot = 0x1ea1
│ │ │ │ -, scim::SCIM_KEY_Ahook = 0x1ea2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ahook = 0x1ea3
│ │ │ │ -, scim::SCIM_KEY_Acircumflexacute = 0x1ea4
│ │ │ │ -, scim::SCIM_KEY_acircumflexacute = 0x1ea5
│ │ │ │ -, scim::SCIM_KEY_Acircumflexgrave = 0x1ea6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_acircumflexgrave = 0x1ea7
│ │ │ │ -, scim::SCIM_KEY_Acircumflexhook = 0x1ea8
│ │ │ │ -, scim::SCIM_KEY_acircumflexhook = 0x1ea9
│ │ │ │ -, scim::SCIM_KEY_Acircumflextilde = 0x1eaa
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_acircumflextilde = 0x1eab
│ │ │ │ -, scim::SCIM_KEY_Acircumflexbelowdot = 0x1eac
│ │ │ │ -, scim::SCIM_KEY_acircumflexbelowdot = 0x1ead
│ │ │ │ -, scim::SCIM_KEY_Abreveacute = 0x1eae
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_abreveacute = 0x1eaf
│ │ │ │ -, scim::SCIM_KEY_Abrevegrave = 0x1eb0
│ │ │ │ -, scim::SCIM_KEY_abrevegrave = 0x1eb1
│ │ │ │ -, scim::SCIM_KEY_Abrevehook = 0x1eb2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_abrevehook = 0x1eb3
│ │ │ │ -, scim::SCIM_KEY_Abrevetilde = 0x1eb4
│ │ │ │ -, scim::SCIM_KEY_abrevetilde = 0x1eb5
│ │ │ │ -, scim::SCIM_KEY_Abrevebelowdot = 0x1eb6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_abrevebelowdot = 0x1eb7
│ │ │ │ -, scim::SCIM_KEY_Ebelowdot = 0x1eb8
│ │ │ │ -, scim::SCIM_KEY_ebelowdot = 0x1eb9
│ │ │ │ -, scim::SCIM_KEY_Ehook = 0x1eba
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ehook = 0x1ebb
│ │ │ │ -, scim::SCIM_KEY_Etilde = 0x1ebc
│ │ │ │ -, scim::SCIM_KEY_etilde = 0x1ebd
│ │ │ │ -, scim::SCIM_KEY_Ecircumflexacute = 0x1ebe
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ecircumflexacute = 0x1ebf
│ │ │ │ -, scim::SCIM_KEY_Ecircumflexgrave = 0x1ec0
│ │ │ │ -, scim::SCIM_KEY_ecircumflexgrave = 0x1ec1
│ │ │ │ -, scim::SCIM_KEY_Ecircumflexhook = 0x1ec2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ecircumflexhook = 0x1ec3
│ │ │ │ -, scim::SCIM_KEY_Ecircumflextilde = 0x1ec4
│ │ │ │ -, scim::SCIM_KEY_ecircumflextilde = 0x1ec5
│ │ │ │ -, scim::SCIM_KEY_Ecircumflexbelowdot = 0x1ec6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ecircumflexbelowdot = 0x1ec7
│ │ │ │ -, scim::SCIM_KEY_Ihook = 0x1ec8
│ │ │ │ -, scim::SCIM_KEY_ihook = 0x1ec9
│ │ │ │ -, scim::SCIM_KEY_Ibelowdot = 0x1eca
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ibelowdot = 0x1ecb
│ │ │ │ -, scim::SCIM_KEY_Obelowdot = 0x1ecc
│ │ │ │ -, scim::SCIM_KEY_obelowdot = 0x1ecd
│ │ │ │ -, scim::SCIM_KEY_Ohook = 0x1ece
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ohook = 0x1ecf
│ │ │ │ -, scim::SCIM_KEY_Ocircumflexacute = 0x1ed0
│ │ │ │ -, scim::SCIM_KEY_ocircumflexacute = 0x1ed1
│ │ │ │ -, scim::SCIM_KEY_Ocircumflexgrave = 0x1ed2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ocircumflexgrave = 0x1ed3
│ │ │ │ -, scim::SCIM_KEY_Ocircumflexhook = 0x1ed4
│ │ │ │ -, scim::SCIM_KEY_ocircumflexhook = 0x1ed5
│ │ │ │ -, scim::SCIM_KEY_Ocircumflextilde = 0x1ed6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ocircumflextilde = 0x1ed7
│ │ │ │ -, scim::SCIM_KEY_Ocircumflexbelowdot = 0x1ed8
│ │ │ │ -, scim::SCIM_KEY_ocircumflexbelowdot = 0x1ed9
│ │ │ │ -, scim::SCIM_KEY_Ohornacute = 0x1eda
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ohornacute = 0x1edb
│ │ │ │ -, scim::SCIM_KEY_Ohorngrave = 0x1edc
│ │ │ │ -, scim::SCIM_KEY_ohorngrave = 0x1edd
│ │ │ │ -, scim::SCIM_KEY_Ohornhook = 0x1ede
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ohornhook = 0x1edf
│ │ │ │ -, scim::SCIM_KEY_Ohorntilde = 0x1ee0
│ │ │ │ -, scim::SCIM_KEY_ohorntilde = 0x1ee1
│ │ │ │ -, scim::SCIM_KEY_Ohornbelowdot = 0x1ee2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ohornbelowdot = 0x1ee3
│ │ │ │ -, scim::SCIM_KEY_Ubelowdot = 0x1ee4
│ │ │ │ -, scim::SCIM_KEY_ubelowdot = 0x1ee5
│ │ │ │ -, scim::SCIM_KEY_Uhook = 0x1ee6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_uhook = 0x1ee7
│ │ │ │ -, scim::SCIM_KEY_Uhornacute = 0x1ee8
│ │ │ │ -, scim::SCIM_KEY_uhornacute = 0x1ee9
│ │ │ │ -, scim::SCIM_KEY_Uhorngrave = 0x1eea
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_uhorngrave = 0x1eeb
│ │ │ │ -, scim::SCIM_KEY_Uhornhook = 0x1eec
│ │ │ │ -, scim::SCIM_KEY_uhornhook = 0x1eed
│ │ │ │ -, scim::SCIM_KEY_Uhorntilde = 0x1eee
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_uhorntilde = 0x1eef
│ │ │ │ -, scim::SCIM_KEY_Uhornbelowdot = 0x1ef0
│ │ │ │ -, scim::SCIM_KEY_uhornbelowdot = 0x1ef1
│ │ │ │ -, scim::SCIM_KEY_Ybelowdot = 0x1ef4
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ybelowdot = 0x1ef5
│ │ │ │ -, scim::SCIM_KEY_Yhook = 0x1ef6
│ │ │ │ -, scim::SCIM_KEY_yhook = 0x1ef7
│ │ │ │ -, scim::SCIM_KEY_Ytilde = 0x1ef8
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_ytilde = 0x1ef9
│ │ │ │ -, scim::SCIM_KEY_Ohorn = 0x1efa
│ │ │ │ -, scim::SCIM_KEY_ohorn = 0x1efb
│ │ │ │ -, scim::SCIM_KEY_Uhorn = 0x1efc
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_uhorn = 0x1efd
│ │ │ │ -, scim::SCIM_KEY_combining_tilde = 0x1e9f
│ │ │ │ -, scim::SCIM_KEY_combining_grave = 0x1ef2
│ │ │ │ -, scim::SCIM_KEY_combining_acute = 0x1ef3
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_combining_hook = 0x1efe
│ │ │ │ -, scim::SCIM_KEY_combining_belowdot = 0x1eff
│ │ │ │ -, scim::SCIM_KEY_EcuSign = 0x20a0
│ │ │ │ -, scim::SCIM_KEY_ColonSign = 0x20a1
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_CruzeiroSign = 0x20a2
│ │ │ │ -, scim::SCIM_KEY_FFrancSign = 0x20a3
│ │ │ │ -, scim::SCIM_KEY_LiraSign = 0x20a4
│ │ │ │ -, scim::SCIM_KEY_MillSign = 0x20a5
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_NairaSign = 0x20a6
│ │ │ │ -, scim::SCIM_KEY_PesetaSign = 0x20a7
│ │ │ │ -, scim::SCIM_KEY_RupeeSign = 0x20a8
│ │ │ │ -, scim::SCIM_KEY_WonSign = 0x20a9
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEY_NewSheqelSign = 0x20aa
│ │ │ │ -, scim::SCIM_KEY_DongSign = 0x20ab
│ │ │ │ -, scim::SCIM_KEY_EuroSign = 0x20ac
│ │ │ │ -
│ │ │ │ - }
│ │ │ │ - Enum values of all valid key codes. More...
│ │ │ │ -
│ │ │ │ -enum scim::KeyboardLayout {
│ │ │ │ - scim::SCIM_KEYBOARD_Unknown = 0
│ │ │ │ -, scim::SCIM_KEYBOARD_Default = 1
│ │ │ │ -, scim::SCIM_KEYBOARD_US = 1
│ │ │ │ -, scim::SCIM_KEYBOARD_Belgian = 2
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_Croatian = 3
│ │ │ │ -, scim::SCIM_KEYBOARD_Czech = 4
│ │ │ │ -, scim::SCIM_KEYBOARD_Czech_Qwerty = 5
│ │ │ │ -, scim::SCIM_KEYBOARD_Danish = 6
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_Dutch = 7
│ │ │ │ -, scim::SCIM_KEYBOARD_Dvorak = 8
│ │ │ │ -, scim::SCIM_KEYBOARD_Estonian = 9
│ │ │ │ -, scim::SCIM_KEYBOARD_Finnish = 10
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_French = 11
│ │ │ │ -, scim::SCIM_KEYBOARD_French_Canadian = 12
│ │ │ │ -, scim::SCIM_KEYBOARD_French_Switzerland = 13
│ │ │ │ -, scim::SCIM_KEYBOARD_German = 14
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_German_Deadkeys = 15
│ │ │ │ -, scim::SCIM_KEYBOARD_German_Swiss = 16
│ │ │ │ -, scim::SCIM_KEYBOARD_Greek = 17
│ │ │ │ -, scim::SCIM_KEYBOARD_Hungarian = 18
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_Italian = 19
│ │ │ │ -, scim::SCIM_KEYBOARD_Japanese = 20
│ │ │ │ -, scim::SCIM_KEYBOARD_Norwegian = 21
│ │ │ │ -, scim::SCIM_KEYBOARD_Polish = 22
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_Portuguese = 23
│ │ │ │ -, scim::SCIM_KEYBOARD_Portuguese_Brazil = 24
│ │ │ │ -, scim::SCIM_KEYBOARD_Portuguese_Brazil_US_Accents = 25
│ │ │ │ -, scim::SCIM_KEYBOARD_Russian = 26
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_Slovak = 27
│ │ │ │ -, scim::SCIM_KEYBOARD_Slovak_Qwerty = 28
│ │ │ │ -, scim::SCIM_KEYBOARD_Slovene = 29
│ │ │ │ -, scim::SCIM_KEYBOARD_Spanish = 30
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_Spanish_CP850 = 31
│ │ │ │ -, scim::SCIM_KEYBOARD_Spanish_Latin_America = 32
│ │ │ │ -, scim::SCIM_KEYBOARD_Swedish = 33
│ │ │ │ -, scim::SCIM_KEYBOARD_Turkish = 34
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_UK = 35
│ │ │ │ -, scim::SCIM_KEYBOARD_Icelandic = 36
│ │ │ │ -, scim::SCIM_KEYBOARD_Lithuanian = 37
│ │ │ │ -, scim::SCIM_KEYBOARD_Ukrainian = 38
│ │ │ │ -,
│ │ │ │ - scim::SCIM_KEYBOARD_NUM_LAYOUTS = 39
│ │ │ │ -
│ │ │ │ - }
│ │ │ │ - Enum values of all valid Keyboard Layout type. More...
│ │ │ │ -
│ │ │ │ +typedef unsigned int(* scim::HelperModuleNumberOfHelpersFunc ) (void)
│ │ │ │ + Get the number of Helpers in this module. More...
│ │ │ │ +
│ │ │ │ +typedef bool(* scim::HelperModuleGetHelperInfoFunc ) (unsigned int idx, HelperInfo &info)
│ │ │ │ + Get the information of a Helper. More...
│ │ │ │ +
│ │ │ │ +typedef void(* scim::HelperModuleRunHelperFunc ) (const String &uuid, const ConfigPointer &config, const String &display)
│ │ │ │ + Run a specific Helper. More...
│ │ │ │ +
│ │ │ │
│ │ │ │
│ │ │ │ -
Defines the scim::KeyEvent class and related enums, functions.
│ │ │ │ +
Defines scim::HelperModule and it's related types.
│ │ │ │ +
scim::HelperModule is a class used to load Client Helper modules.
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │ ├── html2text {}
│ │ │ │ │ @@ -1,1052 +1,39 @@
│ │ │ │ │
│ │ │ │ │
│ │ │ │ │
│ │ │ │ │
│ │ │ │ │
│ │ │ │ │ scim 1.4.18
│ │ │ │ │
│ │ │ │ │ -Classes | Namespaces | Typedefs | Enumerations | Functions
│ │ │ │ │ -scim_event.h File Reference
│ │ │ │ │ -Defines the scim::KeyEvent class and related enums, functions. More...
│ │ │ │ │ +Classes | Namespaces | Typedefs | Functions
│ │ │ │ │ +scim_helper_module.h File Reference
│ │ │ │ │ +Defines scim::HelperModule and it's related types. More...
│ │ │ │ │ Classes
│ │ │ │ │ -struct scim::KeyEvent
│ │ │ │ │ - The class to store a keyboard event. More...
│ │ │ │ │ +class scim::HelperModule
│ │ │ │ │ + The class used to load a Helper module and run its Helpers. More...
│ │ │ │ │
│ │ │ │ │ Namespaces
│ │ │ │ │ namespace scim
│ │ │ │ │
│ │ │ │ │ Typedefs
│ │ │ │ │ -typedef std::vector< KeyEvent > scim::KeyEventList
│ │ │ │ │ - The container to store a set of KeyEvent
│ │ │ │ │ - objects. More...
│ │ │ │ │ +typedef unsigned int(* scim::HelperModuleNumberOfHelpersFunc) (void)
│ │ │ │ │ + Get the number of Helpers in this module. More...
│ │ │ │ │
│ │ │ │ │ - Enumerations
│ │ │ │ │ -enum scim::KeyMask {
│ │ │ │ │ - scim::SCIM_KEY_NullMask = 0 , scim::SCIM_KEY_ShiftMask = (1<<0) , scim::
│ │ │ │ │ - SCIM_KEY_CapsLockMask = (1<<1) , scim::SCIM_KEY_ControlMask = (1<<2) ,
│ │ │ │ │ - scim::SCIM_KEY_AltMask = (1<<3) , scim::SCIM_KEY_MetaMask = (1<<4) , scim::
│ │ │ │ │ - SCIM_KEY_SuperMask = (1<<5) , scim::SCIM_KEY_HyperMask = (1<<6) ,
│ │ │ │ │ - scim::SCIM_KEY_NumLockMask = (1<<7) , scim::SCIM_KEY_LockMask =
│ │ │ │ │ - SCIM_KEY_CapsLockMask , scim::SCIM_KEY_Mod1Mask = SCIM_KEY_AltMask , scim::
│ │ │ │ │ - SCIM_KEY_Mod2Mask = SCIM_KEY_MetaMask ,
│ │ │ │ │ - scim::SCIM_KEY_Mod3Mask = SCIM_KEY_SuperMask , scim::SCIM_KEY_Mod4Mask =
│ │ │ │ │ - SCIM_KEY_HyperMask , scim::SCIM_KEY_Mod5Mask = SCIM_KEY_NumLockMask , scim::
│ │ │ │ │ - SCIM_KEY_ScrollLockMask = 0 ,
│ │ │ │ │ - scim::SCIM_KEY_QuirkKanaRoMask = (1<<14) , scim::SCIM_KEY_ReleaseMask =
│ │ │ │ │ - (1<<15) , scim::SCIM_KEY_AllMasks = 0xC0FF
│ │ │ │ │ - }
│ │ │ │ │ - Enum values of all valid key masks. More...
│ │ │ │ │ -
│ │ │ │ │ -enum scim::KeyCode {
│ │ │ │ │ - scim::SCIM_KEY_NullKey = 0 , scim::SCIM_KEY_VoidSymbol = 0xFFFFFF , scim::
│ │ │ │ │ - SCIM_KEY_BackSpace = 0xFF08 , scim::SCIM_KEY_Tab = 0xFF09 ,
│ │ │ │ │ - scim::SCIM_KEY_Linefeed = 0xFF0A , scim::SCIM_KEY_Clear = 0xFF0B , scim::
│ │ │ │ │ - SCIM_KEY_Return = 0xFF0D , scim::SCIM_KEY_Pause = 0xFF13 ,
│ │ │ │ │ - scim::SCIM_KEY_Scroll_Lock = 0xFF14 , scim::SCIM_KEY_Sys_Req = 0xFF15 , scim::
│ │ │ │ │ - SCIM_KEY_Escape = 0xFF1B , scim::SCIM_KEY_Delete = 0xFFFF ,
│ │ │ │ │ - scim::SCIM_KEY_Multi_key = 0xFF20 , scim::SCIM_KEY_Codeinput = 0xFF37 , scim::
│ │ │ │ │ - SCIM_KEY_SingleCandidate = 0xFF3C , scim::SCIM_KEY_MultipleCandidate = 0xFF3D ,
│ │ │ │ │ - scim::SCIM_KEY_PreviousCandidate = 0xFF3E , scim::SCIM_KEY_Kanji = 0xFF21 ,
│ │ │ │ │ - scim::SCIM_KEY_Muhenkan = 0xFF22 , scim::SCIM_KEY_Henkan_Mode = 0xFF23 ,
│ │ │ │ │ - scim::SCIM_KEY_Henkan = 0xFF23 , scim::SCIM_KEY_Romaji = 0xFF24 , scim::
│ │ │ │ │ - SCIM_KEY_Hiragana = 0xFF25 , scim::SCIM_KEY_Katakana = 0xFF26 ,
│ │ │ │ │ - scim::SCIM_KEY_Hiragana_Katakana = 0xFF27 , scim::SCIM_KEY_Zenkaku = 0xFF28 ,
│ │ │ │ │ - scim::SCIM_KEY_Hankaku = 0xFF29 , scim::SCIM_KEY_Zenkaku_Hankaku = 0xFF2A ,
│ │ │ │ │ - scim::SCIM_KEY_Touroku = 0xFF2B , scim::SCIM_KEY_Massyo = 0xFF2C , scim::
│ │ │ │ │ - SCIM_KEY_Kana_Lock = 0xFF2D , scim::SCIM_KEY_Kana_Shift = 0xFF2E ,
│ │ │ │ │ - scim::SCIM_KEY_Eisu_Shift = 0xFF2F , scim::SCIM_KEY_Eisu_toggle = 0xFF30 ,
│ │ │ │ │ - scim::SCIM_KEY_Kanji_Bangou = 0xFF37 , scim::SCIM_KEY_Zen_Koho = 0xFF3D ,
│ │ │ │ │ - scim::SCIM_KEY_Mae_Koho = 0xFF3E , scim::SCIM_KEY_Home = 0xFF50 , scim::
│ │ │ │ │ - SCIM_KEY_Left = 0xFF51 , scim::SCIM_KEY_Up = 0xFF52 ,
│ │ │ │ │ - scim::SCIM_KEY_Right = 0xFF53 , scim::SCIM_KEY_Down = 0xFF54 , scim::
│ │ │ │ │ - SCIM_KEY_Prior = 0xFF55 , scim::SCIM_KEY_Page_Up = 0xFF55 ,
│ │ │ │ │ - scim::SCIM_KEY_Next = 0xFF56 , scim::SCIM_KEY_Page_Down = 0xFF56 , scim::
│ │ │ │ │ - SCIM_KEY_End = 0xFF57 , scim::SCIM_KEY_Begin = 0xFF58 ,
│ │ │ │ │ - scim::SCIM_KEY_Select = 0xFF60 , scim::SCIM_KEY_Print = 0xFF61 , scim::
│ │ │ │ │ - SCIM_KEY_Execute = 0xFF62 , scim::SCIM_KEY_Insert = 0xFF63 ,
│ │ │ │ │ - scim::SCIM_KEY_Undo = 0xFF65 , scim::SCIM_KEY_Redo = 0xFF66 , scim::
│ │ │ │ │ - SCIM_KEY_Menu = 0xFF67 , scim::SCIM_KEY_Find = 0xFF68 ,
│ │ │ │ │ - scim::SCIM_KEY_Cancel = 0xFF69 , scim::SCIM_KEY_Help = 0xFF6A , scim::
│ │ │ │ │ - SCIM_KEY_Break = 0xFF6B , scim::SCIM_KEY_Mode_switch = 0xFF7E ,
│ │ │ │ │ - scim::SCIM_KEY_Num_Lock = 0xFF7F , scim::SCIM_KEY_KP_Space = 0xFF80 , scim::
│ │ │ │ │ - SCIM_KEY_KP_Tab = 0xFF89 , scim::SCIM_KEY_KP_Enter = 0xFF8D ,
│ │ │ │ │ - scim::SCIM_KEY_KP_F1 = 0xFF91 , scim::SCIM_KEY_KP_F2 = 0xFF92 , scim::
│ │ │ │ │ - SCIM_KEY_KP_F3 = 0xFF93 , scim::SCIM_KEY_KP_F4 = 0xFF94 ,
│ │ │ │ │ - scim::SCIM_KEY_KP_Home = 0xFF95 , scim::SCIM_KEY_KP_Left = 0xFF96 , scim::
│ │ │ │ │ - SCIM_KEY_KP_Up = 0xFF97 , scim::SCIM_KEY_KP_Right = 0xFF98 ,
│ │ │ │ │ - scim::SCIM_KEY_KP_Down = 0xFF99 , scim::SCIM_KEY_KP_Prior = 0xFF9A , scim::
│ │ │ │ │ - SCIM_KEY_KP_Page_Up = 0xFF9A , scim::SCIM_KEY_KP_Next = 0xFF9B ,
│ │ │ │ │ - scim::SCIM_KEY_KP_Page_Down = 0xFF9B , scim::SCIM_KEY_KP_End = 0xFF9C , scim::
│ │ │ │ │ - SCIM_KEY_KP_Begin = 0xFF9D , scim::SCIM_KEY_KP_Insert = 0xFF9E ,
│ │ │ │ │ - scim::SCIM_KEY_KP_Delete = 0xFF9F , scim::SCIM_KEY_KP_Equal = 0xFFBD , scim::
│ │ │ │ │ - SCIM_KEY_KP_Multiply = 0xFFAA , scim::SCIM_KEY_KP_Add = 0xFFAB ,
│ │ │ │ │ - scim::SCIM_KEY_KP_Separator = 0xFFAC , scim::SCIM_KEY_KP_Subtract = 0xFFAD ,
│ │ │ │ │ - scim::SCIM_KEY_KP_Decimal = 0xFFAE , scim::SCIM_KEY_KP_Divide = 0xFFAF ,
│ │ │ │ │ - scim::SCIM_KEY_KP_0 = 0xFFB0 , scim::SCIM_KEY_KP_1 = 0xFFB1 , scim::
│ │ │ │ │ - SCIM_KEY_KP_2 = 0xFFB2 , scim::SCIM_KEY_KP_3 = 0xFFB3 ,
│ │ │ │ │ - scim::SCIM_KEY_KP_4 = 0xFFB4 , scim::SCIM_KEY_KP_5 = 0xFFB5 , scim::
│ │ │ │ │ - SCIM_KEY_KP_6 = 0xFFB6 , scim::SCIM_KEY_KP_7 = 0xFFB7 ,
│ │ │ │ │ - scim::SCIM_KEY_KP_8 = 0xFFB8 , scim::SCIM_KEY_KP_9 = 0xFFB9 , scim::
│ │ │ │ │ - SCIM_KEY_F1 = 0xFFBE , scim::SCIM_KEY_F2 = 0xFFBF ,
│ │ │ │ │ - scim::SCIM_KEY_F3 = 0xFFC0 , scim::SCIM_KEY_F4 = 0xFFC1 , scim::SCIM_KEY_F5 =
│ │ │ │ │ - 0xFFC2 , scim::SCIM_KEY_F6 = 0xFFC3 ,
│ │ │ │ │ - scim::SCIM_KEY_F7 = 0xFFC4 , scim::SCIM_KEY_F8 = 0xFFC5 , scim::SCIM_KEY_F9 =
│ │ │ │ │ - 0xFFC6 , scim::SCIM_KEY_F10 = 0xFFC7 ,
│ │ │ │ │ - scim::SCIM_KEY_F11 = 0xFFC8 , scim::SCIM_KEY_F12 = 0xFFC9 , scim::SCIM_KEY_F13
│ │ │ │ │ - = 0xFFCA , scim::SCIM_KEY_F14 = 0xFFCB ,
│ │ │ │ │ - scim::SCIM_KEY_F15 = 0xFFCC , scim::SCIM_KEY_F16 = 0xFFCD , scim::SCIM_KEY_F17
│ │ │ │ │ - = 0xFFCE , scim::SCIM_KEY_F18 = 0xFFCF ,
│ │ │ │ │ - scim::SCIM_KEY_F19 = 0xFFD0 , scim::SCIM_KEY_F20 = 0xFFD1 , scim::SCIM_KEY_F21
│ │ │ │ │ - = 0xFFD2 , scim::SCIM_KEY_F22 = 0xFFD3 ,
│ │ │ │ │ - scim::SCIM_KEY_F23 = 0xFFD4 , scim::SCIM_KEY_F24 = 0xFFD5 , scim::SCIM_KEY_F25
│ │ │ │ │ - = 0xFFD6 , scim::SCIM_KEY_F26 = 0xFFD7 ,
│ │ │ │ │ - scim::SCIM_KEY_F27 = 0xFFD8 , scim::SCIM_KEY_F28 = 0xFFD9 , scim::SCIM_KEY_F29
│ │ │ │ │ - = 0xFFDA , scim::SCIM_KEY_F30 = 0xFFDB ,
│ │ │ │ │ - scim::SCIM_KEY_F31 = 0xFFDC , scim::SCIM_KEY_F32 = 0xFFDD , scim::SCIM_KEY_F33
│ │ │ │ │ - = 0xFFDE , scim::SCIM_KEY_F34 = 0xFFDF ,
│ │ │ │ │ - scim::SCIM_KEY_F35 = 0xFFE0 , scim::SCIM_KEY_Shift_L = 0xFFE1 , scim::
│ │ │ │ │ - SCIM_KEY_Shift_R = 0xFFE2 , scim::SCIM_KEY_Control_L = 0xFFE3 ,
│ │ │ │ │ - scim::SCIM_KEY_Control_R = 0xFFE4 , scim::SCIM_KEY_Caps_Lock = 0xFFE5 , scim::
│ │ │ │ │ - SCIM_KEY_Shift_Lock = 0xFFE6 , scim::SCIM_KEY_Meta_L = 0xFFE7 ,
│ │ │ │ │ - scim::SCIM_KEY_Meta_R = 0xFFE8 , scim::SCIM_KEY_Alt_L = 0xFFE9 , scim::
│ │ │ │ │ - SCIM_KEY_Alt_R = 0xFFEA , scim::SCIM_KEY_Super_L = 0xFFEB ,
│ │ │ │ │ - scim::SCIM_KEY_Super_R = 0xFFEC , scim::SCIM_KEY_Hyper_L = 0xFFED , scim::
│ │ │ │ │ - SCIM_KEY_Hyper_R = 0xFFEE , scim::SCIM_KEY_ISO_Lock = 0xFE01 ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Level2_Latch = 0xFE02 , scim::SCIM_KEY_ISO_Level3_Shift =
│ │ │ │ │ - 0xFE03 , scim::SCIM_KEY_ISO_Level3_Latch = 0xFE04 , scim::
│ │ │ │ │ - SCIM_KEY_ISO_Level3_Lock = 0xFE05 ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Group_Shift = 0xFF7E , scim::SCIM_KEY_ISO_Group_Latch =
│ │ │ │ │ - 0xFE06 , scim::SCIM_KEY_ISO_Group_Lock = 0xFE07 , scim::SCIM_KEY_ISO_Next_Group
│ │ │ │ │ - = 0xFE08 ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Next_Group_Lock = 0xFE09 , scim::SCIM_KEY_ISO_Prev_Group =
│ │ │ │ │ - 0xFE0A , scim::SCIM_KEY_ISO_Prev_Group_Lock = 0xFE0B , scim::
│ │ │ │ │ - SCIM_KEY_ISO_First_Group = 0xFE0C ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_First_Group_Lock = 0xFE0D , scim::SCIM_KEY_ISO_Last_Group =
│ │ │ │ │ - 0xFE0E , scim::SCIM_KEY_ISO_Last_Group_Lock = 0xFE0F , scim::
│ │ │ │ │ - SCIM_KEY_ISO_Left_Tab = 0xFE20 ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Move_Line_Up = 0xFE21 , scim::SCIM_KEY_ISO_Move_Line_Down =
│ │ │ │ │ - 0xFE22 , scim::SCIM_KEY_ISO_Partial_Line_Up = 0xFE23 , scim::
│ │ │ │ │ - SCIM_KEY_ISO_Partial_Line_Down = 0xFE24 ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Partial_Space_Left = 0xFE25 , scim::
│ │ │ │ │ - SCIM_KEY_ISO_Partial_Space_Right = 0xFE26 , scim::SCIM_KEY_ISO_Set_Margin_Left =
│ │ │ │ │ - 0xFE27 , scim::SCIM_KEY_ISO_Set_Margin_Right = 0xFE28 ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Release_Margin_Left = 0xFE29 , scim::
│ │ │ │ │ - SCIM_KEY_ISO_Release_Margin_Right = 0xFE2A , scim::
│ │ │ │ │ - SCIM_KEY_ISO_Release_Both_Margins = 0xFE2B , scim::SCIM_KEY_ISO_Fast_Cursor_Left
│ │ │ │ │ - = 0xFE2C ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Fast_Cursor_Right = 0xFE2D , scim::
│ │ │ │ │ - SCIM_KEY_ISO_Fast_Cursor_Up = 0xFE2E , scim::SCIM_KEY_ISO_Fast_Cursor_Down =
│ │ │ │ │ - 0xFE2F , scim::SCIM_KEY_ISO_Continuous_Underline = 0xFE30 ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Discontinuous_Underline = 0xFE31 , scim::
│ │ │ │ │ - SCIM_KEY_ISO_Emphasize = 0xFE32 , scim::SCIM_KEY_ISO_Center_Object = 0xFE33 ,
│ │ │ │ │ - scim::SCIM_KEY_ISO_Enter = 0xFE34 ,
│ │ │ │ │ - scim::SCIM_KEY_dead_grave = 0xFE50 , scim::SCIM_KEY_dead_acute = 0xFE51 ,
│ │ │ │ │ - scim::SCIM_KEY_dead_circumflex = 0xFE52 , scim::SCIM_KEY_dead_tilde = 0xFE53 ,
│ │ │ │ │ - scim::SCIM_KEY_dead_macron = 0xFE54 , scim::SCIM_KEY_dead_breve = 0xFE55 ,
│ │ │ │ │ - scim::SCIM_KEY_dead_abovedot = 0xFE56 , scim::SCIM_KEY_dead_diaeresis = 0xFE57 ,
│ │ │ │ │ -
│ │ │ │ │ - scim::SCIM_KEY_dead_abovering = 0xFE58 , scim::SCIM_KEY_dead_doubleacute =
│ │ │ │ │ - 0xFE59 , scim::SCIM_KEY_dead_caron = 0xFE5A , scim::SCIM_KEY_dead_cedilla =
│ │ │ │ │ - 0xFE5B ,
│ │ │ │ │ - scim::SCIM_KEY_dead_ogonek = 0xFE5C , scim::SCIM_KEY_dead_iota = 0xFE5D ,
│ │ │ │ │ - scim::SCIM_KEY_dead_voiced_sound = 0xFE5E , scim::SCIM_KEY_dead_semivoiced_sound
│ │ │ │ │ - = 0xFE5F ,
│ │ │ │ │ - scim::SCIM_KEY_dead_belowdot = 0xFE60 , scim::SCIM_KEY_dead_hook = 0xFE61 ,
│ │ │ │ │ - scim::SCIM_KEY_dead_horn = 0xFE62 , scim::SCIM_KEY_First_Virtual_Screen = 0xFED0
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_Prev_Virtual_Screen = 0xFED1 , scim::
│ │ │ │ │ - SCIM_KEY_Next_Virtual_Screen = 0xFED2 , scim::SCIM_KEY_Last_Virtual_Screen =
│ │ │ │ │ - 0xFED4 , scim::SCIM_KEY_Terminate_Server = 0xFED5 ,
│ │ │ │ │ - scim::SCIM_KEY_AccessX_Enable = 0xFE70 , scim::
│ │ │ │ │ - SCIM_KEY_AccessX_Feedback_Enable = 0xFE71 , scim::SCIM_KEY_RepeatKeys_Enable =
│ │ │ │ │ - 0xFE72 , scim::SCIM_KEY_SlowKeys_Enable = 0xFE73 ,
│ │ │ │ │ - scim::SCIM_KEY_BounceKeys_Enable = 0xFE74 , scim::SCIM_KEY_StickyKeys_Enable =
│ │ │ │ │ - 0xFE75 , scim::SCIM_KEY_MouseKeys_Enable = 0xFE76 , scim::
│ │ │ │ │ - SCIM_KEY_MouseKeys_Accel_Enable = 0xFE77 ,
│ │ │ │ │ - scim::SCIM_KEY_Overlay1_Enable = 0xFE78 , scim::SCIM_KEY_Overlay2_Enable =
│ │ │ │ │ - 0xFE79 , scim::SCIM_KEY_AudibleBell_Enable = 0xFE7A , scim::
│ │ │ │ │ - SCIM_KEY_Pointer_Left = 0xFEE0 ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_Right = 0xFEE1 , scim::SCIM_KEY_Pointer_Up = 0xFEE2 ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_Down = 0xFEE3 , scim::SCIM_KEY_Pointer_UpLeft = 0xFEE4 ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_UpRight = 0xFEE5 , scim::SCIM_KEY_Pointer_DownLeft =
│ │ │ │ │ - 0xFEE6 , scim::SCIM_KEY_Pointer_DownRight = 0xFEE7 , scim::
│ │ │ │ │ - SCIM_KEY_Pointer_Button_Dflt = 0xFEE8 ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_Button1 = 0xFEE9 , scim::SCIM_KEY_Pointer_Button2 =
│ │ │ │ │ - 0xFEEA , scim::SCIM_KEY_Pointer_Button3 = 0xFEEB , scim::
│ │ │ │ │ - SCIM_KEY_Pointer_Button4 = 0xFEEC ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_Button5 = 0xFEED , scim::SCIM_KEY_Pointer_DblClick_Dflt
│ │ │ │ │ - = 0xFEEE , scim::SCIM_KEY_Pointer_DblClick1 = 0xFEEF , scim::
│ │ │ │ │ - SCIM_KEY_Pointer_DblClick2 = 0xFEF0 ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_DblClick3 = 0xFEF1 , scim::SCIM_KEY_Pointer_DblClick4 =
│ │ │ │ │ - 0xFEF2 , scim::SCIM_KEY_Pointer_DblClick5 = 0xFEF3 , scim::
│ │ │ │ │ - SCIM_KEY_Pointer_Drag_Dflt = 0xFEF4 ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_Drag1 = 0xFEF5 , scim::SCIM_KEY_Pointer_Drag2 = 0xFEF6
│ │ │ │ │ - , scim::SCIM_KEY_Pointer_Drag3 = 0xFEF7 , scim::SCIM_KEY_Pointer_Drag4 = 0xFEF8
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_Drag5 = 0xFEFD , scim::SCIM_KEY_Pointer_EnableKeys =
│ │ │ │ │ - 0xFEF9 , scim::SCIM_KEY_Pointer_Accelerate = 0xFEFA , scim::
│ │ │ │ │ - SCIM_KEY_Pointer_DfltBtnNext = 0xFEFB ,
│ │ │ │ │ - scim::SCIM_KEY_Pointer_DfltBtnPrev = 0xFEFC , scim::SCIM_KEY_3270_Duplicate =
│ │ │ │ │ - 0xFD01 , scim::SCIM_KEY_3270_FieldMark = 0xFD02 , scim::SCIM_KEY_3270_Right2 =
│ │ │ │ │ - 0xFD03 ,
│ │ │ │ │ - scim::SCIM_KEY_3270_Left2 = 0xFD04 , scim::SCIM_KEY_3270_BackTab = 0xFD05 ,
│ │ │ │ │ - scim::SCIM_KEY_3270_EraseEOF = 0xFD06 , scim::SCIM_KEY_3270_EraseInput = 0xFD07
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_3270_Reset = 0xFD08 , scim::SCIM_KEY_3270_Quit = 0xFD09 ,
│ │ │ │ │ - scim::SCIM_KEY_3270_PA1 = 0xFD0A , scim::SCIM_KEY_3270_PA2 = 0xFD0B ,
│ │ │ │ │ - scim::SCIM_KEY_3270_PA3 = 0xFD0C , scim::SCIM_KEY_3270_Test = 0xFD0D , scim::
│ │ │ │ │ - SCIM_KEY_3270_Attn = 0xFD0E , scim::SCIM_KEY_3270_CursorBlink = 0xFD0F ,
│ │ │ │ │ - scim::SCIM_KEY_3270_AltCursor = 0xFD10 , scim::SCIM_KEY_3270_KeyClick = 0xFD11
│ │ │ │ │ - , scim::SCIM_KEY_3270_Jump = 0xFD12 , scim::SCIM_KEY_3270_Ident = 0xFD13 ,
│ │ │ │ │ - scim::SCIM_KEY_3270_Rule = 0xFD14 , scim::SCIM_KEY_3270_Copy = 0xFD15 , scim::
│ │ │ │ │ - SCIM_KEY_3270_Play = 0xFD16 , scim::SCIM_KEY_3270_Setup = 0xFD17 ,
│ │ │ │ │ - scim::SCIM_KEY_3270_Record = 0xFD18 , scim::SCIM_KEY_3270_ChangeScreen =
│ │ │ │ │ - 0xFD19 , scim::SCIM_KEY_3270_DeleteWord = 0xFD1A , scim::SCIM_KEY_3270_ExSelect
│ │ │ │ │ - = 0xFD1B ,
│ │ │ │ │ - scim::SCIM_KEY_3270_CursorSelect = 0xFD1C , scim::SCIM_KEY_3270_PrintScreen =
│ │ │ │ │ - 0xFD1D , scim::SCIM_KEY_3270_Enter = 0xFD1E , scim::SCIM_KEY_space = 0x020 ,
│ │ │ │ │ - scim::SCIM_KEY_exclam = 0x021 , scim::SCIM_KEY_quotedbl = 0x022 , scim::
│ │ │ │ │ - SCIM_KEY_numbersign = 0x023 , scim::SCIM_KEY_dollar = 0x024 ,
│ │ │ │ │ - scim::SCIM_KEY_percent = 0x025 , scim::SCIM_KEY_ampersand = 0x026 , scim::
│ │ │ │ │ - SCIM_KEY_apostrophe = 0x027 , scim::SCIM_KEY_quoteright = 0x027 ,
│ │ │ │ │ - scim::SCIM_KEY_parenleft = 0x028 , scim::SCIM_KEY_parenright = 0x029 , scim::
│ │ │ │ │ - SCIM_KEY_asterisk = 0x02a , scim::SCIM_KEY_plus = 0x02b ,
│ │ │ │ │ - scim::SCIM_KEY_comma = 0x02c , scim::SCIM_KEY_minus = 0x02d , scim::
│ │ │ │ │ - SCIM_KEY_period = 0x02e , scim::SCIM_KEY_slash = 0x02f ,
│ │ │ │ │ - scim::SCIM_KEY_0 = 0x030 , scim::SCIM_KEY_1 = 0x031 , scim::SCIM_KEY_2 = 0x032
│ │ │ │ │ - , scim::SCIM_KEY_3 = 0x033 ,
│ │ │ │ │ - scim::SCIM_KEY_4 = 0x034 , scim::SCIM_KEY_5 = 0x035 , scim::SCIM_KEY_6 = 0x036
│ │ │ │ │ - , scim::SCIM_KEY_7 = 0x037 ,
│ │ │ │ │ - scim::SCIM_KEY_8 = 0x038 , scim::SCIM_KEY_9 = 0x039 , scim::SCIM_KEY_colon =
│ │ │ │ │ - 0x03a , scim::SCIM_KEY_semicolon = 0x03b ,
│ │ │ │ │ - scim::SCIM_KEY_less = 0x03c , scim::SCIM_KEY_equal = 0x03d , scim::
│ │ │ │ │ - SCIM_KEY_greater = 0x03e , scim::SCIM_KEY_question = 0x03f ,
│ │ │ │ │ - scim::SCIM_KEY_at = 0x040 , scim::SCIM_KEY_A = 0x041 , scim::SCIM_KEY_B =
│ │ │ │ │ - 0x042 , scim::SCIM_KEY_C = 0x043 ,
│ │ │ │ │ - scim::SCIM_KEY_D = 0x044 , scim::SCIM_KEY_E = 0x045 , scim::SCIM_KEY_F = 0x046
│ │ │ │ │ - , scim::SCIM_KEY_G = 0x047 ,
│ │ │ │ │ - scim::SCIM_KEY_H = 0x048 , scim::SCIM_KEY_I = 0x049 , scim::SCIM_KEY_J = 0x04a
│ │ │ │ │ - , scim::SCIM_KEY_K = 0x04b ,
│ │ │ │ │ - scim::SCIM_KEY_L = 0x04c , scim::SCIM_KEY_M = 0x04d , scim::SCIM_KEY_N = 0x04e
│ │ │ │ │ - , scim::SCIM_KEY_O = 0x04f ,
│ │ │ │ │ - scim::SCIM_KEY_P = 0x050 , scim::SCIM_KEY_Q = 0x051 , scim::SCIM_KEY_R = 0x052
│ │ │ │ │ - , scim::SCIM_KEY_S = 0x053 ,
│ │ │ │ │ - scim::SCIM_KEY_T = 0x054 , scim::SCIM_KEY_U = 0x055 , scim::SCIM_KEY_V = 0x056
│ │ │ │ │ - , scim::SCIM_KEY_W = 0x057 ,
│ │ │ │ │ - scim::SCIM_KEY_X = 0x058 , scim::SCIM_KEY_Y = 0x059 , scim::SCIM_KEY_Z = 0x05a
│ │ │ │ │ - , scim::SCIM_KEY_bracketleft = 0x05b ,
│ │ │ │ │ - scim::SCIM_KEY_backslash = 0x05c , scim::SCIM_KEY_bracketright = 0x05d ,
│ │ │ │ │ - scim::SCIM_KEY_asciicircum = 0x05e , scim::SCIM_KEY_underscore = 0x05f ,
│ │ │ │ │ - scim::SCIM_KEY_grave = 0x060 , scim::SCIM_KEY_a = 0x061 , scim::SCIM_KEY_b =
│ │ │ │ │ - 0x062 , scim::SCIM_KEY_c = 0x063 ,
│ │ │ │ │ - scim::SCIM_KEY_d = 0x064 , scim::SCIM_KEY_e = 0x065 , scim::SCIM_KEY_f = 0x066
│ │ │ │ │ - , scim::SCIM_KEY_g = 0x067 ,
│ │ │ │ │ - scim::SCIM_KEY_h = 0x068 , scim::SCIM_KEY_i = 0x069 , scim::SCIM_KEY_j = 0x06a
│ │ │ │ │ - , scim::SCIM_KEY_k = 0x06b ,
│ │ │ │ │ - scim::SCIM_KEY_l = 0x06c , scim::SCIM_KEY_m = 0x06d , scim::SCIM_KEY_n = 0x06e
│ │ │ │ │ - , scim::SCIM_KEY_o = 0x06f ,
│ │ │ │ │ - scim::SCIM_KEY_p = 0x070 , scim::SCIM_KEY_q = 0x071 , scim::SCIM_KEY_r = 0x072
│ │ │ │ │ - , scim::SCIM_KEY_s = 0x073 ,
│ │ │ │ │ - scim::SCIM_KEY_t = 0x074 , scim::SCIM_KEY_u = 0x075 , scim::SCIM_KEY_v = 0x076
│ │ │ │ │ - , scim::SCIM_KEY_w = 0x077 ,
│ │ │ │ │ - scim::SCIM_KEY_x = 0x078 , scim::SCIM_KEY_y = 0x079 , scim::SCIM_KEY_z = 0x07a
│ │ │ │ │ - , scim::SCIM_KEY_braceleft = 0x07b ,
│ │ │ │ │ - scim::SCIM_KEY_bar = 0x07c , scim::SCIM_KEY_braceright = 0x07d , scim::
│ │ │ │ │ - SCIM_KEY_asciitilde = 0x07e , scim::SCIM_KEY_nobreakspace = 0x0a0 ,
│ │ │ │ │ - scim::SCIM_KEY_exclamdown = 0x0a1 , scim::SCIM_KEY_cent = 0x0a2 , scim::
│ │ │ │ │ - SCIM_KEY_sterling = 0x0a3 , scim::SCIM_KEY_currency = 0x0a4 ,
│ │ │ │ │ - scim::SCIM_KEY_yen = 0x0a5 , scim::SCIM_KEY_brokenbar = 0x0a6 , scim::
│ │ │ │ │ - SCIM_KEY_section = 0x0a7 , scim::SCIM_KEY_diaeresis = 0x0a8 ,
│ │ │ │ │ - scim::SCIM_KEY_copyright = 0x0a9 , scim::SCIM_KEY_ordfeminine = 0x0aa , scim::
│ │ │ │ │ - SCIM_KEY_guillemotleft = 0x0ab , scim::SCIM_KEY_notsign = 0x0ac ,
│ │ │ │ │ - scim::SCIM_KEY_hyphen = 0x0ad , scim::SCIM_KEY_registered = 0x0ae , scim::
│ │ │ │ │ - SCIM_KEY_macron = 0x0af , scim::SCIM_KEY_degree = 0x0b0 ,
│ │ │ │ │ - scim::SCIM_KEY_plusminus = 0x0b1 , scim::SCIM_KEY_twosuperior = 0x0b2 , scim::
│ │ │ │ │ - SCIM_KEY_threesuperior = 0x0b3 , scim::SCIM_KEY_acute = 0x0b4 ,
│ │ │ │ │ - scim::SCIM_KEY_mu = 0x0b5 , scim::SCIM_KEY_paragraph = 0x0b6 , scim::
│ │ │ │ │ - SCIM_KEY_periodcentered = 0x0b7 , scim::SCIM_KEY_cedilla = 0x0b8 ,
│ │ │ │ │ - scim::SCIM_KEY_onesuperior = 0x0b9 , scim::SCIM_KEY_masculine = 0x0ba , scim::
│ │ │ │ │ - SCIM_KEY_guillemotright = 0x0bb , scim::SCIM_KEY_onequarter = 0x0bc ,
│ │ │ │ │ - scim::SCIM_KEY_onehalf = 0x0bd , scim::SCIM_KEY_threequarters = 0x0be , scim::
│ │ │ │ │ - SCIM_KEY_questiondown = 0x0bf , scim::SCIM_KEY_Agrave = 0x0c0 ,
│ │ │ │ │ - scim::SCIM_KEY_Aacute = 0x0c1 , scim::SCIM_KEY_Acircumflex = 0x0c2 , scim::
│ │ │ │ │ - SCIM_KEY_Atilde = 0x0c3 , scim::SCIM_KEY_Adiaeresis = 0x0c4 ,
│ │ │ │ │ - scim::SCIM_KEY_Aring = 0x0c5 , scim::SCIM_KEY_AE = 0x0c6 , scim::
│ │ │ │ │ - SCIM_KEY_Ccedilla = 0x0c7 , scim::SCIM_KEY_Egrave = 0x0c8 ,
│ │ │ │ │ - scim::SCIM_KEY_Eacute = 0x0c9 , scim::SCIM_KEY_Ecircumflex = 0x0ca , scim::
│ │ │ │ │ - SCIM_KEY_Ediaeresis = 0x0cb , scim::SCIM_KEY_Igrave = 0x0cc ,
│ │ │ │ │ - scim::SCIM_KEY_Iacute = 0x0cd , scim::SCIM_KEY_Icircumflex = 0x0ce , scim::
│ │ │ │ │ - SCIM_KEY_Idiaeresis = 0x0cf , scim::SCIM_KEY_ETH = 0x0d0 ,
│ │ │ │ │ - scim::SCIM_KEY_Eth = 0x0d0 , scim::SCIM_KEY_Ntilde = 0x0d1 , scim::
│ │ │ │ │ - SCIM_KEY_Ograve = 0x0d2 , scim::SCIM_KEY_Oacute = 0x0d3 ,
│ │ │ │ │ - scim::SCIM_KEY_Ocircumflex = 0x0d4 , scim::SCIM_KEY_Otilde = 0x0d5 , scim::
│ │ │ │ │ - SCIM_KEY_Odiaeresis = 0x0d6 , scim::SCIM_KEY_multiply = 0x0d7 ,
│ │ │ │ │ - scim::SCIM_KEY_Ooblique = 0x0d8 , scim::SCIM_KEY_Oslash = SCIM_KEY_Ooblique ,
│ │ │ │ │ - scim::SCIM_KEY_Ugrave = 0x0d9 , scim::SCIM_KEY_Uacute = 0x0da ,
│ │ │ │ │ - scim::SCIM_KEY_Ucircumflex = 0x0db , scim::SCIM_KEY_Udiaeresis = 0x0dc ,
│ │ │ │ │ - scim::SCIM_KEY_Yacute = 0x0dd , scim::SCIM_KEY_THORN = 0x0de ,
│ │ │ │ │ - scim::SCIM_KEY_Thorn = 0x0de , scim::SCIM_KEY_ssharp = 0x0df , scim::
│ │ │ │ │ - SCIM_KEY_agrave = 0x0e0 , scim::SCIM_KEY_aacute = 0x0e1 ,
│ │ │ │ │ - scim::SCIM_KEY_acircumflex = 0x0e2 , scim::SCIM_KEY_atilde = 0x0e3 , scim::
│ │ │ │ │ - SCIM_KEY_adiaeresis = 0x0e4 , scim::SCIM_KEY_aring = 0x0e5 ,
│ │ │ │ │ - scim::SCIM_KEY_ae = 0x0e6 , scim::SCIM_KEY_ccedilla = 0x0e7 , scim::
│ │ │ │ │ - SCIM_KEY_egrave = 0x0e8 , scim::SCIM_KEY_eacute = 0x0e9 ,
│ │ │ │ │ - scim::SCIM_KEY_ecircumflex = 0x0ea , scim::SCIM_KEY_ediaeresis = 0x0eb ,
│ │ │ │ │ - scim::SCIM_KEY_igrave = 0x0ec , scim::SCIM_KEY_iacute = 0x0ed ,
│ │ │ │ │ - scim::SCIM_KEY_icircumflex = 0x0ee , scim::SCIM_KEY_idiaeresis = 0x0ef ,
│ │ │ │ │ - scim::SCIM_KEY_eth = 0x0f0 , scim::SCIM_KEY_ntilde = 0x0f1 ,
│ │ │ │ │ - scim::SCIM_KEY_ograve = 0x0f2 , scim::SCIM_KEY_oacute = 0x0f3 , scim::
│ │ │ │ │ - SCIM_KEY_ocircumflex = 0x0f4 , scim::SCIM_KEY_otilde = 0x0f5 ,
│ │ │ │ │ - scim::SCIM_KEY_odiaeresis = 0x0f6 , scim::SCIM_KEY_division = 0x0f7 , scim::
│ │ │ │ │ - SCIM_KEY_oslash = 0x0f8 , scim::SCIM_KEY_ooblique = SCIM_KEY_oslash ,
│ │ │ │ │ - scim::SCIM_KEY_ugrave = 0x0f9 , scim::SCIM_KEY_uacute = 0x0fa , scim::
│ │ │ │ │ - SCIM_KEY_ucircumflex = 0x0fb , scim::SCIM_KEY_udiaeresis = 0x0fc ,
│ │ │ │ │ - scim::SCIM_KEY_yacute = 0x0fd , scim::SCIM_KEY_thorn = 0x0fe , scim::
│ │ │ │ │ - SCIM_KEY_ydiaeresis = 0x0ff , scim::SCIM_KEY_Aogonek = 0x1a1 ,
│ │ │ │ │ - scim::SCIM_KEY_breve = 0x1a2 , scim::SCIM_KEY_Lstroke = 0x1a3 , scim::
│ │ │ │ │ - SCIM_KEY_Lcaron = 0x1a5 , scim::SCIM_KEY_Sacute = 0x1a6 ,
│ │ │ │ │ - scim::SCIM_KEY_Scaron = 0x1a9 , scim::SCIM_KEY_Scedilla = 0x1aa , scim::
│ │ │ │ │ - SCIM_KEY_Tcaron = 0x1ab , scim::SCIM_KEY_Zacute = 0x1ac ,
│ │ │ │ │ - scim::SCIM_KEY_Zcaron = 0x1ae , scim::SCIM_KEY_Zabovedot = 0x1af , scim::
│ │ │ │ │ - SCIM_KEY_aogonek = 0x1b1 , scim::SCIM_KEY_ogonek = 0x1b2 ,
│ │ │ │ │ - scim::SCIM_KEY_lstroke = 0x1b3 , scim::SCIM_KEY_lcaron = 0x1b5 , scim::
│ │ │ │ │ - SCIM_KEY_sacute = 0x1b6 , scim::SCIM_KEY_caron = 0x1b7 ,
│ │ │ │ │ - scim::SCIM_KEY_scaron = 0x1b9 , scim::SCIM_KEY_scedilla = 0x1ba , scim::
│ │ │ │ │ - SCIM_KEY_tcaron = 0x1bb , scim::SCIM_KEY_zacute = 0x1bc ,
│ │ │ │ │ - scim::SCIM_KEY_doubleacute = 0x1bd , scim::SCIM_KEY_zcaron = 0x1be , scim::
│ │ │ │ │ - SCIM_KEY_zabovedot = 0x1bf , scim::SCIM_KEY_Racute = 0x1c0 ,
│ │ │ │ │ - scim::SCIM_KEY_Abreve = 0x1c3 , scim::SCIM_KEY_Lacute = 0x1c5 , scim::
│ │ │ │ │ - SCIM_KEY_Cacute = 0x1c6 , scim::SCIM_KEY_Ccaron = 0x1c8 ,
│ │ │ │ │ - scim::SCIM_KEY_Eogonek = 0x1ca , scim::SCIM_KEY_Ecaron = 0x1cc , scim::
│ │ │ │ │ - SCIM_KEY_Dcaron = 0x1cf , scim::SCIM_KEY_Dstroke = 0x1d0 ,
│ │ │ │ │ - scim::SCIM_KEY_Nacute = 0x1d1 , scim::SCIM_KEY_Ncaron = 0x1d2 , scim::
│ │ │ │ │ - SCIM_KEY_Odoubleacute = 0x1d5 , scim::SCIM_KEY_Rcaron = 0x1d8 ,
│ │ │ │ │ - scim::SCIM_KEY_Uring = 0x1d9 , scim::SCIM_KEY_Udoubleacute = 0x1db , scim::
│ │ │ │ │ - SCIM_KEY_Tcedilla = 0x1de , scim::SCIM_KEY_racute = 0x1e0 ,
│ │ │ │ │ - scim::SCIM_KEY_abreve = 0x1e3 , scim::SCIM_KEY_lacute = 0x1e5 , scim::
│ │ │ │ │ - SCIM_KEY_cacute = 0x1e6 , scim::SCIM_KEY_ccaron = 0x1e8 ,
│ │ │ │ │ - scim::SCIM_KEY_eogonek = 0x1ea , scim::SCIM_KEY_ecaron = 0x1ec , scim::
│ │ │ │ │ - SCIM_KEY_dcaron = 0x1ef , scim::SCIM_KEY_dstroke = 0x1f0 ,
│ │ │ │ │ - scim::SCIM_KEY_nacute = 0x1f1 , scim::SCIM_KEY_ncaron = 0x1f2 , scim::
│ │ │ │ │ - SCIM_KEY_odoubleacute = 0x1f5 , scim::SCIM_KEY_udoubleacute = 0x1fb ,
│ │ │ │ │ - scim::SCIM_KEY_rcaron = 0x1f8 , scim::SCIM_KEY_uring = 0x1f9 , scim::
│ │ │ │ │ - SCIM_KEY_tcedilla = 0x1fe , scim::SCIM_KEY_abovedot = 0x1ff ,
│ │ │ │ │ - scim::SCIM_KEY_Hstroke = 0x2a1 , scim::SCIM_KEY_Hcircumflex = 0x2a6 , scim::
│ │ │ │ │ - SCIM_KEY_Iabovedot = 0x2a9 , scim::SCIM_KEY_Gbreve = 0x2ab ,
│ │ │ │ │ - scim::SCIM_KEY_Jcircumflex = 0x2ac , scim::SCIM_KEY_hstroke = 0x2b1 , scim::
│ │ │ │ │ - SCIM_KEY_hcircumflex = 0x2b6 , scim::SCIM_KEY_idotless = 0x2b9 ,
│ │ │ │ │ - scim::SCIM_KEY_gbreve = 0x2bb , scim::SCIM_KEY_jcircumflex = 0x2bc , scim::
│ │ │ │ │ - SCIM_KEY_Cabovedot = 0x2c5 , scim::SCIM_KEY_Ccircumflex = 0x2c6 ,
│ │ │ │ │ - scim::SCIM_KEY_Gabovedot = 0x2d5 , scim::SCIM_KEY_Gcircumflex = 0x2d8 , scim::
│ │ │ │ │ - SCIM_KEY_Ubreve = 0x2dd , scim::SCIM_KEY_Scircumflex = 0x2de ,
│ │ │ │ │ - scim::SCIM_KEY_cabovedot = 0x2e5 , scim::SCIM_KEY_ccircumflex = 0x2e6 , scim::
│ │ │ │ │ - SCIM_KEY_gabovedot = 0x2f5 , scim::SCIM_KEY_gcircumflex = 0x2f8 ,
│ │ │ │ │ - scim::SCIM_KEY_ubreve = 0x2fd , scim::SCIM_KEY_scircumflex = 0x2fe , scim::
│ │ │ │ │ - SCIM_KEY_kra = 0x3a2 , scim::SCIM_KEY_kappa = 0x3a2 ,
│ │ │ │ │ - scim::SCIM_KEY_Rcedilla = 0x3a3 , scim::SCIM_KEY_Itilde = 0x3a5 , scim::
│ │ │ │ │ - SCIM_KEY_Lcedilla = 0x3a6 , scim::SCIM_KEY_Emacron = 0x3aa ,
│ │ │ │ │ - scim::SCIM_KEY_Gcedilla = 0x3ab , scim::SCIM_KEY_Tslash = 0x3ac , scim::
│ │ │ │ │ - SCIM_KEY_rcedilla = 0x3b3 , scim::SCIM_KEY_itilde = 0x3b5 ,
│ │ │ │ │ - scim::SCIM_KEY_lcedilla = 0x3b6 , scim::SCIM_KEY_emacron = 0x3ba , scim::
│ │ │ │ │ - SCIM_KEY_gcedilla = 0x3bb , scim::SCIM_KEY_tslash = 0x3bc ,
│ │ │ │ │ - scim::SCIM_KEY_ENG = 0x3bd , scim::SCIM_KEY_eng = 0x3bf , scim::
│ │ │ │ │ - SCIM_KEY_Amacron = 0x3c0 , scim::SCIM_KEY_Iogonek = 0x3c7 ,
│ │ │ │ │ - scim::SCIM_KEY_Eabovedot = 0x3cc , scim::SCIM_KEY_Imacron = 0x3cf , scim::
│ │ │ │ │ - SCIM_KEY_Ncedilla = 0x3d1 , scim::SCIM_KEY_Omacron = 0x3d2 ,
│ │ │ │ │ - scim::SCIM_KEY_Kcedilla = 0x3d3 , scim::SCIM_KEY_Uogonek = 0x3d9 , scim::
│ │ │ │ │ - SCIM_KEY_Utilde = 0x3dd , scim::SCIM_KEY_Umacron = 0x3de ,
│ │ │ │ │ - scim::SCIM_KEY_amacron = 0x3e0 , scim::SCIM_KEY_iogonek = 0x3e7 , scim::
│ │ │ │ │ - SCIM_KEY_eabovedot = 0x3ec , scim::SCIM_KEY_imacron = 0x3ef ,
│ │ │ │ │ - scim::SCIM_KEY_ncedilla = 0x3f1 , scim::SCIM_KEY_omacron = 0x3f2 , scim::
│ │ │ │ │ - SCIM_KEY_kcedilla = 0x3f3 , scim::SCIM_KEY_uogonek = 0x3f9 ,
│ │ │ │ │ - scim::SCIM_KEY_utilde = 0x3fd , scim::SCIM_KEY_umacron = 0x3fe , scim::
│ │ │ │ │ - SCIM_KEY_Babovedot = 0x12a1 , scim::SCIM_KEY_babovedot = 0x12a2 ,
│ │ │ │ │ - scim::SCIM_KEY_Dabovedot = 0x12a6 , scim::SCIM_KEY_Wgrave = 0x12a8 , scim::
│ │ │ │ │ - SCIM_KEY_Wacute = 0x12aa , scim::SCIM_KEY_dabovedot = 0x12ab ,
│ │ │ │ │ - scim::SCIM_KEY_Ygrave = 0x12ac , scim::SCIM_KEY_Fabovedot = 0x12b0 , scim::
│ │ │ │ │ - SCIM_KEY_fabovedot = 0x12b1 , scim::SCIM_KEY_Mabovedot = 0x12b4 ,
│ │ │ │ │ - scim::SCIM_KEY_mabovedot = 0x12b5 , scim::SCIM_KEY_Pabovedot = 0x12b7 , scim::
│ │ │ │ │ - SCIM_KEY_wgrave = 0x12b8 , scim::SCIM_KEY_pabovedot = 0x12b9 ,
│ │ │ │ │ - scim::SCIM_KEY_wacute = 0x12ba , scim::SCIM_KEY_Sabovedot = 0x12bb , scim::
│ │ │ │ │ - SCIM_KEY_ygrave = 0x12bc , scim::SCIM_KEY_Wdiaeresis = 0x12bd ,
│ │ │ │ │ - scim::SCIM_KEY_wdiaeresis = 0x12be , scim::SCIM_KEY_sabovedot = 0x12bf ,
│ │ │ │ │ - scim::SCIM_KEY_Wcircumflex = 0x12d0 , scim::SCIM_KEY_Tabovedot = 0x12d7 ,
│ │ │ │ │ - scim::SCIM_KEY_Ycircumflex = 0x12de , scim::SCIM_KEY_wcircumflex = 0x12f0 ,
│ │ │ │ │ - scim::SCIM_KEY_tabovedot = 0x12f7 , scim::SCIM_KEY_ycircumflex = 0x12fe ,
│ │ │ │ │ - scim::SCIM_KEY_OE = 0x13bc , scim::SCIM_KEY_oe = 0x13bd , scim::
│ │ │ │ │ - SCIM_KEY_Ydiaeresis = 0x13be , scim::SCIM_KEY_overline = 0x47e ,
│ │ │ │ │ - scim::SCIM_KEY_kana_fullstop = 0x4a1 , scim::SCIM_KEY_kana_openingbracket =
│ │ │ │ │ - 0x4a2 , scim::SCIM_KEY_kana_closingbracket = 0x4a3 , scim::SCIM_KEY_kana_comma =
│ │ │ │ │ - 0x4a4 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_conjunctive = 0x4a5 , scim::SCIM_KEY_kana_middledot =
│ │ │ │ │ - 0x4a5 , scim::SCIM_KEY_kana_WO = 0x4a6 , scim::SCIM_KEY_kana_a = 0x4a7 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_i = 0x4a8 , scim::SCIM_KEY_kana_u = 0x4a9 , scim::
│ │ │ │ │ - SCIM_KEY_kana_e = 0x4aa , scim::SCIM_KEY_kana_o = 0x4ab ,
│ │ │ │ │ - scim::SCIM_KEY_kana_ya = 0x4ac , scim::SCIM_KEY_kana_yu = 0x4ad , scim::
│ │ │ │ │ - SCIM_KEY_kana_yo = 0x4ae , scim::SCIM_KEY_kana_tsu = 0x4af ,
│ │ │ │ │ - scim::SCIM_KEY_kana_tu = 0x4af , scim::SCIM_KEY_prolongedsound = 0x4b0 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_A = 0x4b1 , scim::SCIM_KEY_kana_I = 0x4b2 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_U = 0x4b3 , scim::SCIM_KEY_kana_E = 0x4b4 , scim::
│ │ │ │ │ - SCIM_KEY_kana_O = 0x4b5 , scim::SCIM_KEY_kana_KA = 0x4b6 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_KI = 0x4b7 , scim::SCIM_KEY_kana_KU = 0x4b8 , scim::
│ │ │ │ │ - SCIM_KEY_kana_KE = 0x4b9 , scim::SCIM_KEY_kana_KO = 0x4ba ,
│ │ │ │ │ - scim::SCIM_KEY_kana_SA = 0x4bb , scim::SCIM_KEY_kana_SHI = 0x4bc , scim::
│ │ │ │ │ - SCIM_KEY_kana_SU = 0x4bd , scim::SCIM_KEY_kana_SE = 0x4be ,
│ │ │ │ │ - scim::SCIM_KEY_kana_SO = 0x4bf , scim::SCIM_KEY_kana_TA = 0x4c0 , scim::
│ │ │ │ │ - SCIM_KEY_kana_CHI = 0x4c1 , scim::SCIM_KEY_kana_TI = 0x4c1 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_TSU = 0x4c2 , scim::SCIM_KEY_kana_TU = 0x4c2 , scim::
│ │ │ │ │ - SCIM_KEY_kana_TE = 0x4c3 , scim::SCIM_KEY_kana_TO = 0x4c4 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_NA = 0x4c5 , scim::SCIM_KEY_kana_NI = 0x4c6 , scim::
│ │ │ │ │ - SCIM_KEY_kana_NU = 0x4c7 , scim::SCIM_KEY_kana_NE = 0x4c8 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_NO = 0x4c9 , scim::SCIM_KEY_kana_HA = 0x4ca , scim::
│ │ │ │ │ - SCIM_KEY_kana_HI = 0x4cb , scim::SCIM_KEY_kana_FU = 0x4cc ,
│ │ │ │ │ - scim::SCIM_KEY_kana_HU = 0x4cc , scim::SCIM_KEY_kana_HE = 0x4cd , scim::
│ │ │ │ │ - SCIM_KEY_kana_HO = 0x4ce , scim::SCIM_KEY_kana_MA = 0x4cf ,
│ │ │ │ │ - scim::SCIM_KEY_kana_MI = 0x4d0 , scim::SCIM_KEY_kana_MU = 0x4d1 , scim::
│ │ │ │ │ - SCIM_KEY_kana_ME = 0x4d2 , scim::SCIM_KEY_kana_MO = 0x4d3 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_YA = 0x4d4 , scim::SCIM_KEY_kana_YU = 0x4d5 , scim::
│ │ │ │ │ - SCIM_KEY_kana_YO = 0x4d6 , scim::SCIM_KEY_kana_RA = 0x4d7 ,
│ │ │ │ │ - scim::SCIM_KEY_kana_RI = 0x4d8 , scim::SCIM_KEY_kana_RU = 0x4d9 , scim::
│ │ │ │ │ - SCIM_KEY_kana_RE = 0x4da , scim::SCIM_KEY_kana_RO = 0x4db ,
│ │ │ │ │ - scim::SCIM_KEY_kana_WA = 0x4dc , scim::SCIM_KEY_kana_N = 0x4dd , scim::
│ │ │ │ │ - SCIM_KEY_voicedsound = 0x4de , scim::SCIM_KEY_semivoicedsound = 0x4df ,
│ │ │ │ │ - scim::SCIM_KEY_kana_switch = 0xFF7E , scim::SCIM_KEY_Farsi_0 = 0x590 , scim::
│ │ │ │ │ - SCIM_KEY_Farsi_1 = 0x591 , scim::SCIM_KEY_Farsi_2 = 0x592 ,
│ │ │ │ │ - scim::SCIM_KEY_Farsi_3 = 0x593 , scim::SCIM_KEY_Farsi_4 = 0x594 , scim::
│ │ │ │ │ - SCIM_KEY_Farsi_5 = 0x595 , scim::SCIM_KEY_Farsi_6 = 0x596 ,
│ │ │ │ │ - scim::SCIM_KEY_Farsi_7 = 0x597 , scim::SCIM_KEY_Farsi_8 = 0x598 , scim::
│ │ │ │ │ - SCIM_KEY_Farsi_9 = 0x599 , scim::SCIM_KEY_Arabic_percent = 0x5a5 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_superscript_alef = 0x5a6 , scim::SCIM_KEY_Arabic_tteh =
│ │ │ │ │ - 0x5a7 , scim::SCIM_KEY_Arabic_peh = 0x5a8 , scim::SCIM_KEY_Arabic_tcheh = 0x5a9
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_ddal = 0x5aa , scim::SCIM_KEY_Arabic_rreh = 0x5ab ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_comma = 0x5ac , scim::SCIM_KEY_Arabic_fullstop = 0x5ae ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_0 = 0x5b0 , scim::SCIM_KEY_Arabic_1 = 0x5b1 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_2 = 0x5b2 , scim::SCIM_KEY_Arabic_3 = 0x5b3 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_4 = 0x5b4 , scim::SCIM_KEY_Arabic_5 = 0x5b5 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_6 = 0x5b6 , scim::SCIM_KEY_Arabic_7 = 0x5b7 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_8 = 0x5b8 , scim::SCIM_KEY_Arabic_9 = 0x5b9 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_semicolon = 0x5bb , scim::SCIM_KEY_Arabic_question_mark = 0x5bf
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_hamza = 0x5c1 , scim::SCIM_KEY_Arabic_maddaonalef =
│ │ │ │ │ - 0x5c2 , scim::SCIM_KEY_Arabic_hamzaonalef = 0x5c3 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_hamzaonwaw = 0x5c4 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_hamzaunderalef = 0x5c5 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_hamzaonyeh = 0x5c6 , scim::SCIM_KEY_Arabic_alef = 0x5c7 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_beh = 0x5c8 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_tehmarbuta = 0x5c9 , scim::SCIM_KEY_Arabic_teh = 0x5ca ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_theh = 0x5cb , scim::SCIM_KEY_Arabic_jeem = 0x5cc ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_hah = 0x5cd , scim::SCIM_KEY_Arabic_khah = 0x5ce ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_dal = 0x5cf , scim::SCIM_KEY_Arabic_thal = 0x5d0 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_ra = 0x5d1 , scim::SCIM_KEY_Arabic_zain = 0x5d2 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_seen = 0x5d3 , scim::SCIM_KEY_Arabic_sheen = 0x5d4 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_sad = 0x5d5 , scim::SCIM_KEY_Arabic_dad = 0x5d6 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_tah = 0x5d7 , scim::SCIM_KEY_Arabic_zah = 0x5d8 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_ain = 0x5d9 , scim::SCIM_KEY_Arabic_ghain = 0x5da ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_tatweel = 0x5e0 , scim::SCIM_KEY_Arabic_feh = 0x5e1 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_qaf = 0x5e2 , scim::SCIM_KEY_Arabic_kaf = 0x5e3 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_lam = 0x5e4 , scim::SCIM_KEY_Arabic_meem = 0x5e5 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_noon = 0x5e6 , scim::SCIM_KEY_Arabic_ha = 0x5e7 , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_heh = 0x5e7 , scim::SCIM_KEY_Arabic_waw = 0x5e8 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_alefmaksura = 0x5e9 , scim::SCIM_KEY_Arabic_yeh = 0x5ea
│ │ │ │ │ - , scim::SCIM_KEY_Arabic_fathatan = 0x5eb , scim::SCIM_KEY_Arabic_dammatan =
│ │ │ │ │ - 0x5ec ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_kasratan = 0x5ed , scim::SCIM_KEY_Arabic_fatha = 0x5ee ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_damma = 0x5ef , scim::SCIM_KEY_Arabic_kasra = 0x5f0 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_shadda = 0x5f1 , scim::SCIM_KEY_Arabic_sukun = 0x5f2 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_madda_above = 0x5f3 , scim::SCIM_KEY_Arabic_hamza_above =
│ │ │ │ │ - 0x5f4 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_hamza_below = 0x5f5 , scim::SCIM_KEY_Arabic_jeh = 0x5f6
│ │ │ │ │ - , scim::SCIM_KEY_Arabic_veh = 0x5f7 , scim::SCIM_KEY_Arabic_keheh = 0x5f8 ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_gaf = 0x5f9 , scim::SCIM_KEY_Arabic_noon_ghunna = 0x5fa
│ │ │ │ │ - , scim::SCIM_KEY_Arabic_heh_doachashmee = 0x5fb , scim::SCIM_KEY_Farsi_yeh =
│ │ │ │ │ - 0x5fc ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_farsi_yeh = SCIM_KEY_Farsi_yeh , scim::
│ │ │ │ │ - SCIM_KEY_Arabic_yeh_baree = 0x5fd , scim::SCIM_KEY_Arabic_heh_goal = 0x5fe ,
│ │ │ │ │ - scim::SCIM_KEY_Arabic_switch = 0xFF7E ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_GHE_bar = 0x680 , scim::SCIM_KEY_Cyrillic_ghe_bar =
│ │ │ │ │ - 0x690 , scim::SCIM_KEY_Cyrillic_ZHE_descender = 0x681 , scim::
│ │ │ │ │ - SCIM_KEY_Cyrillic_zhe_descender = 0x691 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_KA_descender = 0x682 , scim::
│ │ │ │ │ - SCIM_KEY_Cyrillic_ka_descender = 0x692 , scim::SCIM_KEY_Cyrillic_KA_vertstroke =
│ │ │ │ │ - 0x683 , scim::SCIM_KEY_Cyrillic_ka_vertstroke = 0x693 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_EN_descender = 0x684 , scim::
│ │ │ │ │ - SCIM_KEY_Cyrillic_en_descender = 0x694 , scim::SCIM_KEY_Cyrillic_U_straight =
│ │ │ │ │ - 0x685 , scim::SCIM_KEY_Cyrillic_u_straight = 0x695 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_U_straight_bar = 0x686 , scim::
│ │ │ │ │ - SCIM_KEY_Cyrillic_u_straight_bar = 0x696 , scim::SCIM_KEY_Cyrillic_HA_descender
│ │ │ │ │ - = 0x687 , scim::SCIM_KEY_Cyrillic_ha_descender = 0x697 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_CHE_descender = 0x688 , scim::
│ │ │ │ │ - SCIM_KEY_Cyrillic_che_descender = 0x698 , scim::SCIM_KEY_Cyrillic_CHE_vertstroke
│ │ │ │ │ - = 0x689 , scim::SCIM_KEY_Cyrillic_che_vertstroke = 0x699 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_SHHA = 0x68a , scim::SCIM_KEY_Cyrillic_shha = 0x69a ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_SCHWA = 0x68c , scim::SCIM_KEY_Cyrillic_schwa = 0x69c ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_I_macron = 0x68d , scim::SCIM_KEY_Cyrillic_i_macron =
│ │ │ │ │ - 0x69d , scim::SCIM_KEY_Cyrillic_O_bar = 0x68e , scim::SCIM_KEY_Cyrillic_o_bar =
│ │ │ │ │ - 0x69e ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_U_macron = 0x68f , scim::SCIM_KEY_Cyrillic_u_macron =
│ │ │ │ │ - 0x69f , scim::SCIM_KEY_Serbian_dje = 0x6a1 , scim::SCIM_KEY_Macedonia_gje =
│ │ │ │ │ - 0x6a2 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_io = 0x6a3 , scim::SCIM_KEY_Ukrainian_ie = 0x6a4 ,
│ │ │ │ │ - scim::SCIM_KEY_Ukranian_je = 0x6a4 , scim::SCIM_KEY_Macedonia_dse = 0x6a5 ,
│ │ │ │ │ - scim::SCIM_KEY_Ukrainian_i = 0x6a6 , scim::SCIM_KEY_Ukranian_i = 0x6a6 ,
│ │ │ │ │ - scim::SCIM_KEY_Ukrainian_yi = 0x6a7 , scim::SCIM_KEY_Ukranian_yi = 0x6a7 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_je = 0x6a8 , scim::SCIM_KEY_Serbian_je = 0x6a8 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_lje = 0x6a9 , scim::SCIM_KEY_Serbian_lje = 0x6a9 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_nje = 0x6aa , scim::SCIM_KEY_Serbian_nje = 0x6aa ,
│ │ │ │ │ - scim::SCIM_KEY_Serbian_tshe = 0x6ab , scim::SCIM_KEY_Macedonia_kje = 0x6ac ,
│ │ │ │ │ - scim::SCIM_KEY_Ukrainian_ghe_with_upturn = 0x6ad , scim::
│ │ │ │ │ - SCIM_KEY_Byelorussian_shortu = 0x6ae , scim::SCIM_KEY_Cyrillic_dzhe = 0x6af ,
│ │ │ │ │ - scim::SCIM_KEY_Serbian_dze = 0x6af ,
│ │ │ │ │ - scim::SCIM_KEY_numerosign = 0x6b0 , scim::SCIM_KEY_Serbian_DJE = 0x6b1 ,
│ │ │ │ │ - scim::SCIM_KEY_Macedonia_GJE = 0x6b2 , scim::SCIM_KEY_Cyrillic_IO = 0x6b3 ,
│ │ │ │ │ - scim::SCIM_KEY_Ukrainian_IE = 0x6b4 , scim::SCIM_KEY_Ukranian_JE = 0x6b4 ,
│ │ │ │ │ - scim::SCIM_KEY_Macedonia_DSE = 0x6b5 , scim::SCIM_KEY_Ukrainian_I = 0x6b6 ,
│ │ │ │ │ - scim::SCIM_KEY_Ukranian_I = 0x6b6 , scim::SCIM_KEY_Ukrainian_YI = 0x6b7 ,
│ │ │ │ │ - scim::SCIM_KEY_Ukranian_YI = 0x6b7 , scim::SCIM_KEY_Cyrillic_JE = 0x6b8 ,
│ │ │ │ │ - scim::SCIM_KEY_Serbian_JE = 0x6b8 , scim::SCIM_KEY_Cyrillic_LJE = 0x6b9 ,
│ │ │ │ │ - scim::SCIM_KEY_Serbian_LJE = 0x6b9 , scim::SCIM_KEY_Cyrillic_NJE = 0x6ba ,
│ │ │ │ │ - scim::SCIM_KEY_Serbian_NJE = 0x6ba , scim::SCIM_KEY_Serbian_TSHE = 0x6bb ,
│ │ │ │ │ - scim::SCIM_KEY_Macedonia_KJE = 0x6bc , scim::SCIM_KEY_Ukrainian_GHE_WITH_UPTURN
│ │ │ │ │ - = 0x6bd ,
│ │ │ │ │ - scim::SCIM_KEY_Byelorussian_SHORTU = 0x6be , scim::SCIM_KEY_Cyrillic_DZHE =
│ │ │ │ │ - 0x6bf , scim::SCIM_KEY_Serbian_DZE = 0x6bf , scim::SCIM_KEY_Cyrillic_yu = 0x6c0
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_a = 0x6c1 , scim::SCIM_KEY_Cyrillic_be = 0x6c2 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_tse = 0x6c3 , scim::SCIM_KEY_Cyrillic_de = 0x6c4 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_ie = 0x6c5 , scim::SCIM_KEY_Cyrillic_ef = 0x6c6 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_ghe = 0x6c7 , scim::SCIM_KEY_Cyrillic_ha = 0x6c8 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_i = 0x6c9 , scim::SCIM_KEY_Cyrillic_shorti = 0x6ca ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_ka = 0x6cb , scim::SCIM_KEY_Cyrillic_el = 0x6cc ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_em = 0x6cd , scim::SCIM_KEY_Cyrillic_en = 0x6ce ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_o = 0x6cf , scim::SCIM_KEY_Cyrillic_pe = 0x6d0 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_ya = 0x6d1 , scim::SCIM_KEY_Cyrillic_er = 0x6d2 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_es = 0x6d3 , scim::SCIM_KEY_Cyrillic_te = 0x6d4 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_u = 0x6d5 , scim::SCIM_KEY_Cyrillic_zhe = 0x6d6 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_ve = 0x6d7 , scim::SCIM_KEY_Cyrillic_softsign = 0x6d8 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_yeru = 0x6d9 , scim::SCIM_KEY_Cyrillic_ze = 0x6da ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_sha = 0x6db , scim::SCIM_KEY_Cyrillic_e = 0x6dc ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_shcha = 0x6dd , scim::SCIM_KEY_Cyrillic_che = 0x6de ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_hardsign = 0x6df , scim::SCIM_KEY_Cyrillic_YU = 0x6e0 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_A = 0x6e1 , scim::SCIM_KEY_Cyrillic_BE = 0x6e2 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_TSE = 0x6e3 , scim::SCIM_KEY_Cyrillic_DE = 0x6e4 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_IE = 0x6e5 , scim::SCIM_KEY_Cyrillic_EF = 0x6e6 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_GHE = 0x6e7 , scim::SCIM_KEY_Cyrillic_HA = 0x6e8 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_I = 0x6e9 , scim::SCIM_KEY_Cyrillic_SHORTI = 0x6ea ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_KA = 0x6eb , scim::SCIM_KEY_Cyrillic_EL = 0x6ec ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_EM = 0x6ed , scim::SCIM_KEY_Cyrillic_EN = 0x6ee ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_O = 0x6ef , scim::SCIM_KEY_Cyrillic_PE = 0x6f0 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_YA = 0x6f1 , scim::SCIM_KEY_Cyrillic_ER = 0x6f2 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_ES = 0x6f3 , scim::SCIM_KEY_Cyrillic_TE = 0x6f4 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_U = 0x6f5 , scim::SCIM_KEY_Cyrillic_ZHE = 0x6f6 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_VE = 0x6f7 , scim::SCIM_KEY_Cyrillic_SOFTSIGN = 0x6f8 ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_YERU = 0x6f9 , scim::SCIM_KEY_Cyrillic_ZE = 0x6fa ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_SHA = 0x6fb , scim::SCIM_KEY_Cyrillic_E = 0x6fc ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_SHCHA = 0x6fd , scim::SCIM_KEY_Cyrillic_CHE = 0x6fe ,
│ │ │ │ │ - scim::SCIM_KEY_Cyrillic_HARDSIGN = 0x6ff , scim::SCIM_KEY_Greek_ALPHAaccent =
│ │ │ │ │ - 0x7a1 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_EPSILONaccent = 0x7a2 , scim::SCIM_KEY_Greek_ETAaccent =
│ │ │ │ │ - 0x7a3 , scim::SCIM_KEY_Greek_IOTAaccent = 0x7a4 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_IOTAdieresis = 0x7a5 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_IOTAdiaeresis = SCIM_KEY_Greek_IOTAdieresis , scim::
│ │ │ │ │ - SCIM_KEY_Greek_OMICRONaccent = 0x7a7 , scim::SCIM_KEY_Greek_UPSILONaccent =
│ │ │ │ │ - 0x7a8 , scim::SCIM_KEY_Greek_UPSILONdieresis = 0x7a9 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_OMEGAaccent = 0x7ab , scim::SCIM_KEY_Greek_accentdieresis
│ │ │ │ │ - = 0x7ae , scim::SCIM_KEY_Greek_horizbar = 0x7af , scim::
│ │ │ │ │ - SCIM_KEY_Greek_alphaaccent = 0x7b1 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_epsilonaccent = 0x7b2 , scim::SCIM_KEY_Greek_etaaccent =
│ │ │ │ │ - 0x7b3 , scim::SCIM_KEY_Greek_iotaaccent = 0x7b4 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_iotadieresis = 0x7b5 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_iotaaccentdieresis = 0x7b6 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_omicronaccent = 0x7b7 , scim::SCIM_KEY_Greek_upsilonaccent =
│ │ │ │ │ - 0x7b8 , scim::SCIM_KEY_Greek_upsilondieresis = 0x7b9 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_upsilonaccentdieresis = 0x7ba , scim::
│ │ │ │ │ - SCIM_KEY_Greek_omegaaccent = 0x7bb , scim::SCIM_KEY_Greek_ALPHA = 0x7c1 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_BETA = 0x7c2 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_GAMMA = 0x7c3 , scim::SCIM_KEY_Greek_DELTA = 0x7c4 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_EPSILON = 0x7c5 , scim::SCIM_KEY_Greek_ZETA = 0x7c6 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_ETA = 0x7c7 , scim::SCIM_KEY_Greek_THETA = 0x7c8 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_IOTA = 0x7c9 , scim::SCIM_KEY_Greek_KAPPA = 0x7ca ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_LAMDA = 0x7cb , scim::SCIM_KEY_Greek_LAMBDA = 0x7cb ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_MU = 0x7cc , scim::SCIM_KEY_Greek_NU = 0x7cd ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_XI = 0x7ce , scim::SCIM_KEY_Greek_OMICRON = 0x7cf ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_PI = 0x7d0 , scim::SCIM_KEY_Greek_RHO = 0x7d1 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_SIGMA = 0x7d2 , scim::SCIM_KEY_Greek_TAU = 0x7d4 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_UPSILON = 0x7d5 , scim::SCIM_KEY_Greek_PHI = 0x7d6 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_CHI = 0x7d7 , scim::SCIM_KEY_Greek_PSI = 0x7d8 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_OMEGA = 0x7d9 , scim::SCIM_KEY_Greek_alpha = 0x7e1 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_beta = 0x7e2 , scim::SCIM_KEY_Greek_gamma = 0x7e3 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_delta = 0x7e4 , scim::SCIM_KEY_Greek_epsilon = 0x7e5 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_zeta = 0x7e6 , scim::SCIM_KEY_Greek_eta = 0x7e7 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_theta = 0x7e8 , scim::SCIM_KEY_Greek_iota = 0x7e9 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_kappa = 0x7ea , scim::SCIM_KEY_Greek_lamda = 0x7eb ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_lambda = 0x7eb , scim::SCIM_KEY_Greek_mu = 0x7ec ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_nu = 0x7ed , scim::SCIM_KEY_Greek_xi = 0x7ee , scim::
│ │ │ │ │ - SCIM_KEY_Greek_omicron = 0x7ef , scim::SCIM_KEY_Greek_pi = 0x7f0 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_rho = 0x7f1 , scim::SCIM_KEY_Greek_sigma = 0x7f2 , scim::
│ │ │ │ │ - SCIM_KEY_Greek_finalsmallsigma = 0x7f3 , scim::SCIM_KEY_Greek_tau = 0x7f4 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_upsilon = 0x7f5 , scim::SCIM_KEY_Greek_phi = 0x7f6 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_chi = 0x7f7 , scim::SCIM_KEY_Greek_psi = 0x7f8 ,
│ │ │ │ │ - scim::SCIM_KEY_Greek_omega = 0x7f9 , scim::SCIM_KEY_Greek_switch = 0xFF7E ,
│ │ │ │ │ - scim::SCIM_KEY_leftradical = 0x8a1 , scim::SCIM_KEY_topleftradical = 0x8a2 ,
│ │ │ │ │ - scim::SCIM_KEY_horizconnector = 0x8a3 , scim::SCIM_KEY_topintegral = 0x8a4 ,
│ │ │ │ │ - scim::SCIM_KEY_botintegral = 0x8a5 , scim::SCIM_KEY_vertconnector = 0x8a6 ,
│ │ │ │ │ - scim::SCIM_KEY_topleftsqbracket = 0x8a7 , scim::SCIM_KEY_botleftsqbracket =
│ │ │ │ │ - 0x8a8 , scim::SCIM_KEY_toprightsqbracket = 0x8a9 , scim::
│ │ │ │ │ - SCIM_KEY_botrightsqbracket = 0x8aa ,
│ │ │ │ │ - scim::SCIM_KEY_topleftparens = 0x8ab , scim::SCIM_KEY_botleftparens = 0x8ac ,
│ │ │ │ │ - scim::SCIM_KEY_toprightparens = 0x8ad , scim::SCIM_KEY_botrightparens = 0x8ae ,
│ │ │ │ │ - scim::SCIM_KEY_leftmiddlecurlybrace = 0x8af , scim::
│ │ │ │ │ - SCIM_KEY_rightmiddlecurlybrace = 0x8b0 , scim::SCIM_KEY_topleftsummation = 0x8b1
│ │ │ │ │ - , scim::SCIM_KEY_botleftsummation = 0x8b2 ,
│ │ │ │ │ - scim::SCIM_KEY_topvertsummationconnector = 0x8b3 , scim::
│ │ │ │ │ - SCIM_KEY_botvertsummationconnector = 0x8b4 , scim::SCIM_KEY_toprightsummation =
│ │ │ │ │ - 0x8b5 , scim::SCIM_KEY_botrightsummation = 0x8b6 ,
│ │ │ │ │ - scim::SCIM_KEY_rightmiddlesummation = 0x8b7 , scim::SCIM_KEY_lessthanequal =
│ │ │ │ │ - 0x8bc , scim::SCIM_KEY_notequal = 0x8bd , scim::SCIM_KEY_greaterthanequal =
│ │ │ │ │ - 0x8be ,
│ │ │ │ │ - scim::SCIM_KEY_integral = 0x8bf , scim::SCIM_KEY_therefore = 0x8c0 , scim::
│ │ │ │ │ - SCIM_KEY_variation = 0x8c1 , scim::SCIM_KEY_infinity = 0x8c2 ,
│ │ │ │ │ - scim::SCIM_KEY_nabla = 0x8c5 , scim::SCIM_KEY_approximate = 0x8c8 , scim::
│ │ │ │ │ - SCIM_KEY_similarequal = 0x8c9 , scim::SCIM_KEY_ifonlyif = 0x8cd ,
│ │ │ │ │ - scim::SCIM_KEY_implies = 0x8ce , scim::SCIM_KEY_identical = 0x8cf , scim::
│ │ │ │ │ - SCIM_KEY_radical = 0x8d6 , scim::SCIM_KEY_includedin = 0x8da ,
│ │ │ │ │ - scim::SCIM_KEY_includes = 0x8db , scim::SCIM_KEY_intersection = 0x8dc , scim::
│ │ │ │ │ - SCIM_KEY_union = 0x8dd , scim::SCIM_KEY_logicaland = 0x8de ,
│ │ │ │ │ - scim::SCIM_KEY_logicalor = 0x8df , scim::SCIM_KEY_partialderivative = 0x8ef ,
│ │ │ │ │ - scim::SCIM_KEY_function = 0x8f6 , scim::SCIM_KEY_leftarrow = 0x8fb ,
│ │ │ │ │ - scim::SCIM_KEY_uparrow = 0x8fc , scim::SCIM_KEY_rightarrow = 0x8fd , scim::
│ │ │ │ │ - SCIM_KEY_downarrow = 0x8fe , scim::SCIM_KEY_blank = 0x9df ,
│ │ │ │ │ - scim::SCIM_KEY_soliddiamond = 0x9e0 , scim::SCIM_KEY_checkerboard = 0x9e1 ,
│ │ │ │ │ - scim::SCIM_KEY_ht = 0x9e2 , scim::SCIM_KEY_ff = 0x9e3 ,
│ │ │ │ │ - scim::SCIM_KEY_cr = 0x9e4 , scim::SCIM_KEY_lf = 0x9e5 , scim::SCIM_KEY_nl =
│ │ │ │ │ - 0x9e8 , scim::SCIM_KEY_vt = 0x9e9 ,
│ │ │ │ │ - scim::SCIM_KEY_lowrightcorner = 0x9ea , scim::SCIM_KEY_uprightcorner = 0x9eb ,
│ │ │ │ │ - scim::SCIM_KEY_upleftcorner = 0x9ec , scim::SCIM_KEY_lowleftcorner = 0x9ed ,
│ │ │ │ │ - scim::SCIM_KEY_crossinglines = 0x9ee , scim::SCIM_KEY_horizlinescan1 = 0x9ef ,
│ │ │ │ │ - scim::SCIM_KEY_horizlinescan3 = 0x9f0 , scim::SCIM_KEY_horizlinescan5 = 0x9f1 ,
│ │ │ │ │ - scim::SCIM_KEY_horizlinescan7 = 0x9f2 , scim::SCIM_KEY_horizlinescan9 = 0x9f3
│ │ │ │ │ - , scim::SCIM_KEY_leftt = 0x9f4 , scim::SCIM_KEY_rightt = 0x9f5 ,
│ │ │ │ │ - scim::SCIM_KEY_bott = 0x9f6 , scim::SCIM_KEY_topt = 0x9f7 , scim::
│ │ │ │ │ - SCIM_KEY_vertbar = 0x9f8 , scim::SCIM_KEY_emspace = 0xaa1 ,
│ │ │ │ │ - scim::SCIM_KEY_enspace = 0xaa2 , scim::SCIM_KEY_em3space = 0xaa3 , scim::
│ │ │ │ │ - SCIM_KEY_em4space = 0xaa4 , scim::SCIM_KEY_digitspace = 0xaa5 ,
│ │ │ │ │ - scim::SCIM_KEY_punctspace = 0xaa6 , scim::SCIM_KEY_thinspace = 0xaa7 , scim::
│ │ │ │ │ - SCIM_KEY_hairspace = 0xaa8 , scim::SCIM_KEY_emdash = 0xaa9 ,
│ │ │ │ │ - scim::SCIM_KEY_endash = 0xaaa , scim::SCIM_KEY_signifblank = 0xaac , scim::
│ │ │ │ │ - SCIM_KEY_ellipsis = 0xaae , scim::SCIM_KEY_doubbaselinedot = 0xaaf ,
│ │ │ │ │ - scim::SCIM_KEY_onethird = 0xab0 , scim::SCIM_KEY_twothirds = 0xab1 , scim::
│ │ │ │ │ - SCIM_KEY_onefifth = 0xab2 , scim::SCIM_KEY_twofifths = 0xab3 ,
│ │ │ │ │ - scim::SCIM_KEY_threefifths = 0xab4 , scim::SCIM_KEY_fourfifths = 0xab5 ,
│ │ │ │ │ - scim::SCIM_KEY_onesixth = 0xab6 , scim::SCIM_KEY_fivesixths = 0xab7 ,
│ │ │ │ │ - scim::SCIM_KEY_careof = 0xab8 , scim::SCIM_KEY_figdash = 0xabb , scim::
│ │ │ │ │ - SCIM_KEY_leftanglebracket = 0xabc , scim::SCIM_KEY_decimalpoint = 0xabd ,
│ │ │ │ │ - scim::SCIM_KEY_rightanglebracket = 0xabe , scim::SCIM_KEY_marker = 0xabf ,
│ │ │ │ │ - scim::SCIM_KEY_oneeighth = 0xac3 , scim::SCIM_KEY_threeeighths = 0xac4 ,
│ │ │ │ │ - scim::SCIM_KEY_fiveeighths = 0xac5 , scim::SCIM_KEY_seveneighths = 0xac6 ,
│ │ │ │ │ - scim::SCIM_KEY_trademark = 0xac9 , scim::SCIM_KEY_signaturemark = 0xaca ,
│ │ │ │ │ - scim::SCIM_KEY_trademarkincircle = 0xacb , scim::SCIM_KEY_leftopentriangle =
│ │ │ │ │ - 0xacc , scim::SCIM_KEY_rightopentriangle = 0xacd , scim::SCIM_KEY_emopencircle =
│ │ │ │ │ - 0xace ,
│ │ │ │ │ - scim::SCIM_KEY_emopenrectangle = 0xacf , scim::SCIM_KEY_leftsinglequotemark =
│ │ │ │ │ - 0xad0 , scim::SCIM_KEY_rightsinglequotemark = 0xad1 , scim::
│ │ │ │ │ - SCIM_KEY_leftdoublequotemark = 0xad2 ,
│ │ │ │ │ - scim::SCIM_KEY_rightdoublequotemark = 0xad3 , scim::SCIM_KEY_prescription =
│ │ │ │ │ - 0xad4 , scim::SCIM_KEY_minutes = 0xad6 , scim::SCIM_KEY_seconds = 0xad7 ,
│ │ │ │ │ - scim::SCIM_KEY_latincross = 0xad9 , scim::SCIM_KEY_hexagram = 0xada , scim::
│ │ │ │ │ - SCIM_KEY_filledrectbullet = 0xadb , scim::SCIM_KEY_filledlefttribullet = 0xadc ,
│ │ │ │ │ -
│ │ │ │ │ - scim::SCIM_KEY_filledrighttribullet = 0xadd , scim::SCIM_KEY_emfilledcircle =
│ │ │ │ │ - 0xade , scim::SCIM_KEY_emfilledrect = 0xadf , scim::SCIM_KEY_enopencircbullet =
│ │ │ │ │ - 0xae0 ,
│ │ │ │ │ - scim::SCIM_KEY_enopensquarebullet = 0xae1 , scim::SCIM_KEY_openrectbullet =
│ │ │ │ │ - 0xae2 , scim::SCIM_KEY_opentribulletup = 0xae3 , scim::
│ │ │ │ │ - SCIM_KEY_opentribulletdown = 0xae4 ,
│ │ │ │ │ - scim::SCIM_KEY_openstar = 0xae5 , scim::SCIM_KEY_enfilledcircbullet = 0xae6 ,
│ │ │ │ │ - scim::SCIM_KEY_enfilledsqbullet = 0xae7 , scim::SCIM_KEY_filledtribulletup =
│ │ │ │ │ - 0xae8 ,
│ │ │ │ │ - scim::SCIM_KEY_filledtribulletdown = 0xae9 , scim::SCIM_KEY_leftpointer =
│ │ │ │ │ - 0xaea , scim::SCIM_KEY_rightpointer = 0xaeb , scim::SCIM_KEY_club = 0xaec ,
│ │ │ │ │ - scim::SCIM_KEY_diamond = 0xaed , scim::SCIM_KEY_heart = 0xaee , scim::
│ │ │ │ │ - SCIM_KEY_maltesecross = 0xaf0 , scim::SCIM_KEY_dagger = 0xaf1 ,
│ │ │ │ │ - scim::SCIM_KEY_doubledagger = 0xaf2 , scim::SCIM_KEY_checkmark = 0xaf3 ,
│ │ │ │ │ - scim::SCIM_KEY_ballotcross = 0xaf4 , scim::SCIM_KEY_musicalsharp = 0xaf5 ,
│ │ │ │ │ - scim::SCIM_KEY_musicalflat = 0xaf6 , scim::SCIM_KEY_malesymbol = 0xaf7 ,
│ │ │ │ │ - scim::SCIM_KEY_femalesymbol = 0xaf8 , scim::SCIM_KEY_telephone = 0xaf9 ,
│ │ │ │ │ - scim::SCIM_KEY_telephonerecorder = 0xafa , scim::SCIM_KEY_phonographcopyright
│ │ │ │ │ - = 0xafb , scim::SCIM_KEY_caret = 0xafc , scim::SCIM_KEY_singlelowquotemark =
│ │ │ │ │ - 0xafd ,
│ │ │ │ │ - scim::SCIM_KEY_doublelowquotemark = 0xafe , scim::SCIM_KEY_cursor = 0xaff ,
│ │ │ │ │ - scim::SCIM_KEY_leftcaret = 0xba3 , scim::SCIM_KEY_rightcaret = 0xba6 ,
│ │ │ │ │ - scim::SCIM_KEY_downcaret = 0xba8 , scim::SCIM_KEY_upcaret = 0xba9 , scim::
│ │ │ │ │ - SCIM_KEY_overbar = 0xbc0 , scim::SCIM_KEY_downtack = 0xbc2 ,
│ │ │ │ │ - scim::SCIM_KEY_upshoe = 0xbc3 , scim::SCIM_KEY_downstile = 0xbc4 , scim::
│ │ │ │ │ - SCIM_KEY_underbar = 0xbc6 , scim::SCIM_KEY_jot = 0xbca ,
│ │ │ │ │ - scim::SCIM_KEY_quad = 0xbcc , scim::SCIM_KEY_uptack = 0xbce , scim::
│ │ │ │ │ - SCIM_KEY_circle = 0xbcf , scim::SCIM_KEY_upstile = 0xbd3 ,
│ │ │ │ │ - scim::SCIM_KEY_downshoe = 0xbd6 , scim::SCIM_KEY_rightshoe = 0xbd8 , scim::
│ │ │ │ │ - SCIM_KEY_leftshoe = 0xbda , scim::SCIM_KEY_lefttack = 0xbdc ,
│ │ │ │ │ - scim::SCIM_KEY_righttack = 0xbfc , scim::SCIM_KEY_hebrew_doublelowline = 0xcdf
│ │ │ │ │ - , scim::SCIM_KEY_hebrew_aleph = 0xce0 , scim::SCIM_KEY_hebrew_bet = 0xce1 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_beth = 0xce1 , scim::SCIM_KEY_hebrew_gimel = 0xce2 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_gimmel = 0xce2 , scim::SCIM_KEY_hebrew_dalet = 0xce3 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_daleth = 0xce3 , scim::SCIM_KEY_hebrew_he = 0xce4 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_waw = 0xce5 , scim::SCIM_KEY_hebrew_zain = 0xce6 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_zayin = 0xce6 , scim::SCIM_KEY_hebrew_chet = 0xce7 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_het = 0xce7 , scim::SCIM_KEY_hebrew_tet = 0xce8 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_teth = 0xce8 , scim::SCIM_KEY_hebrew_yod = 0xce9 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_finalkaph = 0xcea , scim::SCIM_KEY_hebrew_kaph = 0xceb ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_lamed = 0xcec , scim::SCIM_KEY_hebrew_finalmem = 0xced ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_mem = 0xcee , scim::SCIM_KEY_hebrew_finalnun = 0xcef ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_nun = 0xcf0 , scim::SCIM_KEY_hebrew_samech = 0xcf1 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_samekh = 0xcf1 , scim::SCIM_KEY_hebrew_ayin = 0xcf2 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_finalpe = 0xcf3 , scim::SCIM_KEY_hebrew_pe = 0xcf4 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_finalzade = 0xcf5 , scim::SCIM_KEY_hebrew_finalzadi =
│ │ │ │ │ - 0xcf5 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_zade = 0xcf6 , scim::SCIM_KEY_hebrew_zadi = 0xcf6 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_qoph = 0xcf7 , scim::SCIM_KEY_hebrew_kuf = 0xcf7 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_resh = 0xcf8 , scim::SCIM_KEY_hebrew_shin = 0xcf9 ,
│ │ │ │ │ - scim::SCIM_KEY_hebrew_taw = 0xcfa , scim::SCIM_KEY_hebrew_taf = 0xcfa ,
│ │ │ │ │ - scim::SCIM_KEY_Hebrew_switch = 0xFF7E , scim::SCIM_KEY_Thai_kokai = 0xda1 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_khokhai = 0xda2 , scim::SCIM_KEY_Thai_khokhuat = 0xda3 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_khokhwai = 0xda4 , scim::SCIM_KEY_Thai_khokhon = 0xda5 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_khorakhang = 0xda6 , scim::SCIM_KEY_Thai_ngongu = 0xda7 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_chochan = 0xda8 , scim::SCIM_KEY_Thai_choching = 0xda9 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_chochang = 0xdaa , scim::SCIM_KEY_Thai_soso = 0xdab ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_chochoe = 0xdac , scim::SCIM_KEY_Thai_yoying = 0xdad ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_dochada = 0xdae , scim::SCIM_KEY_Thai_topatak = 0xdaf ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_thothan = 0xdb0 , scim::SCIM_KEY_Thai_thonangmontho =
│ │ │ │ │ - 0xdb1 , scim::SCIM_KEY_Thai_thophuthao = 0xdb2 , scim::SCIM_KEY_Thai_nonen =
│ │ │ │ │ - 0xdb3 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_dodek = 0xdb4 , scim::SCIM_KEY_Thai_totao = 0xdb5 , scim::
│ │ │ │ │ - SCIM_KEY_Thai_thothung = 0xdb6 , scim::SCIM_KEY_Thai_thothahan = 0xdb7 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_thothong = 0xdb8 , scim::SCIM_KEY_Thai_nonu = 0xdb9 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_bobaimai = 0xdba , scim::SCIM_KEY_Thai_popla = 0xdbb ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_phophung = 0xdbc , scim::SCIM_KEY_Thai_fofa = 0xdbd ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_phophan = 0xdbe , scim::SCIM_KEY_Thai_fofan = 0xdbf ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_phosamphao = 0xdc0 , scim::SCIM_KEY_Thai_moma = 0xdc1 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_yoyak = 0xdc2 , scim::SCIM_KEY_Thai_rorua = 0xdc3 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_ru = 0xdc4 , scim::SCIM_KEY_Thai_loling = 0xdc5 , scim::
│ │ │ │ │ - SCIM_KEY_Thai_lu = 0xdc6 , scim::SCIM_KEY_Thai_wowaen = 0xdc7 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_sosala = 0xdc8 , scim::SCIM_KEY_Thai_sorusi = 0xdc9 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_sosua = 0xdca , scim::SCIM_KEY_Thai_hohip = 0xdcb ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_lochula = 0xdcc , scim::SCIM_KEY_Thai_oang = 0xdcd ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_honokhuk = 0xdce , scim::SCIM_KEY_Thai_paiyannoi = 0xdcf ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_saraa = 0xdd0 , scim::SCIM_KEY_Thai_maihanakat = 0xdd1 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_saraaa = 0xdd2 , scim::SCIM_KEY_Thai_saraam = 0xdd3 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_sarai = 0xdd4 , scim::SCIM_KEY_Thai_saraii = 0xdd5 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_saraue = 0xdd6 , scim::SCIM_KEY_Thai_sarauee = 0xdd7 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_sarau = 0xdd8 , scim::SCIM_KEY_Thai_sarauu = 0xdd9 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_phinthu = 0xdda , scim::SCIM_KEY_Thai_maihanakat_maitho =
│ │ │ │ │ - 0xdde ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_baht = 0xddf , scim::SCIM_KEY_Thai_sarae = 0xde0 , scim::
│ │ │ │ │ - SCIM_KEY_Thai_saraae = 0xde1 , scim::SCIM_KEY_Thai_sarao = 0xde2 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_saraaimaimuan = 0xde3 , scim::SCIM_KEY_Thai_saraaimaimalai
│ │ │ │ │ - = 0xde4 , scim::SCIM_KEY_Thai_lakkhangyao = 0xde5 , scim::SCIM_KEY_Thai_maiyamok
│ │ │ │ │ - = 0xde6 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_maitaikhu = 0xde7 , scim::SCIM_KEY_Thai_maiek = 0xde8 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_maitho = 0xde9 , scim::SCIM_KEY_Thai_maitri = 0xdea ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_maichattawa = 0xdeb , scim::SCIM_KEY_Thai_thanthakhat =
│ │ │ │ │ - 0xdec , scim::SCIM_KEY_Thai_nikhahit = 0xded , scim::SCIM_KEY_Thai_leksun =
│ │ │ │ │ - 0xdf0 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_leknung = 0xdf1 , scim::SCIM_KEY_Thai_leksong = 0xdf2 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_leksam = 0xdf3 , scim::SCIM_KEY_Thai_leksi = 0xdf4 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_lekha = 0xdf5 , scim::SCIM_KEY_Thai_lekhok = 0xdf6 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_lekchet = 0xdf7 , scim::SCIM_KEY_Thai_lekpaet = 0xdf8 ,
│ │ │ │ │ - scim::SCIM_KEY_Thai_lekkao = 0xdf9 , scim::SCIM_KEY_Hangul = 0xff31 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_Start = 0xff32 , scim::SCIM_KEY_Hangul_End = 0xff33 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_Hanja = 0xff34 , scim::SCIM_KEY_Hangul_Jamo = 0xff35 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_Romaja = 0xff36 , scim::SCIM_KEY_Hangul_Codeinput = 0xff37
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_Jeonja = 0xff38 , scim::SCIM_KEY_Hangul_Banja = 0xff39 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_PreHanja = 0xff3a , scim::SCIM_KEY_Hangul_PostHanja =
│ │ │ │ │ - 0xff3b ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_SingleCandidate = 0xff3c , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_MultipleCandidate = 0xff3d , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_PreviousCandidate = 0xff3e , scim::SCIM_KEY_Hangul_Special =
│ │ │ │ │ - 0xff3f ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_switch = 0xFF7E , scim::SCIM_KEY_Hangul_Kiyeog = 0xea1 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_SsangKiyeog = 0xea2 , scim::SCIM_KEY_Hangul_KiyeogSios =
│ │ │ │ │ - 0xea3 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_Nieun = 0xea4 , scim::SCIM_KEY_Hangul_NieunJieuj = 0xea5
│ │ │ │ │ - , scim::SCIM_KEY_Hangul_NieunHieuh = 0xea6 , scim::SCIM_KEY_Hangul_Dikeud =
│ │ │ │ │ - 0xea7 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_SsangDikeud = 0xea8 , scim::SCIM_KEY_Hangul_Rieul =
│ │ │ │ │ - 0xea9 , scim::SCIM_KEY_Hangul_RieulKiyeog = 0xeaa , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_RieulMieum = 0xeab ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_RieulPieub = 0xeac , scim::SCIM_KEY_Hangul_RieulSios =
│ │ │ │ │ - 0xead , scim::SCIM_KEY_Hangul_RieulTieut = 0xeae , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_RieulPhieuf = 0xeaf ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_RieulHieuh = 0xeb0 , scim::SCIM_KEY_Hangul_Mieum = 0xeb1
│ │ │ │ │ - , scim::SCIM_KEY_Hangul_Pieub = 0xeb2 , scim::SCIM_KEY_Hangul_SsangPieub = 0xeb3
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_PieubSios = 0xeb4 , scim::SCIM_KEY_Hangul_Sios = 0xeb5 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_SsangSios = 0xeb6 , scim::SCIM_KEY_Hangul_Ieung = 0xeb7 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_Jieuj = 0xeb8 , scim::SCIM_KEY_Hangul_SsangJieuj = 0xeb9
│ │ │ │ │ - , scim::SCIM_KEY_Hangul_Cieuc = 0xeba , scim::SCIM_KEY_Hangul_Khieuq = 0xebb ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_Tieut = 0xebc , scim::SCIM_KEY_Hangul_Phieuf = 0xebd ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_Hieuh = 0xebe , scim::SCIM_KEY_Hangul_A = 0xebf ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_AE = 0xec0 , scim::SCIM_KEY_Hangul_YA = 0xec1 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_YAE = 0xec2 , scim::SCIM_KEY_Hangul_EO = 0xec3 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_E = 0xec4 , scim::SCIM_KEY_Hangul_YEO = 0xec5 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_YE = 0xec6 , scim::SCIM_KEY_Hangul_O = 0xec7 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_WA = 0xec8 , scim::SCIM_KEY_Hangul_WAE = 0xec9 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_OE = 0xeca , scim::SCIM_KEY_Hangul_YO = 0xecb ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_U = 0xecc , scim::SCIM_KEY_Hangul_WEO = 0xecd , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_WE = 0xece , scim::SCIM_KEY_Hangul_WI = 0xecf ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_YU = 0xed0 , scim::SCIM_KEY_Hangul_EU = 0xed1 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_YI = 0xed2 , scim::SCIM_KEY_Hangul_I = 0xed3 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_Kiyeog = 0xed4 , scim::SCIM_KEY_Hangul_J_SsangKiyeog =
│ │ │ │ │ - 0xed5 , scim::SCIM_KEY_Hangul_J_KiyeogSios = 0xed6 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_J_Nieun = 0xed7 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_NieunJieuj = 0xed8 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_J_NieunHieuh = 0xed9 , scim::SCIM_KEY_Hangul_J_Dikeud = 0xeda ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_Rieul = 0xedb ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_RieulKiyeog = 0xedc , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_J_RieulMieum = 0xedd , scim::SCIM_KEY_Hangul_J_RieulPieub =
│ │ │ │ │ - 0xede , scim::SCIM_KEY_Hangul_J_RieulSios = 0xedf ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_RieulTieut = 0xee0 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_J_RieulPhieuf = 0xee1 , scim::SCIM_KEY_Hangul_J_RieulHieuh =
│ │ │ │ │ - 0xee2 , scim::SCIM_KEY_Hangul_J_Mieum = 0xee3 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_Pieub = 0xee4 , scim::SCIM_KEY_Hangul_J_PieubSios =
│ │ │ │ │ - 0xee5 , scim::SCIM_KEY_Hangul_J_Sios = 0xee6 , scim::SCIM_KEY_Hangul_J_SsangSios
│ │ │ │ │ - = 0xee7 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_Ieung = 0xee8 , scim::SCIM_KEY_Hangul_J_Jieuj = 0xee9
│ │ │ │ │ - , scim::SCIM_KEY_Hangul_J_Cieuc = 0xeea , scim::SCIM_KEY_Hangul_J_Khieuq = 0xeeb
│ │ │ │ │ - ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_Tieut = 0xeec , scim::SCIM_KEY_Hangul_J_Phieuf = 0xeed
│ │ │ │ │ - , scim::SCIM_KEY_Hangul_J_Hieuh = 0xeee , scim::SCIM_KEY_Hangul_RieulYeorinHieuh
│ │ │ │ │ - = 0xeef ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_SunkyeongeumMieum = 0xef0 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_SunkyeongeumPieub = 0xef1 , scim::SCIM_KEY_Hangul_PanSios =
│ │ │ │ │ - 0xef2 , scim::SCIM_KEY_Hangul_KkogjiDalrinIeung = 0xef3 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_SunkyeongeumPhieuf = 0xef4 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_YeorinHieuh = 0xef5 , scim::SCIM_KEY_Hangul_AraeA = 0xef6 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_AraeAE = 0xef7 ,
│ │ │ │ │ - scim::SCIM_KEY_Hangul_J_PanSios = 0xef8 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_J_KkogjiDalrinIeung = 0xef9 , scim::
│ │ │ │ │ - SCIM_KEY_Hangul_J_YeorinHieuh = 0xefa , scim::SCIM_KEY_Korean_Won = 0xeff ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_eternity = 0x14a1 , scim::
│ │ │ │ │ - SCIM_KEY_Armenian_ligature_ew = 0x14a2 , scim::SCIM_KEY_Armenian_full_stop =
│ │ │ │ │ - 0x14a3 , scim::SCIM_KEY_Armenian_verjaket = 0x14a3 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_parenright = 0x14a4 , scim::
│ │ │ │ │ - SCIM_KEY_Armenian_parenleft = 0x14a5 , scim::SCIM_KEY_Armenian_guillemotright =
│ │ │ │ │ - 0x14a6 , scim::SCIM_KEY_Armenian_guillemotleft = 0x14a7 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_em_dash = 0x14a8 , scim::SCIM_KEY_Armenian_dot =
│ │ │ │ │ - 0x14a9 , scim::SCIM_KEY_Armenian_mijaket = 0x14a9 , scim::
│ │ │ │ │ - SCIM_KEY_Armenian_separation_mark = 0x14aa ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_but = 0x14aa , scim::SCIM_KEY_Armenian_comma = 0x14ab
│ │ │ │ │ - , scim::SCIM_KEY_Armenian_en_dash = 0x14ac , scim::SCIM_KEY_Armenian_hyphen =
│ │ │ │ │ - 0x14ad ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_yentamna = 0x14ad , scim::SCIM_KEY_Armenian_ellipsis =
│ │ │ │ │ - 0x14ae , scim::SCIM_KEY_Armenian_exclam = 0x14af , scim::
│ │ │ │ │ - SCIM_KEY_Armenian_amanak = 0x14af ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_accent = 0x14b0 , scim::SCIM_KEY_Armenian_shesht =
│ │ │ │ │ - 0x14b0 , scim::SCIM_KEY_Armenian_question = 0x14b1 , scim::
│ │ │ │ │ - SCIM_KEY_Armenian_paruyk = 0x14b1 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_AYB = 0x14b2 , scim::SCIM_KEY_Armenian_ayb = 0x14b3 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_BEN = 0x14b4 , scim::SCIM_KEY_Armenian_ben = 0x14b5 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_GIM = 0x14b6 , scim::SCIM_KEY_Armenian_gim = 0x14b7 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_DA = 0x14b8 , scim::SCIM_KEY_Armenian_da = 0x14b9 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_YECH = 0x14ba , scim::SCIM_KEY_Armenian_yech = 0x14bb
│ │ │ │ │ - , scim::SCIM_KEY_Armenian_ZA = 0x14bc , scim::SCIM_KEY_Armenian_za = 0x14bd ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_E = 0x14be , scim::SCIM_KEY_Armenian_e = 0x14bf ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_AT = 0x14c0 , scim::SCIM_KEY_Armenian_at = 0x14c1 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_TO = 0x14c2 , scim::SCIM_KEY_Armenian_to = 0x14c3 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_ZHE = 0x14c4 , scim::SCIM_KEY_Armenian_zhe = 0x14c5 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_INI = 0x14c6 , scim::SCIM_KEY_Armenian_ini = 0x14c7 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_LYUN = 0x14c8 , scim::SCIM_KEY_Armenian_lyun = 0x14c9 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_KHE = 0x14ca , scim::SCIM_KEY_Armenian_khe = 0x14cb ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_TSA = 0x14cc , scim::SCIM_KEY_Armenian_tsa = 0x14cd ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_KEN = 0x14ce , scim::SCIM_KEY_Armenian_ken = 0x14cf ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_HO = 0x14d0 , scim::SCIM_KEY_Armenian_ho = 0x14d1 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_DZA = 0x14d2 , scim::SCIM_KEY_Armenian_dza = 0x14d3 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_GHAT = 0x14d4 , scim::SCIM_KEY_Armenian_ghat = 0x14d5 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_TCHE = 0x14d6 , scim::SCIM_KEY_Armenian_tche = 0x14d7
│ │ │ │ │ - , scim::SCIM_KEY_Armenian_MEN = 0x14d8 , scim::SCIM_KEY_Armenian_men = 0x14d9 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_HI = 0x14da , scim::SCIM_KEY_Armenian_hi = 0x14db ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_NU = 0x14dc , scim::SCIM_KEY_Armenian_nu = 0x14dd ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_SHA = 0x14de , scim::SCIM_KEY_Armenian_sha = 0x14df ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_VO = 0x14e0 , scim::SCIM_KEY_Armenian_vo = 0x14e1 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_CHA = 0x14e2 , scim::SCIM_KEY_Armenian_cha = 0x14e3 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_PE = 0x14e4 , scim::SCIM_KEY_Armenian_pe = 0x14e5 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_JE = 0x14e6 , scim::SCIM_KEY_Armenian_je = 0x14e7 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_RA = 0x14e8 , scim::SCIM_KEY_Armenian_ra = 0x14e9 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_SE = 0x14ea , scim::SCIM_KEY_Armenian_se = 0x14eb ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_VEV = 0x14ec , scim::SCIM_KEY_Armenian_vev = 0x14ed ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_TYUN = 0x14ee , scim::SCIM_KEY_Armenian_tyun = 0x14ef
│ │ │ │ │ - , scim::SCIM_KEY_Armenian_RE = 0x14f0 , scim::SCIM_KEY_Armenian_re = 0x14f1 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_TSO = 0x14f2 , scim::SCIM_KEY_Armenian_tso = 0x14f3 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_VYUN = 0x14f4 , scim::SCIM_KEY_Armenian_vyun = 0x14f5 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_PYUR = 0x14f6 , scim::SCIM_KEY_Armenian_pyur = 0x14f7
│ │ │ │ │ - , scim::SCIM_KEY_Armenian_KE = 0x14f8 , scim::SCIM_KEY_Armenian_ke = 0x14f9 ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_O = 0x14fa , scim::SCIM_KEY_Armenian_o = 0x14fb ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_FE = 0x14fc , scim::SCIM_KEY_Armenian_fe = 0x14fd ,
│ │ │ │ │ - scim::SCIM_KEY_Armenian_apostrophe = 0x14fe , scim::
│ │ │ │ │ - SCIM_KEY_Armenian_section_sign = 0x14ff , scim::SCIM_KEY_Georgian_an = 0x15d0 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_ban = 0x15d1 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_gan = 0x15d2 , scim::SCIM_KEY_Georgian_don = 0x15d3 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_en = 0x15d4 , scim::SCIM_KEY_Georgian_vin = 0x15d5 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_zen = 0x15d6 , scim::SCIM_KEY_Georgian_tan = 0x15d7 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_in = 0x15d8 , scim::SCIM_KEY_Georgian_kan = 0x15d9 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_las = 0x15da , scim::SCIM_KEY_Georgian_man = 0x15db ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_nar = 0x15dc , scim::SCIM_KEY_Georgian_on = 0x15dd ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_par = 0x15de , scim::SCIM_KEY_Georgian_zhar = 0x15df ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_rae = 0x15e0 , scim::SCIM_KEY_Georgian_san = 0x15e1 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_tar = 0x15e2 , scim::SCIM_KEY_Georgian_un = 0x15e3 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_phar = 0x15e4 , scim::SCIM_KEY_Georgian_khar = 0x15e5 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_ghan = 0x15e6 , scim::SCIM_KEY_Georgian_qar = 0x15e7 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_shin = 0x15e8 , scim::SCIM_KEY_Georgian_chin = 0x15e9 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_can = 0x15ea , scim::SCIM_KEY_Georgian_jil = 0x15eb ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_cil = 0x15ec , scim::SCIM_KEY_Georgian_char = 0x15ed ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_xan = 0x15ee , scim::SCIM_KEY_Georgian_jhan = 0x15ef ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_hae = 0x15f0 , scim::SCIM_KEY_Georgian_he = 0x15f1 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_hie = 0x15f2 , scim::SCIM_KEY_Georgian_we = 0x15f3 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_har = 0x15f4 , scim::SCIM_KEY_Georgian_hoe = 0x15f5 ,
│ │ │ │ │ - scim::SCIM_KEY_Georgian_fi = 0x15f6 , scim::SCIM_KEY_Ccedillaabovedot = 0x16a2
│ │ │ │ │ - , scim::SCIM_KEY_Xabovedot = 0x16a3 , scim::SCIM_KEY_Qabovedot = 0x16a5 ,
│ │ │ │ │ - scim::SCIM_KEY_Ibreve = 0x16a6 , scim::SCIM_KEY_IE = 0x16a7 , scim::
│ │ │ │ │ - SCIM_KEY_UO = 0x16a8 , scim::SCIM_KEY_Zstroke = 0x16a9 ,
│ │ │ │ │ - scim::SCIM_KEY_Gcaron = 0x16aa , scim::SCIM_KEY_Obarred = 0x16af , scim::
│ │ │ │ │ - SCIM_KEY_ccedillaabovedot = 0x16b2 , scim::SCIM_KEY_xabovedot = 0x16b3 ,
│ │ │ │ │ - scim::SCIM_KEY_Ocaron = 0x16b4 , scim::SCIM_KEY_qabovedot = 0x16b5 , scim::
│ │ │ │ │ - SCIM_KEY_ibreve = 0x16b6 , scim::SCIM_KEY_ie = 0x16b7 ,
│ │ │ │ │ - scim::SCIM_KEY_uo = 0x16b8 , scim::SCIM_KEY_zstroke = 0x16b9 , scim::
│ │ │ │ │ - SCIM_KEY_gcaron = 0x16ba , scim::SCIM_KEY_ocaron = 0x16bd ,
│ │ │ │ │ - scim::SCIM_KEY_obarred = 0x16bf , scim::SCIM_KEY_SCHWA = 0x16c6 , scim::
│ │ │ │ │ - SCIM_KEY_schwa = 0x16f6 , scim::SCIM_KEY_Lbelowdot = 0x16d1 ,
│ │ │ │ │ - scim::SCIM_KEY_Lstrokebelowdot = 0x16d2 , scim::SCIM_KEY_lbelowdot = 0x16e1 ,
│ │ │ │ │ - scim::SCIM_KEY_lstrokebelowdot = 0x16e2 , scim::SCIM_KEY_Gtilde = 0x16d3 ,
│ │ │ │ │ - scim::SCIM_KEY_gtilde = 0x16e3 , scim::SCIM_KEY_Abelowdot = 0x1ea0 , scim::
│ │ │ │ │ - SCIM_KEY_abelowdot = 0x1ea1 , scim::SCIM_KEY_Ahook = 0x1ea2 ,
│ │ │ │ │ - scim::SCIM_KEY_ahook = 0x1ea3 , scim::SCIM_KEY_Acircumflexacute = 0x1ea4 ,
│ │ │ │ │ - scim::SCIM_KEY_acircumflexacute = 0x1ea5 , scim::SCIM_KEY_Acircumflexgrave =
│ │ │ │ │ - 0x1ea6 ,
│ │ │ │ │ - scim::SCIM_KEY_acircumflexgrave = 0x1ea7 , scim::SCIM_KEY_Acircumflexhook =
│ │ │ │ │ - 0x1ea8 , scim::SCIM_KEY_acircumflexhook = 0x1ea9 , scim::
│ │ │ │ │ - SCIM_KEY_Acircumflextilde = 0x1eaa ,
│ │ │ │ │ - scim::SCIM_KEY_acircumflextilde = 0x1eab , scim::SCIM_KEY_Acircumflexbelowdot
│ │ │ │ │ - = 0x1eac , scim::SCIM_KEY_acircumflexbelowdot = 0x1ead , scim::
│ │ │ │ │ - SCIM_KEY_Abreveacute = 0x1eae ,
│ │ │ │ │ - scim::SCIM_KEY_abreveacute = 0x1eaf , scim::SCIM_KEY_Abrevegrave = 0x1eb0 ,
│ │ │ │ │ - scim::SCIM_KEY_abrevegrave = 0x1eb1 , scim::SCIM_KEY_Abrevehook = 0x1eb2 ,
│ │ │ │ │ - scim::SCIM_KEY_abrevehook = 0x1eb3 , scim::SCIM_KEY_Abrevetilde = 0x1eb4 ,
│ │ │ │ │ - scim::SCIM_KEY_abrevetilde = 0x1eb5 , scim::SCIM_KEY_Abrevebelowdot = 0x1eb6 ,
│ │ │ │ │ - scim::SCIM_KEY_abrevebelowdot = 0x1eb7 , scim::SCIM_KEY_Ebelowdot = 0x1eb8 ,
│ │ │ │ │ - scim::SCIM_KEY_ebelowdot = 0x1eb9 , scim::SCIM_KEY_Ehook = 0x1eba ,
│ │ │ │ │ - scim::SCIM_KEY_ehook = 0x1ebb , scim::SCIM_KEY_Etilde = 0x1ebc , scim::
│ │ │ │ │ - SCIM_KEY_etilde = 0x1ebd , scim::SCIM_KEY_Ecircumflexacute = 0x1ebe ,
│ │ │ │ │ - scim::SCIM_KEY_ecircumflexacute = 0x1ebf , scim::SCIM_KEY_Ecircumflexgrave =
│ │ │ │ │ - 0x1ec0 , scim::SCIM_KEY_ecircumflexgrave = 0x1ec1 , scim::
│ │ │ │ │ - SCIM_KEY_Ecircumflexhook = 0x1ec2 ,
│ │ │ │ │ - scim::SCIM_KEY_ecircumflexhook = 0x1ec3 , scim::SCIM_KEY_Ecircumflextilde =
│ │ │ │ │ - 0x1ec4 , scim::SCIM_KEY_ecircumflextilde = 0x1ec5 , scim::
│ │ │ │ │ - SCIM_KEY_Ecircumflexbelowdot = 0x1ec6 ,
│ │ │ │ │ - scim::SCIM_KEY_ecircumflexbelowdot = 0x1ec7 , scim::SCIM_KEY_Ihook = 0x1ec8 ,
│ │ │ │ │ - scim::SCIM_KEY_ihook = 0x1ec9 , scim::SCIM_KEY_Ibelowdot = 0x1eca ,
│ │ │ │ │ - scim::SCIM_KEY_ibelowdot = 0x1ecb , scim::SCIM_KEY_Obelowdot = 0x1ecc , scim::
│ │ │ │ │ - SCIM_KEY_obelowdot = 0x1ecd , scim::SCIM_KEY_Ohook = 0x1ece ,
│ │ │ │ │ - scim::SCIM_KEY_ohook = 0x1ecf , scim::SCIM_KEY_Ocircumflexacute = 0x1ed0 ,
│ │ │ │ │ - scim::SCIM_KEY_ocircumflexacute = 0x1ed1 , scim::SCIM_KEY_Ocircumflexgrave =
│ │ │ │ │ - 0x1ed2 ,
│ │ │ │ │ - scim::SCIM_KEY_ocircumflexgrave = 0x1ed3 , scim::SCIM_KEY_Ocircumflexhook =
│ │ │ │ │ - 0x1ed4 , scim::SCIM_KEY_ocircumflexhook = 0x1ed5 , scim::
│ │ │ │ │ - SCIM_KEY_Ocircumflextilde = 0x1ed6 ,
│ │ │ │ │ - scim::SCIM_KEY_ocircumflextilde = 0x1ed7 , scim::SCIM_KEY_Ocircumflexbelowdot
│ │ │ │ │ - = 0x1ed8 , scim::SCIM_KEY_ocircumflexbelowdot = 0x1ed9 , scim::
│ │ │ │ │ - SCIM_KEY_Ohornacute = 0x1eda ,
│ │ │ │ │ - scim::SCIM_KEY_ohornacute = 0x1edb , scim::SCIM_KEY_Ohorngrave = 0x1edc ,
│ │ │ │ │ - scim::SCIM_KEY_ohorngrave = 0x1edd , scim::SCIM_KEY_Ohornhook = 0x1ede ,
│ │ │ │ │ - scim::SCIM_KEY_ohornhook = 0x1edf , scim::SCIM_KEY_Ohorntilde = 0x1ee0 ,
│ │ │ │ │ - scim::SCIM_KEY_ohorntilde = 0x1ee1 , scim::SCIM_KEY_Ohornbelowdot = 0x1ee2 ,
│ │ │ │ │ - scim::SCIM_KEY_ohornbelowdot = 0x1ee3 , scim::SCIM_KEY_Ubelowdot = 0x1ee4 ,
│ │ │ │ │ - scim::SCIM_KEY_ubelowdot = 0x1ee5 , scim::SCIM_KEY_Uhook = 0x1ee6 ,
│ │ │ │ │ - scim::SCIM_KEY_uhook = 0x1ee7 , scim::SCIM_KEY_Uhornacute = 0x1ee8 , scim::
│ │ │ │ │ - SCIM_KEY_uhornacute = 0x1ee9 , scim::SCIM_KEY_Uhorngrave = 0x1eea ,
│ │ │ │ │ - scim::SCIM_KEY_uhorngrave = 0x1eeb , scim::SCIM_KEY_Uhornhook = 0x1eec ,
│ │ │ │ │ - scim::SCIM_KEY_uhornhook = 0x1eed , scim::SCIM_KEY_Uhorntilde = 0x1eee ,
│ │ │ │ │ - scim::SCIM_KEY_uhorntilde = 0x1eef , scim::SCIM_KEY_Uhornbelowdot = 0x1ef0 ,
│ │ │ │ │ - scim::SCIM_KEY_uhornbelowdot = 0x1ef1 , scim::SCIM_KEY_Ybelowdot = 0x1ef4 ,
│ │ │ │ │ - scim::SCIM_KEY_ybelowdot = 0x1ef5 , scim::SCIM_KEY_Yhook = 0x1ef6 , scim::
│ │ │ │ │ - SCIM_KEY_yhook = 0x1ef7 , scim::SCIM_KEY_Ytilde = 0x1ef8 ,
│ │ │ │ │ - scim::SCIM_KEY_ytilde = 0x1ef9 , scim::SCIM_KEY_Ohorn = 0x1efa , scim::
│ │ │ │ │ - SCIM_KEY_ohorn = 0x1efb , scim::SCIM_KEY_Uhorn = 0x1efc ,
│ │ │ │ │ - scim::SCIM_KEY_uhorn = 0x1efd , scim::SCIM_KEY_combining_tilde = 0x1e9f ,
│ │ │ │ │ - scim::SCIM_KEY_combining_grave = 0x1ef2 , scim::SCIM_KEY_combining_acute =
│ │ │ │ │ - 0x1ef3 ,
│ │ │ │ │ - scim::SCIM_KEY_combining_hook = 0x1efe , scim::SCIM_KEY_combining_belowdot =
│ │ │ │ │ - 0x1eff , scim::SCIM_KEY_EcuSign = 0x20a0 , scim::SCIM_KEY_ColonSign = 0x20a1 ,
│ │ │ │ │ - scim::SCIM_KEY_CruzeiroSign = 0x20a2 , scim::SCIM_KEY_FFrancSign = 0x20a3 ,
│ │ │ │ │ - scim::SCIM_KEY_LiraSign = 0x20a4 , scim::SCIM_KEY_MillSign = 0x20a5 ,
│ │ │ │ │ - scim::SCIM_KEY_NairaSign = 0x20a6 , scim::SCIM_KEY_PesetaSign = 0x20a7 ,
│ │ │ │ │ - scim::SCIM_KEY_RupeeSign = 0x20a8 , scim::SCIM_KEY_WonSign = 0x20a9 ,
│ │ │ │ │ - scim::SCIM_KEY_NewSheqelSign = 0x20aa , scim::SCIM_KEY_DongSign = 0x20ab ,
│ │ │ │ │ - scim::SCIM_KEY_EuroSign = 0x20ac
│ │ │ │ │ - }
│ │ │ │ │ - Enum values of all valid key codes. More...
│ │ │ │ │ -
│ │ │ │ │ -enum scim::KeyboardLayout {
│ │ │ │ │ - scim::SCIM_KEYBOARD_Unknown = 0 , scim::SCIM_KEYBOARD_Default = 1 , scim::
│ │ │ │ │ - SCIM_KEYBOARD_US = 1 , scim::SCIM_KEYBOARD_Belgian = 2 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_Croatian = 3 , scim::SCIM_KEYBOARD_Czech = 4 , scim::
│ │ │ │ │ - SCIM_KEYBOARD_Czech_Qwerty = 5 , scim::SCIM_KEYBOARD_Danish = 6 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_Dutch = 7 , scim::SCIM_KEYBOARD_Dvorak = 8 , scim::
│ │ │ │ │ - SCIM_KEYBOARD_Estonian = 9 , scim::SCIM_KEYBOARD_Finnish = 10 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_French = 11 , scim::SCIM_KEYBOARD_French_Canadian = 12 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_French_Switzerland = 13 , scim::SCIM_KEYBOARD_German = 14 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_German_Deadkeys = 15 , scim::SCIM_KEYBOARD_German_Swiss =
│ │ │ │ │ - 16 , scim::SCIM_KEYBOARD_Greek = 17 , scim::SCIM_KEYBOARD_Hungarian = 18 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_Italian = 19 , scim::SCIM_KEYBOARD_Japanese = 20 , scim::
│ │ │ │ │ - SCIM_KEYBOARD_Norwegian = 21 , scim::SCIM_KEYBOARD_Polish = 22 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_Portuguese = 23 , scim::SCIM_KEYBOARD_Portuguese_Brazil =
│ │ │ │ │ - 24 , scim::SCIM_KEYBOARD_Portuguese_Brazil_US_Accents = 25 , scim::
│ │ │ │ │ - SCIM_KEYBOARD_Russian = 26 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_Slovak = 27 , scim::SCIM_KEYBOARD_Slovak_Qwerty = 28 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_Slovene = 29 , scim::SCIM_KEYBOARD_Spanish = 30 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_Spanish_CP850 = 31 , scim::
│ │ │ │ │ - SCIM_KEYBOARD_Spanish_Latin_America = 32 , scim::SCIM_KEYBOARD_Swedish = 33 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_Turkish = 34 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_UK = 35 , scim::SCIM_KEYBOARD_Icelandic = 36 , scim::
│ │ │ │ │ - SCIM_KEYBOARD_Lithuanian = 37 , scim::SCIM_KEYBOARD_Ukrainian = 38 ,
│ │ │ │ │ - scim::SCIM_KEYBOARD_NUM_LAYOUTS = 39
│ │ │ │ │ - }
│ │ │ │ │ - Enum values of all valid Keyboard Layout type. More...
│ │ │ │ │ + typedef bool(* scim::HelperModuleGetHelperInfoFunc) (unsigned int idx,
│ │ │ │ │ + HelperInfo &info)
│ │ │ │ │ + Get the information of a Helper. More...
│ │ │ │ │ +
│ │ │ │ │ + typedef void(* scim::HelperModuleRunHelperFunc) (const String &uuid,
│ │ │ │ │ + const ConfigPointer &config, const String &display)
│ │ │ │ │ + Run a specific Helper. More...
│ │ │ │ │
│ │ │ │ │ Functions
│ │ │ │ │ - bool scim::scim_key_to_string (String &str, const KeyEvent &key)
│ │ │ │ │ - Convert a key event to a string. More...
│ │ │ │ │ -
│ │ │ │ │ - bool scim::scim_string_to_key (KeyEvent &key, const String &str)
│ │ │ │ │ - Convert a string to a KeyEvent. More...
│ │ │ │ │ -
│ │ │ │ │ - bool scim::scim_key_list_to_string (String &str, const KeyEventList
│ │ │ │ │ - &keylist)
│ │ │ │ │ - Convert a set of KeyEvents to a string. More...
│ │ │ │ │ -
│ │ │ │ │ - bool scim::scim_string_to_key_list (KeyEventList &keylist, const
│ │ │ │ │ - String &str)
│ │ │ │ │ - Covnert a string to a set of KeyEvents. More...
│ │ │ │ │ -
│ │ │ │ │ - String scim::scim_keyboard_layout_to_string (KeyboardLayout layout)
│ │ │ │ │ - Convert a Keyboard Layout enum value to its String name.
│ │ │ │ │ - More...
│ │ │ │ │ -
│ │ │ │ │ -KeyboardLayout scim::scim_string_to_keyboard_layout (const String &str)
│ │ │ │ │ - Convert a String name to the corresponding Keyboard Layout
│ │ │ │ │ - value. More...
│ │ │ │ │ -
│ │ │ │ │ - String scim::scim_keyboard_layout_get_display_name (KeyboardLayout
│ │ │ │ │ - layout)
│ │ │ │ │ - Get the display name of a Keyboard Layout enum value. More...
│ │ │ │ │ -
│ │ │ │ │ -KeyboardLayout scim::scim_get_default_keyboard_layout ()
│ │ │ │ │ - Get default Keyboard Layout setting. More...
│ │ │ │ │ -
│ │ │ │ │ - void scim::scim_set_default_keyboard_layout (KeyboardLayout layout)
│ │ │ │ │ - Change the default Keyboard Layout setting. More...
│ │ │ │ │ +int scim::scim_get_helper_module_list (std::vector< String > &mod_list)
│ │ │ │ │ + Get a name list of currently available Helper modules. More...
│ │ │ │ │
│ │ │ │ │ ***** Detailed Description *****
│ │ │ │ │ -Defines the scim::KeyEvent class and related enums, functions.
│ │ │ │ │ +Defines scim::HelperModule and it's related types.
│ │ │ │ │ +scim::HelperModule is a class used to load Client Helper modules.
│ │ │ │ │ * src
│ │ │ │ │ - * scim_event.h
│ │ │ │ │ + * scim_helper_module.h
│ │ │ │ │ * Generated by [doxygen] 1.9.4
│ │ │ ├── ./usr/share/doc/scim-dev-doc/html/a00041.js
│ │ │ │ ├── js-beautify {}
│ │ │ │ │ @@ -1,1757 +1,6 @@
│ │ │ │ │ var a00041 = [
│ │ │ │ │ - ["KeyEventList", "a00041.html#gafe3e8c1f1276da4a6331fa96fb1b2398", null],
│ │ │ │ │ - ["KeyMask", "a00041.html#ga897c063c5af5c3cdc600075f396d71ae", [
│ │ │ │ │ - ["SCIM_KEY_NullMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aeab3c03a3ee2f391035dc38ce44c9d6203", null],
│ │ │ │ │ - ["SCIM_KEY_ShiftMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea8c2ee1637ba0ef6144559ef2a8396e82", null],
│ │ │ │ │ - ["SCIM_KEY_CapsLockMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea83e051991f2eeb8c289451e97792f66a", null],
│ │ │ │ │ - ["SCIM_KEY_ControlMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aeaa49d74ca1cfcff9e7d1fe6f414209206", null],
│ │ │ │ │ - ["SCIM_KEY_AltMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea2ee7002fd4a05f1d966bcf9896f6f5a9", null],
│ │ │ │ │ - ["SCIM_KEY_MetaMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aeacf213483bb24afd27a0df44856f5bb2d", null],
│ │ │ │ │ - ["SCIM_KEY_SuperMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aeab9d459cd2d40f9361a300b1d43cbc010", null],
│ │ │ │ │ - ["SCIM_KEY_HyperMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea1f321b5981304f982321a8958887ac5f", null],
│ │ │ │ │ - ["SCIM_KEY_NumLockMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea06d7edf7d48d05326f2706772af13598", null],
│ │ │ │ │ - ["SCIM_KEY_LockMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aeac6613783ffa6e4dfdf2871b9fd406018", null],
│ │ │ │ │ - ["SCIM_KEY_Mod1Mask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea1fa929a62463c16bf6b4adb087e8f539", null],
│ │ │ │ │ - ["SCIM_KEY_Mod2Mask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea748accb4094c03e01f17b7881d3bb5b2", null],
│ │ │ │ │ - ["SCIM_KEY_Mod3Mask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aeafc52d99dee74213078ed79a4787a3377", null],
│ │ │ │ │ - ["SCIM_KEY_Mod4Mask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea560647607f35a302c4ce2acddc62501a", null],
│ │ │ │ │ - ["SCIM_KEY_Mod5Mask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea40af45e40218f792cf589d9a5ad54c1b", null],
│ │ │ │ │ - ["SCIM_KEY_ScrollLockMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea0daf5c61370f605d1a0ff639192ccf81", null],
│ │ │ │ │ - ["SCIM_KEY_QuirkKanaRoMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aead3b26ac0d189d58e903bd6f9c4eb9c55", null],
│ │ │ │ │ - ["SCIM_KEY_ReleaseMask", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea2bc5f300d4865b913eb7313457fe657c", null],
│ │ │ │ │ - ["SCIM_KEY_AllMasks", "a00041.html#gga897c063c5af5c3cdc600075f396d71aea7c22d01f5b7a021009e0321c30f1a8ee", null]
│ │ │ │ │ - ]],
│ │ │ │ │ - ["KeyCode", "a00041.html#ga4aefe0843e618886b55102a0eb45b75f", [
│ │ │ │ │ - ["SCIM_KEY_NullKey", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8ac9c0359282951f0a4523e07d289c70", null],
│ │ │ │ │ - ["SCIM_KEY_VoidSymbol", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa177abf5c39ba5d74192c48739b23b6be", null],
│ │ │ │ │ - ["SCIM_KEY_BackSpace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3f14ac207cd7e294a2eb86c7be650015", null],
│ │ │ │ │ - ["SCIM_KEY_Tab", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad599c6d0446c1f4544baa48090c5e313", null],
│ │ │ │ │ - ["SCIM_KEY_Linefeed", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa59609de0e7a4aa6cc3083154f429e9ee", null],
│ │ │ │ │ - ["SCIM_KEY_Clear", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad9eafcfea1c3203ad80bec6b43be234e", null],
│ │ │ │ │ - ["SCIM_KEY_Return", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa54f01e5d19485cb1856176a55dc6d071", null],
│ │ │ │ │ - ["SCIM_KEY_Pause", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0a8ee50bfd45e7b403c849ab87f1ddca", null],
│ │ │ │ │ - ["SCIM_KEY_Scroll_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faea3f1e53840a650fbf2c1da0f8a01e6a", null],
│ │ │ │ │ - ["SCIM_KEY_Sys_Req", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac35654d6e405cadc8adfa5a2e211ee65", null],
│ │ │ │ │ - ["SCIM_KEY_Escape", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad4190abc7abd4cb9e3714311865b954d", null],
│ │ │ │ │ - ["SCIM_KEY_Delete", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf40df069bc79ac012551a68dbe410a26", null],
│ │ │ │ │ - ["SCIM_KEY_Multi_key", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faffc9dd5a3f2624718271d0db882c33da", null],
│ │ │ │ │ - ["SCIM_KEY_Codeinput", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa11ea65f8500096da9c2d79cfed020f69", null],
│ │ │ │ │ - ["SCIM_KEY_SingleCandidate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8c8dc214d761500819ab9c39896eeb3a", null],
│ │ │ │ │ - ["SCIM_KEY_MultipleCandidate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa93da1dae04ec643306558fa020485b7e", null],
│ │ │ │ │ - ["SCIM_KEY_PreviousCandidate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae586e84c1b9d28b9c6873fd7cdf8340d", null],
│ │ │ │ │ - ["SCIM_KEY_Kanji", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad86e70c54656c237b041b646010d155b", null],
│ │ │ │ │ - ["SCIM_KEY_Muhenkan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf63827c2207df3bfe960709f0039a99c", null],
│ │ │ │ │ - ["SCIM_KEY_Henkan_Mode", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab125e2bc53b01d5bc1072e6d10417880", null],
│ │ │ │ │ - ["SCIM_KEY_Henkan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8029d2e8d95ae24492318fd47263b29b", null],
│ │ │ │ │ - ["SCIM_KEY_Romaji", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9190e38ee6283db11db59a128df0dc6e", null],
│ │ │ │ │ - ["SCIM_KEY_Hiragana", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf74010f4ef3d73669721c060673a5785", null],
│ │ │ │ │ - ["SCIM_KEY_Katakana", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac432b58ccc4eaf0b5cd3d9943952de65", null],
│ │ │ │ │ - ["SCIM_KEY_Hiragana_Katakana", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa112dd28f03ff95dfe346b9388c312df", null],
│ │ │ │ │ - ["SCIM_KEY_Zenkaku", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2260d4334535e9c1c35f5988406f5693", null],
│ │ │ │ │ - ["SCIM_KEY_Hankaku", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa877b23f1295c6147aabe11fc114f792c", null],
│ │ │ │ │ - ["SCIM_KEY_Zenkaku_Hankaku", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa645ff9db7a718032dbfafb3df3ea5699", null],
│ │ │ │ │ - ["SCIM_KEY_Touroku", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafdcc1d308892649581728dee3b5e684d", null],
│ │ │ │ │ - ["SCIM_KEY_Massyo", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2593b7f257454831695a51d6e0ffe20c", null],
│ │ │ │ │ - ["SCIM_KEY_Kana_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5c0f6f862409950368e225be29f7cb7f", null],
│ │ │ │ │ - ["SCIM_KEY_Kana_Shift", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2b436cf4401dbbbdfa87dc951cbf7db5", null],
│ │ │ │ │ - ["SCIM_KEY_Eisu_Shift", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa336a18e0cc6816ae374f00455795544f", null],
│ │ │ │ │ - ["SCIM_KEY_Eisu_toggle", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa53c2b7fa33c2297b182e44b9927aa718", null],
│ │ │ │ │ - ["SCIM_KEY_Kanji_Bangou", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaabc5ff54a523bc25777aef7f71a9e18", null],
│ │ │ │ │ - ["SCIM_KEY_Zen_Koho", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac27e6b4048c0fa4ba672662cc5a06179", null],
│ │ │ │ │ - ["SCIM_KEY_Mae_Koho", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae0457405b383d83548f5cf39074cea55", null],
│ │ │ │ │ - ["SCIM_KEY_Home", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5bc5b214763c3818f8d9c4088eba4be2", null],
│ │ │ │ │ - ["SCIM_KEY_Left", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8336344080bad6f9cd5852f95c578ca0", null],
│ │ │ │ │ - ["SCIM_KEY_Up", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa20cc66d7f69533dd1a3811f49d327b83", null],
│ │ │ │ │ - ["SCIM_KEY_Right", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa09e50871ced48c6cec7e1781bd283976", null],
│ │ │ │ │ - ["SCIM_KEY_Down", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faabbc8f8099035d1a57ef40010fa9c71d", null],
│ │ │ │ │ - ["SCIM_KEY_Prior", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa210cca5bbe0e9e1f0166ee60858fa11f", null],
│ │ │ │ │ - ["SCIM_KEY_Page_Up", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6ece505ee912e1e2ea71329232758135", null],
│ │ │ │ │ - ["SCIM_KEY_Next", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa42d0219c73a7ba885948bd2cb61ccee0", null],
│ │ │ │ │ - ["SCIM_KEY_Page_Down", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9d4f87a0a2668460a06f66e56faad8ed", null],
│ │ │ │ │ - ["SCIM_KEY_End", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3136376fee744684153c852f15f407f9", null],
│ │ │ │ │ - ["SCIM_KEY_Begin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1407e35a07786e08d8e90aba76be5536", null],
│ │ │ │ │ - ["SCIM_KEY_Select", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4a07557e480d6795ef7c4584c909d943", null],
│ │ │ │ │ - ["SCIM_KEY_Print", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1c7f182bd568e518576b2b55be5b92fa", null],
│ │ │ │ │ - ["SCIM_KEY_Execute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9917037ae5680ada923cbdf5f7de6e8d", null],
│ │ │ │ │ - ["SCIM_KEY_Insert", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1fda71a35bb697ebb3c3faa8f10e7143", null],
│ │ │ │ │ - ["SCIM_KEY_Undo", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa51b89f3a8b10716b0cbc226728f8fd38", null],
│ │ │ │ │ - ["SCIM_KEY_Redo", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa10a035a84c8c442cf5514094b78ef312", null],
│ │ │ │ │ - ["SCIM_KEY_Menu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac3ec2176e526fa181ce3be67755ec587", null],
│ │ │ │ │ - ["SCIM_KEY_Find", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9a42d8eea51e1d5c74b1f5258e1074dd", null],
│ │ │ │ │ - ["SCIM_KEY_Cancel", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa085c4396abcf0a364250ad7b10682152", null],
│ │ │ │ │ - ["SCIM_KEY_Help", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6bb773871f29804e80e38cdef9a994b7", null],
│ │ │ │ │ - ["SCIM_KEY_Break", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad7c455b371e7d486cafd5cf8c680ad0e", null],
│ │ │ │ │ - ["SCIM_KEY_Mode_switch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa805dd795564cf394383332dd703dd457", null],
│ │ │ │ │ - ["SCIM_KEY_Num_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa0df84c5de2e2105e5dcc76fdd139081", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Space", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa472aa4bb9d4de452a186fa28fd4f55e4", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Tab", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa99cd2138f682781739142924b7a2f6ff", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Enter", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2b051b63ac0ef23ca08ba1d5d10dea94", null],
│ │ │ │ │ - ["SCIM_KEY_KP_F1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faeb0c1fa7ef37e9b85319cc0f67de0e1b", null],
│ │ │ │ │ - ["SCIM_KEY_KP_F2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7b19907d39ddad5c49361a0b2eb0a5d4", null],
│ │ │ │ │ - ["SCIM_KEY_KP_F3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa295c2110d932b65213d6b108095fece6", null],
│ │ │ │ │ - ["SCIM_KEY_KP_F4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2d1dc4ab684ca9ae69a9fd7d76d87c5c", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Home", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88e1e6795e4ad92e5e853efca73cf3f3", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Left", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa932bfcfa4ac3552d5f250d89a3729dc1", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Up", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2abb16a9fec5e4068d9771ce60a0e618", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Right", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1459e87d68a7aafcab58d66c55d7f874", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Down", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9715ec3f749d12e8ef38a9d8f5d0f433", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Prior", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8837cce84fc302b962d218467a1d9457", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Page_Up", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac45ca0057b254da22ce6865bff183cfd", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Next", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1281469493db0f005c42a76a4cc7cc93", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Page_Down", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0d54a2405732da4ef81a4e25d179e4be", null],
│ │ │ │ │ - ["SCIM_KEY_KP_End", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1e6ffe0e8b121cd6d8b1961b0bc870c8", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Begin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facbe2a503c99c9aace99727c5a48a501b", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Insert", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa243f8d31d4dcf40701d42ea7352a6bf9", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Delete", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae8bf09e8153ca7af411d3501e4962800", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Equal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa2877b38f6502826369f9fefd38b1304", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Multiply", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa02f678e9c64229db680fbabff96292e5", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Add", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa3b8ff66c0f12c9942091ca504e2553c", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Separator", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa96fcc6c221caa0734ee5238ccde78f2f", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Subtract", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facaa38c005cd8ae6380d469275b33208e", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Decimal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6aa92dfe8d0eaacadb2d284751e9bbde", null],
│ │ │ │ │ - ["SCIM_KEY_KP_Divide", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad17061bf400c4ea839cf617865a7f94f", null],
│ │ │ │ │ - ["SCIM_KEY_KP_0", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad77138404b762d73435c27fa037bbaae", null],
│ │ │ │ │ - ["SCIM_KEY_KP_1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa59c090f443cc243d9ed2b012b09f5b22", null],
│ │ │ │ │ - ["SCIM_KEY_KP_2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf4219478b04a35b0d62923b979372bfd", null],
│ │ │ │ │ - ["SCIM_KEY_KP_3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fade11e130d0933e7dd4dbe705bd651527", null],
│ │ │ │ │ - ["SCIM_KEY_KP_4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa11790e890e1f3dc11ef2acf041a0f8f6", null],
│ │ │ │ │ - ["SCIM_KEY_KP_5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6ec9b753ae38196497c95570680d698e", null],
│ │ │ │ │ - ["SCIM_KEY_KP_6", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa86095af43699e6c95bb9155fa1028eea", null],
│ │ │ │ │ - ["SCIM_KEY_KP_7", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac52255ea440391f8b7aab7be7149c9c4", null],
│ │ │ │ │ - ["SCIM_KEY_KP_8", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facf006264e952f65d899794e1cc7b4ef2", null],
│ │ │ │ │ - ["SCIM_KEY_KP_9", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac287654e4f8bc7099970ecf9a178dce0", null],
│ │ │ │ │ - ["SCIM_KEY_F1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa85376551de6915de2e710439bf45adeb", null],
│ │ │ │ │ - ["SCIM_KEY_F2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faba0929d1b08139b545ce69f3aaf6a174", null],
│ │ │ │ │ - ["SCIM_KEY_F3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3d9a66f7bc677ecaf5754cdf6ede3456", null],
│ │ │ │ │ - ["SCIM_KEY_F4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac9253b6fdcb69c2e2e87417420616e36", null],
│ │ │ │ │ - ["SCIM_KEY_F5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa846d185c9cccaad1a79e4befc21171e1", null],
│ │ │ │ │ - ["SCIM_KEY_F6", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa640aa37aaa60e85e5e6e94b79d8a8d8c", null],
│ │ │ │ │ - ["SCIM_KEY_F7", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa282994512033c0168de6c6a7bd960faf", null],
│ │ │ │ │ - ["SCIM_KEY_F8", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae7698c213998de6743d3eb5180418756", null],
│ │ │ │ │ - ["SCIM_KEY_F9", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa48ed6be2574f7983d072942fda33209f", null],
│ │ │ │ │ - ["SCIM_KEY_F10", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa7615daf628ac432ee996598518e5933", null],
│ │ │ │ │ - ["SCIM_KEY_F11", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fade766607fab5aa7e188ca72abea2843d", null],
│ │ │ │ │ - ["SCIM_KEY_F12", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf1280f12a5504233e6e08c59e7e00049", null],
│ │ │ │ │ - ["SCIM_KEY_F13", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac27523d0e93612de453119839f205a98", null],
│ │ │ │ │ - ["SCIM_KEY_F14", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4dcd3064da5bb3d18ff5e96dd1d08cf6", null],
│ │ │ │ │ - ["SCIM_KEY_F15", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faac5755df0f1948655c67186b568881ee", null],
│ │ │ │ │ - ["SCIM_KEY_F16", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7115b3307b9013f3f861bfa03db4e4c2", null],
│ │ │ │ │ - ["SCIM_KEY_F17", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4bd52d8a0d4e115ff8f7a4efd8785e51", null],
│ │ │ │ │ - ["SCIM_KEY_F18", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa11ff61da2a54bba19d59eb79e55eee0c", null],
│ │ │ │ │ - ["SCIM_KEY_F19", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa4b3431b02649324fde0c1fa71943c0e", null],
│ │ │ │ │ - ["SCIM_KEY_F20", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faddd14e2780623ab0b90317a7d408071a", null],
│ │ │ │ │ - ["SCIM_KEY_F21", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa837256cf410603e8b7b4f3c05a0355df", null],
│ │ │ │ │ - ["SCIM_KEY_F22", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab773232d6e9fc4cb259add7bbe116969", null],
│ │ │ │ │ - ["SCIM_KEY_F23", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf689747509c757f033cee4605d851a9a", null],
│ │ │ │ │ - ["SCIM_KEY_F24", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa11b896756609e83ca204edf09d354c68", null],
│ │ │ │ │ - ["SCIM_KEY_F25", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa45f91f5480c96417091917091b090125", null],
│ │ │ │ │ - ["SCIM_KEY_F26", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa8f601c4598f30f45d84b6595953d9fd", null],
│ │ │ │ │ - ["SCIM_KEY_F27", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9f508c07cdc042b5b1594c6db0b84a9c", null],
│ │ │ │ │ - ["SCIM_KEY_F28", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa03da839931cd953ad1ea5a61de92bf9f", null],
│ │ │ │ │ - ["SCIM_KEY_F29", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab1405e4108801063ad5e5011a3e4759e", null],
│ │ │ │ │ - ["SCIM_KEY_F30", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8b91c068deafe25a0deebabf961971be", null],
│ │ │ │ │ - ["SCIM_KEY_F31", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa32ff4ffecaa02625ca5782eed76f699f", null],
│ │ │ │ │ - ["SCIM_KEY_F32", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafe39978cd4745be22e84097d03927cd8", null],
│ │ │ │ │ - ["SCIM_KEY_F33", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa62fa5b234dd89a83bb9b012347302621", null],
│ │ │ │ │ - ["SCIM_KEY_F34", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7b1e0718228b62caa9ebe52a00d1ff5e", null],
│ │ │ │ │ - ["SCIM_KEY_F35", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d699f9e468bc137a9c2dd7bcadcf7e4", null],
│ │ │ │ │ - ["SCIM_KEY_Shift_L", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab40f069a86f34db22bc4131290e6143e", null],
│ │ │ │ │ - ["SCIM_KEY_Shift_R", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa444729a96bfdb290a824477907aca284", null],
│ │ │ │ │ - ["SCIM_KEY_Control_L", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa15034fb550be9af1d41dc44130f9d1a", null],
│ │ │ │ │ - ["SCIM_KEY_Control_R", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafc4dddd9c0b04dc3977b9dd58dc62816", null],
│ │ │ │ │ - ["SCIM_KEY_Caps_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa24a7e53e5405f151abeff572c4cdd04", null],
│ │ │ │ │ - ["SCIM_KEY_Shift_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faed695e314177660765266dd80b682d9c", null],
│ │ │ │ │ - ["SCIM_KEY_Meta_L", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa20f11a47eaf92125af6214589bce992d", null],
│ │ │ │ │ - ["SCIM_KEY_Meta_R", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac5659c32418e9272f05215ae91051979", null],
│ │ │ │ │ - ["SCIM_KEY_Alt_L", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa318fbc4651be24cdac4dfed2b4b1a7b4", null],
│ │ │ │ │ - ["SCIM_KEY_Alt_R", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa29876260b41e0fe8e40821c51ee81e78", null],
│ │ │ │ │ - ["SCIM_KEY_Super_L", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8aa86471b107020aa0f448e07ad94e87", null],
│ │ │ │ │ - ["SCIM_KEY_Super_R", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa98b989490f327358902c993da4f51cec", null],
│ │ │ │ │ - ["SCIM_KEY_Hyper_L", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac84ac4b726c8d6437107e999df5476de", null],
│ │ │ │ │ - ["SCIM_KEY_Hyper_R", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa26d30b8f6d451bb810039bbc6ee52f5b", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa0429ce1691243007e29f93e110968be", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Level2_Latch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa13651b794c1f6193a921d54cfc5ce267", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Level3_Shift", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad2b178c6ac863c3fb8499b2de5fb1a57", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Level3_Latch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3d5ffacbd416091421f8a8925f17195a", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Level3_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facdcf57d14e4b57e111980ab01a6b7b07", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Group_Shift", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facf1e34df33fe11af88e5a1f7f2f3b426", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Group_Latch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facae61cd3a5f4cd4304edc3b65718e08d", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Group_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faac96c155ce2f9666d1211b1568250e71", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Next_Group", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9c1ccf5fd0ce66c2fc47db9226234cec", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Next_Group_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf83ccc2dc16af097e75d511e8209b35", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Prev_Group", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7690e52b4c75a33e5cd72e174780d75a", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Prev_Group_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadb51e0807488effd869fbc67b9fcc8a5", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_First_Group", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa03c52b212c069fe5f227f158d9f85b8f", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_First_Group_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafe5580f4ef11b43a735e308495075cae", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Last_Group", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2813f0364266f87b23f032f8aea894a7", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Last_Group_Lock", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa2e7c8018938d431e4b91946f5281b3c", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Left_Tab", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faec81480ff2e35d388f69be2a28597ec3", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Move_Line_Up", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa82916f08d6fd3a4f3640123384271f72", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Move_Line_Down", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf216e280c414e5d2ee08610fe547e70c", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Partial_Line_Up", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9fdc254356f83d61f9398cb18e56a962", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Partial_Line_Down", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa74649650aff01c2fcfe5e12a750d9328", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Partial_Space_Left", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa2bfc53b3f56414e21e39d6891efa981", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Partial_Space_Right", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa524b4c832757055e50ff06b5139b0974", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Set_Margin_Left", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facab87f0ccd19ee950e6ec79dbd03cb13", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Set_Margin_Right", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab4412e00ab17658a3649d9a8c111033f", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Release_Margin_Left", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa727c9849cd1a1a711eeb6f4c677bb52", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Release_Margin_Right", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab7aaf3423cdb343acaa46521618c85a4", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Release_Both_Margins", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faecade5045dc6dd5f7d1b1287a6e6acb8", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Fast_Cursor_Left", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad464839472d72727dd75eb2e5f2805f4", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Fast_Cursor_Right", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa60c18216ef311e004e57432ebe766917", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Fast_Cursor_Up", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3c65ae808c0eb365becee691490a2346", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Fast_Cursor_Down", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fada49b7771e2ce6e4a63c3554c3fbf143", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Continuous_Underline", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad6a85820202090ec31519719080c3c57", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Discontinuous_Underline", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa68dd2be9e048b5e2c91124236f854e1d", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Emphasize", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa85fc5d132bbef51b4a5fb5b95d36b5ce", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Center_Object", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5914073c5305bc53f1c379251c79d23c", null],
│ │ │ │ │ - ["SCIM_KEY_ISO_Enter", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9e498be2e0e39518c5f705b137c2162e", null],
│ │ │ │ │ - ["SCIM_KEY_dead_grave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9170ff4498838d055401e6cf440a675b", null],
│ │ │ │ │ - ["SCIM_KEY_dead_acute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facbfbf6fe5c4994a1256db4e5cb7b2bb6", null],
│ │ │ │ │ - ["SCIM_KEY_dead_circumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa50fc627300dfce4018f39b9991264e15", null],
│ │ │ │ │ - ["SCIM_KEY_dead_tilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad9929853d4f7baf24a2ab5da197aa08b", null],
│ │ │ │ │ - ["SCIM_KEY_dead_macron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad7a68fd1d4310d83c517ea38eeb69226", null],
│ │ │ │ │ - ["SCIM_KEY_dead_breve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3a682ab0aa21b515a67e1ff99214e5f7", null],
│ │ │ │ │ - ["SCIM_KEY_dead_abovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa24d4e247e83038a78b5f0ab6b4d18453", null],
│ │ │ │ │ - ["SCIM_KEY_dead_diaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa80f868f9c463227cf69b6b9b5693457c", null],
│ │ │ │ │ - ["SCIM_KEY_dead_abovering", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6c0423faa0459bc219704fead2f4c25b", null],
│ │ │ │ │ - ["SCIM_KEY_dead_doubleacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa825d453f3449422963ae531017587c3f", null],
│ │ │ │ │ - ["SCIM_KEY_dead_caron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac49b8be2bc6477c687253ec688266828", null],
│ │ │ │ │ - ["SCIM_KEY_dead_cedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab0d154e4d89cbe0a9b362ea058f2fc16", null],
│ │ │ │ │ - ["SCIM_KEY_dead_ogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa71cf68520007127eb18ba1f28a99ede", null],
│ │ │ │ │ - ["SCIM_KEY_dead_iota", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaff3518c58d570efccc3fe46c0823114", null],
│ │ │ │ │ - ["SCIM_KEY_dead_voiced_sound", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa09575a42e667cc18992f13eb8cbc7e90", null],
│ │ │ │ │ - ["SCIM_KEY_dead_semivoiced_sound", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa19be6bedc4b2c9cb2ed8c4a2fa264e73", null],
│ │ │ │ │ - ["SCIM_KEY_dead_belowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafb08308819c687670570f8cb3edf2c39", null],
│ │ │ │ │ - ["SCIM_KEY_dead_hook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5efe903e5dc1699a2ba7788a75544e13", null],
│ │ │ │ │ - ["SCIM_KEY_dead_horn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf746bfed612b3876797872981ed14f0b", null],
│ │ │ │ │ - ["SCIM_KEY_First_Virtual_Screen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6839b93d89ec9d6ccc862890e73bda1c", null],
│ │ │ │ │ - ["SCIM_KEY_Prev_Virtual_Screen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3bed6a092176f054985356071b82f1de", null],
│ │ │ │ │ - ["SCIM_KEY_Next_Virtual_Screen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8e363c27a0062d613167e07e8827f39f", null],
│ │ │ │ │ - ["SCIM_KEY_Last_Virtual_Screen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faeed23c723d109be8fbeaebbaabcd3557", null],
│ │ │ │ │ - ["SCIM_KEY_Terminate_Server", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5a680d0d3286d42566034f79316c2cba", null],
│ │ │ │ │ - ["SCIM_KEY_AccessX_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab96e09e2c7a36585d08ea2ce48224e6e", null],
│ │ │ │ │ - ["SCIM_KEY_AccessX_Feedback_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae7bd9b5046161921ee885b4e0b0ae94c", null],
│ │ │ │ │ - ["SCIM_KEY_RepeatKeys_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faefb8dff8a60cbb3288e5f6af8a2e22ba", null],
│ │ │ │ │ - ["SCIM_KEY_SlowKeys_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3957fdd69098d7d9adfb9c95877f1480", null],
│ │ │ │ │ - ["SCIM_KEY_BounceKeys_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5db65eaf76d963ff6bf571193f169c4f", null],
│ │ │ │ │ - ["SCIM_KEY_StickyKeys_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1c40c1e73db70196fc32c9115c18a1aa", null],
│ │ │ │ │ - ["SCIM_KEY_MouseKeys_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0024c959b37644e30f769324e33c3087", null],
│ │ │ │ │ - ["SCIM_KEY_MouseKeys_Accel_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d0cec82ff0d89775ca5fc25aa08631f", null],
│ │ │ │ │ - ["SCIM_KEY_Overlay1_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa77e9167b03d1e716aedcbc983339069d", null],
│ │ │ │ │ - ["SCIM_KEY_Overlay2_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa47a17c690674ed9b74a90c62688eb189", null],
│ │ │ │ │ - ["SCIM_KEY_AudibleBell_Enable", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5bddd3284f7e0c2eacc823d8f7e5f8fe", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Left", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa06db20c26e8d5eb922c47dda30849d84", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Right", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9c5552935dc1db0d96cd22ffb12d8b6b", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Up", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf3d0712e955eefdb18609b8dc9d90992", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Down", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa739527c5fdff3e9f45651a7fb534acc6", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_UpLeft", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf2a42b0a5730fb388bdf0dafb4d52b4", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_UpRight", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa43fde6d6db6604395cbe86f3889c00da", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DownLeft", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac4bc26e46839520159da317794611b35", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DownRight", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa92cc73ae7ce08387b0eeeeacf55731ec", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Button_Dflt", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa30071f22882e75170f38bcfb58215d7e", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Button1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa332183830555b556d3c5bca80207d3a5", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Button2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9d66bc5068d9322f3ba3f327dbfe5c94", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Button3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac27710f2caafdf2ef5069db14335be50", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Button4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faefed3745129253440459ddfd928b9131", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Button5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa25a859ba25cb3c3cb46f29d130ba486e", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DblClick_Dflt", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac7ce27735a82b06695e6f4d25f1431c5", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DblClick1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa3da2166ef10b565e67b217ef300c0c6", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DblClick2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa25048a6315cfba96af2a34782d8ac74b", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DblClick3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa14c2a1f5d3a14b71c9b9bcae7f3fde3f", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DblClick4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa1a0c8efa4e71675a2c99000a35ca06c", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DblClick5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf6538183a359555dceef50d31799a266", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Drag_Dflt", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faae9fb029aaf47f6882dec03716ec6e9c", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Drag1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa037e283e8478d384d3ce4c56b583a1bf", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Drag2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad5836ad3e1877757230203ab31a7b071", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Drag3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa47fd0dc10f9e573a8197a68adb7e0a7", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Drag4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5d858ebba899ca0339b092101136a9ff", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Drag5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4e4a275442b6b21d9ab68715dce838d7", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_EnableKeys", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6daa70a92633407c73960eaf8625af36", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_Accelerate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3d6f9631178d521141a6891d3ba7ca9e", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DfltBtnNext", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4bb07080e5a4b4f719634f65f0d50209", null],
│ │ │ │ │ - ["SCIM_KEY_Pointer_DfltBtnPrev", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8f1303f274cda08e2213425a05c9320b", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Duplicate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8d96c420750614775985a02333a7da56", null],
│ │ │ │ │ - ["SCIM_KEY_3270_FieldMark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faea8b6f0fbad31001be9534c968c079d5", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Right2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7e377f2c7efca61ce383477d72df1961", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Left2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab11a9aa3775cd4fb7daa901a7f7f1422", null],
│ │ │ │ │ - ["SCIM_KEY_3270_BackTab", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9c69e4d57dab60f83149c900e80e6a86", null],
│ │ │ │ │ - ["SCIM_KEY_3270_EraseEOF", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fade01bd4f4214107e8c7597e6b522f3f2", null],
│ │ │ │ │ - ["SCIM_KEY_3270_EraseInput", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5ea257b3d39282c86f51271d2e131f98", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Reset", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad1cbb51f3d6ccf13a426a2e3584b9066", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Quit", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa41d8813955fced646070be1983ae7277", null],
│ │ │ │ │ - ["SCIM_KEY_3270_PA1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa16af4600e7c4eec0670410eb29806838", null],
│ │ │ │ │ - ["SCIM_KEY_3270_PA2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa48419a69e6b2c6e80aa84441f5fb7338", null],
│ │ │ │ │ - ["SCIM_KEY_3270_PA3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa493391df0d021b600b415e444b9c852e", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Test", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae859d3f7bc8220b9a5b53cf68b4d9c76", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Attn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7b2a2823f1ee085f6df527d9eb10d65b", null],
│ │ │ │ │ - ["SCIM_KEY_3270_CursorBlink", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa355846f96a096cd4f8e39711ee5fa72b", null],
│ │ │ │ │ - ["SCIM_KEY_3270_AltCursor", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa61c0300ed283590e3d449ae1a780be07", null],
│ │ │ │ │ - ["SCIM_KEY_3270_KeyClick", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa99308702b180106cc4178918a9e3151d", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Jump", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3028adff3bc9ddfb43b83a938996d8b2", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Ident", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa17a1d4a716974d35cd382965e76e9bfc", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Rule", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad6557f953d5e5664505393af0c93da25", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Copy", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3921492800ee4b4202969fcac8d21bc3", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Play", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa84a66bc08dd06b83dc3acf5d1a7fdb2a", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Setup", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac9cbb9e59378ef694ab9880c34ad02ed", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Record", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa488f5a9b543482b8c55e1609766ab9a", null],
│ │ │ │ │ - ["SCIM_KEY_3270_ChangeScreen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facc6ddd8baddb83944e7054b13692dd70", null],
│ │ │ │ │ - ["SCIM_KEY_3270_DeleteWord", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa456b0085a4af8050afc6f68ce5203662", null],
│ │ │ │ │ - ["SCIM_KEY_3270_ExSelect", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa138b41c55654e49a214fde9671e5f6ed", null],
│ │ │ │ │ - ["SCIM_KEY_3270_CursorSelect", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa68d2d878c4f831d5ba3056f8c959cb44", null],
│ │ │ │ │ - ["SCIM_KEY_3270_PrintScreen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4f450d12d6ce1fbf31f58a2013df6971", null],
│ │ │ │ │ - ["SCIM_KEY_3270_Enter", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab71b26c9fb1c04f1e20ee58001f3c4f9", null],
│ │ │ │ │ - ["SCIM_KEY_space", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1f5ec5b51e11e202411c6cc3600f9576", null],
│ │ │ │ │ - ["SCIM_KEY_exclam", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa05f0bc998a5a1c6bb0fbd5b515d495fc", null],
│ │ │ │ │ - ["SCIM_KEY_quotedbl", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa78e6b85cac7cd34873d804a616450ac3", null],
│ │ │ │ │ - ["SCIM_KEY_numbersign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab39171dbd2e29251f8bc312a1e11195a", null],
│ │ │ │ │ - ["SCIM_KEY_dollar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafd24870afd2b313384477f9429308acd", null],
│ │ │ │ │ - ["SCIM_KEY_percent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4a3c2c4cd9eee3ec7ce92dbe7379919a", null],
│ │ │ │ │ - ["SCIM_KEY_ampersand", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa86bd3fd7154e455c47a702aa0f0d6ede", null],
│ │ │ │ │ - ["SCIM_KEY_apostrophe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa199002376932a7191e124a9d6241542d", null],
│ │ │ │ │ - ["SCIM_KEY_quoteright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa337446da4a976fde59666458be3062db", null],
│ │ │ │ │ - ["SCIM_KEY_parenleft", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab3fe151ac72f374a4d39ac1ac2733987", null],
│ │ │ │ │ - ["SCIM_KEY_parenright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf83565085dd7e3a0625f3a5cdd0bf8ff", null],
│ │ │ │ │ - ["SCIM_KEY_asterisk", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac05acf6bdec1017a7af947deffde83e1", null],
│ │ │ │ │ - ["SCIM_KEY_plus", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faddced0f26fadfa44b2e85e69577a5aa7", null],
│ │ │ │ │ - ["SCIM_KEY_comma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa351e718e4b2bc376a5d9c6800211cd5c", null],
│ │ │ │ │ - ["SCIM_KEY_minus", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa48236b1b2c811b7b805fd27241c8b848", null],
│ │ │ │ │ - ["SCIM_KEY_period", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6f897cfb08c6e797c3cfc4f9ea9bd0d7", null],
│ │ │ │ │ - ["SCIM_KEY_slash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa70dfdb3febb3a370974ac7f798c697f2", null],
│ │ │ │ │ - ["SCIM_KEY_0", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6a18e32b13e4861e6f8d7f206b356599", null],
│ │ │ │ │ - ["SCIM_KEY_1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa919d81dbd639b0791335fc48e908f828", null],
│ │ │ │ │ - ["SCIM_KEY_2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa8dd263da19f3e6a51bd877ea930b575", null],
│ │ │ │ │ - ["SCIM_KEY_3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa308beb73c3857aec2fb985b36df6357d", null],
│ │ │ │ │ - ["SCIM_KEY_4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf97a9bddf4b930785fac3c179e4c6d19", null],
│ │ │ │ │ - ["SCIM_KEY_5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0c8ca5626f4ebc831dd500aff4cc3629", null],
│ │ │ │ │ - ["SCIM_KEY_6", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1fd786e6e320798b51980910db70f075", null],
│ │ │ │ │ - ["SCIM_KEY_7", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9c669461c2579f08482703297be3d0d3", null],
│ │ │ │ │ - ["SCIM_KEY_8", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4982358a3cb6238ef77cdf1a257c1331", null],
│ │ │ │ │ - ["SCIM_KEY_9", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf882de75a4251eeb1457b720ad343011", null],
│ │ │ │ │ - ["SCIM_KEY_colon", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa47cee221bb5d960381f72404bfc4ca7a", null],
│ │ │ │ │ - ["SCIM_KEY_semicolon", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad73b7686c70c36065727da3c56655f02", null],
│ │ │ │ │ - ["SCIM_KEY_less", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa74a216b81852905a00cba977274e003c", null],
│ │ │ │ │ - ["SCIM_KEY_equal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa231823e429cfd3e03cc4cdddb4c1f689", null],
│ │ │ │ │ - ["SCIM_KEY_greater", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa000989516f10ffb80d7e2838030a8fbf", null],
│ │ │ │ │ - ["SCIM_KEY_question", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad16b1f978a3005d6ce9b247cca7ee603", null],
│ │ │ │ │ - ["SCIM_KEY_at", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5e8f9c919501ea50ea636373e9880561", null],
│ │ │ │ │ - ["SCIM_KEY_A", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faabcea5ef82855527490a2844b82d098a", null],
│ │ │ │ │ - ["SCIM_KEY_B", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa7bbd7e31b6aa1286ea6a6097132e477", null],
│ │ │ │ │ - ["SCIM_KEY_C", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0c2b7723dde3762f86b43d70f36a5fdb", null],
│ │ │ │ │ - ["SCIM_KEY_D", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab71707efd74f8313960963725af2c992", null],
│ │ │ │ │ - ["SCIM_KEY_E", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa99055e6c64a2d72534a19e74ecc6eeb3", null],
│ │ │ │ │ - ["SCIM_KEY_F", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa84ad306e19ed020c7179c9d56277e32c", null],
│ │ │ │ │ - ["SCIM_KEY_G", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0398e02a931bcf61039e5cc995f29b68", null],
│ │ │ │ │ - ["SCIM_KEY_H", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9f3f8272e3410802b8ae4da5a52ebb13", null],
│ │ │ │ │ - ["SCIM_KEY_I", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa707939585b68d69aa8cbfac46a960164", null],
│ │ │ │ │ - ["SCIM_KEY_J", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac098cacdf0a5f495724dfe2eb59c03db", null],
│ │ │ │ │ - ["SCIM_KEY_K", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad44255ae6e0826b0659130760a16e26c", null],
│ │ │ │ │ - ["SCIM_KEY_L", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7e78908f49842a364a310c182b6fd664", null],
│ │ │ │ │ - ["SCIM_KEY_M", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac80dedd006aa685320e647400645e55f", null],
│ │ │ │ │ - ["SCIM_KEY_N", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa765db0ab50175ce602a01c327e3a4680", null],
│ │ │ │ │ - ["SCIM_KEY_O", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4f77da2e17675a465e1dd68b14a6f1e6", null],
│ │ │ │ │ - ["SCIM_KEY_P", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafecb4976e2a404e808e3be624fd7f86f", null],
│ │ │ │ │ - ["SCIM_KEY_Q", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5c760af22742c1bd639dfe10a5a3812a", null],
│ │ │ │ │ - ["SCIM_KEY_R", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad9d4c654dd21bc21f02fe8590ec52cdd", null],
│ │ │ │ │ - ["SCIM_KEY_S", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6eaac125366c7426332a97bc96631c08", null],
│ │ │ │ │ - ["SCIM_KEY_T", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab5c589bf2779b016e4412908b23770f1", null],
│ │ │ │ │ - ["SCIM_KEY_U", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa77cf442b9dcb39344b329af1b3f8b8a7", null],
│ │ │ │ │ - ["SCIM_KEY_V", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa766e3c0716e926131baa9d37f2f11e15", null],
│ │ │ │ │ - ["SCIM_KEY_W", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad4ee7235312d723cb7ef3a1310d986a6", null],
│ │ │ │ │ - ["SCIM_KEY_X", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2a1a437a81526b48ae695eab2de4ca52", null],
│ │ │ │ │ - ["SCIM_KEY_Y", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad99cc0d3eafa5937bcc429120c505457", null],
│ │ │ │ │ - ["SCIM_KEY_Z", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad6796b357339d37a0e820b23c1dd000f", null],
│ │ │ │ │ - ["SCIM_KEY_bracketleft", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac7bfe07a7d398131f4bd4bf99c7c25ea", null],
│ │ │ │ │ - ["SCIM_KEY_backslash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf8e32b0ccf5595a88c5788e39c98b29a", null],
│ │ │ │ │ - ["SCIM_KEY_bracketright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac57e60c5e0b4dff2c83d6e79304d3dfd", null],
│ │ │ │ │ - ["SCIM_KEY_asciicircum", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faecd0a1958cb0fcf56b28e51bff825256", null],
│ │ │ │ │ - ["SCIM_KEY_underscore", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa48391dd5e94fddfcb8ed3e3873d27550", null],
│ │ │ │ │ - ["SCIM_KEY_grave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5cebac4f472e30f4f0f58cb30edce00b", null],
│ │ │ │ │ - ["SCIM_KEY_a", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab26dc1f6bd82b6794dadb0f10a66eaa3", null],
│ │ │ │ │ - ["SCIM_KEY_b", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf3df8c028bb6dacf8a8a1cdca4f76265", null],
│ │ │ │ │ - ["SCIM_KEY_c", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9b49243a93d75d0f3033902407164269", null],
│ │ │ │ │ - ["SCIM_KEY_d", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadae95d2afa936cff093998d0e7ac54a1", null],
│ │ │ │ │ - ["SCIM_KEY_e", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7d1075b3c6103d7d2b71219bdf53d1a6", null],
│ │ │ │ │ - ["SCIM_KEY_f", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf649a27960d8c0c4bc2238112254140", null],
│ │ │ │ │ - ["SCIM_KEY_g", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa53d982b8a7f2b99cec48dcce73d3c24b", null],
│ │ │ │ │ - ["SCIM_KEY_h", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac9cc059bb0809893d6fcb451fb388578", null],
│ │ │ │ │ - ["SCIM_KEY_i", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6ef589c663850531e241b6c0df328fa5", null],
│ │ │ │ │ - ["SCIM_KEY_j", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa145dc7f721dab8e46b88e735fe163da9", null],
│ │ │ │ │ - ["SCIM_KEY_k", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2161985bb41d77cf1f83dc4fb917b217", null],
│ │ │ │ │ - ["SCIM_KEY_l", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0f841daf870c28e79bee8f56b4591590", null],
│ │ │ │ │ - ["SCIM_KEY_m", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf4edbeebbd73b8016293c28f3f36e440", null],
│ │ │ │ │ - ["SCIM_KEY_n", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5cc431f4adb2bfb3ec8f2713351d6034", null],
│ │ │ │ │ - ["SCIM_KEY_o", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8c95d6931325737ab8b60dee12913286", null],
│ │ │ │ │ - ["SCIM_KEY_p", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faec487f740c9fca0b52b63984289f3b8b", null],
│ │ │ │ │ - ["SCIM_KEY_q", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa40a55beebc32842354435e6020e3fcc8", null],
│ │ │ │ │ - ["SCIM_KEY_r", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf999ffa387c28fae655f14fc991ea0be", null],
│ │ │ │ │ - ["SCIM_KEY_s", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae3b1be6b558422a9cff54d89882b3b41", null],
│ │ │ │ │ - ["SCIM_KEY_t", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2ce6f02e7abd84043f994f77c6f95531", null],
│ │ │ │ │ - ["SCIM_KEY_u", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa30f0e5c2ec2f371c482a30af407e8517", null],
│ │ │ │ │ - ["SCIM_KEY_v", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88c22a2ef90dd75fbbb4fa650d250066", null],
│ │ │ │ │ - ["SCIM_KEY_w", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa24b1f5198a753783ab91a496a33335da", null],
│ │ │ │ │ - ["SCIM_KEY_x", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa94daae4bc0365bce8c4023e828236a6f", null],
│ │ │ │ │ - ["SCIM_KEY_y", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab3f2b7aa7a4779ea9481410d94f5b49b", null],
│ │ │ │ │ - ["SCIM_KEY_z", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa65c8bc4baac40be030d492644d87f568", null],
│ │ │ │ │ - ["SCIM_KEY_braceleft", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad43e1ef179c36ec5c765e4ef652858a5", null],
│ │ │ │ │ - ["SCIM_KEY_bar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafaa99d5029cb53ec4033e81a75b6b15d", null],
│ │ │ │ │ - ["SCIM_KEY_braceright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7e407e45c84f31f45f1bf55dc4252191", null],
│ │ │ │ │ - ["SCIM_KEY_asciitilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faca3b4a0127991c42ba94910fd014d796", null],
│ │ │ │ │ - ["SCIM_KEY_nobreakspace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4beae8ca53eecb31ddffa7161bf01289", null],
│ │ │ │ │ - ["SCIM_KEY_exclamdown", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7b1919604c1b3eac16e06352e9d2e57b", null],
│ │ │ │ │ - ["SCIM_KEY_cent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafb43205250b7afe50a9eb63d5d12a2e1", null],
│ │ │ │ │ - ["SCIM_KEY_sterling", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa06c597f88c5883abb3bafc703359d3a5", null],
│ │ │ │ │ - ["SCIM_KEY_currency", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad3291cc8cfe434d90e7e620aca49480e", null],
│ │ │ │ │ - ["SCIM_KEY_yen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1fea70fdbd16037b177889c5839ba0e1", null],
│ │ │ │ │ - ["SCIM_KEY_brokenbar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1ab252dc49eafa7e1b049686c05b2752", null],
│ │ │ │ │ - ["SCIM_KEY_section", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa40161487c2e51d09a385538218acc144", null],
│ │ │ │ │ - ["SCIM_KEY_diaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa837428f77c993057f7a4eb622fdd2f74", null],
│ │ │ │ │ - ["SCIM_KEY_copyright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1a37c01f8d091508ae32de806e09a0da", null],
│ │ │ │ │ - ["SCIM_KEY_ordfeminine", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2e85953c5215ef95385b73938dfb205d", null],
│ │ │ │ │ - ["SCIM_KEY_guillemotleft", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad8e41b623bbb9dcbbce6271d90d2126b", null],
│ │ │ │ │ - ["SCIM_KEY_notsign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadca478c60d57f49593b006183c589a6c", null],
│ │ │ │ │ - ["SCIM_KEY_hyphen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6edbd1062264eede1ef1b45af93c81f4", null],
│ │ │ │ │ - ["SCIM_KEY_registered", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0978c0e321ee6f39f33d4b4da45877d4", null],
│ │ │ │ │ - ["SCIM_KEY_macron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa89a3bb2e6536e2bcc5cae8f15b5933a", null],
│ │ │ │ │ - ["SCIM_KEY_degree", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad3a338064a54232692289b0200cc44ca", null],
│ │ │ │ │ - ["SCIM_KEY_plusminus", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa608d94b8054fb20f1ac5d0820f5a5ee1", null],
│ │ │ │ │ - ["SCIM_KEY_twosuperior", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa35769befcdd142cd42684deb1b341b37", null],
│ │ │ │ │ - ["SCIM_KEY_threesuperior", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1b3ac85837fd53eef1d2fa469edef026", null],
│ │ │ │ │ - ["SCIM_KEY_acute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa55516f624218392b97232b6a2a45164", null],
│ │ │ │ │ - ["SCIM_KEY_mu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabb2133d81c052c91ac4db87c41a36ca7", null],
│ │ │ │ │ - ["SCIM_KEY_paragraph", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae66612a28ab9f0def2c509309738b137", null],
│ │ │ │ │ - ["SCIM_KEY_periodcentered", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0391559bccd567d9d26f516d80f6749d", null],
│ │ │ │ │ - ["SCIM_KEY_cedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa33338327013f65ae0feecd0d15b904a", null],
│ │ │ │ │ - ["SCIM_KEY_onesuperior", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa08d8b82742cfe71c0ed204d731f9b8d7", null],
│ │ │ │ │ - ["SCIM_KEY_masculine", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa79ccf1f7cf10341f1acc5a083e91826d", null],
│ │ │ │ │ - ["SCIM_KEY_guillemotright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa92d976d7e1608abbfcd1ebf888e79307", null],
│ │ │ │ │ - ["SCIM_KEY_onequarter", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3a95eff0e9d2acab6ec40a28e0f8d12c", null],
│ │ │ │ │ - ["SCIM_KEY_onehalf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6d12d9563c6beaee6b40f258deb166be", null],
│ │ │ │ │ - ["SCIM_KEY_threequarters", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1508289f149ba83482dc91612a2e367f", null],
│ │ │ │ │ - ["SCIM_KEY_questiondown", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa540f55dc16decdb4e0f565138aacf9f3", null],
│ │ │ │ │ - ["SCIM_KEY_Agrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa90b33e4c949c1106a99d8063fd8cec74", null],
│ │ │ │ │ - ["SCIM_KEY_Aacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf9e13e8962df55594b8ed5769cdb5d1d", null],
│ │ │ │ │ - ["SCIM_KEY_Acircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa27051626bb9c5cc7902c8fe136e3a836", null],
│ │ │ │ │ - ["SCIM_KEY_Atilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaace3545cf94e534da0f6c2e12978885", null],
│ │ │ │ │ - ["SCIM_KEY_Adiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8c5b19dacdddc09e3c2ee064ee7ece40", null],
│ │ │ │ │ - ["SCIM_KEY_Aring", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6c7fb287f1b853db3fd8d251a7c8228c", null],
│ │ │ │ │ - ["SCIM_KEY_AE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1613d31a3a9245cb4100090c141d9474", null],
│ │ │ │ │ - ["SCIM_KEY_Ccedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab50c916c85b7d54b7fba49b5485be488", null],
│ │ │ │ │ - ["SCIM_KEY_Egrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa19cb3194f7cd854c8ec638f5609283d5", null],
│ │ │ │ │ - ["SCIM_KEY_Eacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa11ae2f06924fff0b7b598f587f24f77b", null],
│ │ │ │ │ - ["SCIM_KEY_Ecircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3736c48a975d1055178b8114ca615304", null],
│ │ │ │ │ - ["SCIM_KEY_Ediaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa39941eaab652375db8a82280eae766ce", null],
│ │ │ │ │ - ["SCIM_KEY_Igrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf478436e66ece84a36e9d4f062c1a369", null],
│ │ │ │ │ - ["SCIM_KEY_Iacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4468061a7dcc8fda1d44be28b042cd2e", null],
│ │ │ │ │ - ["SCIM_KEY_Icircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad803e9b9bb88955b6544e0bf8c0aabda", null],
│ │ │ │ │ - ["SCIM_KEY_Idiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faeb67c577e1b3b97f1eb8911ba583b5aa", null],
│ │ │ │ │ - ["SCIM_KEY_ETH", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaf7ef851a3e8e71e3b3246eed1c80516", null],
│ │ │ │ │ - ["SCIM_KEY_Eth", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa86b3d93af881e4f3e4237e79e28ff672", null],
│ │ │ │ │ - ["SCIM_KEY_Ntilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf4c6fb1541213f00114604dc342d82db", null],
│ │ │ │ │ - ["SCIM_KEY_Ograve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faecad80b0dfd9f91e7ffd124944dd78a9", null],
│ │ │ │ │ - ["SCIM_KEY_Oacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa940dc211651e596afa65c5a9925d6396", null],
│ │ │ │ │ - ["SCIM_KEY_Ocircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa47240af9026030b17189e500a8f93a8f", null],
│ │ │ │ │ - ["SCIM_KEY_Otilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5fd2983d83dc7f0869216bc1345354c2", null],
│ │ │ │ │ - ["SCIM_KEY_Odiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab614876541efae428f2e6e8eb5f384b9", null],
│ │ │ │ │ - ["SCIM_KEY_multiply", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa24db699f5305190581b71e05a30c8e05", null],
│ │ │ │ │ - ["SCIM_KEY_Ooblique", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa2cea8b82af688576c3f5fbf95742239", null],
│ │ │ │ │ - ["SCIM_KEY_Oslash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8c74d8c4cc036337c53db3d602fc5584", null],
│ │ │ │ │ - ["SCIM_KEY_Ugrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2606abc7016ae71eab662a95f248cb32", null],
│ │ │ │ │ - ["SCIM_KEY_Uacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf33da07de7386628c83837768961bbb6", null],
│ │ │ │ │ - ["SCIM_KEY_Ucircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa827cf83b21a19da5c82d60755cdfc3a7", null],
│ │ │ │ │ - ["SCIM_KEY_Udiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad68ab5b01f911d3efb8887b2f39dd31f", null],
│ │ │ │ │ - ["SCIM_KEY_Yacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2dbd9df34cf288a96798d46d95b60c47", null],
│ │ │ │ │ - ["SCIM_KEY_THORN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa383929b8114cbce47480d3aa569c9a03", null],
│ │ │ │ │ - ["SCIM_KEY_Thorn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad4f55981e0979b537be4c17d745dd76d", null],
│ │ │ │ │ - ["SCIM_KEY_ssharp", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faba8ecbc86c64dfd74fc140faa45b2dad", null],
│ │ │ │ │ - ["SCIM_KEY_agrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab14a259a04a7219cd8d19f2a6faf4594", null],
│ │ │ │ │ - ["SCIM_KEY_aacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1e3bf6a1aa8de82c8bee8c085477fe88", null],
│ │ │ │ │ - ["SCIM_KEY_acircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab2e214077aae71ea66d5730df04d7b75", null],
│ │ │ │ │ - ["SCIM_KEY_atilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa21d4e0dc1bb73e04f82fe25b9d70dfef", null],
│ │ │ │ │ - ["SCIM_KEY_adiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9bbce8f2701e69a11180649ef0ec9e92", null],
│ │ │ │ │ - ["SCIM_KEY_aring", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4e4984a3578f85a97b1b8c70c2c97af2", null],
│ │ │ │ │ - ["SCIM_KEY_ae", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5eaf3e227fe85d57bb34a51e5c02efce", null],
│ │ │ │ │ - ["SCIM_KEY_ccedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1aef81ba4767586e75f411d5ce878bd6", null],
│ │ │ │ │ - ["SCIM_KEY_egrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa19e4f1274612d56a9b9a8ebc406b173a", null],
│ │ │ │ │ - ["SCIM_KEY_eacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faee59ce5ef2648a809557c873aa9e6757", null],
│ │ │ │ │ - ["SCIM_KEY_ecircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabb2bb4c96ce835d61566ec21ea69bdd3", null],
│ │ │ │ │ - ["SCIM_KEY_ediaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa66211baf2a6f5ddbc5dcc9808fe3882", null],
│ │ │ │ │ - ["SCIM_KEY_igrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9478626285c07c40c36dbe59248d1cff", null],
│ │ │ │ │ - ["SCIM_KEY_iacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa260b187a7758ea0eb718442cdff30f9", null],
│ │ │ │ │ - ["SCIM_KEY_icircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5a76f6c97d7fac359c3da9e8525fd294", null],
│ │ │ │ │ - ["SCIM_KEY_idiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5c2953bcb3edb9a5eafe7ea1539b11e0", null],
│ │ │ │ │ - ["SCIM_KEY_eth", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1f51532bf0f1ef1dd598552c8c91bdfc", null],
│ │ │ │ │ - ["SCIM_KEY_ntilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9ea2924729a3993ed617e930f77bd071", null],
│ │ │ │ │ - ["SCIM_KEY_ograve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6d4ee355e5053a778821a320cca5f75d", null],
│ │ │ │ │ - ["SCIM_KEY_oacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa22b72b7be25d011c4a6627bec9c4f7ef", null],
│ │ │ │ │ - ["SCIM_KEY_ocircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7c248a4a7c575ab197003fa27c057bee", null],
│ │ │ │ │ - ["SCIM_KEY_otilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa582bb7a898bcc2a10a6f9e316de282a", null],
│ │ │ │ │ - ["SCIM_KEY_odiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa19cff05a5706bb2bcff202f8d20b312b", null],
│ │ │ │ │ - ["SCIM_KEY_division", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa681291d1606049a0990169341154ed55", null],
│ │ │ │ │ - ["SCIM_KEY_oslash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa17224392ec7cb1276f7bb2d0d29c52db", null],
│ │ │ │ │ - ["SCIM_KEY_ooblique", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7c12700b77af10324fbda383779e1b5a", null],
│ │ │ │ │ - ["SCIM_KEY_ugrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaa6842c52d678700c71a70247aa4cec9", null],
│ │ │ │ │ - ["SCIM_KEY_uacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facf9eda7245b6ad00844ea0b6e074f9ff", null],
│ │ │ │ │ - ["SCIM_KEY_ucircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf2b8caf63d82eb09c6d44cf2fa43382", null],
│ │ │ │ │ - ["SCIM_KEY_udiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1b7a9071429b61c1988047c0868e3784", null],
│ │ │ │ │ - ["SCIM_KEY_yacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa78651c2001eed9a5d7760421f641c30d", null],
│ │ │ │ │ - ["SCIM_KEY_thorn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fade74bb7c524f7cb4ea761b07ae9cd8d0", null],
│ │ │ │ │ - ["SCIM_KEY_ydiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa96495294df1642c5f84c0c000a34263e", null],
│ │ │ │ │ - ["SCIM_KEY_Aogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0233c4e25f4977fd548377aa62bb604d", null],
│ │ │ │ │ - ["SCIM_KEY_breve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4d9979646c1a4e827cca3a1ba50c5ff8", null],
│ │ │ │ │ - ["SCIM_KEY_Lstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab18b4ca1c437758b96b93415413b60f8", null],
│ │ │ │ │ - ["SCIM_KEY_Lcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac01c4d015e516657bf9d2ea7b5fbcf5b", null],
│ │ │ │ │ - ["SCIM_KEY_Sacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabd62af7e54d50a485f3047470253d32c", null],
│ │ │ │ │ - ["SCIM_KEY_Scaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6785223346dfa247cb1995737c1bca2d", null],
│ │ │ │ │ - ["SCIM_KEY_Scedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafbe8526c7ba03e4d5d9a3e90ecf38e7f", null],
│ │ │ │ │ - ["SCIM_KEY_Tcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa200eb50bc83535a4f3b7e39dfca169c4", null],
│ │ │ │ │ - ["SCIM_KEY_Zacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa63b25cc913cd5b18a6b7d0b1f30ef0b2", null],
│ │ │ │ │ - ["SCIM_KEY_Zcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa8afda9289129a5a80d1e95c210e21b0", null],
│ │ │ │ │ - ["SCIM_KEY_Zabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9f7cd704ed466ded7b03e743b0791335", null],
│ │ │ │ │ - ["SCIM_KEY_aogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa53bef237f670bc7c82616d3bcbb3341a", null],
│ │ │ │ │ - ["SCIM_KEY_ogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8ed771a8bcd8c8756d792e456681f80e", null],
│ │ │ │ │ - ["SCIM_KEY_lstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad433d70760ce7213444d3c9a396c8356", null],
│ │ │ │ │ - ["SCIM_KEY_lcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4c22480ed765316614691775a3ebc8a2", null],
│ │ │ │ │ - ["SCIM_KEY_sacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9474829fff2d6ff38cd1024de29ce838", null],
│ │ │ │ │ - ["SCIM_KEY_caron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa029b5189a702d390c1c782f39b875b62", null],
│ │ │ │ │ - ["SCIM_KEY_scaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa51287cf1158b818d2aaa153e91c74f4c", null],
│ │ │ │ │ - ["SCIM_KEY_scedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa43dd4f4d68cfcd7113ddef52473483e6", null],
│ │ │ │ │ - ["SCIM_KEY_tcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2c866983b38fd240b77f0556b71781c9", null],
│ │ │ │ │ - ["SCIM_KEY_zacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faabceddc7ae8fa82d1318ec08d1875441", null],
│ │ │ │ │ - ["SCIM_KEY_doubleacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3552d7b46a94771a0ee3a8597d16a814", null],
│ │ │ │ │ - ["SCIM_KEY_zcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa459efce627a3477211fe18758f9822bd", null],
│ │ │ │ │ - ["SCIM_KEY_zabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa563752c8a564502c8ac3b4787c16c81", null],
│ │ │ │ │ - ["SCIM_KEY_Racute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa38d58722114c07fa698a78049ef145d5", null],
│ │ │ │ │ - ["SCIM_KEY_Abreve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa402aba16fbda4dcaa1986e87018e3af8", null],
│ │ │ │ │ - ["SCIM_KEY_Lacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa331b41c00168703042431479d4d0c34", null],
│ │ │ │ │ - ["SCIM_KEY_Cacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa45b9015bdc6828cd1d58396bc7770fd7", null],
│ │ │ │ │ - ["SCIM_KEY_Ccaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac04e301bf1f6cf820b05fb63c49a58fb", null],
│ │ │ │ │ - ["SCIM_KEY_Eogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7410a44abd5f95f879f9b22272ed1627", null],
│ │ │ │ │ - ["SCIM_KEY_Ecaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf03b528084daa581b3df9bd211be0916", null],
│ │ │ │ │ - ["SCIM_KEY_Dcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4b1a7dce44b9bf049b2ff8dc6c3f63e6", null],
│ │ │ │ │ - ["SCIM_KEY_Dstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa97e8c5025e9043d6105ca37acb2c2f5e", null],
│ │ │ │ │ - ["SCIM_KEY_Nacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3e224ba233567721c6d2b23f0f156581", null],
│ │ │ │ │ - ["SCIM_KEY_Ncaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facee2ff8b5759c6bb2fce63913ffcbbb8", null],
│ │ │ │ │ - ["SCIM_KEY_Odoubleacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadb64791b538835c4f0d00577fb7e0046", null],
│ │ │ │ │ - ["SCIM_KEY_Rcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa33444ef6e9eb67a5740af7992dabd40e", null],
│ │ │ │ │ - ["SCIM_KEY_Uring", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa41711b6c610ab04223664c9f0f10759e", null],
│ │ │ │ │ - ["SCIM_KEY_Udoubleacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9e328bd2d45517650c32d02d45352caa", null],
│ │ │ │ │ - ["SCIM_KEY_Tcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabaaa4cf332837574cacf22ecd2796af7", null],
│ │ │ │ │ - ["SCIM_KEY_racute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fade6c61813ecdb3c3b08e03ec255fc9db", null],
│ │ │ │ │ - ["SCIM_KEY_abreve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa16e5fd3401a57d00112520f46bba3847", null],
│ │ │ │ │ - ["SCIM_KEY_lacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa25e65976c2bc0f81477dc96ce204f8a3", null],
│ │ │ │ │ - ["SCIM_KEY_cacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad30008343344b73d73f57e47eca08377", null],
│ │ │ │ │ - ["SCIM_KEY_ccaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa502cce0f18705330da80f78d4676097e", null],
│ │ │ │ │ - ["SCIM_KEY_eogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa95808ca52cc5dc6fb5fac617c656f611", null],
│ │ │ │ │ - ["SCIM_KEY_ecaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4216bed61b6335db72339a17a9fdc12a", null],
│ │ │ │ │ - ["SCIM_KEY_dcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5ed73338094d24ef823d11db288a888c", null],
│ │ │ │ │ - ["SCIM_KEY_dstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf55cac26a3a12214b47d7183117b09ab", null],
│ │ │ │ │ - ["SCIM_KEY_nacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa702946ae77e69a74755f53fc8cf2e2fd", null],
│ │ │ │ │ - ["SCIM_KEY_ncaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6e4397d6ea02616ab2cf08b3436caabf", null],
│ │ │ │ │ - ["SCIM_KEY_odoubleacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae221142fa7e9c59dfdab72c9209227c8", null],
│ │ │ │ │ - ["SCIM_KEY_udoubleacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac35cfc8e274a7439f01bac649f0e2b9a", null],
│ │ │ │ │ - ["SCIM_KEY_rcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab9231e6be96b92c652078888c2bed191", null],
│ │ │ │ │ - ["SCIM_KEY_uring", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa714f8c42d938fc5aa0e516c013940018", null],
│ │ │ │ │ - ["SCIM_KEY_tcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa104aa7021e60c29e2b54d6808d1fb391", null],
│ │ │ │ │ - ["SCIM_KEY_abovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4857ebbf737c964919ec878a03eb3cad", null],
│ │ │ │ │ - ["SCIM_KEY_Hstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaa49df07a5501b07eb885c11a49e7d98", null],
│ │ │ │ │ - ["SCIM_KEY_Hcircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac3ca3457f02daab031c9614290be318c", null],
│ │ │ │ │ - ["SCIM_KEY_Iabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa837851da52c8d2cc249de5ac423e453e", null],
│ │ │ │ │ - ["SCIM_KEY_Gbreve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab7389d8d46c7aac61db09209fd0d8ae3", null],
│ │ │ │ │ - ["SCIM_KEY_Jcircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1b4649d5c6d4c310683521ae39aaab91", null],
│ │ │ │ │ - ["SCIM_KEY_hstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5e10d0569b76e4b5c0972392bf7a6e9c", null],
│ │ │ │ │ - ["SCIM_KEY_hcircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3f9838feb5fdf18e59119a5fc983e174", null],
│ │ │ │ │ - ["SCIM_KEY_idotless", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac9deface08f3a9eda39422c06c7490e9", null],
│ │ │ │ │ - ["SCIM_KEY_gbreve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadb23cfc1097c16f2580aa0fddd943645", null],
│ │ │ │ │ - ["SCIM_KEY_jcircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3e2ab9254f6499c53a401f63a430baf2", null],
│ │ │ │ │ - ["SCIM_KEY_Cabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabaf8cbe5618ec6b4523d6a984be4082d", null],
│ │ │ │ │ - ["SCIM_KEY_Ccircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faeea3636793ec0c38a71056e18008d30a", null],
│ │ │ │ │ - ["SCIM_KEY_Gabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa74f24f4a8fe8f309b8f0af030f4c3b2b", null],
│ │ │ │ │ - ["SCIM_KEY_Gcircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fade1eacccd61c5a0e9fd1b7531830acc9", null],
│ │ │ │ │ - ["SCIM_KEY_Ubreve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6131f1f9c35c9c6c0062436c66b473a2", null],
│ │ │ │ │ - ["SCIM_KEY_Scircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2bc7ba8de1053a33678ed3b1fa0b33a5", null],
│ │ │ │ │ - ["SCIM_KEY_cabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faada939538675c4cff7f2ab44e6803e82", null],
│ │ │ │ │ - ["SCIM_KEY_ccircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa59cb5e0dac2a654cd0b470f7dd0656b1", null],
│ │ │ │ │ - ["SCIM_KEY_gabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafdcc20ea8b4b98b4b83253a94302b300", null],
│ │ │ │ │ - ["SCIM_KEY_gcircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa20118959801b68787ee2e6047cead7ca", null],
│ │ │ │ │ - ["SCIM_KEY_ubreve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab9e439f353823761a3a2fe2fb2b3fadd", null],
│ │ │ │ │ - ["SCIM_KEY_scircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa747f0fe4fb1446bc55ad132c1e31e47d", null],
│ │ │ │ │ - ["SCIM_KEY_kra", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa85c4ed43617e0a241db8bf62f868b22f", null],
│ │ │ │ │ - ["SCIM_KEY_kappa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa7f60523853063c47e438b9dee63f3bf", null],
│ │ │ │ │ - ["SCIM_KEY_Rcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa840f75bfeaaf16fc6453e2981beafec2", null],
│ │ │ │ │ - ["SCIM_KEY_Itilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6dada35ef293426c6226f49fd05d5163", null],
│ │ │ │ │ - ["SCIM_KEY_Lcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0321b7b6f11347af6ad0393790af074d", null],
│ │ │ │ │ - ["SCIM_KEY_Emacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa488ee13111383e34d3fc064d7239d873", null],
│ │ │ │ │ - ["SCIM_KEY_Gcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa02173a7ba8c570027f30042f1e05ffa6", null],
│ │ │ │ │ - ["SCIM_KEY_Tslash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf782b6b4b63e13ccf785cd4e196f327b", null],
│ │ │ │ │ - ["SCIM_KEY_rcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabfde3a6c822d27b6f244f4869f9efc91", null],
│ │ │ │ │ - ["SCIM_KEY_itilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8c79bd36568cfe49ec5b4b1482c59ba7", null],
│ │ │ │ │ - ["SCIM_KEY_lcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1ac4f34e7b38f534f1a10182f920a782", null],
│ │ │ │ │ - ["SCIM_KEY_emacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1253ef3142b6456f85107e59afe5041a", null],
│ │ │ │ │ - ["SCIM_KEY_gcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf3a1f6f06c37266d47c9042b23ce905b", null],
│ │ │ │ │ - ["SCIM_KEY_tslash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafbe089eb53149b45d6617d21d44b50f2", null],
│ │ │ │ │ - ["SCIM_KEY_ENG", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab24122aa85ca32911531dbe809bf2be5", null],
│ │ │ │ │ - ["SCIM_KEY_eng", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7e4d86fcd0ba7b094f3f884e70c26388", null],
│ │ │ │ │ - ["SCIM_KEY_Amacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa455bf4d4967bce81c6af3d6bf10929f", null],
│ │ │ │ │ - ["SCIM_KEY_Iogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6afce3f146c66fc63fc51759fc82e6c4", null],
│ │ │ │ │ - ["SCIM_KEY_Eabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4c37e5e4d375b0535803d0da8ec3ddea", null],
│ │ │ │ │ - ["SCIM_KEY_Imacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadd4331cb55f0ec28af6279bdd118f00e", null],
│ │ │ │ │ - ["SCIM_KEY_Ncedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5be91817e40fb49485ac36fb7306e5c6", null],
│ │ │ │ │ - ["SCIM_KEY_Omacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf7480e53f6ca31e9a226fc5f9a62db86", null],
│ │ │ │ │ - ["SCIM_KEY_Kcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faba66e4c5289bc87990af6b7ec01eec6f", null],
│ │ │ │ │ - ["SCIM_KEY_Uogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3c099321692ac8c29dc7eec061658787", null],
│ │ │ │ │ - ["SCIM_KEY_Utilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa10a514580471e922ac41ff890763cec0", null],
│ │ │ │ │ - ["SCIM_KEY_Umacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0973749615e0285b7e3451bac0ab3bd2", null],
│ │ │ │ │ - ["SCIM_KEY_amacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafaca58c8b05f2739571645a5e84d580b", null],
│ │ │ │ │ - ["SCIM_KEY_iogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa28b6960d28fac96c9254dea7bf4f8e12", null],
│ │ │ │ │ - ["SCIM_KEY_eabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faffacef5f152dae566dd925124e749a93", null],
│ │ │ │ │ - ["SCIM_KEY_imacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa443bcd83ed99d309c66783c11a412e78", null],
│ │ │ │ │ - ["SCIM_KEY_ncedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabd02c5657d2a10d04f282277fa0753b0", null],
│ │ │ │ │ - ["SCIM_KEY_omacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa257e9b977b1e371d248704a131cda9f6", null],
│ │ │ │ │ - ["SCIM_KEY_kcedilla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa50fa7e22d5a6fec9bbd5701c276b0ecc", null],
│ │ │ │ │ - ["SCIM_KEY_uogonek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4e7c537c7eef17538c172b1041f77234", null],
│ │ │ │ │ - ["SCIM_KEY_utilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad72531a0b5466419f41ef184b5dcfb1c", null],
│ │ │ │ │ - ["SCIM_KEY_umacron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa13e8f916437c5eb36fdba4f9e810f3e7", null],
│ │ │ │ │ - ["SCIM_KEY_Babovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1ccb304ec15bed20b549411bec1a25c1", null],
│ │ │ │ │ - ["SCIM_KEY_babovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa55bd14b1eb9941f29265d9f532526d33", null],
│ │ │ │ │ - ["SCIM_KEY_Dabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa36a9e508d35a43549b8d7865e9cdea7f", null],
│ │ │ │ │ - ["SCIM_KEY_Wgrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae193c4a97d68648091bd6bd4e2f37353", null],
│ │ │ │ │ - ["SCIM_KEY_Wacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaa2510d3cd0ea566672a6730a9166141", null],
│ │ │ │ │ - ["SCIM_KEY_dabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac28403b29a68ff1cd10b5e98aa71805d", null],
│ │ │ │ │ - ["SCIM_KEY_Ygrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad08e2f01b8adef35f2888fa95d605bd3", null],
│ │ │ │ │ - ["SCIM_KEY_Fabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac247d8bb94b1e1be73c34ae9d985ee41", null],
│ │ │ │ │ - ["SCIM_KEY_fabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4372842a4346554c2a402059c4fc631c", null],
│ │ │ │ │ - ["SCIM_KEY_Mabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa42580ba082a4a1dd5010ee2d953e26fc", null],
│ │ │ │ │ - ["SCIM_KEY_mabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9320117c0253140fd9efe0f38714caf7", null],
│ │ │ │ │ - ["SCIM_KEY_Pabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab3dda930367b57f4700d9fa600d342f5", null],
│ │ │ │ │ - ["SCIM_KEY_wgrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d32f16bcdf6ed104c45b524a15a4507", null],
│ │ │ │ │ - ["SCIM_KEY_pabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad896d1aebd4d0553df11648ea3d28baf", null],
│ │ │ │ │ - ["SCIM_KEY_wacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa66b4ec94c1634ec6243dac3bc342b46e", null],
│ │ │ │ │ - ["SCIM_KEY_Sabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faadf91c650a50be01088048aad5b08b90", null],
│ │ │ │ │ - ["SCIM_KEY_ygrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa53e6ae51c987008e49b4d2185dc700fc", null],
│ │ │ │ │ - ["SCIM_KEY_Wdiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa5c42370d251693f32cc07bd3c8b2062", null],
│ │ │ │ │ - ["SCIM_KEY_wdiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadfcfacac182598fb273b0a81d3d68c23", null],
│ │ │ │ │ - ["SCIM_KEY_sabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac1d6555952bc99927e3dcadbbe79e793", null],
│ │ │ │ │ - ["SCIM_KEY_Wcircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa59d867945e00c54c3602d195f648a1ec", null],
│ │ │ │ │ - ["SCIM_KEY_Tabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9d0622881c594bcf684d533fdf842627", null],
│ │ │ │ │ - ["SCIM_KEY_Ycircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad5090535b9573b8bda18a7bfa9fdcca8", null],
│ │ │ │ │ - ["SCIM_KEY_wcircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad8e3dd22cdd9f7ea9e94a55df447a20a", null],
│ │ │ │ │ - ["SCIM_KEY_tabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac2aa1f6ab273b6a0c193057d44df9bbf", null],
│ │ │ │ │ - ["SCIM_KEY_ycircumflex", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facaf1587d6b87d887ef1491091c71f1a1", null],
│ │ │ │ │ - ["SCIM_KEY_OE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf936afc6112308d62c0b80283549ed3", null],
│ │ │ │ │ - ["SCIM_KEY_oe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa73866f1b5b3b2d5b03f81036a2dd3a41", null],
│ │ │ │ │ - ["SCIM_KEY_Ydiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa27c976c68ee524f6c7ebeb8a560e2292", null],
│ │ │ │ │ - ["SCIM_KEY_overline", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad69216a50a3359578eaac56f461093c4", null],
│ │ │ │ │ - ["SCIM_KEY_kana_fullstop", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa988d31b1e2ccd8b8f92bcdcb34b54f6b", null],
│ │ │ │ │ - ["SCIM_KEY_kana_openingbracket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaa6a8d623d403088d4e98bdbacb617b4", null],
│ │ │ │ │ - ["SCIM_KEY_kana_closingbracket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa749d9e1bea0218d9994ea163f495ba17", null],
│ │ │ │ │ - ["SCIM_KEY_kana_comma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa84bd1bd80dec1c7471d58f7a71534154", null],
│ │ │ │ │ - ["SCIM_KEY_kana_conjunctive", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5a761c1a6acc5ac2c8a0fee8d1df1501", null],
│ │ │ │ │ - ["SCIM_KEY_kana_middledot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6abd9b5be61def49363d19b85ad70b06", null],
│ │ │ │ │ - ["SCIM_KEY_kana_WO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadcfb9eccf3d76f25c413f50cfd2fdd81", null],
│ │ │ │ │ - ["SCIM_KEY_kana_a", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac8c0bf9b663c6037b668978b0759fe6f", null],
│ │ │ │ │ - ["SCIM_KEY_kana_i", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5efafcf2063dd259ef9f06e53d4415c6", null],
│ │ │ │ │ - ["SCIM_KEY_kana_u", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5156de97453931d5ffa55111bef1aba7", null],
│ │ │ │ │ - ["SCIM_KEY_kana_e", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa64564e68de37dfac7b5142171d444cc9", null],
│ │ │ │ │ - ["SCIM_KEY_kana_o", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab6b29f23d2d747c6d26f6677df5011c0", null],
│ │ │ │ │ - ["SCIM_KEY_kana_ya", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6312e5d980fa586decf99e3a4f90bcc3", null],
│ │ │ │ │ - ["SCIM_KEY_kana_yu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad99d8b42c86293c08d9104abb8293842", null],
│ │ │ │ │ - ["SCIM_KEY_kana_yo", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6b271c4005a2bedad6c6dbc5bdbcfccc", null],
│ │ │ │ │ - ["SCIM_KEY_kana_tsu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8b9e5e362cd139540a27ddbc89d5f513", null],
│ │ │ │ │ - ["SCIM_KEY_kana_tu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faeaf9f15c1d2bf7f95ca6632241973a21", null],
│ │ │ │ │ - ["SCIM_KEY_prolongedsound", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa806b043765d4330d2d6048ae9265b727", null],
│ │ │ │ │ - ["SCIM_KEY_kana_A", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa957a7e77af12fbc1b77706e6de15a6f", null],
│ │ │ │ │ - ["SCIM_KEY_kana_I", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa15e2d65c3278c1eac65205ff1991f56c", null],
│ │ │ │ │ - ["SCIM_KEY_kana_U", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa60a8751c455b3e8153ff36cf92c52afa", null],
│ │ │ │ │ - ["SCIM_KEY_kana_E", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7bdbc0d49f9ae59b6934801db8ea3cc8", null],
│ │ │ │ │ - ["SCIM_KEY_kana_O", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa56d4c3741f20b0859122f5854b24f256", null],
│ │ │ │ │ - ["SCIM_KEY_kana_KA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5bb60d022a9c08ac7e397ec1f1731681", null],
│ │ │ │ │ - ["SCIM_KEY_kana_KI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa96e223baf94d2a32aacd3828455b54bf", null],
│ │ │ │ │ - ["SCIM_KEY_kana_KU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6d8bbb2159a8db9459f90c39d59c17be", null],
│ │ │ │ │ - ["SCIM_KEY_kana_KE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2999039673514630e743ebb5b5240e49", null],
│ │ │ │ │ - ["SCIM_KEY_kana_KO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4d63eb033bb7dd9985d8452382bc4d10", null],
│ │ │ │ │ - ["SCIM_KEY_kana_SA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa09789f9baf60c78addf89e11cced25b", null],
│ │ │ │ │ - ["SCIM_KEY_kana_SHI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa750200be405aa42a052483c4b048f8dd", null],
│ │ │ │ │ - ["SCIM_KEY_kana_SU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa0e2c1a73d7ff761109c100902f17572", null],
│ │ │ │ │ - ["SCIM_KEY_kana_SE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0eff7234c7b0a33ffe8b1c449b264e10", null],
│ │ │ │ │ - ["SCIM_KEY_kana_SO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4c11ab827b210e9d08eee1f29411e7e5", null],
│ │ │ │ │ - ["SCIM_KEY_kana_TA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa566e19a7c72468666e3376a1dbcd3407", null],
│ │ │ │ │ - ["SCIM_KEY_kana_CHI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facb55c35482c42e71880d4f7769f78e27", null],
│ │ │ │ │ - ["SCIM_KEY_kana_TI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac7ccfc197e7ebc85888974af0c08413f", null],
│ │ │ │ │ - ["SCIM_KEY_kana_TSU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6f133dc7b5931ea572c7261f989885a3", null],
│ │ │ │ │ - ["SCIM_KEY_kana_TU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa929185b36094c21ce1d09134a70b7515", null],
│ │ │ │ │ - ["SCIM_KEY_kana_TE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa28cdf925d532a574824ec3d587c79ee4", null],
│ │ │ │ │ - ["SCIM_KEY_kana_TO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa23a5aacebf8ef0e1b77aaa457f263994", null],
│ │ │ │ │ - ["SCIM_KEY_kana_NA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa14e876ddd94fe75f779a70005889d975", null],
│ │ │ │ │ - ["SCIM_KEY_kana_NI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa68359a2b00b3e7c63e37762e14e9e248", null],
│ │ │ │ │ - ["SCIM_KEY_kana_NU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaf765c8a480786d55190830607866ac3", null],
│ │ │ │ │ - ["SCIM_KEY_kana_NE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf9f560338ef91aa292f8098b8f1693cb", null],
│ │ │ │ │ - ["SCIM_KEY_kana_NO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa508430cae472390ba6ed63c7250a030f", null],
│ │ │ │ │ - ["SCIM_KEY_kana_HA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae37cc3d67a5c05e73e3b41ab1b2299f1", null],
│ │ │ │ │ - ["SCIM_KEY_kana_HI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3b1c29f92e292ecb3a3042cb10685d68", null],
│ │ │ │ │ - ["SCIM_KEY_kana_FU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0cf31ec17fd7cda4593d0357293b6d5d", null],
│ │ │ │ │ - ["SCIM_KEY_kana_HU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa039e7ab7fa8af8e48e140a0a98f6f104", null],
│ │ │ │ │ - ["SCIM_KEY_kana_HE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf6e58efbf9f1275c90e64cc88f4ac6b", null],
│ │ │ │ │ - ["SCIM_KEY_kana_HO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabab4676371c461df0045e04d014bc0e7", null],
│ │ │ │ │ - ["SCIM_KEY_kana_MA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1e68488bff55898a56aecf21d91f2c44", null],
│ │ │ │ │ - ["SCIM_KEY_kana_MI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5e6f48196c9081919ab9533205e08adc", null],
│ │ │ │ │ - ["SCIM_KEY_kana_MU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabab5f137c549d35840cc5294c509642a", null],
│ │ │ │ │ - ["SCIM_KEY_kana_ME", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac7815c96a25979d9c615ad6d67cf992f", null],
│ │ │ │ │ - ["SCIM_KEY_kana_MO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa83e7cbd891a800fceaeff1712d428e26", null],
│ │ │ │ │ - ["SCIM_KEY_kana_YA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa75f545937524f67ffe6419b7a3cd6c81", null],
│ │ │ │ │ - ["SCIM_KEY_kana_YU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabbf18cb7bc4279688d6922f2637b031e", null],
│ │ │ │ │ - ["SCIM_KEY_kana_YO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1bf879c77c22db13595039f70beebe26", null],
│ │ │ │ │ - ["SCIM_KEY_kana_RA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88b1a118d342ee090c2d934b43ce4659", null],
│ │ │ │ │ - ["SCIM_KEY_kana_RI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa68ea87bcb92207bb1abb60d483c7766a", null],
│ │ │ │ │ - ["SCIM_KEY_kana_RU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8c113d2614d04e5d9bca49556416682e", null],
│ │ │ │ │ - ["SCIM_KEY_kana_RE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab0de42d67199027fdce186e6b31047b4", null],
│ │ │ │ │ - ["SCIM_KEY_kana_RO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad7579fb75a5c02b3f23260ce8b2ff0ef", null],
│ │ │ │ │ - ["SCIM_KEY_kana_WA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad422816e2e914418e46343d63188e5ea", null],
│ │ │ │ │ - ["SCIM_KEY_kana_N", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2553bd05a8085d599c2fd901c37bb0fd", null],
│ │ │ │ │ - ["SCIM_KEY_voicedsound", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab7f0db8e939e085b98ab0ef89a33dfc9", null],
│ │ │ │ │ - ["SCIM_KEY_semivoicedsound", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab65dc104e255a8433e3e6a639ed4083e", null],
│ │ │ │ │ - ["SCIM_KEY_kana_switch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab84439947fb202c70921ed3b0794916a", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_0", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6e2618da758d79574edbb5db086a4f57", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa373795ae5de0e2d7295773b8d2ab9d24", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa89bc4fe14cac16afdadc399d80a22bb6", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa07e7a1a5f8083cd835ee5995b58ee5a9", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae580819551b1cce94c9b08c34e3d29dd", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4b807d3f285823867c0d6cbef34a78af", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_6", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4e65fc828917bb613e22a2b49171b473", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_7", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa19982544ad130b44c7e5e4d3496dd6c1", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_8", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facbb5a7671c1df053a260adc4d27631fe", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_9", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa40b6b995f7ee8c8094f6c2b683684700", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_percent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6ba9eac0c127c39fac2695c99719eebc", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_superscript_alef", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fada1e606a73b463e9c663eafb5192fec4", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_tteh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae79b07bfe3cff3b650682b7b2b9b7091", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_peh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa08b3e014eddbfd4f2a45d58654943d0b", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_tcheh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad8f9cd6cd06da2f664b8f25983550c2b", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_ddal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6174418c8afbb45a7440e5bee20d0201", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_rreh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4a6370d323dc497c3ff3728bb2126e70", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_comma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa643bf2a0c8956ae32d9d288d8e846b18", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_fullstop", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4ca672d755bc215dedfb11d2b6bd0872", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_0", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facf6460aec05ee1d7fababce1a3598337", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac384e35d26f660adbdb2b9ef9e2b1e5b", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_2", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facb52564ed60bb53f216860c76b74ddbf", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa60f8041138322ac6c22ba56d851f1464", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_4", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa909168c8b1bf226771116d58d0551801", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faae8924dd49cb2b4ccf38ea53ef18f123", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_6", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa34778094cc5c7d7fd90b2ca3755cf18c", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_7", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8b2b5938b5b528ce4749ba6ca8c2d2c0", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_8", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad8c1e4fd46fc07db855b48565141fb09", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_9", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa723c0f625d8aa61d402b809f87b2a1f7", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_semicolon", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facede77870b6d7da503d4e1ab04b056bf", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_question_mark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2d19640b01e0fb2bf66f77f008e908f2", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_hamza", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5929688a1a72590153dac77b9b8d1b9f", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_maddaonalef", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa45524dab22d29e84142bb7487273b778", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_hamzaonalef", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac379e87197c1c4c1f57d7cf01784c3e7", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_hamzaonwaw", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa091372c89f1756d6211c2e5504f7c6c6", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_hamzaunderalef", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab5a7ef08993061beb894ee588afa0180", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_hamzaonyeh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa4e512c742066fbb7ee40bab0f256fce", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_alef", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa96f505aadee838ba00e208403729d04e", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_beh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1e2db3d0714ceb655f2aa981434fc4dc", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_tehmarbuta", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa026a34f4cf6a84fc122c53c4f4a28dd7", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_teh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa16b0f0589b9263c8391dab7b7ea50f72", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_theh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2335ca0652892547da8e6e52763354bc", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_jeem", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad6003df0ad6cc8f32875e061b2e434bd", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_hah", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faafad77336a7cb136b4cf659801ba7034", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_khah", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7e9f347f55ad03926a907b80e567e0df", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_dal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabb57e9c3ad50ed7862b9a3b3012c44ff", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_thal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad24700c85d848b9d90d3e3cdf61d0fab", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_ra", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadb2b8cb33cbf13cff397980c76aefb5e", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_zain", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa236fe67bf6c3800a88086dd0b8e04334", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_seen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa654dfe241bb474d768b517222bc5ec90", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_sheen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9f38878a11869d355f84d8af8c89f104", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_sad", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5078e6dff53b3c6e95e22e1d5095b426", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_dad", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad29fa0021eecf2057f51ee5e38a57f16", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_tah", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa032974d90975c43d4ba6bdb6383b6203", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_zah", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa97e1dcea051cbe3ed940da8d7b3143c2", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_ain", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabed197f7aba4e46edd73c066acbc9496", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_ghain", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac67ed818e499584693e63b3fd4e4f496", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_tatweel", "a00041.html#gga4aefe0843e618886b55102a0eb45b75face9e569160cb04c770eaf06316c0cc59", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_feh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa153cd3cc108cfbf5e748b72e07f93184", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_qaf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4c30f1f8c981d3311d295c5e6ab0328f", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_kaf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa41c67e911651298b314b8388af577da3", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_lam", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad89910b04c04bf8b8de85653765b39b8", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_meem", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf80b8b31b9eb3d1936ac4d39d73383a2", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_noon", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad434ce969a4dda6ed3aff93bd2ea9378", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_ha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa81ce3d132c9913c2063b6dfdc9b0443f", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_heh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fababaede50e98a6114675952d3b6a0497", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_waw", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa83166640cd38bde8f692112b5fea9df6", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_alefmaksura", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3a69053f706b50030d1d06e9472fba36", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_yeh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5b009537aa6930dfde3218a5483cd4d9", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_fathatan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa510c9ba922ca6a188faffafde7c19104", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_dammatan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa10b1aab7fcf8c06b851520d628626389", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_kasratan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3c884992ecf990e15d11d05e8cd52ccd", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_fatha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadcd8e21cd7d24ecae23b43c9ae29904b", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_damma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0ed98a65cafc5d46f14fa4c2d7211b9d", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_kasra", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d7d3731f5062110625c771961826e45", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_shadda", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabda9ef9f08ce7b93bde622412c450871", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_sukun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6b3be1a930a8f4a59b6d920f8656cd04", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_madda_above", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facb04147206bfb4d6e01f28e39a15b5df", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_hamza_above", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faabed7cf44104ffcae5ea7b515aff32b4", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_hamza_below", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4fe4fd47caad8ae7edfdbc0be4c31e9d", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_jeh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5f81f3ce77dd7a57d39d977e406c4556", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_veh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0f4ce18f22b699bdf2f790bc565e55b3", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_keheh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad033d3a2256eb049ae600828302b44f7", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_gaf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad551d1d6598cc838313c33273e56524f", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_noon_ghunna", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa68839828b0f49da1f831b89d5da6889c", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_heh_doachashmee", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7730fc0278f58ae54febf74e4927a6cb", null],
│ │ │ │ │ - ["SCIM_KEY_Farsi_yeh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab7e38a6d0e1ae99f0a3abee58a144751", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_farsi_yeh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa485613dc99df66200b3168a1f1f5b70a", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_yeh_baree", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7a742f2f12a6454ec6d5b065f18c55ce", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_heh_goal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5c05fcc2ca7ba8880584d0ed1b172f23", null],
│ │ │ │ │ - ["SCIM_KEY_Arabic_switch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa73e8e80122a87aaa85cd187583f0b027", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_GHE_bar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf9948d14c2f07db7573a73982c3172da", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ghe_bar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa18861163a94962ff22d5e05aada05408", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ZHE_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa62be9e1b8a01cc6554607ff30c47ddad", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_zhe_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8c948da7780e614c17419621a013998e", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_KA_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faef3254f48f5c97a0c1dafbe164d8ffd8", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ka_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3a03c00109d3d9e93eea59d941f88879", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_KA_vertstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa919f02cd352738cc0c66c78b1a7a6cd", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ka_vertstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa926619ba4779d8221b934fd0cd8c25e6", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_EN_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa030d1da309acbaa5cb33030b541125b1", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_en_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf49bb2883e7574880dd826fcf195328a", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_U_straight", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1a6dae10b01758b09edadc0016252c2a", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_u_straight", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5e47ab0abd88d2410e4ee18a5953ca20", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_U_straight_bar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8075174857cfa6aab448ac285686bbb8", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_u_straight_bar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa7c863db1df1bc9ea3e04509e9eef547", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_HA_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9c2ead91deb9d9dba6f44cb96e51e76e", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ha_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0255cff1ea4c61a91e6775c02c03e2d7", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_CHE_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa95c4709f113c732143d7ff6d4a3f4674", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_che_descender", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa7c6eb909e67373d4169dec3999f2148", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_CHE_vertstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5ceab58823925807c8c2cff446ff852d", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_che_vertstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facfb5783fa53a89db2e1bdc4c27540cfd", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_SHHA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa559b05c1791da76277ec37158bc715dd", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_shha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa260e086aa3c5a96d2ae8636bcb387929", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_SCHWA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa61247a5fdf14a585d20acb8771f49dd8", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_schwa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa780056ad6e2d0130e9deb0ccdb274a15", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_I_macron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3ea8c783fcf51cb6e5724f697e591044", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_i_macron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf5bddac94b74e8a927ab952ce02745f7", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_O_bar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa917e2207ddff56cd093e4ce409819b29", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_o_bar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafab556a8f867be6fce2acc8c959cc443", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_U_macron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae8916321a1d247cf6eaf0ad46d810519", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_u_macron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faea36846ef448d0a1d8b34da6b1c0e6ca", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_dje", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa91737254cd1984e63e114b6d5e6ee693", null],
│ │ │ │ │ - ["SCIM_KEY_Macedonia_gje", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa38067f8d4a30572366e698ae2114e6d0", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_io", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae0197562c79b8cf693561c4430c29e84", null],
│ │ │ │ │ - ["SCIM_KEY_Ukrainian_ie", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9f22e9d6728ce8bf69891f74490ca41b", null],
│ │ │ │ │ - ["SCIM_KEY_Ukranian_je", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0fa43c2a0da82ab9343a9c6df814f58f", null],
│ │ │ │ │ - ["SCIM_KEY_Macedonia_dse", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1ddf5312ff057049bf560b4f52402625", null],
│ │ │ │ │ - ["SCIM_KEY_Ukrainian_i", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa36e2bf6ac441693f4effee8847a0b7c9", null],
│ │ │ │ │ - ["SCIM_KEY_Ukranian_i", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4626ac163037815e29c6c0ec42005d79", null],
│ │ │ │ │ - ["SCIM_KEY_Ukrainian_yi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75face88924d2c94bdd7071a9cce182ba15a", null],
│ │ │ │ │ - ["SCIM_KEY_Ukranian_yi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5b90539d740221b26455021f565fcde7", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_je", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa39badc7412f121c51128c34db2a0731b", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_je", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8b58b21795264897a28e2f1eacff892c", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_lje", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0bfa0dae7cc802da9fe248900ac3df83", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_lje", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5c2e6e474ca7088ea01eed0648e378ec", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_nje", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa72da176160d2176e4049cb527694c631", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_nje", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faad204ad4b529fe84510a0bf0562af4fc", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_tshe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaf852e58adeea677ebf112a1c4e5fba7", null],
│ │ │ │ │ - ["SCIM_KEY_Macedonia_kje", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1af3eff856f4ed7e85601fbacec1a075", null],
│ │ │ │ │ - ["SCIM_KEY_Ukrainian_ghe_with_upturn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4734d221e919de6743756b53a6764a83", null],
│ │ │ │ │ - ["SCIM_KEY_Byelorussian_shortu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fada3b66dc31168e29cda12ff034e1e1a3", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_dzhe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad142bc653062035d4847fa57cf1e6857", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_dze", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa2123261deada6060a64ea97c715ae2e", null],
│ │ │ │ │ - ["SCIM_KEY_numerosign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa737022afadf98ebc6db2080432fef135", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_DJE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabb6a2d3ba6a28583604f9fdb0dd81dbb", null],
│ │ │ │ │ - ["SCIM_KEY_Macedonia_GJE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa7c9e492fe08ea39e1d11a415af9efbc", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_IO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafff8dd7ae659ec442b8dee2a7ee63197", null],
│ │ │ │ │ - ["SCIM_KEY_Ukrainian_IE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaca29fab437ce316252b126ceff58914", null],
│ │ │ │ │ - ["SCIM_KEY_Ukranian_JE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf7b984163a8ce55c8226c76c38521651", null],
│ │ │ │ │ - ["SCIM_KEY_Macedonia_DSE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9853fd0cf586849403930530e721247c", null],
│ │ │ │ │ - ["SCIM_KEY_Ukrainian_I", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5e0187b31ed4cb5a87a5a6066dcc9d4b", null],
│ │ │ │ │ - ["SCIM_KEY_Ukranian_I", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad98c97e2dcd30822a3547ac13762b0ff", null],
│ │ │ │ │ - ["SCIM_KEY_Ukrainian_YI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae5fad1662df1f90bee6dc279e0a80e8f", null],
│ │ │ │ │ - ["SCIM_KEY_Ukranian_YI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4a14e05ce922ad546d4377dd0ce9c471", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_JE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf709b014f3ab530612d85901661f5e27", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_JE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4891fdfd341a64702cf2b97e674715eb", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_LJE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2eb652cb6c55c5de63362401bbcc254a", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_LJE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad08e8f4232c890b2435652fcea68070d", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_NJE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6fe3c5f27c80637044bf33f8eee31384", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_NJE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaff16ad56153a4383459024a8365ce02", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_TSHE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faded863c79165c2141985aba12483d3af", null],
│ │ │ │ │ - ["SCIM_KEY_Macedonia_KJE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa433949ba4b005f04dc35267bd24d44e9", null],
│ │ │ │ │ - ["SCIM_KEY_Ukrainian_GHE_WITH_UPTURN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0591df3d2e4b75757b113aae5582a516", null],
│ │ │ │ │ - ["SCIM_KEY_Byelorussian_SHORTU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad9f7e7a346bec2d3282da83c0af74dcf", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_DZHE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facf8e4ed0276c85c123aa07054e33f569", null],
│ │ │ │ │ - ["SCIM_KEY_Serbian_DZE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae02fcfc889fa2ea31cd95259514f8f5f", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_yu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa28b24deb35cbc07cdd5420762d285b6d", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_a", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa793e894c5a0e3018a9f83bbfae2770d0", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_be", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6d7b5233bf97af0a81cefbbdef286183", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_tse", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2ea63b92a50f6b82ba5c315eec87342f", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_de", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4831e6067f25a55f780af1e8feb97cda", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ie", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9f5fd2b926b67956ca5f9018ff0a71ac", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ef", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4b4f873d64eb725b0bb093cc98b873e7", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ghe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0a2d9fd99aee73b71bb21ca1740448b5", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4229bbceb2ba4627042eba4ef3c2f736", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_i", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d85eaac62a62d1183b7997adf9a528c", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_shorti", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf41b1282eb2079a245a91305b3c5cc91", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ka", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7086ef7b4343e990860ea71c88038eee", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_el", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa889d0e53fb0945d224c23c3a5ebe8116", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_em", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5e0167e0f074d7c596dc6c93a5864ce2", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_en", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4eb672e4901da22d8d053ec5a1731f38", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_o", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa40a31c7b413ad66d814fc350e0e90001", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_pe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa24bb88a7bdc84099637701ada7fcb56a", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ya", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facc68fbb17ea580c333102bdbad2dde54", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_er", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa15695779820e7188fe9346770d6c5aa0", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_es", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa63770bf470de4d670b225221a292e570", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_te", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf758e4b8495127a6707666c1ce17879b", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_u", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa662f7e0ad96ae7e2d28a2a857f43250f", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_zhe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab396f20ff4278ce8f2a4c0bbff6ae9e5", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa610fe3ba79af51dd60b943e18d140d16", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_softsign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadd404158223ee2bcaa64ec603d7541a3", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_yeru", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6668eb0acc041830333c1032d4a2ccf2", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ze", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa00fa9b618d950647e70a38a02c0c7da2", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_sha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafa6e8b146f54dccbbc78f4c0c16c7796", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_e", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab6c3859797f9ff5aa973779d8da5691f", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_shcha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf8ff0d98815058b36864fa925be18361", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_che", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa27aa48ae5963d6a2c709c9816fe4b864", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_hardsign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa01027ed0c8e43031654adbbee80a5c72", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_YU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf1f58287f19112885f41bb42cac7f766", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_A", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafc1c2939e71798ef5e637bcb289befa1", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_BE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa44c0fe3d1d25f3f9b04629268ed2f594", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_TSE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2799276332969f8e0a367ef54c4e324b", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_DE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2d660f5a86226d01a401ed7fe30ed432", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_IE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5acdfb4e148f02967154799a481d4e94", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_EF", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9aacff2264848af70ec4c632c2529079", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_GHE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa56c7e52f050b4049dc939c679ce529fb", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_HA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0d9d94cecb4b6cbff37157c49674ebe8", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_I", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4294c5ef7374e6e68b4c325b47908451", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_SHORTI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2c0ba50845f5e73b098cedeab95cb58b", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_KA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa923f9cae98fa6ed11d6e9274f55b09a5", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_EL", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9d383221fab871572f3af63d63aaaedd", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_EM", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8eb9a4c5ab0eac69bb3b5ddedc9b2e75", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_EN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf6254890f64968c9d7ca42a59f9b506f", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_O", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9383015389aa5aee37f0ae31f793d1c3", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_PE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7f2d1a5ca184b457a1307ad9975783d0", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_YA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac319b76f7876ba4853395c02a0dfd91a", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ER", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac2f8874113c7583a3ab615f2f39d8543", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ES", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa99af681f56d6f8191967b80db1cc796b", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_TE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae29a7d649687e1ddfb5f8ea78401af5c", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_U", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa57cc3cad631365283fc5fa81a9a0af2", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ZHE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa95f0b0b0d7e9fe1cca1674974d6e12f7", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_VE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2d49b5e0d7e9c308077a1a9edf0d9677", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_SOFTSIGN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faac71c94e707a8c76f2bd2068317e9ab8", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_YERU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5b8314d288376abee1684ac78cc6866b", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_ZE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadf95070aacafb11ac153c8d05e91a6d0", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_SHA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4cbe9b9c0133606633f343cdea260324", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_E", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7e540b2b5d87f00d5c1fe6f725f2b38a", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_SHCHA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa619be1511ad61dd5427dbc6a769977cb", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_CHE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae4df8da9071d613f2588eca4a318a195", null],
│ │ │ │ │ - ["SCIM_KEY_Cyrillic_HARDSIGN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa16214a04b01163ff71a05aa9f8408cf6", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_ALPHAaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab494d849afbc0b6410308d40b51a4c2a", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_EPSILONaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa6a07d4799cc99f04590719af9047a07", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_ETAaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa29b49c92357787003a6829d13d8d0370", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_IOTAaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa60d24a21e951a8d24161142aa16d61e5", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_IOTAdieresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa960adc9e8a8196d2d9b5aa3f193ad0fb", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_IOTAdiaeresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5c346b9a9805cf8e7275b985976feeaf", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_OMICRONaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab6565558a29ecaca70dc12558ee2d9a1", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_UPSILONaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa58561cef9e7a2bdc879f0feb92d1ad12", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_UPSILONdieresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa61708f8568363e817b3120be1b542f8f", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_OMEGAaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa31923f219d0a0898423b1975bdc93e49", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_accentdieresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7cd23b0ebc46e82ac89666db669a5b50", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_horizbar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa82cba573fa1dc60ac618cf6aed6e40bd", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_alphaaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4593fe0607ea03767ceb79a4d95d10cf", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_epsilonaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa829f29378c6180dd6c0341cccf9ea72d", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_etaaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf8be5502e92b48cf4e36016ec9a5ca80", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_iotaaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6657c97e3e70bc2a97d20595361790a8", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_iotadieresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa582e08ae69d69eaf51a80ea70dd249fb", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_iotaaccentdieresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0908b8ed5cc07a9dfbff1a146461c3e8", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_omicronaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88bbb49a33f7c6f6b933638c3fdff748", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_upsilonaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa58a9b864c2e7eb6eb0c42d394fbafe5f", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_upsilondieresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadefbb18e98382b1a4d8be5fa5132c54c", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_upsilonaccentdieresis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac8534cf1e374b41dbaa1dec1c152941b", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_omegaaccent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6a93ba55ce126179f942d3370a84132a", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_ALPHA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa37f6b30da8dfd4da7cfc8a8892825e41", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_BETA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf8dcc802e3ed9454c0cf07f86b5b9fb9", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_GAMMA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5733276b91984eef421d0369f812ce65", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_DELTA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6756acc1901f02ca9ed945c8c9578cfd", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_EPSILON", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6033cf3490c21212343b55d9236c4f52", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_ZETA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8b30a2c4fbc83a8281219b31ed5b8969", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_ETA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab193146edfbb4b0ce3d7b9c29d1f20f6", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_THETA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafeaad3399f3101026bdd8f39dc6b7354", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_IOTA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa932501dd06137c9b9db3ab8ea69c7052", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_KAPPA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1a435ce9266873a32792f186f4fe3704", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_LAMDA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5a5b721ab7606973525eaefa496871a2", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_LAMBDA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae301cee8c033e921d129565fdbba9764", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_MU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88bd1b6be34185b9905f073e5b55ce5f", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_NU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7f8ff6c1e8f1e0706ff994979c9eee29", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_XI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa59e46a7f9e29ffe4388d681cb920ece2", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_OMICRON", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa52b79b7c4f421aee8677ea553b48bae7", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_PI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad36f2a4a700ae72b181e921d3b3ba4ba", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_RHO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa30109b6dfaddd850b0f246b8580cccb2", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_SIGMA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2577f61de007742c72d13543f178b6bb", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_TAU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf0a0e1c26c9dc220bf5e6b986be6f5a7", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_UPSILON", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa24b63df86ea9823c6440f37f7acde0f9", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_PHI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2f0d55b9893962e402a5848a87ead3d9", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_CHI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa59497dc82ec3a0f121889f4f99d86819", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_PSI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab06ec20414e13b9caafd56012c10afac", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_OMEGA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad5d578a8937f67398c8876cac44db159", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_alpha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa556cca465e94f8ef6ab3b2fdc59869f0", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_beta", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6246b539cfa46ce2deedd084ea4bbb89", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_gamma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4fe2f84af98c327b646658d1036c9c02", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_delta", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6279e4fdf038889f8849aadadd343828", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_epsilon", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88407c745b9aef4c05d145d9bcb79cc0", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_zeta", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf3fcbf8571be57b36f4160bcd322f8aa", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_eta", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4d54d3747eb610f4491a07f50aa6fa2f", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_theta", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0c1cac69985d26a6973c9a3627e492c1", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_iota", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad8be239a0bbb88f889b44cacdc68350f", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_kappa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3dcec9a42ee9c112031dc7094e40f3e3", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_lamda", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac6e7dd3ccd7070c0499dbb4ca7191258", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_lambda", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae40668726cc18df558881d60d23948ce", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_mu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad5f07810fe56345868f156e6911672be", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_nu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6ffd10f8e9e36456e352942089e89d3e", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_xi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa18260dd7b9d11d845a287aadaad84eb9", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_omicron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab4c29e390794ba24aa0b700c2e3aee20", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_pi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0d396be75dabef741396bb9a0a30ad59", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_rho", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4106ad2fdc84bb05b25027d2a6f1c17b", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_sigma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafb312dfbea8ff49aa8e872a65616caf7", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_finalsmallsigma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac05e8763131e129bff693856b2c38edc", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_tau", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadd97ebb56b1fb4a4ade689412bc6f894", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_upsilon", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7dbab4b79ba8c67ba6cfdfa9f630d63b", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_phi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa506bbd61dd663e537bc93e07ca1bfdc6", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_chi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac246487729c1395aba904f1ac7a7e1ce", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_psi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf155fe66d381fdb2bf60995cae92955f", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_omega", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac4d89c36d341067e9ca0979ee704dbf2", null],
│ │ │ │ │ - ["SCIM_KEY_Greek_switch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae1f9ba4712fe21c0ed7d6280c890899b", null],
│ │ │ │ │ - ["SCIM_KEY_leftradical", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0bde7136ed355894db34590727782c14", null],
│ │ │ │ │ - ["SCIM_KEY_topleftradical", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d41fb0ec1708792daa43be544113f97", null],
│ │ │ │ │ - ["SCIM_KEY_horizconnector", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faea54f3eb5a5a509efc2d89fa85a4710f", null],
│ │ │ │ │ - ["SCIM_KEY_topintegral", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadfdfe5bd9e5834a1232263956ec486ad", null],
│ │ │ │ │ - ["SCIM_KEY_botintegral", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf39b16db68d80641057dbacb2cea71cd", null],
│ │ │ │ │ - ["SCIM_KEY_vertconnector", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7cb27ef566f4e181f03ae38b4f99cd93", null],
│ │ │ │ │ - ["SCIM_KEY_topleftsqbracket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadc65c3eea0a9c0a7febc4ff15d77bb7c", null],
│ │ │ │ │ - ["SCIM_KEY_botleftsqbracket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa90f896775bcf28b3ff83a593eeb18f12", null],
│ │ │ │ │ - ["SCIM_KEY_toprightsqbracket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafe5e681a01bec3c0f593b0914b0438d5", null],
│ │ │ │ │ - ["SCIM_KEY_botrightsqbracket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa08860e32733736246bc627ba5257f409", null],
│ │ │ │ │ - ["SCIM_KEY_topleftparens", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa40fe83448d888477ee0048b747c667e7", null],
│ │ │ │ │ - ["SCIM_KEY_botleftparens", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa7b09aad52ba9bdc396850e3c3df9322", null],
│ │ │ │ │ - ["SCIM_KEY_toprightparens", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa52ffc4fe6c360b250cdb4de70df34239", null],
│ │ │ │ │ - ["SCIM_KEY_botrightparens", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad68776d6a03134774513aa53dffb5ea6", null],
│ │ │ │ │ - ["SCIM_KEY_leftmiddlecurlybrace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad12324c2c5467fcccfb0876ab0644232", null],
│ │ │ │ │ - ["SCIM_KEY_rightmiddlecurlybrace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5dc188c63d05db44878469296a7a64b1", null],
│ │ │ │ │ - ["SCIM_KEY_topleftsummation", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaeabd1ab27e2579607b85a910ddcfc3e", null],
│ │ │ │ │ - ["SCIM_KEY_botleftsummation", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3f990b6f0ac5a0a5c362ec807a36a918", null],
│ │ │ │ │ - ["SCIM_KEY_topvertsummationconnector", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad5c78adbba8617a521cb7132562d26ba", null],
│ │ │ │ │ - ["SCIM_KEY_botvertsummationconnector", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafc59b2eef7659334e45e1953235afe49", null],
│ │ │ │ │ - ["SCIM_KEY_toprightsummation", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faedc42000ebf2e93f4e4bb1d58f736903", null],
│ │ │ │ │ - ["SCIM_KEY_botrightsummation", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7a035f24ff92a836b8e2fa318a286c7f", null],
│ │ │ │ │ - ["SCIM_KEY_rightmiddlesummation", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa35859e72c91470991fd27f34201d64c8", null],
│ │ │ │ │ - ["SCIM_KEY_lessthanequal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8ecf852c2f95c41fa20294955604ee44", null],
│ │ │ │ │ - ["SCIM_KEY_notequal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0bd2e4b09b05be1db5808f87465c83f2", null],
│ │ │ │ │ - ["SCIM_KEY_greaterthanequal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3896c7cf9d7c8fbdc9a288b5781b11f0", null],
│ │ │ │ │ - ["SCIM_KEY_integral", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf9ea42b7aafbdd980a08ca387940811a", null],
│ │ │ │ │ - ["SCIM_KEY_therefore", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6c404a2dcff6ef8d606818d21d869cc6", null],
│ │ │ │ │ - ["SCIM_KEY_variation", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa220c1d503786c98f499b78f314efdd15", null],
│ │ │ │ │ - ["SCIM_KEY_infinity", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa34cbf6ae455a73ce011c407f8614d857", null],
│ │ │ │ │ - ["SCIM_KEY_nabla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac993258f5cab35d94df91a2ab7853bc9", null],
│ │ │ │ │ - ["SCIM_KEY_approximate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0a1effb7951bea4ab1e048fd1f9a4ce8", null],
│ │ │ │ │ - ["SCIM_KEY_similarequal", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab5c6970085120e5d374e51273f6f15a7", null],
│ │ │ │ │ - ["SCIM_KEY_ifonlyif", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac79975178e7ac2265e99db791990f23c", null],
│ │ │ │ │ - ["SCIM_KEY_implies", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf0498233b6a29e6a5dbd6ba4e61a60c2", null],
│ │ │ │ │ - ["SCIM_KEY_identical", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4e27b4e1d6be6bd215b4284df1e9599b", null],
│ │ │ │ │ - ["SCIM_KEY_radical", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa80c2fa40d50a05eb2aa17cbd62441fe3", null],
│ │ │ │ │ - ["SCIM_KEY_includedin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa14420f2b58e6f8755025b3c8680318c0", null],
│ │ │ │ │ - ["SCIM_KEY_includes", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0bb73a8796cae86095f0613087e49970", null],
│ │ │ │ │ - ["SCIM_KEY_intersection", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0b9ee74c20bec6bf0a6cd15baa31ea2a", null],
│ │ │ │ │ - ["SCIM_KEY_union", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2c5ca69e4a8b09e73e4e2ba36c4024b2", null],
│ │ │ │ │ - ["SCIM_KEY_logicaland", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae49cf7a053bd8b1f1a9d3a683432cd70", null],
│ │ │ │ │ - ["SCIM_KEY_logicalor", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3d28b2e0804028788421a19b648bedc4", null],
│ │ │ │ │ - ["SCIM_KEY_partialderivative", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad6db311af6e3a4e06d557b9f7081185f", null],
│ │ │ │ │ - ["SCIM_KEY_function", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa38f123d1b9bbc924800d62617d10d33f", null],
│ │ │ │ │ - ["SCIM_KEY_leftarrow", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9c9ddc66e6908786c279b3f038494413", null],
│ │ │ │ │ - ["SCIM_KEY_uparrow", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa29ab71b74c7e53e9a2b5018c49eee98", null],
│ │ │ │ │ - ["SCIM_KEY_rightarrow", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae3f1f11b8507b86c024fae7091f13b24", null],
│ │ │ │ │ - ["SCIM_KEY_downarrow", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3cf06ed752670f4c3a7f634fd996f10f", null],
│ │ │ │ │ - ["SCIM_KEY_blank", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa5a82a05c2f0783deb961f5c2c48db97", null],
│ │ │ │ │ - ["SCIM_KEY_soliddiamond", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa22828a81d7030a148dc231ba019c704a", null],
│ │ │ │ │ - ["SCIM_KEY_checkerboard", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa755680ff487fa96a7f7cf8de9055011f", null],
│ │ │ │ │ - ["SCIM_KEY_ht", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4513a28edb189542f582b52a99d59161", null],
│ │ │ │ │ - ["SCIM_KEY_ff", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa922ca35c168b2ad0d9a4cc0c60e35a0d", null],
│ │ │ │ │ - ["SCIM_KEY_cr", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2eb66e0ee591c410bcc2252f40ddf01f", null],
│ │ │ │ │ - ["SCIM_KEY_lf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab541cb148018d11687d42d04421048bf", null],
│ │ │ │ │ - ["SCIM_KEY_nl", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa71a3f697cb5f0ddddf1680106f5003bf", null],
│ │ │ │ │ - ["SCIM_KEY_vt", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae0f100bbe9671f44d41a3f1f18bdad58", null],
│ │ │ │ │ - ["SCIM_KEY_lowrightcorner", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf8d896c1d0ebc78008aa537e197a1560", null],
│ │ │ │ │ - ["SCIM_KEY_uprightcorner", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0f5122e6c47676ca0d8a3a3a7637eea3", null],
│ │ │ │ │ - ["SCIM_KEY_upleftcorner", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae017226103ea47427675460fe62c5c26", null],
│ │ │ │ │ - ["SCIM_KEY_lowleftcorner", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae64a743e247d388128101923d788a36f", null],
│ │ │ │ │ - ["SCIM_KEY_crossinglines", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafa2ab49f1df02d1b5a5260385ef5335e", null],
│ │ │ │ │ - ["SCIM_KEY_horizlinescan1", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8fa96eff8576a85a346aea35275fab95", null],
│ │ │ │ │ - ["SCIM_KEY_horizlinescan3", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa19726f6918b666a6c3a6e26193dc4593", null],
│ │ │ │ │ - ["SCIM_KEY_horizlinescan5", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafc855ab765fdbe34cd72dfcca12fee1f", null],
│ │ │ │ │ - ["SCIM_KEY_horizlinescan7", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0720d41ab8863a9b61265dbb5939c3c1", null],
│ │ │ │ │ - ["SCIM_KEY_horizlinescan9", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafa61b9a998b6512c0baada1c438b06dc", null],
│ │ │ │ │ - ["SCIM_KEY_leftt", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d1e8cae13d16cf56ac78a8400ced674", null],
│ │ │ │ │ - ["SCIM_KEY_rightt", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaeb37cadba40133c352359fb7516d541", null],
│ │ │ │ │ - ["SCIM_KEY_bott", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1725358177abbc096331fc7651715a77", null],
│ │ │ │ │ - ["SCIM_KEY_topt", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa64eb0566e5c6212e911260bad515cfc9", null],
│ │ │ │ │ - ["SCIM_KEY_vertbar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8bd0c6bc5290e890f85773f5b4ee875c", null],
│ │ │ │ │ - ["SCIM_KEY_emspace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa46529ca8b1c9941e15bf2d4001d76e7a", null],
│ │ │ │ │ - ["SCIM_KEY_enspace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa42e1533ceb2915535635ae0da499b216", null],
│ │ │ │ │ - ["SCIM_KEY_em3space", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa842652e610f122a1e8b9a23d0de1acef", null],
│ │ │ │ │ - ["SCIM_KEY_em4space", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf173b54acb011f3446fe6b1de7607c85", null],
│ │ │ │ │ - ["SCIM_KEY_digitspace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa01b4667f00eb9513c6de7ac67739f784", null],
│ │ │ │ │ - ["SCIM_KEY_punctspace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faed33f48cbb0f07368e8ed200011afca5", null],
│ │ │ │ │ - ["SCIM_KEY_thinspace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa766f84844f53e02ff2ce85698cf3bebf", null],
│ │ │ │ │ - ["SCIM_KEY_hairspace", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa73bc3419d5c28ea1ffe9257dbf63ba4f", null],
│ │ │ │ │ - ["SCIM_KEY_emdash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9961c612584dfaa5141319ed2460b71e", null],
│ │ │ │ │ - ["SCIM_KEY_endash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4fe9b2afb792a1b2f008f6b7f70dac46", null],
│ │ │ │ │ - ["SCIM_KEY_signifblank", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faff6d0618f19a2a41ee56a17fb801666e", null],
│ │ │ │ │ - ["SCIM_KEY_ellipsis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac6478f84e56632095ce75b5eeacf9e77", null],
│ │ │ │ │ - ["SCIM_KEY_doubbaselinedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab3f641fa9278813834102910ed9c3afc", null],
│ │ │ │ │ - ["SCIM_KEY_onethird", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae7e8284e69b47b0d0fe0c052e96b3905", null],
│ │ │ │ │ - ["SCIM_KEY_twothirds", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7cd122f14c109db058f0dcc84fce14df", null],
│ │ │ │ │ - ["SCIM_KEY_onefifth", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf02b9b97e6886cc354018b310404ad7d", null],
│ │ │ │ │ - ["SCIM_KEY_twofifths", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4b3ffb87e8ea916a474a3225686e22c2", null],
│ │ │ │ │ - ["SCIM_KEY_threefifths", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa247777767b846b685d1f90a3f3efd855", null],
│ │ │ │ │ - ["SCIM_KEY_fourfifths", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8fd8dfc7c94f6b26839cb37fd4d4dc97", null],
│ │ │ │ │ - ["SCIM_KEY_onesixth", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa67aa4fe88ab8a1b643dfc35091798758", null],
│ │ │ │ │ - ["SCIM_KEY_fivesixths", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad2bce8fe87644ca9e149896b128dee2d", null],
│ │ │ │ │ - ["SCIM_KEY_careof", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab925cf1f89fd292142819f5bd3f7582c", null],
│ │ │ │ │ - ["SCIM_KEY_figdash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf8ff71bf0632264cb5eb8f87ad25f781", null],
│ │ │ │ │ - ["SCIM_KEY_leftanglebracket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa984d8219297e4a58e0ecf4f70a35e040", null],
│ │ │ │ │ - ["SCIM_KEY_decimalpoint", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4b215997d358ce593798206261cfa8f2", null],
│ │ │ │ │ - ["SCIM_KEY_rightanglebracket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0643345430bd77e7dde0e77b79ff1303", null],
│ │ │ │ │ - ["SCIM_KEY_marker", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8d0eabe4653ba25bc0082ccc13bf2843", null],
│ │ │ │ │ - ["SCIM_KEY_oneeighth", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad0d00a332330c2963deefd9bac483f7a", null],
│ │ │ │ │ - ["SCIM_KEY_threeeighths", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7be8339a5602b51de9f50361dd4311a5", null],
│ │ │ │ │ - ["SCIM_KEY_fiveeighths", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1db67fded0147dfaab9048ad8afeadcf", null],
│ │ │ │ │ - ["SCIM_KEY_seveneighths", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa21f4b43ac5895eb592d32f0be7ac4968", null],
│ │ │ │ │ - ["SCIM_KEY_trademark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5d78600433ce546bdde38fc4219d7fc9", null],
│ │ │ │ │ - ["SCIM_KEY_signaturemark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf5dcdec4f026079e06bf37c328e05502", null],
│ │ │ │ │ - ["SCIM_KEY_trademarkincircle", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab07b1934e018b47268af219ce1b5cf6d", null],
│ │ │ │ │ - ["SCIM_KEY_leftopentriangle", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7a633eceb3f502851c93f3abee71a655", null],
│ │ │ │ │ - ["SCIM_KEY_rightopentriangle", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa54494784e8eca5b7cb3a3bb92db85814", null],
│ │ │ │ │ - ["SCIM_KEY_emopencircle", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad6096769bac508089981219a500ff662", null],
│ │ │ │ │ - ["SCIM_KEY_emopenrectangle", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa84b0c2d6f06e601c0a9c5d097dde3627", null],
│ │ │ │ │ - ["SCIM_KEY_leftsinglequotemark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2645b230604c0c9cdf7ee7368af1613a", null],
│ │ │ │ │ - ["SCIM_KEY_rightsinglequotemark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa592fe6be4e9593ed21d4837add09a6cb", null],
│ │ │ │ │ - ["SCIM_KEY_leftdoublequotemark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faee4689cd99af240b9b978cfb7ecff0ec", null],
│ │ │ │ │ - ["SCIM_KEY_rightdoublequotemark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6257a6acb2d5f8b59216c7dc2c7e7c5f", null],
│ │ │ │ │ - ["SCIM_KEY_prescription", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa05d9cec98096f84e955752a4675d1170", null],
│ │ │ │ │ - ["SCIM_KEY_minutes", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faab52c7e134720f94b5d1043025c0085b", null],
│ │ │ │ │ - ["SCIM_KEY_seconds", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab6ab361073b9e572518bbdb5d3c77822", null],
│ │ │ │ │ - ["SCIM_KEY_latincross", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab51b29c0b011e083d2a7643ef99ec866", null],
│ │ │ │ │ - ["SCIM_KEY_hexagram", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa93602ebdc245b5d23c36712ae15399f3", null],
│ │ │ │ │ - ["SCIM_KEY_filledrectbullet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2bf1b70ed484a0417c434af2ad62791c", null],
│ │ │ │ │ - ["SCIM_KEY_filledlefttribullet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafbaf6b15bb42f8cd476db4e6cac598e5", null],
│ │ │ │ │ - ["SCIM_KEY_filledrighttribullet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3791aec523801bd1c78229b0c0adf369", null],
│ │ │ │ │ - ["SCIM_KEY_emfilledcircle", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf2871972bc667e8fc3b7b65d28b475d9", null],
│ │ │ │ │ - ["SCIM_KEY_emfilledrect", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4f0d2463a4204a44cc1a2f4ceba9e2c1", null],
│ │ │ │ │ - ["SCIM_KEY_enopencircbullet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa84a71b751b452f56a6f3fe3ec05bcde9", null],
│ │ │ │ │ - ["SCIM_KEY_enopensquarebullet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3ae231de200ce383d4dbdd039c847c0b", null],
│ │ │ │ │ - ["SCIM_KEY_openrectbullet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa883b0bff865c902a325c133f01a20d47", null],
│ │ │ │ │ - ["SCIM_KEY_opentribulletup", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facd55e579fb7ba98a990493e769969b4f", null],
│ │ │ │ │ - ["SCIM_KEY_opentribulletdown", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa422f5b67805a17a8ffbc000a2df838ee", null],
│ │ │ │ │ - ["SCIM_KEY_openstar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9d78af18257a3f1b06b9e3008c7d339b", null],
│ │ │ │ │ - ["SCIM_KEY_enfilledcircbullet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad9d8f1412b17843f848645c1a3b67dde", null],
│ │ │ │ │ - ["SCIM_KEY_enfilledsqbullet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa30c4d4bd8f4998a9e1525cabc0a343e5", null],
│ │ │ │ │ - ["SCIM_KEY_filledtribulletup", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa90b7065f62b7704a971328b17d4b8166", null],
│ │ │ │ │ - ["SCIM_KEY_filledtribulletdown", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2b0a49bee6b6a709d53b0f494217c63a", null],
│ │ │ │ │ - ["SCIM_KEY_leftpointer", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faeb4ac716ab758b66266933177b245e99", null],
│ │ │ │ │ - ["SCIM_KEY_rightpointer", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facfcf230527ebbb69f7ae0dc40205249b", null],
│ │ │ │ │ - ["SCIM_KEY_club", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa29572c418a253b23304a66de01912d65", null],
│ │ │ │ │ - ["SCIM_KEY_diamond", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0f3ae569b83ff2f109d0fff41e5fc46c", null],
│ │ │ │ │ - ["SCIM_KEY_heart", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa32f0f5773d06e68d33e8b3e06ddc76f7", null],
│ │ │ │ │ - ["SCIM_KEY_maltesecross", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab452f9e3f69d5a32fc64ca8aa602f29e", null],
│ │ │ │ │ - ["SCIM_KEY_dagger", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad9d2e7a4881a5873f845f28e77716451", null],
│ │ │ │ │ - ["SCIM_KEY_doubledagger", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa507bfeda229ec5c26d7c5ac31b7b0ba5", null],
│ │ │ │ │ - ["SCIM_KEY_checkmark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa915e07d5e0f9ec799f8bcb381ddcb7fd", null],
│ │ │ │ │ - ["SCIM_KEY_ballotcross", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa40ad050386fc78e91f921a1e92e2facc", null],
│ │ │ │ │ - ["SCIM_KEY_musicalsharp", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0419e99c3dc4970e1ffcb172c459a1d3", null],
│ │ │ │ │ - ["SCIM_KEY_musicalflat", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa4c2c28f457f85f6372701df2868106e", null],
│ │ │ │ │ - ["SCIM_KEY_malesymbol", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9db961d0250fe1fc0a73ece43660e1d2", null],
│ │ │ │ │ - ["SCIM_KEY_femalesymbol", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa36e67236f4abe7daf51dea8151834b05", null],
│ │ │ │ │ - ["SCIM_KEY_telephone", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa10b13657373c7dd23b221e4f9093b7f5", null],
│ │ │ │ │ - ["SCIM_KEY_telephonerecorder", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5f6b06b6346bb8930d4de42654d1a197", null],
│ │ │ │ │ - ["SCIM_KEY_phonographcopyright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaae70dc23674d5b64c1b23cb95b1cade", null],
│ │ │ │ │ - ["SCIM_KEY_caret", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2388be14492f3c8ef01b83db9c2a808c", null],
│ │ │ │ │ - ["SCIM_KEY_singlelowquotemark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa876b68d6e7fad0e2fdc1fd772d02af76", null],
│ │ │ │ │ - ["SCIM_KEY_doublelowquotemark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faba0486e64c95309144de0beac3d5a86b", null],
│ │ │ │ │ - ["SCIM_KEY_cursor", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9e31a5de4b9ec27c17222980708b7242", null],
│ │ │ │ │ - ["SCIM_KEY_leftcaret", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa77216ed88186965cef85a7849f633432", null],
│ │ │ │ │ - ["SCIM_KEY_rightcaret", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1833aa86c3559a072a9a68cefbd75d50", null],
│ │ │ │ │ - ["SCIM_KEY_downcaret", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab6b30a59e8b8a6d0749aa8e510d0d0f9", null],
│ │ │ │ │ - ["SCIM_KEY_upcaret", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3684c5b14327ed054228f3f84f408180", null],
│ │ │ │ │ - ["SCIM_KEY_overbar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1c5c5fa6624c56b67a739f4149f5f755", null],
│ │ │ │ │ - ["SCIM_KEY_downtack", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facfe2e10d3ab9188a2ba10ef5cd17bcdb", null],
│ │ │ │ │ - ["SCIM_KEY_upshoe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faff504b6f623ae33fc3fc8bf12df782c3", null],
│ │ │ │ │ - ["SCIM_KEY_downstile", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf611560b1e53dfc4a940f18b3374d2ed", null],
│ │ │ │ │ - ["SCIM_KEY_underbar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac0c7ab3f1965b869b5cfdb0737799af8", null],
│ │ │ │ │ - ["SCIM_KEY_jot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faea42b3a51f47ac820d186e290a0c2569", null],
│ │ │ │ │ - ["SCIM_KEY_quad", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88f4f9ecc6977bde456a5c8340e71efb", null],
│ │ │ │ │ - ["SCIM_KEY_uptack", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4d9dccdc6b1520418c748fcc8b5dd1c9", null],
│ │ │ │ │ - ["SCIM_KEY_circle", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faeadce3b3d58b3b26881bc34ccbfacd3f", null],
│ │ │ │ │ - ["SCIM_KEY_upstile", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa47350a0486a6a4bc23af3a10296e8940", null],
│ │ │ │ │ - ["SCIM_KEY_downshoe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faabfbf87bf1c94ce3f9c812409c68c96f", null],
│ │ │ │ │ - ["SCIM_KEY_rightshoe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6879b25882b3e9f6b2beb09220bbbf42", null],
│ │ │ │ │ - ["SCIM_KEY_leftshoe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8c0d4cb39fa0ca4a95252f989d84bfad", null],
│ │ │ │ │ - ["SCIM_KEY_lefttack", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa677440ee1d7a4757943c5282f61800f7", null],
│ │ │ │ │ - ["SCIM_KEY_righttack", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faff02e00f5da3db8cb3c4b46eb187a9c6", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_doublelowline", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facaa3f9a349ba75802e5a718da3d47548", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_aleph", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa83a6d578bd18789306eb54b5edd0f7bf", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_bet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa93ff4c60db09a74a70624bbe98763d01", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_beth", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa2f36cac466e4f6d814b188de8fff757", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_gimel", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa263d879cba0f87b1c703fc5d0701dfa7", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_gimmel", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae0183cb67eca4d301dca12eb137e600a", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_dalet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadb623ef5e800858389d2f646c726487b", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_daleth", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab36471fc05e3e82cf46363f498c400a6", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_he", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa46c9c393728f3d7e5ebafda3cdb5d23c", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_waw", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf86528de8d33c33cb92333eb71a073b9", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_zain", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7d8d3127e8d015ff6f0032f999714d54", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_zayin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0760cffdfb690e01598eda392e2cb79f", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_chet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadf9effd49e56adc5ab5b349cd0692270", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_het", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf7cfdd8c856e1c24a6b99290ea6ae818", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_tet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa30beac1003536083323b35c640ecc39b", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_teth", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae350238a3a6e556a9343fdd4cc3af12e", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_yod", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faea19db97cf5a998bc66c7d59950ab875", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_finalkaph", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3ee05ceb2fcb78aea3eb5c209ca7e3bb", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_kaph", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa228373872e1f8b04472fcfef67eb7448", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_lamed", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8b60327c5e326f5051cbf68254c8e5d6", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_finalmem", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa960f7d2a5451477925b4d70e8c646ddb", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_mem", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa619ab8d49cc172ab48b79414be4b96f0", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_finalnun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa54ac7a56116b71e60b9a1a99940b1d1e", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_nun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa294a973bb5142d72c643eea93898fa78", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_samech", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa390fbb1f6d8d317f28227592ae3fd320", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_samekh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8094b25ac25e0d2e804ab84808c7439b", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_ayin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88540ec8a58ad748e61fe0868b322023", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_finalpe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa3c45063e6e0244f7a5e633a1b5e2eb9", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_pe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac64686635a08381ec0688ee4132d374d", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_finalzade", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa817c2ba071d81e8600ef4dfd1da44fc", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_finalzadi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa64173030139a66e269d7d9494a285652", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_zade", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa29124f7ef1905b67a7533b5a33abd1e8", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_zadi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1879aa76b789bbc5459232ab4409d71f", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_qoph", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac159dd018794330ea00f0b0b70d79cd2", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_kuf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8092c431580a8bd3e1d4da14ebdb613d", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_resh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa493e0f42f7b3537d75dc95b66825d605", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_shin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac70652d80959f32188dca2653fcb3155", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_taw", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faebddc36244e8e179acbf4d615ff90160", null],
│ │ │ │ │ - ["SCIM_KEY_hebrew_taf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafe7d49e8f19632b1e961b0f8104b5022", null],
│ │ │ │ │ - ["SCIM_KEY_Hebrew_switch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaf62c79aa7f10fd715959bc0ad7a0376", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_kokai", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafabadabd79792134f3f29f3d973fecc8", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_khokhai", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa940a2ceb695adcdfa2301bea45de3ca1", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_khokhuat", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faee846094a1a23454a07ef354ffca9687", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_khokhwai", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa80ced98fca8bb2033b13264b7ef38a84", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_khokhon", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa467be74dd3ff23b220c4257e4ce05f84", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_khorakhang", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafe30fcb7a1418e3878a54e57d7836f43", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_ngongu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab6d98f57ee57062c5f9a9e92de2edcc7", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_chochan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0a36fb9afd094aaf51c2676a349c6b92", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_choching", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac780a4cfab938a0b7c52e6ce0e1f0543", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_chochang", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2810b9e0b5efd2dde67360e03966ea0c", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_soso", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8cb58c9ddb32759ded7f51a82265cf70", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_chochoe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa99bb35b6739c76e906c32d0ed3339be4", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_yoying", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad57992db8238db16a1cf84c2c7e6acd3", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_dochada", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6556a2e389496511b6be62d1cf720344", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_topatak", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab8939df3b4435971d5e86565ec1e87c5", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_thothan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa158dcf6b13fcdaf1c45c2fa7c433b8fe", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_thonangmontho", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa24963dcc8a11034473fba9aee7fa7f43", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_thophuthao", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa46c0a2c74c6d00fc9265a307209c25cc", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_nonen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa66b8e46acd86db28d91ecd5fe0e6bbc4", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_dodek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0054a1663daf353a93d39eab0067a527", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_totao", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faed1d0eebe4b04d73500ce1ac7e5955b9", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_thothung", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad2faca12954172033976acb8cc8292ee", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_thothahan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4c4dc92f733a9d3392452bfb33f9bc0e", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_thothong", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad02b910dc4588f5bfa6146e7dad7760a", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_nonu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faab344941a250fff65857d159236a147c", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_bobaimai", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faef53fbc8bff13bba00ed8ee9a608ae8b", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_popla", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa38f468e50630309addb95782f538d5eb", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_phophung", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faac4bddb19787b8bfe74ef057dc382742", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_fofa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf8a81798cadb7af5fbfd80629262e7fe", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_phophan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa37d76287870cac3bcc741b5040160a98", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_fofan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa65ba047a3bee9c40c795af35f23bdcda", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_phosamphao", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf0b22ebbff2ae5607c346c4ae3bab6e0", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_moma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad0f85fd044dbaddb261391db9431a590", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_yoyak", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9ed4f4639af4b11334156347ad2c99fb", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_rorua", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa860e1e78331da651031656c3e8090e12", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_ru", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac17a379320d93f8c424eae993be14853", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_loling", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6a337e9420b8ab408c9d1a0ecba494f4", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_lu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa20b1c0cf662939f8a4a8bfc8aae4c533", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_wowaen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf9eb6835a16d381baf7df86836bae059", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sosala", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8921cbaf17862db7fd11631953633d7a", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sorusi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa13566f7197f1dd0f5ad8a032462a47ab", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sosua", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faef8ff8b46cb34baf6ae1ca37735eaafc", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_hohip", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae683521cd47aca09d1615a47788feb88", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_lochula", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa45ec2def5460f5a06bd99e39ddafc258", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_oang", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad74e982a69f0f77956de8561fd385e9d", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_honokhuk", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facf9c36287f82b06fcf7e62d8c460f221", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_paiyannoi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa64eb28a1be34e105d822c58756076348", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_saraa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab86d3ff93619550b7e7e96693765f261", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_maihanakat", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa598fc2bde98e610274439013254bec1e", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_saraaa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa23a04bb44d39e4f6a96297023dc77dd6", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_saraam", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad339eaa261a7a0e3eda020acd69b1bf9", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sarai", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa82c07dbf23786bf70ab9f9407c45ba62", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_saraii", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faca851b369688f69e938cb219044d7047", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_saraue", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6a4b615b2be12cadd110502c4b66615c", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sarauee", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa03a333ba0c6962ffd00f2dc0528607cf", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sarau", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa867e6298cd9c954f8260f42f3ca45ad9", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sarauu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac059b89698ee97d85ec59467cac8afc8", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_phinthu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2efef0aea9582119f0b7840c5577d555", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_maihanakat_maitho", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa20e7ef63fcef9ca2a80c829be692b0a9", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_baht", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0bf51b69c5684c0f6bcaa24aa2e0ae45", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sarae", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa88c09718bdcbdd64a0fe1e5a9a7938b2", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_saraae", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabfff05df63acd1e25da1feab44ad1418", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_sarao", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae763248c3ffe7426f20f04310077cb1c", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_saraaimaimuan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6e933e483863b153c892dafee75ccc27", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_saraaimaimalai", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac14e14e15cf1efb7775b3704a067e8b4", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_lakkhangyao", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa76f284501808aa3366cc8cf79fc86c90", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_maiyamok", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae7614d3d544c8dc367a3d1ae01ce71fb", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_maitaikhu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa626be9c69b32bc340a70ef289a912391", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_maiek", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa441409cbaf2c941f4b07c765a23c9c1e", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_maitho", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5aacdc4e364b8a3d61c5e8c341eee95c", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_maitri", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafb580cd598d1660506b1fe44f9491e6e", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_maichattawa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa55f7a2b095c489407817ae7844515efc", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_thanthakhat", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa39e18a2eb55028eea55bc4fb188d01e8", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_nikhahit", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8b641179524ee51245a36c2246b63fd1", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_leksun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4e4a2783f332ab2db7192992c2200dfe", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_leknung", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa82b45b46c8a67d5665e14474634cef79", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_leksong", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab3ef4d2b73783d8ef35874734271aeab", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_leksam", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa54205a427f0e464a4cd83ac588386558", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_leksi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafa7a8be397184e1f886b55e37badf334", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_lekha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3656eb85e41a4cb3836d4e8982d350c8", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_lekhok", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab18b6625f0a95b8699ef4b580a6ae304", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_lekchet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3e7c89f1da971512bc53b01b7b419a38", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_lekpaet", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4c4e88dfef2edd71efeb1d045a219aee", null],
│ │ │ │ │ - ["SCIM_KEY_Thai_lekkao", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafa21d44de475b7b35abdea7391c93020", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8ac054b0840e037a939448946831a900", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Start", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8b7a337e7fe7a4517c83fb2f0bb4aad0", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_End", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa55a4a0ee57380685d228e3feda1f3c57", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Hanja", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa60aa3297cd511d7b0a74f5053397d968", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Jamo", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa04f7d359fc3f005056b5de29bb6cb4d0", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Romaja", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa70f2daa709aafe05a96d0e0439669536", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Codeinput", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facc22e9cc3cbd475cf1482888b694534e", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Jeonja", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa302cf7625c12115c03e86a0fde61d53", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Banja", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaa7b8bb72ed0fd00bbdf9de5f4e765e0", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_PreHanja", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faee7399bf73f09f7271d28f64ec33671b", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_PostHanja", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0af36dc55c0935524008107dd349fcf6", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SingleCandidate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faef7025a17f60514015f5fc0463893623", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_MultipleCandidate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2d78a3e82b1071cb62fb9329bce1b689", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_PreviousCandidate", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa03ac8282e157ef07826e16a7ba21dfa7", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Special", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa000cd4121c86b23cd5ab6dd81f2acba", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_switch", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab09d7586a756595b854bb32e92e8ebf0", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Kiyeog", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf22a97d628f8cd8ce8c3acda67533356", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SsangKiyeog", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa97b283f8e28089ad6a062fdd2839e64e", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_KiyeogSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa51fca02bed1ce190e773279cf47a6ca5", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Nieun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafdcac92f8f5ca08281425113470612fc", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_NieunJieuj", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafe5ac5f18ce1f6258b17705bc7b2d4a1", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_NieunHieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3e929d17eefd77d1e8317ee6178970f2", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Dikeud", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6d2fc58e37fb1cacdb5bf4c7e2793612", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SsangDikeud", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0e3e63e3335378b2c98bcff87b43cfdf", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Rieul", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa36b80d3790b5dd696c33385c5706197f", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_RieulKiyeog", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad43b26c1fffec2f01a58bfc8435324e6", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_RieulMieum", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa89b3b430c13c7a2d2a6ec2bc203e7795", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_RieulPieub", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafdcdb2d50d73b4fc39b488cb92a82432", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_RieulSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa271419ed31fc3a981d7c3bf1a1b049ca", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_RieulTieut", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5ef9edaa87409baacfac51ab6f67c9cc", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_RieulPhieuf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa620f38a36a831ec2d5b249371d3ac054", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_RieulHieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faffea9d3950a15d57aab361ecb2c2f274", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Mieum", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae7e13cd07a54605a228fc0806dbbc378", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Pieub", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa38a868ce79e982bcdbf51225366665c3", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SsangPieub", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4492dfea12ec992ed1c12c6cb47c4c28", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_PieubSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa80f5f5981c1dddd93b8ff1e1a350efc8", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Sios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae43883612b18becae9199a7a3f066bd9", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SsangSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab7625a781713e70d6e5bde11dce7b454", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Ieung", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa64348149b88251fb8b850cd3c40dd05b", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Jieuj", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa106b4c919db446fffe93051e71c9a066", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SsangJieuj", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faeccb2c0e070bfcabb62b713051aca08e", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Cieuc", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab4f772b75dc0283307913aab5973ebbd", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Khieuq", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2ba54172e2303d41b314e4c46521a257", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Tieut", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faefd5347897f1fe139b41d6aa8623d596", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Phieuf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad30d5312e87fd4b92deb2bc3bf8c2e8b", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_Hieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faddc2742d8d36aaf6a7823d366ea9d411", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_A", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1dc9523defc2056e7354e015825c15de", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_AE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9e80be7338e4c679ea25b69f9fa570b8", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_YA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2931bdf417818e6e0e1c2bc3f5d4f083", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_YAE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8dfffe6747dddeaf1a0c1bd70d3ee572", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_EO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa87d4e67c1c993130a517ea45f953cb73", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_E", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab002924ff5d40d25d274e2138366313c", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_YEO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabcebade0f6423190f56052f5ed318f22", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_YE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1521fc986385a857a6ec3abbf0c2908b", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_O", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa694c819b8c5778a00c28cef34d05dcf1", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_WA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa36e1efbb2fdcee67177189796c1fe12f", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_WAE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facabfc3500a4cd15da82603fdd1b67b93", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_OE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa531ed1881f0ad587ed0d34684130d91d", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_YO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8acbab6ff96f29de7db131daec556d7d", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_U", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa199ad03fdc13a838b72520437cb39691", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_WEO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa022ecb2347622131819f08be5e3f154b", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_WE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa800d8a155584d7932622cfb1e441d15f", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_WI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa72a73f3eb175e2c5a7563d5aeaa6828a", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_YU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad42f144808dca57d8055a1653fee328e", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_EU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6d3bf0a19ac06fa1f44adb096257f9fa", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_YI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa6508240b69973a4fde1bace72b7d66b", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_I", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7ce836506f6e3e20bc0b89125835d1b9", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Kiyeog", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa35a9579dc5ed331873a0afe23cf58760", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_SsangKiyeog", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa94c612232e5db358f35965c1e1c438d4", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_KiyeogSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d70231159946e72efc596ceb7922ecf", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Nieun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae59ec4c2cf21377f6ce989717576dc8c", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_NieunJieuj", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7c5578756e6c494e1ba2bf366488635a", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_NieunHieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa98518214864476ffd4c79df6a259a025", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Dikeud", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac90519be1dde3f973188d6f8aef6513e", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Rieul", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa589a217fcff026288d3037338a25be13", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_RieulKiyeog", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad187ca894e0b51461c313f4040de6e3f", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_RieulMieum", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa30f6c7e4dca43e76500a69b03d032c09", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_RieulPieub", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa01cce43452aa095915ae65c3c1f940c5", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_RieulSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8379d5f56a1209465c19900b75b48d81", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_RieulTieut", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0dfb04343b9b7d063add1d0822e79570", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_RieulPhieuf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7c8a705c6f43cf67aaacbd2f30822dd4", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_RieulHieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa5b17038c4f5054758cc47dcd0cdf350", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Mieum", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa734a537ca64dc02eb1c2263d99d59e3e", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Pieub", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5cdc2bedaf23fa609561ebd5d950b933", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_PieubSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5c6340852af4f8c0243eb35576413bb1", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Sios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa2adfdf768883f6cb6e8e9d9214a2cd3", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_SsangSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3f4de33262dcfc9d8981c176b19a4f76", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Ieung", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa26b6896c30a74c969d59bda1d48bdbb7", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Jieuj", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac91d0c94e7c4efe6098b55c0f7d0fa60", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Cieuc", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa630724985feb394e9559c684dcc3251a", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Khieuq", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0177d11a43e2137263e6345b633a1da2", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Tieut", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf12975f17cccc736d8ccd6b61de47cad", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Phieuf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faee6dec1cec24405b5146d3ac5afeebdb", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_Hieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa002ac970706838859b10f901590865b5", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_RieulYeorinHieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa84152e5242438bf50aa31ee50579a450", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SunkyeongeumMieum", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa52e91c59e3b38f7db9f029f1f0db001c", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SunkyeongeumPieub", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae7ee13645d52eb29a0671b6b5c9ea9e9", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_PanSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad83b831de23a61d3bf24d9ba30c623a7", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_KkogjiDalrinIeung", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2c847a4edaba5a4e482243dd3747cae3", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_SunkyeongeumPhieuf", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae8ac95a1bc9bad83ef56a25c5be81ed4", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_YeorinHieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2fdfe34dbcf3e0f8b2026318545b6fcc", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_AraeA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf402c98abb2a4efefe8333aa410ef98e", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_AraeAE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9200af0003e80151ac7516968a2070f0", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_PanSios", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5b86c436485940dbe0f922fd798a6c64", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_KkogjiDalrinIeung", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf7f955a79ce3ad5dd9a8185bfe5c2887", null],
│ │ │ │ │ - ["SCIM_KEY_Hangul_J_YeorinHieuh", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4cb41eac9ece28b2886690dc81189c63", null],
│ │ │ │ │ - ["SCIM_KEY_Korean_Won", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa90c794915bc0a60664b915b5e0aa62ce", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_eternity", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf3e76f26b9684b87bc16cc4fd5abfe6", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ligature_ew", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0c04ef3a326b103e00c9fe7bf89ee36f", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_full_stop", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0a579da0b0e06f878524394c423e18ec", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_verjaket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafec081773a64849b9f533d8bd03c7005", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_parenright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa02fe5fe85d2a45f7c21943c822197db2", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_parenleft", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa31d27b26f18693a36fdb71c893785da7", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_guillemotright", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5c494b58840362179ffe031c3c77282f", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_guillemotleft", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa970b74aae2c5554ac460d93ef7754e16", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_em_dash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4ebd2ad7bd1038aa03c295447c8197c9", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_dot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa3788e3ba4f0a91af2a4e02701433339", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_mijaket", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa89554ea75aaaf53c3c2b6502a6a0d6da", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_separation_mark", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa840c3f5252f2d3631128c51eae452be6", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_but", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3458002bf62a0e306032cb1b935dadfb", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_comma", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9e962cac57021e30ae2e803e887e6012", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_en_dash", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1fc8b4039ed8c545fc3f11ff5ec0717c", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_hyphen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa70098d653cd168adc2d996dd616e8985", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_yentamna", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa292404113821b18aa5442bcbaa9818cf", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ellipsis", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabca962a3a9a21013233ddfa29034899c", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_exclam", "a00041.html#gga4aefe0843e618886b55102a0eb45b75face90cbaac8af6129db7ca6534762af86", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_amanak", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf96b5be38c75fb6642bd07af9e31f029", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_accent", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8f98a0a512e9392a65a62f9aac19dd4e", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_shesht", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab694625d91547bc397c3a94be51c1000", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_question", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3e67bca69c45da01c6946f1d8717af62", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_paruyk", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6a50e81002babf7ab271ded1e0d0eaf9", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_AYB", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa59ff2f91dab9edafa2486e7f3456524f", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ayb", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faac6601a7551adbbcb6f7580a271cf724", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_BEN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa83cfde38eed19458fc64df388f5cc0a6", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ben", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa40e524606794534d843c82bab5b9ba24", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_GIM", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa65b86be35d08f566f636563fcdfec4f7", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_gim", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa77b1fd8dab3b432abe8ce4ff23a4b1aa", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_DA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7c656eef612b459777efc6a57ab26c9d", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_da", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5d616ec9b2cf7e124b61a522d32ca70d", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_YECH", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa820edc2b27003f4c6e34b014fc5d482e", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_yech", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9b067486d46a945399ba92ed9b023551", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ZA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae92be73d9ca061f07de6cec7951d8f78", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_za", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac0764406214e10798eb6add99bf9d7b8", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_E", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa0d53cd5ec1cb0c13e2195dd1256ff49", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_e", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0b7d17db7cfa238f76fc6d816865f51d", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_AT", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa03898108aee624860c7fc3aa84158279", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_at", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf5d25d0641d505f861cd24c9124b0b11", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_TO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1566a226cfb7861e9adfa5eebbdcad19", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_to", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1d606b88f212c7cb886a2b89298666e8", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ZHE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae0971ac053c87d6df7aec1d74a95b2a3", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_zhe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa58e54ac675599e13feb008a23d1f6bd1", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_INI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa41543089a9b2e23a3d181e57e03d4a73", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ini", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae4c85c971fe14164adc794065ac58c2b", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_LYUN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4901158b03e8342b7927aa3be47e895a", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_lyun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9dd102287138cbc8ed1a1e04220054b5", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_KHE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa043b5a1b431d99cc56d64595183bd86f", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_khe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa31e1acc9c93dbf3880777c80f2ac79a7", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_TSA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3078217387263c20a8102cd257452c58", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_tsa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9f95137d2a7bd2a0d309dc5b154077d4", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_KEN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa194d70dbaf032bf4be137f669ea9e0f7", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ken", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf547e1843011ac7e5c4f67f1b39a950", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_HO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac7b34b128583c27b566986af54a01218", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ho", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa10d2fb92d3b5715e59687e11e8a52f16", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_DZA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa86bad91a5041decdf90d0cc2878514fe", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_dza", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa85e376e854ddfa6d5ae0d66cdff61b53", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_GHAT", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabcbc8da7e7ff0abc28271fc9930d2f6d", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ghat", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa58131ac491aa606485f4f8e48330a3d9", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_TCHE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac186d58d223ab065c8d42bc801f56668", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_tche", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa148d9be8c449eb027054364ee8d23d2d", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_MEN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faecfc68e006aa0a11eba1bba8e3e64712", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_men", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa73bf8de552030d00d967b7fdeec8203", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_HI", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa848c6fa8d27154fea99cc6e5dfa1b01c", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_hi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6613bcf9ef6128c9466925ddedb43cf6", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_NU", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa181785c6933a4fe3b97b9940f4740931", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_nu", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6ec1681d41f771996f6c33013a330d3b", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_SHA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8f13a3d4afc2728487956f2940617564", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_sha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa22fb5e99951141c8683dea6de32dbac4", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_VO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa43b0a7e039dd24b54611ad47284793e7", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_vo", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1a8d4413efbdd65dcb407fe6edfe8712", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_CHA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2b6c07623160f03f71ae23af5bafde24", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_cha", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa46c1826d32c181e395f89f478282cf3f", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_PE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa74660fed33930206936e30683d4d2219", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_pe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7aea0abe14d56440d00f2d4da6b23812", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_JE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad80104006d8f3e7779f2637883b3e2ee", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_je", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faca47dac09963003d63b463513cb81a5b", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_RA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa54b1f6dc886979d26b634fc5724edf6f", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ra", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa3e395013b0177b1baedc22330835e3b", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_SE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad03e5da497c30cbed7c1947d88b940be", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_se", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa08e178ee9c553307858be52481298812", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_VEV", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae66f8994fa18ff5602059cd4858774b2", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_vev", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3e465ed144cbb658ba85de37cbdb9611", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_TYUN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafffff89b8bebb096e956b211d60107db", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_tyun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa08bd0c4008b66a199486c74e5902f8bc", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_RE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad3bcc9592f734845ee5d411cb68b7c13", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_re", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa92e02363738c46ead499aae1ec08c0b", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_TSO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0ccafac57a06388dcfde0ed5d2f95e12", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_tso", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4aeecadb17b50c18e96d865033d5cadd", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_VYUN", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab129071f9fb1c6752bb5da583e0afd8e", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_vyun", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae135bc73d58736cd51528d30002aac48", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_PYUR", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad9189d82f87298a38d3945aff63f6b2c", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_pyur", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf2ffb2194567f326d3782cd650ca85f7", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_KE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa16e67e01003a70f00ff8181370b8f84a", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_ke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa113e924571d993498817f0a666b5d689", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_O", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faedaee9974520edbb46b94661b8ac1c9b", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_o", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadd23cd9a28bbefc43b826798719fc017", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_FE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1b714bf08d97aa7dd8c0ea090d635fff", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_fe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7c94021e5ba986a8e2d7c96d99feace5", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_apostrophe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaf5ec41b99996bbc95373de522da0b78", null],
│ │ │ │ │ - ["SCIM_KEY_Armenian_section_sign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafe3fb99e3ed4fbd1fd14bffd45497564", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_an", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab96701fb4de84eb455246ac4739e1e4b", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_ban", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faedb95e3db648868b1f395a823b93f5e6", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_gan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa017847ab783c16a2f334276c1cbcfe1a", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_don", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa822f5acfd52021401e2d99918e1d4682", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_en", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa962d7131d4eddd5078c94c2edf9efe3b", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_vin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae46ff7bbd84dde7e0b731cb7ca72d002", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_zen", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa27cf51c7fb730584d7681eb4adc8e2eb", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_tan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa511c4a92e256a36f183bff2c88a756da", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_in", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0d9843245fbd2a29ff399afc3acd6491", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_kan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa173ab84b4fcf153341e3be45d17ee6d9", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_las", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5de3a2d1667367be02c935701d652555", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_man", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facc1d80b13f20b89399aec42a34ef05fb", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_nar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad73b450bcd3e2bb4f3322c4350fd32e3", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_on", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4115717e20be44c5920ddd295cb82640", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_par", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9c6ebafde3226f876a7df9b7d2847d0f", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_zhar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa26c7877dd793b743a000930b2bd47b4f", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_rae", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa971675c96fd14a34417d2650dbd98ab5", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_san", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4edc4e43be2a287f76390d7aad1eef11", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_tar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab7a8eaf8f5c593d7a7936e5298aa1f2d", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_un", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae1354fbdca14e5b9cabb1b8b97194eb3", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_phar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabde8c0a45b77a5c8b74e32e38ae70e3a", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_khar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7ed9b25c53a4d7ec0fbb2432feaae80f", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_ghan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6c940098356a15075c4c701d01440b5d", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_qar", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7476afea6dbf86d34475b5c8a2a51146", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_shin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab715375850535eb386d11defad67a5a0", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_chin", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaa6267651b8298903eb4d59a78afffb9", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_can", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3c2600105e880b1a856cebcfab742f6e", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_jil", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9a582005e8a014be6d732b835e613818", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_cil", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae4902d047d264a3a03c844ee31624f77", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_char", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa15ebb3e8aa6cade1281ed43072ab3fe0", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_xan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa980401ab11b029265c1f80988589d454", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_jhan", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa729b3409bb5aaa43e65b3e2dbdc06496", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_hae", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa68722f8367620f0baad0b28ff9358f7b", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_he", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9d5bb76d8aa487ea0bdf24ad06ac05de", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_hie", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafcbc634aa2bcb79810fcd73f4cf976c9", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_we", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0e30e0878e99d69e8e58f379cbcfb6db", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_har", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0c911cf54ae0d93593e67a4a6e756142", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_hoe", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6d0359b35c64a77712b06b255b9b95e8", null],
│ │ │ │ │ - ["SCIM_KEY_Georgian_fi", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab006dd6444770673599fce2aedd1138b", null],
│ │ │ │ │ - ["SCIM_KEY_Ccedillaabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa0099b2bc9f5bc4bab6d5e4fe749161d0", null],
│ │ │ │ │ - ["SCIM_KEY_Xabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7fc4999cdd09357be0a115147339b353", null],
│ │ │ │ │ - ["SCIM_KEY_Qabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa74a610768685aa779a5c98dfc0cfabda", null],
│ │ │ │ │ - ["SCIM_KEY_Ibreve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa6a7dee5758e02113f52777586b74505", null],
│ │ │ │ │ - ["SCIM_KEY_IE", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa33cda05280b8855f19287dca7fd4a47a", null],
│ │ │ │ │ - ["SCIM_KEY_UO", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa3f70818d0c2ce0d9d0f5097703aac75", null],
│ │ │ │ │ - ["SCIM_KEY_Zstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa33c51b76a6d82943abe656242a5e719d", null],
│ │ │ │ │ - ["SCIM_KEY_Gcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa05ccf0a0f2094ab47f91600f81c1029f", null],
│ │ │ │ │ - ["SCIM_KEY_Obarred", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa77a730666318816b5e7114fc77c3abb5", null],
│ │ │ │ │ - ["SCIM_KEY_ccedillaabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa41a785654e0d54cbe4b1ad991523fd32", null],
│ │ │ │ │ - ["SCIM_KEY_xabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf7efd2c36086e0b76ac244bf92bfdc0d", null],
│ │ │ │ │ - ["SCIM_KEY_Ocaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8be62294a8c8020da14586068b13c150", null],
│ │ │ │ │ - ["SCIM_KEY_qabovedot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa77e0250a170b1321db51c491683a39ee", null],
│ │ │ │ │ - ["SCIM_KEY_ibreve", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa276c8d481e1e7d21b35a3ff5271582e3", null],
│ │ │ │ │ - ["SCIM_KEY_ie", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa430155055bca2b3f5780c983579ff40a", null],
│ │ │ │ │ - ["SCIM_KEY_uo", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf289b358f4293cd41452711c80ce4fc1", null],
│ │ │ │ │ - ["SCIM_KEY_zstroke", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5fe8c1bbe3d5734412f48b26abcd4a06", null],
│ │ │ │ │ - ["SCIM_KEY_gcaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae59c2579d57341a8a43ced674db45993", null],
│ │ │ │ │ - ["SCIM_KEY_ocaron", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa08f6b16c6fac246e2bd0c45541156b06", null],
│ │ │ │ │ - ["SCIM_KEY_obarred", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa44e71d9caf443d6943059dfefcdc6e7c", null],
│ │ │ │ │ - ["SCIM_KEY_SCHWA", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafbb830eef88bc6c6a2d60fa79a10f092", null],
│ │ │ │ │ - ["SCIM_KEY_schwa", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa897afe7bb5a42f33991533a36054a5be", null],
│ │ │ │ │ - ["SCIM_KEY_Lbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3dc3c8dcdb96a76483e728aca184561c", null],
│ │ │ │ │ - ["SCIM_KEY_Lstrokebelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa174918c398ba4ad9d87ed0f8c513df7d", null],
│ │ │ │ │ - ["SCIM_KEY_lbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2df35020ee49190a3eebca50d3566a98", null],
│ │ │ │ │ - ["SCIM_KEY_lstrokebelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1b213c996739501f42f1d7622bc5f0c4", null],
│ │ │ │ │ - ["SCIM_KEY_Gtilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa070dd84eb27fc9adfb570b1cfdf783f8", null],
│ │ │ │ │ - ["SCIM_KEY_gtilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4506369fdccb9a3b72c9d59ac98363e5", null],
│ │ │ │ │ - ["SCIM_KEY_Abelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae75937f05ef4e146f7843c9e5ca8f742", null],
│ │ │ │ │ - ["SCIM_KEY_abelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa766cca63c1fa1650ad35da2d1b91d0d4", null],
│ │ │ │ │ - ["SCIM_KEY_Ahook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad0f2bfeda9c386eefcd2191b92cceb63", null],
│ │ │ │ │ - ["SCIM_KEY_ahook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa617b313a1f94c407d0b06da42d6d0138", null],
│ │ │ │ │ - ["SCIM_KEY_Acircumflexacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2b25b71263ac853bc5fead414e786bd0", null],
│ │ │ │ │ - ["SCIM_KEY_acircumflexacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf250fbb7e43da3eaf6bb5e839b2c0a4e", null],
│ │ │ │ │ - ["SCIM_KEY_Acircumflexgrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa96ad1f69bd5fd9bc94eed37e61871fc6", null],
│ │ │ │ │ - ["SCIM_KEY_acircumflexgrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabf59d3de3193ada5f783b0143a0d8a9a", null],
│ │ │ │ │ - ["SCIM_KEY_Acircumflexhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadcf35a23d2f5903fb4d406edebc65a8c", null],
│ │ │ │ │ - ["SCIM_KEY_acircumflexhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7c2f58b031a24e65707c64a2a92f3ad9", null],
│ │ │ │ │ - ["SCIM_KEY_Acircumflextilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8da9c9731f300e606ad96547956275e1", null],
│ │ │ │ │ - ["SCIM_KEY_acircumflextilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1983e84d2d7609114cef4911715e8cb9", null],
│ │ │ │ │ - ["SCIM_KEY_Acircumflexbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa180b72fb22c51a520dea4c2529c004e5", null],
│ │ │ │ │ - ["SCIM_KEY_acircumflexbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa64351a6ecf2486789d6e1c02994ba619", null],
│ │ │ │ │ - ["SCIM_KEY_Abreveacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa816e1c7fd7d214a487955ff2dde9cd08", null],
│ │ │ │ │ - ["SCIM_KEY_abreveacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa178cbc5b564af8e4eefb7a8b7b14c425", null],
│ │ │ │ │ - ["SCIM_KEY_Abrevegrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fadd7c80b6a5e300958399ce2010959326", null],
│ │ │ │ │ - ["SCIM_KEY_abrevegrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf0c6f1e891bc98d9e5e66419c66c597a", null],
│ │ │ │ │ - ["SCIM_KEY_Abrevehook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa06e37470c881470aba5a9c70415a24b4", null],
│ │ │ │ │ - ["SCIM_KEY_abrevehook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa32425fe3a172e068ec49e9d40eb50888", null],
│ │ │ │ │ - ["SCIM_KEY_Abrevetilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaa49722ee19816c1780b21ecd95fc861", null],
│ │ │ │ │ - ["SCIM_KEY_abrevetilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facd928c887695233f60359e3aee3b896d", null],
│ │ │ │ │ - ["SCIM_KEY_Abrevebelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75facaf50ba8453b0b220942f827bb6b79e4", null],
│ │ │ │ │ - ["SCIM_KEY_abrevebelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2facb72a95207dad2a68b4b545e56022", null],
│ │ │ │ │ - ["SCIM_KEY_Ebelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf78830ea43a2a97d61001caf4d313ca1", null],
│ │ │ │ │ - ["SCIM_KEY_ebelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa05ab61f9da33243f25032b790a653e72", null],
│ │ │ │ │ - ["SCIM_KEY_Ehook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad28f369751aeb8b9af4df849698bd0d9", null],
│ │ │ │ │ - ["SCIM_KEY_ehook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa326dece318fffa020b67e72253886713", null],
│ │ │ │ │ - ["SCIM_KEY_Etilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab1fb37b339a27d4a06c6cd5795ff18de", null],
│ │ │ │ │ - ["SCIM_KEY_etilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4c78e50b97cdeffdf74975d29a6ef3e5", null],
│ │ │ │ │ - ["SCIM_KEY_Ecircumflexacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4e5acab2dcfdb4edc10e76b767da34f6", null],
│ │ │ │ │ - ["SCIM_KEY_ecircumflexacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad592d059889fbeb5cfa5e1637025feb8", null],
│ │ │ │ │ - ["SCIM_KEY_Ecircumflexgrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa198bc5bd5f84c72dcad57c43e553da07", null],
│ │ │ │ │ - ["SCIM_KEY_ecircumflexgrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa978f5b68b7d8b04bd693a366b7e9305e", null],
│ │ │ │ │ - ["SCIM_KEY_Ecircumflexhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa62e9b72a11528688e92767d02e123642", null],
│ │ │ │ │ - ["SCIM_KEY_ecircumflexhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4543941f0c1500fa46cfadbbefad918f", null],
│ │ │ │ │ - ["SCIM_KEY_Ecircumflextilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa128b4eb3f9531fcccbed09d77c765343", null],
│ │ │ │ │ - ["SCIM_KEY_ecircumflextilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad11a965cab2dd7c588cf6efd11969e24", null],
│ │ │ │ │ - ["SCIM_KEY_Ecircumflexbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac57a74a5a0e438b729427cff91ec96a8", null],
│ │ │ │ │ - ["SCIM_KEY_ecircumflexbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3a41ac4451076ca20701eb2c94ad3fdd", null],
│ │ │ │ │ - ["SCIM_KEY_Ihook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaacf6fc0c40712c91d1359c3302abe60", null],
│ │ │ │ │ - ["SCIM_KEY_ihook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa330a0d8eeb06b8ba76c44c6e90e729fa", null],
│ │ │ │ │ - ["SCIM_KEY_Ibelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf80487afeb5fbf6f1afa81038b5bfb2a", null],
│ │ │ │ │ - ["SCIM_KEY_ibelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac5e754938c94613a3f1849f6a7324e2e", null],
│ │ │ │ │ - ["SCIM_KEY_Obelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa78b436adb4fd14de064017fa57c470a2", null],
│ │ │ │ │ - ["SCIM_KEY_obelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa1dcae4d22654b9d9bb6de79f6b61154a", null],
│ │ │ │ │ - ["SCIM_KEY_Ohook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad1df8c1b2330e75a061213da9ec42fce", null],
│ │ │ │ │ - ["SCIM_KEY_ohook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa8facd96efe09904b97aac2e370f1a55", null],
│ │ │ │ │ - ["SCIM_KEY_Ocircumflexacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa04a917df645f10b29bd865344bc6bd4e", null],
│ │ │ │ │ - ["SCIM_KEY_ocircumflexacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf113c082dc1721d65fde8497cc1afc9c", null],
│ │ │ │ │ - ["SCIM_KEY_Ocircumflexgrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa594bfd344e711408a00059cb835987a8", null],
│ │ │ │ │ - ["SCIM_KEY_ocircumflexgrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8bbb6bacb5731125292dd59b42c21cc7", null],
│ │ │ │ │ - ["SCIM_KEY_Ocircumflexhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad8834b924a657bd1ddda1f44ca8cfcd8", null],
│ │ │ │ │ - ["SCIM_KEY_ocircumflexhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7f92bcaf39d11307ebdce82423f41d12", null],
│ │ │ │ │ - ["SCIM_KEY_Ocircumflextilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa149786daec5bf9ea7aa0ac49ef2c55ee", null],
│ │ │ │ │ - ["SCIM_KEY_ocircumflextilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac7d362b13a0b3a26e097c0eccd65b6e7", null],
│ │ │ │ │ - ["SCIM_KEY_Ocircumflexbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa28c34be3897a501b3ebb623f710781da", null],
│ │ │ │ │ - ["SCIM_KEY_ocircumflexbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6fd849fb482d51bd97c149ffc7e9e2de", null],
│ │ │ │ │ - ["SCIM_KEY_Ohornacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa02fcf4b8a1b48cbf2a6d4f67afbb39a7", null],
│ │ │ │ │ - ["SCIM_KEY_ohornacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3739ab6c4e103a9cf04931a352782ae0", null],
│ │ │ │ │ - ["SCIM_KEY_Ohorngrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf52cb62e7b7009180490b37834b1b6c0", null],
│ │ │ │ │ - ["SCIM_KEY_ohorngrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa44b9beabb750aeec2fec75bed2b86dc1", null],
│ │ │ │ │ - ["SCIM_KEY_Ohornhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa2d9b29f81681f81072ebd25048be0872", null],
│ │ │ │ │ - ["SCIM_KEY_ohornhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa223d84a2b41e06b99558a1bd3150b1f5", null],
│ │ │ │ │ - ["SCIM_KEY_Ohorntilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad8d475c2393bc3f79acd00839f2647ec", null],
│ │ │ │ │ - ["SCIM_KEY_ohorntilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab422883674873268dafc77c740b992e1", null],
│ │ │ │ │ - ["SCIM_KEY_Ohornbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa637c1c1994e12d1b4ff1f70a007beb20", null],
│ │ │ │ │ - ["SCIM_KEY_ohornbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faa871cd1a19e779d2b78bc14dee4cfb6f", null],
│ │ │ │ │ - ["SCIM_KEY_Ubelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa33ad98d00a00b36f75a78b16ed4ac8b6", null],
│ │ │ │ │ - ["SCIM_KEY_ubelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab92a005f9f51f37e33846c9005760844", null],
│ │ │ │ │ - ["SCIM_KEY_Uhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa127c0cce39aaeff6c8f96676dc62bbbf", null],
│ │ │ │ │ - ["SCIM_KEY_uhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf22d3e61e9dec864797cbfdce4bee9cf", null],
│ │ │ │ │ - ["SCIM_KEY_Uhornacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faf9680685eeb1fc95d1ad273e21c8d066", null],
│ │ │ │ │ - ["SCIM_KEY_uhornacute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa8ac882ede6d8bcadfa206d73123892d5", null],
│ │ │ │ │ - ["SCIM_KEY_Uhorngrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa576f4781a782dcbe2dc406160e796beb", null],
│ │ │ │ │ - ["SCIM_KEY_uhorngrave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fafa622cb1177ca32f7f8a29996a195c47", null],
│ │ │ │ │ - ["SCIM_KEY_Uhornhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa30d35f9618f62680b5d3c97a2c2a38fc", null],
│ │ │ │ │ - ["SCIM_KEY_uhornhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa6aa1e86da749fb68bec6e91f79bc5f64", null],
│ │ │ │ │ - ["SCIM_KEY_Uhorntilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fab0a3490918180a1ac79fd5168aca51ba", null],
│ │ │ │ │ - ["SCIM_KEY_uhorntilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9dfd74029b2a1bac52e8ea98db305596", null],
│ │ │ │ │ - ["SCIM_KEY_Uhornbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4a74a0f5f64c5eaf7eb53bc8e3fad95b", null],
│ │ │ │ │ - ["SCIM_KEY_uhornbelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad802e9aa4164cd8790c62a85f6a3d3e0", null],
│ │ │ │ │ - ["SCIM_KEY_Ybelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa249d9c5de14879d846501a0f0c29e374", null],
│ │ │ │ │ - ["SCIM_KEY_ybelowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3709768ac2fd42cb58a99ec60e39019a", null],
│ │ │ │ │ - ["SCIM_KEY_Yhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa9b55b9b0e05560dc018a84ad585d00b4", null],
│ │ │ │ │ - ["SCIM_KEY_yhook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae73fcf1c2fdcfb4f08477118d1b149ec", null],
│ │ │ │ │ - ["SCIM_KEY_Ytilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3647ccc30672f38b88d63c94206c8ee0", null],
│ │ │ │ │ - ["SCIM_KEY_ytilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae229e04b1ad79c274e799bb2bd674958", null],
│ │ │ │ │ - ["SCIM_KEY_Ohorn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa76aadc941aaa7bc0cee31b673f9c8b70", null],
│ │ │ │ │ - ["SCIM_KEY_ohorn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa4cfb520d2c8ae03b8e2679b397f19fb9", null],
│ │ │ │ │ - ["SCIM_KEY_Uhorn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75face072d884b1dd37faad1d74eb41493ef", null],
│ │ │ │ │ - ["SCIM_KEY_uhorn", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa7694bf9c6f132d1fc136feacd76a5dc5", null],
│ │ │ │ │ - ["SCIM_KEY_combining_tilde", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae07759c690bda8a822a330a74cb05768", null],
│ │ │ │ │ - ["SCIM_KEY_combining_grave", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa999643a34effdc3818a1ee8fefe4b843", null],
│ │ │ │ │ - ["SCIM_KEY_combining_acute", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa3dd6d711d034ef690de698ddd3f40742", null],
│ │ │ │ │ - ["SCIM_KEY_combining_hook", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa39f111249e0ebfcd47b9b184de310d51", null],
│ │ │ │ │ - ["SCIM_KEY_combining_belowdot", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa79742e10fa93fd45b870752164e727a4", null],
│ │ │ │ │ - ["SCIM_KEY_EcuSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa563b53199c73651947ef206859ccbc4c", null],
│ │ │ │ │ - ["SCIM_KEY_ColonSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa5307a013d4cf7f300173df7ae1762f78", null],
│ │ │ │ │ - ["SCIM_KEY_CruzeiroSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa569a40d5f22d565cfe6bfab4c0db59fb", null],
│ │ │ │ │ - ["SCIM_KEY_FFrancSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fae4823ef8aeacd82693efcd6dc838dd8f", null],
│ │ │ │ │ - ["SCIM_KEY_LiraSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa90b55f7ee98b701d355778c1c7a3e962", null],
│ │ │ │ │ - ["SCIM_KEY_MillSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fad53c4d715d10f29ee88bc8fe39e22436", null],
│ │ │ │ │ - ["SCIM_KEY_NairaSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa86766a755d6723ec66e562ac69e65b1a", null],
│ │ │ │ │ - ["SCIM_KEY_PesetaSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fac7b7b27af27c1ddcee10465f6af317ce", null],
│ │ │ │ │ - ["SCIM_KEY_RupeeSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fabab2cb711f1ff1cf88de7360a5fbf04b", null],
│ │ │ │ │ - ["SCIM_KEY_WonSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa26271a051f8cfc709679b83e43980fa2", null],
│ │ │ │ │ - ["SCIM_KEY_NewSheqelSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa43351b9ee348e0108d84380ac7321627", null],
│ │ │ │ │ - ["SCIM_KEY_DongSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75fa194e52bbd3bfbc3f5b070a05a21ff864", null],
│ │ │ │ │ - ["SCIM_KEY_EuroSign", "a00041.html#gga4aefe0843e618886b55102a0eb45b75faaa43a33c7c152d659ece46012bd45977", null]
│ │ │ │ │ - ]],
│ │ │ │ │ - ["KeyboardLayout", "a00041.html#gadf7cdb9ca5b7dc43b056b5e5e715e570", [
│ │ │ │ │ - ["SCIM_KEYBOARD_Unknown", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a2f20f8ecbb5b03fc8edc9a393d96e951", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Default", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a3fff0f6dc44f6c30a9de276f0ef78407", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_US", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a721b89e3289aa411b6e1fb40ec911790", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Belgian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570ae84c78fa6d1b46c759152dc839a87893", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Croatian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570ac29f892e6093531211b70cf6d5dd6275", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Czech", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a368aca45eaf52d069ca23bc2c0baf5fc", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Czech_Qwerty", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a573145d02424f24447fa5c7b99a78023", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Danish", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570aa36d5b79c6719d6e334c19d6f1a729d7", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Dutch", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a5210c6ffb6c6ecf676d772612d2f7d97", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Dvorak", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a5ef6df2d6c14f230e818bfa89e995ae8", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Estonian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a2a1abc8be07c15b1b5becd138e4906bf", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Finnish", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570ac72bdf17214ae05c074c9e2c0b050e5a", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_French", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a7f40f6b9d70a3cf700f08061b142c6d9", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_French_Canadian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a46707d31306be4d43d665f5447753d33", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_French_Switzerland", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a8303ce35eb61d82c0ef1d5f7f89401fb", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_German", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570aa81888ec0a35940e0740798c81f30a05", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_German_Deadkeys", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a3ad5ef8a1276d3bbd66ff2a4c9b03def", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_German_Swiss", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a6f7058adfe20d724068dd62e35540f56", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Greek", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570aaba37ddf42b7d14b14b176f3c37ce75e", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Hungarian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a25e7488959a1534bab7f36e4c408e9b7", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Italian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570aa7eb87a53416513076e6a4f60c150076", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Japanese", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a422792ba62d0c0c7914b496d18d78e2e", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Norwegian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570ad23a45de98af8754fb2ca386b7ff12f1", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Polish", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a8937a2593d116e9b507ca48c3b24f277", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Portuguese", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a5896ac54ff732941582688c686ee1c57", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Portuguese_Brazil", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570ad30da3e94014d299347b97960ffbd13d", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Portuguese_Brazil_US_Accents", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a270fc96a8be2a88e8c8ef06011e7127a", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Russian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570ae60c465ce7311be075076d458de37311", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Slovak", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a0a5d9015fdba49a2f7679dba4214f9b6", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Slovak_Qwerty", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570ab0dc93c2acd0b422dc50763cdd94c93b", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Slovene", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a4803ee2bc636ee16518d42a2601a29e9", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Spanish", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a49388539218ea265b85f8159e03e0b71", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Spanish_CP850", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a79350ed033cc830cecfe4aecf16ff4ee", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Spanish_Latin_America", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570acf217a091017891e9d036f1a2b3f3519", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Swedish", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a441790f921e13723555a218a5f8e9284", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Turkish", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570ab56b6c507a9c3c86fd2c536a42067054", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_UK", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a4d8ed6e8b40ee0b661f1866f50dd7b36", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Icelandic", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a6068e9aedcff4bfa51efa82cf7cfc344", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Lithuanian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570aed273f6e2c444658faf25cd05532c28b", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_Ukrainian", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a9f329d4b2ee9a7f25d2d66f0a4b4b028", null],
│ │ │ │ │ - ["SCIM_KEYBOARD_NUM_LAYOUTS", "a00041.html#ggadf7cdb9ca5b7dc43b056b5e5e715e570a8ab7e4a9aab6a2c75f34457352db788d", null]
│ │ │ │ │ - ]],
│ │ │ │ │ - ["scim_key_to_string", "a00041.html#gae35121f65427a22c58c1cb79ba110ef6", null],
│ │ │ │ │ - ["scim_string_to_key", "a00041.html#ga1291649b4a4e3fbf3cfbb34ddbfda985", null],
│ │ │ │ │ - ["scim_key_list_to_string", "a00041.html#ga246b9bb245a8c9f0050efe712c17154f", null],
│ │ │ │ │ - ["scim_string_to_key_list", "a00041.html#gad5c95f5f0a720aeffb6650f3da4fce0a", null],
│ │ │ │ │ - ["scim_keyboard_layout_to_string", "a00041.html#ga0e6030669f5e76698802feeee8aadd5c", null],
│ │ │ │ │ - ["scim_string_to_keyboard_layout", "a00041.html#gaa6cb750841059053424757c37122c254", null],
│ │ │ │ │ - ["scim_keyboard_layout_get_display_name", "a00041.html#gabc2045fe32aee4593152402b75d4faf2", null],
│ │ │ │ │ - ["scim_get_default_keyboard_layout", "a00041.html#ga46221d1d4b7bbac10de9b8bc1e5dc007", null],
│ │ │ │ │ - ["scim_set_default_keyboard_layout", "a00041.html#ga522f1c9086bc2ecef076c509ec1e6837", null]
│ │ │ │ │ + ["HelperModuleNumberOfHelpersFunc", "a00041.html#gae2d32dfc0e4c3631226f8ee4eb757417", null],
│ │ │ │ │ + ["HelperModuleGetHelperInfoFunc", "a00041.html#ga1bcccedce6642b73915d1155fb1bf2d4", null],
│ │ │ │ │ + ["HelperModuleRunHelperFunc", "a00041.html#gab2dcd9a6f050ca46a5b994d7e618eeaa", null],
│ │ │ │ │ + ["scim_get_helper_module_list", "a00041.html#gae8b8feb4c9d8de960bdbee9f8c153ab2", null]
│ │ │ │ │ ];
│ │ │ ├── ./usr/share/doc/scim-dev-doc/html/a00044.html
│ │ │ │ @@ -1,15 +1,15 @@
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │ -
scim: scim_imengine_module.h File Reference
│ │ │ │ +
scim: scim_compose_key_data.h File Reference
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │ @@ -55,58 +55,21 @@
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │ -
│ │ │ │ -
definition of IMEngineModule related classes.
│ │ │ │ -More...
│ │ │ │ -
│ │ │ │ -
│ │ │ │ -namespace scim
│ │ │ │ -
│ │ │ │ -
│ │ │ │ -
│ │ │ │ -
definition of IMEngineModule related classes.
│ │ │ │ -
│ │ │ │ +
│ │ │ │
│ │ │ │
│ │ │ │ Test if this property is a leaf of another one.
│ │ │ │